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