[RTL-ifcvt] PR rtl-optimization/68506: Fix emitting order of insns in IF-THEN-JOIN...
[official-gcc.git] / gcc / tree-eh.c
blob9f68f31d09149fd9b74ec91e6614b6cb1d77ef59
1 /* Exception handling semantics and decomposition for trees.
2 Copyright (C) 2003-2015 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 "backend.h"
24 #include "rtl.h"
25 #include "tree.h"
26 #include "gimple.h"
27 #include "cfghooks.h"
28 #include "tree-pass.h"
29 #include "ssa.h"
30 #include "cgraph.h"
31 #include "diagnostic-core.h"
32 #include "fold-const.h"
33 #include "calls.h"
34 #include "except.h"
35 #include "cfganal.h"
36 #include "cfgcleanup.h"
37 #include "tree-eh.h"
38 #include "gimple-iterator.h"
39 #include "tree-cfg.h"
40 #include "tree-into-ssa.h"
41 #include "tree-ssa.h"
42 #include "tree-inline.h"
43 #include "langhooks.h"
44 #include "cfgloop.h"
45 #include "gimple-low.h"
47 /* In some instances a tree and a gimple need to be stored in a same table,
48 i.e. in hash tables. This is a structure to do this. */
49 typedef union {tree *tp; tree t; gimple *g;} treemple;
51 /* Misc functions used in this file. */
53 /* Remember and lookup EH landing pad data for arbitrary statements.
54 Really this means any statement that could_throw_p. We could
55 stuff this information into the stmt_ann data structure, but:
57 (1) We absolutely rely on this information being kept until
58 we get to rtl. Once we're done with lowering here, if we lose
59 the information there's no way to recover it!
61 (2) There are many more statements that *cannot* throw as
62 compared to those that can. We should be saving some amount
63 of space by only allocating memory for those that can throw. */
65 /* Add statement T in function IFUN to landing pad NUM. */
67 static void
68 add_stmt_to_eh_lp_fn (struct function *ifun, gimple *t, int num)
70 gcc_assert (num != 0);
72 if (!get_eh_throw_stmt_table (ifun))
73 set_eh_throw_stmt_table (ifun, hash_map<gimple *, int>::create_ggc (31));
75 gcc_assert (!get_eh_throw_stmt_table (ifun)->put (t, num));
78 /* Add statement T in the current function (cfun) to EH landing pad NUM. */
80 void
81 add_stmt_to_eh_lp (gimple *t, int num)
83 add_stmt_to_eh_lp_fn (cfun, t, num);
86 /* Add statement T to the single EH landing pad in REGION. */
88 static void
89 record_stmt_eh_region (eh_region region, gimple *t)
91 if (region == NULL)
92 return;
93 if (region->type == ERT_MUST_NOT_THROW)
94 add_stmt_to_eh_lp_fn (cfun, t, -region->index);
95 else
97 eh_landing_pad lp = region->landing_pads;
98 if (lp == NULL)
99 lp = gen_eh_landing_pad (region);
100 else
101 gcc_assert (lp->next_lp == NULL);
102 add_stmt_to_eh_lp_fn (cfun, t, lp->index);
107 /* Remove statement T in function IFUN from its EH landing pad. */
109 bool
110 remove_stmt_from_eh_lp_fn (struct function *ifun, gimple *t)
112 if (!get_eh_throw_stmt_table (ifun))
113 return false;
115 if (!get_eh_throw_stmt_table (ifun)->get (t))
116 return false;
118 get_eh_throw_stmt_table (ifun)->remove (t);
119 return true;
123 /* Remove statement T in the current function (cfun) from its
124 EH landing pad. */
126 bool
127 remove_stmt_from_eh_lp (gimple *t)
129 return remove_stmt_from_eh_lp_fn (cfun, t);
132 /* Determine if statement T is inside an EH region in function IFUN.
133 Positive numbers indicate a landing pad index; negative numbers
134 indicate a MUST_NOT_THROW region index; zero indicates that the
135 statement is not recorded in the region table. */
138 lookup_stmt_eh_lp_fn (struct function *ifun, gimple *t)
140 if (ifun->eh->throw_stmt_table == NULL)
141 return 0;
143 int *lp_nr = ifun->eh->throw_stmt_table->get (t);
144 return lp_nr ? *lp_nr : 0;
147 /* Likewise, but always use the current function. */
150 lookup_stmt_eh_lp (gimple *t)
152 /* We can get called from initialized data when -fnon-call-exceptions
153 is on; prevent crash. */
154 if (!cfun)
155 return 0;
156 return lookup_stmt_eh_lp_fn (cfun, t);
159 /* First pass of EH node decomposition. Build up a tree of GIMPLE_TRY_FINALLY
160 nodes and LABEL_DECL nodes. We will use this during the second phase to
161 determine if a goto leaves the body of a TRY_FINALLY_EXPR node. */
163 struct finally_tree_node
165 /* When storing a GIMPLE_TRY, we have to record a gimple. However
166 when deciding whether a GOTO to a certain LABEL_DECL (which is a
167 tree) leaves the TRY block, its necessary to record a tree in
168 this field. Thus a treemple is used. */
169 treemple child;
170 gtry *parent;
173 /* Hashtable helpers. */
175 struct finally_tree_hasher : free_ptr_hash <finally_tree_node>
177 static inline hashval_t hash (const finally_tree_node *);
178 static inline bool equal (const finally_tree_node *,
179 const finally_tree_node *);
182 inline hashval_t
183 finally_tree_hasher::hash (const finally_tree_node *v)
185 return (intptr_t)v->child.t >> 4;
188 inline bool
189 finally_tree_hasher::equal (const finally_tree_node *v,
190 const finally_tree_node *c)
192 return v->child.t == c->child.t;
195 /* Note that this table is *not* marked GTY. It is short-lived. */
196 static hash_table<finally_tree_hasher> *finally_tree;
198 static void
199 record_in_finally_tree (treemple child, gtry *parent)
201 struct finally_tree_node *n;
202 finally_tree_node **slot;
204 n = XNEW (struct finally_tree_node);
205 n->child = child;
206 n->parent = parent;
208 slot = finally_tree->find_slot (n, INSERT);
209 gcc_assert (!*slot);
210 *slot = n;
213 static void
214 collect_finally_tree (gimple *stmt, gtry *region);
216 /* Go through the gimple sequence. Works with collect_finally_tree to
217 record all GIMPLE_LABEL and GIMPLE_TRY statements. */
219 static void
220 collect_finally_tree_1 (gimple_seq seq, gtry *region)
222 gimple_stmt_iterator gsi;
224 for (gsi = gsi_start (seq); !gsi_end_p (gsi); gsi_next (&gsi))
225 collect_finally_tree (gsi_stmt (gsi), region);
228 static void
229 collect_finally_tree (gimple *stmt, gtry *region)
231 treemple temp;
233 switch (gimple_code (stmt))
235 case GIMPLE_LABEL:
236 temp.t = gimple_label_label (as_a <glabel *> (stmt));
237 record_in_finally_tree (temp, region);
238 break;
240 case GIMPLE_TRY:
241 if (gimple_try_kind (stmt) == GIMPLE_TRY_FINALLY)
243 temp.g = stmt;
244 record_in_finally_tree (temp, region);
245 collect_finally_tree_1 (gimple_try_eval (stmt),
246 as_a <gtry *> (stmt));
247 collect_finally_tree_1 (gimple_try_cleanup (stmt), region);
249 else if (gimple_try_kind (stmt) == GIMPLE_TRY_CATCH)
251 collect_finally_tree_1 (gimple_try_eval (stmt), region);
252 collect_finally_tree_1 (gimple_try_cleanup (stmt), region);
254 break;
256 case GIMPLE_CATCH:
257 collect_finally_tree_1 (gimple_catch_handler (
258 as_a <gcatch *> (stmt)),
259 region);
260 break;
262 case GIMPLE_EH_FILTER:
263 collect_finally_tree_1 (gimple_eh_filter_failure (stmt), region);
264 break;
266 case GIMPLE_EH_ELSE:
268 geh_else *eh_else_stmt = as_a <geh_else *> (stmt);
269 collect_finally_tree_1 (gimple_eh_else_n_body (eh_else_stmt), region);
270 collect_finally_tree_1 (gimple_eh_else_e_body (eh_else_stmt), region);
272 break;
274 default:
275 /* A type, a decl, or some kind of statement that we're not
276 interested in. Don't walk them. */
277 break;
282 /* Use the finally tree to determine if a jump from START to TARGET
283 would leave the try_finally node that START lives in. */
285 static bool
286 outside_finally_tree (treemple start, gimple *target)
288 struct finally_tree_node n, *p;
292 n.child = start;
293 p = finally_tree->find (&n);
294 if (!p)
295 return true;
296 start.g = p->parent;
298 while (start.g != target);
300 return false;
303 /* Second pass of EH node decomposition. Actually transform the GIMPLE_TRY
304 nodes into a set of gotos, magic labels, and eh regions.
305 The eh region creation is straight-forward, but frobbing all the gotos
306 and such into shape isn't. */
308 /* The sequence into which we record all EH stuff. This will be
309 placed at the end of the function when we're all done. */
310 static gimple_seq eh_seq;
312 /* Record whether an EH region contains something that can throw,
313 indexed by EH region number. */
314 static bitmap eh_region_may_contain_throw_map;
316 /* The GOTO_QUEUE is an array of GIMPLE_GOTO and GIMPLE_RETURN
317 statements that are seen to escape this GIMPLE_TRY_FINALLY node.
318 The idea is to record a gimple statement for everything except for
319 the conditionals, which get their labels recorded. Since labels are
320 of type 'tree', we need this node to store both gimple and tree
321 objects. REPL_STMT is the sequence used to replace the goto/return
322 statement. CONT_STMT is used to store the statement that allows
323 the return/goto to jump to the original destination. */
325 struct goto_queue_node
327 treemple stmt;
328 location_t location;
329 gimple_seq repl_stmt;
330 gimple *cont_stmt;
331 int index;
332 /* This is used when index >= 0 to indicate that stmt is a label (as
333 opposed to a goto stmt). */
334 int is_label;
337 /* State of the world while lowering. */
339 struct leh_state
341 /* What's "current" while constructing the eh region tree. These
342 correspond to variables of the same name in cfun->eh, which we
343 don't have easy access to. */
344 eh_region cur_region;
346 /* What's "current" for the purposes of __builtin_eh_pointer. For
347 a CATCH, this is the associated TRY. For an EH_FILTER, this is
348 the associated ALLOWED_EXCEPTIONS, etc. */
349 eh_region ehp_region;
351 /* Processing of TRY_FINALLY requires a bit more state. This is
352 split out into a separate structure so that we don't have to
353 copy so much when processing other nodes. */
354 struct leh_tf_state *tf;
357 struct leh_tf_state
359 /* Pointer to the GIMPLE_TRY_FINALLY node under discussion. The
360 try_finally_expr is the original GIMPLE_TRY_FINALLY. We need to retain
361 this so that outside_finally_tree can reliably reference the tree used
362 in the collect_finally_tree data structures. */
363 gtry *try_finally_expr;
364 gtry *top_p;
366 /* While lowering a top_p usually it is expanded into multiple statements,
367 thus we need the following field to store them. */
368 gimple_seq top_p_seq;
370 /* The state outside this try_finally node. */
371 struct leh_state *outer;
373 /* The exception region created for it. */
374 eh_region region;
376 /* The goto queue. */
377 struct goto_queue_node *goto_queue;
378 size_t goto_queue_size;
379 size_t goto_queue_active;
381 /* Pointer map to help in searching goto_queue when it is large. */
382 hash_map<gimple *, goto_queue_node *> *goto_queue_map;
384 /* The set of unique labels seen as entries in the goto queue. */
385 vec<tree> dest_array;
387 /* A label to be added at the end of the completed transformed
388 sequence. It will be set if may_fallthru was true *at one time*,
389 though subsequent transformations may have cleared that flag. */
390 tree fallthru_label;
392 /* True if it is possible to fall out the bottom of the try block.
393 Cleared if the fallthru is converted to a goto. */
394 bool may_fallthru;
396 /* True if any entry in goto_queue is a GIMPLE_RETURN. */
397 bool may_return;
399 /* True if the finally block can receive an exception edge.
400 Cleared if the exception case is handled by code duplication. */
401 bool may_throw;
404 static gimple_seq lower_eh_must_not_throw (struct leh_state *, gtry *);
406 /* Search for STMT in the goto queue. Return the replacement,
407 or null if the statement isn't in the queue. */
409 #define LARGE_GOTO_QUEUE 20
411 static void lower_eh_constructs_1 (struct leh_state *state, gimple_seq *seq);
413 static gimple_seq
414 find_goto_replacement (struct leh_tf_state *tf, treemple stmt)
416 unsigned int i;
418 if (tf->goto_queue_active < LARGE_GOTO_QUEUE)
420 for (i = 0; i < tf->goto_queue_active; i++)
421 if ( tf->goto_queue[i].stmt.g == stmt.g)
422 return tf->goto_queue[i].repl_stmt;
423 return NULL;
426 /* If we have a large number of entries in the goto_queue, create a
427 pointer map and use that for searching. */
429 if (!tf->goto_queue_map)
431 tf->goto_queue_map = new hash_map<gimple *, goto_queue_node *>;
432 for (i = 0; i < tf->goto_queue_active; i++)
434 bool existed = tf->goto_queue_map->put (tf->goto_queue[i].stmt.g,
435 &tf->goto_queue[i]);
436 gcc_assert (!existed);
440 goto_queue_node **slot = tf->goto_queue_map->get (stmt.g);
441 if (slot != NULL)
442 return ((*slot)->repl_stmt);
444 return NULL;
447 /* A subroutine of replace_goto_queue_1. Handles the sub-clauses of a
448 lowered GIMPLE_COND. If, by chance, the replacement is a simple goto,
449 then we can just splat it in, otherwise we add the new stmts immediately
450 after the GIMPLE_COND and redirect. */
452 static void
453 replace_goto_queue_cond_clause (tree *tp, struct leh_tf_state *tf,
454 gimple_stmt_iterator *gsi)
456 tree label;
457 gimple_seq new_seq;
458 treemple temp;
459 location_t loc = gimple_location (gsi_stmt (*gsi));
461 temp.tp = tp;
462 new_seq = find_goto_replacement (tf, temp);
463 if (!new_seq)
464 return;
466 if (gimple_seq_singleton_p (new_seq)
467 && gimple_code (gimple_seq_first_stmt (new_seq)) == GIMPLE_GOTO)
469 *tp = gimple_goto_dest (gimple_seq_first_stmt (new_seq));
470 return;
473 label = create_artificial_label (loc);
474 /* Set the new label for the GIMPLE_COND */
475 *tp = label;
477 gsi_insert_after (gsi, gimple_build_label (label), GSI_CONTINUE_LINKING);
478 gsi_insert_seq_after (gsi, gimple_seq_copy (new_seq), GSI_CONTINUE_LINKING);
481 /* The real work of replace_goto_queue. Returns with TSI updated to
482 point to the next statement. */
484 static void replace_goto_queue_stmt_list (gimple_seq *, struct leh_tf_state *);
486 static void
487 replace_goto_queue_1 (gimple *stmt, struct leh_tf_state *tf,
488 gimple_stmt_iterator *gsi)
490 gimple_seq seq;
491 treemple temp;
492 temp.g = NULL;
494 switch (gimple_code (stmt))
496 case GIMPLE_GOTO:
497 case GIMPLE_RETURN:
498 temp.g = stmt;
499 seq = find_goto_replacement (tf, temp);
500 if (seq)
502 gsi_insert_seq_before (gsi, gimple_seq_copy (seq), GSI_SAME_STMT);
503 gsi_remove (gsi, false);
504 return;
506 break;
508 case GIMPLE_COND:
509 replace_goto_queue_cond_clause (gimple_op_ptr (stmt, 2), tf, gsi);
510 replace_goto_queue_cond_clause (gimple_op_ptr (stmt, 3), tf, gsi);
511 break;
513 case GIMPLE_TRY:
514 replace_goto_queue_stmt_list (gimple_try_eval_ptr (stmt), tf);
515 replace_goto_queue_stmt_list (gimple_try_cleanup_ptr (stmt), tf);
516 break;
517 case GIMPLE_CATCH:
518 replace_goto_queue_stmt_list (gimple_catch_handler_ptr (
519 as_a <gcatch *> (stmt)),
520 tf);
521 break;
522 case GIMPLE_EH_FILTER:
523 replace_goto_queue_stmt_list (gimple_eh_filter_failure_ptr (stmt), tf);
524 break;
525 case GIMPLE_EH_ELSE:
527 geh_else *eh_else_stmt = as_a <geh_else *> (stmt);
528 replace_goto_queue_stmt_list (gimple_eh_else_n_body_ptr (eh_else_stmt),
529 tf);
530 replace_goto_queue_stmt_list (gimple_eh_else_e_body_ptr (eh_else_stmt),
531 tf);
533 break;
535 default:
536 /* These won't have gotos in them. */
537 break;
540 gsi_next (gsi);
543 /* A subroutine of replace_goto_queue. Handles GIMPLE_SEQ. */
545 static void
546 replace_goto_queue_stmt_list (gimple_seq *seq, struct leh_tf_state *tf)
548 gimple_stmt_iterator gsi = gsi_start (*seq);
550 while (!gsi_end_p (gsi))
551 replace_goto_queue_1 (gsi_stmt (gsi), tf, &gsi);
554 /* Replace all goto queue members. */
556 static void
557 replace_goto_queue (struct leh_tf_state *tf)
559 if (tf->goto_queue_active == 0)
560 return;
561 replace_goto_queue_stmt_list (&tf->top_p_seq, tf);
562 replace_goto_queue_stmt_list (&eh_seq, tf);
565 /* Add a new record to the goto queue contained in TF. NEW_STMT is the
566 data to be added, IS_LABEL indicates whether NEW_STMT is a label or
567 a gimple return. */
569 static void
570 record_in_goto_queue (struct leh_tf_state *tf,
571 treemple new_stmt,
572 int index,
573 bool is_label,
574 location_t location)
576 size_t active, size;
577 struct goto_queue_node *q;
579 gcc_assert (!tf->goto_queue_map);
581 active = tf->goto_queue_active;
582 size = tf->goto_queue_size;
583 if (active >= size)
585 size = (size ? size * 2 : 32);
586 tf->goto_queue_size = size;
587 tf->goto_queue
588 = XRESIZEVEC (struct goto_queue_node, tf->goto_queue, size);
591 q = &tf->goto_queue[active];
592 tf->goto_queue_active = active + 1;
594 memset (q, 0, sizeof (*q));
595 q->stmt = new_stmt;
596 q->index = index;
597 q->location = location;
598 q->is_label = is_label;
601 /* Record the LABEL label in the goto queue contained in TF.
602 TF is not null. */
604 static void
605 record_in_goto_queue_label (struct leh_tf_state *tf, treemple stmt, tree label,
606 location_t location)
608 int index;
609 treemple temp, new_stmt;
611 if (!label)
612 return;
614 /* Computed and non-local gotos do not get processed. Given
615 their nature we can neither tell whether we've escaped the
616 finally block nor redirect them if we knew. */
617 if (TREE_CODE (label) != LABEL_DECL)
618 return;
620 /* No need to record gotos that don't leave the try block. */
621 temp.t = label;
622 if (!outside_finally_tree (temp, tf->try_finally_expr))
623 return;
625 if (! tf->dest_array.exists ())
627 tf->dest_array.create (10);
628 tf->dest_array.quick_push (label);
629 index = 0;
631 else
633 int n = tf->dest_array.length ();
634 for (index = 0; index < n; ++index)
635 if (tf->dest_array[index] == label)
636 break;
637 if (index == n)
638 tf->dest_array.safe_push (label);
641 /* In the case of a GOTO we want to record the destination label,
642 since with a GIMPLE_COND we have an easy access to the then/else
643 labels. */
644 new_stmt = stmt;
645 record_in_goto_queue (tf, new_stmt, index, true, location);
648 /* For any GIMPLE_GOTO or GIMPLE_RETURN, decide whether it leaves a try_finally
649 node, and if so record that fact in the goto queue associated with that
650 try_finally node. */
652 static void
653 maybe_record_in_goto_queue (struct leh_state *state, gimple *stmt)
655 struct leh_tf_state *tf = state->tf;
656 treemple new_stmt;
658 if (!tf)
659 return;
661 switch (gimple_code (stmt))
663 case GIMPLE_COND:
665 gcond *cond_stmt = as_a <gcond *> (stmt);
666 new_stmt.tp = gimple_op_ptr (cond_stmt, 2);
667 record_in_goto_queue_label (tf, new_stmt,
668 gimple_cond_true_label (cond_stmt),
669 EXPR_LOCATION (*new_stmt.tp));
670 new_stmt.tp = gimple_op_ptr (cond_stmt, 3);
671 record_in_goto_queue_label (tf, new_stmt,
672 gimple_cond_false_label (cond_stmt),
673 EXPR_LOCATION (*new_stmt.tp));
675 break;
676 case GIMPLE_GOTO:
677 new_stmt.g = stmt;
678 record_in_goto_queue_label (tf, new_stmt, gimple_goto_dest (stmt),
679 gimple_location (stmt));
680 break;
682 case GIMPLE_RETURN:
683 tf->may_return = true;
684 new_stmt.g = stmt;
685 record_in_goto_queue (tf, new_stmt, -1, false, gimple_location (stmt));
686 break;
688 default:
689 gcc_unreachable ();
694 #if CHECKING_P
695 /* We do not process GIMPLE_SWITCHes for now. As long as the original source
696 was in fact structured, and we've not yet done jump threading, then none
697 of the labels will leave outer GIMPLE_TRY_FINALLY nodes. Verify this. */
699 static void
700 verify_norecord_switch_expr (struct leh_state *state,
701 gswitch *switch_expr)
703 struct leh_tf_state *tf = state->tf;
704 size_t i, n;
706 if (!tf)
707 return;
709 n = gimple_switch_num_labels (switch_expr);
711 for (i = 0; i < n; ++i)
713 treemple temp;
714 tree lab = CASE_LABEL (gimple_switch_label (switch_expr, i));
715 temp.t = lab;
716 gcc_assert (!outside_finally_tree (temp, tf->try_finally_expr));
719 #else
720 #define verify_norecord_switch_expr(state, switch_expr)
721 #endif
723 /* Redirect a RETURN_EXPR pointed to by Q to FINLAB. If MOD is
724 non-null, insert it before the new branch. */
726 static void
727 do_return_redirection (struct goto_queue_node *q, tree finlab, gimple_seq mod)
729 gimple *x;
731 /* In the case of a return, the queue node must be a gimple statement. */
732 gcc_assert (!q->is_label);
734 /* Note that the return value may have already been computed, e.g.,
736 int x;
737 int foo (void)
739 x = 0;
740 try {
741 return x;
742 } finally {
743 x++;
747 should return 0, not 1. We don't have to do anything to make
748 this happens because the return value has been placed in the
749 RESULT_DECL already. */
751 q->cont_stmt = q->stmt.g;
753 if (mod)
754 gimple_seq_add_seq (&q->repl_stmt, mod);
756 x = gimple_build_goto (finlab);
757 gimple_set_location (x, q->location);
758 gimple_seq_add_stmt (&q->repl_stmt, x);
761 /* Similar, but easier, for GIMPLE_GOTO. */
763 static void
764 do_goto_redirection (struct goto_queue_node *q, tree finlab, gimple_seq mod,
765 struct leh_tf_state *tf)
767 ggoto *x;
769 gcc_assert (q->is_label);
771 q->cont_stmt = gimple_build_goto (tf->dest_array[q->index]);
773 if (mod)
774 gimple_seq_add_seq (&q->repl_stmt, mod);
776 x = gimple_build_goto (finlab);
777 gimple_set_location (x, q->location);
778 gimple_seq_add_stmt (&q->repl_stmt, x);
781 /* Emit a standard landing pad sequence into SEQ for REGION. */
783 static void
784 emit_post_landing_pad (gimple_seq *seq, eh_region region)
786 eh_landing_pad lp = region->landing_pads;
787 glabel *x;
789 if (lp == NULL)
790 lp = gen_eh_landing_pad (region);
792 lp->post_landing_pad = create_artificial_label (UNKNOWN_LOCATION);
793 EH_LANDING_PAD_NR (lp->post_landing_pad) = lp->index;
795 x = gimple_build_label (lp->post_landing_pad);
796 gimple_seq_add_stmt (seq, x);
799 /* Emit a RESX statement into SEQ for REGION. */
801 static void
802 emit_resx (gimple_seq *seq, eh_region region)
804 gresx *x = gimple_build_resx (region->index);
805 gimple_seq_add_stmt (seq, x);
806 if (region->outer)
807 record_stmt_eh_region (region->outer, x);
810 /* Emit an EH_DISPATCH statement into SEQ for REGION. */
812 static void
813 emit_eh_dispatch (gimple_seq *seq, eh_region region)
815 geh_dispatch *x = gimple_build_eh_dispatch (region->index);
816 gimple_seq_add_stmt (seq, x);
819 /* Note that the current EH region may contain a throw, or a
820 call to a function which itself may contain a throw. */
822 static void
823 note_eh_region_may_contain_throw (eh_region region)
825 while (bitmap_set_bit (eh_region_may_contain_throw_map, region->index))
827 if (region->type == ERT_MUST_NOT_THROW)
828 break;
829 region = region->outer;
830 if (region == NULL)
831 break;
835 /* Check if REGION has been marked as containing a throw. If REGION is
836 NULL, this predicate is false. */
838 static inline bool
839 eh_region_may_contain_throw (eh_region r)
841 return r && bitmap_bit_p (eh_region_may_contain_throw_map, r->index);
844 /* We want to transform
845 try { body; } catch { stuff; }
847 normal_sequence:
848 body;
849 over:
850 eh_sequence:
851 landing_pad:
852 stuff;
853 goto over;
855 TP is a GIMPLE_TRY node. REGION is the region whose post_landing_pad
856 should be placed before the second operand, or NULL. OVER is
857 an existing label that should be put at the exit, or NULL. */
859 static gimple_seq
860 frob_into_branch_around (gtry *tp, eh_region region, tree over)
862 gimple *x;
863 gimple_seq cleanup, result;
864 location_t loc = gimple_location (tp);
866 cleanup = gimple_try_cleanup (tp);
867 result = gimple_try_eval (tp);
869 if (region)
870 emit_post_landing_pad (&eh_seq, region);
872 if (gimple_seq_may_fallthru (cleanup))
874 if (!over)
875 over = create_artificial_label (loc);
876 x = gimple_build_goto (over);
877 gimple_set_location (x, loc);
878 gimple_seq_add_stmt (&cleanup, x);
880 gimple_seq_add_seq (&eh_seq, cleanup);
882 if (over)
884 x = gimple_build_label (over);
885 gimple_seq_add_stmt (&result, x);
887 return result;
890 /* A subroutine of lower_try_finally. Duplicate the tree rooted at T.
891 Make sure to record all new labels found. */
893 static gimple_seq
894 lower_try_finally_dup_block (gimple_seq seq, struct leh_state *outer_state,
895 location_t loc)
897 gtry *region = NULL;
898 gimple_seq new_seq;
899 gimple_stmt_iterator gsi;
901 new_seq = copy_gimple_seq_and_replace_locals (seq);
903 for (gsi = gsi_start (new_seq); !gsi_end_p (gsi); gsi_next (&gsi))
905 gimple *stmt = gsi_stmt (gsi);
906 /* We duplicate __builtin_stack_restore at -O0 in the hope of eliminating
907 it on the EH paths. When it is not eliminated, make it transparent in
908 the debug info. */
909 if (gimple_call_builtin_p (stmt, BUILT_IN_STACK_RESTORE))
910 gimple_set_location (stmt, UNKNOWN_LOCATION);
911 else if (LOCATION_LOCUS (gimple_location (stmt)) == UNKNOWN_LOCATION)
913 tree block = gimple_block (stmt);
914 gimple_set_location (stmt, loc);
915 gimple_set_block (stmt, block);
919 if (outer_state->tf)
920 region = outer_state->tf->try_finally_expr;
921 collect_finally_tree_1 (new_seq, region);
923 return new_seq;
926 /* A subroutine of lower_try_finally. Create a fallthru label for
927 the given try_finally state. The only tricky bit here is that
928 we have to make sure to record the label in our outer context. */
930 static tree
931 lower_try_finally_fallthru_label (struct leh_tf_state *tf)
933 tree label = tf->fallthru_label;
934 treemple temp;
936 if (!label)
938 label = create_artificial_label (gimple_location (tf->try_finally_expr));
939 tf->fallthru_label = label;
940 if (tf->outer->tf)
942 temp.t = label;
943 record_in_finally_tree (temp, tf->outer->tf->try_finally_expr);
946 return label;
949 /* A subroutine of lower_try_finally. If FINALLY consits of a
950 GIMPLE_EH_ELSE node, return it. */
952 static inline geh_else *
953 get_eh_else (gimple_seq finally)
955 gimple *x = gimple_seq_first_stmt (finally);
956 if (gimple_code (x) == GIMPLE_EH_ELSE)
958 gcc_assert (gimple_seq_singleton_p (finally));
959 return as_a <geh_else *> (x);
961 return NULL;
964 /* A subroutine of lower_try_finally. If the eh_protect_cleanup_actions
965 langhook returns non-null, then the language requires that the exception
966 path out of a try_finally be treated specially. To wit: the code within
967 the finally block may not itself throw an exception. We have two choices
968 here. First we can duplicate the finally block and wrap it in a
969 must_not_throw region. Second, we can generate code like
971 try {
972 finally_block;
973 } catch {
974 if (fintmp == eh_edge)
975 protect_cleanup_actions;
978 where "fintmp" is the temporary used in the switch statement generation
979 alternative considered below. For the nonce, we always choose the first
980 option.
982 THIS_STATE may be null if this is a try-cleanup, not a try-finally. */
984 static void
985 honor_protect_cleanup_actions (struct leh_state *outer_state,
986 struct leh_state *this_state,
987 struct leh_tf_state *tf)
989 tree protect_cleanup_actions;
990 gimple_stmt_iterator gsi;
991 bool finally_may_fallthru;
992 gimple_seq finally;
993 gimple *x;
994 geh_mnt *eh_mnt;
995 gtry *try_stmt;
996 geh_else *eh_else;
998 /* First check for nothing to do. */
999 if (lang_hooks.eh_protect_cleanup_actions == NULL)
1000 return;
1001 protect_cleanup_actions = lang_hooks.eh_protect_cleanup_actions ();
1002 if (protect_cleanup_actions == NULL)
1003 return;
1005 finally = gimple_try_cleanup (tf->top_p);
1006 eh_else = get_eh_else (finally);
1008 /* Duplicate the FINALLY block. Only need to do this for try-finally,
1009 and not for cleanups. If we've got an EH_ELSE, extract it now. */
1010 if (eh_else)
1012 finally = gimple_eh_else_e_body (eh_else);
1013 gimple_try_set_cleanup (tf->top_p, gimple_eh_else_n_body (eh_else));
1015 else if (this_state)
1016 finally = lower_try_finally_dup_block (finally, outer_state,
1017 gimple_location (tf->try_finally_expr));
1018 finally_may_fallthru = gimple_seq_may_fallthru (finally);
1020 /* If this cleanup consists of a TRY_CATCH_EXPR with TRY_CATCH_IS_CLEANUP
1021 set, the handler of the TRY_CATCH_EXPR is another cleanup which ought
1022 to be in an enclosing scope, but needs to be implemented at this level
1023 to avoid a nesting violation (see wrap_temporary_cleanups in
1024 cp/decl.c). Since it's logically at an outer level, we should call
1025 terminate before we get to it, so strip it away before adding the
1026 MUST_NOT_THROW filter. */
1027 gsi = gsi_start (finally);
1028 x = gsi_stmt (gsi);
1029 if (gimple_code (x) == GIMPLE_TRY
1030 && gimple_try_kind (x) == GIMPLE_TRY_CATCH
1031 && gimple_try_catch_is_cleanup (x))
1033 gsi_insert_seq_before (&gsi, gimple_try_eval (x), GSI_SAME_STMT);
1034 gsi_remove (&gsi, false);
1037 /* Wrap the block with protect_cleanup_actions as the action. */
1038 eh_mnt = gimple_build_eh_must_not_throw (protect_cleanup_actions);
1039 try_stmt = gimple_build_try (finally, gimple_seq_alloc_with_stmt (eh_mnt),
1040 GIMPLE_TRY_CATCH);
1041 finally = lower_eh_must_not_throw (outer_state, try_stmt);
1043 /* Drop all of this into the exception sequence. */
1044 emit_post_landing_pad (&eh_seq, tf->region);
1045 gimple_seq_add_seq (&eh_seq, finally);
1046 if (finally_may_fallthru)
1047 emit_resx (&eh_seq, tf->region);
1049 /* Having now been handled, EH isn't to be considered with
1050 the rest of the outgoing edges. */
1051 tf->may_throw = false;
1054 /* A subroutine of lower_try_finally. We have determined that there is
1055 no fallthru edge out of the finally block. This means that there is
1056 no outgoing edge corresponding to any incoming edge. Restructure the
1057 try_finally node for this special case. */
1059 static void
1060 lower_try_finally_nofallthru (struct leh_state *state,
1061 struct leh_tf_state *tf)
1063 tree lab;
1064 gimple *x;
1065 geh_else *eh_else;
1066 gimple_seq finally;
1067 struct goto_queue_node *q, *qe;
1069 lab = create_artificial_label (gimple_location (tf->try_finally_expr));
1071 /* We expect that tf->top_p is a GIMPLE_TRY. */
1072 finally = gimple_try_cleanup (tf->top_p);
1073 tf->top_p_seq = gimple_try_eval (tf->top_p);
1075 x = gimple_build_label (lab);
1076 gimple_seq_add_stmt (&tf->top_p_seq, x);
1078 q = tf->goto_queue;
1079 qe = q + tf->goto_queue_active;
1080 for (; q < qe; ++q)
1081 if (q->index < 0)
1082 do_return_redirection (q, lab, NULL);
1083 else
1084 do_goto_redirection (q, lab, NULL, tf);
1086 replace_goto_queue (tf);
1088 /* Emit the finally block into the stream. Lower EH_ELSE at this time. */
1089 eh_else = get_eh_else (finally);
1090 if (eh_else)
1092 finally = gimple_eh_else_n_body (eh_else);
1093 lower_eh_constructs_1 (state, &finally);
1094 gimple_seq_add_seq (&tf->top_p_seq, finally);
1096 if (tf->may_throw)
1098 finally = gimple_eh_else_e_body (eh_else);
1099 lower_eh_constructs_1 (state, &finally);
1101 emit_post_landing_pad (&eh_seq, tf->region);
1102 gimple_seq_add_seq (&eh_seq, finally);
1105 else
1107 lower_eh_constructs_1 (state, &finally);
1108 gimple_seq_add_seq (&tf->top_p_seq, finally);
1110 if (tf->may_throw)
1112 emit_post_landing_pad (&eh_seq, tf->region);
1114 x = gimple_build_goto (lab);
1115 gimple_set_location (x, gimple_location (tf->try_finally_expr));
1116 gimple_seq_add_stmt (&eh_seq, x);
1121 /* A subroutine of lower_try_finally. We have determined that there is
1122 exactly one destination of the finally block. Restructure the
1123 try_finally node for this special case. */
1125 static void
1126 lower_try_finally_onedest (struct leh_state *state, struct leh_tf_state *tf)
1128 struct goto_queue_node *q, *qe;
1129 geh_else *eh_else;
1130 glabel *label_stmt;
1131 gimple *x;
1132 gimple_seq finally;
1133 gimple_stmt_iterator gsi;
1134 tree finally_label;
1135 location_t loc = gimple_location (tf->try_finally_expr);
1137 finally = gimple_try_cleanup (tf->top_p);
1138 tf->top_p_seq = gimple_try_eval (tf->top_p);
1140 /* Since there's only one destination, and the destination edge can only
1141 either be EH or non-EH, that implies that all of our incoming edges
1142 are of the same type. Therefore we can lower EH_ELSE immediately. */
1143 eh_else = get_eh_else (finally);
1144 if (eh_else)
1146 if (tf->may_throw)
1147 finally = gimple_eh_else_e_body (eh_else);
1148 else
1149 finally = gimple_eh_else_n_body (eh_else);
1152 lower_eh_constructs_1 (state, &finally);
1154 for (gsi = gsi_start (finally); !gsi_end_p (gsi); gsi_next (&gsi))
1156 gimple *stmt = gsi_stmt (gsi);
1157 if (LOCATION_LOCUS (gimple_location (stmt)) == UNKNOWN_LOCATION)
1159 tree block = gimple_block (stmt);
1160 gimple_set_location (stmt, gimple_location (tf->try_finally_expr));
1161 gimple_set_block (stmt, block);
1165 if (tf->may_throw)
1167 /* Only reachable via the exception edge. Add the given label to
1168 the head of the FINALLY block. Append a RESX at the end. */
1169 emit_post_landing_pad (&eh_seq, tf->region);
1170 gimple_seq_add_seq (&eh_seq, finally);
1171 emit_resx (&eh_seq, tf->region);
1172 return;
1175 if (tf->may_fallthru)
1177 /* Only reachable via the fallthru edge. Do nothing but let
1178 the two blocks run together; we'll fall out the bottom. */
1179 gimple_seq_add_seq (&tf->top_p_seq, finally);
1180 return;
1183 finally_label = create_artificial_label (loc);
1184 label_stmt = gimple_build_label (finally_label);
1185 gimple_seq_add_stmt (&tf->top_p_seq, label_stmt);
1187 gimple_seq_add_seq (&tf->top_p_seq, finally);
1189 q = tf->goto_queue;
1190 qe = q + tf->goto_queue_active;
1192 if (tf->may_return)
1194 /* Reachable by return expressions only. Redirect them. */
1195 for (; q < qe; ++q)
1196 do_return_redirection (q, finally_label, NULL);
1197 replace_goto_queue (tf);
1199 else
1201 /* Reachable by goto expressions only. Redirect them. */
1202 for (; q < qe; ++q)
1203 do_goto_redirection (q, finally_label, NULL, tf);
1204 replace_goto_queue (tf);
1206 if (tf->dest_array[0] == tf->fallthru_label)
1208 /* Reachable by goto to fallthru label only. Redirect it
1209 to the new label (already created, sadly), and do not
1210 emit the final branch out, or the fallthru label. */
1211 tf->fallthru_label = NULL;
1212 return;
1216 /* Place the original return/goto to the original destination
1217 immediately after the finally block. */
1218 x = tf->goto_queue[0].cont_stmt;
1219 gimple_seq_add_stmt (&tf->top_p_seq, x);
1220 maybe_record_in_goto_queue (state, x);
1223 /* A subroutine of lower_try_finally. There are multiple edges incoming
1224 and outgoing from the finally block. Implement this by duplicating the
1225 finally block for every destination. */
1227 static void
1228 lower_try_finally_copy (struct leh_state *state, struct leh_tf_state *tf)
1230 gimple_seq finally;
1231 gimple_seq new_stmt;
1232 gimple_seq seq;
1233 gimple *x;
1234 geh_else *eh_else;
1235 tree tmp;
1236 location_t tf_loc = gimple_location (tf->try_finally_expr);
1238 finally = gimple_try_cleanup (tf->top_p);
1240 /* Notice EH_ELSE, and simplify some of the remaining code
1241 by considering FINALLY to be the normal return path only. */
1242 eh_else = get_eh_else (finally);
1243 if (eh_else)
1244 finally = gimple_eh_else_n_body (eh_else);
1246 tf->top_p_seq = gimple_try_eval (tf->top_p);
1247 new_stmt = NULL;
1249 if (tf->may_fallthru)
1251 seq = lower_try_finally_dup_block (finally, state, tf_loc);
1252 lower_eh_constructs_1 (state, &seq);
1253 gimple_seq_add_seq (&new_stmt, seq);
1255 tmp = lower_try_finally_fallthru_label (tf);
1256 x = gimple_build_goto (tmp);
1257 gimple_set_location (x, tf_loc);
1258 gimple_seq_add_stmt (&new_stmt, x);
1261 if (tf->may_throw)
1263 /* We don't need to copy the EH path of EH_ELSE,
1264 since it is only emitted once. */
1265 if (eh_else)
1266 seq = gimple_eh_else_e_body (eh_else);
1267 else
1268 seq = lower_try_finally_dup_block (finally, state, tf_loc);
1269 lower_eh_constructs_1 (state, &seq);
1271 emit_post_landing_pad (&eh_seq, tf->region);
1272 gimple_seq_add_seq (&eh_seq, seq);
1273 emit_resx (&eh_seq, tf->region);
1276 if (tf->goto_queue)
1278 struct goto_queue_node *q, *qe;
1279 int return_index, index;
1280 struct labels_s
1282 struct goto_queue_node *q;
1283 tree label;
1284 } *labels;
1286 return_index = tf->dest_array.length ();
1287 labels = XCNEWVEC (struct labels_s, return_index + 1);
1289 q = tf->goto_queue;
1290 qe = q + tf->goto_queue_active;
1291 for (; q < qe; q++)
1293 index = q->index < 0 ? return_index : q->index;
1295 if (!labels[index].q)
1296 labels[index].q = q;
1299 for (index = 0; index < return_index + 1; index++)
1301 tree lab;
1303 q = labels[index].q;
1304 if (! q)
1305 continue;
1307 lab = labels[index].label
1308 = create_artificial_label (tf_loc);
1310 if (index == return_index)
1311 do_return_redirection (q, lab, NULL);
1312 else
1313 do_goto_redirection (q, lab, NULL, tf);
1315 x = gimple_build_label (lab);
1316 gimple_seq_add_stmt (&new_stmt, x);
1318 seq = lower_try_finally_dup_block (finally, state, q->location);
1319 lower_eh_constructs_1 (state, &seq);
1320 gimple_seq_add_seq (&new_stmt, seq);
1322 gimple_seq_add_stmt (&new_stmt, q->cont_stmt);
1323 maybe_record_in_goto_queue (state, q->cont_stmt);
1326 for (q = tf->goto_queue; q < qe; q++)
1328 tree lab;
1330 index = q->index < 0 ? return_index : q->index;
1332 if (labels[index].q == q)
1333 continue;
1335 lab = labels[index].label;
1337 if (index == return_index)
1338 do_return_redirection (q, lab, NULL);
1339 else
1340 do_goto_redirection (q, lab, NULL, tf);
1343 replace_goto_queue (tf);
1344 free (labels);
1347 /* Need to link new stmts after running replace_goto_queue due
1348 to not wanting to process the same goto stmts twice. */
1349 gimple_seq_add_seq (&tf->top_p_seq, new_stmt);
1352 /* A subroutine of lower_try_finally. There are multiple edges incoming
1353 and outgoing from the finally block. Implement this by instrumenting
1354 each incoming edge and creating a switch statement at the end of the
1355 finally block that branches to the appropriate destination. */
1357 static void
1358 lower_try_finally_switch (struct leh_state *state, struct leh_tf_state *tf)
1360 struct goto_queue_node *q, *qe;
1361 tree finally_tmp, finally_label;
1362 int return_index, eh_index, fallthru_index;
1363 int nlabels, ndests, j, last_case_index;
1364 tree last_case;
1365 auto_vec<tree> case_label_vec;
1366 gimple_seq switch_body = NULL;
1367 gimple *x;
1368 geh_else *eh_else;
1369 tree tmp;
1370 gimple *switch_stmt;
1371 gimple_seq finally;
1372 hash_map<tree, gimple *> *cont_map = NULL;
1373 /* The location of the TRY_FINALLY stmt. */
1374 location_t tf_loc = gimple_location (tf->try_finally_expr);
1375 /* The location of the finally block. */
1376 location_t finally_loc;
1378 finally = gimple_try_cleanup (tf->top_p);
1379 eh_else = get_eh_else (finally);
1381 /* Mash the TRY block to the head of the chain. */
1382 tf->top_p_seq = gimple_try_eval (tf->top_p);
1384 /* The location of the finally is either the last stmt in the finally
1385 block or the location of the TRY_FINALLY itself. */
1386 x = gimple_seq_last_stmt (finally);
1387 finally_loc = x ? gimple_location (x) : tf_loc;
1389 /* Prepare for switch statement generation. */
1390 nlabels = tf->dest_array.length ();
1391 return_index = nlabels;
1392 eh_index = return_index + tf->may_return;
1393 fallthru_index = eh_index + (tf->may_throw && !eh_else);
1394 ndests = fallthru_index + tf->may_fallthru;
1396 finally_tmp = create_tmp_var (integer_type_node, "finally_tmp");
1397 finally_label = create_artificial_label (finally_loc);
1399 /* We use vec::quick_push on case_label_vec throughout this function,
1400 since we know the size in advance and allocate precisely as muce
1401 space as needed. */
1402 case_label_vec.create (ndests);
1403 last_case = NULL;
1404 last_case_index = 0;
1406 /* Begin inserting code for getting to the finally block. Things
1407 are done in this order to correspond to the sequence the code is
1408 laid out. */
1410 if (tf->may_fallthru)
1412 x = gimple_build_assign (finally_tmp,
1413 build_int_cst (integer_type_node,
1414 fallthru_index));
1415 gimple_seq_add_stmt (&tf->top_p_seq, x);
1417 tmp = build_int_cst (integer_type_node, fallthru_index);
1418 last_case = build_case_label (tmp, NULL,
1419 create_artificial_label (tf_loc));
1420 case_label_vec.quick_push (last_case);
1421 last_case_index++;
1423 x = gimple_build_label (CASE_LABEL (last_case));
1424 gimple_seq_add_stmt (&switch_body, x);
1426 tmp = lower_try_finally_fallthru_label (tf);
1427 x = gimple_build_goto (tmp);
1428 gimple_set_location (x, tf_loc);
1429 gimple_seq_add_stmt (&switch_body, x);
1432 /* For EH_ELSE, emit the exception path (plus resx) now, then
1433 subsequently we only need consider the normal path. */
1434 if (eh_else)
1436 if (tf->may_throw)
1438 finally = gimple_eh_else_e_body (eh_else);
1439 lower_eh_constructs_1 (state, &finally);
1441 emit_post_landing_pad (&eh_seq, tf->region);
1442 gimple_seq_add_seq (&eh_seq, finally);
1443 emit_resx (&eh_seq, tf->region);
1446 finally = gimple_eh_else_n_body (eh_else);
1448 else if (tf->may_throw)
1450 emit_post_landing_pad (&eh_seq, tf->region);
1452 x = gimple_build_assign (finally_tmp,
1453 build_int_cst (integer_type_node, eh_index));
1454 gimple_seq_add_stmt (&eh_seq, x);
1456 x = gimple_build_goto (finally_label);
1457 gimple_set_location (x, tf_loc);
1458 gimple_seq_add_stmt (&eh_seq, x);
1460 tmp = build_int_cst (integer_type_node, eh_index);
1461 last_case = build_case_label (tmp, NULL,
1462 create_artificial_label (tf_loc));
1463 case_label_vec.quick_push (last_case);
1464 last_case_index++;
1466 x = gimple_build_label (CASE_LABEL (last_case));
1467 gimple_seq_add_stmt (&eh_seq, x);
1468 emit_resx (&eh_seq, tf->region);
1471 x = gimple_build_label (finally_label);
1472 gimple_seq_add_stmt (&tf->top_p_seq, x);
1474 lower_eh_constructs_1 (state, &finally);
1475 gimple_seq_add_seq (&tf->top_p_seq, finally);
1477 /* Redirect each incoming goto edge. */
1478 q = tf->goto_queue;
1479 qe = q + tf->goto_queue_active;
1480 j = last_case_index + tf->may_return;
1481 /* Prepare the assignments to finally_tmp that are executed upon the
1482 entrance through a particular edge. */
1483 for (; q < qe; ++q)
1485 gimple_seq mod = NULL;
1486 int switch_id;
1487 unsigned int case_index;
1489 if (q->index < 0)
1491 x = gimple_build_assign (finally_tmp,
1492 build_int_cst (integer_type_node,
1493 return_index));
1494 gimple_seq_add_stmt (&mod, x);
1495 do_return_redirection (q, finally_label, mod);
1496 switch_id = return_index;
1498 else
1500 x = gimple_build_assign (finally_tmp,
1501 build_int_cst (integer_type_node, q->index));
1502 gimple_seq_add_stmt (&mod, x);
1503 do_goto_redirection (q, finally_label, mod, tf);
1504 switch_id = q->index;
1507 case_index = j + q->index;
1508 if (case_label_vec.length () <= case_index || !case_label_vec[case_index])
1510 tree case_lab;
1511 tmp = build_int_cst (integer_type_node, switch_id);
1512 case_lab = build_case_label (tmp, NULL,
1513 create_artificial_label (tf_loc));
1514 /* We store the cont_stmt in the pointer map, so that we can recover
1515 it in the loop below. */
1516 if (!cont_map)
1517 cont_map = new hash_map<tree, gimple *>;
1518 cont_map->put (case_lab, q->cont_stmt);
1519 case_label_vec.quick_push (case_lab);
1522 for (j = last_case_index; j < last_case_index + nlabels; j++)
1524 gimple *cont_stmt;
1526 last_case = case_label_vec[j];
1528 gcc_assert (last_case);
1529 gcc_assert (cont_map);
1531 cont_stmt = *cont_map->get (last_case);
1533 x = gimple_build_label (CASE_LABEL (last_case));
1534 gimple_seq_add_stmt (&switch_body, x);
1535 gimple_seq_add_stmt (&switch_body, cont_stmt);
1536 maybe_record_in_goto_queue (state, cont_stmt);
1538 if (cont_map)
1539 delete cont_map;
1541 replace_goto_queue (tf);
1543 /* Make sure that the last case is the default label, as one is required.
1544 Then sort the labels, which is also required in GIMPLE. */
1545 CASE_LOW (last_case) = NULL;
1546 tree tem = case_label_vec.pop ();
1547 gcc_assert (tem == last_case);
1548 sort_case_labels (case_label_vec);
1550 /* Build the switch statement, setting last_case to be the default
1551 label. */
1552 switch_stmt = gimple_build_switch (finally_tmp, last_case,
1553 case_label_vec);
1554 gimple_set_location (switch_stmt, finally_loc);
1556 /* Need to link SWITCH_STMT after running replace_goto_queue
1557 due to not wanting to process the same goto stmts twice. */
1558 gimple_seq_add_stmt (&tf->top_p_seq, switch_stmt);
1559 gimple_seq_add_seq (&tf->top_p_seq, switch_body);
1562 /* Decide whether or not we are going to duplicate the finally block.
1563 There are several considerations.
1565 First, if this is Java, then the finally block contains code
1566 written by the user. It has line numbers associated with it,
1567 so duplicating the block means it's difficult to set a breakpoint.
1568 Since controlling code generation via -g is verboten, we simply
1569 never duplicate code without optimization.
1571 Second, we'd like to prevent egregious code growth. One way to
1572 do this is to estimate the size of the finally block, multiply
1573 that by the number of copies we'd need to make, and compare against
1574 the estimate of the size of the switch machinery we'd have to add. */
1576 static bool
1577 decide_copy_try_finally (int ndests, bool may_throw, gimple_seq finally)
1579 int f_estimate, sw_estimate;
1580 geh_else *eh_else;
1582 /* If there's an EH_ELSE involved, the exception path is separate
1583 and really doesn't come into play for this computation. */
1584 eh_else = get_eh_else (finally);
1585 if (eh_else)
1587 ndests -= may_throw;
1588 finally = gimple_eh_else_n_body (eh_else);
1591 if (!optimize)
1593 gimple_stmt_iterator gsi;
1595 if (ndests == 1)
1596 return true;
1598 for (gsi = gsi_start (finally); !gsi_end_p (gsi); gsi_next (&gsi))
1600 /* Duplicate __builtin_stack_restore in the hope of eliminating it
1601 on the EH paths and, consequently, useless cleanups. */
1602 gimple *stmt = gsi_stmt (gsi);
1603 if (!is_gimple_debug (stmt)
1604 && !gimple_clobber_p (stmt)
1605 && !gimple_call_builtin_p (stmt, BUILT_IN_STACK_RESTORE))
1606 return false;
1608 return true;
1611 /* Finally estimate N times, plus N gotos. */
1612 f_estimate = estimate_num_insns_seq (finally, &eni_size_weights);
1613 f_estimate = (f_estimate + 1) * ndests;
1615 /* Switch statement (cost 10), N variable assignments, N gotos. */
1616 sw_estimate = 10 + 2 * ndests;
1618 /* Optimize for size clearly wants our best guess. */
1619 if (optimize_function_for_size_p (cfun))
1620 return f_estimate < sw_estimate;
1622 /* ??? These numbers are completely made up so far. */
1623 if (optimize > 1)
1624 return f_estimate < 100 || f_estimate < sw_estimate * 2;
1625 else
1626 return f_estimate < 40 || f_estimate * 2 < sw_estimate * 3;
1629 /* REG is the enclosing region for a possible cleanup region, or the region
1630 itself. Returns TRUE if such a region would be unreachable.
1632 Cleanup regions within a must-not-throw region aren't actually reachable
1633 even if there are throwing stmts within them, because the personality
1634 routine will call terminate before unwinding. */
1636 static bool
1637 cleanup_is_dead_in (eh_region reg)
1639 while (reg && reg->type == ERT_CLEANUP)
1640 reg = reg->outer;
1641 return (reg && reg->type == ERT_MUST_NOT_THROW);
1644 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY_FINALLY nodes
1645 to a sequence of labels and blocks, plus the exception region trees
1646 that record all the magic. This is complicated by the need to
1647 arrange for the FINALLY block to be executed on all exits. */
1649 static gimple_seq
1650 lower_try_finally (struct leh_state *state, gtry *tp)
1652 struct leh_tf_state this_tf;
1653 struct leh_state this_state;
1654 int ndests;
1655 gimple_seq old_eh_seq;
1657 /* Process the try block. */
1659 memset (&this_tf, 0, sizeof (this_tf));
1660 this_tf.try_finally_expr = tp;
1661 this_tf.top_p = tp;
1662 this_tf.outer = state;
1663 if (using_eh_for_cleanups_p () && !cleanup_is_dead_in (state->cur_region))
1665 this_tf.region = gen_eh_region_cleanup (state->cur_region);
1666 this_state.cur_region = this_tf.region;
1668 else
1670 this_tf.region = NULL;
1671 this_state.cur_region = state->cur_region;
1674 this_state.ehp_region = state->ehp_region;
1675 this_state.tf = &this_tf;
1677 old_eh_seq = eh_seq;
1678 eh_seq = NULL;
1680 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
1682 /* Determine if the try block is escaped through the bottom. */
1683 this_tf.may_fallthru = gimple_seq_may_fallthru (gimple_try_eval (tp));
1685 /* Determine if any exceptions are possible within the try block. */
1686 if (this_tf.region)
1687 this_tf.may_throw = eh_region_may_contain_throw (this_tf.region);
1688 if (this_tf.may_throw)
1689 honor_protect_cleanup_actions (state, &this_state, &this_tf);
1691 /* Determine how many edges (still) reach the finally block. Or rather,
1692 how many destinations are reached by the finally block. Use this to
1693 determine how we process the finally block itself. */
1695 ndests = this_tf.dest_array.length ();
1696 ndests += this_tf.may_fallthru;
1697 ndests += this_tf.may_return;
1698 ndests += this_tf.may_throw;
1700 /* If the FINALLY block is not reachable, dike it out. */
1701 if (ndests == 0)
1703 gimple_seq_add_seq (&this_tf.top_p_seq, gimple_try_eval (tp));
1704 gimple_try_set_cleanup (tp, NULL);
1706 /* If the finally block doesn't fall through, then any destination
1707 we might try to impose there isn't reached either. There may be
1708 some minor amount of cleanup and redirection still needed. */
1709 else if (!gimple_seq_may_fallthru (gimple_try_cleanup (tp)))
1710 lower_try_finally_nofallthru (state, &this_tf);
1712 /* We can easily special-case redirection to a single destination. */
1713 else if (ndests == 1)
1714 lower_try_finally_onedest (state, &this_tf);
1715 else if (decide_copy_try_finally (ndests, this_tf.may_throw,
1716 gimple_try_cleanup (tp)))
1717 lower_try_finally_copy (state, &this_tf);
1718 else
1719 lower_try_finally_switch (state, &this_tf);
1721 /* If someone requested we add a label at the end of the transformed
1722 block, do so. */
1723 if (this_tf.fallthru_label)
1725 /* This must be reached only if ndests == 0. */
1726 gimple *x = gimple_build_label (this_tf.fallthru_label);
1727 gimple_seq_add_stmt (&this_tf.top_p_seq, x);
1730 this_tf.dest_array.release ();
1731 free (this_tf.goto_queue);
1732 if (this_tf.goto_queue_map)
1733 delete this_tf.goto_queue_map;
1735 /* If there was an old (aka outer) eh_seq, append the current eh_seq.
1736 If there was no old eh_seq, then the append is trivially already done. */
1737 if (old_eh_seq)
1739 if (eh_seq == NULL)
1740 eh_seq = old_eh_seq;
1741 else
1743 gimple_seq new_eh_seq = eh_seq;
1744 eh_seq = old_eh_seq;
1745 gimple_seq_add_seq (&eh_seq, new_eh_seq);
1749 return this_tf.top_p_seq;
1752 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY_CATCH with a
1753 list of GIMPLE_CATCH to a sequence of labels and blocks, plus the
1754 exception region trees that records all the magic. */
1756 static gimple_seq
1757 lower_catch (struct leh_state *state, gtry *tp)
1759 eh_region try_region = NULL;
1760 struct leh_state this_state = *state;
1761 gimple_stmt_iterator gsi;
1762 tree out_label;
1763 gimple_seq new_seq, cleanup;
1764 gimple *x;
1765 location_t try_catch_loc = gimple_location (tp);
1767 if (flag_exceptions)
1769 try_region = gen_eh_region_try (state->cur_region);
1770 this_state.cur_region = try_region;
1773 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
1775 if (!eh_region_may_contain_throw (try_region))
1776 return gimple_try_eval (tp);
1778 new_seq = NULL;
1779 emit_eh_dispatch (&new_seq, try_region);
1780 emit_resx (&new_seq, try_region);
1782 this_state.cur_region = state->cur_region;
1783 this_state.ehp_region = try_region;
1785 /* Add eh_seq from lowering EH in the cleanup sequence after the cleanup
1786 itself, so that e.g. for coverage purposes the nested cleanups don't
1787 appear before the cleanup body. See PR64634 for details. */
1788 gimple_seq old_eh_seq = eh_seq;
1789 eh_seq = NULL;
1791 out_label = NULL;
1792 cleanup = gimple_try_cleanup (tp);
1793 for (gsi = gsi_start (cleanup);
1794 !gsi_end_p (gsi);
1795 gsi_next (&gsi))
1797 eh_catch c;
1798 gcatch *catch_stmt;
1799 gimple_seq handler;
1801 catch_stmt = as_a <gcatch *> (gsi_stmt (gsi));
1802 c = gen_eh_region_catch (try_region, gimple_catch_types (catch_stmt));
1804 handler = gimple_catch_handler (catch_stmt);
1805 lower_eh_constructs_1 (&this_state, &handler);
1807 c->label = create_artificial_label (UNKNOWN_LOCATION);
1808 x = gimple_build_label (c->label);
1809 gimple_seq_add_stmt (&new_seq, x);
1811 gimple_seq_add_seq (&new_seq, handler);
1813 if (gimple_seq_may_fallthru (new_seq))
1815 if (!out_label)
1816 out_label = create_artificial_label (try_catch_loc);
1818 x = gimple_build_goto (out_label);
1819 gimple_seq_add_stmt (&new_seq, x);
1821 if (!c->type_list)
1822 break;
1825 gimple_try_set_cleanup (tp, new_seq);
1827 gimple_seq new_eh_seq = eh_seq;
1828 eh_seq = old_eh_seq;
1829 gimple_seq ret_seq = frob_into_branch_around (tp, try_region, out_label);
1830 gimple_seq_add_seq (&eh_seq, new_eh_seq);
1831 return ret_seq;
1834 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY with a
1835 GIMPLE_EH_FILTER to a sequence of labels and blocks, plus the exception
1836 region trees that record all the magic. */
1838 static gimple_seq
1839 lower_eh_filter (struct leh_state *state, gtry *tp)
1841 struct leh_state this_state = *state;
1842 eh_region this_region = NULL;
1843 gimple *inner, *x;
1844 gimple_seq new_seq;
1846 inner = gimple_seq_first_stmt (gimple_try_cleanup (tp));
1848 if (flag_exceptions)
1850 this_region = gen_eh_region_allowed (state->cur_region,
1851 gimple_eh_filter_types (inner));
1852 this_state.cur_region = this_region;
1855 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
1857 if (!eh_region_may_contain_throw (this_region))
1858 return gimple_try_eval (tp);
1860 new_seq = NULL;
1861 this_state.cur_region = state->cur_region;
1862 this_state.ehp_region = this_region;
1864 emit_eh_dispatch (&new_seq, this_region);
1865 emit_resx (&new_seq, this_region);
1867 this_region->u.allowed.label = create_artificial_label (UNKNOWN_LOCATION);
1868 x = gimple_build_label (this_region->u.allowed.label);
1869 gimple_seq_add_stmt (&new_seq, x);
1871 lower_eh_constructs_1 (&this_state, gimple_eh_filter_failure_ptr (inner));
1872 gimple_seq_add_seq (&new_seq, gimple_eh_filter_failure (inner));
1874 gimple_try_set_cleanup (tp, new_seq);
1876 return frob_into_branch_around (tp, this_region, NULL);
1879 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY with
1880 an GIMPLE_EH_MUST_NOT_THROW to a sequence of labels and blocks,
1881 plus the exception region trees that record all the magic. */
1883 static gimple_seq
1884 lower_eh_must_not_throw (struct leh_state *state, gtry *tp)
1886 struct leh_state this_state = *state;
1888 if (flag_exceptions)
1890 gimple *inner = gimple_seq_first_stmt (gimple_try_cleanup (tp));
1891 eh_region this_region;
1893 this_region = gen_eh_region_must_not_throw (state->cur_region);
1894 this_region->u.must_not_throw.failure_decl
1895 = gimple_eh_must_not_throw_fndecl (
1896 as_a <geh_mnt *> (inner));
1897 this_region->u.must_not_throw.failure_loc
1898 = LOCATION_LOCUS (gimple_location (tp));
1900 /* In order to get mangling applied to this decl, we must mark it
1901 used now. Otherwise, pass_ipa_free_lang_data won't think it
1902 needs to happen. */
1903 TREE_USED (this_region->u.must_not_throw.failure_decl) = 1;
1905 this_state.cur_region = this_region;
1908 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
1910 return gimple_try_eval (tp);
1913 /* Implement a cleanup expression. This is similar to try-finally,
1914 except that we only execute the cleanup block for exception edges. */
1916 static gimple_seq
1917 lower_cleanup (struct leh_state *state, gtry *tp)
1919 struct leh_state this_state = *state;
1920 eh_region this_region = NULL;
1921 struct leh_tf_state fake_tf;
1922 gimple_seq result;
1923 bool cleanup_dead = cleanup_is_dead_in (state->cur_region);
1925 if (flag_exceptions && !cleanup_dead)
1927 this_region = gen_eh_region_cleanup (state->cur_region);
1928 this_state.cur_region = this_region;
1931 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
1933 if (cleanup_dead || !eh_region_may_contain_throw (this_region))
1934 return gimple_try_eval (tp);
1936 /* Build enough of a try-finally state so that we can reuse
1937 honor_protect_cleanup_actions. */
1938 memset (&fake_tf, 0, sizeof (fake_tf));
1939 fake_tf.top_p = fake_tf.try_finally_expr = tp;
1940 fake_tf.outer = state;
1941 fake_tf.region = this_region;
1942 fake_tf.may_fallthru = gimple_seq_may_fallthru (gimple_try_eval (tp));
1943 fake_tf.may_throw = true;
1945 honor_protect_cleanup_actions (state, NULL, &fake_tf);
1947 if (fake_tf.may_throw)
1949 /* In this case honor_protect_cleanup_actions had nothing to do,
1950 and we should process this normally. */
1951 lower_eh_constructs_1 (state, gimple_try_cleanup_ptr (tp));
1952 result = frob_into_branch_around (tp, this_region,
1953 fake_tf.fallthru_label);
1955 else
1957 /* In this case honor_protect_cleanup_actions did nearly all of
1958 the work. All we have left is to append the fallthru_label. */
1960 result = gimple_try_eval (tp);
1961 if (fake_tf.fallthru_label)
1963 gimple *x = gimple_build_label (fake_tf.fallthru_label);
1964 gimple_seq_add_stmt (&result, x);
1967 return result;
1970 /* Main loop for lowering eh constructs. Also moves gsi to the next
1971 statement. */
1973 static void
1974 lower_eh_constructs_2 (struct leh_state *state, gimple_stmt_iterator *gsi)
1976 gimple_seq replace;
1977 gimple *x;
1978 gimple *stmt = gsi_stmt (*gsi);
1980 switch (gimple_code (stmt))
1982 case GIMPLE_CALL:
1984 tree fndecl = gimple_call_fndecl (stmt);
1985 tree rhs, lhs;
1987 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
1988 switch (DECL_FUNCTION_CODE (fndecl))
1990 case BUILT_IN_EH_POINTER:
1991 /* The front end may have generated a call to
1992 __builtin_eh_pointer (0) within a catch region. Replace
1993 this zero argument with the current catch region number. */
1994 if (state->ehp_region)
1996 tree nr = build_int_cst (integer_type_node,
1997 state->ehp_region->index);
1998 gimple_call_set_arg (stmt, 0, nr);
2000 else
2002 /* The user has dome something silly. Remove it. */
2003 rhs = null_pointer_node;
2004 goto do_replace;
2006 break;
2008 case BUILT_IN_EH_FILTER:
2009 /* ??? This should never appear, but since it's a builtin it
2010 is accessible to abuse by users. Just remove it and
2011 replace the use with the arbitrary value zero. */
2012 rhs = build_int_cst (TREE_TYPE (TREE_TYPE (fndecl)), 0);
2013 do_replace:
2014 lhs = gimple_call_lhs (stmt);
2015 x = gimple_build_assign (lhs, rhs);
2016 gsi_insert_before (gsi, x, GSI_SAME_STMT);
2017 /* FALLTHRU */
2019 case BUILT_IN_EH_COPY_VALUES:
2020 /* Likewise this should not appear. Remove it. */
2021 gsi_remove (gsi, true);
2022 return;
2024 default:
2025 break;
2028 /* FALLTHRU */
2030 case GIMPLE_ASSIGN:
2031 /* If the stmt can throw use a new temporary for the assignment
2032 to a LHS. This makes sure the old value of the LHS is
2033 available on the EH edge. Only do so for statements that
2034 potentially fall through (no noreturn calls e.g.), otherwise
2035 this new assignment might create fake fallthru regions. */
2036 if (stmt_could_throw_p (stmt)
2037 && gimple_has_lhs (stmt)
2038 && gimple_stmt_may_fallthru (stmt)
2039 && !tree_could_throw_p (gimple_get_lhs (stmt))
2040 && is_gimple_reg_type (TREE_TYPE (gimple_get_lhs (stmt))))
2042 tree lhs = gimple_get_lhs (stmt);
2043 tree tmp = create_tmp_var (TREE_TYPE (lhs));
2044 gimple *s = gimple_build_assign (lhs, tmp);
2045 gimple_set_location (s, gimple_location (stmt));
2046 gimple_set_block (s, gimple_block (stmt));
2047 gimple_set_lhs (stmt, tmp);
2048 if (TREE_CODE (TREE_TYPE (tmp)) == COMPLEX_TYPE
2049 || TREE_CODE (TREE_TYPE (tmp)) == VECTOR_TYPE)
2050 DECL_GIMPLE_REG_P (tmp) = 1;
2051 gsi_insert_after (gsi, s, GSI_SAME_STMT);
2053 /* Look for things that can throw exceptions, and record them. */
2054 if (state->cur_region && stmt_could_throw_p (stmt))
2056 record_stmt_eh_region (state->cur_region, stmt);
2057 note_eh_region_may_contain_throw (state->cur_region);
2059 break;
2061 case GIMPLE_COND:
2062 case GIMPLE_GOTO:
2063 case GIMPLE_RETURN:
2064 maybe_record_in_goto_queue (state, stmt);
2065 break;
2067 case GIMPLE_SWITCH:
2068 verify_norecord_switch_expr (state, as_a <gswitch *> (stmt));
2069 break;
2071 case GIMPLE_TRY:
2073 gtry *try_stmt = as_a <gtry *> (stmt);
2074 if (gimple_try_kind (try_stmt) == GIMPLE_TRY_FINALLY)
2075 replace = lower_try_finally (state, try_stmt);
2076 else
2078 x = gimple_seq_first_stmt (gimple_try_cleanup (try_stmt));
2079 if (!x)
2081 replace = gimple_try_eval (try_stmt);
2082 lower_eh_constructs_1 (state, &replace);
2084 else
2085 switch (gimple_code (x))
2087 case GIMPLE_CATCH:
2088 replace = lower_catch (state, try_stmt);
2089 break;
2090 case GIMPLE_EH_FILTER:
2091 replace = lower_eh_filter (state, try_stmt);
2092 break;
2093 case GIMPLE_EH_MUST_NOT_THROW:
2094 replace = lower_eh_must_not_throw (state, try_stmt);
2095 break;
2096 case GIMPLE_EH_ELSE:
2097 /* This code is only valid with GIMPLE_TRY_FINALLY. */
2098 gcc_unreachable ();
2099 default:
2100 replace = lower_cleanup (state, try_stmt);
2101 break;
2106 /* Remove the old stmt and insert the transformed sequence
2107 instead. */
2108 gsi_insert_seq_before (gsi, replace, GSI_SAME_STMT);
2109 gsi_remove (gsi, true);
2111 /* Return since we don't want gsi_next () */
2112 return;
2114 case GIMPLE_EH_ELSE:
2115 /* We should be eliminating this in lower_try_finally et al. */
2116 gcc_unreachable ();
2118 default:
2119 /* A type, a decl, or some kind of statement that we're not
2120 interested in. Don't walk them. */
2121 break;
2124 gsi_next (gsi);
2127 /* A helper to unwrap a gimple_seq and feed stmts to lower_eh_constructs_2. */
2129 static void
2130 lower_eh_constructs_1 (struct leh_state *state, gimple_seq *pseq)
2132 gimple_stmt_iterator gsi;
2133 for (gsi = gsi_start (*pseq); !gsi_end_p (gsi);)
2134 lower_eh_constructs_2 (state, &gsi);
2137 namespace {
2139 const pass_data pass_data_lower_eh =
2141 GIMPLE_PASS, /* type */
2142 "eh", /* name */
2143 OPTGROUP_NONE, /* optinfo_flags */
2144 TV_TREE_EH, /* tv_id */
2145 PROP_gimple_lcf, /* properties_required */
2146 PROP_gimple_leh, /* properties_provided */
2147 0, /* properties_destroyed */
2148 0, /* todo_flags_start */
2149 0, /* todo_flags_finish */
2152 class pass_lower_eh : public gimple_opt_pass
2154 public:
2155 pass_lower_eh (gcc::context *ctxt)
2156 : gimple_opt_pass (pass_data_lower_eh, ctxt)
2159 /* opt_pass methods: */
2160 virtual unsigned int execute (function *);
2162 }; // class pass_lower_eh
2164 unsigned int
2165 pass_lower_eh::execute (function *fun)
2167 struct leh_state null_state;
2168 gimple_seq bodyp;
2170 bodyp = gimple_body (current_function_decl);
2171 if (bodyp == NULL)
2172 return 0;
2174 finally_tree = new hash_table<finally_tree_hasher> (31);
2175 eh_region_may_contain_throw_map = BITMAP_ALLOC (NULL);
2176 memset (&null_state, 0, sizeof (null_state));
2178 collect_finally_tree_1 (bodyp, NULL);
2179 lower_eh_constructs_1 (&null_state, &bodyp);
2180 gimple_set_body (current_function_decl, bodyp);
2182 /* We assume there's a return statement, or something, at the end of
2183 the function, and thus ploping the EH sequence afterward won't
2184 change anything. */
2185 gcc_assert (!gimple_seq_may_fallthru (bodyp));
2186 gimple_seq_add_seq (&bodyp, eh_seq);
2188 /* We assume that since BODYP already existed, adding EH_SEQ to it
2189 didn't change its value, and we don't have to re-set the function. */
2190 gcc_assert (bodyp == gimple_body (current_function_decl));
2192 delete finally_tree;
2193 finally_tree = NULL;
2194 BITMAP_FREE (eh_region_may_contain_throw_map);
2195 eh_seq = NULL;
2197 /* If this function needs a language specific EH personality routine
2198 and the frontend didn't already set one do so now. */
2199 if (function_needs_eh_personality (fun) == eh_personality_lang
2200 && !DECL_FUNCTION_PERSONALITY (current_function_decl))
2201 DECL_FUNCTION_PERSONALITY (current_function_decl)
2202 = lang_hooks.eh_personality ();
2204 return 0;
2207 } // anon namespace
2209 gimple_opt_pass *
2210 make_pass_lower_eh (gcc::context *ctxt)
2212 return new pass_lower_eh (ctxt);
2215 /* Create the multiple edges from an EH_DISPATCH statement to all of
2216 the possible handlers for its EH region. Return true if there's
2217 no fallthru edge; false if there is. */
2219 bool
2220 make_eh_dispatch_edges (geh_dispatch *stmt)
2222 eh_region r;
2223 eh_catch c;
2224 basic_block src, dst;
2226 r = get_eh_region_from_number (gimple_eh_dispatch_region (stmt));
2227 src = gimple_bb (stmt);
2229 switch (r->type)
2231 case ERT_TRY:
2232 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
2234 dst = label_to_block (c->label);
2235 make_edge (src, dst, 0);
2237 /* A catch-all handler doesn't have a fallthru. */
2238 if (c->type_list == NULL)
2239 return false;
2241 break;
2243 case ERT_ALLOWED_EXCEPTIONS:
2244 dst = label_to_block (r->u.allowed.label);
2245 make_edge (src, dst, 0);
2246 break;
2248 default:
2249 gcc_unreachable ();
2252 return true;
2255 /* Create the single EH edge from STMT to its nearest landing pad,
2256 if there is such a landing pad within the current function. */
2258 void
2259 make_eh_edges (gimple *stmt)
2261 basic_block src, dst;
2262 eh_landing_pad lp;
2263 int lp_nr;
2265 lp_nr = lookup_stmt_eh_lp (stmt);
2266 if (lp_nr <= 0)
2267 return;
2269 lp = get_eh_landing_pad_from_number (lp_nr);
2270 gcc_assert (lp != NULL);
2272 src = gimple_bb (stmt);
2273 dst = label_to_block (lp->post_landing_pad);
2274 make_edge (src, dst, EDGE_EH);
2277 /* Do the work in redirecting EDGE_IN to NEW_BB within the EH region tree;
2278 do not actually perform the final edge redirection.
2280 CHANGE_REGION is true when we're being called from cleanup_empty_eh and
2281 we intend to change the destination EH region as well; this means
2282 EH_LANDING_PAD_NR must already be set on the destination block label.
2283 If false, we're being called from generic cfg manipulation code and we
2284 should preserve our place within the region tree. */
2286 static void
2287 redirect_eh_edge_1 (edge edge_in, basic_block new_bb, bool change_region)
2289 eh_landing_pad old_lp, new_lp;
2290 basic_block old_bb;
2291 gimple *throw_stmt;
2292 int old_lp_nr, new_lp_nr;
2293 tree old_label, new_label;
2294 edge_iterator ei;
2295 edge e;
2297 old_bb = edge_in->dest;
2298 old_label = gimple_block_label (old_bb);
2299 old_lp_nr = EH_LANDING_PAD_NR (old_label);
2300 gcc_assert (old_lp_nr > 0);
2301 old_lp = get_eh_landing_pad_from_number (old_lp_nr);
2303 throw_stmt = last_stmt (edge_in->src);
2304 gcc_assert (lookup_stmt_eh_lp (throw_stmt) == old_lp_nr);
2306 new_label = gimple_block_label (new_bb);
2308 /* Look for an existing region that might be using NEW_BB already. */
2309 new_lp_nr = EH_LANDING_PAD_NR (new_label);
2310 if (new_lp_nr)
2312 new_lp = get_eh_landing_pad_from_number (new_lp_nr);
2313 gcc_assert (new_lp);
2315 /* Unless CHANGE_REGION is true, the new and old landing pad
2316 had better be associated with the same EH region. */
2317 gcc_assert (change_region || new_lp->region == old_lp->region);
2319 else
2321 new_lp = NULL;
2322 gcc_assert (!change_region);
2325 /* Notice when we redirect the last EH edge away from OLD_BB. */
2326 FOR_EACH_EDGE (e, ei, old_bb->preds)
2327 if (e != edge_in && (e->flags & EDGE_EH))
2328 break;
2330 if (new_lp)
2332 /* NEW_LP already exists. If there are still edges into OLD_LP,
2333 there's nothing to do with the EH tree. If there are no more
2334 edges into OLD_LP, then we want to remove OLD_LP as it is unused.
2335 If CHANGE_REGION is true, then our caller is expecting to remove
2336 the landing pad. */
2337 if (e == NULL && !change_region)
2338 remove_eh_landing_pad (old_lp);
2340 else
2342 /* No correct landing pad exists. If there are no more edges
2343 into OLD_LP, then we can simply re-use the existing landing pad.
2344 Otherwise, we have to create a new landing pad. */
2345 if (e == NULL)
2347 EH_LANDING_PAD_NR (old_lp->post_landing_pad) = 0;
2348 new_lp = old_lp;
2350 else
2351 new_lp = gen_eh_landing_pad (old_lp->region);
2352 new_lp->post_landing_pad = new_label;
2353 EH_LANDING_PAD_NR (new_label) = new_lp->index;
2356 /* Maybe move the throwing statement to the new region. */
2357 if (old_lp != new_lp)
2359 remove_stmt_from_eh_lp (throw_stmt);
2360 add_stmt_to_eh_lp (throw_stmt, new_lp->index);
2364 /* Redirect EH edge E to NEW_BB. */
2366 edge
2367 redirect_eh_edge (edge edge_in, basic_block new_bb)
2369 redirect_eh_edge_1 (edge_in, new_bb, false);
2370 return ssa_redirect_edge (edge_in, new_bb);
2373 /* This is a subroutine of gimple_redirect_edge_and_branch. Update the
2374 labels for redirecting a non-fallthru EH_DISPATCH edge E to NEW_BB.
2375 The actual edge update will happen in the caller. */
2377 void
2378 redirect_eh_dispatch_edge (geh_dispatch *stmt, edge e, basic_block new_bb)
2380 tree new_lab = gimple_block_label (new_bb);
2381 bool any_changed = false;
2382 basic_block old_bb;
2383 eh_region r;
2384 eh_catch c;
2386 r = get_eh_region_from_number (gimple_eh_dispatch_region (stmt));
2387 switch (r->type)
2389 case ERT_TRY:
2390 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
2392 old_bb = label_to_block (c->label);
2393 if (old_bb == e->dest)
2395 c->label = new_lab;
2396 any_changed = true;
2399 break;
2401 case ERT_ALLOWED_EXCEPTIONS:
2402 old_bb = label_to_block (r->u.allowed.label);
2403 gcc_assert (old_bb == e->dest);
2404 r->u.allowed.label = new_lab;
2405 any_changed = true;
2406 break;
2408 default:
2409 gcc_unreachable ();
2412 gcc_assert (any_changed);
2415 /* Helper function for operation_could_trap_p and stmt_could_throw_p. */
2417 bool
2418 operation_could_trap_helper_p (enum tree_code op,
2419 bool fp_operation,
2420 bool honor_trapv,
2421 bool honor_nans,
2422 bool honor_snans,
2423 tree divisor,
2424 bool *handled)
2426 *handled = true;
2427 switch (op)
2429 case TRUNC_DIV_EXPR:
2430 case CEIL_DIV_EXPR:
2431 case FLOOR_DIV_EXPR:
2432 case ROUND_DIV_EXPR:
2433 case EXACT_DIV_EXPR:
2434 case CEIL_MOD_EXPR:
2435 case FLOOR_MOD_EXPR:
2436 case ROUND_MOD_EXPR:
2437 case TRUNC_MOD_EXPR:
2438 case RDIV_EXPR:
2439 if (honor_snans || honor_trapv)
2440 return true;
2441 if (fp_operation)
2442 return flag_trapping_math;
2443 if (!TREE_CONSTANT (divisor) || integer_zerop (divisor))
2444 return true;
2445 return false;
2447 case LT_EXPR:
2448 case LE_EXPR:
2449 case GT_EXPR:
2450 case GE_EXPR:
2451 case LTGT_EXPR:
2452 /* Some floating point comparisons may trap. */
2453 return honor_nans;
2455 case EQ_EXPR:
2456 case NE_EXPR:
2457 case UNORDERED_EXPR:
2458 case ORDERED_EXPR:
2459 case UNLT_EXPR:
2460 case UNLE_EXPR:
2461 case UNGT_EXPR:
2462 case UNGE_EXPR:
2463 case UNEQ_EXPR:
2464 return honor_snans;
2466 case NEGATE_EXPR:
2467 case ABS_EXPR:
2468 case CONJ_EXPR:
2469 /* These operations don't trap with floating point. */
2470 if (honor_trapv)
2471 return true;
2472 return false;
2474 case PLUS_EXPR:
2475 case MINUS_EXPR:
2476 case MULT_EXPR:
2477 /* Any floating arithmetic may trap. */
2478 if (fp_operation && flag_trapping_math)
2479 return true;
2480 if (honor_trapv)
2481 return true;
2482 return false;
2484 case COMPLEX_EXPR:
2485 case CONSTRUCTOR:
2486 /* Constructing an object cannot trap. */
2487 return false;
2489 default:
2490 /* Any floating arithmetic may trap. */
2491 if (fp_operation && flag_trapping_math)
2492 return true;
2494 *handled = false;
2495 return false;
2499 /* Return true if operation OP may trap. FP_OPERATION is true if OP is applied
2500 on floating-point values. HONOR_TRAPV is true if OP is applied on integer
2501 type operands that may trap. If OP is a division operator, DIVISOR contains
2502 the value of the divisor. */
2504 bool
2505 operation_could_trap_p (enum tree_code op, bool fp_operation, bool honor_trapv,
2506 tree divisor)
2508 bool honor_nans = (fp_operation && flag_trapping_math
2509 && !flag_finite_math_only);
2510 bool honor_snans = fp_operation && flag_signaling_nans != 0;
2511 bool handled;
2513 if (TREE_CODE_CLASS (op) != tcc_comparison
2514 && TREE_CODE_CLASS (op) != tcc_unary
2515 && TREE_CODE_CLASS (op) != tcc_binary)
2516 return false;
2518 return operation_could_trap_helper_p (op, fp_operation, honor_trapv,
2519 honor_nans, honor_snans, divisor,
2520 &handled);
2524 /* Returns true if it is possible to prove that the index of
2525 an array access REF (an ARRAY_REF expression) falls into the
2526 array bounds. */
2528 static bool
2529 in_array_bounds_p (tree ref)
2531 tree idx = TREE_OPERAND (ref, 1);
2532 tree min, max;
2534 if (TREE_CODE (idx) != INTEGER_CST)
2535 return false;
2537 min = array_ref_low_bound (ref);
2538 max = array_ref_up_bound (ref);
2539 if (!min
2540 || !max
2541 || TREE_CODE (min) != INTEGER_CST
2542 || TREE_CODE (max) != INTEGER_CST)
2543 return false;
2545 if (tree_int_cst_lt (idx, min)
2546 || tree_int_cst_lt (max, idx))
2547 return false;
2549 return true;
2552 /* Returns true if it is possible to prove that the range of
2553 an array access REF (an ARRAY_RANGE_REF expression) falls
2554 into the array bounds. */
2556 static bool
2557 range_in_array_bounds_p (tree ref)
2559 tree domain_type = TYPE_DOMAIN (TREE_TYPE (ref));
2560 tree range_min, range_max, min, max;
2562 range_min = TYPE_MIN_VALUE (domain_type);
2563 range_max = TYPE_MAX_VALUE (domain_type);
2564 if (!range_min
2565 || !range_max
2566 || TREE_CODE (range_min) != INTEGER_CST
2567 || TREE_CODE (range_max) != INTEGER_CST)
2568 return false;
2570 min = array_ref_low_bound (ref);
2571 max = array_ref_up_bound (ref);
2572 if (!min
2573 || !max
2574 || TREE_CODE (min) != INTEGER_CST
2575 || TREE_CODE (max) != INTEGER_CST)
2576 return false;
2578 if (tree_int_cst_lt (range_min, min)
2579 || tree_int_cst_lt (max, range_max))
2580 return false;
2582 return true;
2585 /* Return true if EXPR can trap, as in dereferencing an invalid pointer
2586 location or floating point arithmetic. C.f. the rtl version, may_trap_p.
2587 This routine expects only GIMPLE lhs or rhs input. */
2589 bool
2590 tree_could_trap_p (tree expr)
2592 enum tree_code code;
2593 bool fp_operation = false;
2594 bool honor_trapv = false;
2595 tree t, base, div = NULL_TREE;
2597 if (!expr)
2598 return false;
2600 code = TREE_CODE (expr);
2601 t = TREE_TYPE (expr);
2603 if (t)
2605 if (COMPARISON_CLASS_P (expr))
2606 fp_operation = FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (expr, 0)));
2607 else
2608 fp_operation = FLOAT_TYPE_P (t);
2609 honor_trapv = INTEGRAL_TYPE_P (t) && TYPE_OVERFLOW_TRAPS (t);
2612 if (TREE_CODE_CLASS (code) == tcc_binary)
2613 div = TREE_OPERAND (expr, 1);
2614 if (operation_could_trap_p (code, fp_operation, honor_trapv, div))
2615 return true;
2617 restart:
2618 switch (code)
2620 case COMPONENT_REF:
2621 case REALPART_EXPR:
2622 case IMAGPART_EXPR:
2623 case BIT_FIELD_REF:
2624 case VIEW_CONVERT_EXPR:
2625 case WITH_SIZE_EXPR:
2626 expr = TREE_OPERAND (expr, 0);
2627 code = TREE_CODE (expr);
2628 goto restart;
2630 case ARRAY_RANGE_REF:
2631 base = TREE_OPERAND (expr, 0);
2632 if (tree_could_trap_p (base))
2633 return true;
2634 if (TREE_THIS_NOTRAP (expr))
2635 return false;
2636 return !range_in_array_bounds_p (expr);
2638 case ARRAY_REF:
2639 base = TREE_OPERAND (expr, 0);
2640 if (tree_could_trap_p (base))
2641 return true;
2642 if (TREE_THIS_NOTRAP (expr))
2643 return false;
2644 return !in_array_bounds_p (expr);
2646 case TARGET_MEM_REF:
2647 case MEM_REF:
2648 if (TREE_CODE (TREE_OPERAND (expr, 0)) == ADDR_EXPR
2649 && tree_could_trap_p (TREE_OPERAND (TREE_OPERAND (expr, 0), 0)))
2650 return true;
2651 if (TREE_THIS_NOTRAP (expr))
2652 return false;
2653 /* We cannot prove that the access is in-bounds when we have
2654 variable-index TARGET_MEM_REFs. */
2655 if (code == TARGET_MEM_REF
2656 && (TMR_INDEX (expr) || TMR_INDEX2 (expr)))
2657 return true;
2658 if (TREE_CODE (TREE_OPERAND (expr, 0)) == ADDR_EXPR)
2660 tree base = TREE_OPERAND (TREE_OPERAND (expr, 0), 0);
2661 offset_int off = mem_ref_offset (expr);
2662 if (wi::neg_p (off, SIGNED))
2663 return true;
2664 if (TREE_CODE (base) == STRING_CST)
2665 return wi::leu_p (TREE_STRING_LENGTH (base), off);
2666 else if (DECL_SIZE_UNIT (base) == NULL_TREE
2667 || TREE_CODE (DECL_SIZE_UNIT (base)) != INTEGER_CST
2668 || wi::leu_p (wi::to_offset (DECL_SIZE_UNIT (base)), off))
2669 return true;
2670 /* Now we are sure the first byte of the access is inside
2671 the object. */
2672 return false;
2674 return true;
2676 case INDIRECT_REF:
2677 return !TREE_THIS_NOTRAP (expr);
2679 case ASM_EXPR:
2680 return TREE_THIS_VOLATILE (expr);
2682 case CALL_EXPR:
2683 t = get_callee_fndecl (expr);
2684 /* Assume that calls to weak functions may trap. */
2685 if (!t || !DECL_P (t))
2686 return true;
2687 if (DECL_WEAK (t))
2688 return tree_could_trap_p (t);
2689 return false;
2691 case FUNCTION_DECL:
2692 /* Assume that accesses to weak functions may trap, unless we know
2693 they are certainly defined in current TU or in some other
2694 LTO partition. */
2695 if (DECL_WEAK (expr) && !DECL_COMDAT (expr) && DECL_EXTERNAL (expr))
2697 cgraph_node *node = cgraph_node::get (expr);
2698 if (node)
2699 node = node->function_symbol ();
2700 return !(node && node->in_other_partition);
2702 return false;
2704 case VAR_DECL:
2705 /* Assume that accesses to weak vars may trap, unless we know
2706 they are certainly defined in current TU or in some other
2707 LTO partition. */
2708 if (DECL_WEAK (expr) && !DECL_COMDAT (expr) && DECL_EXTERNAL (expr))
2710 varpool_node *node = varpool_node::get (expr);
2711 if (node)
2712 node = node->ultimate_alias_target ();
2713 return !(node && node->in_other_partition);
2715 return false;
2717 default:
2718 return false;
2723 /* Helper for stmt_could_throw_p. Return true if STMT (assumed to be a
2724 an assignment or a conditional) may throw. */
2726 static bool
2727 stmt_could_throw_1_p (gimple *stmt)
2729 enum tree_code code = gimple_expr_code (stmt);
2730 bool honor_nans = false;
2731 bool honor_snans = false;
2732 bool fp_operation = false;
2733 bool honor_trapv = false;
2734 tree t;
2735 size_t i;
2736 bool handled, ret;
2738 if (TREE_CODE_CLASS (code) == tcc_comparison
2739 || TREE_CODE_CLASS (code) == tcc_unary
2740 || TREE_CODE_CLASS (code) == tcc_binary)
2742 if (is_gimple_assign (stmt)
2743 && TREE_CODE_CLASS (code) == tcc_comparison)
2744 t = TREE_TYPE (gimple_assign_rhs1 (stmt));
2745 else if (gimple_code (stmt) == GIMPLE_COND)
2746 t = TREE_TYPE (gimple_cond_lhs (stmt));
2747 else
2748 t = gimple_expr_type (stmt);
2749 fp_operation = FLOAT_TYPE_P (t);
2750 if (fp_operation)
2752 honor_nans = flag_trapping_math && !flag_finite_math_only;
2753 honor_snans = flag_signaling_nans != 0;
2755 else if (INTEGRAL_TYPE_P (t) && TYPE_OVERFLOW_TRAPS (t))
2756 honor_trapv = true;
2759 /* Check if the main expression may trap. */
2760 t = is_gimple_assign (stmt) ? gimple_assign_rhs2 (stmt) : NULL;
2761 ret = operation_could_trap_helper_p (code, fp_operation, honor_trapv,
2762 honor_nans, honor_snans, t,
2763 &handled);
2764 if (handled)
2765 return ret;
2767 /* If the expression does not trap, see if any of the individual operands may
2768 trap. */
2769 for (i = 0; i < gimple_num_ops (stmt); i++)
2770 if (tree_could_trap_p (gimple_op (stmt, i)))
2771 return true;
2773 return false;
2777 /* Return true if statement STMT could throw an exception. */
2779 bool
2780 stmt_could_throw_p (gimple *stmt)
2782 if (!flag_exceptions)
2783 return false;
2785 /* The only statements that can throw an exception are assignments,
2786 conditionals, calls, resx, and asms. */
2787 switch (gimple_code (stmt))
2789 case GIMPLE_RESX:
2790 return true;
2792 case GIMPLE_CALL:
2793 return !gimple_call_nothrow_p (as_a <gcall *> (stmt));
2795 case GIMPLE_ASSIGN:
2796 case GIMPLE_COND:
2797 if (!cfun->can_throw_non_call_exceptions)
2798 return false;
2799 return stmt_could_throw_1_p (stmt);
2801 case GIMPLE_ASM:
2802 if (!cfun->can_throw_non_call_exceptions)
2803 return false;
2804 return gimple_asm_volatile_p (as_a <gasm *> (stmt));
2806 default:
2807 return false;
2812 /* Return true if expression T could throw an exception. */
2814 bool
2815 tree_could_throw_p (tree t)
2817 if (!flag_exceptions)
2818 return false;
2819 if (TREE_CODE (t) == MODIFY_EXPR)
2821 if (cfun->can_throw_non_call_exceptions
2822 && tree_could_trap_p (TREE_OPERAND (t, 0)))
2823 return true;
2824 t = TREE_OPERAND (t, 1);
2827 if (TREE_CODE (t) == WITH_SIZE_EXPR)
2828 t = TREE_OPERAND (t, 0);
2829 if (TREE_CODE (t) == CALL_EXPR)
2830 return (call_expr_flags (t) & ECF_NOTHROW) == 0;
2831 if (cfun->can_throw_non_call_exceptions)
2832 return tree_could_trap_p (t);
2833 return false;
2836 /* Return true if STMT can throw an exception that is not caught within
2837 the current function (CFUN). */
2839 bool
2840 stmt_can_throw_external (gimple *stmt)
2842 int lp_nr;
2844 if (!stmt_could_throw_p (stmt))
2845 return false;
2847 lp_nr = lookup_stmt_eh_lp (stmt);
2848 return lp_nr == 0;
2851 /* Return true if STMT can throw an exception that is caught within
2852 the current function (CFUN). */
2854 bool
2855 stmt_can_throw_internal (gimple *stmt)
2857 int lp_nr;
2859 if (!stmt_could_throw_p (stmt))
2860 return false;
2862 lp_nr = lookup_stmt_eh_lp (stmt);
2863 return lp_nr > 0;
2866 /* Given a statement STMT in IFUN, if STMT can no longer throw, then
2867 remove any entry it might have from the EH table. Return true if
2868 any change was made. */
2870 bool
2871 maybe_clean_eh_stmt_fn (struct function *ifun, gimple *stmt)
2873 if (stmt_could_throw_p (stmt))
2874 return false;
2875 return remove_stmt_from_eh_lp_fn (ifun, stmt);
2878 /* Likewise, but always use the current function. */
2880 bool
2881 maybe_clean_eh_stmt (gimple *stmt)
2883 return maybe_clean_eh_stmt_fn (cfun, stmt);
2886 /* Given a statement OLD_STMT and a new statement NEW_STMT that has replaced
2887 OLD_STMT in the function, remove OLD_STMT from the EH table and put NEW_STMT
2888 in the table if it should be in there. Return TRUE if a replacement was
2889 done that my require an EH edge purge. */
2891 bool
2892 maybe_clean_or_replace_eh_stmt (gimple *old_stmt, gimple *new_stmt)
2894 int lp_nr = lookup_stmt_eh_lp (old_stmt);
2896 if (lp_nr != 0)
2898 bool new_stmt_could_throw = stmt_could_throw_p (new_stmt);
2900 if (new_stmt == old_stmt && new_stmt_could_throw)
2901 return false;
2903 remove_stmt_from_eh_lp (old_stmt);
2904 if (new_stmt_could_throw)
2906 add_stmt_to_eh_lp (new_stmt, lp_nr);
2907 return false;
2909 else
2910 return true;
2913 return false;
2916 /* Given a statement OLD_STMT in OLD_FUN and a duplicate statement NEW_STMT
2917 in NEW_FUN, copy the EH table data from OLD_STMT to NEW_STMT. The MAP
2918 operand is the return value of duplicate_eh_regions. */
2920 bool
2921 maybe_duplicate_eh_stmt_fn (struct function *new_fun, gimple *new_stmt,
2922 struct function *old_fun, gimple *old_stmt,
2923 hash_map<void *, void *> *map,
2924 int default_lp_nr)
2926 int old_lp_nr, new_lp_nr;
2928 if (!stmt_could_throw_p (new_stmt))
2929 return false;
2931 old_lp_nr = lookup_stmt_eh_lp_fn (old_fun, old_stmt);
2932 if (old_lp_nr == 0)
2934 if (default_lp_nr == 0)
2935 return false;
2936 new_lp_nr = default_lp_nr;
2938 else if (old_lp_nr > 0)
2940 eh_landing_pad old_lp, new_lp;
2942 old_lp = (*old_fun->eh->lp_array)[old_lp_nr];
2943 new_lp = static_cast<eh_landing_pad> (*map->get (old_lp));
2944 new_lp_nr = new_lp->index;
2946 else
2948 eh_region old_r, new_r;
2950 old_r = (*old_fun->eh->region_array)[-old_lp_nr];
2951 new_r = static_cast<eh_region> (*map->get (old_r));
2952 new_lp_nr = -new_r->index;
2955 add_stmt_to_eh_lp_fn (new_fun, new_stmt, new_lp_nr);
2956 return true;
2959 /* Similar, but both OLD_STMT and NEW_STMT are within the current function,
2960 and thus no remapping is required. */
2962 bool
2963 maybe_duplicate_eh_stmt (gimple *new_stmt, gimple *old_stmt)
2965 int lp_nr;
2967 if (!stmt_could_throw_p (new_stmt))
2968 return false;
2970 lp_nr = lookup_stmt_eh_lp (old_stmt);
2971 if (lp_nr == 0)
2972 return false;
2974 add_stmt_to_eh_lp (new_stmt, lp_nr);
2975 return true;
2978 /* Returns TRUE if oneh and twoh are exception handlers (gimple_try_cleanup of
2979 GIMPLE_TRY) that are similar enough to be considered the same. Currently
2980 this only handles handlers consisting of a single call, as that's the
2981 important case for C++: a destructor call for a particular object showing
2982 up in multiple handlers. */
2984 static bool
2985 same_handler_p (gimple_seq oneh, gimple_seq twoh)
2987 gimple_stmt_iterator gsi;
2988 gimple *ones, *twos;
2989 unsigned int ai;
2991 gsi = gsi_start (oneh);
2992 if (!gsi_one_before_end_p (gsi))
2993 return false;
2994 ones = gsi_stmt (gsi);
2996 gsi = gsi_start (twoh);
2997 if (!gsi_one_before_end_p (gsi))
2998 return false;
2999 twos = gsi_stmt (gsi);
3001 if (!is_gimple_call (ones)
3002 || !is_gimple_call (twos)
3003 || gimple_call_lhs (ones)
3004 || gimple_call_lhs (twos)
3005 || gimple_call_chain (ones)
3006 || gimple_call_chain (twos)
3007 || !gimple_call_same_target_p (ones, twos)
3008 || gimple_call_num_args (ones) != gimple_call_num_args (twos))
3009 return false;
3011 for (ai = 0; ai < gimple_call_num_args (ones); ++ai)
3012 if (!operand_equal_p (gimple_call_arg (ones, ai),
3013 gimple_call_arg (twos, ai), 0))
3014 return false;
3016 return true;
3019 /* Optimize
3020 try { A() } finally { try { ~B() } catch { ~A() } }
3021 try { ... } finally { ~A() }
3022 into
3023 try { A() } catch { ~B() }
3024 try { ~B() ... } finally { ~A() }
3026 This occurs frequently in C++, where A is a local variable and B is a
3027 temporary used in the initializer for A. */
3029 static void
3030 optimize_double_finally (gtry *one, gtry *two)
3032 gimple *oneh;
3033 gimple_stmt_iterator gsi;
3034 gimple_seq cleanup;
3036 cleanup = gimple_try_cleanup (one);
3037 gsi = gsi_start (cleanup);
3038 if (!gsi_one_before_end_p (gsi))
3039 return;
3041 oneh = gsi_stmt (gsi);
3042 if (gimple_code (oneh) != GIMPLE_TRY
3043 || gimple_try_kind (oneh) != GIMPLE_TRY_CATCH)
3044 return;
3046 if (same_handler_p (gimple_try_cleanup (oneh), gimple_try_cleanup (two)))
3048 gimple_seq seq = gimple_try_eval (oneh);
3050 gimple_try_set_cleanup (one, seq);
3051 gimple_try_set_kind (one, GIMPLE_TRY_CATCH);
3052 seq = copy_gimple_seq_and_replace_locals (seq);
3053 gimple_seq_add_seq (&seq, gimple_try_eval (two));
3054 gimple_try_set_eval (two, seq);
3058 /* Perform EH refactoring optimizations that are simpler to do when code
3059 flow has been lowered but EH structures haven't. */
3061 static void
3062 refactor_eh_r (gimple_seq seq)
3064 gimple_stmt_iterator gsi;
3065 gimple *one, *two;
3067 one = NULL;
3068 two = NULL;
3069 gsi = gsi_start (seq);
3070 while (1)
3072 one = two;
3073 if (gsi_end_p (gsi))
3074 two = NULL;
3075 else
3076 two = gsi_stmt (gsi);
3077 if (one && two)
3078 if (gtry *try_one = dyn_cast <gtry *> (one))
3079 if (gtry *try_two = dyn_cast <gtry *> (two))
3080 if (gimple_try_kind (try_one) == GIMPLE_TRY_FINALLY
3081 && gimple_try_kind (try_two) == GIMPLE_TRY_FINALLY)
3082 optimize_double_finally (try_one, try_two);
3083 if (one)
3084 switch (gimple_code (one))
3086 case GIMPLE_TRY:
3087 refactor_eh_r (gimple_try_eval (one));
3088 refactor_eh_r (gimple_try_cleanup (one));
3089 break;
3090 case GIMPLE_CATCH:
3091 refactor_eh_r (gimple_catch_handler (as_a <gcatch *> (one)));
3092 break;
3093 case GIMPLE_EH_FILTER:
3094 refactor_eh_r (gimple_eh_filter_failure (one));
3095 break;
3096 case GIMPLE_EH_ELSE:
3098 geh_else *eh_else_stmt = as_a <geh_else *> (one);
3099 refactor_eh_r (gimple_eh_else_n_body (eh_else_stmt));
3100 refactor_eh_r (gimple_eh_else_e_body (eh_else_stmt));
3102 break;
3103 default:
3104 break;
3106 if (two)
3107 gsi_next (&gsi);
3108 else
3109 break;
3113 namespace {
3115 const pass_data pass_data_refactor_eh =
3117 GIMPLE_PASS, /* type */
3118 "ehopt", /* name */
3119 OPTGROUP_NONE, /* optinfo_flags */
3120 TV_TREE_EH, /* tv_id */
3121 PROP_gimple_lcf, /* properties_required */
3122 0, /* properties_provided */
3123 0, /* properties_destroyed */
3124 0, /* todo_flags_start */
3125 0, /* todo_flags_finish */
3128 class pass_refactor_eh : public gimple_opt_pass
3130 public:
3131 pass_refactor_eh (gcc::context *ctxt)
3132 : gimple_opt_pass (pass_data_refactor_eh, ctxt)
3135 /* opt_pass methods: */
3136 virtual bool gate (function *) { return flag_exceptions != 0; }
3137 virtual unsigned int execute (function *)
3139 refactor_eh_r (gimple_body (current_function_decl));
3140 return 0;
3143 }; // class pass_refactor_eh
3145 } // anon namespace
3147 gimple_opt_pass *
3148 make_pass_refactor_eh (gcc::context *ctxt)
3150 return new pass_refactor_eh (ctxt);
3153 /* At the end of gimple optimization, we can lower RESX. */
3155 static bool
3156 lower_resx (basic_block bb, gresx *stmt,
3157 hash_map<eh_region, tree> *mnt_map)
3159 int lp_nr;
3160 eh_region src_r, dst_r;
3161 gimple_stmt_iterator gsi;
3162 gimple *x;
3163 tree fn, src_nr;
3164 bool ret = false;
3166 lp_nr = lookup_stmt_eh_lp (stmt);
3167 if (lp_nr != 0)
3168 dst_r = get_eh_region_from_lp_number (lp_nr);
3169 else
3170 dst_r = NULL;
3172 src_r = get_eh_region_from_number (gimple_resx_region (stmt));
3173 gsi = gsi_last_bb (bb);
3175 if (src_r == NULL)
3177 /* We can wind up with no source region when pass_cleanup_eh shows
3178 that there are no entries into an eh region and deletes it, but
3179 then the block that contains the resx isn't removed. This can
3180 happen without optimization when the switch statement created by
3181 lower_try_finally_switch isn't simplified to remove the eh case.
3183 Resolve this by expanding the resx node to an abort. */
3185 fn = builtin_decl_implicit (BUILT_IN_TRAP);
3186 x = gimple_build_call (fn, 0);
3187 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3189 while (EDGE_COUNT (bb->succs) > 0)
3190 remove_edge (EDGE_SUCC (bb, 0));
3192 else if (dst_r)
3194 /* When we have a destination region, we resolve this by copying
3195 the excptr and filter values into place, and changing the edge
3196 to immediately after the landing pad. */
3197 edge e;
3199 if (lp_nr < 0)
3201 basic_block new_bb;
3202 tree lab;
3204 /* We are resuming into a MUST_NOT_CALL region. Expand a call to
3205 the failure decl into a new block, if needed. */
3206 gcc_assert (dst_r->type == ERT_MUST_NOT_THROW);
3208 tree *slot = mnt_map->get (dst_r);
3209 if (slot == NULL)
3211 gimple_stmt_iterator gsi2;
3213 new_bb = create_empty_bb (bb);
3214 add_bb_to_loop (new_bb, bb->loop_father);
3215 lab = gimple_block_label (new_bb);
3216 gsi2 = gsi_start_bb (new_bb);
3218 fn = dst_r->u.must_not_throw.failure_decl;
3219 x = gimple_build_call (fn, 0);
3220 gimple_set_location (x, dst_r->u.must_not_throw.failure_loc);
3221 gsi_insert_after (&gsi2, x, GSI_CONTINUE_LINKING);
3223 mnt_map->put (dst_r, lab);
3225 else
3227 lab = *slot;
3228 new_bb = label_to_block (lab);
3231 gcc_assert (EDGE_COUNT (bb->succs) == 0);
3232 e = make_edge (bb, new_bb, EDGE_FALLTHRU);
3233 e->count = bb->count;
3234 e->probability = REG_BR_PROB_BASE;
3236 else
3238 edge_iterator ei;
3239 tree dst_nr = build_int_cst (integer_type_node, dst_r->index);
3241 fn = builtin_decl_implicit (BUILT_IN_EH_COPY_VALUES);
3242 src_nr = build_int_cst (integer_type_node, src_r->index);
3243 x = gimple_build_call (fn, 2, dst_nr, src_nr);
3244 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3246 /* Update the flags for the outgoing edge. */
3247 e = single_succ_edge (bb);
3248 gcc_assert (e->flags & EDGE_EH);
3249 e->flags = (e->flags & ~EDGE_EH) | EDGE_FALLTHRU;
3251 /* If there are no more EH users of the landing pad, delete it. */
3252 FOR_EACH_EDGE (e, ei, e->dest->preds)
3253 if (e->flags & EDGE_EH)
3254 break;
3255 if (e == NULL)
3257 eh_landing_pad lp = get_eh_landing_pad_from_number (lp_nr);
3258 remove_eh_landing_pad (lp);
3262 ret = true;
3264 else
3266 tree var;
3268 /* When we don't have a destination region, this exception escapes
3269 up the call chain. We resolve this by generating a call to the
3270 _Unwind_Resume library function. */
3272 /* The ARM EABI redefines _Unwind_Resume as __cxa_end_cleanup
3273 with no arguments for C++ and Java. Check for that. */
3274 if (src_r->use_cxa_end_cleanup)
3276 fn = builtin_decl_implicit (BUILT_IN_CXA_END_CLEANUP);
3277 x = gimple_build_call (fn, 0);
3278 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3280 else
3282 fn = builtin_decl_implicit (BUILT_IN_EH_POINTER);
3283 src_nr = build_int_cst (integer_type_node, src_r->index);
3284 x = gimple_build_call (fn, 1, src_nr);
3285 var = create_tmp_var (ptr_type_node);
3286 var = make_ssa_name (var, x);
3287 gimple_call_set_lhs (x, var);
3288 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3290 fn = builtin_decl_implicit (BUILT_IN_UNWIND_RESUME);
3291 x = gimple_build_call (fn, 1, var);
3292 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3295 gcc_assert (EDGE_COUNT (bb->succs) == 0);
3298 gsi_remove (&gsi, true);
3300 return ret;
3303 namespace {
3305 const pass_data pass_data_lower_resx =
3307 GIMPLE_PASS, /* type */
3308 "resx", /* name */
3309 OPTGROUP_NONE, /* optinfo_flags */
3310 TV_TREE_EH, /* tv_id */
3311 PROP_gimple_lcf, /* properties_required */
3312 0, /* properties_provided */
3313 0, /* properties_destroyed */
3314 0, /* todo_flags_start */
3315 0, /* todo_flags_finish */
3318 class pass_lower_resx : public gimple_opt_pass
3320 public:
3321 pass_lower_resx (gcc::context *ctxt)
3322 : gimple_opt_pass (pass_data_lower_resx, ctxt)
3325 /* opt_pass methods: */
3326 virtual bool gate (function *) { return flag_exceptions != 0; }
3327 virtual unsigned int execute (function *);
3329 }; // class pass_lower_resx
3331 unsigned
3332 pass_lower_resx::execute (function *fun)
3334 basic_block bb;
3335 bool dominance_invalidated = false;
3336 bool any_rewritten = false;
3338 hash_map<eh_region, tree> mnt_map;
3340 FOR_EACH_BB_FN (bb, fun)
3342 gimple *last = last_stmt (bb);
3343 if (last && is_gimple_resx (last))
3345 dominance_invalidated |=
3346 lower_resx (bb, as_a <gresx *> (last), &mnt_map);
3347 any_rewritten = true;
3351 if (dominance_invalidated)
3353 free_dominance_info (CDI_DOMINATORS);
3354 free_dominance_info (CDI_POST_DOMINATORS);
3357 return any_rewritten ? TODO_update_ssa_only_virtuals : 0;
3360 } // anon namespace
3362 gimple_opt_pass *
3363 make_pass_lower_resx (gcc::context *ctxt)
3365 return new pass_lower_resx (ctxt);
3368 /* Try to optimize var = {v} {CLOBBER} stmts followed just by
3369 external throw. */
3371 static void
3372 optimize_clobbers (basic_block bb)
3374 gimple_stmt_iterator gsi = gsi_last_bb (bb);
3375 bool any_clobbers = false;
3376 bool seen_stack_restore = false;
3377 edge_iterator ei;
3378 edge e;
3380 /* Only optimize anything if the bb contains at least one clobber,
3381 ends with resx (checked by caller), optionally contains some
3382 debug stmts or labels, or at most one __builtin_stack_restore
3383 call, and has an incoming EH edge. */
3384 for (gsi_prev (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
3386 gimple *stmt = gsi_stmt (gsi);
3387 if (is_gimple_debug (stmt))
3388 continue;
3389 if (gimple_clobber_p (stmt))
3391 any_clobbers = true;
3392 continue;
3394 if (!seen_stack_restore
3395 && gimple_call_builtin_p (stmt, BUILT_IN_STACK_RESTORE))
3397 seen_stack_restore = true;
3398 continue;
3400 if (gimple_code (stmt) == GIMPLE_LABEL)
3401 break;
3402 return;
3404 if (!any_clobbers)
3405 return;
3406 FOR_EACH_EDGE (e, ei, bb->preds)
3407 if (e->flags & EDGE_EH)
3408 break;
3409 if (e == NULL)
3410 return;
3411 gsi = gsi_last_bb (bb);
3412 for (gsi_prev (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
3414 gimple *stmt = gsi_stmt (gsi);
3415 if (!gimple_clobber_p (stmt))
3416 continue;
3417 unlink_stmt_vdef (stmt);
3418 gsi_remove (&gsi, true);
3419 release_defs (stmt);
3423 /* Try to sink var = {v} {CLOBBER} stmts followed just by
3424 internal throw to successor BB. */
3426 static int
3427 sink_clobbers (basic_block bb)
3429 edge e;
3430 edge_iterator ei;
3431 gimple_stmt_iterator gsi, dgsi;
3432 basic_block succbb;
3433 bool any_clobbers = false;
3434 unsigned todo = 0;
3436 /* Only optimize if BB has a single EH successor and
3437 all predecessor edges are EH too. */
3438 if (!single_succ_p (bb)
3439 || (single_succ_edge (bb)->flags & EDGE_EH) == 0)
3440 return 0;
3442 FOR_EACH_EDGE (e, ei, bb->preds)
3444 if ((e->flags & EDGE_EH) == 0)
3445 return 0;
3448 /* And BB contains only CLOBBER stmts before the final
3449 RESX. */
3450 gsi = gsi_last_bb (bb);
3451 for (gsi_prev (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
3453 gimple *stmt = gsi_stmt (gsi);
3454 if (is_gimple_debug (stmt))
3455 continue;
3456 if (gimple_code (stmt) == GIMPLE_LABEL)
3457 break;
3458 if (!gimple_clobber_p (stmt))
3459 return 0;
3460 any_clobbers = true;
3462 if (!any_clobbers)
3463 return 0;
3465 edge succe = single_succ_edge (bb);
3466 succbb = succe->dest;
3468 /* See if there is a virtual PHI node to take an updated virtual
3469 operand from. */
3470 gphi *vphi = NULL;
3471 tree vuse = NULL_TREE;
3472 for (gphi_iterator gpi = gsi_start_phis (succbb);
3473 !gsi_end_p (gpi); gsi_next (&gpi))
3475 tree res = gimple_phi_result (gpi.phi ());
3476 if (virtual_operand_p (res))
3478 vphi = gpi.phi ();
3479 vuse = res;
3480 break;
3484 dgsi = gsi_after_labels (succbb);
3485 gsi = gsi_last_bb (bb);
3486 for (gsi_prev (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
3488 gimple *stmt = gsi_stmt (gsi);
3489 tree lhs;
3490 if (is_gimple_debug (stmt))
3491 continue;
3492 if (gimple_code (stmt) == GIMPLE_LABEL)
3493 break;
3494 lhs = gimple_assign_lhs (stmt);
3495 /* Unfortunately we don't have dominance info updated at this
3496 point, so checking if
3497 dominated_by_p (CDI_DOMINATORS, succbb,
3498 gimple_bb (SSA_NAME_DEF_STMT (TREE_OPERAND (lhs, 0)))
3499 would be too costly. Thus, avoid sinking any clobbers that
3500 refer to non-(D) SSA_NAMEs. */
3501 if (TREE_CODE (lhs) == MEM_REF
3502 && TREE_CODE (TREE_OPERAND (lhs, 0)) == SSA_NAME
3503 && !SSA_NAME_IS_DEFAULT_DEF (TREE_OPERAND (lhs, 0)))
3505 unlink_stmt_vdef (stmt);
3506 gsi_remove (&gsi, true);
3507 release_defs (stmt);
3508 continue;
3511 /* As we do not change stmt order when sinking across a
3512 forwarder edge we can keep virtual operands in place. */
3513 gsi_remove (&gsi, false);
3514 gsi_insert_before (&dgsi, stmt, GSI_NEW_STMT);
3516 /* But adjust virtual operands if we sunk across a PHI node. */
3517 if (vuse)
3519 gimple *use_stmt;
3520 imm_use_iterator iter;
3521 use_operand_p use_p;
3522 FOR_EACH_IMM_USE_STMT (use_stmt, iter, vuse)
3523 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
3524 SET_USE (use_p, gimple_vdef (stmt));
3525 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (vuse))
3527 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (gimple_vdef (stmt)) = 1;
3528 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (vuse) = 0;
3530 /* Adjust the incoming virtual operand. */
3531 SET_USE (PHI_ARG_DEF_PTR_FROM_EDGE (vphi, succe), gimple_vuse (stmt));
3532 SET_USE (gimple_vuse_op (stmt), vuse);
3534 /* If there isn't a single predecessor but no virtual PHI node
3535 arrange for virtual operands to be renamed. */
3536 else if (gimple_vuse_op (stmt) != NULL_USE_OPERAND_P
3537 && !single_pred_p (succbb))
3539 /* In this case there will be no use of the VDEF of this stmt.
3540 ??? Unless this is a secondary opportunity and we have not
3541 removed unreachable blocks yet, so we cannot assert this.
3542 Which also means we will end up renaming too many times. */
3543 SET_USE (gimple_vuse_op (stmt), gimple_vop (cfun));
3544 mark_virtual_operands_for_renaming (cfun);
3545 todo |= TODO_update_ssa_only_virtuals;
3549 return todo;
3552 /* At the end of inlining, we can lower EH_DISPATCH. Return true when
3553 we have found some duplicate labels and removed some edges. */
3555 static bool
3556 lower_eh_dispatch (basic_block src, geh_dispatch *stmt)
3558 gimple_stmt_iterator gsi;
3559 int region_nr;
3560 eh_region r;
3561 tree filter, fn;
3562 gimple *x;
3563 bool redirected = false;
3565 region_nr = gimple_eh_dispatch_region (stmt);
3566 r = get_eh_region_from_number (region_nr);
3568 gsi = gsi_last_bb (src);
3570 switch (r->type)
3572 case ERT_TRY:
3574 auto_vec<tree> labels;
3575 tree default_label = NULL;
3576 eh_catch c;
3577 edge_iterator ei;
3578 edge e;
3579 hash_set<tree> seen_values;
3581 /* Collect the labels for a switch. Zero the post_landing_pad
3582 field becase we'll no longer have anything keeping these labels
3583 in existence and the optimizer will be free to merge these
3584 blocks at will. */
3585 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
3587 tree tp_node, flt_node, lab = c->label;
3588 bool have_label = false;
3590 c->label = NULL;
3591 tp_node = c->type_list;
3592 flt_node = c->filter_list;
3594 if (tp_node == NULL)
3596 default_label = lab;
3597 break;
3601 /* Filter out duplicate labels that arise when this handler
3602 is shadowed by an earlier one. When no labels are
3603 attached to the handler anymore, we remove
3604 the corresponding edge and then we delete unreachable
3605 blocks at the end of this pass. */
3606 if (! seen_values.contains (TREE_VALUE (flt_node)))
3608 tree t = build_case_label (TREE_VALUE (flt_node),
3609 NULL, lab);
3610 labels.safe_push (t);
3611 seen_values.add (TREE_VALUE (flt_node));
3612 have_label = true;
3615 tp_node = TREE_CHAIN (tp_node);
3616 flt_node = TREE_CHAIN (flt_node);
3618 while (tp_node);
3619 if (! have_label)
3621 remove_edge (find_edge (src, label_to_block (lab)));
3622 redirected = true;
3626 /* Clean up the edge flags. */
3627 FOR_EACH_EDGE (e, ei, src->succs)
3629 if (e->flags & EDGE_FALLTHRU)
3631 /* If there was no catch-all, use the fallthru edge. */
3632 if (default_label == NULL)
3633 default_label = gimple_block_label (e->dest);
3634 e->flags &= ~EDGE_FALLTHRU;
3637 gcc_assert (default_label != NULL);
3639 /* Don't generate a switch if there's only a default case.
3640 This is common in the form of try { A; } catch (...) { B; }. */
3641 if (!labels.exists ())
3643 e = single_succ_edge (src);
3644 e->flags |= EDGE_FALLTHRU;
3646 else
3648 fn = builtin_decl_implicit (BUILT_IN_EH_FILTER);
3649 x = gimple_build_call (fn, 1, build_int_cst (integer_type_node,
3650 region_nr));
3651 filter = create_tmp_var (TREE_TYPE (TREE_TYPE (fn)));
3652 filter = make_ssa_name (filter, x);
3653 gimple_call_set_lhs (x, filter);
3654 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3656 /* Turn the default label into a default case. */
3657 default_label = build_case_label (NULL, NULL, default_label);
3658 sort_case_labels (labels);
3660 x = gimple_build_switch (filter, default_label, labels);
3661 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3664 break;
3666 case ERT_ALLOWED_EXCEPTIONS:
3668 edge b_e = BRANCH_EDGE (src);
3669 edge f_e = FALLTHRU_EDGE (src);
3671 fn = builtin_decl_implicit (BUILT_IN_EH_FILTER);
3672 x = gimple_build_call (fn, 1, build_int_cst (integer_type_node,
3673 region_nr));
3674 filter = create_tmp_var (TREE_TYPE (TREE_TYPE (fn)));
3675 filter = make_ssa_name (filter, x);
3676 gimple_call_set_lhs (x, filter);
3677 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3679 r->u.allowed.label = NULL;
3680 x = gimple_build_cond (EQ_EXPR, filter,
3681 build_int_cst (TREE_TYPE (filter),
3682 r->u.allowed.filter),
3683 NULL_TREE, NULL_TREE);
3684 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3686 b_e->flags = b_e->flags | EDGE_TRUE_VALUE;
3687 f_e->flags = (f_e->flags & ~EDGE_FALLTHRU) | EDGE_FALSE_VALUE;
3689 break;
3691 default:
3692 gcc_unreachable ();
3695 /* Replace the EH_DISPATCH with the SWITCH or COND generated above. */
3696 gsi_remove (&gsi, true);
3697 return redirected;
3700 namespace {
3702 const pass_data pass_data_lower_eh_dispatch =
3704 GIMPLE_PASS, /* type */
3705 "ehdisp", /* name */
3706 OPTGROUP_NONE, /* optinfo_flags */
3707 TV_TREE_EH, /* tv_id */
3708 PROP_gimple_lcf, /* properties_required */
3709 0, /* properties_provided */
3710 0, /* properties_destroyed */
3711 0, /* todo_flags_start */
3712 0, /* todo_flags_finish */
3715 class pass_lower_eh_dispatch : public gimple_opt_pass
3717 public:
3718 pass_lower_eh_dispatch (gcc::context *ctxt)
3719 : gimple_opt_pass (pass_data_lower_eh_dispatch, ctxt)
3722 /* opt_pass methods: */
3723 virtual bool gate (function *fun) { return fun->eh->region_tree != NULL; }
3724 virtual unsigned int execute (function *);
3726 }; // class pass_lower_eh_dispatch
3728 unsigned
3729 pass_lower_eh_dispatch::execute (function *fun)
3731 basic_block bb;
3732 int flags = 0;
3733 bool redirected = false;
3735 assign_filter_values ();
3737 FOR_EACH_BB_FN (bb, fun)
3739 gimple *last = last_stmt (bb);
3740 if (last == NULL)
3741 continue;
3742 if (gimple_code (last) == GIMPLE_EH_DISPATCH)
3744 redirected |= lower_eh_dispatch (bb,
3745 as_a <geh_dispatch *> (last));
3746 flags |= TODO_update_ssa_only_virtuals;
3748 else if (gimple_code (last) == GIMPLE_RESX)
3750 if (stmt_can_throw_external (last))
3751 optimize_clobbers (bb);
3752 else
3753 flags |= sink_clobbers (bb);
3757 if (redirected)
3758 delete_unreachable_blocks ();
3759 return flags;
3762 } // anon namespace
3764 gimple_opt_pass *
3765 make_pass_lower_eh_dispatch (gcc::context *ctxt)
3767 return new pass_lower_eh_dispatch (ctxt);
3770 /* Walk statements, see what regions and, optionally, landing pads
3771 are really referenced.
3773 Returns in R_REACHABLEP an sbitmap with bits set for reachable regions,
3774 and in LP_REACHABLE an sbitmap with bits set for reachable landing pads.
3776 Passing NULL for LP_REACHABLE is valid, in this case only reachable
3777 regions are marked.
3779 The caller is responsible for freeing the returned sbitmaps. */
3781 static void
3782 mark_reachable_handlers (sbitmap *r_reachablep, sbitmap *lp_reachablep)
3784 sbitmap r_reachable, lp_reachable;
3785 basic_block bb;
3786 bool mark_landing_pads = (lp_reachablep != NULL);
3787 gcc_checking_assert (r_reachablep != NULL);
3789 r_reachable = sbitmap_alloc (cfun->eh->region_array->length ());
3790 bitmap_clear (r_reachable);
3791 *r_reachablep = r_reachable;
3793 if (mark_landing_pads)
3795 lp_reachable = sbitmap_alloc (cfun->eh->lp_array->length ());
3796 bitmap_clear (lp_reachable);
3797 *lp_reachablep = lp_reachable;
3799 else
3800 lp_reachable = NULL;
3802 FOR_EACH_BB_FN (bb, cfun)
3804 gimple_stmt_iterator gsi;
3806 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
3808 gimple *stmt = gsi_stmt (gsi);
3810 if (mark_landing_pads)
3812 int lp_nr = lookup_stmt_eh_lp (stmt);
3814 /* Negative LP numbers are MUST_NOT_THROW regions which
3815 are not considered BB enders. */
3816 if (lp_nr < 0)
3817 bitmap_set_bit (r_reachable, -lp_nr);
3819 /* Positive LP numbers are real landing pads, and BB enders. */
3820 else if (lp_nr > 0)
3822 gcc_assert (gsi_one_before_end_p (gsi));
3823 eh_region region = get_eh_region_from_lp_number (lp_nr);
3824 bitmap_set_bit (r_reachable, region->index);
3825 bitmap_set_bit (lp_reachable, lp_nr);
3829 /* Avoid removing regions referenced from RESX/EH_DISPATCH. */
3830 switch (gimple_code (stmt))
3832 case GIMPLE_RESX:
3833 bitmap_set_bit (r_reachable,
3834 gimple_resx_region (as_a <gresx *> (stmt)));
3835 break;
3836 case GIMPLE_EH_DISPATCH:
3837 bitmap_set_bit (r_reachable,
3838 gimple_eh_dispatch_region (
3839 as_a <geh_dispatch *> (stmt)));
3840 break;
3841 case GIMPLE_CALL:
3842 if (gimple_call_builtin_p (stmt, BUILT_IN_EH_COPY_VALUES))
3843 for (int i = 0; i < 2; ++i)
3845 tree rt = gimple_call_arg (stmt, i);
3846 HOST_WIDE_INT ri = tree_to_shwi (rt);
3848 gcc_assert (ri == (int)ri);
3849 bitmap_set_bit (r_reachable, ri);
3851 break;
3852 default:
3853 break;
3859 /* Remove unreachable handlers and unreachable landing pads. */
3861 static void
3862 remove_unreachable_handlers (void)
3864 sbitmap r_reachable, lp_reachable;
3865 eh_region region;
3866 eh_landing_pad lp;
3867 unsigned i;
3869 mark_reachable_handlers (&r_reachable, &lp_reachable);
3871 if (dump_file)
3873 fprintf (dump_file, "Before removal of unreachable regions:\n");
3874 dump_eh_tree (dump_file, cfun);
3875 fprintf (dump_file, "Reachable regions: ");
3876 dump_bitmap_file (dump_file, r_reachable);
3877 fprintf (dump_file, "Reachable landing pads: ");
3878 dump_bitmap_file (dump_file, lp_reachable);
3881 if (dump_file)
3883 FOR_EACH_VEC_SAFE_ELT (cfun->eh->region_array, i, region)
3884 if (region && !bitmap_bit_p (r_reachable, region->index))
3885 fprintf (dump_file,
3886 "Removing unreachable region %d\n",
3887 region->index);
3890 remove_unreachable_eh_regions (r_reachable);
3892 FOR_EACH_VEC_SAFE_ELT (cfun->eh->lp_array, i, lp)
3893 if (lp && !bitmap_bit_p (lp_reachable, lp->index))
3895 if (dump_file)
3896 fprintf (dump_file,
3897 "Removing unreachable landing pad %d\n",
3898 lp->index);
3899 remove_eh_landing_pad (lp);
3902 if (dump_file)
3904 fprintf (dump_file, "\n\nAfter removal of unreachable regions:\n");
3905 dump_eh_tree (dump_file, cfun);
3906 fprintf (dump_file, "\n\n");
3909 sbitmap_free (r_reachable);
3910 sbitmap_free (lp_reachable);
3912 if (flag_checking)
3913 verify_eh_tree (cfun);
3916 /* Remove unreachable handlers if any landing pads have been removed after
3917 last ehcleanup pass (due to gimple_purge_dead_eh_edges). */
3919 void
3920 maybe_remove_unreachable_handlers (void)
3922 eh_landing_pad lp;
3923 unsigned i;
3925 if (cfun->eh == NULL)
3926 return;
3928 FOR_EACH_VEC_SAFE_ELT (cfun->eh->lp_array, i, lp)
3929 if (lp && lp->post_landing_pad)
3931 if (label_to_block (lp->post_landing_pad) == NULL)
3933 remove_unreachable_handlers ();
3934 return;
3939 /* Remove regions that do not have landing pads. This assumes
3940 that remove_unreachable_handlers has already been run, and
3941 that we've just manipulated the landing pads since then.
3943 Preserve regions with landing pads and regions that prevent
3944 exceptions from propagating further, even if these regions
3945 are not reachable. */
3947 static void
3948 remove_unreachable_handlers_no_lp (void)
3950 eh_region region;
3951 sbitmap r_reachable;
3952 unsigned i;
3954 mark_reachable_handlers (&r_reachable, /*lp_reachablep=*/NULL);
3956 FOR_EACH_VEC_SAFE_ELT (cfun->eh->region_array, i, region)
3958 if (! region)
3959 continue;
3961 if (region->landing_pads != NULL
3962 || region->type == ERT_MUST_NOT_THROW)
3963 bitmap_set_bit (r_reachable, region->index);
3965 if (dump_file
3966 && !bitmap_bit_p (r_reachable, region->index))
3967 fprintf (dump_file,
3968 "Removing unreachable region %d\n",
3969 region->index);
3972 remove_unreachable_eh_regions (r_reachable);
3974 sbitmap_free (r_reachable);
3977 /* Undo critical edge splitting on an EH landing pad. Earlier, we
3978 optimisticaly split all sorts of edges, including EH edges. The
3979 optimization passes in between may not have needed them; if not,
3980 we should undo the split.
3982 Recognize this case by having one EH edge incoming to the BB and
3983 one normal edge outgoing; BB should be empty apart from the
3984 post_landing_pad label.
3986 Note that this is slightly different from the empty handler case
3987 handled by cleanup_empty_eh, in that the actual handler may yet
3988 have actual code but the landing pad has been separated from the
3989 handler. As such, cleanup_empty_eh relies on this transformation
3990 having been done first. */
3992 static bool
3993 unsplit_eh (eh_landing_pad lp)
3995 basic_block bb = label_to_block (lp->post_landing_pad);
3996 gimple_stmt_iterator gsi;
3997 edge e_in, e_out;
3999 /* Quickly check the edge counts on BB for singularity. */
4000 if (!single_pred_p (bb) || !single_succ_p (bb))
4001 return false;
4002 e_in = single_pred_edge (bb);
4003 e_out = single_succ_edge (bb);
4005 /* Input edge must be EH and output edge must be normal. */
4006 if ((e_in->flags & EDGE_EH) == 0 || (e_out->flags & EDGE_EH) != 0)
4007 return false;
4009 /* The block must be empty except for the labels and debug insns. */
4010 gsi = gsi_after_labels (bb);
4011 if (!gsi_end_p (gsi) && is_gimple_debug (gsi_stmt (gsi)))
4012 gsi_next_nondebug (&gsi);
4013 if (!gsi_end_p (gsi))
4014 return false;
4016 /* The destination block must not already have a landing pad
4017 for a different region. */
4018 for (gsi = gsi_start_bb (e_out->dest); !gsi_end_p (gsi); gsi_next (&gsi))
4020 glabel *label_stmt = dyn_cast <glabel *> (gsi_stmt (gsi));
4021 tree lab;
4022 int lp_nr;
4024 if (!label_stmt)
4025 break;
4026 lab = gimple_label_label (label_stmt);
4027 lp_nr = EH_LANDING_PAD_NR (lab);
4028 if (lp_nr && get_eh_region_from_lp_number (lp_nr) != lp->region)
4029 return false;
4032 /* The new destination block must not already be a destination of
4033 the source block, lest we merge fallthru and eh edges and get
4034 all sorts of confused. */
4035 if (find_edge (e_in->src, e_out->dest))
4036 return false;
4038 /* ??? We can get degenerate phis due to cfg cleanups. I would have
4039 thought this should have been cleaned up by a phicprop pass, but
4040 that doesn't appear to handle virtuals. Propagate by hand. */
4041 if (!gimple_seq_empty_p (phi_nodes (bb)))
4043 for (gphi_iterator gpi = gsi_start_phis (bb); !gsi_end_p (gpi); )
4045 gimple *use_stmt;
4046 gphi *phi = gpi.phi ();
4047 tree lhs = gimple_phi_result (phi);
4048 tree rhs = gimple_phi_arg_def (phi, 0);
4049 use_operand_p use_p;
4050 imm_use_iterator iter;
4052 FOR_EACH_IMM_USE_STMT (use_stmt, iter, lhs)
4054 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
4055 SET_USE (use_p, rhs);
4058 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs))
4059 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rhs) = 1;
4061 remove_phi_node (&gpi, true);
4065 if (dump_file && (dump_flags & TDF_DETAILS))
4066 fprintf (dump_file, "Unsplit EH landing pad %d to block %i.\n",
4067 lp->index, e_out->dest->index);
4069 /* Redirect the edge. Since redirect_eh_edge_1 expects to be moving
4070 a successor edge, humor it. But do the real CFG change with the
4071 predecessor of E_OUT in order to preserve the ordering of arguments
4072 to the PHI nodes in E_OUT->DEST. */
4073 redirect_eh_edge_1 (e_in, e_out->dest, false);
4074 redirect_edge_pred (e_out, e_in->src);
4075 e_out->flags = e_in->flags;
4076 e_out->probability = e_in->probability;
4077 e_out->count = e_in->count;
4078 remove_edge (e_in);
4080 return true;
4083 /* Examine each landing pad block and see if it matches unsplit_eh. */
4085 static bool
4086 unsplit_all_eh (void)
4088 bool changed = false;
4089 eh_landing_pad lp;
4090 int i;
4092 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
4093 if (lp)
4094 changed |= unsplit_eh (lp);
4096 return changed;
4099 /* A subroutine of cleanup_empty_eh. Redirect all EH edges incoming
4100 to OLD_BB to NEW_BB; return true on success, false on failure.
4102 OLD_BB_OUT is the edge into NEW_BB from OLD_BB, so if we miss any
4103 PHI variables from OLD_BB we can pick them up from OLD_BB_OUT.
4104 Virtual PHIs may be deleted and marked for renaming. */
4106 static bool
4107 cleanup_empty_eh_merge_phis (basic_block new_bb, basic_block old_bb,
4108 edge old_bb_out, bool change_region)
4110 gphi_iterator ngsi, ogsi;
4111 edge_iterator ei;
4112 edge e;
4113 bitmap ophi_handled;
4115 /* The destination block must not be a regular successor for any
4116 of the preds of the landing pad. Thus, avoid turning
4117 <..>
4118 | \ EH
4119 | <..>
4121 <..>
4122 into
4123 <..>
4124 | | EH
4125 <..>
4126 which CFG verification would choke on. See PR45172 and PR51089. */
4127 FOR_EACH_EDGE (e, ei, old_bb->preds)
4128 if (find_edge (e->src, new_bb))
4129 return false;
4131 FOR_EACH_EDGE (e, ei, old_bb->preds)
4132 redirect_edge_var_map_clear (e);
4134 ophi_handled = BITMAP_ALLOC (NULL);
4136 /* First, iterate through the PHIs on NEW_BB and set up the edge_var_map
4137 for the edges we're going to move. */
4138 for (ngsi = gsi_start_phis (new_bb); !gsi_end_p (ngsi); gsi_next (&ngsi))
4140 gphi *ophi, *nphi = ngsi.phi ();
4141 tree nresult, nop;
4143 nresult = gimple_phi_result (nphi);
4144 nop = gimple_phi_arg_def (nphi, old_bb_out->dest_idx);
4146 /* Find the corresponding PHI in OLD_BB so we can forward-propagate
4147 the source ssa_name. */
4148 ophi = NULL;
4149 for (ogsi = gsi_start_phis (old_bb); !gsi_end_p (ogsi); gsi_next (&ogsi))
4151 ophi = ogsi.phi ();
4152 if (gimple_phi_result (ophi) == nop)
4153 break;
4154 ophi = NULL;
4157 /* If we did find the corresponding PHI, copy those inputs. */
4158 if (ophi)
4160 /* If NOP is used somewhere else beyond phis in new_bb, give up. */
4161 if (!has_single_use (nop))
4163 imm_use_iterator imm_iter;
4164 use_operand_p use_p;
4166 FOR_EACH_IMM_USE_FAST (use_p, imm_iter, nop)
4168 if (!gimple_debug_bind_p (USE_STMT (use_p))
4169 && (gimple_code (USE_STMT (use_p)) != GIMPLE_PHI
4170 || gimple_bb (USE_STMT (use_p)) != new_bb))
4171 goto fail;
4174 bitmap_set_bit (ophi_handled, SSA_NAME_VERSION (nop));
4175 FOR_EACH_EDGE (e, ei, old_bb->preds)
4177 location_t oloc;
4178 tree oop;
4180 if ((e->flags & EDGE_EH) == 0)
4181 continue;
4182 oop = gimple_phi_arg_def (ophi, e->dest_idx);
4183 oloc = gimple_phi_arg_location (ophi, e->dest_idx);
4184 redirect_edge_var_map_add (e, nresult, oop, oloc);
4187 /* If we didn't find the PHI, if it's a real variable or a VOP, we know
4188 from the fact that OLD_BB is tree_empty_eh_handler_p that the
4189 variable is unchanged from input to the block and we can simply
4190 re-use the input to NEW_BB from the OLD_BB_OUT edge. */
4191 else
4193 location_t nloc
4194 = gimple_phi_arg_location (nphi, old_bb_out->dest_idx);
4195 FOR_EACH_EDGE (e, ei, old_bb->preds)
4196 redirect_edge_var_map_add (e, nresult, nop, nloc);
4200 /* Second, verify that all PHIs from OLD_BB have been handled. If not,
4201 we don't know what values from the other edges into NEW_BB to use. */
4202 for (ogsi = gsi_start_phis (old_bb); !gsi_end_p (ogsi); gsi_next (&ogsi))
4204 gphi *ophi = ogsi.phi ();
4205 tree oresult = gimple_phi_result (ophi);
4206 if (!bitmap_bit_p (ophi_handled, SSA_NAME_VERSION (oresult)))
4207 goto fail;
4210 /* Finally, move the edges and update the PHIs. */
4211 for (ei = ei_start (old_bb->preds); (e = ei_safe_edge (ei)); )
4212 if (e->flags & EDGE_EH)
4214 /* ??? CFG manipluation routines do not try to update loop
4215 form on edge redirection. Do so manually here for now. */
4216 /* If we redirect a loop entry or latch edge that will either create
4217 a multiple entry loop or rotate the loop. If the loops merge
4218 we may have created a loop with multiple latches.
4219 All of this isn't easily fixed thus cancel the affected loop
4220 and mark the other loop as possibly having multiple latches. */
4221 if (e->dest == e->dest->loop_father->header)
4223 mark_loop_for_removal (e->dest->loop_father);
4224 new_bb->loop_father->latch = NULL;
4225 loops_state_set (LOOPS_MAY_HAVE_MULTIPLE_LATCHES);
4227 redirect_eh_edge_1 (e, new_bb, change_region);
4228 redirect_edge_succ (e, new_bb);
4229 flush_pending_stmts (e);
4231 else
4232 ei_next (&ei);
4234 BITMAP_FREE (ophi_handled);
4235 return true;
4237 fail:
4238 FOR_EACH_EDGE (e, ei, old_bb->preds)
4239 redirect_edge_var_map_clear (e);
4240 BITMAP_FREE (ophi_handled);
4241 return false;
4244 /* A subroutine of cleanup_empty_eh. Move a landing pad LP from its
4245 old region to NEW_REGION at BB. */
4247 static void
4248 cleanup_empty_eh_move_lp (basic_block bb, edge e_out,
4249 eh_landing_pad lp, eh_region new_region)
4251 gimple_stmt_iterator gsi;
4252 eh_landing_pad *pp;
4254 for (pp = &lp->region->landing_pads; *pp != lp; pp = &(*pp)->next_lp)
4255 continue;
4256 *pp = lp->next_lp;
4258 lp->region = new_region;
4259 lp->next_lp = new_region->landing_pads;
4260 new_region->landing_pads = lp;
4262 /* Delete the RESX that was matched within the empty handler block. */
4263 gsi = gsi_last_bb (bb);
4264 unlink_stmt_vdef (gsi_stmt (gsi));
4265 gsi_remove (&gsi, true);
4267 /* Clean up E_OUT for the fallthru. */
4268 e_out->flags = (e_out->flags & ~EDGE_EH) | EDGE_FALLTHRU;
4269 e_out->probability = REG_BR_PROB_BASE;
4272 /* A subroutine of cleanup_empty_eh. Handle more complex cases of
4273 unsplitting than unsplit_eh was prepared to handle, e.g. when
4274 multiple incoming edges and phis are involved. */
4276 static bool
4277 cleanup_empty_eh_unsplit (basic_block bb, edge e_out, eh_landing_pad lp)
4279 gimple_stmt_iterator gsi;
4280 tree lab;
4282 /* We really ought not have totally lost everything following
4283 a landing pad label. Given that BB is empty, there had better
4284 be a successor. */
4285 gcc_assert (e_out != NULL);
4287 /* The destination block must not already have a landing pad
4288 for a different region. */
4289 lab = NULL;
4290 for (gsi = gsi_start_bb (e_out->dest); !gsi_end_p (gsi); gsi_next (&gsi))
4292 glabel *stmt = dyn_cast <glabel *> (gsi_stmt (gsi));
4293 int lp_nr;
4295 if (!stmt)
4296 break;
4297 lab = gimple_label_label (stmt);
4298 lp_nr = EH_LANDING_PAD_NR (lab);
4299 if (lp_nr && get_eh_region_from_lp_number (lp_nr) != lp->region)
4300 return false;
4303 /* Attempt to move the PHIs into the successor block. */
4304 if (cleanup_empty_eh_merge_phis (e_out->dest, bb, e_out, false))
4306 if (dump_file && (dump_flags & TDF_DETAILS))
4307 fprintf (dump_file,
4308 "Unsplit EH landing pad %d to block %i "
4309 "(via cleanup_empty_eh).\n",
4310 lp->index, e_out->dest->index);
4311 return true;
4314 return false;
4317 /* Return true if edge E_FIRST is part of an empty infinite loop
4318 or leads to such a loop through a series of single successor
4319 empty bbs. */
4321 static bool
4322 infinite_empty_loop_p (edge e_first)
4324 bool inf_loop = false;
4325 edge e;
4327 if (e_first->dest == e_first->src)
4328 return true;
4330 e_first->src->aux = (void *) 1;
4331 for (e = e_first; single_succ_p (e->dest); e = single_succ_edge (e->dest))
4333 gimple_stmt_iterator gsi;
4334 if (e->dest->aux)
4336 inf_loop = true;
4337 break;
4339 e->dest->aux = (void *) 1;
4340 gsi = gsi_after_labels (e->dest);
4341 if (!gsi_end_p (gsi) && is_gimple_debug (gsi_stmt (gsi)))
4342 gsi_next_nondebug (&gsi);
4343 if (!gsi_end_p (gsi))
4344 break;
4346 e_first->src->aux = NULL;
4347 for (e = e_first; e->dest->aux; e = single_succ_edge (e->dest))
4348 e->dest->aux = NULL;
4350 return inf_loop;
4353 /* Examine the block associated with LP to determine if it's an empty
4354 handler for its EH region. If so, attempt to redirect EH edges to
4355 an outer region. Return true the CFG was updated in any way. This
4356 is similar to jump forwarding, just across EH edges. */
4358 static bool
4359 cleanup_empty_eh (eh_landing_pad lp)
4361 basic_block bb = label_to_block (lp->post_landing_pad);
4362 gimple_stmt_iterator gsi;
4363 gimple *resx;
4364 eh_region new_region;
4365 edge_iterator ei;
4366 edge e, e_out;
4367 bool has_non_eh_pred;
4368 bool ret = false;
4369 int new_lp_nr;
4371 /* There can be zero or one edges out of BB. This is the quickest test. */
4372 switch (EDGE_COUNT (bb->succs))
4374 case 0:
4375 e_out = NULL;
4376 break;
4377 case 1:
4378 e_out = single_succ_edge (bb);
4379 break;
4380 default:
4381 return false;
4384 resx = last_stmt (bb);
4385 if (resx && is_gimple_resx (resx))
4387 if (stmt_can_throw_external (resx))
4388 optimize_clobbers (bb);
4389 else if (sink_clobbers (bb))
4390 ret = true;
4393 gsi = gsi_after_labels (bb);
4395 /* Make sure to skip debug statements. */
4396 if (!gsi_end_p (gsi) && is_gimple_debug (gsi_stmt (gsi)))
4397 gsi_next_nondebug (&gsi);
4399 /* If the block is totally empty, look for more unsplitting cases. */
4400 if (gsi_end_p (gsi))
4402 /* For the degenerate case of an infinite loop bail out.
4403 If bb has no successors and is totally empty, which can happen e.g.
4404 because of incorrect noreturn attribute, bail out too. */
4405 if (e_out == NULL
4406 || infinite_empty_loop_p (e_out))
4407 return ret;
4409 return ret | cleanup_empty_eh_unsplit (bb, e_out, lp);
4412 /* The block should consist only of a single RESX statement, modulo a
4413 preceding call to __builtin_stack_restore if there is no outgoing
4414 edge, since the call can be eliminated in this case. */
4415 resx = gsi_stmt (gsi);
4416 if (!e_out && gimple_call_builtin_p (resx, BUILT_IN_STACK_RESTORE))
4418 gsi_next (&gsi);
4419 resx = gsi_stmt (gsi);
4421 if (!is_gimple_resx (resx))
4422 return ret;
4423 gcc_assert (gsi_one_before_end_p (gsi));
4425 /* Determine if there are non-EH edges, or resx edges into the handler. */
4426 has_non_eh_pred = false;
4427 FOR_EACH_EDGE (e, ei, bb->preds)
4428 if (!(e->flags & EDGE_EH))
4429 has_non_eh_pred = true;
4431 /* Find the handler that's outer of the empty handler by looking at
4432 where the RESX instruction was vectored. */
4433 new_lp_nr = lookup_stmt_eh_lp (resx);
4434 new_region = get_eh_region_from_lp_number (new_lp_nr);
4436 /* If there's no destination region within the current function,
4437 redirection is trivial via removing the throwing statements from
4438 the EH region, removing the EH edges, and allowing the block
4439 to go unreachable. */
4440 if (new_region == NULL)
4442 gcc_assert (e_out == NULL);
4443 for (ei = ei_start (bb->preds); (e = ei_safe_edge (ei)); )
4444 if (e->flags & EDGE_EH)
4446 gimple *stmt = last_stmt (e->src);
4447 remove_stmt_from_eh_lp (stmt);
4448 remove_edge (e);
4450 else
4451 ei_next (&ei);
4452 goto succeed;
4455 /* If the destination region is a MUST_NOT_THROW, allow the runtime
4456 to handle the abort and allow the blocks to go unreachable. */
4457 if (new_region->type == ERT_MUST_NOT_THROW)
4459 for (ei = ei_start (bb->preds); (e = ei_safe_edge (ei)); )
4460 if (e->flags & EDGE_EH)
4462 gimple *stmt = last_stmt (e->src);
4463 remove_stmt_from_eh_lp (stmt);
4464 add_stmt_to_eh_lp (stmt, new_lp_nr);
4465 remove_edge (e);
4467 else
4468 ei_next (&ei);
4469 goto succeed;
4472 /* Try to redirect the EH edges and merge the PHIs into the destination
4473 landing pad block. If the merge succeeds, we'll already have redirected
4474 all the EH edges. The handler itself will go unreachable if there were
4475 no normal edges. */
4476 if (cleanup_empty_eh_merge_phis (e_out->dest, bb, e_out, true))
4477 goto succeed;
4479 /* Finally, if all input edges are EH edges, then we can (potentially)
4480 reduce the number of transfers from the runtime by moving the landing
4481 pad from the original region to the new region. This is a win when
4482 we remove the last CLEANUP region along a particular exception
4483 propagation path. Since nothing changes except for the region with
4484 which the landing pad is associated, the PHI nodes do not need to be
4485 adjusted at all. */
4486 if (!has_non_eh_pred)
4488 cleanup_empty_eh_move_lp (bb, e_out, lp, new_region);
4489 if (dump_file && (dump_flags & TDF_DETAILS))
4490 fprintf (dump_file, "Empty EH handler %i moved to EH region %i.\n",
4491 lp->index, new_region->index);
4493 /* ??? The CFG didn't change, but we may have rendered the
4494 old EH region unreachable. Trigger a cleanup there. */
4495 return true;
4498 return ret;
4500 succeed:
4501 if (dump_file && (dump_flags & TDF_DETAILS))
4502 fprintf (dump_file, "Empty EH handler %i removed.\n", lp->index);
4503 remove_eh_landing_pad (lp);
4504 return true;
4507 /* Do a post-order traversal of the EH region tree. Examine each
4508 post_landing_pad block and see if we can eliminate it as empty. */
4510 static bool
4511 cleanup_all_empty_eh (void)
4513 bool changed = false;
4514 eh_landing_pad lp;
4515 int i;
4517 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
4518 if (lp)
4519 changed |= cleanup_empty_eh (lp);
4521 return changed;
4524 /* Perform cleanups and lowering of exception handling
4525 1) cleanups regions with handlers doing nothing are optimized out
4526 2) MUST_NOT_THROW regions that became dead because of 1) are optimized out
4527 3) Info about regions that are containing instructions, and regions
4528 reachable via local EH edges is collected
4529 4) Eh tree is pruned for regions no longer necessary.
4531 TODO: Push MUST_NOT_THROW regions to the root of the EH tree.
4532 Unify those that have the same failure decl and locus.
4535 static unsigned int
4536 execute_cleanup_eh_1 (void)
4538 /* Do this first: unsplit_all_eh and cleanup_all_empty_eh can die
4539 looking up unreachable landing pads. */
4540 remove_unreachable_handlers ();
4542 /* Watch out for the region tree vanishing due to all unreachable. */
4543 if (cfun->eh->region_tree)
4545 bool changed = false;
4547 if (optimize)
4548 changed |= unsplit_all_eh ();
4549 changed |= cleanup_all_empty_eh ();
4551 if (changed)
4553 free_dominance_info (CDI_DOMINATORS);
4554 free_dominance_info (CDI_POST_DOMINATORS);
4556 /* We delayed all basic block deletion, as we may have performed
4557 cleanups on EH edges while non-EH edges were still present. */
4558 delete_unreachable_blocks ();
4560 /* We manipulated the landing pads. Remove any region that no
4561 longer has a landing pad. */
4562 remove_unreachable_handlers_no_lp ();
4564 return TODO_cleanup_cfg | TODO_update_ssa_only_virtuals;
4568 return 0;
4571 namespace {
4573 const pass_data pass_data_cleanup_eh =
4575 GIMPLE_PASS, /* type */
4576 "ehcleanup", /* name */
4577 OPTGROUP_NONE, /* optinfo_flags */
4578 TV_TREE_EH, /* tv_id */
4579 PROP_gimple_lcf, /* properties_required */
4580 0, /* properties_provided */
4581 0, /* properties_destroyed */
4582 0, /* todo_flags_start */
4583 0, /* todo_flags_finish */
4586 class pass_cleanup_eh : public gimple_opt_pass
4588 public:
4589 pass_cleanup_eh (gcc::context *ctxt)
4590 : gimple_opt_pass (pass_data_cleanup_eh, ctxt)
4593 /* opt_pass methods: */
4594 opt_pass * clone () { return new pass_cleanup_eh (m_ctxt); }
4595 virtual bool gate (function *fun)
4597 return fun->eh != NULL && fun->eh->region_tree != NULL;
4600 virtual unsigned int execute (function *);
4602 }; // class pass_cleanup_eh
4604 unsigned int
4605 pass_cleanup_eh::execute (function *fun)
4607 int ret = execute_cleanup_eh_1 ();
4609 /* If the function no longer needs an EH personality routine
4610 clear it. This exposes cross-language inlining opportunities
4611 and avoids references to a never defined personality routine. */
4612 if (DECL_FUNCTION_PERSONALITY (current_function_decl)
4613 && function_needs_eh_personality (fun) != eh_personality_lang)
4614 DECL_FUNCTION_PERSONALITY (current_function_decl) = NULL_TREE;
4616 return ret;
4619 } // anon namespace
4621 gimple_opt_pass *
4622 make_pass_cleanup_eh (gcc::context *ctxt)
4624 return new pass_cleanup_eh (ctxt);
4627 /* Verify that BB containing STMT as the last statement, has precisely the
4628 edge that make_eh_edges would create. */
4630 DEBUG_FUNCTION bool
4631 verify_eh_edges (gimple *stmt)
4633 basic_block bb = gimple_bb (stmt);
4634 eh_landing_pad lp = NULL;
4635 int lp_nr;
4636 edge_iterator ei;
4637 edge e, eh_edge;
4639 lp_nr = lookup_stmt_eh_lp (stmt);
4640 if (lp_nr > 0)
4641 lp = get_eh_landing_pad_from_number (lp_nr);
4643 eh_edge = NULL;
4644 FOR_EACH_EDGE (e, ei, bb->succs)
4646 if (e->flags & EDGE_EH)
4648 if (eh_edge)
4650 error ("BB %i has multiple EH edges", bb->index);
4651 return true;
4653 else
4654 eh_edge = e;
4658 if (lp == NULL)
4660 if (eh_edge)
4662 error ("BB %i can not throw but has an EH edge", bb->index);
4663 return true;
4665 return false;
4668 if (!stmt_could_throw_p (stmt))
4670 error ("BB %i last statement has incorrectly set lp", bb->index);
4671 return true;
4674 if (eh_edge == NULL)
4676 error ("BB %i is missing an EH edge", bb->index);
4677 return true;
4680 if (eh_edge->dest != label_to_block (lp->post_landing_pad))
4682 error ("Incorrect EH edge %i->%i", bb->index, eh_edge->dest->index);
4683 return true;
4686 return false;
4689 /* Similarly, but handle GIMPLE_EH_DISPATCH specifically. */
4691 DEBUG_FUNCTION bool
4692 verify_eh_dispatch_edge (geh_dispatch *stmt)
4694 eh_region r;
4695 eh_catch c;
4696 basic_block src, dst;
4697 bool want_fallthru = true;
4698 edge_iterator ei;
4699 edge e, fall_edge;
4701 r = get_eh_region_from_number (gimple_eh_dispatch_region (stmt));
4702 src = gimple_bb (stmt);
4704 FOR_EACH_EDGE (e, ei, src->succs)
4705 gcc_assert (e->aux == NULL);
4707 switch (r->type)
4709 case ERT_TRY:
4710 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
4712 dst = label_to_block (c->label);
4713 e = find_edge (src, dst);
4714 if (e == NULL)
4716 error ("BB %i is missing an edge", src->index);
4717 return true;
4719 e->aux = (void *)e;
4721 /* A catch-all handler doesn't have a fallthru. */
4722 if (c->type_list == NULL)
4724 want_fallthru = false;
4725 break;
4728 break;
4730 case ERT_ALLOWED_EXCEPTIONS:
4731 dst = label_to_block (r->u.allowed.label);
4732 e = find_edge (src, dst);
4733 if (e == NULL)
4735 error ("BB %i is missing an edge", src->index);
4736 return true;
4738 e->aux = (void *)e;
4739 break;
4741 default:
4742 gcc_unreachable ();
4745 fall_edge = NULL;
4746 FOR_EACH_EDGE (e, ei, src->succs)
4748 if (e->flags & EDGE_FALLTHRU)
4750 if (fall_edge != NULL)
4752 error ("BB %i too many fallthru edges", src->index);
4753 return true;
4755 fall_edge = e;
4757 else if (e->aux)
4758 e->aux = NULL;
4759 else
4761 error ("BB %i has incorrect edge", src->index);
4762 return true;
4765 if ((fall_edge != NULL) ^ want_fallthru)
4767 error ("BB %i has incorrect fallthru edge", src->index);
4768 return true;
4771 return false;