]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/except.c
* tree-ssa.c (target_for_debug_bind, verify_phi_args,
[thirdparty/gcc.git] / gcc / except.c
1 /* Implements exception handling.
2 Copyright (C) 1989-2016 Free Software Foundation, Inc.
3 Contributed by Mike Stump <mrs@cygnus.com>.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
20
21
22 /* An exception is an event that can be "thrown" from within a
23 function. This event can then be "caught" by the callers of
24 the function.
25
26 The representation of exceptions changes several times during
27 the compilation process:
28
29 In the beginning, in the front end, we have the GENERIC trees
30 TRY_CATCH_EXPR, TRY_FINALLY_EXPR, WITH_CLEANUP_EXPR,
31 CLEANUP_POINT_EXPR, CATCH_EXPR, and EH_FILTER_EXPR.
32
33 During initial gimplification (gimplify.c) these are lowered
34 to the GIMPLE_TRY, GIMPLE_CATCH, and GIMPLE_EH_FILTER nodes.
35 The WITH_CLEANUP_EXPR and CLEANUP_POINT_EXPR nodes are converted
36 into GIMPLE_TRY_FINALLY nodes; the others are a more direct 1-1
37 conversion.
38
39 During pass_lower_eh (tree-eh.c) we record the nested structure
40 of the TRY nodes in EH_REGION nodes in CFUN->EH->REGION_TREE.
41 We expand the eh_protect_cleanup_actions langhook into MUST_NOT_THROW
42 regions at this time. We can then flatten the statements within
43 the TRY nodes to straight-line code. Statements that had been within
44 TRY nodes that can throw are recorded within CFUN->EH->THROW_STMT_TABLE,
45 so that we may remember what action is supposed to be taken if
46 a given statement does throw. During this lowering process,
47 we create an EH_LANDING_PAD node for each EH_REGION that has
48 some code within the function that needs to be executed if a
49 throw does happen. We also create RESX statements that are
50 used to transfer control from an inner EH_REGION to an outer
51 EH_REGION. We also create EH_DISPATCH statements as placeholders
52 for a runtime type comparison that should be made in order to
53 select the action to perform among different CATCH and EH_FILTER
54 regions.
55
56 During pass_lower_eh_dispatch (tree-eh.c), which is run after
57 all inlining is complete, we are able to run assign_filter_values,
58 which allows us to map the set of types manipulated by all of the
59 CATCH and EH_FILTER regions to a set of integers. This set of integers
60 will be how the exception runtime communicates with the code generated
61 within the function. We then expand the GIMPLE_EH_DISPATCH statements
62 to a switch or conditional branches that use the argument provided by
63 the runtime (__builtin_eh_filter) and the set of integers we computed
64 in assign_filter_values.
65
66 During pass_lower_resx (tree-eh.c), which is run near the end
67 of optimization, we expand RESX statements. If the eh region
68 that is outer to the RESX statement is a MUST_NOT_THROW, then
69 the RESX expands to some form of abort statement. If the eh
70 region that is outer to the RESX statement is within the current
71 function, then the RESX expands to a bookkeeping call
72 (__builtin_eh_copy_values) and a goto. Otherwise, the next
73 handler for the exception must be within a function somewhere
74 up the call chain, so we call back into the exception runtime
75 (__builtin_unwind_resume).
76
77 During pass_expand (cfgexpand.c), we generate REG_EH_REGION notes
78 that create an rtl to eh_region mapping that corresponds to the
79 gimple to eh_region mapping that had been recorded in the
80 THROW_STMT_TABLE.
81
82 Then, via finish_eh_generation, we generate the real landing pads
83 to which the runtime will actually transfer control. These new
84 landing pads perform whatever bookkeeping is needed by the target
85 backend in order to resume execution within the current function.
86 Each of these new landing pads falls through into the post_landing_pad
87 label which had been used within the CFG up to this point. All
88 exception edges within the CFG are redirected to the new landing pads.
89 If the target uses setjmp to implement exceptions, the various extra
90 calls into the runtime to register and unregister the current stack
91 frame are emitted at this time.
92
93 During pass_convert_to_eh_region_ranges (except.c), we transform
94 the REG_EH_REGION notes attached to individual insns into
95 non-overlapping ranges of insns bounded by NOTE_INSN_EH_REGION_BEG
96 and NOTE_INSN_EH_REGION_END. Each insn within such ranges has the
97 same associated action within the exception region tree, meaning
98 that (1) the exception is caught by the same landing pad within the
99 current function, (2) the exception is blocked by the runtime with
100 a MUST_NOT_THROW region, or (3) the exception is not handled at all
101 within the current function.
102
103 Finally, during assembly generation, we call
104 output_function_exception_table (except.c) to emit the tables with
105 which the exception runtime can determine if a given stack frame
106 handles a given exception, and if so what filter value to provide
107 to the function when the non-local control transfer is effected.
108 If the target uses dwarf2 unwinding to implement exceptions, then
109 output_call_frame_info (dwarf2out.c) emits the required unwind data. */
110
111
112 #include "config.h"
113 #include "system.h"
114 #include "coretypes.h"
115 #include "backend.h"
116 #include "target.h"
117 #include "rtl.h"
118 #include "tree.h"
119 #include "cfghooks.h"
120 #include "tree-pass.h"
121 #include "tm_p.h"
122 #include "stringpool.h"
123 #include "expmed.h"
124 #include "optabs.h"
125 #include "emit-rtl.h"
126 #include "cgraph.h"
127 #include "diagnostic.h"
128 #include "fold-const.h"
129 #include "stor-layout.h"
130 #include "explow.h"
131 #include "stmt.h"
132 #include "expr.h"
133 #include "calls.h"
134 #include "libfuncs.h"
135 #include "except.h"
136 #include "output.h"
137 #include "dwarf2asm.h"
138 #include "dwarf2out.h"
139 #include "common/common-target.h"
140 #include "langhooks.h"
141 #include "cfgrtl.h"
142 #include "tree-pretty-print.h"
143 #include "cfgloop.h"
144 #include "builtins.h"
145 #include "tree-hash-traits.h"
146
147 static GTY(()) int call_site_base;
148
149 static GTY (()) hash_map<tree_hash, tree> *type_to_runtime_map;
150
151 /* Describe the SjLj_Function_Context structure. */
152 static GTY(()) tree sjlj_fc_type_node;
153 static int sjlj_fc_call_site_ofs;
154 static int sjlj_fc_data_ofs;
155 static int sjlj_fc_personality_ofs;
156 static int sjlj_fc_lsda_ofs;
157 static int sjlj_fc_jbuf_ofs;
158 \f
159
160 struct GTY(()) call_site_record_d
161 {
162 rtx landing_pad;
163 int action;
164 };
165
166 /* In the following structure and associated functions,
167 we represent entries in the action table as 1-based indices.
168 Special cases are:
169
170 0: null action record, non-null landing pad; implies cleanups
171 -1: null action record, null landing pad; implies no action
172 -2: no call-site entry; implies must_not_throw
173 -3: we have yet to process outer regions
174
175 Further, no special cases apply to the "next" field of the record.
176 For next, 0 means end of list. */
177
178 struct action_record
179 {
180 int offset;
181 int filter;
182 int next;
183 };
184
185 /* Hashtable helpers. */
186
187 struct action_record_hasher : free_ptr_hash <action_record>
188 {
189 static inline hashval_t hash (const action_record *);
190 static inline bool equal (const action_record *, const action_record *);
191 };
192
193 inline hashval_t
194 action_record_hasher::hash (const action_record *entry)
195 {
196 return entry->next * 1009 + entry->filter;
197 }
198
199 inline bool
200 action_record_hasher::equal (const action_record *entry,
201 const action_record *data)
202 {
203 return entry->filter == data->filter && entry->next == data->next;
204 }
205
206 typedef hash_table<action_record_hasher> action_hash_type;
207 \f
208 static bool get_eh_region_and_lp_from_rtx (const_rtx, eh_region *,
209 eh_landing_pad *);
210
211 static void dw2_build_landing_pads (void);
212
213 static int collect_one_action_chain (action_hash_type *, eh_region);
214 static int add_call_site (rtx, int, int);
215
216 static void push_uleb128 (vec<uchar, va_gc> **, unsigned int);
217 static void push_sleb128 (vec<uchar, va_gc> **, int);
218 #ifndef HAVE_AS_LEB128
219 static int dw2_size_of_call_site_table (int);
220 static int sjlj_size_of_call_site_table (void);
221 #endif
222 static void dw2_output_call_site_table (int, int);
223 static void sjlj_output_call_site_table (void);
224
225 \f
226 void
227 init_eh (void)
228 {
229 if (! flag_exceptions)
230 return;
231
232 type_to_runtime_map = hash_map<tree_hash, tree>::create_ggc (31);
233
234 /* Create the SjLj_Function_Context structure. This should match
235 the definition in unwind-sjlj.c. */
236 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
237 {
238 tree f_jbuf, f_per, f_lsda, f_prev, f_cs, f_data, tmp;
239
240 sjlj_fc_type_node = lang_hooks.types.make_type (RECORD_TYPE);
241
242 f_prev = build_decl (BUILTINS_LOCATION,
243 FIELD_DECL, get_identifier ("__prev"),
244 build_pointer_type (sjlj_fc_type_node));
245 DECL_FIELD_CONTEXT (f_prev) = sjlj_fc_type_node;
246
247 f_cs = build_decl (BUILTINS_LOCATION,
248 FIELD_DECL, get_identifier ("__call_site"),
249 integer_type_node);
250 DECL_FIELD_CONTEXT (f_cs) = sjlj_fc_type_node;
251
252 tmp = build_index_type (size_int (4 - 1));
253 tmp = build_array_type (lang_hooks.types.type_for_mode
254 (targetm.unwind_word_mode (), 1),
255 tmp);
256 f_data = build_decl (BUILTINS_LOCATION,
257 FIELD_DECL, get_identifier ("__data"), tmp);
258 DECL_FIELD_CONTEXT (f_data) = sjlj_fc_type_node;
259
260 f_per = build_decl (BUILTINS_LOCATION,
261 FIELD_DECL, get_identifier ("__personality"),
262 ptr_type_node);
263 DECL_FIELD_CONTEXT (f_per) = sjlj_fc_type_node;
264
265 f_lsda = build_decl (BUILTINS_LOCATION,
266 FIELD_DECL, get_identifier ("__lsda"),
267 ptr_type_node);
268 DECL_FIELD_CONTEXT (f_lsda) = sjlj_fc_type_node;
269
270 #ifdef DONT_USE_BUILTIN_SETJMP
271 #ifdef JMP_BUF_SIZE
272 tmp = size_int (JMP_BUF_SIZE - 1);
273 #else
274 /* Should be large enough for most systems, if it is not,
275 JMP_BUF_SIZE should be defined with the proper value. It will
276 also tend to be larger than necessary for most systems, a more
277 optimal port will define JMP_BUF_SIZE. */
278 tmp = size_int (FIRST_PSEUDO_REGISTER + 2 - 1);
279 #endif
280 #else
281 /* Compute a minimally sized jump buffer. We need room to store at
282 least 3 pointers - stack pointer, frame pointer and return address.
283 Plus for some targets we need room for an extra pointer - in the
284 case of MIPS this is the global pointer. This makes a total of four
285 pointers, but to be safe we actually allocate room for 5.
286
287 If pointers are smaller than words then we allocate enough room for
288 5 words, just in case the backend needs this much room. For more
289 discussion on this issue see:
290 http://gcc.gnu.org/ml/gcc-patches/2014-05/msg00313.html. */
291 if (POINTER_SIZE > BITS_PER_WORD)
292 tmp = size_int (5 - 1);
293 else
294 tmp = size_int ((5 * BITS_PER_WORD / POINTER_SIZE) - 1);
295 #endif
296
297 tmp = build_index_type (tmp);
298 tmp = build_array_type (ptr_type_node, tmp);
299 f_jbuf = build_decl (BUILTINS_LOCATION,
300 FIELD_DECL, get_identifier ("__jbuf"), tmp);
301 #ifdef DONT_USE_BUILTIN_SETJMP
302 /* We don't know what the alignment requirements of the
303 runtime's jmp_buf has. Overestimate. */
304 SET_DECL_ALIGN (f_jbuf, BIGGEST_ALIGNMENT);
305 DECL_USER_ALIGN (f_jbuf) = 1;
306 #endif
307 DECL_FIELD_CONTEXT (f_jbuf) = sjlj_fc_type_node;
308
309 TYPE_FIELDS (sjlj_fc_type_node) = f_prev;
310 TREE_CHAIN (f_prev) = f_cs;
311 TREE_CHAIN (f_cs) = f_data;
312 TREE_CHAIN (f_data) = f_per;
313 TREE_CHAIN (f_per) = f_lsda;
314 TREE_CHAIN (f_lsda) = f_jbuf;
315
316 layout_type (sjlj_fc_type_node);
317
318 /* Cache the interesting field offsets so that we have
319 easy access from rtl. */
320 sjlj_fc_call_site_ofs
321 = (tree_to_uhwi (DECL_FIELD_OFFSET (f_cs))
322 + tree_to_uhwi (DECL_FIELD_BIT_OFFSET (f_cs)) / BITS_PER_UNIT);
323 sjlj_fc_data_ofs
324 = (tree_to_uhwi (DECL_FIELD_OFFSET (f_data))
325 + tree_to_uhwi (DECL_FIELD_BIT_OFFSET (f_data)) / BITS_PER_UNIT);
326 sjlj_fc_personality_ofs
327 = (tree_to_uhwi (DECL_FIELD_OFFSET (f_per))
328 + tree_to_uhwi (DECL_FIELD_BIT_OFFSET (f_per)) / BITS_PER_UNIT);
329 sjlj_fc_lsda_ofs
330 = (tree_to_uhwi (DECL_FIELD_OFFSET (f_lsda))
331 + tree_to_uhwi (DECL_FIELD_BIT_OFFSET (f_lsda)) / BITS_PER_UNIT);
332 sjlj_fc_jbuf_ofs
333 = (tree_to_uhwi (DECL_FIELD_OFFSET (f_jbuf))
334 + tree_to_uhwi (DECL_FIELD_BIT_OFFSET (f_jbuf)) / BITS_PER_UNIT);
335 }
336 }
337
338 void
339 init_eh_for_function (void)
340 {
341 cfun->eh = ggc_cleared_alloc<eh_status> ();
342
343 /* Make sure zero'th entries are used. */
344 vec_safe_push (cfun->eh->region_array, (eh_region)0);
345 vec_safe_push (cfun->eh->lp_array, (eh_landing_pad)0);
346 }
347 \f
348 /* Routines to generate the exception tree somewhat directly.
349 These are used from tree-eh.c when processing exception related
350 nodes during tree optimization. */
351
352 static eh_region
353 gen_eh_region (enum eh_region_type type, eh_region outer)
354 {
355 eh_region new_eh;
356
357 /* Insert a new blank region as a leaf in the tree. */
358 new_eh = ggc_cleared_alloc<eh_region_d> ();
359 new_eh->type = type;
360 new_eh->outer = outer;
361 if (outer)
362 {
363 new_eh->next_peer = outer->inner;
364 outer->inner = new_eh;
365 }
366 else
367 {
368 new_eh->next_peer = cfun->eh->region_tree;
369 cfun->eh->region_tree = new_eh;
370 }
371
372 new_eh->index = vec_safe_length (cfun->eh->region_array);
373 vec_safe_push (cfun->eh->region_array, new_eh);
374
375 /* Copy the language's notion of whether to use __cxa_end_cleanup. */
376 if (targetm.arm_eabi_unwinder && lang_hooks.eh_use_cxa_end_cleanup)
377 new_eh->use_cxa_end_cleanup = true;
378
379 return new_eh;
380 }
381
382 eh_region
383 gen_eh_region_cleanup (eh_region outer)
384 {
385 return gen_eh_region (ERT_CLEANUP, outer);
386 }
387
388 eh_region
389 gen_eh_region_try (eh_region outer)
390 {
391 return gen_eh_region (ERT_TRY, outer);
392 }
393
394 eh_catch
395 gen_eh_region_catch (eh_region t, tree type_or_list)
396 {
397 eh_catch c, l;
398 tree type_list, type_node;
399
400 gcc_assert (t->type == ERT_TRY);
401
402 /* Ensure to always end up with a type list to normalize further
403 processing, then register each type against the runtime types map. */
404 type_list = type_or_list;
405 if (type_or_list)
406 {
407 if (TREE_CODE (type_or_list) != TREE_LIST)
408 type_list = tree_cons (NULL_TREE, type_or_list, NULL_TREE);
409
410 type_node = type_list;
411 for (; type_node; type_node = TREE_CHAIN (type_node))
412 add_type_for_runtime (TREE_VALUE (type_node));
413 }
414
415 c = ggc_cleared_alloc<eh_catch_d> ();
416 c->type_list = type_list;
417 l = t->u.eh_try.last_catch;
418 c->prev_catch = l;
419 if (l)
420 l->next_catch = c;
421 else
422 t->u.eh_try.first_catch = c;
423 t->u.eh_try.last_catch = c;
424
425 return c;
426 }
427
428 eh_region
429 gen_eh_region_allowed (eh_region outer, tree allowed)
430 {
431 eh_region region = gen_eh_region (ERT_ALLOWED_EXCEPTIONS, outer);
432 region->u.allowed.type_list = allowed;
433
434 for (; allowed ; allowed = TREE_CHAIN (allowed))
435 add_type_for_runtime (TREE_VALUE (allowed));
436
437 return region;
438 }
439
440 eh_region
441 gen_eh_region_must_not_throw (eh_region outer)
442 {
443 return gen_eh_region (ERT_MUST_NOT_THROW, outer);
444 }
445
446 eh_landing_pad
447 gen_eh_landing_pad (eh_region region)
448 {
449 eh_landing_pad lp = ggc_cleared_alloc<eh_landing_pad_d> ();
450
451 lp->next_lp = region->landing_pads;
452 lp->region = region;
453 lp->index = vec_safe_length (cfun->eh->lp_array);
454 region->landing_pads = lp;
455
456 vec_safe_push (cfun->eh->lp_array, lp);
457
458 return lp;
459 }
460
461 eh_region
462 get_eh_region_from_number_fn (struct function *ifun, int i)
463 {
464 return (*ifun->eh->region_array)[i];
465 }
466
467 eh_region
468 get_eh_region_from_number (int i)
469 {
470 return get_eh_region_from_number_fn (cfun, i);
471 }
472
473 eh_landing_pad
474 get_eh_landing_pad_from_number_fn (struct function *ifun, int i)
475 {
476 return (*ifun->eh->lp_array)[i];
477 }
478
479 eh_landing_pad
480 get_eh_landing_pad_from_number (int i)
481 {
482 return get_eh_landing_pad_from_number_fn (cfun, i);
483 }
484
485 eh_region
486 get_eh_region_from_lp_number_fn (struct function *ifun, int i)
487 {
488 if (i < 0)
489 return (*ifun->eh->region_array)[-i];
490 else if (i == 0)
491 return NULL;
492 else
493 {
494 eh_landing_pad lp;
495 lp = (*ifun->eh->lp_array)[i];
496 return lp->region;
497 }
498 }
499
500 eh_region
501 get_eh_region_from_lp_number (int i)
502 {
503 return get_eh_region_from_lp_number_fn (cfun, i);
504 }
505 \f
506 /* Returns true if the current function has exception handling regions. */
507
508 bool
509 current_function_has_exception_handlers (void)
510 {
511 return cfun->eh->region_tree != NULL;
512 }
513 \f
514 /* A subroutine of duplicate_eh_regions. Copy the eh_region tree at OLD.
515 Root it at OUTER, and apply LP_OFFSET to the lp numbers. */
516
517 struct duplicate_eh_regions_data
518 {
519 duplicate_eh_regions_map label_map;
520 void *label_map_data;
521 hash_map<void *, void *> *eh_map;
522 };
523
524 static void
525 duplicate_eh_regions_1 (struct duplicate_eh_regions_data *data,
526 eh_region old_r, eh_region outer)
527 {
528 eh_landing_pad old_lp, new_lp;
529 eh_region new_r;
530
531 new_r = gen_eh_region (old_r->type, outer);
532 gcc_assert (!data->eh_map->put (old_r, new_r));
533
534 switch (old_r->type)
535 {
536 case ERT_CLEANUP:
537 break;
538
539 case ERT_TRY:
540 {
541 eh_catch oc, nc;
542 for (oc = old_r->u.eh_try.first_catch; oc ; oc = oc->next_catch)
543 {
544 /* We should be doing all our region duplication before and
545 during inlining, which is before filter lists are created. */
546 gcc_assert (oc->filter_list == NULL);
547 nc = gen_eh_region_catch (new_r, oc->type_list);
548 nc->label = data->label_map (oc->label, data->label_map_data);
549 }
550 }
551 break;
552
553 case ERT_ALLOWED_EXCEPTIONS:
554 new_r->u.allowed.type_list = old_r->u.allowed.type_list;
555 if (old_r->u.allowed.label)
556 new_r->u.allowed.label
557 = data->label_map (old_r->u.allowed.label, data->label_map_data);
558 else
559 new_r->u.allowed.label = NULL_TREE;
560 break;
561
562 case ERT_MUST_NOT_THROW:
563 new_r->u.must_not_throw.failure_loc =
564 LOCATION_LOCUS (old_r->u.must_not_throw.failure_loc);
565 new_r->u.must_not_throw.failure_decl =
566 old_r->u.must_not_throw.failure_decl;
567 break;
568 }
569
570 for (old_lp = old_r->landing_pads; old_lp ; old_lp = old_lp->next_lp)
571 {
572 /* Don't bother copying unused landing pads. */
573 if (old_lp->post_landing_pad == NULL)
574 continue;
575
576 new_lp = gen_eh_landing_pad (new_r);
577 gcc_assert (!data->eh_map->put (old_lp, new_lp));
578
579 new_lp->post_landing_pad
580 = data->label_map (old_lp->post_landing_pad, data->label_map_data);
581 EH_LANDING_PAD_NR (new_lp->post_landing_pad) = new_lp->index;
582 }
583
584 /* Make sure to preserve the original use of __cxa_end_cleanup. */
585 new_r->use_cxa_end_cleanup = old_r->use_cxa_end_cleanup;
586
587 for (old_r = old_r->inner; old_r ; old_r = old_r->next_peer)
588 duplicate_eh_regions_1 (data, old_r, new_r);
589 }
590
591 /* Duplicate the EH regions from IFUN rooted at COPY_REGION into
592 the current function and root the tree below OUTER_REGION.
593 The special case of COPY_REGION of NULL means all regions.
594 Remap labels using MAP/MAP_DATA callback. Return a pointer map
595 that allows the caller to remap uses of both EH regions and
596 EH landing pads. */
597
598 hash_map<void *, void *> *
599 duplicate_eh_regions (struct function *ifun,
600 eh_region copy_region, int outer_lp,
601 duplicate_eh_regions_map map, void *map_data)
602 {
603 struct duplicate_eh_regions_data data;
604 eh_region outer_region;
605
606 if (flag_checking)
607 verify_eh_tree (ifun);
608
609 data.label_map = map;
610 data.label_map_data = map_data;
611 data.eh_map = new hash_map<void *, void *>;
612
613 outer_region = get_eh_region_from_lp_number_fn (cfun, outer_lp);
614
615 /* Copy all the regions in the subtree. */
616 if (copy_region)
617 duplicate_eh_regions_1 (&data, copy_region, outer_region);
618 else
619 {
620 eh_region r;
621 for (r = ifun->eh->region_tree; r ; r = r->next_peer)
622 duplicate_eh_regions_1 (&data, r, outer_region);
623 }
624
625 if (flag_checking)
626 verify_eh_tree (cfun);
627
628 return data.eh_map;
629 }
630
631 /* Return the region that is outer to both REGION_A and REGION_B in IFUN. */
632
633 eh_region
634 eh_region_outermost (struct function *ifun, eh_region region_a,
635 eh_region region_b)
636 {
637 gcc_assert (ifun->eh->region_array);
638 gcc_assert (ifun->eh->region_tree);
639
640 auto_sbitmap b_outer (ifun->eh->region_array->length ());
641 bitmap_clear (b_outer);
642
643 do
644 {
645 bitmap_set_bit (b_outer, region_b->index);
646 region_b = region_b->outer;
647 }
648 while (region_b);
649
650 do
651 {
652 if (bitmap_bit_p (b_outer, region_a->index))
653 break;
654 region_a = region_a->outer;
655 }
656 while (region_a);
657
658 return region_a;
659 }
660 \f
661 void
662 add_type_for_runtime (tree type)
663 {
664 /* If TYPE is NOP_EXPR, it means that it already is a runtime type. */
665 if (TREE_CODE (type) == NOP_EXPR)
666 return;
667
668 bool existed = false;
669 tree *slot = &type_to_runtime_map->get_or_insert (type, &existed);
670 if (!existed)
671 *slot = lang_hooks.eh_runtime_type (type);
672 }
673
674 tree
675 lookup_type_for_runtime (tree type)
676 {
677 /* If TYPE is NOP_EXPR, it means that it already is a runtime type. */
678 if (TREE_CODE (type) == NOP_EXPR)
679 return type;
680
681 /* We should have always inserted the data earlier. */
682 return *type_to_runtime_map->get (type);
683 }
684
685 \f
686 /* Represent an entry in @TTypes for either catch actions
687 or exception filter actions. */
688 struct ttypes_filter {
689 tree t;
690 int filter;
691 };
692
693 /* Helper for ttypes_filter hashing. */
694
695 struct ttypes_filter_hasher : free_ptr_hash <ttypes_filter>
696 {
697 typedef tree_node *compare_type;
698 static inline hashval_t hash (const ttypes_filter *);
699 static inline bool equal (const ttypes_filter *, const tree_node *);
700 };
701
702 /* Compare ENTRY (a ttypes_filter entry in the hash table) with DATA
703 (a tree) for a @TTypes type node we are thinking about adding. */
704
705 inline bool
706 ttypes_filter_hasher::equal (const ttypes_filter *entry, const tree_node *data)
707 {
708 return entry->t == data;
709 }
710
711 inline hashval_t
712 ttypes_filter_hasher::hash (const ttypes_filter *entry)
713 {
714 return TREE_HASH (entry->t);
715 }
716
717 typedef hash_table<ttypes_filter_hasher> ttypes_hash_type;
718
719
720 /* Helper for ehspec hashing. */
721
722 struct ehspec_hasher : free_ptr_hash <ttypes_filter>
723 {
724 static inline hashval_t hash (const ttypes_filter *);
725 static inline bool equal (const ttypes_filter *, const ttypes_filter *);
726 };
727
728 /* Compare ENTRY with DATA (both struct ttypes_filter) for a @TTypes
729 exception specification list we are thinking about adding. */
730 /* ??? Currently we use the type lists in the order given. Someone
731 should put these in some canonical order. */
732
733 inline bool
734 ehspec_hasher::equal (const ttypes_filter *entry, const ttypes_filter *data)
735 {
736 return type_list_equal (entry->t, data->t);
737 }
738
739 /* Hash function for exception specification lists. */
740
741 inline hashval_t
742 ehspec_hasher::hash (const ttypes_filter *entry)
743 {
744 hashval_t h = 0;
745 tree list;
746
747 for (list = entry->t; list ; list = TREE_CHAIN (list))
748 h = (h << 5) + (h >> 27) + TREE_HASH (TREE_VALUE (list));
749 return h;
750 }
751
752 typedef hash_table<ehspec_hasher> ehspec_hash_type;
753
754
755 /* Add TYPE (which may be NULL) to cfun->eh->ttype_data, using TYPES_HASH
756 to speed up the search. Return the filter value to be used. */
757
758 static int
759 add_ttypes_entry (ttypes_hash_type *ttypes_hash, tree type)
760 {
761 struct ttypes_filter **slot, *n;
762
763 slot = ttypes_hash->find_slot_with_hash (type, (hashval_t) TREE_HASH (type),
764 INSERT);
765
766 if ((n = *slot) == NULL)
767 {
768 /* Filter value is a 1 based table index. */
769
770 n = XNEW (struct ttypes_filter);
771 n->t = type;
772 n->filter = vec_safe_length (cfun->eh->ttype_data) + 1;
773 *slot = n;
774
775 vec_safe_push (cfun->eh->ttype_data, type);
776 }
777
778 return n->filter;
779 }
780
781 /* Add LIST to cfun->eh->ehspec_data, using EHSPEC_HASH and TYPES_HASH
782 to speed up the search. Return the filter value to be used. */
783
784 static int
785 add_ehspec_entry (ehspec_hash_type *ehspec_hash, ttypes_hash_type *ttypes_hash,
786 tree list)
787 {
788 struct ttypes_filter **slot, *n;
789 struct ttypes_filter dummy;
790
791 dummy.t = list;
792 slot = ehspec_hash->find_slot (&dummy, INSERT);
793
794 if ((n = *slot) == NULL)
795 {
796 int len;
797
798 if (targetm.arm_eabi_unwinder)
799 len = vec_safe_length (cfun->eh->ehspec_data.arm_eabi);
800 else
801 len = vec_safe_length (cfun->eh->ehspec_data.other);
802
803 /* Filter value is a -1 based byte index into a uleb128 buffer. */
804
805 n = XNEW (struct ttypes_filter);
806 n->t = list;
807 n->filter = -(len + 1);
808 *slot = n;
809
810 /* Generate a 0 terminated list of filter values. */
811 for (; list ; list = TREE_CHAIN (list))
812 {
813 if (targetm.arm_eabi_unwinder)
814 vec_safe_push (cfun->eh->ehspec_data.arm_eabi, TREE_VALUE (list));
815 else
816 {
817 /* Look up each type in the list and encode its filter
818 value as a uleb128. */
819 push_uleb128 (&cfun->eh->ehspec_data.other,
820 add_ttypes_entry (ttypes_hash, TREE_VALUE (list)));
821 }
822 }
823 if (targetm.arm_eabi_unwinder)
824 vec_safe_push (cfun->eh->ehspec_data.arm_eabi, NULL_TREE);
825 else
826 vec_safe_push (cfun->eh->ehspec_data.other, (uchar)0);
827 }
828
829 return n->filter;
830 }
831
832 /* Generate the action filter values to be used for CATCH and
833 ALLOWED_EXCEPTIONS regions. When using dwarf2 exception regions,
834 we use lots of landing pads, and so every type or list can share
835 the same filter value, which saves table space. */
836
837 void
838 assign_filter_values (void)
839 {
840 int i;
841 eh_region r;
842 eh_catch c;
843
844 vec_alloc (cfun->eh->ttype_data, 16);
845 if (targetm.arm_eabi_unwinder)
846 vec_alloc (cfun->eh->ehspec_data.arm_eabi, 64);
847 else
848 vec_alloc (cfun->eh->ehspec_data.other, 64);
849
850 ehspec_hash_type ehspec (31);
851 ttypes_hash_type ttypes (31);
852
853 for (i = 1; vec_safe_iterate (cfun->eh->region_array, i, &r); ++i)
854 {
855 if (r == NULL)
856 continue;
857
858 switch (r->type)
859 {
860 case ERT_TRY:
861 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
862 {
863 /* Whatever type_list is (NULL or true list), we build a list
864 of filters for the region. */
865 c->filter_list = NULL_TREE;
866
867 if (c->type_list != NULL)
868 {
869 /* Get a filter value for each of the types caught and store
870 them in the region's dedicated list. */
871 tree tp_node = c->type_list;
872
873 for ( ; tp_node; tp_node = TREE_CHAIN (tp_node))
874 {
875 int flt
876 = add_ttypes_entry (&ttypes, TREE_VALUE (tp_node));
877 tree flt_node = build_int_cst (integer_type_node, flt);
878
879 c->filter_list
880 = tree_cons (NULL_TREE, flt_node, c->filter_list);
881 }
882 }
883 else
884 {
885 /* Get a filter value for the NULL list also since it
886 will need an action record anyway. */
887 int flt = add_ttypes_entry (&ttypes, NULL);
888 tree flt_node = build_int_cst (integer_type_node, flt);
889
890 c->filter_list
891 = tree_cons (NULL_TREE, flt_node, NULL);
892 }
893 }
894 break;
895
896 case ERT_ALLOWED_EXCEPTIONS:
897 r->u.allowed.filter
898 = add_ehspec_entry (&ehspec, &ttypes, r->u.allowed.type_list);
899 break;
900
901 default:
902 break;
903 }
904 }
905 }
906
907 /* Emit SEQ into basic block just before INSN (that is assumed to be
908 first instruction of some existing BB and return the newly
909 produced block. */
910 static basic_block
911 emit_to_new_bb_before (rtx_insn *seq, rtx insn)
912 {
913 rtx_insn *last;
914 basic_block bb;
915 edge e;
916 edge_iterator ei;
917
918 /* If there happens to be a fallthru edge (possibly created by cleanup_cfg
919 call), we don't want it to go into newly created landing pad or other EH
920 construct. */
921 for (ei = ei_start (BLOCK_FOR_INSN (insn)->preds); (e = ei_safe_edge (ei)); )
922 if (e->flags & EDGE_FALLTHRU)
923 force_nonfallthru (e);
924 else
925 ei_next (&ei);
926 last = emit_insn_before (seq, insn);
927 if (BARRIER_P (last))
928 last = PREV_INSN (last);
929 bb = create_basic_block (seq, last, BLOCK_FOR_INSN (insn)->prev_bb);
930 update_bb_for_insn (bb);
931 bb->flags |= BB_SUPERBLOCK;
932 return bb;
933 }
934 \f
935 /* A subroutine of dw2_build_landing_pads, also used for edge splitting
936 at the rtl level. Emit the code required by the target at a landing
937 pad for the given region. */
938
939 void
940 expand_dw2_landing_pad_for_region (eh_region region)
941 {
942 if (targetm.have_exception_receiver ())
943 emit_insn (targetm.gen_exception_receiver ());
944 else if (targetm.have_nonlocal_goto_receiver ())
945 emit_insn (targetm.gen_nonlocal_goto_receiver ());
946 else
947 { /* Nothing */ }
948
949 if (region->exc_ptr_reg)
950 emit_move_insn (region->exc_ptr_reg,
951 gen_rtx_REG (ptr_mode, EH_RETURN_DATA_REGNO (0)));
952 if (region->filter_reg)
953 emit_move_insn (region->filter_reg,
954 gen_rtx_REG (targetm.eh_return_filter_mode (),
955 EH_RETURN_DATA_REGNO (1)));
956 }
957
958 /* Expand the extra code needed at landing pads for dwarf2 unwinding. */
959
960 static void
961 dw2_build_landing_pads (void)
962 {
963 int i;
964 eh_landing_pad lp;
965 int e_flags = EDGE_FALLTHRU;
966
967 /* If we're going to partition blocks, we need to be able to add
968 new landing pads later, which means that we need to hold on to
969 the post-landing-pad block. Prevent it from being merged away.
970 We'll remove this bit after partitioning. */
971 if (flag_reorder_blocks_and_partition)
972 e_flags |= EDGE_PRESERVE;
973
974 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
975 {
976 basic_block bb;
977 rtx_insn *seq;
978 edge e;
979
980 if (lp == NULL || lp->post_landing_pad == NULL)
981 continue;
982
983 start_sequence ();
984
985 lp->landing_pad = gen_label_rtx ();
986 emit_label (lp->landing_pad);
987 LABEL_PRESERVE_P (lp->landing_pad) = 1;
988
989 expand_dw2_landing_pad_for_region (lp->region);
990
991 seq = get_insns ();
992 end_sequence ();
993
994 bb = emit_to_new_bb_before (seq, label_rtx (lp->post_landing_pad));
995 e = make_edge (bb, bb->next_bb, e_flags);
996 e->count = bb->count;
997 e->probability = REG_BR_PROB_BASE;
998 if (current_loops)
999 {
1000 struct loop *loop = bb->next_bb->loop_father;
1001 /* If we created a pre-header block, add the new block to the
1002 outer loop, otherwise to the loop itself. */
1003 if (bb->next_bb == loop->header)
1004 add_bb_to_loop (bb, loop_outer (loop));
1005 else
1006 add_bb_to_loop (bb, loop);
1007 }
1008 }
1009 }
1010
1011 \f
1012 static vec<int> sjlj_lp_call_site_index;
1013
1014 /* Process all active landing pads. Assign each one a compact dispatch
1015 index, and a call-site index. */
1016
1017 static int
1018 sjlj_assign_call_site_values (void)
1019 {
1020 action_hash_type ar_hash (31);
1021 int i, disp_index;
1022 eh_landing_pad lp;
1023
1024 vec_alloc (crtl->eh.action_record_data, 64);
1025
1026 disp_index = 0;
1027 call_site_base = 1;
1028 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
1029 if (lp && lp->post_landing_pad)
1030 {
1031 int action, call_site;
1032
1033 /* First: build the action table. */
1034 action = collect_one_action_chain (&ar_hash, lp->region);
1035
1036 /* Next: assign call-site values. If dwarf2 terms, this would be
1037 the region number assigned by convert_to_eh_region_ranges, but
1038 handles no-action and must-not-throw differently. */
1039 /* Map must-not-throw to otherwise unused call-site index 0. */
1040 if (action == -2)
1041 call_site = 0;
1042 /* Map no-action to otherwise unused call-site index -1. */
1043 else if (action == -1)
1044 call_site = -1;
1045 /* Otherwise, look it up in the table. */
1046 else
1047 call_site = add_call_site (GEN_INT (disp_index), action, 0);
1048 sjlj_lp_call_site_index[i] = call_site;
1049
1050 disp_index++;
1051 }
1052
1053 return disp_index;
1054 }
1055
1056 /* Emit code to record the current call-site index before every
1057 insn that can throw. */
1058
1059 static void
1060 sjlj_mark_call_sites (void)
1061 {
1062 int last_call_site = -2;
1063 rtx_insn *insn;
1064 rtx mem;
1065
1066 for (insn = get_insns (); insn ; insn = NEXT_INSN (insn))
1067 {
1068 eh_landing_pad lp;
1069 eh_region r;
1070 bool nothrow;
1071 int this_call_site;
1072 rtx_insn *before, *p;
1073
1074 /* Reset value tracking at extended basic block boundaries. */
1075 if (LABEL_P (insn))
1076 last_call_site = -2;
1077
1078 /* If the function allocates dynamic stack space, the context must
1079 be updated after every allocation/deallocation accordingly. */
1080 if (NOTE_P (insn) && NOTE_KIND (insn) == NOTE_INSN_UPDATE_SJLJ_CONTEXT)
1081 {
1082 rtx buf_addr;
1083
1084 start_sequence ();
1085 buf_addr = plus_constant (Pmode, XEXP (crtl->eh.sjlj_fc, 0),
1086 sjlj_fc_jbuf_ofs);
1087 expand_builtin_update_setjmp_buf (buf_addr);
1088 p = get_insns ();
1089 end_sequence ();
1090 emit_insn_before (p, insn);
1091 }
1092
1093 if (! INSN_P (insn))
1094 continue;
1095
1096 nothrow = get_eh_region_and_lp_from_rtx (insn, &r, &lp);
1097 if (nothrow)
1098 continue;
1099 if (lp)
1100 this_call_site = sjlj_lp_call_site_index[lp->index];
1101 else if (r == NULL)
1102 {
1103 /* Calls (and trapping insns) without notes are outside any
1104 exception handling region in this function. Mark them as
1105 no action. */
1106 this_call_site = -1;
1107 }
1108 else
1109 {
1110 gcc_assert (r->type == ERT_MUST_NOT_THROW);
1111 this_call_site = 0;
1112 }
1113
1114 if (this_call_site != -1)
1115 crtl->uses_eh_lsda = 1;
1116
1117 if (this_call_site == last_call_site)
1118 continue;
1119
1120 /* Don't separate a call from it's argument loads. */
1121 before = insn;
1122 if (CALL_P (insn))
1123 before = find_first_parameter_load (insn, NULL);
1124
1125 start_sequence ();
1126 mem = adjust_address (crtl->eh.sjlj_fc, TYPE_MODE (integer_type_node),
1127 sjlj_fc_call_site_ofs);
1128 emit_move_insn (mem, gen_int_mode (this_call_site, GET_MODE (mem)));
1129 p = get_insns ();
1130 end_sequence ();
1131
1132 emit_insn_before (p, before);
1133 last_call_site = this_call_site;
1134 }
1135 }
1136
1137 /* Construct the SjLj_Function_Context. */
1138
1139 static void
1140 sjlj_emit_function_enter (rtx_code_label *dispatch_label)
1141 {
1142 rtx_insn *fn_begin, *seq;
1143 rtx fc, mem;
1144 bool fn_begin_outside_block;
1145 rtx personality = get_personality_function (current_function_decl);
1146
1147 fc = crtl->eh.sjlj_fc;
1148
1149 start_sequence ();
1150
1151 /* We're storing this libcall's address into memory instead of
1152 calling it directly. Thus, we must call assemble_external_libcall
1153 here, as we can not depend on emit_library_call to do it for us. */
1154 assemble_external_libcall (personality);
1155 mem = adjust_address (fc, Pmode, sjlj_fc_personality_ofs);
1156 emit_move_insn (mem, personality);
1157
1158 mem = adjust_address (fc, Pmode, sjlj_fc_lsda_ofs);
1159 if (crtl->uses_eh_lsda)
1160 {
1161 char buf[20];
1162 rtx sym;
1163
1164 ASM_GENERATE_INTERNAL_LABEL (buf, "LLSDA", current_function_funcdef_no);
1165 sym = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (buf));
1166 SYMBOL_REF_FLAGS (sym) = SYMBOL_FLAG_LOCAL;
1167 emit_move_insn (mem, sym);
1168 }
1169 else
1170 emit_move_insn (mem, const0_rtx);
1171
1172 if (dispatch_label)
1173 {
1174 rtx addr = plus_constant (Pmode, XEXP (fc, 0), sjlj_fc_jbuf_ofs);
1175
1176 #ifdef DONT_USE_BUILTIN_SETJMP
1177 addr = copy_addr_to_reg (addr);
1178 addr = convert_memory_address (ptr_mode, addr);
1179 tree addr_tree = make_tree (ptr_type_node, addr);
1180
1181 tree fn = builtin_decl_implicit (BUILT_IN_SETJMP);
1182 tree call_expr = build_call_expr (fn, 1, addr_tree);
1183 rtx x = expand_call (call_expr, NULL_RTX, false);
1184
1185 emit_cmp_and_jump_insns (x, const0_rtx, NE, 0,
1186 TYPE_MODE (integer_type_node), 0,
1187 dispatch_label, REG_BR_PROB_BASE / 100);
1188 #else
1189 expand_builtin_setjmp_setup (addr, dispatch_label);
1190 #endif
1191 }
1192
1193 emit_library_call (unwind_sjlj_register_libfunc, LCT_NORMAL, VOIDmode,
1194 1, XEXP (fc, 0), Pmode);
1195
1196 seq = get_insns ();
1197 end_sequence ();
1198
1199 /* ??? Instead of doing this at the beginning of the function,
1200 do this in a block that is at loop level 0 and dominates all
1201 can_throw_internal instructions. */
1202
1203 fn_begin_outside_block = true;
1204 for (fn_begin = get_insns (); ; fn_begin = NEXT_INSN (fn_begin))
1205 if (NOTE_P (fn_begin))
1206 {
1207 if (NOTE_KIND (fn_begin) == NOTE_INSN_FUNCTION_BEG)
1208 break;
1209 else if (NOTE_INSN_BASIC_BLOCK_P (fn_begin))
1210 fn_begin_outside_block = false;
1211 }
1212
1213 if (fn_begin_outside_block)
1214 insert_insn_on_edge (seq, single_succ_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun)));
1215 else
1216 emit_insn_after (seq, fn_begin);
1217 }
1218
1219 /* Call back from expand_function_end to know where we should put
1220 the call to unwind_sjlj_unregister_libfunc if needed. */
1221
1222 void
1223 sjlj_emit_function_exit_after (rtx_insn *after)
1224 {
1225 crtl->eh.sjlj_exit_after = after;
1226 }
1227
1228 static void
1229 sjlj_emit_function_exit (void)
1230 {
1231 rtx_insn *seq, *insn;
1232
1233 start_sequence ();
1234
1235 emit_library_call (unwind_sjlj_unregister_libfunc, LCT_NORMAL, VOIDmode,
1236 1, XEXP (crtl->eh.sjlj_fc, 0), Pmode);
1237
1238 seq = get_insns ();
1239 end_sequence ();
1240
1241 /* ??? Really this can be done in any block at loop level 0 that
1242 post-dominates all can_throw_internal instructions. This is
1243 the last possible moment. */
1244
1245 insn = crtl->eh.sjlj_exit_after;
1246 if (LABEL_P (insn))
1247 insn = NEXT_INSN (insn);
1248
1249 emit_insn_after (seq, insn);
1250 }
1251
1252 static void
1253 sjlj_emit_dispatch_table (rtx_code_label *dispatch_label, int num_dispatch)
1254 {
1255 machine_mode unwind_word_mode = targetm.unwind_word_mode ();
1256 machine_mode filter_mode = targetm.eh_return_filter_mode ();
1257 eh_landing_pad lp;
1258 rtx mem, fc, exc_ptr_reg, filter_reg;
1259 rtx_insn *seq;
1260 basic_block bb;
1261 eh_region r;
1262 edge e;
1263 int i, disp_index;
1264 vec<tree> dispatch_labels = vNULL;
1265
1266 fc = crtl->eh.sjlj_fc;
1267
1268 start_sequence ();
1269
1270 emit_label (dispatch_label);
1271
1272 #ifndef DONT_USE_BUILTIN_SETJMP
1273 expand_builtin_setjmp_receiver (dispatch_label);
1274
1275 /* The caller of expand_builtin_setjmp_receiver is responsible for
1276 making sure that the label doesn't vanish. The only other caller
1277 is the expander for __builtin_setjmp_receiver, which places this
1278 label on the nonlocal_goto_label list. Since we're modeling these
1279 CFG edges more exactly, we can use the forced_labels list instead. */
1280 LABEL_PRESERVE_P (dispatch_label) = 1;
1281 vec_safe_push<rtx_insn *> (forced_labels, dispatch_label);
1282 #endif
1283
1284 /* Load up exc_ptr and filter values from the function context. */
1285 mem = adjust_address (fc, unwind_word_mode, sjlj_fc_data_ofs);
1286 if (unwind_word_mode != ptr_mode)
1287 {
1288 #ifdef POINTERS_EXTEND_UNSIGNED
1289 mem = convert_memory_address (ptr_mode, mem);
1290 #else
1291 mem = convert_to_mode (ptr_mode, mem, 0);
1292 #endif
1293 }
1294 exc_ptr_reg = force_reg (ptr_mode, mem);
1295
1296 mem = adjust_address (fc, unwind_word_mode,
1297 sjlj_fc_data_ofs + GET_MODE_SIZE (unwind_word_mode));
1298 if (unwind_word_mode != filter_mode)
1299 mem = convert_to_mode (filter_mode, mem, 0);
1300 filter_reg = force_reg (filter_mode, mem);
1301
1302 /* Jump to one of the directly reachable regions. */
1303
1304 disp_index = 0;
1305 rtx_code_label *first_reachable_label = NULL;
1306
1307 /* If there's exactly one call site in the function, don't bother
1308 generating a switch statement. */
1309 if (num_dispatch > 1)
1310 dispatch_labels.create (num_dispatch);
1311
1312 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
1313 if (lp && lp->post_landing_pad)
1314 {
1315 rtx_insn *seq2;
1316 rtx_code_label *label;
1317
1318 start_sequence ();
1319
1320 lp->landing_pad = dispatch_label;
1321
1322 if (num_dispatch > 1)
1323 {
1324 tree t_label, case_elt, t;
1325
1326 t_label = create_artificial_label (UNKNOWN_LOCATION);
1327 t = build_int_cst (integer_type_node, disp_index);
1328 case_elt = build_case_label (t, NULL, t_label);
1329 dispatch_labels.quick_push (case_elt);
1330 label = jump_target_rtx (t_label);
1331 }
1332 else
1333 label = gen_label_rtx ();
1334
1335 if (disp_index == 0)
1336 first_reachable_label = label;
1337 emit_label (label);
1338
1339 r = lp->region;
1340 if (r->exc_ptr_reg)
1341 emit_move_insn (r->exc_ptr_reg, exc_ptr_reg);
1342 if (r->filter_reg)
1343 emit_move_insn (r->filter_reg, filter_reg);
1344
1345 seq2 = get_insns ();
1346 end_sequence ();
1347
1348 rtx_insn *before = label_rtx (lp->post_landing_pad);
1349 bb = emit_to_new_bb_before (seq2, before);
1350 e = make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
1351 e->count = bb->count;
1352 e->probability = REG_BR_PROB_BASE;
1353 if (current_loops)
1354 {
1355 struct loop *loop = bb->next_bb->loop_father;
1356 /* If we created a pre-header block, add the new block to the
1357 outer loop, otherwise to the loop itself. */
1358 if (bb->next_bb == loop->header)
1359 add_bb_to_loop (bb, loop_outer (loop));
1360 else
1361 add_bb_to_loop (bb, loop);
1362 /* ??? For multiple dispatches we will end up with edges
1363 from the loop tree root into this loop, making it a
1364 multiple-entry loop. Discard all affected loops. */
1365 if (num_dispatch > 1)
1366 {
1367 for (loop = bb->loop_father;
1368 loop_outer (loop); loop = loop_outer (loop))
1369 mark_loop_for_removal (loop);
1370 }
1371 }
1372
1373 disp_index++;
1374 }
1375 gcc_assert (disp_index == num_dispatch);
1376
1377 if (num_dispatch > 1)
1378 {
1379 rtx disp = adjust_address (fc, TYPE_MODE (integer_type_node),
1380 sjlj_fc_call_site_ofs);
1381 expand_sjlj_dispatch_table (disp, dispatch_labels);
1382 }
1383
1384 seq = get_insns ();
1385 end_sequence ();
1386
1387 bb = emit_to_new_bb_before (seq, first_reachable_label);
1388 if (num_dispatch == 1)
1389 {
1390 e = make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
1391 e->count = bb->count;
1392 e->probability = REG_BR_PROB_BASE;
1393 if (current_loops)
1394 {
1395 struct loop *loop = bb->next_bb->loop_father;
1396 /* If we created a pre-header block, add the new block to the
1397 outer loop, otherwise to the loop itself. */
1398 if (bb->next_bb == loop->header)
1399 add_bb_to_loop (bb, loop_outer (loop));
1400 else
1401 add_bb_to_loop (bb, loop);
1402 }
1403 }
1404 else
1405 {
1406 /* We are not wiring up edges here, but as the dispatcher call
1407 is at function begin simply associate the block with the
1408 outermost (non-)loop. */
1409 if (current_loops)
1410 add_bb_to_loop (bb, current_loops->tree_root);
1411 }
1412 }
1413
1414 static void
1415 sjlj_build_landing_pads (void)
1416 {
1417 int num_dispatch;
1418
1419 num_dispatch = vec_safe_length (cfun->eh->lp_array);
1420 if (num_dispatch == 0)
1421 return;
1422 sjlj_lp_call_site_index.safe_grow_cleared (num_dispatch);
1423
1424 num_dispatch = sjlj_assign_call_site_values ();
1425 if (num_dispatch > 0)
1426 {
1427 rtx_code_label *dispatch_label = gen_label_rtx ();
1428 int align = STACK_SLOT_ALIGNMENT (sjlj_fc_type_node,
1429 TYPE_MODE (sjlj_fc_type_node),
1430 TYPE_ALIGN (sjlj_fc_type_node));
1431 crtl->eh.sjlj_fc
1432 = assign_stack_local (TYPE_MODE (sjlj_fc_type_node),
1433 int_size_in_bytes (sjlj_fc_type_node),
1434 align);
1435
1436 sjlj_mark_call_sites ();
1437 sjlj_emit_function_enter (dispatch_label);
1438 sjlj_emit_dispatch_table (dispatch_label, num_dispatch);
1439 sjlj_emit_function_exit ();
1440 }
1441
1442 /* If we do not have any landing pads, we may still need to register a
1443 personality routine and (empty) LSDA to handle must-not-throw regions. */
1444 else if (function_needs_eh_personality (cfun) != eh_personality_none)
1445 {
1446 int align = STACK_SLOT_ALIGNMENT (sjlj_fc_type_node,
1447 TYPE_MODE (sjlj_fc_type_node),
1448 TYPE_ALIGN (sjlj_fc_type_node));
1449 crtl->eh.sjlj_fc
1450 = assign_stack_local (TYPE_MODE (sjlj_fc_type_node),
1451 int_size_in_bytes (sjlj_fc_type_node),
1452 align);
1453
1454 sjlj_mark_call_sites ();
1455 sjlj_emit_function_enter (NULL);
1456 sjlj_emit_function_exit ();
1457 }
1458
1459 sjlj_lp_call_site_index.release ();
1460 }
1461
1462 /* Update the sjlj function context. This function should be called
1463 whenever we allocate or deallocate dynamic stack space. */
1464
1465 void
1466 update_sjlj_context (void)
1467 {
1468 if (!flag_exceptions)
1469 return;
1470
1471 emit_note (NOTE_INSN_UPDATE_SJLJ_CONTEXT);
1472 }
1473
1474 /* After initial rtl generation, call back to finish generating
1475 exception support code. */
1476
1477 void
1478 finish_eh_generation (void)
1479 {
1480 basic_block bb;
1481
1482 /* Construct the landing pads. */
1483 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
1484 sjlj_build_landing_pads ();
1485 else
1486 dw2_build_landing_pads ();
1487 break_superblocks ();
1488
1489 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ
1490 /* Kludge for Alpha (see alpha_gp_save_rtx). */
1491 || single_succ_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun))->insns.r)
1492 commit_edge_insertions ();
1493
1494 /* Redirect all EH edges from the post_landing_pad to the landing pad. */
1495 FOR_EACH_BB_FN (bb, cfun)
1496 {
1497 eh_landing_pad lp;
1498 edge_iterator ei;
1499 edge e;
1500
1501 lp = get_eh_landing_pad_from_rtx (BB_END (bb));
1502
1503 FOR_EACH_EDGE (e, ei, bb->succs)
1504 if (e->flags & EDGE_EH)
1505 break;
1506
1507 /* We should not have generated any new throwing insns during this
1508 pass, and we should not have lost any EH edges, so we only need
1509 to handle two cases here:
1510 (1) reachable handler and an existing edge to post-landing-pad,
1511 (2) no reachable handler and no edge. */
1512 gcc_assert ((lp != NULL) == (e != NULL));
1513 if (lp != NULL)
1514 {
1515 gcc_assert (BB_HEAD (e->dest) == label_rtx (lp->post_landing_pad));
1516
1517 redirect_edge_succ (e, BLOCK_FOR_INSN (lp->landing_pad));
1518 e->flags |= (CALL_P (BB_END (bb))
1519 ? EDGE_ABNORMAL | EDGE_ABNORMAL_CALL
1520 : EDGE_ABNORMAL);
1521 }
1522 }
1523 }
1524 \f
1525 /* This section handles removing dead code for flow. */
1526
1527 void
1528 remove_eh_landing_pad (eh_landing_pad lp)
1529 {
1530 eh_landing_pad *pp;
1531
1532 for (pp = &lp->region->landing_pads; *pp != lp; pp = &(*pp)->next_lp)
1533 continue;
1534 *pp = lp->next_lp;
1535
1536 if (lp->post_landing_pad)
1537 EH_LANDING_PAD_NR (lp->post_landing_pad) = 0;
1538 (*cfun->eh->lp_array)[lp->index] = NULL;
1539 }
1540
1541 /* Splice the EH region at PP from the region tree. */
1542
1543 static void
1544 remove_eh_handler_splicer (eh_region *pp)
1545 {
1546 eh_region region = *pp;
1547 eh_landing_pad lp;
1548
1549 for (lp = region->landing_pads; lp ; lp = lp->next_lp)
1550 {
1551 if (lp->post_landing_pad)
1552 EH_LANDING_PAD_NR (lp->post_landing_pad) = 0;
1553 (*cfun->eh->lp_array)[lp->index] = NULL;
1554 }
1555
1556 if (region->inner)
1557 {
1558 eh_region p, outer;
1559 outer = region->outer;
1560
1561 *pp = p = region->inner;
1562 do
1563 {
1564 p->outer = outer;
1565 pp = &p->next_peer;
1566 p = *pp;
1567 }
1568 while (p);
1569 }
1570 *pp = region->next_peer;
1571
1572 (*cfun->eh->region_array)[region->index] = NULL;
1573 }
1574
1575 /* Splice a single EH region REGION from the region tree.
1576
1577 To unlink REGION, we need to find the pointer to it with a relatively
1578 expensive search in REGION's outer region. If you are going to
1579 remove a number of handlers, using remove_unreachable_eh_regions may
1580 be a better option. */
1581
1582 void
1583 remove_eh_handler (eh_region region)
1584 {
1585 eh_region *pp, *pp_start, p, outer;
1586
1587 outer = region->outer;
1588 if (outer)
1589 pp_start = &outer->inner;
1590 else
1591 pp_start = &cfun->eh->region_tree;
1592 for (pp = pp_start, p = *pp; p != region; pp = &p->next_peer, p = *pp)
1593 continue;
1594
1595 remove_eh_handler_splicer (pp);
1596 }
1597
1598 /* Worker for remove_unreachable_eh_regions.
1599 PP is a pointer to the region to start a region tree depth-first
1600 search from. R_REACHABLE is the set of regions that have to be
1601 preserved. */
1602
1603 static void
1604 remove_unreachable_eh_regions_worker (eh_region *pp, sbitmap r_reachable)
1605 {
1606 while (*pp)
1607 {
1608 eh_region region = *pp;
1609 remove_unreachable_eh_regions_worker (&region->inner, r_reachable);
1610 if (!bitmap_bit_p (r_reachable, region->index))
1611 remove_eh_handler_splicer (pp);
1612 else
1613 pp = &region->next_peer;
1614 }
1615 }
1616
1617 /* Splice all EH regions *not* marked in R_REACHABLE from the region tree.
1618 Do this by traversing the EH tree top-down and splice out regions that
1619 are not marked. By removing regions from the leaves, we avoid costly
1620 searches in the region tree. */
1621
1622 void
1623 remove_unreachable_eh_regions (sbitmap r_reachable)
1624 {
1625 remove_unreachable_eh_regions_worker (&cfun->eh->region_tree, r_reachable);
1626 }
1627
1628 /* Invokes CALLBACK for every exception handler landing pad label.
1629 Only used by reload hackery; should not be used by new code. */
1630
1631 void
1632 for_each_eh_label (void (*callback) (rtx))
1633 {
1634 eh_landing_pad lp;
1635 int i;
1636
1637 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
1638 {
1639 if (lp)
1640 {
1641 rtx_code_label *lab = lp->landing_pad;
1642 if (lab && LABEL_P (lab))
1643 (*callback) (lab);
1644 }
1645 }
1646 }
1647 \f
1648 /* Create the REG_EH_REGION note for INSN, given its ECF_FLAGS for a
1649 call insn.
1650
1651 At the gimple level, we use LP_NR
1652 > 0 : The statement transfers to landing pad LP_NR
1653 = 0 : The statement is outside any EH region
1654 < 0 : The statement is within MUST_NOT_THROW region -LP_NR.
1655
1656 At the rtl level, we use LP_NR
1657 > 0 : The insn transfers to landing pad LP_NR
1658 = 0 : The insn cannot throw
1659 < 0 : The insn is within MUST_NOT_THROW region -LP_NR
1660 = INT_MIN : The insn cannot throw or execute a nonlocal-goto.
1661 missing note: The insn is outside any EH region.
1662
1663 ??? This difference probably ought to be avoided. We could stand
1664 to record nothrow for arbitrary gimple statements, and so avoid
1665 some moderately complex lookups in stmt_could_throw_p. Perhaps
1666 NOTHROW should be mapped on both sides to INT_MIN. Perhaps the
1667 no-nonlocal-goto property should be recorded elsewhere as a bit
1668 on the call_insn directly. Perhaps we should make more use of
1669 attaching the trees to call_insns (reachable via symbol_ref in
1670 direct call cases) and just pull the data out of the trees. */
1671
1672 void
1673 make_reg_eh_region_note (rtx_insn *insn, int ecf_flags, int lp_nr)
1674 {
1675 rtx value;
1676 if (ecf_flags & ECF_NOTHROW)
1677 value = const0_rtx;
1678 else if (lp_nr != 0)
1679 value = GEN_INT (lp_nr);
1680 else
1681 return;
1682 add_reg_note (insn, REG_EH_REGION, value);
1683 }
1684
1685 /* Create a REG_EH_REGION note for a CALL_INSN that cannot throw
1686 nor perform a non-local goto. Replace the region note if it
1687 already exists. */
1688
1689 void
1690 make_reg_eh_region_note_nothrow_nononlocal (rtx_insn *insn)
1691 {
1692 rtx note = find_reg_note (insn, REG_EH_REGION, NULL_RTX);
1693 rtx intmin = GEN_INT (INT_MIN);
1694
1695 if (note != 0)
1696 XEXP (note, 0) = intmin;
1697 else
1698 add_reg_note (insn, REG_EH_REGION, intmin);
1699 }
1700
1701 /* Return true if INSN could throw, assuming no REG_EH_REGION note
1702 to the contrary. */
1703
1704 bool
1705 insn_could_throw_p (const_rtx insn)
1706 {
1707 if (!flag_exceptions)
1708 return false;
1709 if (CALL_P (insn))
1710 return true;
1711 if (INSN_P (insn) && cfun->can_throw_non_call_exceptions)
1712 return may_trap_p (PATTERN (insn));
1713 return false;
1714 }
1715
1716 /* Copy an REG_EH_REGION note to each insn that might throw beginning
1717 at FIRST and ending at LAST. NOTE_OR_INSN is either the source insn
1718 to look for a note, or the note itself. */
1719
1720 void
1721 copy_reg_eh_region_note_forward (rtx note_or_insn, rtx_insn *first, rtx last)
1722 {
1723 rtx_insn *insn;
1724 rtx note = note_or_insn;
1725
1726 if (INSN_P (note_or_insn))
1727 {
1728 note = find_reg_note (note_or_insn, REG_EH_REGION, NULL_RTX);
1729 if (note == NULL)
1730 return;
1731 }
1732 note = XEXP (note, 0);
1733
1734 for (insn = first; insn != last ; insn = NEXT_INSN (insn))
1735 if (!find_reg_note (insn, REG_EH_REGION, NULL_RTX)
1736 && insn_could_throw_p (insn))
1737 add_reg_note (insn, REG_EH_REGION, note);
1738 }
1739
1740 /* Likewise, but iterate backward. */
1741
1742 void
1743 copy_reg_eh_region_note_backward (rtx note_or_insn, rtx_insn *last, rtx first)
1744 {
1745 rtx_insn *insn;
1746 rtx note = note_or_insn;
1747
1748 if (INSN_P (note_or_insn))
1749 {
1750 note = find_reg_note (note_or_insn, REG_EH_REGION, NULL_RTX);
1751 if (note == NULL)
1752 return;
1753 }
1754 note = XEXP (note, 0);
1755
1756 for (insn = last; insn != first; insn = PREV_INSN (insn))
1757 if (insn_could_throw_p (insn))
1758 add_reg_note (insn, REG_EH_REGION, note);
1759 }
1760
1761
1762 /* Extract all EH information from INSN. Return true if the insn
1763 was marked NOTHROW. */
1764
1765 static bool
1766 get_eh_region_and_lp_from_rtx (const_rtx insn, eh_region *pr,
1767 eh_landing_pad *plp)
1768 {
1769 eh_landing_pad lp = NULL;
1770 eh_region r = NULL;
1771 bool ret = false;
1772 rtx note;
1773 int lp_nr;
1774
1775 if (! INSN_P (insn))
1776 goto egress;
1777
1778 if (NONJUMP_INSN_P (insn)
1779 && GET_CODE (PATTERN (insn)) == SEQUENCE)
1780 insn = XVECEXP (PATTERN (insn), 0, 0);
1781
1782 note = find_reg_note (insn, REG_EH_REGION, NULL_RTX);
1783 if (!note)
1784 {
1785 ret = !insn_could_throw_p (insn);
1786 goto egress;
1787 }
1788
1789 lp_nr = INTVAL (XEXP (note, 0));
1790 if (lp_nr == 0 || lp_nr == INT_MIN)
1791 {
1792 ret = true;
1793 goto egress;
1794 }
1795
1796 if (lp_nr < 0)
1797 r = (*cfun->eh->region_array)[-lp_nr];
1798 else
1799 {
1800 lp = (*cfun->eh->lp_array)[lp_nr];
1801 r = lp->region;
1802 }
1803
1804 egress:
1805 *plp = lp;
1806 *pr = r;
1807 return ret;
1808 }
1809
1810 /* Return the landing pad to which INSN may go, or NULL if it does not
1811 have a reachable landing pad within this function. */
1812
1813 eh_landing_pad
1814 get_eh_landing_pad_from_rtx (const_rtx insn)
1815 {
1816 eh_landing_pad lp;
1817 eh_region r;
1818
1819 get_eh_region_and_lp_from_rtx (insn, &r, &lp);
1820 return lp;
1821 }
1822
1823 /* Return the region to which INSN may go, or NULL if it does not
1824 have a reachable region within this function. */
1825
1826 eh_region
1827 get_eh_region_from_rtx (const_rtx insn)
1828 {
1829 eh_landing_pad lp;
1830 eh_region r;
1831
1832 get_eh_region_and_lp_from_rtx (insn, &r, &lp);
1833 return r;
1834 }
1835
1836 /* Return true if INSN throws and is caught by something in this function. */
1837
1838 bool
1839 can_throw_internal (const_rtx insn)
1840 {
1841 return get_eh_landing_pad_from_rtx (insn) != NULL;
1842 }
1843
1844 /* Return true if INSN throws and escapes from the current function. */
1845
1846 bool
1847 can_throw_external (const_rtx insn)
1848 {
1849 eh_landing_pad lp;
1850 eh_region r;
1851 bool nothrow;
1852
1853 if (! INSN_P (insn))
1854 return false;
1855
1856 if (NONJUMP_INSN_P (insn)
1857 && GET_CODE (PATTERN (insn)) == SEQUENCE)
1858 {
1859 rtx_sequence *seq = as_a <rtx_sequence *> (PATTERN (insn));
1860 int i, n = seq->len ();
1861
1862 for (i = 0; i < n; i++)
1863 if (can_throw_external (seq->element (i)))
1864 return true;
1865
1866 return false;
1867 }
1868
1869 nothrow = get_eh_region_and_lp_from_rtx (insn, &r, &lp);
1870
1871 /* If we can't throw, we obviously can't throw external. */
1872 if (nothrow)
1873 return false;
1874
1875 /* If we have an internal landing pad, then we're not external. */
1876 if (lp != NULL)
1877 return false;
1878
1879 /* If we're not within an EH region, then we are external. */
1880 if (r == NULL)
1881 return true;
1882
1883 /* The only thing that ought to be left is MUST_NOT_THROW regions,
1884 which don't always have landing pads. */
1885 gcc_assert (r->type == ERT_MUST_NOT_THROW);
1886 return false;
1887 }
1888
1889 /* Return true if INSN cannot throw at all. */
1890
1891 bool
1892 insn_nothrow_p (const_rtx insn)
1893 {
1894 eh_landing_pad lp;
1895 eh_region r;
1896
1897 if (! INSN_P (insn))
1898 return true;
1899
1900 if (NONJUMP_INSN_P (insn)
1901 && GET_CODE (PATTERN (insn)) == SEQUENCE)
1902 {
1903 rtx_sequence *seq = as_a <rtx_sequence *> (PATTERN (insn));
1904 int i, n = seq->len ();
1905
1906 for (i = 0; i < n; i++)
1907 if (!insn_nothrow_p (seq->element (i)))
1908 return false;
1909
1910 return true;
1911 }
1912
1913 return get_eh_region_and_lp_from_rtx (insn, &r, &lp);
1914 }
1915
1916 /* Return true if INSN can perform a non-local goto. */
1917 /* ??? This test is here in this file because it (ab)uses REG_EH_REGION. */
1918
1919 bool
1920 can_nonlocal_goto (const rtx_insn *insn)
1921 {
1922 if (nonlocal_goto_handler_labels && CALL_P (insn))
1923 {
1924 rtx note = find_reg_note (insn, REG_EH_REGION, NULL_RTX);
1925 if (!note || INTVAL (XEXP (note, 0)) != INT_MIN)
1926 return true;
1927 }
1928 return false;
1929 }
1930 \f
1931 /* Set TREE_NOTHROW and crtl->all_throwers_are_sibcalls. */
1932
1933 static unsigned int
1934 set_nothrow_function_flags (void)
1935 {
1936 rtx_insn *insn;
1937
1938 crtl->nothrow = 1;
1939
1940 /* Assume crtl->all_throwers_are_sibcalls until we encounter
1941 something that can throw an exception. We specifically exempt
1942 CALL_INSNs that are SIBLING_CALL_P, as these are really jumps,
1943 and can't throw. Most CALL_INSNs are not SIBLING_CALL_P, so this
1944 is optimistic. */
1945
1946 crtl->all_throwers_are_sibcalls = 1;
1947
1948 /* If we don't know that this implementation of the function will
1949 actually be used, then we must not set TREE_NOTHROW, since
1950 callers must not assume that this function does not throw. */
1951 if (TREE_NOTHROW (current_function_decl))
1952 return 0;
1953
1954 if (! flag_exceptions)
1955 return 0;
1956
1957 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
1958 if (can_throw_external (insn))
1959 {
1960 crtl->nothrow = 0;
1961
1962 if (!CALL_P (insn) || !SIBLING_CALL_P (insn))
1963 {
1964 crtl->all_throwers_are_sibcalls = 0;
1965 return 0;
1966 }
1967 }
1968
1969 if (crtl->nothrow
1970 && (cgraph_node::get (current_function_decl)->get_availability ()
1971 >= AVAIL_AVAILABLE))
1972 {
1973 struct cgraph_node *node = cgraph_node::get (current_function_decl);
1974 struct cgraph_edge *e;
1975 for (e = node->callers; e; e = e->next_caller)
1976 e->can_throw_external = false;
1977 node->set_nothrow_flag (true);
1978
1979 if (dump_file)
1980 fprintf (dump_file, "Marking function nothrow: %s\n\n",
1981 current_function_name ());
1982 }
1983 return 0;
1984 }
1985
1986 namespace {
1987
1988 const pass_data pass_data_set_nothrow_function_flags =
1989 {
1990 RTL_PASS, /* type */
1991 "nothrow", /* name */
1992 OPTGROUP_NONE, /* optinfo_flags */
1993 TV_NONE, /* tv_id */
1994 0, /* properties_required */
1995 0, /* properties_provided */
1996 0, /* properties_destroyed */
1997 0, /* todo_flags_start */
1998 0, /* todo_flags_finish */
1999 };
2000
2001 class pass_set_nothrow_function_flags : public rtl_opt_pass
2002 {
2003 public:
2004 pass_set_nothrow_function_flags (gcc::context *ctxt)
2005 : rtl_opt_pass (pass_data_set_nothrow_function_flags, ctxt)
2006 {}
2007
2008 /* opt_pass methods: */
2009 virtual unsigned int execute (function *)
2010 {
2011 return set_nothrow_function_flags ();
2012 }
2013
2014 }; // class pass_set_nothrow_function_flags
2015
2016 } // anon namespace
2017
2018 rtl_opt_pass *
2019 make_pass_set_nothrow_function_flags (gcc::context *ctxt)
2020 {
2021 return new pass_set_nothrow_function_flags (ctxt);
2022 }
2023
2024 \f
2025 /* Various hooks for unwind library. */
2026
2027 /* Expand the EH support builtin functions:
2028 __builtin_eh_pointer and __builtin_eh_filter. */
2029
2030 static eh_region
2031 expand_builtin_eh_common (tree region_nr_t)
2032 {
2033 HOST_WIDE_INT region_nr;
2034 eh_region region;
2035
2036 gcc_assert (tree_fits_shwi_p (region_nr_t));
2037 region_nr = tree_to_shwi (region_nr_t);
2038
2039 region = (*cfun->eh->region_array)[region_nr];
2040
2041 /* ??? We shouldn't have been able to delete a eh region without
2042 deleting all the code that depended on it. */
2043 gcc_assert (region != NULL);
2044
2045 return region;
2046 }
2047
2048 /* Expand to the exc_ptr value from the given eh region. */
2049
2050 rtx
2051 expand_builtin_eh_pointer (tree exp)
2052 {
2053 eh_region region
2054 = expand_builtin_eh_common (CALL_EXPR_ARG (exp, 0));
2055 if (region->exc_ptr_reg == NULL)
2056 region->exc_ptr_reg = gen_reg_rtx (ptr_mode);
2057 return region->exc_ptr_reg;
2058 }
2059
2060 /* Expand to the filter value from the given eh region. */
2061
2062 rtx
2063 expand_builtin_eh_filter (tree exp)
2064 {
2065 eh_region region
2066 = expand_builtin_eh_common (CALL_EXPR_ARG (exp, 0));
2067 if (region->filter_reg == NULL)
2068 region->filter_reg = gen_reg_rtx (targetm.eh_return_filter_mode ());
2069 return region->filter_reg;
2070 }
2071
2072 /* Copy the exc_ptr and filter values from one landing pad's registers
2073 to another. This is used to inline the resx statement. */
2074
2075 rtx
2076 expand_builtin_eh_copy_values (tree exp)
2077 {
2078 eh_region dst
2079 = expand_builtin_eh_common (CALL_EXPR_ARG (exp, 0));
2080 eh_region src
2081 = expand_builtin_eh_common (CALL_EXPR_ARG (exp, 1));
2082 machine_mode fmode = targetm.eh_return_filter_mode ();
2083
2084 if (dst->exc_ptr_reg == NULL)
2085 dst->exc_ptr_reg = gen_reg_rtx (ptr_mode);
2086 if (src->exc_ptr_reg == NULL)
2087 src->exc_ptr_reg = gen_reg_rtx (ptr_mode);
2088
2089 if (dst->filter_reg == NULL)
2090 dst->filter_reg = gen_reg_rtx (fmode);
2091 if (src->filter_reg == NULL)
2092 src->filter_reg = gen_reg_rtx (fmode);
2093
2094 emit_move_insn (dst->exc_ptr_reg, src->exc_ptr_reg);
2095 emit_move_insn (dst->filter_reg, src->filter_reg);
2096
2097 return const0_rtx;
2098 }
2099
2100 /* Do any necessary initialization to access arbitrary stack frames.
2101 On the SPARC, this means flushing the register windows. */
2102
2103 void
2104 expand_builtin_unwind_init (void)
2105 {
2106 /* Set this so all the registers get saved in our frame; we need to be
2107 able to copy the saved values for any registers from frames we unwind. */
2108 crtl->saves_all_registers = 1;
2109
2110 SETUP_FRAME_ADDRESSES ();
2111 }
2112
2113 /* Map a non-negative number to an eh return data register number; expands
2114 to -1 if no return data register is associated with the input number.
2115 At least the inputs 0 and 1 must be mapped; the target may provide more. */
2116
2117 rtx
2118 expand_builtin_eh_return_data_regno (tree exp)
2119 {
2120 tree which = CALL_EXPR_ARG (exp, 0);
2121 unsigned HOST_WIDE_INT iwhich;
2122
2123 if (TREE_CODE (which) != INTEGER_CST)
2124 {
2125 error ("argument of %<__builtin_eh_return_regno%> must be constant");
2126 return constm1_rtx;
2127 }
2128
2129 iwhich = tree_to_uhwi (which);
2130 iwhich = EH_RETURN_DATA_REGNO (iwhich);
2131 if (iwhich == INVALID_REGNUM)
2132 return constm1_rtx;
2133
2134 #ifdef DWARF_FRAME_REGNUM
2135 iwhich = DWARF_FRAME_REGNUM (iwhich);
2136 #else
2137 iwhich = DBX_REGISTER_NUMBER (iwhich);
2138 #endif
2139
2140 return GEN_INT (iwhich);
2141 }
2142
2143 /* Given a value extracted from the return address register or stack slot,
2144 return the actual address encoded in that value. */
2145
2146 rtx
2147 expand_builtin_extract_return_addr (tree addr_tree)
2148 {
2149 rtx addr = expand_expr (addr_tree, NULL_RTX, Pmode, EXPAND_NORMAL);
2150
2151 if (GET_MODE (addr) != Pmode
2152 && GET_MODE (addr) != VOIDmode)
2153 {
2154 #ifdef POINTERS_EXTEND_UNSIGNED
2155 addr = convert_memory_address (Pmode, addr);
2156 #else
2157 addr = convert_to_mode (Pmode, addr, 0);
2158 #endif
2159 }
2160
2161 /* First mask out any unwanted bits. */
2162 rtx mask = MASK_RETURN_ADDR;
2163 if (mask)
2164 expand_and (Pmode, addr, mask, addr);
2165
2166 /* Then adjust to find the real return address. */
2167 if (RETURN_ADDR_OFFSET)
2168 addr = plus_constant (Pmode, addr, RETURN_ADDR_OFFSET);
2169
2170 return addr;
2171 }
2172
2173 /* Given an actual address in addr_tree, do any necessary encoding
2174 and return the value to be stored in the return address register or
2175 stack slot so the epilogue will return to that address. */
2176
2177 rtx
2178 expand_builtin_frob_return_addr (tree addr_tree)
2179 {
2180 rtx addr = expand_expr (addr_tree, NULL_RTX, ptr_mode, EXPAND_NORMAL);
2181
2182 addr = convert_memory_address (Pmode, addr);
2183
2184 if (RETURN_ADDR_OFFSET)
2185 {
2186 addr = force_reg (Pmode, addr);
2187 addr = plus_constant (Pmode, addr, -RETURN_ADDR_OFFSET);
2188 }
2189
2190 return addr;
2191 }
2192
2193 /* Set up the epilogue with the magic bits we'll need to return to the
2194 exception handler. */
2195
2196 void
2197 expand_builtin_eh_return (tree stackadj_tree ATTRIBUTE_UNUSED,
2198 tree handler_tree)
2199 {
2200 rtx tmp;
2201
2202 #ifdef EH_RETURN_STACKADJ_RTX
2203 tmp = expand_expr (stackadj_tree, crtl->eh.ehr_stackadj,
2204 VOIDmode, EXPAND_NORMAL);
2205 tmp = convert_memory_address (Pmode, tmp);
2206 if (!crtl->eh.ehr_stackadj)
2207 crtl->eh.ehr_stackadj = copy_addr_to_reg (tmp);
2208 else if (tmp != crtl->eh.ehr_stackadj)
2209 emit_move_insn (crtl->eh.ehr_stackadj, tmp);
2210 #endif
2211
2212 tmp = expand_expr (handler_tree, crtl->eh.ehr_handler,
2213 VOIDmode, EXPAND_NORMAL);
2214 tmp = convert_memory_address (Pmode, tmp);
2215 if (!crtl->eh.ehr_handler)
2216 crtl->eh.ehr_handler = copy_addr_to_reg (tmp);
2217 else if (tmp != crtl->eh.ehr_handler)
2218 emit_move_insn (crtl->eh.ehr_handler, tmp);
2219
2220 if (!crtl->eh.ehr_label)
2221 crtl->eh.ehr_label = gen_label_rtx ();
2222 emit_jump (crtl->eh.ehr_label);
2223 }
2224
2225 /* Expand __builtin_eh_return. This exit path from the function loads up
2226 the eh return data registers, adjusts the stack, and branches to a
2227 given PC other than the normal return address. */
2228
2229 void
2230 expand_eh_return (void)
2231 {
2232 rtx_code_label *around_label;
2233
2234 if (! crtl->eh.ehr_label)
2235 return;
2236
2237 crtl->calls_eh_return = 1;
2238
2239 #ifdef EH_RETURN_STACKADJ_RTX
2240 emit_move_insn (EH_RETURN_STACKADJ_RTX, const0_rtx);
2241 #endif
2242
2243 around_label = gen_label_rtx ();
2244 emit_jump (around_label);
2245
2246 emit_label (crtl->eh.ehr_label);
2247 clobber_return_register ();
2248
2249 #ifdef EH_RETURN_STACKADJ_RTX
2250 emit_move_insn (EH_RETURN_STACKADJ_RTX, crtl->eh.ehr_stackadj);
2251 #endif
2252
2253 if (targetm.have_eh_return ())
2254 emit_insn (targetm.gen_eh_return (crtl->eh.ehr_handler));
2255 else
2256 {
2257 if (rtx handler = EH_RETURN_HANDLER_RTX)
2258 emit_move_insn (handler, crtl->eh.ehr_handler);
2259 else
2260 error ("__builtin_eh_return not supported on this target");
2261 }
2262
2263 emit_label (around_label);
2264 }
2265
2266 /* Convert a ptr_mode address ADDR_TREE to a Pmode address controlled by
2267 POINTERS_EXTEND_UNSIGNED and return it. */
2268
2269 rtx
2270 expand_builtin_extend_pointer (tree addr_tree)
2271 {
2272 rtx addr = expand_expr (addr_tree, NULL_RTX, ptr_mode, EXPAND_NORMAL);
2273 int extend;
2274
2275 #ifdef POINTERS_EXTEND_UNSIGNED
2276 extend = POINTERS_EXTEND_UNSIGNED;
2277 #else
2278 /* The previous EH code did an unsigned extend by default, so we do this also
2279 for consistency. */
2280 extend = 1;
2281 #endif
2282
2283 return convert_modes (targetm.unwind_word_mode (), ptr_mode, addr, extend);
2284 }
2285 \f
2286 static int
2287 add_action_record (action_hash_type *ar_hash, int filter, int next)
2288 {
2289 struct action_record **slot, *new_ar, tmp;
2290
2291 tmp.filter = filter;
2292 tmp.next = next;
2293 slot = ar_hash->find_slot (&tmp, INSERT);
2294
2295 if ((new_ar = *slot) == NULL)
2296 {
2297 new_ar = XNEW (struct action_record);
2298 new_ar->offset = crtl->eh.action_record_data->length () + 1;
2299 new_ar->filter = filter;
2300 new_ar->next = next;
2301 *slot = new_ar;
2302
2303 /* The filter value goes in untouched. The link to the next
2304 record is a "self-relative" byte offset, or zero to indicate
2305 that there is no next record. So convert the absolute 1 based
2306 indices we've been carrying around into a displacement. */
2307
2308 push_sleb128 (&crtl->eh.action_record_data, filter);
2309 if (next)
2310 next -= crtl->eh.action_record_data->length () + 1;
2311 push_sleb128 (&crtl->eh.action_record_data, next);
2312 }
2313
2314 return new_ar->offset;
2315 }
2316
2317 static int
2318 collect_one_action_chain (action_hash_type *ar_hash, eh_region region)
2319 {
2320 int next;
2321
2322 /* If we've reached the top of the region chain, then we have
2323 no actions, and require no landing pad. */
2324 if (region == NULL)
2325 return -1;
2326
2327 switch (region->type)
2328 {
2329 case ERT_CLEANUP:
2330 {
2331 eh_region r;
2332 /* A cleanup adds a zero filter to the beginning of the chain, but
2333 there are special cases to look out for. If there are *only*
2334 cleanups along a path, then it compresses to a zero action.
2335 Further, if there are multiple cleanups along a path, we only
2336 need to represent one of them, as that is enough to trigger
2337 entry to the landing pad at runtime. */
2338 next = collect_one_action_chain (ar_hash, region->outer);
2339 if (next <= 0)
2340 return 0;
2341 for (r = region->outer; r ; r = r->outer)
2342 if (r->type == ERT_CLEANUP)
2343 return next;
2344 return add_action_record (ar_hash, 0, next);
2345 }
2346
2347 case ERT_TRY:
2348 {
2349 eh_catch c;
2350
2351 /* Process the associated catch regions in reverse order.
2352 If there's a catch-all handler, then we don't need to
2353 search outer regions. Use a magic -3 value to record
2354 that we haven't done the outer search. */
2355 next = -3;
2356 for (c = region->u.eh_try.last_catch; c ; c = c->prev_catch)
2357 {
2358 if (c->type_list == NULL)
2359 {
2360 /* Retrieve the filter from the head of the filter list
2361 where we have stored it (see assign_filter_values). */
2362 int filter = TREE_INT_CST_LOW (TREE_VALUE (c->filter_list));
2363 next = add_action_record (ar_hash, filter, 0);
2364 }
2365 else
2366 {
2367 /* Once the outer search is done, trigger an action record for
2368 each filter we have. */
2369 tree flt_node;
2370
2371 if (next == -3)
2372 {
2373 next = collect_one_action_chain (ar_hash, region->outer);
2374
2375 /* If there is no next action, terminate the chain. */
2376 if (next == -1)
2377 next = 0;
2378 /* If all outer actions are cleanups or must_not_throw,
2379 we'll have no action record for it, since we had wanted
2380 to encode these states in the call-site record directly.
2381 Add a cleanup action to the chain to catch these. */
2382 else if (next <= 0)
2383 next = add_action_record (ar_hash, 0, 0);
2384 }
2385
2386 flt_node = c->filter_list;
2387 for (; flt_node; flt_node = TREE_CHAIN (flt_node))
2388 {
2389 int filter = TREE_INT_CST_LOW (TREE_VALUE (flt_node));
2390 next = add_action_record (ar_hash, filter, next);
2391 }
2392 }
2393 }
2394 return next;
2395 }
2396
2397 case ERT_ALLOWED_EXCEPTIONS:
2398 /* An exception specification adds its filter to the
2399 beginning of the chain. */
2400 next = collect_one_action_chain (ar_hash, region->outer);
2401
2402 /* If there is no next action, terminate the chain. */
2403 if (next == -1)
2404 next = 0;
2405 /* If all outer actions are cleanups or must_not_throw,
2406 we'll have no action record for it, since we had wanted
2407 to encode these states in the call-site record directly.
2408 Add a cleanup action to the chain to catch these. */
2409 else if (next <= 0)
2410 next = add_action_record (ar_hash, 0, 0);
2411
2412 return add_action_record (ar_hash, region->u.allowed.filter, next);
2413
2414 case ERT_MUST_NOT_THROW:
2415 /* A must-not-throw region with no inner handlers or cleanups
2416 requires no call-site entry. Note that this differs from
2417 the no handler or cleanup case in that we do require an lsda
2418 to be generated. Return a magic -2 value to record this. */
2419 return -2;
2420 }
2421
2422 gcc_unreachable ();
2423 }
2424
2425 static int
2426 add_call_site (rtx landing_pad, int action, int section)
2427 {
2428 call_site_record record;
2429
2430 record = ggc_alloc<call_site_record_d> ();
2431 record->landing_pad = landing_pad;
2432 record->action = action;
2433
2434 vec_safe_push (crtl->eh.call_site_record_v[section], record);
2435
2436 return call_site_base + crtl->eh.call_site_record_v[section]->length () - 1;
2437 }
2438
2439 static rtx_note *
2440 emit_note_eh_region_end (rtx_insn *insn)
2441 {
2442 rtx_insn *next = NEXT_INSN (insn);
2443
2444 /* Make sure we do not split a call and its corresponding
2445 CALL_ARG_LOCATION note. */
2446 if (next && NOTE_P (next)
2447 && NOTE_KIND (next) == NOTE_INSN_CALL_ARG_LOCATION)
2448 insn = next;
2449
2450 return emit_note_after (NOTE_INSN_EH_REGION_END, insn);
2451 }
2452
2453 /* Turn REG_EH_REGION notes back into NOTE_INSN_EH_REGION notes.
2454 The new note numbers will not refer to region numbers, but
2455 instead to call site entries. */
2456
2457 static unsigned int
2458 convert_to_eh_region_ranges (void)
2459 {
2460 rtx insn;
2461 rtx_insn *iter;
2462 rtx_note *note;
2463 action_hash_type ar_hash (31);
2464 int last_action = -3;
2465 rtx_insn *last_action_insn = NULL;
2466 rtx last_landing_pad = NULL_RTX;
2467 rtx_insn *first_no_action_insn = NULL;
2468 int call_site = 0;
2469 int cur_sec = 0;
2470 rtx_insn *section_switch_note = NULL;
2471 rtx_insn *first_no_action_insn_before_switch = NULL;
2472 rtx_insn *last_no_action_insn_before_switch = NULL;
2473 int saved_call_site_base = call_site_base;
2474
2475 vec_alloc (crtl->eh.action_record_data, 64);
2476
2477 for (iter = get_insns (); iter ; iter = NEXT_INSN (iter))
2478 if (INSN_P (iter))
2479 {
2480 eh_landing_pad lp;
2481 eh_region region;
2482 bool nothrow;
2483 int this_action;
2484 rtx_code_label *this_landing_pad;
2485
2486 insn = iter;
2487 if (NONJUMP_INSN_P (insn)
2488 && GET_CODE (PATTERN (insn)) == SEQUENCE)
2489 insn = XVECEXP (PATTERN (insn), 0, 0);
2490
2491 nothrow = get_eh_region_and_lp_from_rtx (insn, &region, &lp);
2492 if (nothrow)
2493 continue;
2494 if (region)
2495 this_action = collect_one_action_chain (&ar_hash, region);
2496 else
2497 this_action = -1;
2498
2499 /* Existence of catch handlers, or must-not-throw regions
2500 implies that an lsda is needed (even if empty). */
2501 if (this_action != -1)
2502 crtl->uses_eh_lsda = 1;
2503
2504 /* Delay creation of region notes for no-action regions
2505 until we're sure that an lsda will be required. */
2506 else if (last_action == -3)
2507 {
2508 first_no_action_insn = iter;
2509 last_action = -1;
2510 }
2511
2512 if (this_action >= 0)
2513 this_landing_pad = lp->landing_pad;
2514 else
2515 this_landing_pad = NULL;
2516
2517 /* Differing actions or landing pads implies a change in call-site
2518 info, which implies some EH_REGION note should be emitted. */
2519 if (last_action != this_action
2520 || last_landing_pad != this_landing_pad)
2521 {
2522 /* If there is a queued no-action region in the other section
2523 with hot/cold partitioning, emit it now. */
2524 if (first_no_action_insn_before_switch)
2525 {
2526 gcc_assert (this_action != -1
2527 && last_action == (first_no_action_insn
2528 ? -1 : -3));
2529 call_site = add_call_site (NULL_RTX, 0, 0);
2530 note = emit_note_before (NOTE_INSN_EH_REGION_BEG,
2531 first_no_action_insn_before_switch);
2532 NOTE_EH_HANDLER (note) = call_site;
2533 note
2534 = emit_note_eh_region_end (last_no_action_insn_before_switch);
2535 NOTE_EH_HANDLER (note) = call_site;
2536 gcc_assert (last_action != -3
2537 || (last_action_insn
2538 == last_no_action_insn_before_switch));
2539 first_no_action_insn_before_switch = NULL;
2540 last_no_action_insn_before_switch = NULL;
2541 call_site_base++;
2542 }
2543 /* If we'd not seen a previous action (-3) or the previous
2544 action was must-not-throw (-2), then we do not need an
2545 end note. */
2546 if (last_action >= -1)
2547 {
2548 /* If we delayed the creation of the begin, do it now. */
2549 if (first_no_action_insn)
2550 {
2551 call_site = add_call_site (NULL_RTX, 0, cur_sec);
2552 note = emit_note_before (NOTE_INSN_EH_REGION_BEG,
2553 first_no_action_insn);
2554 NOTE_EH_HANDLER (note) = call_site;
2555 first_no_action_insn = NULL;
2556 }
2557
2558 note = emit_note_eh_region_end (last_action_insn);
2559 NOTE_EH_HANDLER (note) = call_site;
2560 }
2561
2562 /* If the new action is must-not-throw, then no region notes
2563 are created. */
2564 if (this_action >= -1)
2565 {
2566 call_site = add_call_site (this_landing_pad,
2567 this_action < 0 ? 0 : this_action,
2568 cur_sec);
2569 note = emit_note_before (NOTE_INSN_EH_REGION_BEG, iter);
2570 NOTE_EH_HANDLER (note) = call_site;
2571 }
2572
2573 last_action = this_action;
2574 last_landing_pad = this_landing_pad;
2575 }
2576 last_action_insn = iter;
2577 }
2578 else if (NOTE_P (iter)
2579 && NOTE_KIND (iter) == NOTE_INSN_SWITCH_TEXT_SECTIONS)
2580 {
2581 gcc_assert (section_switch_note == NULL_RTX);
2582 gcc_assert (flag_reorder_blocks_and_partition);
2583 section_switch_note = iter;
2584 if (first_no_action_insn)
2585 {
2586 first_no_action_insn_before_switch = first_no_action_insn;
2587 last_no_action_insn_before_switch = last_action_insn;
2588 first_no_action_insn = NULL;
2589 gcc_assert (last_action == -1);
2590 last_action = -3;
2591 }
2592 /* Force closing of current EH region before section switch and
2593 opening a new one afterwards. */
2594 else if (last_action != -3)
2595 last_landing_pad = pc_rtx;
2596 if (crtl->eh.call_site_record_v[cur_sec])
2597 call_site_base += crtl->eh.call_site_record_v[cur_sec]->length ();
2598 cur_sec++;
2599 gcc_assert (crtl->eh.call_site_record_v[cur_sec] == NULL);
2600 vec_alloc (crtl->eh.call_site_record_v[cur_sec], 10);
2601 }
2602
2603 if (last_action >= -1 && ! first_no_action_insn)
2604 {
2605 note = emit_note_eh_region_end (last_action_insn);
2606 NOTE_EH_HANDLER (note) = call_site;
2607 }
2608
2609 call_site_base = saved_call_site_base;
2610
2611 return 0;
2612 }
2613
2614 namespace {
2615
2616 const pass_data pass_data_convert_to_eh_region_ranges =
2617 {
2618 RTL_PASS, /* type */
2619 "eh_ranges", /* name */
2620 OPTGROUP_NONE, /* optinfo_flags */
2621 TV_NONE, /* tv_id */
2622 0, /* properties_required */
2623 0, /* properties_provided */
2624 0, /* properties_destroyed */
2625 0, /* todo_flags_start */
2626 0, /* todo_flags_finish */
2627 };
2628
2629 class pass_convert_to_eh_region_ranges : public rtl_opt_pass
2630 {
2631 public:
2632 pass_convert_to_eh_region_ranges (gcc::context *ctxt)
2633 : rtl_opt_pass (pass_data_convert_to_eh_region_ranges, ctxt)
2634 {}
2635
2636 /* opt_pass methods: */
2637 virtual bool gate (function *);
2638 virtual unsigned int execute (function *)
2639 {
2640 return convert_to_eh_region_ranges ();
2641 }
2642
2643 }; // class pass_convert_to_eh_region_ranges
2644
2645 bool
2646 pass_convert_to_eh_region_ranges::gate (function *)
2647 {
2648 /* Nothing to do for SJLJ exceptions or if no regions created. */
2649 if (cfun->eh->region_tree == NULL)
2650 return false;
2651 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
2652 return false;
2653 return true;
2654 }
2655
2656 } // anon namespace
2657
2658 rtl_opt_pass *
2659 make_pass_convert_to_eh_region_ranges (gcc::context *ctxt)
2660 {
2661 return new pass_convert_to_eh_region_ranges (ctxt);
2662 }
2663 \f
2664 static void
2665 push_uleb128 (vec<uchar, va_gc> **data_area, unsigned int value)
2666 {
2667 do
2668 {
2669 unsigned char byte = value & 0x7f;
2670 value >>= 7;
2671 if (value)
2672 byte |= 0x80;
2673 vec_safe_push (*data_area, byte);
2674 }
2675 while (value);
2676 }
2677
2678 static void
2679 push_sleb128 (vec<uchar, va_gc> **data_area, int value)
2680 {
2681 unsigned char byte;
2682 int more;
2683
2684 do
2685 {
2686 byte = value & 0x7f;
2687 value >>= 7;
2688 more = ! ((value == 0 && (byte & 0x40) == 0)
2689 || (value == -1 && (byte & 0x40) != 0));
2690 if (more)
2691 byte |= 0x80;
2692 vec_safe_push (*data_area, byte);
2693 }
2694 while (more);
2695 }
2696
2697 \f
2698 #ifndef HAVE_AS_LEB128
2699 static int
2700 dw2_size_of_call_site_table (int section)
2701 {
2702 int n = vec_safe_length (crtl->eh.call_site_record_v[section]);
2703 int size = n * (4 + 4 + 4);
2704 int i;
2705
2706 for (i = 0; i < n; ++i)
2707 {
2708 struct call_site_record_d *cs =
2709 (*crtl->eh.call_site_record_v[section])[i];
2710 size += size_of_uleb128 (cs->action);
2711 }
2712
2713 return size;
2714 }
2715
2716 static int
2717 sjlj_size_of_call_site_table (void)
2718 {
2719 int n = vec_safe_length (crtl->eh.call_site_record_v[0]);
2720 int size = 0;
2721 int i;
2722
2723 for (i = 0; i < n; ++i)
2724 {
2725 struct call_site_record_d *cs =
2726 (*crtl->eh.call_site_record_v[0])[i];
2727 size += size_of_uleb128 (INTVAL (cs->landing_pad));
2728 size += size_of_uleb128 (cs->action);
2729 }
2730
2731 return size;
2732 }
2733 #endif
2734
2735 static void
2736 dw2_output_call_site_table (int cs_format, int section)
2737 {
2738 int n = vec_safe_length (crtl->eh.call_site_record_v[section]);
2739 int i;
2740 const char *begin;
2741
2742 if (section == 0)
2743 begin = current_function_func_begin_label;
2744 else if (first_function_block_is_cold)
2745 begin = crtl->subsections.hot_section_label;
2746 else
2747 begin = crtl->subsections.cold_section_label;
2748
2749 for (i = 0; i < n; ++i)
2750 {
2751 struct call_site_record_d *cs = (*crtl->eh.call_site_record_v[section])[i];
2752 char reg_start_lab[32];
2753 char reg_end_lab[32];
2754 char landing_pad_lab[32];
2755
2756 ASM_GENERATE_INTERNAL_LABEL (reg_start_lab, "LEHB", call_site_base + i);
2757 ASM_GENERATE_INTERNAL_LABEL (reg_end_lab, "LEHE", call_site_base + i);
2758
2759 if (cs->landing_pad)
2760 ASM_GENERATE_INTERNAL_LABEL (landing_pad_lab, "L",
2761 CODE_LABEL_NUMBER (cs->landing_pad));
2762
2763 /* ??? Perhaps use insn length scaling if the assembler supports
2764 generic arithmetic. */
2765 /* ??? Perhaps use attr_length to choose data1 or data2 instead of
2766 data4 if the function is small enough. */
2767 if (cs_format == DW_EH_PE_uleb128)
2768 {
2769 dw2_asm_output_delta_uleb128 (reg_start_lab, begin,
2770 "region %d start", i);
2771 dw2_asm_output_delta_uleb128 (reg_end_lab, reg_start_lab,
2772 "length");
2773 if (cs->landing_pad)
2774 dw2_asm_output_delta_uleb128 (landing_pad_lab, begin,
2775 "landing pad");
2776 else
2777 dw2_asm_output_data_uleb128 (0, "landing pad");
2778 }
2779 else
2780 {
2781 dw2_asm_output_delta (4, reg_start_lab, begin,
2782 "region %d start", i);
2783 dw2_asm_output_delta (4, reg_end_lab, reg_start_lab, "length");
2784 if (cs->landing_pad)
2785 dw2_asm_output_delta (4, landing_pad_lab, begin,
2786 "landing pad");
2787 else
2788 dw2_asm_output_data (4, 0, "landing pad");
2789 }
2790 dw2_asm_output_data_uleb128 (cs->action, "action");
2791 }
2792
2793 call_site_base += n;
2794 }
2795
2796 static void
2797 sjlj_output_call_site_table (void)
2798 {
2799 int n = vec_safe_length (crtl->eh.call_site_record_v[0]);
2800 int i;
2801
2802 for (i = 0; i < n; ++i)
2803 {
2804 struct call_site_record_d *cs = (*crtl->eh.call_site_record_v[0])[i];
2805
2806 dw2_asm_output_data_uleb128 (INTVAL (cs->landing_pad),
2807 "region %d landing pad", i);
2808 dw2_asm_output_data_uleb128 (cs->action, "action");
2809 }
2810
2811 call_site_base += n;
2812 }
2813
2814 /* Switch to the section that should be used for exception tables. */
2815
2816 static void
2817 switch_to_exception_section (const char * ARG_UNUSED (fnname))
2818 {
2819 section *s;
2820
2821 if (exception_section)
2822 s = exception_section;
2823 else
2824 {
2825 int flags;
2826
2827 if (EH_TABLES_CAN_BE_READ_ONLY)
2828 {
2829 int tt_format =
2830 ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/1);
2831 flags = ((! flag_pic
2832 || ((tt_format & 0x70) != DW_EH_PE_absptr
2833 && (tt_format & 0x70) != DW_EH_PE_aligned))
2834 ? 0 : SECTION_WRITE);
2835 }
2836 else
2837 flags = SECTION_WRITE;
2838
2839 /* Compute the section and cache it into exception_section,
2840 unless it depends on the function name. */
2841 if (targetm_common.have_named_sections)
2842 {
2843 #ifdef HAVE_LD_EH_GC_SECTIONS
2844 if (flag_function_sections
2845 || (DECL_COMDAT_GROUP (current_function_decl) && HAVE_COMDAT_GROUP))
2846 {
2847 char *section_name = XNEWVEC (char, strlen (fnname) + 32);
2848 /* The EH table must match the code section, so only mark
2849 it linkonce if we have COMDAT groups to tie them together. */
2850 if (DECL_COMDAT_GROUP (current_function_decl) && HAVE_COMDAT_GROUP)
2851 flags |= SECTION_LINKONCE;
2852 sprintf (section_name, ".gcc_except_table.%s", fnname);
2853 s = get_section (section_name, flags, current_function_decl);
2854 free (section_name);
2855 }
2856 else
2857 #endif
2858 exception_section
2859 = s = get_section (".gcc_except_table", flags, NULL);
2860 }
2861 else
2862 exception_section
2863 = s = flags == SECTION_WRITE ? data_section : readonly_data_section;
2864 }
2865
2866 switch_to_section (s);
2867 }
2868
2869
2870 /* Output a reference from an exception table to the type_info object TYPE.
2871 TT_FORMAT and TT_FORMAT_SIZE describe the DWARF encoding method used for
2872 the value. */
2873
2874 static void
2875 output_ttype (tree type, int tt_format, int tt_format_size)
2876 {
2877 rtx value;
2878 bool is_public = true;
2879
2880 if (type == NULL_TREE)
2881 value = const0_rtx;
2882 else
2883 {
2884 /* FIXME lto. pass_ipa_free_lang_data changes all types to
2885 runtime types so TYPE should already be a runtime type
2886 reference. When pass_ipa_free_lang data is made a default
2887 pass, we can then remove the call to lookup_type_for_runtime
2888 below. */
2889 if (TYPE_P (type))
2890 type = lookup_type_for_runtime (type);
2891
2892 value = expand_expr (type, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
2893
2894 /* Let cgraph know that the rtti decl is used. Not all of the
2895 paths below go through assemble_integer, which would take
2896 care of this for us. */
2897 STRIP_NOPS (type);
2898 if (TREE_CODE (type) == ADDR_EXPR)
2899 {
2900 type = TREE_OPERAND (type, 0);
2901 if (VAR_P (type))
2902 is_public = TREE_PUBLIC (type);
2903 }
2904 else
2905 gcc_assert (TREE_CODE (type) == INTEGER_CST);
2906 }
2907
2908 /* Allow the target to override the type table entry format. */
2909 if (targetm.asm_out.ttype (value))
2910 return;
2911
2912 if (tt_format == DW_EH_PE_absptr || tt_format == DW_EH_PE_aligned)
2913 assemble_integer (value, tt_format_size,
2914 tt_format_size * BITS_PER_UNIT, 1);
2915 else
2916 dw2_asm_output_encoded_addr_rtx (tt_format, value, is_public, NULL);
2917 }
2918
2919 static void
2920 output_one_function_exception_table (int section)
2921 {
2922 int tt_format, cs_format, lp_format, i;
2923 #ifdef HAVE_AS_LEB128
2924 char ttype_label[32];
2925 char cs_after_size_label[32];
2926 char cs_end_label[32];
2927 #else
2928 int call_site_len;
2929 #endif
2930 int have_tt_data;
2931 int tt_format_size = 0;
2932
2933 have_tt_data = (vec_safe_length (cfun->eh->ttype_data)
2934 || (targetm.arm_eabi_unwinder
2935 ? vec_safe_length (cfun->eh->ehspec_data.arm_eabi)
2936 : vec_safe_length (cfun->eh->ehspec_data.other)));
2937
2938 /* Indicate the format of the @TType entries. */
2939 if (! have_tt_data)
2940 tt_format = DW_EH_PE_omit;
2941 else
2942 {
2943 tt_format = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/1);
2944 #ifdef HAVE_AS_LEB128
2945 ASM_GENERATE_INTERNAL_LABEL (ttype_label,
2946 section ? "LLSDATTC" : "LLSDATT",
2947 current_function_funcdef_no);
2948 #endif
2949 tt_format_size = size_of_encoded_value (tt_format);
2950
2951 assemble_align (tt_format_size * BITS_PER_UNIT);
2952 }
2953
2954 targetm.asm_out.internal_label (asm_out_file, section ? "LLSDAC" : "LLSDA",
2955 current_function_funcdef_no);
2956
2957 /* The LSDA header. */
2958
2959 /* Indicate the format of the landing pad start pointer. An omitted
2960 field implies @LPStart == @Start. */
2961 /* Currently we always put @LPStart == @Start. This field would
2962 be most useful in moving the landing pads completely out of
2963 line to another section, but it could also be used to minimize
2964 the size of uleb128 landing pad offsets. */
2965 lp_format = DW_EH_PE_omit;
2966 dw2_asm_output_data (1, lp_format, "@LPStart format (%s)",
2967 eh_data_format_name (lp_format));
2968
2969 /* @LPStart pointer would go here. */
2970
2971 dw2_asm_output_data (1, tt_format, "@TType format (%s)",
2972 eh_data_format_name (tt_format));
2973
2974 #ifndef HAVE_AS_LEB128
2975 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
2976 call_site_len = sjlj_size_of_call_site_table ();
2977 else
2978 call_site_len = dw2_size_of_call_site_table (section);
2979 #endif
2980
2981 /* A pc-relative 4-byte displacement to the @TType data. */
2982 if (have_tt_data)
2983 {
2984 #ifdef HAVE_AS_LEB128
2985 char ttype_after_disp_label[32];
2986 ASM_GENERATE_INTERNAL_LABEL (ttype_after_disp_label,
2987 section ? "LLSDATTDC" : "LLSDATTD",
2988 current_function_funcdef_no);
2989 dw2_asm_output_delta_uleb128 (ttype_label, ttype_after_disp_label,
2990 "@TType base offset");
2991 ASM_OUTPUT_LABEL (asm_out_file, ttype_after_disp_label);
2992 #else
2993 /* Ug. Alignment queers things. */
2994 unsigned int before_disp, after_disp, last_disp, disp;
2995
2996 before_disp = 1 + 1;
2997 after_disp = (1 + size_of_uleb128 (call_site_len)
2998 + call_site_len
2999 + vec_safe_length (crtl->eh.action_record_data)
3000 + (vec_safe_length (cfun->eh->ttype_data)
3001 * tt_format_size));
3002
3003 disp = after_disp;
3004 do
3005 {
3006 unsigned int disp_size, pad;
3007
3008 last_disp = disp;
3009 disp_size = size_of_uleb128 (disp);
3010 pad = before_disp + disp_size + after_disp;
3011 if (pad % tt_format_size)
3012 pad = tt_format_size - (pad % tt_format_size);
3013 else
3014 pad = 0;
3015 disp = after_disp + pad;
3016 }
3017 while (disp != last_disp);
3018
3019 dw2_asm_output_data_uleb128 (disp, "@TType base offset");
3020 #endif
3021 }
3022
3023 /* Indicate the format of the call-site offsets. */
3024 #ifdef HAVE_AS_LEB128
3025 cs_format = DW_EH_PE_uleb128;
3026 #else
3027 cs_format = DW_EH_PE_udata4;
3028 #endif
3029 dw2_asm_output_data (1, cs_format, "call-site format (%s)",
3030 eh_data_format_name (cs_format));
3031
3032 #ifdef HAVE_AS_LEB128
3033 ASM_GENERATE_INTERNAL_LABEL (cs_after_size_label,
3034 section ? "LLSDACSBC" : "LLSDACSB",
3035 current_function_funcdef_no);
3036 ASM_GENERATE_INTERNAL_LABEL (cs_end_label,
3037 section ? "LLSDACSEC" : "LLSDACSE",
3038 current_function_funcdef_no);
3039 dw2_asm_output_delta_uleb128 (cs_end_label, cs_after_size_label,
3040 "Call-site table length");
3041 ASM_OUTPUT_LABEL (asm_out_file, cs_after_size_label);
3042 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
3043 sjlj_output_call_site_table ();
3044 else
3045 dw2_output_call_site_table (cs_format, section);
3046 ASM_OUTPUT_LABEL (asm_out_file, cs_end_label);
3047 #else
3048 dw2_asm_output_data_uleb128 (call_site_len, "Call-site table length");
3049 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
3050 sjlj_output_call_site_table ();
3051 else
3052 dw2_output_call_site_table (cs_format, section);
3053 #endif
3054
3055 /* ??? Decode and interpret the data for flag_debug_asm. */
3056 {
3057 uchar uc;
3058 FOR_EACH_VEC_ELT (*crtl->eh.action_record_data, i, uc)
3059 dw2_asm_output_data (1, uc, i ? NULL : "Action record table");
3060 }
3061
3062 if (have_tt_data)
3063 assemble_align (tt_format_size * BITS_PER_UNIT);
3064
3065 i = vec_safe_length (cfun->eh->ttype_data);
3066 while (i-- > 0)
3067 {
3068 tree type = (*cfun->eh->ttype_data)[i];
3069 output_ttype (type, tt_format, tt_format_size);
3070 }
3071
3072 #ifdef HAVE_AS_LEB128
3073 if (have_tt_data)
3074 ASM_OUTPUT_LABEL (asm_out_file, ttype_label);
3075 #endif
3076
3077 /* ??? Decode and interpret the data for flag_debug_asm. */
3078 if (targetm.arm_eabi_unwinder)
3079 {
3080 tree type;
3081 for (i = 0;
3082 vec_safe_iterate (cfun->eh->ehspec_data.arm_eabi, i, &type); ++i)
3083 output_ttype (type, tt_format, tt_format_size);
3084 }
3085 else
3086 {
3087 uchar uc;
3088 for (i = 0;
3089 vec_safe_iterate (cfun->eh->ehspec_data.other, i, &uc); ++i)
3090 dw2_asm_output_data (1, uc,
3091 i ? NULL : "Exception specification table");
3092 }
3093 }
3094
3095 void
3096 output_function_exception_table (const char *fnname)
3097 {
3098 rtx personality = get_personality_function (current_function_decl);
3099
3100 /* Not all functions need anything. */
3101 if (! crtl->uses_eh_lsda)
3102 return;
3103
3104 if (personality)
3105 {
3106 assemble_external_libcall (personality);
3107
3108 if (targetm.asm_out.emit_except_personality)
3109 targetm.asm_out.emit_except_personality (personality);
3110 }
3111
3112 switch_to_exception_section (fnname);
3113
3114 /* If the target wants a label to begin the table, emit it here. */
3115 targetm.asm_out.emit_except_table_label (asm_out_file);
3116
3117 output_one_function_exception_table (0);
3118 if (crtl->eh.call_site_record_v[1])
3119 output_one_function_exception_table (1);
3120
3121 switch_to_section (current_function_section ());
3122 }
3123
3124 void
3125 set_eh_throw_stmt_table (function *fun, hash_map<gimple *, int> *table)
3126 {
3127 fun->eh->throw_stmt_table = table;
3128 }
3129
3130 hash_map<gimple *, int> *
3131 get_eh_throw_stmt_table (struct function *fun)
3132 {
3133 return fun->eh->throw_stmt_table;
3134 }
3135 \f
3136 /* Determine if the function needs an EH personality function. */
3137
3138 enum eh_personality_kind
3139 function_needs_eh_personality (struct function *fn)
3140 {
3141 enum eh_personality_kind kind = eh_personality_none;
3142 eh_region i;
3143
3144 FOR_ALL_EH_REGION_FN (i, fn)
3145 {
3146 switch (i->type)
3147 {
3148 case ERT_CLEANUP:
3149 /* Can do with any personality including the generic C one. */
3150 kind = eh_personality_any;
3151 break;
3152
3153 case ERT_TRY:
3154 case ERT_ALLOWED_EXCEPTIONS:
3155 /* Always needs a EH personality function. The generic C
3156 personality doesn't handle these even for empty type lists. */
3157 return eh_personality_lang;
3158
3159 case ERT_MUST_NOT_THROW:
3160 /* Always needs a EH personality function. The language may specify
3161 what abort routine that must be used, e.g. std::terminate. */
3162 return eh_personality_lang;
3163 }
3164 }
3165
3166 return kind;
3167 }
3168 \f
3169 /* Dump EH information to OUT. */
3170
3171 void
3172 dump_eh_tree (FILE * out, struct function *fun)
3173 {
3174 eh_region i;
3175 int depth = 0;
3176 static const char *const type_name[] = {
3177 "cleanup", "try", "allowed_exceptions", "must_not_throw"
3178 };
3179
3180 i = fun->eh->region_tree;
3181 if (!i)
3182 return;
3183
3184 fprintf (out, "Eh tree:\n");
3185 while (1)
3186 {
3187 fprintf (out, " %*s %i %s", depth * 2, "",
3188 i->index, type_name[(int) i->type]);
3189
3190 if (i->landing_pads)
3191 {
3192 eh_landing_pad lp;
3193
3194 fprintf (out, " land:");
3195 if (current_ir_type () == IR_GIMPLE)
3196 {
3197 for (lp = i->landing_pads; lp ; lp = lp->next_lp)
3198 {
3199 fprintf (out, "{%i,", lp->index);
3200 print_generic_expr (out, lp->post_landing_pad, 0);
3201 fputc ('}', out);
3202 if (lp->next_lp)
3203 fputc (',', out);
3204 }
3205 }
3206 else
3207 {
3208 for (lp = i->landing_pads; lp ; lp = lp->next_lp)
3209 {
3210 fprintf (out, "{%i,", lp->index);
3211 if (lp->landing_pad)
3212 fprintf (out, "%i%s,", INSN_UID (lp->landing_pad),
3213 NOTE_P (lp->landing_pad) ? "(del)" : "");
3214 else
3215 fprintf (out, "(nil),");
3216 if (lp->post_landing_pad)
3217 {
3218 rtx_insn *lab = label_rtx (lp->post_landing_pad);
3219 fprintf (out, "%i%s}", INSN_UID (lab),
3220 NOTE_P (lab) ? "(del)" : "");
3221 }
3222 else
3223 fprintf (out, "(nil)}");
3224 if (lp->next_lp)
3225 fputc (',', out);
3226 }
3227 }
3228 }
3229
3230 switch (i->type)
3231 {
3232 case ERT_CLEANUP:
3233 case ERT_MUST_NOT_THROW:
3234 break;
3235
3236 case ERT_TRY:
3237 {
3238 eh_catch c;
3239 fprintf (out, " catch:");
3240 for (c = i->u.eh_try.first_catch; c; c = c->next_catch)
3241 {
3242 fputc ('{', out);
3243 if (c->label)
3244 {
3245 fprintf (out, "lab:");
3246 print_generic_expr (out, c->label, 0);
3247 fputc (';', out);
3248 }
3249 print_generic_expr (out, c->type_list, 0);
3250 fputc ('}', out);
3251 if (c->next_catch)
3252 fputc (',', out);
3253 }
3254 }
3255 break;
3256
3257 case ERT_ALLOWED_EXCEPTIONS:
3258 fprintf (out, " filter :%i types:", i->u.allowed.filter);
3259 print_generic_expr (out, i->u.allowed.type_list, 0);
3260 break;
3261 }
3262 fputc ('\n', out);
3263
3264 /* If there are sub-regions, process them. */
3265 if (i->inner)
3266 i = i->inner, depth++;
3267 /* If there are peers, process them. */
3268 else if (i->next_peer)
3269 i = i->next_peer;
3270 /* Otherwise, step back up the tree to the next peer. */
3271 else
3272 {
3273 do
3274 {
3275 i = i->outer;
3276 depth--;
3277 if (i == NULL)
3278 return;
3279 }
3280 while (i->next_peer == NULL);
3281 i = i->next_peer;
3282 }
3283 }
3284 }
3285
3286 /* Dump the EH tree for FN on stderr. */
3287
3288 DEBUG_FUNCTION void
3289 debug_eh_tree (struct function *fn)
3290 {
3291 dump_eh_tree (stderr, fn);
3292 }
3293
3294 /* Verify invariants on EH datastructures. */
3295
3296 DEBUG_FUNCTION void
3297 verify_eh_tree (struct function *fun)
3298 {
3299 eh_region r, outer;
3300 int nvisited_lp, nvisited_r;
3301 int count_lp, count_r, depth, i;
3302 eh_landing_pad lp;
3303 bool err = false;
3304
3305 if (!fun->eh->region_tree)
3306 return;
3307
3308 count_r = 0;
3309 for (i = 1; vec_safe_iterate (fun->eh->region_array, i, &r); ++i)
3310 if (r)
3311 {
3312 if (r->index == i)
3313 count_r++;
3314 else
3315 {
3316 error ("region_array is corrupted for region %i", r->index);
3317 err = true;
3318 }
3319 }
3320
3321 count_lp = 0;
3322 for (i = 1; vec_safe_iterate (fun->eh->lp_array, i, &lp); ++i)
3323 if (lp)
3324 {
3325 if (lp->index == i)
3326 count_lp++;
3327 else
3328 {
3329 error ("lp_array is corrupted for lp %i", lp->index);
3330 err = true;
3331 }
3332 }
3333
3334 depth = nvisited_lp = nvisited_r = 0;
3335 outer = NULL;
3336 r = fun->eh->region_tree;
3337 while (1)
3338 {
3339 if ((*fun->eh->region_array)[r->index] != r)
3340 {
3341 error ("region_array is corrupted for region %i", r->index);
3342 err = true;
3343 }
3344 if (r->outer != outer)
3345 {
3346 error ("outer block of region %i is wrong", r->index);
3347 err = true;
3348 }
3349 if (depth < 0)
3350 {
3351 error ("negative nesting depth of region %i", r->index);
3352 err = true;
3353 }
3354 nvisited_r++;
3355
3356 for (lp = r->landing_pads; lp ; lp = lp->next_lp)
3357 {
3358 if ((*fun->eh->lp_array)[lp->index] != lp)
3359 {
3360 error ("lp_array is corrupted for lp %i", lp->index);
3361 err = true;
3362 }
3363 if (lp->region != r)
3364 {
3365 error ("region of lp %i is wrong", lp->index);
3366 err = true;
3367 }
3368 nvisited_lp++;
3369 }
3370
3371 if (r->inner)
3372 outer = r, r = r->inner, depth++;
3373 else if (r->next_peer)
3374 r = r->next_peer;
3375 else
3376 {
3377 do
3378 {
3379 r = r->outer;
3380 if (r == NULL)
3381 goto region_done;
3382 depth--;
3383 outer = r->outer;
3384 }
3385 while (r->next_peer == NULL);
3386 r = r->next_peer;
3387 }
3388 }
3389 region_done:
3390 if (depth != 0)
3391 {
3392 error ("tree list ends on depth %i", depth);
3393 err = true;
3394 }
3395 if (count_r != nvisited_r)
3396 {
3397 error ("region_array does not match region_tree");
3398 err = true;
3399 }
3400 if (count_lp != nvisited_lp)
3401 {
3402 error ("lp_array does not match region_tree");
3403 err = true;
3404 }
3405
3406 if (err)
3407 {
3408 dump_eh_tree (stderr, fun);
3409 internal_error ("verify_eh_tree failed");
3410 }
3411 }
3412 \f
3413 #include "gt-except.h"