]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/tree-eh.c
Fix double word typos.
[thirdparty/gcc.git] / gcc / tree-eh.c
CommitLineData
6de9cd9a 1/* Exception handling semantics and decomposition for trees.
5624e564 2 Copyright (C) 2003-2015 Free Software Foundation, Inc.
6de9cd9a
DN
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
9dcd6f09 8the Free Software Foundation; either version 3, or (at your option)
6de9cd9a
DN
9any later version.
10
11GCC is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
9dcd6f09
NC
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
6de9cd9a
DN
19
20#include "config.h"
21#include "system.h"
22#include "coretypes.h"
c7131fb2 23#include "backend.h"
9fdcd34e 24#include "cfghooks.h"
6de9cd9a 25#include "tree.h"
c7131fb2 26#include "gimple.h"
36566b39 27#include "rtl.h"
c7131fb2
AM
28#include "ssa.h"
29#include "alias.h"
30#include "fold-const.h"
36566b39 31#include "flags.h"
36566b39
PK
32#include "insn-config.h"
33#include "expmed.h"
34#include "dojump.h"
35#include "explow.h"
36#include "calls.h"
37#include "emit-rtl.h"
38#include "varasm.h"
39#include "stmt.h"
40#include "expr.h"
6de9cd9a 41#include "except.h"
60393bbc
AM
42#include "cfganal.h"
43#include "cfgcleanup.h"
2fb9a547
AM
44#include "internal-fn.h"
45#include "tree-eh.h"
5be5c238 46#include "gimple-iterator.h"
442b4905
AM
47#include "cgraph.h"
48#include "tree-cfg.h"
442b4905 49#include "tree-into-ssa.h"
7a300452 50#include "tree-ssa.h"
6de9cd9a 51#include "tree-inline.h"
6de9cd9a 52#include "tree-pass.h"
6de9cd9a 53#include "langhooks.h"
718f9c0f 54#include "diagnostic-core.h"
1d65f45c 55#include "target.h"
7d776ee2 56#include "cfgloop.h"
4484a35a 57#include "gimple-low.h"
726a989a
RB
58
59/* In some instances a tree and a gimple need to be stored in a same table,
60 i.e. in hash tables. This is a structure to do this. */
61typedef union {tree *tp; tree t; gimple g;} treemple;
6de9cd9a 62
6de9cd9a
DN
63/* Misc functions used in this file. */
64
1d65f45c 65/* Remember and lookup EH landing pad data for arbitrary statements.
6de9cd9a
DN
66 Really this means any statement that could_throw_p. We could
67 stuff this information into the stmt_ann data structure, but:
68
69 (1) We absolutely rely on this information being kept until
70 we get to rtl. Once we're done with lowering here, if we lose
71 the information there's no way to recover it!
72
19114537 73 (2) There are many more statements that *cannot* throw as
6de9cd9a
DN
74 compared to those that can. We should be saving some amount
75 of space by only allocating memory for those that can throw. */
76
1d65f45c 77/* Add statement T in function IFUN to landing pad NUM. */
726a989a 78
481d1b81 79static void
1d65f45c 80add_stmt_to_eh_lp_fn (struct function *ifun, gimple t, int num)
6de9cd9a 81{
1d65f45c 82 gcc_assert (num != 0);
6de9cd9a 83
98f464e0 84 if (!get_eh_throw_stmt_table (ifun))
b086d530 85 set_eh_throw_stmt_table (ifun, hash_map<gimple, int>::create_ggc (31));
98f464e0 86
b086d530 87 gcc_assert (!get_eh_throw_stmt_table (ifun)->put (t, num));
6de9cd9a 88}
1eaba2f2 89
1d65f45c 90/* Add statement T in the current function (cfun) to EH landing pad NUM. */
726a989a 91
b4660e5a 92void
1d65f45c 93add_stmt_to_eh_lp (gimple t, int num)
b4660e5a 94{
1d65f45c
RH
95 add_stmt_to_eh_lp_fn (cfun, t, num);
96}
97
98/* Add statement T to the single EH landing pad in REGION. */
99
100static void
101record_stmt_eh_region (eh_region region, gimple t)
102{
103 if (region == NULL)
104 return;
105 if (region->type == ERT_MUST_NOT_THROW)
106 add_stmt_to_eh_lp_fn (cfun, t, -region->index);
107 else
108 {
109 eh_landing_pad lp = region->landing_pads;
110 if (lp == NULL)
111 lp = gen_eh_landing_pad (region);
112 else
113 gcc_assert (lp->next_lp == NULL);
114 add_stmt_to_eh_lp_fn (cfun, t, lp->index);
115 }
b4660e5a
JH
116}
117
726a989a 118
1d65f45c 119/* Remove statement T in function IFUN from its EH landing pad. */
726a989a 120
1eaba2f2 121bool
1d65f45c 122remove_stmt_from_eh_lp_fn (struct function *ifun, gimple t)
1eaba2f2 123{
b4660e5a 124 if (!get_eh_throw_stmt_table (ifun))
1eaba2f2
RH
125 return false;
126
b086d530 127 if (!get_eh_throw_stmt_table (ifun)->get (t))
1eaba2f2 128 return false;
b086d530
TS
129
130 get_eh_throw_stmt_table (ifun)->remove (t);
131 return true;
1eaba2f2
RH
132}
133
726a989a 134
1d65f45c
RH
135/* Remove statement T in the current function (cfun) from its
136 EH landing pad. */
726a989a 137
b4660e5a 138bool
1d65f45c 139remove_stmt_from_eh_lp (gimple t)
b4660e5a 140{
1d65f45c 141 return remove_stmt_from_eh_lp_fn (cfun, t);
b4660e5a
JH
142}
143
726a989a 144/* Determine if statement T is inside an EH region in function IFUN.
1d65f45c
RH
145 Positive numbers indicate a landing pad index; negative numbers
146 indicate a MUST_NOT_THROW region index; zero indicates that the
147 statement is not recorded in the region table. */
726a989a 148
6de9cd9a 149int
1d65f45c 150lookup_stmt_eh_lp_fn (struct function *ifun, gimple t)
6de9cd9a 151{
1d65f45c
RH
152 if (ifun->eh->throw_stmt_table == NULL)
153 return 0;
6de9cd9a 154
b086d530
TS
155 int *lp_nr = ifun->eh->throw_stmt_table->get (t);
156 return lp_nr ? *lp_nr : 0;
6de9cd9a
DN
157}
158
1d65f45c 159/* Likewise, but always use the current function. */
726a989a 160
b4660e5a 161int
1d65f45c 162lookup_stmt_eh_lp (gimple t)
b4660e5a
JH
163{
164 /* We can get called from initialized data when -fnon-call-exceptions
165 is on; prevent crash. */
166 if (!cfun)
1d65f45c
RH
167 return 0;
168 return lookup_stmt_eh_lp_fn (cfun, t);
b4660e5a 169}
6de9cd9a 170
726a989a 171/* First pass of EH node decomposition. Build up a tree of GIMPLE_TRY_FINALLY
6de9cd9a
DN
172 nodes and LABEL_DECL nodes. We will use this during the second phase to
173 determine if a goto leaves the body of a TRY_FINALLY_EXPR node. */
174
175struct finally_tree_node
176{
726a989a
RB
177 /* When storing a GIMPLE_TRY, we have to record a gimple. However
178 when deciding whether a GOTO to a certain LABEL_DECL (which is a
179 tree) leaves the TRY block, its necessary to record a tree in
180 this field. Thus a treemple is used. */
1d65f45c 181 treemple child;
538dd0b7 182 gtry *parent;
6de9cd9a
DN
183};
184
4a8fb1a1
LC
185/* Hashtable helpers. */
186
95fbe13e 187struct finally_tree_hasher : free_ptr_hash <finally_tree_node>
4a8fb1a1 188{
67f58944
TS
189 static inline hashval_t hash (const finally_tree_node *);
190 static inline bool equal (const finally_tree_node *,
191 const finally_tree_node *);
4a8fb1a1
LC
192};
193
194inline hashval_t
67f58944 195finally_tree_hasher::hash (const finally_tree_node *v)
4a8fb1a1
LC
196{
197 return (intptr_t)v->child.t >> 4;
198}
199
200inline bool
67f58944
TS
201finally_tree_hasher::equal (const finally_tree_node *v,
202 const finally_tree_node *c)
4a8fb1a1
LC
203{
204 return v->child.t == c->child.t;
205}
206
6de9cd9a 207/* Note that this table is *not* marked GTY. It is short-lived. */
c203e8a7 208static hash_table<finally_tree_hasher> *finally_tree;
6de9cd9a
DN
209
210static void
538dd0b7 211record_in_finally_tree (treemple child, gtry *parent)
6de9cd9a
DN
212{
213 struct finally_tree_node *n;
4a8fb1a1 214 finally_tree_node **slot;
6de9cd9a 215
858904db 216 n = XNEW (struct finally_tree_node);
6de9cd9a
DN
217 n->child = child;
218 n->parent = parent;
219
c203e8a7 220 slot = finally_tree->find_slot (n, INSERT);
1e128c5f 221 gcc_assert (!*slot);
6de9cd9a
DN
222 *slot = n;
223}
224
225static void
538dd0b7 226collect_finally_tree (gimple stmt, gtry *region);
726a989a 227
1d65f45c 228/* Go through the gimple sequence. Works with collect_finally_tree to
726a989a
RB
229 record all GIMPLE_LABEL and GIMPLE_TRY statements. */
230
231static void
538dd0b7 232collect_finally_tree_1 (gimple_seq seq, gtry *region)
6de9cd9a 233{
726a989a 234 gimple_stmt_iterator gsi;
6de9cd9a 235
726a989a
RB
236 for (gsi = gsi_start (seq); !gsi_end_p (gsi); gsi_next (&gsi))
237 collect_finally_tree (gsi_stmt (gsi), region);
238}
6de9cd9a 239
726a989a 240static void
538dd0b7 241collect_finally_tree (gimple stmt, gtry *region)
726a989a
RB
242{
243 treemple temp;
244
245 switch (gimple_code (stmt))
246 {
247 case GIMPLE_LABEL:
538dd0b7 248 temp.t = gimple_label_label (as_a <glabel *> (stmt));
726a989a
RB
249 record_in_finally_tree (temp, region);
250 break;
6de9cd9a 251
726a989a
RB
252 case GIMPLE_TRY:
253 if (gimple_try_kind (stmt) == GIMPLE_TRY_FINALLY)
254 {
255 temp.g = stmt;
256 record_in_finally_tree (temp, region);
538dd0b7
DM
257 collect_finally_tree_1 (gimple_try_eval (stmt),
258 as_a <gtry *> (stmt));
726a989a
RB
259 collect_finally_tree_1 (gimple_try_cleanup (stmt), region);
260 }
261 else if (gimple_try_kind (stmt) == GIMPLE_TRY_CATCH)
262 {
263 collect_finally_tree_1 (gimple_try_eval (stmt), region);
264 collect_finally_tree_1 (gimple_try_cleanup (stmt), region);
265 }
266 break;
6de9cd9a 267
726a989a 268 case GIMPLE_CATCH:
538dd0b7
DM
269 collect_finally_tree_1 (gimple_catch_handler (
270 as_a <gcatch *> (stmt)),
271 region);
726a989a 272 break;
6de9cd9a 273
726a989a
RB
274 case GIMPLE_EH_FILTER:
275 collect_finally_tree_1 (gimple_eh_filter_failure (stmt), region);
6de9cd9a
DN
276 break;
277
0a35513e 278 case GIMPLE_EH_ELSE:
538dd0b7
DM
279 {
280 geh_else *eh_else_stmt = as_a <geh_else *> (stmt);
281 collect_finally_tree_1 (gimple_eh_else_n_body (eh_else_stmt), region);
282 collect_finally_tree_1 (gimple_eh_else_e_body (eh_else_stmt), region);
283 }
0a35513e
AH
284 break;
285
6de9cd9a
DN
286 default:
287 /* A type, a decl, or some kind of statement that we're not
288 interested in. Don't walk them. */
289 break;
290 }
291}
292
726a989a 293
6de9cd9a
DN
294/* Use the finally tree to determine if a jump from START to TARGET
295 would leave the try_finally node that START lives in. */
296
297static bool
726a989a 298outside_finally_tree (treemple start, gimple target)
6de9cd9a
DN
299{
300 struct finally_tree_node n, *p;
301
302 do
303 {
304 n.child = start;
c203e8a7 305 p = finally_tree->find (&n);
6de9cd9a
DN
306 if (!p)
307 return true;
726a989a 308 start.g = p->parent;
6de9cd9a 309 }
726a989a 310 while (start.g != target);
6de9cd9a
DN
311
312 return false;
313}
726a989a
RB
314
315/* Second pass of EH node decomposition. Actually transform the GIMPLE_TRY
316 nodes into a set of gotos, magic labels, and eh regions.
6de9cd9a
DN
317 The eh region creation is straight-forward, but frobbing all the gotos
318 and such into shape isn't. */
319
b8698a0f 320/* The sequence into which we record all EH stuff. This will be
1d65f45c
RH
321 placed at the end of the function when we're all done. */
322static gimple_seq eh_seq;
323
324/* Record whether an EH region contains something that can throw,
325 indexed by EH region number. */
b7da9fd4 326static bitmap eh_region_may_contain_throw_map;
1d65f45c 327
026c3cfd 328/* The GOTO_QUEUE is an array of GIMPLE_GOTO and GIMPLE_RETURN
24b97832
ILT
329 statements that are seen to escape this GIMPLE_TRY_FINALLY node.
330 The idea is to record a gimple statement for everything except for
331 the conditionals, which get their labels recorded. Since labels are
332 of type 'tree', we need this node to store both gimple and tree
333 objects. REPL_STMT is the sequence used to replace the goto/return
334 statement. CONT_STMT is used to store the statement that allows
335 the return/goto to jump to the original destination. */
336
337struct goto_queue_node
338{
339 treemple stmt;
820055a0 340 location_t location;
24b97832
ILT
341 gimple_seq repl_stmt;
342 gimple cont_stmt;
343 int index;
344 /* This is used when index >= 0 to indicate that stmt is a label (as
345 opposed to a goto stmt). */
346 int is_label;
347};
348
6de9cd9a
DN
349/* State of the world while lowering. */
350
351struct leh_state
352{
19114537 353 /* What's "current" while constructing the eh region tree. These
6de9cd9a
DN
354 correspond to variables of the same name in cfun->eh, which we
355 don't have easy access to. */
1d65f45c
RH
356 eh_region cur_region;
357
358 /* What's "current" for the purposes of __builtin_eh_pointer. For
359 a CATCH, this is the associated TRY. For an EH_FILTER, this is
360 the associated ALLOWED_EXCEPTIONS, etc. */
361 eh_region ehp_region;
6de9cd9a
DN
362
363 /* Processing of TRY_FINALLY requires a bit more state. This is
364 split out into a separate structure so that we don't have to
365 copy so much when processing other nodes. */
366 struct leh_tf_state *tf;
367};
368
369struct leh_tf_state
370{
726a989a
RB
371 /* Pointer to the GIMPLE_TRY_FINALLY node under discussion. The
372 try_finally_expr is the original GIMPLE_TRY_FINALLY. We need to retain
373 this so that outside_finally_tree can reliably reference the tree used
374 in the collect_finally_tree data structures. */
538dd0b7
DM
375 gtry *try_finally_expr;
376 gtry *top_p;
1d65f45c 377
726a989a
RB
378 /* While lowering a top_p usually it is expanded into multiple statements,
379 thus we need the following field to store them. */
380 gimple_seq top_p_seq;
6de9cd9a
DN
381
382 /* The state outside this try_finally node. */
383 struct leh_state *outer;
384
385 /* The exception region created for it. */
1d65f45c 386 eh_region region;
6de9cd9a 387
24b97832
ILT
388 /* The goto queue. */
389 struct goto_queue_node *goto_queue;
6de9cd9a
DN
390 size_t goto_queue_size;
391 size_t goto_queue_active;
392
fa10beec 393 /* Pointer map to help in searching goto_queue when it is large. */
b787e7a2 394 hash_map<gimple, goto_queue_node *> *goto_queue_map;
0f547d3d 395
6de9cd9a 396 /* The set of unique labels seen as entries in the goto queue. */
9771b263 397 vec<tree> dest_array;
6de9cd9a
DN
398
399 /* A label to be added at the end of the completed transformed
400 sequence. It will be set if may_fallthru was true *at one time*,
401 though subsequent transformations may have cleared that flag. */
402 tree fallthru_label;
403
6de9cd9a
DN
404 /* True if it is possible to fall out the bottom of the try block.
405 Cleared if the fallthru is converted to a goto. */
406 bool may_fallthru;
407
726a989a 408 /* True if any entry in goto_queue is a GIMPLE_RETURN. */
6de9cd9a
DN
409 bool may_return;
410
411 /* True if the finally block can receive an exception edge.
412 Cleared if the exception case is handled by code duplication. */
413 bool may_throw;
414};
415
538dd0b7 416static gimple_seq lower_eh_must_not_throw (struct leh_state *, gtry *);
6de9cd9a 417
6de9cd9a
DN
418/* Search for STMT in the goto queue. Return the replacement,
419 or null if the statement isn't in the queue. */
420
0f547d3d
SE
421#define LARGE_GOTO_QUEUE 20
422
355a7673 423static void lower_eh_constructs_1 (struct leh_state *state, gimple_seq *seq);
726a989a
RB
424
425static gimple_seq
426find_goto_replacement (struct leh_tf_state *tf, treemple stmt)
6de9cd9a 427{
0f547d3d 428 unsigned int i;
0f547d3d
SE
429
430 if (tf->goto_queue_active < LARGE_GOTO_QUEUE)
431 {
432 for (i = 0; i < tf->goto_queue_active; i++)
726a989a 433 if ( tf->goto_queue[i].stmt.g == stmt.g)
0f547d3d
SE
434 return tf->goto_queue[i].repl_stmt;
435 return NULL;
436 }
437
438 /* If we have a large number of entries in the goto_queue, create a
439 pointer map and use that for searching. */
440
441 if (!tf->goto_queue_map)
442 {
b787e7a2 443 tf->goto_queue_map = new hash_map<gimple, goto_queue_node *>;
0f547d3d
SE
444 for (i = 0; i < tf->goto_queue_active; i++)
445 {
b787e7a2
TS
446 bool existed = tf->goto_queue_map->put (tf->goto_queue[i].stmt.g,
447 &tf->goto_queue[i]);
448 gcc_assert (!existed);
0f547d3d
SE
449 }
450 }
451
b787e7a2 452 goto_queue_node **slot = tf->goto_queue_map->get (stmt.g);
0f547d3d 453 if (slot != NULL)
b787e7a2 454 return ((*slot)->repl_stmt);
0f547d3d
SE
455
456 return NULL;
6de9cd9a
DN
457}
458
459/* A subroutine of replace_goto_queue_1. Handles the sub-clauses of a
726a989a 460 lowered GIMPLE_COND. If, by chance, the replacement is a simple goto,
6de9cd9a 461 then we can just splat it in, otherwise we add the new stmts immediately
726a989a 462 after the GIMPLE_COND and redirect. */
6de9cd9a
DN
463
464static void
465replace_goto_queue_cond_clause (tree *tp, struct leh_tf_state *tf,
726a989a 466 gimple_stmt_iterator *gsi)
6de9cd9a 467{
726a989a 468 tree label;
82d6e6fc 469 gimple_seq new_seq;
726a989a 470 treemple temp;
c2255bc4 471 location_t loc = gimple_location (gsi_stmt (*gsi));
6de9cd9a 472
726a989a 473 temp.tp = tp;
82d6e6fc
KG
474 new_seq = find_goto_replacement (tf, temp);
475 if (!new_seq)
6de9cd9a
DN
476 return;
477
82d6e6fc
KG
478 if (gimple_seq_singleton_p (new_seq)
479 && gimple_code (gimple_seq_first_stmt (new_seq)) == GIMPLE_GOTO)
6de9cd9a 480 {
82d6e6fc 481 *tp = gimple_goto_dest (gimple_seq_first_stmt (new_seq));
6de9cd9a
DN
482 return;
483 }
484
c2255bc4 485 label = create_artificial_label (loc);
726a989a
RB
486 /* Set the new label for the GIMPLE_COND */
487 *tp = label;
6de9cd9a 488
726a989a 489 gsi_insert_after (gsi, gimple_build_label (label), GSI_CONTINUE_LINKING);
82d6e6fc 490 gsi_insert_seq_after (gsi, gimple_seq_copy (new_seq), GSI_CONTINUE_LINKING);
6de9cd9a
DN
491}
492
19114537 493/* The real work of replace_goto_queue. Returns with TSI updated to
6de9cd9a
DN
494 point to the next statement. */
495
355a7673 496static void replace_goto_queue_stmt_list (gimple_seq *, struct leh_tf_state *);
6de9cd9a
DN
497
498static void
726a989a
RB
499replace_goto_queue_1 (gimple stmt, struct leh_tf_state *tf,
500 gimple_stmt_iterator *gsi)
6de9cd9a 501{
726a989a
RB
502 gimple_seq seq;
503 treemple temp;
504 temp.g = NULL;
505
506 switch (gimple_code (stmt))
6de9cd9a 507 {
726a989a
RB
508 case GIMPLE_GOTO:
509 case GIMPLE_RETURN:
510 temp.g = stmt;
511 seq = find_goto_replacement (tf, temp);
512 if (seq)
6de9cd9a 513 {
726a989a
RB
514 gsi_insert_seq_before (gsi, gimple_seq_copy (seq), GSI_SAME_STMT);
515 gsi_remove (gsi, false);
6de9cd9a
DN
516 return;
517 }
518 break;
519
726a989a
RB
520 case GIMPLE_COND:
521 replace_goto_queue_cond_clause (gimple_op_ptr (stmt, 2), tf, gsi);
522 replace_goto_queue_cond_clause (gimple_op_ptr (stmt, 3), tf, gsi);
6de9cd9a
DN
523 break;
524
726a989a 525 case GIMPLE_TRY:
355a7673
MM
526 replace_goto_queue_stmt_list (gimple_try_eval_ptr (stmt), tf);
527 replace_goto_queue_stmt_list (gimple_try_cleanup_ptr (stmt), tf);
6de9cd9a 528 break;
726a989a 529 case GIMPLE_CATCH:
538dd0b7
DM
530 replace_goto_queue_stmt_list (gimple_catch_handler_ptr (
531 as_a <gcatch *> (stmt)),
532 tf);
6de9cd9a 533 break;
726a989a 534 case GIMPLE_EH_FILTER:
355a7673 535 replace_goto_queue_stmt_list (gimple_eh_filter_failure_ptr (stmt), tf);
6de9cd9a 536 break;
0a35513e 537 case GIMPLE_EH_ELSE:
538dd0b7
DM
538 {
539 geh_else *eh_else_stmt = as_a <geh_else *> (stmt);
540 replace_goto_queue_stmt_list (gimple_eh_else_n_body_ptr (eh_else_stmt),
541 tf);
542 replace_goto_queue_stmt_list (gimple_eh_else_e_body_ptr (eh_else_stmt),
543 tf);
544 }
0a35513e 545 break;
6de9cd9a 546
6de9cd9a
DN
547 default:
548 /* These won't have gotos in them. */
549 break;
550 }
551
726a989a 552 gsi_next (gsi);
6de9cd9a
DN
553}
554
726a989a 555/* A subroutine of replace_goto_queue. Handles GIMPLE_SEQ. */
6de9cd9a
DN
556
557static void
355a7673 558replace_goto_queue_stmt_list (gimple_seq *seq, struct leh_tf_state *tf)
6de9cd9a 559{
355a7673 560 gimple_stmt_iterator gsi = gsi_start (*seq);
726a989a
RB
561
562 while (!gsi_end_p (gsi))
563 replace_goto_queue_1 (gsi_stmt (gsi), tf, &gsi);
6de9cd9a
DN
564}
565
566/* Replace all goto queue members. */
567
568static void
569replace_goto_queue (struct leh_tf_state *tf)
570{
8287d24a
EB
571 if (tf->goto_queue_active == 0)
572 return;
355a7673
MM
573 replace_goto_queue_stmt_list (&tf->top_p_seq, tf);
574 replace_goto_queue_stmt_list (&eh_seq, tf);
6de9cd9a
DN
575}
576
726a989a
RB
577/* Add a new record to the goto queue contained in TF. NEW_STMT is the
578 data to be added, IS_LABEL indicates whether NEW_STMT is a label or
579 a gimple return. */
6de9cd9a
DN
580
581static void
726a989a
RB
582record_in_goto_queue (struct leh_tf_state *tf,
583 treemple new_stmt,
584 int index,
820055a0
DC
585 bool is_label,
586 location_t location)
6de9cd9a 587{
6de9cd9a 588 size_t active, size;
726a989a 589 struct goto_queue_node *q;
6de9cd9a 590
0f547d3d
SE
591 gcc_assert (!tf->goto_queue_map);
592
6de9cd9a
DN
593 active = tf->goto_queue_active;
594 size = tf->goto_queue_size;
595 if (active >= size)
596 {
597 size = (size ? size * 2 : 32);
598 tf->goto_queue_size = size;
599 tf->goto_queue
858904db 600 = XRESIZEVEC (struct goto_queue_node, tf->goto_queue, size);
6de9cd9a
DN
601 }
602
603 q = &tf->goto_queue[active];
604 tf->goto_queue_active = active + 1;
19114537 605
6de9cd9a 606 memset (q, 0, sizeof (*q));
726a989a 607 q->stmt = new_stmt;
6de9cd9a 608 q->index = index;
820055a0 609 q->location = location;
726a989a
RB
610 q->is_label = is_label;
611}
612
613/* Record the LABEL label in the goto queue contained in TF.
614 TF is not null. */
615
616static void
820055a0
DC
617record_in_goto_queue_label (struct leh_tf_state *tf, treemple stmt, tree label,
618 location_t location)
726a989a
RB
619{
620 int index;
621 treemple temp, new_stmt;
622
623 if (!label)
624 return;
625
626 /* Computed and non-local gotos do not get processed. Given
627 their nature we can neither tell whether we've escaped the
628 finally block nor redirect them if we knew. */
629 if (TREE_CODE (label) != LABEL_DECL)
630 return;
631
632 /* No need to record gotos that don't leave the try block. */
633 temp.t = label;
634 if (!outside_finally_tree (temp, tf->try_finally_expr))
635 return;
636
9771b263 637 if (! tf->dest_array.exists ())
726a989a 638 {
9771b263
DN
639 tf->dest_array.create (10);
640 tf->dest_array.quick_push (label);
726a989a
RB
641 index = 0;
642 }
643 else
644 {
9771b263 645 int n = tf->dest_array.length ();
726a989a 646 for (index = 0; index < n; ++index)
9771b263 647 if (tf->dest_array[index] == label)
726a989a
RB
648 break;
649 if (index == n)
9771b263 650 tf->dest_array.safe_push (label);
726a989a
RB
651 }
652
653 /* In the case of a GOTO we want to record the destination label,
654 since with a GIMPLE_COND we have an easy access to the then/else
655 labels. */
656 new_stmt = stmt;
820055a0 657 record_in_goto_queue (tf, new_stmt, index, true, location);
726a989a
RB
658}
659
660/* For any GIMPLE_GOTO or GIMPLE_RETURN, decide whether it leaves a try_finally
661 node, and if so record that fact in the goto queue associated with that
662 try_finally node. */
663
664static void
665maybe_record_in_goto_queue (struct leh_state *state, gimple stmt)
666{
667 struct leh_tf_state *tf = state->tf;
668 treemple new_stmt;
669
670 if (!tf)
671 return;
672
673 switch (gimple_code (stmt))
674 {
675 case GIMPLE_COND:
538dd0b7
DM
676 {
677 gcond *cond_stmt = as_a <gcond *> (stmt);
678 new_stmt.tp = gimple_op_ptr (cond_stmt, 2);
679 record_in_goto_queue_label (tf, new_stmt,
680 gimple_cond_true_label (cond_stmt),
681 EXPR_LOCATION (*new_stmt.tp));
682 new_stmt.tp = gimple_op_ptr (cond_stmt, 3);
683 record_in_goto_queue_label (tf, new_stmt,
684 gimple_cond_false_label (cond_stmt),
685 EXPR_LOCATION (*new_stmt.tp));
686 }
726a989a
RB
687 break;
688 case GIMPLE_GOTO:
689 new_stmt.g = stmt;
820055a0
DC
690 record_in_goto_queue_label (tf, new_stmt, gimple_goto_dest (stmt),
691 gimple_location (stmt));
726a989a
RB
692 break;
693
694 case GIMPLE_RETURN:
695 tf->may_return = true;
696 new_stmt.g = stmt;
820055a0 697 record_in_goto_queue (tf, new_stmt, -1, false, gimple_location (stmt));
726a989a
RB
698 break;
699
700 default:
701 gcc_unreachable ();
702 }
6de9cd9a
DN
703}
704
726a989a 705
6de9cd9a 706#ifdef ENABLE_CHECKING
726a989a 707/* We do not process GIMPLE_SWITCHes for now. As long as the original source
6de9cd9a 708 was in fact structured, and we've not yet done jump threading, then none
726a989a 709 of the labels will leave outer GIMPLE_TRY_FINALLY nodes. Verify this. */
6de9cd9a
DN
710
711static void
538dd0b7
DM
712verify_norecord_switch_expr (struct leh_state *state,
713 gswitch *switch_expr)
6de9cd9a
DN
714{
715 struct leh_tf_state *tf = state->tf;
716 size_t i, n;
6de9cd9a
DN
717
718 if (!tf)
719 return;
720
726a989a 721 n = gimple_switch_num_labels (switch_expr);
6de9cd9a
DN
722
723 for (i = 0; i < n; ++i)
724 {
726a989a
RB
725 treemple temp;
726 tree lab = CASE_LABEL (gimple_switch_label (switch_expr, i));
727 temp.t = lab;
728 gcc_assert (!outside_finally_tree (temp, tf->try_finally_expr));
6de9cd9a
DN
729 }
730}
731#else
732#define verify_norecord_switch_expr(state, switch_expr)
733#endif
734
8d686507
ILT
735/* Redirect a RETURN_EXPR pointed to by Q to FINLAB. If MOD is
736 non-null, insert it before the new branch. */
6de9cd9a
DN
737
738static void
8d686507 739do_return_redirection (struct goto_queue_node *q, tree finlab, gimple_seq mod)
6de9cd9a 740{
726a989a
RB
741 gimple x;
742
8d686507 743 /* In the case of a return, the queue node must be a gimple statement. */
726a989a
RB
744 gcc_assert (!q->is_label);
745
8d686507 746 /* Note that the return value may have already been computed, e.g.,
6de9cd9a 747
8d686507
ILT
748 int x;
749 int foo (void)
6de9cd9a 750 {
8d686507
ILT
751 x = 0;
752 try {
753 return x;
754 } finally {
755 x++;
756 }
6de9cd9a 757 }
8d686507
ILT
758
759 should return 0, not 1. We don't have to do anything to make
760 this happens because the return value has been placed in the
761 RESULT_DECL already. */
762
763 q->cont_stmt = q->stmt.g;
726a989a 764
6de9cd9a 765 if (mod)
726a989a 766 gimple_seq_add_seq (&q->repl_stmt, mod);
6de9cd9a 767
726a989a 768 x = gimple_build_goto (finlab);
29f5bccb 769 gimple_set_location (x, q->location);
726a989a 770 gimple_seq_add_stmt (&q->repl_stmt, x);
6de9cd9a
DN
771}
772
726a989a 773/* Similar, but easier, for GIMPLE_GOTO. */
6de9cd9a
DN
774
775static void
726a989a
RB
776do_goto_redirection (struct goto_queue_node *q, tree finlab, gimple_seq mod,
777 struct leh_tf_state *tf)
6de9cd9a 778{
538dd0b7 779 ggoto *x;
726a989a
RB
780
781 gcc_assert (q->is_label);
726a989a 782
9771b263 783 q->cont_stmt = gimple_build_goto (tf->dest_array[q->index]);
6de9cd9a 784
6de9cd9a 785 if (mod)
726a989a 786 gimple_seq_add_seq (&q->repl_stmt, mod);
6de9cd9a 787
726a989a 788 x = gimple_build_goto (finlab);
29f5bccb 789 gimple_set_location (x, q->location);
726a989a 790 gimple_seq_add_stmt (&q->repl_stmt, x);
6de9cd9a
DN
791}
792
1d65f45c
RH
793/* Emit a standard landing pad sequence into SEQ for REGION. */
794
795static void
796emit_post_landing_pad (gimple_seq *seq, eh_region region)
797{
798 eh_landing_pad lp = region->landing_pads;
538dd0b7 799 glabel *x;
1d65f45c
RH
800
801 if (lp == NULL)
802 lp = gen_eh_landing_pad (region);
803
804 lp->post_landing_pad = create_artificial_label (UNKNOWN_LOCATION);
805 EH_LANDING_PAD_NR (lp->post_landing_pad) = lp->index;
806
807 x = gimple_build_label (lp->post_landing_pad);
808 gimple_seq_add_stmt (seq, x);
809}
810
811/* Emit a RESX statement into SEQ for REGION. */
812
813static void
814emit_resx (gimple_seq *seq, eh_region region)
815{
538dd0b7 816 gresx *x = gimple_build_resx (region->index);
1d65f45c
RH
817 gimple_seq_add_stmt (seq, x);
818 if (region->outer)
819 record_stmt_eh_region (region->outer, x);
820}
821
822/* Emit an EH_DISPATCH statement into SEQ for REGION. */
823
824static void
825emit_eh_dispatch (gimple_seq *seq, eh_region region)
826{
538dd0b7 827 geh_dispatch *x = gimple_build_eh_dispatch (region->index);
1d65f45c
RH
828 gimple_seq_add_stmt (seq, x);
829}
830
831/* Note that the current EH region may contain a throw, or a
832 call to a function which itself may contain a throw. */
833
834static void
835note_eh_region_may_contain_throw (eh_region region)
836{
fcaa4ca4 837 while (bitmap_set_bit (eh_region_may_contain_throw_map, region->index))
1d65f45c 838 {
6788475a
JJ
839 if (region->type == ERT_MUST_NOT_THROW)
840 break;
1d65f45c
RH
841 region = region->outer;
842 if (region == NULL)
843 break;
844 }
845}
846
b7da9fd4
RH
847/* Check if REGION has been marked as containing a throw. If REGION is
848 NULL, this predicate is false. */
849
850static inline bool
851eh_region_may_contain_throw (eh_region r)
852{
853 return r && bitmap_bit_p (eh_region_may_contain_throw_map, r->index);
854}
855
6de9cd9a
DN
856/* We want to transform
857 try { body; } catch { stuff; }
858 to
3b445b24 859 normal_sequence:
1d65f45c
RH
860 body;
861 over:
3b445b24 862 eh_sequence:
1d65f45c
RH
863 landing_pad:
864 stuff;
865 goto over;
866
867 TP is a GIMPLE_TRY node. REGION is the region whose post_landing_pad
6de9cd9a
DN
868 should be placed before the second operand, or NULL. OVER is
869 an existing label that should be put at the exit, or NULL. */
870
726a989a 871static gimple_seq
538dd0b7 872frob_into_branch_around (gtry *tp, eh_region region, tree over)
6de9cd9a 873{
726a989a
RB
874 gimple x;
875 gimple_seq cleanup, result;
c2255bc4 876 location_t loc = gimple_location (tp);
6de9cd9a 877
726a989a
RB
878 cleanup = gimple_try_cleanup (tp);
879 result = gimple_try_eval (tp);
6de9cd9a 880
1d65f45c
RH
881 if (region)
882 emit_post_landing_pad (&eh_seq, region);
883
884 if (gimple_seq_may_fallthru (cleanup))
6de9cd9a
DN
885 {
886 if (!over)
c2255bc4 887 over = create_artificial_label (loc);
726a989a 888 x = gimple_build_goto (over);
29f5bccb 889 gimple_set_location (x, loc);
1d65f45c 890 gimple_seq_add_stmt (&cleanup, x);
6de9cd9a 891 }
1d65f45c 892 gimple_seq_add_seq (&eh_seq, cleanup);
6de9cd9a
DN
893
894 if (over)
895 {
726a989a
RB
896 x = gimple_build_label (over);
897 gimple_seq_add_stmt (&result, x);
6de9cd9a 898 }
726a989a 899 return result;
6de9cd9a
DN
900}
901
902/* A subroutine of lower_try_finally. Duplicate the tree rooted at T.
903 Make sure to record all new labels found. */
904
726a989a 905static gimple_seq
820055a0
DC
906lower_try_finally_dup_block (gimple_seq seq, struct leh_state *outer_state,
907 location_t loc)
6de9cd9a 908{
538dd0b7 909 gtry *region = NULL;
726a989a 910 gimple_seq new_seq;
820055a0 911 gimple_stmt_iterator gsi;
6de9cd9a 912
726a989a 913 new_seq = copy_gimple_seq_and_replace_locals (seq);
6de9cd9a 914
820055a0 915 for (gsi = gsi_start (new_seq); !gsi_end_p (gsi); gsi_next (&gsi))
62d4d60c
DC
916 {
917 gimple stmt = gsi_stmt (gsi);
2f13f2de 918 if (LOCATION_LOCUS (gimple_location (stmt)) == UNKNOWN_LOCATION)
62d4d60c
DC
919 {
920 tree block = gimple_block (stmt);
921 gimple_set_location (stmt, loc);
922 gimple_set_block (stmt, block);
923 }
924 }
820055a0 925
6de9cd9a
DN
926 if (outer_state->tf)
927 region = outer_state->tf->try_finally_expr;
726a989a 928 collect_finally_tree_1 (new_seq, region);
6de9cd9a 929
726a989a 930 return new_seq;
6de9cd9a
DN
931}
932
933/* A subroutine of lower_try_finally. Create a fallthru label for
934 the given try_finally state. The only tricky bit here is that
935 we have to make sure to record the label in our outer context. */
936
937static tree
938lower_try_finally_fallthru_label (struct leh_tf_state *tf)
939{
940 tree label = tf->fallthru_label;
726a989a
RB
941 treemple temp;
942
6de9cd9a
DN
943 if (!label)
944 {
c2255bc4 945 label = create_artificial_label (gimple_location (tf->try_finally_expr));
6de9cd9a
DN
946 tf->fallthru_label = label;
947 if (tf->outer->tf)
726a989a
RB
948 {
949 temp.t = label;
950 record_in_finally_tree (temp, tf->outer->tf->try_finally_expr);
951 }
6de9cd9a
DN
952 }
953 return label;
954}
955
0a35513e
AH
956/* A subroutine of lower_try_finally. If FINALLY consits of a
957 GIMPLE_EH_ELSE node, return it. */
958
538dd0b7 959static inline geh_else *
0a35513e
AH
960get_eh_else (gimple_seq finally)
961{
962 gimple x = gimple_seq_first_stmt (finally);
963 if (gimple_code (x) == GIMPLE_EH_ELSE)
964 {
965 gcc_assert (gimple_seq_singleton_p (finally));
538dd0b7 966 return as_a <geh_else *> (x);
0a35513e
AH
967 }
968 return NULL;
969}
970
3b06d379
SB
971/* A subroutine of lower_try_finally. If the eh_protect_cleanup_actions
972 langhook returns non-null, then the language requires that the exception
973 path out of a try_finally be treated specially. To wit: the code within
974 the finally block may not itself throw an exception. We have two choices
975 here. First we can duplicate the finally block and wrap it in a
976 must_not_throw region. Second, we can generate code like
6de9cd9a
DN
977
978 try {
979 finally_block;
980 } catch {
981 if (fintmp == eh_edge)
982 protect_cleanup_actions;
983 }
984
985 where "fintmp" is the temporary used in the switch statement generation
986 alternative considered below. For the nonce, we always choose the first
19114537 987 option.
6de9cd9a 988
3f117656 989 THIS_STATE may be null if this is a try-cleanup, not a try-finally. */
6de9cd9a
DN
990
991static void
992honor_protect_cleanup_actions (struct leh_state *outer_state,
993 struct leh_state *this_state,
994 struct leh_tf_state *tf)
995{
1d65f45c 996 tree protect_cleanup_actions;
726a989a 997 gimple_stmt_iterator gsi;
6de9cd9a 998 bool finally_may_fallthru;
726a989a 999 gimple_seq finally;
538dd0b7
DM
1000 gimple x;
1001 geh_mnt *eh_mnt;
1002 gtry *try_stmt;
1003 geh_else *eh_else;
6de9cd9a
DN
1004
1005 /* First check for nothing to do. */
3b06d379 1006 if (lang_hooks.eh_protect_cleanup_actions == NULL)
1d65f45c 1007 return;
3b06d379 1008 protect_cleanup_actions = lang_hooks.eh_protect_cleanup_actions ();
1d65f45c
RH
1009 if (protect_cleanup_actions == NULL)
1010 return;
6de9cd9a 1011
726a989a 1012 finally = gimple_try_cleanup (tf->top_p);
0a35513e 1013 eh_else = get_eh_else (finally);
6de9cd9a
DN
1014
1015 /* Duplicate the FINALLY block. Only need to do this for try-finally,
0a35513e
AH
1016 and not for cleanups. If we've got an EH_ELSE, extract it now. */
1017 if (eh_else)
1018 {
1019 finally = gimple_eh_else_e_body (eh_else);
1020 gimple_try_set_cleanup (tf->top_p, gimple_eh_else_n_body (eh_else));
1021 }
1022 else if (this_state)
820055a0 1023 finally = lower_try_finally_dup_block (finally, outer_state,
5368224f 1024 gimple_location (tf->try_finally_expr));
0a35513e 1025 finally_may_fallthru = gimple_seq_may_fallthru (finally);
6de9cd9a 1026
33b45227
JM
1027 /* If this cleanup consists of a TRY_CATCH_EXPR with TRY_CATCH_IS_CLEANUP
1028 set, the handler of the TRY_CATCH_EXPR is another cleanup which ought
1029 to be in an enclosing scope, but needs to be implemented at this level
1030 to avoid a nesting violation (see wrap_temporary_cleanups in
1031 cp/decl.c). Since it's logically at an outer level, we should call
1032 terminate before we get to it, so strip it away before adding the
1033 MUST_NOT_THROW filter. */
726a989a
RB
1034 gsi = gsi_start (finally);
1035 x = gsi_stmt (gsi);
1d65f45c 1036 if (gimple_code (x) == GIMPLE_TRY
726a989a
RB
1037 && gimple_try_kind (x) == GIMPLE_TRY_CATCH
1038 && gimple_try_catch_is_cleanup (x))
33b45227 1039 {
726a989a
RB
1040 gsi_insert_seq_before (&gsi, gimple_try_eval (x), GSI_SAME_STMT);
1041 gsi_remove (&gsi, false);
33b45227
JM
1042 }
1043
6de9cd9a 1044 /* Wrap the block with protect_cleanup_actions as the action. */
538dd0b7
DM
1045 eh_mnt = gimple_build_eh_must_not_throw (protect_cleanup_actions);
1046 try_stmt = gimple_build_try (finally, gimple_seq_alloc_with_stmt (eh_mnt),
1047 GIMPLE_TRY_CATCH);
1048 finally = lower_eh_must_not_throw (outer_state, try_stmt);
1d65f45c
RH
1049
1050 /* Drop all of this into the exception sequence. */
1051 emit_post_landing_pad (&eh_seq, tf->region);
1052 gimple_seq_add_seq (&eh_seq, finally);
1053 if (finally_may_fallthru)
1054 emit_resx (&eh_seq, tf->region);
6de9cd9a
DN
1055
1056 /* Having now been handled, EH isn't to be considered with
1057 the rest of the outgoing edges. */
1058 tf->may_throw = false;
1059}
1060
1061/* A subroutine of lower_try_finally. We have determined that there is
1062 no fallthru edge out of the finally block. This means that there is
1063 no outgoing edge corresponding to any incoming edge. Restructure the
1064 try_finally node for this special case. */
1065
1066static void
726a989a
RB
1067lower_try_finally_nofallthru (struct leh_state *state,
1068 struct leh_tf_state *tf)
6de9cd9a 1069{
8d686507 1070 tree lab;
538dd0b7
DM
1071 gimple x;
1072 geh_else *eh_else;
726a989a 1073 gimple_seq finally;
6de9cd9a
DN
1074 struct goto_queue_node *q, *qe;
1075
1d65f45c 1076 lab = create_artificial_label (gimple_location (tf->try_finally_expr));
6de9cd9a 1077
726a989a
RB
1078 /* We expect that tf->top_p is a GIMPLE_TRY. */
1079 finally = gimple_try_cleanup (tf->top_p);
1080 tf->top_p_seq = gimple_try_eval (tf->top_p);
6de9cd9a 1081
726a989a
RB
1082 x = gimple_build_label (lab);
1083 gimple_seq_add_stmt (&tf->top_p_seq, x);
6de9cd9a 1084
6de9cd9a
DN
1085 q = tf->goto_queue;
1086 qe = q + tf->goto_queue_active;
1087 for (; q < qe; ++q)
1088 if (q->index < 0)
8d686507 1089 do_return_redirection (q, lab, NULL);
6de9cd9a 1090 else
726a989a 1091 do_goto_redirection (q, lab, NULL, tf);
6de9cd9a
DN
1092
1093 replace_goto_queue (tf);
1094
0a35513e
AH
1095 /* Emit the finally block into the stream. Lower EH_ELSE at this time. */
1096 eh_else = get_eh_else (finally);
1097 if (eh_else)
1098 {
1099 finally = gimple_eh_else_n_body (eh_else);
355a7673 1100 lower_eh_constructs_1 (state, &finally);
0a35513e 1101 gimple_seq_add_seq (&tf->top_p_seq, finally);
1d65f45c 1102
0a35513e
AH
1103 if (tf->may_throw)
1104 {
1105 finally = gimple_eh_else_e_body (eh_else);
355a7673 1106 lower_eh_constructs_1 (state, &finally);
0a35513e
AH
1107
1108 emit_post_landing_pad (&eh_seq, tf->region);
1109 gimple_seq_add_seq (&eh_seq, finally);
1110 }
1111 }
1112 else
1d65f45c 1113 {
355a7673 1114 lower_eh_constructs_1 (state, &finally);
0a35513e 1115 gimple_seq_add_seq (&tf->top_p_seq, finally);
1d65f45c 1116
0a35513e
AH
1117 if (tf->may_throw)
1118 {
1119 emit_post_landing_pad (&eh_seq, tf->region);
1120
1121 x = gimple_build_goto (lab);
29f5bccb 1122 gimple_set_location (x, gimple_location (tf->try_finally_expr));
0a35513e
AH
1123 gimple_seq_add_stmt (&eh_seq, x);
1124 }
1d65f45c 1125 }
6de9cd9a
DN
1126}
1127
1128/* A subroutine of lower_try_finally. We have determined that there is
1129 exactly one destination of the finally block. Restructure the
1130 try_finally node for this special case. */
1131
1132static void
1133lower_try_finally_onedest (struct leh_state *state, struct leh_tf_state *tf)
1134{
1135 struct goto_queue_node *q, *qe;
538dd0b7
DM
1136 geh_else *eh_else;
1137 glabel *label_stmt;
726a989a
RB
1138 gimple x;
1139 gimple_seq finally;
e368f44f 1140 gimple_stmt_iterator gsi;
726a989a 1141 tree finally_label;
c2255bc4 1142 location_t loc = gimple_location (tf->try_finally_expr);
6de9cd9a 1143
726a989a
RB
1144 finally = gimple_try_cleanup (tf->top_p);
1145 tf->top_p_seq = gimple_try_eval (tf->top_p);
6de9cd9a 1146
0a35513e
AH
1147 /* Since there's only one destination, and the destination edge can only
1148 either be EH or non-EH, that implies that all of our incoming edges
1149 are of the same type. Therefore we can lower EH_ELSE immediately. */
538dd0b7
DM
1150 eh_else = get_eh_else (finally);
1151 if (eh_else)
0a35513e
AH
1152 {
1153 if (tf->may_throw)
538dd0b7 1154 finally = gimple_eh_else_e_body (eh_else);
0a35513e 1155 else
538dd0b7 1156 finally = gimple_eh_else_n_body (eh_else);
0a35513e
AH
1157 }
1158
355a7673 1159 lower_eh_constructs_1 (state, &finally);
6de9cd9a 1160
e368f44f
DC
1161 for (gsi = gsi_start (finally); !gsi_end_p (gsi); gsi_next (&gsi))
1162 {
1163 gimple stmt = gsi_stmt (gsi);
1164 if (LOCATION_LOCUS (gimple_location (stmt)) == UNKNOWN_LOCATION)
1165 {
1166 tree block = gimple_block (stmt);
1167 gimple_set_location (stmt, gimple_location (tf->try_finally_expr));
1168 gimple_set_block (stmt, block);
1169 }
1170 }
1171
6de9cd9a
DN
1172 if (tf->may_throw)
1173 {
1174 /* Only reachable via the exception edge. Add the given label to
1175 the head of the FINALLY block. Append a RESX at the end. */
1d65f45c
RH
1176 emit_post_landing_pad (&eh_seq, tf->region);
1177 gimple_seq_add_seq (&eh_seq, finally);
1178 emit_resx (&eh_seq, tf->region);
6de9cd9a
DN
1179 return;
1180 }
1181
1182 if (tf->may_fallthru)
1183 {
1184 /* Only reachable via the fallthru edge. Do nothing but let
1185 the two blocks run together; we'll fall out the bottom. */
726a989a 1186 gimple_seq_add_seq (&tf->top_p_seq, finally);
6de9cd9a
DN
1187 return;
1188 }
1189
c2255bc4 1190 finally_label = create_artificial_label (loc);
538dd0b7
DM
1191 label_stmt = gimple_build_label (finally_label);
1192 gimple_seq_add_stmt (&tf->top_p_seq, label_stmt);
6de9cd9a 1193
726a989a 1194 gimple_seq_add_seq (&tf->top_p_seq, finally);
6de9cd9a
DN
1195
1196 q = tf->goto_queue;
1197 qe = q + tf->goto_queue_active;
1198
1199 if (tf->may_return)
1200 {
1201 /* Reachable by return expressions only. Redirect them. */
6de9cd9a 1202 for (; q < qe; ++q)
8d686507 1203 do_return_redirection (q, finally_label, NULL);
6de9cd9a
DN
1204 replace_goto_queue (tf);
1205 }
1206 else
1207 {
1208 /* Reachable by goto expressions only. Redirect them. */
1209 for (; q < qe; ++q)
726a989a 1210 do_goto_redirection (q, finally_label, NULL, tf);
6de9cd9a 1211 replace_goto_queue (tf);
19114537 1212
9771b263 1213 if (tf->dest_array[0] == tf->fallthru_label)
6de9cd9a
DN
1214 {
1215 /* Reachable by goto to fallthru label only. Redirect it
1216 to the new label (already created, sadly), and do not
1217 emit the final branch out, or the fallthru label. */
1218 tf->fallthru_label = NULL;
1219 return;
1220 }
1221 }
1222
726a989a
RB
1223 /* Place the original return/goto to the original destination
1224 immediately after the finally block. */
1225 x = tf->goto_queue[0].cont_stmt;
1226 gimple_seq_add_stmt (&tf->top_p_seq, x);
1227 maybe_record_in_goto_queue (state, x);
6de9cd9a
DN
1228}
1229
1230/* A subroutine of lower_try_finally. There are multiple edges incoming
1231 and outgoing from the finally block. Implement this by duplicating the
1232 finally block for every destination. */
1233
1234static void
1235lower_try_finally_copy (struct leh_state *state, struct leh_tf_state *tf)
1236{
726a989a
RB
1237 gimple_seq finally;
1238 gimple_seq new_stmt;
1239 gimple_seq seq;
538dd0b7
DM
1240 gimple x;
1241 geh_else *eh_else;
726a989a 1242 tree tmp;
c2255bc4 1243 location_t tf_loc = gimple_location (tf->try_finally_expr);
6de9cd9a 1244
726a989a 1245 finally = gimple_try_cleanup (tf->top_p);
0a35513e
AH
1246
1247 /* Notice EH_ELSE, and simplify some of the remaining code
1248 by considering FINALLY to be the normal return path only. */
1249 eh_else = get_eh_else (finally);
1250 if (eh_else)
1251 finally = gimple_eh_else_n_body (eh_else);
1252
726a989a
RB
1253 tf->top_p_seq = gimple_try_eval (tf->top_p);
1254 new_stmt = NULL;
6de9cd9a
DN
1255
1256 if (tf->may_fallthru)
1257 {
820055a0 1258 seq = lower_try_finally_dup_block (finally, state, tf_loc);
355a7673 1259 lower_eh_constructs_1 (state, &seq);
726a989a 1260 gimple_seq_add_seq (&new_stmt, seq);
6de9cd9a 1261
726a989a
RB
1262 tmp = lower_try_finally_fallthru_label (tf);
1263 x = gimple_build_goto (tmp);
29f5bccb 1264 gimple_set_location (x, tf_loc);
726a989a 1265 gimple_seq_add_stmt (&new_stmt, x);
6de9cd9a
DN
1266 }
1267
1268 if (tf->may_throw)
1269 {
0a35513e
AH
1270 /* We don't need to copy the EH path of EH_ELSE,
1271 since it is only emitted once. */
1272 if (eh_else)
1273 seq = gimple_eh_else_e_body (eh_else);
1274 else
820055a0 1275 seq = lower_try_finally_dup_block (finally, state, tf_loc);
355a7673 1276 lower_eh_constructs_1 (state, &seq);
6de9cd9a 1277
288f5b2e
RH
1278 emit_post_landing_pad (&eh_seq, tf->region);
1279 gimple_seq_add_seq (&eh_seq, seq);
1d65f45c 1280 emit_resx (&eh_seq, tf->region);
6de9cd9a
DN
1281 }
1282
1283 if (tf->goto_queue)
1284 {
1285 struct goto_queue_node *q, *qe;
dd58eb5a 1286 int return_index, index;
858904db 1287 struct labels_s
dd58eb5a
AO
1288 {
1289 struct goto_queue_node *q;
1290 tree label;
1291 } *labels;
6de9cd9a 1292
9771b263 1293 return_index = tf->dest_array.length ();
858904db 1294 labels = XCNEWVEC (struct labels_s, return_index + 1);
6de9cd9a
DN
1295
1296 q = tf->goto_queue;
1297 qe = q + tf->goto_queue_active;
1298 for (; q < qe; q++)
1299 {
dd58eb5a
AO
1300 index = q->index < 0 ? return_index : q->index;
1301
1302 if (!labels[index].q)
1303 labels[index].q = q;
1304 }
1305
1306 for (index = 0; index < return_index + 1; index++)
1307 {
1308 tree lab;
1309
1310 q = labels[index].q;
1311 if (! q)
1312 continue;
1313
c2255bc4
AH
1314 lab = labels[index].label
1315 = create_artificial_label (tf_loc);
6de9cd9a
DN
1316
1317 if (index == return_index)
8d686507 1318 do_return_redirection (q, lab, NULL);
6de9cd9a 1319 else
726a989a 1320 do_goto_redirection (q, lab, NULL, tf);
6de9cd9a 1321
726a989a
RB
1322 x = gimple_build_label (lab);
1323 gimple_seq_add_stmt (&new_stmt, x);
6de9cd9a 1324
820055a0 1325 seq = lower_try_finally_dup_block (finally, state, q->location);
355a7673 1326 lower_eh_constructs_1 (state, &seq);
726a989a 1327 gimple_seq_add_seq (&new_stmt, seq);
6de9cd9a 1328
726a989a 1329 gimple_seq_add_stmt (&new_stmt, q->cont_stmt);
dd58eb5a 1330 maybe_record_in_goto_queue (state, q->cont_stmt);
6de9cd9a 1331 }
dd58eb5a
AO
1332
1333 for (q = tf->goto_queue; q < qe; q++)
1334 {
1335 tree lab;
1336
1337 index = q->index < 0 ? return_index : q->index;
1338
1339 if (labels[index].q == q)
1340 continue;
1341
1342 lab = labels[index].label;
1343
1344 if (index == return_index)
8d686507 1345 do_return_redirection (q, lab, NULL);
dd58eb5a 1346 else
726a989a 1347 do_goto_redirection (q, lab, NULL, tf);
dd58eb5a 1348 }
1d65f45c 1349
6de9cd9a
DN
1350 replace_goto_queue (tf);
1351 free (labels);
1352 }
1353
1354 /* Need to link new stmts after running replace_goto_queue due
1355 to not wanting to process the same goto stmts twice. */
726a989a 1356 gimple_seq_add_seq (&tf->top_p_seq, new_stmt);
6de9cd9a
DN
1357}
1358
1359/* A subroutine of lower_try_finally. There are multiple edges incoming
1360 and outgoing from the finally block. Implement this by instrumenting
1361 each incoming edge and creating a switch statement at the end of the
1362 finally block that branches to the appropriate destination. */
1363
1364static void
1365lower_try_finally_switch (struct leh_state *state, struct leh_tf_state *tf)
1366{
1367 struct goto_queue_node *q, *qe;
726a989a 1368 tree finally_tmp, finally_label;
6de9cd9a
DN
1369 int return_index, eh_index, fallthru_index;
1370 int nlabels, ndests, j, last_case_index;
726a989a 1371 tree last_case;
9771b263 1372 vec<tree> case_label_vec;
355a7673 1373 gimple_seq switch_body = NULL;
538dd0b7
DM
1374 gimple x;
1375 geh_else *eh_else;
726a989a
RB
1376 tree tmp;
1377 gimple switch_stmt;
1378 gimple_seq finally;
b787e7a2 1379 hash_map<tree, gimple> *cont_map = NULL;
c2255bc4 1380 /* The location of the TRY_FINALLY stmt. */
d40eb158 1381 location_t tf_loc = gimple_location (tf->try_finally_expr);
c2255bc4
AH
1382 /* The location of the finally block. */
1383 location_t finally_loc;
726a989a 1384
0a35513e
AH
1385 finally = gimple_try_cleanup (tf->top_p);
1386 eh_else = get_eh_else (finally);
6de9cd9a
DN
1387
1388 /* Mash the TRY block to the head of the chain. */
726a989a 1389 tf->top_p_seq = gimple_try_eval (tf->top_p);
6de9cd9a 1390
c2255bc4
AH
1391 /* The location of the finally is either the last stmt in the finally
1392 block or the location of the TRY_FINALLY itself. */
0118b919
EB
1393 x = gimple_seq_last_stmt (finally);
1394 finally_loc = x ? gimple_location (x) : tf_loc;
c2255bc4 1395
6de9cd9a 1396 /* Prepare for switch statement generation. */
9771b263 1397 nlabels = tf->dest_array.length ();
6de9cd9a
DN
1398 return_index = nlabels;
1399 eh_index = return_index + tf->may_return;
0a35513e 1400 fallthru_index = eh_index + (tf->may_throw && !eh_else);
6de9cd9a
DN
1401 ndests = fallthru_index + tf->may_fallthru;
1402
1403 finally_tmp = create_tmp_var (integer_type_node, "finally_tmp");
c2255bc4 1404 finally_label = create_artificial_label (finally_loc);
6de9cd9a 1405
9771b263 1406 /* We use vec::quick_push on case_label_vec throughout this function,
726a989a
RB
1407 since we know the size in advance and allocate precisely as muce
1408 space as needed. */
9771b263 1409 case_label_vec.create (ndests);
6de9cd9a
DN
1410 last_case = NULL;
1411 last_case_index = 0;
1412
1413 /* Begin inserting code for getting to the finally block. Things
1414 are done in this order to correspond to the sequence the code is
073a8998 1415 laid out. */
6de9cd9a
DN
1416
1417 if (tf->may_fallthru)
1418 {
1d65f45c 1419 x = gimple_build_assign (finally_tmp,
413581ba
RG
1420 build_int_cst (integer_type_node,
1421 fallthru_index));
726a989a 1422 gimple_seq_add_stmt (&tf->top_p_seq, x);
6de9cd9a 1423
3d528853
NF
1424 tmp = build_int_cst (integer_type_node, fallthru_index);
1425 last_case = build_case_label (tmp, NULL,
1426 create_artificial_label (tf_loc));
9771b263 1427 case_label_vec.quick_push (last_case);
6de9cd9a
DN
1428 last_case_index++;
1429
726a989a
RB
1430 x = gimple_build_label (CASE_LABEL (last_case));
1431 gimple_seq_add_stmt (&switch_body, x);
6de9cd9a 1432
726a989a
RB
1433 tmp = lower_try_finally_fallthru_label (tf);
1434 x = gimple_build_goto (tmp);
29f5bccb 1435 gimple_set_location (x, tf_loc);
726a989a 1436 gimple_seq_add_stmt (&switch_body, x);
6de9cd9a
DN
1437 }
1438
0a35513e
AH
1439 /* For EH_ELSE, emit the exception path (plus resx) now, then
1440 subsequently we only need consider the normal path. */
1441 if (eh_else)
1442 {
1443 if (tf->may_throw)
1444 {
1445 finally = gimple_eh_else_e_body (eh_else);
355a7673 1446 lower_eh_constructs_1 (state, &finally);
0a35513e
AH
1447
1448 emit_post_landing_pad (&eh_seq, tf->region);
1449 gimple_seq_add_seq (&eh_seq, finally);
1450 emit_resx (&eh_seq, tf->region);
1451 }
1452
1453 finally = gimple_eh_else_n_body (eh_else);
1454 }
1455 else if (tf->may_throw)
6de9cd9a 1456 {
1d65f45c 1457 emit_post_landing_pad (&eh_seq, tf->region);
6de9cd9a 1458
1d65f45c 1459 x = gimple_build_assign (finally_tmp,
413581ba 1460 build_int_cst (integer_type_node, eh_index));
1d65f45c
RH
1461 gimple_seq_add_stmt (&eh_seq, x);
1462
1463 x = gimple_build_goto (finally_label);
29f5bccb 1464 gimple_set_location (x, tf_loc);
1d65f45c 1465 gimple_seq_add_stmt (&eh_seq, x);
6de9cd9a 1466
3d528853
NF
1467 tmp = build_int_cst (integer_type_node, eh_index);
1468 last_case = build_case_label (tmp, NULL,
1469 create_artificial_label (tf_loc));
9771b263 1470 case_label_vec.quick_push (last_case);
6de9cd9a
DN
1471 last_case_index++;
1472
726a989a 1473 x = gimple_build_label (CASE_LABEL (last_case));
1d65f45c
RH
1474 gimple_seq_add_stmt (&eh_seq, x);
1475 emit_resx (&eh_seq, tf->region);
6de9cd9a
DN
1476 }
1477
726a989a
RB
1478 x = gimple_build_label (finally_label);
1479 gimple_seq_add_stmt (&tf->top_p_seq, x);
6de9cd9a 1480
efa7882f 1481 lower_eh_constructs_1 (state, &finally);
726a989a 1482 gimple_seq_add_seq (&tf->top_p_seq, finally);
6de9cd9a
DN
1483
1484 /* Redirect each incoming goto edge. */
1485 q = tf->goto_queue;
1486 qe = q + tf->goto_queue_active;
1487 j = last_case_index + tf->may_return;
726a989a
RB
1488 /* Prepare the assignments to finally_tmp that are executed upon the
1489 entrance through a particular edge. */
6de9cd9a
DN
1490 for (; q < qe; ++q)
1491 {
355a7673 1492 gimple_seq mod = NULL;
726a989a
RB
1493 int switch_id;
1494 unsigned int case_index;
1495
6de9cd9a
DN
1496 if (q->index < 0)
1497 {
726a989a 1498 x = gimple_build_assign (finally_tmp,
413581ba
RG
1499 build_int_cst (integer_type_node,
1500 return_index));
726a989a 1501 gimple_seq_add_stmt (&mod, x);
8d686507 1502 do_return_redirection (q, finally_label, mod);
6de9cd9a
DN
1503 switch_id = return_index;
1504 }
1505 else
1506 {
726a989a 1507 x = gimple_build_assign (finally_tmp,
413581ba 1508 build_int_cst (integer_type_node, q->index));
726a989a
RB
1509 gimple_seq_add_stmt (&mod, x);
1510 do_goto_redirection (q, finally_label, mod, tf);
6de9cd9a
DN
1511 switch_id = q->index;
1512 }
1513
1514 case_index = j + q->index;
9771b263 1515 if (case_label_vec.length () <= case_index || !case_label_vec[case_index])
726a989a
RB
1516 {
1517 tree case_lab;
3d528853
NF
1518 tmp = build_int_cst (integer_type_node, switch_id);
1519 case_lab = build_case_label (tmp, NULL,
1520 create_artificial_label (tf_loc));
726a989a 1521 /* We store the cont_stmt in the pointer map, so that we can recover
ffa03772 1522 it in the loop below. */
726a989a 1523 if (!cont_map)
b787e7a2
TS
1524 cont_map = new hash_map<tree, gimple>;
1525 cont_map->put (case_lab, q->cont_stmt);
9771b263 1526 case_label_vec.quick_push (case_lab);
726a989a 1527 }
dd58eb5a
AO
1528 }
1529 for (j = last_case_index; j < last_case_index + nlabels; j++)
1530 {
726a989a 1531 gimple cont_stmt;
dd58eb5a 1532
9771b263 1533 last_case = case_label_vec[j];
dd58eb5a
AO
1534
1535 gcc_assert (last_case);
726a989a 1536 gcc_assert (cont_map);
dd58eb5a 1537
b787e7a2 1538 cont_stmt = *cont_map->get (last_case);
dd58eb5a 1539
ffa03772 1540 x = gimple_build_label (CASE_LABEL (last_case));
726a989a
RB
1541 gimple_seq_add_stmt (&switch_body, x);
1542 gimple_seq_add_stmt (&switch_body, cont_stmt);
dd58eb5a 1543 maybe_record_in_goto_queue (state, cont_stmt);
6de9cd9a 1544 }
726a989a 1545 if (cont_map)
b787e7a2 1546 delete cont_map;
726a989a 1547
6de9cd9a 1548 replace_goto_queue (tf);
6de9cd9a 1549
0f1f6967
SB
1550 /* Make sure that the last case is the default label, as one is required.
1551 Then sort the labels, which is also required in GIMPLE. */
6de9cd9a 1552 CASE_LOW (last_case) = NULL;
e9ff9caf
RB
1553 tree tem = case_label_vec.pop ();
1554 gcc_assert (tem == last_case);
0f1f6967 1555 sort_case_labels (case_label_vec);
6de9cd9a 1556
726a989a
RB
1557 /* Build the switch statement, setting last_case to be the default
1558 label. */
fd8d363e
SB
1559 switch_stmt = gimple_build_switch (finally_tmp, last_case,
1560 case_label_vec);
c2255bc4 1561 gimple_set_location (switch_stmt, finally_loc);
726a989a
RB
1562
1563 /* Need to link SWITCH_STMT after running replace_goto_queue
1564 due to not wanting to process the same goto stmts twice. */
1565 gimple_seq_add_stmt (&tf->top_p_seq, switch_stmt);
1566 gimple_seq_add_seq (&tf->top_p_seq, switch_body);
6de9cd9a
DN
1567}
1568
1569/* Decide whether or not we are going to duplicate the finally block.
1570 There are several considerations.
1571
1572 First, if this is Java, then the finally block contains code
1573 written by the user. It has line numbers associated with it,
1574 so duplicating the block means it's difficult to set a breakpoint.
1575 Since controlling code generation via -g is verboten, we simply
1576 never duplicate code without optimization.
1577
1578 Second, we'd like to prevent egregious code growth. One way to
1579 do this is to estimate the size of the finally block, multiply
1580 that by the number of copies we'd need to make, and compare against
1581 the estimate of the size of the switch machinery we'd have to add. */
1582
1583static bool
0a35513e 1584decide_copy_try_finally (int ndests, bool may_throw, gimple_seq finally)
6de9cd9a
DN
1585{
1586 int f_estimate, sw_estimate;
538dd0b7 1587 geh_else *eh_else;
0a35513e
AH
1588
1589 /* If there's an EH_ELSE involved, the exception path is separate
1590 and really doesn't come into play for this computation. */
1591 eh_else = get_eh_else (finally);
1592 if (eh_else)
1593 {
1594 ndests -= may_throw;
1595 finally = gimple_eh_else_n_body (eh_else);
1596 }
6de9cd9a
DN
1597
1598 if (!optimize)
bccc50d4
JJ
1599 {
1600 gimple_stmt_iterator gsi;
1601
1602 if (ndests == 1)
1603 return true;
1604
1605 for (gsi = gsi_start (finally); !gsi_end_p (gsi); gsi_next (&gsi))
1606 {
1607 gimple stmt = gsi_stmt (gsi);
1608 if (!is_gimple_debug (stmt) && !gimple_clobber_p (stmt))
1609 return false;
1610 }
1611 return true;
1612 }
6de9cd9a
DN
1613
1614 /* Finally estimate N times, plus N gotos. */
726a989a 1615 f_estimate = count_insns_seq (finally, &eni_size_weights);
6de9cd9a
DN
1616 f_estimate = (f_estimate + 1) * ndests;
1617
1618 /* Switch statement (cost 10), N variable assignments, N gotos. */
1619 sw_estimate = 10 + 2 * ndests;
1620
1621 /* Optimize for size clearly wants our best guess. */
efd8f750 1622 if (optimize_function_for_size_p (cfun))
6de9cd9a
DN
1623 return f_estimate < sw_estimate;
1624
1625 /* ??? These numbers are completely made up so far. */
1626 if (optimize > 1)
7465ed07 1627 return f_estimate < 100 || f_estimate < sw_estimate * 2;
6de9cd9a 1628 else
7465ed07 1629 return f_estimate < 40 || f_estimate * 2 < sw_estimate * 3;
6de9cd9a
DN
1630}
1631
d3f28910
JM
1632/* REG is the enclosing region for a possible cleanup region, or the region
1633 itself. Returns TRUE if such a region would be unreachable.
1634
1635 Cleanup regions within a must-not-throw region aren't actually reachable
1636 even if there are throwing stmts within them, because the personality
1637 routine will call terminate before unwinding. */
1638
1639static bool
1640cleanup_is_dead_in (eh_region reg)
1641{
1642 while (reg && reg->type == ERT_CLEANUP)
1643 reg = reg->outer;
1644 return (reg && reg->type == ERT_MUST_NOT_THROW);
1645}
726a989a
RB
1646
1647/* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY_FINALLY nodes
6de9cd9a 1648 to a sequence of labels and blocks, plus the exception region trees
19114537 1649 that record all the magic. This is complicated by the need to
6de9cd9a
DN
1650 arrange for the FINALLY block to be executed on all exits. */
1651
726a989a 1652static gimple_seq
538dd0b7 1653lower_try_finally (struct leh_state *state, gtry *tp)
6de9cd9a
DN
1654{
1655 struct leh_tf_state this_tf;
1656 struct leh_state this_state;
1657 int ndests;
e19d1f06 1658 gimple_seq old_eh_seq;
6de9cd9a
DN
1659
1660 /* Process the try block. */
1661
1662 memset (&this_tf, 0, sizeof (this_tf));
726a989a 1663 this_tf.try_finally_expr = tp;
6de9cd9a
DN
1664 this_tf.top_p = tp;
1665 this_tf.outer = state;
481d1b81 1666 if (using_eh_for_cleanups_p () && !cleanup_is_dead_in (state->cur_region))
d3f28910
JM
1667 {
1668 this_tf.region = gen_eh_region_cleanup (state->cur_region);
1669 this_state.cur_region = this_tf.region;
1670 }
6de9cd9a 1671 else
d3f28910
JM
1672 {
1673 this_tf.region = NULL;
1674 this_state.cur_region = state->cur_region;
1675 }
6de9cd9a 1676
1d65f45c 1677 this_state.ehp_region = state->ehp_region;
6de9cd9a
DN
1678 this_state.tf = &this_tf;
1679
e19d1f06
RH
1680 old_eh_seq = eh_seq;
1681 eh_seq = NULL;
1682
355a7673 1683 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
6de9cd9a
DN
1684
1685 /* Determine if the try block is escaped through the bottom. */
726a989a 1686 this_tf.may_fallthru = gimple_seq_may_fallthru (gimple_try_eval (tp));
6de9cd9a
DN
1687
1688 /* Determine if any exceptions are possible within the try block. */
d3f28910 1689 if (this_tf.region)
b7da9fd4 1690 this_tf.may_throw = eh_region_may_contain_throw (this_tf.region);
6de9cd9a 1691 if (this_tf.may_throw)
1d65f45c 1692 honor_protect_cleanup_actions (state, &this_state, &this_tf);
6de9cd9a 1693
6de9cd9a
DN
1694 /* Determine how many edges (still) reach the finally block. Or rather,
1695 how many destinations are reached by the finally block. Use this to
1696 determine how we process the finally block itself. */
1697
9771b263 1698 ndests = this_tf.dest_array.length ();
6de9cd9a
DN
1699 ndests += this_tf.may_fallthru;
1700 ndests += this_tf.may_return;
1701 ndests += this_tf.may_throw;
1702
1703 /* If the FINALLY block is not reachable, dike it out. */
1704 if (ndests == 0)
726a989a
RB
1705 {
1706 gimple_seq_add_seq (&this_tf.top_p_seq, gimple_try_eval (tp));
1707 gimple_try_set_cleanup (tp, NULL);
1708 }
6de9cd9a
DN
1709 /* If the finally block doesn't fall through, then any destination
1710 we might try to impose there isn't reached either. There may be
1711 some minor amount of cleanup and redirection still needed. */
726a989a 1712 else if (!gimple_seq_may_fallthru (gimple_try_cleanup (tp)))
6de9cd9a
DN
1713 lower_try_finally_nofallthru (state, &this_tf);
1714
1715 /* We can easily special-case redirection to a single destination. */
1716 else if (ndests == 1)
1717 lower_try_finally_onedest (state, &this_tf);
0a35513e
AH
1718 else if (decide_copy_try_finally (ndests, this_tf.may_throw,
1719 gimple_try_cleanup (tp)))
6de9cd9a
DN
1720 lower_try_finally_copy (state, &this_tf);
1721 else
1722 lower_try_finally_switch (state, &this_tf);
1723
1724 /* If someone requested we add a label at the end of the transformed
1725 block, do so. */
1726 if (this_tf.fallthru_label)
1727 {
726a989a
RB
1728 /* This must be reached only if ndests == 0. */
1729 gimple x = gimple_build_label (this_tf.fallthru_label);
1730 gimple_seq_add_stmt (&this_tf.top_p_seq, x);
6de9cd9a
DN
1731 }
1732
9771b263 1733 this_tf.dest_array.release ();
04695783 1734 free (this_tf.goto_queue);
0f547d3d 1735 if (this_tf.goto_queue_map)
b787e7a2 1736 delete this_tf.goto_queue_map;
726a989a 1737
e19d1f06
RH
1738 /* If there was an old (aka outer) eh_seq, append the current eh_seq.
1739 If there was no old eh_seq, then the append is trivially already done. */
1740 if (old_eh_seq)
1741 {
1742 if (eh_seq == NULL)
1743 eh_seq = old_eh_seq;
1744 else
1745 {
1746 gimple_seq new_eh_seq = eh_seq;
1747 eh_seq = old_eh_seq;
c3284718 1748 gimple_seq_add_seq (&eh_seq, new_eh_seq);
e19d1f06
RH
1749 }
1750 }
1751
726a989a 1752 return this_tf.top_p_seq;
6de9cd9a
DN
1753}
1754
726a989a
RB
1755/* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY_CATCH with a
1756 list of GIMPLE_CATCH to a sequence of labels and blocks, plus the
1757 exception region trees that records all the magic. */
6de9cd9a 1758
726a989a 1759static gimple_seq
538dd0b7 1760lower_catch (struct leh_state *state, gtry *tp)
6de9cd9a 1761{
b7da9fd4
RH
1762 eh_region try_region = NULL;
1763 struct leh_state this_state = *state;
726a989a 1764 gimple_stmt_iterator gsi;
6de9cd9a 1765 tree out_label;
355a7673 1766 gimple_seq new_seq, cleanup;
1d65f45c 1767 gimple x;
c2255bc4 1768 location_t try_catch_loc = gimple_location (tp);
6de9cd9a 1769
b7da9fd4
RH
1770 if (flag_exceptions)
1771 {
1772 try_region = gen_eh_region_try (state->cur_region);
1773 this_state.cur_region = try_region;
1774 }
6de9cd9a 1775
355a7673 1776 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
6de9cd9a 1777
b7da9fd4 1778 if (!eh_region_may_contain_throw (try_region))
1d65f45c
RH
1779 return gimple_try_eval (tp);
1780
1781 new_seq = NULL;
1782 emit_eh_dispatch (&new_seq, try_region);
1783 emit_resx (&new_seq, try_region);
1784
1785 this_state.cur_region = state->cur_region;
1786 this_state.ehp_region = try_region;
6de9cd9a 1787
3b445b24
JJ
1788 /* Add eh_seq from lowering EH in the cleanup sequence after the cleanup
1789 itself, so that e.g. for coverage purposes the nested cleanups don't
1790 appear before the cleanup body. See PR64634 for details. */
1791 gimple_seq old_eh_seq = eh_seq;
1792 eh_seq = NULL;
1793
6de9cd9a 1794 out_label = NULL;
355a7673
MM
1795 cleanup = gimple_try_cleanup (tp);
1796 for (gsi = gsi_start (cleanup);
1d65f45c
RH
1797 !gsi_end_p (gsi);
1798 gsi_next (&gsi))
6de9cd9a 1799 {
1d65f45c 1800 eh_catch c;
538dd0b7 1801 gcatch *catch_stmt;
1d65f45c 1802 gimple_seq handler;
6de9cd9a 1803
538dd0b7
DM
1804 catch_stmt = as_a <gcatch *> (gsi_stmt (gsi));
1805 c = gen_eh_region_catch (try_region, gimple_catch_types (catch_stmt));
6de9cd9a 1806
538dd0b7 1807 handler = gimple_catch_handler (catch_stmt);
355a7673 1808 lower_eh_constructs_1 (&this_state, &handler);
6de9cd9a 1809
1d65f45c
RH
1810 c->label = create_artificial_label (UNKNOWN_LOCATION);
1811 x = gimple_build_label (c->label);
1812 gimple_seq_add_stmt (&new_seq, x);
6de9cd9a 1813
1d65f45c 1814 gimple_seq_add_seq (&new_seq, handler);
6de9cd9a 1815
1d65f45c 1816 if (gimple_seq_may_fallthru (new_seq))
6de9cd9a
DN
1817 {
1818 if (!out_label)
c2255bc4 1819 out_label = create_artificial_label (try_catch_loc);
6de9cd9a 1820
726a989a 1821 x = gimple_build_goto (out_label);
1d65f45c 1822 gimple_seq_add_stmt (&new_seq, x);
6de9cd9a 1823 }
d815d34e
MM
1824 if (!c->type_list)
1825 break;
6de9cd9a
DN
1826 }
1827
1d65f45c
RH
1828 gimple_try_set_cleanup (tp, new_seq);
1829
3b445b24
JJ
1830 gimple_seq new_eh_seq = eh_seq;
1831 eh_seq = old_eh_seq;
1832 gimple_seq ret_seq = frob_into_branch_around (tp, try_region, out_label);
1833 gimple_seq_add_seq (&eh_seq, new_eh_seq);
1834 return ret_seq;
6de9cd9a
DN
1835}
1836
726a989a
RB
1837/* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY with a
1838 GIMPLE_EH_FILTER to a sequence of labels and blocks, plus the exception
6de9cd9a
DN
1839 region trees that record all the magic. */
1840
726a989a 1841static gimple_seq
538dd0b7 1842lower_eh_filter (struct leh_state *state, gtry *tp)
6de9cd9a 1843{
b7da9fd4
RH
1844 struct leh_state this_state = *state;
1845 eh_region this_region = NULL;
1d65f45c
RH
1846 gimple inner, x;
1847 gimple_seq new_seq;
19114537 1848
726a989a
RB
1849 inner = gimple_seq_first_stmt (gimple_try_cleanup (tp));
1850
b7da9fd4
RH
1851 if (flag_exceptions)
1852 {
1853 this_region = gen_eh_region_allowed (state->cur_region,
1854 gimple_eh_filter_types (inner));
1855 this_state.cur_region = this_region;
1856 }
19114537 1857
355a7673 1858 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
6de9cd9a 1859
b7da9fd4 1860 if (!eh_region_may_contain_throw (this_region))
1d65f45c
RH
1861 return gimple_try_eval (tp);
1862
1863 new_seq = NULL;
1864 this_state.cur_region = state->cur_region;
1865 this_state.ehp_region = this_region;
1866
1867 emit_eh_dispatch (&new_seq, this_region);
1868 emit_resx (&new_seq, this_region);
1869
1870 this_region->u.allowed.label = create_artificial_label (UNKNOWN_LOCATION);
1871 x = gimple_build_label (this_region->u.allowed.label);
1872 gimple_seq_add_stmt (&new_seq, x);
1873
355a7673 1874 lower_eh_constructs_1 (&this_state, gimple_eh_filter_failure_ptr (inner));
1d65f45c
RH
1875 gimple_seq_add_seq (&new_seq, gimple_eh_filter_failure (inner));
1876
1877 gimple_try_set_cleanup (tp, new_seq);
6de9cd9a 1878
1d65f45c
RH
1879 return frob_into_branch_around (tp, this_region, NULL);
1880}
1881
1882/* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY with
1883 an GIMPLE_EH_MUST_NOT_THROW to a sequence of labels and blocks,
1884 plus the exception region trees that record all the magic. */
1885
1886static gimple_seq
538dd0b7 1887lower_eh_must_not_throw (struct leh_state *state, gtry *tp)
1d65f45c 1888{
b7da9fd4 1889 struct leh_state this_state = *state;
1d65f45c 1890
b7da9fd4
RH
1891 if (flag_exceptions)
1892 {
1893 gimple inner = gimple_seq_first_stmt (gimple_try_cleanup (tp));
1894 eh_region this_region;
1d65f45c 1895
b7da9fd4
RH
1896 this_region = gen_eh_region_must_not_throw (state->cur_region);
1897 this_region->u.must_not_throw.failure_decl
538dd0b7
DM
1898 = gimple_eh_must_not_throw_fndecl (
1899 as_a <geh_mnt *> (inner));
c16fd676
RB
1900 this_region->u.must_not_throw.failure_loc
1901 = LOCATION_LOCUS (gimple_location (tp));
1d65f45c 1902
b7da9fd4
RH
1903 /* In order to get mangling applied to this decl, we must mark it
1904 used now. Otherwise, pass_ipa_free_lang_data won't think it
1905 needs to happen. */
1906 TREE_USED (this_region->u.must_not_throw.failure_decl) = 1;
1d65f45c 1907
b7da9fd4
RH
1908 this_state.cur_region = this_region;
1909 }
6de9cd9a 1910
355a7673 1911 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
6de9cd9a 1912
1d65f45c 1913 return gimple_try_eval (tp);
6de9cd9a
DN
1914}
1915
1916/* Implement a cleanup expression. This is similar to try-finally,
1917 except that we only execute the cleanup block for exception edges. */
1918
726a989a 1919static gimple_seq
538dd0b7 1920lower_cleanup (struct leh_state *state, gtry *tp)
6de9cd9a 1921{
b7da9fd4
RH
1922 struct leh_state this_state = *state;
1923 eh_region this_region = NULL;
6de9cd9a 1924 struct leh_tf_state fake_tf;
726a989a 1925 gimple_seq result;
d3f28910 1926 bool cleanup_dead = cleanup_is_dead_in (state->cur_region);
6de9cd9a 1927
d3f28910 1928 if (flag_exceptions && !cleanup_dead)
6de9cd9a 1929 {
b7da9fd4
RH
1930 this_region = gen_eh_region_cleanup (state->cur_region);
1931 this_state.cur_region = this_region;
6de9cd9a
DN
1932 }
1933
355a7673 1934 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
6de9cd9a 1935
d3f28910 1936 if (cleanup_dead || !eh_region_may_contain_throw (this_region))
1d65f45c 1937 return gimple_try_eval (tp);
6de9cd9a
DN
1938
1939 /* Build enough of a try-finally state so that we can reuse
1940 honor_protect_cleanup_actions. */
1941 memset (&fake_tf, 0, sizeof (fake_tf));
c2255bc4 1942 fake_tf.top_p = fake_tf.try_finally_expr = tp;
6de9cd9a
DN
1943 fake_tf.outer = state;
1944 fake_tf.region = this_region;
726a989a 1945 fake_tf.may_fallthru = gimple_seq_may_fallthru (gimple_try_eval (tp));
6de9cd9a
DN
1946 fake_tf.may_throw = true;
1947
6de9cd9a
DN
1948 honor_protect_cleanup_actions (state, NULL, &fake_tf);
1949
1950 if (fake_tf.may_throw)
1951 {
1952 /* In this case honor_protect_cleanup_actions had nothing to do,
1953 and we should process this normally. */
355a7673 1954 lower_eh_constructs_1 (state, gimple_try_cleanup_ptr (tp));
1d65f45c
RH
1955 result = frob_into_branch_around (tp, this_region,
1956 fake_tf.fallthru_label);
6de9cd9a
DN
1957 }
1958 else
1959 {
1960 /* In this case honor_protect_cleanup_actions did nearly all of
1961 the work. All we have left is to append the fallthru_label. */
1962
726a989a 1963 result = gimple_try_eval (tp);
6de9cd9a
DN
1964 if (fake_tf.fallthru_label)
1965 {
726a989a
RB
1966 gimple x = gimple_build_label (fake_tf.fallthru_label);
1967 gimple_seq_add_stmt (&result, x);
6de9cd9a
DN
1968 }
1969 }
726a989a 1970 return result;
6de9cd9a
DN
1971}
1972
1d65f45c 1973/* Main loop for lowering eh constructs. Also moves gsi to the next
726a989a 1974 statement. */
6de9cd9a
DN
1975
1976static void
726a989a 1977lower_eh_constructs_2 (struct leh_state *state, gimple_stmt_iterator *gsi)
6de9cd9a 1978{
726a989a
RB
1979 gimple_seq replace;
1980 gimple x;
1981 gimple stmt = gsi_stmt (*gsi);
6de9cd9a 1982
726a989a 1983 switch (gimple_code (stmt))
6de9cd9a 1984 {
726a989a 1985 case GIMPLE_CALL:
1d65f45c
RH
1986 {
1987 tree fndecl = gimple_call_fndecl (stmt);
1988 tree rhs, lhs;
1989
1990 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
1991 switch (DECL_FUNCTION_CODE (fndecl))
1992 {
1993 case BUILT_IN_EH_POINTER:
1994 /* The front end may have generated a call to
1995 __builtin_eh_pointer (0) within a catch region. Replace
1996 this zero argument with the current catch region number. */
1997 if (state->ehp_region)
1998 {
413581ba
RG
1999 tree nr = build_int_cst (integer_type_node,
2000 state->ehp_region->index);
1d65f45c
RH
2001 gimple_call_set_arg (stmt, 0, nr);
2002 }
2003 else
2004 {
2005 /* The user has dome something silly. Remove it. */
9a9d280e 2006 rhs = null_pointer_node;
1d65f45c
RH
2007 goto do_replace;
2008 }
2009 break;
2010
2011 case BUILT_IN_EH_FILTER:
2012 /* ??? This should never appear, but since it's a builtin it
2013 is accessible to abuse by users. Just remove it and
2014 replace the use with the arbitrary value zero. */
2015 rhs = build_int_cst (TREE_TYPE (TREE_TYPE (fndecl)), 0);
2016 do_replace:
2017 lhs = gimple_call_lhs (stmt);
2018 x = gimple_build_assign (lhs, rhs);
2019 gsi_insert_before (gsi, x, GSI_SAME_STMT);
2020 /* FALLTHRU */
2021
2022 case BUILT_IN_EH_COPY_VALUES:
2023 /* Likewise this should not appear. Remove it. */
2024 gsi_remove (gsi, true);
2025 return;
2026
2027 default:
2028 break;
2029 }
2030 }
2031 /* FALLTHRU */
2032
726a989a 2033 case GIMPLE_ASSIGN:
ba4d8f9d
RG
2034 /* If the stmt can throw use a new temporary for the assignment
2035 to a LHS. This makes sure the old value of the LHS is
87cd4259 2036 available on the EH edge. Only do so for statements that
073a8998 2037 potentially fall through (no noreturn calls e.g.), otherwise
87cd4259 2038 this new assignment might create fake fallthru regions. */
ba4d8f9d
RG
2039 if (stmt_could_throw_p (stmt)
2040 && gimple_has_lhs (stmt)
87cd4259 2041 && gimple_stmt_may_fallthru (stmt)
ba4d8f9d
RG
2042 && !tree_could_throw_p (gimple_get_lhs (stmt))
2043 && is_gimple_reg_type (TREE_TYPE (gimple_get_lhs (stmt))))
2044 {
2045 tree lhs = gimple_get_lhs (stmt);
b731b390 2046 tree tmp = create_tmp_var (TREE_TYPE (lhs));
ba4d8f9d
RG
2047 gimple s = gimple_build_assign (lhs, tmp);
2048 gimple_set_location (s, gimple_location (stmt));
2049 gimple_set_block (s, gimple_block (stmt));
2050 gimple_set_lhs (stmt, tmp);
2051 if (TREE_CODE (TREE_TYPE (tmp)) == COMPLEX_TYPE
2052 || TREE_CODE (TREE_TYPE (tmp)) == VECTOR_TYPE)
2053 DECL_GIMPLE_REG_P (tmp) = 1;
2054 gsi_insert_after (gsi, s, GSI_SAME_STMT);
2055 }
6de9cd9a 2056 /* Look for things that can throw exceptions, and record them. */
726a989a 2057 if (state->cur_region && stmt_could_throw_p (stmt))
6de9cd9a 2058 {
726a989a 2059 record_stmt_eh_region (state->cur_region, stmt);
6de9cd9a 2060 note_eh_region_may_contain_throw (state->cur_region);
6de9cd9a
DN
2061 }
2062 break;
2063
726a989a
RB
2064 case GIMPLE_COND:
2065 case GIMPLE_GOTO:
2066 case GIMPLE_RETURN:
2067 maybe_record_in_goto_queue (state, stmt);
6de9cd9a
DN
2068 break;
2069
726a989a 2070 case GIMPLE_SWITCH:
538dd0b7 2071 verify_norecord_switch_expr (state, as_a <gswitch *> (stmt));
6de9cd9a
DN
2072 break;
2073
726a989a 2074 case GIMPLE_TRY:
538dd0b7
DM
2075 {
2076 gtry *try_stmt = as_a <gtry *> (stmt);
2077 if (gimple_try_kind (try_stmt) == GIMPLE_TRY_FINALLY)
2078 replace = lower_try_finally (state, try_stmt);
2079 else
2080 {
2081 x = gimple_seq_first_stmt (gimple_try_cleanup (try_stmt));
2082 if (!x)
6728ee79 2083 {
538dd0b7
DM
2084 replace = gimple_try_eval (try_stmt);
2085 lower_eh_constructs_1 (state, &replace);
2086 }
2087 else
2088 switch (gimple_code (x))
2089 {
6728ee79 2090 case GIMPLE_CATCH:
538dd0b7
DM
2091 replace = lower_catch (state, try_stmt);
2092 break;
6728ee79 2093 case GIMPLE_EH_FILTER:
538dd0b7
DM
2094 replace = lower_eh_filter (state, try_stmt);
2095 break;
6728ee79 2096 case GIMPLE_EH_MUST_NOT_THROW:
538dd0b7
DM
2097 replace = lower_eh_must_not_throw (state, try_stmt);
2098 break;
0a35513e 2099 case GIMPLE_EH_ELSE:
538dd0b7
DM
2100 /* This code is only valid with GIMPLE_TRY_FINALLY. */
2101 gcc_unreachable ();
6728ee79 2102 default:
538dd0b7
DM
2103 replace = lower_cleanup (state, try_stmt);
2104 break;
2105 }
2106 }
2107 }
726a989a
RB
2108
2109 /* Remove the old stmt and insert the transformed sequence
2110 instead. */
2111 gsi_insert_seq_before (gsi, replace, GSI_SAME_STMT);
2112 gsi_remove (gsi, true);
2113
2114 /* Return since we don't want gsi_next () */
2115 return;
6de9cd9a 2116
0a35513e
AH
2117 case GIMPLE_EH_ELSE:
2118 /* We should be eliminating this in lower_try_finally et al. */
2119 gcc_unreachable ();
2120
6de9cd9a
DN
2121 default:
2122 /* A type, a decl, or some kind of statement that we're not
2123 interested in. Don't walk them. */
2124 break;
2125 }
726a989a
RB
2126
2127 gsi_next (gsi);
2128}
2129
2130/* A helper to unwrap a gimple_seq and feed stmts to lower_eh_constructs_2. */
2131
2132static void
355a7673 2133lower_eh_constructs_1 (struct leh_state *state, gimple_seq *pseq)
726a989a
RB
2134{
2135 gimple_stmt_iterator gsi;
355a7673 2136 for (gsi = gsi_start (*pseq); !gsi_end_p (gsi);)
726a989a 2137 lower_eh_constructs_2 (state, &gsi);
6de9cd9a
DN
2138}
2139
be55bfe6
TS
2140namespace {
2141
2142const pass_data pass_data_lower_eh =
2143{
2144 GIMPLE_PASS, /* type */
2145 "eh", /* name */
2146 OPTGROUP_NONE, /* optinfo_flags */
be55bfe6
TS
2147 TV_TREE_EH, /* tv_id */
2148 PROP_gimple_lcf, /* properties_required */
2149 PROP_gimple_leh, /* properties_provided */
2150 0, /* properties_destroyed */
2151 0, /* todo_flags_start */
2152 0, /* todo_flags_finish */
2153};
2154
2155class pass_lower_eh : public gimple_opt_pass
2156{
2157public:
2158 pass_lower_eh (gcc::context *ctxt)
2159 : gimple_opt_pass (pass_data_lower_eh, ctxt)
2160 {}
2161
2162 /* opt_pass methods: */
2163 virtual unsigned int execute (function *);
2164
2165}; // class pass_lower_eh
2166
2167unsigned int
2168pass_lower_eh::execute (function *fun)
6de9cd9a
DN
2169{
2170 struct leh_state null_state;
1d65f45c 2171 gimple_seq bodyp;
726a989a 2172
1d65f45c
RH
2173 bodyp = gimple_body (current_function_decl);
2174 if (bodyp == NULL)
2175 return 0;
6de9cd9a 2176
c203e8a7 2177 finally_tree = new hash_table<finally_tree_hasher> (31);
b7da9fd4 2178 eh_region_may_contain_throw_map = BITMAP_ALLOC (NULL);
1d65f45c 2179 memset (&null_state, 0, sizeof (null_state));
6de9cd9a 2180
726a989a 2181 collect_finally_tree_1 (bodyp, NULL);
355a7673
MM
2182 lower_eh_constructs_1 (&null_state, &bodyp);
2183 gimple_set_body (current_function_decl, bodyp);
6de9cd9a 2184
1d65f45c
RH
2185 /* We assume there's a return statement, or something, at the end of
2186 the function, and thus ploping the EH sequence afterward won't
2187 change anything. */
2188 gcc_assert (!gimple_seq_may_fallthru (bodyp));
2189 gimple_seq_add_seq (&bodyp, eh_seq);
2190
2191 /* We assume that since BODYP already existed, adding EH_SEQ to it
2192 didn't change its value, and we don't have to re-set the function. */
2193 gcc_assert (bodyp == gimple_body (current_function_decl));
6de9cd9a 2194
c203e8a7
TS
2195 delete finally_tree;
2196 finally_tree = NULL;
b7da9fd4 2197 BITMAP_FREE (eh_region_may_contain_throw_map);
1d65f45c 2198 eh_seq = NULL;
f9417da1
RG
2199
2200 /* If this function needs a language specific EH personality routine
2201 and the frontend didn't already set one do so now. */
be55bfe6 2202 if (function_needs_eh_personality (fun) == eh_personality_lang
f9417da1
RG
2203 && !DECL_FUNCTION_PERSONALITY (current_function_decl))
2204 DECL_FUNCTION_PERSONALITY (current_function_decl)
2205 = lang_hooks.eh_personality ();
2206
c2924966 2207 return 0;
6de9cd9a
DN
2208}
2209
27a4cd48
DM
2210} // anon namespace
2211
2212gimple_opt_pass *
2213make_pass_lower_eh (gcc::context *ctxt)
2214{
2215 return new pass_lower_eh (ctxt);
2216}
6de9cd9a 2217\f
1d65f45c
RH
2218/* Create the multiple edges from an EH_DISPATCH statement to all of
2219 the possible handlers for its EH region. Return true if there's
2220 no fallthru edge; false if there is. */
6de9cd9a 2221
1d65f45c 2222bool
538dd0b7 2223make_eh_dispatch_edges (geh_dispatch *stmt)
6de9cd9a 2224{
1d65f45c
RH
2225 eh_region r;
2226 eh_catch c;
6de9cd9a
DN
2227 basic_block src, dst;
2228
1d65f45c 2229 r = get_eh_region_from_number (gimple_eh_dispatch_region (stmt));
726a989a 2230 src = gimple_bb (stmt);
6de9cd9a 2231
1d65f45c
RH
2232 switch (r->type)
2233 {
2234 case ERT_TRY:
2235 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
2236 {
2237 dst = label_to_block (c->label);
2238 make_edge (src, dst, 0);
19114537 2239
1d65f45c
RH
2240 /* A catch-all handler doesn't have a fallthru. */
2241 if (c->type_list == NULL)
2242 return false;
2243 }
2244 break;
a8ee227c 2245
1d65f45c
RH
2246 case ERT_ALLOWED_EXCEPTIONS:
2247 dst = label_to_block (r->u.allowed.label);
2248 make_edge (src, dst, 0);
2249 break;
2250
2251 default:
2252 gcc_unreachable ();
2253 }
2254
2255 return true;
a8ee227c
JH
2256}
2257
1d65f45c
RH
2258/* Create the single EH edge from STMT to its nearest landing pad,
2259 if there is such a landing pad within the current function. */
2260
6de9cd9a 2261void
726a989a 2262make_eh_edges (gimple stmt)
6de9cd9a 2263{
1d65f45c
RH
2264 basic_block src, dst;
2265 eh_landing_pad lp;
2266 int lp_nr;
6de9cd9a 2267
1d65f45c
RH
2268 lp_nr = lookup_stmt_eh_lp (stmt);
2269 if (lp_nr <= 0)
2270 return;
6de9cd9a 2271
1d65f45c
RH
2272 lp = get_eh_landing_pad_from_number (lp_nr);
2273 gcc_assert (lp != NULL);
a203a221 2274
1d65f45c
RH
2275 src = gimple_bb (stmt);
2276 dst = label_to_block (lp->post_landing_pad);
2277 make_edge (src, dst, EDGE_EH);
6de9cd9a
DN
2278}
2279
1d65f45c
RH
2280/* Do the work in redirecting EDGE_IN to NEW_BB within the EH region tree;
2281 do not actually perform the final edge redirection.
a3710436 2282
1d65f45c
RH
2283 CHANGE_REGION is true when we're being called from cleanup_empty_eh and
2284 we intend to change the destination EH region as well; this means
2285 EH_LANDING_PAD_NR must already be set on the destination block label.
2286 If false, we're being called from generic cfg manipulation code and we
2287 should preserve our place within the region tree. */
2288
2289static void
2290redirect_eh_edge_1 (edge edge_in, basic_block new_bb, bool change_region)
a3710436 2291{
1d65f45c
RH
2292 eh_landing_pad old_lp, new_lp;
2293 basic_block old_bb;
2294 gimple throw_stmt;
2295 int old_lp_nr, new_lp_nr;
2296 tree old_label, new_label;
2297 edge_iterator ei;
2298 edge e;
2299
2300 old_bb = edge_in->dest;
2301 old_label = gimple_block_label (old_bb);
2302 old_lp_nr = EH_LANDING_PAD_NR (old_label);
2303 gcc_assert (old_lp_nr > 0);
2304 old_lp = get_eh_landing_pad_from_number (old_lp_nr);
2305
2306 throw_stmt = last_stmt (edge_in->src);
2307 gcc_assert (lookup_stmt_eh_lp (throw_stmt) == old_lp_nr);
2308
2309 new_label = gimple_block_label (new_bb);
a3710436 2310
1d65f45c
RH
2311 /* Look for an existing region that might be using NEW_BB already. */
2312 new_lp_nr = EH_LANDING_PAD_NR (new_label);
2313 if (new_lp_nr)
a3710436 2314 {
1d65f45c
RH
2315 new_lp = get_eh_landing_pad_from_number (new_lp_nr);
2316 gcc_assert (new_lp);
b8698a0f 2317
1d65f45c
RH
2318 /* Unless CHANGE_REGION is true, the new and old landing pad
2319 had better be associated with the same EH region. */
2320 gcc_assert (change_region || new_lp->region == old_lp->region);
a3710436
JH
2321 }
2322 else
2323 {
1d65f45c
RH
2324 new_lp = NULL;
2325 gcc_assert (!change_region);
a3710436
JH
2326 }
2327
1d65f45c
RH
2328 /* Notice when we redirect the last EH edge away from OLD_BB. */
2329 FOR_EACH_EDGE (e, ei, old_bb->preds)
2330 if (e != edge_in && (e->flags & EDGE_EH))
2331 break;
cc7220fd 2332
1d65f45c 2333 if (new_lp)
cc7220fd 2334 {
1d65f45c
RH
2335 /* NEW_LP already exists. If there are still edges into OLD_LP,
2336 there's nothing to do with the EH tree. If there are no more
2337 edges into OLD_LP, then we want to remove OLD_LP as it is unused.
2338 If CHANGE_REGION is true, then our caller is expecting to remove
2339 the landing pad. */
2340 if (e == NULL && !change_region)
2341 remove_eh_landing_pad (old_lp);
cc7220fd 2342 }
1d65f45c 2343 else
cc7220fd 2344 {
1d65f45c
RH
2345 /* No correct landing pad exists. If there are no more edges
2346 into OLD_LP, then we can simply re-use the existing landing pad.
2347 Otherwise, we have to create a new landing pad. */
2348 if (e == NULL)
2349 {
2350 EH_LANDING_PAD_NR (old_lp->post_landing_pad) = 0;
2351 new_lp = old_lp;
2352 }
2353 else
2354 new_lp = gen_eh_landing_pad (old_lp->region);
2355 new_lp->post_landing_pad = new_label;
2356 EH_LANDING_PAD_NR (new_label) = new_lp->index;
cc7220fd 2357 }
1d65f45c
RH
2358
2359 /* Maybe move the throwing statement to the new region. */
2360 if (old_lp != new_lp)
cc7220fd 2361 {
1d65f45c
RH
2362 remove_stmt_from_eh_lp (throw_stmt);
2363 add_stmt_to_eh_lp (throw_stmt, new_lp->index);
cc7220fd 2364 }
cc7220fd
JH
2365}
2366
1d65f45c 2367/* Redirect EH edge E to NEW_BB. */
726a989a 2368
1d65f45c
RH
2369edge
2370redirect_eh_edge (edge edge_in, basic_block new_bb)
cc7220fd 2371{
1d65f45c
RH
2372 redirect_eh_edge_1 (edge_in, new_bb, false);
2373 return ssa_redirect_edge (edge_in, new_bb);
2374}
cc7220fd 2375
1d65f45c
RH
2376/* This is a subroutine of gimple_redirect_edge_and_branch. Update the
2377 labels for redirecting a non-fallthru EH_DISPATCH edge E to NEW_BB.
2378 The actual edge update will happen in the caller. */
cc7220fd 2379
1d65f45c 2380void
538dd0b7 2381redirect_eh_dispatch_edge (geh_dispatch *stmt, edge e, basic_block new_bb)
1d65f45c
RH
2382{
2383 tree new_lab = gimple_block_label (new_bb);
2384 bool any_changed = false;
2385 basic_block old_bb;
2386 eh_region r;
2387 eh_catch c;
2388
2389 r = get_eh_region_from_number (gimple_eh_dispatch_region (stmt));
2390 switch (r->type)
cc7220fd 2391 {
1d65f45c
RH
2392 case ERT_TRY:
2393 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
cc7220fd 2394 {
1d65f45c
RH
2395 old_bb = label_to_block (c->label);
2396 if (old_bb == e->dest)
2397 {
2398 c->label = new_lab;
2399 any_changed = true;
2400 }
cc7220fd 2401 }
1d65f45c
RH
2402 break;
2403
2404 case ERT_ALLOWED_EXCEPTIONS:
2405 old_bb = label_to_block (r->u.allowed.label);
2406 gcc_assert (old_bb == e->dest);
2407 r->u.allowed.label = new_lab;
2408 any_changed = true;
2409 break;
2410
2411 default:
2412 gcc_unreachable ();
cc7220fd 2413 }
726a989a 2414
1d65f45c 2415 gcc_assert (any_changed);
cc7220fd 2416}
6de9cd9a 2417\f
726a989a
RB
2418/* Helper function for operation_could_trap_p and stmt_could_throw_p. */
2419
890065bf 2420bool
726a989a
RB
2421operation_could_trap_helper_p (enum tree_code op,
2422 bool fp_operation,
2423 bool honor_trapv,
2424 bool honor_nans,
2425 bool honor_snans,
2426 tree divisor,
2427 bool *handled)
2428{
2429 *handled = true;
2430 switch (op)
2431 {
2432 case TRUNC_DIV_EXPR:
2433 case CEIL_DIV_EXPR:
2434 case FLOOR_DIV_EXPR:
2435 case ROUND_DIV_EXPR:
2436 case EXACT_DIV_EXPR:
2437 case CEIL_MOD_EXPR:
2438 case FLOOR_MOD_EXPR:
2439 case ROUND_MOD_EXPR:
2440 case TRUNC_MOD_EXPR:
2441 case RDIV_EXPR:
2442 if (honor_snans || honor_trapv)
2443 return true;
2444 if (fp_operation)
2445 return flag_trapping_math;
2446 if (!TREE_CONSTANT (divisor) || integer_zerop (divisor))
2447 return true;
2448 return false;
2449
2450 case LT_EXPR:
2451 case LE_EXPR:
2452 case GT_EXPR:
2453 case GE_EXPR:
2454 case LTGT_EXPR:
2455 /* Some floating point comparisons may trap. */
2456 return honor_nans;
2457
2458 case EQ_EXPR:
2459 case NE_EXPR:
2460 case UNORDERED_EXPR:
2461 case ORDERED_EXPR:
2462 case UNLT_EXPR:
2463 case UNLE_EXPR:
2464 case UNGT_EXPR:
2465 case UNGE_EXPR:
2466 case UNEQ_EXPR:
2467 return honor_snans;
2468
726a989a
RB
2469 case NEGATE_EXPR:
2470 case ABS_EXPR:
2471 case CONJ_EXPR:
2472 /* These operations don't trap with floating point. */
2473 if (honor_trapv)
2474 return true;
2475 return false;
2476
2477 case PLUS_EXPR:
2478 case MINUS_EXPR:
2479 case MULT_EXPR:
2480 /* Any floating arithmetic may trap. */
2481 if (fp_operation && flag_trapping_math)
2482 return true;
2483 if (honor_trapv)
2484 return true;
2485 return false;
2486
f5e5b46c
RG
2487 case COMPLEX_EXPR:
2488 case CONSTRUCTOR:
2489 /* Constructing an object cannot trap. */
2490 return false;
2491
726a989a
RB
2492 default:
2493 /* Any floating arithmetic may trap. */
2494 if (fp_operation && flag_trapping_math)
2495 return true;
2496
2497 *handled = false;
2498 return false;
2499 }
2500}
2501
2502/* Return true if operation OP may trap. FP_OPERATION is true if OP is applied
2503 on floating-point values. HONOR_TRAPV is true if OP is applied on integer
2504 type operands that may trap. If OP is a division operator, DIVISOR contains
2505 the value of the divisor. */
2506
2507bool
2508operation_could_trap_p (enum tree_code op, bool fp_operation, bool honor_trapv,
2509 tree divisor)
2510{
2511 bool honor_nans = (fp_operation && flag_trapping_math
2512 && !flag_finite_math_only);
2513 bool honor_snans = fp_operation && flag_signaling_nans != 0;
2514 bool handled;
2515
2516 if (TREE_CODE_CLASS (op) != tcc_comparison
2517 && TREE_CODE_CLASS (op) != tcc_unary
2518 && TREE_CODE_CLASS (op) != tcc_binary)
2519 return false;
2520
2521 return operation_could_trap_helper_p (op, fp_operation, honor_trapv,
2522 honor_nans, honor_snans, divisor,
2523 &handled);
2524}
2525
862d0b35
DN
2526
2527/* Returns true if it is possible to prove that the index of
2528 an array access REF (an ARRAY_REF expression) falls into the
2529 array bounds. */
2530
2531static bool
2532in_array_bounds_p (tree ref)
2533{
2534 tree idx = TREE_OPERAND (ref, 1);
2535 tree min, max;
2536
2537 if (TREE_CODE (idx) != INTEGER_CST)
2538 return false;
2539
2540 min = array_ref_low_bound (ref);
2541 max = array_ref_up_bound (ref);
2542 if (!min
2543 || !max
2544 || TREE_CODE (min) != INTEGER_CST
2545 || TREE_CODE (max) != INTEGER_CST)
2546 return false;
2547
2548 if (tree_int_cst_lt (idx, min)
2549 || tree_int_cst_lt (max, idx))
2550 return false;
2551
2552 return true;
2553}
2554
2555/* Returns true if it is possible to prove that the range of
2556 an array access REF (an ARRAY_RANGE_REF expression) falls
2557 into the array bounds. */
2558
2559static bool
2560range_in_array_bounds_p (tree ref)
2561{
2562 tree domain_type = TYPE_DOMAIN (TREE_TYPE (ref));
2563 tree range_min, range_max, min, max;
2564
2565 range_min = TYPE_MIN_VALUE (domain_type);
2566 range_max = TYPE_MAX_VALUE (domain_type);
2567 if (!range_min
2568 || !range_max
2569 || TREE_CODE (range_min) != INTEGER_CST
2570 || TREE_CODE (range_max) != INTEGER_CST)
2571 return false;
2572
2573 min = array_ref_low_bound (ref);
2574 max = array_ref_up_bound (ref);
2575 if (!min
2576 || !max
2577 || TREE_CODE (min) != INTEGER_CST
2578 || TREE_CODE (max) != INTEGER_CST)
2579 return false;
2580
2581 if (tree_int_cst_lt (range_min, min)
2582 || tree_int_cst_lt (max, range_max))
2583 return false;
2584
2585 return true;
2586}
2587
726a989a 2588/* Return true if EXPR can trap, as in dereferencing an invalid pointer
1eaba2f2
RH
2589 location or floating point arithmetic. C.f. the rtl version, may_trap_p.
2590 This routine expects only GIMPLE lhs or rhs input. */
6de9cd9a
DN
2591
2592bool
2593tree_could_trap_p (tree expr)
2594{
726a989a 2595 enum tree_code code;
1eaba2f2 2596 bool fp_operation = false;
9675412f 2597 bool honor_trapv = false;
726a989a 2598 tree t, base, div = NULL_TREE;
6de9cd9a 2599
726a989a
RB
2600 if (!expr)
2601 return false;
1d65f45c 2602
726a989a
RB
2603 code = TREE_CODE (expr);
2604 t = TREE_TYPE (expr);
2605
2606 if (t)
1eaba2f2 2607 {
04b03edb
RAE
2608 if (COMPARISON_CLASS_P (expr))
2609 fp_operation = FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (expr, 0)));
2610 else
2611 fp_operation = FLOAT_TYPE_P (t);
726a989a 2612 honor_trapv = INTEGRAL_TYPE_P (t) && TYPE_OVERFLOW_TRAPS (t);
1eaba2f2
RH
2613 }
2614
726a989a
RB
2615 if (TREE_CODE_CLASS (code) == tcc_binary)
2616 div = TREE_OPERAND (expr, 1);
2617 if (operation_could_trap_p (code, fp_operation, honor_trapv, div))
2618 return true;
2619
d25cee4d 2620 restart:
6de9cd9a
DN
2621 switch (code)
2622 {
6de9cd9a
DN
2623 case COMPONENT_REF:
2624 case REALPART_EXPR:
2625 case IMAGPART_EXPR:
2626 case BIT_FIELD_REF:
483edb92 2627 case VIEW_CONVERT_EXPR:
d25cee4d
RH
2628 case WITH_SIZE_EXPR:
2629 expr = TREE_OPERAND (expr, 0);
2630 code = TREE_CODE (expr);
2631 goto restart;
a7e5372d
ZD
2632
2633 case ARRAY_RANGE_REF:
11fc4275
EB
2634 base = TREE_OPERAND (expr, 0);
2635 if (tree_could_trap_p (base))
a7e5372d 2636 return true;
11fc4275
EB
2637 if (TREE_THIS_NOTRAP (expr))
2638 return false;
11fc4275 2639 return !range_in_array_bounds_p (expr);
a7e5372d
ZD
2640
2641 case ARRAY_REF:
2642 base = TREE_OPERAND (expr, 0);
a7e5372d
ZD
2643 if (tree_could_trap_p (base))
2644 return true;
a7e5372d
ZD
2645 if (TREE_THIS_NOTRAP (expr))
2646 return false;
a7e5372d 2647 return !in_array_bounds_p (expr);
6de9cd9a 2648
4e1f39e4 2649 case TARGET_MEM_REF:
70f34814 2650 case MEM_REF:
4e1f39e4
RB
2651 if (TREE_CODE (TREE_OPERAND (expr, 0)) == ADDR_EXPR
2652 && tree_could_trap_p (TREE_OPERAND (TREE_OPERAND (expr, 0), 0)))
2653 return true;
2654 if (TREE_THIS_NOTRAP (expr))
70f34814 2655 return false;
4e1f39e4
RB
2656 /* We cannot prove that the access is in-bounds when we have
2657 variable-index TARGET_MEM_REFs. */
2658 if (code == TARGET_MEM_REF
2659 && (TMR_INDEX (expr) || TMR_INDEX2 (expr)))
2660 return true;
2661 if (TREE_CODE (TREE_OPERAND (expr, 0)) == ADDR_EXPR)
2662 {
2663 tree base = TREE_OPERAND (TREE_OPERAND (expr, 0), 0);
807e902e
KZ
2664 offset_int off = mem_ref_offset (expr);
2665 if (wi::neg_p (off, SIGNED))
4e1f39e4
RB
2666 return true;
2667 if (TREE_CODE (base) == STRING_CST)
807e902e 2668 return wi::leu_p (TREE_STRING_LENGTH (base), off);
4e1f39e4
RB
2669 else if (DECL_SIZE_UNIT (base) == NULL_TREE
2670 || TREE_CODE (DECL_SIZE_UNIT (base)) != INTEGER_CST
807e902e 2671 || wi::leu_p (wi::to_offset (DECL_SIZE_UNIT (base)), off))
4e1f39e4
RB
2672 return true;
2673 /* Now we are sure the first byte of the access is inside
2674 the object. */
2675 return false;
2676 }
2677 return true;
2678
6de9cd9a 2679 case INDIRECT_REF:
1eaba2f2
RH
2680 return !TREE_THIS_NOTRAP (expr);
2681
2682 case ASM_EXPR:
2683 return TREE_THIS_VOLATILE (expr);
5cb2183e 2684
726a989a
RB
2685 case CALL_EXPR:
2686 t = get_callee_fndecl (expr);
2687 /* Assume that calls to weak functions may trap. */
f2c3a8ce 2688 if (!t || !DECL_P (t))
1eaba2f2 2689 return true;
f2c3a8ce
JJ
2690 if (DECL_WEAK (t))
2691 return tree_could_trap_p (t);
2692 return false;
2693
2694 case FUNCTION_DECL:
2695 /* Assume that accesses to weak functions may trap, unless we know
2696 they are certainly defined in current TU or in some other
2697 LTO partition. */
5940e204 2698 if (DECL_WEAK (expr) && !DECL_COMDAT (expr) && DECL_EXTERNAL (expr))
f2c3a8ce 2699 {
5940e204
EB
2700 cgraph_node *node = cgraph_node::get (expr);
2701 if (node)
2702 node = node->function_symbol ();
2703 return !(node && node->in_other_partition);
f2c3a8ce
JJ
2704 }
2705 return false;
2706
2707 case VAR_DECL:
2708 /* Assume that accesses to weak vars may trap, unless we know
2709 they are certainly defined in current TU or in some other
2710 LTO partition. */
5940e204 2711 if (DECL_WEAK (expr) && !DECL_COMDAT (expr) && DECL_EXTERNAL (expr))
f2c3a8ce 2712 {
5940e204
EB
2713 varpool_node *node = varpool_node::get (expr);
2714 if (node)
2715 node = node->ultimate_alias_target ();
2716 return !(node && node->in_other_partition);
f2c3a8ce 2717 }
1eaba2f2
RH
2718 return false;
2719
726a989a
RB
2720 default:
2721 return false;
2722 }
2723}
1eaba2f2 2724
1eaba2f2 2725
726a989a
RB
2726/* Helper for stmt_could_throw_p. Return true if STMT (assumed to be a
2727 an assignment or a conditional) may throw. */
1eaba2f2 2728
726a989a
RB
2729static bool
2730stmt_could_throw_1_p (gimple stmt)
2731{
2732 enum tree_code code = gimple_expr_code (stmt);
2733 bool honor_nans = false;
2734 bool honor_snans = false;
2735 bool fp_operation = false;
2736 bool honor_trapv = false;
2737 tree t;
2738 size_t i;
2739 bool handled, ret;
9675412f 2740
726a989a
RB
2741 if (TREE_CODE_CLASS (code) == tcc_comparison
2742 || TREE_CODE_CLASS (code) == tcc_unary
2743 || TREE_CODE_CLASS (code) == tcc_binary)
2744 {
dd46054a
RG
2745 if (is_gimple_assign (stmt)
2746 && TREE_CODE_CLASS (code) == tcc_comparison)
2747 t = TREE_TYPE (gimple_assign_rhs1 (stmt));
2748 else if (gimple_code (stmt) == GIMPLE_COND)
2749 t = TREE_TYPE (gimple_cond_lhs (stmt));
2750 else
2751 t = gimple_expr_type (stmt);
726a989a
RB
2752 fp_operation = FLOAT_TYPE_P (t);
2753 if (fp_operation)
2754 {
2755 honor_nans = flag_trapping_math && !flag_finite_math_only;
2756 honor_snans = flag_signaling_nans != 0;
2757 }
2758 else if (INTEGRAL_TYPE_P (t) && TYPE_OVERFLOW_TRAPS (t))
2759 honor_trapv = true;
2760 }
2761
2762 /* Check if the main expression may trap. */
2763 t = is_gimple_assign (stmt) ? gimple_assign_rhs2 (stmt) : NULL;
2764 ret = operation_could_trap_helper_p (code, fp_operation, honor_trapv,
2765 honor_nans, honor_snans, t,
2766 &handled);
2767 if (handled)
2768 return ret;
2769
2770 /* If the expression does not trap, see if any of the individual operands may
2771 trap. */
2772 for (i = 0; i < gimple_num_ops (stmt); i++)
2773 if (tree_could_trap_p (gimple_op (stmt, i)))
2774 return true;
2775
2776 return false;
2777}
2778
2779
2780/* Return true if statement STMT could throw an exception. */
2781
2782bool
2783stmt_could_throw_p (gimple stmt)
2784{
726a989a
RB
2785 if (!flag_exceptions)
2786 return false;
2787
2788 /* The only statements that can throw an exception are assignments,
1d65f45c
RH
2789 conditionals, calls, resx, and asms. */
2790 switch (gimple_code (stmt))
2791 {
2792 case GIMPLE_RESX:
2793 return true;
726a989a 2794
1d65f45c 2795 case GIMPLE_CALL:
538dd0b7 2796 return !gimple_call_nothrow_p (as_a <gcall *> (stmt));
726a989a 2797
1d65f45c
RH
2798 case GIMPLE_ASSIGN:
2799 case GIMPLE_COND:
8f4f502f 2800 if (!cfun->can_throw_non_call_exceptions)
1d65f45c
RH
2801 return false;
2802 return stmt_could_throw_1_p (stmt);
726a989a 2803
1d65f45c 2804 case GIMPLE_ASM:
8f4f502f 2805 if (!cfun->can_throw_non_call_exceptions)
1d65f45c 2806 return false;
538dd0b7 2807 return gimple_asm_volatile_p (as_a <gasm *> (stmt));
1d65f45c
RH
2808
2809 default:
2810 return false;
2811 }
6de9cd9a
DN
2812}
2813
726a989a
RB
2814
2815/* Return true if expression T could throw an exception. */
2816
6de9cd9a
DN
2817bool
2818tree_could_throw_p (tree t)
2819{
2820 if (!flag_exceptions)
2821 return false;
726a989a 2822 if (TREE_CODE (t) == MODIFY_EXPR)
6de9cd9a 2823 {
8f4f502f 2824 if (cfun->can_throw_non_call_exceptions
1d65f45c
RH
2825 && tree_could_trap_p (TREE_OPERAND (t, 0)))
2826 return true;
726a989a 2827 t = TREE_OPERAND (t, 1);
6de9cd9a
DN
2828 }
2829
d25cee4d
RH
2830 if (TREE_CODE (t) == WITH_SIZE_EXPR)
2831 t = TREE_OPERAND (t, 0);
6de9cd9a
DN
2832 if (TREE_CODE (t) == CALL_EXPR)
2833 return (call_expr_flags (t) & ECF_NOTHROW) == 0;
8f4f502f 2834 if (cfun->can_throw_non_call_exceptions)
67c605a5 2835 return tree_could_trap_p (t);
6de9cd9a
DN
2836 return false;
2837}
2838
33977f81
JH
2839/* Return true if STMT can throw an exception that is not caught within
2840 the current function (CFUN). */
2841
2842bool
2843stmt_can_throw_external (gimple stmt)
2844{
1d65f45c 2845 int lp_nr;
33977f81
JH
2846
2847 if (!stmt_could_throw_p (stmt))
2848 return false;
2849
1d65f45c
RH
2850 lp_nr = lookup_stmt_eh_lp (stmt);
2851 return lp_nr == 0;
33977f81 2852}
726a989a
RB
2853
2854/* Return true if STMT can throw an exception that is caught within
2855 the current function (CFUN). */
2856
6de9cd9a 2857bool
726a989a 2858stmt_can_throw_internal (gimple stmt)
6de9cd9a 2859{
1d65f45c 2860 int lp_nr;
726a989a 2861
1d65f45c 2862 if (!stmt_could_throw_p (stmt))
6de9cd9a 2863 return false;
726a989a 2864
1d65f45c
RH
2865 lp_nr = lookup_stmt_eh_lp (stmt);
2866 return lp_nr > 0;
2867}
2868
2869/* Given a statement STMT in IFUN, if STMT can no longer throw, then
2870 remove any entry it might have from the EH table. Return true if
2871 any change was made. */
2872
2873bool
2874maybe_clean_eh_stmt_fn (struct function *ifun, gimple stmt)
2875{
2876 if (stmt_could_throw_p (stmt))
2877 return false;
2878 return remove_stmt_from_eh_lp_fn (ifun, stmt);
6de9cd9a
DN
2879}
2880
1d65f45c
RH
2881/* Likewise, but always use the current function. */
2882
2883bool
2884maybe_clean_eh_stmt (gimple stmt)
2885{
2886 return maybe_clean_eh_stmt_fn (cfun, stmt);
2887}
6de9cd9a 2888
af47810a
RH
2889/* Given a statement OLD_STMT and a new statement NEW_STMT that has replaced
2890 OLD_STMT in the function, remove OLD_STMT from the EH table and put NEW_STMT
2891 in the table if it should be in there. Return TRUE if a replacement was
2892 done that my require an EH edge purge. */
2893
1d65f45c
RH
2894bool
2895maybe_clean_or_replace_eh_stmt (gimple old_stmt, gimple new_stmt)
1eaba2f2 2896{
1d65f45c 2897 int lp_nr = lookup_stmt_eh_lp (old_stmt);
af47810a 2898
1d65f45c 2899 if (lp_nr != 0)
af47810a 2900 {
726a989a 2901 bool new_stmt_could_throw = stmt_could_throw_p (new_stmt);
af47810a
RH
2902
2903 if (new_stmt == old_stmt && new_stmt_could_throw)
2904 return false;
2905
1d65f45c 2906 remove_stmt_from_eh_lp (old_stmt);
af47810a
RH
2907 if (new_stmt_could_throw)
2908 {
1d65f45c 2909 add_stmt_to_eh_lp (new_stmt, lp_nr);
af47810a
RH
2910 return false;
2911 }
2912 else
2913 return true;
2914 }
2915
1eaba2f2
RH
2916 return false;
2917}
1d65f45c 2918
073a8998 2919/* Given a statement OLD_STMT in OLD_FUN and a duplicate statement NEW_STMT
1d65f45c
RH
2920 in NEW_FUN, copy the EH table data from OLD_STMT to NEW_STMT. The MAP
2921 operand is the return value of duplicate_eh_regions. */
2922
2923bool
2924maybe_duplicate_eh_stmt_fn (struct function *new_fun, gimple new_stmt,
2925 struct function *old_fun, gimple old_stmt,
b787e7a2
TS
2926 hash_map<void *, void *> *map,
2927 int default_lp_nr)
1d65f45c
RH
2928{
2929 int old_lp_nr, new_lp_nr;
1d65f45c
RH
2930
2931 if (!stmt_could_throw_p (new_stmt))
2932 return false;
2933
2934 old_lp_nr = lookup_stmt_eh_lp_fn (old_fun, old_stmt);
2935 if (old_lp_nr == 0)
2936 {
2937 if (default_lp_nr == 0)
2938 return false;
2939 new_lp_nr = default_lp_nr;
2940 }
2941 else if (old_lp_nr > 0)
2942 {
2943 eh_landing_pad old_lp, new_lp;
2944
9771b263 2945 old_lp = (*old_fun->eh->lp_array)[old_lp_nr];
b787e7a2 2946 new_lp = static_cast<eh_landing_pad> (*map->get (old_lp));
1d65f45c
RH
2947 new_lp_nr = new_lp->index;
2948 }
2949 else
2950 {
2951 eh_region old_r, new_r;
2952
9771b263 2953 old_r = (*old_fun->eh->region_array)[-old_lp_nr];
b787e7a2 2954 new_r = static_cast<eh_region> (*map->get (old_r));
1d65f45c
RH
2955 new_lp_nr = -new_r->index;
2956 }
2957
2958 add_stmt_to_eh_lp_fn (new_fun, new_stmt, new_lp_nr);
2959 return true;
2960}
2961
2962/* Similar, but both OLD_STMT and NEW_STMT are within the current function,
2963 and thus no remapping is required. */
2964
2965bool
2966maybe_duplicate_eh_stmt (gimple new_stmt, gimple old_stmt)
2967{
2968 int lp_nr;
2969
2970 if (!stmt_could_throw_p (new_stmt))
2971 return false;
2972
2973 lp_nr = lookup_stmt_eh_lp (old_stmt);
2974 if (lp_nr == 0)
2975 return false;
2976
2977 add_stmt_to_eh_lp (new_stmt, lp_nr);
2978 return true;
2979}
a24549d4 2980\f
726a989a
RB
2981/* Returns TRUE if oneh and twoh are exception handlers (gimple_try_cleanup of
2982 GIMPLE_TRY) that are similar enough to be considered the same. Currently
2983 this only handles handlers consisting of a single call, as that's the
2984 important case for C++: a destructor call for a particular object showing
2985 up in multiple handlers. */
a24549d4
JM
2986
2987static bool
726a989a 2988same_handler_p (gimple_seq oneh, gimple_seq twoh)
a24549d4 2989{
726a989a
RB
2990 gimple_stmt_iterator gsi;
2991 gimple ones, twos;
2992 unsigned int ai;
a24549d4 2993
726a989a
RB
2994 gsi = gsi_start (oneh);
2995 if (!gsi_one_before_end_p (gsi))
a24549d4 2996 return false;
726a989a 2997 ones = gsi_stmt (gsi);
a24549d4 2998
726a989a
RB
2999 gsi = gsi_start (twoh);
3000 if (!gsi_one_before_end_p (gsi))
a24549d4 3001 return false;
726a989a
RB
3002 twos = gsi_stmt (gsi);
3003
3004 if (!is_gimple_call (ones)
3005 || !is_gimple_call (twos)
3006 || gimple_call_lhs (ones)
3007 || gimple_call_lhs (twos)
3008 || gimple_call_chain (ones)
3009 || gimple_call_chain (twos)
25583c4f 3010 || !gimple_call_same_target_p (ones, twos)
726a989a 3011 || gimple_call_num_args (ones) != gimple_call_num_args (twos))
a24549d4
JM
3012 return false;
3013
726a989a
RB
3014 for (ai = 0; ai < gimple_call_num_args (ones); ++ai)
3015 if (!operand_equal_p (gimple_call_arg (ones, ai),
1d65f45c 3016 gimple_call_arg (twos, ai), 0))
a24549d4
JM
3017 return false;
3018
3019 return true;
3020}
3021
3022/* Optimize
3023 try { A() } finally { try { ~B() } catch { ~A() } }
3024 try { ... } finally { ~A() }
3025 into
3026 try { A() } catch { ~B() }
3027 try { ~B() ... } finally { ~A() }
3028
3029 This occurs frequently in C++, where A is a local variable and B is a
3030 temporary used in the initializer for A. */
3031
3032static void
538dd0b7 3033optimize_double_finally (gtry *one, gtry *two)
a24549d4 3034{
726a989a
RB
3035 gimple oneh;
3036 gimple_stmt_iterator gsi;
355a7673 3037 gimple_seq cleanup;
a24549d4 3038
355a7673
MM
3039 cleanup = gimple_try_cleanup (one);
3040 gsi = gsi_start (cleanup);
726a989a 3041 if (!gsi_one_before_end_p (gsi))
a24549d4
JM
3042 return;
3043
726a989a
RB
3044 oneh = gsi_stmt (gsi);
3045 if (gimple_code (oneh) != GIMPLE_TRY
3046 || gimple_try_kind (oneh) != GIMPLE_TRY_CATCH)
a24549d4
JM
3047 return;
3048
726a989a 3049 if (same_handler_p (gimple_try_cleanup (oneh), gimple_try_cleanup (two)))
a24549d4 3050 {
726a989a 3051 gimple_seq seq = gimple_try_eval (oneh);
a24549d4 3052
726a989a
RB
3053 gimple_try_set_cleanup (one, seq);
3054 gimple_try_set_kind (one, GIMPLE_TRY_CATCH);
3055 seq = copy_gimple_seq_and_replace_locals (seq);
3056 gimple_seq_add_seq (&seq, gimple_try_eval (two));
3057 gimple_try_set_eval (two, seq);
a24549d4
JM
3058 }
3059}
3060
3061/* Perform EH refactoring optimizations that are simpler to do when code
84fbffb2 3062 flow has been lowered but EH structures haven't. */
a24549d4
JM
3063
3064static void
726a989a 3065refactor_eh_r (gimple_seq seq)
a24549d4 3066{
726a989a
RB
3067 gimple_stmt_iterator gsi;
3068 gimple one, two;
a24549d4 3069
726a989a
RB
3070 one = NULL;
3071 two = NULL;
3072 gsi = gsi_start (seq);
3073 while (1)
3074 {
3075 one = two;
3076 if (gsi_end_p (gsi))
3077 two = NULL;
3078 else
3079 two = gsi_stmt (gsi);
538dd0b7
DM
3080 if (one && two)
3081 if (gtry *try_one = dyn_cast <gtry *> (one))
3082 if (gtry *try_two = dyn_cast <gtry *> (two))
3083 if (gimple_try_kind (try_one) == GIMPLE_TRY_FINALLY
3084 && gimple_try_kind (try_two) == GIMPLE_TRY_FINALLY)
3085 optimize_double_finally (try_one, try_two);
726a989a
RB
3086 if (one)
3087 switch (gimple_code (one))
a24549d4 3088 {
726a989a
RB
3089 case GIMPLE_TRY:
3090 refactor_eh_r (gimple_try_eval (one));
3091 refactor_eh_r (gimple_try_cleanup (one));
3092 break;
3093 case GIMPLE_CATCH:
538dd0b7 3094 refactor_eh_r (gimple_catch_handler (as_a <gcatch *> (one)));
726a989a
RB
3095 break;
3096 case GIMPLE_EH_FILTER:
3097 refactor_eh_r (gimple_eh_filter_failure (one));
3098 break;
0a35513e 3099 case GIMPLE_EH_ELSE:
538dd0b7
DM
3100 {
3101 geh_else *eh_else_stmt = as_a <geh_else *> (one);
3102 refactor_eh_r (gimple_eh_else_n_body (eh_else_stmt));
3103 refactor_eh_r (gimple_eh_else_e_body (eh_else_stmt));
3104 }
0a35513e 3105 break;
726a989a
RB
3106 default:
3107 break;
a24549d4 3108 }
726a989a
RB
3109 if (two)
3110 gsi_next (&gsi);
3111 else
3112 break;
a24549d4
JM
3113 }
3114}
3115
27a4cd48
DM
3116namespace {
3117
3118const pass_data pass_data_refactor_eh =
a24549d4 3119{
27a4cd48
DM
3120 GIMPLE_PASS, /* type */
3121 "ehopt", /* name */
3122 OPTGROUP_NONE, /* optinfo_flags */
27a4cd48
DM
3123 TV_TREE_EH, /* tv_id */
3124 PROP_gimple_lcf, /* properties_required */
3125 0, /* properties_provided */
3126 0, /* properties_destroyed */
3127 0, /* todo_flags_start */
3128 0, /* todo_flags_finish */
a24549d4 3129};
27a4cd48
DM
3130
3131class pass_refactor_eh : public gimple_opt_pass
3132{
3133public:
c3284718
RS
3134 pass_refactor_eh (gcc::context *ctxt)
3135 : gimple_opt_pass (pass_data_refactor_eh, ctxt)
27a4cd48
DM
3136 {}
3137
3138 /* opt_pass methods: */
1a3d085c 3139 virtual bool gate (function *) { return flag_exceptions != 0; }
be55bfe6
TS
3140 virtual unsigned int execute (function *)
3141 {
3142 refactor_eh_r (gimple_body (current_function_decl));
3143 return 0;
3144 }
27a4cd48
DM
3145
3146}; // class pass_refactor_eh
3147
3148} // anon namespace
3149
3150gimple_opt_pass *
3151make_pass_refactor_eh (gcc::context *ctxt)
3152{
3153 return new pass_refactor_eh (ctxt);
3154}
1d65f45c
RH
3155\f
3156/* At the end of gimple optimization, we can lower RESX. */
a8da523f 3157
1d65f45c 3158static bool
538dd0b7
DM
3159lower_resx (basic_block bb, gresx *stmt,
3160 hash_map<eh_region, tree> *mnt_map)
a8da523f 3161{
1d65f45c
RH
3162 int lp_nr;
3163 eh_region src_r, dst_r;
3164 gimple_stmt_iterator gsi;
3165 gimple x;
3166 tree fn, src_nr;
3167 bool ret = false;
a8da523f 3168
1d65f45c
RH
3169 lp_nr = lookup_stmt_eh_lp (stmt);
3170 if (lp_nr != 0)
3171 dst_r = get_eh_region_from_lp_number (lp_nr);
3172 else
3173 dst_r = NULL;
a8da523f 3174
1d65f45c 3175 src_r = get_eh_region_from_number (gimple_resx_region (stmt));
1d65f45c 3176 gsi = gsi_last_bb (bb);
a8da523f 3177
072c87d1
RH
3178 if (src_r == NULL)
3179 {
3180 /* We can wind up with no source region when pass_cleanup_eh shows
3181 that there are no entries into an eh region and deletes it, but
3182 then the block that contains the resx isn't removed. This can
3183 happen without optimization when the switch statement created by
3184 lower_try_finally_switch isn't simplified to remove the eh case.
3185
3186 Resolve this by expanding the resx node to an abort. */
3187
e79983f4 3188 fn = builtin_decl_implicit (BUILT_IN_TRAP);
072c87d1
RH
3189 x = gimple_build_call (fn, 0);
3190 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3191
3192 while (EDGE_COUNT (bb->succs) > 0)
3193 remove_edge (EDGE_SUCC (bb, 0));
3194 }
3195 else if (dst_r)
1d65f45c
RH
3196 {
3197 /* When we have a destination region, we resolve this by copying
3198 the excptr and filter values into place, and changing the edge
3199 to immediately after the landing pad. */
3200 edge e;
a8da523f 3201
1d65f45c
RH
3202 if (lp_nr < 0)
3203 {
3204 basic_block new_bb;
1d65f45c 3205 tree lab;
496a4ef5 3206
1d65f45c
RH
3207 /* We are resuming into a MUST_NOT_CALL region. Expand a call to
3208 the failure decl into a new block, if needed. */
3209 gcc_assert (dst_r->type == ERT_MUST_NOT_THROW);
a8da523f 3210
b787e7a2 3211 tree *slot = mnt_map->get (dst_r);
1d65f45c
RH
3212 if (slot == NULL)
3213 {
3214 gimple_stmt_iterator gsi2;
a8da523f 3215
1d65f45c 3216 new_bb = create_empty_bb (bb);
726338f4 3217 add_bb_to_loop (new_bb, bb->loop_father);
1d65f45c
RH
3218 lab = gimple_block_label (new_bb);
3219 gsi2 = gsi_start_bb (new_bb);
a8da523f 3220
1d65f45c
RH
3221 fn = dst_r->u.must_not_throw.failure_decl;
3222 x = gimple_build_call (fn, 0);
3223 gimple_set_location (x, dst_r->u.must_not_throw.failure_loc);
3224 gsi_insert_after (&gsi2, x, GSI_CONTINUE_LINKING);
4e6d1743 3225
b787e7a2 3226 mnt_map->put (dst_r, lab);
1d65f45c
RH
3227 }
3228 else
3229 {
b787e7a2 3230 lab = *slot;
1d65f45c
RH
3231 new_bb = label_to_block (lab);
3232 }
a8da523f 3233
1d65f45c
RH
3234 gcc_assert (EDGE_COUNT (bb->succs) == 0);
3235 e = make_edge (bb, new_bb, EDGE_FALLTHRU);
3236 e->count = bb->count;
3237 e->probability = REG_BR_PROB_BASE;
3238 }
3239 else
3240 {
3241 edge_iterator ei;
413581ba 3242 tree dst_nr = build_int_cst (integer_type_node, dst_r->index);
a8da523f 3243
e79983f4 3244 fn = builtin_decl_implicit (BUILT_IN_EH_COPY_VALUES);
413581ba 3245 src_nr = build_int_cst (integer_type_node, src_r->index);
1d65f45c
RH
3246 x = gimple_build_call (fn, 2, dst_nr, src_nr);
3247 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
a8da523f 3248
1d65f45c
RH
3249 /* Update the flags for the outgoing edge. */
3250 e = single_succ_edge (bb);
3251 gcc_assert (e->flags & EDGE_EH);
3252 e->flags = (e->flags & ~EDGE_EH) | EDGE_FALLTHRU;
a8da523f 3253
1d65f45c
RH
3254 /* If there are no more EH users of the landing pad, delete it. */
3255 FOR_EACH_EDGE (e, ei, e->dest->preds)
3256 if (e->flags & EDGE_EH)
3257 break;
3258 if (e == NULL)
3259 {
3260 eh_landing_pad lp = get_eh_landing_pad_from_number (lp_nr);
3261 remove_eh_landing_pad (lp);
3262 }
3263 }
a8da523f 3264
1d65f45c
RH
3265 ret = true;
3266 }
3267 else
3268 {
3269 tree var;
a8da523f 3270
1d65f45c
RH
3271 /* When we don't have a destination region, this exception escapes
3272 up the call chain. We resolve this by generating a call to the
3273 _Unwind_Resume library function. */
a8da523f 3274
384c400a 3275 /* The ARM EABI redefines _Unwind_Resume as __cxa_end_cleanup
1d65f45c 3276 with no arguments for C++ and Java. Check for that. */
384c400a
RH
3277 if (src_r->use_cxa_end_cleanup)
3278 {
e79983f4 3279 fn = builtin_decl_implicit (BUILT_IN_CXA_END_CLEANUP);
384c400a
RH
3280 x = gimple_build_call (fn, 0);
3281 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3282 }
3283 else
4e6d1743 3284 {
e79983f4 3285 fn = builtin_decl_implicit (BUILT_IN_EH_POINTER);
413581ba 3286 src_nr = build_int_cst (integer_type_node, src_r->index);
1d65f45c 3287 x = gimple_build_call (fn, 1, src_nr);
b731b390 3288 var = create_tmp_var (ptr_type_node);
1d65f45c
RH
3289 var = make_ssa_name (var, x);
3290 gimple_call_set_lhs (x, var);
3291 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3292
e79983f4 3293 fn = builtin_decl_implicit (BUILT_IN_UNWIND_RESUME);
1d65f45c
RH
3294 x = gimple_build_call (fn, 1, var);
3295 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
4e6d1743 3296 }
a8da523f 3297
1d65f45c 3298 gcc_assert (EDGE_COUNT (bb->succs) == 0);
4e6d1743 3299 }
496a4ef5 3300
1d65f45c
RH
3301 gsi_remove (&gsi, true);
3302
3303 return ret;
4e6d1743
JH
3304}
3305
27a4cd48
DM
3306namespace {
3307
3308const pass_data pass_data_lower_resx =
4e6d1743 3309{
27a4cd48
DM
3310 GIMPLE_PASS, /* type */
3311 "resx", /* name */
3312 OPTGROUP_NONE, /* optinfo_flags */
27a4cd48
DM
3313 TV_TREE_EH, /* tv_id */
3314 PROP_gimple_lcf, /* properties_required */
3315 0, /* properties_provided */
3316 0, /* properties_destroyed */
3317 0, /* todo_flags_start */
3bea341f 3318 0, /* todo_flags_finish */
4e6d1743
JH
3319};
3320
27a4cd48
DM
3321class pass_lower_resx : public gimple_opt_pass
3322{
3323public:
c3284718
RS
3324 pass_lower_resx (gcc::context *ctxt)
3325 : gimple_opt_pass (pass_data_lower_resx, ctxt)
27a4cd48
DM
3326 {}
3327
3328 /* opt_pass methods: */
1a3d085c 3329 virtual bool gate (function *) { return flag_exceptions != 0; }
be55bfe6 3330 virtual unsigned int execute (function *);
27a4cd48
DM
3331
3332}; // class pass_lower_resx
3333
be55bfe6
TS
3334unsigned
3335pass_lower_resx::execute (function *fun)
3336{
3337 basic_block bb;
be55bfe6
TS
3338 bool dominance_invalidated = false;
3339 bool any_rewritten = false;
3340
b787e7a2 3341 hash_map<eh_region, tree> mnt_map;
be55bfe6
TS
3342
3343 FOR_EACH_BB_FN (bb, fun)
3344 {
3345 gimple last = last_stmt (bb);
3346 if (last && is_gimple_resx (last))
3347 {
538dd0b7
DM
3348 dominance_invalidated |=
3349 lower_resx (bb, as_a <gresx *> (last), &mnt_map);
be55bfe6
TS
3350 any_rewritten = true;
3351 }
3352 }
3353
be55bfe6
TS
3354 if (dominance_invalidated)
3355 {
3356 free_dominance_info (CDI_DOMINATORS);
3357 free_dominance_info (CDI_POST_DOMINATORS);
3358 }
3359
3360 return any_rewritten ? TODO_update_ssa_only_virtuals : 0;
3361}
3362
27a4cd48
DM
3363} // anon namespace
3364
3365gimple_opt_pass *
3366make_pass_lower_resx (gcc::context *ctxt)
3367{
3368 return new pass_lower_resx (ctxt);
3369}
3370
960f0c9d
JJ
3371/* Try to optimize var = {v} {CLOBBER} stmts followed just by
3372 external throw. */
3373
3374static void
3375optimize_clobbers (basic_block bb)
3376{
3377 gimple_stmt_iterator gsi = gsi_last_bb (bb);
f223bb13
JJ
3378 bool any_clobbers = false;
3379 bool seen_stack_restore = false;
3380 edge_iterator ei;
3381 edge e;
3382
3383 /* Only optimize anything if the bb contains at least one clobber,
3384 ends with resx (checked by caller), optionally contains some
3385 debug stmts or labels, or at most one __builtin_stack_restore
3386 call, and has an incoming EH edge. */
6d1c2bd3 3387 for (gsi_prev (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
960f0c9d
JJ
3388 {
3389 gimple stmt = gsi_stmt (gsi);
3390 if (is_gimple_debug (stmt))
6d1c2bd3 3391 continue;
f223bb13
JJ
3392 if (gimple_clobber_p (stmt))
3393 {
3394 any_clobbers = true;
3395 continue;
3396 }
3397 if (!seen_stack_restore
3398 && gimple_call_builtin_p (stmt, BUILT_IN_STACK_RESTORE))
3399 {
3400 seen_stack_restore = true;
3401 continue;
3402 }
3403 if (gimple_code (stmt) == GIMPLE_LABEL)
3404 break;
3405 return;
3406 }
3407 if (!any_clobbers)
3408 return;
3409 FOR_EACH_EDGE (e, ei, bb->preds)
3410 if (e->flags & EDGE_EH)
3411 break;
3412 if (e == NULL)
3413 return;
3414 gsi = gsi_last_bb (bb);
3415 for (gsi_prev (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
3416 {
3417 gimple stmt = gsi_stmt (gsi);
3418 if (!gimple_clobber_p (stmt))
3419 continue;
960f0c9d
JJ
3420 unlink_stmt_vdef (stmt);
3421 gsi_remove (&gsi, true);
3422 release_defs (stmt);
3423 }
3424}
1d65f45c 3425
ea85edfe
JJ
3426/* Try to sink var = {v} {CLOBBER} stmts followed just by
3427 internal throw to successor BB. */
3428
3429static int
3430sink_clobbers (basic_block bb)
3431{
3432 edge e;
3433 edge_iterator ei;
3434 gimple_stmt_iterator gsi, dgsi;
3435 basic_block succbb;
3436 bool any_clobbers = false;
df35498a 3437 unsigned todo = 0;
ea85edfe
JJ
3438
3439 /* Only optimize if BB has a single EH successor and
3440 all predecessor edges are EH too. */
3441 if (!single_succ_p (bb)
3442 || (single_succ_edge (bb)->flags & EDGE_EH) == 0)
3443 return 0;
3444
3445 FOR_EACH_EDGE (e, ei, bb->preds)
3446 {
3447 if ((e->flags & EDGE_EH) == 0)
3448 return 0;
3449 }
3450
3451 /* And BB contains only CLOBBER stmts before the final
3452 RESX. */
3453 gsi = gsi_last_bb (bb);
3454 for (gsi_prev (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
3455 {
3456 gimple stmt = gsi_stmt (gsi);
3457 if (is_gimple_debug (stmt))
3458 continue;
3459 if (gimple_code (stmt) == GIMPLE_LABEL)
3460 break;
f223bb13 3461 if (!gimple_clobber_p (stmt))
ea85edfe
JJ
3462 return 0;
3463 any_clobbers = true;
3464 }
3465 if (!any_clobbers)
3466 return 0;
3467
4c1aff1c
RB
3468 edge succe = single_succ_edge (bb);
3469 succbb = succe->dest;
3470
3471 /* See if there is a virtual PHI node to take an updated virtual
3472 operand from. */
538dd0b7 3473 gphi *vphi = NULL;
4c1aff1c 3474 tree vuse = NULL_TREE;
538dd0b7
DM
3475 for (gphi_iterator gpi = gsi_start_phis (succbb);
3476 !gsi_end_p (gpi); gsi_next (&gpi))
4c1aff1c 3477 {
538dd0b7 3478 tree res = gimple_phi_result (gpi.phi ());
4c1aff1c
RB
3479 if (virtual_operand_p (res))
3480 {
538dd0b7 3481 vphi = gpi.phi ();
4c1aff1c
RB
3482 vuse = res;
3483 break;
3484 }
3485 }
3486
ea85edfe
JJ
3487 dgsi = gsi_after_labels (succbb);
3488 gsi = gsi_last_bb (bb);
3489 for (gsi_prev (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
3490 {
3491 gimple stmt = gsi_stmt (gsi);
f223bb13 3492 tree lhs;
ea85edfe
JJ
3493 if (is_gimple_debug (stmt))
3494 continue;
3495 if (gimple_code (stmt) == GIMPLE_LABEL)
3496 break;
f223bb13
JJ
3497 lhs = gimple_assign_lhs (stmt);
3498 /* Unfortunately we don't have dominance info updated at this
3499 point, so checking if
3500 dominated_by_p (CDI_DOMINATORS, succbb,
3501 gimple_bb (SSA_NAME_DEF_STMT (TREE_OPERAND (lhs, 0)))
3502 would be too costly. Thus, avoid sinking any clobbers that
3503 refer to non-(D) SSA_NAMEs. */
3504 if (TREE_CODE (lhs) == MEM_REF
3505 && TREE_CODE (TREE_OPERAND (lhs, 0)) == SSA_NAME
3506 && !SSA_NAME_IS_DEFAULT_DEF (TREE_OPERAND (lhs, 0)))
3507 {
4c1aff1c 3508 unlink_stmt_vdef (stmt);
f223bb13
JJ
3509 gsi_remove (&gsi, true);
3510 release_defs (stmt);
3511 continue;
3512 }
4c1aff1c
RB
3513
3514 /* As we do not change stmt order when sinking across a
3515 forwarder edge we can keep virtual operands in place. */
ea85edfe 3516 gsi_remove (&gsi, false);
4c1aff1c
RB
3517 gsi_insert_before (&dgsi, stmt, GSI_NEW_STMT);
3518
3519 /* But adjust virtual operands if we sunk across a PHI node. */
3520 if (vuse)
3521 {
3522 gimple use_stmt;
3523 imm_use_iterator iter;
3524 use_operand_p use_p;
3525 FOR_EACH_IMM_USE_STMT (use_stmt, iter, vuse)
3526 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
3527 SET_USE (use_p, gimple_vdef (stmt));
0a1a83cb
RB
3528 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (vuse))
3529 {
3530 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (gimple_vdef (stmt)) = 1;
3531 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (vuse) = 0;
3532 }
4c1aff1c
RB
3533 /* Adjust the incoming virtual operand. */
3534 SET_USE (PHI_ARG_DEF_PTR_FROM_EDGE (vphi, succe), gimple_vuse (stmt));
3535 SET_USE (gimple_vuse_op (stmt), vuse);
3536 }
df35498a
RB
3537 /* If there isn't a single predecessor but no virtual PHI node
3538 arrange for virtual operands to be renamed. */
3539 else if (gimple_vuse_op (stmt) != NULL_USE_OPERAND_P
3540 && !single_pred_p (succbb))
3541 {
3542 /* In this case there will be no use of the VDEF of this stmt.
3543 ??? Unless this is a secondary opportunity and we have not
3544 removed unreachable blocks yet, so we cannot assert this.
3545 Which also means we will end up renaming too many times. */
3546 SET_USE (gimple_vuse_op (stmt), gimple_vop (cfun));
3547 mark_virtual_operands_for_renaming (cfun);
3548 todo |= TODO_update_ssa_only_virtuals;
3549 }
ea85edfe
JJ
3550 }
3551
df35498a 3552 return todo;
ea85edfe
JJ
3553}
3554
9f698956
AB
3555/* At the end of inlining, we can lower EH_DISPATCH. Return true when
3556 we have found some duplicate labels and removed some edges. */
4e6d1743 3557
9f698956 3558static bool
538dd0b7 3559lower_eh_dispatch (basic_block src, geh_dispatch *stmt)
4e6d1743 3560{
1d65f45c
RH
3561 gimple_stmt_iterator gsi;
3562 int region_nr;
3563 eh_region r;
3564 tree filter, fn;
3565 gimple x;
9f698956 3566 bool redirected = false;
4e6d1743 3567
1d65f45c
RH
3568 region_nr = gimple_eh_dispatch_region (stmt);
3569 r = get_eh_region_from_number (region_nr);
4e6d1743 3570
1d65f45c 3571 gsi = gsi_last_bb (src);
4e6d1743 3572
1d65f45c 3573 switch (r->type)
4e6d1743 3574 {
1d65f45c
RH
3575 case ERT_TRY:
3576 {
ef062b13 3577 auto_vec<tree> labels;
1d65f45c
RH
3578 tree default_label = NULL;
3579 eh_catch c;
3580 edge_iterator ei;
3581 edge e;
6e2830c3 3582 hash_set<tree> seen_values;
1d65f45c
RH
3583
3584 /* Collect the labels for a switch. Zero the post_landing_pad
3585 field becase we'll no longer have anything keeping these labels
073a8998 3586 in existence and the optimizer will be free to merge these
1d65f45c
RH
3587 blocks at will. */
3588 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
3589 {
3590 tree tp_node, flt_node, lab = c->label;
9f698956 3591 bool have_label = false;
4e6d1743 3592
1d65f45c
RH
3593 c->label = NULL;
3594 tp_node = c->type_list;
3595 flt_node = c->filter_list;
3596
3597 if (tp_node == NULL)
3598 {
3599 default_label = lab;
3600 break;
3601 }
3602 do
3603 {
9f698956
AB
3604 /* Filter out duplicate labels that arise when this handler
3605 is shadowed by an earlier one. When no labels are
3606 attached to the handler anymore, we remove
3607 the corresponding edge and then we delete unreachable
3608 blocks at the end of this pass. */
6e2830c3 3609 if (! seen_values.contains (TREE_VALUE (flt_node)))
9f698956 3610 {
3d528853
NF
3611 tree t = build_case_label (TREE_VALUE (flt_node),
3612 NULL, lab);
9771b263 3613 labels.safe_push (t);
6e2830c3 3614 seen_values.add (TREE_VALUE (flt_node));
9f698956
AB
3615 have_label = true;
3616 }
1d65f45c
RH
3617
3618 tp_node = TREE_CHAIN (tp_node);
3619 flt_node = TREE_CHAIN (flt_node);
3620 }
3621 while (tp_node);
9f698956
AB
3622 if (! have_label)
3623 {
3624 remove_edge (find_edge (src, label_to_block (lab)));
3625 redirected = true;
3626 }
1d65f45c
RH
3627 }
3628
3629 /* Clean up the edge flags. */
3630 FOR_EACH_EDGE (e, ei, src->succs)
3631 {
3632 if (e->flags & EDGE_FALLTHRU)
3633 {
3634 /* If there was no catch-all, use the fallthru edge. */
3635 if (default_label == NULL)
3636 default_label = gimple_block_label (e->dest);
3637 e->flags &= ~EDGE_FALLTHRU;
3638 }
3639 }
3640 gcc_assert (default_label != NULL);
3641
3642 /* Don't generate a switch if there's only a default case.
3643 This is common in the form of try { A; } catch (...) { B; }. */
9771b263 3644 if (!labels.exists ())
1d65f45c
RH
3645 {
3646 e = single_succ_edge (src);
3647 e->flags |= EDGE_FALLTHRU;
3648 }
3649 else
3650 {
e79983f4 3651 fn = builtin_decl_implicit (BUILT_IN_EH_FILTER);
413581ba
RG
3652 x = gimple_build_call (fn, 1, build_int_cst (integer_type_node,
3653 region_nr));
b731b390 3654 filter = create_tmp_var (TREE_TYPE (TREE_TYPE (fn)));
1d65f45c
RH
3655 filter = make_ssa_name (filter, x);
3656 gimple_call_set_lhs (x, filter);
3657 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3658
3659 /* Turn the default label into a default case. */
3d528853 3660 default_label = build_case_label (NULL, NULL, default_label);
1d65f45c
RH
3661 sort_case_labels (labels);
3662
fd8d363e 3663 x = gimple_build_switch (filter, default_label, labels);
1d65f45c 3664 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
1d65f45c
RH
3665 }
3666 }
3667 break;
3668
3669 case ERT_ALLOWED_EXCEPTIONS:
3670 {
3671 edge b_e = BRANCH_EDGE (src);
3672 edge f_e = FALLTHRU_EDGE (src);
3673
e79983f4 3674 fn = builtin_decl_implicit (BUILT_IN_EH_FILTER);
413581ba
RG
3675 x = gimple_build_call (fn, 1, build_int_cst (integer_type_node,
3676 region_nr));
b731b390 3677 filter = create_tmp_var (TREE_TYPE (TREE_TYPE (fn)));
1d65f45c
RH
3678 filter = make_ssa_name (filter, x);
3679 gimple_call_set_lhs (x, filter);
3680 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3681
3682 r->u.allowed.label = NULL;
3683 x = gimple_build_cond (EQ_EXPR, filter,
3684 build_int_cst (TREE_TYPE (filter),
3685 r->u.allowed.filter),
3686 NULL_TREE, NULL_TREE);
3687 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3688
3689 b_e->flags = b_e->flags | EDGE_TRUE_VALUE;
3690 f_e->flags = (f_e->flags & ~EDGE_FALLTHRU) | EDGE_FALSE_VALUE;
3691 }
3692 break;
3693
3694 default:
3695 gcc_unreachable ();
4e6d1743 3696 }
1d65f45c
RH
3697
3698 /* Replace the EH_DISPATCH with the SWITCH or COND generated above. */
3699 gsi_remove (&gsi, true);
9f698956 3700 return redirected;
4e6d1743
JH
3701}
3702
be55bfe6
TS
3703namespace {
3704
3705const pass_data pass_data_lower_eh_dispatch =
3706{
3707 GIMPLE_PASS, /* type */
3708 "ehdisp", /* name */
3709 OPTGROUP_NONE, /* optinfo_flags */
be55bfe6
TS
3710 TV_TREE_EH, /* tv_id */
3711 PROP_gimple_lcf, /* properties_required */
3712 0, /* properties_provided */
3713 0, /* properties_destroyed */
3714 0, /* todo_flags_start */
3bea341f 3715 0, /* todo_flags_finish */
be55bfe6
TS
3716};
3717
3718class pass_lower_eh_dispatch : public gimple_opt_pass
3719{
3720public:
3721 pass_lower_eh_dispatch (gcc::context *ctxt)
3722 : gimple_opt_pass (pass_data_lower_eh_dispatch, ctxt)
3723 {}
3724
3725 /* opt_pass methods: */
3726 virtual bool gate (function *fun) { return fun->eh->region_tree != NULL; }
3727 virtual unsigned int execute (function *);
3728
3729}; // class pass_lower_eh_dispatch
3730
3731unsigned
3732pass_lower_eh_dispatch::execute (function *fun)
1d65f45c
RH
3733{
3734 basic_block bb;
ea85edfe 3735 int flags = 0;
9f698956 3736 bool redirected = false;
4e6d1743 3737
1d65f45c 3738 assign_filter_values ();
496a4ef5 3739
be55bfe6 3740 FOR_EACH_BB_FN (bb, fun)
1d65f45c
RH
3741 {
3742 gimple last = last_stmt (bb);
960f0c9d
JJ
3743 if (last == NULL)
3744 continue;
3745 if (gimple_code (last) == GIMPLE_EH_DISPATCH)
1d65f45c 3746 {
538dd0b7
DM
3747 redirected |= lower_eh_dispatch (bb,
3748 as_a <geh_dispatch *> (last));
ea85edfe
JJ
3749 flags |= TODO_update_ssa_only_virtuals;
3750 }
3751 else if (gimple_code (last) == GIMPLE_RESX)
3752 {
3753 if (stmt_can_throw_external (last))
3754 optimize_clobbers (bb);
3755 else
3756 flags |= sink_clobbers (bb);
1d65f45c
RH
3757 }
3758 }
3759
9f698956
AB
3760 if (redirected)
3761 delete_unreachable_blocks ();
ea85edfe 3762 return flags;
1d65f45c
RH
3763}
3764
27a4cd48
DM
3765} // anon namespace
3766
3767gimple_opt_pass *
3768make_pass_lower_eh_dispatch (gcc::context *ctxt)
3769{
3770 return new pass_lower_eh_dispatch (ctxt);
3771}
1d65f45c 3772\f
d273b176
SB
3773/* Walk statements, see what regions and, optionally, landing pads
3774 are really referenced.
3775
3776 Returns in R_REACHABLEP an sbitmap with bits set for reachable regions,
3777 and in LP_REACHABLE an sbitmap with bits set for reachable landing pads.
3778
3779 Passing NULL for LP_REACHABLE is valid, in this case only reachable
3780 regions are marked.
3781
3782 The caller is responsible for freeing the returned sbitmaps. */
1d65f45c
RH
3783
3784static void
d273b176 3785mark_reachable_handlers (sbitmap *r_reachablep, sbitmap *lp_reachablep)
1d65f45c
RH
3786{
3787 sbitmap r_reachable, lp_reachable;
1d65f45c 3788 basic_block bb;
d273b176
SB
3789 bool mark_landing_pads = (lp_reachablep != NULL);
3790 gcc_checking_assert (r_reachablep != NULL);
4e6d1743 3791
9771b263 3792 r_reachable = sbitmap_alloc (cfun->eh->region_array->length ());
f61e445a 3793 bitmap_clear (r_reachable);
d273b176
SB
3794 *r_reachablep = r_reachable;
3795
3796 if (mark_landing_pads)
3797 {
3798 lp_reachable = sbitmap_alloc (cfun->eh->lp_array->length ());
3799 bitmap_clear (lp_reachable);
3800 *lp_reachablep = lp_reachable;
3801 }
3802 else
3803 lp_reachable = NULL;
4e6d1743 3804
11cd3bed 3805 FOR_EACH_BB_FN (bb, cfun)
4e6d1743 3806 {
57f93411 3807 gimple_stmt_iterator gsi;
1d65f45c
RH
3808
3809 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
3810 {
3811 gimple stmt = gsi_stmt (gsi);
1d65f45c 3812
d273b176 3813 if (mark_landing_pads)
1d65f45c 3814 {
d273b176
SB
3815 int lp_nr = lookup_stmt_eh_lp (stmt);
3816
3817 /* Negative LP numbers are MUST_NOT_THROW regions which
3818 are not considered BB enders. */
3819 if (lp_nr < 0)
3820 bitmap_set_bit (r_reachable, -lp_nr);
3821
3822 /* Positive LP numbers are real landing pads, and BB enders. */
3823 else if (lp_nr > 0)
3824 {
3825 gcc_assert (gsi_one_before_end_p (gsi));
3826 eh_region region = get_eh_region_from_lp_number (lp_nr);
3827 bitmap_set_bit (r_reachable, region->index);
3828 bitmap_set_bit (lp_reachable, lp_nr);
3829 }
1d65f45c 3830 }
6ae70ea2
JJ
3831
3832 /* Avoid removing regions referenced from RESX/EH_DISPATCH. */
3833 switch (gimple_code (stmt))
3834 {
3835 case GIMPLE_RESX:
538dd0b7
DM
3836 bitmap_set_bit (r_reachable,
3837 gimple_resx_region (as_a <gresx *> (stmt)));
6ae70ea2
JJ
3838 break;
3839 case GIMPLE_EH_DISPATCH:
538dd0b7
DM
3840 bitmap_set_bit (r_reachable,
3841 gimple_eh_dispatch_region (
3842 as_a <geh_dispatch *> (stmt)));
6ae70ea2 3843 break;
5b1441be
RH
3844 case GIMPLE_CALL:
3845 if (gimple_call_builtin_p (stmt, BUILT_IN_EH_COPY_VALUES))
3846 for (int i = 0; i < 2; ++i)
3847 {
3848 tree rt = gimple_call_arg (stmt, i);
3849 HOST_WIDE_INT ri = tree_to_shwi (rt);
3850
3851 gcc_assert (ri = (int)ri);
3852 bitmap_set_bit (r_reachable, ri);
3853 }
3854 break;
6ae70ea2
JJ
3855 default:
3856 break;
3857 }
1d65f45c 3858 }
4e6d1743 3859 }
d273b176
SB
3860}
3861
3862/* Remove unreachable handlers and unreachable landing pads. */
3863
3864static void
3865remove_unreachable_handlers (void)
3866{
3867 sbitmap r_reachable, lp_reachable;
3868 eh_region region;
3869 eh_landing_pad lp;
3870 unsigned i;
3871
3872 mark_reachable_handlers (&r_reachable, &lp_reachable);
1d65f45c
RH
3873
3874 if (dump_file)
4e6d1743 3875 {
1d65f45c
RH
3876 fprintf (dump_file, "Before removal of unreachable regions:\n");
3877 dump_eh_tree (dump_file, cfun);
3878 fprintf (dump_file, "Reachable regions: ");
f61e445a 3879 dump_bitmap_file (dump_file, r_reachable);
1d65f45c 3880 fprintf (dump_file, "Reachable landing pads: ");
f61e445a 3881 dump_bitmap_file (dump_file, lp_reachable);
4e6d1743
JH
3882 }
3883
d273b176
SB
3884 if (dump_file)
3885 {
3886 FOR_EACH_VEC_SAFE_ELT (cfun->eh->region_array, i, region)
3887 if (region && !bitmap_bit_p (r_reachable, region->index))
3888 fprintf (dump_file,
3889 "Removing unreachable region %d\n",
3890 region->index);
3891 }
3892
3893 remove_unreachable_eh_regions (r_reachable);
4e6d1743 3894
d273b176
SB
3895 FOR_EACH_VEC_SAFE_ELT (cfun->eh->lp_array, i, lp)
3896 if (lp && !bitmap_bit_p (lp_reachable, lp->index))
1d65f45c
RH
3897 {
3898 if (dump_file)
d273b176
SB
3899 fprintf (dump_file,
3900 "Removing unreachable landing pad %d\n",
3901 lp->index);
1d65f45c
RH
3902 remove_eh_landing_pad (lp);
3903 }
b8698a0f 3904
1d65f45c 3905 if (dump_file)
4e6d1743 3906 {
1d65f45c
RH
3907 fprintf (dump_file, "\n\nAfter removal of unreachable regions:\n");
3908 dump_eh_tree (dump_file, cfun);
3909 fprintf (dump_file, "\n\n");
4e6d1743
JH
3910 }
3911
1d65f45c
RH
3912 sbitmap_free (r_reachable);
3913 sbitmap_free (lp_reachable);
3914
3915#ifdef ENABLE_CHECKING
3916 verify_eh_tree (cfun);
3917#endif
3918}
3919
99d8763e
JJ
3920/* Remove unreachable handlers if any landing pads have been removed after
3921 last ehcleanup pass (due to gimple_purge_dead_eh_edges). */
3922
3923void
3924maybe_remove_unreachable_handlers (void)
3925{
3926 eh_landing_pad lp;
d273b176 3927 unsigned i;
99d8763e
JJ
3928
3929 if (cfun->eh == NULL)
3930 return;
d273b176
SB
3931
3932 FOR_EACH_VEC_SAFE_ELT (cfun->eh->lp_array, i, lp)
99d8763e
JJ
3933 if (lp && lp->post_landing_pad)
3934 {
3935 if (label_to_block (lp->post_landing_pad) == NULL)
3936 {
3937 remove_unreachable_handlers ();
3938 return;
3939 }
3940 }
3941}
3942
1d65f45c
RH
3943/* Remove regions that do not have landing pads. This assumes
3944 that remove_unreachable_handlers has already been run, and
d273b176
SB
3945 that we've just manipulated the landing pads since then.
3946
3947 Preserve regions with landing pads and regions that prevent
3948 exceptions from propagating further, even if these regions
3949 are not reachable. */
1d65f45c
RH
3950
3951static void
3952remove_unreachable_handlers_no_lp (void)
3953{
d273b176 3954 eh_region region;
1a47f99c 3955 sbitmap r_reachable;
d273b176 3956 unsigned i;
1a47f99c 3957
d273b176 3958 mark_reachable_handlers (&r_reachable, /*lp_reachablep=*/NULL);
1a47f99c 3959
d273b176 3960 FOR_EACH_VEC_SAFE_ELT (cfun->eh->region_array, i, region)
1a47f99c 3961 {
d273b176
SB
3962 if (! region)
3963 continue;
3964
3965 if (region->landing_pads != NULL
3966 || region->type == ERT_MUST_NOT_THROW)
3967 bitmap_set_bit (r_reachable, region->index);
3968
3969 if (dump_file
3970 && !bitmap_bit_p (r_reachable, region->index))
3971 fprintf (dump_file,
3972 "Removing unreachable region %d\n",
3973 region->index);
1a47f99c 3974 }
1d65f45c 3975
d273b176 3976 remove_unreachable_eh_regions (r_reachable);
1a47f99c
MM
3977
3978 sbitmap_free (r_reachable);
4e6d1743
JH
3979}
3980
1d65f45c
RH
3981/* Undo critical edge splitting on an EH landing pad. Earlier, we
3982 optimisticaly split all sorts of edges, including EH edges. The
3983 optimization passes in between may not have needed them; if not,
3984 we should undo the split.
3985
3986 Recognize this case by having one EH edge incoming to the BB and
3987 one normal edge outgoing; BB should be empty apart from the
3988 post_landing_pad label.
3989
3990 Note that this is slightly different from the empty handler case
3991 handled by cleanup_empty_eh, in that the actual handler may yet
3992 have actual code but the landing pad has been separated from the
3993 handler. As such, cleanup_empty_eh relies on this transformation
3994 having been done first. */
a8da523f
JH
3995
3996static bool
1d65f45c 3997unsplit_eh (eh_landing_pad lp)
a8da523f 3998{
1d65f45c
RH
3999 basic_block bb = label_to_block (lp->post_landing_pad);
4000 gimple_stmt_iterator gsi;
4001 edge e_in, e_out;
4002
4003 /* Quickly check the edge counts on BB for singularity. */
f223bb13 4004 if (!single_pred_p (bb) || !single_succ_p (bb))
1d65f45c 4005 return false;
f223bb13
JJ
4006 e_in = single_pred_edge (bb);
4007 e_out = single_succ_edge (bb);
a8da523f 4008
1d65f45c
RH
4009 /* Input edge must be EH and output edge must be normal. */
4010 if ((e_in->flags & EDGE_EH) == 0 || (e_out->flags & EDGE_EH) != 0)
4011 return false;
4012
3333cd50
RG
4013 /* The block must be empty except for the labels and debug insns. */
4014 gsi = gsi_after_labels (bb);
4015 if (!gsi_end_p (gsi) && is_gimple_debug (gsi_stmt (gsi)))
4016 gsi_next_nondebug (&gsi);
4017 if (!gsi_end_p (gsi))
1d65f45c
RH
4018 return false;
4019
4020 /* The destination block must not already have a landing pad
4021 for a different region. */
4022 for (gsi = gsi_start_bb (e_out->dest); !gsi_end_p (gsi); gsi_next (&gsi))
a8da523f 4023 {
538dd0b7 4024 glabel *label_stmt = dyn_cast <glabel *> (gsi_stmt (gsi));
1d65f45c
RH
4025 tree lab;
4026 int lp_nr;
a8da523f 4027
538dd0b7 4028 if (!label_stmt)
1d65f45c 4029 break;
538dd0b7 4030 lab = gimple_label_label (label_stmt);
1d65f45c
RH
4031 lp_nr = EH_LANDING_PAD_NR (lab);
4032 if (lp_nr && get_eh_region_from_lp_number (lp_nr) != lp->region)
4033 return false;
4034 }
a8da523f 4035
f8fd49b5
RH
4036 /* The new destination block must not already be a destination of
4037 the source block, lest we merge fallthru and eh edges and get
4038 all sorts of confused. */
4039 if (find_edge (e_in->src, e_out->dest))
4040 return false;
4041
d6063d7f
RH
4042 /* ??? We can get degenerate phis due to cfg cleanups. I would have
4043 thought this should have been cleaned up by a phicprop pass, but
4044 that doesn't appear to handle virtuals. Propagate by hand. */
4045 if (!gimple_seq_empty_p (phi_nodes (bb)))
4046 {
538dd0b7 4047 for (gphi_iterator gpi = gsi_start_phis (bb); !gsi_end_p (gpi); )
d6063d7f 4048 {
538dd0b7
DM
4049 gimple use_stmt;
4050 gphi *phi = gpi.phi ();
d6063d7f
RH
4051 tree lhs = gimple_phi_result (phi);
4052 tree rhs = gimple_phi_arg_def (phi, 0);
4053 use_operand_p use_p;
4054 imm_use_iterator iter;
4055
4056 FOR_EACH_IMM_USE_STMT (use_stmt, iter, lhs)
4057 {
4058 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
4059 SET_USE (use_p, rhs);
4060 }
4061
4062 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs))
4063 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rhs) = 1;
4064
538dd0b7 4065 remove_phi_node (&gpi, true);
d6063d7f
RH
4066 }
4067 }
496a4ef5 4068
1d65f45c
RH
4069 if (dump_file && (dump_flags & TDF_DETAILS))
4070 fprintf (dump_file, "Unsplit EH landing pad %d to block %i.\n",
4071 lp->index, e_out->dest->index);
4072
4073 /* Redirect the edge. Since redirect_eh_edge_1 expects to be moving
4074 a successor edge, humor it. But do the real CFG change with the
4075 predecessor of E_OUT in order to preserve the ordering of arguments
4076 to the PHI nodes in E_OUT->DEST. */
4077 redirect_eh_edge_1 (e_in, e_out->dest, false);
4078 redirect_edge_pred (e_out, e_in->src);
4079 e_out->flags = e_in->flags;
4080 e_out->probability = e_in->probability;
4081 e_out->count = e_in->count;
4082 remove_edge (e_in);
496a4ef5 4083
1d65f45c
RH
4084 return true;
4085}
496a4ef5 4086
1d65f45c 4087/* Examine each landing pad block and see if it matches unsplit_eh. */
496a4ef5 4088
1d65f45c
RH
4089static bool
4090unsplit_all_eh (void)
4091{
4092 bool changed = false;
4093 eh_landing_pad lp;
4094 int i;
496a4ef5 4095
9771b263 4096 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
1d65f45c
RH
4097 if (lp)
4098 changed |= unsplit_eh (lp);
4099
4100 return changed;
4101}
4102
4103/* A subroutine of cleanup_empty_eh. Redirect all EH edges incoming
4104 to OLD_BB to NEW_BB; return true on success, false on failure.
4105
4106 OLD_BB_OUT is the edge into NEW_BB from OLD_BB, so if we miss any
4107 PHI variables from OLD_BB we can pick them up from OLD_BB_OUT.
4108 Virtual PHIs may be deleted and marked for renaming. */
4109
4110static bool
4111cleanup_empty_eh_merge_phis (basic_block new_bb, basic_block old_bb,
d6063d7f 4112 edge old_bb_out, bool change_region)
1d65f45c 4113{
538dd0b7 4114 gphi_iterator ngsi, ogsi;
1d65f45c
RH
4115 edge_iterator ei;
4116 edge e;
1d65f45c
RH
4117 bitmap ophi_handled;
4118
336ead04
JJ
4119 /* The destination block must not be a regular successor for any
4120 of the preds of the landing pad. Thus, avoid turning
4121 <..>
4122 | \ EH
4123 | <..>
4124 | /
4125 <..>
4126 into
4127 <..>
4128 | | EH
4129 <..>
4130 which CFG verification would choke on. See PR45172 and PR51089. */
4131 FOR_EACH_EDGE (e, ei, old_bb->preds)
4132 if (find_edge (e->src, new_bb))
4133 return false;
4134
1d65f45c
RH
4135 FOR_EACH_EDGE (e, ei, old_bb->preds)
4136 redirect_edge_var_map_clear (e);
4137
4138 ophi_handled = BITMAP_ALLOC (NULL);
1d65f45c
RH
4139
4140 /* First, iterate through the PHIs on NEW_BB and set up the edge_var_map
4141 for the edges we're going to move. */
4142 for (ngsi = gsi_start_phis (new_bb); !gsi_end_p (ngsi); gsi_next (&ngsi))
4143 {
538dd0b7 4144 gphi *ophi, *nphi = ngsi.phi ();
1d65f45c
RH
4145 tree nresult, nop;
4146
4147 nresult = gimple_phi_result (nphi);
4148 nop = gimple_phi_arg_def (nphi, old_bb_out->dest_idx);
4149
4150 /* Find the corresponding PHI in OLD_BB so we can forward-propagate
4151 the source ssa_name. */
4152 ophi = NULL;
4153 for (ogsi = gsi_start_phis (old_bb); !gsi_end_p (ogsi); gsi_next (&ogsi))
4154 {
538dd0b7 4155 ophi = ogsi.phi ();
1d65f45c
RH
4156 if (gimple_phi_result (ophi) == nop)
4157 break;
4158 ophi = NULL;
a3710436 4159 }
496a4ef5 4160
1d65f45c
RH
4161 /* If we did find the corresponding PHI, copy those inputs. */
4162 if (ophi)
a8da523f 4163 {
3ffe07e1
JJ
4164 /* If NOP is used somewhere else beyond phis in new_bb, give up. */
4165 if (!has_single_use (nop))
4166 {
4167 imm_use_iterator imm_iter;
4168 use_operand_p use_p;
4169
4170 FOR_EACH_IMM_USE_FAST (use_p, imm_iter, nop)
4171 {
4172 if (!gimple_debug_bind_p (USE_STMT (use_p))
4173 && (gimple_code (USE_STMT (use_p)) != GIMPLE_PHI
4174 || gimple_bb (USE_STMT (use_p)) != new_bb))
4175 goto fail;
4176 }
4177 }
1d65f45c
RH
4178 bitmap_set_bit (ophi_handled, SSA_NAME_VERSION (nop));
4179 FOR_EACH_EDGE (e, ei, old_bb->preds)
496a4ef5 4180 {
1d65f45c
RH
4181 location_t oloc;
4182 tree oop;
4183
4184 if ((e->flags & EDGE_EH) == 0)
4185 continue;
4186 oop = gimple_phi_arg_def (ophi, e->dest_idx);
4187 oloc = gimple_phi_arg_location (ophi, e->dest_idx);
9e227d60 4188 redirect_edge_var_map_add (e, nresult, oop, oloc);
496a4ef5 4189 }
1d65f45c 4190 }
d90e76d4 4191 /* If we didn't find the PHI, if it's a real variable or a VOP, we know
1d65f45c
RH
4192 from the fact that OLD_BB is tree_empty_eh_handler_p that the
4193 variable is unchanged from input to the block and we can simply
4194 re-use the input to NEW_BB from the OLD_BB_OUT edge. */
4195 else
4196 {
4197 location_t nloc
4198 = gimple_phi_arg_location (nphi, old_bb_out->dest_idx);
4199 FOR_EACH_EDGE (e, ei, old_bb->preds)
9e227d60 4200 redirect_edge_var_map_add (e, nresult, nop, nloc);
1d65f45c
RH
4201 }
4202 }
4203
4204 /* Second, verify that all PHIs from OLD_BB have been handled. If not,
4205 we don't know what values from the other edges into NEW_BB to use. */
4206 for (ogsi = gsi_start_phis (old_bb); !gsi_end_p (ogsi); gsi_next (&ogsi))
4207 {
538dd0b7 4208 gphi *ophi = ogsi.phi ();
1d65f45c
RH
4209 tree oresult = gimple_phi_result (ophi);
4210 if (!bitmap_bit_p (ophi_handled, SSA_NAME_VERSION (oresult)))
4211 goto fail;
4212 }
4213
1d65f45c
RH
4214 /* Finally, move the edges and update the PHIs. */
4215 for (ei = ei_start (old_bb->preds); (e = ei_safe_edge (ei)); )
4216 if (e->flags & EDGE_EH)
4217 {
efa26eaa
RG
4218 /* ??? CFG manipluation routines do not try to update loop
4219 form on edge redirection. Do so manually here for now. */
4220 /* If we redirect a loop entry or latch edge that will either create
4221 a multiple entry loop or rotate the loop. If the loops merge
4222 we may have created a loop with multiple latches.
4223 All of this isn't easily fixed thus cancel the affected loop
4224 and mark the other loop as possibly having multiple latches. */
726338f4 4225 if (e->dest == e->dest->loop_father->header)
efa26eaa 4226 {
08c13199 4227 mark_loop_for_removal (e->dest->loop_father);
efa26eaa 4228 new_bb->loop_father->latch = NULL;
08c13199 4229 loops_state_set (LOOPS_MAY_HAVE_MULTIPLE_LATCHES);
efa26eaa 4230 }
d6063d7f 4231 redirect_eh_edge_1 (e, new_bb, change_region);
1d65f45c
RH
4232 redirect_edge_succ (e, new_bb);
4233 flush_pending_stmts (e);
4234 }
4235 else
4236 ei_next (&ei);
4e6d1743 4237
1d65f45c 4238 BITMAP_FREE (ophi_handled);
1d65f45c
RH
4239 return true;
4240
4241 fail:
4242 FOR_EACH_EDGE (e, ei, old_bb->preds)
4243 redirect_edge_var_map_clear (e);
4244 BITMAP_FREE (ophi_handled);
1d65f45c
RH
4245 return false;
4246}
4247
4248/* A subroutine of cleanup_empty_eh. Move a landing pad LP from its
4249 old region to NEW_REGION at BB. */
4250
4251static void
4252cleanup_empty_eh_move_lp (basic_block bb, edge e_out,
4253 eh_landing_pad lp, eh_region new_region)
4254{
4255 gimple_stmt_iterator gsi;
4256 eh_landing_pad *pp;
4257
4258 for (pp = &lp->region->landing_pads; *pp != lp; pp = &(*pp)->next_lp)
4259 continue;
4260 *pp = lp->next_lp;
4261
4262 lp->region = new_region;
4263 lp->next_lp = new_region->landing_pads;
4264 new_region->landing_pads = lp;
4265
4266 /* Delete the RESX that was matched within the empty handler block. */
4267 gsi = gsi_last_bb (bb);
3d3f2249 4268 unlink_stmt_vdef (gsi_stmt (gsi));
1d65f45c
RH
4269 gsi_remove (&gsi, true);
4270
4271 /* Clean up E_OUT for the fallthru. */
4272 e_out->flags = (e_out->flags & ~EDGE_EH) | EDGE_FALLTHRU;
4273 e_out->probability = REG_BR_PROB_BASE;
4274}
4275
4276/* A subroutine of cleanup_empty_eh. Handle more complex cases of
b8698a0f 4277 unsplitting than unsplit_eh was prepared to handle, e.g. when
1d65f45c
RH
4278 multiple incoming edges and phis are involved. */
4279
4280static bool
d6063d7f 4281cleanup_empty_eh_unsplit (basic_block bb, edge e_out, eh_landing_pad lp)
1d65f45c
RH
4282{
4283 gimple_stmt_iterator gsi;
1d65f45c
RH
4284 tree lab;
4285
4286 /* We really ought not have totally lost everything following
4287 a landing pad label. Given that BB is empty, there had better
4288 be a successor. */
4289 gcc_assert (e_out != NULL);
4290
d6063d7f
RH
4291 /* The destination block must not already have a landing pad
4292 for a different region. */
1d65f45c
RH
4293 lab = NULL;
4294 for (gsi = gsi_start_bb (e_out->dest); !gsi_end_p (gsi); gsi_next (&gsi))
4295 {
538dd0b7 4296 glabel *stmt = dyn_cast <glabel *> (gsi_stmt (gsi));
d6063d7f
RH
4297 int lp_nr;
4298
538dd0b7 4299 if (!stmt)
1d65f45c
RH
4300 break;
4301 lab = gimple_label_label (stmt);
d6063d7f
RH
4302 lp_nr = EH_LANDING_PAD_NR (lab);
4303 if (lp_nr && get_eh_region_from_lp_number (lp_nr) != lp->region)
4304 return false;
1d65f45c 4305 }
1d65f45c
RH
4306
4307 /* Attempt to move the PHIs into the successor block. */
d6063d7f 4308 if (cleanup_empty_eh_merge_phis (e_out->dest, bb, e_out, false))
1d65f45c
RH
4309 {
4310 if (dump_file && (dump_flags & TDF_DETAILS))
4311 fprintf (dump_file,
d6063d7f
RH
4312 "Unsplit EH landing pad %d to block %i "
4313 "(via cleanup_empty_eh).\n",
4314 lp->index, e_out->dest->index);
1d65f45c
RH
4315 return true;
4316 }
4317
4318 return false;
4319}
4320
afaaa67d
JJ
4321/* Return true if edge E_FIRST is part of an empty infinite loop
4322 or leads to such a loop through a series of single successor
4323 empty bbs. */
4324
4325static bool
4326infinite_empty_loop_p (edge e_first)
4327{
4328 bool inf_loop = false;
4329 edge e;
4330
4331 if (e_first->dest == e_first->src)
4332 return true;
4333
4334 e_first->src->aux = (void *) 1;
4335 for (e = e_first; single_succ_p (e->dest); e = single_succ_edge (e->dest))
4336 {
4337 gimple_stmt_iterator gsi;
4338 if (e->dest->aux)
4339 {
4340 inf_loop = true;
4341 break;
4342 }
4343 e->dest->aux = (void *) 1;
4344 gsi = gsi_after_labels (e->dest);
4345 if (!gsi_end_p (gsi) && is_gimple_debug (gsi_stmt (gsi)))
4346 gsi_next_nondebug (&gsi);
4347 if (!gsi_end_p (gsi))
4348 break;
4349 }
4350 e_first->src->aux = NULL;
4351 for (e = e_first; e->dest->aux; e = single_succ_edge (e->dest))
4352 e->dest->aux = NULL;
4353
4354 return inf_loop;
4355}
4356
1d65f45c
RH
4357/* Examine the block associated with LP to determine if it's an empty
4358 handler for its EH region. If so, attempt to redirect EH edges to
4359 an outer region. Return true the CFG was updated in any way. This
4360 is similar to jump forwarding, just across EH edges. */
4361
4362static bool
4363cleanup_empty_eh (eh_landing_pad lp)
4364{
4365 basic_block bb = label_to_block (lp->post_landing_pad);
4366 gimple_stmt_iterator gsi;
4367 gimple resx;
4368 eh_region new_region;
4369 edge_iterator ei;
4370 edge e, e_out;
4371 bool has_non_eh_pred;
81bfd197 4372 bool ret = false;
1d65f45c
RH
4373 int new_lp_nr;
4374
4375 /* There can be zero or one edges out of BB. This is the quickest test. */
4376 switch (EDGE_COUNT (bb->succs))
4377 {
4378 case 0:
4379 e_out = NULL;
4380 break;
4381 case 1:
f223bb13 4382 e_out = single_succ_edge (bb);
1d65f45c
RH
4383 break;
4384 default:
4385 return false;
4386 }
81bfd197
MM
4387
4388 resx = last_stmt (bb);
4389 if (resx && is_gimple_resx (resx))
4390 {
4391 if (stmt_can_throw_external (resx))
4392 optimize_clobbers (bb);
4393 else if (sink_clobbers (bb))
4394 ret = true;
4395 }
4396
1d65f45c
RH
4397 gsi = gsi_after_labels (bb);
4398
4399 /* Make sure to skip debug statements. */
4400 if (!gsi_end_p (gsi) && is_gimple_debug (gsi_stmt (gsi)))
4401 gsi_next_nondebug (&gsi);
4402
4403 /* If the block is totally empty, look for more unsplitting cases. */
4404 if (gsi_end_p (gsi))
0d228a52 4405 {
609524d2
JJ
4406 /* For the degenerate case of an infinite loop bail out.
4407 If bb has no successors and is totally empty, which can happen e.g.
4408 because of incorrect noreturn attribute, bail out too. */
4409 if (e_out == NULL
4410 || infinite_empty_loop_p (e_out))
81bfd197 4411 return ret;
0d228a52 4412
81bfd197 4413 return ret | cleanup_empty_eh_unsplit (bb, e_out, lp);
0d228a52 4414 }
1d65f45c 4415
1ee0d660
EB
4416 /* The block should consist only of a single RESX statement, modulo a
4417 preceding call to __builtin_stack_restore if there is no outgoing
4418 edge, since the call can be eliminated in this case. */
1d65f45c 4419 resx = gsi_stmt (gsi);
1ee0d660
EB
4420 if (!e_out && gimple_call_builtin_p (resx, BUILT_IN_STACK_RESTORE))
4421 {
4422 gsi_next (&gsi);
4423 resx = gsi_stmt (gsi);
4424 }
1d65f45c 4425 if (!is_gimple_resx (resx))
81bfd197 4426 return ret;
1d65f45c
RH
4427 gcc_assert (gsi_one_before_end_p (gsi));
4428
4429 /* Determine if there are non-EH edges, or resx edges into the handler. */
4430 has_non_eh_pred = false;
4431 FOR_EACH_EDGE (e, ei, bb->preds)
4432 if (!(e->flags & EDGE_EH))
4433 has_non_eh_pred = true;
4434
4435 /* Find the handler that's outer of the empty handler by looking at
4436 where the RESX instruction was vectored. */
4437 new_lp_nr = lookup_stmt_eh_lp (resx);
4438 new_region = get_eh_region_from_lp_number (new_lp_nr);
4439
4440 /* If there's no destination region within the current function,
4441 redirection is trivial via removing the throwing statements from
4442 the EH region, removing the EH edges, and allowing the block
4443 to go unreachable. */
4444 if (new_region == NULL)
4445 {
4446 gcc_assert (e_out == NULL);
4447 for (ei = ei_start (bb->preds); (e = ei_safe_edge (ei)); )
4448 if (e->flags & EDGE_EH)
4449 {
4450 gimple stmt = last_stmt (e->src);
4451 remove_stmt_from_eh_lp (stmt);
4452 remove_edge (e);
4453 }
4454 else
4455 ei_next (&ei);
4456 goto succeed;
4457 }
4458
4459 /* If the destination region is a MUST_NOT_THROW, allow the runtime
4460 to handle the abort and allow the blocks to go unreachable. */
4461 if (new_region->type == ERT_MUST_NOT_THROW)
4462 {
4463 for (ei = ei_start (bb->preds); (e = ei_safe_edge (ei)); )
4464 if (e->flags & EDGE_EH)
4465 {
4466 gimple stmt = last_stmt (e->src);
4467 remove_stmt_from_eh_lp (stmt);
4468 add_stmt_to_eh_lp (stmt, new_lp_nr);
4469 remove_edge (e);
4470 }
4471 else
4472 ei_next (&ei);
4473 goto succeed;
4474 }
4475
4476 /* Try to redirect the EH edges and merge the PHIs into the destination
4477 landing pad block. If the merge succeeds, we'll already have redirected
4478 all the EH edges. The handler itself will go unreachable if there were
4479 no normal edges. */
d6063d7f 4480 if (cleanup_empty_eh_merge_phis (e_out->dest, bb, e_out, true))
1d65f45c
RH
4481 goto succeed;
4482
4483 /* Finally, if all input edges are EH edges, then we can (potentially)
4484 reduce the number of transfers from the runtime by moving the landing
4485 pad from the original region to the new region. This is a win when
4486 we remove the last CLEANUP region along a particular exception
4487 propagation path. Since nothing changes except for the region with
4488 which the landing pad is associated, the PHI nodes do not need to be
4489 adjusted at all. */
4490 if (!has_non_eh_pred)
4491 {
4492 cleanup_empty_eh_move_lp (bb, e_out, lp, new_region);
4493 if (dump_file && (dump_flags & TDF_DETAILS))
4494 fprintf (dump_file, "Empty EH handler %i moved to EH region %i.\n",
4495 lp->index, new_region->index);
4496
4497 /* ??? The CFG didn't change, but we may have rendered the
4498 old EH region unreachable. Trigger a cleanup there. */
a8da523f
JH
4499 return true;
4500 }
1d65f45c 4501
81bfd197 4502 return ret;
1d65f45c
RH
4503
4504 succeed:
4505 if (dump_file && (dump_flags & TDF_DETAILS))
4506 fprintf (dump_file, "Empty EH handler %i removed.\n", lp->index);
4507 remove_eh_landing_pad (lp);
4508 return true;
a8da523f
JH
4509}
4510
1d65f45c
RH
4511/* Do a post-order traversal of the EH region tree. Examine each
4512 post_landing_pad block and see if we can eliminate it as empty. */
4513
4514static bool
4515cleanup_all_empty_eh (void)
4516{
4517 bool changed = false;
4518 eh_landing_pad lp;
4519 int i;
4520
9771b263 4521 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
1d65f45c
RH
4522 if (lp)
4523 changed |= cleanup_empty_eh (lp);
4524
4525 return changed;
4526}
a8da523f
JH
4527
4528/* Perform cleanups and lowering of exception handling
4529 1) cleanups regions with handlers doing nothing are optimized out
4530 2) MUST_NOT_THROW regions that became dead because of 1) are optimized out
4531 3) Info about regions that are containing instructions, and regions
4532 reachable via local EH edges is collected
c0d18c6c 4533 4) Eh tree is pruned for regions no longer necessary.
1d65f45c
RH
4534
4535 TODO: Push MUST_NOT_THROW regions to the root of the EH tree.
4536 Unify those that have the same failure decl and locus.
4537*/
a8da523f
JH
4538
4539static unsigned int
66a3e339 4540execute_cleanup_eh_1 (void)
a8da523f 4541{
1d65f45c
RH
4542 /* Do this first: unsplit_all_eh and cleanup_all_empty_eh can die
4543 looking up unreachable landing pads. */
4544 remove_unreachable_handlers ();
a8da523f 4545
1d65f45c 4546 /* Watch out for the region tree vanishing due to all unreachable. */
25fe40b0 4547 if (cfun->eh->region_tree)
a8da523f 4548 {
1d65f45c 4549 bool changed = false;
a8da523f 4550
25fe40b0
RB
4551 if (optimize)
4552 changed |= unsplit_all_eh ();
1d65f45c
RH
4553 changed |= cleanup_all_empty_eh ();
4554
4555 if (changed)
6d07ad98
JH
4556 {
4557 free_dominance_info (CDI_DOMINATORS);
4558 free_dominance_info (CDI_POST_DOMINATORS);
a8da523f 4559
1d65f45c
RH
4560 /* We delayed all basic block deletion, as we may have performed
4561 cleanups on EH edges while non-EH edges were still present. */
4562 delete_unreachable_blocks ();
a8da523f 4563
1d65f45c
RH
4564 /* We manipulated the landing pads. Remove any region that no
4565 longer has a landing pad. */
4566 remove_unreachable_handlers_no_lp ();
4567
4568 return TODO_cleanup_cfg | TODO_update_ssa_only_virtuals;
4569 }
a8da523f
JH
4570 }
4571
1d65f45c
RH
4572 return 0;
4573}
4574
27a4cd48
DM
4575namespace {
4576
4577const pass_data pass_data_cleanup_eh =
4578{
4579 GIMPLE_PASS, /* type */
4580 "ehcleanup", /* name */
4581 OPTGROUP_NONE, /* optinfo_flags */
27a4cd48
DM
4582 TV_TREE_EH, /* tv_id */
4583 PROP_gimple_lcf, /* properties_required */
4584 0, /* properties_provided */
4585 0, /* properties_destroyed */
4586 0, /* todo_flags_start */
3bea341f 4587 0, /* todo_flags_finish */
a8da523f 4588};
27a4cd48
DM
4589
4590class pass_cleanup_eh : public gimple_opt_pass
4591{
4592public:
c3284718
RS
4593 pass_cleanup_eh (gcc::context *ctxt)
4594 : gimple_opt_pass (pass_data_cleanup_eh, ctxt)
27a4cd48
DM
4595 {}
4596
4597 /* opt_pass methods: */
65d3284b 4598 opt_pass * clone () { return new pass_cleanup_eh (m_ctxt); }
1a3d085c
TS
4599 virtual bool gate (function *fun)
4600 {
4601 return fun->eh != NULL && fun->eh->region_tree != NULL;
4602 }
4603
be55bfe6 4604 virtual unsigned int execute (function *);
27a4cd48
DM
4605
4606}; // class pass_cleanup_eh
4607
be55bfe6
TS
4608unsigned int
4609pass_cleanup_eh::execute (function *fun)
4610{
4611 int ret = execute_cleanup_eh_1 ();
4612
4613 /* If the function no longer needs an EH personality routine
4614 clear it. This exposes cross-language inlining opportunities
4615 and avoids references to a never defined personality routine. */
4616 if (DECL_FUNCTION_PERSONALITY (current_function_decl)
4617 && function_needs_eh_personality (fun) != eh_personality_lang)
4618 DECL_FUNCTION_PERSONALITY (current_function_decl) = NULL_TREE;
4619
4620 return ret;
4621}
4622
27a4cd48
DM
4623} // anon namespace
4624
4625gimple_opt_pass *
4626make_pass_cleanup_eh (gcc::context *ctxt)
4627{
4628 return new pass_cleanup_eh (ctxt);
4629}
1d65f45c
RH
4630\f
4631/* Verify that BB containing STMT as the last statement, has precisely the
4632 edge that make_eh_edges would create. */
4633
24e47c76 4634DEBUG_FUNCTION bool
1d65f45c
RH
4635verify_eh_edges (gimple stmt)
4636{
4637 basic_block bb = gimple_bb (stmt);
4638 eh_landing_pad lp = NULL;
4639 int lp_nr;
4640 edge_iterator ei;
4641 edge e, eh_edge;
4642
4643 lp_nr = lookup_stmt_eh_lp (stmt);
4644 if (lp_nr > 0)
4645 lp = get_eh_landing_pad_from_number (lp_nr);
4646
4647 eh_edge = NULL;
4648 FOR_EACH_EDGE (e, ei, bb->succs)
4649 {
4650 if (e->flags & EDGE_EH)
4651 {
4652 if (eh_edge)
4653 {
4654 error ("BB %i has multiple EH edges", bb->index);
4655 return true;
4656 }
4657 else
4658 eh_edge = e;
4659 }
4660 }
4661
4662 if (lp == NULL)
4663 {
4664 if (eh_edge)
4665 {
4666 error ("BB %i can not throw but has an EH edge", bb->index);
4667 return true;
4668 }
4669 return false;
4670 }
4671
4672 if (!stmt_could_throw_p (stmt))
4673 {
4674 error ("BB %i last statement has incorrectly set lp", bb->index);
4675 return true;
4676 }
4677
4678 if (eh_edge == NULL)
4679 {
4680 error ("BB %i is missing an EH edge", bb->index);
4681 return true;
4682 }
4683
4684 if (eh_edge->dest != label_to_block (lp->post_landing_pad))
4685 {
4686 error ("Incorrect EH edge %i->%i", bb->index, eh_edge->dest->index);
4687 return true;
4688 }
4689
4690 return false;
4691}
4692
4693/* Similarly, but handle GIMPLE_EH_DISPATCH specifically. */
4694
24e47c76 4695DEBUG_FUNCTION bool
538dd0b7 4696verify_eh_dispatch_edge (geh_dispatch *stmt)
1d65f45c
RH
4697{
4698 eh_region r;
4699 eh_catch c;
4700 basic_block src, dst;
4701 bool want_fallthru = true;
4702 edge_iterator ei;
4703 edge e, fall_edge;
4704
4705 r = get_eh_region_from_number (gimple_eh_dispatch_region (stmt));
4706 src = gimple_bb (stmt);
4707
4708 FOR_EACH_EDGE (e, ei, src->succs)
4709 gcc_assert (e->aux == NULL);
4710
4711 switch (r->type)
4712 {
4713 case ERT_TRY:
4714 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
4715 {
4716 dst = label_to_block (c->label);
4717 e = find_edge (src, dst);
4718 if (e == NULL)
4719 {
4720 error ("BB %i is missing an edge", src->index);
4721 return true;
4722 }
4723 e->aux = (void *)e;
4724
4725 /* A catch-all handler doesn't have a fallthru. */
4726 if (c->type_list == NULL)
4727 {
4728 want_fallthru = false;
4729 break;
4730 }
4731 }
4732 break;
4733
4734 case ERT_ALLOWED_EXCEPTIONS:
4735 dst = label_to_block (r->u.allowed.label);
4736 e = find_edge (src, dst);
4737 if (e == NULL)
4738 {
4739 error ("BB %i is missing an edge", src->index);
4740 return true;
4741 }
4742 e->aux = (void *)e;
4743 break;
4744
4745 default:
4746 gcc_unreachable ();
4747 }
4748
4749 fall_edge = NULL;
4750 FOR_EACH_EDGE (e, ei, src->succs)
4751 {
4752 if (e->flags & EDGE_FALLTHRU)
4753 {
4754 if (fall_edge != NULL)
4755 {
4756 error ("BB %i too many fallthru edges", src->index);
4757 return true;
4758 }
4759 fall_edge = e;
4760 }
4761 else if (e->aux)
4762 e->aux = NULL;
4763 else
4764 {
4765 error ("BB %i has incorrect edge", src->index);
4766 return true;
4767 }
4768 }
4769 if ((fall_edge != NULL) ^ want_fallthru)
4770 {
4771 error ("BB %i has incorrect fallthru edge", src->index);
4772 return true;
4773 }
4774
4775 return false;
4776}