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