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