PR target/58115
[official-gcc.git] / gcc / ada / raise-gcc.c
blobca1e84afa9a162f606251351b1050066eb60e492
1 /****************************************************************************
2 * *
3 * GNAT COMPILER COMPONENTS *
4 * *
5 * R A I S E - G C C *
6 * *
7 * C Implementation File *
8 * *
9 * Copyright (C) 1992-2013, Free Software Foundation, Inc. *
10 * *
11 * GNAT is free software; you can redistribute it and/or modify it under *
12 * terms of the GNU General Public License as published by the Free Soft- *
13 * ware Foundation; either version 3, or (at your option) any later ver- *
14 * sion. GNAT is distributed in the hope that it will be useful, but WITH- *
15 * OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
16 * or FITNESS FOR A PARTICULAR PURPOSE. *
17 * *
18 * As a special exception under Section 7 of GPL version 3, you are granted *
19 * additional permissions described in the GCC Runtime Library Exception, *
20 * version 3.1, as published by the Free Software Foundation. *
21 * *
22 * You should have received a copy of the GNU General Public License and *
23 * a copy of the GCC Runtime Library Exception along with this program; *
24 * see the files COPYING3 and COPYING.RUNTIME respectively. If not, see *
25 * <http://www.gnu.org/licenses/>. *
26 * *
27 * GNAT was originally developed by the GNAT team at New York University. *
28 * Extensive contributions were provided by Ada Core Technologies Inc. *
29 * *
30 ****************************************************************************/
32 /* Code related to the integration of the GCC mechanism for exception
33 handling. */
35 #ifndef IN_RTS
36 #error "RTS unit only"
37 #endif
39 #include "tconfig.h"
40 #include "tsystem.h"
42 #include <stdarg.h>
43 typedef char bool;
44 # define true 1
45 # define false 0
47 #include "raise.h"
49 #ifdef __APPLE__
50 /* On MacOS X, versions older than 10.5 don't export _Unwind_GetIPInfo. */
51 #undef HAVE_GETIPINFO
52 #if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 1050
53 #define HAVE_GETIPINFO 1
54 #endif
55 #endif
57 #if defined (__hpux__) && defined (USE_LIBUNWIND_EXCEPTIONS)
58 /* HP-UX B.11.31 ia64 libunwind doesn't have _Unwind_GetIPInfo. */
59 #undef HAVE_GETIPINFO
60 #define _UA_END_OF_STACK 0
61 #endif
63 /* The names of a couple of "standard" routines for unwinding/propagation
64 actually vary depending on the underlying GCC scheme for exception handling
65 (SJLJ or DWARF). We need a consistently named interface to import from
66 a-except, so wrappers are defined here. */
68 #include "unwind.h"
70 typedef struct _Unwind_Context _Unwind_Context;
71 typedef struct _Unwind_Exception _Unwind_Exception;
73 _Unwind_Reason_Code
74 __gnat_Unwind_RaiseException (_Unwind_Exception *);
76 _Unwind_Reason_Code
77 __gnat_Unwind_ForcedUnwind (_Unwind_Exception *, void *, void *);
79 extern struct Exception_Occurrence *__gnat_setup_current_excep
80 (_Unwind_Exception *);
81 extern void __gnat_unhandled_except_handler (_Unwind_Exception *);
83 #include "unwind-pe.h"
85 /* The known and handled exception classes. */
87 #define CXX_EXCEPTION_CLASS 0x474e5543432b2b00ULL
88 #define GNAT_EXCEPTION_CLASS 0x474e552d41646100ULL
90 /* Structure of a C++ exception, represented as a C structure... See
91 unwind-cxx.h for the full definition. */
93 struct __cxa_exception
95 void *exceptionType;
96 void (*exceptionDestructor)(void *);
98 void (*unexpectedHandler)();
99 void (*terminateHandler)();
101 struct __cxa_exception *nextException;
103 int handlerCount;
105 #ifdef __ARM_EABI_UNWINDER__
106 struct __cxa_exception* nextPropagatingException;
108 int propagationCount;
109 #else
110 int handlerSwitchValue;
111 const unsigned char *actionRecord;
112 const unsigned char *languageSpecificData;
113 _Unwind_Ptr catchTemp;
114 void *adjustedPtr;
115 #endif
117 _Unwind_Exception unwindHeader;
120 /* --------------------------------------------------------------
121 -- The DB stuff below is there for debugging purposes only. --
122 -------------------------------------------------------------- */
124 #ifndef inhibit_libc
126 #define DB_PHASES 0x1
127 #define DB_CSITE 0x2
128 #define DB_ACTIONS 0x4
129 #define DB_REGIONS 0x8
131 #define DB_ERR 0x1000
133 /* The "action" stuff below is also there for debugging purposes only. */
135 typedef struct
137 _Unwind_Action phase;
138 const char * description;
139 } phase_descriptor;
141 static const phase_descriptor phase_descriptors[]
142 = {{ _UA_SEARCH_PHASE, "SEARCH_PHASE" },
143 { _UA_CLEANUP_PHASE, "CLEANUP_PHASE" },
144 { _UA_HANDLER_FRAME, "HANDLER_FRAME" },
145 { _UA_FORCE_UNWIND, "FORCE_UNWIND" },
146 { -1, 0}};
148 static int
149 db_accepted_codes (void)
151 static int accepted_codes = -1;
153 if (accepted_codes == -1)
155 char * db_env = (char *) getenv ("EH_DEBUG");
157 accepted_codes = db_env ? (atoi (db_env) | DB_ERR) : 0;
158 /* Arranged for ERR stuff to always be visible when the variable
159 is defined. One may just set the variable to 0 to see the ERR
160 stuff only. */
163 return accepted_codes;
166 #define DB_INDENT_INCREASE 0x01
167 #define DB_INDENT_DECREASE 0x02
168 #define DB_INDENT_OUTPUT 0x04
169 #define DB_INDENT_NEWLINE 0x08
170 #define DB_INDENT_RESET 0x10
172 #define DB_INDENT_UNIT 8
174 static void
175 db_indent (int requests)
177 static int current_indentation_level = 0;
179 if (requests & DB_INDENT_RESET)
180 current_indentation_level = 0;
182 if (requests & DB_INDENT_INCREASE)
183 current_indentation_level ++;
185 if (requests & DB_INDENT_DECREASE)
186 current_indentation_level --;
188 if (requests & DB_INDENT_NEWLINE)
189 fprintf (stderr, "\n");
191 if (requests & DB_INDENT_OUTPUT)
192 fprintf (stderr, "%*s", current_indentation_level * DB_INDENT_UNIT, " ");
195 static void ATTRIBUTE_PRINTF_2
196 db (int db_code, char * msg_format, ...)
198 if (db_accepted_codes () & db_code)
200 va_list msg_args;
202 db_indent (DB_INDENT_OUTPUT);
204 va_start (msg_args, msg_format);
205 vfprintf (stderr, msg_format, msg_args);
206 va_end (msg_args);
210 static void
211 db_phases (int phases)
213 const phase_descriptor *a = phase_descriptors;
215 if (! (db_accepted_codes() & DB_PHASES))
216 return;
218 db (DB_PHASES, "\n");
220 for (; a->description != 0; a++)
221 if (phases & a->phase)
222 db (DB_PHASES, "%s ", a->description);
224 db (DB_PHASES, " :\n");
226 #else /* !inhibit_libc */
227 #define db_phases(X)
228 #define db_indent(X)
229 #define db(X, ...)
230 #endif /* !inhibit_libc */
232 /* ---------------------------------------------------------------
233 -- Now come a set of useful structures and helper routines. --
234 --------------------------------------------------------------- */
236 /* There are three major runtime tables involved, generated by the
237 GCC back-end. Contents slightly vary depending on the underlying
238 implementation scheme (dwarf zero cost / sjlj).
240 =======================================
241 * Tables for the dwarf zero cost case *
242 =======================================
244 They are fully documented in:
245 http://sourcery.mentor.com/public/cxx-abi/exceptions.pdf
246 Here is a shorter presentation, with some specific comments for Ada.
248 call_site []
249 -------------------------------------------------------------------
250 * region-start | region-length | landing-pad | first-action-index *
251 -------------------------------------------------------------------
253 Identify possible actions to be taken and where to resume control
254 for that when an exception propagates through a pc inside the region
255 delimited by start and length.
257 A null landing-pad indicates that nothing is to be done.
259 Otherwise, first-action-index provides an entry into the action[]
260 table which heads a list of possible actions to be taken (see below).
262 If it is determined that indeed an action should be taken, that
263 is, if one action filter matches the exception being propagated,
264 then control should be transferred to landing-pad.
266 A null first-action-index indicates that there are only cleanups
267 to run there.
269 action []
270 -------------------------------
271 * action-filter | next-action *
272 -------------------------------
274 This table contains lists (called action chains) of possible actions
275 associated with call-site entries described in the call-site [] table.
276 There is at most one action list per call-site entry. It is SLEB128
277 encoded.
279 A null action-filter indicates a cleanup.
281 Non null action-filters provide an index into the ttypes [] table
282 (see below), from which information may be retrieved to check if it
283 matches the exception being propagated.
285 * action-filter > 0:
286 means there is a regular handler to be run The value is also passed
287 to the landing pad to dispatch the exception.
289 * action-filter < 0:
290 means there is a some "exception_specification" data to retrieve,
291 which is only relevant for C++ and should never show up for Ada.
292 (Exception specification specifies which exceptions can be thrown
293 by a function. Such filter is emitted around the body of C++
294 functions defined like:
295 void foo ([...]) throw (A, B) { [...] }
296 These can be viewed as negativ filter: the landing pad is branched
297 to for exceptions that doesn't match the filter and usually aborts
298 the program).
300 * next-action
301 points to the next entry in the list using a relative byte offset. 0
302 indicates there is no other entry.
304 ttypes []
305 ---------------
306 * ttype-value *
307 ---------------
309 This table is an array of addresses.
311 A null value indicates a catch-all handler. (Not used by Ada)
313 Non null values are used to match the exception being propagated:
314 In C++ this is a pointer to some rtti data, while in Ada this is an
315 exception id (with a fake id for others).
317 For C++, this table is actually also used to store "exception
318 specification" data. The differentiation between the two kinds
319 of entries is made by the sign of the associated action filter,
320 which translates into positive or negative offsets from the
321 so called base of the table:
323 Exception Specification data is stored at positive offsets from
324 the ttypes table base, which Exception Type data is stored at
325 negative offsets:
327 ---------------------------------------------------------------------------
329 Here is a quick summary of the tables organization:
331 +-- Unwind_Context (pc, ...)
333 |(pc)
335 | CALL-SITE[]
337 | +=============================================================+
338 | | region-start + length | landing-pad | first-action-index |
339 | +=============================================================+
340 +-> | pc range 0 => no-action 0 => cleanups only |
341 | !0 => jump @ N --+ |
342 +====================================================== | ====+
345 ACTION [] |
347 +==========================================================+ |
348 | action-filter | next-action | |
349 +==========================================================+ |
350 | 0 => cleanup | |
351 | >0 => ttype index for handler ------+ 0 => end of chain | <-+
352 | <0 => ttype index for spec data | |
353 +==================================== | ===================+
356 TTYPES [] |
357 | Offset negated from
358 +=====================+ | the actual base.
359 | ttype-value | |
360 +============+=====================+ |
361 | | ... | |
362 | ... | exception id | <---+
363 | | ... |
364 | handlers +---------------------+
365 | | ... |
366 | ... | ... |
367 | | ... |
368 +============+=====================+ <<------ Table base
369 | ... | ... |
370 | specs | ... | (should not see negative filter
371 | ... | ... | values for Ada).
372 +============+=====================+
375 ============================
376 * Tables for the sjlj case *
377 ============================
379 So called "function contexts" are pushed on a context stack by calls to
380 _Unwind_SjLj_Register on function entry, and popped off at exit points by
381 calls to _Unwind_SjLj_Unregister. The current call_site for a function is
382 updated in the function context as the function's code runs along.
384 The generic unwinding engine in _Unwind_RaiseException walks the function
385 context stack and not the actual call chain.
387 The ACTION and TTYPES tables remain unchanged, which allows to search them
388 during the propagation phase to determine whether or not the propagated
389 exception is handled somewhere. When it is, we only "jump" up once directly
390 to the context where the handler will be found. Besides, this allows "break
391 exception unhandled" to work also
393 The CALL-SITE table is setup differently, though: the pc attached to the
394 unwind context is a direct index into the table, so the entries in this
395 table do not hold region bounds any more.
397 A special index (-1) is used to indicate that no action is possibly
398 connected with the context at hand, so null landing pads cannot appear
399 in the table.
401 Additionally, landing pad values in the table do not represent code address
402 to jump at, but so called "dispatch" indices used by a common landing pad
403 for the function to switch to the appropriate post-landing-pad.
405 +-- Unwind_Context (pc, ...)
407 | pc = call-site index
408 | 0 => terminate (should not see this for Ada)
409 | -1 => no-action
411 | CALL-SITE[]
413 | +=====================================+
414 | | landing-pad | first-action-index |
415 | +=====================================+
416 +-> | 0 => cleanups only |
417 | dispatch index N |
418 +=====================================+
421 ===================================
422 * Basic organization of this unit *
423 ===================================
425 The major point of this unit is to provide an exception propagation
426 personality routine for Ada. This is __gnat_personality_v0.
428 It is provided with a pointer to the propagated exception, an unwind
429 context describing a location the propagation is going through, and a
430 couple of other arguments including a description of the current
431 propagation phase.
433 It shall return to the generic propagation engine what is to be performed
434 next, after possible context adjustments, depending on what it finds in the
435 traversed context (a handler for the exception, a cleanup, nothing, ...),
436 and on the propagation phase.
438 A number of structures and subroutines are used for this purpose, as
439 sketched below:
441 o region_descriptor: General data associated with the context (base pc,
442 call-site table, action table, ttypes table, ...)
444 o action_descriptor: Data describing the action to be taken for the
445 propagated exception in the provided context (kind of action: nothing,
446 handler, cleanup; pointer to the action table entry, ...).
448 raise
450 ... (a-except.adb)
452 Propagate_Exception (a-exexpr.adb)
455 _Unwind_RaiseException (libgcc)
457 | (Ada frame)
459 +--> __gnat_personality_v0 (context, exception)
461 +--> get_region_description_for (context)
463 +--> get_action_description_for (ip, exception, region)
465 | +--> get_call_site_action_for (context, region)
466 | (one version for each underlying scheme)
468 +--> setup_to_install (context)
470 This unit is inspired from the C++ version found in eh_personality.cc,
471 part of libstdc++-v3.
476 /* This is an incomplete "proxy" of the structure of exception objects as
477 built by the GNAT runtime library. Accesses to other fields than the common
478 header are performed through subprogram calls to alleviate the need of an
479 exact counterpart here and potential alignment/size issues for the common
480 header. See a-exexpr.adb. */
482 typedef struct
484 _Unwind_Exception common;
485 /* ABI header, maximally aligned. */
486 } _GNAT_Exception;
488 /* The two constants below are specific ttype identifiers for special
489 exception ids. Their type should match what a-exexpr exports. */
491 extern const int __gnat_others_value;
492 #define GNAT_OTHERS ((_Unwind_Ptr) &__gnat_others_value)
494 extern const int __gnat_all_others_value;
495 #define GNAT_ALL_OTHERS ((_Unwind_Ptr) &__gnat_all_others_value)
497 extern const int __gnat_unhandled_others_value;
498 #define GNAT_UNHANDLED_OTHERS ((_Unwind_Ptr) &__gnat_unhandled_others_value)
500 /* Describe the useful region data associated with an unwind context. */
502 typedef struct
504 /* The base pc of the region. */
505 _Unwind_Ptr base;
507 /* Pointer to the Language Specific Data for the region. */
508 _Unwind_Ptr lsda;
510 /* Call-Site data associated with this region. */
511 unsigned char call_site_encoding;
512 const unsigned char *call_site_table;
514 /* The base to which are relative landing pad offsets inside the call-site
515 entries . */
516 _Unwind_Ptr lp_base;
518 /* Action-Table associated with this region. */
519 const unsigned char *action_table;
521 /* Ttype data associated with this region. */
522 unsigned char ttype_encoding;
523 const unsigned char *ttype_table;
524 _Unwind_Ptr ttype_base;
526 } region_descriptor;
528 /* Extract and adjust the IP (instruction pointer) from an exception
529 context. */
531 static _Unwind_Ptr
532 get_ip_from_context (_Unwind_Context *uw_context)
534 int ip_before_insn = 0;
535 #ifdef HAVE_GETIPINFO
536 _Unwind_Ptr ip = _Unwind_GetIPInfo (uw_context, &ip_before_insn);
537 #else
538 _Unwind_Ptr ip = _Unwind_GetIP (uw_context);
539 #endif
540 /* Subtract 1 if necessary because GetIPInfo yields a call return address
541 in this case, while we are interested in information for the call point.
542 This does not always yield the exact call instruction address but always
543 brings the IP back within the corresponding region. */
544 if (!ip_before_insn)
545 ip--;
547 return ip;
550 static void
551 db_region_for (region_descriptor *region, _Unwind_Ptr ip)
553 #ifndef inhibit_libc
554 if (! (db_accepted_codes () & DB_REGIONS))
555 return;
557 db (DB_REGIONS, "For ip @ %p => ", (void *)ip);
559 if (region->lsda)
560 db (DB_REGIONS, "lsda @ %p", (void *)region->lsda);
561 else
562 db (DB_REGIONS, "no lsda");
564 db (DB_REGIONS, "\n");
565 #endif
568 /* Retrieve the ttype entry associated with FILTER in the REGION's
569 ttype table. */
571 static _Unwind_Ptr
572 get_ttype_entry_for (region_descriptor *region, long filter)
574 _Unwind_Ptr ttype_entry;
576 filter *= size_of_encoded_value (region->ttype_encoding);
577 read_encoded_value_with_base
578 (region->ttype_encoding, region->ttype_base,
579 region->ttype_table - filter, &ttype_entry);
581 return ttype_entry;
584 /* Fill out the REGION descriptor for the provided UW_CONTEXT. */
586 static void
587 get_region_description_for (_Unwind_Context *uw_context,
588 region_descriptor *region)
590 const unsigned char * p;
591 _uleb128_t tmp;
592 unsigned char lpbase_encoding;
594 /* Get the base address of the lsda information. If the provided context
595 is null or if there is no associated language specific data, there's
596 nothing we can/should do. */
597 region->lsda
598 = (_Unwind_Ptr) (uw_context
599 ? _Unwind_GetLanguageSpecificData (uw_context) : 0);
601 if (! region->lsda)
602 return;
604 /* Parse the lsda and fill the region descriptor. */
605 p = (const unsigned char *)region->lsda;
607 region->base = _Unwind_GetRegionStart (uw_context);
609 /* Find @LPStart, the base to which landing pad offsets are relative. */
610 lpbase_encoding = *p++;
611 if (lpbase_encoding != DW_EH_PE_omit)
612 p = read_encoded_value
613 (uw_context, lpbase_encoding, p, &region->lp_base);
614 else
615 region->lp_base = region->base;
617 /* Find @TType, the base of the handler and exception spec type data. */
618 region->ttype_encoding = *p++;
619 if (region->ttype_encoding != DW_EH_PE_omit)
621 p = read_uleb128 (p, &tmp);
622 region->ttype_table = p + tmp;
624 else
625 region->ttype_table = 0;
627 region->ttype_base
628 = base_of_encoded_value (region->ttype_encoding, uw_context);
630 /* Get the encoding and length of the call-site table; the action table
631 immediately follows. */
632 region->call_site_encoding = *p++;
633 region->call_site_table = read_uleb128 (p, &tmp);
635 region->action_table = region->call_site_table + tmp;
639 /* Describe an action to be taken when propagating an exception up to
640 some context. */
642 enum action_kind
644 /* Found some call site base data, but need to analyze further
645 before being able to decide. */
646 unknown,
648 /* There is nothing relevant in the context at hand. */
649 nothing,
651 /* There are only cleanups to run in this context. */
652 cleanup,
654 /* There is a handler for the exception in this context. */
655 handler,
657 /* There is a handler for the exception, but it is only for catching
658 unhandled exceptions. */
659 unhandler
662 /* filter value for cleanup actions. */
663 static const int cleanup_filter = 0;
665 typedef struct
667 /* The kind of action to be taken. */
668 enum action_kind kind;
670 /* A pointer to the action record entry. */
671 const unsigned char *table_entry;
673 /* Where we should jump to actually take an action (trigger a cleanup or an
674 exception handler). */
675 _Unwind_Ptr landing_pad;
677 /* If we have a handler matching our exception, these are the filter to
678 trigger it and the corresponding id. */
679 _Unwind_Sword ttype_filter;
681 } action_descriptor;
683 static void
684 db_action_for (action_descriptor *action, _Unwind_Ptr ip)
686 #ifndef inhibit_libc
687 db (DB_ACTIONS, "For ip @ %p => ", (void *)ip);
689 switch (action->kind)
691 case unknown:
692 db (DB_ACTIONS, "lpad @ %p, record @ %p\n",
693 (void *) action->landing_pad, action->table_entry);
694 break;
696 case nothing:
697 db (DB_ACTIONS, "Nothing\n");
698 break;
700 case cleanup:
701 db (DB_ACTIONS, "Cleanup\n");
702 break;
704 case handler:
705 db (DB_ACTIONS, "Handler, filter = %d\n", (int) action->ttype_filter);
706 break;
708 default:
709 db (DB_ACTIONS, "Err? Unexpected action kind !\n");
710 break;
712 #endif
715 /* Search the call_site_table of REGION for an entry appropriate for the
716 UW_CONTEXT's IP. If one is found, store the associated landing_pad
717 and action_table entry, and set the ACTION kind to unknown for further
718 analysis. Otherwise, set the ACTION kind to nothing.
720 There are two variants of this routine, depending on the underlying
721 mechanism (DWARF/SJLJ), which account for differences in the tables. */
723 #ifdef __USING_SJLJ_EXCEPTIONS__
725 #define __builtin_eh_return_data_regno(x) x
727 static void
728 get_call_site_action_for (_Unwind_Ptr call_site,
729 region_descriptor *region,
730 action_descriptor *action)
732 /* call_site is a direct index into the call-site table, with two special
733 values : -1 for no-action and 0 for "terminate". The latter should never
734 show up for Ada. To test for the former, beware that _Unwind_Ptr might
735 be unsigned. */
737 if ((int)call_site < 0)
739 action->kind = nothing;
741 else if (call_site == 0)
743 db (DB_ERR, "========> Err, null call_site for Ada/sjlj\n");
744 action->kind = nothing;
746 else
748 _uleb128_t cs_lp, cs_action;
749 const unsigned char *p;
751 /* Let the caller know there may be an action to take, but let it
752 determine the kind. */
753 action->kind = unknown;
755 /* We have a direct index into the call-site table, but this table is
756 made of leb128 values, the encoding length of which is variable. We
757 can't merely compute an offset from the index, then, but have to read
758 all the entries before the one of interest. */
759 p = region->call_site_table;
762 p = read_uleb128 (p, &cs_lp);
763 p = read_uleb128 (p, &cs_action);
765 while (--call_site);
767 action->landing_pad = cs_lp + 1;
769 if (cs_action)
770 action->table_entry = region->action_table + cs_action - 1;
771 else
772 action->table_entry = 0;
776 #else /* !__USING_SJLJ_EXCEPTIONS__ */
778 static void
779 get_call_site_action_for (_Unwind_Ptr ip,
780 region_descriptor *region,
781 action_descriptor *action)
783 const unsigned char *p = region->call_site_table;
785 /* Unless we are able to determine otherwise... */
786 action->kind = nothing;
788 db (DB_CSITE, "\n");
790 while (p < region->action_table)
792 _Unwind_Ptr cs_start, cs_len, cs_lp;
793 _uleb128_t cs_action;
795 /* Note that all call-site encodings are "absolute" displacements. */
796 p = read_encoded_value (0, region->call_site_encoding, p, &cs_start);
797 p = read_encoded_value (0, region->call_site_encoding, p, &cs_len);
798 p = read_encoded_value (0, region->call_site_encoding, p, &cs_lp);
799 p = read_uleb128 (p, &cs_action);
801 db (DB_CSITE,
802 "c_site @ %p (+%p), len = %p, lpad @ %p (+%p)\n",
803 (void *)region->base + cs_start, (void *)cs_start, (void *)cs_len,
804 (void *)region->lp_base + cs_lp, (void *)cs_lp);
806 /* The table is sorted, so if we've passed the IP, stop. */
807 if (ip < region->base + cs_start)
808 break;
810 /* If we have a match, fill the ACTION fields accordingly. */
811 else if (ip < region->base + cs_start + cs_len)
813 /* Let the caller know there may be an action to take, but let it
814 determine the kind. */
815 action->kind = unknown;
817 if (cs_lp)
818 action->landing_pad = region->lp_base + cs_lp;
819 else
820 action->landing_pad = 0;
822 if (cs_action)
823 action->table_entry = region->action_table + cs_action - 1;
824 else
825 action->table_entry = 0;
827 db (DB_CSITE, "+++\n");
828 return;
832 db (DB_CSITE, "---\n");
835 #endif /* __USING_SJLJ_EXCEPTIONS__ */
837 /* With CHOICE an exception choice representing an "exception - when"
838 argument, and PROPAGATED_EXCEPTION a pointer to the currently propagated
839 occurrence, return true if the latter matches the former, that is, if
840 PROPAGATED_EXCEPTION is caught by the handling code controlled by CHOICE.
841 This takes care of the special Non_Ada_Error case on VMS. */
843 #define Is_Handled_By_Others __gnat_is_handled_by_others
844 #define Language_For __gnat_language_for
845 #define Foreign_Data_For __gnat_foreign_data_for
846 #define EID_For __gnat_eid_for
848 extern bool Is_Handled_By_Others (_Unwind_Ptr eid);
849 extern char Language_For (_Unwind_Ptr eid);
851 extern void *Foreign_Data_For (_Unwind_Ptr eid);
853 extern Exception_Id EID_For (_GNAT_Exception * e);
855 #define Foreign_Exception system__exceptions__foreign_exception
856 extern struct Exception_Data Foreign_Exception;
858 #ifdef VMS
859 #define Non_Ada_Error system__aux_dec__non_ada_error
860 extern struct Exception_Data Non_Ada_Error;
861 #endif
863 static enum action_kind
864 is_handled_by (_Unwind_Ptr choice, _GNAT_Exception * propagated_exception)
866 /* All others choice match everything. */
867 if (choice == GNAT_ALL_OTHERS)
868 return handler;
870 /* GNAT exception occurrence. */
871 if (propagated_exception->common.exception_class == GNAT_EXCEPTION_CLASS)
873 /* Pointer to the GNAT exception data corresponding to the propagated
874 occurrence. */
875 _Unwind_Ptr E = (_Unwind_Ptr) EID_For (propagated_exception);
877 if (choice == GNAT_UNHANDLED_OTHERS)
878 return unhandler;
880 E = (_Unwind_Ptr) EID_For (propagated_exception);
882 /* Base matching rules: An exception data (id) matches itself, "when
883 all_others" matches anything and "when others" matches anything
884 unless explicitly stated otherwise in the propagated occurrence. */
885 if (choice == E || (choice == GNAT_OTHERS && Is_Handled_By_Others (E)))
886 return handler;
888 #ifdef VMS
889 /* In addition, on OpenVMS, Non_Ada_Error matches VMS exceptions, and we
890 may have different exception data pointers that should match for the
891 same condition code, if both an export and an import have been
892 registered. The import code for both the choice and the propagated
893 occurrence are expected to have been masked off regarding severity
894 bits already (at registration time for the former and from within the
895 low level exception vector for the latter). */
896 if ((Language_For (E) == 'V'
897 && choice != GNAT_OTHERS
898 && ((Language_For (choice) == 'V'
899 && Foreign_Data_For (choice) != 0
900 && Foreign_Data_For (choice) == Foreign_Data_For (E))
901 || choice == (_Unwind_Ptr)&Non_Ada_Error)))
902 return handler;
903 #endif
905 /* Otherwise, it doesn't match an Ada choice. */
906 return nothing;
909 /* All others and others choice match any foreign exception. */
910 if (choice == GNAT_ALL_OTHERS
911 || choice == GNAT_OTHERS
912 || choice == (_Unwind_Ptr) &Foreign_Exception)
913 return handler;
915 /* C++ exception occurrences. */
916 if (propagated_exception->common.exception_class == CXX_EXCEPTION_CLASS
917 && Language_For (choice) == 'C')
919 void *choice_typeinfo = Foreign_Data_For (choice);
920 void *except_typeinfo =
921 (((struct __cxa_exception *)
922 ((_Unwind_Exception *)propagated_exception + 1)) - 1)->exceptionType;
924 /* Typeinfo are directly compared, which might not be correct if they
925 aren't merged. ??? We should call the == operator if this module is
926 compiled in C++. */
927 if (choice_typeinfo == except_typeinfo)
928 return handler;
931 return nothing;
934 /* Fill out the ACTION to be taken from propagating UW_EXCEPTION up to
935 UW_CONTEXT in REGION. */
937 static void
938 get_action_description_for (_Unwind_Ptr ip,
939 _Unwind_Exception *uw_exception,
940 _Unwind_Action uw_phase,
941 region_descriptor *region,
942 action_descriptor *action)
944 _GNAT_Exception *gnat_exception = (_GNAT_Exception *) uw_exception;
946 /* Search the call site table first, which may get us a landing pad as well
947 as the head of an action record list. */
948 get_call_site_action_for (ip, region, action);
949 db_action_for (action, ip);
951 /* If there is not even a call_site entry, we are done. */
952 if (action->kind == nothing)
953 return;
955 /* Otherwise, check what we have at the place of the call site. */
957 /* No landing pad => no cleanups or handlers. */
958 if (action->landing_pad == 0)
960 action->kind = nothing;
961 return;
964 /* Landing pad + null table entry => only cleanups. */
965 else if (action->table_entry == 0)
967 action->kind = cleanup;
968 action->ttype_filter = cleanup_filter;
969 /* The filter initialization is not strictly necessary, as cleanup-only
970 landing pads don't look at the filter value. It is there to ensure
971 we don't pass random values and so trigger potential confusion when
972 installing the context later on. */
973 return;
976 /* Landing pad + Table entry => handlers + possible cleanups. */
977 else
979 const unsigned char * p = action->table_entry;
981 _sleb128_t ar_filter, ar_disp;
983 action->kind = nothing;
985 while (1)
987 p = read_sleb128 (p, &ar_filter);
988 read_sleb128 (p, &ar_disp);
989 /* Don't assign p here, as it will be incremented by ar_disp
990 below. */
992 /* Null filters are for cleanups. */
993 if (ar_filter == cleanup_filter)
995 action->kind = cleanup;
996 action->ttype_filter = cleanup_filter;
997 /* The filter initialization is required here, to ensure
998 the target landing pad branches to the cleanup code if
999 we happen not to find a matching handler. */
1002 /* Positive filters are for regular handlers. */
1003 else if (ar_filter > 0)
1005 /* Do not catch an exception if the _UA_FORCE_UNWIND flag is
1006 passed (to follow the ABI). */
1007 if (!(uw_phase & _UA_FORCE_UNWIND))
1009 enum action_kind act;
1011 /* See if the filter we have is for an exception which
1012 matches the one we are propagating. */
1013 _Unwind_Ptr choice = get_ttype_entry_for (region, ar_filter);
1015 act = is_handled_by (choice, gnat_exception);
1016 if (act != nothing)
1018 action->kind = act;
1019 action->ttype_filter = ar_filter;
1020 return;
1025 /* Negative filter values are for C++ exception specifications.
1026 Should not be there for Ada :/ */
1027 else
1028 db (DB_ERR, "========> Err, filter < 0 for Ada/dwarf\n");
1030 if (ar_disp == 0)
1031 return;
1033 p += ar_disp;
1038 /* Setup in UW_CONTEXT the eh return target IP and data registers, which will
1039 be restored with the others and retrieved by the landing pad once the jump
1040 occurred. */
1042 static void
1043 setup_to_install (_Unwind_Context *uw_context,
1044 _Unwind_Exception *uw_exception,
1045 _Unwind_Ptr uw_landing_pad,
1046 int uw_filter)
1048 /* 1/ exception object pointer, which might be provided back to
1049 _Unwind_Resume (and thus to this personality routine) if we are jumping
1050 to a cleanup. */
1051 _Unwind_SetGR (uw_context, __builtin_eh_return_data_regno (0),
1052 (_Unwind_Word)uw_exception);
1054 /* 2/ handler switch value register, which will also be used by the target
1055 landing pad to decide what action it shall take. */
1056 _Unwind_SetGR (uw_context, __builtin_eh_return_data_regno (1),
1057 (_Unwind_Word)uw_filter);
1059 /* Setup the address we should jump at to reach the code where there is the
1060 "something" we found. */
1061 _Unwind_SetIP (uw_context, uw_landing_pad);
1064 /* The following is defined from a-except.adb. Its purpose is to enable
1065 automatic backtraces upon exception raise, as provided through the
1066 GNAT.Traceback facilities. */
1067 extern void __gnat_notify_handled_exception (struct Exception_Occurrence *);
1068 extern void __gnat_notify_unhandled_exception (struct Exception_Occurrence *);
1070 /* Below is the eh personality routine per se. We currently assume that only
1071 GNU-Ada exceptions are met. */
1073 #ifdef __USING_SJLJ_EXCEPTIONS__
1074 #define PERSONALITY_FUNCTION __gnat_personality_sj0
1075 #elif defined (__SEH__)
1076 #define PERSONALITY_FUNCTION __gnat_personality_imp
1077 #else
1078 #define PERSONALITY_FUNCTION __gnat_personality_v0
1079 #endif
1081 /* Major tweak for ia64-vms : the CHF propagation phase calls this personality
1082 routine with sigargs/mechargs arguments and has very specific expectations
1083 on possible return values.
1085 We handle this with a number of specific tricks:
1087 1. We tweak the personality routine prototype to have the "version" and
1088 "phases" two first arguments be void * instead of int and _Unwind_Action
1089 as nominally expected in the GCC context.
1091 This allows us to access the full range of bits passed in every case and
1092 has no impact on the callers side since each argument remains assigned
1093 the same single 64bit slot.
1095 2. We retrieve the corresponding int and _Unwind_Action values within the
1096 routine for regular use with truncating conversions. This is a noop when
1097 called from the libgcc unwinder.
1099 3. We assume we're called by the VMS CHF when unexpected bits are set in
1100 both those values. The incoming arguments are then real sigargs and
1101 mechargs pointers, which we then redirect to __gnat_handle_vms_condition
1102 for proper processing.
1104 #if defined (VMS) && defined (__IA64)
1105 typedef void * version_arg_t;
1106 typedef void * phases_arg_t;
1107 #else
1108 typedef int version_arg_t;
1109 typedef _Unwind_Action phases_arg_t;
1110 #endif
1112 #if defined (__SEH__) && !defined (__USING_SJLJ_EXCEPTIONS__)
1113 static
1114 #endif
1115 _Unwind_Reason_Code
1116 PERSONALITY_FUNCTION (version_arg_t, phases_arg_t,
1117 _Unwind_Exception_Class, _Unwind_Exception *,
1118 _Unwind_Context *);
1120 _Unwind_Reason_Code
1121 PERSONALITY_FUNCTION (version_arg_t version_arg,
1122 phases_arg_t phases_arg,
1123 _Unwind_Exception_Class uw_exception_class
1124 ATTRIBUTE_UNUSED,
1125 _Unwind_Exception *uw_exception,
1126 _Unwind_Context *uw_context)
1128 /* Fetch the version and phases args with their nominal ABI types for later
1129 use. This is a noop everywhere except on ia64-vms when called from the
1130 Condition Handling Facility. */
1131 int uw_version = (int) version_arg;
1132 _Unwind_Action uw_phases = (_Unwind_Action) phases_arg;
1133 region_descriptor region;
1134 action_descriptor action;
1135 _Unwind_Ptr ip;
1137 /* Check that we're called from the ABI context we expect, with a major
1138 possible variation on VMS for IA64. */
1139 if (uw_version != 1)
1141 #if defined (VMS) && defined (__IA64)
1143 /* Assume we're called with sigargs/mechargs arguments if really
1144 unexpected bits are set in our first two formals. Redirect to the
1145 GNAT condition handling code in this case. */
1147 extern long __gnat_handle_vms_condition (void *, void *);
1149 unsigned int version_unexpected_bits_mask = 0xffffff00U;
1150 unsigned int phases_unexpected_bits_mask = 0xffffff00U;
1152 if ((unsigned int)uw_version & version_unexpected_bits_mask
1153 && (unsigned int)uw_phases & phases_unexpected_bits_mask)
1154 return __gnat_handle_vms_condition (version_arg, phases_arg);
1155 #endif
1157 return _URC_FATAL_PHASE1_ERROR;
1160 db_indent (DB_INDENT_RESET);
1161 db_phases (uw_phases);
1162 db_indent (DB_INDENT_INCREASE);
1164 /* Get the region description for the context we were provided with. This
1165 will tell us if there is some lsda, call_site, action and/or ttype data
1166 for the associated ip. */
1167 get_region_description_for (uw_context, &region);
1168 ip = get_ip_from_context (uw_context);
1169 db_region_for (&region, ip);
1171 /* No LSDA => no handlers or cleanups => we shall unwind further up. */
1172 if (! region.lsda)
1173 return _URC_CONTINUE_UNWIND;
1175 /* Search the call-site and action-record tables for the action associated
1176 with this IP. */
1177 get_action_description_for (ip, uw_exception, uw_phases, &region, &action);
1178 db_action_for (&action, ip);
1180 /* Whatever the phase, if there is nothing relevant in this frame,
1181 unwinding should just go on. */
1182 if (action.kind == nothing)
1183 return _URC_CONTINUE_UNWIND;
1185 /* If we found something in search phase, we should return a code indicating
1186 what to do next depending on what we found. If we only have cleanups
1187 around, we shall try to unwind further up to find a handler, otherwise,
1188 tell we have a handler, which will trigger the second phase. */
1189 if (uw_phases & _UA_SEARCH_PHASE)
1191 if (action.kind == cleanup)
1193 return _URC_CONTINUE_UNWIND;
1195 else
1197 struct Exception_Occurrence *excep;
1199 /* Trigger the appropriate notification routines before the second
1200 phase starts, which ensures the stack is still intact.
1201 First, setup the Ada occurrence. */
1202 excep = __gnat_setup_current_excep (uw_exception);
1203 if (action.kind == unhandler)
1204 __gnat_notify_unhandled_exception (excep);
1205 else
1206 __gnat_notify_handled_exception (excep);
1208 return _URC_HANDLER_FOUND;
1212 /* We found something in cleanup/handler phase, which might be the handler
1213 or a cleanup for a handled occurrence, or a cleanup for an unhandled
1214 occurrence (we are in a FORCED_UNWIND phase in this case). Install the
1215 context to get there. */
1217 setup_to_install
1218 (uw_context, uw_exception, action.landing_pad, action.ttype_filter);
1220 /* Write current exception, so that it can be retrieved from Ada. It was
1221 already done during phase 1 (just above), but in between, one or several
1222 exceptions may have been raised (in cleanup handlers). */
1223 __gnat_setup_current_excep (uw_exception);
1225 return _URC_INSTALL_CONTEXT;
1228 /* Callback routine called by Unwind_ForcedUnwind to execute all the cleanup
1229 before exiting the task. */
1231 _Unwind_Reason_Code
1232 __gnat_cleanupunwind_handler (int version ATTRIBUTE_UNUSED,
1233 _Unwind_Action phases,
1234 _Unwind_Exception_Class eclass ATTRIBUTE_UNUSED,
1235 struct _Unwind_Exception *exception,
1236 struct _Unwind_Context *context ATTRIBUTE_UNUSED,
1237 void *arg ATTRIBUTE_UNUSED)
1239 /* Terminate when the end of the stack is reached. */
1240 if ((phases & _UA_END_OF_STACK) != 0
1241 #if defined (__ia64__) && defined (__hpux__) && defined (USE_LIBUNWIND_EXCEPTIONS)
1242 /* Strictely follow the ia64 ABI: when end of stack is reached,
1243 the callback will be called with a NULL stack pointer.
1244 No need for that when using libgcc unwinder. */
1245 || _Unwind_GetGR (context, 12) == 0
1246 #endif
1248 __gnat_unhandled_except_handler (exception);
1250 /* We know there is at least one cleanup further up. Return so that it
1251 is searched and entered, after which Unwind_Resume will be called
1252 and this hook will gain control again. */
1253 return _URC_NO_REASON;
1256 /* Define the consistently named wrappers imported by Propagate_Exception. */
1258 _Unwind_Reason_Code
1259 __gnat_Unwind_RaiseException (_Unwind_Exception *e)
1261 #ifdef __USING_SJLJ_EXCEPTIONS__
1262 return _Unwind_SjLj_RaiseException (e);
1263 #else
1264 return _Unwind_RaiseException (e);
1265 #endif
1268 _Unwind_Reason_Code
1269 __gnat_Unwind_ForcedUnwind (_Unwind_Exception *e,
1270 void *handler,
1271 void *argument)
1273 #ifdef __USING_SJLJ_EXCEPTIONS__
1274 return _Unwind_SjLj_ForcedUnwind (e, handler, argument);
1275 #else
1276 return _Unwind_ForcedUnwind (e, handler, argument);
1277 #endif
1280 #if defined (__SEH__) && !defined (__USING_SJLJ_EXCEPTIONS__)
1282 #define STATUS_USER_DEFINED (1U << 29)
1284 /* From unwind-seh.c. */
1285 #define GCC_MAGIC (('G' << 16) | ('C' << 8) | 'C')
1286 #define GCC_EXCEPTION(TYPE) \
1287 (STATUS_USER_DEFINED | ((TYPE) << 24) | GCC_MAGIC)
1288 #define STATUS_GCC_THROW GCC_EXCEPTION (0)
1290 EXCEPTION_DISPOSITION __gnat_SEH_error_handler
1291 (struct _EXCEPTION_RECORD*, void*, struct _CONTEXT*, void*);
1293 struct Exception_Data *
1294 __gnat_map_SEH (EXCEPTION_RECORD* ExceptionRecord, const char **msg);
1296 struct _Unwind_Exception *
1297 __gnat_create_machine_occurrence_from_signal_handler (Exception_Id,
1298 const char *);
1300 /* Unwind opcodes. */
1301 #define UWOP_PUSH_NONVOL 0
1302 #define UWOP_ALLOC_LARGE 1
1303 #define UWOP_ALLOC_SMALL 2
1304 #define UWOP_SET_FPREG 3
1305 #define UWOP_SAVE_NONVOL 4
1306 #define UWOP_SAVE_NONVOL_FAR 5
1307 #define UWOP_SAVE_XMM128 8
1308 #define UWOP_SAVE_XMM128_FAR 9
1309 #define UWOP_PUSH_MACHFRAME 10
1311 /* Modify the IP value saved in the machine frame. This is really a kludge,
1312 that will be removed if we could propagate the Windows exception (and not
1313 the GCC one).
1314 What is very wrong is that the Windows unwinder will try to decode the
1315 instruction at IP, which isn't valid anymore after the adjust. */
1317 static void
1318 __gnat_adjust_context (unsigned char *unw, ULONG64 rsp)
1320 unsigned int len;
1322 /* Version = 1, no flags, no prolog. */
1323 if (unw[0] != 1 || unw[1] != 0)
1324 return;
1325 len = unw[2];
1326 /* No frame pointer. */
1327 if (unw[3] != 0)
1328 return;
1329 unw += 4;
1330 while (len > 0)
1332 /* Offset in prolog = 0. */
1333 if (unw[0] != 0)
1334 return;
1335 switch (unw[1] & 0xf)
1337 case UWOP_ALLOC_LARGE:
1338 /* Expect < 512KB. */
1339 if ((unw[1] & 0xf0) != 0)
1340 return;
1341 rsp += *(unsigned short *)(unw + 2) * 8;
1342 len--;
1343 unw += 2;
1344 break;
1345 case UWOP_SAVE_NONVOL:
1346 case UWOP_SAVE_XMM128:
1347 len--;
1348 unw += 2;
1349 break;
1350 case UWOP_PUSH_MACHFRAME:
1352 ULONG64 *rip;
1353 rip = (ULONG64 *)rsp;
1354 if ((unw[1] & 0xf0) == 0x10)
1355 rip++;
1356 /* Adjust rip. */
1357 (*rip)++;
1359 return;
1360 default:
1361 /* Unexpected. */
1362 return;
1364 unw += 2;
1365 len--;
1369 EXCEPTION_DISPOSITION
1370 __gnat_personality_seh0 (PEXCEPTION_RECORD ms_exc, void *this_frame,
1371 PCONTEXT ms_orig_context,
1372 PDISPATCHER_CONTEXT ms_disp)
1374 /* Possibly transform run-time errors into Ada exceptions. As a small
1375 optimization, we call __gnat_SEH_error_handler only on non-user
1376 exceptions. */
1377 if (!(ms_exc->ExceptionCode & STATUS_USER_DEFINED))
1379 struct Exception_Data *exception;
1380 const char *msg;
1381 ULONG64 excpip = (ULONG64) ms_exc->ExceptionAddress;
1383 if (excpip != 0
1384 && excpip >= (ms_disp->ImageBase
1385 + ms_disp->FunctionEntry->BeginAddress)
1386 && excpip < (ms_disp->ImageBase
1387 + ms_disp->FunctionEntry->EndAddress))
1389 /* This is a fault in this function. We need to adjust the return
1390 address before raising the GCC exception. */
1391 CONTEXT context;
1392 PRUNTIME_FUNCTION mf_func = NULL;
1393 ULONG64 mf_imagebase;
1394 ULONG64 mf_rsp = 0;
1396 /* Get the context. */
1397 RtlCaptureContext (&context);
1399 while (1)
1401 PRUNTIME_FUNCTION RuntimeFunction;
1402 ULONG64 ImageBase;
1403 VOID *HandlerData;
1404 ULONG64 EstablisherFrame;
1406 /* Get function metadata. */
1407 RuntimeFunction = RtlLookupFunctionEntry
1408 (context.Rip, &ImageBase, ms_disp->HistoryTable);
1409 if (RuntimeFunction == ms_disp->FunctionEntry)
1410 break;
1411 mf_func = RuntimeFunction;
1412 mf_imagebase = ImageBase;
1413 mf_rsp = context.Rsp;
1415 if (!RuntimeFunction)
1417 /* In case of failure, assume this is a leaf function. */
1418 context.Rip = *(ULONG64 *) context.Rsp;
1419 context.Rsp += 8;
1421 else
1423 /* Unwind. */
1424 RtlVirtualUnwind (0, ImageBase, context.Rip, RuntimeFunction,
1425 &context, &HandlerData, &EstablisherFrame,
1426 NULL);
1429 /* 0 means bottom of the stack. */
1430 if (context.Rip == 0)
1432 mf_func = NULL;
1433 break;
1436 if (mf_func != NULL)
1437 __gnat_adjust_context
1438 ((unsigned char *)(mf_imagebase + mf_func->UnwindData), mf_rsp);
1441 exception = __gnat_map_SEH (ms_exc, &msg);
1442 if (exception != NULL)
1444 struct _Unwind_Exception *exc;
1446 /* Directly convert the system exception to a GCC one.
1447 This is really breaking the API, but is necessary for stack size
1448 reasons: the normal way is to call Raise_From_Signal_Handler,
1449 which build the exception and calls _Unwind_RaiseException, which
1450 unwinds the stack and will call this personality routine. But
1451 the Windows unwinder needs about 2KB of stack. */
1452 exc = __gnat_create_machine_occurrence_from_signal_handler
1453 (exception, msg);
1454 memset (exc->private_, 0, sizeof (exc->private_));
1455 ms_exc->ExceptionCode = STATUS_GCC_THROW;
1456 ms_exc->NumberParameters = 1;
1457 ms_exc->ExceptionInformation[0] = (ULONG_PTR)exc;
1462 return _GCC_specific_handler (ms_exc, this_frame, ms_orig_context,
1463 ms_disp, __gnat_personality_imp);
1465 #endif /* SEH */
1467 #if !defined (__USING_SJLJ_EXCEPTIONS__)
1468 /* Size of the _Unwind_Exception structure. This is used by g-cppexc to get
1469 the offset to the C++ object. */
1471 const int __gnat_unwind_exception_size = sizeof (_Unwind_Exception);
1472 #endif