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