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-2015, 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.
36 pragma Compiler_Unit_Warning
;
38 with System
.Standard_Library
;
40 package System
.Exceptions_Debug
is
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
50 (E
: SSL
.Exception_Data_Ptr
; Message
: String);
52 (Ada
, Debug_Raise_Exception
, "__gnat_debug_raise_exception");
53 -- Hook called at a "raise" point for an exception E, when it is
54 -- just about to be propagated.
56 procedure Debug_Unhandled_Exception
(E
: SSL
.Exception_Data_Ptr
);
58 (Ada
, Debug_Unhandled_Exception
, "__gnat_unhandled_exception");
59 -- Hook called during the propagation process of an exception E, as soon
60 -- as it is known to be unhandled.
62 procedure Debug_Raise_Assert_Failure
;
64 (Ada
, Debug_Raise_Assert_Failure
, "__gnat_debug_raise_assert_failure");
65 -- Hook called when an assertion failed. This is used by the debugger to
66 -- intercept assertion failures, and treat them specially.
68 procedure Local_Raise
(Excep
: System
.Address
);
69 pragma Export
(Ada
, Local_Raise
);
70 -- This is a dummy routine, used only by the debugger for the purpose of
71 -- logging local raise statements that were transformed into a direct goto
72 -- to the handler code. The compiler in this case generates:
74 -- Local_Raise (exception_data'address);
77 -- The argument is the address of the exception data
78 end System
.Exceptions_Debug
;