1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
5 -- S Y S T E M . E X C E P T I O N S _ D E B U G --
9 -- Copyright (C) 2006-2011, Free Software Foundation, Inc. --
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. --
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. --
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/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 -- This package contains internal routines used as debugger helpers.
33 -- It should be compiled without optimization to let debuggers inspect
34 -- parameter values reliably from breakpoints on the routines.
38 with System
.Standard_Library
;
40 package System
.Exceptions_Debug
is
42 pragma Preelaborate_05
;
43 -- To let Ada.Exceptions "with" us and let us "with" Standard_Library
45 package SSL
renames System
.Standard_Library
;
46 -- To let some of the hooks below have formal parameters typed in
47 -- accordance with what GDB expects.
49 procedure Debug_Raise_Exception
(E
: SSL
.Exception_Data_Ptr
);
51 (Ada
, Debug_Raise_Exception
, "__gnat_debug_raise_exception");
52 -- Hook called at a "raise" point for an exception E, when it is
53 -- just about to be propagated.
55 procedure Debug_Unhandled_Exception
(E
: SSL
.Exception_Data_Ptr
);
57 (Ada
, Debug_Unhandled_Exception
, "__gnat_unhandled_exception");
58 -- Hook called during the propagation process of an exception E, as soon
59 -- as it is known to be unhandled.
61 procedure Debug_Raise_Assert_Failure
;
63 (Ada
, Debug_Raise_Assert_Failure
, "__gnat_debug_raise_assert_failure");
64 -- Hook called when an assertion failed. This is used by the debugger to
65 -- intercept assertion failures, and treat them specially.
67 procedure Local_Raise
(Excep
: System
.Address
);
68 pragma Export
(Ada
, Local_Raise
);
69 -- This is a dummy routine, used only by the debugger for the purpose of
70 -- logging local raise statements that were transformed into a direct goto
71 -- to the handler code. The compiler in this case generates:
73 -- Local_Raise (exception_data'address);
76 -- The argument is the address of the exception data
77 end System
.Exceptions_Debug
;