* builtins.def (BUILT_IN_STACK_ALLOC): Remove.
[official-gcc.git] / gcc / ada / s-stalib.ads
blobc2865a95dbfd858bc19eb849aed0be3f8e69cc53
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S Y S T E M . S T A N D A R D _ L I B R A R Y --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1992-2004 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 2, 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. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
21 -- --
22 -- As a special exception, if other files instantiate generics from this --
23 -- unit, or you link this unit with other files to produce an executable, --
24 -- this unit does not by itself cause the resulting executable to be --
25 -- covered by the GNU General Public License. This exception does not --
26 -- however invalidate any other reasons why the executable file might be --
27 -- covered by the GNU Public License. --
28 -- --
29 -- GNAT was originally developed by the GNAT team at New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc. --
31 -- --
32 ------------------------------------------------------------------------------
34 -- This package is included in all programs. It contains declarations that
35 -- are required to be part of every Ada program. A special mechanism is
36 -- required to ensure that these are loaded, since it may be the case in
37 -- some programs that the only references to these required packages are
38 -- from C code or from code generated directly by Gigi, an in both cases
39 -- the binder is not aware of such references.
41 -- System.Standard_Library also includes data that must be present in every
42 -- program, in particular the definitions of all the standard and also some
43 -- subprograms that must be present in every program.
45 -- The binder unconditionally includes s-stalib.ali, which ensures that this
46 -- package and the packages it references are included in all Ada programs,
47 -- together with the included data.
49 pragma Polling (Off);
50 -- We must turn polling off for this unit, because otherwise we get
51 -- elaboration circularities with Ada.Exceptions if polling is on.
53 with System;
54 with Unchecked_Conversion;
56 package System.Standard_Library is
58 pragma Suppress (All_Checks);
59 -- Suppress explicitely all the checks to work around the Solaris linker
60 -- bug when using gnatmake -f -a (but without -gnatp). This is not needed
61 -- with Solaris 2.6, so eventually can be removed ???
63 type Big_String_Ptr is access all String (Positive);
64 -- A non-fat pointer type for null terminated strings
66 function To_Ptr is
67 new Unchecked_Conversion (System.Address, Big_String_Ptr);
69 ---------------------------------------------
70 -- Type For Enumeration Image Index Tables --
71 ---------------------------------------------
73 -- Note: these types are declared at the start of this unit, since
74 -- they must appear before any enumeration types declared in this
75 -- unit. Note that the spec of system is already elaborated at
76 -- this point (since we are a child of system), which means that
77 -- enumeration types in package System cannot use these types.
79 type Image_Index_Table_8 is
80 array (Integer range <>) of Short_Short_Integer;
81 type Image_Index_Table_16 is
82 array (Integer range <>) of Short_Integer;
83 type Image_Index_Table_32 is
84 array (Integer range <>) of Integer;
85 -- These types are used to generate the index vector used for enumeration
86 -- type image tables. See spec of Exp_Imgv in the main GNAT sources for a
87 -- full description of the data structures that are used here.
89 -------------------------------------
90 -- Exception Declarations and Data --
91 -------------------------------------
93 type Raise_Action is access procedure;
94 -- A pointer to a procedure used in the Raise_Hook field
96 type Exception_Data;
97 type Exception_Data_Ptr is access all Exception_Data;
98 -- An equivalent of Exception_Id that is public
100 type Exception_Code is mod 2 ** Integer'Size;
101 -- A scalar value bound to some exception data. Typically used for
102 -- imported or exported exceptions on VMS. Having a separate type for this
103 -- is useful to enforce consistency throughout the various run-time units
104 -- handling such codes, and having it unsigned is the most appropriate
105 -- choice for it's currently single use on VMS.
107 -- ??? The construction in Cstand has no way to access the proper type
108 -- node for Exception_Code, and currently uses Standard_Unsigned as a
109 -- fallback. The representations shall match, and the size clause below
110 -- is aimed at ensuring that.
112 for Exception_Code'Size use Integer'Size;
114 -- The following record defines the underlying representation of exceptions
116 -- WARNING! Any changes to this may need to be reflectd in the following
117 -- locations in the compiler and runtime code:
119 -- 1. The Internal_Exception routine in s-exctab.adb
120 -- 2. The processing in gigi that tests Not_Handled_By_Others
121 -- 3. Expand_N_Exception_Declaration in Exp_Ch11
122 -- 4. The construction of the exception type in Cstand
124 type Exception_Data is record
125 Not_Handled_By_Others : Boolean;
126 -- Normally set False, indicating that the exception is handled in the
127 -- usual way by others (i.e. an others handler handles the exception).
128 -- Set True to indicate that this exception is not caught by others
129 -- handlers, but must be explicitly named in a handler. This latter
130 -- setting is currently used by the Abort_Signal.
132 Lang : Character;
133 -- A character indicating the language raising the exception.
134 -- Set to "A" for exceptions defined by an Ada program.
135 -- Set to "V" for imported VMS exceptions.
137 Name_Length : Natural;
138 -- Length of fully expanded name of exception
140 Full_Name : Big_String_Ptr;
141 -- Fully expanded name of exception, null terminated
143 HTable_Ptr : Exception_Data_Ptr;
144 -- Hash table pointer used to link entries together in the hash table
145 -- built (by Register_Exception in s-exctab.adb) for converting between
146 -- identities and names.
148 Import_Code : Exception_Code;
149 -- Value for imported exceptions. Needed only for the handling of
150 -- Import/Export_Exception for the VMS case, but present in all
151 -- implementations (we might well extend this mechanism for other
152 -- systems in the future).
154 Raise_Hook : Raise_Action;
155 -- This field can be used to place a "hook" on an exception. If the
156 -- value is non-null, then it points to a procedure which is called
157 -- whenever the exception is raised. This call occurs immediately,
158 -- before any other actions taken by the raise (and in particular
159 -- before any unwinding of the stack occurs).
161 end record;
163 -- Definitions for standard predefined exceptions defined in Standard,
165 -- Why are the Nul's necessary here, seems like they should not be
166 -- required, since Gigi is supposed to add a Nul to each name ???
168 Constraint_Error_Name : constant String := "CONSTRAINT_ERROR" & ASCII.NUL;
169 Program_Error_Name : constant String := "PROGRAM_ERROR" & ASCII.NUL;
170 Storage_Error_Name : constant String := "STORAGE_ERROR" & ASCII.NUL;
171 Tasking_Error_Name : constant String := "TASKING_ERROR" & ASCII.NUL;
172 Abort_Signal_Name : constant String := "_ABORT_SIGNAL" & ASCII.NUL;
174 Numeric_Error_Name : constant String := "NUMERIC_ERROR" & ASCII.NUL;
175 -- This is used only in the Ada 83 case, but it is not worth having a
176 -- separate version of s-stalib.ads for use in Ada 83 mode.
178 Constraint_Error_Def : aliased Exception_Data :=
179 (Not_Handled_By_Others => False,
180 Lang => 'A',
181 Name_Length => Constraint_Error_Name'Length,
182 Full_Name => To_Ptr (Constraint_Error_Name'Address),
183 HTable_Ptr => null,
184 Import_Code => 0,
185 Raise_Hook => null);
187 Numeric_Error_Def : aliased Exception_Data :=
188 (Not_Handled_By_Others => False,
189 Lang => 'A',
190 Name_Length => Numeric_Error_Name'Length,
191 Full_Name => To_Ptr (Numeric_Error_Name'Address),
192 HTable_Ptr => null,
193 Import_Code => 0,
194 Raise_Hook => null);
196 Program_Error_Def : aliased Exception_Data :=
197 (Not_Handled_By_Others => False,
198 Lang => 'A',
199 Name_Length => Program_Error_Name'Length,
200 Full_Name => To_Ptr (Program_Error_Name'Address),
201 HTable_Ptr => null,
202 Import_Code => 0,
203 Raise_Hook => null);
205 Storage_Error_Def : aliased Exception_Data :=
206 (Not_Handled_By_Others => False,
207 Lang => 'A',
208 Name_Length => Storage_Error_Name'Length,
209 Full_Name => To_Ptr (Storage_Error_Name'Address),
210 HTable_Ptr => null,
211 Import_Code => 0,
212 Raise_Hook => null);
214 Tasking_Error_Def : aliased Exception_Data :=
215 (Not_Handled_By_Others => False,
216 Lang => 'A',
217 Name_Length => Tasking_Error_Name'Length,
218 Full_Name => To_Ptr (Tasking_Error_Name'Address),
219 HTable_Ptr => null,
220 Import_Code => 0,
221 Raise_Hook => null);
223 Abort_Signal_Def : aliased Exception_Data :=
224 (Not_Handled_By_Others => True,
225 Lang => 'A',
226 Name_Length => Abort_Signal_Name'Length,
227 Full_Name => To_Ptr (Abort_Signal_Name'Address),
228 HTable_Ptr => null,
229 Import_Code => 0,
230 Raise_Hook => null);
232 pragma Export (C, Constraint_Error_Def, "constraint_error");
233 pragma Export (C, Numeric_Error_Def, "numeric_error");
234 pragma Export (C, Program_Error_Def, "program_error");
235 pragma Export (C, Storage_Error_Def, "storage_error");
236 pragma Export (C, Tasking_Error_Def, "tasking_error");
237 pragma Export (C, Abort_Signal_Def, "_abort_signal");
239 Local_Partition_ID : Natural := 0;
240 -- This variable contains the local Partition_ID that will be used when
241 -- building exception occurrences. In distributed mode, it will be
242 -- set by each partition to the correct value during the elaboration.
244 type Exception_Trace_Kind is
245 (RM_Convention,
246 -- No particular trace is requested, only unhandled exceptions
247 -- in the environment task (following the RM) will be printed.
248 -- This is the default behavior.
250 Every_Raise,
251 -- Denotes every possible raise event, either explicit or due to
252 -- a specific language rule, within the context of a task or not.
254 Unhandled_Raise
255 -- Denotes the raise events corresponding to exceptions for which
256 -- there is no user defined handler.
258 -- Provide a way to denote different kinds of automatic traces related
259 -- to exceptions that can be requested.
261 Exception_Trace : Exception_Trace_Kind := RM_Convention;
262 pragma Atomic (Exception_Trace);
263 -- By default, follow the RM convention.
265 -----------------
266 -- Subprograms --
267 -----------------
269 procedure Abort_Undefer_Direct;
270 pragma Inline (Abort_Undefer_Direct);
271 -- A little procedure that just calls Abort_Undefer.all, for use in
272 -- clean up procedures, which only permit a simple subprogram name.
274 procedure Adafinal;
275 -- Performs the Ada Runtime finalization the first time it is invoked.
276 -- All subsequent calls are ignored.
278 end System.Standard_Library;