OSDN Git Service

* gcc-interface/Makefile.in (gnatlib-shared-default): Append
[pf3gnuchains/gcc-fork.git] / gcc / ada / raise.c
1 /****************************************************************************
2  *                                                                          *
3  *                         GNAT COMPILER COMPONENTS                         *
4  *                                                                          *
5  *                                R A I S E                                 *
6  *                                                                          *
7  *                          C Implementation File                           *
8  *                                                                          *
9  *             Copyright (C) 1992-2011, 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  ****************************************************************************/
31
32 /* Shared routines to support exception handling.  __gnat_unhandled_terminate
33    is shared between all exception handling mechanisms.  */
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38
39 #ifdef IN_RTS
40 #include "tconfig.h"
41 #include "tsystem.h"
42 #else
43 #include "config.h"
44 #include "system.h"
45 #endif
46
47 #include "adaint.h"
48 #include "raise.h"
49
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.  */
55
56 #if defined (IN_GCC) && !defined (IN_RTS)
57 void
58 _gnat_builtin_longjmp (void *ptr, int flag ATTRIBUTE_UNUSED)
59 {
60    __builtin_longjmp (ptr, 1);
61 }
62 #endif
63
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.  */
69
70 void
71 __gnat_unhandled_terminate (void)
72 {
73 #ifdef VMS
74   /* Special termination handling for VMS */
75   long prvhnd;
76
77   /* Remove the exception vector so it won't intercept any errors
78      in the call to exit, and go into and endless loop */
79
80   SYS$SETEXV (1, 0, 3, &prvhnd);
81 #endif
82
83   /* Default termination handling */
84   __gnat_os_exit (1);
85 }
86
87 #ifdef __cplusplus
88 }
89 #endif