libgomp: Use pthread mutexes in the nvptx plugin.
[official-gcc.git] / gcc / except.c
blobbceb67973646f5e30d73b629a213e2b3850e782e
1 /* Implements exception handling.
2 Copyright (C) 1989-2015 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 "hash-set.h"
118 #include "machmode.h"
119 #include "vec.h"
120 #include "double-int.h"
121 #include "input.h"
122 #include "alias.h"
123 #include "symtab.h"
124 #include "wide-int.h"
125 #include "inchash.h"
126 #include "real.h"
127 #include "tree.h"
128 #include "fold-const.h"
129 #include "stringpool.h"
130 #include "stor-layout.h"
131 #include "flags.h"
132 #include "hard-reg-set.h"
133 #include "input.h"
134 #include "function.h"
135 #include "insn-codes.h"
136 #include "optabs.h"
137 #include "expr.h"
138 #include "libfuncs.h"
139 #include "insn-config.h"
140 #include "except.h"
141 #include "output.h"
142 #include "dwarf2asm.h"
143 #include "dwarf2out.h"
144 #include "dwarf2.h"
145 #include "toplev.h"
146 #include "hash-table.h"
147 #include "intl.h"
148 #include "tm_p.h"
149 #include "target.h"
150 #include "common/common-target.h"
151 #include "langhooks.h"
152 #include "predict.h"
153 #include "dominance.h"
154 #include "cfg.h"
155 #include "cfgrtl.h"
156 #include "basic-block.h"
157 #include "hash-map.h"
158 #include "is-a.h"
159 #include "plugin-api.h"
160 #include "ipa-ref.h"
161 #include "cgraph.h"
162 #include "diagnostic.h"
163 #include "tree-pretty-print.h"
164 #include "tree-pass.h"
165 #include "cfgloop.h"
166 #include "builtins.h"
168 /* Provide defaults for stuff that may not be defined when using
169 sjlj exceptions. */
170 #ifndef EH_RETURN_DATA_REGNO
171 #define EH_RETURN_DATA_REGNO(N) INVALID_REGNUM
172 #endif
174 static GTY(()) int call_site_base;
176 struct tree_hash_traits : default_hashmap_traits
178 static hashval_t hash (tree t) { return TREE_HASH (t); }
181 static GTY (()) hash_map<tree, tree, tree_hash_traits> *type_to_runtime_map;
183 /* Describe the SjLj_Function_Context structure. */
184 static GTY(()) tree sjlj_fc_type_node;
185 static int sjlj_fc_call_site_ofs;
186 static int sjlj_fc_data_ofs;
187 static int sjlj_fc_personality_ofs;
188 static int sjlj_fc_lsda_ofs;
189 static int sjlj_fc_jbuf_ofs;
192 struct GTY(()) call_site_record_d
194 rtx landing_pad;
195 int action;
198 /* In the following structure and associated functions,
199 we represent entries in the action table as 1-based indices.
200 Special cases are:
202 0: null action record, non-null landing pad; implies cleanups
203 -1: null action record, null landing pad; implies no action
204 -2: no call-site entry; implies must_not_throw
205 -3: we have yet to process outer regions
207 Further, no special cases apply to the "next" field of the record.
208 For next, 0 means end of list. */
210 struct action_record
212 int offset;
213 int filter;
214 int next;
217 /* Hashtable helpers. */
219 struct action_record_hasher : typed_free_remove <action_record>
221 typedef action_record value_type;
222 typedef action_record compare_type;
223 static inline hashval_t hash (const value_type *);
224 static inline bool equal (const value_type *, const compare_type *);
227 inline hashval_t
228 action_record_hasher::hash (const value_type *entry)
230 return entry->next * 1009 + entry->filter;
233 inline bool
234 action_record_hasher::equal (const value_type *entry, const compare_type *data)
236 return entry->filter == data->filter && entry->next == data->next;
239 typedef hash_table<action_record_hasher> action_hash_type;
241 static bool get_eh_region_and_lp_from_rtx (const_rtx, eh_region *,
242 eh_landing_pad *);
244 static void dw2_build_landing_pads (void);
246 static int collect_one_action_chain (action_hash_type *, eh_region);
247 static int add_call_site (rtx, int, int);
249 static void push_uleb128 (vec<uchar, va_gc> **, unsigned int);
250 static void push_sleb128 (vec<uchar, va_gc> **, int);
251 #ifndef HAVE_AS_LEB128
252 static int dw2_size_of_call_site_table (int);
253 static int sjlj_size_of_call_site_table (void);
254 #endif
255 static void dw2_output_call_site_table (int, int);
256 static void sjlj_output_call_site_table (void);
259 void
260 init_eh (void)
262 if (! flag_exceptions)
263 return;
265 type_to_runtime_map
266 = hash_map<tree, tree, tree_hash_traits>::create_ggc (31);
268 /* Create the SjLj_Function_Context structure. This should match
269 the definition in unwind-sjlj.c. */
270 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
272 tree f_jbuf, f_per, f_lsda, f_prev, f_cs, f_data, tmp;
274 sjlj_fc_type_node = lang_hooks.types.make_type (RECORD_TYPE);
276 f_prev = build_decl (BUILTINS_LOCATION,
277 FIELD_DECL, get_identifier ("__prev"),
278 build_pointer_type (sjlj_fc_type_node));
279 DECL_FIELD_CONTEXT (f_prev) = sjlj_fc_type_node;
281 f_cs = build_decl (BUILTINS_LOCATION,
282 FIELD_DECL, get_identifier ("__call_site"),
283 integer_type_node);
284 DECL_FIELD_CONTEXT (f_cs) = sjlj_fc_type_node;
286 tmp = build_index_type (size_int (4 - 1));
287 tmp = build_array_type (lang_hooks.types.type_for_mode
288 (targetm.unwind_word_mode (), 1),
289 tmp);
290 f_data = build_decl (BUILTINS_LOCATION,
291 FIELD_DECL, get_identifier ("__data"), tmp);
292 DECL_FIELD_CONTEXT (f_data) = sjlj_fc_type_node;
294 f_per = build_decl (BUILTINS_LOCATION,
295 FIELD_DECL, get_identifier ("__personality"),
296 ptr_type_node);
297 DECL_FIELD_CONTEXT (f_per) = sjlj_fc_type_node;
299 f_lsda = build_decl (BUILTINS_LOCATION,
300 FIELD_DECL, get_identifier ("__lsda"),
301 ptr_type_node);
302 DECL_FIELD_CONTEXT (f_lsda) = sjlj_fc_type_node;
304 #ifdef DONT_USE_BUILTIN_SETJMP
305 #ifdef JMP_BUF_SIZE
306 tmp = size_int (JMP_BUF_SIZE - 1);
307 #else
308 /* Should be large enough for most systems, if it is not,
309 JMP_BUF_SIZE should be defined with the proper value. It will
310 also tend to be larger than necessary for most systems, a more
311 optimal port will define JMP_BUF_SIZE. */
312 tmp = size_int (FIRST_PSEUDO_REGISTER + 2 - 1);
313 #endif
314 #else
315 /* Compute a minimally sized jump buffer. We need room to store at
316 least 3 pointers - stack pointer, frame pointer and return address.
317 Plus for some targets we need room for an extra pointer - in the
318 case of MIPS this is the global pointer. This makes a total of four
319 pointers, but to be safe we actually allocate room for 5.
321 If pointers are smaller than words then we allocate enough room for
322 5 words, just in case the backend needs this much room. For more
323 discussion on this issue see:
324 http://gcc.gnu.org/ml/gcc-patches/2014-05/msg00313.html. */
325 if (POINTER_SIZE > BITS_PER_WORD)
326 tmp = size_int (5 - 1);
327 else
328 tmp = size_int ((5 * BITS_PER_WORD / POINTER_SIZE) - 1);
329 #endif
331 tmp = build_index_type (tmp);
332 tmp = build_array_type (ptr_type_node, tmp);
333 f_jbuf = build_decl (BUILTINS_LOCATION,
334 FIELD_DECL, get_identifier ("__jbuf"), tmp);
335 #ifdef DONT_USE_BUILTIN_SETJMP
336 /* We don't know what the alignment requirements of the
337 runtime's jmp_buf has. Overestimate. */
338 DECL_ALIGN (f_jbuf) = BIGGEST_ALIGNMENT;
339 DECL_USER_ALIGN (f_jbuf) = 1;
340 #endif
341 DECL_FIELD_CONTEXT (f_jbuf) = sjlj_fc_type_node;
343 TYPE_FIELDS (sjlj_fc_type_node) = f_prev;
344 TREE_CHAIN (f_prev) = f_cs;
345 TREE_CHAIN (f_cs) = f_data;
346 TREE_CHAIN (f_data) = f_per;
347 TREE_CHAIN (f_per) = f_lsda;
348 TREE_CHAIN (f_lsda) = f_jbuf;
350 layout_type (sjlj_fc_type_node);
352 /* Cache the interesting field offsets so that we have
353 easy access from rtl. */
354 sjlj_fc_call_site_ofs
355 = (tree_to_uhwi (DECL_FIELD_OFFSET (f_cs))
356 + tree_to_uhwi (DECL_FIELD_BIT_OFFSET (f_cs)) / BITS_PER_UNIT);
357 sjlj_fc_data_ofs
358 = (tree_to_uhwi (DECL_FIELD_OFFSET (f_data))
359 + tree_to_uhwi (DECL_FIELD_BIT_OFFSET (f_data)) / BITS_PER_UNIT);
360 sjlj_fc_personality_ofs
361 = (tree_to_uhwi (DECL_FIELD_OFFSET (f_per))
362 + tree_to_uhwi (DECL_FIELD_BIT_OFFSET (f_per)) / BITS_PER_UNIT);
363 sjlj_fc_lsda_ofs
364 = (tree_to_uhwi (DECL_FIELD_OFFSET (f_lsda))
365 + tree_to_uhwi (DECL_FIELD_BIT_OFFSET (f_lsda)) / BITS_PER_UNIT);
366 sjlj_fc_jbuf_ofs
367 = (tree_to_uhwi (DECL_FIELD_OFFSET (f_jbuf))
368 + tree_to_uhwi (DECL_FIELD_BIT_OFFSET (f_jbuf)) / BITS_PER_UNIT);
372 void
373 init_eh_for_function (void)
375 cfun->eh = ggc_cleared_alloc<eh_status> ();
377 /* Make sure zero'th entries are used. */
378 vec_safe_push (cfun->eh->region_array, (eh_region)0);
379 vec_safe_push (cfun->eh->lp_array, (eh_landing_pad)0);
382 /* Routines to generate the exception tree somewhat directly.
383 These are used from tree-eh.c when processing exception related
384 nodes during tree optimization. */
386 static eh_region
387 gen_eh_region (enum eh_region_type type, eh_region outer)
389 eh_region new_eh;
391 /* Insert a new blank region as a leaf in the tree. */
392 new_eh = ggc_cleared_alloc<eh_region_d> ();
393 new_eh->type = type;
394 new_eh->outer = outer;
395 if (outer)
397 new_eh->next_peer = outer->inner;
398 outer->inner = new_eh;
400 else
402 new_eh->next_peer = cfun->eh->region_tree;
403 cfun->eh->region_tree = new_eh;
406 new_eh->index = vec_safe_length (cfun->eh->region_array);
407 vec_safe_push (cfun->eh->region_array, new_eh);
409 /* Copy the language's notion of whether to use __cxa_end_cleanup. */
410 if (targetm.arm_eabi_unwinder && lang_hooks.eh_use_cxa_end_cleanup)
411 new_eh->use_cxa_end_cleanup = true;
413 return new_eh;
416 eh_region
417 gen_eh_region_cleanup (eh_region outer)
419 return gen_eh_region (ERT_CLEANUP, outer);
422 eh_region
423 gen_eh_region_try (eh_region outer)
425 return gen_eh_region (ERT_TRY, outer);
428 eh_catch
429 gen_eh_region_catch (eh_region t, tree type_or_list)
431 eh_catch c, l;
432 tree type_list, type_node;
434 gcc_assert (t->type == ERT_TRY);
436 /* Ensure to always end up with a type list to normalize further
437 processing, then register each type against the runtime types map. */
438 type_list = type_or_list;
439 if (type_or_list)
441 if (TREE_CODE (type_or_list) != TREE_LIST)
442 type_list = tree_cons (NULL_TREE, type_or_list, NULL_TREE);
444 type_node = type_list;
445 for (; type_node; type_node = TREE_CHAIN (type_node))
446 add_type_for_runtime (TREE_VALUE (type_node));
449 c = ggc_cleared_alloc<eh_catch_d> ();
450 c->type_list = type_list;
451 l = t->u.eh_try.last_catch;
452 c->prev_catch = l;
453 if (l)
454 l->next_catch = c;
455 else
456 t->u.eh_try.first_catch = c;
457 t->u.eh_try.last_catch = c;
459 return c;
462 eh_region
463 gen_eh_region_allowed (eh_region outer, tree allowed)
465 eh_region region = gen_eh_region (ERT_ALLOWED_EXCEPTIONS, outer);
466 region->u.allowed.type_list = allowed;
468 for (; allowed ; allowed = TREE_CHAIN (allowed))
469 add_type_for_runtime (TREE_VALUE (allowed));
471 return region;
474 eh_region
475 gen_eh_region_must_not_throw (eh_region outer)
477 return gen_eh_region (ERT_MUST_NOT_THROW, outer);
480 eh_landing_pad
481 gen_eh_landing_pad (eh_region region)
483 eh_landing_pad lp = ggc_cleared_alloc<eh_landing_pad_d> ();
485 lp->next_lp = region->landing_pads;
486 lp->region = region;
487 lp->index = vec_safe_length (cfun->eh->lp_array);
488 region->landing_pads = lp;
490 vec_safe_push (cfun->eh->lp_array, lp);
492 return lp;
495 eh_region
496 get_eh_region_from_number_fn (struct function *ifun, int i)
498 return (*ifun->eh->region_array)[i];
501 eh_region
502 get_eh_region_from_number (int i)
504 return get_eh_region_from_number_fn (cfun, i);
507 eh_landing_pad
508 get_eh_landing_pad_from_number_fn (struct function *ifun, int i)
510 return (*ifun->eh->lp_array)[i];
513 eh_landing_pad
514 get_eh_landing_pad_from_number (int i)
516 return get_eh_landing_pad_from_number_fn (cfun, i);
519 eh_region
520 get_eh_region_from_lp_number_fn (struct function *ifun, int i)
522 if (i < 0)
523 return (*ifun->eh->region_array)[-i];
524 else if (i == 0)
525 return NULL;
526 else
528 eh_landing_pad lp;
529 lp = (*ifun->eh->lp_array)[i];
530 return lp->region;
534 eh_region
535 get_eh_region_from_lp_number (int i)
537 return get_eh_region_from_lp_number_fn (cfun, i);
540 /* Returns true if the current function has exception handling regions. */
542 bool
543 current_function_has_exception_handlers (void)
545 return cfun->eh->region_tree != NULL;
548 /* A subroutine of duplicate_eh_regions. Copy the eh_region tree at OLD.
549 Root it at OUTER, and apply LP_OFFSET to the lp numbers. */
551 struct duplicate_eh_regions_data
553 duplicate_eh_regions_map label_map;
554 void *label_map_data;
555 hash_map<void *, void *> *eh_map;
558 static void
559 duplicate_eh_regions_1 (struct duplicate_eh_regions_data *data,
560 eh_region old_r, eh_region outer)
562 eh_landing_pad old_lp, new_lp;
563 eh_region new_r;
565 new_r = gen_eh_region (old_r->type, outer);
566 gcc_assert (!data->eh_map->put (old_r, new_r));
568 switch (old_r->type)
570 case ERT_CLEANUP:
571 break;
573 case ERT_TRY:
575 eh_catch oc, nc;
576 for (oc = old_r->u.eh_try.first_catch; oc ; oc = oc->next_catch)
578 /* We should be doing all our region duplication before and
579 during inlining, which is before filter lists are created. */
580 gcc_assert (oc->filter_list == NULL);
581 nc = gen_eh_region_catch (new_r, oc->type_list);
582 nc->label = data->label_map (oc->label, data->label_map_data);
585 break;
587 case ERT_ALLOWED_EXCEPTIONS:
588 new_r->u.allowed.type_list = old_r->u.allowed.type_list;
589 if (old_r->u.allowed.label)
590 new_r->u.allowed.label
591 = data->label_map (old_r->u.allowed.label, data->label_map_data);
592 else
593 new_r->u.allowed.label = NULL_TREE;
594 break;
596 case ERT_MUST_NOT_THROW:
597 new_r->u.must_not_throw.failure_loc =
598 LOCATION_LOCUS (old_r->u.must_not_throw.failure_loc);
599 new_r->u.must_not_throw.failure_decl =
600 old_r->u.must_not_throw.failure_decl;
601 break;
604 for (old_lp = old_r->landing_pads; old_lp ; old_lp = old_lp->next_lp)
606 /* Don't bother copying unused landing pads. */
607 if (old_lp->post_landing_pad == NULL)
608 continue;
610 new_lp = gen_eh_landing_pad (new_r);
611 gcc_assert (!data->eh_map->put (old_lp, new_lp));
613 new_lp->post_landing_pad
614 = data->label_map (old_lp->post_landing_pad, data->label_map_data);
615 EH_LANDING_PAD_NR (new_lp->post_landing_pad) = new_lp->index;
618 /* Make sure to preserve the original use of __cxa_end_cleanup. */
619 new_r->use_cxa_end_cleanup = old_r->use_cxa_end_cleanup;
621 for (old_r = old_r->inner; old_r ; old_r = old_r->next_peer)
622 duplicate_eh_regions_1 (data, old_r, new_r);
625 /* Duplicate the EH regions from IFUN rooted at COPY_REGION into
626 the current function and root the tree below OUTER_REGION.
627 The special case of COPY_REGION of NULL means all regions.
628 Remap labels using MAP/MAP_DATA callback. Return a pointer map
629 that allows the caller to remap uses of both EH regions and
630 EH landing pads. */
632 hash_map<void *, void *> *
633 duplicate_eh_regions (struct function *ifun,
634 eh_region copy_region, int outer_lp,
635 duplicate_eh_regions_map map, void *map_data)
637 struct duplicate_eh_regions_data data;
638 eh_region outer_region;
640 #ifdef ENABLE_CHECKING
641 verify_eh_tree (ifun);
642 #endif
644 data.label_map = map;
645 data.label_map_data = map_data;
646 data.eh_map = new hash_map<void *, void *>;
648 outer_region = get_eh_region_from_lp_number (outer_lp);
650 /* Copy all the regions in the subtree. */
651 if (copy_region)
652 duplicate_eh_regions_1 (&data, copy_region, outer_region);
653 else
655 eh_region r;
656 for (r = ifun->eh->region_tree; r ; r = r->next_peer)
657 duplicate_eh_regions_1 (&data, r, outer_region);
660 #ifdef ENABLE_CHECKING
661 verify_eh_tree (cfun);
662 #endif
664 return data.eh_map;
667 /* Return the region that is outer to both REGION_A and REGION_B in IFUN. */
669 eh_region
670 eh_region_outermost (struct function *ifun, eh_region region_a,
671 eh_region region_b)
673 sbitmap b_outer;
675 gcc_assert (ifun->eh->region_array);
676 gcc_assert (ifun->eh->region_tree);
678 b_outer = sbitmap_alloc (ifun->eh->region_array->length ());
679 bitmap_clear (b_outer);
683 bitmap_set_bit (b_outer, region_b->index);
684 region_b = region_b->outer;
686 while (region_b);
690 if (bitmap_bit_p (b_outer, region_a->index))
691 break;
692 region_a = region_a->outer;
694 while (region_a);
696 sbitmap_free (b_outer);
697 return region_a;
700 void
701 add_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;
707 bool existed = false;
708 tree *slot = &type_to_runtime_map->get_or_insert (type, &existed);
709 if (!existed)
710 *slot = lang_hooks.eh_runtime_type (type);
713 tree
714 lookup_type_for_runtime (tree type)
716 /* If TYPE is NOP_EXPR, it means that it already is a runtime type. */
717 if (TREE_CODE (type) == NOP_EXPR)
718 return type;
720 /* We should have always inserted the data earlier. */
721 return *type_to_runtime_map->get (type);
725 /* Represent an entry in @TTypes for either catch actions
726 or exception filter actions. */
727 struct ttypes_filter {
728 tree t;
729 int filter;
732 /* Helper for ttypes_filter hashing. */
734 struct ttypes_filter_hasher : typed_free_remove <ttypes_filter>
736 typedef ttypes_filter value_type;
737 typedef tree_node compare_type;
738 static inline hashval_t hash (const value_type *);
739 static inline bool equal (const value_type *, const compare_type *);
742 /* Compare ENTRY (a ttypes_filter entry in the hash table) with DATA
743 (a tree) for a @TTypes type node we are thinking about adding. */
745 inline bool
746 ttypes_filter_hasher::equal (const value_type *entry, const compare_type *data)
748 return entry->t == data;
751 inline hashval_t
752 ttypes_filter_hasher::hash (const value_type *entry)
754 return TREE_HASH (entry->t);
757 typedef hash_table<ttypes_filter_hasher> ttypes_hash_type;
760 /* Helper for ehspec hashing. */
762 struct ehspec_hasher : typed_free_remove <ttypes_filter>
764 typedef ttypes_filter value_type;
765 typedef ttypes_filter compare_type;
766 static inline hashval_t hash (const value_type *);
767 static inline bool equal (const value_type *, const compare_type *);
770 /* Compare ENTRY with DATA (both struct ttypes_filter) for a @TTypes
771 exception specification list we are thinking about adding. */
772 /* ??? Currently we use the type lists in the order given. Someone
773 should put these in some canonical order. */
775 inline bool
776 ehspec_hasher::equal (const value_type *entry, const compare_type *data)
778 return type_list_equal (entry->t, data->t);
781 /* Hash function for exception specification lists. */
783 inline hashval_t
784 ehspec_hasher::hash (const value_type *entry)
786 hashval_t h = 0;
787 tree list;
789 for (list = entry->t; list ; list = TREE_CHAIN (list))
790 h = (h << 5) + (h >> 27) + TREE_HASH (TREE_VALUE (list));
791 return h;
794 typedef hash_table<ehspec_hasher> ehspec_hash_type;
797 /* Add TYPE (which may be NULL) to cfun->eh->ttype_data, using TYPES_HASH
798 to speed up the search. Return the filter value to be used. */
800 static int
801 add_ttypes_entry (ttypes_hash_type *ttypes_hash, tree type)
803 struct ttypes_filter **slot, *n;
805 slot = ttypes_hash->find_slot_with_hash (type, (hashval_t) TREE_HASH (type),
806 INSERT);
808 if ((n = *slot) == NULL)
810 /* Filter value is a 1 based table index. */
812 n = XNEW (struct ttypes_filter);
813 n->t = type;
814 n->filter = vec_safe_length (cfun->eh->ttype_data) + 1;
815 *slot = n;
817 vec_safe_push (cfun->eh->ttype_data, type);
820 return n->filter;
823 /* Add LIST to cfun->eh->ehspec_data, using EHSPEC_HASH and TYPES_HASH
824 to speed up the search. Return the filter value to be used. */
826 static int
827 add_ehspec_entry (ehspec_hash_type *ehspec_hash, ttypes_hash_type *ttypes_hash,
828 tree list)
830 struct ttypes_filter **slot, *n;
831 struct ttypes_filter dummy;
833 dummy.t = list;
834 slot = ehspec_hash->find_slot (&dummy, INSERT);
836 if ((n = *slot) == NULL)
838 int len;
840 if (targetm.arm_eabi_unwinder)
841 len = vec_safe_length (cfun->eh->ehspec_data.arm_eabi);
842 else
843 len = vec_safe_length (cfun->eh->ehspec_data.other);
845 /* Filter value is a -1 based byte index into a uleb128 buffer. */
847 n = XNEW (struct ttypes_filter);
848 n->t = list;
849 n->filter = -(len + 1);
850 *slot = n;
852 /* Generate a 0 terminated list of filter values. */
853 for (; list ; list = TREE_CHAIN (list))
855 if (targetm.arm_eabi_unwinder)
856 vec_safe_push (cfun->eh->ehspec_data.arm_eabi, TREE_VALUE (list));
857 else
859 /* Look up each type in the list and encode its filter
860 value as a uleb128. */
861 push_uleb128 (&cfun->eh->ehspec_data.other,
862 add_ttypes_entry (ttypes_hash, TREE_VALUE (list)));
865 if (targetm.arm_eabi_unwinder)
866 vec_safe_push (cfun->eh->ehspec_data.arm_eabi, NULL_TREE);
867 else
868 vec_safe_push (cfun->eh->ehspec_data.other, (uchar)0);
871 return n->filter;
874 /* Generate the action filter values to be used for CATCH and
875 ALLOWED_EXCEPTIONS regions. When using dwarf2 exception regions,
876 we use lots of landing pads, and so every type or list can share
877 the same filter value, which saves table space. */
879 void
880 assign_filter_values (void)
882 int i;
883 eh_region r;
884 eh_catch c;
886 vec_alloc (cfun->eh->ttype_data, 16);
887 if (targetm.arm_eabi_unwinder)
888 vec_alloc (cfun->eh->ehspec_data.arm_eabi, 64);
889 else
890 vec_alloc (cfun->eh->ehspec_data.other, 64);
892 ehspec_hash_type ehspec (31);
893 ttypes_hash_type ttypes (31);
895 for (i = 1; vec_safe_iterate (cfun->eh->region_array, i, &r); ++i)
897 if (r == NULL)
898 continue;
900 switch (r->type)
902 case ERT_TRY:
903 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
905 /* Whatever type_list is (NULL or true list), we build a list
906 of filters for the region. */
907 c->filter_list = NULL_TREE;
909 if (c->type_list != NULL)
911 /* Get a filter value for each of the types caught and store
912 them in the region's dedicated list. */
913 tree tp_node = c->type_list;
915 for ( ; tp_node; tp_node = TREE_CHAIN (tp_node))
917 int flt
918 = add_ttypes_entry (&ttypes, TREE_VALUE (tp_node));
919 tree flt_node = build_int_cst (integer_type_node, flt);
921 c->filter_list
922 = tree_cons (NULL_TREE, flt_node, c->filter_list);
925 else
927 /* Get a filter value for the NULL list also since it
928 will need an action record anyway. */
929 int flt = add_ttypes_entry (&ttypes, NULL);
930 tree flt_node = build_int_cst (integer_type_node, flt);
932 c->filter_list
933 = tree_cons (NULL_TREE, flt_node, NULL);
936 break;
938 case ERT_ALLOWED_EXCEPTIONS:
939 r->u.allowed.filter
940 = add_ehspec_entry (&ehspec, &ttypes, r->u.allowed.type_list);
941 break;
943 default:
944 break;
949 /* Emit SEQ into basic block just before INSN (that is assumed to be
950 first instruction of some existing BB and return the newly
951 produced block. */
952 static basic_block
953 emit_to_new_bb_before (rtx_insn *seq, rtx insn)
955 rtx_insn *last;
956 basic_block bb;
957 edge e;
958 edge_iterator ei;
960 /* If there happens to be a fallthru edge (possibly created by cleanup_cfg
961 call), we don't want it to go into newly created landing pad or other EH
962 construct. */
963 for (ei = ei_start (BLOCK_FOR_INSN (insn)->preds); (e = ei_safe_edge (ei)); )
964 if (e->flags & EDGE_FALLTHRU)
965 force_nonfallthru (e);
966 else
967 ei_next (&ei);
968 last = emit_insn_before (seq, insn);
969 if (BARRIER_P (last))
970 last = PREV_INSN (last);
971 bb = create_basic_block (seq, last, BLOCK_FOR_INSN (insn)->prev_bb);
972 update_bb_for_insn (bb);
973 bb->flags |= BB_SUPERBLOCK;
974 return bb;
977 /* A subroutine of dw2_build_landing_pads, also used for edge splitting
978 at the rtl level. Emit the code required by the target at a landing
979 pad for the given region. */
981 void
982 expand_dw2_landing_pad_for_region (eh_region region)
984 #ifdef HAVE_exception_receiver
985 if (HAVE_exception_receiver)
986 emit_insn (gen_exception_receiver ());
987 else
988 #endif
989 #ifdef HAVE_nonlocal_goto_receiver
990 if (HAVE_nonlocal_goto_receiver)
991 emit_insn (gen_nonlocal_goto_receiver ());
992 else
993 #endif
994 { /* Nothing */ }
996 if (region->exc_ptr_reg)
997 emit_move_insn (region->exc_ptr_reg,
998 gen_rtx_REG (ptr_mode, EH_RETURN_DATA_REGNO (0)));
999 if (region->filter_reg)
1000 emit_move_insn (region->filter_reg,
1001 gen_rtx_REG (targetm.eh_return_filter_mode (),
1002 EH_RETURN_DATA_REGNO (1)));
1005 /* Expand the extra code needed at landing pads for dwarf2 unwinding. */
1007 static void
1008 dw2_build_landing_pads (void)
1010 int i;
1011 eh_landing_pad lp;
1012 int e_flags = EDGE_FALLTHRU;
1014 /* If we're going to partition blocks, we need to be able to add
1015 new landing pads later, which means that we need to hold on to
1016 the post-landing-pad block. Prevent it from being merged away.
1017 We'll remove this bit after partitioning. */
1018 if (flag_reorder_blocks_and_partition)
1019 e_flags |= EDGE_PRESERVE;
1021 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
1023 basic_block bb;
1024 rtx_insn *seq;
1025 edge e;
1027 if (lp == NULL || lp->post_landing_pad == NULL)
1028 continue;
1030 start_sequence ();
1032 lp->landing_pad = gen_label_rtx ();
1033 emit_label (lp->landing_pad);
1034 LABEL_PRESERVE_P (lp->landing_pad) = 1;
1036 expand_dw2_landing_pad_for_region (lp->region);
1038 seq = get_insns ();
1039 end_sequence ();
1041 bb = emit_to_new_bb_before (seq, label_rtx (lp->post_landing_pad));
1042 e = make_edge (bb, bb->next_bb, e_flags);
1043 e->count = bb->count;
1044 e->probability = REG_BR_PROB_BASE;
1045 if (current_loops)
1047 struct loop *loop = bb->next_bb->loop_father;
1048 /* If we created a pre-header block, add the new block to the
1049 outer loop, otherwise to the loop itself. */
1050 if (bb->next_bb == loop->header)
1051 add_bb_to_loop (bb, loop_outer (loop));
1052 else
1053 add_bb_to_loop (bb, loop);
1059 static vec<int> sjlj_lp_call_site_index;
1061 /* Process all active landing pads. Assign each one a compact dispatch
1062 index, and a call-site index. */
1064 static int
1065 sjlj_assign_call_site_values (void)
1067 action_hash_type ar_hash (31);
1068 int i, disp_index;
1069 eh_landing_pad lp;
1071 vec_alloc (crtl->eh.action_record_data, 64);
1073 disp_index = 0;
1074 call_site_base = 1;
1075 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
1076 if (lp && lp->post_landing_pad)
1078 int action, call_site;
1080 /* First: build the action table. */
1081 action = collect_one_action_chain (&ar_hash, lp->region);
1083 /* Next: assign call-site values. If dwarf2 terms, this would be
1084 the region number assigned by convert_to_eh_region_ranges, but
1085 handles no-action and must-not-throw differently. */
1086 /* Map must-not-throw to otherwise unused call-site index 0. */
1087 if (action == -2)
1088 call_site = 0;
1089 /* Map no-action to otherwise unused call-site index -1. */
1090 else if (action == -1)
1091 call_site = -1;
1092 /* Otherwise, look it up in the table. */
1093 else
1094 call_site = add_call_site (GEN_INT (disp_index), action, 0);
1095 sjlj_lp_call_site_index[i] = call_site;
1097 disp_index++;
1100 return disp_index;
1103 /* Emit code to record the current call-site index before every
1104 insn that can throw. */
1106 static void
1107 sjlj_mark_call_sites (void)
1109 int last_call_site = -2;
1110 rtx_insn *insn;
1111 rtx mem;
1113 for (insn = get_insns (); insn ; insn = NEXT_INSN (insn))
1115 eh_landing_pad lp;
1116 eh_region r;
1117 bool nothrow;
1118 int this_call_site;
1119 rtx_insn *before, *p;
1121 /* Reset value tracking at extended basic block boundaries. */
1122 if (LABEL_P (insn))
1123 last_call_site = -2;
1125 if (! INSN_P (insn))
1126 continue;
1128 nothrow = get_eh_region_and_lp_from_rtx (insn, &r, &lp);
1129 if (nothrow)
1130 continue;
1131 if (lp)
1132 this_call_site = sjlj_lp_call_site_index[lp->index];
1133 else if (r == NULL)
1135 /* Calls (and trapping insns) without notes are outside any
1136 exception handling region in this function. Mark them as
1137 no action. */
1138 this_call_site = -1;
1140 else
1142 gcc_assert (r->type == ERT_MUST_NOT_THROW);
1143 this_call_site = 0;
1146 if (this_call_site != -1)
1147 crtl->uses_eh_lsda = 1;
1149 if (this_call_site == last_call_site)
1150 continue;
1152 /* Don't separate a call from it's argument loads. */
1153 before = insn;
1154 if (CALL_P (insn))
1155 before = find_first_parameter_load (insn, NULL);
1157 start_sequence ();
1158 mem = adjust_address (crtl->eh.sjlj_fc, TYPE_MODE (integer_type_node),
1159 sjlj_fc_call_site_ofs);
1160 emit_move_insn (mem, gen_int_mode (this_call_site, GET_MODE (mem)));
1161 p = get_insns ();
1162 end_sequence ();
1164 emit_insn_before (p, before);
1165 last_call_site = this_call_site;
1169 /* Construct the SjLj_Function_Context. */
1171 static void
1172 sjlj_emit_function_enter (rtx_code_label *dispatch_label)
1174 rtx_insn *fn_begin, *seq;
1175 rtx fc, mem;
1176 bool fn_begin_outside_block;
1177 rtx personality = get_personality_function (current_function_decl);
1179 fc = crtl->eh.sjlj_fc;
1181 start_sequence ();
1183 /* We're storing this libcall's address into memory instead of
1184 calling it directly. Thus, we must call assemble_external_libcall
1185 here, as we can not depend on emit_library_call to do it for us. */
1186 assemble_external_libcall (personality);
1187 mem = adjust_address (fc, Pmode, sjlj_fc_personality_ofs);
1188 emit_move_insn (mem, personality);
1190 mem = adjust_address (fc, Pmode, sjlj_fc_lsda_ofs);
1191 if (crtl->uses_eh_lsda)
1193 char buf[20];
1194 rtx sym;
1196 ASM_GENERATE_INTERNAL_LABEL (buf, "LLSDA", current_function_funcdef_no);
1197 sym = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (buf));
1198 SYMBOL_REF_FLAGS (sym) = SYMBOL_FLAG_LOCAL;
1199 emit_move_insn (mem, sym);
1201 else
1202 emit_move_insn (mem, const0_rtx);
1204 if (dispatch_label)
1206 #ifdef DONT_USE_BUILTIN_SETJMP
1207 rtx x;
1208 x = emit_library_call_value (setjmp_libfunc, NULL_RTX, LCT_RETURNS_TWICE,
1209 TYPE_MODE (integer_type_node), 1,
1210 plus_constant (Pmode, XEXP (fc, 0),
1211 sjlj_fc_jbuf_ofs), Pmode);
1213 emit_cmp_and_jump_insns (x, const0_rtx, NE, 0,
1214 TYPE_MODE (integer_type_node), 0,
1215 dispatch_label, REG_BR_PROB_BASE / 100);
1216 #else
1217 expand_builtin_setjmp_setup (plus_constant (Pmode, XEXP (fc, 0),
1218 sjlj_fc_jbuf_ofs),
1219 dispatch_label);
1220 #endif
1223 emit_library_call (unwind_sjlj_register_libfunc, LCT_NORMAL, VOIDmode,
1224 1, XEXP (fc, 0), Pmode);
1226 seq = get_insns ();
1227 end_sequence ();
1229 /* ??? Instead of doing this at the beginning of the function,
1230 do this in a block that is at loop level 0 and dominates all
1231 can_throw_internal instructions. */
1233 fn_begin_outside_block = true;
1234 for (fn_begin = get_insns (); ; fn_begin = NEXT_INSN (fn_begin))
1235 if (NOTE_P (fn_begin))
1237 if (NOTE_KIND (fn_begin) == NOTE_INSN_FUNCTION_BEG)
1238 break;
1239 else if (NOTE_INSN_BASIC_BLOCK_P (fn_begin))
1240 fn_begin_outside_block = false;
1243 if (fn_begin_outside_block)
1244 insert_insn_on_edge (seq, single_succ_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun)));
1245 else
1246 emit_insn_after (seq, fn_begin);
1249 /* Call back from expand_function_end to know where we should put
1250 the call to unwind_sjlj_unregister_libfunc if needed. */
1252 void
1253 sjlj_emit_function_exit_after (rtx_insn *after)
1255 crtl->eh.sjlj_exit_after = after;
1258 static void
1259 sjlj_emit_function_exit (void)
1261 rtx_insn *seq, *insn;
1263 start_sequence ();
1265 emit_library_call (unwind_sjlj_unregister_libfunc, LCT_NORMAL, VOIDmode,
1266 1, XEXP (crtl->eh.sjlj_fc, 0), Pmode);
1268 seq = get_insns ();
1269 end_sequence ();
1271 /* ??? Really this can be done in any block at loop level 0 that
1272 post-dominates all can_throw_internal instructions. This is
1273 the last possible moment. */
1275 insn = crtl->eh.sjlj_exit_after;
1276 if (LABEL_P (insn))
1277 insn = NEXT_INSN (insn);
1279 emit_insn_after (seq, insn);
1282 static void
1283 sjlj_emit_dispatch_table (rtx_code_label *dispatch_label, int num_dispatch)
1285 machine_mode unwind_word_mode = targetm.unwind_word_mode ();
1286 machine_mode filter_mode = targetm.eh_return_filter_mode ();
1287 eh_landing_pad lp;
1288 rtx mem, fc, before, exc_ptr_reg, filter_reg;
1289 rtx_insn *seq;
1290 rtx first_reachable_label;
1291 basic_block bb;
1292 eh_region r;
1293 edge e;
1294 int i, disp_index;
1295 vec<tree> dispatch_labels = vNULL;
1297 fc = crtl->eh.sjlj_fc;
1299 start_sequence ();
1301 emit_label (dispatch_label);
1303 #ifndef DONT_USE_BUILTIN_SETJMP
1304 expand_builtin_setjmp_receiver (dispatch_label);
1306 /* The caller of expand_builtin_setjmp_receiver is responsible for
1307 making sure that the label doesn't vanish. The only other caller
1308 is the expander for __builtin_setjmp_receiver, which places this
1309 label on the nonlocal_goto_label list. Since we're modeling these
1310 CFG edges more exactly, we can use the forced_labels list instead. */
1311 LABEL_PRESERVE_P (dispatch_label) = 1;
1312 forced_labels
1313 = gen_rtx_INSN_LIST (VOIDmode, dispatch_label, forced_labels);
1314 #endif
1316 /* Load up exc_ptr and filter values from the function context. */
1317 mem = adjust_address (fc, unwind_word_mode, sjlj_fc_data_ofs);
1318 if (unwind_word_mode != ptr_mode)
1320 #ifdef POINTERS_EXTEND_UNSIGNED
1321 mem = convert_memory_address (ptr_mode, mem);
1322 #else
1323 mem = convert_to_mode (ptr_mode, mem, 0);
1324 #endif
1326 exc_ptr_reg = force_reg (ptr_mode, mem);
1328 mem = adjust_address (fc, unwind_word_mode,
1329 sjlj_fc_data_ofs + GET_MODE_SIZE (unwind_word_mode));
1330 if (unwind_word_mode != filter_mode)
1331 mem = convert_to_mode (filter_mode, mem, 0);
1332 filter_reg = force_reg (filter_mode, mem);
1334 /* Jump to one of the directly reachable regions. */
1336 disp_index = 0;
1337 first_reachable_label = NULL;
1339 /* If there's exactly one call site in the function, don't bother
1340 generating a switch statement. */
1341 if (num_dispatch > 1)
1342 dispatch_labels.create (num_dispatch);
1344 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
1345 if (lp && lp->post_landing_pad)
1347 rtx_insn *seq2;
1348 rtx label;
1350 start_sequence ();
1352 lp->landing_pad = dispatch_label;
1354 if (num_dispatch > 1)
1356 tree t_label, case_elt, t;
1358 t_label = create_artificial_label (UNKNOWN_LOCATION);
1359 t = build_int_cst (integer_type_node, disp_index);
1360 case_elt = build_case_label (t, NULL, t_label);
1361 dispatch_labels.quick_push (case_elt);
1362 label = label_rtx (t_label);
1364 else
1365 label = gen_label_rtx ();
1367 if (disp_index == 0)
1368 first_reachable_label = label;
1369 emit_label (label);
1371 r = lp->region;
1372 if (r->exc_ptr_reg)
1373 emit_move_insn (r->exc_ptr_reg, exc_ptr_reg);
1374 if (r->filter_reg)
1375 emit_move_insn (r->filter_reg, filter_reg);
1377 seq2 = get_insns ();
1378 end_sequence ();
1380 before = label_rtx (lp->post_landing_pad);
1381 bb = emit_to_new_bb_before (seq2, before);
1382 e = make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
1383 e->count = bb->count;
1384 e->probability = REG_BR_PROB_BASE;
1385 if (current_loops)
1387 struct loop *loop = bb->next_bb->loop_father;
1388 /* If we created a pre-header block, add the new block to the
1389 outer loop, otherwise to the loop itself. */
1390 if (bb->next_bb == loop->header)
1391 add_bb_to_loop (bb, loop_outer (loop));
1392 else
1393 add_bb_to_loop (bb, loop);
1394 /* ??? For multiple dispatches we will end up with edges
1395 from the loop tree root into this loop, making it a
1396 multiple-entry loop. Discard all affected loops. */
1397 if (num_dispatch > 1)
1399 for (loop = bb->loop_father;
1400 loop_outer (loop); loop = loop_outer (loop))
1401 mark_loop_for_removal (loop);
1405 disp_index++;
1407 gcc_assert (disp_index == num_dispatch);
1409 if (num_dispatch > 1)
1411 rtx disp = adjust_address (fc, TYPE_MODE (integer_type_node),
1412 sjlj_fc_call_site_ofs);
1413 expand_sjlj_dispatch_table (disp, dispatch_labels);
1416 seq = get_insns ();
1417 end_sequence ();
1419 bb = emit_to_new_bb_before (seq, first_reachable_label);
1420 if (num_dispatch == 1)
1422 e = make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
1423 e->count = bb->count;
1424 e->probability = REG_BR_PROB_BASE;
1425 if (current_loops)
1427 struct loop *loop = bb->next_bb->loop_father;
1428 /* If we created a pre-header block, add the new block to the
1429 outer loop, otherwise to the loop itself. */
1430 if (bb->next_bb == loop->header)
1431 add_bb_to_loop (bb, loop_outer (loop));
1432 else
1433 add_bb_to_loop (bb, loop);
1436 else
1438 /* We are not wiring up edges here, but as the dispatcher call
1439 is at function begin simply associate the block with the
1440 outermost (non-)loop. */
1441 if (current_loops)
1442 add_bb_to_loop (bb, current_loops->tree_root);
1446 static void
1447 sjlj_build_landing_pads (void)
1449 int num_dispatch;
1451 num_dispatch = vec_safe_length (cfun->eh->lp_array);
1452 if (num_dispatch == 0)
1453 return;
1454 sjlj_lp_call_site_index.safe_grow_cleared (num_dispatch);
1456 num_dispatch = sjlj_assign_call_site_values ();
1457 if (num_dispatch > 0)
1459 rtx_code_label *dispatch_label = gen_label_rtx ();
1460 int align = STACK_SLOT_ALIGNMENT (sjlj_fc_type_node,
1461 TYPE_MODE (sjlj_fc_type_node),
1462 TYPE_ALIGN (sjlj_fc_type_node));
1463 crtl->eh.sjlj_fc
1464 = assign_stack_local (TYPE_MODE (sjlj_fc_type_node),
1465 int_size_in_bytes (sjlj_fc_type_node),
1466 align);
1468 sjlj_mark_call_sites ();
1469 sjlj_emit_function_enter (dispatch_label);
1470 sjlj_emit_dispatch_table (dispatch_label, num_dispatch);
1471 sjlj_emit_function_exit ();
1474 /* If we do not have any landing pads, we may still need to register a
1475 personality routine and (empty) LSDA to handle must-not-throw regions. */
1476 else if (function_needs_eh_personality (cfun) != eh_personality_none)
1478 int align = STACK_SLOT_ALIGNMENT (sjlj_fc_type_node,
1479 TYPE_MODE (sjlj_fc_type_node),
1480 TYPE_ALIGN (sjlj_fc_type_node));
1481 crtl->eh.sjlj_fc
1482 = assign_stack_local (TYPE_MODE (sjlj_fc_type_node),
1483 int_size_in_bytes (sjlj_fc_type_node),
1484 align);
1486 sjlj_mark_call_sites ();
1487 sjlj_emit_function_enter (NULL);
1488 sjlj_emit_function_exit ();
1491 sjlj_lp_call_site_index.release ();
1494 /* After initial rtl generation, call back to finish generating
1495 exception support code. */
1497 void
1498 finish_eh_generation (void)
1500 basic_block bb;
1502 /* Construct the landing pads. */
1503 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
1504 sjlj_build_landing_pads ();
1505 else
1506 dw2_build_landing_pads ();
1507 break_superblocks ();
1509 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ
1510 /* Kludge for Alpha (see alpha_gp_save_rtx). */
1511 || single_succ_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun))->insns.r)
1512 commit_edge_insertions ();
1514 /* Redirect all EH edges from the post_landing_pad to the landing pad. */
1515 FOR_EACH_BB_FN (bb, cfun)
1517 eh_landing_pad lp;
1518 edge_iterator ei;
1519 edge e;
1521 lp = get_eh_landing_pad_from_rtx (BB_END (bb));
1523 FOR_EACH_EDGE (e, ei, bb->succs)
1524 if (e->flags & EDGE_EH)
1525 break;
1527 /* We should not have generated any new throwing insns during this
1528 pass, and we should not have lost any EH edges, so we only need
1529 to handle two cases here:
1530 (1) reachable handler and an existing edge to post-landing-pad,
1531 (2) no reachable handler and no edge. */
1532 gcc_assert ((lp != NULL) == (e != NULL));
1533 if (lp != NULL)
1535 gcc_assert (BB_HEAD (e->dest) == label_rtx (lp->post_landing_pad));
1537 redirect_edge_succ (e, BLOCK_FOR_INSN (lp->landing_pad));
1538 e->flags |= (CALL_P (BB_END (bb))
1539 ? EDGE_ABNORMAL | EDGE_ABNORMAL_CALL
1540 : EDGE_ABNORMAL);
1545 /* This section handles removing dead code for flow. */
1547 void
1548 remove_eh_landing_pad (eh_landing_pad lp)
1550 eh_landing_pad *pp;
1552 for (pp = &lp->region->landing_pads; *pp != lp; pp = &(*pp)->next_lp)
1553 continue;
1554 *pp = lp->next_lp;
1556 if (lp->post_landing_pad)
1557 EH_LANDING_PAD_NR (lp->post_landing_pad) = 0;
1558 (*cfun->eh->lp_array)[lp->index] = NULL;
1561 /* Splice the EH region at PP from the region tree. */
1563 static void
1564 remove_eh_handler_splicer (eh_region *pp)
1566 eh_region region = *pp;
1567 eh_landing_pad lp;
1569 for (lp = region->landing_pads; lp ; lp = lp->next_lp)
1571 if (lp->post_landing_pad)
1572 EH_LANDING_PAD_NR (lp->post_landing_pad) = 0;
1573 (*cfun->eh->lp_array)[lp->index] = NULL;
1576 if (region->inner)
1578 eh_region p, outer;
1579 outer = region->outer;
1581 *pp = p = region->inner;
1584 p->outer = outer;
1585 pp = &p->next_peer;
1586 p = *pp;
1588 while (p);
1590 *pp = region->next_peer;
1592 (*cfun->eh->region_array)[region->index] = NULL;
1595 /* Splice a single EH region REGION from the region tree.
1597 To unlink REGION, we need to find the pointer to it with a relatively
1598 expensive search in REGION's outer region. If you are going to
1599 remove a number of handlers, using remove_unreachable_eh_regions may
1600 be a better option. */
1602 void
1603 remove_eh_handler (eh_region region)
1605 eh_region *pp, *pp_start, p, outer;
1607 outer = region->outer;
1608 if (outer)
1609 pp_start = &outer->inner;
1610 else
1611 pp_start = &cfun->eh->region_tree;
1612 for (pp = pp_start, p = *pp; p != region; pp = &p->next_peer, p = *pp)
1613 continue;
1615 remove_eh_handler_splicer (pp);
1618 /* Worker for remove_unreachable_eh_regions.
1619 PP is a pointer to the region to start a region tree depth-first
1620 search from. R_REACHABLE is the set of regions that have to be
1621 preserved. */
1623 static void
1624 remove_unreachable_eh_regions_worker (eh_region *pp, sbitmap r_reachable)
1626 while (*pp)
1628 eh_region region = *pp;
1629 remove_unreachable_eh_regions_worker (&region->inner, r_reachable);
1630 if (!bitmap_bit_p (r_reachable, region->index))
1631 remove_eh_handler_splicer (pp);
1632 else
1633 pp = &region->next_peer;
1637 /* Splice all EH regions *not* marked in R_REACHABLE from the region tree.
1638 Do this by traversing the EH tree top-down and splice out regions that
1639 are not marked. By removing regions from the leaves, we avoid costly
1640 searches in the region tree. */
1642 void
1643 remove_unreachable_eh_regions (sbitmap r_reachable)
1645 remove_unreachable_eh_regions_worker (&cfun->eh->region_tree, r_reachable);
1648 /* Invokes CALLBACK for every exception handler landing pad label.
1649 Only used by reload hackery; should not be used by new code. */
1651 void
1652 for_each_eh_label (void (*callback) (rtx))
1654 eh_landing_pad lp;
1655 int i;
1657 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
1659 if (lp)
1661 rtx lab = lp->landing_pad;
1662 if (lab && LABEL_P (lab))
1663 (*callback) (lab);
1668 /* Create the REG_EH_REGION note for INSN, given its ECF_FLAGS for a
1669 call insn.
1671 At the gimple level, we use LP_NR
1672 > 0 : The statement transfers to landing pad LP_NR
1673 = 0 : The statement is outside any EH region
1674 < 0 : The statement is within MUST_NOT_THROW region -LP_NR.
1676 At the rtl level, we use LP_NR
1677 > 0 : The insn transfers to landing pad LP_NR
1678 = 0 : The insn cannot throw
1679 < 0 : The insn is within MUST_NOT_THROW region -LP_NR
1680 = INT_MIN : The insn cannot throw or execute a nonlocal-goto.
1681 missing note: The insn is outside any EH region.
1683 ??? This difference probably ought to be avoided. We could stand
1684 to record nothrow for arbitrary gimple statements, and so avoid
1685 some moderately complex lookups in stmt_could_throw_p. Perhaps
1686 NOTHROW should be mapped on both sides to INT_MIN. Perhaps the
1687 no-nonlocal-goto property should be recorded elsewhere as a bit
1688 on the call_insn directly. Perhaps we should make more use of
1689 attaching the trees to call_insns (reachable via symbol_ref in
1690 direct call cases) and just pull the data out of the trees. */
1692 void
1693 make_reg_eh_region_note (rtx insn, int ecf_flags, int lp_nr)
1695 rtx value;
1696 if (ecf_flags & ECF_NOTHROW)
1697 value = const0_rtx;
1698 else if (lp_nr != 0)
1699 value = GEN_INT (lp_nr);
1700 else
1701 return;
1702 add_reg_note (insn, REG_EH_REGION, value);
1705 /* Create a REG_EH_REGION note for a CALL_INSN that cannot throw
1706 nor perform a non-local goto. Replace the region note if it
1707 already exists. */
1709 void
1710 make_reg_eh_region_note_nothrow_nononlocal (rtx insn)
1712 rtx note = find_reg_note (insn, REG_EH_REGION, NULL_RTX);
1713 rtx intmin = GEN_INT (INT_MIN);
1715 if (note != 0)
1716 XEXP (note, 0) = intmin;
1717 else
1718 add_reg_note (insn, REG_EH_REGION, intmin);
1721 /* Return true if INSN could throw, assuming no REG_EH_REGION note
1722 to the contrary. */
1724 bool
1725 insn_could_throw_p (const_rtx insn)
1727 if (!flag_exceptions)
1728 return false;
1729 if (CALL_P (insn))
1730 return true;
1731 if (INSN_P (insn) && cfun->can_throw_non_call_exceptions)
1732 return may_trap_p (PATTERN (insn));
1733 return false;
1736 /* Copy an REG_EH_REGION note to each insn that might throw beginning
1737 at FIRST and ending at LAST. NOTE_OR_INSN is either the source insn
1738 to look for a note, or the note itself. */
1740 void
1741 copy_reg_eh_region_note_forward (rtx note_or_insn, rtx_insn *first, rtx last)
1743 rtx_insn *insn;
1744 rtx note = note_or_insn;
1746 if (INSN_P (note_or_insn))
1748 note = find_reg_note (note_or_insn, REG_EH_REGION, NULL_RTX);
1749 if (note == NULL)
1750 return;
1752 note = XEXP (note, 0);
1754 for (insn = first; insn != last ; insn = NEXT_INSN (insn))
1755 if (!find_reg_note (insn, REG_EH_REGION, NULL_RTX)
1756 && insn_could_throw_p (insn))
1757 add_reg_note (insn, REG_EH_REGION, note);
1760 /* Likewise, but iterate backward. */
1762 void
1763 copy_reg_eh_region_note_backward (rtx note_or_insn, rtx_insn *last, rtx first)
1765 rtx_insn *insn;
1766 rtx note = note_or_insn;
1768 if (INSN_P (note_or_insn))
1770 note = find_reg_note (note_or_insn, REG_EH_REGION, NULL_RTX);
1771 if (note == NULL)
1772 return;
1774 note = XEXP (note, 0);
1776 for (insn = last; insn != first; insn = PREV_INSN (insn))
1777 if (insn_could_throw_p (insn))
1778 add_reg_note (insn, REG_EH_REGION, note);
1782 /* Extract all EH information from INSN. Return true if the insn
1783 was marked NOTHROW. */
1785 static bool
1786 get_eh_region_and_lp_from_rtx (const_rtx insn, eh_region *pr,
1787 eh_landing_pad *plp)
1789 eh_landing_pad lp = NULL;
1790 eh_region r = NULL;
1791 bool ret = false;
1792 rtx note;
1793 int lp_nr;
1795 if (! INSN_P (insn))
1796 goto egress;
1798 if (NONJUMP_INSN_P (insn)
1799 && GET_CODE (PATTERN (insn)) == SEQUENCE)
1800 insn = XVECEXP (PATTERN (insn), 0, 0);
1802 note = find_reg_note (insn, REG_EH_REGION, NULL_RTX);
1803 if (!note)
1805 ret = !insn_could_throw_p (insn);
1806 goto egress;
1809 lp_nr = INTVAL (XEXP (note, 0));
1810 if (lp_nr == 0 || lp_nr == INT_MIN)
1812 ret = true;
1813 goto egress;
1816 if (lp_nr < 0)
1817 r = (*cfun->eh->region_array)[-lp_nr];
1818 else
1820 lp = (*cfun->eh->lp_array)[lp_nr];
1821 r = lp->region;
1824 egress:
1825 *plp = lp;
1826 *pr = r;
1827 return ret;
1830 /* Return the landing pad to which INSN may go, or NULL if it does not
1831 have a reachable landing pad within this function. */
1833 eh_landing_pad
1834 get_eh_landing_pad_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 lp;
1843 /* Return the region to which INSN may go, or NULL if it does not
1844 have a reachable region within this function. */
1846 eh_region
1847 get_eh_region_from_rtx (const_rtx insn)
1849 eh_landing_pad lp;
1850 eh_region r;
1852 get_eh_region_and_lp_from_rtx (insn, &r, &lp);
1853 return r;
1856 /* Return true if INSN throws and is caught by something in this function. */
1858 bool
1859 can_throw_internal (const_rtx insn)
1861 return get_eh_landing_pad_from_rtx (insn) != NULL;
1864 /* Return true if INSN throws and escapes from the current function. */
1866 bool
1867 can_throw_external (const_rtx insn)
1869 eh_landing_pad lp;
1870 eh_region r;
1871 bool nothrow;
1873 if (! INSN_P (insn))
1874 return false;
1876 if (NONJUMP_INSN_P (insn)
1877 && GET_CODE (PATTERN (insn)) == SEQUENCE)
1879 rtx_sequence *seq = as_a <rtx_sequence *> (PATTERN (insn));
1880 int i, n = seq->len ();
1882 for (i = 0; i < n; i++)
1883 if (can_throw_external (seq->element (i)))
1884 return true;
1886 return false;
1889 nothrow = get_eh_region_and_lp_from_rtx (insn, &r, &lp);
1891 /* If we can't throw, we obviously can't throw external. */
1892 if (nothrow)
1893 return false;
1895 /* If we have an internal landing pad, then we're not external. */
1896 if (lp != NULL)
1897 return false;
1899 /* If we're not within an EH region, then we are external. */
1900 if (r == NULL)
1901 return true;
1903 /* The only thing that ought to be left is MUST_NOT_THROW regions,
1904 which don't always have landing pads. */
1905 gcc_assert (r->type == ERT_MUST_NOT_THROW);
1906 return false;
1909 /* Return true if INSN cannot throw at all. */
1911 bool
1912 insn_nothrow_p (const_rtx insn)
1914 eh_landing_pad lp;
1915 eh_region r;
1917 if (! INSN_P (insn))
1918 return true;
1920 if (NONJUMP_INSN_P (insn)
1921 && GET_CODE (PATTERN (insn)) == SEQUENCE)
1923 rtx_sequence *seq = as_a <rtx_sequence *> (PATTERN (insn));
1924 int i, n = seq->len ();
1926 for (i = 0; i < n; i++)
1927 if (!insn_nothrow_p (seq->element (i)))
1928 return false;
1930 return true;
1933 return get_eh_region_and_lp_from_rtx (insn, &r, &lp);
1936 /* Return true if INSN can perform a non-local goto. */
1937 /* ??? This test is here in this file because it (ab)uses REG_EH_REGION. */
1939 bool
1940 can_nonlocal_goto (const_rtx insn)
1942 if (nonlocal_goto_handler_labels && CALL_P (insn))
1944 rtx note = find_reg_note (insn, REG_EH_REGION, NULL_RTX);
1945 if (!note || INTVAL (XEXP (note, 0)) != INT_MIN)
1946 return true;
1948 return false;
1951 /* Set TREE_NOTHROW and crtl->all_throwers_are_sibcalls. */
1953 static unsigned int
1954 set_nothrow_function_flags (void)
1956 rtx_insn *insn;
1958 crtl->nothrow = 1;
1960 /* Assume crtl->all_throwers_are_sibcalls until we encounter
1961 something that can throw an exception. We specifically exempt
1962 CALL_INSNs that are SIBLING_CALL_P, as these are really jumps,
1963 and can't throw. Most CALL_INSNs are not SIBLING_CALL_P, so this
1964 is optimistic. */
1966 crtl->all_throwers_are_sibcalls = 1;
1968 /* If we don't know that this implementation of the function will
1969 actually be used, then we must not set TREE_NOTHROW, since
1970 callers must not assume that this function does not throw. */
1971 if (TREE_NOTHROW (current_function_decl))
1972 return 0;
1974 if (! flag_exceptions)
1975 return 0;
1977 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
1978 if (can_throw_external (insn))
1980 crtl->nothrow = 0;
1982 if (!CALL_P (insn) || !SIBLING_CALL_P (insn))
1984 crtl->all_throwers_are_sibcalls = 0;
1985 return 0;
1989 if (crtl->nothrow
1990 && (cgraph_node::get (current_function_decl)->get_availability ()
1991 >= AVAIL_AVAILABLE))
1993 struct cgraph_node *node = cgraph_node::get (current_function_decl);
1994 struct cgraph_edge *e;
1995 for (e = node->callers; e; e = e->next_caller)
1996 e->can_throw_external = false;
1997 node->set_nothrow_flag (true);
1999 if (dump_file)
2000 fprintf (dump_file, "Marking function nothrow: %s\n\n",
2001 current_function_name ());
2003 return 0;
2006 namespace {
2008 const pass_data pass_data_set_nothrow_function_flags =
2010 RTL_PASS, /* type */
2011 "nothrow", /* name */
2012 OPTGROUP_NONE, /* optinfo_flags */
2013 TV_NONE, /* tv_id */
2014 0, /* properties_required */
2015 0, /* properties_provided */
2016 0, /* properties_destroyed */
2017 0, /* todo_flags_start */
2018 0, /* todo_flags_finish */
2021 class pass_set_nothrow_function_flags : public rtl_opt_pass
2023 public:
2024 pass_set_nothrow_function_flags (gcc::context *ctxt)
2025 : rtl_opt_pass (pass_data_set_nothrow_function_flags, ctxt)
2028 /* opt_pass methods: */
2029 virtual unsigned int execute (function *)
2031 return set_nothrow_function_flags ();
2034 }; // class pass_set_nothrow_function_flags
2036 } // anon namespace
2038 rtl_opt_pass *
2039 make_pass_set_nothrow_function_flags (gcc::context *ctxt)
2041 return new pass_set_nothrow_function_flags (ctxt);
2045 /* Various hooks for unwind library. */
2047 /* Expand the EH support builtin functions:
2048 __builtin_eh_pointer and __builtin_eh_filter. */
2050 static eh_region
2051 expand_builtin_eh_common (tree region_nr_t)
2053 HOST_WIDE_INT region_nr;
2054 eh_region region;
2056 gcc_assert (tree_fits_shwi_p (region_nr_t));
2057 region_nr = tree_to_shwi (region_nr_t);
2059 region = (*cfun->eh->region_array)[region_nr];
2061 /* ??? We shouldn't have been able to delete a eh region without
2062 deleting all the code that depended on it. */
2063 gcc_assert (region != NULL);
2065 return region;
2068 /* Expand to the exc_ptr value from the given eh region. */
2071 expand_builtin_eh_pointer (tree exp)
2073 eh_region region
2074 = expand_builtin_eh_common (CALL_EXPR_ARG (exp, 0));
2075 if (region->exc_ptr_reg == NULL)
2076 region->exc_ptr_reg = gen_reg_rtx (ptr_mode);
2077 return region->exc_ptr_reg;
2080 /* Expand to the filter value from the given eh region. */
2083 expand_builtin_eh_filter (tree exp)
2085 eh_region region
2086 = expand_builtin_eh_common (CALL_EXPR_ARG (exp, 0));
2087 if (region->filter_reg == NULL)
2088 region->filter_reg = gen_reg_rtx (targetm.eh_return_filter_mode ());
2089 return region->filter_reg;
2092 /* Copy the exc_ptr and filter values from one landing pad's registers
2093 to another. This is used to inline the resx statement. */
2096 expand_builtin_eh_copy_values (tree exp)
2098 eh_region dst
2099 = expand_builtin_eh_common (CALL_EXPR_ARG (exp, 0));
2100 eh_region src
2101 = expand_builtin_eh_common (CALL_EXPR_ARG (exp, 1));
2102 machine_mode fmode = targetm.eh_return_filter_mode ();
2104 if (dst->exc_ptr_reg == NULL)
2105 dst->exc_ptr_reg = gen_reg_rtx (ptr_mode);
2106 if (src->exc_ptr_reg == NULL)
2107 src->exc_ptr_reg = gen_reg_rtx (ptr_mode);
2109 if (dst->filter_reg == NULL)
2110 dst->filter_reg = gen_reg_rtx (fmode);
2111 if (src->filter_reg == NULL)
2112 src->filter_reg = gen_reg_rtx (fmode);
2114 emit_move_insn (dst->exc_ptr_reg, src->exc_ptr_reg);
2115 emit_move_insn (dst->filter_reg, src->filter_reg);
2117 return const0_rtx;
2120 /* Do any necessary initialization to access arbitrary stack frames.
2121 On the SPARC, this means flushing the register windows. */
2123 void
2124 expand_builtin_unwind_init (void)
2126 /* Set this so all the registers get saved in our frame; we need to be
2127 able to copy the saved values for any registers from frames we unwind. */
2128 crtl->saves_all_registers = 1;
2130 #ifdef SETUP_FRAME_ADDRESSES
2131 SETUP_FRAME_ADDRESSES ();
2132 #endif
2135 /* Map a non-negative number to an eh return data register number; expands
2136 to -1 if no return data register is associated with the input number.
2137 At least the inputs 0 and 1 must be mapped; the target may provide more. */
2140 expand_builtin_eh_return_data_regno (tree exp)
2142 tree which = CALL_EXPR_ARG (exp, 0);
2143 unsigned HOST_WIDE_INT iwhich;
2145 if (TREE_CODE (which) != INTEGER_CST)
2147 error ("argument of %<__builtin_eh_return_regno%> must be constant");
2148 return constm1_rtx;
2151 iwhich = tree_to_uhwi (which);
2152 iwhich = EH_RETURN_DATA_REGNO (iwhich);
2153 if (iwhich == INVALID_REGNUM)
2154 return constm1_rtx;
2156 #ifdef DWARF_FRAME_REGNUM
2157 iwhich = DWARF_FRAME_REGNUM (iwhich);
2158 #else
2159 iwhich = DBX_REGISTER_NUMBER (iwhich);
2160 #endif
2162 return GEN_INT (iwhich);
2165 /* Given a value extracted from the return address register or stack slot,
2166 return the actual address encoded in that value. */
2169 expand_builtin_extract_return_addr (tree addr_tree)
2171 rtx addr = expand_expr (addr_tree, NULL_RTX, Pmode, EXPAND_NORMAL);
2173 if (GET_MODE (addr) != Pmode
2174 && GET_MODE (addr) != VOIDmode)
2176 #ifdef POINTERS_EXTEND_UNSIGNED
2177 addr = convert_memory_address (Pmode, addr);
2178 #else
2179 addr = convert_to_mode (Pmode, addr, 0);
2180 #endif
2183 /* First mask out any unwanted bits. */
2184 #ifdef MASK_RETURN_ADDR
2185 expand_and (Pmode, addr, MASK_RETURN_ADDR, addr);
2186 #endif
2188 /* Then adjust to find the real return address. */
2189 #if defined (RETURN_ADDR_OFFSET)
2190 addr = plus_constant (Pmode, addr, RETURN_ADDR_OFFSET);
2191 #endif
2193 return addr;
2196 /* Given an actual address in addr_tree, do any necessary encoding
2197 and return the value to be stored in the return address register or
2198 stack slot so the epilogue will return to that address. */
2201 expand_builtin_frob_return_addr (tree addr_tree)
2203 rtx addr = expand_expr (addr_tree, NULL_RTX, ptr_mode, EXPAND_NORMAL);
2205 addr = convert_memory_address (Pmode, addr);
2207 #ifdef RETURN_ADDR_OFFSET
2208 addr = force_reg (Pmode, addr);
2209 addr = plus_constant (Pmode, addr, -RETURN_ADDR_OFFSET);
2210 #endif
2212 return addr;
2215 /* Set up the epilogue with the magic bits we'll need to return to the
2216 exception handler. */
2218 void
2219 expand_builtin_eh_return (tree stackadj_tree ATTRIBUTE_UNUSED,
2220 tree handler_tree)
2222 rtx tmp;
2224 #ifdef EH_RETURN_STACKADJ_RTX
2225 tmp = expand_expr (stackadj_tree, crtl->eh.ehr_stackadj,
2226 VOIDmode, EXPAND_NORMAL);
2227 tmp = convert_memory_address (Pmode, tmp);
2228 if (!crtl->eh.ehr_stackadj)
2229 crtl->eh.ehr_stackadj = copy_to_reg (tmp);
2230 else if (tmp != crtl->eh.ehr_stackadj)
2231 emit_move_insn (crtl->eh.ehr_stackadj, tmp);
2232 #endif
2234 tmp = expand_expr (handler_tree, crtl->eh.ehr_handler,
2235 VOIDmode, EXPAND_NORMAL);
2236 tmp = convert_memory_address (Pmode, tmp);
2237 if (!crtl->eh.ehr_handler)
2238 crtl->eh.ehr_handler = copy_to_reg (tmp);
2239 else if (tmp != crtl->eh.ehr_handler)
2240 emit_move_insn (crtl->eh.ehr_handler, tmp);
2242 if (!crtl->eh.ehr_label)
2243 crtl->eh.ehr_label = gen_label_rtx ();
2244 emit_jump (crtl->eh.ehr_label);
2247 /* Expand __builtin_eh_return. This exit path from the function loads up
2248 the eh return data registers, adjusts the stack, and branches to a
2249 given PC other than the normal return address. */
2251 void
2252 expand_eh_return (void)
2254 rtx_code_label *around_label;
2256 if (! crtl->eh.ehr_label)
2257 return;
2259 crtl->calls_eh_return = 1;
2261 #ifdef EH_RETURN_STACKADJ_RTX
2262 emit_move_insn (EH_RETURN_STACKADJ_RTX, const0_rtx);
2263 #endif
2265 around_label = gen_label_rtx ();
2266 emit_jump (around_label);
2268 emit_label (crtl->eh.ehr_label);
2269 clobber_return_register ();
2271 #ifdef EH_RETURN_STACKADJ_RTX
2272 emit_move_insn (EH_RETURN_STACKADJ_RTX, crtl->eh.ehr_stackadj);
2273 #endif
2275 #ifdef HAVE_eh_return
2276 if (HAVE_eh_return)
2277 emit_insn (gen_eh_return (crtl->eh.ehr_handler));
2278 else
2279 #endif
2281 #ifdef EH_RETURN_HANDLER_RTX
2282 emit_move_insn (EH_RETURN_HANDLER_RTX, crtl->eh.ehr_handler);
2283 #else
2284 error ("__builtin_eh_return not supported on this target");
2285 #endif
2288 emit_label (around_label);
2291 /* Convert a ptr_mode address ADDR_TREE to a Pmode address controlled by
2292 POINTERS_EXTEND_UNSIGNED and return it. */
2295 expand_builtin_extend_pointer (tree addr_tree)
2297 rtx addr = expand_expr (addr_tree, NULL_RTX, ptr_mode, EXPAND_NORMAL);
2298 int extend;
2300 #ifdef POINTERS_EXTEND_UNSIGNED
2301 extend = POINTERS_EXTEND_UNSIGNED;
2302 #else
2303 /* The previous EH code did an unsigned extend by default, so we do this also
2304 for consistency. */
2305 extend = 1;
2306 #endif
2308 return convert_modes (targetm.unwind_word_mode (), ptr_mode, addr, extend);
2311 static int
2312 add_action_record (action_hash_type *ar_hash, int filter, int next)
2314 struct action_record **slot, *new_ar, tmp;
2316 tmp.filter = filter;
2317 tmp.next = next;
2318 slot = ar_hash->find_slot (&tmp, INSERT);
2320 if ((new_ar = *slot) == NULL)
2322 new_ar = XNEW (struct action_record);
2323 new_ar->offset = crtl->eh.action_record_data->length () + 1;
2324 new_ar->filter = filter;
2325 new_ar->next = next;
2326 *slot = new_ar;
2328 /* The filter value goes in untouched. The link to the next
2329 record is a "self-relative" byte offset, or zero to indicate
2330 that there is no next record. So convert the absolute 1 based
2331 indices we've been carrying around into a displacement. */
2333 push_sleb128 (&crtl->eh.action_record_data, filter);
2334 if (next)
2335 next -= crtl->eh.action_record_data->length () + 1;
2336 push_sleb128 (&crtl->eh.action_record_data, next);
2339 return new_ar->offset;
2342 static int
2343 collect_one_action_chain (action_hash_type *ar_hash, eh_region region)
2345 int next;
2347 /* If we've reached the top of the region chain, then we have
2348 no actions, and require no landing pad. */
2349 if (region == NULL)
2350 return -1;
2352 switch (region->type)
2354 case ERT_CLEANUP:
2356 eh_region r;
2357 /* A cleanup adds a zero filter to the beginning of the chain, but
2358 there are special cases to look out for. If there are *only*
2359 cleanups along a path, then it compresses to a zero action.
2360 Further, if there are multiple cleanups along a path, we only
2361 need to represent one of them, as that is enough to trigger
2362 entry to the landing pad at runtime. */
2363 next = collect_one_action_chain (ar_hash, region->outer);
2364 if (next <= 0)
2365 return 0;
2366 for (r = region->outer; r ; r = r->outer)
2367 if (r->type == ERT_CLEANUP)
2368 return next;
2369 return add_action_record (ar_hash, 0, next);
2372 case ERT_TRY:
2374 eh_catch c;
2376 /* Process the associated catch regions in reverse order.
2377 If there's a catch-all handler, then we don't need to
2378 search outer regions. Use a magic -3 value to record
2379 that we haven't done the outer search. */
2380 next = -3;
2381 for (c = region->u.eh_try.last_catch; c ; c = c->prev_catch)
2383 if (c->type_list == NULL)
2385 /* Retrieve the filter from the head of the filter list
2386 where we have stored it (see assign_filter_values). */
2387 int filter = TREE_INT_CST_LOW (TREE_VALUE (c->filter_list));
2388 next = add_action_record (ar_hash, filter, 0);
2390 else
2392 /* Once the outer search is done, trigger an action record for
2393 each filter we have. */
2394 tree flt_node;
2396 if (next == -3)
2398 next = collect_one_action_chain (ar_hash, region->outer);
2400 /* If there is no next action, terminate the chain. */
2401 if (next == -1)
2402 next = 0;
2403 /* If all outer actions are cleanups or must_not_throw,
2404 we'll have no action record for it, since we had wanted
2405 to encode these states in the call-site record directly.
2406 Add a cleanup action to the chain to catch these. */
2407 else if (next <= 0)
2408 next = add_action_record (ar_hash, 0, 0);
2411 flt_node = c->filter_list;
2412 for (; flt_node; flt_node = TREE_CHAIN (flt_node))
2414 int filter = TREE_INT_CST_LOW (TREE_VALUE (flt_node));
2415 next = add_action_record (ar_hash, filter, next);
2419 return next;
2422 case ERT_ALLOWED_EXCEPTIONS:
2423 /* An exception specification adds its filter to the
2424 beginning of the chain. */
2425 next = collect_one_action_chain (ar_hash, region->outer);
2427 /* If there is no next action, terminate the chain. */
2428 if (next == -1)
2429 next = 0;
2430 /* If all outer actions are cleanups or must_not_throw,
2431 we'll have no action record for it, since we had wanted
2432 to encode these states in the call-site record directly.
2433 Add a cleanup action to the chain to catch these. */
2434 else if (next <= 0)
2435 next = add_action_record (ar_hash, 0, 0);
2437 return add_action_record (ar_hash, region->u.allowed.filter, next);
2439 case ERT_MUST_NOT_THROW:
2440 /* A must-not-throw region with no inner handlers or cleanups
2441 requires no call-site entry. Note that this differs from
2442 the no handler or cleanup case in that we do require an lsda
2443 to be generated. Return a magic -2 value to record this. */
2444 return -2;
2447 gcc_unreachable ();
2450 static int
2451 add_call_site (rtx landing_pad, int action, int section)
2453 call_site_record record;
2455 record = ggc_alloc<call_site_record_d> ();
2456 record->landing_pad = landing_pad;
2457 record->action = action;
2459 vec_safe_push (crtl->eh.call_site_record_v[section], record);
2461 return call_site_base + crtl->eh.call_site_record_v[section]->length () - 1;
2464 static rtx_note *
2465 emit_note_eh_region_end (rtx_insn *insn)
2467 rtx_insn *next = NEXT_INSN (insn);
2469 /* Make sure we do not split a call and its corresponding
2470 CALL_ARG_LOCATION note. */
2471 if (next && NOTE_P (next)
2472 && NOTE_KIND (next) == NOTE_INSN_CALL_ARG_LOCATION)
2473 insn = next;
2475 return emit_note_after (NOTE_INSN_EH_REGION_END, insn);
2478 /* Turn REG_EH_REGION notes back into NOTE_INSN_EH_REGION notes.
2479 The new note numbers will not refer to region numbers, but
2480 instead to call site entries. */
2482 static unsigned int
2483 convert_to_eh_region_ranges (void)
2485 rtx insn;
2486 rtx_insn *iter;
2487 rtx_note *note;
2488 action_hash_type ar_hash (31);
2489 int last_action = -3;
2490 rtx_insn *last_action_insn = NULL;
2491 rtx last_landing_pad = NULL_RTX;
2492 rtx_insn *first_no_action_insn = NULL;
2493 int call_site = 0;
2494 int cur_sec = 0;
2495 rtx section_switch_note = NULL_RTX;
2496 rtx_insn *first_no_action_insn_before_switch = NULL;
2497 rtx_insn *last_no_action_insn_before_switch = NULL;
2498 int saved_call_site_base = call_site_base;
2500 vec_alloc (crtl->eh.action_record_data, 64);
2502 for (iter = get_insns (); iter ; iter = NEXT_INSN (iter))
2503 if (INSN_P (iter))
2505 eh_landing_pad lp;
2506 eh_region region;
2507 bool nothrow;
2508 int this_action;
2509 rtx this_landing_pad;
2511 insn = iter;
2512 if (NONJUMP_INSN_P (insn)
2513 && GET_CODE (PATTERN (insn)) == SEQUENCE)
2514 insn = XVECEXP (PATTERN (insn), 0, 0);
2516 nothrow = get_eh_region_and_lp_from_rtx (insn, &region, &lp);
2517 if (nothrow)
2518 continue;
2519 if (region)
2520 this_action = collect_one_action_chain (&ar_hash, region);
2521 else
2522 this_action = -1;
2524 /* Existence of catch handlers, or must-not-throw regions
2525 implies that an lsda is needed (even if empty). */
2526 if (this_action != -1)
2527 crtl->uses_eh_lsda = 1;
2529 /* Delay creation of region notes for no-action regions
2530 until we're sure that an lsda will be required. */
2531 else if (last_action == -3)
2533 first_no_action_insn = iter;
2534 last_action = -1;
2537 if (this_action >= 0)
2538 this_landing_pad = lp->landing_pad;
2539 else
2540 this_landing_pad = NULL_RTX;
2542 /* Differing actions or landing pads implies a change in call-site
2543 info, which implies some EH_REGION note should be emitted. */
2544 if (last_action != this_action
2545 || last_landing_pad != this_landing_pad)
2547 /* If there is a queued no-action region in the other section
2548 with hot/cold partitioning, emit it now. */
2549 if (first_no_action_insn_before_switch)
2551 gcc_assert (this_action != -1
2552 && last_action == (first_no_action_insn
2553 ? -1 : -3));
2554 call_site = add_call_site (NULL_RTX, 0, 0);
2555 note = emit_note_before (NOTE_INSN_EH_REGION_BEG,
2556 first_no_action_insn_before_switch);
2557 NOTE_EH_HANDLER (note) = call_site;
2558 note
2559 = emit_note_eh_region_end (last_no_action_insn_before_switch);
2560 NOTE_EH_HANDLER (note) = call_site;
2561 gcc_assert (last_action != -3
2562 || (last_action_insn
2563 == last_no_action_insn_before_switch));
2564 first_no_action_insn_before_switch = NULL;
2565 last_no_action_insn_before_switch = NULL;
2566 call_site_base++;
2568 /* If we'd not seen a previous action (-3) or the previous
2569 action was must-not-throw (-2), then we do not need an
2570 end note. */
2571 if (last_action >= -1)
2573 /* If we delayed the creation of the begin, do it now. */
2574 if (first_no_action_insn)
2576 call_site = add_call_site (NULL_RTX, 0, cur_sec);
2577 note = emit_note_before (NOTE_INSN_EH_REGION_BEG,
2578 first_no_action_insn);
2579 NOTE_EH_HANDLER (note) = call_site;
2580 first_no_action_insn = NULL;
2583 note = emit_note_eh_region_end (last_action_insn);
2584 NOTE_EH_HANDLER (note) = call_site;
2587 /* If the new action is must-not-throw, then no region notes
2588 are created. */
2589 if (this_action >= -1)
2591 call_site = add_call_site (this_landing_pad,
2592 this_action < 0 ? 0 : this_action,
2593 cur_sec);
2594 note = emit_note_before (NOTE_INSN_EH_REGION_BEG, iter);
2595 NOTE_EH_HANDLER (note) = call_site;
2598 last_action = this_action;
2599 last_landing_pad = this_landing_pad;
2601 last_action_insn = iter;
2603 else if (NOTE_P (iter)
2604 && NOTE_KIND (iter) == NOTE_INSN_SWITCH_TEXT_SECTIONS)
2606 gcc_assert (section_switch_note == NULL_RTX);
2607 gcc_assert (flag_reorder_blocks_and_partition);
2608 section_switch_note = iter;
2609 if (first_no_action_insn)
2611 first_no_action_insn_before_switch = first_no_action_insn;
2612 last_no_action_insn_before_switch = last_action_insn;
2613 first_no_action_insn = NULL;
2614 gcc_assert (last_action == -1);
2615 last_action = -3;
2617 /* Force closing of current EH region before section switch and
2618 opening a new one afterwards. */
2619 else if (last_action != -3)
2620 last_landing_pad = pc_rtx;
2621 if (crtl->eh.call_site_record_v[cur_sec])
2622 call_site_base += crtl->eh.call_site_record_v[cur_sec]->length ();
2623 cur_sec++;
2624 gcc_assert (crtl->eh.call_site_record_v[cur_sec] == NULL);
2625 vec_alloc (crtl->eh.call_site_record_v[cur_sec], 10);
2628 if (last_action >= -1 && ! first_no_action_insn)
2630 note = emit_note_eh_region_end (last_action_insn);
2631 NOTE_EH_HANDLER (note) = call_site;
2634 call_site_base = saved_call_site_base;
2636 return 0;
2639 namespace {
2641 const pass_data pass_data_convert_to_eh_region_ranges =
2643 RTL_PASS, /* type */
2644 "eh_ranges", /* name */
2645 OPTGROUP_NONE, /* optinfo_flags */
2646 TV_NONE, /* tv_id */
2647 0, /* properties_required */
2648 0, /* properties_provided */
2649 0, /* properties_destroyed */
2650 0, /* todo_flags_start */
2651 0, /* todo_flags_finish */
2654 class pass_convert_to_eh_region_ranges : public rtl_opt_pass
2656 public:
2657 pass_convert_to_eh_region_ranges (gcc::context *ctxt)
2658 : rtl_opt_pass (pass_data_convert_to_eh_region_ranges, ctxt)
2661 /* opt_pass methods: */
2662 virtual bool gate (function *);
2663 virtual unsigned int execute (function *)
2665 return convert_to_eh_region_ranges ();
2668 }; // class pass_convert_to_eh_region_ranges
2670 bool
2671 pass_convert_to_eh_region_ranges::gate (function *)
2673 /* Nothing to do for SJLJ exceptions or if no regions created. */
2674 if (cfun->eh->region_tree == NULL)
2675 return false;
2676 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
2677 return false;
2678 return true;
2681 } // anon namespace
2683 rtl_opt_pass *
2684 make_pass_convert_to_eh_region_ranges (gcc::context *ctxt)
2686 return new pass_convert_to_eh_region_ranges (ctxt);
2689 static void
2690 push_uleb128 (vec<uchar, va_gc> **data_area, unsigned int value)
2694 unsigned char byte = value & 0x7f;
2695 value >>= 7;
2696 if (value)
2697 byte |= 0x80;
2698 vec_safe_push (*data_area, byte);
2700 while (value);
2703 static void
2704 push_sleb128 (vec<uchar, va_gc> **data_area, int value)
2706 unsigned char byte;
2707 int more;
2711 byte = value & 0x7f;
2712 value >>= 7;
2713 more = ! ((value == 0 && (byte & 0x40) == 0)
2714 || (value == -1 && (byte & 0x40) != 0));
2715 if (more)
2716 byte |= 0x80;
2717 vec_safe_push (*data_area, byte);
2719 while (more);
2723 #ifndef HAVE_AS_LEB128
2724 static int
2725 dw2_size_of_call_site_table (int section)
2727 int n = vec_safe_length (crtl->eh.call_site_record_v[section]);
2728 int size = n * (4 + 4 + 4);
2729 int i;
2731 for (i = 0; i < n; ++i)
2733 struct call_site_record_d *cs =
2734 (*crtl->eh.call_site_record_v[section])[i];
2735 size += size_of_uleb128 (cs->action);
2738 return size;
2741 static int
2742 sjlj_size_of_call_site_table (void)
2744 int n = vec_safe_length (crtl->eh.call_site_record_v[0]);
2745 int size = 0;
2746 int i;
2748 for (i = 0; i < n; ++i)
2750 struct call_site_record_d *cs =
2751 (*crtl->eh.call_site_record_v[0])[i];
2752 size += size_of_uleb128 (INTVAL (cs->landing_pad));
2753 size += size_of_uleb128 (cs->action);
2756 return size;
2758 #endif
2760 static void
2761 dw2_output_call_site_table (int cs_format, int section)
2763 int n = vec_safe_length (crtl->eh.call_site_record_v[section]);
2764 int i;
2765 const char *begin;
2767 if (section == 0)
2768 begin = current_function_func_begin_label;
2769 else if (first_function_block_is_cold)
2770 begin = crtl->subsections.hot_section_label;
2771 else
2772 begin = crtl->subsections.cold_section_label;
2774 for (i = 0; i < n; ++i)
2776 struct call_site_record_d *cs = (*crtl->eh.call_site_record_v[section])[i];
2777 char reg_start_lab[32];
2778 char reg_end_lab[32];
2779 char landing_pad_lab[32];
2781 ASM_GENERATE_INTERNAL_LABEL (reg_start_lab, "LEHB", call_site_base + i);
2782 ASM_GENERATE_INTERNAL_LABEL (reg_end_lab, "LEHE", call_site_base + i);
2784 if (cs->landing_pad)
2785 ASM_GENERATE_INTERNAL_LABEL (landing_pad_lab, "L",
2786 CODE_LABEL_NUMBER (cs->landing_pad));
2788 /* ??? Perhaps use insn length scaling if the assembler supports
2789 generic arithmetic. */
2790 /* ??? Perhaps use attr_length to choose data1 or data2 instead of
2791 data4 if the function is small enough. */
2792 if (cs_format == DW_EH_PE_uleb128)
2794 dw2_asm_output_delta_uleb128 (reg_start_lab, begin,
2795 "region %d start", i);
2796 dw2_asm_output_delta_uleb128 (reg_end_lab, reg_start_lab,
2797 "length");
2798 if (cs->landing_pad)
2799 dw2_asm_output_delta_uleb128 (landing_pad_lab, begin,
2800 "landing pad");
2801 else
2802 dw2_asm_output_data_uleb128 (0, "landing pad");
2804 else
2806 dw2_asm_output_delta (4, reg_start_lab, begin,
2807 "region %d start", i);
2808 dw2_asm_output_delta (4, reg_end_lab, reg_start_lab, "length");
2809 if (cs->landing_pad)
2810 dw2_asm_output_delta (4, landing_pad_lab, begin,
2811 "landing pad");
2812 else
2813 dw2_asm_output_data (4, 0, "landing pad");
2815 dw2_asm_output_data_uleb128 (cs->action, "action");
2818 call_site_base += n;
2821 static void
2822 sjlj_output_call_site_table (void)
2824 int n = vec_safe_length (crtl->eh.call_site_record_v[0]);
2825 int i;
2827 for (i = 0; i < n; ++i)
2829 struct call_site_record_d *cs = (*crtl->eh.call_site_record_v[0])[i];
2831 dw2_asm_output_data_uleb128 (INTVAL (cs->landing_pad),
2832 "region %d landing pad", i);
2833 dw2_asm_output_data_uleb128 (cs->action, "action");
2836 call_site_base += n;
2839 /* Switch to the section that should be used for exception tables. */
2841 static void
2842 switch_to_exception_section (const char * ARG_UNUSED (fnname))
2844 section *s;
2846 if (exception_section)
2847 s = exception_section;
2848 else
2850 /* Compute the section and cache it into exception_section,
2851 unless it depends on the function name. */
2852 if (targetm_common.have_named_sections)
2854 int flags;
2856 if (EH_TABLES_CAN_BE_READ_ONLY)
2858 int tt_format =
2859 ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/1);
2860 flags = ((! flag_pic
2861 || ((tt_format & 0x70) != DW_EH_PE_absptr
2862 && (tt_format & 0x70) != DW_EH_PE_aligned))
2863 ? 0 : SECTION_WRITE);
2865 else
2866 flags = SECTION_WRITE;
2868 #ifdef HAVE_LD_EH_GC_SECTIONS
2869 if (flag_function_sections
2870 || (DECL_COMDAT_GROUP (current_function_decl) && HAVE_COMDAT_GROUP))
2872 char *section_name = XNEWVEC (char, strlen (fnname) + 32);
2873 /* The EH table must match the code section, so only mark
2874 it linkonce if we have COMDAT groups to tie them together. */
2875 if (DECL_COMDAT_GROUP (current_function_decl) && HAVE_COMDAT_GROUP)
2876 flags |= SECTION_LINKONCE;
2877 sprintf (section_name, ".gcc_except_table.%s", fnname);
2878 s = get_section (section_name, flags, current_function_decl);
2879 free (section_name);
2881 else
2882 #endif
2883 exception_section
2884 = s = get_section (".gcc_except_table", flags, NULL);
2886 else
2887 exception_section
2888 = s = flag_pic ? data_section : readonly_data_section;
2891 switch_to_section (s);
2895 /* Output a reference from an exception table to the type_info object TYPE.
2896 TT_FORMAT and TT_FORMAT_SIZE describe the DWARF encoding method used for
2897 the value. */
2899 static void
2900 output_ttype (tree type, int tt_format, int tt_format_size)
2902 rtx value;
2903 bool is_public = true;
2905 if (type == NULL_TREE)
2906 value = const0_rtx;
2907 else
2909 /* FIXME lto. pass_ipa_free_lang_data changes all types to
2910 runtime types so TYPE should already be a runtime type
2911 reference. When pass_ipa_free_lang data is made a default
2912 pass, we can then remove the call to lookup_type_for_runtime
2913 below. */
2914 if (TYPE_P (type))
2915 type = lookup_type_for_runtime (type);
2917 value = expand_expr (type, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
2919 /* Let cgraph know that the rtti decl is used. Not all of the
2920 paths below go through assemble_integer, which would take
2921 care of this for us. */
2922 STRIP_NOPS (type);
2923 if (TREE_CODE (type) == ADDR_EXPR)
2925 type = TREE_OPERAND (type, 0);
2926 if (TREE_CODE (type) == VAR_DECL)
2927 is_public = TREE_PUBLIC (type);
2929 else
2930 gcc_assert (TREE_CODE (type) == INTEGER_CST);
2933 /* Allow the target to override the type table entry format. */
2934 if (targetm.asm_out.ttype (value))
2935 return;
2937 if (tt_format == DW_EH_PE_absptr || tt_format == DW_EH_PE_aligned)
2938 assemble_integer (value, tt_format_size,
2939 tt_format_size * BITS_PER_UNIT, 1);
2940 else
2941 dw2_asm_output_encoded_addr_rtx (tt_format, value, is_public, NULL);
2944 static void
2945 output_one_function_exception_table (int section)
2947 int tt_format, cs_format, lp_format, i;
2948 #ifdef HAVE_AS_LEB128
2949 char ttype_label[32];
2950 char cs_after_size_label[32];
2951 char cs_end_label[32];
2952 #else
2953 int call_site_len;
2954 #endif
2955 int have_tt_data;
2956 int tt_format_size = 0;
2958 have_tt_data = (vec_safe_length (cfun->eh->ttype_data)
2959 || (targetm.arm_eabi_unwinder
2960 ? vec_safe_length (cfun->eh->ehspec_data.arm_eabi)
2961 : vec_safe_length (cfun->eh->ehspec_data.other)));
2963 /* Indicate the format of the @TType entries. */
2964 if (! have_tt_data)
2965 tt_format = DW_EH_PE_omit;
2966 else
2968 tt_format = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/1);
2969 #ifdef HAVE_AS_LEB128
2970 ASM_GENERATE_INTERNAL_LABEL (ttype_label,
2971 section ? "LLSDATTC" : "LLSDATT",
2972 current_function_funcdef_no);
2973 #endif
2974 tt_format_size = size_of_encoded_value (tt_format);
2976 assemble_align (tt_format_size * BITS_PER_UNIT);
2979 targetm.asm_out.internal_label (asm_out_file, section ? "LLSDAC" : "LLSDA",
2980 current_function_funcdef_no);
2982 /* The LSDA header. */
2984 /* Indicate the format of the landing pad start pointer. An omitted
2985 field implies @LPStart == @Start. */
2986 /* Currently we always put @LPStart == @Start. This field would
2987 be most useful in moving the landing pads completely out of
2988 line to another section, but it could also be used to minimize
2989 the size of uleb128 landing pad offsets. */
2990 lp_format = DW_EH_PE_omit;
2991 dw2_asm_output_data (1, lp_format, "@LPStart format (%s)",
2992 eh_data_format_name (lp_format));
2994 /* @LPStart pointer would go here. */
2996 dw2_asm_output_data (1, tt_format, "@TType format (%s)",
2997 eh_data_format_name (tt_format));
2999 #ifndef HAVE_AS_LEB128
3000 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
3001 call_site_len = sjlj_size_of_call_site_table ();
3002 else
3003 call_site_len = dw2_size_of_call_site_table (section);
3004 #endif
3006 /* A pc-relative 4-byte displacement to the @TType data. */
3007 if (have_tt_data)
3009 #ifdef HAVE_AS_LEB128
3010 char ttype_after_disp_label[32];
3011 ASM_GENERATE_INTERNAL_LABEL (ttype_after_disp_label,
3012 section ? "LLSDATTDC" : "LLSDATTD",
3013 current_function_funcdef_no);
3014 dw2_asm_output_delta_uleb128 (ttype_label, ttype_after_disp_label,
3015 "@TType base offset");
3016 ASM_OUTPUT_LABEL (asm_out_file, ttype_after_disp_label);
3017 #else
3018 /* Ug. Alignment queers things. */
3019 unsigned int before_disp, after_disp, last_disp, disp;
3021 before_disp = 1 + 1;
3022 after_disp = (1 + size_of_uleb128 (call_site_len)
3023 + call_site_len
3024 + vec_safe_length (crtl->eh.action_record_data)
3025 + (vec_safe_length (cfun->eh->ttype_data)
3026 * tt_format_size));
3028 disp = after_disp;
3031 unsigned int disp_size, pad;
3033 last_disp = disp;
3034 disp_size = size_of_uleb128 (disp);
3035 pad = before_disp + disp_size + after_disp;
3036 if (pad % tt_format_size)
3037 pad = tt_format_size - (pad % tt_format_size);
3038 else
3039 pad = 0;
3040 disp = after_disp + pad;
3042 while (disp != last_disp);
3044 dw2_asm_output_data_uleb128 (disp, "@TType base offset");
3045 #endif
3048 /* Indicate the format of the call-site offsets. */
3049 #ifdef HAVE_AS_LEB128
3050 cs_format = DW_EH_PE_uleb128;
3051 #else
3052 cs_format = DW_EH_PE_udata4;
3053 #endif
3054 dw2_asm_output_data (1, cs_format, "call-site format (%s)",
3055 eh_data_format_name (cs_format));
3057 #ifdef HAVE_AS_LEB128
3058 ASM_GENERATE_INTERNAL_LABEL (cs_after_size_label,
3059 section ? "LLSDACSBC" : "LLSDACSB",
3060 current_function_funcdef_no);
3061 ASM_GENERATE_INTERNAL_LABEL (cs_end_label,
3062 section ? "LLSDACSEC" : "LLSDACSE",
3063 current_function_funcdef_no);
3064 dw2_asm_output_delta_uleb128 (cs_end_label, cs_after_size_label,
3065 "Call-site table length");
3066 ASM_OUTPUT_LABEL (asm_out_file, cs_after_size_label);
3067 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
3068 sjlj_output_call_site_table ();
3069 else
3070 dw2_output_call_site_table (cs_format, section);
3071 ASM_OUTPUT_LABEL (asm_out_file, cs_end_label);
3072 #else
3073 dw2_asm_output_data_uleb128 (call_site_len, "Call-site table length");
3074 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
3075 sjlj_output_call_site_table ();
3076 else
3077 dw2_output_call_site_table (cs_format, section);
3078 #endif
3080 /* ??? Decode and interpret the data for flag_debug_asm. */
3082 uchar uc;
3083 FOR_EACH_VEC_ELT (*crtl->eh.action_record_data, i, uc)
3084 dw2_asm_output_data (1, uc, i ? NULL : "Action record table");
3087 if (have_tt_data)
3088 assemble_align (tt_format_size * BITS_PER_UNIT);
3090 i = vec_safe_length (cfun->eh->ttype_data);
3091 while (i-- > 0)
3093 tree type = (*cfun->eh->ttype_data)[i];
3094 output_ttype (type, tt_format, tt_format_size);
3097 #ifdef HAVE_AS_LEB128
3098 if (have_tt_data)
3099 ASM_OUTPUT_LABEL (asm_out_file, ttype_label);
3100 #endif
3102 /* ??? Decode and interpret the data for flag_debug_asm. */
3103 if (targetm.arm_eabi_unwinder)
3105 tree type;
3106 for (i = 0;
3107 vec_safe_iterate (cfun->eh->ehspec_data.arm_eabi, i, &type); ++i)
3108 output_ttype (type, tt_format, tt_format_size);
3110 else
3112 uchar uc;
3113 for (i = 0;
3114 vec_safe_iterate (cfun->eh->ehspec_data.other, i, &uc); ++i)
3115 dw2_asm_output_data (1, uc,
3116 i ? NULL : "Exception specification table");
3120 void
3121 output_function_exception_table (const char *fnname)
3123 rtx personality = get_personality_function (current_function_decl);
3125 /* Not all functions need anything. */
3126 if (! crtl->uses_eh_lsda)
3127 return;
3129 if (personality)
3131 assemble_external_libcall (personality);
3133 if (targetm.asm_out.emit_except_personality)
3134 targetm.asm_out.emit_except_personality (personality);
3137 switch_to_exception_section (fnname);
3139 /* If the target wants a label to begin the table, emit it here. */
3140 targetm.asm_out.emit_except_table_label (asm_out_file);
3142 output_one_function_exception_table (0);
3143 if (crtl->eh.call_site_record_v[1])
3144 output_one_function_exception_table (1);
3146 switch_to_section (current_function_section ());
3149 void
3150 set_eh_throw_stmt_table (function *fun, hash_map<gimple, int> *table)
3152 fun->eh->throw_stmt_table = table;
3155 hash_map<gimple, int> *
3156 get_eh_throw_stmt_table (struct function *fun)
3158 return fun->eh->throw_stmt_table;
3161 /* Determine if the function needs an EH personality function. */
3163 enum eh_personality_kind
3164 function_needs_eh_personality (struct function *fn)
3166 enum eh_personality_kind kind = eh_personality_none;
3167 eh_region i;
3169 FOR_ALL_EH_REGION_FN (i, fn)
3171 switch (i->type)
3173 case ERT_CLEANUP:
3174 /* Can do with any personality including the generic C one. */
3175 kind = eh_personality_any;
3176 break;
3178 case ERT_TRY:
3179 case ERT_ALLOWED_EXCEPTIONS:
3180 /* Always needs a EH personality function. The generic C
3181 personality doesn't handle these even for empty type lists. */
3182 return eh_personality_lang;
3184 case ERT_MUST_NOT_THROW:
3185 /* Always needs a EH personality function. The language may specify
3186 what abort routine that must be used, e.g. std::terminate. */
3187 return eh_personality_lang;
3191 return kind;
3194 /* Dump EH information to OUT. */
3196 void
3197 dump_eh_tree (FILE * out, struct function *fun)
3199 eh_region i;
3200 int depth = 0;
3201 static const char *const type_name[] = {
3202 "cleanup", "try", "allowed_exceptions", "must_not_throw"
3205 i = fun->eh->region_tree;
3206 if (!i)
3207 return;
3209 fprintf (out, "Eh tree:\n");
3210 while (1)
3212 fprintf (out, " %*s %i %s", depth * 2, "",
3213 i->index, type_name[(int) i->type]);
3215 if (i->landing_pads)
3217 eh_landing_pad lp;
3219 fprintf (out, " land:");
3220 if (current_ir_type () == IR_GIMPLE)
3222 for (lp = i->landing_pads; lp ; lp = lp->next_lp)
3224 fprintf (out, "{%i,", lp->index);
3225 print_generic_expr (out, lp->post_landing_pad, 0);
3226 fputc ('}', out);
3227 if (lp->next_lp)
3228 fputc (',', out);
3231 else
3233 for (lp = i->landing_pads; lp ; lp = lp->next_lp)
3235 fprintf (out, "{%i,", lp->index);
3236 if (lp->landing_pad)
3237 fprintf (out, "%i%s,", INSN_UID (lp->landing_pad),
3238 NOTE_P (lp->landing_pad) ? "(del)" : "");
3239 else
3240 fprintf (out, "(nil),");
3241 if (lp->post_landing_pad)
3243 rtx lab = label_rtx (lp->post_landing_pad);
3244 fprintf (out, "%i%s}", INSN_UID (lab),
3245 NOTE_P (lab) ? "(del)" : "");
3247 else
3248 fprintf (out, "(nil)}");
3249 if (lp->next_lp)
3250 fputc (',', out);
3255 switch (i->type)
3257 case ERT_CLEANUP:
3258 case ERT_MUST_NOT_THROW:
3259 break;
3261 case ERT_TRY:
3263 eh_catch c;
3264 fprintf (out, " catch:");
3265 for (c = i->u.eh_try.first_catch; c; c = c->next_catch)
3267 fputc ('{', out);
3268 if (c->label)
3270 fprintf (out, "lab:");
3271 print_generic_expr (out, c->label, 0);
3272 fputc (';', out);
3274 print_generic_expr (out, c->type_list, 0);
3275 fputc ('}', out);
3276 if (c->next_catch)
3277 fputc (',', out);
3280 break;
3282 case ERT_ALLOWED_EXCEPTIONS:
3283 fprintf (out, " filter :%i types:", i->u.allowed.filter);
3284 print_generic_expr (out, i->u.allowed.type_list, 0);
3285 break;
3287 fputc ('\n', out);
3289 /* If there are sub-regions, process them. */
3290 if (i->inner)
3291 i = i->inner, depth++;
3292 /* If there are peers, process them. */
3293 else if (i->next_peer)
3294 i = i->next_peer;
3295 /* Otherwise, step back up the tree to the next peer. */
3296 else
3300 i = i->outer;
3301 depth--;
3302 if (i == NULL)
3303 return;
3305 while (i->next_peer == NULL);
3306 i = i->next_peer;
3311 /* Dump the EH tree for FN on stderr. */
3313 DEBUG_FUNCTION void
3314 debug_eh_tree (struct function *fn)
3316 dump_eh_tree (stderr, fn);
3319 /* Verify invariants on EH datastructures. */
3321 DEBUG_FUNCTION void
3322 verify_eh_tree (struct function *fun)
3324 eh_region r, outer;
3325 int nvisited_lp, nvisited_r;
3326 int count_lp, count_r, depth, i;
3327 eh_landing_pad lp;
3328 bool err = false;
3330 if (!fun->eh->region_tree)
3331 return;
3333 count_r = 0;
3334 for (i = 1; vec_safe_iterate (fun->eh->region_array, i, &r); ++i)
3335 if (r)
3337 if (r->index == i)
3338 count_r++;
3339 else
3341 error ("region_array is corrupted for region %i", r->index);
3342 err = true;
3346 count_lp = 0;
3347 for (i = 1; vec_safe_iterate (fun->eh->lp_array, i, &lp); ++i)
3348 if (lp)
3350 if (lp->index == i)
3351 count_lp++;
3352 else
3354 error ("lp_array is corrupted for lp %i", lp->index);
3355 err = true;
3359 depth = nvisited_lp = nvisited_r = 0;
3360 outer = NULL;
3361 r = fun->eh->region_tree;
3362 while (1)
3364 if ((*fun->eh->region_array)[r->index] != r)
3366 error ("region_array is corrupted for region %i", r->index);
3367 err = true;
3369 if (r->outer != outer)
3371 error ("outer block of region %i is wrong", r->index);
3372 err = true;
3374 if (depth < 0)
3376 error ("negative nesting depth of region %i", r->index);
3377 err = true;
3379 nvisited_r++;
3381 for (lp = r->landing_pads; lp ; lp = lp->next_lp)
3383 if ((*fun->eh->lp_array)[lp->index] != lp)
3385 error ("lp_array is corrupted for lp %i", lp->index);
3386 err = true;
3388 if (lp->region != r)
3390 error ("region of lp %i is wrong", lp->index);
3391 err = true;
3393 nvisited_lp++;
3396 if (r->inner)
3397 outer = r, r = r->inner, depth++;
3398 else if (r->next_peer)
3399 r = r->next_peer;
3400 else
3404 r = r->outer;
3405 if (r == NULL)
3406 goto region_done;
3407 depth--;
3408 outer = r->outer;
3410 while (r->next_peer == NULL);
3411 r = r->next_peer;
3414 region_done:
3415 if (depth != 0)
3417 error ("tree list ends on depth %i", depth);
3418 err = true;
3420 if (count_r != nvisited_r)
3422 error ("region_array does not match region_tree");
3423 err = true;
3425 if (count_lp != nvisited_lp)
3427 error ("lp_array does not match region_tree");
3428 err = true;
3431 if (err)
3433 dump_eh_tree (stderr, fun);
3434 internal_error ("verify_eh_tree failed");
3438 #include "gt-except.h"