* config.gcc (cygwin tm_file): Add cygwin-stdint.h.
[official-gcc.git] / gcc / tree-eh.c
blob7f04068378e1490cb23867fe260d80b439d3a95a
1 /* Exception handling semantics and decomposition for trees.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "tree.h"
26 #include "rtl.h"
27 #include "tm_p.h"
28 #include "flags.h"
29 #include "function.h"
30 #include "except.h"
31 #include "tree-flow.h"
32 #include "tree-dump.h"
33 #include "tree-inline.h"
34 #include "tree-iterator.h"
35 #include "tree-pass.h"
36 #include "timevar.h"
37 #include "langhooks.h"
38 #include "ggc.h"
39 #include "toplev.h"
40 #include "gimple.h"
42 /* In some instances a tree and a gimple need to be stored in a same table,
43 i.e. in hash tables. This is a structure to do this. */
44 typedef union {tree *tp; tree t; gimple g;} treemple;
46 /* Nonzero if we are using EH to handle cleanups. */
47 static int using_eh_for_cleanups_p = 0;
49 void
50 using_eh_for_cleanups (void)
52 using_eh_for_cleanups_p = 1;
55 /* Misc functions used in this file. */
57 /* Compare and hash for any structure which begins with a canonical
58 pointer. Assumes all pointers are interchangeable, which is sort
59 of already assumed by gcc elsewhere IIRC. */
61 static int
62 struct_ptr_eq (const void *a, const void *b)
64 const void * const * x = (const void * const *) a;
65 const void * const * y = (const void * const *) b;
66 return *x == *y;
69 static hashval_t
70 struct_ptr_hash (const void *a)
72 const void * const * x = (const void * const *) a;
73 return (size_t)*x >> 4;
77 /* Remember and lookup EH region data for arbitrary statements.
78 Really this means any statement that could_throw_p. We could
79 stuff this information into the stmt_ann data structure, but:
81 (1) We absolutely rely on this information being kept until
82 we get to rtl. Once we're done with lowering here, if we lose
83 the information there's no way to recover it!
85 (2) There are many more statements that *cannot* throw as
86 compared to those that can. We should be saving some amount
87 of space by only allocating memory for those that can throw. */
89 static void
90 record_stmt_eh_region (struct eh_region *region, gimple t)
92 if (!region)
93 return;
95 add_stmt_to_eh_region (t, get_eh_region_number (region));
99 /* Add statement T in function IFUN to EH region NUM. */
101 void
102 add_stmt_to_eh_region_fn (struct function *ifun, gimple t, int num)
104 struct throw_stmt_node *n;
105 void **slot;
107 gcc_assert (num >= 0);
108 gcc_assert (gimple_code (t) != GIMPLE_RESX);
110 n = GGC_NEW (struct throw_stmt_node);
111 n->stmt = t;
112 n->region_nr = num;
114 if (!get_eh_throw_stmt_table (ifun))
115 set_eh_throw_stmt_table (ifun, htab_create_ggc (31, struct_ptr_hash,
116 struct_ptr_eq,
117 ggc_free));
119 slot = htab_find_slot (get_eh_throw_stmt_table (ifun), n, INSERT);
120 gcc_assert (!*slot);
121 *slot = n;
125 /* Add statement T in the current function (cfun) to EH region number
126 NUM. */
128 void
129 add_stmt_to_eh_region (gimple t, int num)
131 add_stmt_to_eh_region_fn (cfun, t, num);
135 /* Remove statement T in function IFUN from the EH region holding it. */
137 bool
138 remove_stmt_from_eh_region_fn (struct function *ifun, gimple t)
140 struct throw_stmt_node dummy;
141 void **slot;
143 if (!get_eh_throw_stmt_table (ifun))
144 return false;
146 dummy.stmt = t;
147 slot = htab_find_slot (get_eh_throw_stmt_table (ifun), &dummy,
148 NO_INSERT);
149 if (slot)
151 htab_clear_slot (get_eh_throw_stmt_table (ifun), slot);
152 return true;
154 else
155 return false;
159 /* Remove statement T in the current function (cfun) from the EH
160 region holding it. */
162 bool
163 remove_stmt_from_eh_region (gimple t)
165 return remove_stmt_from_eh_region_fn (cfun, t);
168 /* Determine if statement T is inside an EH region in function IFUN.
169 Return the EH region number if found, return -2 if IFUN does not
170 have an EH table and -1 if T could not be found in IFUN's EH region
171 table. */
174 lookup_stmt_eh_region_fn (struct function *ifun, gimple t)
176 struct throw_stmt_node *p, n;
178 if (!get_eh_throw_stmt_table (ifun))
179 return -2;
181 n.stmt = t;
182 p = (struct throw_stmt_node *) htab_find (get_eh_throw_stmt_table (ifun), &n);
183 return (p ? p->region_nr : -1);
187 /* Determine if statement T is inside an EH region in the current
188 function (cfun). Return the EH region number if found, return -2
189 if cfun does not have an EH table and -1 if T could not be found in
190 cfun's EH region table. */
193 lookup_stmt_eh_region (gimple t)
195 /* We can get called from initialized data when -fnon-call-exceptions
196 is on; prevent crash. */
197 if (!cfun)
198 return -1;
200 return lookup_stmt_eh_region_fn (cfun, t);
204 /* Determine if expression T is inside an EH region in the current
205 function (cfun). Return the EH region number if found, return -2
206 if IFUN does not have an EH table and -1 if T could not be found in
207 IFUN's EH region table. */
210 lookup_expr_eh_region (tree t)
212 /* We can get called from initialized data when -fnon-call-exceptions
213 is on; prevent crash. */
214 if (!cfun)
215 return -1;
217 if (!get_eh_throw_stmt_table (cfun))
218 return -2;
220 if (t && EXPR_P (t))
222 tree_ann_common_t ann = tree_common_ann (t);
223 if (ann)
224 return (int) ann->rn;
227 return -1;
231 /* First pass of EH node decomposition. Build up a tree of GIMPLE_TRY_FINALLY
232 nodes and LABEL_DECL nodes. We will use this during the second phase to
233 determine if a goto leaves the body of a TRY_FINALLY_EXPR node. */
235 struct finally_tree_node
237 /* When storing a GIMPLE_TRY, we have to record a gimple. However
238 when deciding whether a GOTO to a certain LABEL_DECL (which is a
239 tree) leaves the TRY block, its necessary to record a tree in
240 this field. Thus a treemple is used. */
241 treemple child;
242 gimple parent;
245 /* Note that this table is *not* marked GTY. It is short-lived. */
246 static htab_t finally_tree;
248 static void
249 record_in_finally_tree (treemple child, gimple parent)
251 struct finally_tree_node *n;
252 void **slot;
254 n = XNEW (struct finally_tree_node);
255 n->child = child;
256 n->parent = parent;
258 slot = htab_find_slot (finally_tree, n, INSERT);
259 gcc_assert (!*slot);
260 *slot = n;
263 static void
264 collect_finally_tree (gimple stmt, gimple region);
266 /* Go through the gimple sequence. Works with collect_finally_tree to
267 record all GIMPLE_LABEL and GIMPLE_TRY statements. */
269 static void
270 collect_finally_tree_1 (gimple_seq seq, gimple region)
272 gimple_stmt_iterator gsi;
274 for (gsi = gsi_start (seq); !gsi_end_p (gsi); gsi_next (&gsi))
275 collect_finally_tree (gsi_stmt (gsi), region);
278 static void
279 collect_finally_tree (gimple stmt, gimple region)
281 treemple temp;
283 switch (gimple_code (stmt))
285 case GIMPLE_LABEL:
286 temp.t = gimple_label_label (stmt);
287 record_in_finally_tree (temp, region);
288 break;
290 case GIMPLE_TRY:
291 if (gimple_try_kind (stmt) == GIMPLE_TRY_FINALLY)
293 temp.g = stmt;
294 record_in_finally_tree (temp, region);
295 collect_finally_tree_1 (gimple_try_eval (stmt), stmt);
296 collect_finally_tree_1 (gimple_try_cleanup (stmt), region);
298 else if (gimple_try_kind (stmt) == GIMPLE_TRY_CATCH)
300 collect_finally_tree_1 (gimple_try_eval (stmt), region);
301 collect_finally_tree_1 (gimple_try_cleanup (stmt), region);
303 break;
305 case GIMPLE_CATCH:
306 collect_finally_tree_1 (gimple_catch_handler (stmt), region);
307 break;
309 case GIMPLE_EH_FILTER:
310 collect_finally_tree_1 (gimple_eh_filter_failure (stmt), region);
311 break;
313 default:
314 /* A type, a decl, or some kind of statement that we're not
315 interested in. Don't walk them. */
316 break;
321 /* Use the finally tree to determine if a jump from START to TARGET
322 would leave the try_finally node that START lives in. */
324 static bool
325 outside_finally_tree (treemple start, gimple target)
327 struct finally_tree_node n, *p;
331 n.child = start;
332 p = (struct finally_tree_node *) htab_find (finally_tree, &n);
333 if (!p)
334 return true;
335 start.g = p->parent;
337 while (start.g != target);
339 return false;
342 /* Second pass of EH node decomposition. Actually transform the GIMPLE_TRY
343 nodes into a set of gotos, magic labels, and eh regions.
344 The eh region creation is straight-forward, but frobbing all the gotos
345 and such into shape isn't. */
347 /* State of the world while lowering. */
349 struct leh_state
351 /* What's "current" while constructing the eh region tree. These
352 correspond to variables of the same name in cfun->eh, which we
353 don't have easy access to. */
354 struct eh_region *cur_region;
355 struct eh_region *prev_try;
357 /* Processing of TRY_FINALLY requires a bit more state. This is
358 split out into a separate structure so that we don't have to
359 copy so much when processing other nodes. */
360 struct leh_tf_state *tf;
363 struct leh_tf_state
365 /* Pointer to the GIMPLE_TRY_FINALLY node under discussion. The
366 try_finally_expr is the original GIMPLE_TRY_FINALLY. We need to retain
367 this so that outside_finally_tree can reliably reference the tree used
368 in the collect_finally_tree data structures. */
369 gimple try_finally_expr;
370 gimple top_p;
371 /* While lowering a top_p usually it is expanded into multiple statements,
372 thus we need the following field to store them. */
373 gimple_seq top_p_seq;
375 /* The state outside this try_finally node. */
376 struct leh_state *outer;
378 /* The exception region created for it. */
379 struct eh_region *region;
381 /* The GOTO_QUEUE is is an array of GIMPLE_GOTO and GIMPLE_RETURN statements
382 that are seen to escape this GIMPLE_TRY_FINALLY node.
383 The idea is to record a gimple statement for everything except for
384 the conditionals, which get their labels recorded. Since labels are of
385 type 'tree', we need this node to store both gimple and tree objects.
386 REPL_STMT is the sequence used to replace the goto/return statement.
387 CONT_STMT is used to store the statement that allows the return/goto to
388 jump to the original destination. */
389 struct goto_queue_node {
390 treemple stmt;
391 gimple_seq repl_stmt;
392 gimple cont_stmt;
393 int index;
394 /* this is used when index >= 0 to indicate that stmt is a label(as
395 opposed to a goto stmt) */
396 int is_label;
397 } *goto_queue;
398 size_t goto_queue_size;
399 size_t goto_queue_active;
401 /* Pointer map to help in searching goto_queue when it is large. */
402 struct pointer_map_t *goto_queue_map;
404 /* The set of unique labels seen as entries in the goto queue. */
405 VEC(tree,heap) *dest_array;
407 /* A label to be added at the end of the completed transformed
408 sequence. It will be set if may_fallthru was true *at one time*,
409 though subsequent transformations may have cleared that flag. */
410 tree fallthru_label;
412 /* A label that has been registered with except.c to be the
413 landing pad for this try block. */
414 tree eh_label;
416 /* True if it is possible to fall out the bottom of the try block.
417 Cleared if the fallthru is converted to a goto. */
418 bool may_fallthru;
420 /* True if any entry in goto_queue is a GIMPLE_RETURN. */
421 bool may_return;
423 /* True if the finally block can receive an exception edge.
424 Cleared if the exception case is handled by code duplication. */
425 bool may_throw;
428 static gimple_seq lower_eh_filter (struct leh_state *, gimple);
430 /* Search for STMT in the goto queue. Return the replacement,
431 or null if the statement isn't in the queue. */
433 #define LARGE_GOTO_QUEUE 20
435 static void lower_eh_constructs_1 (struct leh_state *state, gimple_seq seq);
437 static gimple_seq
438 find_goto_replacement (struct leh_tf_state *tf, treemple stmt)
440 unsigned int i;
441 void **slot;
443 if (tf->goto_queue_active < LARGE_GOTO_QUEUE)
445 for (i = 0; i < tf->goto_queue_active; i++)
446 if ( tf->goto_queue[i].stmt.g == stmt.g)
447 return tf->goto_queue[i].repl_stmt;
448 return NULL;
451 /* If we have a large number of entries in the goto_queue, create a
452 pointer map and use that for searching. */
454 if (!tf->goto_queue_map)
456 tf->goto_queue_map = pointer_map_create ();
457 for (i = 0; i < tf->goto_queue_active; i++)
459 slot = pointer_map_insert (tf->goto_queue_map,
460 tf->goto_queue[i].stmt.g);
461 gcc_assert (*slot == NULL);
462 *slot = &tf->goto_queue[i];
466 slot = pointer_map_contains (tf->goto_queue_map, stmt.g);
467 if (slot != NULL)
468 return (((struct goto_queue_node *) *slot)->repl_stmt);
470 return NULL;
473 /* A subroutine of replace_goto_queue_1. Handles the sub-clauses of a
474 lowered GIMPLE_COND. If, by chance, the replacement is a simple goto,
475 then we can just splat it in, otherwise we add the new stmts immediately
476 after the GIMPLE_COND and redirect. */
478 static void
479 replace_goto_queue_cond_clause (tree *tp, struct leh_tf_state *tf,
480 gimple_stmt_iterator *gsi)
482 tree label;
483 gimple_seq new_seq;
484 treemple temp;
486 temp.tp = tp;
487 new_seq = find_goto_replacement (tf, temp);
488 if (!new_seq)
489 return;
491 if (gimple_seq_singleton_p (new_seq)
492 && gimple_code (gimple_seq_first_stmt (new_seq)) == GIMPLE_GOTO)
494 *tp = gimple_goto_dest (gimple_seq_first_stmt (new_seq));
495 return;
498 label = create_artificial_label ();
499 /* Set the new label for the GIMPLE_COND */
500 *tp = label;
502 gsi_insert_after (gsi, gimple_build_label (label), GSI_CONTINUE_LINKING);
503 gsi_insert_seq_after (gsi, gimple_seq_copy (new_seq), GSI_CONTINUE_LINKING);
506 /* The real work of replace_goto_queue. Returns with TSI updated to
507 point to the next statement. */
509 static void replace_goto_queue_stmt_list (gimple_seq, struct leh_tf_state *);
511 static void
512 replace_goto_queue_1 (gimple stmt, struct leh_tf_state *tf,
513 gimple_stmt_iterator *gsi)
515 gimple_seq seq;
516 treemple temp;
517 temp.g = NULL;
519 switch (gimple_code (stmt))
521 case GIMPLE_GOTO:
522 case GIMPLE_RETURN:
523 temp.g = stmt;
524 seq = find_goto_replacement (tf, temp);
525 if (seq)
527 gsi_insert_seq_before (gsi, gimple_seq_copy (seq), GSI_SAME_STMT);
528 gsi_remove (gsi, false);
529 return;
531 break;
533 case GIMPLE_COND:
534 replace_goto_queue_cond_clause (gimple_op_ptr (stmt, 2), tf, gsi);
535 replace_goto_queue_cond_clause (gimple_op_ptr (stmt, 3), tf, gsi);
536 break;
538 case GIMPLE_TRY:
539 replace_goto_queue_stmt_list (gimple_try_eval (stmt), tf);
540 replace_goto_queue_stmt_list (gimple_try_cleanup (stmt), tf);
541 break;
542 case GIMPLE_CATCH:
543 replace_goto_queue_stmt_list (gimple_catch_handler (stmt), tf);
544 break;
545 case GIMPLE_EH_FILTER:
546 replace_goto_queue_stmt_list (gimple_eh_filter_failure (stmt), tf);
547 break;
549 default:
550 /* These won't have gotos in them. */
551 break;
554 gsi_next (gsi);
557 /* A subroutine of replace_goto_queue. Handles GIMPLE_SEQ. */
559 static void
560 replace_goto_queue_stmt_list (gimple_seq seq, struct leh_tf_state *tf)
562 gimple_stmt_iterator gsi = gsi_start (seq);
564 while (!gsi_end_p (gsi))
565 replace_goto_queue_1 (gsi_stmt (gsi), tf, &gsi);
568 /* Replace all goto queue members. */
570 static void
571 replace_goto_queue (struct leh_tf_state *tf)
573 if (tf->goto_queue_active == 0)
574 return;
575 replace_goto_queue_stmt_list (tf->top_p_seq, tf);
578 /* Add a new record to the goto queue contained in TF. NEW_STMT is the
579 data to be added, IS_LABEL indicates whether NEW_STMT is a label or
580 a gimple return. */
582 static void
583 record_in_goto_queue (struct leh_tf_state *tf,
584 treemple new_stmt,
585 int index,
586 bool is_label)
588 size_t active, size;
589 struct goto_queue_node *q;
591 gcc_assert (!tf->goto_queue_map);
593 active = tf->goto_queue_active;
594 size = tf->goto_queue_size;
595 if (active >= size)
597 size = (size ? size * 2 : 32);
598 tf->goto_queue_size = size;
599 tf->goto_queue
600 = XRESIZEVEC (struct goto_queue_node, tf->goto_queue, size);
603 q = &tf->goto_queue[active];
604 tf->goto_queue_active = active + 1;
606 memset (q, 0, sizeof (*q));
607 q->stmt = new_stmt;
608 q->index = index;
609 q->is_label = is_label;
612 /* Record the LABEL label in the goto queue contained in TF.
613 TF is not null. */
615 static void
616 record_in_goto_queue_label (struct leh_tf_state *tf, treemple stmt, tree label)
618 int index;
619 treemple temp, new_stmt;
621 if (!label)
622 return;
624 /* Computed and non-local gotos do not get processed. Given
625 their nature we can neither tell whether we've escaped the
626 finally block nor redirect them if we knew. */
627 if (TREE_CODE (label) != LABEL_DECL)
628 return;
630 /* No need to record gotos that don't leave the try block. */
631 temp.t = label;
632 if (!outside_finally_tree (temp, tf->try_finally_expr))
633 return;
635 if (! tf->dest_array)
637 tf->dest_array = VEC_alloc (tree, heap, 10);
638 VEC_quick_push (tree, tf->dest_array, label);
639 index = 0;
641 else
643 int n = VEC_length (tree, tf->dest_array);
644 for (index = 0; index < n; ++index)
645 if (VEC_index (tree, tf->dest_array, index) == label)
646 break;
647 if (index == n)
648 VEC_safe_push (tree, heap, tf->dest_array, label);
651 /* In the case of a GOTO we want to record the destination label,
652 since with a GIMPLE_COND we have an easy access to the then/else
653 labels. */
654 new_stmt = stmt;
655 record_in_goto_queue (tf, new_stmt, index, true);
659 /* For any GIMPLE_GOTO or GIMPLE_RETURN, decide whether it leaves a try_finally
660 node, and if so record that fact in the goto queue associated with that
661 try_finally node. */
663 static void
664 maybe_record_in_goto_queue (struct leh_state *state, gimple stmt)
666 struct leh_tf_state *tf = state->tf;
667 treemple new_stmt;
669 if (!tf)
670 return;
672 switch (gimple_code (stmt))
674 case GIMPLE_COND:
675 new_stmt.tp = gimple_op_ptr (stmt, 2);
676 record_in_goto_queue_label (tf, new_stmt, gimple_cond_true_label (stmt));
677 new_stmt.tp = gimple_op_ptr (stmt, 3);
678 record_in_goto_queue_label (tf, new_stmt, gimple_cond_false_label (stmt));
679 break;
680 case GIMPLE_GOTO:
681 new_stmt.g = stmt;
682 record_in_goto_queue_label (tf, new_stmt, gimple_goto_dest (stmt));
683 break;
685 case GIMPLE_RETURN:
686 tf->may_return = true;
687 new_stmt.g = stmt;
688 record_in_goto_queue (tf, new_stmt, -1, false);
689 break;
691 default:
692 gcc_unreachable ();
697 #ifdef ENABLE_CHECKING
698 /* We do not process GIMPLE_SWITCHes for now. As long as the original source
699 was in fact structured, and we've not yet done jump threading, then none
700 of the labels will leave outer GIMPLE_TRY_FINALLY nodes. Verify this. */
702 static void
703 verify_norecord_switch_expr (struct leh_state *state, gimple switch_expr)
705 struct leh_tf_state *tf = state->tf;
706 size_t i, n;
708 if (!tf)
709 return;
711 n = gimple_switch_num_labels (switch_expr);
713 for (i = 0; i < n; ++i)
715 treemple temp;
716 tree lab = CASE_LABEL (gimple_switch_label (switch_expr, i));
717 temp.t = lab;
718 gcc_assert (!outside_finally_tree (temp, tf->try_finally_expr));
721 #else
722 #define verify_norecord_switch_expr(state, switch_expr)
723 #endif
725 /* Redirect a RETURN_EXPR pointed to by STMT_P to FINLAB. Place in CONT_P
726 whatever is needed to finish the return. If MOD is non-null, insert it
727 before the new branch. RETURN_VALUE_P is a cache containing a temporary
728 variable to be used in manipulating the value returned from the function. */
730 static void
731 do_return_redirection (struct goto_queue_node *q, tree finlab, gimple_seq mod,
732 tree *return_value_p)
734 tree ret_expr;
735 gimple x;
737 /* In the case of a return, the queue node must be a gimple statement. */
738 gcc_assert (!q->is_label);
740 ret_expr = gimple_return_retval (q->stmt.g);
742 if (ret_expr)
744 if (!*return_value_p)
745 *return_value_p = ret_expr;
746 else
747 gcc_assert (*return_value_p == ret_expr);
748 q->cont_stmt = q->stmt.g;
749 /* The nasty part about redirecting the return value is that the
750 return value itself is to be computed before the FINALLY block
751 is executed. e.g.
753 int x;
754 int foo (void)
756 x = 0;
757 try {
758 return x;
759 } finally {
760 x++;
764 should return 0, not 1. Arrange for this to happen by copying
765 computed the return value into a local temporary. This also
766 allows us to redirect multiple return statements through the
767 same destination block; whether this is a net win or not really
768 depends, I guess, but it does make generation of the switch in
769 lower_try_finally_switch easier. */
771 if (TREE_CODE (ret_expr) == RESULT_DECL)
773 if (!*return_value_p)
774 *return_value_p = ret_expr;
775 else
776 gcc_assert (*return_value_p == ret_expr);
777 q->cont_stmt = q->stmt.g;
779 else
780 gcc_unreachable ();
782 else
783 /* If we don't return a value, all return statements are the same. */
784 q->cont_stmt = q->stmt.g;
786 if (!q->repl_stmt)
787 q->repl_stmt = gimple_seq_alloc ();
789 if (mod)
790 gimple_seq_add_seq (&q->repl_stmt, mod);
792 x = gimple_build_goto (finlab);
793 gimple_seq_add_stmt (&q->repl_stmt, x);
796 /* Similar, but easier, for GIMPLE_GOTO. */
798 static void
799 do_goto_redirection (struct goto_queue_node *q, tree finlab, gimple_seq mod,
800 struct leh_tf_state *tf)
802 gimple x;
804 gcc_assert (q->is_label);
805 if (!q->repl_stmt)
806 q->repl_stmt = gimple_seq_alloc ();
808 q->cont_stmt = gimple_build_goto (VEC_index (tree, tf->dest_array,q->index));
810 if (mod)
811 gimple_seq_add_seq (&q->repl_stmt, mod);
813 x = gimple_build_goto (finlab);
814 gimple_seq_add_stmt (&q->repl_stmt, x);
817 /* We want to transform
818 try { body; } catch { stuff; }
820 body; goto over; lab: stuff; over:
822 TP is a GIMPLE_TRY node. LAB is the label that
823 should be placed before the second operand, or NULL. OVER is
824 an existing label that should be put at the exit, or NULL. */
826 static gimple_seq
827 frob_into_branch_around (gimple tp, tree lab, tree over)
829 gimple x;
830 gimple_seq cleanup, result;
832 cleanup = gimple_try_cleanup (tp);
833 result = gimple_try_eval (tp);
835 if (gimple_seq_may_fallthru (result))
837 if (!over)
838 over = create_artificial_label ();
839 x = gimple_build_goto (over);
840 gimple_seq_add_stmt (&result, x);
843 if (lab)
845 x = gimple_build_label (lab);
846 gimple_seq_add_stmt (&result, x);
849 gimple_seq_add_seq (&result, cleanup);
851 if (over)
853 x = gimple_build_label (over);
854 gimple_seq_add_stmt (&result, x);
856 return result;
859 /* A subroutine of lower_try_finally. Duplicate the tree rooted at T.
860 Make sure to record all new labels found. */
862 static gimple_seq
863 lower_try_finally_dup_block (gimple_seq seq, struct leh_state *outer_state)
865 gimple region = NULL;
866 gimple_seq new_seq;
868 new_seq = copy_gimple_seq_and_replace_locals (seq);
870 if (outer_state->tf)
871 region = outer_state->tf->try_finally_expr;
872 collect_finally_tree_1 (new_seq, region);
874 return new_seq;
877 /* A subroutine of lower_try_finally. Create a fallthru label for
878 the given try_finally state. The only tricky bit here is that
879 we have to make sure to record the label in our outer context. */
881 static tree
882 lower_try_finally_fallthru_label (struct leh_tf_state *tf)
884 tree label = tf->fallthru_label;
885 treemple temp;
887 if (!label)
889 label = create_artificial_label ();
890 tf->fallthru_label = label;
891 if (tf->outer->tf)
893 temp.t = label;
894 record_in_finally_tree (temp, tf->outer->tf->try_finally_expr);
897 return label;
900 /* A subroutine of lower_try_finally. If lang_protect_cleanup_actions
901 returns non-null, then the language requires that the exception path out
902 of a try_finally be treated specially. To wit: the code within the
903 finally block may not itself throw an exception. We have two choices here.
904 First we can duplicate the finally block and wrap it in a must_not_throw
905 region. Second, we can generate code like
907 try {
908 finally_block;
909 } catch {
910 if (fintmp == eh_edge)
911 protect_cleanup_actions;
914 where "fintmp" is the temporary used in the switch statement generation
915 alternative considered below. For the nonce, we always choose the first
916 option.
918 THIS_STATE may be null if this is a try-cleanup, not a try-finally. */
920 static void
921 honor_protect_cleanup_actions (struct leh_state *outer_state,
922 struct leh_state *this_state,
923 struct leh_tf_state *tf)
925 gimple protect_cleanup_actions;
926 gimple_stmt_iterator gsi;
927 bool finally_may_fallthru;
928 gimple_seq finally;
929 gimple x;
931 /* First check for nothing to do. */
932 if (lang_protect_cleanup_actions)
933 protect_cleanup_actions = lang_protect_cleanup_actions ();
934 else
935 protect_cleanup_actions = NULL;
937 finally = gimple_try_cleanup (tf->top_p);
939 /* If the EH case of the finally block can fall through, this may be a
940 structure of the form
941 try {
942 try {
943 throw ...;
944 } cleanup {
945 try {
946 throw ...;
947 } catch (...) {
950 } catch (...) {
951 yyy;
953 E.g. with an inline destructor with an embedded try block. In this
954 case we must save the runtime EH data around the nested exception.
956 This complication means that any time the previous runtime data might
957 be used (via fallthru from the finally) we handle the eh case here,
958 whether or not protect_cleanup_actions is active. */
960 finally_may_fallthru = gimple_seq_may_fallthru (finally);
961 if (!finally_may_fallthru && !protect_cleanup_actions)
962 return;
964 /* Duplicate the FINALLY block. Only need to do this for try-finally,
965 and not for cleanups. */
966 if (this_state)
967 finally = lower_try_finally_dup_block (finally, outer_state);
969 /* If this cleanup consists of a TRY_CATCH_EXPR with TRY_CATCH_IS_CLEANUP
970 set, the handler of the TRY_CATCH_EXPR is another cleanup which ought
971 to be in an enclosing scope, but needs to be implemented at this level
972 to avoid a nesting violation (see wrap_temporary_cleanups in
973 cp/decl.c). Since it's logically at an outer level, we should call
974 terminate before we get to it, so strip it away before adding the
975 MUST_NOT_THROW filter. */
976 gsi = gsi_start (finally);
977 x = gsi_stmt (gsi);
978 if (protect_cleanup_actions
979 && gimple_code (x) == GIMPLE_TRY
980 && gimple_try_kind (x) == GIMPLE_TRY_CATCH
981 && gimple_try_catch_is_cleanup (x))
983 gsi_insert_seq_before (&gsi, gimple_try_eval (x), GSI_SAME_STMT);
984 gsi_remove (&gsi, false);
987 /* Resume execution after the exception. Adding this now lets
988 lower_eh_filter not add unnecessary gotos, as it is clear that
989 we never fallthru from this copy of the finally block. */
990 if (finally_may_fallthru)
992 tree save_eptr, save_filt;
993 tree tmp;
995 save_eptr = create_tmp_var (ptr_type_node, "save_eptr");
996 save_filt = create_tmp_var (integer_type_node, "save_filt");
998 gsi = gsi_start (finally);
999 tmp = build0 (EXC_PTR_EXPR, ptr_type_node);
1000 x = gimple_build_assign (save_eptr, tmp);
1001 gsi_insert_before (&gsi, x, GSI_CONTINUE_LINKING);
1003 tmp = build0 (FILTER_EXPR, integer_type_node);
1004 x = gimple_build_assign (save_filt, tmp);
1005 gsi_insert_before (&gsi, x, GSI_CONTINUE_LINKING);
1007 gsi = gsi_last (finally);
1008 tmp = build0 (EXC_PTR_EXPR, ptr_type_node);
1009 x = gimple_build_assign (tmp, save_eptr);
1010 gsi_insert_after (&gsi, x, GSI_CONTINUE_LINKING);
1012 tmp = build0 (FILTER_EXPR, integer_type_node);
1013 x = gimple_build_assign (tmp, save_filt);
1014 gsi_insert_after (&gsi, x, GSI_CONTINUE_LINKING);
1016 x = gimple_build_resx (get_eh_region_number (tf->region));
1017 gsi_insert_after (&gsi, x, GSI_CONTINUE_LINKING);
1020 /* Wrap the block with protect_cleanup_actions as the action. */
1021 if (protect_cleanup_actions)
1023 gimple_seq seq = NULL, failure = NULL;
1025 gimple_seq_add_stmt (&failure, protect_cleanup_actions);
1026 x = gimple_build_eh_filter (NULL, failure);
1027 gimple_eh_filter_set_must_not_throw (x, 1);
1029 gimple_seq_add_stmt (&seq, x);
1030 x = gimple_build_try (finally, seq, GIMPLE_TRY_CATCH);
1031 finally = lower_eh_filter (outer_state, x);
1033 else
1034 lower_eh_constructs_1 (outer_state, finally);
1036 /* Hook this up to the end of the existing try block. If we
1037 previously fell through the end, we'll have to branch around.
1038 This means adding a new goto, and adding it to the queue. */
1040 gsi = gsi_last (gimple_try_eval (tf->top_p));
1042 if (tf->may_fallthru)
1044 tree tmp;
1045 tmp = lower_try_finally_fallthru_label (tf);
1046 x = gimple_build_goto (tmp);
1047 gsi_insert_after (&gsi, x, GSI_CONTINUE_LINKING);
1049 if (this_state)
1050 maybe_record_in_goto_queue (this_state, x);
1052 tf->may_fallthru = false;
1055 x = gimple_build_label (tf->eh_label);
1056 gsi_insert_after (&gsi, x, GSI_CONTINUE_LINKING);
1057 gsi_insert_seq_after (&gsi, finally, GSI_CONTINUE_LINKING);
1059 /* Having now been handled, EH isn't to be considered with
1060 the rest of the outgoing edges. */
1061 tf->may_throw = false;
1064 /* A subroutine of lower_try_finally. We have determined that there is
1065 no fallthru edge out of the finally block. This means that there is
1066 no outgoing edge corresponding to any incoming edge. Restructure the
1067 try_finally node for this special case. */
1069 static void
1070 lower_try_finally_nofallthru (struct leh_state *state,
1071 struct leh_tf_state *tf)
1073 tree lab, return_val;
1074 gimple x;
1075 gimple_seq finally;
1076 struct goto_queue_node *q, *qe;
1078 if (tf->may_throw)
1079 lab = tf->eh_label;
1080 else
1081 lab = create_artificial_label ();
1083 /* We expect that tf->top_p is a GIMPLE_TRY. */
1084 finally = gimple_try_cleanup (tf->top_p);
1085 tf->top_p_seq = gimple_try_eval (tf->top_p);
1087 x = gimple_build_label (lab);
1088 gimple_seq_add_stmt (&tf->top_p_seq, x);
1090 return_val = NULL;
1091 q = tf->goto_queue;
1092 qe = q + tf->goto_queue_active;
1093 for (; q < qe; ++q)
1094 if (q->index < 0)
1095 do_return_redirection (q, lab, NULL, &return_val);
1096 else
1097 do_goto_redirection (q, lab, NULL, tf);
1099 replace_goto_queue (tf);
1101 lower_eh_constructs_1 (state, finally);
1102 gimple_seq_add_seq (&tf->top_p_seq, finally);
1105 /* A subroutine of lower_try_finally. We have determined that there is
1106 exactly one destination of the finally block. Restructure the
1107 try_finally node for this special case. */
1109 static void
1110 lower_try_finally_onedest (struct leh_state *state, struct leh_tf_state *tf)
1112 struct goto_queue_node *q, *qe;
1113 gimple x;
1114 gimple_seq finally;
1115 tree finally_label;
1117 finally = gimple_try_cleanup (tf->top_p);
1118 tf->top_p_seq = gimple_try_eval (tf->top_p);
1120 lower_eh_constructs_1 (state, finally);
1122 if (tf->may_throw)
1124 /* Only reachable via the exception edge. Add the given label to
1125 the head of the FINALLY block. Append a RESX at the end. */
1127 x = gimple_build_label (tf->eh_label);
1128 gimple_seq_add_stmt (&tf->top_p_seq, x);
1130 gimple_seq_add_seq (&tf->top_p_seq, finally);
1132 x = gimple_build_resx (get_eh_region_number (tf->region));
1134 gimple_seq_add_stmt (&tf->top_p_seq, x);
1136 return;
1139 if (tf->may_fallthru)
1141 /* Only reachable via the fallthru edge. Do nothing but let
1142 the two blocks run together; we'll fall out the bottom. */
1143 gimple_seq_add_seq (&tf->top_p_seq, finally);
1144 return;
1147 finally_label = create_artificial_label ();
1148 x = gimple_build_label (finally_label);
1149 gimple_seq_add_stmt (&tf->top_p_seq, x);
1151 gimple_seq_add_seq (&tf->top_p_seq, finally);
1153 q = tf->goto_queue;
1154 qe = q + tf->goto_queue_active;
1156 if (tf->may_return)
1158 /* Reachable by return expressions only. Redirect them. */
1159 tree return_val = NULL;
1160 for (; q < qe; ++q)
1161 do_return_redirection (q, finally_label, NULL, &return_val);
1162 replace_goto_queue (tf);
1164 else
1166 /* Reachable by goto expressions only. Redirect them. */
1167 for (; q < qe; ++q)
1168 do_goto_redirection (q, finally_label, NULL, tf);
1169 replace_goto_queue (tf);
1171 if (VEC_index (tree, tf->dest_array, 0) == tf->fallthru_label)
1173 /* Reachable by goto to fallthru label only. Redirect it
1174 to the new label (already created, sadly), and do not
1175 emit the final branch out, or the fallthru label. */
1176 tf->fallthru_label = NULL;
1177 return;
1181 /* Place the original return/goto to the original destination
1182 immediately after the finally block. */
1183 x = tf->goto_queue[0].cont_stmt;
1184 gimple_seq_add_stmt (&tf->top_p_seq, x);
1185 maybe_record_in_goto_queue (state, x);
1188 /* A subroutine of lower_try_finally. There are multiple edges incoming
1189 and outgoing from the finally block. Implement this by duplicating the
1190 finally block for every destination. */
1192 static void
1193 lower_try_finally_copy (struct leh_state *state, struct leh_tf_state *tf)
1195 gimple_seq finally;
1196 gimple_seq new_stmt;
1197 gimple_seq seq;
1198 gimple x;
1199 tree tmp;
1201 finally = gimple_try_cleanup (tf->top_p);
1202 tf->top_p_seq = gimple_try_eval (tf->top_p);
1203 new_stmt = NULL;
1205 if (tf->may_fallthru)
1207 seq = lower_try_finally_dup_block (finally, state);
1208 lower_eh_constructs_1 (state, seq);
1209 gimple_seq_add_seq (&new_stmt, seq);
1211 tmp = lower_try_finally_fallthru_label (tf);
1212 x = gimple_build_goto (tmp);
1213 gimple_seq_add_stmt (&new_stmt, x);
1216 if (tf->may_throw)
1218 x = gimple_build_label (tf->eh_label);
1219 gimple_seq_add_stmt (&new_stmt, x);
1221 seq = lower_try_finally_dup_block (finally, state);
1222 lower_eh_constructs_1 (state, seq);
1223 gimple_seq_add_seq (&new_stmt, seq);
1225 x = gimple_build_resx (get_eh_region_number (tf->region));
1226 gimple_seq_add_stmt (&new_stmt, x);
1229 if (tf->goto_queue)
1231 struct goto_queue_node *q, *qe;
1232 tree return_val = NULL;
1233 int return_index, index;
1234 struct labels_s
1236 struct goto_queue_node *q;
1237 tree label;
1238 } *labels;
1240 return_index = VEC_length (tree, tf->dest_array);
1241 labels = XCNEWVEC (struct labels_s, return_index + 1);
1243 q = tf->goto_queue;
1244 qe = q + tf->goto_queue_active;
1245 for (; q < qe; q++)
1247 index = q->index < 0 ? return_index : q->index;
1249 if (!labels[index].q)
1250 labels[index].q = q;
1253 for (index = 0; index < return_index + 1; index++)
1255 tree lab;
1257 q = labels[index].q;
1258 if (! q)
1259 continue;
1261 lab = labels[index].label = create_artificial_label ();
1263 if (index == return_index)
1264 do_return_redirection (q, lab, NULL, &return_val);
1265 else
1266 do_goto_redirection (q, lab, NULL, tf);
1268 x = gimple_build_label (lab);
1269 gimple_seq_add_stmt (&new_stmt, x);
1271 seq = lower_try_finally_dup_block (finally, state);
1272 lower_eh_constructs_1 (state, seq);
1273 gimple_seq_add_seq (&new_stmt, seq);
1275 gimple_seq_add_stmt (&new_stmt, q->cont_stmt);
1276 maybe_record_in_goto_queue (state, q->cont_stmt);
1279 for (q = tf->goto_queue; q < qe; q++)
1281 tree lab;
1283 index = q->index < 0 ? return_index : q->index;
1285 if (labels[index].q == q)
1286 continue;
1288 lab = labels[index].label;
1290 if (index == return_index)
1291 do_return_redirection (q, lab, NULL, &return_val);
1292 else
1293 do_goto_redirection (q, lab, NULL, tf);
1296 replace_goto_queue (tf);
1297 free (labels);
1300 /* Need to link new stmts after running replace_goto_queue due
1301 to not wanting to process the same goto stmts twice. */
1302 gimple_seq_add_seq (&tf->top_p_seq, new_stmt);
1305 /* A subroutine of lower_try_finally. There are multiple edges incoming
1306 and outgoing from the finally block. Implement this by instrumenting
1307 each incoming edge and creating a switch statement at the end of the
1308 finally block that branches to the appropriate destination. */
1310 static void
1311 lower_try_finally_switch (struct leh_state *state, struct leh_tf_state *tf)
1313 struct goto_queue_node *q, *qe;
1314 tree return_val = NULL;
1315 tree finally_tmp, finally_label;
1316 int return_index, eh_index, fallthru_index;
1317 int nlabels, ndests, j, last_case_index;
1318 tree last_case;
1319 VEC (tree,heap) *case_label_vec;
1320 gimple_seq switch_body;
1321 gimple x;
1322 tree tmp;
1323 gimple switch_stmt;
1324 gimple_seq finally;
1325 struct pointer_map_t *cont_map = NULL;
1327 switch_body = gimple_seq_alloc ();
1329 /* Mash the TRY block to the head of the chain. */
1330 finally = gimple_try_cleanup (tf->top_p);
1331 tf->top_p_seq = gimple_try_eval (tf->top_p);
1333 /* Lower the finally block itself. */
1334 lower_eh_constructs_1 (state, finally);
1336 /* Prepare for switch statement generation. */
1337 nlabels = VEC_length (tree, tf->dest_array);
1338 return_index = nlabels;
1339 eh_index = return_index + tf->may_return;
1340 fallthru_index = eh_index + tf->may_throw;
1341 ndests = fallthru_index + tf->may_fallthru;
1343 finally_tmp = create_tmp_var (integer_type_node, "finally_tmp");
1344 finally_label = create_artificial_label ();
1346 /* We use VEC_quick_push on case_label_vec throughout this function,
1347 since we know the size in advance and allocate precisely as muce
1348 space as needed. */
1349 case_label_vec = VEC_alloc (tree, heap, ndests);
1350 last_case = NULL;
1351 last_case_index = 0;
1353 /* Begin inserting code for getting to the finally block. Things
1354 are done in this order to correspond to the sequence the code is
1355 layed out. */
1357 if (tf->may_fallthru)
1359 x = gimple_build_assign (finally_tmp, build_int_cst (integer_type_node,
1360 fallthru_index));
1361 gimple_seq_add_stmt (&tf->top_p_seq, x);
1363 if (tf->may_throw)
1365 x = gimple_build_goto (finally_label);
1366 gimple_seq_add_stmt (&tf->top_p_seq, x);
1370 last_case = build3 (CASE_LABEL_EXPR, void_type_node,
1371 build_int_cst (NULL_TREE, fallthru_index), NULL,
1372 create_artificial_label ());
1373 VEC_quick_push (tree, case_label_vec, last_case);
1374 last_case_index++;
1376 x = gimple_build_label (CASE_LABEL (last_case));
1377 gimple_seq_add_stmt (&switch_body, x);
1379 tmp = lower_try_finally_fallthru_label (tf);
1380 x = gimple_build_goto (tmp);
1381 gimple_seq_add_stmt (&switch_body, x);
1384 if (tf->may_throw)
1386 x = gimple_build_label (tf->eh_label);
1387 gimple_seq_add_stmt (&tf->top_p_seq, x);
1389 x = gimple_build_assign (finally_tmp, build_int_cst (integer_type_node,
1390 eh_index));
1391 gimple_seq_add_stmt (&tf->top_p_seq, x);
1393 last_case = build3 (CASE_LABEL_EXPR, void_type_node,
1394 build_int_cst (NULL_TREE, eh_index), NULL,
1395 create_artificial_label ());
1396 VEC_quick_push (tree, case_label_vec, last_case);
1397 last_case_index++;
1399 x = gimple_build_label (CASE_LABEL (last_case));
1400 gimple_seq_add_stmt (&switch_body, x);
1401 x = gimple_build_resx (get_eh_region_number (tf->region));
1402 gimple_seq_add_stmt (&switch_body, x);
1405 x = gimple_build_label (finally_label);
1406 gimple_seq_add_stmt (&tf->top_p_seq, x);
1408 gimple_seq_add_seq (&tf->top_p_seq, finally);
1410 /* Redirect each incoming goto edge. */
1411 q = tf->goto_queue;
1412 qe = q + tf->goto_queue_active;
1413 j = last_case_index + tf->may_return;
1414 /* Prepare the assignments to finally_tmp that are executed upon the
1415 entrance through a particular edge. */
1416 for (; q < qe; ++q)
1418 gimple_seq mod;
1419 int switch_id;
1420 unsigned int case_index;
1422 mod = gimple_seq_alloc ();
1424 if (q->index < 0)
1426 x = gimple_build_assign (finally_tmp,
1427 build_int_cst (integer_type_node,
1428 return_index));
1429 gimple_seq_add_stmt (&mod, x);
1430 do_return_redirection (q, finally_label, mod, &return_val);
1431 switch_id = return_index;
1433 else
1435 x = gimple_build_assign (finally_tmp,
1436 build_int_cst (integer_type_node, q->index));
1437 gimple_seq_add_stmt (&mod, x);
1438 do_goto_redirection (q, finally_label, mod, tf);
1439 switch_id = q->index;
1442 case_index = j + q->index;
1443 if (VEC_length (tree, case_label_vec) <= case_index
1444 || !VEC_index (tree, case_label_vec, case_index))
1446 tree case_lab;
1447 void **slot;
1448 case_lab = build3 (CASE_LABEL_EXPR, void_type_node,
1449 build_int_cst (NULL_TREE, switch_id), NULL,
1450 NULL);
1451 /* We store the cont_stmt in the pointer map, so that we can recover
1452 it in the loop below. We don't create the new label while
1453 walking the goto_queue because pointers don't offer a stable
1454 order. */
1455 if (!cont_map)
1456 cont_map = pointer_map_create ();
1457 slot = pointer_map_insert (cont_map, case_lab);
1458 *slot = q->cont_stmt;
1459 VEC_quick_push (tree, case_label_vec, case_lab);
1462 for (j = last_case_index; j < last_case_index + nlabels; j++)
1464 tree label;
1465 gimple cont_stmt;
1466 void **slot;
1468 last_case = VEC_index (tree, case_label_vec, j);
1470 gcc_assert (last_case);
1471 gcc_assert (cont_map);
1473 slot = pointer_map_contains (cont_map, last_case);
1474 /* As the comment above suggests, CASE_LABEL (last_case) was just a
1475 placeholder, it does not store an actual label, yet. */
1476 gcc_assert (slot);
1477 cont_stmt = *(gimple *) slot;
1479 label = create_artificial_label ();
1480 CASE_LABEL (last_case) = label;
1482 x = gimple_build_label (label);
1483 gimple_seq_add_stmt (&switch_body, x);
1484 gimple_seq_add_stmt (&switch_body, cont_stmt);
1485 maybe_record_in_goto_queue (state, cont_stmt);
1487 if (cont_map)
1488 pointer_map_destroy (cont_map);
1490 replace_goto_queue (tf);
1492 /* Make sure that the last case is the default label, as one is required.
1493 Then sort the labels, which is also required in GIMPLE. */
1494 CASE_LOW (last_case) = NULL;
1495 sort_case_labels (case_label_vec);
1497 /* Build the switch statement, setting last_case to be the default
1498 label. */
1499 switch_stmt = gimple_build_switch_vec (finally_tmp, last_case,
1500 case_label_vec);
1502 /* Need to link SWITCH_STMT after running replace_goto_queue
1503 due to not wanting to process the same goto stmts twice. */
1504 gimple_seq_add_stmt (&tf->top_p_seq, switch_stmt);
1505 gimple_seq_add_seq (&tf->top_p_seq, switch_body);
1508 /* Decide whether or not we are going to duplicate the finally block.
1509 There are several considerations.
1511 First, if this is Java, then the finally block contains code
1512 written by the user. It has line numbers associated with it,
1513 so duplicating the block means it's difficult to set a breakpoint.
1514 Since controlling code generation via -g is verboten, we simply
1515 never duplicate code without optimization.
1517 Second, we'd like to prevent egregious code growth. One way to
1518 do this is to estimate the size of the finally block, multiply
1519 that by the number of copies we'd need to make, and compare against
1520 the estimate of the size of the switch machinery we'd have to add. */
1522 static bool
1523 decide_copy_try_finally (int ndests, gimple_seq finally)
1525 int f_estimate, sw_estimate;
1527 if (!optimize)
1528 return false;
1530 /* Finally estimate N times, plus N gotos. */
1531 f_estimate = count_insns_seq (finally, &eni_size_weights);
1532 f_estimate = (f_estimate + 1) * ndests;
1534 /* Switch statement (cost 10), N variable assignments, N gotos. */
1535 sw_estimate = 10 + 2 * ndests;
1537 /* Optimize for size clearly wants our best guess. */
1538 if (optimize_function_for_size_p (cfun))
1539 return f_estimate < sw_estimate;
1541 /* ??? These numbers are completely made up so far. */
1542 if (optimize > 1)
1543 return f_estimate < 100 || f_estimate < sw_estimate * 2;
1544 else
1545 return f_estimate < 40 || f_estimate * 2 < sw_estimate * 3;
1549 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY_FINALLY nodes
1550 to a sequence of labels and blocks, plus the exception region trees
1551 that record all the magic. This is complicated by the need to
1552 arrange for the FINALLY block to be executed on all exits. */
1554 static gimple_seq
1555 lower_try_finally (struct leh_state *state, gimple tp)
1557 struct leh_tf_state this_tf;
1558 struct leh_state this_state;
1559 int ndests;
1561 /* Process the try block. */
1563 memset (&this_tf, 0, sizeof (this_tf));
1564 this_tf.try_finally_expr = tp;
1565 this_tf.top_p = tp;
1566 this_tf.outer = state;
1567 if (using_eh_for_cleanups_p)
1568 this_tf.region
1569 = gen_eh_region_cleanup (state->cur_region, state->prev_try);
1570 else
1571 this_tf.region = NULL;
1573 this_state.cur_region = this_tf.region;
1574 this_state.prev_try = state->prev_try;
1575 this_state.tf = &this_tf;
1577 lower_eh_constructs_1 (&this_state, gimple_try_eval(tp));
1579 /* Determine if the try block is escaped through the bottom. */
1580 this_tf.may_fallthru = gimple_seq_may_fallthru (gimple_try_eval (tp));
1582 /* Determine if any exceptions are possible within the try block. */
1583 if (using_eh_for_cleanups_p)
1584 this_tf.may_throw = get_eh_region_may_contain_throw (this_tf.region);
1585 if (this_tf.may_throw)
1587 this_tf.eh_label = create_artificial_label ();
1588 set_eh_region_tree_label (this_tf.region, this_tf.eh_label);
1589 honor_protect_cleanup_actions (state, &this_state, &this_tf);
1592 /* Determine how many edges (still) reach the finally block. Or rather,
1593 how many destinations are reached by the finally block. Use this to
1594 determine how we process the finally block itself. */
1596 ndests = VEC_length (tree, this_tf.dest_array);
1597 ndests += this_tf.may_fallthru;
1598 ndests += this_tf.may_return;
1599 ndests += this_tf.may_throw;
1601 /* If the FINALLY block is not reachable, dike it out. */
1602 if (ndests == 0)
1604 gimple_seq_add_seq (&this_tf.top_p_seq, gimple_try_eval (tp));
1605 gimple_try_set_cleanup (tp, NULL);
1607 /* If the finally block doesn't fall through, then any destination
1608 we might try to impose there isn't reached either. There may be
1609 some minor amount of cleanup and redirection still needed. */
1610 else if (!gimple_seq_may_fallthru (gimple_try_cleanup (tp)))
1611 lower_try_finally_nofallthru (state, &this_tf);
1613 /* We can easily special-case redirection to a single destination. */
1614 else if (ndests == 1)
1615 lower_try_finally_onedest (state, &this_tf);
1616 else if (decide_copy_try_finally (ndests, gimple_try_cleanup (tp)))
1617 lower_try_finally_copy (state, &this_tf);
1618 else
1619 lower_try_finally_switch (state, &this_tf);
1621 /* If someone requested we add a label at the end of the transformed
1622 block, do so. */
1623 if (this_tf.fallthru_label)
1625 /* This must be reached only if ndests == 0. */
1626 gimple x = gimple_build_label (this_tf.fallthru_label);
1627 gimple_seq_add_stmt (&this_tf.top_p_seq, x);
1630 VEC_free (tree, heap, this_tf.dest_array);
1631 if (this_tf.goto_queue)
1632 free (this_tf.goto_queue);
1633 if (this_tf.goto_queue_map)
1634 pointer_map_destroy (this_tf.goto_queue_map);
1636 return this_tf.top_p_seq;
1639 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY_CATCH with a
1640 list of GIMPLE_CATCH to a sequence of labels and blocks, plus the
1641 exception region trees that records all the magic. */
1643 static gimple_seq
1644 lower_catch (struct leh_state *state, gimple tp)
1646 struct eh_region *try_region;
1647 struct leh_state this_state;
1648 gimple_stmt_iterator gsi;
1649 tree out_label;
1651 try_region = gen_eh_region_try (state->cur_region);
1652 this_state.cur_region = try_region;
1653 this_state.prev_try = try_region;
1654 this_state.tf = state->tf;
1656 lower_eh_constructs_1 (&this_state, gimple_try_eval (tp));
1658 if (!get_eh_region_may_contain_throw (try_region))
1660 return gimple_try_eval (tp);
1663 out_label = NULL;
1664 for (gsi = gsi_start (gimple_try_cleanup (tp)); !gsi_end_p (gsi); )
1666 struct eh_region *catch_region;
1667 tree eh_label;
1668 gimple x, gcatch;
1670 gcatch = gsi_stmt (gsi);
1671 catch_region = gen_eh_region_catch (try_region,
1672 gimple_catch_types (gcatch));
1674 this_state.cur_region = catch_region;
1675 this_state.prev_try = state->prev_try;
1676 lower_eh_constructs_1 (&this_state, gimple_catch_handler (gcatch));
1678 eh_label = create_artificial_label ();
1679 set_eh_region_tree_label (catch_region, eh_label);
1681 x = gimple_build_label (eh_label);
1682 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
1684 if (gimple_seq_may_fallthru (gimple_catch_handler (gcatch)))
1686 if (!out_label)
1687 out_label = create_artificial_label ();
1689 x = gimple_build_goto (out_label);
1690 gimple_seq_add_stmt (gimple_catch_handler_ptr (gcatch), x);
1693 gsi_insert_seq_before (&gsi, gimple_catch_handler (gcatch),
1694 GSI_SAME_STMT);
1695 gsi_remove (&gsi, false);
1698 return frob_into_branch_around (tp, NULL, out_label);
1701 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY with a
1702 GIMPLE_EH_FILTER to a sequence of labels and blocks, plus the exception
1703 region trees that record all the magic. */
1705 static gimple_seq
1706 lower_eh_filter (struct leh_state *state, gimple tp)
1708 struct leh_state this_state;
1709 struct eh_region *this_region;
1710 gimple inner;
1711 tree eh_label;
1713 inner = gimple_seq_first_stmt (gimple_try_cleanup (tp));
1715 if (gimple_eh_filter_must_not_throw (inner))
1716 this_region = gen_eh_region_must_not_throw (state->cur_region);
1717 else
1718 this_region = gen_eh_region_allowed (state->cur_region,
1719 gimple_eh_filter_types (inner));
1720 this_state = *state;
1721 this_state.cur_region = this_region;
1722 /* For must not throw regions any cleanup regions inside it
1723 can't reach outer catch regions. */
1724 if (gimple_eh_filter_must_not_throw (inner))
1725 this_state.prev_try = NULL;
1727 lower_eh_constructs_1 (&this_state, gimple_try_eval (tp));
1729 if (!get_eh_region_may_contain_throw (this_region))
1731 return gimple_try_eval (tp);
1734 lower_eh_constructs_1 (state, gimple_eh_filter_failure (inner));
1735 gimple_try_set_cleanup (tp, gimple_eh_filter_failure (inner));
1737 eh_label = create_artificial_label ();
1738 set_eh_region_tree_label (this_region, eh_label);
1740 return frob_into_branch_around (tp, eh_label, NULL);
1743 /* Implement a cleanup expression. This is similar to try-finally,
1744 except that we only execute the cleanup block for exception edges. */
1746 static gimple_seq
1747 lower_cleanup (struct leh_state *state, gimple tp)
1749 struct leh_state this_state;
1750 struct eh_region *this_region;
1751 struct leh_tf_state fake_tf;
1752 gimple_seq result;
1754 /* If not using eh, then exception-only cleanups are no-ops. */
1755 if (!flag_exceptions)
1757 result = gimple_try_eval (tp);
1758 lower_eh_constructs_1 (state, result);
1759 return result;
1762 this_region = gen_eh_region_cleanup (state->cur_region, state->prev_try);
1763 this_state = *state;
1764 this_state.cur_region = this_region;
1766 lower_eh_constructs_1 (&this_state, gimple_try_eval (tp));
1768 if (!get_eh_region_may_contain_throw (this_region))
1770 return gimple_try_eval (tp);
1773 /* Build enough of a try-finally state so that we can reuse
1774 honor_protect_cleanup_actions. */
1775 memset (&fake_tf, 0, sizeof (fake_tf));
1776 fake_tf.top_p = tp;
1777 fake_tf.outer = state;
1778 fake_tf.region = this_region;
1779 fake_tf.may_fallthru = gimple_seq_may_fallthru (gimple_try_eval (tp));
1780 fake_tf.may_throw = true;
1782 fake_tf.eh_label = create_artificial_label ();
1783 set_eh_region_tree_label (this_region, fake_tf.eh_label);
1785 honor_protect_cleanup_actions (state, NULL, &fake_tf);
1787 if (fake_tf.may_throw)
1789 /* In this case honor_protect_cleanup_actions had nothing to do,
1790 and we should process this normally. */
1791 lower_eh_constructs_1 (state, gimple_try_cleanup (tp));
1792 result = frob_into_branch_around (tp, fake_tf.eh_label,
1793 fake_tf.fallthru_label);
1795 else
1797 /* In this case honor_protect_cleanup_actions did nearly all of
1798 the work. All we have left is to append the fallthru_label. */
1800 result = gimple_try_eval (tp);
1801 if (fake_tf.fallthru_label)
1803 gimple x = gimple_build_label (fake_tf.fallthru_label);
1804 gimple_seq_add_stmt (&result, x);
1807 return result;
1812 /* Main loop for lowering eh constructs. Also moves gsi to the next
1813 statement. */
1815 static void
1816 lower_eh_constructs_2 (struct leh_state *state, gimple_stmt_iterator *gsi)
1818 gimple_seq replace;
1819 gimple x;
1820 gimple stmt = gsi_stmt (*gsi);
1822 switch (gimple_code (stmt))
1824 case GIMPLE_CALL:
1825 case GIMPLE_ASSIGN:
1826 /* If the stmt can throw use a new temporary for the assignment
1827 to a LHS. This makes sure the old value of the LHS is
1828 available on the EH edge. */
1829 if (stmt_could_throw_p (stmt)
1830 && gimple_has_lhs (stmt)
1831 && !tree_could_throw_p (gimple_get_lhs (stmt))
1832 && is_gimple_reg_type (TREE_TYPE (gimple_get_lhs (stmt))))
1834 tree lhs = gimple_get_lhs (stmt);
1835 tree tmp = create_tmp_var (TREE_TYPE (lhs), NULL);
1836 gimple s = gimple_build_assign (lhs, tmp);
1837 gimple_set_location (s, gimple_location (stmt));
1838 gimple_set_block (s, gimple_block (stmt));
1839 gimple_set_lhs (stmt, tmp);
1840 if (TREE_CODE (TREE_TYPE (tmp)) == COMPLEX_TYPE
1841 || TREE_CODE (TREE_TYPE (tmp)) == VECTOR_TYPE)
1842 DECL_GIMPLE_REG_P (tmp) = 1;
1843 gsi_insert_after (gsi, s, GSI_SAME_STMT);
1845 /* Look for things that can throw exceptions, and record them. */
1846 if (state->cur_region && stmt_could_throw_p (stmt))
1848 record_stmt_eh_region (state->cur_region, stmt);
1849 note_eh_region_may_contain_throw (state->cur_region);
1851 break;
1853 case GIMPLE_COND:
1854 case GIMPLE_GOTO:
1855 case GIMPLE_RETURN:
1856 maybe_record_in_goto_queue (state, stmt);
1857 break;
1859 case GIMPLE_SWITCH:
1860 verify_norecord_switch_expr (state, stmt);
1861 break;
1863 case GIMPLE_TRY:
1864 if (gimple_try_kind (stmt) == GIMPLE_TRY_FINALLY)
1865 replace = lower_try_finally (state, stmt);
1866 else
1868 x = gimple_seq_first_stmt (gimple_try_cleanup (stmt));
1869 switch (gimple_code (x))
1871 case GIMPLE_CATCH:
1872 replace = lower_catch (state, stmt);
1873 break;
1874 case GIMPLE_EH_FILTER:
1875 replace = lower_eh_filter (state, stmt);
1876 break;
1877 default:
1878 replace = lower_cleanup (state, stmt);
1879 break;
1883 /* Remove the old stmt and insert the transformed sequence
1884 instead. */
1885 gsi_insert_seq_before (gsi, replace, GSI_SAME_STMT);
1886 gsi_remove (gsi, true);
1888 /* Return since we don't want gsi_next () */
1889 return;
1891 default:
1892 /* A type, a decl, or some kind of statement that we're not
1893 interested in. Don't walk them. */
1894 break;
1897 gsi_next (gsi);
1900 /* A helper to unwrap a gimple_seq and feed stmts to lower_eh_constructs_2. */
1902 static void
1903 lower_eh_constructs_1 (struct leh_state *state, gimple_seq seq)
1905 gimple_stmt_iterator gsi;
1906 for (gsi = gsi_start (seq); !gsi_end_p (gsi);)
1907 lower_eh_constructs_2 (state, &gsi);
1910 static unsigned int
1911 lower_eh_constructs (void)
1913 struct leh_state null_state;
1915 gimple_seq bodyp = gimple_body (current_function_decl);
1917 finally_tree = htab_create (31, struct_ptr_hash, struct_ptr_eq, free);
1919 collect_finally_tree_1 (bodyp, NULL);
1921 memset (&null_state, 0, sizeof (null_state));
1922 lower_eh_constructs_1 (&null_state, bodyp);
1924 htab_delete (finally_tree);
1926 collect_eh_region_array ();
1927 return 0;
1930 struct gimple_opt_pass pass_lower_eh =
1933 GIMPLE_PASS,
1934 "eh", /* name */
1935 NULL, /* gate */
1936 lower_eh_constructs, /* execute */
1937 NULL, /* sub */
1938 NULL, /* next */
1939 0, /* static_pass_number */
1940 TV_TREE_EH, /* tv_id */
1941 PROP_gimple_lcf, /* properties_required */
1942 PROP_gimple_leh, /* properties_provided */
1943 0, /* properties_destroyed */
1944 0, /* todo_flags_start */
1945 TODO_dump_func /* todo_flags_finish */
1950 /* Construct EH edges for STMT. */
1952 static void
1953 make_eh_edge (struct eh_region *region, void *data)
1955 gimple stmt;
1956 tree lab;
1957 basic_block src, dst;
1959 stmt = (gimple) data;
1960 lab = get_eh_region_tree_label (region);
1962 src = gimple_bb (stmt);
1963 dst = label_to_block (lab);
1965 make_edge (src, dst, EDGE_ABNORMAL | EDGE_EH);
1968 /* See if STMT is call that might be inlined. */
1970 static bool
1971 inlinable_call_p (gimple stmt)
1973 tree decl;
1974 if (gimple_code (stmt) != GIMPLE_CALL)
1975 return false;
1976 if (cfun->after_inlining)
1977 return false;
1978 /* Indirect calls can be propagated to direct call
1979 and inlined. */
1980 decl = gimple_call_fndecl (stmt);
1981 if (!decl)
1982 return true;
1983 if (cgraph_function_flags_ready
1984 && cgraph_function_body_availability (cgraph_node (decl))
1985 < AVAIL_OVERWRITABLE)
1986 return false;
1987 return !DECL_UNINLINABLE (decl);
1990 void
1991 make_eh_edges (gimple stmt)
1993 int region_nr;
1994 bool is_resx;
1995 bool inlinable = false;
1996 basic_block bb;
1998 if (gimple_code (stmt) == GIMPLE_RESX)
2000 region_nr = gimple_resx_region (stmt);
2001 is_resx = true;
2003 else
2005 region_nr = lookup_stmt_eh_region (stmt);
2006 if (region_nr < 0)
2007 return;
2008 is_resx = false;
2009 inlinable = inlinable_call_p (stmt);
2012 foreach_reachable_handler (region_nr, is_resx, inlinable, make_eh_edge, stmt);
2014 /* Make CFG profile more consistent assuming that exception will resume to first
2015 available EH handler. In practice this makes little difference, but we get
2016 fewer consistency errors in the dumps. */
2017 bb = gimple_bb (stmt);
2018 if (is_resx && EDGE_COUNT (bb->succs))
2019 EDGE_SUCC (bb, 0)->probability = REG_BR_PROB_BASE;
2022 static bool mark_eh_edge_found_error;
2024 /* Mark edge make_eh_edge would create for given region by setting it aux
2025 field, output error if something goes wrong. */
2027 static void
2028 mark_eh_edge (struct eh_region *region, void *data)
2030 gimple stmt;
2031 tree lab;
2032 basic_block src, dst;
2033 edge e;
2035 stmt = (gimple) data;
2036 lab = get_eh_region_tree_label (region);
2038 src = gimple_bb (stmt);
2039 dst = label_to_block (lab);
2041 e = find_edge (src, dst);
2042 if (!e)
2044 error ("EH edge %i->%i is missing", src->index, dst->index);
2045 mark_eh_edge_found_error = true;
2047 else if (!(e->flags & EDGE_EH))
2049 error ("EH edge %i->%i miss EH flag", src->index, dst->index);
2050 mark_eh_edge_found_error = true;
2052 else if (e->aux)
2054 /* ??? might not be mistake. */
2055 error ("EH edge %i->%i has duplicated regions", src->index, dst->index);
2056 mark_eh_edge_found_error = true;
2058 else
2059 e->aux = (void *)1;
2062 /* Verify that BB containing STMT as the last statement, has precisely the
2063 edges that make_eh_edges would create. */
2065 bool
2066 verify_eh_edges (gimple stmt)
2068 int region_nr;
2069 bool is_resx;
2070 basic_block bb = gimple_bb (stmt);
2071 edge_iterator ei;
2072 edge e;
2073 bool inlinable = false;
2075 FOR_EACH_EDGE (e, ei, bb->succs)
2076 gcc_assert (!e->aux);
2077 mark_eh_edge_found_error = false;
2078 if (gimple_code (stmt) == GIMPLE_RESX)
2080 region_nr = gimple_resx_region (stmt);
2081 is_resx = true;
2083 else
2085 region_nr = lookup_stmt_eh_region (stmt);
2086 if (region_nr < 0)
2088 FOR_EACH_EDGE (e, ei, bb->succs)
2089 if (e->flags & EDGE_EH)
2091 error ("BB %i can not throw but has EH edges", bb->index);
2092 return true;
2094 return false;
2096 if (!stmt_could_throw_p (stmt))
2098 error ("BB %i last statement has incorrectly set region", bb->index);
2099 return true;
2101 inlinable = inlinable_call_p (stmt);
2102 is_resx = false;
2105 foreach_reachable_handler (region_nr, is_resx, inlinable, mark_eh_edge, stmt);
2106 FOR_EACH_EDGE (e, ei, bb->succs)
2108 if ((e->flags & EDGE_EH) && !e->aux)
2110 error ("unnecessary EH edge %i->%i", bb->index, e->dest->index);
2111 mark_eh_edge_found_error = true;
2112 return true;
2114 e->aux = NULL;
2117 return mark_eh_edge_found_error;
2121 /* Helper function for operation_could_trap_p and stmt_could_throw_p. */
2123 bool
2124 operation_could_trap_helper_p (enum tree_code op,
2125 bool fp_operation,
2126 bool honor_trapv,
2127 bool honor_nans,
2128 bool honor_snans,
2129 tree divisor,
2130 bool *handled)
2132 *handled = true;
2133 switch (op)
2135 case TRUNC_DIV_EXPR:
2136 case CEIL_DIV_EXPR:
2137 case FLOOR_DIV_EXPR:
2138 case ROUND_DIV_EXPR:
2139 case EXACT_DIV_EXPR:
2140 case CEIL_MOD_EXPR:
2141 case FLOOR_MOD_EXPR:
2142 case ROUND_MOD_EXPR:
2143 case TRUNC_MOD_EXPR:
2144 case RDIV_EXPR:
2145 if (honor_snans || honor_trapv)
2146 return true;
2147 if (fp_operation)
2148 return flag_trapping_math;
2149 if (!TREE_CONSTANT (divisor) || integer_zerop (divisor))
2150 return true;
2151 return false;
2153 case LT_EXPR:
2154 case LE_EXPR:
2155 case GT_EXPR:
2156 case GE_EXPR:
2157 case LTGT_EXPR:
2158 /* Some floating point comparisons may trap. */
2159 return honor_nans;
2161 case EQ_EXPR:
2162 case NE_EXPR:
2163 case UNORDERED_EXPR:
2164 case ORDERED_EXPR:
2165 case UNLT_EXPR:
2166 case UNLE_EXPR:
2167 case UNGT_EXPR:
2168 case UNGE_EXPR:
2169 case UNEQ_EXPR:
2170 return honor_snans;
2172 case CONVERT_EXPR:
2173 case FIX_TRUNC_EXPR:
2174 /* Conversion of floating point might trap. */
2175 return honor_nans;
2177 case NEGATE_EXPR:
2178 case ABS_EXPR:
2179 case CONJ_EXPR:
2180 /* These operations don't trap with floating point. */
2181 if (honor_trapv)
2182 return true;
2183 return false;
2185 case PLUS_EXPR:
2186 case MINUS_EXPR:
2187 case MULT_EXPR:
2188 /* Any floating arithmetic may trap. */
2189 if (fp_operation && flag_trapping_math)
2190 return true;
2191 if (honor_trapv)
2192 return true;
2193 return false;
2195 default:
2196 /* Any floating arithmetic may trap. */
2197 if (fp_operation && flag_trapping_math)
2198 return true;
2200 *handled = false;
2201 return false;
2205 /* Return true if operation OP may trap. FP_OPERATION is true if OP is applied
2206 on floating-point values. HONOR_TRAPV is true if OP is applied on integer
2207 type operands that may trap. If OP is a division operator, DIVISOR contains
2208 the value of the divisor. */
2210 bool
2211 operation_could_trap_p (enum tree_code op, bool fp_operation, bool honor_trapv,
2212 tree divisor)
2214 bool honor_nans = (fp_operation && flag_trapping_math
2215 && !flag_finite_math_only);
2216 bool honor_snans = fp_operation && flag_signaling_nans != 0;
2217 bool handled;
2219 if (TREE_CODE_CLASS (op) != tcc_comparison
2220 && TREE_CODE_CLASS (op) != tcc_unary
2221 && TREE_CODE_CLASS (op) != tcc_binary)
2222 return false;
2224 return operation_could_trap_helper_p (op, fp_operation, honor_trapv,
2225 honor_nans, honor_snans, divisor,
2226 &handled);
2229 /* Return true if EXPR can trap, as in dereferencing an invalid pointer
2230 location or floating point arithmetic. C.f. the rtl version, may_trap_p.
2231 This routine expects only GIMPLE lhs or rhs input. */
2233 bool
2234 tree_could_trap_p (tree expr)
2236 enum tree_code code;
2237 bool fp_operation = false;
2238 bool honor_trapv = false;
2239 tree t, base, div = NULL_TREE;
2241 if (!expr)
2242 return false;
2244 code = TREE_CODE (expr);
2245 t = TREE_TYPE (expr);
2247 if (t)
2249 if (COMPARISON_CLASS_P (expr))
2250 fp_operation = FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (expr, 0)));
2251 else
2252 fp_operation = FLOAT_TYPE_P (t);
2253 honor_trapv = INTEGRAL_TYPE_P (t) && TYPE_OVERFLOW_TRAPS (t);
2256 if (TREE_CODE_CLASS (code) == tcc_binary)
2257 div = TREE_OPERAND (expr, 1);
2258 if (operation_could_trap_p (code, fp_operation, honor_trapv, div))
2259 return true;
2261 restart:
2262 switch (code)
2264 case TARGET_MEM_REF:
2265 /* For TARGET_MEM_REFs use the information based on the original
2266 reference. */
2267 expr = TMR_ORIGINAL (expr);
2268 code = TREE_CODE (expr);
2269 goto restart;
2271 case COMPONENT_REF:
2272 case REALPART_EXPR:
2273 case IMAGPART_EXPR:
2274 case BIT_FIELD_REF:
2275 case VIEW_CONVERT_EXPR:
2276 case WITH_SIZE_EXPR:
2277 expr = TREE_OPERAND (expr, 0);
2278 code = TREE_CODE (expr);
2279 goto restart;
2281 case ARRAY_RANGE_REF:
2282 base = TREE_OPERAND (expr, 0);
2283 if (tree_could_trap_p (base))
2284 return true;
2286 if (TREE_THIS_NOTRAP (expr))
2287 return false;
2289 return !range_in_array_bounds_p (expr);
2291 case ARRAY_REF:
2292 base = TREE_OPERAND (expr, 0);
2293 if (tree_could_trap_p (base))
2294 return true;
2296 if (TREE_THIS_NOTRAP (expr))
2297 return false;
2299 return !in_array_bounds_p (expr);
2301 case INDIRECT_REF:
2302 case ALIGN_INDIRECT_REF:
2303 case MISALIGNED_INDIRECT_REF:
2304 return !TREE_THIS_NOTRAP (expr);
2306 case ASM_EXPR:
2307 return TREE_THIS_VOLATILE (expr);
2310 case CALL_EXPR:
2311 t = get_callee_fndecl (expr);
2312 /* Assume that calls to weak functions may trap. */
2313 if (!t || !DECL_P (t) || DECL_WEAK (t))
2314 return true;
2315 return false;
2317 default:
2318 return false;
2323 /* Helper for stmt_could_throw_p. Return true if STMT (assumed to be a
2324 an assignment or a conditional) may throw. */
2326 static bool
2327 stmt_could_throw_1_p (gimple stmt)
2329 enum tree_code code = gimple_expr_code (stmt);
2330 bool honor_nans = false;
2331 bool honor_snans = false;
2332 bool fp_operation = false;
2333 bool honor_trapv = false;
2334 tree t;
2335 size_t i;
2336 bool handled, ret;
2338 if (TREE_CODE_CLASS (code) == tcc_comparison
2339 || TREE_CODE_CLASS (code) == tcc_unary
2340 || TREE_CODE_CLASS (code) == tcc_binary)
2342 t = gimple_expr_type (stmt);
2343 fp_operation = FLOAT_TYPE_P (t);
2344 if (fp_operation)
2346 honor_nans = flag_trapping_math && !flag_finite_math_only;
2347 honor_snans = flag_signaling_nans != 0;
2349 else if (INTEGRAL_TYPE_P (t) && TYPE_OVERFLOW_TRAPS (t))
2350 honor_trapv = true;
2353 /* Check if the main expression may trap. */
2354 t = is_gimple_assign (stmt) ? gimple_assign_rhs2 (stmt) : NULL;
2355 ret = operation_could_trap_helper_p (code, fp_operation, honor_trapv,
2356 honor_nans, honor_snans, t,
2357 &handled);
2358 if (handled)
2359 return ret;
2361 /* If the expression does not trap, see if any of the individual operands may
2362 trap. */
2363 for (i = 0; i < gimple_num_ops (stmt); i++)
2364 if (tree_could_trap_p (gimple_op (stmt, i)))
2365 return true;
2367 return false;
2371 /* Return true if statement STMT could throw an exception. */
2373 bool
2374 stmt_could_throw_p (gimple stmt)
2376 enum gimple_code code;
2378 if (!flag_exceptions)
2379 return false;
2381 /* The only statements that can throw an exception are assignments,
2382 conditionals, calls and asms. */
2383 code = gimple_code (stmt);
2384 if (code != GIMPLE_ASSIGN
2385 && code != GIMPLE_COND
2386 && code != GIMPLE_CALL
2387 && code != GIMPLE_ASM)
2388 return false;
2390 /* If exceptions can only be thrown by function calls and STMT is not a
2391 GIMPLE_CALL, the statement cannot throw. */
2392 if (!flag_non_call_exceptions && code != GIMPLE_CALL)
2393 return false;
2395 if (code == GIMPLE_ASSIGN || code == GIMPLE_COND)
2396 return stmt_could_throw_1_p (stmt);
2397 else if (is_gimple_call (stmt))
2398 return (gimple_call_flags (stmt) & ECF_NOTHROW) == 0;
2399 else if (gimple_code (stmt) == GIMPLE_ASM)
2400 return (gimple_asm_volatile_p (stmt));
2401 else
2402 gcc_unreachable ();
2404 return false;
2408 /* Return true if expression T could throw an exception. */
2410 bool
2411 tree_could_throw_p (tree t)
2413 if (!flag_exceptions)
2414 return false;
2415 if (TREE_CODE (t) == MODIFY_EXPR)
2417 if (flag_non_call_exceptions
2418 && tree_could_trap_p (TREE_OPERAND (t, 0)))
2419 return true;
2420 t = TREE_OPERAND (t, 1);
2423 if (TREE_CODE (t) == WITH_SIZE_EXPR)
2424 t = TREE_OPERAND (t, 0);
2425 if (TREE_CODE (t) == CALL_EXPR)
2426 return (call_expr_flags (t) & ECF_NOTHROW) == 0;
2427 if (flag_non_call_exceptions)
2428 return tree_could_trap_p (t);
2429 return false;
2432 /* Return true if STMT can throw an exception that is not caught within
2433 the current function (CFUN). */
2435 bool
2436 stmt_can_throw_external (gimple stmt)
2438 int region_nr;
2439 bool is_resx = false;
2440 bool inlinable_call = false;
2442 if (!stmt_could_throw_p (stmt))
2443 return false;
2445 if (gimple_code (stmt) == GIMPLE_RESX)
2447 region_nr = gimple_resx_region (stmt);
2448 is_resx = true;
2450 else
2451 region_nr = lookup_stmt_eh_region (stmt);
2453 if (region_nr < 0)
2454 return true;
2456 return can_throw_external_1 (region_nr, is_resx, inlinable_call);
2459 /* Return true if STMT can throw an exception that is caught within
2460 the current function (CFUN). */
2462 bool
2463 stmt_can_throw_internal (gimple stmt)
2465 int region_nr;
2466 bool is_resx = false;
2467 bool inlinable_call = false;
2469 if (gimple_code (stmt) == GIMPLE_RESX)
2471 region_nr = gimple_resx_region (stmt);
2472 is_resx = true;
2474 else
2476 region_nr = lookup_stmt_eh_region (stmt);
2477 inlinable_call = inlinable_call_p (stmt);
2480 if (region_nr < 0)
2481 return false;
2483 return can_throw_internal_1 (region_nr, is_resx, inlinable_call);
2487 /* Given a statement OLD_STMT and a new statement NEW_STMT that has replaced
2488 OLD_STMT in the function, remove OLD_STMT from the EH table and put NEW_STMT
2489 in the table if it should be in there. Return TRUE if a replacement was
2490 done that my require an EH edge purge. */
2492 bool
2493 maybe_clean_or_replace_eh_stmt (gimple old_stmt, gimple new_stmt)
2495 int region_nr = lookup_stmt_eh_region (old_stmt);
2497 if (region_nr >= 0)
2499 bool new_stmt_could_throw = stmt_could_throw_p (new_stmt);
2501 if (new_stmt == old_stmt && new_stmt_could_throw)
2502 return false;
2504 remove_stmt_from_eh_region (old_stmt);
2505 if (new_stmt_could_throw)
2507 add_stmt_to_eh_region (new_stmt, region_nr);
2508 return false;
2510 else
2511 return true;
2514 return false;
2517 /* Returns TRUE if oneh and twoh are exception handlers (gimple_try_cleanup of
2518 GIMPLE_TRY) that are similar enough to be considered the same. Currently
2519 this only handles handlers consisting of a single call, as that's the
2520 important case for C++: a destructor call for a particular object showing
2521 up in multiple handlers. */
2523 static bool
2524 same_handler_p (gimple_seq oneh, gimple_seq twoh)
2526 gimple_stmt_iterator gsi;
2527 gimple ones, twos;
2528 unsigned int ai;
2530 gsi = gsi_start (oneh);
2531 if (!gsi_one_before_end_p (gsi))
2532 return false;
2533 ones = gsi_stmt (gsi);
2535 gsi = gsi_start (twoh);
2536 if (!gsi_one_before_end_p (gsi))
2537 return false;
2538 twos = gsi_stmt (gsi);
2540 if (!is_gimple_call (ones)
2541 || !is_gimple_call (twos)
2542 || gimple_call_lhs (ones)
2543 || gimple_call_lhs (twos)
2544 || gimple_call_chain (ones)
2545 || gimple_call_chain (twos)
2546 || !operand_equal_p (gimple_call_fn (ones), gimple_call_fn (twos), 0)
2547 || gimple_call_num_args (ones) != gimple_call_num_args (twos))
2548 return false;
2550 for (ai = 0; ai < gimple_call_num_args (ones); ++ai)
2551 if (!operand_equal_p (gimple_call_arg (ones, ai),
2552 gimple_call_arg (twos, ai), 0))
2553 return false;
2555 return true;
2558 /* Optimize
2559 try { A() } finally { try { ~B() } catch { ~A() } }
2560 try { ... } finally { ~A() }
2561 into
2562 try { A() } catch { ~B() }
2563 try { ~B() ... } finally { ~A() }
2565 This occurs frequently in C++, where A is a local variable and B is a
2566 temporary used in the initializer for A. */
2568 static void
2569 optimize_double_finally (gimple one, gimple two)
2571 gimple oneh;
2572 gimple_stmt_iterator gsi;
2574 gsi = gsi_start (gimple_try_cleanup (one));
2575 if (!gsi_one_before_end_p (gsi))
2576 return;
2578 oneh = gsi_stmt (gsi);
2579 if (gimple_code (oneh) != GIMPLE_TRY
2580 || gimple_try_kind (oneh) != GIMPLE_TRY_CATCH)
2581 return;
2583 if (same_handler_p (gimple_try_cleanup (oneh), gimple_try_cleanup (two)))
2585 gimple_seq seq = gimple_try_eval (oneh);
2587 gimple_try_set_cleanup (one, seq);
2588 gimple_try_set_kind (one, GIMPLE_TRY_CATCH);
2589 seq = copy_gimple_seq_and_replace_locals (seq);
2590 gimple_seq_add_seq (&seq, gimple_try_eval (two));
2591 gimple_try_set_eval (two, seq);
2595 /* Perform EH refactoring optimizations that are simpler to do when code
2596 flow has been lowered but EH structures haven't. */
2598 static void
2599 refactor_eh_r (gimple_seq seq)
2601 gimple_stmt_iterator gsi;
2602 gimple one, two;
2604 one = NULL;
2605 two = NULL;
2606 gsi = gsi_start (seq);
2607 while (1)
2609 one = two;
2610 if (gsi_end_p (gsi))
2611 two = NULL;
2612 else
2613 two = gsi_stmt (gsi);
2614 if (one
2615 && two
2616 && gimple_code (one) == GIMPLE_TRY
2617 && gimple_code (two) == GIMPLE_TRY
2618 && gimple_try_kind (one) == GIMPLE_TRY_FINALLY
2619 && gimple_try_kind (two) == GIMPLE_TRY_FINALLY)
2620 optimize_double_finally (one, two);
2621 if (one)
2622 switch (gimple_code (one))
2624 case GIMPLE_TRY:
2625 refactor_eh_r (gimple_try_eval (one));
2626 refactor_eh_r (gimple_try_cleanup (one));
2627 break;
2628 case GIMPLE_CATCH:
2629 refactor_eh_r (gimple_catch_handler (one));
2630 break;
2631 case GIMPLE_EH_FILTER:
2632 refactor_eh_r (gimple_eh_filter_failure (one));
2633 break;
2634 default:
2635 break;
2637 if (two)
2638 gsi_next (&gsi);
2639 else
2640 break;
2644 static unsigned
2645 refactor_eh (void)
2647 refactor_eh_r (gimple_body (current_function_decl));
2648 return 0;
2651 struct gimple_opt_pass pass_refactor_eh =
2654 GIMPLE_PASS,
2655 "ehopt", /* name */
2656 NULL, /* gate */
2657 refactor_eh, /* execute */
2658 NULL, /* sub */
2659 NULL, /* next */
2660 0, /* static_pass_number */
2661 TV_TREE_EH, /* tv_id */
2662 PROP_gimple_lcf, /* properties_required */
2663 0, /* properties_provided */
2664 0, /* properties_destroyed */
2665 0, /* todo_flags_start */
2666 TODO_dump_func /* todo_flags_finish */
2670 /* Walk statements, see what regions are really references and remove unreachable ones. */
2672 static void
2673 tree_remove_unreachable_handlers (void)
2675 sbitmap reachable, contains_stmt;
2676 VEC(int,heap) * label_to_region;
2677 basic_block bb;
2679 label_to_region = label_to_region_map ();
2680 reachable = sbitmap_alloc (num_eh_regions ());
2681 sbitmap_zero (reachable);
2682 contains_stmt = sbitmap_alloc (num_eh_regions ());
2683 sbitmap_zero (contains_stmt);
2685 FOR_EACH_BB (bb)
2687 gimple_stmt_iterator gsi;
2688 int region;
2689 bool has_eh_preds = bb_has_eh_pred (bb);
2691 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2693 gimple stmt = gsi_stmt (gsi);
2695 if (gimple_code (stmt) == GIMPLE_LABEL && has_eh_preds)
2697 int uid = LABEL_DECL_UID (gimple_label_label (stmt));
2698 int region = VEC_index (int, label_to_region, uid);
2699 SET_BIT (reachable, region);
2701 if (gimple_code (stmt) == GIMPLE_RESX)
2702 SET_BIT (reachable, gimple_resx_region (stmt));
2703 if ((region = lookup_stmt_eh_region (stmt)) >= 0)
2704 SET_BIT (contains_stmt, region);
2708 if (dump_file)
2710 fprintf (dump_file, "Before removal of unreachable regions:\n");
2711 dump_eh_tree (dump_file, cfun);
2712 fprintf (dump_file, "Reachable regions: ");
2713 dump_sbitmap_file (dump_file, reachable);
2714 fprintf (dump_file, "Regions containing insns: ");
2715 dump_sbitmap_file (dump_file, contains_stmt);
2718 remove_unreachable_regions (reachable, contains_stmt);
2719 sbitmap_free (reachable);
2720 sbitmap_free (contains_stmt);
2721 VEC_free (int, heap, label_to_region);
2722 if (dump_file)
2724 fprintf (dump_file, "\n\nAfter removal of unreachable regions:\n");
2725 dump_eh_tree (dump_file, cfun);
2726 fprintf (dump_file, "\n\n");
2730 /* Pattern match emtpy EH receiver looking like:
2732 save_filt.6352_662 = [filter_expr] <<<filter object>>>;
2733 save_eptr.6351_663 = [exc_ptr_expr] <<<exception object>>>;
2734 <<<exception object>>> = save_eptr.6351_663;
2735 <<<filter object>>> = save_filt.6352_662;
2736 resx 1
2738 And various minor variants after DCE or copy propagation.
2741 static int
2742 tree_empty_eh_handler_p (basic_block bb)
2744 gimple_stmt_iterator gsi;
2745 int region;
2746 use_operand_p imm_use;
2747 gimple use_stmt;
2749 gsi = gsi_last_bb (bb);
2751 /* RESX */
2752 if (gsi_end_p (gsi))
2753 return 0;
2754 if (gimple_code (gsi_stmt (gsi)) != GIMPLE_RESX)
2755 return 0;
2756 region = gimple_resx_region (gsi_stmt (gsi));
2758 /* filter_object set. */
2759 gsi_prev (&gsi);
2760 if (gsi_end_p (gsi))
2761 return 0;
2762 if (gimple_code (gsi_stmt (gsi)) == GIMPLE_ASSIGN)
2764 tree filter_tmp;
2765 tree exc_ptr_tmp;
2767 if (TREE_CODE (gimple_assign_lhs (gsi_stmt (gsi))) != FILTER_EXPR)
2768 return 0;
2769 filter_tmp = gimple_assign_rhs1 (gsi_stmt (gsi));
2771 /* filter_object set. */
2772 gsi_prev (&gsi);
2773 if (gsi_end_p (gsi))
2774 return 0;
2775 if (gimple_code (gsi_stmt (gsi)) != GIMPLE_ASSIGN)
2776 return 0;
2777 if (TREE_CODE (gimple_assign_lhs (gsi_stmt (gsi))) != EXC_PTR_EXPR)
2778 return 0;
2779 exc_ptr_tmp = gimple_assign_rhs1 (gsi_stmt (gsi));
2781 /* exc_ptr get. */
2782 if (TREE_CODE (exc_ptr_tmp) != EXC_PTR_EXPR)
2784 gsi_prev (&gsi);
2785 if (gsi_end_p (gsi))
2786 return 0;
2787 if (gimple_code (gsi_stmt (gsi)) != GIMPLE_ASSIGN)
2788 return 0;
2789 if (TREE_CODE (gimple_assign_rhs1 (gsi_stmt (gsi))) != EXC_PTR_EXPR)
2790 return 0;
2791 if (exc_ptr_tmp != gimple_assign_lhs (gsi_stmt (gsi)))
2792 return 0;
2793 if (!single_imm_use (exc_ptr_tmp, &imm_use, &use_stmt))
2794 return 0;
2797 /* filter_object get. */
2798 if (TREE_CODE (filter_tmp) != FILTER_EXPR)
2800 gsi_prev (&gsi);
2801 if (gsi_end_p (gsi))
2802 return 0;
2803 if (gimple_code (gsi_stmt (gsi)) != GIMPLE_ASSIGN)
2804 return 0;
2805 if (TREE_CODE (gimple_assign_rhs1 (gsi_stmt (gsi))) != FILTER_EXPR)
2806 return 0;
2807 if (filter_tmp != gimple_assign_lhs (gsi_stmt (gsi)))
2808 return 0;
2809 if (!single_imm_use (filter_tmp, &imm_use, &use_stmt))
2810 return 0;
2813 /* label. */
2814 gsi_prev (&gsi);
2815 if (gsi_end_p (gsi))
2816 return 0;
2818 while (gimple_code (gsi_stmt (gsi)) == GIMPLE_LABEL)
2820 if (gimple_label_label (gsi_stmt (gsi))
2821 == get_eh_region_no_tree_label (region))
2822 return region;
2823 gsi_prev (&gsi);
2824 if (gsi_end_p (gsi))
2825 return 0;
2827 return 0;
2830 /* Return true if it is possible to remove basic block BB and propagate
2831 through PHIs.
2833 This means that every PHI in BB has all uses such that they are PHIs
2834 of basic blocks reachable througt BB and they appears only in use
2835 reachable by the edge from BB to the block contianing the use.
2837 This is same as in merge-phi code, but in slightly more general setting
2838 because BB can have multiple successors. */
2840 static bool
2841 all_phis_safe_to_merge (basic_block bb)
2843 gimple_stmt_iterator si;
2844 bool ok = true;
2846 for (si = gsi_start_phis (bb); !gsi_end_p (si); gsi_next (&si))
2848 gimple phi = gsi_stmt (si);
2849 tree result = gimple_phi_result (phi);
2850 gimple stmt;
2851 use_operand_p imm_use;
2852 imm_use_iterator imm_iter;
2854 /* If the PHI's result is never used, then we can just
2855 ignore it. */
2856 if (has_zero_uses (result))
2857 continue;
2858 /* We can always rebuild virtuals if needed. */
2859 if (!is_gimple_reg (result))
2860 continue;
2861 FOR_EACH_IMM_USE_STMT (stmt, imm_iter, result)
2863 if (gimple_code (stmt) != GIMPLE_PHI)
2865 if (dump_file && (dump_flags & TDF_DETAILS))
2866 fprintf (dump_file,
2867 "PHI result has use in non-PHI statement.\n");
2868 ok = false;
2869 BREAK_FROM_IMM_USE_STMT (imm_iter);
2871 else
2872 FOR_EACH_IMM_USE_ON_STMT (imm_use, imm_iter)
2874 edge e;
2875 e = gimple_phi_arg_edge (stmt, PHI_ARG_INDEX_FROM_USE (imm_use));
2876 if (e->src != bb)
2878 if (dump_file && (dump_flags & TDF_DETAILS))
2879 fprintf (dump_file, "PHI has use in PHI not reached from"
2880 "empty cleanup itself.\n");
2881 ok = false;
2882 break;
2885 if (!ok)
2886 BREAK_FROM_IMM_USE_STMT (imm_iter);
2888 if (!ok)
2889 return false;
2891 return ok;
2894 static bool dominance_info_invalidated;
2896 /* Information to pass into make_eh_edge_and_update_phi. */
2898 struct update_info
2900 basic_block bb_to_remove, bb;
2901 edge edge_to_remove;
2904 /* DATA points to update-info structure.
2905 Like make_eh_edge create EH edge from DATA->bb to basic block containing
2906 handler of REGION. In addition also update PHI operands by copying
2907 operands from DATA->bb_to_remove. */
2909 static void
2910 make_eh_edge_and_update_phi (struct eh_region *region, void *data)
2912 struct update_info *info = (struct update_info *) data;
2913 edge e, e2;
2914 tree lab;
2915 basic_block src, dst;
2916 gimple_stmt_iterator si;
2918 lab = get_eh_region_tree_label (region);
2920 src = info->bb;
2921 dst = label_to_block (lab);
2923 e = find_edge (src, dst);
2924 if (e)
2926 gcc_assert (e->flags & EDGE_EH);
2927 e->aux = e;
2928 return;
2930 dominance_info_invalidated = true;
2931 e2 = find_edge (info->bb_to_remove, dst);
2932 e = make_edge (src, dst, EDGE_ABNORMAL | EDGE_EH);
2933 e->aux = e;
2934 gcc_assert (e2);
2935 for (si = gsi_start_phis (dst); !gsi_end_p (si); gsi_next (&si))
2937 gimple phi = gsi_stmt (si);
2938 tree use = USE_FROM_PTR (PHI_ARG_DEF_PTR_FROM_EDGE (phi, e2));
2939 gimple def = (TREE_CODE (use) == SSA_NAME
2940 ? SSA_NAME_DEF_STMT (use) : NULL);
2942 if (def && gimple_bb (def) == info->bb_to_remove)
2944 use = USE_FROM_PTR (PHI_ARG_DEF_PTR_FROM_EDGE (def,
2945 info->edge_to_remove));
2946 gcc_assert (info->bb_to_remove == info->edge_to_remove->dest);
2947 def = TREE_CODE (use) == SSA_NAME ? SSA_NAME_DEF_STMT (use) : NULL;
2948 gcc_assert (!def
2949 || gimple_bb (def) != info->bb_to_remove
2950 || !is_gimple_reg (use));
2952 SET_USE (PHI_ARG_DEF_PTR_FROM_EDGE (phi, e), use);
2956 /* Make EH edges corresponding to STMT while updating PHI nodes after removal
2957 empty cleanup BB_TO_REMOVE joined to BB containing STMT
2958 by EDGE_TO_REMOVE. */
2960 static void
2961 update_eh_edges (gimple stmt, basic_block bb_to_remove, edge edge_to_remove)
2963 int region_nr;
2964 bool is_resx;
2965 bool inlinable = false;
2966 struct update_info info;
2967 edge_iterator ei;
2968 edge e;
2969 int probability_sum = 0;
2971 info.bb_to_remove = bb_to_remove;
2972 info.bb = gimple_bb (stmt);
2973 info.edge_to_remove = edge_to_remove;
2975 if (gimple_code (stmt) == GIMPLE_RESX)
2977 region_nr = gimple_resx_region (stmt);
2978 is_resx = true;
2980 else
2982 region_nr = lookup_stmt_eh_region (stmt);
2983 if (region_nr < 0)
2984 return;
2985 is_resx = false;
2986 inlinable = inlinable_call_p (stmt);
2989 /* First add new edges as neccesary. */
2990 foreach_reachable_handler (region_nr, is_resx, inlinable,
2991 make_eh_edge_and_update_phi, &info);
2993 /* And remove edges we didn't marked. */
2994 for (ei = ei_start (info.bb->succs); (e = ei_safe_edge (ei)); )
2996 if ((e->flags & EDGE_EH) && !e->aux && e != edge_to_remove)
2998 dominance_info_invalidated = true;
2999 remove_edge (e);
3001 else
3003 e->aux = NULL;
3004 probability_sum += e->probability;
3005 ei_next (&ei);
3009 /* Make CFG profile more consistent assuming that exception will resume to
3010 first available EH handler. In practice this makes little difference, but
3011 we get fewer consistency errors in the dumps. */
3012 if (is_resx && EDGE_COUNT (info.bb->succs) && !probability_sum)
3013 EDGE_SUCC (info.bb, 0)->probability = REG_BR_PROB_BASE;
3016 /* Look for basic blocks containing empty exception handler and remove them.
3017 This is similar to jump forwarding, just across EH edges. */
3019 static bool
3020 cleanup_empty_eh (basic_block bb)
3022 int region;
3023 gimple_stmt_iterator si;
3025 /* When handler of EH region winds up to be empty, we can safely
3026 remove it. This leads to inner EH regions to be redirected
3027 to outer one, if present in function. So we need to rebuild
3028 EH edges in all sources. */
3029 if ((region = tree_empty_eh_handler_p (bb))
3030 && all_phis_safe_to_merge (bb))
3032 edge e;
3034 remove_eh_region (region);
3036 while ((e = ei_safe_edge (ei_start (bb->preds))))
3038 basic_block src = e->src;
3039 gcc_assert (e->flags & EDGE_EH);
3040 if (stmt_can_throw_internal (last_stmt (src)))
3041 update_eh_edges (last_stmt (src), bb, e);
3042 remove_edge (e);
3044 if (dump_file)
3045 fprintf (dump_file, "Empty EH handler %i removed\n", region);
3047 /* Verify that we eliminated all uses of PHI we are going to remove.
3048 If we didn't, rebuild SSA on affected variable (this is allowed only
3049 for virtuals). */
3050 for (si = gsi_start_phis (bb); !gsi_end_p (si); gsi_next (&si))
3052 gimple phi = gsi_stmt (si);
3053 tree result = gimple_phi_result (phi);
3054 if (!has_zero_uses (result))
3056 use_operand_p use_p;
3057 imm_use_iterator iter;
3058 gimple stmt;
3060 FOR_EACH_IMM_USE_STMT (stmt, iter, result)
3062 /* We have use, see if it won't disappear after
3063 removing BB. */
3064 if (gimple_bb (stmt) == bb)
3065 continue;
3066 if (gimple_code (stmt) == GIMPLE_PHI)
3068 bool bad = false;
3070 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
3071 if (gimple_phi_arg_edge (stmt,
3072 PHI_ARG_INDEX_FROM_USE (use_p))->src != bb)
3074 bad = true;
3075 break;
3078 if (!bad)
3079 continue;
3082 gcc_assert (!is_gimple_reg (result));
3083 mark_sym_for_renaming (SSA_NAME_VAR (result));
3084 /* As we are going to delete this block we will release all
3085 defs which makes the immediate uses on use stmts invalid.
3086 Avoid that by replacing all uses with the bare variable
3087 and updating the stmts. */
3088 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
3089 SET_USE (use_p, SSA_NAME_VAR (result));
3090 update_stmt (stmt);
3094 delete_basic_block (bb);
3095 return true;
3097 return false;
3101 /* Perform cleanups and lowering of exception handling
3102 1) cleanups regions with handlers doing nothing are optimized out
3103 2) MUST_NOT_THROW regions that became dead because of 1) are optimized out
3104 3) Info about regions that are containing instructions, and regions
3105 reachable via local EH edges is collected
3106 4) Eh tree is pruned for regions no longer neccesary.
3109 static unsigned int
3110 cleanup_eh (void)
3112 bool changed = false;
3113 basic_block bb;
3114 int i;
3116 if (!cfun->eh)
3117 return 0;
3118 if (dump_file)
3120 fprintf (dump_file, "Before cleanups:\n");
3121 dump_eh_tree (dump_file, cfun);
3124 dominance_info_invalidated = false;
3125 /* We cannot use FOR_EACH_BB, since the basic blocks may get removed. */
3126 for (i = NUM_FIXED_BLOCKS; i < last_basic_block; i++)
3128 bb = BASIC_BLOCK (i);
3129 if (bb)
3130 changed |= cleanup_empty_eh (bb);
3132 if (dominance_info_invalidated)
3134 free_dominance_info (CDI_DOMINATORS);
3135 free_dominance_info (CDI_POST_DOMINATORS);
3138 /* Removing contained cleanup can render MUST_NOT_THROW regions empty. */
3139 if (changed)
3140 delete_unreachable_blocks ();
3142 tree_remove_unreachable_handlers ();
3143 if (dump_file)
3145 fprintf (dump_file, "After cleanups:\n");
3146 dump_eh_tree (dump_file, cfun);
3149 return (changed ? TODO_cleanup_cfg | TODO_update_ssa : 0);
3152 struct gimple_opt_pass pass_cleanup_eh = {
3154 GIMPLE_PASS,
3155 "ehcleanup", /* name */
3156 NULL, /* gate */
3157 cleanup_eh, /* execute */
3158 NULL, /* sub */
3159 NULL, /* next */
3160 0, /* static_pass_number */
3161 TV_TREE_EH, /* tv_id */
3162 PROP_gimple_lcf, /* properties_required */
3163 0, /* properties_provided */
3164 0, /* properties_destroyed */
3165 0, /* todo_flags_start */
3166 TODO_dump_func /* todo_flags_finish */