* gcc.c (getenv_spec_function): New function.
[official-gcc.git] / gcc / ada / a-except-2005.ads
blobfd42ab79cd45e839624d010a133d5dca22d0dd1e
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME COMPONENTS --
4 -- --
5 -- A D A . E X C E P T I O N S --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1992-2006, Free Software Foundation, Inc. --
10 -- --
11 -- This specification is derived from the Ada Reference Manual for use with --
12 -- GNAT. The copyright notice above, and the license provisions that follow --
13 -- apply solely to the contents of the part following the private keyword. --
14 -- --
15 -- GNAT is free software; you can redistribute it and/or modify it under --
16 -- terms of the GNU General Public License as published by the Free Soft- --
17 -- ware Foundation; either version 2, or (at your option) any later ver- --
18 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
19 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
20 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
21 -- for more details. You should have received a copy of the GNU General --
22 -- Public License distributed with GNAT; see file COPYING. If not, write --
23 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
24 -- Boston, MA 02110-1301, USA. --
25 -- --
26 -- As a special exception, if other files instantiate generics from this --
27 -- unit, or you link this unit with other files to produce an executable, --
28 -- this unit does not by itself cause the resulting executable to be --
29 -- covered by the GNU General Public License. This exception does not --
30 -- however invalidate any other reasons why the executable file might be --
31 -- covered by the GNU Public License. --
32 -- --
33 -- GNAT was originally developed by the GNAT team at New York University. --
34 -- Extensive contributions were provided by Ada Core Technologies Inc. --
35 -- --
36 ------------------------------------------------------------------------------
38 -- This version is used for all Ada 2005 builds. It differs from a-except.ads
39 -- only with respect to the addition of Wide_[Wide]Exception_Name functions.
40 -- The additional entities are marked with pragma Ada_05, so this extended
41 -- unit is also perfectly suitable for use in Ada 95 or Ada 83 mode.
43 -- The reason for this splitting off of a separate version is that bootstrap
44 -- compilers often will be used that do not support Ada 2005 features, and
45 -- Ada.Exceptions is part of the compiler sources.
47 -- The base version of this unit Ada.Exceptions omits the Wide version of
48 -- Exception_Name and is used to build the compiler and other basic tools.
50 pragma Polling (Off);
51 -- We must turn polling off for this unit, because otherwise we get
52 -- elaboration circularities with ourself.
54 with System;
55 with System.Parameters;
56 with System.Standard_Library;
57 with System.Traceback_Entries;
59 package Ada.Exceptions is
60 pragma Warnings (Off);
61 pragma Preelaborate_05;
62 pragma Warnings (On);
63 -- In accordance with Ada 2005 AI-362. The warnings pragmas are so that we
64 -- can compile this using older compiler versions, which will ignore the
65 -- pragma, which is fine for the bootstrap.
67 type Exception_Id is private;
68 pragma Preelaborable_Initialization (Exception_Id);
70 Null_Id : constant Exception_Id;
72 type Exception_Occurrence is limited private;
73 pragma Preelaborable_Initialization (Exception_Occurrence);
75 type Exception_Occurrence_Access is access all Exception_Occurrence;
77 Null_Occurrence : constant Exception_Occurrence;
79 function Exception_Name (Id : Exception_Id) return String;
81 function Exception_Name (X : Exception_Occurrence) return String;
83 function Wide_Exception_Name
84 (Id : Exception_Id) return Wide_String;
85 pragma Ada_05 (Wide_Exception_Name);
87 function Wide_Exception_Name
88 (X : Exception_Occurrence) return Wide_String;
89 pragma Ada_05 (Wide_Exception_Name);
91 function Wide_Wide_Exception_Name
92 (Id : Exception_Id) return Wide_Wide_String;
93 pragma Ada_05 (Wide_Wide_Exception_Name);
95 function Wide_Wide_Exception_Name
96 (X : Exception_Occurrence) return Wide_Wide_String;
97 pragma Ada_05 (Wide_Wide_Exception_Name);
99 procedure Raise_Exception (E : Exception_Id; Message : String := "");
100 -- Note: it would be really nice to give a pragma No_Return for this
101 -- procedure, but it would be wrong, since Raise_Exception does return
102 -- if given the null exception. However we do special case the name in
103 -- the test in the compiler for issuing a warning for a missing return
104 -- after this call. Program_Error seems reasonable enough in such a case.
105 -- See also the routine Raise_Exception_Always in the private part.
107 function Exception_Message (X : Exception_Occurrence) return String;
109 procedure Reraise_Occurrence (X : Exception_Occurrence);
110 -- Note: it would be really nice to give a pragma No_Return for this
111 -- procedure, but it would be wrong, since Reraise_Occurrence does return
112 -- if the argument is the null exception occurrence. See also procedure
113 -- Reraise_Occurrence_Always in the private part of this package.
115 function Exception_Identity (X : Exception_Occurrence) return Exception_Id;
117 function Exception_Information (X : Exception_Occurrence) return String;
118 -- The format of the exception information is as follows:
120 -- exception name (as in Exception_Name)
121 -- message (or a null line if no message)
122 -- PID=nnnn
123 -- 0xyyyyyyyy 0xyyyyyyyy ...
125 -- The lines are separated by a ASCII.LF character
126 -- The nnnn is the partition Id given as decimal digits.
127 -- The 0x... line represents traceback program counter locations,
128 -- in order with the first one being the exception location.
130 -- Note on ordering: the compiler uses the Save_Occurrence procedure, but
131 -- not the function from Rtsfind, so it is important that the procedure
132 -- come first, since Rtsfind finds the first matching entity.
134 procedure Save_Occurrence
135 (Target : out Exception_Occurrence;
136 Source : Exception_Occurrence);
138 function Save_Occurrence
139 (Source : Exception_Occurrence)
140 return Exception_Occurrence_Access;
142 private
143 package SSL renames System.Standard_Library;
144 package SP renames System.Parameters;
146 subtype EOA is Exception_Occurrence_Access;
148 Exception_Msg_Max_Length : constant := SP.Default_Exception_Msg_Max_Length;
150 ------------------
151 -- Exception_Id --
152 ------------------
154 subtype Code_Loc is System.Address;
155 -- Code location used in building exception tables and for call addresses
156 -- when propagating an exception. Values of this type are created by using
157 -- Label'Address or extracted from machine states using Get_Code_Loc.
159 Null_Loc : constant Code_Loc := System.Null_Address;
160 -- Null code location, used to flag outer level frame
162 type Exception_Id is new SSL.Exception_Data_Ptr;
164 function EId_To_String (X : Exception_Id) return String;
165 function String_To_EId (S : String) return Exception_Id;
166 pragma Stream_Convert (Exception_Id, String_To_EId, EId_To_String);
167 -- Functions for implementing Exception_Id stream attributes
169 Null_Id : constant Exception_Id := null;
171 -------------------------
172 -- Private Subprograms --
173 -------------------------
175 function Current_Target_Exception return Exception_Occurrence;
176 pragma Export
177 (Ada, Current_Target_Exception,
178 "__gnat_current_target_exception");
179 -- This routine should return the current raised exception on targets
180 -- which have built-in exception handling such as the Java Virtual
181 -- Machine. For other targets this routine is simply ignored. Currently,
182 -- only JGNAT uses this. See 4jexcept.ads for details. The pragma Export
183 -- allows this routine to be accessed elsewhere in the run-time, even
184 -- though it is in the private part of this package (it is not allowed
185 -- to be in the visible part, since this is set by the reference manual).
187 function Exception_Name_Simple (X : Exception_Occurrence) return String;
188 -- Like Exception_Name, but returns the simple non-qualified name of the
189 -- exception. This is used to implement the Exception_Name function in
190 -- Current_Exceptions (the DEC compatible unit). It is called from the
191 -- compiler generated code (using Rtsfind, which does not respect the
192 -- private barrier, so we can place this function in the private part
193 -- where the compiler can find it, but the spec is unchanged.)
195 procedure Raise_Exception_Always (E : Exception_Id; Message : String := "");
196 pragma No_Return (Raise_Exception_Always);
197 pragma Export (Ada, Raise_Exception_Always, "__gnat_raise_exception");
198 -- This differs from Raise_Exception only in that the caller has determined
199 -- that for sure the parameter E is not null, and that therefore the call
200 -- to this procedure cannot return. The expander converts Raise_Exception
201 -- calls to Raise_Exception_Always if it can determine this is the case.
202 -- The Export allows this routine to be accessed from Pure units.
204 procedure Raise_From_Signal_Handler
205 (E : Exception_Id;
206 M : System.Address);
207 pragma Export
208 (Ada, Raise_From_Signal_Handler,
209 "ada__exceptions__raise_from_signal_handler");
210 pragma No_Return (Raise_From_Signal_Handler);
211 -- This routine is used to raise an exception from a signal handler. The
212 -- signal handler has already stored the machine state (i.e. the state that
213 -- corresponds to the location at which the signal was raised). E is the
214 -- Exception_Id specifying what exception is being raised, and M is a
215 -- pointer to a null-terminated string which is the message to be raised.
216 -- Note that this routine never returns, so it is permissible to simply
217 -- jump to this routine, rather than call it. This may be appropriate for
218 -- systems where the right way to get out of signal handler is to alter the
219 -- PC value in the machine state or in some other way ask the operating
220 -- system to return here rather than to the original location.
222 procedure Reraise_Occurrence_Always (X : Exception_Occurrence);
223 pragma No_Return (Reraise_Occurrence_Always);
224 -- This differs from Raise_Occurrence only in that the caller guarantees
225 -- that for sure the parameter X is not the null occurrence, and that
226 -- therefore this procedure cannot return. The expander uses this routine
227 -- in the translation of a raise statement with no parameter (reraise).
229 procedure Reraise_Occurrence_No_Defer (X : Exception_Occurrence);
230 pragma No_Return (Reraise_Occurrence_No_Defer);
231 -- Exactly like Reraise_Occurrence, except that abort is not deferred
232 -- before the call and the parameter X is known not to be the null
233 -- occurrence. This is used in generated code when it is known that
234 -- abort is already deferred.
236 -----------------------
237 -- Polling Interface --
238 -----------------------
240 -- The GNAT compiler has an option to generate polling calls to the Poll
241 -- routine in this package. Specifying the -gnatP option for a compilation
242 -- causes a call to Ada.Exceptions.Poll to be generated on every subprogram
243 -- entry and on every iteration of a loop, thus avoiding the possibility of
244 -- a case of unbounded time between calls.
246 -- This polling interface may be used for instrumentation or debugging
247 -- purposes (e.g. implementing watchpoints in software or in the debugger).
249 -- In the GNAT technology itself, this interface is used to implement
250 -- immediate aynschronous transfer of control and immediate abort on
251 -- targets which do not provide for one thread interrupting another.
253 -- Note: this used to be in a separate unit called System.Poll, but that
254 -- caused horrible circular elaboration problems between System.Poll and
255 -- Ada.Exceptions. One way of solving such circularities is unification!
257 procedure Poll;
258 -- Check for asynchronous abort. Note that we do not inline the body.
259 -- This makes the interface more useful for debugging purposes.
261 --------------------------
262 -- Exception_Occurrence --
263 --------------------------
265 package TBE renames System.Traceback_Entries;
267 Max_Tracebacks : constant := 50;
268 -- Maximum number of trace backs stored in exception occurrence
270 type Tracebacks_Array is array (1 .. Max_Tracebacks) of TBE.Traceback_Entry;
271 -- Traceback array stored in exception occurrence
273 type Exception_Occurrence is record
274 Id : Exception_Id;
275 -- Exception_Identity for this exception occurrence
276 -- WARNING System.System.Finalization_Implementation.Finalize_List
277 -- relies on the fact that this field is always first in the exception
278 -- occurrence
280 Msg_Length : Natural := 0;
281 -- Length of message (zero = no message)
283 Msg : String (1 .. Exception_Msg_Max_Length);
284 -- Characters of message
286 Cleanup_Flag : Boolean := False;
287 -- The cleanup flag is normally False, it is set True for an exception
288 -- occurrence passed to a cleanup routine, and will still be set True
289 -- when the cleanup routine does a Reraise_Occurrence call using this
290 -- exception occurrence. This is used to avoid recording a bogus trace
291 -- back entry from this reraise call.
293 Exception_Raised : Boolean := False;
294 -- Set to true to indicate that this exception occurrence has actually
295 -- been raised. When an exception occurrence is first created, this is
296 -- set to False, then when it is processed by Raise_Current_Exception,
297 -- it is set to True. If Raise_Current_Exception is used to raise an
298 -- exception for which this flag is already True, then it knows that
299 -- it is dealing with the reraise case (which is useful to distinguish
300 -- for exception tracing purposes).
302 Pid : Natural := 0;
303 -- Partition_Id for partition raising exception
305 Num_Tracebacks : Natural range 0 .. Max_Tracebacks := 0;
306 -- Number of traceback entries stored
308 Tracebacks : Tracebacks_Array;
309 -- Stored tracebacks (in Tracebacks (1 .. Num_Tracebacks))
311 Private_Data : System.Address := System.Null_Address;
312 -- Field used by low level exception mechanism to store specific data.
313 -- Currently used by the GCC exception mechanism to store a pointer to
314 -- a GNAT_GCC_Exception.
315 end record;
317 function "=" (Left, Right : Exception_Occurrence) return Boolean
318 is abstract;
319 -- Don't allow comparison on exception occurrences, we should not need
320 -- this, and it would not work right, because of the Msg and Tracebacks
321 -- fields which have unused entries not copied by Save_Occurrence.
323 function EO_To_String (X : Exception_Occurrence) return String;
324 function String_To_EO (S : String) return Exception_Occurrence;
325 pragma Stream_Convert (Exception_Occurrence, String_To_EO, EO_To_String);
326 -- Functions for implementing Exception_Occurrence stream attributes
328 Null_Occurrence : constant Exception_Occurrence := (
329 Id => null,
330 Msg_Length => 0,
331 Msg => (others => ' '),
332 Cleanup_Flag => False,
333 Exception_Raised => False,
334 Pid => 0,
335 Num_Tracebacks => 0,
336 Tracebacks => (others => TBE.Null_TB_Entry),
337 Private_Data => System.Null_Address);
339 end Ada.Exceptions;