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