* gnu/regexp/CharIndexedReader.java: Removed.
[official-gcc.git] / gcc / ada / raise.c
blob2d7c61a057d48c7afd0ac451eff61dba72d6e49a
1 /****************************************************************************
2 * *
3 * GNAT COMPILER COMPONENTS *
4 * *
5 * R A I S E *
6 * *
7 * C Implementation File *
8 * *
9 * Copyright (C) 1992-2004, 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 2, 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. See the GNU General Public License *
17 * for more details. You should have received a copy of the GNU General *
18 * Public License distributed with GNAT; see file COPYING. If not, write *
19 * to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, *
20 * MA 02111-1307, USA. *
21 * *
22 * As a special exception, if you link this file with other files to *
23 * produce an executable, this file does not by itself cause the resulting *
24 * executable to be covered by the GNU General Public License. This except- *
25 * ion does not however invalidate any other reasons why the executable *
26 * file might be covered by the GNU Public License. *
27 * *
28 * GNAT was originally developed by the GNAT team at New York University. *
29 * Extensive contributions were provided by Ada Core Technologies Inc. *
30 * *
31 ****************************************************************************/
33 /* Routines to support runtime exception handling */
35 #ifdef IN_RTS
36 #include "tconfig.h"
37 /* In the top-of-tree GCC, tconfig does not include tm.h, but in GCC 3.2
38 it does. To avoid branching raise.c just for that purpose, we kludge by
39 looking for a symbol always defined by tm.h and if it's not defined,
40 we include it. */
41 #ifndef FIRST_PSEUDO_REGISTER
42 #include "coretypes.h"
43 #include "tm.h"
44 #endif
45 #include "tsystem.h"
46 #include <sys/stat.h>
47 typedef char bool;
48 # define true 1
49 # define false 0
50 #else
51 #include "config.h"
52 #include "system.h"
53 #endif
55 #include "adaint.h"
56 #include "raise.h"
58 /* We have not yet figured out how to import this directly */
60 void
61 _gnat_builtin_longjmp (void *ptr, int flag ATTRIBUTE_UNUSED)
63 __builtin_longjmp (ptr, 1);
66 /* When an exception is raised for which no handler exists, the procedure
67 Ada.Exceptions.Unhandled_Exception is called, which performs the call to
68 adafinal to complete finalization, and then prints out the error messages
69 for the unhandled exception. The final step is to call this routine, which
70 performs any system dependent cleanup required. */
72 void
73 __gnat_unhandled_terminate (void)
75 /* Special termination handling for VMS */
77 #ifdef VMS
79 long prvhnd;
81 /* Remove the exception vector so it won't intercept any errors
82 in the call to exit, and go into and endless loop */
84 SYS$SETEXV (1, 0, 3, &prvhnd);
85 __gnat_os_exit (1);
88 /* Termination handling for all other systems. */
90 #elif !defined (__RT__)
91 __gnat_os_exit (1);
92 #endif
95 /* Below is the code related to the integration of the GCC mechanism for
96 exception handling. */
98 #include "unwind.h"
100 /* The names of a couple of "standard" routines for unwinding/propagation
101 actually vary depending on the underlying GCC scheme for exception handling
102 (SJLJ or DWARF). We need a consistently named interface to import from
103 a-except, so stubs are defined here. */
105 typedef struct _Unwind_Context _Unwind_Context;
106 typedef struct _Unwind_Exception _Unwind_Exception;
108 _Unwind_Reason_Code
109 __gnat_Unwind_RaiseException (_Unwind_Exception *);
111 _Unwind_Reason_Code
112 __gnat_Unwind_ForcedUnwind (_Unwind_Exception *, void *, void *);
115 #ifdef IN_RTS /* For eh personality routine */
117 #include "dwarf2.h"
118 #include "unwind-dw2-fde.h"
119 #include "unwind-pe.h"
122 /* --------------------------------------------------------------
123 -- The DB stuff below is there for debugging purposes only. --
124 -------------------------------------------------------------- */
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 char * description;
139 } phase_descriptor;
141 static 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)
181 current_indentation_level = 0;
184 if (requests & DB_INDENT_INCREASE)
186 current_indentation_level ++;
189 if (requests & DB_INDENT_DECREASE)
191 current_indentation_level --;
194 if (requests & DB_INDENT_NEWLINE)
196 fprintf (stderr, "\n");
199 if (requests & DB_INDENT_OUTPUT)
201 fprintf (stderr, "%*s",
202 current_indentation_level * DB_INDENT_UNIT, " ");
207 static void
208 db (int db_code, char * msg_format, ...)
210 if (db_accepted_codes () & db_code)
212 va_list msg_args;
214 db_indent (DB_INDENT_OUTPUT);
216 va_start (msg_args, msg_format);
217 vfprintf (stderr, msg_format, msg_args);
218 va_end (msg_args);
222 static void
223 db_phases (int phases)
225 phase_descriptor *a = phase_descriptors;
227 if (! (db_accepted_codes() & DB_PHASES))
228 return;
230 db (DB_PHASES, "\n");
232 for (; a->description != 0; a++)
233 if (phases & a->phase)
234 db (DB_PHASES, "%s ", a->description);
236 db (DB_PHASES, " :\n");
240 /* ---------------------------------------------------------------
241 -- Now come a set of useful structures and helper routines. --
242 --------------------------------------------------------------- */
244 /* There are three major runtime tables involved, generated by the
245 GCC back-end. Contents slightly vary depending on the underlying
246 implementation scheme (dwarf zero cost / sjlj).
248 =======================================
249 * Tables for the dwarf zero cost case *
250 =======================================
252 call_site []
253 -------------------------------------------------------------------
254 * region-start | region-length | landing-pad | first-action-index *
255 -------------------------------------------------------------------
257 Identify possible actions to be taken and where to resume control
258 for that when an exception propagates through a pc inside the region
259 delimited by start and length.
261 A null landing-pad indicates that nothing is to be done.
263 Otherwise, first-action-index provides an entry into the action[]
264 table which heads a list of possible actions to be taken (see below).
266 If it is determined that indeed an action should be taken, that
267 is, if one action filter matches the exception beeing propagated,
268 then control should be transfered to landing-pad.
270 A null first-action-index indicates that there are only cleanups
271 to run there.
273 action []
274 -------------------------------
275 * action-filter | next-action *
276 -------------------------------
278 This table contains lists (called action chains) of possible actions
279 associated with call-site entries described in the call-site [] table.
280 There is at most one action list per call-site entry.
282 A null action-filter indicates a cleanup.
284 Non null action-filters provide an index into the ttypes [] table
285 (see below), from which information may be retrieved to check if it
286 matches the exception beeing propagated.
288 action-filter > 0 means there is a regular handler to be run,
290 action-filter < 0 means there is a some "exception_specification"
291 data to retrieve, which is only relevant for C++
292 and should never show up for Ada.
294 next-action indexes the next entry in the list. 0 indicates there is
295 no other entry.
297 ttypes []
298 ---------------
299 * ttype-value *
300 ---------------
302 A null value indicates a catch-all handler in C++, and an "others"
303 handler in Ada.
305 Non null values are used to match the exception beeing propagated:
306 In C++ this is a pointer to some rtti data, while in Ada this is an
307 exception id.
309 The special id value 1 indicates an "all_others" handler.
311 For C++, this table is actually also used to store "exception
312 specification" data. The differentiation between the two kinds
313 of entries is made by the sign of the associated action filter,
314 which translates into positive or negative offsets from the
315 so called base of the table:
317 Exception Specification data is stored at positive offsets from
318 the ttypes table base, which Exception Type data is stored at
319 negative offsets:
321 ---------------------------------------------------------------------------
323 Here is a quick summary of the tables organization:
325 +-- Unwind_Context (pc, ...)
327 |(pc)
329 | CALL-SITE[]
331 | +=============================================================+
332 | | region-start + length | landing-pad | first-action-index |
333 | +=============================================================+
334 +-> | pc range 0 => no-action 0 => cleanups only |
335 | !0 => jump @ N --+ |
336 +====================================================== | ====+
339 ACTION [] |
341 +==========================================================+ |
342 | action-filter | next-action | |
343 +==========================================================+ |
344 | 0 => cleanup | |
345 | >0 => ttype index for handler ------+ 0 => end of chain | <-+
346 | <0 => ttype index for spec data | |
347 +==================================== | ===================+
350 TTYPES [] |
351 | Offset negated from
352 +=====================+ | the actual base.
353 | ttype-value | |
354 +============+=====================+ |
355 | | 0 => "others" | |
356 | ... | 1 => "all others" | <---+
357 | | X => exception id |
358 | handlers +---------------------+
359 | | ... |
360 | ... | ... |
361 | | ... |
362 +============+=====================+ <<------ Table base
363 | ... | ... |
364 | specs | ... | (should not see negative filter
365 | ... | ... | values for Ada).
366 +============+=====================+
369 ============================
370 * Tables for the sjlj case *
371 ============================
373 So called "function contexts" are pushed on a context stack by calls to
374 _Unwind_SjLj_Register on function entry, and popped off at exit points by
375 calls to _Unwind_SjLj_Unregister. The current call_site for a function is
376 updated in the function context as the function's code runs along.
378 The generic unwinding engine in _Unwind_RaiseException walks the function
379 context stack and not the actual call chain.
381 The ACTION and TTYPES tables remain unchanged, which allows to search them
382 during the propagation phase to determine wether or not the propagated
383 exception is handled somewhere. When it is, we only "jump" up once directly
384 to the context where the handler will be found. Besides, this allows "break
385 exception unhandled" to work also
387 The CALL-SITE table is setup differently, though: the pc attached to the
388 unwind context is a direct index into the table, so the entries in this
389 table do not hold region bounds any more.
391 A special index (-1) is used to indicate that no action is possibly
392 connected with the context at hand, so null landing pads cannot appear
393 in the table.
395 Additionally, landing pad values in the table do not represent code address
396 to jump at, but so called "dispatch" indices used by a common landing pad
397 for the function to switch to the appropriate post-landing-pad.
399 +-- Unwind_Context (pc, ...)
401 | pc = call-site index
402 | 0 => terminate (should not see this for Ada)
403 | -1 => no-action
405 | CALL-SITE[]
407 | +=====================================+
408 | | landing-pad | first-action-index |
409 | +=====================================+
410 +-> | 0 => cleanups only |
411 | dispatch index N |
412 +=====================================+
415 ===================================
416 * Basic organization of this unit *
417 ===================================
419 The major point of this unit is to provide an exception propagation
420 personality routine for Ada. This is __gnat_eh_personality.
422 It is provided with a pointer to the propagated exception, an unwind
423 context describing a location the propagation is going through, and a
424 couple of other arguments including a description of the current
425 propagation phase.
427 It shall return to the generic propagation engine what is to be performed
428 next, after possible context adjustments, depending on what it finds in the
429 traversed context (a handler for the exception, a cleanup, nothing, ...),
430 and on the propagation phase.
432 A number of structures and subroutines are used for this purpose, as
433 sketched below:
435 o region_descriptor: General data associated with the context (base pc,
436 call-site table, action table, ttypes table, ...)
438 o action_descriptor: Data describing the action to be taken for the
439 propagated exception in the provided context (kind of action: nothing,
440 handler, cleanup; pointer to the action table entry, ...).
442 raise
444 ... (a-except.adb)
446 Propagate_Exception (a-exexpr.adb)
449 _Unwind_RaiseException (libgcc)
451 | (Ada frame)
453 +--> __gnat_eh_personality (context, exception)
455 +--> get_region_descriptor_for (context)
457 +--> get_action_descriptor_for (context, exception, region)
459 | +--> get_call_site_action_for (context, region)
460 | (one version for each underlying scheme)
462 +--> setup_to_install (context)
464 This unit is inspired from the C++ version found in eh_personality.cc,
465 part of libstdc++-v3.
470 /* This is the structure of exception objects as built by the GNAT runtime
471 library (a-exexpr.adb). The layouts should exactly match, and the "common"
472 header is mandated by the exception handling ABI. */
474 typedef struct
476 _Unwind_Exception common;
477 /* ABI header, maximally aligned. */
479 _Unwind_Ptr id;
480 /* Id of the exception beeing propagated, filled by Propagate_Exception.
482 This is compared against the ttype entries associated with actions in the
483 examined context to see if one of these actions matches. */
485 int n_cleanups_to_trigger;
486 /* Number of cleanups on the propagation way for the occurrence. This is
487 initialized to 0 by Propagate_Exception and computed by the personality
488 routine during the first phase of the propagation (incremented for each
489 context in which only cleanup actions match).
491 This is used by Propagate_Exception when the occurrence is not handled,
492 to control a forced unwinding phase aimed at triggering all the cleanups
493 before calling Unhandled_Exception_Terminate.
495 This is also used by __gnat_eh_personality to identify the point at which
496 the notification routine shall be called for a handled occurrence. */
497 } _GNAT_Exception;
499 /* The two constants below are specific ttype identifiers for special
500 exception ids. Their value is currently hardcoded at the gigi level
501 (see N_Exception_Handler). */
503 #define GNAT_OTHERS ((_Unwind_Ptr) 0x0)
504 #define GNAT_ALL_OTHERS ((_Unwind_Ptr) 0x1)
506 /* Describe the useful region data associated with an unwind context. */
508 typedef struct
510 /* The base pc of the region. */
511 _Unwind_Ptr base;
513 /* Pointer to the Language Specific Data for the region. */
514 _Unwind_Ptr lsda;
516 /* Call-Site data associated with this region. */
517 unsigned char call_site_encoding;
518 const unsigned char *call_site_table;
520 /* The base to which are relative landing pad offsets inside the call-site
521 entries . */
522 _Unwind_Ptr lp_base;
524 /* Action-Table associated with this region. */
525 const unsigned char *action_table;
527 /* Ttype data associated with this region. */
528 unsigned char ttype_encoding;
529 const unsigned char *ttype_table;
530 _Unwind_Ptr ttype_base;
532 } region_descriptor;
534 static void
535 db_region_for (region_descriptor *region, _Unwind_Context *uw_context)
537 _Unwind_Ptr ip = _Unwind_GetIP (uw_context) - 1;
539 if (! (db_accepted_codes () & DB_REGIONS))
540 return;
542 db (DB_REGIONS, "For ip @ 0x%08x => ", ip);
544 if (region->lsda)
545 db (DB_REGIONS, "lsda @ 0x%x", region->lsda);
546 else
547 db (DB_REGIONS, "no lsda");
549 db (DB_REGIONS, "\n");
552 /* Retrieve the ttype entry associated with FILTER in the REGION's
553 ttype table. */
555 static const _Unwind_Ptr
556 get_ttype_entry_for (region_descriptor *region, long filter)
558 _Unwind_Ptr ttype_entry;
560 filter *= size_of_encoded_value (region->ttype_encoding);
561 read_encoded_value_with_base
562 (region->ttype_encoding, region->ttype_base,
563 region->ttype_table - filter, &ttype_entry);
565 return ttype_entry;
568 /* Fill out the REGION descriptor for the provided UW_CONTEXT. */
570 static void
571 get_region_description_for (_Unwind_Context *uw_context,
572 region_descriptor *region)
574 const unsigned char * p;
575 _Unwind_Word tmp;
576 unsigned char lpbase_encoding;
578 /* Get the base address of the lsda information. If the provided context
579 is null or if there is no associated language specific data, there's
580 nothing we can/should do. */
581 region->lsda
582 = (_Unwind_Ptr) (uw_context
583 ? _Unwind_GetLanguageSpecificData (uw_context) : 0);
585 if (! region->lsda)
586 return;
588 /* Parse the lsda and fill the region descriptor. */
589 p = (char *)region->lsda;
591 region->base = _Unwind_GetRegionStart (uw_context);
593 /* Find @LPStart, the base to which landing pad offsets are relative. */
594 lpbase_encoding = *p++;
595 if (lpbase_encoding != DW_EH_PE_omit)
596 p = read_encoded_value
597 (uw_context, lpbase_encoding, p, &region->lp_base);
598 else
599 region->lp_base = region->base;
601 /* Find @TType, the base of the handler and exception spec type data. */
602 region->ttype_encoding = *p++;
603 if (region->ttype_encoding != DW_EH_PE_omit)
605 p = read_uleb128 (p, &tmp);
606 region->ttype_table = p + tmp;
608 else
609 region->ttype_table = 0;
611 region->ttype_base
612 = base_of_encoded_value (region->ttype_encoding, uw_context);
614 /* Get the encoding and length of the call-site table; the action table
615 immediately follows. */
616 region->call_site_encoding = *p++;
617 region->call_site_table = read_uleb128 (p, &tmp);
619 region->action_table = region->call_site_table + tmp;
623 /* Describe an action to be taken when propagating an exception up to
624 some context. */
626 typedef enum
628 /* Found some call site base data, but need to analyze further
629 before beeing able to decide. */
630 unknown,
632 /* There is nothing relevant in the context at hand. */
633 nothing,
635 /* There are only cleanups to run in this context. */
636 cleanup,
638 /* There is a handler for the exception in this context. */
639 handler
640 } action_kind;
643 typedef struct
645 /* The kind of action to be taken. */
646 action_kind kind;
648 /* A pointer to the action record entry. */
649 const unsigned char *table_entry;
651 /* Where we should jump to actually take an action (trigger a cleanup or an
652 exception handler). */
653 _Unwind_Ptr landing_pad;
655 /* If we have a handler matching our exception, these are the filter to
656 trigger it and the corresponding id. */
657 _Unwind_Sword ttype_filter;
658 _Unwind_Ptr ttype_entry;
660 } action_descriptor;
663 static void
664 db_action_for (action_descriptor *action, _Unwind_Context *uw_context)
666 _Unwind_Ptr ip = _Unwind_GetIP (uw_context) - 1;
668 db (DB_ACTIONS, "For ip @ 0x%08x => ", ip);
670 switch (action->kind)
672 case unknown:
673 db (DB_ACTIONS, "lpad @ 0x%x, record @ 0x%x\n",
674 action->landing_pad, action->table_entry);
675 break;
677 case nothing:
678 db (DB_ACTIONS, "Nothing\n");
679 break;
681 case cleanup:
682 db (DB_ACTIONS, "Cleanup\n");
683 break;
685 case handler:
686 db (DB_ACTIONS, "Handler, filter = %d\n", action->ttype_filter);
687 break;
689 default:
690 db (DB_ACTIONS, "Err? Unexpected action kind !\n");
691 break;
694 return;
698 /* Search the call_site_table of REGION for an entry appropriate for the
699 UW_CONTEXT's ip. If one is found, store the associated landing_pad and
700 action_table entry, and set the ACTION kind to unknown for further
701 analysis. Otherwise, set the ACTION kind to nothing.
703 There are two variants of this routine, depending on the underlying
704 mechanism (dwarf/sjlj), which account for differences in the tables
705 organization.
708 #ifdef __USING_SJLJ_EXCEPTIONS__
710 #define __builtin_eh_return_data_regno(x) x
712 static void
713 get_call_site_action_for (_Unwind_Context *uw_context,
714 region_descriptor *region,
715 action_descriptor *action)
717 _Unwind_Ptr call_site
718 = _Unwind_GetIP (uw_context) - 1;
719 /* Subtract 1 because GetIP returns the actual call_site value + 1. */
721 /* call_site is a direct index into the call-site table, with two special
722 values : -1 for no-action and 0 for "terminate". The latter should never
723 show up for Ada. To test for the former, beware that _Unwind_Ptr might be
724 unsigned. */
726 if ((int)call_site < 0)
728 action->kind = nothing;
729 return;
731 else if (call_site == 0)
733 db (DB_ERR, "========> Err, null call_site for Ada/sjlj\n");
734 action->kind = nothing;
735 return;
737 else
739 _Unwind_Word cs_lp, cs_action;
741 /* Let the caller know there may be an action to take, but let it
742 determine the kind. */
743 action->kind = unknown;
745 /* We have a direct index into the call-site table, but this table is
746 made of leb128 values, the encoding length of which is variable. We
747 can't merely compute an offset from the index, then, but have to read
748 all the entries before the one of interest. */
750 const unsigned char * p = region->call_site_table;
752 do {
753 p = read_uleb128 (p, &cs_lp);
754 p = read_uleb128 (p, &cs_action);
755 } while (--call_site);
758 action->landing_pad = cs_lp + 1;
760 if (cs_action)
761 action->table_entry = region->action_table + cs_action - 1;
762 else
763 action->table_entry = 0;
765 return;
769 #else
770 /* ! __USING_SJLJ_EXCEPTIONS__ */
772 static void
773 get_call_site_action_for (_Unwind_Context *uw_context,
774 region_descriptor *region,
775 action_descriptor *action)
777 _Unwind_Ptr ip
778 = _Unwind_GetIP (uw_context) - 1;
779 /* Substract 1 because GetIP yields a call return address while we are
780 interested in information for the call point. This does not always yield
781 the exact call instruction address but always brings the ip back within
782 the corresponding region.
784 ??? When unwinding up from a signal handler triggered by a trap on some
785 instruction, we usually have the faulting instruction address here and
786 subtracting 1 might get us into the wrong region. */
788 const unsigned char * p
789 = region->call_site_table;
791 /* Unless we are able to determine otherwise ... */
792 action->kind = nothing;
794 db (DB_CSITE, "\n");
796 while (p < region->action_table)
798 _Unwind_Ptr cs_start, cs_len, cs_lp;
799 _Unwind_Word cs_action;
801 /* Note that all call-site encodings are "absolute" displacements. */
802 p = read_encoded_value (0, region->call_site_encoding, p, &cs_start);
803 p = read_encoded_value (0, region->call_site_encoding, p, &cs_len);
804 p = read_encoded_value (0, region->call_site_encoding, p, &cs_lp);
805 p = read_uleb128 (p, &cs_action);
807 db (DB_CSITE,
808 "c_site @ 0x%08x (+0x%03x), len = %3d, lpad @ 0x%08x (+0x%03x)\n",
809 region->base+cs_start, cs_start, cs_len,
810 region->lp_base+cs_lp, cs_lp);
812 /* The table is sorted, so if we've passed the ip, stop. */
813 if (ip < region->base + cs_start)
814 break;
816 /* If we have a match, fill the ACTION fields accordingly. */
817 else if (ip < region->base + cs_start + cs_len)
819 /* Let the caller know there may be an action to take, but let it
820 determine the kind. */
821 action->kind = unknown;
823 if (cs_lp)
824 action->landing_pad = region->lp_base + cs_lp;
825 else
826 action->landing_pad = 0;
828 if (cs_action)
829 action->table_entry = region->action_table + cs_action - 1;
830 else
831 action->table_entry = 0;
833 db (DB_CSITE, "+++\n");
834 return;
838 db (DB_CSITE, "---\n");
841 #endif
843 /* With CHOICE an exception choice representing an "exception - when"
844 argument, and PROPAGATED_EXCEPTION a pointer to the currently propagated
845 occurrence, return true iif the latter matches the former, that is, if
846 PROPAGATED_EXCEPTION is caught by the handling code controlled by CHOICE.
847 This takes care of the special Non_Ada_Error case on VMS. */
849 #define Is_Handled_By_Others __gnat_is_handled_by_others
850 #define Language_For __gnat_language_for
851 #define Import_Code_For __gnat_import_code_for
853 extern bool Is_Handled_By_Others (_Unwind_Ptr e);
854 extern char Language_For (_Unwind_Ptr e);
856 extern Exception_Code Import_Code_For (_Unwind_Ptr e);
858 static int
859 is_handled_by (_Unwind_Ptr choice, _GNAT_Exception * propagated_exception)
861 /* Pointer to the GNAT exception data corresponding to the propagated
862 occurrence. */
863 _Unwind_Ptr E = propagated_exception->id;
865 /* Base matching rules: An exception data (id) matches itself, "when
866 all_others" matches anything and "when others" matches anything unless
867 explicitely stated otherwise in the propagated occurrence. */
869 bool is_handled =
870 choice == E
871 || choice == GNAT_ALL_OTHERS
872 || (choice == GNAT_OTHERS && Is_Handled_By_Others (E));
874 /* In addition, on OpenVMS, Non_Ada_Error matches VMS exceptions, and we
875 may have different exception data pointers that should match for the
876 same condition code, if both an export and an import have been
877 registered. The import code for both the choice and the propagated
878 occurrence are expected to have been masked off regarding severity
879 bits already (at registration time for the former and from within the
880 low level exception vector for the latter). */
881 #ifdef VMS
882 #define Non_Ada_Error system__aux_dec__non_ada_error
883 extern struct Exception_Data Non_Ada_Error;
885 is_handled |=
886 (Language_For (E) == 'V'
887 && choice != GNAT_OTHERS && choice != GNAT_ALL_OTHERS
888 && ((Language_For (choice) == 'V' && Import_Code_For (choice) != 0
889 && Import_Code_For (choice) == Import_Code_For (E))
890 || choice == (_Unwind_Ptr)&Non_Ada_Error));
891 #endif
893 return is_handled;
896 /* Fill out the ACTION to be taken from propagating UW_EXCEPTION up to
897 UW_CONTEXT in REGION. */
899 static void
900 get_action_description_for (_Unwind_Context *uw_context,
901 _Unwind_Exception *uw_exception,
902 region_descriptor *region,
903 action_descriptor *action)
905 _GNAT_Exception * gnat_exception = (_GNAT_Exception *) uw_exception;
907 /* Search the call site table first, which may get us a landing pad as well
908 as the head of an action record list. */
909 get_call_site_action_for (uw_context, region, action);
910 db_action_for (action, uw_context);
912 /* If there is not even a call_site entry, we are done. */
913 if (action->kind == nothing)
914 return;
916 /* Otherwise, check what we have at the place of the call site */
918 /* No landing pad => no cleanups or handlers. */
919 if (action->landing_pad == 0)
921 action->kind = nothing;
922 return;
925 /* Landing pad + null table entry => only cleanups. */
926 else if (action->table_entry == 0)
928 action->kind = cleanup;
929 return;
932 /* Landing pad + Table entry => handlers + possible cleanups. */
933 else
935 const unsigned char * p = action->table_entry;
937 _Unwind_Sword ar_filter, ar_disp;
939 action->kind = nothing;
941 while (1)
943 p = read_sleb128 (p, &ar_filter);
944 read_sleb128 (p, &ar_disp);
945 /* Don't assign p here, as it will be incremented by ar_disp
946 below. */
948 /* Null filters are for cleanups. */
949 if (ar_filter == 0)
950 action->kind = cleanup;
952 /* Positive filters are for regular handlers. */
953 else if (ar_filter > 0)
955 /* See if the filter we have is for an exception which matches
956 the one we are propagating. */
957 _Unwind_Ptr choice = get_ttype_entry_for (region, ar_filter);
959 if (is_handled_by (choice, gnat_exception))
961 action->ttype_filter = ar_filter;
962 action->ttype_entry = choice;
963 action->kind = handler;
964 return;
968 /* Negative filter values are for C++ exception specifications.
969 Should not be there for Ada :/ */
970 else
971 db (DB_ERR, "========> Err, filter < 0 for Ada/dwarf\n");
973 if (ar_disp == 0)
974 return;
976 p += ar_disp;
981 /* Setup in UW_CONTEXT the eh return target IP and data registers, which will
982 be restored with the others and retrieved by the landing pad once the jump
983 occured. */
985 static void
986 setup_to_install (_Unwind_Context *uw_context,
987 _Unwind_Exception *uw_exception,
988 _Unwind_Ptr uw_landing_pad,
989 int uw_filter)
991 #ifndef EH_RETURN_DATA_REGNO
992 /* We should not be called if the appropriate underlying support is not
993 there. */
994 abort ();
995 #else
996 /* 1/ exception object pointer, which might be provided back to
997 _Unwind_Resume (and thus to this personality routine) if we are jumping
998 to a cleanup. */
999 _Unwind_SetGR (uw_context, __builtin_eh_return_data_regno (0),
1000 (_Unwind_Word)uw_exception);
1002 /* 2/ handler switch value register, which will also be used by the target
1003 landing pad to decide what action it shall take. */
1004 _Unwind_SetGR (uw_context, __builtin_eh_return_data_regno (1),
1005 (_Unwind_Word)uw_filter);
1007 /* Setup the address we should jump at to reach the code where there is the
1008 "something" we found. */
1009 _Unwind_SetIP (uw_context, uw_landing_pad);
1010 #endif
1013 /* The following is defined from a-except.adb. Its purpose is to enable
1014 automatic backtraces upon exception raise, as provided through the
1015 GNAT.Traceback facilities. */
1016 extern void __gnat_notify_handled_exception (void);
1017 extern void __gnat_notify_unhandled_exception (void);
1019 /* Below is the eh personality routine per se. We currently assume that only
1020 GNU-Ada exceptions are met. */
1022 _Unwind_Reason_Code
1023 __gnat_eh_personality (int uw_version,
1024 _Unwind_Action uw_phases,
1025 _Unwind_Exception_Class uw_exception_class,
1026 _Unwind_Exception *uw_exception,
1027 _Unwind_Context *uw_context)
1029 _GNAT_Exception * gnat_exception = (_GNAT_Exception *) uw_exception;
1031 region_descriptor region;
1032 action_descriptor action;
1034 if (uw_version != 1)
1035 return _URC_FATAL_PHASE1_ERROR;
1037 db_indent (DB_INDENT_RESET);
1038 db_phases (uw_phases);
1039 db_indent (DB_INDENT_INCREASE);
1041 /* Get the region description for the context we were provided with. This
1042 will tell us if there is some lsda, call_site, action and/or ttype data
1043 for the associated ip. */
1044 get_region_description_for (uw_context, &region);
1045 db_region_for (&region, uw_context);
1047 /* No LSDA => no handlers or cleanups => we shall unwind further up. */
1048 if (! region.lsda)
1049 return _URC_CONTINUE_UNWIND;
1051 /* Search the call-site and action-record tables for the action associated
1052 with this IP. */
1053 get_action_description_for (uw_context, uw_exception, &region, &action);
1054 db_action_for (&action, uw_context);
1056 /* Whatever the phase, if there is nothing relevant in this frame,
1057 unwinding should just go on. */
1058 if (action.kind == nothing)
1059 return _URC_CONTINUE_UNWIND;
1061 /* If we found something in search phase, we should return a code indicating
1062 what to do next depending on what we found. If we only have cleanups
1063 around, we shall try to unwind further up to find a handler, otherwise,
1064 tell we have a handler, which will trigger the second phase. */
1065 if (uw_phases & _UA_SEARCH_PHASE)
1067 if (action.kind == cleanup)
1069 gnat_exception->n_cleanups_to_trigger ++;
1070 return _URC_CONTINUE_UNWIND;
1072 else
1074 /* Trigger the appropriate notification routines before the second
1075 phase starts, which ensures the stack is still intact. */
1076 __gnat_notify_handled_exception ();
1078 return _URC_HANDLER_FOUND;
1082 /* We found something in cleanup/handler phase, which might be the handler
1083 or a cleanup for a handled occurrence, or a cleanup for an unhandled
1084 occurrence (we are in a FORCED_UNWIND phase in this case). Install the
1085 context to get there. */
1087 /* If we are going to install a cleanup context, decrement the cleanup
1088 count. This is required in a FORCED_UNWINDing phase (for an unhandled
1089 exception), as this is used from the forced unwinding handler in
1090 Ada.Exceptions.Exception_Propagation to decide wether unwinding should
1091 proceed further or Unhandled_Exception_Terminate should be called. */
1092 if (action.kind == cleanup)
1093 gnat_exception->n_cleanups_to_trigger --;
1095 setup_to_install
1096 (uw_context, uw_exception, action.landing_pad, action.ttype_filter);
1098 return _URC_INSTALL_CONTEXT;
1101 /* Define the consistently named stubs imported by Propagate_Exception. */
1103 #ifdef __USING_SJLJ_EXCEPTIONS__
1105 #undef _Unwind_RaiseException
1107 _Unwind_Reason_Code
1108 __gnat_Unwind_RaiseException (_Unwind_Exception *e)
1110 return _Unwind_SjLj_RaiseException (e);
1114 #undef _Unwind_ForcedUnwind
1116 _Unwind_Reason_Code
1117 __gnat_Unwind_ForcedUnwind (_Unwind_Exception *e,
1118 void * handler,
1119 void * argument)
1121 return _Unwind_SjLj_ForcedUnwind (e, handler, argument);
1125 #else /* __USING_SJLJ_EXCEPTIONS__ */
1127 _Unwind_Reason_Code
1128 __gnat_Unwind_RaiseException (_Unwind_Exception *e)
1130 return _Unwind_RaiseException (e);
1133 _Unwind_Reason_Code
1134 __gnat_Unwind_ForcedUnwind (_Unwind_Exception *e,
1135 void * handler,
1136 void * argument)
1138 return _Unwind_ForcedUnwind (e, handler, argument);
1141 #endif /* __USING_SJLJ_EXCEPTIONS__ */
1143 #else
1144 /* ! IN_RTS */
1146 /* The calls to the GCC runtime interface for exception raising are currently
1147 issued from a-exexpr.adb, which is used by both the runtime library and the
1148 compiler.
1150 As the compiler binary is not linked against the GCC runtime library, we
1151 need also need stubs for this interface in the compiler case. We should not
1152 be using the GCC eh mechanism for the compiler, however, so expect these
1153 functions never to be called. */
1155 _Unwind_Reason_Code
1156 __gnat_Unwind_RaiseException (_Unwind_Exception *e ATTRIBUTE_UNUSED)
1158 abort ();
1162 _Unwind_Reason_Code
1163 __gnat_Unwind_ForcedUnwind (_Unwind_Exception *e ATTRIBUTE_UNUSED,
1164 void * handler ATTRIBUTE_UNUSED,
1165 void * argument ATTRIBUTE_UNUSED)
1167 abort ();
1170 #endif /* IN_RTS */