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