2015-09-28 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / ada / raise.c
bloba0c012167773f708d0a1862b2158f59a5b9d7301
1 /****************************************************************************
2 * *
3 * GNAT COMPILER COMPONENTS *
4 * *
5 * R A I S E *
6 * *
7 * C Implementation File *
8 * *
9 * Copyright (C) 1992-2012, 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 /* Shared routines to support exception handling. __gnat_unhandled_terminate
33 is shared between all exception handling mechanisms. */
35 #ifdef IN_RTS
36 #include "tconfig.h"
37 #include "tsystem.h"
38 #else
39 #include "config.h"
40 #include "system.h"
41 #endif
43 #include "adaint.h"
44 #include "raise.h"
46 #ifdef __cplusplus
47 extern "C" {
48 #endif
50 /* Wrapper to builtin_longjmp. This is for the compiler eh only, as the sjlj
51 runtime library interfaces directly to the intrinsic. We can't yet do
52 this for the compiler itself, because this capability relies on changes
53 made in april 2008 and we need to preserve the possibility to bootstrap
54 with an older base version. */
56 #if defined (IN_GCC) && !defined (IN_RTS)
57 void
58 _gnat_builtin_longjmp (void *ptr, int flag ATTRIBUTE_UNUSED)
60 __builtin_longjmp (ptr, 1);
62 #endif
64 /* When an exception is raised for which no handler exists, the procedure
65 Ada.Exceptions.Unhandled_Exception is called, which performs the call to
66 adafinal to complete finalization, and then prints out the error messages
67 for the unhandled exception. The final step is to call this routine, which
68 performs any system dependent cleanup required. */
70 void
71 __gnat_unhandled_terminate (void)
73 #ifdef VMS
74 /* Special termination handling for VMS */
75 long prvhnd;
77 /* Remove the exception vector so it won't intercept any errors
78 in the call to exit, and go into and endless loop */
80 SYS$SETEXV (1, 0, 3, &prvhnd);
81 #endif
83 /* Default termination handling */
84 __gnat_os_exit (1);
87 #ifdef __cplusplus
89 #endif