1 /* Exception handling semantics and decomposition for trees.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
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)
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/>. */
23 #include "coretypes.h"
29 #include "pointer-set.h"
30 #include "tree-flow.h"
31 #include "tree-inline.h"
32 #include "tree-pass.h"
33 #include "langhooks.h"
35 #include "diagnostic-core.h"
40 /* In some instances a tree and a gimple need to be stored in a same table,
41 i.e. in hash tables. This is a structure to do this. */
42 typedef union {tree
*tp
; tree t
; gimple g
;} treemple
;
44 /* Nonzero if we are using EH to handle cleanups. */
45 static int using_eh_for_cleanups_p
= 0;
48 using_eh_for_cleanups (void)
50 using_eh_for_cleanups_p
= 1;
53 /* Misc functions used in this file. */
55 /* Remember and lookup EH landing pad data for arbitrary statements.
56 Really this means any statement that could_throw_p. We could
57 stuff this information into the stmt_ann data structure, but:
59 (1) We absolutely rely on this information being kept until
60 we get to rtl. Once we're done with lowering here, if we lose
61 the information there's no way to recover it!
63 (2) There are many more statements that *cannot* throw as
64 compared to those that can. We should be saving some amount
65 of space by only allocating memory for those that can throw. */
67 /* Add statement T in function IFUN to landing pad NUM. */
70 add_stmt_to_eh_lp_fn (struct function
*ifun
, gimple t
, int num
)
72 struct throw_stmt_node
*n
;
75 gcc_assert (num
!= 0);
77 n
= ggc_alloc_throw_stmt_node ();
81 if (!get_eh_throw_stmt_table (ifun
))
82 set_eh_throw_stmt_table (ifun
, htab_create_ggc (31, struct_ptr_hash
,
86 slot
= htab_find_slot (get_eh_throw_stmt_table (ifun
), n
, INSERT
);
91 /* Add statement T in the current function (cfun) to EH landing pad NUM. */
94 add_stmt_to_eh_lp (gimple t
, int num
)
96 add_stmt_to_eh_lp_fn (cfun
, t
, num
);
99 /* Add statement T to the single EH landing pad in REGION. */
102 record_stmt_eh_region (eh_region region
, gimple t
)
106 if (region
->type
== ERT_MUST_NOT_THROW
)
107 add_stmt_to_eh_lp_fn (cfun
, t
, -region
->index
);
110 eh_landing_pad lp
= region
->landing_pads
;
112 lp
= gen_eh_landing_pad (region
);
114 gcc_assert (lp
->next_lp
== NULL
);
115 add_stmt_to_eh_lp_fn (cfun
, t
, lp
->index
);
120 /* Remove statement T in function IFUN from its EH landing pad. */
123 remove_stmt_from_eh_lp_fn (struct function
*ifun
, gimple t
)
125 struct throw_stmt_node dummy
;
128 if (!get_eh_throw_stmt_table (ifun
))
132 slot
= htab_find_slot (get_eh_throw_stmt_table (ifun
), &dummy
,
136 htab_clear_slot (get_eh_throw_stmt_table (ifun
), slot
);
144 /* Remove statement T in the current function (cfun) from its
148 remove_stmt_from_eh_lp (gimple t
)
150 return remove_stmt_from_eh_lp_fn (cfun
, t
);
153 /* Determine if statement T is inside an EH region in function IFUN.
154 Positive numbers indicate a landing pad index; negative numbers
155 indicate a MUST_NOT_THROW region index; zero indicates that the
156 statement is not recorded in the region table. */
159 lookup_stmt_eh_lp_fn (struct function
*ifun
, gimple t
)
161 struct throw_stmt_node
*p
, n
;
163 if (ifun
->eh
->throw_stmt_table
== NULL
)
167 p
= (struct throw_stmt_node
*) htab_find (ifun
->eh
->throw_stmt_table
, &n
);
168 return p
? p
->lp_nr
: 0;
171 /* Likewise, but always use the current function. */
174 lookup_stmt_eh_lp (gimple t
)
176 /* We can get called from initialized data when -fnon-call-exceptions
177 is on; prevent crash. */
180 return lookup_stmt_eh_lp_fn (cfun
, t
);
183 /* First pass of EH node decomposition. Build up a tree of GIMPLE_TRY_FINALLY
184 nodes and LABEL_DECL nodes. We will use this during the second phase to
185 determine if a goto leaves the body of a TRY_FINALLY_EXPR node. */
187 struct finally_tree_node
189 /* When storing a GIMPLE_TRY, we have to record a gimple. However
190 when deciding whether a GOTO to a certain LABEL_DECL (which is a
191 tree) leaves the TRY block, its necessary to record a tree in
192 this field. Thus a treemple is used. */
197 /* Note that this table is *not* marked GTY. It is short-lived. */
198 static htab_t finally_tree
;
201 record_in_finally_tree (treemple child
, gimple parent
)
203 struct finally_tree_node
*n
;
206 n
= XNEW (struct finally_tree_node
);
210 slot
= htab_find_slot (finally_tree
, n
, INSERT
);
216 collect_finally_tree (gimple stmt
, gimple region
);
218 /* Go through the gimple sequence. Works with collect_finally_tree to
219 record all GIMPLE_LABEL and GIMPLE_TRY statements. */
222 collect_finally_tree_1 (gimple_seq seq
, gimple region
)
224 gimple_stmt_iterator gsi
;
226 for (gsi
= gsi_start (seq
); !gsi_end_p (gsi
); gsi_next (&gsi
))
227 collect_finally_tree (gsi_stmt (gsi
), region
);
231 collect_finally_tree (gimple stmt
, gimple region
)
235 switch (gimple_code (stmt
))
238 temp
.t
= gimple_label_label (stmt
);
239 record_in_finally_tree (temp
, region
);
243 if (gimple_try_kind (stmt
) == GIMPLE_TRY_FINALLY
)
246 record_in_finally_tree (temp
, region
);
247 collect_finally_tree_1 (gimple_try_eval (stmt
), stmt
);
248 collect_finally_tree_1 (gimple_try_cleanup (stmt
), region
);
250 else if (gimple_try_kind (stmt
) == GIMPLE_TRY_CATCH
)
252 collect_finally_tree_1 (gimple_try_eval (stmt
), region
);
253 collect_finally_tree_1 (gimple_try_cleanup (stmt
), region
);
258 collect_finally_tree_1 (gimple_catch_handler (stmt
), region
);
261 case GIMPLE_EH_FILTER
:
262 collect_finally_tree_1 (gimple_eh_filter_failure (stmt
), region
);
266 collect_finally_tree_1 (gimple_eh_else_n_body (stmt
), region
);
267 collect_finally_tree_1 (gimple_eh_else_e_body (stmt
), region
);
271 /* A type, a decl, or some kind of statement that we're not
272 interested in. Don't walk them. */
278 /* Use the finally tree to determine if a jump from START to TARGET
279 would leave the try_finally node that START lives in. */
282 outside_finally_tree (treemple start
, gimple target
)
284 struct finally_tree_node n
, *p
;
289 p
= (struct finally_tree_node
*) htab_find (finally_tree
, &n
);
294 while (start
.g
!= target
);
299 /* Second pass of EH node decomposition. Actually transform the GIMPLE_TRY
300 nodes into a set of gotos, magic labels, and eh regions.
301 The eh region creation is straight-forward, but frobbing all the gotos
302 and such into shape isn't. */
304 /* The sequence into which we record all EH stuff. This will be
305 placed at the end of the function when we're all done. */
306 static gimple_seq eh_seq
;
308 /* Record whether an EH region contains something that can throw,
309 indexed by EH region number. */
310 static bitmap eh_region_may_contain_throw_map
;
312 /* The GOTO_QUEUE is is an array of GIMPLE_GOTO and GIMPLE_RETURN
313 statements that are seen to escape this GIMPLE_TRY_FINALLY node.
314 The idea is to record a gimple statement for everything except for
315 the conditionals, which get their labels recorded. Since labels are
316 of type 'tree', we need this node to store both gimple and tree
317 objects. REPL_STMT is the sequence used to replace the goto/return
318 statement. CONT_STMT is used to store the statement that allows
319 the return/goto to jump to the original destination. */
321 struct goto_queue_node
325 gimple_seq repl_stmt
;
328 /* This is used when index >= 0 to indicate that stmt is a label (as
329 opposed to a goto stmt). */
333 /* State of the world while lowering. */
337 /* What's "current" while constructing the eh region tree. These
338 correspond to variables of the same name in cfun->eh, which we
339 don't have easy access to. */
340 eh_region cur_region
;
342 /* What's "current" for the purposes of __builtin_eh_pointer. For
343 a CATCH, this is the associated TRY. For an EH_FILTER, this is
344 the associated ALLOWED_EXCEPTIONS, etc. */
345 eh_region ehp_region
;
347 /* Processing of TRY_FINALLY requires a bit more state. This is
348 split out into a separate structure so that we don't have to
349 copy so much when processing other nodes. */
350 struct leh_tf_state
*tf
;
355 /* Pointer to the GIMPLE_TRY_FINALLY node under discussion. The
356 try_finally_expr is the original GIMPLE_TRY_FINALLY. We need to retain
357 this so that outside_finally_tree can reliably reference the tree used
358 in the collect_finally_tree data structures. */
359 gimple try_finally_expr
;
362 /* While lowering a top_p usually it is expanded into multiple statements,
363 thus we need the following field to store them. */
364 gimple_seq top_p_seq
;
366 /* The state outside this try_finally node. */
367 struct leh_state
*outer
;
369 /* The exception region created for it. */
372 /* The goto queue. */
373 struct goto_queue_node
*goto_queue
;
374 size_t goto_queue_size
;
375 size_t goto_queue_active
;
377 /* Pointer map to help in searching goto_queue when it is large. */
378 struct pointer_map_t
*goto_queue_map
;
380 /* The set of unique labels seen as entries in the goto queue. */
381 VEC(tree
,heap
) *dest_array
;
383 /* A label to be added at the end of the completed transformed
384 sequence. It will be set if may_fallthru was true *at one time*,
385 though subsequent transformations may have cleared that flag. */
388 /* True if it is possible to fall out the bottom of the try block.
389 Cleared if the fallthru is converted to a goto. */
392 /* True if any entry in goto_queue is a GIMPLE_RETURN. */
395 /* True if the finally block can receive an exception edge.
396 Cleared if the exception case is handled by code duplication. */
400 static gimple_seq
lower_eh_must_not_throw (struct leh_state
*, gimple
);
402 /* Search for STMT in the goto queue. Return the replacement,
403 or null if the statement isn't in the queue. */
405 #define LARGE_GOTO_QUEUE 20
407 static void lower_eh_constructs_1 (struct leh_state
*state
, gimple_seq
*seq
);
410 find_goto_replacement (struct leh_tf_state
*tf
, treemple stmt
)
415 if (tf
->goto_queue_active
< LARGE_GOTO_QUEUE
)
417 for (i
= 0; i
< tf
->goto_queue_active
; i
++)
418 if ( tf
->goto_queue
[i
].stmt
.g
== stmt
.g
)
419 return tf
->goto_queue
[i
].repl_stmt
;
423 /* If we have a large number of entries in the goto_queue, create a
424 pointer map and use that for searching. */
426 if (!tf
->goto_queue_map
)
428 tf
->goto_queue_map
= pointer_map_create ();
429 for (i
= 0; i
< tf
->goto_queue_active
; i
++)
431 slot
= pointer_map_insert (tf
->goto_queue_map
,
432 tf
->goto_queue
[i
].stmt
.g
);
433 gcc_assert (*slot
== NULL
);
434 *slot
= &tf
->goto_queue
[i
];
438 slot
= pointer_map_contains (tf
->goto_queue_map
, stmt
.g
);
440 return (((struct goto_queue_node
*) *slot
)->repl_stmt
);
445 /* A subroutine of replace_goto_queue_1. Handles the sub-clauses of a
446 lowered GIMPLE_COND. If, by chance, the replacement is a simple goto,
447 then we can just splat it in, otherwise we add the new stmts immediately
448 after the GIMPLE_COND and redirect. */
451 replace_goto_queue_cond_clause (tree
*tp
, struct leh_tf_state
*tf
,
452 gimple_stmt_iterator
*gsi
)
457 location_t loc
= gimple_location (gsi_stmt (*gsi
));
460 new_seq
= find_goto_replacement (tf
, temp
);
464 if (gimple_seq_singleton_p (new_seq
)
465 && gimple_code (gimple_seq_first_stmt (new_seq
)) == GIMPLE_GOTO
)
467 *tp
= gimple_goto_dest (gimple_seq_first_stmt (new_seq
));
471 label
= create_artificial_label (loc
);
472 /* Set the new label for the GIMPLE_COND */
475 gsi_insert_after (gsi
, gimple_build_label (label
), GSI_CONTINUE_LINKING
);
476 gsi_insert_seq_after (gsi
, gimple_seq_copy (new_seq
), GSI_CONTINUE_LINKING
);
479 /* The real work of replace_goto_queue. Returns with TSI updated to
480 point to the next statement. */
482 static void replace_goto_queue_stmt_list (gimple_seq
*, struct leh_tf_state
*);
485 replace_goto_queue_1 (gimple stmt
, struct leh_tf_state
*tf
,
486 gimple_stmt_iterator
*gsi
)
492 switch (gimple_code (stmt
))
497 seq
= find_goto_replacement (tf
, temp
);
500 gsi_insert_seq_before (gsi
, gimple_seq_copy (seq
), GSI_SAME_STMT
);
501 gsi_remove (gsi
, false);
507 replace_goto_queue_cond_clause (gimple_op_ptr (stmt
, 2), tf
, gsi
);
508 replace_goto_queue_cond_clause (gimple_op_ptr (stmt
, 3), tf
, gsi
);
512 replace_goto_queue_stmt_list (gimple_try_eval_ptr (stmt
), tf
);
513 replace_goto_queue_stmt_list (gimple_try_cleanup_ptr (stmt
), tf
);
516 replace_goto_queue_stmt_list (gimple_catch_handler_ptr (stmt
), tf
);
518 case GIMPLE_EH_FILTER
:
519 replace_goto_queue_stmt_list (gimple_eh_filter_failure_ptr (stmt
), tf
);
522 replace_goto_queue_stmt_list (gimple_eh_else_n_body_ptr (stmt
), tf
);
523 replace_goto_queue_stmt_list (gimple_eh_else_e_body_ptr (stmt
), tf
);
527 /* These won't have gotos in them. */
534 /* A subroutine of replace_goto_queue. Handles GIMPLE_SEQ. */
537 replace_goto_queue_stmt_list (gimple_seq
*seq
, struct leh_tf_state
*tf
)
539 gimple_stmt_iterator gsi
= gsi_start (*seq
);
541 while (!gsi_end_p (gsi
))
542 replace_goto_queue_1 (gsi_stmt (gsi
), tf
, &gsi
);
545 /* Replace all goto queue members. */
548 replace_goto_queue (struct leh_tf_state
*tf
)
550 if (tf
->goto_queue_active
== 0)
552 replace_goto_queue_stmt_list (&tf
->top_p_seq
, tf
);
553 replace_goto_queue_stmt_list (&eh_seq
, tf
);
556 /* Add a new record to the goto queue contained in TF. NEW_STMT is the
557 data to be added, IS_LABEL indicates whether NEW_STMT is a label or
561 record_in_goto_queue (struct leh_tf_state
*tf
,
568 struct goto_queue_node
*q
;
570 gcc_assert (!tf
->goto_queue_map
);
572 active
= tf
->goto_queue_active
;
573 size
= tf
->goto_queue_size
;
576 size
= (size
? size
* 2 : 32);
577 tf
->goto_queue_size
= size
;
579 = XRESIZEVEC (struct goto_queue_node
, tf
->goto_queue
, size
);
582 q
= &tf
->goto_queue
[active
];
583 tf
->goto_queue_active
= active
+ 1;
585 memset (q
, 0, sizeof (*q
));
588 q
->location
= location
;
589 q
->is_label
= is_label
;
592 /* Record the LABEL label in the goto queue contained in TF.
596 record_in_goto_queue_label (struct leh_tf_state
*tf
, treemple stmt
, tree label
,
600 treemple temp
, new_stmt
;
605 /* Computed and non-local gotos do not get processed. Given
606 their nature we can neither tell whether we've escaped the
607 finally block nor redirect them if we knew. */
608 if (TREE_CODE (label
) != LABEL_DECL
)
611 /* No need to record gotos that don't leave the try block. */
613 if (!outside_finally_tree (temp
, tf
->try_finally_expr
))
616 if (! tf
->dest_array
)
618 tf
->dest_array
= VEC_alloc (tree
, heap
, 10);
619 VEC_quick_push (tree
, tf
->dest_array
, label
);
624 int n
= VEC_length (tree
, tf
->dest_array
);
625 for (index
= 0; index
< n
; ++index
)
626 if (VEC_index (tree
, tf
->dest_array
, index
) == label
)
629 VEC_safe_push (tree
, heap
, tf
->dest_array
, label
);
632 /* In the case of a GOTO we want to record the destination label,
633 since with a GIMPLE_COND we have an easy access to the then/else
636 record_in_goto_queue (tf
, new_stmt
, index
, true, location
);
639 /* For any GIMPLE_GOTO or GIMPLE_RETURN, decide whether it leaves a try_finally
640 node, and if so record that fact in the goto queue associated with that
644 maybe_record_in_goto_queue (struct leh_state
*state
, gimple stmt
)
646 struct leh_tf_state
*tf
= state
->tf
;
652 switch (gimple_code (stmt
))
655 new_stmt
.tp
= gimple_op_ptr (stmt
, 2);
656 record_in_goto_queue_label (tf
, new_stmt
, gimple_cond_true_label (stmt
),
657 EXPR_LOCATION (*new_stmt
.tp
));
658 new_stmt
.tp
= gimple_op_ptr (stmt
, 3);
659 record_in_goto_queue_label (tf
, new_stmt
, gimple_cond_false_label (stmt
),
660 EXPR_LOCATION (*new_stmt
.tp
));
664 record_in_goto_queue_label (tf
, new_stmt
, gimple_goto_dest (stmt
),
665 gimple_location (stmt
));
669 tf
->may_return
= true;
671 record_in_goto_queue (tf
, new_stmt
, -1, false, gimple_location (stmt
));
680 #ifdef ENABLE_CHECKING
681 /* We do not process GIMPLE_SWITCHes for now. As long as the original source
682 was in fact structured, and we've not yet done jump threading, then none
683 of the labels will leave outer GIMPLE_TRY_FINALLY nodes. Verify this. */
686 verify_norecord_switch_expr (struct leh_state
*state
, gimple switch_expr
)
688 struct leh_tf_state
*tf
= state
->tf
;
694 n
= gimple_switch_num_labels (switch_expr
);
696 for (i
= 0; i
< n
; ++i
)
699 tree lab
= CASE_LABEL (gimple_switch_label (switch_expr
, i
));
701 gcc_assert (!outside_finally_tree (temp
, tf
->try_finally_expr
));
705 #define verify_norecord_switch_expr(state, switch_expr)
708 /* Redirect a RETURN_EXPR pointed to by Q to FINLAB. If MOD is
709 non-null, insert it before the new branch. */
712 do_return_redirection (struct goto_queue_node
*q
, tree finlab
, gimple_seq mod
)
716 /* In the case of a return, the queue node must be a gimple statement. */
717 gcc_assert (!q
->is_label
);
719 /* Note that the return value may have already been computed, e.g.,
732 should return 0, not 1. We don't have to do anything to make
733 this happens because the return value has been placed in the
734 RESULT_DECL already. */
736 q
->cont_stmt
= q
->stmt
.g
;
739 gimple_seq_add_seq (&q
->repl_stmt
, mod
);
741 x
= gimple_build_goto (finlab
);
742 gimple_seq_add_stmt (&q
->repl_stmt
, x
);
745 /* Similar, but easier, for GIMPLE_GOTO. */
748 do_goto_redirection (struct goto_queue_node
*q
, tree finlab
, gimple_seq mod
,
749 struct leh_tf_state
*tf
)
753 gcc_assert (q
->is_label
);
755 q
->cont_stmt
= gimple_build_goto (VEC_index (tree
, tf
->dest_array
, q
->index
));
758 gimple_seq_add_seq (&q
->repl_stmt
, mod
);
760 x
= gimple_build_goto (finlab
);
761 gimple_seq_add_stmt (&q
->repl_stmt
, x
);
764 /* Emit a standard landing pad sequence into SEQ for REGION. */
767 emit_post_landing_pad (gimple_seq
*seq
, eh_region region
)
769 eh_landing_pad lp
= region
->landing_pads
;
773 lp
= gen_eh_landing_pad (region
);
775 lp
->post_landing_pad
= create_artificial_label (UNKNOWN_LOCATION
);
776 EH_LANDING_PAD_NR (lp
->post_landing_pad
) = lp
->index
;
778 x
= gimple_build_label (lp
->post_landing_pad
);
779 gimple_seq_add_stmt (seq
, x
);
782 /* Emit a RESX statement into SEQ for REGION. */
785 emit_resx (gimple_seq
*seq
, eh_region region
)
787 gimple x
= gimple_build_resx (region
->index
);
788 gimple_seq_add_stmt (seq
, x
);
790 record_stmt_eh_region (region
->outer
, x
);
793 /* Emit an EH_DISPATCH statement into SEQ for REGION. */
796 emit_eh_dispatch (gimple_seq
*seq
, eh_region region
)
798 gimple x
= gimple_build_eh_dispatch (region
->index
);
799 gimple_seq_add_stmt (seq
, x
);
802 /* Note that the current EH region may contain a throw, or a
803 call to a function which itself may contain a throw. */
806 note_eh_region_may_contain_throw (eh_region region
)
808 while (bitmap_set_bit (eh_region_may_contain_throw_map
, region
->index
))
810 if (region
->type
== ERT_MUST_NOT_THROW
)
812 region
= region
->outer
;
818 /* Check if REGION has been marked as containing a throw. If REGION is
819 NULL, this predicate is false. */
822 eh_region_may_contain_throw (eh_region r
)
824 return r
&& bitmap_bit_p (eh_region_may_contain_throw_map
, r
->index
);
827 /* We want to transform
828 try { body; } catch { stuff; }
838 TP is a GIMPLE_TRY node. REGION is the region whose post_landing_pad
839 should be placed before the second operand, or NULL. OVER is
840 an existing label that should be put at the exit, or NULL. */
843 frob_into_branch_around (gimple tp
, eh_region region
, tree over
)
846 gimple_seq cleanup
, result
;
847 location_t loc
= gimple_location (tp
);
849 cleanup
= gimple_try_cleanup (tp
);
850 result
= gimple_try_eval (tp
);
853 emit_post_landing_pad (&eh_seq
, region
);
855 if (gimple_seq_may_fallthru (cleanup
))
858 over
= create_artificial_label (loc
);
859 x
= gimple_build_goto (over
);
860 gimple_seq_add_stmt (&cleanup
, x
);
862 gimple_seq_add_seq (&eh_seq
, cleanup
);
866 x
= gimple_build_label (over
);
867 gimple_seq_add_stmt (&result
, x
);
872 /* A subroutine of lower_try_finally. Duplicate the tree rooted at T.
873 Make sure to record all new labels found. */
876 lower_try_finally_dup_block (gimple_seq seq
, struct leh_state
*outer_state
,
879 gimple region
= NULL
;
881 gimple_stmt_iterator gsi
;
883 new_seq
= copy_gimple_seq_and_replace_locals (seq
);
885 for (gsi
= gsi_start (new_seq
); !gsi_end_p (gsi
); gsi_next (&gsi
))
887 gimple stmt
= gsi_stmt (gsi
);
888 if (LOCATION_LOCUS (gimple_location (stmt
)) == UNKNOWN_LOCATION
)
890 tree block
= gimple_block (stmt
);
891 gimple_set_location (stmt
, loc
);
892 gimple_set_block (stmt
, block
);
897 region
= outer_state
->tf
->try_finally_expr
;
898 collect_finally_tree_1 (new_seq
, region
);
903 /* A subroutine of lower_try_finally. Create a fallthru label for
904 the given try_finally state. The only tricky bit here is that
905 we have to make sure to record the label in our outer context. */
908 lower_try_finally_fallthru_label (struct leh_tf_state
*tf
)
910 tree label
= tf
->fallthru_label
;
915 label
= create_artificial_label (gimple_location (tf
->try_finally_expr
));
916 tf
->fallthru_label
= label
;
920 record_in_finally_tree (temp
, tf
->outer
->tf
->try_finally_expr
);
926 /* A subroutine of lower_try_finally. If FINALLY consits of a
927 GIMPLE_EH_ELSE node, return it. */
930 get_eh_else (gimple_seq finally
)
932 gimple x
= gimple_seq_first_stmt (finally
);
933 if (gimple_code (x
) == GIMPLE_EH_ELSE
)
935 gcc_assert (gimple_seq_singleton_p (finally
));
941 /* A subroutine of lower_try_finally. If the eh_protect_cleanup_actions
942 langhook returns non-null, then the language requires that the exception
943 path out of a try_finally be treated specially. To wit: the code within
944 the finally block may not itself throw an exception. We have two choices
945 here. First we can duplicate the finally block and wrap it in a
946 must_not_throw region. Second, we can generate code like
951 if (fintmp == eh_edge)
952 protect_cleanup_actions;
955 where "fintmp" is the temporary used in the switch statement generation
956 alternative considered below. For the nonce, we always choose the first
959 THIS_STATE may be null if this is a try-cleanup, not a try-finally. */
962 honor_protect_cleanup_actions (struct leh_state
*outer_state
,
963 struct leh_state
*this_state
,
964 struct leh_tf_state
*tf
)
966 tree protect_cleanup_actions
;
967 gimple_stmt_iterator gsi
;
968 bool finally_may_fallthru
;
972 /* First check for nothing to do. */
973 if (lang_hooks
.eh_protect_cleanup_actions
== NULL
)
975 protect_cleanup_actions
= lang_hooks
.eh_protect_cleanup_actions ();
976 if (protect_cleanup_actions
== NULL
)
979 finally
= gimple_try_cleanup (tf
->top_p
);
980 eh_else
= get_eh_else (finally
);
982 /* Duplicate the FINALLY block. Only need to do this for try-finally,
983 and not for cleanups. If we've got an EH_ELSE, extract it now. */
986 finally
= gimple_eh_else_e_body (eh_else
);
987 gimple_try_set_cleanup (tf
->top_p
, gimple_eh_else_n_body (eh_else
));
990 finally
= lower_try_finally_dup_block (finally
, outer_state
,
991 gimple_location (tf
->try_finally_expr
));
992 finally_may_fallthru
= gimple_seq_may_fallthru (finally
);
994 /* If this cleanup consists of a TRY_CATCH_EXPR with TRY_CATCH_IS_CLEANUP
995 set, the handler of the TRY_CATCH_EXPR is another cleanup which ought
996 to be in an enclosing scope, but needs to be implemented at this level
997 to avoid a nesting violation (see wrap_temporary_cleanups in
998 cp/decl.c). Since it's logically at an outer level, we should call
999 terminate before we get to it, so strip it away before adding the
1000 MUST_NOT_THROW filter. */
1001 gsi
= gsi_start (finally
);
1003 if (gimple_code (x
) == GIMPLE_TRY
1004 && gimple_try_kind (x
) == GIMPLE_TRY_CATCH
1005 && gimple_try_catch_is_cleanup (x
))
1007 gsi_insert_seq_before (&gsi
, gimple_try_eval (x
), GSI_SAME_STMT
);
1008 gsi_remove (&gsi
, false);
1011 /* Wrap the block with protect_cleanup_actions as the action. */
1012 x
= gimple_build_eh_must_not_throw (protect_cleanup_actions
);
1013 x
= gimple_build_try (finally
, gimple_seq_alloc_with_stmt (x
),
1015 finally
= lower_eh_must_not_throw (outer_state
, x
);
1017 /* Drop all of this into the exception sequence. */
1018 emit_post_landing_pad (&eh_seq
, tf
->region
);
1019 gimple_seq_add_seq (&eh_seq
, finally
);
1020 if (finally_may_fallthru
)
1021 emit_resx (&eh_seq
, tf
->region
);
1023 /* Having now been handled, EH isn't to be considered with
1024 the rest of the outgoing edges. */
1025 tf
->may_throw
= false;
1028 /* A subroutine of lower_try_finally. We have determined that there is
1029 no fallthru edge out of the finally block. This means that there is
1030 no outgoing edge corresponding to any incoming edge. Restructure the
1031 try_finally node for this special case. */
1034 lower_try_finally_nofallthru (struct leh_state
*state
,
1035 struct leh_tf_state
*tf
)
1040 struct goto_queue_node
*q
, *qe
;
1042 lab
= create_artificial_label (gimple_location (tf
->try_finally_expr
));
1044 /* We expect that tf->top_p is a GIMPLE_TRY. */
1045 finally
= gimple_try_cleanup (tf
->top_p
);
1046 tf
->top_p_seq
= gimple_try_eval (tf
->top_p
);
1048 x
= gimple_build_label (lab
);
1049 gimple_seq_add_stmt (&tf
->top_p_seq
, x
);
1052 qe
= q
+ tf
->goto_queue_active
;
1055 do_return_redirection (q
, lab
, NULL
);
1057 do_goto_redirection (q
, lab
, NULL
, tf
);
1059 replace_goto_queue (tf
);
1061 /* Emit the finally block into the stream. Lower EH_ELSE at this time. */
1062 eh_else
= get_eh_else (finally
);
1065 finally
= gimple_eh_else_n_body (eh_else
);
1066 lower_eh_constructs_1 (state
, &finally
);
1067 gimple_seq_add_seq (&tf
->top_p_seq
, finally
);
1071 finally
= gimple_eh_else_e_body (eh_else
);
1072 lower_eh_constructs_1 (state
, &finally
);
1074 emit_post_landing_pad (&eh_seq
, tf
->region
);
1075 gimple_seq_add_seq (&eh_seq
, finally
);
1080 lower_eh_constructs_1 (state
, &finally
);
1081 gimple_seq_add_seq (&tf
->top_p_seq
, finally
);
1085 emit_post_landing_pad (&eh_seq
, tf
->region
);
1087 x
= gimple_build_goto (lab
);
1088 gimple_seq_add_stmt (&eh_seq
, x
);
1093 /* A subroutine of lower_try_finally. We have determined that there is
1094 exactly one destination of the finally block. Restructure the
1095 try_finally node for this special case. */
1098 lower_try_finally_onedest (struct leh_state
*state
, struct leh_tf_state
*tf
)
1100 struct goto_queue_node
*q
, *qe
;
1104 location_t loc
= gimple_location (tf
->try_finally_expr
);
1106 finally
= gimple_try_cleanup (tf
->top_p
);
1107 tf
->top_p_seq
= gimple_try_eval (tf
->top_p
);
1109 /* Since there's only one destination, and the destination edge can only
1110 either be EH or non-EH, that implies that all of our incoming edges
1111 are of the same type. Therefore we can lower EH_ELSE immediately. */
1112 x
= get_eh_else (finally
);
1116 finally
= gimple_eh_else_e_body (x
);
1118 finally
= gimple_eh_else_n_body (x
);
1121 lower_eh_constructs_1 (state
, &finally
);
1125 /* Only reachable via the exception edge. Add the given label to
1126 the head of the FINALLY block. Append a RESX at the end. */
1127 emit_post_landing_pad (&eh_seq
, tf
->region
);
1128 gimple_seq_add_seq (&eh_seq
, finally
);
1129 emit_resx (&eh_seq
, tf
->region
);
1133 if (tf
->may_fallthru
)
1135 /* Only reachable via the fallthru edge. Do nothing but let
1136 the two blocks run together; we'll fall out the bottom. */
1137 gimple_seq_add_seq (&tf
->top_p_seq
, finally
);
1141 finally_label
= create_artificial_label (loc
);
1142 x
= gimple_build_label (finally_label
);
1143 gimple_seq_add_stmt (&tf
->top_p_seq
, x
);
1145 gimple_seq_add_seq (&tf
->top_p_seq
, finally
);
1148 qe
= q
+ tf
->goto_queue_active
;
1152 /* Reachable by return expressions only. Redirect them. */
1154 do_return_redirection (q
, finally_label
, NULL
);
1155 replace_goto_queue (tf
);
1159 /* Reachable by goto expressions only. Redirect them. */
1161 do_goto_redirection (q
, finally_label
, NULL
, tf
);
1162 replace_goto_queue (tf
);
1164 if (VEC_index (tree
, tf
->dest_array
, 0) == tf
->fallthru_label
)
1166 /* Reachable by goto to fallthru label only. Redirect it
1167 to the new label (already created, sadly), and do not
1168 emit the final branch out, or the fallthru label. */
1169 tf
->fallthru_label
= NULL
;
1174 /* Place the original return/goto to the original destination
1175 immediately after the finally block. */
1176 x
= tf
->goto_queue
[0].cont_stmt
;
1177 gimple_seq_add_stmt (&tf
->top_p_seq
, x
);
1178 maybe_record_in_goto_queue (state
, x
);
1181 /* A subroutine of lower_try_finally. There are multiple edges incoming
1182 and outgoing from the finally block. Implement this by duplicating the
1183 finally block for every destination. */
1186 lower_try_finally_copy (struct leh_state
*state
, struct leh_tf_state
*tf
)
1189 gimple_seq new_stmt
;
1193 location_t tf_loc
= gimple_location (tf
->try_finally_expr
);
1195 finally
= gimple_try_cleanup (tf
->top_p
);
1197 /* Notice EH_ELSE, and simplify some of the remaining code
1198 by considering FINALLY to be the normal return path only. */
1199 eh_else
= get_eh_else (finally
);
1201 finally
= gimple_eh_else_n_body (eh_else
);
1203 tf
->top_p_seq
= gimple_try_eval (tf
->top_p
);
1206 if (tf
->may_fallthru
)
1208 seq
= lower_try_finally_dup_block (finally
, state
, tf_loc
);
1209 lower_eh_constructs_1 (state
, &seq
);
1210 gimple_seq_add_seq (&new_stmt
, seq
);
1212 tmp
= lower_try_finally_fallthru_label (tf
);
1213 x
= gimple_build_goto (tmp
);
1214 gimple_seq_add_stmt (&new_stmt
, x
);
1219 /* We don't need to copy the EH path of EH_ELSE,
1220 since it is only emitted once. */
1222 seq
= gimple_eh_else_e_body (eh_else
);
1224 seq
= lower_try_finally_dup_block (finally
, state
, tf_loc
);
1225 lower_eh_constructs_1 (state
, &seq
);
1227 emit_post_landing_pad (&eh_seq
, tf
->region
);
1228 gimple_seq_add_seq (&eh_seq
, seq
);
1229 emit_resx (&eh_seq
, tf
->region
);
1234 struct goto_queue_node
*q
, *qe
;
1235 int return_index
, index
;
1238 struct goto_queue_node
*q
;
1242 return_index
= VEC_length (tree
, tf
->dest_array
);
1243 labels
= XCNEWVEC (struct labels_s
, return_index
+ 1);
1246 qe
= q
+ tf
->goto_queue_active
;
1249 index
= q
->index
< 0 ? return_index
: q
->index
;
1251 if (!labels
[index
].q
)
1252 labels
[index
].q
= q
;
1255 for (index
= 0; index
< return_index
+ 1; index
++)
1259 q
= labels
[index
].q
;
1263 lab
= labels
[index
].label
1264 = create_artificial_label (tf_loc
);
1266 if (index
== return_index
)
1267 do_return_redirection (q
, lab
, NULL
);
1269 do_goto_redirection (q
, lab
, NULL
, tf
);
1271 x
= gimple_build_label (lab
);
1272 gimple_seq_add_stmt (&new_stmt
, x
);
1274 seq
= lower_try_finally_dup_block (finally
, state
, q
->location
);
1275 lower_eh_constructs_1 (state
, &seq
);
1276 gimple_seq_add_seq (&new_stmt
, seq
);
1278 gimple_seq_add_stmt (&new_stmt
, q
->cont_stmt
);
1279 maybe_record_in_goto_queue (state
, q
->cont_stmt
);
1282 for (q
= tf
->goto_queue
; q
< qe
; q
++)
1286 index
= q
->index
< 0 ? return_index
: q
->index
;
1288 if (labels
[index
].q
== q
)
1291 lab
= labels
[index
].label
;
1293 if (index
== return_index
)
1294 do_return_redirection (q
, lab
, NULL
);
1296 do_goto_redirection (q
, lab
, NULL
, tf
);
1299 replace_goto_queue (tf
);
1303 /* Need to link new stmts after running replace_goto_queue due
1304 to not wanting to process the same goto stmts twice. */
1305 gimple_seq_add_seq (&tf
->top_p_seq
, new_stmt
);
1308 /* A subroutine of lower_try_finally. There are multiple edges incoming
1309 and outgoing from the finally block. Implement this by instrumenting
1310 each incoming edge and creating a switch statement at the end of the
1311 finally block that branches to the appropriate destination. */
1314 lower_try_finally_switch (struct leh_state
*state
, struct leh_tf_state
*tf
)
1316 struct goto_queue_node
*q
, *qe
;
1317 tree finally_tmp
, finally_label
;
1318 int return_index
, eh_index
, fallthru_index
;
1319 int nlabels
, ndests
, j
, last_case_index
;
1321 VEC (tree
,heap
) *case_label_vec
;
1322 gimple_seq switch_body
= NULL
;
1327 struct pointer_map_t
*cont_map
= NULL
;
1328 /* The location of the TRY_FINALLY stmt. */
1329 location_t tf_loc
= gimple_location (tf
->try_finally_expr
);
1330 /* The location of the finally block. */
1331 location_t finally_loc
;
1333 finally
= gimple_try_cleanup (tf
->top_p
);
1334 eh_else
= get_eh_else (finally
);
1336 /* Mash the TRY block to the head of the chain. */
1337 tf
->top_p_seq
= gimple_try_eval (tf
->top_p
);
1339 /* The location of the finally is either the last stmt in the finally
1340 block or the location of the TRY_FINALLY itself. */
1341 x
= gimple_seq_last_stmt (finally
);
1342 finally_loc
= x
? gimple_location (x
) : tf_loc
;
1344 /* Lower the finally block itself. */
1345 lower_eh_constructs_1 (state
, &finally
);
1347 /* Prepare for switch statement generation. */
1348 nlabels
= VEC_length (tree
, tf
->dest_array
);
1349 return_index
= nlabels
;
1350 eh_index
= return_index
+ tf
->may_return
;
1351 fallthru_index
= eh_index
+ (tf
->may_throw
&& !eh_else
);
1352 ndests
= fallthru_index
+ tf
->may_fallthru
;
1354 finally_tmp
= create_tmp_var (integer_type_node
, "finally_tmp");
1355 finally_label
= create_artificial_label (finally_loc
);
1357 /* We use VEC_quick_push on case_label_vec throughout this function,
1358 since we know the size in advance and allocate precisely as muce
1360 case_label_vec
= VEC_alloc (tree
, heap
, ndests
);
1362 last_case_index
= 0;
1364 /* Begin inserting code for getting to the finally block. Things
1365 are done in this order to correspond to the sequence the code is
1368 if (tf
->may_fallthru
)
1370 x
= gimple_build_assign (finally_tmp
,
1371 build_int_cst (integer_type_node
,
1373 gimple_seq_add_stmt (&tf
->top_p_seq
, x
);
1375 tmp
= build_int_cst (integer_type_node
, fallthru_index
);
1376 last_case
= build_case_label (tmp
, NULL
,
1377 create_artificial_label (tf_loc
));
1378 VEC_quick_push (tree
, case_label_vec
, last_case
);
1381 x
= gimple_build_label (CASE_LABEL (last_case
));
1382 gimple_seq_add_stmt (&switch_body
, x
);
1384 tmp
= lower_try_finally_fallthru_label (tf
);
1385 x
= gimple_build_goto (tmp
);
1386 gimple_seq_add_stmt (&switch_body
, x
);
1389 /* For EH_ELSE, emit the exception path (plus resx) now, then
1390 subsequently we only need consider the normal path. */
1395 finally
= gimple_eh_else_e_body (eh_else
);
1396 lower_eh_constructs_1 (state
, &finally
);
1398 emit_post_landing_pad (&eh_seq
, tf
->region
);
1399 gimple_seq_add_seq (&eh_seq
, finally
);
1400 emit_resx (&eh_seq
, tf
->region
);
1403 finally
= gimple_eh_else_n_body (eh_else
);
1405 else if (tf
->may_throw
)
1407 emit_post_landing_pad (&eh_seq
, tf
->region
);
1409 x
= gimple_build_assign (finally_tmp
,
1410 build_int_cst (integer_type_node
, eh_index
));
1411 gimple_seq_add_stmt (&eh_seq
, x
);
1413 x
= gimple_build_goto (finally_label
);
1414 gimple_seq_add_stmt (&eh_seq
, x
);
1416 tmp
= build_int_cst (integer_type_node
, eh_index
);
1417 last_case
= build_case_label (tmp
, NULL
,
1418 create_artificial_label (tf_loc
));
1419 VEC_quick_push (tree
, case_label_vec
, last_case
);
1422 x
= gimple_build_label (CASE_LABEL (last_case
));
1423 gimple_seq_add_stmt (&eh_seq
, x
);
1424 emit_resx (&eh_seq
, tf
->region
);
1427 x
= gimple_build_label (finally_label
);
1428 gimple_seq_add_stmt (&tf
->top_p_seq
, x
);
1430 gimple_seq_add_seq (&tf
->top_p_seq
, finally
);
1432 /* Redirect each incoming goto edge. */
1434 qe
= q
+ tf
->goto_queue_active
;
1435 j
= last_case_index
+ tf
->may_return
;
1436 /* Prepare the assignments to finally_tmp that are executed upon the
1437 entrance through a particular edge. */
1440 gimple_seq mod
= NULL
;
1442 unsigned int case_index
;
1446 x
= gimple_build_assign (finally_tmp
,
1447 build_int_cst (integer_type_node
,
1449 gimple_seq_add_stmt (&mod
, x
);
1450 do_return_redirection (q
, finally_label
, mod
);
1451 switch_id
= return_index
;
1455 x
= gimple_build_assign (finally_tmp
,
1456 build_int_cst (integer_type_node
, q
->index
));
1457 gimple_seq_add_stmt (&mod
, x
);
1458 do_goto_redirection (q
, finally_label
, mod
, tf
);
1459 switch_id
= q
->index
;
1462 case_index
= j
+ q
->index
;
1463 if (VEC_length (tree
, case_label_vec
) <= case_index
1464 || !VEC_index (tree
, case_label_vec
, case_index
))
1468 tmp
= build_int_cst (integer_type_node
, switch_id
);
1469 case_lab
= build_case_label (tmp
, NULL
,
1470 create_artificial_label (tf_loc
));
1471 /* We store the cont_stmt in the pointer map, so that we can recover
1472 it in the loop below. */
1474 cont_map
= pointer_map_create ();
1475 slot
= pointer_map_insert (cont_map
, case_lab
);
1476 *slot
= q
->cont_stmt
;
1477 VEC_quick_push (tree
, case_label_vec
, case_lab
);
1480 for (j
= last_case_index
; j
< last_case_index
+ nlabels
; j
++)
1485 last_case
= VEC_index (tree
, case_label_vec
, j
);
1487 gcc_assert (last_case
);
1488 gcc_assert (cont_map
);
1490 slot
= pointer_map_contains (cont_map
, last_case
);
1492 cont_stmt
= *(gimple
*) slot
;
1494 x
= gimple_build_label (CASE_LABEL (last_case
));
1495 gimple_seq_add_stmt (&switch_body
, x
);
1496 gimple_seq_add_stmt (&switch_body
, cont_stmt
);
1497 maybe_record_in_goto_queue (state
, cont_stmt
);
1500 pointer_map_destroy (cont_map
);
1502 replace_goto_queue (tf
);
1504 /* Make sure that the last case is the default label, as one is required.
1505 Then sort the labels, which is also required in GIMPLE. */
1506 CASE_LOW (last_case
) = NULL
;
1507 sort_case_labels (case_label_vec
);
1509 /* Build the switch statement, setting last_case to be the default
1511 switch_stmt
= gimple_build_switch (finally_tmp
, last_case
,
1513 gimple_set_location (switch_stmt
, finally_loc
);
1515 /* Need to link SWITCH_STMT after running replace_goto_queue
1516 due to not wanting to process the same goto stmts twice. */
1517 gimple_seq_add_stmt (&tf
->top_p_seq
, switch_stmt
);
1518 gimple_seq_add_seq (&tf
->top_p_seq
, switch_body
);
1521 /* Decide whether or not we are going to duplicate the finally block.
1522 There are several considerations.
1524 First, if this is Java, then the finally block contains code
1525 written by the user. It has line numbers associated with it,
1526 so duplicating the block means it's difficult to set a breakpoint.
1527 Since controlling code generation via -g is verboten, we simply
1528 never duplicate code without optimization.
1530 Second, we'd like to prevent egregious code growth. One way to
1531 do this is to estimate the size of the finally block, multiply
1532 that by the number of copies we'd need to make, and compare against
1533 the estimate of the size of the switch machinery we'd have to add. */
1536 decide_copy_try_finally (int ndests
, bool may_throw
, gimple_seq finally
)
1538 int f_estimate
, sw_estimate
;
1541 /* If there's an EH_ELSE involved, the exception path is separate
1542 and really doesn't come into play for this computation. */
1543 eh_else
= get_eh_else (finally
);
1546 ndests
-= may_throw
;
1547 finally
= gimple_eh_else_n_body (eh_else
);
1552 gimple_stmt_iterator gsi
;
1557 for (gsi
= gsi_start (finally
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1559 gimple stmt
= gsi_stmt (gsi
);
1560 if (!is_gimple_debug (stmt
) && !gimple_clobber_p (stmt
))
1566 /* Finally estimate N times, plus N gotos. */
1567 f_estimate
= count_insns_seq (finally
, &eni_size_weights
);
1568 f_estimate
= (f_estimate
+ 1) * ndests
;
1570 /* Switch statement (cost 10), N variable assignments, N gotos. */
1571 sw_estimate
= 10 + 2 * ndests
;
1573 /* Optimize for size clearly wants our best guess. */
1574 if (optimize_function_for_size_p (cfun
))
1575 return f_estimate
< sw_estimate
;
1577 /* ??? These numbers are completely made up so far. */
1579 return f_estimate
< 100 || f_estimate
< sw_estimate
* 2;
1581 return f_estimate
< 40 || f_estimate
* 2 < sw_estimate
* 3;
1584 /* REG is the enclosing region for a possible cleanup region, or the region
1585 itself. Returns TRUE if such a region would be unreachable.
1587 Cleanup regions within a must-not-throw region aren't actually reachable
1588 even if there are throwing stmts within them, because the personality
1589 routine will call terminate before unwinding. */
1592 cleanup_is_dead_in (eh_region reg
)
1594 while (reg
&& reg
->type
== ERT_CLEANUP
)
1596 return (reg
&& reg
->type
== ERT_MUST_NOT_THROW
);
1599 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY_FINALLY nodes
1600 to a sequence of labels and blocks, plus the exception region trees
1601 that record all the magic. This is complicated by the need to
1602 arrange for the FINALLY block to be executed on all exits. */
1605 lower_try_finally (struct leh_state
*state
, gimple tp
)
1607 struct leh_tf_state this_tf
;
1608 struct leh_state this_state
;
1610 gimple_seq old_eh_seq
;
1612 /* Process the try block. */
1614 memset (&this_tf
, 0, sizeof (this_tf
));
1615 this_tf
.try_finally_expr
= tp
;
1617 this_tf
.outer
= state
;
1618 if (using_eh_for_cleanups_p
&& !cleanup_is_dead_in (state
->cur_region
))
1620 this_tf
.region
= gen_eh_region_cleanup (state
->cur_region
);
1621 this_state
.cur_region
= this_tf
.region
;
1625 this_tf
.region
= NULL
;
1626 this_state
.cur_region
= state
->cur_region
;
1629 this_state
.ehp_region
= state
->ehp_region
;
1630 this_state
.tf
= &this_tf
;
1632 old_eh_seq
= eh_seq
;
1635 lower_eh_constructs_1 (&this_state
, gimple_try_eval_ptr (tp
));
1637 /* Determine if the try block is escaped through the bottom. */
1638 this_tf
.may_fallthru
= gimple_seq_may_fallthru (gimple_try_eval (tp
));
1640 /* Determine if any exceptions are possible within the try block. */
1642 this_tf
.may_throw
= eh_region_may_contain_throw (this_tf
.region
);
1643 if (this_tf
.may_throw
)
1644 honor_protect_cleanup_actions (state
, &this_state
, &this_tf
);
1646 /* Determine how many edges (still) reach the finally block. Or rather,
1647 how many destinations are reached by the finally block. Use this to
1648 determine how we process the finally block itself. */
1650 ndests
= VEC_length (tree
, this_tf
.dest_array
);
1651 ndests
+= this_tf
.may_fallthru
;
1652 ndests
+= this_tf
.may_return
;
1653 ndests
+= this_tf
.may_throw
;
1655 /* If the FINALLY block is not reachable, dike it out. */
1658 gimple_seq_add_seq (&this_tf
.top_p_seq
, gimple_try_eval (tp
));
1659 gimple_try_set_cleanup (tp
, NULL
);
1661 /* If the finally block doesn't fall through, then any destination
1662 we might try to impose there isn't reached either. There may be
1663 some minor amount of cleanup and redirection still needed. */
1664 else if (!gimple_seq_may_fallthru (gimple_try_cleanup (tp
)))
1665 lower_try_finally_nofallthru (state
, &this_tf
);
1667 /* We can easily special-case redirection to a single destination. */
1668 else if (ndests
== 1)
1669 lower_try_finally_onedest (state
, &this_tf
);
1670 else if (decide_copy_try_finally (ndests
, this_tf
.may_throw
,
1671 gimple_try_cleanup (tp
)))
1672 lower_try_finally_copy (state
, &this_tf
);
1674 lower_try_finally_switch (state
, &this_tf
);
1676 /* If someone requested we add a label at the end of the transformed
1678 if (this_tf
.fallthru_label
)
1680 /* This must be reached only if ndests == 0. */
1681 gimple x
= gimple_build_label (this_tf
.fallthru_label
);
1682 gimple_seq_add_stmt (&this_tf
.top_p_seq
, x
);
1685 VEC_free (tree
, heap
, this_tf
.dest_array
);
1686 free (this_tf
.goto_queue
);
1687 if (this_tf
.goto_queue_map
)
1688 pointer_map_destroy (this_tf
.goto_queue_map
);
1690 /* If there was an old (aka outer) eh_seq, append the current eh_seq.
1691 If there was no old eh_seq, then the append is trivially already done. */
1695 eh_seq
= old_eh_seq
;
1698 gimple_seq new_eh_seq
= eh_seq
;
1699 eh_seq
= old_eh_seq
;
1700 gimple_seq_add_seq(&eh_seq
, new_eh_seq
);
1704 return this_tf
.top_p_seq
;
1707 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY_CATCH with a
1708 list of GIMPLE_CATCH to a sequence of labels and blocks, plus the
1709 exception region trees that records all the magic. */
1712 lower_catch (struct leh_state
*state
, gimple tp
)
1714 eh_region try_region
= NULL
;
1715 struct leh_state this_state
= *state
;
1716 gimple_stmt_iterator gsi
;
1718 gimple_seq new_seq
, cleanup
;
1720 location_t try_catch_loc
= gimple_location (tp
);
1722 if (flag_exceptions
)
1724 try_region
= gen_eh_region_try (state
->cur_region
);
1725 this_state
.cur_region
= try_region
;
1728 lower_eh_constructs_1 (&this_state
, gimple_try_eval_ptr (tp
));
1730 if (!eh_region_may_contain_throw (try_region
))
1731 return gimple_try_eval (tp
);
1734 emit_eh_dispatch (&new_seq
, try_region
);
1735 emit_resx (&new_seq
, try_region
);
1737 this_state
.cur_region
= state
->cur_region
;
1738 this_state
.ehp_region
= try_region
;
1741 cleanup
= gimple_try_cleanup (tp
);
1742 for (gsi
= gsi_start (cleanup
);
1750 gcatch
= gsi_stmt (gsi
);
1751 c
= gen_eh_region_catch (try_region
, gimple_catch_types (gcatch
));
1753 handler
= gimple_catch_handler (gcatch
);
1754 lower_eh_constructs_1 (&this_state
, &handler
);
1756 c
->label
= create_artificial_label (UNKNOWN_LOCATION
);
1757 x
= gimple_build_label (c
->label
);
1758 gimple_seq_add_stmt (&new_seq
, x
);
1760 gimple_seq_add_seq (&new_seq
, handler
);
1762 if (gimple_seq_may_fallthru (new_seq
))
1765 out_label
= create_artificial_label (try_catch_loc
);
1767 x
= gimple_build_goto (out_label
);
1768 gimple_seq_add_stmt (&new_seq
, x
);
1774 gimple_try_set_cleanup (tp
, new_seq
);
1776 return frob_into_branch_around (tp
, try_region
, out_label
);
1779 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY with a
1780 GIMPLE_EH_FILTER to a sequence of labels and blocks, plus the exception
1781 region trees that record all the magic. */
1784 lower_eh_filter (struct leh_state
*state
, gimple tp
)
1786 struct leh_state this_state
= *state
;
1787 eh_region this_region
= NULL
;
1791 inner
= gimple_seq_first_stmt (gimple_try_cleanup (tp
));
1793 if (flag_exceptions
)
1795 this_region
= gen_eh_region_allowed (state
->cur_region
,
1796 gimple_eh_filter_types (inner
));
1797 this_state
.cur_region
= this_region
;
1800 lower_eh_constructs_1 (&this_state
, gimple_try_eval_ptr (tp
));
1802 if (!eh_region_may_contain_throw (this_region
))
1803 return gimple_try_eval (tp
);
1806 this_state
.cur_region
= state
->cur_region
;
1807 this_state
.ehp_region
= this_region
;
1809 emit_eh_dispatch (&new_seq
, this_region
);
1810 emit_resx (&new_seq
, this_region
);
1812 this_region
->u
.allowed
.label
= create_artificial_label (UNKNOWN_LOCATION
);
1813 x
= gimple_build_label (this_region
->u
.allowed
.label
);
1814 gimple_seq_add_stmt (&new_seq
, x
);
1816 lower_eh_constructs_1 (&this_state
, gimple_eh_filter_failure_ptr (inner
));
1817 gimple_seq_add_seq (&new_seq
, gimple_eh_filter_failure (inner
));
1819 gimple_try_set_cleanup (tp
, new_seq
);
1821 return frob_into_branch_around (tp
, this_region
, NULL
);
1824 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY with
1825 an GIMPLE_EH_MUST_NOT_THROW to a sequence of labels and blocks,
1826 plus the exception region trees that record all the magic. */
1829 lower_eh_must_not_throw (struct leh_state
*state
, gimple tp
)
1831 struct leh_state this_state
= *state
;
1833 if (flag_exceptions
)
1835 gimple inner
= gimple_seq_first_stmt (gimple_try_cleanup (tp
));
1836 eh_region this_region
;
1838 this_region
= gen_eh_region_must_not_throw (state
->cur_region
);
1839 this_region
->u
.must_not_throw
.failure_decl
1840 = gimple_eh_must_not_throw_fndecl (inner
);
1841 this_region
->u
.must_not_throw
.failure_loc
= gimple_location (tp
);
1843 /* In order to get mangling applied to this decl, we must mark it
1844 used now. Otherwise, pass_ipa_free_lang_data won't think it
1846 TREE_USED (this_region
->u
.must_not_throw
.failure_decl
) = 1;
1848 this_state
.cur_region
= this_region
;
1851 lower_eh_constructs_1 (&this_state
, gimple_try_eval_ptr (tp
));
1853 return gimple_try_eval (tp
);
1856 /* Implement a cleanup expression. This is similar to try-finally,
1857 except that we only execute the cleanup block for exception edges. */
1860 lower_cleanup (struct leh_state
*state
, gimple tp
)
1862 struct leh_state this_state
= *state
;
1863 eh_region this_region
= NULL
;
1864 struct leh_tf_state fake_tf
;
1866 bool cleanup_dead
= cleanup_is_dead_in (state
->cur_region
);
1868 if (flag_exceptions
&& !cleanup_dead
)
1870 this_region
= gen_eh_region_cleanup (state
->cur_region
);
1871 this_state
.cur_region
= this_region
;
1874 lower_eh_constructs_1 (&this_state
, gimple_try_eval_ptr (tp
));
1876 if (cleanup_dead
|| !eh_region_may_contain_throw (this_region
))
1877 return gimple_try_eval (tp
);
1879 /* Build enough of a try-finally state so that we can reuse
1880 honor_protect_cleanup_actions. */
1881 memset (&fake_tf
, 0, sizeof (fake_tf
));
1882 fake_tf
.top_p
= fake_tf
.try_finally_expr
= tp
;
1883 fake_tf
.outer
= state
;
1884 fake_tf
.region
= this_region
;
1885 fake_tf
.may_fallthru
= gimple_seq_may_fallthru (gimple_try_eval (tp
));
1886 fake_tf
.may_throw
= true;
1888 honor_protect_cleanup_actions (state
, NULL
, &fake_tf
);
1890 if (fake_tf
.may_throw
)
1892 /* In this case honor_protect_cleanup_actions had nothing to do,
1893 and we should process this normally. */
1894 lower_eh_constructs_1 (state
, gimple_try_cleanup_ptr (tp
));
1895 result
= frob_into_branch_around (tp
, this_region
,
1896 fake_tf
.fallthru_label
);
1900 /* In this case honor_protect_cleanup_actions did nearly all of
1901 the work. All we have left is to append the fallthru_label. */
1903 result
= gimple_try_eval (tp
);
1904 if (fake_tf
.fallthru_label
)
1906 gimple x
= gimple_build_label (fake_tf
.fallthru_label
);
1907 gimple_seq_add_stmt (&result
, x
);
1913 /* Main loop for lowering eh constructs. Also moves gsi to the next
1917 lower_eh_constructs_2 (struct leh_state
*state
, gimple_stmt_iterator
*gsi
)
1921 gimple stmt
= gsi_stmt (*gsi
);
1923 switch (gimple_code (stmt
))
1927 tree fndecl
= gimple_call_fndecl (stmt
);
1930 if (fndecl
&& DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_NORMAL
)
1931 switch (DECL_FUNCTION_CODE (fndecl
))
1933 case BUILT_IN_EH_POINTER
:
1934 /* The front end may have generated a call to
1935 __builtin_eh_pointer (0) within a catch region. Replace
1936 this zero argument with the current catch region number. */
1937 if (state
->ehp_region
)
1939 tree nr
= build_int_cst (integer_type_node
,
1940 state
->ehp_region
->index
);
1941 gimple_call_set_arg (stmt
, 0, nr
);
1945 /* The user has dome something silly. Remove it. */
1946 rhs
= null_pointer_node
;
1951 case BUILT_IN_EH_FILTER
:
1952 /* ??? This should never appear, but since it's a builtin it
1953 is accessible to abuse by users. Just remove it and
1954 replace the use with the arbitrary value zero. */
1955 rhs
= build_int_cst (TREE_TYPE (TREE_TYPE (fndecl
)), 0);
1957 lhs
= gimple_call_lhs (stmt
);
1958 x
= gimple_build_assign (lhs
, rhs
);
1959 gsi_insert_before (gsi
, x
, GSI_SAME_STMT
);
1962 case BUILT_IN_EH_COPY_VALUES
:
1963 /* Likewise this should not appear. Remove it. */
1964 gsi_remove (gsi
, true);
1974 /* If the stmt can throw use a new temporary for the assignment
1975 to a LHS. This makes sure the old value of the LHS is
1976 available on the EH edge. Only do so for statements that
1977 potentially fall through (no noreturn calls e.g.), otherwise
1978 this new assignment might create fake fallthru regions. */
1979 if (stmt_could_throw_p (stmt
)
1980 && gimple_has_lhs (stmt
)
1981 && gimple_stmt_may_fallthru (stmt
)
1982 && !tree_could_throw_p (gimple_get_lhs (stmt
))
1983 && is_gimple_reg_type (TREE_TYPE (gimple_get_lhs (stmt
))))
1985 tree lhs
= gimple_get_lhs (stmt
);
1986 tree tmp
= create_tmp_var (TREE_TYPE (lhs
), NULL
);
1987 gimple s
= gimple_build_assign (lhs
, tmp
);
1988 gimple_set_location (s
, gimple_location (stmt
));
1989 gimple_set_block (s
, gimple_block (stmt
));
1990 gimple_set_lhs (stmt
, tmp
);
1991 if (TREE_CODE (TREE_TYPE (tmp
)) == COMPLEX_TYPE
1992 || TREE_CODE (TREE_TYPE (tmp
)) == VECTOR_TYPE
)
1993 DECL_GIMPLE_REG_P (tmp
) = 1;
1994 gsi_insert_after (gsi
, s
, GSI_SAME_STMT
);
1996 /* Look for things that can throw exceptions, and record them. */
1997 if (state
->cur_region
&& stmt_could_throw_p (stmt
))
1999 record_stmt_eh_region (state
->cur_region
, stmt
);
2000 note_eh_region_may_contain_throw (state
->cur_region
);
2007 maybe_record_in_goto_queue (state
, stmt
);
2011 verify_norecord_switch_expr (state
, stmt
);
2015 if (gimple_try_kind (stmt
) == GIMPLE_TRY_FINALLY
)
2016 replace
= lower_try_finally (state
, stmt
);
2019 x
= gimple_seq_first_stmt (gimple_try_cleanup (stmt
));
2022 replace
= gimple_try_eval (stmt
);
2023 lower_eh_constructs_1 (state
, &replace
);
2026 switch (gimple_code (x
))
2029 replace
= lower_catch (state
, stmt
);
2031 case GIMPLE_EH_FILTER
:
2032 replace
= lower_eh_filter (state
, stmt
);
2034 case GIMPLE_EH_MUST_NOT_THROW
:
2035 replace
= lower_eh_must_not_throw (state
, stmt
);
2037 case GIMPLE_EH_ELSE
:
2038 /* This code is only valid with GIMPLE_TRY_FINALLY. */
2041 replace
= lower_cleanup (state
, stmt
);
2046 /* Remove the old stmt and insert the transformed sequence
2048 gsi_insert_seq_before (gsi
, replace
, GSI_SAME_STMT
);
2049 gsi_remove (gsi
, true);
2051 /* Return since we don't want gsi_next () */
2054 case GIMPLE_EH_ELSE
:
2055 /* We should be eliminating this in lower_try_finally et al. */
2059 /* A type, a decl, or some kind of statement that we're not
2060 interested in. Don't walk them. */
2067 /* A helper to unwrap a gimple_seq and feed stmts to lower_eh_constructs_2. */
2070 lower_eh_constructs_1 (struct leh_state
*state
, gimple_seq
*pseq
)
2072 gimple_stmt_iterator gsi
;
2073 for (gsi
= gsi_start (*pseq
); !gsi_end_p (gsi
);)
2074 lower_eh_constructs_2 (state
, &gsi
);
2078 lower_eh_constructs (void)
2080 struct leh_state null_state
;
2083 bodyp
= gimple_body (current_function_decl
);
2087 finally_tree
= htab_create (31, struct_ptr_hash
, struct_ptr_eq
, free
);
2088 eh_region_may_contain_throw_map
= BITMAP_ALLOC (NULL
);
2089 memset (&null_state
, 0, sizeof (null_state
));
2091 collect_finally_tree_1 (bodyp
, NULL
);
2092 lower_eh_constructs_1 (&null_state
, &bodyp
);
2093 gimple_set_body (current_function_decl
, bodyp
);
2095 /* We assume there's a return statement, or something, at the end of
2096 the function, and thus ploping the EH sequence afterward won't
2098 gcc_assert (!gimple_seq_may_fallthru (bodyp
));
2099 gimple_seq_add_seq (&bodyp
, eh_seq
);
2101 /* We assume that since BODYP already existed, adding EH_SEQ to it
2102 didn't change its value, and we don't have to re-set the function. */
2103 gcc_assert (bodyp
== gimple_body (current_function_decl
));
2105 htab_delete (finally_tree
);
2106 BITMAP_FREE (eh_region_may_contain_throw_map
);
2109 /* If this function needs a language specific EH personality routine
2110 and the frontend didn't already set one do so now. */
2111 if (function_needs_eh_personality (cfun
) == eh_personality_lang
2112 && !DECL_FUNCTION_PERSONALITY (current_function_decl
))
2113 DECL_FUNCTION_PERSONALITY (current_function_decl
)
2114 = lang_hooks
.eh_personality ();
2119 struct gimple_opt_pass pass_lower_eh
=
2125 lower_eh_constructs
, /* execute */
2128 0, /* static_pass_number */
2129 TV_TREE_EH
, /* tv_id */
2130 PROP_gimple_lcf
, /* properties_required */
2131 PROP_gimple_leh
, /* properties_provided */
2132 0, /* properties_destroyed */
2133 0, /* todo_flags_start */
2134 0 /* todo_flags_finish */
2138 /* Create the multiple edges from an EH_DISPATCH statement to all of
2139 the possible handlers for its EH region. Return true if there's
2140 no fallthru edge; false if there is. */
2143 make_eh_dispatch_edges (gimple stmt
)
2147 basic_block src
, dst
;
2149 r
= get_eh_region_from_number (gimple_eh_dispatch_region (stmt
));
2150 src
= gimple_bb (stmt
);
2155 for (c
= r
->u
.eh_try
.first_catch
; c
; c
= c
->next_catch
)
2157 dst
= label_to_block (c
->label
);
2158 make_edge (src
, dst
, 0);
2160 /* A catch-all handler doesn't have a fallthru. */
2161 if (c
->type_list
== NULL
)
2166 case ERT_ALLOWED_EXCEPTIONS
:
2167 dst
= label_to_block (r
->u
.allowed
.label
);
2168 make_edge (src
, dst
, 0);
2178 /* Create the single EH edge from STMT to its nearest landing pad,
2179 if there is such a landing pad within the current function. */
2182 make_eh_edges (gimple stmt
)
2184 basic_block src
, dst
;
2188 lp_nr
= lookup_stmt_eh_lp (stmt
);
2192 lp
= get_eh_landing_pad_from_number (lp_nr
);
2193 gcc_assert (lp
!= NULL
);
2195 src
= gimple_bb (stmt
);
2196 dst
= label_to_block (lp
->post_landing_pad
);
2197 make_edge (src
, dst
, EDGE_EH
);
2200 /* Do the work in redirecting EDGE_IN to NEW_BB within the EH region tree;
2201 do not actually perform the final edge redirection.
2203 CHANGE_REGION is true when we're being called from cleanup_empty_eh and
2204 we intend to change the destination EH region as well; this means
2205 EH_LANDING_PAD_NR must already be set on the destination block label.
2206 If false, we're being called from generic cfg manipulation code and we
2207 should preserve our place within the region tree. */
2210 redirect_eh_edge_1 (edge edge_in
, basic_block new_bb
, bool change_region
)
2212 eh_landing_pad old_lp
, new_lp
;
2215 int old_lp_nr
, new_lp_nr
;
2216 tree old_label
, new_label
;
2220 old_bb
= edge_in
->dest
;
2221 old_label
= gimple_block_label (old_bb
);
2222 old_lp_nr
= EH_LANDING_PAD_NR (old_label
);
2223 gcc_assert (old_lp_nr
> 0);
2224 old_lp
= get_eh_landing_pad_from_number (old_lp_nr
);
2226 throw_stmt
= last_stmt (edge_in
->src
);
2227 gcc_assert (lookup_stmt_eh_lp (throw_stmt
) == old_lp_nr
);
2229 new_label
= gimple_block_label (new_bb
);
2231 /* Look for an existing region that might be using NEW_BB already. */
2232 new_lp_nr
= EH_LANDING_PAD_NR (new_label
);
2235 new_lp
= get_eh_landing_pad_from_number (new_lp_nr
);
2236 gcc_assert (new_lp
);
2238 /* Unless CHANGE_REGION is true, the new and old landing pad
2239 had better be associated with the same EH region. */
2240 gcc_assert (change_region
|| new_lp
->region
== old_lp
->region
);
2245 gcc_assert (!change_region
);
2248 /* Notice when we redirect the last EH edge away from OLD_BB. */
2249 FOR_EACH_EDGE (e
, ei
, old_bb
->preds
)
2250 if (e
!= edge_in
&& (e
->flags
& EDGE_EH
))
2255 /* NEW_LP already exists. If there are still edges into OLD_LP,
2256 there's nothing to do with the EH tree. If there are no more
2257 edges into OLD_LP, then we want to remove OLD_LP as it is unused.
2258 If CHANGE_REGION is true, then our caller is expecting to remove
2260 if (e
== NULL
&& !change_region
)
2261 remove_eh_landing_pad (old_lp
);
2265 /* No correct landing pad exists. If there are no more edges
2266 into OLD_LP, then we can simply re-use the existing landing pad.
2267 Otherwise, we have to create a new landing pad. */
2270 EH_LANDING_PAD_NR (old_lp
->post_landing_pad
) = 0;
2274 new_lp
= gen_eh_landing_pad (old_lp
->region
);
2275 new_lp
->post_landing_pad
= new_label
;
2276 EH_LANDING_PAD_NR (new_label
) = new_lp
->index
;
2279 /* Maybe move the throwing statement to the new region. */
2280 if (old_lp
!= new_lp
)
2282 remove_stmt_from_eh_lp (throw_stmt
);
2283 add_stmt_to_eh_lp (throw_stmt
, new_lp
->index
);
2287 /* Redirect EH edge E to NEW_BB. */
2290 redirect_eh_edge (edge edge_in
, basic_block new_bb
)
2292 redirect_eh_edge_1 (edge_in
, new_bb
, false);
2293 return ssa_redirect_edge (edge_in
, new_bb
);
2296 /* This is a subroutine of gimple_redirect_edge_and_branch. Update the
2297 labels for redirecting a non-fallthru EH_DISPATCH edge E to NEW_BB.
2298 The actual edge update will happen in the caller. */
2301 redirect_eh_dispatch_edge (gimple stmt
, edge e
, basic_block new_bb
)
2303 tree new_lab
= gimple_block_label (new_bb
);
2304 bool any_changed
= false;
2309 r
= get_eh_region_from_number (gimple_eh_dispatch_region (stmt
));
2313 for (c
= r
->u
.eh_try
.first_catch
; c
; c
= c
->next_catch
)
2315 old_bb
= label_to_block (c
->label
);
2316 if (old_bb
== e
->dest
)
2324 case ERT_ALLOWED_EXCEPTIONS
:
2325 old_bb
= label_to_block (r
->u
.allowed
.label
);
2326 gcc_assert (old_bb
== e
->dest
);
2327 r
->u
.allowed
.label
= new_lab
;
2335 gcc_assert (any_changed
);
2338 /* Helper function for operation_could_trap_p and stmt_could_throw_p. */
2341 operation_could_trap_helper_p (enum tree_code op
,
2352 case TRUNC_DIV_EXPR
:
2354 case FLOOR_DIV_EXPR
:
2355 case ROUND_DIV_EXPR
:
2356 case EXACT_DIV_EXPR
:
2358 case FLOOR_MOD_EXPR
:
2359 case ROUND_MOD_EXPR
:
2360 case TRUNC_MOD_EXPR
:
2362 if (honor_snans
|| honor_trapv
)
2365 return flag_trapping_math
;
2366 if (!TREE_CONSTANT (divisor
) || integer_zerop (divisor
))
2375 /* Some floating point comparisons may trap. */
2380 case UNORDERED_EXPR
:
2390 case FIX_TRUNC_EXPR
:
2391 /* Conversion of floating point might trap. */
2397 /* These operations don't trap with floating point. */
2405 /* Any floating arithmetic may trap. */
2406 if (fp_operation
&& flag_trapping_math
)
2414 /* Constructing an object cannot trap. */
2418 /* Any floating arithmetic may trap. */
2419 if (fp_operation
&& flag_trapping_math
)
2427 /* Return true if operation OP may trap. FP_OPERATION is true if OP is applied
2428 on floating-point values. HONOR_TRAPV is true if OP is applied on integer
2429 type operands that may trap. If OP is a division operator, DIVISOR contains
2430 the value of the divisor. */
2433 operation_could_trap_p (enum tree_code op
, bool fp_operation
, bool honor_trapv
,
2436 bool honor_nans
= (fp_operation
&& flag_trapping_math
2437 && !flag_finite_math_only
);
2438 bool honor_snans
= fp_operation
&& flag_signaling_nans
!= 0;
2441 if (TREE_CODE_CLASS (op
) != tcc_comparison
2442 && TREE_CODE_CLASS (op
) != tcc_unary
2443 && TREE_CODE_CLASS (op
) != tcc_binary
)
2446 return operation_could_trap_helper_p (op
, fp_operation
, honor_trapv
,
2447 honor_nans
, honor_snans
, divisor
,
2451 /* Return true if EXPR can trap, as in dereferencing an invalid pointer
2452 location or floating point arithmetic. C.f. the rtl version, may_trap_p.
2453 This routine expects only GIMPLE lhs or rhs input. */
2456 tree_could_trap_p (tree expr
)
2458 enum tree_code code
;
2459 bool fp_operation
= false;
2460 bool honor_trapv
= false;
2461 tree t
, base
, div
= NULL_TREE
;
2466 code
= TREE_CODE (expr
);
2467 t
= TREE_TYPE (expr
);
2471 if (COMPARISON_CLASS_P (expr
))
2472 fp_operation
= FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (expr
, 0)));
2474 fp_operation
= FLOAT_TYPE_P (t
);
2475 honor_trapv
= INTEGRAL_TYPE_P (t
) && TYPE_OVERFLOW_TRAPS (t
);
2478 if (TREE_CODE_CLASS (code
) == tcc_binary
)
2479 div
= TREE_OPERAND (expr
, 1);
2480 if (operation_could_trap_p (code
, fp_operation
, honor_trapv
, div
))
2486 case TARGET_MEM_REF
:
2487 if (TREE_CODE (TMR_BASE (expr
)) == ADDR_EXPR
2488 && !TMR_INDEX (expr
) && !TMR_INDEX2 (expr
))
2490 return !TREE_THIS_NOTRAP (expr
);
2496 case VIEW_CONVERT_EXPR
:
2497 case WITH_SIZE_EXPR
:
2498 expr
= TREE_OPERAND (expr
, 0);
2499 code
= TREE_CODE (expr
);
2502 case ARRAY_RANGE_REF
:
2503 base
= TREE_OPERAND (expr
, 0);
2504 if (tree_could_trap_p (base
))
2506 if (TREE_THIS_NOTRAP (expr
))
2508 return !range_in_array_bounds_p (expr
);
2511 base
= TREE_OPERAND (expr
, 0);
2512 if (tree_could_trap_p (base
))
2514 if (TREE_THIS_NOTRAP (expr
))
2516 return !in_array_bounds_p (expr
);
2519 if (TREE_CODE (TREE_OPERAND (expr
, 0)) == ADDR_EXPR
)
2523 return !TREE_THIS_NOTRAP (expr
);
2526 return TREE_THIS_VOLATILE (expr
);
2529 t
= get_callee_fndecl (expr
);
2530 /* Assume that calls to weak functions may trap. */
2531 if (!t
|| !DECL_P (t
))
2534 return tree_could_trap_p (t
);
2538 /* Assume that accesses to weak functions may trap, unless we know
2539 they are certainly defined in current TU or in some other
2541 if (DECL_WEAK (expr
))
2543 struct cgraph_node
*node
;
2544 if (!DECL_EXTERNAL (expr
))
2546 node
= cgraph_function_node (cgraph_get_node (expr
), NULL
);
2547 if (node
&& node
->symbol
.in_other_partition
)
2554 /* Assume that accesses to weak vars may trap, unless we know
2555 they are certainly defined in current TU or in some other
2557 if (DECL_WEAK (expr
))
2559 struct varpool_node
*node
;
2560 if (!DECL_EXTERNAL (expr
))
2562 node
= varpool_variable_node (varpool_get_node (expr
), NULL
);
2563 if (node
&& node
->symbol
.in_other_partition
)
2575 /* Helper for stmt_could_throw_p. Return true if STMT (assumed to be a
2576 an assignment or a conditional) may throw. */
2579 stmt_could_throw_1_p (gimple stmt
)
2581 enum tree_code code
= gimple_expr_code (stmt
);
2582 bool honor_nans
= false;
2583 bool honor_snans
= false;
2584 bool fp_operation
= false;
2585 bool honor_trapv
= false;
2590 if (TREE_CODE_CLASS (code
) == tcc_comparison
2591 || TREE_CODE_CLASS (code
) == tcc_unary
2592 || TREE_CODE_CLASS (code
) == tcc_binary
)
2594 if (is_gimple_assign (stmt
)
2595 && TREE_CODE_CLASS (code
) == tcc_comparison
)
2596 t
= TREE_TYPE (gimple_assign_rhs1 (stmt
));
2597 else if (gimple_code (stmt
) == GIMPLE_COND
)
2598 t
= TREE_TYPE (gimple_cond_lhs (stmt
));
2600 t
= gimple_expr_type (stmt
);
2601 fp_operation
= FLOAT_TYPE_P (t
);
2604 honor_nans
= flag_trapping_math
&& !flag_finite_math_only
;
2605 honor_snans
= flag_signaling_nans
!= 0;
2607 else if (INTEGRAL_TYPE_P (t
) && TYPE_OVERFLOW_TRAPS (t
))
2611 /* Check if the main expression may trap. */
2612 t
= is_gimple_assign (stmt
) ? gimple_assign_rhs2 (stmt
) : NULL
;
2613 ret
= operation_could_trap_helper_p (code
, fp_operation
, honor_trapv
,
2614 honor_nans
, honor_snans
, t
,
2619 /* If the expression does not trap, see if any of the individual operands may
2621 for (i
= 0; i
< gimple_num_ops (stmt
); i
++)
2622 if (tree_could_trap_p (gimple_op (stmt
, i
)))
2629 /* Return true if statement STMT could throw an exception. */
2632 stmt_could_throw_p (gimple stmt
)
2634 if (!flag_exceptions
)
2637 /* The only statements that can throw an exception are assignments,
2638 conditionals, calls, resx, and asms. */
2639 switch (gimple_code (stmt
))
2645 return !gimple_call_nothrow_p (stmt
);
2649 if (!cfun
->can_throw_non_call_exceptions
)
2651 return stmt_could_throw_1_p (stmt
);
2654 if (!cfun
->can_throw_non_call_exceptions
)
2656 return gimple_asm_volatile_p (stmt
);
2664 /* Return true if expression T could throw an exception. */
2667 tree_could_throw_p (tree t
)
2669 if (!flag_exceptions
)
2671 if (TREE_CODE (t
) == MODIFY_EXPR
)
2673 if (cfun
->can_throw_non_call_exceptions
2674 && tree_could_trap_p (TREE_OPERAND (t
, 0)))
2676 t
= TREE_OPERAND (t
, 1);
2679 if (TREE_CODE (t
) == WITH_SIZE_EXPR
)
2680 t
= TREE_OPERAND (t
, 0);
2681 if (TREE_CODE (t
) == CALL_EXPR
)
2682 return (call_expr_flags (t
) & ECF_NOTHROW
) == 0;
2683 if (cfun
->can_throw_non_call_exceptions
)
2684 return tree_could_trap_p (t
);
2688 /* Return true if STMT can throw an exception that is not caught within
2689 the current function (CFUN). */
2692 stmt_can_throw_external (gimple stmt
)
2696 if (!stmt_could_throw_p (stmt
))
2699 lp_nr
= lookup_stmt_eh_lp (stmt
);
2703 /* Return true if STMT can throw an exception that is caught within
2704 the current function (CFUN). */
2707 stmt_can_throw_internal (gimple stmt
)
2711 if (!stmt_could_throw_p (stmt
))
2714 lp_nr
= lookup_stmt_eh_lp (stmt
);
2718 /* Given a statement STMT in IFUN, if STMT can no longer throw, then
2719 remove any entry it might have from the EH table. Return true if
2720 any change was made. */
2723 maybe_clean_eh_stmt_fn (struct function
*ifun
, gimple stmt
)
2725 if (stmt_could_throw_p (stmt
))
2727 return remove_stmt_from_eh_lp_fn (ifun
, stmt
);
2730 /* Likewise, but always use the current function. */
2733 maybe_clean_eh_stmt (gimple stmt
)
2735 return maybe_clean_eh_stmt_fn (cfun
, stmt
);
2738 /* Given a statement OLD_STMT and a new statement NEW_STMT that has replaced
2739 OLD_STMT in the function, remove OLD_STMT from the EH table and put NEW_STMT
2740 in the table if it should be in there. Return TRUE if a replacement was
2741 done that my require an EH edge purge. */
2744 maybe_clean_or_replace_eh_stmt (gimple old_stmt
, gimple new_stmt
)
2746 int lp_nr
= lookup_stmt_eh_lp (old_stmt
);
2750 bool new_stmt_could_throw
= stmt_could_throw_p (new_stmt
);
2752 if (new_stmt
== old_stmt
&& new_stmt_could_throw
)
2755 remove_stmt_from_eh_lp (old_stmt
);
2756 if (new_stmt_could_throw
)
2758 add_stmt_to_eh_lp (new_stmt
, lp_nr
);
2768 /* Given a statement OLD_STMT in OLD_FUN and a duplicate statement NEW_STMT
2769 in NEW_FUN, copy the EH table data from OLD_STMT to NEW_STMT. The MAP
2770 operand is the return value of duplicate_eh_regions. */
2773 maybe_duplicate_eh_stmt_fn (struct function
*new_fun
, gimple new_stmt
,
2774 struct function
*old_fun
, gimple old_stmt
,
2775 struct pointer_map_t
*map
, int default_lp_nr
)
2777 int old_lp_nr
, new_lp_nr
;
2780 if (!stmt_could_throw_p (new_stmt
))
2783 old_lp_nr
= lookup_stmt_eh_lp_fn (old_fun
, old_stmt
);
2786 if (default_lp_nr
== 0)
2788 new_lp_nr
= default_lp_nr
;
2790 else if (old_lp_nr
> 0)
2792 eh_landing_pad old_lp
, new_lp
;
2794 old_lp
= VEC_index (eh_landing_pad
, old_fun
->eh
->lp_array
, old_lp_nr
);
2795 slot
= pointer_map_contains (map
, old_lp
);
2796 new_lp
= (eh_landing_pad
) *slot
;
2797 new_lp_nr
= new_lp
->index
;
2801 eh_region old_r
, new_r
;
2803 old_r
= VEC_index (eh_region
, old_fun
->eh
->region_array
, -old_lp_nr
);
2804 slot
= pointer_map_contains (map
, old_r
);
2805 new_r
= (eh_region
) *slot
;
2806 new_lp_nr
= -new_r
->index
;
2809 add_stmt_to_eh_lp_fn (new_fun
, new_stmt
, new_lp_nr
);
2813 /* Similar, but both OLD_STMT and NEW_STMT are within the current function,
2814 and thus no remapping is required. */
2817 maybe_duplicate_eh_stmt (gimple new_stmt
, gimple old_stmt
)
2821 if (!stmt_could_throw_p (new_stmt
))
2824 lp_nr
= lookup_stmt_eh_lp (old_stmt
);
2828 add_stmt_to_eh_lp (new_stmt
, lp_nr
);
2832 /* Returns TRUE if oneh and twoh are exception handlers (gimple_try_cleanup of
2833 GIMPLE_TRY) that are similar enough to be considered the same. Currently
2834 this only handles handlers consisting of a single call, as that's the
2835 important case for C++: a destructor call for a particular object showing
2836 up in multiple handlers. */
2839 same_handler_p (gimple_seq oneh
, gimple_seq twoh
)
2841 gimple_stmt_iterator gsi
;
2845 gsi
= gsi_start (oneh
);
2846 if (!gsi_one_before_end_p (gsi
))
2848 ones
= gsi_stmt (gsi
);
2850 gsi
= gsi_start (twoh
);
2851 if (!gsi_one_before_end_p (gsi
))
2853 twos
= gsi_stmt (gsi
);
2855 if (!is_gimple_call (ones
)
2856 || !is_gimple_call (twos
)
2857 || gimple_call_lhs (ones
)
2858 || gimple_call_lhs (twos
)
2859 || gimple_call_chain (ones
)
2860 || gimple_call_chain (twos
)
2861 || !gimple_call_same_target_p (ones
, twos
)
2862 || gimple_call_num_args (ones
) != gimple_call_num_args (twos
))
2865 for (ai
= 0; ai
< gimple_call_num_args (ones
); ++ai
)
2866 if (!operand_equal_p (gimple_call_arg (ones
, ai
),
2867 gimple_call_arg (twos
, ai
), 0))
2874 try { A() } finally { try { ~B() } catch { ~A() } }
2875 try { ... } finally { ~A() }
2877 try { A() } catch { ~B() }
2878 try { ~B() ... } finally { ~A() }
2880 This occurs frequently in C++, where A is a local variable and B is a
2881 temporary used in the initializer for A. */
2884 optimize_double_finally (gimple one
, gimple two
)
2887 gimple_stmt_iterator gsi
;
2890 cleanup
= gimple_try_cleanup (one
);
2891 gsi
= gsi_start (cleanup
);
2892 if (!gsi_one_before_end_p (gsi
))
2895 oneh
= gsi_stmt (gsi
);
2896 if (gimple_code (oneh
) != GIMPLE_TRY
2897 || gimple_try_kind (oneh
) != GIMPLE_TRY_CATCH
)
2900 if (same_handler_p (gimple_try_cleanup (oneh
), gimple_try_cleanup (two
)))
2902 gimple_seq seq
= gimple_try_eval (oneh
);
2904 gimple_try_set_cleanup (one
, seq
);
2905 gimple_try_set_kind (one
, GIMPLE_TRY_CATCH
);
2906 seq
= copy_gimple_seq_and_replace_locals (seq
);
2907 gimple_seq_add_seq (&seq
, gimple_try_eval (two
));
2908 gimple_try_set_eval (two
, seq
);
2912 /* Perform EH refactoring optimizations that are simpler to do when code
2913 flow has been lowered but EH structures haven't. */
2916 refactor_eh_r (gimple_seq seq
)
2918 gimple_stmt_iterator gsi
;
2923 gsi
= gsi_start (seq
);
2927 if (gsi_end_p (gsi
))
2930 two
= gsi_stmt (gsi
);
2933 && gimple_code (one
) == GIMPLE_TRY
2934 && gimple_code (two
) == GIMPLE_TRY
2935 && gimple_try_kind (one
) == GIMPLE_TRY_FINALLY
2936 && gimple_try_kind (two
) == GIMPLE_TRY_FINALLY
)
2937 optimize_double_finally (one
, two
);
2939 switch (gimple_code (one
))
2942 refactor_eh_r (gimple_try_eval (one
));
2943 refactor_eh_r (gimple_try_cleanup (one
));
2946 refactor_eh_r (gimple_catch_handler (one
));
2948 case GIMPLE_EH_FILTER
:
2949 refactor_eh_r (gimple_eh_filter_failure (one
));
2951 case GIMPLE_EH_ELSE
:
2952 refactor_eh_r (gimple_eh_else_n_body (one
));
2953 refactor_eh_r (gimple_eh_else_e_body (one
));
2968 refactor_eh_r (gimple_body (current_function_decl
));
2973 gate_refactor_eh (void)
2975 return flag_exceptions
!= 0;
2978 struct gimple_opt_pass pass_refactor_eh
=
2983 gate_refactor_eh
, /* gate */
2984 refactor_eh
, /* execute */
2987 0, /* static_pass_number */
2988 TV_TREE_EH
, /* tv_id */
2989 PROP_gimple_lcf
, /* properties_required */
2990 0, /* properties_provided */
2991 0, /* properties_destroyed */
2992 0, /* todo_flags_start */
2993 0 /* todo_flags_finish */
2997 /* At the end of gimple optimization, we can lower RESX. */
3000 lower_resx (basic_block bb
, gimple stmt
, struct pointer_map_t
*mnt_map
)
3003 eh_region src_r
, dst_r
;
3004 gimple_stmt_iterator gsi
;
3009 lp_nr
= lookup_stmt_eh_lp (stmt
);
3011 dst_r
= get_eh_region_from_lp_number (lp_nr
);
3015 src_r
= get_eh_region_from_number (gimple_resx_region (stmt
));
3016 gsi
= gsi_last_bb (bb
);
3020 /* We can wind up with no source region when pass_cleanup_eh shows
3021 that there are no entries into an eh region and deletes it, but
3022 then the block that contains the resx isn't removed. This can
3023 happen without optimization when the switch statement created by
3024 lower_try_finally_switch isn't simplified to remove the eh case.
3026 Resolve this by expanding the resx node to an abort. */
3028 fn
= builtin_decl_implicit (BUILT_IN_TRAP
);
3029 x
= gimple_build_call (fn
, 0);
3030 gsi_insert_before (&gsi
, x
, GSI_SAME_STMT
);
3032 while (EDGE_COUNT (bb
->succs
) > 0)
3033 remove_edge (EDGE_SUCC (bb
, 0));
3037 /* When we have a destination region, we resolve this by copying
3038 the excptr and filter values into place, and changing the edge
3039 to immediately after the landing pad. */
3048 /* We are resuming into a MUST_NOT_CALL region. Expand a call to
3049 the failure decl into a new block, if needed. */
3050 gcc_assert (dst_r
->type
== ERT_MUST_NOT_THROW
);
3052 slot
= pointer_map_contains (mnt_map
, dst_r
);
3055 gimple_stmt_iterator gsi2
;
3057 new_bb
= create_empty_bb (bb
);
3059 add_bb_to_loop (new_bb
, bb
->loop_father
);
3060 lab
= gimple_block_label (new_bb
);
3061 gsi2
= gsi_start_bb (new_bb
);
3063 fn
= dst_r
->u
.must_not_throw
.failure_decl
;
3064 x
= gimple_build_call (fn
, 0);
3065 gimple_set_location (x
, dst_r
->u
.must_not_throw
.failure_loc
);
3066 gsi_insert_after (&gsi2
, x
, GSI_CONTINUE_LINKING
);
3068 slot
= pointer_map_insert (mnt_map
, dst_r
);
3074 new_bb
= label_to_block (lab
);
3077 gcc_assert (EDGE_COUNT (bb
->succs
) == 0);
3078 e
= make_edge (bb
, new_bb
, EDGE_FALLTHRU
);
3079 e
->count
= bb
->count
;
3080 e
->probability
= REG_BR_PROB_BASE
;
3085 tree dst_nr
= build_int_cst (integer_type_node
, dst_r
->index
);
3087 fn
= builtin_decl_implicit (BUILT_IN_EH_COPY_VALUES
);
3088 src_nr
= build_int_cst (integer_type_node
, src_r
->index
);
3089 x
= gimple_build_call (fn
, 2, dst_nr
, src_nr
);
3090 gsi_insert_before (&gsi
, x
, GSI_SAME_STMT
);
3092 /* Update the flags for the outgoing edge. */
3093 e
= single_succ_edge (bb
);
3094 gcc_assert (e
->flags
& EDGE_EH
);
3095 e
->flags
= (e
->flags
& ~EDGE_EH
) | EDGE_FALLTHRU
;
3097 /* If there are no more EH users of the landing pad, delete it. */
3098 FOR_EACH_EDGE (e
, ei
, e
->dest
->preds
)
3099 if (e
->flags
& EDGE_EH
)
3103 eh_landing_pad lp
= get_eh_landing_pad_from_number (lp_nr
);
3104 remove_eh_landing_pad (lp
);
3114 /* When we don't have a destination region, this exception escapes
3115 up the call chain. We resolve this by generating a call to the
3116 _Unwind_Resume library function. */
3118 /* The ARM EABI redefines _Unwind_Resume as __cxa_end_cleanup
3119 with no arguments for C++ and Java. Check for that. */
3120 if (src_r
->use_cxa_end_cleanup
)
3122 fn
= builtin_decl_implicit (BUILT_IN_CXA_END_CLEANUP
);
3123 x
= gimple_build_call (fn
, 0);
3124 gsi_insert_before (&gsi
, x
, GSI_SAME_STMT
);
3128 fn
= builtin_decl_implicit (BUILT_IN_EH_POINTER
);
3129 src_nr
= build_int_cst (integer_type_node
, src_r
->index
);
3130 x
= gimple_build_call (fn
, 1, src_nr
);
3131 var
= create_tmp_var (ptr_type_node
, NULL
);
3132 var
= make_ssa_name (var
, x
);
3133 gimple_call_set_lhs (x
, var
);
3134 gsi_insert_before (&gsi
, x
, GSI_SAME_STMT
);
3136 fn
= builtin_decl_implicit (BUILT_IN_UNWIND_RESUME
);
3137 x
= gimple_build_call (fn
, 1, var
);
3138 gsi_insert_before (&gsi
, x
, GSI_SAME_STMT
);
3141 gcc_assert (EDGE_COUNT (bb
->succs
) == 0);
3144 gsi_remove (&gsi
, true);
3150 execute_lower_resx (void)
3153 struct pointer_map_t
*mnt_map
;
3154 bool dominance_invalidated
= false;
3155 bool any_rewritten
= false;
3157 mnt_map
= pointer_map_create ();
3161 gimple last
= last_stmt (bb
);
3162 if (last
&& is_gimple_resx (last
))
3164 dominance_invalidated
|= lower_resx (bb
, last
, mnt_map
);
3165 any_rewritten
= true;
3169 pointer_map_destroy (mnt_map
);
3171 if (dominance_invalidated
)
3173 free_dominance_info (CDI_DOMINATORS
);
3174 free_dominance_info (CDI_POST_DOMINATORS
);
3177 return any_rewritten
? TODO_update_ssa_only_virtuals
: 0;
3181 gate_lower_resx (void)
3183 return flag_exceptions
!= 0;
3186 struct gimple_opt_pass pass_lower_resx
=
3191 gate_lower_resx
, /* gate */
3192 execute_lower_resx
, /* execute */
3195 0, /* static_pass_number */
3196 TV_TREE_EH
, /* tv_id */
3197 PROP_gimple_lcf
, /* properties_required */
3198 0, /* properties_provided */
3199 0, /* properties_destroyed */
3200 0, /* todo_flags_start */
3201 TODO_verify_flow
/* todo_flags_finish */
3205 /* Try to optimize var = {v} {CLOBBER} stmts followed just by
3209 optimize_clobbers (basic_block bb
)
3211 gimple_stmt_iterator gsi
= gsi_last_bb (bb
);
3212 for (gsi_prev (&gsi
); !gsi_end_p (gsi
); gsi_prev (&gsi
))
3214 gimple stmt
= gsi_stmt (gsi
);
3215 if (is_gimple_debug (stmt
))
3217 if (!gimple_clobber_p (stmt
)
3218 || TREE_CODE (gimple_assign_lhs (stmt
)) == SSA_NAME
)
3220 unlink_stmt_vdef (stmt
);
3221 gsi_remove (&gsi
, true);
3222 release_defs (stmt
);
3226 /* Try to sink var = {v} {CLOBBER} stmts followed just by
3227 internal throw to successor BB. */
3230 sink_clobbers (basic_block bb
)
3234 gimple_stmt_iterator gsi
, dgsi
;
3236 bool any_clobbers
= false;
3238 /* Only optimize if BB has a single EH successor and
3239 all predecessor edges are EH too. */
3240 if (!single_succ_p (bb
)
3241 || (single_succ_edge (bb
)->flags
& EDGE_EH
) == 0)
3244 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
3246 if ((e
->flags
& EDGE_EH
) == 0)
3250 /* And BB contains only CLOBBER stmts before the final
3252 gsi
= gsi_last_bb (bb
);
3253 for (gsi_prev (&gsi
); !gsi_end_p (gsi
); gsi_prev (&gsi
))
3255 gimple stmt
= gsi_stmt (gsi
);
3256 if (is_gimple_debug (stmt
))
3258 if (gimple_code (stmt
) == GIMPLE_LABEL
)
3260 if (!gimple_clobber_p (stmt
)
3261 || TREE_CODE (gimple_assign_lhs (stmt
)) == SSA_NAME
)
3263 any_clobbers
= true;
3268 succbb
= single_succ (bb
);
3269 dgsi
= gsi_after_labels (succbb
);
3270 gsi
= gsi_last_bb (bb
);
3271 for (gsi_prev (&gsi
); !gsi_end_p (gsi
); gsi_prev (&gsi
))
3273 gimple stmt
= gsi_stmt (gsi
);
3274 if (is_gimple_debug (stmt
))
3276 if (gimple_code (stmt
) == GIMPLE_LABEL
)
3278 unlink_stmt_vdef (stmt
);
3279 gsi_remove (&gsi
, false);
3280 /* Trigger the operand scanner to cause renaming for virtual
3281 operands for this statement.
3282 ??? Given the simple structure of this code manually
3283 figuring out the reaching definition should not be too hard. */
3284 if (gimple_vuse (stmt
))
3285 gimple_set_vuse (stmt
, NULL_TREE
);
3286 gsi_insert_before (&dgsi
, stmt
, GSI_SAME_STMT
);
3289 return TODO_update_ssa_only_virtuals
;
3292 /* At the end of inlining, we can lower EH_DISPATCH. Return true when
3293 we have found some duplicate labels and removed some edges. */
3296 lower_eh_dispatch (basic_block src
, gimple stmt
)
3298 gimple_stmt_iterator gsi
;
3303 bool redirected
= false;
3305 region_nr
= gimple_eh_dispatch_region (stmt
);
3306 r
= get_eh_region_from_number (region_nr
);
3308 gsi
= gsi_last_bb (src
);
3314 VEC (tree
, heap
) *labels
= NULL
;
3315 tree default_label
= NULL
;
3319 struct pointer_set_t
*seen_values
= pointer_set_create ();
3321 /* Collect the labels for a switch. Zero the post_landing_pad
3322 field becase we'll no longer have anything keeping these labels
3323 in existence and the optimizer will be free to merge these
3325 for (c
= r
->u
.eh_try
.first_catch
; c
; c
= c
->next_catch
)
3327 tree tp_node
, flt_node
, lab
= c
->label
;
3328 bool have_label
= false;
3331 tp_node
= c
->type_list
;
3332 flt_node
= c
->filter_list
;
3334 if (tp_node
== NULL
)
3336 default_label
= lab
;
3341 /* Filter out duplicate labels that arise when this handler
3342 is shadowed by an earlier one. When no labels are
3343 attached to the handler anymore, we remove
3344 the corresponding edge and then we delete unreachable
3345 blocks at the end of this pass. */
3346 if (! pointer_set_contains (seen_values
, TREE_VALUE (flt_node
)))
3348 tree t
= build_case_label (TREE_VALUE (flt_node
),
3350 VEC_safe_push (tree
, heap
, labels
, t
);
3351 pointer_set_insert (seen_values
, TREE_VALUE (flt_node
));
3355 tp_node
= TREE_CHAIN (tp_node
);
3356 flt_node
= TREE_CHAIN (flt_node
);
3361 remove_edge (find_edge (src
, label_to_block (lab
)));
3366 /* Clean up the edge flags. */
3367 FOR_EACH_EDGE (e
, ei
, src
->succs
)
3369 if (e
->flags
& EDGE_FALLTHRU
)
3371 /* If there was no catch-all, use the fallthru edge. */
3372 if (default_label
== NULL
)
3373 default_label
= gimple_block_label (e
->dest
);
3374 e
->flags
&= ~EDGE_FALLTHRU
;
3377 gcc_assert (default_label
!= NULL
);
3379 /* Don't generate a switch if there's only a default case.
3380 This is common in the form of try { A; } catch (...) { B; }. */
3383 e
= single_succ_edge (src
);
3384 e
->flags
|= EDGE_FALLTHRU
;
3388 fn
= builtin_decl_implicit (BUILT_IN_EH_FILTER
);
3389 x
= gimple_build_call (fn
, 1, build_int_cst (integer_type_node
,
3391 filter
= create_tmp_var (TREE_TYPE (TREE_TYPE (fn
)), NULL
);
3392 filter
= make_ssa_name (filter
, x
);
3393 gimple_call_set_lhs (x
, filter
);
3394 gsi_insert_before (&gsi
, x
, GSI_SAME_STMT
);
3396 /* Turn the default label into a default case. */
3397 default_label
= build_case_label (NULL
, NULL
, default_label
);
3398 sort_case_labels (labels
);
3400 x
= gimple_build_switch (filter
, default_label
, labels
);
3401 gsi_insert_before (&gsi
, x
, GSI_SAME_STMT
);
3403 VEC_free (tree
, heap
, labels
);
3405 pointer_set_destroy (seen_values
);
3409 case ERT_ALLOWED_EXCEPTIONS
:
3411 edge b_e
= BRANCH_EDGE (src
);
3412 edge f_e
= FALLTHRU_EDGE (src
);
3414 fn
= builtin_decl_implicit (BUILT_IN_EH_FILTER
);
3415 x
= gimple_build_call (fn
, 1, build_int_cst (integer_type_node
,
3417 filter
= create_tmp_var (TREE_TYPE (TREE_TYPE (fn
)), NULL
);
3418 filter
= make_ssa_name (filter
, x
);
3419 gimple_call_set_lhs (x
, filter
);
3420 gsi_insert_before (&gsi
, x
, GSI_SAME_STMT
);
3422 r
->u
.allowed
.label
= NULL
;
3423 x
= gimple_build_cond (EQ_EXPR
, filter
,
3424 build_int_cst (TREE_TYPE (filter
),
3425 r
->u
.allowed
.filter
),
3426 NULL_TREE
, NULL_TREE
);
3427 gsi_insert_before (&gsi
, x
, GSI_SAME_STMT
);
3429 b_e
->flags
= b_e
->flags
| EDGE_TRUE_VALUE
;
3430 f_e
->flags
= (f_e
->flags
& ~EDGE_FALLTHRU
) | EDGE_FALSE_VALUE
;
3438 /* Replace the EH_DISPATCH with the SWITCH or COND generated above. */
3439 gsi_remove (&gsi
, true);
3444 execute_lower_eh_dispatch (void)
3448 bool redirected
= false;
3450 assign_filter_values ();
3454 gimple last
= last_stmt (bb
);
3457 if (gimple_code (last
) == GIMPLE_EH_DISPATCH
)
3459 redirected
|= lower_eh_dispatch (bb
, last
);
3460 flags
|= TODO_update_ssa_only_virtuals
;
3462 else if (gimple_code (last
) == GIMPLE_RESX
)
3464 if (stmt_can_throw_external (last
))
3465 optimize_clobbers (bb
);
3467 flags
|= sink_clobbers (bb
);
3472 delete_unreachable_blocks ();
3477 gate_lower_eh_dispatch (void)
3479 return cfun
->eh
->region_tree
!= NULL
;
3482 struct gimple_opt_pass pass_lower_eh_dispatch
=
3486 "ehdisp", /* name */
3487 gate_lower_eh_dispatch
, /* gate */
3488 execute_lower_eh_dispatch
, /* execute */
3491 0, /* static_pass_number */
3492 TV_TREE_EH
, /* tv_id */
3493 PROP_gimple_lcf
, /* properties_required */
3494 0, /* properties_provided */
3495 0, /* properties_destroyed */
3496 0, /* todo_flags_start */
3497 TODO_verify_flow
/* todo_flags_finish */
3501 /* Walk statements, see what regions are really referenced and remove
3502 those that are unused. */
3505 remove_unreachable_handlers (void)
3507 sbitmap r_reachable
, lp_reachable
;
3513 r_reachable
= sbitmap_alloc (VEC_length (eh_region
, cfun
->eh
->region_array
));
3515 = sbitmap_alloc (VEC_length (eh_landing_pad
, cfun
->eh
->lp_array
));
3516 sbitmap_zero (r_reachable
);
3517 sbitmap_zero (lp_reachable
);
3521 gimple_stmt_iterator gsi
;
3523 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
3525 gimple stmt
= gsi_stmt (gsi
);
3526 lp_nr
= lookup_stmt_eh_lp (stmt
);
3528 /* Negative LP numbers are MUST_NOT_THROW regions which
3529 are not considered BB enders. */
3531 SET_BIT (r_reachable
, -lp_nr
);
3533 /* Positive LP numbers are real landing pads, are are BB enders. */
3536 gcc_assert (gsi_one_before_end_p (gsi
));
3537 region
= get_eh_region_from_lp_number (lp_nr
);
3538 SET_BIT (r_reachable
, region
->index
);
3539 SET_BIT (lp_reachable
, lp_nr
);
3542 /* Avoid removing regions referenced from RESX/EH_DISPATCH. */
3543 switch (gimple_code (stmt
))
3546 SET_BIT (r_reachable
, gimple_resx_region (stmt
));
3548 case GIMPLE_EH_DISPATCH
:
3549 SET_BIT (r_reachable
, gimple_eh_dispatch_region (stmt
));
3559 fprintf (dump_file
, "Before removal of unreachable regions:\n");
3560 dump_eh_tree (dump_file
, cfun
);
3561 fprintf (dump_file
, "Reachable regions: ");
3562 dump_sbitmap_file (dump_file
, r_reachable
);
3563 fprintf (dump_file
, "Reachable landing pads: ");
3564 dump_sbitmap_file (dump_file
, lp_reachable
);
3568 VEC_iterate (eh_region
, cfun
->eh
->region_array
, r_nr
, region
); ++r_nr
)
3569 if (region
&& !TEST_BIT (r_reachable
, r_nr
))
3572 fprintf (dump_file
, "Removing unreachable region %d\n", r_nr
);
3573 remove_eh_handler (region
);
3577 VEC_iterate (eh_landing_pad
, cfun
->eh
->lp_array
, lp_nr
, lp
); ++lp_nr
)
3578 if (lp
&& !TEST_BIT (lp_reachable
, lp_nr
))
3581 fprintf (dump_file
, "Removing unreachable landing pad %d\n", lp_nr
);
3582 remove_eh_landing_pad (lp
);
3587 fprintf (dump_file
, "\n\nAfter removal of unreachable regions:\n");
3588 dump_eh_tree (dump_file
, cfun
);
3589 fprintf (dump_file
, "\n\n");
3592 sbitmap_free (r_reachable
);
3593 sbitmap_free (lp_reachable
);
3595 #ifdef ENABLE_CHECKING
3596 verify_eh_tree (cfun
);
3600 /* Remove unreachable handlers if any landing pads have been removed after
3601 last ehcleanup pass (due to gimple_purge_dead_eh_edges). */
3604 maybe_remove_unreachable_handlers (void)
3609 if (cfun
->eh
== NULL
)
3612 for (i
= 1; VEC_iterate (eh_landing_pad
, cfun
->eh
->lp_array
, i
, lp
); ++i
)
3613 if (lp
&& lp
->post_landing_pad
)
3615 if (label_to_block (lp
->post_landing_pad
) == NULL
)
3617 remove_unreachable_handlers ();
3623 /* Remove regions that do not have landing pads. This assumes
3624 that remove_unreachable_handlers has already been run, and
3625 that we've just manipulated the landing pads since then. */
3628 remove_unreachable_handlers_no_lp (void)
3632 sbitmap r_reachable
;
3635 r_reachable
= sbitmap_alloc (VEC_length (eh_region
, cfun
->eh
->region_array
));
3636 sbitmap_zero (r_reachable
);
3640 gimple stmt
= last_stmt (bb
);
3642 /* Avoid removing regions referenced from RESX/EH_DISPATCH. */
3643 switch (gimple_code (stmt
))
3646 SET_BIT (r_reachable
, gimple_resx_region (stmt
));
3648 case GIMPLE_EH_DISPATCH
:
3649 SET_BIT (r_reachable
, gimple_eh_dispatch_region (stmt
));
3656 for (i
= 1; VEC_iterate (eh_region
, cfun
->eh
->region_array
, i
, r
); ++i
)
3657 if (r
&& r
->landing_pads
== NULL
&& r
->type
!= ERT_MUST_NOT_THROW
3658 && !TEST_BIT (r_reachable
, i
))
3661 fprintf (dump_file
, "Removing unreachable region %d\n", i
);
3662 remove_eh_handler (r
);
3665 sbitmap_free (r_reachable
);
3668 /* Undo critical edge splitting on an EH landing pad. Earlier, we
3669 optimisticaly split all sorts of edges, including EH edges. The
3670 optimization passes in between may not have needed them; if not,
3671 we should undo the split.
3673 Recognize this case by having one EH edge incoming to the BB and
3674 one normal edge outgoing; BB should be empty apart from the
3675 post_landing_pad label.
3677 Note that this is slightly different from the empty handler case
3678 handled by cleanup_empty_eh, in that the actual handler may yet
3679 have actual code but the landing pad has been separated from the
3680 handler. As such, cleanup_empty_eh relies on this transformation
3681 having been done first. */
3684 unsplit_eh (eh_landing_pad lp
)
3686 basic_block bb
= label_to_block (lp
->post_landing_pad
);
3687 gimple_stmt_iterator gsi
;
3690 /* Quickly check the edge counts on BB for singularity. */
3691 if (EDGE_COUNT (bb
->preds
) != 1 || EDGE_COUNT (bb
->succs
) != 1)
3693 e_in
= EDGE_PRED (bb
, 0);
3694 e_out
= EDGE_SUCC (bb
, 0);
3696 /* Input edge must be EH and output edge must be normal. */
3697 if ((e_in
->flags
& EDGE_EH
) == 0 || (e_out
->flags
& EDGE_EH
) != 0)
3700 /* The block must be empty except for the labels and debug insns. */
3701 gsi
= gsi_after_labels (bb
);
3702 if (!gsi_end_p (gsi
) && is_gimple_debug (gsi_stmt (gsi
)))
3703 gsi_next_nondebug (&gsi
);
3704 if (!gsi_end_p (gsi
))
3707 /* The destination block must not already have a landing pad
3708 for a different region. */
3709 for (gsi
= gsi_start_bb (e_out
->dest
); !gsi_end_p (gsi
); gsi_next (&gsi
))
3711 gimple stmt
= gsi_stmt (gsi
);
3715 if (gimple_code (stmt
) != GIMPLE_LABEL
)
3717 lab
= gimple_label_label (stmt
);
3718 lp_nr
= EH_LANDING_PAD_NR (lab
);
3719 if (lp_nr
&& get_eh_region_from_lp_number (lp_nr
) != lp
->region
)
3723 /* The new destination block must not already be a destination of
3724 the source block, lest we merge fallthru and eh edges and get
3725 all sorts of confused. */
3726 if (find_edge (e_in
->src
, e_out
->dest
))
3729 /* ??? We can get degenerate phis due to cfg cleanups. I would have
3730 thought this should have been cleaned up by a phicprop pass, but
3731 that doesn't appear to handle virtuals. Propagate by hand. */
3732 if (!gimple_seq_empty_p (phi_nodes (bb
)))
3734 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); )
3736 gimple use_stmt
, phi
= gsi_stmt (gsi
);
3737 tree lhs
= gimple_phi_result (phi
);
3738 tree rhs
= gimple_phi_arg_def (phi
, 0);
3739 use_operand_p use_p
;
3740 imm_use_iterator iter
;
3742 FOR_EACH_IMM_USE_STMT (use_stmt
, iter
, lhs
)
3744 FOR_EACH_IMM_USE_ON_STMT (use_p
, iter
)
3745 SET_USE (use_p
, rhs
);
3748 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs
))
3749 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rhs
) = 1;
3751 remove_phi_node (&gsi
, true);
3755 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3756 fprintf (dump_file
, "Unsplit EH landing pad %d to block %i.\n",
3757 lp
->index
, e_out
->dest
->index
);
3759 /* Redirect the edge. Since redirect_eh_edge_1 expects to be moving
3760 a successor edge, humor it. But do the real CFG change with the
3761 predecessor of E_OUT in order to preserve the ordering of arguments
3762 to the PHI nodes in E_OUT->DEST. */
3763 redirect_eh_edge_1 (e_in
, e_out
->dest
, false);
3764 redirect_edge_pred (e_out
, e_in
->src
);
3765 e_out
->flags
= e_in
->flags
;
3766 e_out
->probability
= e_in
->probability
;
3767 e_out
->count
= e_in
->count
;
3773 /* Examine each landing pad block and see if it matches unsplit_eh. */
3776 unsplit_all_eh (void)
3778 bool changed
= false;
3782 for (i
= 1; VEC_iterate (eh_landing_pad
, cfun
->eh
->lp_array
, i
, lp
); ++i
)
3784 changed
|= unsplit_eh (lp
);
3789 /* A subroutine of cleanup_empty_eh. Redirect all EH edges incoming
3790 to OLD_BB to NEW_BB; return true on success, false on failure.
3792 OLD_BB_OUT is the edge into NEW_BB from OLD_BB, so if we miss any
3793 PHI variables from OLD_BB we can pick them up from OLD_BB_OUT.
3794 Virtual PHIs may be deleted and marked for renaming. */
3797 cleanup_empty_eh_merge_phis (basic_block new_bb
, basic_block old_bb
,
3798 edge old_bb_out
, bool change_region
)
3800 gimple_stmt_iterator ngsi
, ogsi
;
3803 bitmap rename_virts
;
3804 bitmap ophi_handled
;
3806 /* The destination block must not be a regular successor for any
3807 of the preds of the landing pad. Thus, avoid turning
3817 which CFG verification would choke on. See PR45172 and PR51089. */
3818 FOR_EACH_EDGE (e
, ei
, old_bb
->preds
)
3819 if (find_edge (e
->src
, new_bb
))
3822 FOR_EACH_EDGE (e
, ei
, old_bb
->preds
)
3823 redirect_edge_var_map_clear (e
);
3825 ophi_handled
= BITMAP_ALLOC (NULL
);
3826 rename_virts
= BITMAP_ALLOC (NULL
);
3828 /* First, iterate through the PHIs on NEW_BB and set up the edge_var_map
3829 for the edges we're going to move. */
3830 for (ngsi
= gsi_start_phis (new_bb
); !gsi_end_p (ngsi
); gsi_next (&ngsi
))
3832 gimple ophi
, nphi
= gsi_stmt (ngsi
);
3835 nresult
= gimple_phi_result (nphi
);
3836 nop
= gimple_phi_arg_def (nphi
, old_bb_out
->dest_idx
);
3838 /* Find the corresponding PHI in OLD_BB so we can forward-propagate
3839 the source ssa_name. */
3841 for (ogsi
= gsi_start_phis (old_bb
); !gsi_end_p (ogsi
); gsi_next (&ogsi
))
3843 ophi
= gsi_stmt (ogsi
);
3844 if (gimple_phi_result (ophi
) == nop
)
3849 /* If we did find the corresponding PHI, copy those inputs. */
3852 /* If NOP is used somewhere else beyond phis in new_bb, give up. */
3853 if (!has_single_use (nop
))
3855 imm_use_iterator imm_iter
;
3856 use_operand_p use_p
;
3858 FOR_EACH_IMM_USE_FAST (use_p
, imm_iter
, nop
)
3860 if (!gimple_debug_bind_p (USE_STMT (use_p
))
3861 && (gimple_code (USE_STMT (use_p
)) != GIMPLE_PHI
3862 || gimple_bb (USE_STMT (use_p
)) != new_bb
))
3866 bitmap_set_bit (ophi_handled
, SSA_NAME_VERSION (nop
));
3867 FOR_EACH_EDGE (e
, ei
, old_bb
->preds
)
3872 if ((e
->flags
& EDGE_EH
) == 0)
3874 oop
= gimple_phi_arg_def (ophi
, e
->dest_idx
);
3875 oloc
= gimple_phi_arg_location (ophi
, e
->dest_idx
);
3876 redirect_edge_var_map_add (e
, nresult
, oop
, oloc
);
3879 /* If we didn't find the PHI, but it's a VOP, remember to rename
3880 it later, assuming all other tests succeed. */
3881 else if (virtual_operand_p (nresult
))
3882 bitmap_set_bit (rename_virts
, SSA_NAME_VERSION (nresult
));
3883 /* If we didn't find the PHI, and it's a real variable, we know
3884 from the fact that OLD_BB is tree_empty_eh_handler_p that the
3885 variable is unchanged from input to the block and we can simply
3886 re-use the input to NEW_BB from the OLD_BB_OUT edge. */
3890 = gimple_phi_arg_location (nphi
, old_bb_out
->dest_idx
);
3891 FOR_EACH_EDGE (e
, ei
, old_bb
->preds
)
3892 redirect_edge_var_map_add (e
, nresult
, nop
, nloc
);
3896 /* Second, verify that all PHIs from OLD_BB have been handled. If not,
3897 we don't know what values from the other edges into NEW_BB to use. */
3898 for (ogsi
= gsi_start_phis (old_bb
); !gsi_end_p (ogsi
); gsi_next (&ogsi
))
3900 gimple ophi
= gsi_stmt (ogsi
);
3901 tree oresult
= gimple_phi_result (ophi
);
3902 if (!bitmap_bit_p (ophi_handled
, SSA_NAME_VERSION (oresult
)))
3906 /* At this point we know that the merge will succeed. Remove the PHI
3907 nodes for the virtuals that we want to rename. */
3908 if (!bitmap_empty_p (rename_virts
))
3910 for (ngsi
= gsi_start_phis (new_bb
); !gsi_end_p (ngsi
); )
3912 gimple nphi
= gsi_stmt (ngsi
);
3913 tree nresult
= gimple_phi_result (nphi
);
3914 if (bitmap_bit_p (rename_virts
, SSA_NAME_VERSION (nresult
)))
3916 mark_virtual_phi_result_for_renaming (nphi
);
3917 remove_phi_node (&ngsi
, true);
3924 /* Finally, move the edges and update the PHIs. */
3925 for (ei
= ei_start (old_bb
->preds
); (e
= ei_safe_edge (ei
)); )
3926 if (e
->flags
& EDGE_EH
)
3928 /* ??? CFG manipluation routines do not try to update loop
3929 form on edge redirection. Do so manually here for now. */
3930 /* If we redirect a loop entry or latch edge that will either create
3931 a multiple entry loop or rotate the loop. If the loops merge
3932 we may have created a loop with multiple latches.
3933 All of this isn't easily fixed thus cancel the affected loop
3934 and mark the other loop as possibly having multiple latches. */
3936 && e
->dest
== e
->dest
->loop_father
->header
)
3938 e
->dest
->loop_father
->header
= NULL
;
3939 e
->dest
->loop_father
->latch
= NULL
;
3940 new_bb
->loop_father
->latch
= NULL
;
3941 loops_state_set (LOOPS_NEED_FIXUP
|LOOPS_MAY_HAVE_MULTIPLE_LATCHES
);
3943 redirect_eh_edge_1 (e
, new_bb
, change_region
);
3944 redirect_edge_succ (e
, new_bb
);
3945 flush_pending_stmts (e
);
3950 BITMAP_FREE (ophi_handled
);
3951 BITMAP_FREE (rename_virts
);
3955 FOR_EACH_EDGE (e
, ei
, old_bb
->preds
)
3956 redirect_edge_var_map_clear (e
);
3957 BITMAP_FREE (ophi_handled
);
3958 BITMAP_FREE (rename_virts
);
3962 /* A subroutine of cleanup_empty_eh. Move a landing pad LP from its
3963 old region to NEW_REGION at BB. */
3966 cleanup_empty_eh_move_lp (basic_block bb
, edge e_out
,
3967 eh_landing_pad lp
, eh_region new_region
)
3969 gimple_stmt_iterator gsi
;
3972 for (pp
= &lp
->region
->landing_pads
; *pp
!= lp
; pp
= &(*pp
)->next_lp
)
3976 lp
->region
= new_region
;
3977 lp
->next_lp
= new_region
->landing_pads
;
3978 new_region
->landing_pads
= lp
;
3980 /* Delete the RESX that was matched within the empty handler block. */
3981 gsi
= gsi_last_bb (bb
);
3982 unlink_stmt_vdef (gsi_stmt (gsi
));
3983 gsi_remove (&gsi
, true);
3985 /* Clean up E_OUT for the fallthru. */
3986 e_out
->flags
= (e_out
->flags
& ~EDGE_EH
) | EDGE_FALLTHRU
;
3987 e_out
->probability
= REG_BR_PROB_BASE
;
3990 /* A subroutine of cleanup_empty_eh. Handle more complex cases of
3991 unsplitting than unsplit_eh was prepared to handle, e.g. when
3992 multiple incoming edges and phis are involved. */
3995 cleanup_empty_eh_unsplit (basic_block bb
, edge e_out
, eh_landing_pad lp
)
3997 gimple_stmt_iterator gsi
;
4000 /* We really ought not have totally lost everything following
4001 a landing pad label. Given that BB is empty, there had better
4003 gcc_assert (e_out
!= NULL
);
4005 /* The destination block must not already have a landing pad
4006 for a different region. */
4008 for (gsi
= gsi_start_bb (e_out
->dest
); !gsi_end_p (gsi
); gsi_next (&gsi
))
4010 gimple stmt
= gsi_stmt (gsi
);
4013 if (gimple_code (stmt
) != GIMPLE_LABEL
)
4015 lab
= gimple_label_label (stmt
);
4016 lp_nr
= EH_LANDING_PAD_NR (lab
);
4017 if (lp_nr
&& get_eh_region_from_lp_number (lp_nr
) != lp
->region
)
4021 /* Attempt to move the PHIs into the successor block. */
4022 if (cleanup_empty_eh_merge_phis (e_out
->dest
, bb
, e_out
, false))
4024 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4026 "Unsplit EH landing pad %d to block %i "
4027 "(via cleanup_empty_eh).\n",
4028 lp
->index
, e_out
->dest
->index
);
4035 /* Return true if edge E_FIRST is part of an empty infinite loop
4036 or leads to such a loop through a series of single successor
4040 infinite_empty_loop_p (edge e_first
)
4042 bool inf_loop
= false;
4045 if (e_first
->dest
== e_first
->src
)
4048 e_first
->src
->aux
= (void *) 1;
4049 for (e
= e_first
; single_succ_p (e
->dest
); e
= single_succ_edge (e
->dest
))
4051 gimple_stmt_iterator gsi
;
4057 e
->dest
->aux
= (void *) 1;
4058 gsi
= gsi_after_labels (e
->dest
);
4059 if (!gsi_end_p (gsi
) && is_gimple_debug (gsi_stmt (gsi
)))
4060 gsi_next_nondebug (&gsi
);
4061 if (!gsi_end_p (gsi
))
4064 e_first
->src
->aux
= NULL
;
4065 for (e
= e_first
; e
->dest
->aux
; e
= single_succ_edge (e
->dest
))
4066 e
->dest
->aux
= NULL
;
4071 /* Examine the block associated with LP to determine if it's an empty
4072 handler for its EH region. If so, attempt to redirect EH edges to
4073 an outer region. Return true the CFG was updated in any way. This
4074 is similar to jump forwarding, just across EH edges. */
4077 cleanup_empty_eh (eh_landing_pad lp
)
4079 basic_block bb
= label_to_block (lp
->post_landing_pad
);
4080 gimple_stmt_iterator gsi
;
4082 eh_region new_region
;
4085 bool has_non_eh_pred
;
4089 /* There can be zero or one edges out of BB. This is the quickest test. */
4090 switch (EDGE_COUNT (bb
->succs
))
4096 e_out
= EDGE_SUCC (bb
, 0);
4102 resx
= last_stmt (bb
);
4103 if (resx
&& is_gimple_resx (resx
))
4105 if (stmt_can_throw_external (resx
))
4106 optimize_clobbers (bb
);
4107 else if (sink_clobbers (bb
))
4111 gsi
= gsi_after_labels (bb
);
4113 /* Make sure to skip debug statements. */
4114 if (!gsi_end_p (gsi
) && is_gimple_debug (gsi_stmt (gsi
)))
4115 gsi_next_nondebug (&gsi
);
4117 /* If the block is totally empty, look for more unsplitting cases. */
4118 if (gsi_end_p (gsi
))
4120 /* For the degenerate case of an infinite loop bail out. */
4121 if (infinite_empty_loop_p (e_out
))
4124 return ret
| cleanup_empty_eh_unsplit (bb
, e_out
, lp
);
4127 /* The block should consist only of a single RESX statement, modulo a
4128 preceding call to __builtin_stack_restore if there is no outgoing
4129 edge, since the call can be eliminated in this case. */
4130 resx
= gsi_stmt (gsi
);
4131 if (!e_out
&& gimple_call_builtin_p (resx
, BUILT_IN_STACK_RESTORE
))
4134 resx
= gsi_stmt (gsi
);
4136 if (!is_gimple_resx (resx
))
4138 gcc_assert (gsi_one_before_end_p (gsi
));
4140 /* Determine if there are non-EH edges, or resx edges into the handler. */
4141 has_non_eh_pred
= false;
4142 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
4143 if (!(e
->flags
& EDGE_EH
))
4144 has_non_eh_pred
= true;
4146 /* Find the handler that's outer of the empty handler by looking at
4147 where the RESX instruction was vectored. */
4148 new_lp_nr
= lookup_stmt_eh_lp (resx
);
4149 new_region
= get_eh_region_from_lp_number (new_lp_nr
);
4151 /* If there's no destination region within the current function,
4152 redirection is trivial via removing the throwing statements from
4153 the EH region, removing the EH edges, and allowing the block
4154 to go unreachable. */
4155 if (new_region
== NULL
)
4157 gcc_assert (e_out
== NULL
);
4158 for (ei
= ei_start (bb
->preds
); (e
= ei_safe_edge (ei
)); )
4159 if (e
->flags
& EDGE_EH
)
4161 gimple stmt
= last_stmt (e
->src
);
4162 remove_stmt_from_eh_lp (stmt
);
4170 /* If the destination region is a MUST_NOT_THROW, allow the runtime
4171 to handle the abort and allow the blocks to go unreachable. */
4172 if (new_region
->type
== ERT_MUST_NOT_THROW
)
4174 for (ei
= ei_start (bb
->preds
); (e
= ei_safe_edge (ei
)); )
4175 if (e
->flags
& EDGE_EH
)
4177 gimple stmt
= last_stmt (e
->src
);
4178 remove_stmt_from_eh_lp (stmt
);
4179 add_stmt_to_eh_lp (stmt
, new_lp_nr
);
4187 /* Try to redirect the EH edges and merge the PHIs into the destination
4188 landing pad block. If the merge succeeds, we'll already have redirected
4189 all the EH edges. The handler itself will go unreachable if there were
4191 if (cleanup_empty_eh_merge_phis (e_out
->dest
, bb
, e_out
, true))
4194 /* Finally, if all input edges are EH edges, then we can (potentially)
4195 reduce the number of transfers from the runtime by moving the landing
4196 pad from the original region to the new region. This is a win when
4197 we remove the last CLEANUP region along a particular exception
4198 propagation path. Since nothing changes except for the region with
4199 which the landing pad is associated, the PHI nodes do not need to be
4201 if (!has_non_eh_pred
)
4203 cleanup_empty_eh_move_lp (bb
, e_out
, lp
, new_region
);
4204 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4205 fprintf (dump_file
, "Empty EH handler %i moved to EH region %i.\n",
4206 lp
->index
, new_region
->index
);
4208 /* ??? The CFG didn't change, but we may have rendered the
4209 old EH region unreachable. Trigger a cleanup there. */
4216 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4217 fprintf (dump_file
, "Empty EH handler %i removed.\n", lp
->index
);
4218 remove_eh_landing_pad (lp
);
4222 /* Do a post-order traversal of the EH region tree. Examine each
4223 post_landing_pad block and see if we can eliminate it as empty. */
4226 cleanup_all_empty_eh (void)
4228 bool changed
= false;
4232 for (i
= 1; VEC_iterate (eh_landing_pad
, cfun
->eh
->lp_array
, i
, lp
); ++i
)
4234 changed
|= cleanup_empty_eh (lp
);
4239 /* Perform cleanups and lowering of exception handling
4240 1) cleanups regions with handlers doing nothing are optimized out
4241 2) MUST_NOT_THROW regions that became dead because of 1) are optimized out
4242 3) Info about regions that are containing instructions, and regions
4243 reachable via local EH edges is collected
4244 4) Eh tree is pruned for regions no longer neccesary.
4246 TODO: Push MUST_NOT_THROW regions to the root of the EH tree.
4247 Unify those that have the same failure decl and locus.
4251 execute_cleanup_eh_1 (void)
4253 /* Do this first: unsplit_all_eh and cleanup_all_empty_eh can die
4254 looking up unreachable landing pads. */
4255 remove_unreachable_handlers ();
4257 /* Watch out for the region tree vanishing due to all unreachable. */
4258 if (cfun
->eh
->region_tree
&& optimize
)
4260 bool changed
= false;
4262 changed
|= unsplit_all_eh ();
4263 changed
|= cleanup_all_empty_eh ();
4267 free_dominance_info (CDI_DOMINATORS
);
4268 free_dominance_info (CDI_POST_DOMINATORS
);
4270 /* We delayed all basic block deletion, as we may have performed
4271 cleanups on EH edges while non-EH edges were still present. */
4272 delete_unreachable_blocks ();
4274 /* We manipulated the landing pads. Remove any region that no
4275 longer has a landing pad. */
4276 remove_unreachable_handlers_no_lp ();
4278 return TODO_cleanup_cfg
| TODO_update_ssa_only_virtuals
;
4286 execute_cleanup_eh (void)
4288 int ret
= execute_cleanup_eh_1 ();
4290 /* If the function no longer needs an EH personality routine
4291 clear it. This exposes cross-language inlining opportunities
4292 and avoids references to a never defined personality routine. */
4293 if (DECL_FUNCTION_PERSONALITY (current_function_decl
)
4294 && function_needs_eh_personality (cfun
) != eh_personality_lang
)
4295 DECL_FUNCTION_PERSONALITY (current_function_decl
) = NULL_TREE
;
4301 gate_cleanup_eh (void)
4303 return cfun
->eh
!= NULL
&& cfun
->eh
->region_tree
!= NULL
;
4306 struct gimple_opt_pass pass_cleanup_eh
= {
4309 "ehcleanup", /* name */
4310 gate_cleanup_eh
, /* gate */
4311 execute_cleanup_eh
, /* execute */
4314 0, /* static_pass_number */
4315 TV_TREE_EH
, /* tv_id */
4316 PROP_gimple_lcf
, /* properties_required */
4317 0, /* properties_provided */
4318 0, /* properties_destroyed */
4319 0, /* todo_flags_start */
4320 0 /* todo_flags_finish */
4324 /* Verify that BB containing STMT as the last statement, has precisely the
4325 edge that make_eh_edges would create. */
4328 verify_eh_edges (gimple stmt
)
4330 basic_block bb
= gimple_bb (stmt
);
4331 eh_landing_pad lp
= NULL
;
4336 lp_nr
= lookup_stmt_eh_lp (stmt
);
4338 lp
= get_eh_landing_pad_from_number (lp_nr
);
4341 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
4343 if (e
->flags
& EDGE_EH
)
4347 error ("BB %i has multiple EH edges", bb
->index
);
4359 error ("BB %i can not throw but has an EH edge", bb
->index
);
4365 if (!stmt_could_throw_p (stmt
))
4367 error ("BB %i last statement has incorrectly set lp", bb
->index
);
4371 if (eh_edge
== NULL
)
4373 error ("BB %i is missing an EH edge", bb
->index
);
4377 if (eh_edge
->dest
!= label_to_block (lp
->post_landing_pad
))
4379 error ("Incorrect EH edge %i->%i", bb
->index
, eh_edge
->dest
->index
);
4386 /* Similarly, but handle GIMPLE_EH_DISPATCH specifically. */
4389 verify_eh_dispatch_edge (gimple stmt
)
4393 basic_block src
, dst
;
4394 bool want_fallthru
= true;
4398 r
= get_eh_region_from_number (gimple_eh_dispatch_region (stmt
));
4399 src
= gimple_bb (stmt
);
4401 FOR_EACH_EDGE (e
, ei
, src
->succs
)
4402 gcc_assert (e
->aux
== NULL
);
4407 for (c
= r
->u
.eh_try
.first_catch
; c
; c
= c
->next_catch
)
4409 dst
= label_to_block (c
->label
);
4410 e
= find_edge (src
, dst
);
4413 error ("BB %i is missing an edge", src
->index
);
4418 /* A catch-all handler doesn't have a fallthru. */
4419 if (c
->type_list
== NULL
)
4421 want_fallthru
= false;
4427 case ERT_ALLOWED_EXCEPTIONS
:
4428 dst
= label_to_block (r
->u
.allowed
.label
);
4429 e
= find_edge (src
, dst
);
4432 error ("BB %i is missing an edge", src
->index
);
4443 FOR_EACH_EDGE (e
, ei
, src
->succs
)
4445 if (e
->flags
& EDGE_FALLTHRU
)
4447 if (fall_edge
!= NULL
)
4449 error ("BB %i too many fallthru edges", src
->index
);
4458 error ("BB %i has incorrect edge", src
->index
);
4462 if ((fall_edge
!= NULL
) ^ want_fallthru
)
4464 error ("BB %i has incorrect fallthru edge", src
->index
);