gcc/
[official-gcc.git] / gcc / except.c
blobfae9f50fb8f38e35fc7c94429680196bc419a720
1 /* Implements exception handling.
2 Copyright (C) 1989-2014 Free Software Foundation, Inc.
3 Contributed by Mike Stump <mrs@cygnus.com>.
5 This file is part of GCC.
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.
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.
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/>. */
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.
26 The representation of exceptions changes several times during
27 the compilation process:
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.
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.
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.
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.
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).
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.
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.
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.
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. */
112 #include "config.h"
113 #include "system.h"
114 #include "coretypes.h"
115 #include "tm.h"
116 #include "rtl.h"
117 #include "tree.h"
118 #include "stringpool.h"
119 #include "stor-layout.h"
120 #include "flags.h"
121 #include "hashtab.h"
122 #include "hash-set.h"
123 #include "vec.h"
124 #include "machmode.h"
125 #include "hard-reg-set.h"
126 #include "input.h"
127 #include "function.h"
128 #include "expr.h"
129 #include "libfuncs.h"
130 #include "insn-config.h"
131 #include "except.h"
132 #include "output.h"
133 #include "dwarf2asm.h"
134 #include "dwarf2out.h"
135 #include "dwarf2.h"
136 #include "toplev.h"
137 #include "hash-table.h"
138 #include "intl.h"
139 #include "tm_p.h"
140 #include "target.h"
141 #include "common/common-target.h"
142 #include "langhooks.h"
143 #include "predict.h"
144 #include "dominance.h"
145 #include "cfg.h"
146 #include "cfgrtl.h"
147 #include "basic-block.h"
148 #include "cgraph.h"
149 #include "diagnostic.h"
150 #include "tree-pretty-print.h"
151 #include "tree-pass.h"
152 #include "cfgloop.h"
153 #include "builtins.h"
155 /* Provide defaults for stuff that may not be defined when using
156 sjlj exceptions. */
157 #ifndef EH_RETURN_DATA_REGNO
158 #define EH_RETURN_DATA_REGNO(N) INVALID_REGNUM
159 #endif
161 static GTY(()) int call_site_base;
163 struct tree_hash_traits : default_hashmap_traits
165 static hashval_t hash (tree t) { return TREE_HASH (t); }
168 static GTY (()) hash_map<tree, tree, tree_hash_traits> *type_to_runtime_map;
170 /* Describe the SjLj_Function_Context structure. */
171 static GTY(()) tree sjlj_fc_type_node;
172 static int sjlj_fc_call_site_ofs;
173 static int sjlj_fc_data_ofs;
174 static int sjlj_fc_personality_ofs;
175 static int sjlj_fc_lsda_ofs;
176 static int sjlj_fc_jbuf_ofs;
179 struct GTY(()) call_site_record_d
181 rtx landing_pad;
182 int action;
185 /* In the following structure and associated functions,
186 we represent entries in the action table as 1-based indices.
187 Special cases are:
189 0: null action record, non-null landing pad; implies cleanups
190 -1: null action record, null landing pad; implies no action
191 -2: no call-site entry; implies must_not_throw
192 -3: we have yet to process outer regions
194 Further, no special cases apply to the "next" field of the record.
195 For next, 0 means end of list. */
197 struct action_record
199 int offset;
200 int filter;
201 int next;
204 /* Hashtable helpers. */
206 struct action_record_hasher : typed_free_remove <action_record>
208 typedef action_record value_type;
209 typedef action_record compare_type;
210 static inline hashval_t hash (const value_type *);
211 static inline bool equal (const value_type *, const compare_type *);
214 inline hashval_t
215 action_record_hasher::hash (const value_type *entry)
217 return entry->next * 1009 + entry->filter;
220 inline bool
221 action_record_hasher::equal (const value_type *entry, const compare_type *data)
223 return entry->filter == data->filter && entry->next == data->next;
226 typedef hash_table<action_record_hasher> action_hash_type;
228 static bool get_eh_region_and_lp_from_rtx (const_rtx, eh_region *,
229 eh_landing_pad *);
231 static void dw2_build_landing_pads (void);
233 static int collect_one_action_chain (action_hash_type *, eh_region);
234 static int add_call_site (rtx, int, int);
236 static void push_uleb128 (vec<uchar, va_gc> **, unsigned int);
237 static void push_sleb128 (vec<uchar, va_gc> **, int);
238 #ifndef HAVE_AS_LEB128
239 static int dw2_size_of_call_site_table (int);
240 static int sjlj_size_of_call_site_table (void);
241 #endif
242 static void dw2_output_call_site_table (int, int);
243 static void sjlj_output_call_site_table (void);
246 void
247 init_eh (void)
249 if (! flag_exceptions)
250 return;
252 type_to_runtime_map
253 = hash_map<tree, tree, tree_hash_traits>::create_ggc (31);
255 /* Create the SjLj_Function_Context structure. This should match
256 the definition in unwind-sjlj.c. */
257 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
259 tree f_jbuf, f_per, f_lsda, f_prev, f_cs, f_data, tmp;
261 sjlj_fc_type_node = lang_hooks.types.make_type (RECORD_TYPE);
263 f_prev = build_decl (BUILTINS_LOCATION,
264 FIELD_DECL, get_identifier ("__prev"),
265 build_pointer_type (sjlj_fc_type_node));
266 DECL_FIELD_CONTEXT (f_prev) = sjlj_fc_type_node;
268 f_cs = build_decl (BUILTINS_LOCATION,
269 FIELD_DECL, get_identifier ("__call_site"),
270 integer_type_node);
271 DECL_FIELD_CONTEXT (f_cs) = sjlj_fc_type_node;
273 tmp = build_index_type (size_int (4 - 1));
274 tmp = build_array_type (lang_hooks.types.type_for_mode
275 (targetm.unwind_word_mode (), 1),
276 tmp);
277 f_data = build_decl (BUILTINS_LOCATION,
278 FIELD_DECL, get_identifier ("__data"), tmp);
279 DECL_FIELD_CONTEXT (f_data) = sjlj_fc_type_node;
281 f_per = build_decl (BUILTINS_LOCATION,
282 FIELD_DECL, get_identifier ("__personality"),
283 ptr_type_node);
284 DECL_FIELD_CONTEXT (f_per) = sjlj_fc_type_node;
286 f_lsda = build_decl (BUILTINS_LOCATION,
287 FIELD_DECL, get_identifier ("__lsda"),
288 ptr_type_node);
289 DECL_FIELD_CONTEXT (f_lsda) = sjlj_fc_type_node;
291 #ifdef DONT_USE_BUILTIN_SETJMP
292 #ifdef JMP_BUF_SIZE
293 tmp = size_int (JMP_BUF_SIZE - 1);
294 #else
295 /* Should be large enough for most systems, if it is not,
296 JMP_BUF_SIZE should be defined with the proper value. It will
297 also tend to be larger than necessary for most systems, a more
298 optimal port will define JMP_BUF_SIZE. */
299 tmp = size_int (FIRST_PSEUDO_REGISTER + 2 - 1);
300 #endif
301 #else
302 /* Compute a minimally sized jump buffer. We need room to store at
303 least 3 pointers - stack pointer, frame pointer and return address.
304 Plus for some targets we need room for an extra pointer - in the
305 case of MIPS this is the global pointer. This makes a total of four
306 pointers, but to be safe we actually allocate room for 5.
308 If pointers are smaller than words then we allocate enough room for
309 5 words, just in case the backend needs this much room. For more
310 discussion on this issue see:
311 http://gcc.gnu.org/ml/gcc-patches/2014-05/msg00313.html. */
312 if (POINTER_SIZE > BITS_PER_WORD)
313 tmp = size_int (5 - 1);
314 else
315 tmp = size_int ((5 * BITS_PER_WORD / POINTER_SIZE) - 1);
316 #endif
318 tmp = build_index_type (tmp);
319 tmp = build_array_type (ptr_type_node, tmp);
320 f_jbuf = build_decl (BUILTINS_LOCATION,
321 FIELD_DECL, get_identifier ("__jbuf"), tmp);
322 #ifdef DONT_USE_BUILTIN_SETJMP
323 /* We don't know what the alignment requirements of the
324 runtime's jmp_buf has. Overestimate. */
325 DECL_ALIGN (f_jbuf) = BIGGEST_ALIGNMENT;
326 DECL_USER_ALIGN (f_jbuf) = 1;
327 #endif
328 DECL_FIELD_CONTEXT (f_jbuf) = sjlj_fc_type_node;
330 TYPE_FIELDS (sjlj_fc_type_node) = f_prev;
331 TREE_CHAIN (f_prev) = f_cs;
332 TREE_CHAIN (f_cs) = f_data;
333 TREE_CHAIN (f_data) = f_per;
334 TREE_CHAIN (f_per) = f_lsda;
335 TREE_CHAIN (f_lsda) = f_jbuf;
337 layout_type (sjlj_fc_type_node);
339 /* Cache the interesting field offsets so that we have
340 easy access from rtl. */
341 sjlj_fc_call_site_ofs
342 = (tree_to_uhwi (DECL_FIELD_OFFSET (f_cs))
343 + tree_to_uhwi (DECL_FIELD_BIT_OFFSET (f_cs)) / BITS_PER_UNIT);
344 sjlj_fc_data_ofs
345 = (tree_to_uhwi (DECL_FIELD_OFFSET (f_data))
346 + tree_to_uhwi (DECL_FIELD_BIT_OFFSET (f_data)) / BITS_PER_UNIT);
347 sjlj_fc_personality_ofs
348 = (tree_to_uhwi (DECL_FIELD_OFFSET (f_per))
349 + tree_to_uhwi (DECL_FIELD_BIT_OFFSET (f_per)) / BITS_PER_UNIT);
350 sjlj_fc_lsda_ofs
351 = (tree_to_uhwi (DECL_FIELD_OFFSET (f_lsda))
352 + tree_to_uhwi (DECL_FIELD_BIT_OFFSET (f_lsda)) / BITS_PER_UNIT);
353 sjlj_fc_jbuf_ofs
354 = (tree_to_uhwi (DECL_FIELD_OFFSET (f_jbuf))
355 + tree_to_uhwi (DECL_FIELD_BIT_OFFSET (f_jbuf)) / BITS_PER_UNIT);
359 void
360 init_eh_for_function (void)
362 cfun->eh = ggc_cleared_alloc<eh_status> ();
364 /* Make sure zero'th entries are used. */
365 vec_safe_push (cfun->eh->region_array, (eh_region)0);
366 vec_safe_push (cfun->eh->lp_array, (eh_landing_pad)0);
369 /* Routines to generate the exception tree somewhat directly.
370 These are used from tree-eh.c when processing exception related
371 nodes during tree optimization. */
373 static eh_region
374 gen_eh_region (enum eh_region_type type, eh_region outer)
376 eh_region new_eh;
378 /* Insert a new blank region as a leaf in the tree. */
379 new_eh = ggc_cleared_alloc<eh_region_d> ();
380 new_eh->type = type;
381 new_eh->outer = outer;
382 if (outer)
384 new_eh->next_peer = outer->inner;
385 outer->inner = new_eh;
387 else
389 new_eh->next_peer = cfun->eh->region_tree;
390 cfun->eh->region_tree = new_eh;
393 new_eh->index = vec_safe_length (cfun->eh->region_array);
394 vec_safe_push (cfun->eh->region_array, new_eh);
396 /* Copy the language's notion of whether to use __cxa_end_cleanup. */
397 if (targetm.arm_eabi_unwinder && lang_hooks.eh_use_cxa_end_cleanup)
398 new_eh->use_cxa_end_cleanup = true;
400 return new_eh;
403 eh_region
404 gen_eh_region_cleanup (eh_region outer)
406 return gen_eh_region (ERT_CLEANUP, outer);
409 eh_region
410 gen_eh_region_try (eh_region outer)
412 return gen_eh_region (ERT_TRY, outer);
415 eh_catch
416 gen_eh_region_catch (eh_region t, tree type_or_list)
418 eh_catch c, l;
419 tree type_list, type_node;
421 gcc_assert (t->type == ERT_TRY);
423 /* Ensure to always end up with a type list to normalize further
424 processing, then register each type against the runtime types map. */
425 type_list = type_or_list;
426 if (type_or_list)
428 if (TREE_CODE (type_or_list) != TREE_LIST)
429 type_list = tree_cons (NULL_TREE, type_or_list, NULL_TREE);
431 type_node = type_list;
432 for (; type_node; type_node = TREE_CHAIN (type_node))
433 add_type_for_runtime (TREE_VALUE (type_node));
436 c = ggc_cleared_alloc<eh_catch_d> ();
437 c->type_list = type_list;
438 l = t->u.eh_try.last_catch;
439 c->prev_catch = l;
440 if (l)
441 l->next_catch = c;
442 else
443 t->u.eh_try.first_catch = c;
444 t->u.eh_try.last_catch = c;
446 return c;
449 eh_region
450 gen_eh_region_allowed (eh_region outer, tree allowed)
452 eh_region region = gen_eh_region (ERT_ALLOWED_EXCEPTIONS, outer);
453 region->u.allowed.type_list = allowed;
455 for (; allowed ; allowed = TREE_CHAIN (allowed))
456 add_type_for_runtime (TREE_VALUE (allowed));
458 return region;
461 eh_region
462 gen_eh_region_must_not_throw (eh_region outer)
464 return gen_eh_region (ERT_MUST_NOT_THROW, outer);
467 eh_landing_pad
468 gen_eh_landing_pad (eh_region region)
470 eh_landing_pad lp = ggc_cleared_alloc<eh_landing_pad_d> ();
472 lp->next_lp = region->landing_pads;
473 lp->region = region;
474 lp->index = vec_safe_length (cfun->eh->lp_array);
475 region->landing_pads = lp;
477 vec_safe_push (cfun->eh->lp_array, lp);
479 return lp;
482 eh_region
483 get_eh_region_from_number_fn (struct function *ifun, int i)
485 return (*ifun->eh->region_array)[i];
488 eh_region
489 get_eh_region_from_number (int i)
491 return get_eh_region_from_number_fn (cfun, i);
494 eh_landing_pad
495 get_eh_landing_pad_from_number_fn (struct function *ifun, int i)
497 return (*ifun->eh->lp_array)[i];
500 eh_landing_pad
501 get_eh_landing_pad_from_number (int i)
503 return get_eh_landing_pad_from_number_fn (cfun, i);
506 eh_region
507 get_eh_region_from_lp_number_fn (struct function *ifun, int i)
509 if (i < 0)
510 return (*ifun->eh->region_array)[-i];
511 else if (i == 0)
512 return NULL;
513 else
515 eh_landing_pad lp;
516 lp = (*ifun->eh->lp_array)[i];
517 return lp->region;
521 eh_region
522 get_eh_region_from_lp_number (int i)
524 return get_eh_region_from_lp_number_fn (cfun, i);
527 /* Returns true if the current function has exception handling regions. */
529 bool
530 current_function_has_exception_handlers (void)
532 return cfun->eh->region_tree != NULL;
535 /* A subroutine of duplicate_eh_regions. Copy the eh_region tree at OLD.
536 Root it at OUTER, and apply LP_OFFSET to the lp numbers. */
538 struct duplicate_eh_regions_data
540 duplicate_eh_regions_map label_map;
541 void *label_map_data;
542 hash_map<void *, void *> *eh_map;
545 static void
546 duplicate_eh_regions_1 (struct duplicate_eh_regions_data *data,
547 eh_region old_r, eh_region outer)
549 eh_landing_pad old_lp, new_lp;
550 eh_region new_r;
552 new_r = gen_eh_region (old_r->type, outer);
553 gcc_assert (!data->eh_map->put (old_r, new_r));
555 switch (old_r->type)
557 case ERT_CLEANUP:
558 break;
560 case ERT_TRY:
562 eh_catch oc, nc;
563 for (oc = old_r->u.eh_try.first_catch; oc ; oc = oc->next_catch)
565 /* We should be doing all our region duplication before and
566 during inlining, which is before filter lists are created. */
567 gcc_assert (oc->filter_list == NULL);
568 nc = gen_eh_region_catch (new_r, oc->type_list);
569 nc->label = data->label_map (oc->label, data->label_map_data);
572 break;
574 case ERT_ALLOWED_EXCEPTIONS:
575 new_r->u.allowed.type_list = old_r->u.allowed.type_list;
576 if (old_r->u.allowed.label)
577 new_r->u.allowed.label
578 = data->label_map (old_r->u.allowed.label, data->label_map_data);
579 else
580 new_r->u.allowed.label = NULL_TREE;
581 break;
583 case ERT_MUST_NOT_THROW:
584 new_r->u.must_not_throw.failure_loc =
585 LOCATION_LOCUS (old_r->u.must_not_throw.failure_loc);
586 new_r->u.must_not_throw.failure_decl =
587 old_r->u.must_not_throw.failure_decl;
588 break;
591 for (old_lp = old_r->landing_pads; old_lp ; old_lp = old_lp->next_lp)
593 /* Don't bother copying unused landing pads. */
594 if (old_lp->post_landing_pad == NULL)
595 continue;
597 new_lp = gen_eh_landing_pad (new_r);
598 gcc_assert (!data->eh_map->put (old_lp, new_lp));
600 new_lp->post_landing_pad
601 = data->label_map (old_lp->post_landing_pad, data->label_map_data);
602 EH_LANDING_PAD_NR (new_lp->post_landing_pad) = new_lp->index;
605 /* Make sure to preserve the original use of __cxa_end_cleanup. */
606 new_r->use_cxa_end_cleanup = old_r->use_cxa_end_cleanup;
608 for (old_r = old_r->inner; old_r ; old_r = old_r->next_peer)
609 duplicate_eh_regions_1 (data, old_r, new_r);
612 /* Duplicate the EH regions from IFUN rooted at COPY_REGION into
613 the current function and root the tree below OUTER_REGION.
614 The special case of COPY_REGION of NULL means all regions.
615 Remap labels using MAP/MAP_DATA callback. Return a pointer map
616 that allows the caller to remap uses of both EH regions and
617 EH landing pads. */
619 hash_map<void *, void *> *
620 duplicate_eh_regions (struct function *ifun,
621 eh_region copy_region, int outer_lp,
622 duplicate_eh_regions_map map, void *map_data)
624 struct duplicate_eh_regions_data data;
625 eh_region outer_region;
627 #ifdef ENABLE_CHECKING
628 verify_eh_tree (ifun);
629 #endif
631 data.label_map = map;
632 data.label_map_data = map_data;
633 data.eh_map = new hash_map<void *, void *>;
635 outer_region = get_eh_region_from_lp_number (outer_lp);
637 /* Copy all the regions in the subtree. */
638 if (copy_region)
639 duplicate_eh_regions_1 (&data, copy_region, outer_region);
640 else
642 eh_region r;
643 for (r = ifun->eh->region_tree; r ; r = r->next_peer)
644 duplicate_eh_regions_1 (&data, r, outer_region);
647 #ifdef ENABLE_CHECKING
648 verify_eh_tree (cfun);
649 #endif
651 return data.eh_map;
654 /* Return the region that is outer to both REGION_A and REGION_B in IFUN. */
656 eh_region
657 eh_region_outermost (struct function *ifun, eh_region region_a,
658 eh_region region_b)
660 sbitmap b_outer;
662 gcc_assert (ifun->eh->region_array);
663 gcc_assert (ifun->eh->region_tree);
665 b_outer = sbitmap_alloc (ifun->eh->region_array->length ());
666 bitmap_clear (b_outer);
670 bitmap_set_bit (b_outer, region_b->index);
671 region_b = region_b->outer;
673 while (region_b);
677 if (bitmap_bit_p (b_outer, region_a->index))
678 break;
679 region_a = region_a->outer;
681 while (region_a);
683 sbitmap_free (b_outer);
684 return region_a;
687 void
688 add_type_for_runtime (tree type)
690 /* If TYPE is NOP_EXPR, it means that it already is a runtime type. */
691 if (TREE_CODE (type) == NOP_EXPR)
692 return;
694 bool existed = false;
695 tree *slot = &type_to_runtime_map->get_or_insert (type, &existed);
696 if (!existed)
697 *slot = lang_hooks.eh_runtime_type (type);
700 tree
701 lookup_type_for_runtime (tree type)
703 /* If TYPE is NOP_EXPR, it means that it already is a runtime type. */
704 if (TREE_CODE (type) == NOP_EXPR)
705 return type;
707 /* We should have always inserted the data earlier. */
708 return *type_to_runtime_map->get (type);
712 /* Represent an entry in @TTypes for either catch actions
713 or exception filter actions. */
714 struct ttypes_filter {
715 tree t;
716 int filter;
719 /* Helper for ttypes_filter hashing. */
721 struct ttypes_filter_hasher : typed_free_remove <ttypes_filter>
723 typedef ttypes_filter value_type;
724 typedef tree_node compare_type;
725 static inline hashval_t hash (const value_type *);
726 static inline bool equal (const value_type *, const compare_type *);
729 /* Compare ENTRY (a ttypes_filter entry in the hash table) with DATA
730 (a tree) for a @TTypes type node we are thinking about adding. */
732 inline bool
733 ttypes_filter_hasher::equal (const value_type *entry, const compare_type *data)
735 return entry->t == data;
738 inline hashval_t
739 ttypes_filter_hasher::hash (const value_type *entry)
741 return TREE_HASH (entry->t);
744 typedef hash_table<ttypes_filter_hasher> ttypes_hash_type;
747 /* Helper for ehspec hashing. */
749 struct ehspec_hasher : typed_free_remove <ttypes_filter>
751 typedef ttypes_filter value_type;
752 typedef ttypes_filter compare_type;
753 static inline hashval_t hash (const value_type *);
754 static inline bool equal (const value_type *, const compare_type *);
757 /* Compare ENTRY with DATA (both struct ttypes_filter) for a @TTypes
758 exception specification list we are thinking about adding. */
759 /* ??? Currently we use the type lists in the order given. Someone
760 should put these in some canonical order. */
762 inline bool
763 ehspec_hasher::equal (const value_type *entry, const compare_type *data)
765 return type_list_equal (entry->t, data->t);
768 /* Hash function for exception specification lists. */
770 inline hashval_t
771 ehspec_hasher::hash (const value_type *entry)
773 hashval_t h = 0;
774 tree list;
776 for (list = entry->t; list ; list = TREE_CHAIN (list))
777 h = (h << 5) + (h >> 27) + TREE_HASH (TREE_VALUE (list));
778 return h;
781 typedef hash_table<ehspec_hasher> ehspec_hash_type;
784 /* Add TYPE (which may be NULL) to cfun->eh->ttype_data, using TYPES_HASH
785 to speed up the search. Return the filter value to be used. */
787 static int
788 add_ttypes_entry (ttypes_hash_type *ttypes_hash, tree type)
790 struct ttypes_filter **slot, *n;
792 slot = ttypes_hash->find_slot_with_hash (type, (hashval_t) TREE_HASH (type),
793 INSERT);
795 if ((n = *slot) == NULL)
797 /* Filter value is a 1 based table index. */
799 n = XNEW (struct ttypes_filter);
800 n->t = type;
801 n->filter = vec_safe_length (cfun->eh->ttype_data) + 1;
802 *slot = n;
804 vec_safe_push (cfun->eh->ttype_data, type);
807 return n->filter;
810 /* Add LIST to cfun->eh->ehspec_data, using EHSPEC_HASH and TYPES_HASH
811 to speed up the search. Return the filter value to be used. */
813 static int
814 add_ehspec_entry (ehspec_hash_type *ehspec_hash, ttypes_hash_type *ttypes_hash,
815 tree list)
817 struct ttypes_filter **slot, *n;
818 struct ttypes_filter dummy;
820 dummy.t = list;
821 slot = ehspec_hash->find_slot (&dummy, INSERT);
823 if ((n = *slot) == NULL)
825 int len;
827 if (targetm.arm_eabi_unwinder)
828 len = vec_safe_length (cfun->eh->ehspec_data.arm_eabi);
829 else
830 len = vec_safe_length (cfun->eh->ehspec_data.other);
832 /* Filter value is a -1 based byte index into a uleb128 buffer. */
834 n = XNEW (struct ttypes_filter);
835 n->t = list;
836 n->filter = -(len + 1);
837 *slot = n;
839 /* Generate a 0 terminated list of filter values. */
840 for (; list ; list = TREE_CHAIN (list))
842 if (targetm.arm_eabi_unwinder)
843 vec_safe_push (cfun->eh->ehspec_data.arm_eabi, TREE_VALUE (list));
844 else
846 /* Look up each type in the list and encode its filter
847 value as a uleb128. */
848 push_uleb128 (&cfun->eh->ehspec_data.other,
849 add_ttypes_entry (ttypes_hash, TREE_VALUE (list)));
852 if (targetm.arm_eabi_unwinder)
853 vec_safe_push (cfun->eh->ehspec_data.arm_eabi, NULL_TREE);
854 else
855 vec_safe_push (cfun->eh->ehspec_data.other, (uchar)0);
858 return n->filter;
861 /* Generate the action filter values to be used for CATCH and
862 ALLOWED_EXCEPTIONS regions. When using dwarf2 exception regions,
863 we use lots of landing pads, and so every type or list can share
864 the same filter value, which saves table space. */
866 void
867 assign_filter_values (void)
869 int i;
870 eh_region r;
871 eh_catch c;
873 vec_alloc (cfun->eh->ttype_data, 16);
874 if (targetm.arm_eabi_unwinder)
875 vec_alloc (cfun->eh->ehspec_data.arm_eabi, 64);
876 else
877 vec_alloc (cfun->eh->ehspec_data.other, 64);
879 ehspec_hash_type ehspec (31);
880 ttypes_hash_type ttypes (31);
882 for (i = 1; vec_safe_iterate (cfun->eh->region_array, i, &r); ++i)
884 if (r == NULL)
885 continue;
887 switch (r->type)
889 case ERT_TRY:
890 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
892 /* Whatever type_list is (NULL or true list), we build a list
893 of filters for the region. */
894 c->filter_list = NULL_TREE;
896 if (c->type_list != NULL)
898 /* Get a filter value for each of the types caught and store
899 them in the region's dedicated list. */
900 tree tp_node = c->type_list;
902 for ( ; tp_node; tp_node = TREE_CHAIN (tp_node))
904 int flt
905 = add_ttypes_entry (&ttypes, TREE_VALUE (tp_node));
906 tree flt_node = build_int_cst (integer_type_node, flt);
908 c->filter_list
909 = tree_cons (NULL_TREE, flt_node, c->filter_list);
912 else
914 /* Get a filter value for the NULL list also since it
915 will need an action record anyway. */
916 int flt = add_ttypes_entry (&ttypes, NULL);
917 tree flt_node = build_int_cst (integer_type_node, flt);
919 c->filter_list
920 = tree_cons (NULL_TREE, flt_node, NULL);
923 break;
925 case ERT_ALLOWED_EXCEPTIONS:
926 r->u.allowed.filter
927 = add_ehspec_entry (&ehspec, &ttypes, r->u.allowed.type_list);
928 break;
930 default:
931 break;
936 /* Emit SEQ into basic block just before INSN (that is assumed to be
937 first instruction of some existing BB and return the newly
938 produced block. */
939 static basic_block
940 emit_to_new_bb_before (rtx_insn *seq, rtx insn)
942 rtx_insn *last;
943 basic_block bb;
944 edge e;
945 edge_iterator ei;
947 /* If there happens to be a fallthru edge (possibly created by cleanup_cfg
948 call), we don't want it to go into newly created landing pad or other EH
949 construct. */
950 for (ei = ei_start (BLOCK_FOR_INSN (insn)->preds); (e = ei_safe_edge (ei)); )
951 if (e->flags & EDGE_FALLTHRU)
952 force_nonfallthru (e);
953 else
954 ei_next (&ei);
955 last = emit_insn_before (seq, insn);
956 if (BARRIER_P (last))
957 last = PREV_INSN (last);
958 bb = create_basic_block (seq, last, BLOCK_FOR_INSN (insn)->prev_bb);
959 update_bb_for_insn (bb);
960 bb->flags |= BB_SUPERBLOCK;
961 return bb;
964 /* A subroutine of dw2_build_landing_pads, also used for edge splitting
965 at the rtl level. Emit the code required by the target at a landing
966 pad for the given region. */
968 void
969 expand_dw2_landing_pad_for_region (eh_region region)
971 #ifdef HAVE_exception_receiver
972 if (HAVE_exception_receiver)
973 emit_insn (gen_exception_receiver ());
974 else
975 #endif
976 #ifdef HAVE_nonlocal_goto_receiver
977 if (HAVE_nonlocal_goto_receiver)
978 emit_insn (gen_nonlocal_goto_receiver ());
979 else
980 #endif
981 { /* Nothing */ }
983 if (region->exc_ptr_reg)
984 emit_move_insn (region->exc_ptr_reg,
985 gen_rtx_REG (ptr_mode, EH_RETURN_DATA_REGNO (0)));
986 if (region->filter_reg)
987 emit_move_insn (region->filter_reg,
988 gen_rtx_REG (targetm.eh_return_filter_mode (),
989 EH_RETURN_DATA_REGNO (1)));
992 /* Expand the extra code needed at landing pads for dwarf2 unwinding. */
994 static void
995 dw2_build_landing_pads (void)
997 int i;
998 eh_landing_pad lp;
999 int e_flags = EDGE_FALLTHRU;
1001 /* If we're going to partition blocks, we need to be able to add
1002 new landing pads later, which means that we need to hold on to
1003 the post-landing-pad block. Prevent it from being merged away.
1004 We'll remove this bit after partitioning. */
1005 if (flag_reorder_blocks_and_partition)
1006 e_flags |= EDGE_PRESERVE;
1008 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
1010 basic_block bb;
1011 rtx_insn *seq;
1012 edge e;
1014 if (lp == NULL || lp->post_landing_pad == NULL)
1015 continue;
1017 start_sequence ();
1019 lp->landing_pad = gen_label_rtx ();
1020 emit_label (lp->landing_pad);
1021 LABEL_PRESERVE_P (lp->landing_pad) = 1;
1023 expand_dw2_landing_pad_for_region (lp->region);
1025 seq = get_insns ();
1026 end_sequence ();
1028 bb = emit_to_new_bb_before (seq, label_rtx (lp->post_landing_pad));
1029 e = make_edge (bb, bb->next_bb, e_flags);
1030 e->count = bb->count;
1031 e->probability = REG_BR_PROB_BASE;
1032 if (current_loops)
1034 struct loop *loop = bb->next_bb->loop_father;
1035 /* If we created a pre-header block, add the new block to the
1036 outer loop, otherwise to the loop itself. */
1037 if (bb->next_bb == loop->header)
1038 add_bb_to_loop (bb, loop_outer (loop));
1039 else
1040 add_bb_to_loop (bb, loop);
1046 static vec<int> sjlj_lp_call_site_index;
1048 /* Process all active landing pads. Assign each one a compact dispatch
1049 index, and a call-site index. */
1051 static int
1052 sjlj_assign_call_site_values (void)
1054 action_hash_type ar_hash (31);
1055 int i, disp_index;
1056 eh_landing_pad lp;
1058 vec_alloc (crtl->eh.action_record_data, 64);
1060 disp_index = 0;
1061 call_site_base = 1;
1062 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
1063 if (lp && lp->post_landing_pad)
1065 int action, call_site;
1067 /* First: build the action table. */
1068 action = collect_one_action_chain (&ar_hash, lp->region);
1070 /* Next: assign call-site values. If dwarf2 terms, this would be
1071 the region number assigned by convert_to_eh_region_ranges, but
1072 handles no-action and must-not-throw differently. */
1073 /* Map must-not-throw to otherwise unused call-site index 0. */
1074 if (action == -2)
1075 call_site = 0;
1076 /* Map no-action to otherwise unused call-site index -1. */
1077 else if (action == -1)
1078 call_site = -1;
1079 /* Otherwise, look it up in the table. */
1080 else
1081 call_site = add_call_site (GEN_INT (disp_index), action, 0);
1082 sjlj_lp_call_site_index[i] = call_site;
1084 disp_index++;
1087 return disp_index;
1090 /* Emit code to record the current call-site index before every
1091 insn that can throw. */
1093 static void
1094 sjlj_mark_call_sites (void)
1096 int last_call_site = -2;
1097 rtx_insn *insn;
1098 rtx mem;
1100 for (insn = get_insns (); insn ; insn = NEXT_INSN (insn))
1102 eh_landing_pad lp;
1103 eh_region r;
1104 bool nothrow;
1105 int this_call_site;
1106 rtx_insn *before, *p;
1108 /* Reset value tracking at extended basic block boundaries. */
1109 if (LABEL_P (insn))
1110 last_call_site = -2;
1112 if (! INSN_P (insn))
1113 continue;
1115 nothrow = get_eh_region_and_lp_from_rtx (insn, &r, &lp);
1116 if (nothrow)
1117 continue;
1118 if (lp)
1119 this_call_site = sjlj_lp_call_site_index[lp->index];
1120 else if (r == NULL)
1122 /* Calls (and trapping insns) without notes are outside any
1123 exception handling region in this function. Mark them as
1124 no action. */
1125 this_call_site = -1;
1127 else
1129 gcc_assert (r->type == ERT_MUST_NOT_THROW);
1130 this_call_site = 0;
1133 if (this_call_site != -1)
1134 crtl->uses_eh_lsda = 1;
1136 if (this_call_site == last_call_site)
1137 continue;
1139 /* Don't separate a call from it's argument loads. */
1140 before = insn;
1141 if (CALL_P (insn))
1142 before = find_first_parameter_load (insn, NULL);
1144 start_sequence ();
1145 mem = adjust_address (crtl->eh.sjlj_fc, TYPE_MODE (integer_type_node),
1146 sjlj_fc_call_site_ofs);
1147 emit_move_insn (mem, gen_int_mode (this_call_site, GET_MODE (mem)));
1148 p = get_insns ();
1149 end_sequence ();
1151 emit_insn_before (p, before);
1152 last_call_site = this_call_site;
1156 /* Construct the SjLj_Function_Context. */
1158 static void
1159 sjlj_emit_function_enter (rtx_code_label *dispatch_label)
1161 rtx_insn *fn_begin, *seq;
1162 rtx fc, mem;
1163 bool fn_begin_outside_block;
1164 rtx personality = get_personality_function (current_function_decl);
1166 fc = crtl->eh.sjlj_fc;
1168 start_sequence ();
1170 /* We're storing this libcall's address into memory instead of
1171 calling it directly. Thus, we must call assemble_external_libcall
1172 here, as we can not depend on emit_library_call to do it for us. */
1173 assemble_external_libcall (personality);
1174 mem = adjust_address (fc, Pmode, sjlj_fc_personality_ofs);
1175 emit_move_insn (mem, personality);
1177 mem = adjust_address (fc, Pmode, sjlj_fc_lsda_ofs);
1178 if (crtl->uses_eh_lsda)
1180 char buf[20];
1181 rtx sym;
1183 ASM_GENERATE_INTERNAL_LABEL (buf, "LLSDA", current_function_funcdef_no);
1184 sym = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (buf));
1185 SYMBOL_REF_FLAGS (sym) = SYMBOL_FLAG_LOCAL;
1186 emit_move_insn (mem, sym);
1188 else
1189 emit_move_insn (mem, const0_rtx);
1191 if (dispatch_label)
1193 #ifdef DONT_USE_BUILTIN_SETJMP
1194 rtx x;
1195 x = emit_library_call_value (setjmp_libfunc, NULL_RTX, LCT_RETURNS_TWICE,
1196 TYPE_MODE (integer_type_node), 1,
1197 plus_constant (Pmode, XEXP (fc, 0),
1198 sjlj_fc_jbuf_ofs), Pmode);
1200 emit_cmp_and_jump_insns (x, const0_rtx, NE, 0,
1201 TYPE_MODE (integer_type_node), 0,
1202 dispatch_label, REG_BR_PROB_BASE / 100);
1203 #else
1204 expand_builtin_setjmp_setup (plus_constant (Pmode, XEXP (fc, 0),
1205 sjlj_fc_jbuf_ofs),
1206 dispatch_label);
1207 #endif
1210 emit_library_call (unwind_sjlj_register_libfunc, LCT_NORMAL, VOIDmode,
1211 1, XEXP (fc, 0), Pmode);
1213 seq = get_insns ();
1214 end_sequence ();
1216 /* ??? Instead of doing this at the beginning of the function,
1217 do this in a block that is at loop level 0 and dominates all
1218 can_throw_internal instructions. */
1220 fn_begin_outside_block = true;
1221 for (fn_begin = get_insns (); ; fn_begin = NEXT_INSN (fn_begin))
1222 if (NOTE_P (fn_begin))
1224 if (NOTE_KIND (fn_begin) == NOTE_INSN_FUNCTION_BEG)
1225 break;
1226 else if (NOTE_INSN_BASIC_BLOCK_P (fn_begin))
1227 fn_begin_outside_block = false;
1230 if (fn_begin_outside_block)
1231 insert_insn_on_edge (seq, single_succ_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun)));
1232 else
1233 emit_insn_after (seq, fn_begin);
1236 /* Call back from expand_function_end to know where we should put
1237 the call to unwind_sjlj_unregister_libfunc if needed. */
1239 void
1240 sjlj_emit_function_exit_after (rtx_insn *after)
1242 crtl->eh.sjlj_exit_after = after;
1245 static void
1246 sjlj_emit_function_exit (void)
1248 rtx_insn *seq, *insn;
1250 start_sequence ();
1252 emit_library_call (unwind_sjlj_unregister_libfunc, LCT_NORMAL, VOIDmode,
1253 1, XEXP (crtl->eh.sjlj_fc, 0), Pmode);
1255 seq = get_insns ();
1256 end_sequence ();
1258 /* ??? Really this can be done in any block at loop level 0 that
1259 post-dominates all can_throw_internal instructions. This is
1260 the last possible moment. */
1262 insn = crtl->eh.sjlj_exit_after;
1263 if (LABEL_P (insn))
1264 insn = NEXT_INSN (insn);
1266 emit_insn_after (seq, insn);
1269 static void
1270 sjlj_emit_dispatch_table (rtx_code_label *dispatch_label, int num_dispatch)
1272 enum machine_mode unwind_word_mode = targetm.unwind_word_mode ();
1273 enum machine_mode filter_mode = targetm.eh_return_filter_mode ();
1274 eh_landing_pad lp;
1275 rtx mem, fc, before, exc_ptr_reg, filter_reg;
1276 rtx_insn *seq;
1277 rtx first_reachable_label;
1278 basic_block bb;
1279 eh_region r;
1280 edge e;
1281 int i, disp_index;
1282 vec<tree> dispatch_labels = vNULL;
1284 fc = crtl->eh.sjlj_fc;
1286 start_sequence ();
1288 emit_label (dispatch_label);
1290 #ifndef DONT_USE_BUILTIN_SETJMP
1291 expand_builtin_setjmp_receiver (dispatch_label);
1293 /* The caller of expand_builtin_setjmp_receiver is responsible for
1294 making sure that the label doesn't vanish. The only other caller
1295 is the expander for __builtin_setjmp_receiver, which places this
1296 label on the nonlocal_goto_label list. Since we're modeling these
1297 CFG edges more exactly, we can use the forced_labels list instead. */
1298 LABEL_PRESERVE_P (dispatch_label) = 1;
1299 forced_labels
1300 = gen_rtx_INSN_LIST (VOIDmode, dispatch_label, forced_labels);
1301 #endif
1303 /* Load up exc_ptr and filter values from the function context. */
1304 mem = adjust_address (fc, unwind_word_mode, sjlj_fc_data_ofs);
1305 if (unwind_word_mode != ptr_mode)
1307 #ifdef POINTERS_EXTEND_UNSIGNED
1308 mem = convert_memory_address (ptr_mode, mem);
1309 #else
1310 mem = convert_to_mode (ptr_mode, mem, 0);
1311 #endif
1313 exc_ptr_reg = force_reg (ptr_mode, mem);
1315 mem = adjust_address (fc, unwind_word_mode,
1316 sjlj_fc_data_ofs + GET_MODE_SIZE (unwind_word_mode));
1317 if (unwind_word_mode != filter_mode)
1318 mem = convert_to_mode (filter_mode, mem, 0);
1319 filter_reg = force_reg (filter_mode, mem);
1321 /* Jump to one of the directly reachable regions. */
1323 disp_index = 0;
1324 first_reachable_label = NULL;
1326 /* If there's exactly one call site in the function, don't bother
1327 generating a switch statement. */
1328 if (num_dispatch > 1)
1329 dispatch_labels.create (num_dispatch);
1331 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
1332 if (lp && lp->post_landing_pad)
1334 rtx_insn *seq2;
1335 rtx label;
1337 start_sequence ();
1339 lp->landing_pad = dispatch_label;
1341 if (num_dispatch > 1)
1343 tree t_label, case_elt, t;
1345 t_label = create_artificial_label (UNKNOWN_LOCATION);
1346 t = build_int_cst (integer_type_node, disp_index);
1347 case_elt = build_case_label (t, NULL, t_label);
1348 dispatch_labels.quick_push (case_elt);
1349 label = label_rtx (t_label);
1351 else
1352 label = gen_label_rtx ();
1354 if (disp_index == 0)
1355 first_reachable_label = label;
1356 emit_label (label);
1358 r = lp->region;
1359 if (r->exc_ptr_reg)
1360 emit_move_insn (r->exc_ptr_reg, exc_ptr_reg);
1361 if (r->filter_reg)
1362 emit_move_insn (r->filter_reg, filter_reg);
1364 seq2 = get_insns ();
1365 end_sequence ();
1367 before = label_rtx (lp->post_landing_pad);
1368 bb = emit_to_new_bb_before (seq2, before);
1369 e = make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
1370 e->count = bb->count;
1371 e->probability = REG_BR_PROB_BASE;
1372 if (current_loops)
1374 struct loop *loop = bb->next_bb->loop_father;
1375 /* If we created a pre-header block, add the new block to the
1376 outer loop, otherwise to the loop itself. */
1377 if (bb->next_bb == loop->header)
1378 add_bb_to_loop (bb, loop_outer (loop));
1379 else
1380 add_bb_to_loop (bb, loop);
1381 /* ??? For multiple dispatches we will end up with edges
1382 from the loop tree root into this loop, making it a
1383 multiple-entry loop. Discard all affected loops. */
1384 if (num_dispatch > 1)
1386 for (loop = bb->loop_father;
1387 loop_outer (loop); loop = loop_outer (loop))
1388 mark_loop_for_removal (loop);
1392 disp_index++;
1394 gcc_assert (disp_index == num_dispatch);
1396 if (num_dispatch > 1)
1398 rtx disp = adjust_address (fc, TYPE_MODE (integer_type_node),
1399 sjlj_fc_call_site_ofs);
1400 expand_sjlj_dispatch_table (disp, dispatch_labels);
1403 seq = get_insns ();
1404 end_sequence ();
1406 bb = emit_to_new_bb_before (seq, first_reachable_label);
1407 if (num_dispatch == 1)
1409 e = make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
1410 e->count = bb->count;
1411 e->probability = REG_BR_PROB_BASE;
1412 if (current_loops)
1414 struct loop *loop = bb->next_bb->loop_father;
1415 /* If we created a pre-header block, add the new block to the
1416 outer loop, otherwise to the loop itself. */
1417 if (bb->next_bb == loop->header)
1418 add_bb_to_loop (bb, loop_outer (loop));
1419 else
1420 add_bb_to_loop (bb, loop);
1423 else
1425 /* We are not wiring up edges here, but as the dispatcher call
1426 is at function begin simply associate the block with the
1427 outermost (non-)loop. */
1428 if (current_loops)
1429 add_bb_to_loop (bb, current_loops->tree_root);
1433 static void
1434 sjlj_build_landing_pads (void)
1436 int num_dispatch;
1438 num_dispatch = vec_safe_length (cfun->eh->lp_array);
1439 if (num_dispatch == 0)
1440 return;
1441 sjlj_lp_call_site_index.safe_grow_cleared (num_dispatch);
1443 num_dispatch = sjlj_assign_call_site_values ();
1444 if (num_dispatch > 0)
1446 rtx_code_label *dispatch_label = gen_label_rtx ();
1447 int align = STACK_SLOT_ALIGNMENT (sjlj_fc_type_node,
1448 TYPE_MODE (sjlj_fc_type_node),
1449 TYPE_ALIGN (sjlj_fc_type_node));
1450 crtl->eh.sjlj_fc
1451 = assign_stack_local (TYPE_MODE (sjlj_fc_type_node),
1452 int_size_in_bytes (sjlj_fc_type_node),
1453 align);
1455 sjlj_mark_call_sites ();
1456 sjlj_emit_function_enter (dispatch_label);
1457 sjlj_emit_dispatch_table (dispatch_label, num_dispatch);
1458 sjlj_emit_function_exit ();
1461 /* If we do not have any landing pads, we may still need to register a
1462 personality routine and (empty) LSDA to handle must-not-throw regions. */
1463 else if (function_needs_eh_personality (cfun) != eh_personality_none)
1465 int align = STACK_SLOT_ALIGNMENT (sjlj_fc_type_node,
1466 TYPE_MODE (sjlj_fc_type_node),
1467 TYPE_ALIGN (sjlj_fc_type_node));
1468 crtl->eh.sjlj_fc
1469 = assign_stack_local (TYPE_MODE (sjlj_fc_type_node),
1470 int_size_in_bytes (sjlj_fc_type_node),
1471 align);
1473 sjlj_mark_call_sites ();
1474 sjlj_emit_function_enter (NULL);
1475 sjlj_emit_function_exit ();
1478 sjlj_lp_call_site_index.release ();
1481 /* After initial rtl generation, call back to finish generating
1482 exception support code. */
1484 void
1485 finish_eh_generation (void)
1487 basic_block bb;
1489 /* Construct the landing pads. */
1490 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
1491 sjlj_build_landing_pads ();
1492 else
1493 dw2_build_landing_pads ();
1494 break_superblocks ();
1496 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ
1497 /* Kludge for Alpha (see alpha_gp_save_rtx). */
1498 || single_succ_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun))->insns.r)
1499 commit_edge_insertions ();
1501 /* Redirect all EH edges from the post_landing_pad to the landing pad. */
1502 FOR_EACH_BB_FN (bb, cfun)
1504 eh_landing_pad lp;
1505 edge_iterator ei;
1506 edge e;
1508 lp = get_eh_landing_pad_from_rtx (BB_END (bb));
1510 FOR_EACH_EDGE (e, ei, bb->succs)
1511 if (e->flags & EDGE_EH)
1512 break;
1514 /* We should not have generated any new throwing insns during this
1515 pass, and we should not have lost any EH edges, so we only need
1516 to handle two cases here:
1517 (1) reachable handler and an existing edge to post-landing-pad,
1518 (2) no reachable handler and no edge. */
1519 gcc_assert ((lp != NULL) == (e != NULL));
1520 if (lp != NULL)
1522 gcc_assert (BB_HEAD (e->dest) == label_rtx (lp->post_landing_pad));
1524 redirect_edge_succ (e, BLOCK_FOR_INSN (lp->landing_pad));
1525 e->flags |= (CALL_P (BB_END (bb))
1526 ? EDGE_ABNORMAL | EDGE_ABNORMAL_CALL
1527 : EDGE_ABNORMAL);
1532 /* This section handles removing dead code for flow. */
1534 void
1535 remove_eh_landing_pad (eh_landing_pad lp)
1537 eh_landing_pad *pp;
1539 for (pp = &lp->region->landing_pads; *pp != lp; pp = &(*pp)->next_lp)
1540 continue;
1541 *pp = lp->next_lp;
1543 if (lp->post_landing_pad)
1544 EH_LANDING_PAD_NR (lp->post_landing_pad) = 0;
1545 (*cfun->eh->lp_array)[lp->index] = NULL;
1548 /* Splice the EH region at PP from the region tree. */
1550 static void
1551 remove_eh_handler_splicer (eh_region *pp)
1553 eh_region region = *pp;
1554 eh_landing_pad lp;
1556 for (lp = region->landing_pads; lp ; lp = lp->next_lp)
1558 if (lp->post_landing_pad)
1559 EH_LANDING_PAD_NR (lp->post_landing_pad) = 0;
1560 (*cfun->eh->lp_array)[lp->index] = NULL;
1563 if (region->inner)
1565 eh_region p, outer;
1566 outer = region->outer;
1568 *pp = p = region->inner;
1571 p->outer = outer;
1572 pp = &p->next_peer;
1573 p = *pp;
1575 while (p);
1577 *pp = region->next_peer;
1579 (*cfun->eh->region_array)[region->index] = NULL;
1582 /* Splice a single EH region REGION from the region tree.
1584 To unlink REGION, we need to find the pointer to it with a relatively
1585 expensive search in REGION's outer region. If you are going to
1586 remove a number of handlers, using remove_unreachable_eh_regions may
1587 be a better option. */
1589 void
1590 remove_eh_handler (eh_region region)
1592 eh_region *pp, *pp_start, p, outer;
1594 outer = region->outer;
1595 if (outer)
1596 pp_start = &outer->inner;
1597 else
1598 pp_start = &cfun->eh->region_tree;
1599 for (pp = pp_start, p = *pp; p != region; pp = &p->next_peer, p = *pp)
1600 continue;
1602 remove_eh_handler_splicer (pp);
1605 /* Worker for remove_unreachable_eh_regions.
1606 PP is a pointer to the region to start a region tree depth-first
1607 search from. R_REACHABLE is the set of regions that have to be
1608 preserved. */
1610 static void
1611 remove_unreachable_eh_regions_worker (eh_region *pp, sbitmap r_reachable)
1613 while (*pp)
1615 eh_region region = *pp;
1616 remove_unreachable_eh_regions_worker (&region->inner, r_reachable);
1617 if (!bitmap_bit_p (r_reachable, region->index))
1618 remove_eh_handler_splicer (pp);
1619 else
1620 pp = &region->next_peer;
1624 /* Splice all EH regions *not* marked in R_REACHABLE from the region tree.
1625 Do this by traversing the EH tree top-down and splice out regions that
1626 are not marked. By removing regions from the leaves, we avoid costly
1627 searches in the region tree. */
1629 void
1630 remove_unreachable_eh_regions (sbitmap r_reachable)
1632 remove_unreachable_eh_regions_worker (&cfun->eh->region_tree, r_reachable);
1635 /* Invokes CALLBACK for every exception handler landing pad label.
1636 Only used by reload hackery; should not be used by new code. */
1638 void
1639 for_each_eh_label (void (*callback) (rtx))
1641 eh_landing_pad lp;
1642 int i;
1644 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
1646 if (lp)
1648 rtx lab = lp->landing_pad;
1649 if (lab && LABEL_P (lab))
1650 (*callback) (lab);
1655 /* Create the REG_EH_REGION note for INSN, given its ECF_FLAGS for a
1656 call insn.
1658 At the gimple level, we use LP_NR
1659 > 0 : The statement transfers to landing pad LP_NR
1660 = 0 : The statement is outside any EH region
1661 < 0 : The statement is within MUST_NOT_THROW region -LP_NR.
1663 At the rtl level, we use LP_NR
1664 > 0 : The insn transfers to landing pad LP_NR
1665 = 0 : The insn cannot throw
1666 < 0 : The insn is within MUST_NOT_THROW region -LP_NR
1667 = INT_MIN : The insn cannot throw or execute a nonlocal-goto.
1668 missing note: The insn is outside any EH region.
1670 ??? This difference probably ought to be avoided. We could stand
1671 to record nothrow for arbitrary gimple statements, and so avoid
1672 some moderately complex lookups in stmt_could_throw_p. Perhaps
1673 NOTHROW should be mapped on both sides to INT_MIN. Perhaps the
1674 no-nonlocal-goto property should be recorded elsewhere as a bit
1675 on the call_insn directly. Perhaps we should make more use of
1676 attaching the trees to call_insns (reachable via symbol_ref in
1677 direct call cases) and just pull the data out of the trees. */
1679 void
1680 make_reg_eh_region_note (rtx insn, int ecf_flags, int lp_nr)
1682 rtx value;
1683 if (ecf_flags & ECF_NOTHROW)
1684 value = const0_rtx;
1685 else if (lp_nr != 0)
1686 value = GEN_INT (lp_nr);
1687 else
1688 return;
1689 add_reg_note (insn, REG_EH_REGION, value);
1692 /* Create a REG_EH_REGION note for a CALL_INSN that cannot throw
1693 nor perform a non-local goto. Replace the region note if it
1694 already exists. */
1696 void
1697 make_reg_eh_region_note_nothrow_nononlocal (rtx insn)
1699 rtx note = find_reg_note (insn, REG_EH_REGION, NULL_RTX);
1700 rtx intmin = GEN_INT (INT_MIN);
1702 if (note != 0)
1703 XEXP (note, 0) = intmin;
1704 else
1705 add_reg_note (insn, REG_EH_REGION, intmin);
1708 /* Return true if INSN could throw, assuming no REG_EH_REGION note
1709 to the contrary. */
1711 bool
1712 insn_could_throw_p (const_rtx insn)
1714 if (!flag_exceptions)
1715 return false;
1716 if (CALL_P (insn))
1717 return true;
1718 if (INSN_P (insn) && cfun->can_throw_non_call_exceptions)
1719 return may_trap_p (PATTERN (insn));
1720 return false;
1723 /* Copy an REG_EH_REGION note to each insn that might throw beginning
1724 at FIRST and ending at LAST. NOTE_OR_INSN is either the source insn
1725 to look for a note, or the note itself. */
1727 void
1728 copy_reg_eh_region_note_forward (rtx note_or_insn, rtx_insn *first, rtx last)
1730 rtx_insn *insn;
1731 rtx note = note_or_insn;
1733 if (INSN_P (note_or_insn))
1735 note = find_reg_note (note_or_insn, REG_EH_REGION, NULL_RTX);
1736 if (note == NULL)
1737 return;
1739 note = XEXP (note, 0);
1741 for (insn = first; insn != last ; insn = NEXT_INSN (insn))
1742 if (!find_reg_note (insn, REG_EH_REGION, NULL_RTX)
1743 && insn_could_throw_p (insn))
1744 add_reg_note (insn, REG_EH_REGION, note);
1747 /* Likewise, but iterate backward. */
1749 void
1750 copy_reg_eh_region_note_backward (rtx note_or_insn, rtx_insn *last, rtx first)
1752 rtx_insn *insn;
1753 rtx note = note_or_insn;
1755 if (INSN_P (note_or_insn))
1757 note = find_reg_note (note_or_insn, REG_EH_REGION, NULL_RTX);
1758 if (note == NULL)
1759 return;
1761 note = XEXP (note, 0);
1763 for (insn = last; insn != first; insn = PREV_INSN (insn))
1764 if (insn_could_throw_p (insn))
1765 add_reg_note (insn, REG_EH_REGION, note);
1769 /* Extract all EH information from INSN. Return true if the insn
1770 was marked NOTHROW. */
1772 static bool
1773 get_eh_region_and_lp_from_rtx (const_rtx insn, eh_region *pr,
1774 eh_landing_pad *plp)
1776 eh_landing_pad lp = NULL;
1777 eh_region r = NULL;
1778 bool ret = false;
1779 rtx note;
1780 int lp_nr;
1782 if (! INSN_P (insn))
1783 goto egress;
1785 if (NONJUMP_INSN_P (insn)
1786 && GET_CODE (PATTERN (insn)) == SEQUENCE)
1787 insn = XVECEXP (PATTERN (insn), 0, 0);
1789 note = find_reg_note (insn, REG_EH_REGION, NULL_RTX);
1790 if (!note)
1792 ret = !insn_could_throw_p (insn);
1793 goto egress;
1796 lp_nr = INTVAL (XEXP (note, 0));
1797 if (lp_nr == 0 || lp_nr == INT_MIN)
1799 ret = true;
1800 goto egress;
1803 if (lp_nr < 0)
1804 r = (*cfun->eh->region_array)[-lp_nr];
1805 else
1807 lp = (*cfun->eh->lp_array)[lp_nr];
1808 r = lp->region;
1811 egress:
1812 *plp = lp;
1813 *pr = r;
1814 return ret;
1817 /* Return the landing pad to which INSN may go, or NULL if it does not
1818 have a reachable landing pad within this function. */
1820 eh_landing_pad
1821 get_eh_landing_pad_from_rtx (const_rtx insn)
1823 eh_landing_pad lp;
1824 eh_region r;
1826 get_eh_region_and_lp_from_rtx (insn, &r, &lp);
1827 return lp;
1830 /* Return the region to which INSN may go, or NULL if it does not
1831 have a reachable region within this function. */
1833 eh_region
1834 get_eh_region_from_rtx (const_rtx insn)
1836 eh_landing_pad lp;
1837 eh_region r;
1839 get_eh_region_and_lp_from_rtx (insn, &r, &lp);
1840 return r;
1843 /* Return true if INSN throws and is caught by something in this function. */
1845 bool
1846 can_throw_internal (const_rtx insn)
1848 return get_eh_landing_pad_from_rtx (insn) != NULL;
1851 /* Return true if INSN throws and escapes from the current function. */
1853 bool
1854 can_throw_external (const_rtx insn)
1856 eh_landing_pad lp;
1857 eh_region r;
1858 bool nothrow;
1860 if (! INSN_P (insn))
1861 return false;
1863 if (NONJUMP_INSN_P (insn)
1864 && GET_CODE (PATTERN (insn)) == SEQUENCE)
1866 rtx_sequence *seq = as_a <rtx_sequence *> (PATTERN (insn));
1867 int i, n = seq->len ();
1869 for (i = 0; i < n; i++)
1870 if (can_throw_external (seq->element (i)))
1871 return true;
1873 return false;
1876 nothrow = get_eh_region_and_lp_from_rtx (insn, &r, &lp);
1878 /* If we can't throw, we obviously can't throw external. */
1879 if (nothrow)
1880 return false;
1882 /* If we have an internal landing pad, then we're not external. */
1883 if (lp != NULL)
1884 return false;
1886 /* If we're not within an EH region, then we are external. */
1887 if (r == NULL)
1888 return true;
1890 /* The only thing that ought to be left is MUST_NOT_THROW regions,
1891 which don't always have landing pads. */
1892 gcc_assert (r->type == ERT_MUST_NOT_THROW);
1893 return false;
1896 /* Return true if INSN cannot throw at all. */
1898 bool
1899 insn_nothrow_p (const_rtx insn)
1901 eh_landing_pad lp;
1902 eh_region r;
1904 if (! INSN_P (insn))
1905 return true;
1907 if (NONJUMP_INSN_P (insn)
1908 && GET_CODE (PATTERN (insn)) == SEQUENCE)
1910 rtx_sequence *seq = as_a <rtx_sequence *> (PATTERN (insn));
1911 int i, n = seq->len ();
1913 for (i = 0; i < n; i++)
1914 if (!insn_nothrow_p (seq->element (i)))
1915 return false;
1917 return true;
1920 return get_eh_region_and_lp_from_rtx (insn, &r, &lp);
1923 /* Return true if INSN can perform a non-local goto. */
1924 /* ??? This test is here in this file because it (ab)uses REG_EH_REGION. */
1926 bool
1927 can_nonlocal_goto (const_rtx insn)
1929 if (nonlocal_goto_handler_labels && CALL_P (insn))
1931 rtx note = find_reg_note (insn, REG_EH_REGION, NULL_RTX);
1932 if (!note || INTVAL (XEXP (note, 0)) != INT_MIN)
1933 return true;
1935 return false;
1938 /* Set TREE_NOTHROW and crtl->all_throwers_are_sibcalls. */
1940 static unsigned int
1941 set_nothrow_function_flags (void)
1943 rtx_insn *insn;
1945 crtl->nothrow = 1;
1947 /* Assume crtl->all_throwers_are_sibcalls until we encounter
1948 something that can throw an exception. We specifically exempt
1949 CALL_INSNs that are SIBLING_CALL_P, as these are really jumps,
1950 and can't throw. Most CALL_INSNs are not SIBLING_CALL_P, so this
1951 is optimistic. */
1953 crtl->all_throwers_are_sibcalls = 1;
1955 /* If we don't know that this implementation of the function will
1956 actually be used, then we must not set TREE_NOTHROW, since
1957 callers must not assume that this function does not throw. */
1958 if (TREE_NOTHROW (current_function_decl))
1959 return 0;
1961 if (! flag_exceptions)
1962 return 0;
1964 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
1965 if (can_throw_external (insn))
1967 crtl->nothrow = 0;
1969 if (!CALL_P (insn) || !SIBLING_CALL_P (insn))
1971 crtl->all_throwers_are_sibcalls = 0;
1972 return 0;
1976 if (crtl->nothrow
1977 && (cgraph_node::get (current_function_decl)->get_availability ()
1978 >= AVAIL_AVAILABLE))
1980 struct cgraph_node *node = cgraph_node::get (current_function_decl);
1981 struct cgraph_edge *e;
1982 for (e = node->callers; e; e = e->next_caller)
1983 e->can_throw_external = false;
1984 node->set_nothrow_flag (true);
1986 if (dump_file)
1987 fprintf (dump_file, "Marking function nothrow: %s\n\n",
1988 current_function_name ());
1990 return 0;
1993 namespace {
1995 const pass_data pass_data_set_nothrow_function_flags =
1997 RTL_PASS, /* type */
1998 "nothrow", /* name */
1999 OPTGROUP_NONE, /* optinfo_flags */
2000 TV_NONE, /* tv_id */
2001 0, /* properties_required */
2002 0, /* properties_provided */
2003 0, /* properties_destroyed */
2004 0, /* todo_flags_start */
2005 0, /* todo_flags_finish */
2008 class pass_set_nothrow_function_flags : public rtl_opt_pass
2010 public:
2011 pass_set_nothrow_function_flags (gcc::context *ctxt)
2012 : rtl_opt_pass (pass_data_set_nothrow_function_flags, ctxt)
2015 /* opt_pass methods: */
2016 virtual unsigned int execute (function *)
2018 return set_nothrow_function_flags ();
2021 }; // class pass_set_nothrow_function_flags
2023 } // anon namespace
2025 rtl_opt_pass *
2026 make_pass_set_nothrow_function_flags (gcc::context *ctxt)
2028 return new pass_set_nothrow_function_flags (ctxt);
2032 /* Various hooks for unwind library. */
2034 /* Expand the EH support builtin functions:
2035 __builtin_eh_pointer and __builtin_eh_filter. */
2037 static eh_region
2038 expand_builtin_eh_common (tree region_nr_t)
2040 HOST_WIDE_INT region_nr;
2041 eh_region region;
2043 gcc_assert (tree_fits_shwi_p (region_nr_t));
2044 region_nr = tree_to_shwi (region_nr_t);
2046 region = (*cfun->eh->region_array)[region_nr];
2048 /* ??? We shouldn't have been able to delete a eh region without
2049 deleting all the code that depended on it. */
2050 gcc_assert (region != NULL);
2052 return region;
2055 /* Expand to the exc_ptr value from the given eh region. */
2058 expand_builtin_eh_pointer (tree exp)
2060 eh_region region
2061 = expand_builtin_eh_common (CALL_EXPR_ARG (exp, 0));
2062 if (region->exc_ptr_reg == NULL)
2063 region->exc_ptr_reg = gen_reg_rtx (ptr_mode);
2064 return region->exc_ptr_reg;
2067 /* Expand to the filter value from the given eh region. */
2070 expand_builtin_eh_filter (tree exp)
2072 eh_region region
2073 = expand_builtin_eh_common (CALL_EXPR_ARG (exp, 0));
2074 if (region->filter_reg == NULL)
2075 region->filter_reg = gen_reg_rtx (targetm.eh_return_filter_mode ());
2076 return region->filter_reg;
2079 /* Copy the exc_ptr and filter values from one landing pad's registers
2080 to another. This is used to inline the resx statement. */
2083 expand_builtin_eh_copy_values (tree exp)
2085 eh_region dst
2086 = expand_builtin_eh_common (CALL_EXPR_ARG (exp, 0));
2087 eh_region src
2088 = expand_builtin_eh_common (CALL_EXPR_ARG (exp, 1));
2089 enum machine_mode fmode = targetm.eh_return_filter_mode ();
2091 if (dst->exc_ptr_reg == NULL)
2092 dst->exc_ptr_reg = gen_reg_rtx (ptr_mode);
2093 if (src->exc_ptr_reg == NULL)
2094 src->exc_ptr_reg = gen_reg_rtx (ptr_mode);
2096 if (dst->filter_reg == NULL)
2097 dst->filter_reg = gen_reg_rtx (fmode);
2098 if (src->filter_reg == NULL)
2099 src->filter_reg = gen_reg_rtx (fmode);
2101 emit_move_insn (dst->exc_ptr_reg, src->exc_ptr_reg);
2102 emit_move_insn (dst->filter_reg, src->filter_reg);
2104 return const0_rtx;
2107 /* Do any necessary initialization to access arbitrary stack frames.
2108 On the SPARC, this means flushing the register windows. */
2110 void
2111 expand_builtin_unwind_init (void)
2113 /* Set this so all the registers get saved in our frame; we need to be
2114 able to copy the saved values for any registers from frames we unwind. */
2115 crtl->saves_all_registers = 1;
2117 #ifdef SETUP_FRAME_ADDRESSES
2118 SETUP_FRAME_ADDRESSES ();
2119 #endif
2122 /* Map a non-negative number to an eh return data register number; expands
2123 to -1 if no return data register is associated with the input number.
2124 At least the inputs 0 and 1 must be mapped; the target may provide more. */
2127 expand_builtin_eh_return_data_regno (tree exp)
2129 tree which = CALL_EXPR_ARG (exp, 0);
2130 unsigned HOST_WIDE_INT iwhich;
2132 if (TREE_CODE (which) != INTEGER_CST)
2134 error ("argument of %<__builtin_eh_return_regno%> must be constant");
2135 return constm1_rtx;
2138 iwhich = tree_to_uhwi (which);
2139 iwhich = EH_RETURN_DATA_REGNO (iwhich);
2140 if (iwhich == INVALID_REGNUM)
2141 return constm1_rtx;
2143 #ifdef DWARF_FRAME_REGNUM
2144 iwhich = DWARF_FRAME_REGNUM (iwhich);
2145 #else
2146 iwhich = DBX_REGISTER_NUMBER (iwhich);
2147 #endif
2149 return GEN_INT (iwhich);
2152 /* Given a value extracted from the return address register or stack slot,
2153 return the actual address encoded in that value. */
2156 expand_builtin_extract_return_addr (tree addr_tree)
2158 rtx addr = expand_expr (addr_tree, NULL_RTX, Pmode, EXPAND_NORMAL);
2160 if (GET_MODE (addr) != Pmode
2161 && GET_MODE (addr) != VOIDmode)
2163 #ifdef POINTERS_EXTEND_UNSIGNED
2164 addr = convert_memory_address (Pmode, addr);
2165 #else
2166 addr = convert_to_mode (Pmode, addr, 0);
2167 #endif
2170 /* First mask out any unwanted bits. */
2171 #ifdef MASK_RETURN_ADDR
2172 expand_and (Pmode, addr, MASK_RETURN_ADDR, addr);
2173 #endif
2175 /* Then adjust to find the real return address. */
2176 #if defined (RETURN_ADDR_OFFSET)
2177 addr = plus_constant (Pmode, addr, RETURN_ADDR_OFFSET);
2178 #endif
2180 return addr;
2183 /* Given an actual address in addr_tree, do any necessary encoding
2184 and return the value to be stored in the return address register or
2185 stack slot so the epilogue will return to that address. */
2188 expand_builtin_frob_return_addr (tree addr_tree)
2190 rtx addr = expand_expr (addr_tree, NULL_RTX, ptr_mode, EXPAND_NORMAL);
2192 addr = convert_memory_address (Pmode, addr);
2194 #ifdef RETURN_ADDR_OFFSET
2195 addr = force_reg (Pmode, addr);
2196 addr = plus_constant (Pmode, addr, -RETURN_ADDR_OFFSET);
2197 #endif
2199 return addr;
2202 /* Set up the epilogue with the magic bits we'll need to return to the
2203 exception handler. */
2205 void
2206 expand_builtin_eh_return (tree stackadj_tree ATTRIBUTE_UNUSED,
2207 tree handler_tree)
2209 rtx tmp;
2211 #ifdef EH_RETURN_STACKADJ_RTX
2212 tmp = expand_expr (stackadj_tree, crtl->eh.ehr_stackadj,
2213 VOIDmode, EXPAND_NORMAL);
2214 tmp = convert_memory_address (Pmode, tmp);
2215 if (!crtl->eh.ehr_stackadj)
2216 crtl->eh.ehr_stackadj = copy_to_reg (tmp);
2217 else if (tmp != crtl->eh.ehr_stackadj)
2218 emit_move_insn (crtl->eh.ehr_stackadj, tmp);
2219 #endif
2221 tmp = expand_expr (handler_tree, crtl->eh.ehr_handler,
2222 VOIDmode, EXPAND_NORMAL);
2223 tmp = convert_memory_address (Pmode, tmp);
2224 if (!crtl->eh.ehr_handler)
2225 crtl->eh.ehr_handler = copy_to_reg (tmp);
2226 else if (tmp != crtl->eh.ehr_handler)
2227 emit_move_insn (crtl->eh.ehr_handler, tmp);
2229 if (!crtl->eh.ehr_label)
2230 crtl->eh.ehr_label = gen_label_rtx ();
2231 emit_jump (crtl->eh.ehr_label);
2234 /* Expand __builtin_eh_return. This exit path from the function loads up
2235 the eh return data registers, adjusts the stack, and branches to a
2236 given PC other than the normal return address. */
2238 void
2239 expand_eh_return (void)
2241 rtx_code_label *around_label;
2243 if (! crtl->eh.ehr_label)
2244 return;
2246 crtl->calls_eh_return = 1;
2248 #ifdef EH_RETURN_STACKADJ_RTX
2249 emit_move_insn (EH_RETURN_STACKADJ_RTX, const0_rtx);
2250 #endif
2252 around_label = gen_label_rtx ();
2253 emit_jump (around_label);
2255 emit_label (crtl->eh.ehr_label);
2256 clobber_return_register ();
2258 #ifdef EH_RETURN_STACKADJ_RTX
2259 emit_move_insn (EH_RETURN_STACKADJ_RTX, crtl->eh.ehr_stackadj);
2260 #endif
2262 #ifdef HAVE_eh_return
2263 if (HAVE_eh_return)
2264 emit_insn (gen_eh_return (crtl->eh.ehr_handler));
2265 else
2266 #endif
2268 #ifdef EH_RETURN_HANDLER_RTX
2269 emit_move_insn (EH_RETURN_HANDLER_RTX, crtl->eh.ehr_handler);
2270 #else
2271 error ("__builtin_eh_return not supported on this target");
2272 #endif
2275 emit_label (around_label);
2278 /* Convert a ptr_mode address ADDR_TREE to a Pmode address controlled by
2279 POINTERS_EXTEND_UNSIGNED and return it. */
2282 expand_builtin_extend_pointer (tree addr_tree)
2284 rtx addr = expand_expr (addr_tree, NULL_RTX, ptr_mode, EXPAND_NORMAL);
2285 int extend;
2287 #ifdef POINTERS_EXTEND_UNSIGNED
2288 extend = POINTERS_EXTEND_UNSIGNED;
2289 #else
2290 /* The previous EH code did an unsigned extend by default, so we do this also
2291 for consistency. */
2292 extend = 1;
2293 #endif
2295 return convert_modes (targetm.unwind_word_mode (), ptr_mode, addr, extend);
2298 static int
2299 add_action_record (action_hash_type *ar_hash, int filter, int next)
2301 struct action_record **slot, *new_ar, tmp;
2303 tmp.filter = filter;
2304 tmp.next = next;
2305 slot = ar_hash->find_slot (&tmp, INSERT);
2307 if ((new_ar = *slot) == NULL)
2309 new_ar = XNEW (struct action_record);
2310 new_ar->offset = crtl->eh.action_record_data->length () + 1;
2311 new_ar->filter = filter;
2312 new_ar->next = next;
2313 *slot = new_ar;
2315 /* The filter value goes in untouched. The link to the next
2316 record is a "self-relative" byte offset, or zero to indicate
2317 that there is no next record. So convert the absolute 1 based
2318 indices we've been carrying around into a displacement. */
2320 push_sleb128 (&crtl->eh.action_record_data, filter);
2321 if (next)
2322 next -= crtl->eh.action_record_data->length () + 1;
2323 push_sleb128 (&crtl->eh.action_record_data, next);
2326 return new_ar->offset;
2329 static int
2330 collect_one_action_chain (action_hash_type *ar_hash, eh_region region)
2332 int next;
2334 /* If we've reached the top of the region chain, then we have
2335 no actions, and require no landing pad. */
2336 if (region == NULL)
2337 return -1;
2339 switch (region->type)
2341 case ERT_CLEANUP:
2343 eh_region r;
2344 /* A cleanup adds a zero filter to the beginning of the chain, but
2345 there are special cases to look out for. If there are *only*
2346 cleanups along a path, then it compresses to a zero action.
2347 Further, if there are multiple cleanups along a path, we only
2348 need to represent one of them, as that is enough to trigger
2349 entry to the landing pad at runtime. */
2350 next = collect_one_action_chain (ar_hash, region->outer);
2351 if (next <= 0)
2352 return 0;
2353 for (r = region->outer; r ; r = r->outer)
2354 if (r->type == ERT_CLEANUP)
2355 return next;
2356 return add_action_record (ar_hash, 0, next);
2359 case ERT_TRY:
2361 eh_catch c;
2363 /* Process the associated catch regions in reverse order.
2364 If there's a catch-all handler, then we don't need to
2365 search outer regions. Use a magic -3 value to record
2366 that we haven't done the outer search. */
2367 next = -3;
2368 for (c = region->u.eh_try.last_catch; c ; c = c->prev_catch)
2370 if (c->type_list == NULL)
2372 /* Retrieve the filter from the head of the filter list
2373 where we have stored it (see assign_filter_values). */
2374 int filter = TREE_INT_CST_LOW (TREE_VALUE (c->filter_list));
2375 next = add_action_record (ar_hash, filter, 0);
2377 else
2379 /* Once the outer search is done, trigger an action record for
2380 each filter we have. */
2381 tree flt_node;
2383 if (next == -3)
2385 next = collect_one_action_chain (ar_hash, region->outer);
2387 /* If there is no next action, terminate the chain. */
2388 if (next == -1)
2389 next = 0;
2390 /* If all outer actions are cleanups or must_not_throw,
2391 we'll have no action record for it, since we had wanted
2392 to encode these states in the call-site record directly.
2393 Add a cleanup action to the chain to catch these. */
2394 else if (next <= 0)
2395 next = add_action_record (ar_hash, 0, 0);
2398 flt_node = c->filter_list;
2399 for (; flt_node; flt_node = TREE_CHAIN (flt_node))
2401 int filter = TREE_INT_CST_LOW (TREE_VALUE (flt_node));
2402 next = add_action_record (ar_hash, filter, next);
2406 return next;
2409 case ERT_ALLOWED_EXCEPTIONS:
2410 /* An exception specification adds its filter to the
2411 beginning of the chain. */
2412 next = collect_one_action_chain (ar_hash, region->outer);
2414 /* If there is no next action, terminate the chain. */
2415 if (next == -1)
2416 next = 0;
2417 /* If all outer actions are cleanups or must_not_throw,
2418 we'll have no action record for it, since we had wanted
2419 to encode these states in the call-site record directly.
2420 Add a cleanup action to the chain to catch these. */
2421 else if (next <= 0)
2422 next = add_action_record (ar_hash, 0, 0);
2424 return add_action_record (ar_hash, region->u.allowed.filter, next);
2426 case ERT_MUST_NOT_THROW:
2427 /* A must-not-throw region with no inner handlers or cleanups
2428 requires no call-site entry. Note that this differs from
2429 the no handler or cleanup case in that we do require an lsda
2430 to be generated. Return a magic -2 value to record this. */
2431 return -2;
2434 gcc_unreachable ();
2437 static int
2438 add_call_site (rtx landing_pad, int action, int section)
2440 call_site_record record;
2442 record = ggc_alloc<call_site_record_d> ();
2443 record->landing_pad = landing_pad;
2444 record->action = action;
2446 vec_safe_push (crtl->eh.call_site_record_v[section], record);
2448 return call_site_base + crtl->eh.call_site_record_v[section]->length () - 1;
2451 static rtx_note *
2452 emit_note_eh_region_end (rtx_insn *insn)
2454 rtx_insn *next = NEXT_INSN (insn);
2456 /* Make sure we do not split a call and its corresponding
2457 CALL_ARG_LOCATION note. */
2458 if (next && NOTE_P (next)
2459 && NOTE_KIND (next) == NOTE_INSN_CALL_ARG_LOCATION)
2460 insn = next;
2462 return emit_note_after (NOTE_INSN_EH_REGION_END, insn);
2465 /* Turn REG_EH_REGION notes back into NOTE_INSN_EH_REGION notes.
2466 The new note numbers will not refer to region numbers, but
2467 instead to call site entries. */
2469 static unsigned int
2470 convert_to_eh_region_ranges (void)
2472 rtx insn;
2473 rtx_insn *iter;
2474 rtx_note *note;
2475 action_hash_type ar_hash (31);
2476 int last_action = -3;
2477 rtx_insn *last_action_insn = NULL;
2478 rtx last_landing_pad = NULL_RTX;
2479 rtx_insn *first_no_action_insn = NULL;
2480 int call_site = 0;
2481 int cur_sec = 0;
2482 rtx section_switch_note = NULL_RTX;
2483 rtx_insn *first_no_action_insn_before_switch = NULL;
2484 rtx_insn *last_no_action_insn_before_switch = NULL;
2485 int saved_call_site_base = call_site_base;
2487 vec_alloc (crtl->eh.action_record_data, 64);
2489 for (iter = get_insns (); iter ; iter = NEXT_INSN (iter))
2490 if (INSN_P (iter))
2492 eh_landing_pad lp;
2493 eh_region region;
2494 bool nothrow;
2495 int this_action;
2496 rtx this_landing_pad;
2498 insn = iter;
2499 if (NONJUMP_INSN_P (insn)
2500 && GET_CODE (PATTERN (insn)) == SEQUENCE)
2501 insn = XVECEXP (PATTERN (insn), 0, 0);
2503 nothrow = get_eh_region_and_lp_from_rtx (insn, &region, &lp);
2504 if (nothrow)
2505 continue;
2506 if (region)
2507 this_action = collect_one_action_chain (&ar_hash, region);
2508 else
2509 this_action = -1;
2511 /* Existence of catch handlers, or must-not-throw regions
2512 implies that an lsda is needed (even if empty). */
2513 if (this_action != -1)
2514 crtl->uses_eh_lsda = 1;
2516 /* Delay creation of region notes for no-action regions
2517 until we're sure that an lsda will be required. */
2518 else if (last_action == -3)
2520 first_no_action_insn = iter;
2521 last_action = -1;
2524 if (this_action >= 0)
2525 this_landing_pad = lp->landing_pad;
2526 else
2527 this_landing_pad = NULL_RTX;
2529 /* Differing actions or landing pads implies a change in call-site
2530 info, which implies some EH_REGION note should be emitted. */
2531 if (last_action != this_action
2532 || last_landing_pad != this_landing_pad)
2534 /* If there is a queued no-action region in the other section
2535 with hot/cold partitioning, emit it now. */
2536 if (first_no_action_insn_before_switch)
2538 gcc_assert (this_action != -1
2539 && last_action == (first_no_action_insn
2540 ? -1 : -3));
2541 call_site = add_call_site (NULL_RTX, 0, 0);
2542 note = emit_note_before (NOTE_INSN_EH_REGION_BEG,
2543 first_no_action_insn_before_switch);
2544 NOTE_EH_HANDLER (note) = call_site;
2545 note
2546 = emit_note_eh_region_end (last_no_action_insn_before_switch);
2547 NOTE_EH_HANDLER (note) = call_site;
2548 gcc_assert (last_action != -3
2549 || (last_action_insn
2550 == last_no_action_insn_before_switch));
2551 first_no_action_insn_before_switch = NULL;
2552 last_no_action_insn_before_switch = NULL;
2553 call_site_base++;
2555 /* If we'd not seen a previous action (-3) or the previous
2556 action was must-not-throw (-2), then we do not need an
2557 end note. */
2558 if (last_action >= -1)
2560 /* If we delayed the creation of the begin, do it now. */
2561 if (first_no_action_insn)
2563 call_site = add_call_site (NULL_RTX, 0, cur_sec);
2564 note = emit_note_before (NOTE_INSN_EH_REGION_BEG,
2565 first_no_action_insn);
2566 NOTE_EH_HANDLER (note) = call_site;
2567 first_no_action_insn = NULL;
2570 note = emit_note_eh_region_end (last_action_insn);
2571 NOTE_EH_HANDLER (note) = call_site;
2574 /* If the new action is must-not-throw, then no region notes
2575 are created. */
2576 if (this_action >= -1)
2578 call_site = add_call_site (this_landing_pad,
2579 this_action < 0 ? 0 : this_action,
2580 cur_sec);
2581 note = emit_note_before (NOTE_INSN_EH_REGION_BEG, iter);
2582 NOTE_EH_HANDLER (note) = call_site;
2585 last_action = this_action;
2586 last_landing_pad = this_landing_pad;
2588 last_action_insn = iter;
2590 else if (NOTE_P (iter)
2591 && NOTE_KIND (iter) == NOTE_INSN_SWITCH_TEXT_SECTIONS)
2593 gcc_assert (section_switch_note == NULL_RTX);
2594 gcc_assert (flag_reorder_blocks_and_partition);
2595 section_switch_note = iter;
2596 if (first_no_action_insn)
2598 first_no_action_insn_before_switch = first_no_action_insn;
2599 last_no_action_insn_before_switch = last_action_insn;
2600 first_no_action_insn = NULL;
2601 gcc_assert (last_action == -1);
2602 last_action = -3;
2604 /* Force closing of current EH region before section switch and
2605 opening a new one afterwards. */
2606 else if (last_action != -3)
2607 last_landing_pad = pc_rtx;
2608 if (crtl->eh.call_site_record_v[cur_sec])
2609 call_site_base += crtl->eh.call_site_record_v[cur_sec]->length ();
2610 cur_sec++;
2611 gcc_assert (crtl->eh.call_site_record_v[cur_sec] == NULL);
2612 vec_alloc (crtl->eh.call_site_record_v[cur_sec], 10);
2615 if (last_action >= -1 && ! first_no_action_insn)
2617 note = emit_note_eh_region_end (last_action_insn);
2618 NOTE_EH_HANDLER (note) = call_site;
2621 call_site_base = saved_call_site_base;
2623 return 0;
2626 namespace {
2628 const pass_data pass_data_convert_to_eh_region_ranges =
2630 RTL_PASS, /* type */
2631 "eh_ranges", /* name */
2632 OPTGROUP_NONE, /* optinfo_flags */
2633 TV_NONE, /* tv_id */
2634 0, /* properties_required */
2635 0, /* properties_provided */
2636 0, /* properties_destroyed */
2637 0, /* todo_flags_start */
2638 0, /* todo_flags_finish */
2641 class pass_convert_to_eh_region_ranges : public rtl_opt_pass
2643 public:
2644 pass_convert_to_eh_region_ranges (gcc::context *ctxt)
2645 : rtl_opt_pass (pass_data_convert_to_eh_region_ranges, ctxt)
2648 /* opt_pass methods: */
2649 virtual bool gate (function *);
2650 virtual unsigned int execute (function *)
2652 return convert_to_eh_region_ranges ();
2655 }; // class pass_convert_to_eh_region_ranges
2657 bool
2658 pass_convert_to_eh_region_ranges::gate (function *)
2660 /* Nothing to do for SJLJ exceptions or if no regions created. */
2661 if (cfun->eh->region_tree == NULL)
2662 return false;
2663 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
2664 return false;
2665 return true;
2668 } // anon namespace
2670 rtl_opt_pass *
2671 make_pass_convert_to_eh_region_ranges (gcc::context *ctxt)
2673 return new pass_convert_to_eh_region_ranges (ctxt);
2676 static void
2677 push_uleb128 (vec<uchar, va_gc> **data_area, unsigned int value)
2681 unsigned char byte = value & 0x7f;
2682 value >>= 7;
2683 if (value)
2684 byte |= 0x80;
2685 vec_safe_push (*data_area, byte);
2687 while (value);
2690 static void
2691 push_sleb128 (vec<uchar, va_gc> **data_area, int value)
2693 unsigned char byte;
2694 int more;
2698 byte = value & 0x7f;
2699 value >>= 7;
2700 more = ! ((value == 0 && (byte & 0x40) == 0)
2701 || (value == -1 && (byte & 0x40) != 0));
2702 if (more)
2703 byte |= 0x80;
2704 vec_safe_push (*data_area, byte);
2706 while (more);
2710 #ifndef HAVE_AS_LEB128
2711 static int
2712 dw2_size_of_call_site_table (int section)
2714 int n = vec_safe_length (crtl->eh.call_site_record_v[section]);
2715 int size = n * (4 + 4 + 4);
2716 int i;
2718 for (i = 0; i < n; ++i)
2720 struct call_site_record_d *cs =
2721 (*crtl->eh.call_site_record_v[section])[i];
2722 size += size_of_uleb128 (cs->action);
2725 return size;
2728 static int
2729 sjlj_size_of_call_site_table (void)
2731 int n = vec_safe_length (crtl->eh.call_site_record_v[0]);
2732 int size = 0;
2733 int i;
2735 for (i = 0; i < n; ++i)
2737 struct call_site_record_d *cs =
2738 (*crtl->eh.call_site_record_v[0])[i];
2739 size += size_of_uleb128 (INTVAL (cs->landing_pad));
2740 size += size_of_uleb128 (cs->action);
2743 return size;
2745 #endif
2747 static void
2748 dw2_output_call_site_table (int cs_format, int section)
2750 int n = vec_safe_length (crtl->eh.call_site_record_v[section]);
2751 int i;
2752 const char *begin;
2754 if (section == 0)
2755 begin = current_function_func_begin_label;
2756 else if (first_function_block_is_cold)
2757 begin = crtl->subsections.hot_section_label;
2758 else
2759 begin = crtl->subsections.cold_section_label;
2761 for (i = 0; i < n; ++i)
2763 struct call_site_record_d *cs = (*crtl->eh.call_site_record_v[section])[i];
2764 char reg_start_lab[32];
2765 char reg_end_lab[32];
2766 char landing_pad_lab[32];
2768 ASM_GENERATE_INTERNAL_LABEL (reg_start_lab, "LEHB", call_site_base + i);
2769 ASM_GENERATE_INTERNAL_LABEL (reg_end_lab, "LEHE", call_site_base + i);
2771 if (cs->landing_pad)
2772 ASM_GENERATE_INTERNAL_LABEL (landing_pad_lab, "L",
2773 CODE_LABEL_NUMBER (cs->landing_pad));
2775 /* ??? Perhaps use insn length scaling if the assembler supports
2776 generic arithmetic. */
2777 /* ??? Perhaps use attr_length to choose data1 or data2 instead of
2778 data4 if the function is small enough. */
2779 if (cs_format == DW_EH_PE_uleb128)
2781 dw2_asm_output_delta_uleb128 (reg_start_lab, begin,
2782 "region %d start", i);
2783 dw2_asm_output_delta_uleb128 (reg_end_lab, reg_start_lab,
2784 "length");
2785 if (cs->landing_pad)
2786 dw2_asm_output_delta_uleb128 (landing_pad_lab, begin,
2787 "landing pad");
2788 else
2789 dw2_asm_output_data_uleb128 (0, "landing pad");
2791 else
2793 dw2_asm_output_delta (4, reg_start_lab, begin,
2794 "region %d start", i);
2795 dw2_asm_output_delta (4, reg_end_lab, reg_start_lab, "length");
2796 if (cs->landing_pad)
2797 dw2_asm_output_delta (4, landing_pad_lab, begin,
2798 "landing pad");
2799 else
2800 dw2_asm_output_data (4, 0, "landing pad");
2802 dw2_asm_output_data_uleb128 (cs->action, "action");
2805 call_site_base += n;
2808 static void
2809 sjlj_output_call_site_table (void)
2811 int n = vec_safe_length (crtl->eh.call_site_record_v[0]);
2812 int i;
2814 for (i = 0; i < n; ++i)
2816 struct call_site_record_d *cs = (*crtl->eh.call_site_record_v[0])[i];
2818 dw2_asm_output_data_uleb128 (INTVAL (cs->landing_pad),
2819 "region %d landing pad", i);
2820 dw2_asm_output_data_uleb128 (cs->action, "action");
2823 call_site_base += n;
2826 /* Switch to the section that should be used for exception tables. */
2828 static void
2829 switch_to_exception_section (const char * ARG_UNUSED (fnname))
2831 section *s;
2833 if (exception_section)
2834 s = exception_section;
2835 else
2837 /* Compute the section and cache it into exception_section,
2838 unless it depends on the function name. */
2839 if (targetm_common.have_named_sections)
2841 int flags;
2843 if (EH_TABLES_CAN_BE_READ_ONLY)
2845 int tt_format =
2846 ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/1);
2847 flags = ((! flag_pic
2848 || ((tt_format & 0x70) != DW_EH_PE_absptr
2849 && (tt_format & 0x70) != DW_EH_PE_aligned))
2850 ? 0 : SECTION_WRITE);
2852 else
2853 flags = SECTION_WRITE;
2855 #ifdef HAVE_LD_EH_GC_SECTIONS
2856 if (flag_function_sections
2857 || (DECL_COMDAT_GROUP (current_function_decl) && HAVE_COMDAT_GROUP))
2859 char *section_name = XNEWVEC (char, strlen (fnname) + 32);
2860 /* The EH table must match the code section, so only mark
2861 it linkonce if we have COMDAT groups to tie them together. */
2862 if (DECL_COMDAT_GROUP (current_function_decl) && HAVE_COMDAT_GROUP)
2863 flags |= SECTION_LINKONCE;
2864 sprintf (section_name, ".gcc_except_table.%s", fnname);
2865 s = get_section (section_name, flags, current_function_decl);
2866 free (section_name);
2868 else
2869 #endif
2870 exception_section
2871 = s = get_section (".gcc_except_table", flags, NULL);
2873 else
2874 exception_section
2875 = s = flag_pic ? data_section : readonly_data_section;
2878 switch_to_section (s);
2882 /* Output a reference from an exception table to the type_info object TYPE.
2883 TT_FORMAT and TT_FORMAT_SIZE describe the DWARF encoding method used for
2884 the value. */
2886 static void
2887 output_ttype (tree type, int tt_format, int tt_format_size)
2889 rtx value;
2890 bool is_public = true;
2892 if (type == NULL_TREE)
2893 value = const0_rtx;
2894 else
2896 /* FIXME lto. pass_ipa_free_lang_data changes all types to
2897 runtime types so TYPE should already be a runtime type
2898 reference. When pass_ipa_free_lang data is made a default
2899 pass, we can then remove the call to lookup_type_for_runtime
2900 below. */
2901 if (TYPE_P (type))
2902 type = lookup_type_for_runtime (type);
2904 value = expand_expr (type, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
2906 /* Let cgraph know that the rtti decl is used. Not all of the
2907 paths below go through assemble_integer, which would take
2908 care of this for us. */
2909 STRIP_NOPS (type);
2910 if (TREE_CODE (type) == ADDR_EXPR)
2912 type = TREE_OPERAND (type, 0);
2913 if (TREE_CODE (type) == VAR_DECL)
2914 is_public = TREE_PUBLIC (type);
2916 else
2917 gcc_assert (TREE_CODE (type) == INTEGER_CST);
2920 /* Allow the target to override the type table entry format. */
2921 if (targetm.asm_out.ttype (value))
2922 return;
2924 if (tt_format == DW_EH_PE_absptr || tt_format == DW_EH_PE_aligned)
2925 assemble_integer (value, tt_format_size,
2926 tt_format_size * BITS_PER_UNIT, 1);
2927 else
2928 dw2_asm_output_encoded_addr_rtx (tt_format, value, is_public, NULL);
2931 static void
2932 output_one_function_exception_table (int section)
2934 int tt_format, cs_format, lp_format, i;
2935 #ifdef HAVE_AS_LEB128
2936 char ttype_label[32];
2937 char cs_after_size_label[32];
2938 char cs_end_label[32];
2939 #else
2940 int call_site_len;
2941 #endif
2942 int have_tt_data;
2943 int tt_format_size = 0;
2945 have_tt_data = (vec_safe_length (cfun->eh->ttype_data)
2946 || (targetm.arm_eabi_unwinder
2947 ? vec_safe_length (cfun->eh->ehspec_data.arm_eabi)
2948 : vec_safe_length (cfun->eh->ehspec_data.other)));
2950 /* Indicate the format of the @TType entries. */
2951 if (! have_tt_data)
2952 tt_format = DW_EH_PE_omit;
2953 else
2955 tt_format = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/1);
2956 #ifdef HAVE_AS_LEB128
2957 ASM_GENERATE_INTERNAL_LABEL (ttype_label,
2958 section ? "LLSDATTC" : "LLSDATT",
2959 current_function_funcdef_no);
2960 #endif
2961 tt_format_size = size_of_encoded_value (tt_format);
2963 assemble_align (tt_format_size * BITS_PER_UNIT);
2966 targetm.asm_out.internal_label (asm_out_file, section ? "LLSDAC" : "LLSDA",
2967 current_function_funcdef_no);
2969 /* The LSDA header. */
2971 /* Indicate the format of the landing pad start pointer. An omitted
2972 field implies @LPStart == @Start. */
2973 /* Currently we always put @LPStart == @Start. This field would
2974 be most useful in moving the landing pads completely out of
2975 line to another section, but it could also be used to minimize
2976 the size of uleb128 landing pad offsets. */
2977 lp_format = DW_EH_PE_omit;
2978 dw2_asm_output_data (1, lp_format, "@LPStart format (%s)",
2979 eh_data_format_name (lp_format));
2981 /* @LPStart pointer would go here. */
2983 dw2_asm_output_data (1, tt_format, "@TType format (%s)",
2984 eh_data_format_name (tt_format));
2986 #ifndef HAVE_AS_LEB128
2987 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
2988 call_site_len = sjlj_size_of_call_site_table ();
2989 else
2990 call_site_len = dw2_size_of_call_site_table (section);
2991 #endif
2993 /* A pc-relative 4-byte displacement to the @TType data. */
2994 if (have_tt_data)
2996 #ifdef HAVE_AS_LEB128
2997 char ttype_after_disp_label[32];
2998 ASM_GENERATE_INTERNAL_LABEL (ttype_after_disp_label,
2999 section ? "LLSDATTDC" : "LLSDATTD",
3000 current_function_funcdef_no);
3001 dw2_asm_output_delta_uleb128 (ttype_label, ttype_after_disp_label,
3002 "@TType base offset");
3003 ASM_OUTPUT_LABEL (asm_out_file, ttype_after_disp_label);
3004 #else
3005 /* Ug. Alignment queers things. */
3006 unsigned int before_disp, after_disp, last_disp, disp;
3008 before_disp = 1 + 1;
3009 after_disp = (1 + size_of_uleb128 (call_site_len)
3010 + call_site_len
3011 + vec_safe_length (crtl->eh.action_record_data)
3012 + (vec_safe_length (cfun->eh->ttype_data)
3013 * tt_format_size));
3015 disp = after_disp;
3018 unsigned int disp_size, pad;
3020 last_disp = disp;
3021 disp_size = size_of_uleb128 (disp);
3022 pad = before_disp + disp_size + after_disp;
3023 if (pad % tt_format_size)
3024 pad = tt_format_size - (pad % tt_format_size);
3025 else
3026 pad = 0;
3027 disp = after_disp + pad;
3029 while (disp != last_disp);
3031 dw2_asm_output_data_uleb128 (disp, "@TType base offset");
3032 #endif
3035 /* Indicate the format of the call-site offsets. */
3036 #ifdef HAVE_AS_LEB128
3037 cs_format = DW_EH_PE_uleb128;
3038 #else
3039 cs_format = DW_EH_PE_udata4;
3040 #endif
3041 dw2_asm_output_data (1, cs_format, "call-site format (%s)",
3042 eh_data_format_name (cs_format));
3044 #ifdef HAVE_AS_LEB128
3045 ASM_GENERATE_INTERNAL_LABEL (cs_after_size_label,
3046 section ? "LLSDACSBC" : "LLSDACSB",
3047 current_function_funcdef_no);
3048 ASM_GENERATE_INTERNAL_LABEL (cs_end_label,
3049 section ? "LLSDACSEC" : "LLSDACSE",
3050 current_function_funcdef_no);
3051 dw2_asm_output_delta_uleb128 (cs_end_label, cs_after_size_label,
3052 "Call-site table length");
3053 ASM_OUTPUT_LABEL (asm_out_file, cs_after_size_label);
3054 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
3055 sjlj_output_call_site_table ();
3056 else
3057 dw2_output_call_site_table (cs_format, section);
3058 ASM_OUTPUT_LABEL (asm_out_file, cs_end_label);
3059 #else
3060 dw2_asm_output_data_uleb128 (call_site_len, "Call-site table length");
3061 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
3062 sjlj_output_call_site_table ();
3063 else
3064 dw2_output_call_site_table (cs_format, section);
3065 #endif
3067 /* ??? Decode and interpret the data for flag_debug_asm. */
3069 uchar uc;
3070 FOR_EACH_VEC_ELT (*crtl->eh.action_record_data, i, uc)
3071 dw2_asm_output_data (1, uc, i ? NULL : "Action record table");
3074 if (have_tt_data)
3075 assemble_align (tt_format_size * BITS_PER_UNIT);
3077 i = vec_safe_length (cfun->eh->ttype_data);
3078 while (i-- > 0)
3080 tree type = (*cfun->eh->ttype_data)[i];
3081 output_ttype (type, tt_format, tt_format_size);
3084 #ifdef HAVE_AS_LEB128
3085 if (have_tt_data)
3086 ASM_OUTPUT_LABEL (asm_out_file, ttype_label);
3087 #endif
3089 /* ??? Decode and interpret the data for flag_debug_asm. */
3090 if (targetm.arm_eabi_unwinder)
3092 tree type;
3093 for (i = 0;
3094 vec_safe_iterate (cfun->eh->ehspec_data.arm_eabi, i, &type); ++i)
3095 output_ttype (type, tt_format, tt_format_size);
3097 else
3099 uchar uc;
3100 for (i = 0;
3101 vec_safe_iterate (cfun->eh->ehspec_data.other, i, &uc); ++i)
3102 dw2_asm_output_data (1, uc,
3103 i ? NULL : "Exception specification table");
3107 void
3108 output_function_exception_table (const char *fnname)
3110 rtx personality = get_personality_function (current_function_decl);
3112 /* Not all functions need anything. */
3113 if (! crtl->uses_eh_lsda)
3114 return;
3116 if (personality)
3118 assemble_external_libcall (personality);
3120 if (targetm.asm_out.emit_except_personality)
3121 targetm.asm_out.emit_except_personality (personality);
3124 switch_to_exception_section (fnname);
3126 /* If the target wants a label to begin the table, emit it here. */
3127 targetm.asm_out.emit_except_table_label (asm_out_file);
3129 output_one_function_exception_table (0);
3130 if (crtl->eh.call_site_record_v[1])
3131 output_one_function_exception_table (1);
3133 switch_to_section (current_function_section ());
3136 void
3137 set_eh_throw_stmt_table (function *fun, hash_map<gimple, int> *table)
3139 fun->eh->throw_stmt_table = table;
3142 hash_map<gimple, int> *
3143 get_eh_throw_stmt_table (struct function *fun)
3145 return fun->eh->throw_stmt_table;
3148 /* Determine if the function needs an EH personality function. */
3150 enum eh_personality_kind
3151 function_needs_eh_personality (struct function *fn)
3153 enum eh_personality_kind kind = eh_personality_none;
3154 eh_region i;
3156 FOR_ALL_EH_REGION_FN (i, fn)
3158 switch (i->type)
3160 case ERT_CLEANUP:
3161 /* Can do with any personality including the generic C one. */
3162 kind = eh_personality_any;
3163 break;
3165 case ERT_TRY:
3166 case ERT_ALLOWED_EXCEPTIONS:
3167 /* Always needs a EH personality function. The generic C
3168 personality doesn't handle these even for empty type lists. */
3169 return eh_personality_lang;
3171 case ERT_MUST_NOT_THROW:
3172 /* Always needs a EH personality function. The language may specify
3173 what abort routine that must be used, e.g. std::terminate. */
3174 return eh_personality_lang;
3178 return kind;
3181 /* Dump EH information to OUT. */
3183 void
3184 dump_eh_tree (FILE * out, struct function *fun)
3186 eh_region i;
3187 int depth = 0;
3188 static const char *const type_name[] = {
3189 "cleanup", "try", "allowed_exceptions", "must_not_throw"
3192 i = fun->eh->region_tree;
3193 if (!i)
3194 return;
3196 fprintf (out, "Eh tree:\n");
3197 while (1)
3199 fprintf (out, " %*s %i %s", depth * 2, "",
3200 i->index, type_name[(int) i->type]);
3202 if (i->landing_pads)
3204 eh_landing_pad lp;
3206 fprintf (out, " land:");
3207 if (current_ir_type () == IR_GIMPLE)
3209 for (lp = i->landing_pads; lp ; lp = lp->next_lp)
3211 fprintf (out, "{%i,", lp->index);
3212 print_generic_expr (out, lp->post_landing_pad, 0);
3213 fputc ('}', out);
3214 if (lp->next_lp)
3215 fputc (',', out);
3218 else
3220 for (lp = i->landing_pads; lp ; lp = lp->next_lp)
3222 fprintf (out, "{%i,", lp->index);
3223 if (lp->landing_pad)
3224 fprintf (out, "%i%s,", INSN_UID (lp->landing_pad),
3225 NOTE_P (lp->landing_pad) ? "(del)" : "");
3226 else
3227 fprintf (out, "(nil),");
3228 if (lp->post_landing_pad)
3230 rtx lab = label_rtx (lp->post_landing_pad);
3231 fprintf (out, "%i%s}", INSN_UID (lab),
3232 NOTE_P (lab) ? "(del)" : "");
3234 else
3235 fprintf (out, "(nil)}");
3236 if (lp->next_lp)
3237 fputc (',', out);
3242 switch (i->type)
3244 case ERT_CLEANUP:
3245 case ERT_MUST_NOT_THROW:
3246 break;
3248 case ERT_TRY:
3250 eh_catch c;
3251 fprintf (out, " catch:");
3252 for (c = i->u.eh_try.first_catch; c; c = c->next_catch)
3254 fputc ('{', out);
3255 if (c->label)
3257 fprintf (out, "lab:");
3258 print_generic_expr (out, c->label, 0);
3259 fputc (';', out);
3261 print_generic_expr (out, c->type_list, 0);
3262 fputc ('}', out);
3263 if (c->next_catch)
3264 fputc (',', out);
3267 break;
3269 case ERT_ALLOWED_EXCEPTIONS:
3270 fprintf (out, " filter :%i types:", i->u.allowed.filter);
3271 print_generic_expr (out, i->u.allowed.type_list, 0);
3272 break;
3274 fputc ('\n', out);
3276 /* If there are sub-regions, process them. */
3277 if (i->inner)
3278 i = i->inner, depth++;
3279 /* If there are peers, process them. */
3280 else if (i->next_peer)
3281 i = i->next_peer;
3282 /* Otherwise, step back up the tree to the next peer. */
3283 else
3287 i = i->outer;
3288 depth--;
3289 if (i == NULL)
3290 return;
3292 while (i->next_peer == NULL);
3293 i = i->next_peer;
3298 /* Dump the EH tree for FN on stderr. */
3300 DEBUG_FUNCTION void
3301 debug_eh_tree (struct function *fn)
3303 dump_eh_tree (stderr, fn);
3306 /* Verify invariants on EH datastructures. */
3308 DEBUG_FUNCTION void
3309 verify_eh_tree (struct function *fun)
3311 eh_region r, outer;
3312 int nvisited_lp, nvisited_r;
3313 int count_lp, count_r, depth, i;
3314 eh_landing_pad lp;
3315 bool err = false;
3317 if (!fun->eh->region_tree)
3318 return;
3320 count_r = 0;
3321 for (i = 1; vec_safe_iterate (fun->eh->region_array, i, &r); ++i)
3322 if (r)
3324 if (r->index == i)
3325 count_r++;
3326 else
3328 error ("region_array is corrupted for region %i", r->index);
3329 err = true;
3333 count_lp = 0;
3334 for (i = 1; vec_safe_iterate (fun->eh->lp_array, i, &lp); ++i)
3335 if (lp)
3337 if (lp->index == i)
3338 count_lp++;
3339 else
3341 error ("lp_array is corrupted for lp %i", lp->index);
3342 err = true;
3346 depth = nvisited_lp = nvisited_r = 0;
3347 outer = NULL;
3348 r = fun->eh->region_tree;
3349 while (1)
3351 if ((*fun->eh->region_array)[r->index] != r)
3353 error ("region_array is corrupted for region %i", r->index);
3354 err = true;
3356 if (r->outer != outer)
3358 error ("outer block of region %i is wrong", r->index);
3359 err = true;
3361 if (depth < 0)
3363 error ("negative nesting depth of region %i", r->index);
3364 err = true;
3366 nvisited_r++;
3368 for (lp = r->landing_pads; lp ; lp = lp->next_lp)
3370 if ((*fun->eh->lp_array)[lp->index] != lp)
3372 error ("lp_array is corrupted for lp %i", lp->index);
3373 err = true;
3375 if (lp->region != r)
3377 error ("region of lp %i is wrong", lp->index);
3378 err = true;
3380 nvisited_lp++;
3383 if (r->inner)
3384 outer = r, r = r->inner, depth++;
3385 else if (r->next_peer)
3386 r = r->next_peer;
3387 else
3391 r = r->outer;
3392 if (r == NULL)
3393 goto region_done;
3394 depth--;
3395 outer = r->outer;
3397 while (r->next_peer == NULL);
3398 r = r->next_peer;
3401 region_done:
3402 if (depth != 0)
3404 error ("tree list ends on depth %i", depth);
3405 err = true;
3407 if (count_r != nvisited_r)
3409 error ("region_array does not match region_tree");
3410 err = true;
3412 if (count_lp != nvisited_lp)
3414 error ("lp_array does not match region_tree");
3415 err = true;
3418 if (err)
3420 dump_eh_tree (stderr, fun);
3421 internal_error ("verify_eh_tree failed");
3425 #include "gt-except.h"