annotate gcc/ada/rtsfind.ads @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 ------------------------------------------------------------------------------
kono
parents:
diff changeset
2 -- --
kono
parents:
diff changeset
3 -- GNAT COMPILER COMPONENTS --
kono
parents:
diff changeset
4 -- --
kono
parents:
diff changeset
5 -- R T S F I N D --
kono
parents:
diff changeset
6 -- --
kono
parents:
diff changeset
7 -- S p e c --
kono
parents:
diff changeset
8 -- --
kono
parents:
diff changeset
9 -- Copyright (C) 1992-2017, Free Software Foundation, Inc. --
kono
parents:
diff changeset
10 -- --
kono
parents:
diff changeset
11 -- GNAT is free software; you can redistribute it and/or modify it under --
kono
parents:
diff changeset
12 -- terms of the GNU General Public License as published by the Free Soft- --
kono
parents:
diff changeset
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
kono
parents:
diff changeset
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
kono
parents:
diff changeset
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
kono
parents:
diff changeset
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
kono
parents:
diff changeset
17 -- for more details. You should have received a copy of the GNU General --
kono
parents:
diff changeset
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
kono
parents:
diff changeset
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
kono
parents:
diff changeset
20 -- --
kono
parents:
diff changeset
21 -- GNAT was originally developed by the GNAT team at New York University. --
kono
parents:
diff changeset
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
kono
parents:
diff changeset
23 -- --
kono
parents:
diff changeset
24 ------------------------------------------------------------------------------
kono
parents:
diff changeset
25
kono
parents:
diff changeset
26 -- This package contains the routine that is used to obtain runtime library
kono
parents:
diff changeset
27 -- entities, loading in the required runtime library packages on demand. It
kono
parents:
diff changeset
28 -- is also used for such purposes as finding System.Address when System has
kono
parents:
diff changeset
29 -- not been explicitly With'ed.
kono
parents:
diff changeset
30
kono
parents:
diff changeset
31 with Types; use Types;
kono
parents:
diff changeset
32
kono
parents:
diff changeset
33 package Rtsfind is
kono
parents:
diff changeset
34
kono
parents:
diff changeset
35 ------------------------
kono
parents:
diff changeset
36 -- Runtime Unit Table --
kono
parents:
diff changeset
37 ------------------------
kono
parents:
diff changeset
38
kono
parents:
diff changeset
39 -- The following type includes an enumeration entry for each runtime unit.
kono
parents:
diff changeset
40 -- The enumeration literal represents the fully qualified name of the unit,
kono
parents:
diff changeset
41 -- as follows:
kono
parents:
diff changeset
42
kono
parents:
diff changeset
43 -- Names of the form Ada_xxx are first level children of Ada, whose name
kono
parents:
diff changeset
44 -- is Ada.xxx. For example, the name Ada_Tags refers to package Ada.Tags.
kono
parents:
diff changeset
45
kono
parents:
diff changeset
46 -- Names of the form Ada_Calendar_xxx are second level children of
kono
parents:
diff changeset
47 -- Ada.Calendar. This is part of a temporary implementation of delays;
kono
parents:
diff changeset
48 -- eventually, packages implementing delays will be found relative to
kono
parents:
diff changeset
49 -- the package that declares the time type.
kono
parents:
diff changeset
50
kono
parents:
diff changeset
51 -- Names of the form Ada_Interrupts_xxx are second level children of
kono
parents:
diff changeset
52 -- Ada.Interrupts. This is needed for Ada.Interrupts.Names which is used
kono
parents:
diff changeset
53 -- by pragma Interrupt_State.
kono
parents:
diff changeset
54
kono
parents:
diff changeset
55 -- Names of the form Ada_Real_Time_xxx are second level children of
kono
parents:
diff changeset
56 -- Ada.Real_Time.
kono
parents:
diff changeset
57
kono
parents:
diff changeset
58 -- Names of the form Ada_Streams_xxx are second level children
kono
parents:
diff changeset
59 -- of Ada.Streams.
kono
parents:
diff changeset
60
kono
parents:
diff changeset
61 -- Names of the form Ada_Strings_xxx are second level children
kono
parents:
diff changeset
62 -- of Ada.Strings.
kono
parents:
diff changeset
63
kono
parents:
diff changeset
64 -- Names of the form Ada_Text_IO_xxx are second level children of
kono
parents:
diff changeset
65 -- Ada.Text_IO.
kono
parents:
diff changeset
66
kono
parents:
diff changeset
67 -- Names of the form Ada_Wide_Text_IO_xxx are second level children of
kono
parents:
diff changeset
68 -- Ada.Wide_Text_IO.
kono
parents:
diff changeset
69
kono
parents:
diff changeset
70 -- Names of the form Ada_Wide_Wide_Text_IO_xxx are second level children
kono
parents:
diff changeset
71 -- of Ada.Wide_Wide_Text_IO.
kono
parents:
diff changeset
72
kono
parents:
diff changeset
73 -- Names of the form Interfaces_xxx are first level children of
kono
parents:
diff changeset
74 -- Interfaces. For example, the name Interfaces_Packed_Decimal refers to
kono
parents:
diff changeset
75 -- package Interfaces.Packed_Decimal.
kono
parents:
diff changeset
76
kono
parents:
diff changeset
77 -- Names of the form System_xxx are first level children of System, whose
kono
parents:
diff changeset
78 -- name is System.xxx. For example, the name System_Str_Concat refers to
kono
parents:
diff changeset
79 -- package System.Str_Concat.
kono
parents:
diff changeset
80
kono
parents:
diff changeset
81 -- Names of the form System_Storage_Pools_xxx are second level children
kono
parents:
diff changeset
82 -- of the package System.Storage_Pools.
kono
parents:
diff changeset
83
kono
parents:
diff changeset
84 -- Names of the form System_Strings_xxx are second level children of the
kono
parents:
diff changeset
85 -- package System.Strings.
kono
parents:
diff changeset
86
kono
parents:
diff changeset
87 -- Names of the form System_Tasking_xxx are second level children of the
kono
parents:
diff changeset
88 -- package System.Tasking. For example, System_Tasking_Stages refers to
kono
parents:
diff changeset
89 -- the package System.Tasking.Stages.
kono
parents:
diff changeset
90
kono
parents:
diff changeset
91 -- Other names stand for themselves (e.g. System for package System)
kono
parents:
diff changeset
92
kono
parents:
diff changeset
93 -- This list can contain both subprogram and package unit names. For
kono
parents:
diff changeset
94 -- packages, the accessible entities in the package are separately listed
kono
parents:
diff changeset
95 -- in the package entity table. The units must be either library level
kono
parents:
diff changeset
96 -- package declarations, or library level subprogram declarations. Generic
kono
parents:
diff changeset
97 -- units, library level instantiations and subprogram bodies acting as
kono
parents:
diff changeset
98 -- specs may not be referenced (all these cases could be added at the
kono
parents:
diff changeset
99 -- expense of additional complexity in the body of Rtsfind, but it doesn't
kono
parents:
diff changeset
100 -- seem worthwhile, since the implementation controls the set of units that
kono
parents:
diff changeset
101 -- are referenced, and this restriction is easily met.
kono
parents:
diff changeset
102
kono
parents:
diff changeset
103 -- IMPORTANT NOTE: the specs of packages and procedures with'ed using this
kono
parents:
diff changeset
104 -- mechanism may not contain use clauses. This is because these subprograms
kono
parents:
diff changeset
105 -- are compiled in the current visibility environment, and it would be too
kono
parents:
diff changeset
106 -- much trouble to establish a clean environment for the compilation. The
kono
parents:
diff changeset
107 -- presence of extraneous visible stuff has no effect on the compilation
kono
parents:
diff changeset
108 -- except in the presence of use clauses (which might result in unexpected
kono
parents:
diff changeset
109 -- ambiguities).
kono
parents:
diff changeset
110
kono
parents:
diff changeset
111 type RTU_Id is (
kono
parents:
diff changeset
112
kono
parents:
diff changeset
113 -- Runtime packages, for list of accessible entities in each package,
kono
parents:
diff changeset
114 -- see declarations in the runtime entity table below.
kono
parents:
diff changeset
115
kono
parents:
diff changeset
116 RTU_Null,
kono
parents:
diff changeset
117 -- Used as a null entry (will cause an error if referenced)
kono
parents:
diff changeset
118
kono
parents:
diff changeset
119 -- Package Ada
kono
parents:
diff changeset
120
kono
parents:
diff changeset
121 Ada,
kono
parents:
diff changeset
122
kono
parents:
diff changeset
123 -- Children of Ada
kono
parents:
diff changeset
124
kono
parents:
diff changeset
125 Ada_Calendar,
kono
parents:
diff changeset
126 Ada_Dispatching,
kono
parents:
diff changeset
127 Ada_Exceptions,
kono
parents:
diff changeset
128 Ada_Finalization,
kono
parents:
diff changeset
129 Ada_Interrupts,
kono
parents:
diff changeset
130 Ada_Numerics,
kono
parents:
diff changeset
131 Ada_Real_Time,
kono
parents:
diff changeset
132 Ada_Streams,
kono
parents:
diff changeset
133 Ada_Strings,
kono
parents:
diff changeset
134 Ada_Tags,
kono
parents:
diff changeset
135 Ada_Task_Identification,
kono
parents:
diff changeset
136 Ada_Task_Termination,
kono
parents:
diff changeset
137 Ada_Text_IO,
kono
parents:
diff changeset
138 Ada_Wide_Text_IO,
kono
parents:
diff changeset
139 Ada_Wide_Wide_Text_IO,
kono
parents:
diff changeset
140
kono
parents:
diff changeset
141 -- Children of Ada.Calendar
kono
parents:
diff changeset
142
kono
parents:
diff changeset
143 Ada_Calendar_Delays,
kono
parents:
diff changeset
144
kono
parents:
diff changeset
145 -- Children of Ada.Dispatching
kono
parents:
diff changeset
146
kono
parents:
diff changeset
147 Ada_Dispatching_EDF,
kono
parents:
diff changeset
148
kono
parents:
diff changeset
149 -- Children of Ada.Interrupts
kono
parents:
diff changeset
150
kono
parents:
diff changeset
151 Ada_Interrupts_Names,
kono
parents:
diff changeset
152
kono
parents:
diff changeset
153 -- Children of Ada.Numerics
kono
parents:
diff changeset
154
kono
parents:
diff changeset
155 Ada_Numerics_Generic_Elementary_Functions,
kono
parents:
diff changeset
156
kono
parents:
diff changeset
157 -- Children of Ada.Real_Time
kono
parents:
diff changeset
158
kono
parents:
diff changeset
159 Ada_Real_Time_Delays,
kono
parents:
diff changeset
160 Ada_Real_Time_Timing_Events,
kono
parents:
diff changeset
161
kono
parents:
diff changeset
162 -- Children of Ada.Streams
kono
parents:
diff changeset
163
kono
parents:
diff changeset
164 Ada_Streams_Stream_IO,
kono
parents:
diff changeset
165
kono
parents:
diff changeset
166 -- Children of Ada.Strings
kono
parents:
diff changeset
167
kono
parents:
diff changeset
168 Ada_Strings_Superbounded,
kono
parents:
diff changeset
169 Ada_Strings_Wide_Superbounded,
kono
parents:
diff changeset
170 Ada_Strings_Wide_Wide_Superbounded,
kono
parents:
diff changeset
171 Ada_Strings_Unbounded,
kono
parents:
diff changeset
172
kono
parents:
diff changeset
173 -- Children of Ada.Text_IO (for Check_Text_IO_Special_Unit)
kono
parents:
diff changeset
174
kono
parents:
diff changeset
175 Ada_Text_IO_Decimal_IO,
kono
parents:
diff changeset
176 Ada_Text_IO_Enumeration_IO,
kono
parents:
diff changeset
177 Ada_Text_IO_Fixed_IO,
kono
parents:
diff changeset
178 Ada_Text_IO_Float_IO,
kono
parents:
diff changeset
179 Ada_Text_IO_Integer_IO,
kono
parents:
diff changeset
180 Ada_Text_IO_Modular_IO,
kono
parents:
diff changeset
181
kono
parents:
diff changeset
182 -- Children of Ada.Wide_Text_IO (for Check_Text_IO_Special_Unit)
kono
parents:
diff changeset
183
kono
parents:
diff changeset
184 Ada_Wide_Text_IO_Decimal_IO,
kono
parents:
diff changeset
185 Ada_Wide_Text_IO_Enumeration_IO,
kono
parents:
diff changeset
186 Ada_Wide_Text_IO_Fixed_IO,
kono
parents:
diff changeset
187 Ada_Wide_Text_IO_Float_IO,
kono
parents:
diff changeset
188 Ada_Wide_Text_IO_Integer_IO,
kono
parents:
diff changeset
189 Ada_Wide_Text_IO_Modular_IO,
kono
parents:
diff changeset
190
kono
parents:
diff changeset
191 -- Children of Ada.Wide_Wide_Text_IO (for Check_Text_IO_Special_Unit)
kono
parents:
diff changeset
192
kono
parents:
diff changeset
193 Ada_Wide_Wide_Text_IO_Decimal_IO,
kono
parents:
diff changeset
194 Ada_Wide_Wide_Text_IO_Enumeration_IO,
kono
parents:
diff changeset
195 Ada_Wide_Wide_Text_IO_Fixed_IO,
kono
parents:
diff changeset
196 Ada_Wide_Wide_Text_IO_Float_IO,
kono
parents:
diff changeset
197 Ada_Wide_Wide_Text_IO_Integer_IO,
kono
parents:
diff changeset
198 Ada_Wide_Wide_Text_IO_Modular_IO,
kono
parents:
diff changeset
199
kono
parents:
diff changeset
200 -- Interfaces
kono
parents:
diff changeset
201
kono
parents:
diff changeset
202 Interfaces,
kono
parents:
diff changeset
203
kono
parents:
diff changeset
204 -- Children of Interfaces
kono
parents:
diff changeset
205
kono
parents:
diff changeset
206 Interfaces_Packed_Decimal,
kono
parents:
diff changeset
207
kono
parents:
diff changeset
208 -- Package System
kono
parents:
diff changeset
209
kono
parents:
diff changeset
210 System,
kono
parents:
diff changeset
211
kono
parents:
diff changeset
212 -- Children of System
kono
parents:
diff changeset
213
kono
parents:
diff changeset
214 System_Address_Image,
kono
parents:
diff changeset
215 System_Arith_64,
kono
parents:
diff changeset
216 System_AST_Handling,
kono
parents:
diff changeset
217 System_Assertions,
kono
parents:
diff changeset
218 System_Atomic_Primitives,
kono
parents:
diff changeset
219 System_Aux_DEC,
kono
parents:
diff changeset
220 System_Bignums,
kono
parents:
diff changeset
221 System_Bit_Ops,
kono
parents:
diff changeset
222 System_Boolean_Array_Operations,
kono
parents:
diff changeset
223 System_Byte_Swapping,
kono
parents:
diff changeset
224 System_Checked_Pools,
kono
parents:
diff changeset
225 System_Compare_Array_Signed_16,
kono
parents:
diff changeset
226 System_Compare_Array_Signed_32,
kono
parents:
diff changeset
227 System_Compare_Array_Signed_64,
kono
parents:
diff changeset
228 System_Compare_Array_Signed_8,
kono
parents:
diff changeset
229 System_Compare_Array_Unsigned_16,
kono
parents:
diff changeset
230 System_Compare_Array_Unsigned_32,
kono
parents:
diff changeset
231 System_Compare_Array_Unsigned_64,
kono
parents:
diff changeset
232 System_Compare_Array_Unsigned_8,
kono
parents:
diff changeset
233 System_Concat_2,
kono
parents:
diff changeset
234 System_Concat_3,
kono
parents:
diff changeset
235 System_Concat_4,
kono
parents:
diff changeset
236 System_Concat_5,
kono
parents:
diff changeset
237 System_Concat_6,
kono
parents:
diff changeset
238 System_Concat_7,
kono
parents:
diff changeset
239 System_Concat_8,
kono
parents:
diff changeset
240 System_Concat_9,
kono
parents:
diff changeset
241 System_Dim,
kono
parents:
diff changeset
242 System_DSA_Services,
kono
parents:
diff changeset
243 System_DSA_Types,
kono
parents:
diff changeset
244 System_Elaboration_Allocators,
kono
parents:
diff changeset
245 System_Exception_Table,
kono
parents:
diff changeset
246 System_Exceptions_Debug,
kono
parents:
diff changeset
247 System_Exn_Int,
kono
parents:
diff changeset
248 System_Exn_LLF,
kono
parents:
diff changeset
249 System_Exn_LLI,
kono
parents:
diff changeset
250 System_Exp_Int,
kono
parents:
diff changeset
251 System_Exp_LInt,
kono
parents:
diff changeset
252 System_Exp_LLI,
kono
parents:
diff changeset
253 System_Exp_LLU,
kono
parents:
diff changeset
254 System_Exp_Mod,
kono
parents:
diff changeset
255 System_Exp_Uns,
kono
parents:
diff changeset
256 System_Fat_Flt,
kono
parents:
diff changeset
257 System_Fat_IEEE_Long_Float,
kono
parents:
diff changeset
258 System_Fat_IEEE_Short_Float,
kono
parents:
diff changeset
259 System_Fat_LFlt,
kono
parents:
diff changeset
260 System_Fat_LLF,
kono
parents:
diff changeset
261 System_Fat_SFlt,
kono
parents:
diff changeset
262 System_Fat_VAX_D_Float,
kono
parents:
diff changeset
263 System_Fat_VAX_F_Float,
kono
parents:
diff changeset
264 System_Fat_VAX_G_Float,
kono
parents:
diff changeset
265 System_Finalization_Masters,
kono
parents:
diff changeset
266 System_Finalization_Root,
kono
parents:
diff changeset
267 System_Fore,
kono
parents:
diff changeset
268 System_Img_Bool,
kono
parents:
diff changeset
269 System_Img_Char,
kono
parents:
diff changeset
270 System_Img_Dec,
kono
parents:
diff changeset
271 System_Img_Enum,
kono
parents:
diff changeset
272 System_Img_Enum_New,
kono
parents:
diff changeset
273 System_Img_Int,
kono
parents:
diff changeset
274 System_Img_LLD,
kono
parents:
diff changeset
275 System_Img_LLI,
kono
parents:
diff changeset
276 System_Img_LLU,
kono
parents:
diff changeset
277 System_Img_Name,
kono
parents:
diff changeset
278 System_Img_Real,
kono
parents:
diff changeset
279 System_Img_Uns,
kono
parents:
diff changeset
280 System_Img_WChar,
kono
parents:
diff changeset
281 System_Interrupts,
kono
parents:
diff changeset
282 System_Long_Long_Float_Expon,
kono
parents:
diff changeset
283 System_Machine_Code,
kono
parents:
diff changeset
284 System_Mantissa,
kono
parents:
diff changeset
285 System_Memcop,
kono
parents:
diff changeset
286 System_Memory,
kono
parents:
diff changeset
287 System_Multiprocessors,
kono
parents:
diff changeset
288 System_Pack_03,
kono
parents:
diff changeset
289 System_Pack_05,
kono
parents:
diff changeset
290 System_Pack_06,
kono
parents:
diff changeset
291 System_Pack_07,
kono
parents:
diff changeset
292 System_Pack_09,
kono
parents:
diff changeset
293 System_Pack_10,
kono
parents:
diff changeset
294 System_Pack_11,
kono
parents:
diff changeset
295 System_Pack_12,
kono
parents:
diff changeset
296 System_Pack_13,
kono
parents:
diff changeset
297 System_Pack_14,
kono
parents:
diff changeset
298 System_Pack_15,
kono
parents:
diff changeset
299 System_Pack_17,
kono
parents:
diff changeset
300 System_Pack_18,
kono
parents:
diff changeset
301 System_Pack_19,
kono
parents:
diff changeset
302 System_Pack_20,
kono
parents:
diff changeset
303 System_Pack_21,
kono
parents:
diff changeset
304 System_Pack_22,
kono
parents:
diff changeset
305 System_Pack_23,
kono
parents:
diff changeset
306 System_Pack_24,
kono
parents:
diff changeset
307 System_Pack_25,
kono
parents:
diff changeset
308 System_Pack_26,
kono
parents:
diff changeset
309 System_Pack_27,
kono
parents:
diff changeset
310 System_Pack_28,
kono
parents:
diff changeset
311 System_Pack_29,
kono
parents:
diff changeset
312 System_Pack_30,
kono
parents:
diff changeset
313 System_Pack_31,
kono
parents:
diff changeset
314 System_Pack_33,
kono
parents:
diff changeset
315 System_Pack_34,
kono
parents:
diff changeset
316 System_Pack_35,
kono
parents:
diff changeset
317 System_Pack_36,
kono
parents:
diff changeset
318 System_Pack_37,
kono
parents:
diff changeset
319 System_Pack_38,
kono
parents:
diff changeset
320 System_Pack_39,
kono
parents:
diff changeset
321 System_Pack_40,
kono
parents:
diff changeset
322 System_Pack_41,
kono
parents:
diff changeset
323 System_Pack_42,
kono
parents:
diff changeset
324 System_Pack_43,
kono
parents:
diff changeset
325 System_Pack_44,
kono
parents:
diff changeset
326 System_Pack_45,
kono
parents:
diff changeset
327 System_Pack_46,
kono
parents:
diff changeset
328 System_Pack_47,
kono
parents:
diff changeset
329 System_Pack_48,
kono
parents:
diff changeset
330 System_Pack_49,
kono
parents:
diff changeset
331 System_Pack_50,
kono
parents:
diff changeset
332 System_Pack_51,
kono
parents:
diff changeset
333 System_Pack_52,
kono
parents:
diff changeset
334 System_Pack_53,
kono
parents:
diff changeset
335 System_Pack_54,
kono
parents:
diff changeset
336 System_Pack_55,
kono
parents:
diff changeset
337 System_Pack_56,
kono
parents:
diff changeset
338 System_Pack_57,
kono
parents:
diff changeset
339 System_Pack_58,
kono
parents:
diff changeset
340 System_Pack_59,
kono
parents:
diff changeset
341 System_Pack_60,
kono
parents:
diff changeset
342 System_Pack_61,
kono
parents:
diff changeset
343 System_Pack_62,
kono
parents:
diff changeset
344 System_Pack_63,
kono
parents:
diff changeset
345 System_Parameters,
kono
parents:
diff changeset
346 System_Partition_Interface,
kono
parents:
diff changeset
347 System_Pool_32_Global,
kono
parents:
diff changeset
348 System_Pool_Global,
kono
parents:
diff changeset
349 System_Pool_Empty,
kono
parents:
diff changeset
350 System_Pool_Local,
kono
parents:
diff changeset
351 System_Pool_Size,
kono
parents:
diff changeset
352 System_Relative_Delays,
kono
parents:
diff changeset
353 System_RPC,
kono
parents:
diff changeset
354 System_Scalar_Values,
kono
parents:
diff changeset
355 System_Secondary_Stack,
kono
parents:
diff changeset
356 System_Shared_Storage,
kono
parents:
diff changeset
357 System_Soft_Links,
kono
parents:
diff changeset
358 System_Standard_Library,
kono
parents:
diff changeset
359 System_Storage_Elements,
kono
parents:
diff changeset
360 System_Storage_Pools,
kono
parents:
diff changeset
361 System_Stream_Attributes,
kono
parents:
diff changeset
362 System_Task_Info,
kono
parents:
diff changeset
363 System_Tasking,
kono
parents:
diff changeset
364 System_Threads,
kono
parents:
diff changeset
365 System_Unsigned_Types,
kono
parents:
diff changeset
366 System_Val_Bool,
kono
parents:
diff changeset
367 System_Val_Char,
kono
parents:
diff changeset
368 System_Val_Dec,
kono
parents:
diff changeset
369 System_Val_Enum,
kono
parents:
diff changeset
370 System_Val_Int,
kono
parents:
diff changeset
371 System_Val_LLD,
kono
parents:
diff changeset
372 System_Val_LLI,
kono
parents:
diff changeset
373 System_Val_LLU,
kono
parents:
diff changeset
374 System_Val_Name,
kono
parents:
diff changeset
375 System_Val_Real,
kono
parents:
diff changeset
376 System_Val_Uns,
kono
parents:
diff changeset
377 System_Val_WChar,
kono
parents:
diff changeset
378 System_Version_Control,
kono
parents:
diff changeset
379 System_WCh_StW,
kono
parents:
diff changeset
380 System_WCh_WtS,
kono
parents:
diff changeset
381 System_Wid_Bool,
kono
parents:
diff changeset
382 System_Wid_Char,
kono
parents:
diff changeset
383 System_Wid_Enum,
kono
parents:
diff changeset
384 System_Wid_LLI,
kono
parents:
diff changeset
385 System_Wid_LLU,
kono
parents:
diff changeset
386 System_Wid_Name,
kono
parents:
diff changeset
387 System_Wid_WChar,
kono
parents:
diff changeset
388 System_WWd_Char,
kono
parents:
diff changeset
389 System_WWd_Enum,
kono
parents:
diff changeset
390 System_WWd_Wchar,
kono
parents:
diff changeset
391
kono
parents:
diff changeset
392 -- Children of System.Dim
kono
parents:
diff changeset
393
kono
parents:
diff changeset
394 System_Dim_Float_IO,
kono
parents:
diff changeset
395 System_Dim_Integer_IO,
kono
parents:
diff changeset
396
kono
parents:
diff changeset
397 -- Children of System.Multiprocessors
kono
parents:
diff changeset
398
kono
parents:
diff changeset
399 System_Multiprocessors_Dispatching_Domains,
kono
parents:
diff changeset
400
kono
parents:
diff changeset
401 -- Children of System.Storage_Pools
kono
parents:
diff changeset
402
kono
parents:
diff changeset
403 System_Storage_Pools_Subpools,
kono
parents:
diff changeset
404
kono
parents:
diff changeset
405 -- Children of System.Strings
kono
parents:
diff changeset
406
kono
parents:
diff changeset
407 System_Strings_Stream_Ops,
kono
parents:
diff changeset
408
kono
parents:
diff changeset
409 -- Children of System.Tasking
kono
parents:
diff changeset
410
kono
parents:
diff changeset
411 System_Tasking_Async_Delays,
kono
parents:
diff changeset
412 System_Tasking_Async_Delays_Enqueue_Calendar,
kono
parents:
diff changeset
413 System_Tasking_Async_Delays_Enqueue_RT,
kono
parents:
diff changeset
414 System_Tasking_Protected_Objects,
kono
parents:
diff changeset
415 System_Tasking_Protected_Objects_Entries,
kono
parents:
diff changeset
416 System_Tasking_Protected_Objects_Operations,
kono
parents:
diff changeset
417 System_Tasking_Protected_Objects_Single_Entry,
kono
parents:
diff changeset
418 System_Tasking_Restricted_Stages,
kono
parents:
diff changeset
419 System_Tasking_Rendezvous,
kono
parents:
diff changeset
420 System_Tasking_Stages);
kono
parents:
diff changeset
421
kono
parents:
diff changeset
422 subtype Ada_Child is RTU_Id
kono
parents:
diff changeset
423 range Ada_Calendar .. Ada_Wide_Wide_Text_IO_Modular_IO;
kono
parents:
diff changeset
424 -- Range of values for children or grand-children of Ada
kono
parents:
diff changeset
425
kono
parents:
diff changeset
426 subtype Ada_Calendar_Child is Ada_Child
kono
parents:
diff changeset
427 range Ada_Calendar_Delays .. Ada_Calendar_Delays;
kono
parents:
diff changeset
428 -- Range of values for children of Ada.Calendar
kono
parents:
diff changeset
429
kono
parents:
diff changeset
430 subtype Ada_Dispatching_Child is RTU_Id
kono
parents:
diff changeset
431 range Ada_Dispatching_EDF .. Ada_Dispatching_EDF;
kono
parents:
diff changeset
432 -- Range of values for children of Ada.Dispatching
kono
parents:
diff changeset
433
kono
parents:
diff changeset
434 subtype Ada_Interrupts_Child is Ada_Child range
kono
parents:
diff changeset
435 Ada_Interrupts_Names .. Ada_Interrupts_Names;
kono
parents:
diff changeset
436 -- Range of values for children of Ada.Interrupts
kono
parents:
diff changeset
437
kono
parents:
diff changeset
438 subtype Ada_Numerics_Child is Ada_Child
kono
parents:
diff changeset
439 range Ada_Numerics_Generic_Elementary_Functions ..
kono
parents:
diff changeset
440 Ada_Numerics_Generic_Elementary_Functions;
kono
parents:
diff changeset
441 -- Range of values for children of Ada.Numerics
kono
parents:
diff changeset
442
kono
parents:
diff changeset
443 subtype Ada_Real_Time_Child is Ada_Child
kono
parents:
diff changeset
444 range Ada_Real_Time_Delays .. Ada_Real_Time_Timing_Events;
kono
parents:
diff changeset
445 -- Range of values for children of Ada.Real_Time
kono
parents:
diff changeset
446
kono
parents:
diff changeset
447 subtype Ada_Streams_Child is Ada_Child
kono
parents:
diff changeset
448 range Ada_Streams_Stream_IO .. Ada_Streams_Stream_IO;
kono
parents:
diff changeset
449 -- Range of values for children of Ada.Streams
kono
parents:
diff changeset
450
kono
parents:
diff changeset
451 subtype Ada_Strings_Child is Ada_Child
kono
parents:
diff changeset
452 range Ada_Strings_Superbounded .. Ada_Strings_Unbounded;
kono
parents:
diff changeset
453 -- Range of values for children of Ada.Strings
kono
parents:
diff changeset
454
kono
parents:
diff changeset
455 subtype Ada_Text_IO_Child is Ada_Child
kono
parents:
diff changeset
456 range Ada_Text_IO_Decimal_IO .. Ada_Text_IO_Modular_IO;
kono
parents:
diff changeset
457 -- Range of values for children of Ada.Text_IO
kono
parents:
diff changeset
458
kono
parents:
diff changeset
459 subtype Ada_Wide_Text_IO_Child is Ada_Child
kono
parents:
diff changeset
460 range Ada_Wide_Text_IO_Decimal_IO .. Ada_Wide_Text_IO_Modular_IO;
kono
parents:
diff changeset
461 -- Range of values for children of Ada.Text_IO
kono
parents:
diff changeset
462
kono
parents:
diff changeset
463 subtype Ada_Wide_Wide_Text_IO_Child is Ada_Child
kono
parents:
diff changeset
464 range Ada_Wide_Wide_Text_IO_Decimal_IO ..
kono
parents:
diff changeset
465 Ada_Wide_Wide_Text_IO_Modular_IO;
kono
parents:
diff changeset
466
kono
parents:
diff changeset
467 subtype Interfaces_Child is RTU_Id
kono
parents:
diff changeset
468 range Interfaces_Packed_Decimal .. Interfaces_Packed_Decimal;
kono
parents:
diff changeset
469 -- Range of values for children of Interfaces
kono
parents:
diff changeset
470
kono
parents:
diff changeset
471 subtype System_Child is RTU_Id
kono
parents:
diff changeset
472 range System_Address_Image .. System_Tasking_Stages;
kono
parents:
diff changeset
473 -- Range of values for children or grandchildren of System
kono
parents:
diff changeset
474
kono
parents:
diff changeset
475 subtype System_Dim_Child is RTU_Id
kono
parents:
diff changeset
476 range System_Dim_Float_IO .. System_Dim_Integer_IO;
kono
parents:
diff changeset
477 -- Range of values for children of System.Dim
kono
parents:
diff changeset
478
kono
parents:
diff changeset
479 subtype System_Multiprocessors_Child is RTU_Id
kono
parents:
diff changeset
480 range System_Multiprocessors_Dispatching_Domains ..
kono
parents:
diff changeset
481 System_Multiprocessors_Dispatching_Domains;
kono
parents:
diff changeset
482 -- Range of values for children of System.Multiprocessors
kono
parents:
diff changeset
483
kono
parents:
diff changeset
484 subtype System_Storage_Pools_Child is RTU_Id
kono
parents:
diff changeset
485 range System_Storage_Pools_Subpools .. System_Storage_Pools_Subpools;
kono
parents:
diff changeset
486
kono
parents:
diff changeset
487 subtype System_Strings_Child is RTU_Id
kono
parents:
diff changeset
488 range System_Strings_Stream_Ops .. System_Strings_Stream_Ops;
kono
parents:
diff changeset
489
kono
parents:
diff changeset
490 subtype System_Tasking_Child is System_Child
kono
parents:
diff changeset
491 range System_Tasking_Async_Delays .. System_Tasking_Stages;
kono
parents:
diff changeset
492 -- Range of values for children of System.Tasking
kono
parents:
diff changeset
493
kono
parents:
diff changeset
494 subtype System_Tasking_Protected_Objects_Child is System_Tasking_Child
kono
parents:
diff changeset
495 range System_Tasking_Protected_Objects_Entries ..
kono
parents:
diff changeset
496 System_Tasking_Protected_Objects_Single_Entry;
kono
parents:
diff changeset
497 -- Range of values for children of System.Tasking.Protected_Objects
kono
parents:
diff changeset
498
kono
parents:
diff changeset
499 subtype System_Tasking_Restricted_Child is System_Tasking_Child
kono
parents:
diff changeset
500 range System_Tasking_Restricted_Stages ..
kono
parents:
diff changeset
501 System_Tasking_Restricted_Stages;
kono
parents:
diff changeset
502 -- Range of values for children of System.Tasking.Restricted
kono
parents:
diff changeset
503
kono
parents:
diff changeset
504 subtype System_Tasking_Async_Delays_Child is System_Tasking_Child
kono
parents:
diff changeset
505 range System_Tasking_Async_Delays_Enqueue_Calendar ..
kono
parents:
diff changeset
506 System_Tasking_Async_Delays_Enqueue_RT;
kono
parents:
diff changeset
507 -- Range of values for children of System.Tasking.Async_Delays
kono
parents:
diff changeset
508
kono
parents:
diff changeset
509 --------------------------
kono
parents:
diff changeset
510 -- Runtime Entity Table --
kono
parents:
diff changeset
511 --------------------------
kono
parents:
diff changeset
512
kono
parents:
diff changeset
513 -- This is the enumeration type used to define the argument passed to
kono
parents:
diff changeset
514 -- the RTE function. The name must exactly match the name of the entity
kono
parents:
diff changeset
515 -- involved, and in the case of a package entity, this name must uniquely
kono
parents:
diff changeset
516 -- imply the package containing the entity.
kono
parents:
diff changeset
517
kono
parents:
diff changeset
518 -- As far as possible, we avoid duplicate names in runtime packages, so
kono
parents:
diff changeset
519 -- that the name RE_nnn uniquely identifies the entity nnn. In some cases,
kono
parents:
diff changeset
520 -- it is impossible to avoid such duplication because the names come from
kono
parents:
diff changeset
521 -- RM defined packages. In such cases, the name is of the form RO_XX_nnn
kono
parents:
diff changeset
522 -- where XX is two letters used to differentiate the multiple occurrences
kono
parents:
diff changeset
523 -- of the name xx, and nnn is the entity name.
kono
parents:
diff changeset
524
kono
parents:
diff changeset
525 -- Note that not all entities in the units contained in the run-time unit
kono
parents:
diff changeset
526 -- table are included in the following table, only those that actually
kono
parents:
diff changeset
527 -- have to be referenced from generated code.
kono
parents:
diff changeset
528
kono
parents:
diff changeset
529 -- Note on RE_Null. This value is used as a null entry where an RE_Id
kono
parents:
diff changeset
530 -- value is required syntactically, but no real entry is required or
kono
parents:
diff changeset
531 -- needed. Use of this value will cause a fatal error in an RTE call.
kono
parents:
diff changeset
532
kono
parents:
diff changeset
533 -- Note that under no circumstances can any of these entities be defined
kono
parents:
diff changeset
534 -- more than once in a given package, i.e. no overloading is allowed for
kono
parents:
diff changeset
535 -- any entity that is found using rtsfind. A fatal error is given if this
kono
parents:
diff changeset
536 -- rule is violated. The one exception is for Save_Occurrence, where the
kono
parents:
diff changeset
537 -- RM mandates the overloading. In this case, the compiler only uses the
kono
parents:
diff changeset
538 -- procedure, not the function, and the procedure must come first so that
kono
parents:
diff changeset
539 -- the compiler finds it and not the function.
kono
parents:
diff changeset
540
kono
parents:
diff changeset
541 type RE_Id is (
kono
parents:
diff changeset
542
kono
parents:
diff changeset
543 RE_Null,
kono
parents:
diff changeset
544
kono
parents:
diff changeset
545 RO_CA_Time, -- Ada.Calendar
kono
parents:
diff changeset
546
kono
parents:
diff changeset
547 RO_CA_Delay_For, -- Ada.Calendar.Delays
kono
parents:
diff changeset
548 RO_CA_Delay_Until, -- Ada.Calendar.Delays
kono
parents:
diff changeset
549 RO_CA_To_Duration, -- Ada.Calendar.Delays
kono
parents:
diff changeset
550
kono
parents:
diff changeset
551 RE_Set_Deadline, -- Ada.Dispatching.EDF
kono
parents:
diff changeset
552
kono
parents:
diff changeset
553 RE_Code_Loc, -- Ada.Exceptions
kono
parents:
diff changeset
554 RE_Exception_Id, -- Ada.Exceptions
kono
parents:
diff changeset
555 RE_Exception_Identity, -- Ada.Exceptions
kono
parents:
diff changeset
556 RE_Exception_Information, -- Ada.Exceptions
kono
parents:
diff changeset
557 RE_Exception_Message, -- Ada.Exceptions
kono
parents:
diff changeset
558 RE_Exception_Name_Simple, -- Ada.Exceptions
kono
parents:
diff changeset
559 RE_Exception_Occurrence, -- Ada.Exceptions
kono
parents:
diff changeset
560 RE_Exception_Occurrence_Access, -- Ada.Exceptions
kono
parents:
diff changeset
561 RE_Null_Id, -- Ada.Exceptions
kono
parents:
diff changeset
562 RE_Null_Occurrence, -- Ada.Exceptions
kono
parents:
diff changeset
563 RE_Poll, -- Ada.Exceptions
kono
parents:
diff changeset
564 RE_Raise_Exception, -- Ada.Exceptions
kono
parents:
diff changeset
565 RE_Raise_Exception_Always, -- Ada.Exceptions
kono
parents:
diff changeset
566 RE_Raise_From_Controlled_Operation, -- Ada.Exceptions
kono
parents:
diff changeset
567 RE_Reraise_Occurrence, -- Ada.Exceptions
kono
parents:
diff changeset
568 RE_Reraise_Occurrence_Always, -- Ada.Exceptions
kono
parents:
diff changeset
569 RE_Reraise_Occurrence_No_Defer, -- Ada.Exceptions
kono
parents:
diff changeset
570 RE_Save_Occurrence, -- Ada.Exceptions
kono
parents:
diff changeset
571 RE_Triggered_By_Abort, -- Ada.Exceptions
kono
parents:
diff changeset
572
kono
parents:
diff changeset
573 RE_Interrupt_ID, -- Ada.Interrupts
kono
parents:
diff changeset
574 RE_Is_Reserved, -- Ada.Interrupts
kono
parents:
diff changeset
575 RE_Is_Attached, -- Ada.Interrupts
kono
parents:
diff changeset
576 RE_Current_Handler, -- Ada.Interrupts
kono
parents:
diff changeset
577 RE_Attach_Handler, -- Ada.Interrupts
kono
parents:
diff changeset
578 RE_Exchange_Handler, -- Ada.Interrupts
kono
parents:
diff changeset
579 RE_Detach_Handler, -- Ada.Interrupts
kono
parents:
diff changeset
580 RE_Reference, -- Ada.Interrupts
kono
parents:
diff changeset
581
kono
parents:
diff changeset
582 RE_Names, -- Ada.Interrupts.Names
kono
parents:
diff changeset
583
kono
parents:
diff changeset
584 RE_Clock, -- Ada.Real_Time
kono
parents:
diff changeset
585 RE_Time_Span, -- Ada.Real_Time
kono
parents:
diff changeset
586 RE_Time_Span_Zero, -- Ada.Real_Time
kono
parents:
diff changeset
587 RO_RT_Time, -- Ada.Real_Time
kono
parents:
diff changeset
588
kono
parents:
diff changeset
589 RO_RT_Delay_Until, -- Ada.Real_Time.Delays
kono
parents:
diff changeset
590 RO_RT_To_Duration, -- Ada.Real_Time.Delays
kono
parents:
diff changeset
591
kono
parents:
diff changeset
592 RE_Set_Handler, -- Ada.Real_Time.Timing_Events
kono
parents:
diff changeset
593 RE_Timing_Event, -- Ada.Real_Time.Timing_Events
kono
parents:
diff changeset
594
kono
parents:
diff changeset
595 RE_Root_Stream_Type, -- Ada.Streams
kono
parents:
diff changeset
596 RE_Stream_Element, -- Ada.Streams
kono
parents:
diff changeset
597 RE_Stream_Element_Array, -- Ada.Streams
kono
parents:
diff changeset
598 RE_Stream_Element_Offset, -- Ada.Streams
kono
parents:
diff changeset
599
kono
parents:
diff changeset
600 RE_Stream_Access, -- Ada.Streams.Stream_IO
kono
parents:
diff changeset
601
kono
parents:
diff changeset
602 RO_SU_Super_String, -- Ada.Strings.Superbounded
kono
parents:
diff changeset
603
kono
parents:
diff changeset
604 RO_WI_Super_String, -- Ada.Strings.Wide_Superbounded
kono
parents:
diff changeset
605
kono
parents:
diff changeset
606 RO_WW_Super_String, -- Ada.Strings.Wide_Wide_Superbounded
kono
parents:
diff changeset
607
kono
parents:
diff changeset
608 RE_Unbounded_String, -- Ada.Strings.Unbounded
kono
parents:
diff changeset
609
kono
parents:
diff changeset
610 RE_Access_Level, -- Ada.Tags
kono
parents:
diff changeset
611 RE_Alignment, -- Ada.Tags
kono
parents:
diff changeset
612 RE_Address_Array, -- Ada.Tags
kono
parents:
diff changeset
613 RE_Addr_Ptr, -- Ada.Tags
kono
parents:
diff changeset
614 RE_Base_Address, -- Ada.Tags
kono
parents:
diff changeset
615 RE_Check_Interface_Conversion, -- Ada.Tags
kono
parents:
diff changeset
616 RE_Check_TSD, -- Ada.Tags
kono
parents:
diff changeset
617 RE_Cstring_Ptr, -- Ada.Tags
kono
parents:
diff changeset
618 RE_Descendant_Tag, -- Ada.Tags
kono
parents:
diff changeset
619 RE_Dispatch_Table, -- Ada.Tags
kono
parents:
diff changeset
620 RE_Dispatch_Table_Wrapper, -- Ada.Tags
kono
parents:
diff changeset
621 RE_Displace, -- Ada.Tags
kono
parents:
diff changeset
622 RE_DT, -- Ada.Tags
kono
parents:
diff changeset
623 RE_DT_Offset_To_Top_Offset, -- Ada.Tags
kono
parents:
diff changeset
624 RE_DT_Predef_Prims_Offset, -- Ada.Tags
kono
parents:
diff changeset
625 RE_DT_Typeinfo_Ptr_Size, -- Ada.Tags
kono
parents:
diff changeset
626 RE_External_Tag, -- Ada.Tags
kono
parents:
diff changeset
627 RO_TA_External_Tag, -- Ada.Tags
kono
parents:
diff changeset
628 RE_Get_Access_Level, -- Ada.Tags
kono
parents:
diff changeset
629 RE_Get_Alignment, -- Ada.Tags
kono
parents:
diff changeset
630 RE_Get_Entry_Index, -- Ada.Tags
kono
parents:
diff changeset
631 RE_Get_Offset_Index, -- Ada.Tags
kono
parents:
diff changeset
632 RE_Get_Prim_Op_Kind, -- Ada.Tags
kono
parents:
diff changeset
633 RE_Get_Tagged_Kind, -- Ada.Tags
kono
parents:
diff changeset
634 RE_Idepth, -- Ada.Tags
kono
parents:
diff changeset
635 RE_Interfaces_Array, -- Ada.Tags
kono
parents:
diff changeset
636 RE_Interfaces_Table, -- Ada.Tags
kono
parents:
diff changeset
637 RE_Interface_Data, -- Ada.Tags
kono
parents:
diff changeset
638 RE_Interface_Data_Element, -- Ada.Tags
kono
parents:
diff changeset
639 RE_Interface_Tag, -- Ada.Tags
kono
parents:
diff changeset
640 RE_Is_Abstract, -- Ada.Tags
kono
parents:
diff changeset
641 RE_IW_Membership, -- Ada.Tags
kono
parents:
diff changeset
642 RE_Max_Predef_Prims, -- Ada.Tags
kono
parents:
diff changeset
643 RE_Needs_Finalization, -- Ada.Tags
kono
parents:
diff changeset
644 RE_No_Dispatch_Table_Wrapper, -- Ada.Tags
kono
parents:
diff changeset
645 RE_No_Tag, -- Ada.Tags
kono
parents:
diff changeset
646 RE_NDT_Prims_Ptr, -- Ada.Tags
kono
parents:
diff changeset
647 RE_NDT_TSD, -- Ada.Tags
kono
parents:
diff changeset
648 RE_Num_Prims, -- Ada.Tags
kono
parents:
diff changeset
649 RE_Object_Specific_Data, -- Ada.Tags
kono
parents:
diff changeset
650 RE_Offset_To_Top, -- Ada.Tags
kono
parents:
diff changeset
651 RE_Offset_To_Top_Ptr, -- Ada.Tags
kono
parents:
diff changeset
652 RE_Offset_To_Top_Function_Ptr, -- Ada.Tags
kono
parents:
diff changeset
653 RE_OSD_Table, -- Ada.Tags
kono
parents:
diff changeset
654 RE_OSD_Num_Prims, -- Ada.Tags
kono
parents:
diff changeset
655 RE_POK_Function, -- Ada.Tags
kono
parents:
diff changeset
656 RE_POK_Procedure, -- Ada.Tags
kono
parents:
diff changeset
657 RE_POK_Protected_Entry, -- Ada.Tags
kono
parents:
diff changeset
658 RE_POK_Protected_Function, -- Ada.Tags
kono
parents:
diff changeset
659 RE_POK_Protected_Procedure, -- Ada.Tags
kono
parents:
diff changeset
660 RE_POK_Task_Entry, -- Ada.Tags
kono
parents:
diff changeset
661 RE_POK_Task_Function, -- Ada.Tags
kono
parents:
diff changeset
662 RE_POK_Task_Procedure, -- Ada.Tags
kono
parents:
diff changeset
663 RE_Predef_Prims, -- Ada.Tags
kono
parents:
diff changeset
664 RE_Predef_Prims_Table_Ptr, -- Ada.Tags
kono
parents:
diff changeset
665 RE_Prim_Op_Kind, -- Ada.Tags
kono
parents:
diff changeset
666 RE_Prim_Ptr, -- Ada.Tags
kono
parents:
diff changeset
667 RE_Prims_Ptr, -- Ada.Tags
kono
parents:
diff changeset
668 RE_Primary_DT, -- Ada.Tags
kono
parents:
diff changeset
669 RE_Signature, -- Ada.Tags
kono
parents:
diff changeset
670 RE_SSD, -- Ada.Tags
kono
parents:
diff changeset
671 RE_TSD, -- Ada.Tags
kono
parents:
diff changeset
672 RE_Type_Specific_Data, -- Ada.Tags
kono
parents:
diff changeset
673 RE_Register_Interface_Offset, -- Ada.Tags
kono
parents:
diff changeset
674 RE_Register_Tag, -- Ada.Tags
kono
parents:
diff changeset
675 RE_Register_TSD, -- Ada.Tags
kono
parents:
diff changeset
676 RE_Transportable, -- Ada.Tags
kono
parents:
diff changeset
677 RE_Secondary_DT, -- Ada.Tags
kono
parents:
diff changeset
678 RE_Secondary_Tag, -- Ada.Tags
kono
parents:
diff changeset
679 RE_Select_Specific_Data, -- Ada.Tags
kono
parents:
diff changeset
680 RE_Set_Entry_Index, -- Ada.Tags
kono
parents:
diff changeset
681 RE_Set_Dynamic_Offset_To_Top, -- Ada.Tags
kono
parents:
diff changeset
682 RE_Set_Prim_Op_Kind, -- Ada.Tags
kono
parents:
diff changeset
683 RE_Size_Func, -- Ada.Tags
kono
parents:
diff changeset
684 RE_Size_Ptr, -- Ada.Tags
kono
parents:
diff changeset
685 RE_Tag, -- Ada.Tags
kono
parents:
diff changeset
686 RE_Tag_Error, -- Ada.Tags
kono
parents:
diff changeset
687 RE_Tag_Kind, -- Ada.Tags
kono
parents:
diff changeset
688 RE_Tag_Ptr, -- Ada.Tags
kono
parents:
diff changeset
689 RE_Tag_Table, -- Ada.Tags
kono
parents:
diff changeset
690 RE_Tags_Table, -- Ada.Tags
kono
parents:
diff changeset
691 RE_Tagged_Kind, -- Ada.Tags
kono
parents:
diff changeset
692 RE_Type_Specific_Data_Ptr, -- Ada.Tags
kono
parents:
diff changeset
693 RE_TK_Abstract_Limited_Tagged, -- Ada.Tags
kono
parents:
diff changeset
694 RE_TK_Abstract_Tagged, -- Ada.Tags
kono
parents:
diff changeset
695 RE_TK_Limited_Tagged, -- Ada.Tags
kono
parents:
diff changeset
696 RE_TK_Protected, -- Ada.Tags
kono
parents:
diff changeset
697 RE_TK_Tagged, -- Ada.Tags
kono
parents:
diff changeset
698 RE_TK_Task, -- Ada.Tags
kono
parents:
diff changeset
699 RE_Unregister_Tag, -- Ada.Tags
kono
parents:
diff changeset
700
kono
parents:
diff changeset
701 RE_Set_Specific_Handler, -- Ada.Task_Termination
kono
parents:
diff changeset
702 RE_Specific_Handler, -- Ada.Task_Termination
kono
parents:
diff changeset
703
kono
parents:
diff changeset
704 RE_Abort_Task, -- Ada.Task_Identification
kono
parents:
diff changeset
705 RE_Current_Task, -- Ada.Task_Identification
kono
parents:
diff changeset
706 RO_AT_Task_Id, -- Ada.Task_Identification
kono
parents:
diff changeset
707 RE_Tasking_State, -- Ada.Task_Identification
kono
parents:
diff changeset
708
kono
parents:
diff changeset
709 RE_Decimal_IO, -- Ada.Text_IO
kono
parents:
diff changeset
710 RE_Fixed_IO, -- Ada.Text_IO
kono
parents:
diff changeset
711
kono
parents:
diff changeset
712 RO_WT_Decimal_IO, -- Ada.Wide_Text_IO
kono
parents:
diff changeset
713 RO_WT_Fixed_IO, -- Ada.Wide_Text_IO
kono
parents:
diff changeset
714
kono
parents:
diff changeset
715 RO_WW_Decimal_IO, -- Ada.Wide_Wide_Text_IO
kono
parents:
diff changeset
716 RO_WW_Fixed_IO, -- Ada.Wide_Wide_Text_IO
kono
parents:
diff changeset
717
kono
parents:
diff changeset
718 RE_Integer_8, -- Interfaces
kono
parents:
diff changeset
719 RE_Integer_16, -- Interfaces
kono
parents:
diff changeset
720 RE_Integer_32, -- Interfaces
kono
parents:
diff changeset
721 RE_Integer_64, -- Interfaces
kono
parents:
diff changeset
722 RE_Unsigned_8, -- Interfaces
kono
parents:
diff changeset
723 RE_Unsigned_16, -- Interfaces
kono
parents:
diff changeset
724 RE_Unsigned_32, -- Interfaces
kono
parents:
diff changeset
725 RE_Unsigned_64, -- Interfaces
kono
parents:
diff changeset
726
kono
parents:
diff changeset
727 RE_Address, -- System
kono
parents:
diff changeset
728 RE_Any_Priority, -- System
kono
parents:
diff changeset
729 RE_Bit_Order, -- System
kono
parents:
diff changeset
730 RE_Default_Priority, -- System
kono
parents:
diff changeset
731 RE_High_Order_First, -- System
kono
parents:
diff changeset
732 RE_Interrupt_Priority, -- System
kono
parents:
diff changeset
733 RE_Lib_Stop, -- System
kono
parents:
diff changeset
734 RE_Low_Order_First, -- System
kono
parents:
diff changeset
735 RE_Max_Base_Digits, -- System
kono
parents:
diff changeset
736 RE_Max_Priority, -- System
kono
parents:
diff changeset
737 RE_Null_Address, -- System
kono
parents:
diff changeset
738 RE_Priority, -- System
kono
parents:
diff changeset
739
kono
parents:
diff changeset
740 RE_Address_Image, -- System.Address_Image
kono
parents:
diff changeset
741
kono
parents:
diff changeset
742 RE_Add_With_Ovflo_Check, -- System.Arith_64
kono
parents:
diff changeset
743 RE_Double_Divide, -- System.Arith_64
kono
parents:
diff changeset
744 RE_Multiply_With_Ovflo_Check, -- System.Arith_64
kono
parents:
diff changeset
745 RE_Scaled_Divide, -- System.Arith_64
kono
parents:
diff changeset
746 RE_Subtract_With_Ovflo_Check, -- System.Arith_64
kono
parents:
diff changeset
747
kono
parents:
diff changeset
748 RE_Create_AST_Handler, -- System.AST_Handling
kono
parents:
diff changeset
749
kono
parents:
diff changeset
750 RE_Assert_Failure, -- System.Assertions
kono
parents:
diff changeset
751 RE_Raise_Assert_Failure, -- System.Assertions
kono
parents:
diff changeset
752
kono
parents:
diff changeset
753 RE_Lock_Free_Read_8, -- System.Atomic_Primitives
kono
parents:
diff changeset
754 RE_Lock_Free_Read_16, -- System.Atomic_Primitives
kono
parents:
diff changeset
755 RE_Lock_Free_Read_32, -- System.Atomic_Primitives
kono
parents:
diff changeset
756 RE_Lock_Free_Read_64, -- System.Atomic_Primitives
kono
parents:
diff changeset
757 RE_Lock_Free_Try_Write_8, -- System.Atomic_Primitives
kono
parents:
diff changeset
758 RE_Lock_Free_Try_Write_16, -- System.Atomic_Primitives
kono
parents:
diff changeset
759 RE_Lock_Free_Try_Write_32, -- System.Atomic_Primitives
kono
parents:
diff changeset
760 RE_Lock_Free_Try_Write_64, -- System.Atomic_Primitives
kono
parents:
diff changeset
761 RE_Uint8, -- System.Atomic_Primitives
kono
parents:
diff changeset
762 RE_Uint16, -- System.Atomic_Primitives
kono
parents:
diff changeset
763 RE_Uint32, -- System.Atomic_Primitives
kono
parents:
diff changeset
764 RE_Uint64, -- System.Atomic_Primitives
kono
parents:
diff changeset
765
kono
parents:
diff changeset
766 RE_AST_Handler, -- System.Aux_DEC
kono
parents:
diff changeset
767 RE_Import_Address, -- System.Aux_DEC
kono
parents:
diff changeset
768 RE_Import_Value, -- System.Aux_DEC
kono
parents:
diff changeset
769 RE_No_AST_Handler, -- System.Aux_DEC
kono
parents:
diff changeset
770 RE_Type_Class, -- System.Aux_DEC
kono
parents:
diff changeset
771 RE_Type_Class_Enumeration, -- System.Aux_DEC
kono
parents:
diff changeset
772 RE_Type_Class_Integer, -- System.Aux_DEC
kono
parents:
diff changeset
773 RE_Type_Class_Fixed_Point, -- System.Aux_DEC
kono
parents:
diff changeset
774 RE_Type_Class_Floating_Point, -- System.Aux_DEC
kono
parents:
diff changeset
775 RE_Type_Class_Array, -- System.Aux_DEC
kono
parents:
diff changeset
776 RE_Type_Class_Record, -- System.Aux_DEC
kono
parents:
diff changeset
777 RE_Type_Class_Access, -- System.Aux_DEC
kono
parents:
diff changeset
778 RE_Type_Class_Task, -- System.Aux_DEC
kono
parents:
diff changeset
779 RE_Type_Class_Address, -- System.Aux_DEC
kono
parents:
diff changeset
780
kono
parents:
diff changeset
781 RE_Big_Abs, -- System.Bignums
kono
parents:
diff changeset
782 RE_Big_Add, -- System.Bignums
kono
parents:
diff changeset
783 RE_Big_Div, -- System.Bignums
kono
parents:
diff changeset
784 RE_Big_Exp, -- System.Bignums
kono
parents:
diff changeset
785 RE_Big_Mod, -- System.Bignums
kono
parents:
diff changeset
786 RE_Big_Mul, -- System.Bignums
kono
parents:
diff changeset
787 RE_Big_Neg, -- System.Bignums
kono
parents:
diff changeset
788 RE_Big_Rem, -- System.Bignums
kono
parents:
diff changeset
789 RE_Big_Sub, -- System.Bignums
kono
parents:
diff changeset
790
kono
parents:
diff changeset
791 RE_Big_EQ, -- System.Bignums
kono
parents:
diff changeset
792 RE_Big_GE, -- System.Bignums
kono
parents:
diff changeset
793 RE_Big_GT, -- System.Bignums
kono
parents:
diff changeset
794 RE_Big_LE, -- System.Bignums
kono
parents:
diff changeset
795 RE_Big_LT, -- System.Bignums
kono
parents:
diff changeset
796 RE_Big_NE, -- System.Bignums
kono
parents:
diff changeset
797
kono
parents:
diff changeset
798 RE_Bignum, -- System.Bignums
kono
parents:
diff changeset
799 RE_Bignum_In_LLI_Range, -- System.Bignums
kono
parents:
diff changeset
800 RE_To_Bignum, -- System.Bignums
kono
parents:
diff changeset
801 RE_From_Bignum, -- System.Bignums
kono
parents:
diff changeset
802
kono
parents:
diff changeset
803 RE_Bit_And, -- System.Bit_Ops
kono
parents:
diff changeset
804 RE_Bit_Eq, -- System.Bit_Ops
kono
parents:
diff changeset
805 RE_Bit_Not, -- System.Bit_Ops
kono
parents:
diff changeset
806 RE_Bit_Or, -- System.Bit_Ops
kono
parents:
diff changeset
807 RE_Bit_Xor, -- System.Bit_Ops
kono
parents:
diff changeset
808
kono
parents:
diff changeset
809 RE_Vector_Not, -- System.Boolean_Array_Operations,
kono
parents:
diff changeset
810 RE_Vector_And, -- System.Boolean_Array_Operations,
kono
parents:
diff changeset
811 RE_Vector_Or, -- System.Boolean_Array_Operations,
kono
parents:
diff changeset
812 RE_Vector_Nand, -- System.Boolean_Array_Operations,
kono
parents:
diff changeset
813 RE_Vector_Nor, -- System.Boolean_Array_Operations,
kono
parents:
diff changeset
814 RE_Vector_Nxor, -- System.Boolean_Array_Operations,
kono
parents:
diff changeset
815 RE_Vector_Xor, -- System.Boolean_Array_Operations,
kono
parents:
diff changeset
816
kono
parents:
diff changeset
817 RE_Bswap_16, -- System.Byte_Swapping
kono
parents:
diff changeset
818 RE_Bswap_32, -- System.Byte_Swapping
kono
parents:
diff changeset
819 RE_Bswap_64, -- System.Byte_Swapping
kono
parents:
diff changeset
820
kono
parents:
diff changeset
821 RE_Checked_Pool, -- System.Checked_Pools
kono
parents:
diff changeset
822
kono
parents:
diff changeset
823 RE_Compare_Array_S8, -- System.Compare_Array_Signed_8
kono
parents:
diff changeset
824 RE_Compare_Array_S8_Unaligned, -- System.Compare_Array_Signed_8
kono
parents:
diff changeset
825
kono
parents:
diff changeset
826 RE_Compare_Array_S16, -- System.Compare_Array_Signed_16
kono
parents:
diff changeset
827 RE_Compare_Array_S32, -- System.Compare_Array_Signed_16
kono
parents:
diff changeset
828 RE_Compare_Array_S64, -- System.Compare_Array_Signed_16
kono
parents:
diff changeset
829
kono
parents:
diff changeset
830 RE_Compare_Array_U8, -- System.Compare_Array_Unsigned_8
kono
parents:
diff changeset
831 RE_Compare_Array_U8_Unaligned, -- System.Compare_Array_Unsigned_8
kono
parents:
diff changeset
832
kono
parents:
diff changeset
833 RE_Compare_Array_U16, -- System.Compare_Array_Unsigned_16
kono
parents:
diff changeset
834 RE_Compare_Array_U32, -- System.Compare_Array_Unsigned_16
kono
parents:
diff changeset
835 RE_Compare_Array_U64, -- System.Compare_Array_Unsigned_16
kono
parents:
diff changeset
836
kono
parents:
diff changeset
837 RE_Str_Concat_2, -- System.Concat_2
kono
parents:
diff changeset
838 RE_Str_Concat_3, -- System.Concat_3
kono
parents:
diff changeset
839 RE_Str_Concat_4, -- System.Concat_4
kono
parents:
diff changeset
840 RE_Str_Concat_5, -- System.Concat_5
kono
parents:
diff changeset
841 RE_Str_Concat_6, -- System.Concat_6
kono
parents:
diff changeset
842 RE_Str_Concat_7, -- System.Concat_7
kono
parents:
diff changeset
843 RE_Str_Concat_8, -- System.Concat_8
kono
parents:
diff changeset
844 RE_Str_Concat_9, -- System.Concat_9
kono
parents:
diff changeset
845
kono
parents:
diff changeset
846 RE_Str_Concat_Bounds_2, -- System.Concat_2
kono
parents:
diff changeset
847 RE_Str_Concat_Bounds_3, -- System.Concat_3
kono
parents:
diff changeset
848 RE_Str_Concat_Bounds_4, -- System.Concat_4
kono
parents:
diff changeset
849 RE_Str_Concat_Bounds_5, -- System.Concat_5
kono
parents:
diff changeset
850 RE_Str_Concat_Bounds_6, -- System.Concat_6
kono
parents:
diff changeset
851 RE_Str_Concat_Bounds_7, -- System.Concat_7
kono
parents:
diff changeset
852 RE_Str_Concat_Bounds_8, -- System.Concat_8
kono
parents:
diff changeset
853 RE_Str_Concat_Bounds_9, -- System.Concat_9
kono
parents:
diff changeset
854
kono
parents:
diff changeset
855 RE_Get_Active_Partition_Id, -- System.DSA_Services
kono
parents:
diff changeset
856 RE_Get_Local_Partition_Id, -- System.DSA_Services
kono
parents:
diff changeset
857 RE_Get_Passive_Partition_Id, -- System.DSA_Services
kono
parents:
diff changeset
858
kono
parents:
diff changeset
859 RE_Any_Container_Ptr, -- System.DSA_Types
kono
parents:
diff changeset
860
kono
parents:
diff changeset
861 RE_Check_Standard_Allocator, -- System.Elaboration_Allocators
kono
parents:
diff changeset
862
kono
parents:
diff changeset
863 RE_Register_Exception, -- System.Exception_Table
kono
parents:
diff changeset
864
kono
parents:
diff changeset
865 RE_Local_Raise, -- System.Exceptions_Debug
kono
parents:
diff changeset
866
kono
parents:
diff changeset
867 RE_Exn_Integer, -- System.Exn_Int
kono
parents:
diff changeset
868
kono
parents:
diff changeset
869 RE_Exn_Float, -- System.Exn_LLF
kono
parents:
diff changeset
870 RE_Exn_Long_Float, -- System.Exn_LLF
kono
parents:
diff changeset
871 RE_Exn_Long_Long_Float, -- System.Exn_LLF
kono
parents:
diff changeset
872
kono
parents:
diff changeset
873 RE_Exn_Long_Long_Integer, -- System.Exn_LLI
kono
parents:
diff changeset
874
kono
parents:
diff changeset
875 RE_Exp_Integer, -- System.Exp_Int
kono
parents:
diff changeset
876
kono
parents:
diff changeset
877 RE_Exp_Long_Long_Integer, -- System.Exp_LLI
kono
parents:
diff changeset
878
kono
parents:
diff changeset
879 RE_Exp_Long_Long_Unsigned, -- System.Exp_LLU
kono
parents:
diff changeset
880
kono
parents:
diff changeset
881 RE_Exp_Modular, -- System.Exp_Mod
kono
parents:
diff changeset
882
kono
parents:
diff changeset
883 RE_Exp_Unsigned, -- System.Exp_Uns
kono
parents:
diff changeset
884
kono
parents:
diff changeset
885 RE_Attr_Float, -- System.Fat_Flt
kono
parents:
diff changeset
886
kono
parents:
diff changeset
887 RE_Attr_IEEE_Long, -- System.Fat_IEEE_Long_Float
kono
parents:
diff changeset
888 RE_Fat_IEEE_Long, -- System.Fat_IEEE_Long_Float
kono
parents:
diff changeset
889
kono
parents:
diff changeset
890 RE_Attr_IEEE_Short, -- System.Fat_IEEE_Short_Float
kono
parents:
diff changeset
891 RE_Fat_IEEE_Short, -- System.Fat_IEEE_Short_Float
kono
parents:
diff changeset
892
kono
parents:
diff changeset
893 RE_Attr_Long_Float, -- System.Fat_LFlt
kono
parents:
diff changeset
894
kono
parents:
diff changeset
895 RE_Attr_Long_Long_Float, -- System.Fat_LLF
kono
parents:
diff changeset
896
kono
parents:
diff changeset
897 RE_Attr_Short_Float, -- System.Fat_SFlt
kono
parents:
diff changeset
898
kono
parents:
diff changeset
899 RE_Attr_VAX_D_Float, -- System.Fat_VAX_D_Float
kono
parents:
diff changeset
900 RE_Fat_VAX_D, -- System.Fat_VAX_D_Float
kono
parents:
diff changeset
901
kono
parents:
diff changeset
902 RE_Attr_VAX_F_Float, -- System.Fat_VAX_F_Float
kono
parents:
diff changeset
903 RE_Fat_VAX_F, -- System.Fat_VAX_F_Float
kono
parents:
diff changeset
904
kono
parents:
diff changeset
905 RE_Attr_VAX_G_Float, -- System.Fat_VAX_G_Float
kono
parents:
diff changeset
906 RE_Fat_VAX_G, -- System.Fat_VAX_G_Float
kono
parents:
diff changeset
907
kono
parents:
diff changeset
908 RE_Add_Offset_To_Address, -- System.Finalization_Masters
kono
parents:
diff changeset
909 RE_Attach, -- System.Finalization_Masters
kono
parents:
diff changeset
910 RE_Base_Pool, -- System.Finalization_Masters
kono
parents:
diff changeset
911 RE_Detach, -- System.Finalization_Masters
kono
parents:
diff changeset
912 RE_Finalization_Master, -- System.Finalization_Masters
kono
parents:
diff changeset
913 RE_Finalization_Master_Ptr, -- System.Finalization_Masters
kono
parents:
diff changeset
914 RE_Set_Base_Pool, -- System.Finalization_Masters
kono
parents:
diff changeset
915 RE_Set_Finalize_Address, -- System.Finalization_Masters
kono
parents:
diff changeset
916 RE_Set_Is_Heterogeneous, -- System.Finalization_Masters
kono
parents:
diff changeset
917
kono
parents:
diff changeset
918 RE_Root_Controlled, -- System.Finalization_Root
kono
parents:
diff changeset
919 RE_Root_Controlled_Ptr, -- System.Finalization_Root
kono
parents:
diff changeset
920
kono
parents:
diff changeset
921 RE_Fore, -- System.Fore
kono
parents:
diff changeset
922
kono
parents:
diff changeset
923 RE_Image_Boolean, -- System.Img_Bool
kono
parents:
diff changeset
924
kono
parents:
diff changeset
925 RE_Image_Character, -- System.Img_Char
kono
parents:
diff changeset
926 RE_Image_Character_05, -- System.Img_Char
kono
parents:
diff changeset
927
kono
parents:
diff changeset
928 RE_Image_Decimal, -- System.Img_Dec
kono
parents:
diff changeset
929
kono
parents:
diff changeset
930 RE_Image_Enumeration_8, -- System.Img_Enum_New
kono
parents:
diff changeset
931 RE_Image_Enumeration_16, -- System.Img_Enum_New
kono
parents:
diff changeset
932 RE_Image_Enumeration_32, -- System.Img_Enum_New
kono
parents:
diff changeset
933
kono
parents:
diff changeset
934 RE_Image_Integer, -- System.Img_Int
kono
parents:
diff changeset
935
kono
parents:
diff changeset
936 RE_Image_Long_Long_Decimal, -- System.Img_LLD
kono
parents:
diff changeset
937
kono
parents:
diff changeset
938 RE_Image_Long_Long_Integer, -- System.Img_LLI
kono
parents:
diff changeset
939
kono
parents:
diff changeset
940 RE_Image_Long_Long_Unsigned, -- System.Img_LLU
kono
parents:
diff changeset
941
kono
parents:
diff changeset
942 RE_Image_Ordinary_Fixed_Point, -- System.Img_Real
kono
parents:
diff changeset
943 RE_Image_Floating_Point, -- System.Img_Real
kono
parents:
diff changeset
944
kono
parents:
diff changeset
945 RE_Image_Unsigned, -- System.Img_Uns
kono
parents:
diff changeset
946
kono
parents:
diff changeset
947 RE_Image_Wide_Character, -- System.Img_WChar
kono
parents:
diff changeset
948 RE_Image_Wide_Wide_Character, -- System.Img_WChar
kono
parents:
diff changeset
949
kono
parents:
diff changeset
950 RE_Bind_Interrupt_To_Entry, -- System.Interrupts
kono
parents:
diff changeset
951 RE_Default_Interrupt_Priority, -- System.Interrupts
kono
parents:
diff changeset
952 RE_Dynamic_Interrupt_Protection, -- System.Interrupts
kono
parents:
diff changeset
953 RE_Install_Handlers, -- System.Interrupts
kono
parents:
diff changeset
954 RE_Install_Restricted_Handlers, -- System.Interrupts
kono
parents:
diff changeset
955 RE_Register_Interrupt_Handler, -- System.Interrupts
kono
parents:
diff changeset
956 RE_Static_Interrupt_Protection, -- System.Interrupts
kono
parents:
diff changeset
957 RE_System_Interrupt_Id, -- System.Interrupts
kono
parents:
diff changeset
958
kono
parents:
diff changeset
959 RE_Expon_LLF, -- System.Long_Long_Float_Expon
kono
parents:
diff changeset
960
kono
parents:
diff changeset
961 RE_Asm_Insn, -- System.Machine_Code
kono
parents:
diff changeset
962 RE_Asm_Input_Operand, -- System.Machine_Code
kono
parents:
diff changeset
963 RE_Asm_Output_Operand, -- System.Machine_Code
kono
parents:
diff changeset
964
kono
parents:
diff changeset
965 RE_Mantissa_Value, -- System.Mantissa
kono
parents:
diff changeset
966
kono
parents:
diff changeset
967 RE_Free, -- System.Memory
kono
parents:
diff changeset
968
kono
parents:
diff changeset
969 RE_CPU_Range, -- System.Multiprocessors
kono
parents:
diff changeset
970
kono
parents:
diff changeset
971 RE_Bits_03, -- System.Pack_03
kono
parents:
diff changeset
972 RE_Get_03, -- System.Pack_03
kono
parents:
diff changeset
973 RE_Set_03, -- System.Pack_03
kono
parents:
diff changeset
974
kono
parents:
diff changeset
975 RE_Bits_05, -- System.Pack_05
kono
parents:
diff changeset
976 RE_Get_05, -- System.Pack_05
kono
parents:
diff changeset
977 RE_Set_05, -- System.Pack_05
kono
parents:
diff changeset
978
kono
parents:
diff changeset
979 RE_Bits_06, -- System.Pack_06
kono
parents:
diff changeset
980 RE_Get_06, -- System.Pack_06
kono
parents:
diff changeset
981 RE_GetU_06, -- System.Pack_06
kono
parents:
diff changeset
982 RE_Set_06, -- System.Pack_06
kono
parents:
diff changeset
983 RE_SetU_06, -- System.Pack_06
kono
parents:
diff changeset
984
kono
parents:
diff changeset
985 RE_Bits_07, -- System.Pack_07
kono
parents:
diff changeset
986 RE_Get_07, -- System.Pack_07
kono
parents:
diff changeset
987 RE_Set_07, -- System.Pack_07
kono
parents:
diff changeset
988
kono
parents:
diff changeset
989 RE_Bits_09, -- System.Pack_09
kono
parents:
diff changeset
990 RE_Get_09, -- System.Pack_09
kono
parents:
diff changeset
991 RE_Set_09, -- System.Pack_09
kono
parents:
diff changeset
992
kono
parents:
diff changeset
993 RE_Bits_10, -- System.Pack_10
kono
parents:
diff changeset
994 RE_Get_10, -- System.Pack_10
kono
parents:
diff changeset
995 RE_GetU_10, -- System.Pack_10
kono
parents:
diff changeset
996 RE_Set_10, -- System.Pack_10
kono
parents:
diff changeset
997 RE_SetU_10, -- System.Pack_10
kono
parents:
diff changeset
998
kono
parents:
diff changeset
999 RE_Bits_11, -- System.Pack_11
kono
parents:
diff changeset
1000 RE_Get_11, -- System.Pack_11
kono
parents:
diff changeset
1001 RE_Set_11, -- System.Pack_11
kono
parents:
diff changeset
1002
kono
parents:
diff changeset
1003 RE_Bits_12, -- System.Pack_12
kono
parents:
diff changeset
1004 RE_Get_12, -- System.Pack_12
kono
parents:
diff changeset
1005 RE_GetU_12, -- System.Pack_12
kono
parents:
diff changeset
1006 RE_Set_12, -- System.Pack_12
kono
parents:
diff changeset
1007 RE_SetU_12, -- System.Pack_12
kono
parents:
diff changeset
1008
kono
parents:
diff changeset
1009 RE_Bits_13, -- System.Pack_13
kono
parents:
diff changeset
1010 RE_Get_13, -- System.Pack_13
kono
parents:
diff changeset
1011 RE_Set_13, -- System.Pack_13
kono
parents:
diff changeset
1012
kono
parents:
diff changeset
1013 RE_Bits_14, -- System.Pack_14
kono
parents:
diff changeset
1014 RE_Get_14, -- System.Pack_14
kono
parents:
diff changeset
1015 RE_GetU_14, -- System.Pack_14
kono
parents:
diff changeset
1016 RE_Set_14, -- System.Pack_14
kono
parents:
diff changeset
1017 RE_SetU_14, -- System.Pack_14
kono
parents:
diff changeset
1018
kono
parents:
diff changeset
1019 RE_Bits_15, -- System.Pack_15
kono
parents:
diff changeset
1020 RE_Get_15, -- System.Pack_15
kono
parents:
diff changeset
1021 RE_Set_15, -- System.Pack_15
kono
parents:
diff changeset
1022
kono
parents:
diff changeset
1023 RE_Bits_17, -- System.Pack_17
kono
parents:
diff changeset
1024 RE_Get_17, -- System.Pack_17
kono
parents:
diff changeset
1025 RE_Set_17, -- System.Pack_17
kono
parents:
diff changeset
1026
kono
parents:
diff changeset
1027 RE_Bits_18, -- System.Pack_18
kono
parents:
diff changeset
1028 RE_Get_18, -- System.Pack_18
kono
parents:
diff changeset
1029 RE_GetU_18, -- System.Pack_18
kono
parents:
diff changeset
1030 RE_Set_18, -- System.Pack_18
kono
parents:
diff changeset
1031 RE_SetU_18, -- System.Pack_18
kono
parents:
diff changeset
1032
kono
parents:
diff changeset
1033 RE_Bits_19, -- System.Pack_19
kono
parents:
diff changeset
1034 RE_Get_19, -- System.Pack_19
kono
parents:
diff changeset
1035 RE_Set_19, -- System.Pack_19
kono
parents:
diff changeset
1036
kono
parents:
diff changeset
1037 RE_Bits_20, -- System.Pack_20
kono
parents:
diff changeset
1038 RE_Get_20, -- System.Pack_20
kono
parents:
diff changeset
1039 RE_GetU_20, -- System.Pack_20
kono
parents:
diff changeset
1040 RE_Set_20, -- System.Pack_20
kono
parents:
diff changeset
1041 RE_SetU_20, -- System.Pack_20
kono
parents:
diff changeset
1042
kono
parents:
diff changeset
1043 RE_Bits_21, -- System.Pack_21
kono
parents:
diff changeset
1044 RE_Get_21, -- System.Pack_21
kono
parents:
diff changeset
1045 RE_Set_21, -- System.Pack_21
kono
parents:
diff changeset
1046
kono
parents:
diff changeset
1047 RE_Bits_22, -- System.Pack_22
kono
parents:
diff changeset
1048 RE_Get_22, -- System.Pack_22
kono
parents:
diff changeset
1049 RE_GetU_22, -- System.Pack_22
kono
parents:
diff changeset
1050 RE_Set_22, -- System.Pack_22
kono
parents:
diff changeset
1051 RE_SetU_22, -- System.Pack_22
kono
parents:
diff changeset
1052
kono
parents:
diff changeset
1053 RE_Bits_23, -- System.Pack_23
kono
parents:
diff changeset
1054 RE_Get_23, -- System.Pack_23
kono
parents:
diff changeset
1055 RE_Set_23, -- System.Pack_23
kono
parents:
diff changeset
1056
kono
parents:
diff changeset
1057 RE_Bits_24, -- System.Pack_24
kono
parents:
diff changeset
1058 RE_Get_24, -- System.Pack_24
kono
parents:
diff changeset
1059 RE_GetU_24, -- System.Pack_24
kono
parents:
diff changeset
1060 RE_Set_24, -- System.Pack_24
kono
parents:
diff changeset
1061 RE_SetU_24, -- System.Pack_24
kono
parents:
diff changeset
1062
kono
parents:
diff changeset
1063 RE_Bits_25, -- System.Pack_25
kono
parents:
diff changeset
1064 RE_Get_25, -- System.Pack_25
kono
parents:
diff changeset
1065 RE_Set_25, -- System.Pack_25
kono
parents:
diff changeset
1066
kono
parents:
diff changeset
1067 RE_Bits_26, -- System.Pack_26
kono
parents:
diff changeset
1068 RE_Get_26, -- System.Pack_26
kono
parents:
diff changeset
1069 RE_GetU_26, -- System.Pack_26
kono
parents:
diff changeset
1070 RE_Set_26, -- System.Pack_26
kono
parents:
diff changeset
1071 RE_SetU_26, -- System.Pack_26
kono
parents:
diff changeset
1072
kono
parents:
diff changeset
1073 RE_Bits_27, -- System.Pack_27
kono
parents:
diff changeset
1074 RE_Get_27, -- System.Pack_27
kono
parents:
diff changeset
1075 RE_Set_27, -- System.Pack_27
kono
parents:
diff changeset
1076
kono
parents:
diff changeset
1077 RE_Bits_28, -- System.Pack_28
kono
parents:
diff changeset
1078 RE_Get_28, -- System.Pack_28
kono
parents:
diff changeset
1079 RE_GetU_28, -- System.Pack_28
kono
parents:
diff changeset
1080 RE_Set_28, -- System.Pack_28
kono
parents:
diff changeset
1081 RE_SetU_28, -- System.Pack_28
kono
parents:
diff changeset
1082
kono
parents:
diff changeset
1083 RE_Bits_29, -- System.Pack_29
kono
parents:
diff changeset
1084 RE_Get_29, -- System.Pack_29
kono
parents:
diff changeset
1085 RE_Set_29, -- System.Pack_29
kono
parents:
diff changeset
1086
kono
parents:
diff changeset
1087 RE_Bits_30, -- System.Pack_30
kono
parents:
diff changeset
1088 RE_Get_30, -- System.Pack_30
kono
parents:
diff changeset
1089 RE_GetU_30, -- System.Pack_30
kono
parents:
diff changeset
1090 RE_Set_30, -- System.Pack_30
kono
parents:
diff changeset
1091 RE_SetU_30, -- System.Pack_30
kono
parents:
diff changeset
1092
kono
parents:
diff changeset
1093 RE_Bits_31, -- System.Pack_31
kono
parents:
diff changeset
1094 RE_Get_31, -- System.Pack_31
kono
parents:
diff changeset
1095 RE_Set_31, -- System.Pack_31
kono
parents:
diff changeset
1096
kono
parents:
diff changeset
1097 RE_Bits_33, -- System.Pack_33
kono
parents:
diff changeset
1098 RE_Get_33, -- System.Pack_33
kono
parents:
diff changeset
1099 RE_Set_33, -- System.Pack_33
kono
parents:
diff changeset
1100
kono
parents:
diff changeset
1101 RE_Bits_34, -- System.Pack_34
kono
parents:
diff changeset
1102 RE_Get_34, -- System.Pack_34
kono
parents:
diff changeset
1103 RE_GetU_34, -- System.Pack_34
kono
parents:
diff changeset
1104 RE_Set_34, -- System.Pack_34
kono
parents:
diff changeset
1105 RE_SetU_34, -- System.Pack_34
kono
parents:
diff changeset
1106
kono
parents:
diff changeset
1107 RE_Bits_35, -- System.Pack_35
kono
parents:
diff changeset
1108 RE_Get_35, -- System.Pack_35
kono
parents:
diff changeset
1109 RE_Set_35, -- System.Pack_35
kono
parents:
diff changeset
1110
kono
parents:
diff changeset
1111 RE_Bits_36, -- System.Pack_36
kono
parents:
diff changeset
1112 RE_Get_36, -- System.Pack_36
kono
parents:
diff changeset
1113 RE_GetU_36, -- System.Pack_36
kono
parents:
diff changeset
1114 RE_Set_36, -- System.Pack_36
kono
parents:
diff changeset
1115 RE_SetU_36, -- System.Pack_36
kono
parents:
diff changeset
1116
kono
parents:
diff changeset
1117 RE_Bits_37, -- System.Pack_37
kono
parents:
diff changeset
1118 RE_Get_37, -- System.Pack_37
kono
parents:
diff changeset
1119 RE_Set_37, -- System.Pack_37
kono
parents:
diff changeset
1120
kono
parents:
diff changeset
1121 RE_Bits_38, -- System.Pack_38
kono
parents:
diff changeset
1122 RE_Get_38, -- System.Pack_38
kono
parents:
diff changeset
1123 RE_GetU_38, -- System.Pack_38
kono
parents:
diff changeset
1124 RE_Set_38, -- System.Pack_38
kono
parents:
diff changeset
1125 RE_SetU_38, -- System.Pack_38
kono
parents:
diff changeset
1126
kono
parents:
diff changeset
1127 RE_Bits_39, -- System.Pack_39
kono
parents:
diff changeset
1128 RE_Get_39, -- System.Pack_39
kono
parents:
diff changeset
1129 RE_Set_39, -- System.Pack_39
kono
parents:
diff changeset
1130
kono
parents:
diff changeset
1131 RE_Bits_40, -- System.Pack_40
kono
parents:
diff changeset
1132 RE_Get_40, -- System.Pack_40
kono
parents:
diff changeset
1133 RE_GetU_40, -- System.Pack_40
kono
parents:
diff changeset
1134 RE_Set_40, -- System.Pack_40
kono
parents:
diff changeset
1135 RE_SetU_40, -- System.Pack_40
kono
parents:
diff changeset
1136
kono
parents:
diff changeset
1137 RE_Bits_41, -- System.Pack_41
kono
parents:
diff changeset
1138 RE_Get_41, -- System.Pack_41
kono
parents:
diff changeset
1139 RE_Set_41, -- System.Pack_41
kono
parents:
diff changeset
1140
kono
parents:
diff changeset
1141 RE_Bits_42, -- System.Pack_42
kono
parents:
diff changeset
1142 RE_Get_42, -- System.Pack_42
kono
parents:
diff changeset
1143 RE_GetU_42, -- System.Pack_42
kono
parents:
diff changeset
1144 RE_Set_42, -- System.Pack_42
kono
parents:
diff changeset
1145 RE_SetU_42, -- System.Pack_42
kono
parents:
diff changeset
1146
kono
parents:
diff changeset
1147 RE_Bits_43, -- System.Pack_43
kono
parents:
diff changeset
1148 RE_Get_43, -- System.Pack_43
kono
parents:
diff changeset
1149 RE_Set_43, -- System.Pack_43
kono
parents:
diff changeset
1150
kono
parents:
diff changeset
1151 RE_Bits_44, -- System.Pack_44
kono
parents:
diff changeset
1152 RE_Get_44, -- System.Pack_44
kono
parents:
diff changeset
1153 RE_GetU_44, -- System.Pack_44
kono
parents:
diff changeset
1154 RE_Set_44, -- System.Pack_44
kono
parents:
diff changeset
1155 RE_SetU_44, -- System.Pack_44
kono
parents:
diff changeset
1156
kono
parents:
diff changeset
1157 RE_Bits_45, -- System.Pack_45
kono
parents:
diff changeset
1158 RE_Get_45, -- System.Pack_45
kono
parents:
diff changeset
1159 RE_Set_45, -- System.Pack_45
kono
parents:
diff changeset
1160
kono
parents:
diff changeset
1161 RE_Bits_46, -- System.Pack_46
kono
parents:
diff changeset
1162 RE_Get_46, -- System.Pack_46
kono
parents:
diff changeset
1163 RE_GetU_46, -- System.Pack_46
kono
parents:
diff changeset
1164 RE_Set_46, -- System.Pack_46
kono
parents:
diff changeset
1165 RE_SetU_46, -- System.Pack_46
kono
parents:
diff changeset
1166
kono
parents:
diff changeset
1167 RE_Bits_47, -- System.Pack_47
kono
parents:
diff changeset
1168 RE_Get_47, -- System.Pack_47
kono
parents:
diff changeset
1169 RE_Set_47, -- System.Pack_47
kono
parents:
diff changeset
1170
kono
parents:
diff changeset
1171 RE_Bits_48, -- System.Pack_48
kono
parents:
diff changeset
1172 RE_Get_48, -- System.Pack_48
kono
parents:
diff changeset
1173 RE_GetU_48, -- System.Pack_48
kono
parents:
diff changeset
1174 RE_Set_48, -- System.Pack_48
kono
parents:
diff changeset
1175 RE_SetU_48, -- System.Pack_48
kono
parents:
diff changeset
1176
kono
parents:
diff changeset
1177 RE_Bits_49, -- System.Pack_49
kono
parents:
diff changeset
1178 RE_Get_49, -- System.Pack_49
kono
parents:
diff changeset
1179 RE_Set_49, -- System.Pack_49
kono
parents:
diff changeset
1180
kono
parents:
diff changeset
1181 RE_Bits_50, -- System.Pack_50
kono
parents:
diff changeset
1182 RE_Get_50, -- System.Pack_50
kono
parents:
diff changeset
1183 RE_GetU_50, -- System.Pack_50
kono
parents:
diff changeset
1184 RE_Set_50, -- System.Pack_50
kono
parents:
diff changeset
1185 RE_SetU_50, -- System.Pack_50
kono
parents:
diff changeset
1186
kono
parents:
diff changeset
1187 RE_Bits_51, -- System.Pack_51
kono
parents:
diff changeset
1188 RE_Get_51, -- System.Pack_51
kono
parents:
diff changeset
1189 RE_Set_51, -- System.Pack_51
kono
parents:
diff changeset
1190
kono
parents:
diff changeset
1191 RE_Bits_52, -- System.Pack_52
kono
parents:
diff changeset
1192 RE_Get_52, -- System.Pack_52
kono
parents:
diff changeset
1193 RE_GetU_52, -- System.Pack_52
kono
parents:
diff changeset
1194 RE_Set_52, -- System.Pack_52
kono
parents:
diff changeset
1195 RE_SetU_52, -- System.Pack_52
kono
parents:
diff changeset
1196
kono
parents:
diff changeset
1197 RE_Bits_53, -- System.Pack_53
kono
parents:
diff changeset
1198 RE_Get_53, -- System.Pack_53
kono
parents:
diff changeset
1199 RE_Set_53, -- System.Pack_53
kono
parents:
diff changeset
1200
kono
parents:
diff changeset
1201 RE_Bits_54, -- System.Pack_54
kono
parents:
diff changeset
1202 RE_Get_54, -- System.Pack_54
kono
parents:
diff changeset
1203 RE_GetU_54, -- System.Pack_54
kono
parents:
diff changeset
1204 RE_Set_54, -- System.Pack_54
kono
parents:
diff changeset
1205 RE_SetU_54, -- System.Pack_54
kono
parents:
diff changeset
1206
kono
parents:
diff changeset
1207 RE_Bits_55, -- System.Pack_55
kono
parents:
diff changeset
1208 RE_Get_55, -- System.Pack_55
kono
parents:
diff changeset
1209 RE_Set_55, -- System.Pack_55
kono
parents:
diff changeset
1210
kono
parents:
diff changeset
1211 RE_Bits_56, -- System.Pack_56
kono
parents:
diff changeset
1212 RE_Get_56, -- System.Pack_56
kono
parents:
diff changeset
1213 RE_GetU_56, -- System.Pack_56
kono
parents:
diff changeset
1214 RE_Set_56, -- System.Pack_56
kono
parents:
diff changeset
1215 RE_SetU_56, -- System.Pack_56
kono
parents:
diff changeset
1216
kono
parents:
diff changeset
1217 RE_Bits_57, -- System.Pack_57
kono
parents:
diff changeset
1218 RE_Get_57, -- System.Pack_57
kono
parents:
diff changeset
1219 RE_Set_57, -- System.Pack_57
kono
parents:
diff changeset
1220
kono
parents:
diff changeset
1221 RE_Bits_58, -- System.Pack_58
kono
parents:
diff changeset
1222 RE_Get_58, -- System.Pack_58
kono
parents:
diff changeset
1223 RE_GetU_58, -- System.Pack_58
kono
parents:
diff changeset
1224 RE_Set_58, -- System.Pack_58
kono
parents:
diff changeset
1225 RE_SetU_58, -- System.Pack_58
kono
parents:
diff changeset
1226
kono
parents:
diff changeset
1227 RE_Bits_59, -- System.Pack_59
kono
parents:
diff changeset
1228 RE_Get_59, -- System.Pack_59
kono
parents:
diff changeset
1229 RE_Set_59, -- System.Pack_59
kono
parents:
diff changeset
1230
kono
parents:
diff changeset
1231 RE_Bits_60, -- System.Pack_60
kono
parents:
diff changeset
1232 RE_Get_60, -- System.Pack_60
kono
parents:
diff changeset
1233 RE_GetU_60, -- System.Pack_60
kono
parents:
diff changeset
1234 RE_Set_60, -- System.Pack_60
kono
parents:
diff changeset
1235 RE_SetU_60, -- System.Pack_60
kono
parents:
diff changeset
1236
kono
parents:
diff changeset
1237 RE_Bits_61, -- System.Pack_61
kono
parents:
diff changeset
1238 RE_Get_61, -- System.Pack_61
kono
parents:
diff changeset
1239 RE_Set_61, -- System.Pack_61
kono
parents:
diff changeset
1240
kono
parents:
diff changeset
1241 RE_Bits_62, -- System.Pack_62
kono
parents:
diff changeset
1242 RE_Get_62, -- System.Pack_62
kono
parents:
diff changeset
1243 RE_GetU_62, -- System.Pack_62
kono
parents:
diff changeset
1244 RE_Set_62, -- System.Pack_62
kono
parents:
diff changeset
1245 RE_SetU_62, -- System.Pack_62
kono
parents:
diff changeset
1246
kono
parents:
diff changeset
1247 RE_Bits_63, -- System.Pack_63
kono
parents:
diff changeset
1248 RE_Get_63, -- System.Pack_63
kono
parents:
diff changeset
1249 RE_Set_63, -- System.Pack_63
kono
parents:
diff changeset
1250
kono
parents:
diff changeset
1251 RE_Adjust_Storage_Size, -- System.Parameters
kono
parents:
diff changeset
1252 RE_Default_Secondary_Stack_Size, -- System.Parameters
kono
parents:
diff changeset
1253 RE_Default_Stack_Size, -- System.Parameters
kono
parents:
diff changeset
1254 RE_Garbage_Collected, -- System.Parameters
kono
parents:
diff changeset
1255 RE_Size_Type, -- System.Parameters
kono
parents:
diff changeset
1256 RE_Unspecified_Size, -- System.Parameters
kono
parents:
diff changeset
1257
kono
parents:
diff changeset
1258 RE_DSA_Implementation, -- System.Partition_Interface
kono
parents:
diff changeset
1259 RE_PCS_Version, -- System.Partition_Interface
kono
parents:
diff changeset
1260 RE_Get_RACW, -- System.Partition_Interface
kono
parents:
diff changeset
1261 RE_Get_RCI_Package_Receiver, -- System.Partition_Interface
kono
parents:
diff changeset
1262 RE_Get_Unique_Remote_Pointer, -- System.Partition_Interface
kono
parents:
diff changeset
1263 RE_RACW_Stub_Type, -- System.Partition_Interface
kono
parents:
diff changeset
1264 RE_RACW_Stub_Type_Access, -- System.Partition_Interface
kono
parents:
diff changeset
1265 RE_RAS_Proxy_Type_Access, -- System.Partition_Interface
kono
parents:
diff changeset
1266 RE_Raise_Program_Error_Unknown_Tag, -- System.Partition_Interface
kono
parents:
diff changeset
1267 RE_Register_Passive_Package, -- System.Partition_Interface
kono
parents:
diff changeset
1268 RE_Register_Receiving_Stub, -- System.Partition_Interface
kono
parents:
diff changeset
1269 RE_Request, -- System.Partition_Interface
kono
parents:
diff changeset
1270 RE_Request_Access, -- System.Partition_Interface
kono
parents:
diff changeset
1271 RE_RCI_Locator, -- System.Partition_Interface
kono
parents:
diff changeset
1272 RE_RCI_Subp_Info, -- System.Partition_Interface
kono
parents:
diff changeset
1273 RE_RCI_Subp_Info_Array, -- System.Partition_Interface
kono
parents:
diff changeset
1274 RE_Same_Partition, -- System.Partition_Interface
kono
parents:
diff changeset
1275 RE_Subprogram_Id, -- System.Partition_Interface
kono
parents:
diff changeset
1276 RE_Get_RAS_Info, -- System.Partition_Interface
kono
parents:
diff changeset
1277
kono
parents:
diff changeset
1278 RE_Global_Pool_Object, -- System.Pool_Global
kono
parents:
diff changeset
1279
kono
parents:
diff changeset
1280 RE_Global_Pool_32_Object, -- System.Pool_32_Global
kono
parents:
diff changeset
1281
kono
parents:
diff changeset
1282 RE_Stack_Bounded_Pool, -- System.Pool_Size
kono
parents:
diff changeset
1283
kono
parents:
diff changeset
1284 RE_Do_Apc, -- System.RPC
kono
parents:
diff changeset
1285 RE_Do_Rpc, -- System.RPC
kono
parents:
diff changeset
1286 RE_Params_Stream_Type, -- System.RPC
kono
parents:
diff changeset
1287 RE_Partition_ID, -- System.RPC
kono
parents:
diff changeset
1288
kono
parents:
diff changeset
1289 RE_To_PolyORB_String, -- System.Partition_Interface
kono
parents:
diff changeset
1290 RE_Caseless_String_Eq, -- System.Partition_Interface
kono
parents:
diff changeset
1291 RE_TypeCode, -- System.Partition_Interface
kono
parents:
diff changeset
1292 RE_Any, -- System.Partition_Interface
kono
parents:
diff changeset
1293 RE_Mode_In, -- System.Partition_Interface
kono
parents:
diff changeset
1294 RE_Mode_Out, -- System.Partition_Interface
kono
parents:
diff changeset
1295 RE_Mode_Inout, -- System.Partition_Interface
kono
parents:
diff changeset
1296 RE_NamedValue, -- System.Partition_Interface
kono
parents:
diff changeset
1297 RE_Result_Name, -- System.Partition_Interface
kono
parents:
diff changeset
1298 RE_Object_Ref, -- System.Partition_Interface
kono
parents:
diff changeset
1299 RE_Create_Any, -- System.Partition_Interface
kono
parents:
diff changeset
1300 RE_Any_Aggregate_Build, -- System.Partition_Interface
kono
parents:
diff changeset
1301 RE_Add_Aggregate_Element, -- System.Partition_Interface
kono
parents:
diff changeset
1302 RE_Get_Aggregate_Element, -- System.Partition_Interface
kono
parents:
diff changeset
1303 RE_Content_Type, -- System.Partition_Interface
kono
parents:
diff changeset
1304 RE_Any_Member_Type, -- System.Partition_Interface
kono
parents:
diff changeset
1305 RE_Get_Nested_Sequence_Length, -- System.Partition_Interface
kono
parents:
diff changeset
1306 RE_Get_Any_Type, -- System.Partition_Interface
kono
parents:
diff changeset
1307 RE_Extract_Union_Value, -- System.Partition_Interface
kono
parents:
diff changeset
1308 RE_NVList_Ref, -- System.Partition_Interface
kono
parents:
diff changeset
1309 RE_NVList_Create, -- System.Partition_Interface
kono
parents:
diff changeset
1310 RE_NVList_Add_Item, -- System.Partition_Interface
kono
parents:
diff changeset
1311 RE_Request_Arguments, -- System.Partition_Interface
kono
parents:
diff changeset
1312 RE_Request_Invoke, -- System.Partition_Interface
kono
parents:
diff changeset
1313 RE_Request_Raise_Occurrence, -- System.Partition_Interface
kono
parents:
diff changeset
1314 RE_Request_Set_Out, -- System.Partition_Interface
kono
parents:
diff changeset
1315 RE_Request_Setup, -- System.Partition_Interface
kono
parents:
diff changeset
1316 RE_Nil_Exc_List, -- System.Partition_Interface
kono
parents:
diff changeset
1317 RE_Servant, -- System.Partition_Interface
kono
parents:
diff changeset
1318 RE_Move_Any_Value, -- System.Partition_Interface
kono
parents:
diff changeset
1319 RE_Set_Result, -- System.Partition_Interface
kono
parents:
diff changeset
1320 RE_Register_Obj_Receiving_Stub, -- System.Partition_Interface
kono
parents:
diff changeset
1321 RE_Register_Pkg_Receiving_Stub, -- System.Partition_Interface
kono
parents:
diff changeset
1322 RE_Is_Nil, -- System.Partition_Interface
kono
parents:
diff changeset
1323 RE_Entity_Ptr, -- System.Partition_Interface
kono
parents:
diff changeset
1324 RE_Entity_Of, -- System.Partition_Interface
kono
parents:
diff changeset
1325 RE_Inc_Usage, -- System.Partition_Interface
kono
parents:
diff changeset
1326 RE_Set_Ref, -- System.Partition_Interface
kono
parents:
diff changeset
1327 RE_Make_Ref, -- System.Partition_Interface
kono
parents:
diff changeset
1328 RE_Get_Local_Address, -- System.Partition_Interface
kono
parents:
diff changeset
1329 RE_Get_Reference, -- System.Partition_Interface
kono
parents:
diff changeset
1330 RE_Asynchronous_P_To_Sync_Scope, -- System.Partition_Interface
kono
parents:
diff changeset
1331 RE_Buffer_Stream_Type, -- System.Partition_Interface
kono
parents:
diff changeset
1332 RE_Release_Buffer, -- System.Partition_Interface
kono
parents:
diff changeset
1333 RE_BS_To_Any, -- System.Partition_Interface
kono
parents:
diff changeset
1334 RE_Any_To_BS, -- System.Partition_Interface
kono
parents:
diff changeset
1335 RE_Build_Complex_TC, -- System.Partition_Interface
kono
parents:
diff changeset
1336 RE_Get_TC, -- System.Partition_Interface
kono
parents:
diff changeset
1337 RE_Set_TC, -- System.Partition_Interface
kono
parents:
diff changeset
1338
kono
parents:
diff changeset
1339 RE_FA_A, -- System.Partition_Interface
kono
parents:
diff changeset
1340 RE_FA_B, -- System.Partition_Interface
kono
parents:
diff changeset
1341 RE_FA_C, -- System.Partition_Interface
kono
parents:
diff changeset
1342 RE_FA_F, -- System.Partition_Interface
kono
parents:
diff changeset
1343 RE_FA_I8, -- System.Partition_Interface
kono
parents:
diff changeset
1344 RE_FA_I16, -- System.Partition_Interface
kono
parents:
diff changeset
1345 RE_FA_I32, -- System.Partition_Interface
kono
parents:
diff changeset
1346 RE_FA_I64, -- System.Partition_Interface
kono
parents:
diff changeset
1347 RE_FA_LF, -- System.Partition_Interface
kono
parents:
diff changeset
1348 RE_FA_LLF, -- System.Partition_Interface
kono
parents:
diff changeset
1349 RE_FA_SF, -- System.Partition_Interface
kono
parents:
diff changeset
1350 RE_FA_U8, -- System.Partition_Interface
kono
parents:
diff changeset
1351 RE_FA_U16, -- System.Partition_Interface
kono
parents:
diff changeset
1352 RE_FA_U32, -- System.Partition_Interface
kono
parents:
diff changeset
1353 RE_FA_U64, -- System.Partition_Interface
kono
parents:
diff changeset
1354 RE_FA_WC, -- System.Partition_Interface
kono
parents:
diff changeset
1355 RE_FA_WWC, -- System.Partition_Interface
kono
parents:
diff changeset
1356 RE_FA_String, -- System.Partition_Interface
kono
parents:
diff changeset
1357 RE_FA_ObjRef, -- System.Partition_Interface
kono
parents:
diff changeset
1358
kono
parents:
diff changeset
1359 RE_TA_A, -- System.Partition_Interface
kono
parents:
diff changeset
1360 RE_TA_B, -- System.Partition_Interface
kono
parents:
diff changeset
1361 RE_TA_C, -- System.Partition_Interface
kono
parents:
diff changeset
1362 RE_TA_F, -- System.Partition_Interface
kono
parents:
diff changeset
1363 RE_TA_I8, -- System.Partition_Interface
kono
parents:
diff changeset
1364 RE_TA_I16, -- System.Partition_Interface
kono
parents:
diff changeset
1365 RE_TA_I32, -- System.Partition_Interface
kono
parents:
diff changeset
1366 RE_TA_I64, -- System.Partition_Interface
kono
parents:
diff changeset
1367 RE_TA_LF, -- System.Partition_Interface
kono
parents:
diff changeset
1368 RE_TA_LLF, -- System.Partition_Interface
kono
parents:
diff changeset
1369 RE_TA_SF, -- System.Partition_Interface
kono
parents:
diff changeset
1370 RE_TA_U8, -- System.Partition_Interface
kono
parents:
diff changeset
1371 RE_TA_U16, -- System.Partition_Interface
kono
parents:
diff changeset
1372 RE_TA_U32, -- System.Partition_Interface
kono
parents:
diff changeset
1373 RE_TA_U64, -- System.Partition_Interface
kono
parents:
diff changeset
1374 RE_TA_WC, -- System.Partition_Interface
kono
parents:
diff changeset
1375 RE_TA_WWC, -- System.Partition_Interface
kono
parents:
diff changeset
1376 RE_TA_String, -- System.Partition_Interface
kono
parents:
diff changeset
1377 RE_TA_ObjRef, -- System.Partition_Interface
kono
parents:
diff changeset
1378 RE_TA_Std_String, -- System.Partition_Interface
kono
parents:
diff changeset
1379 RE_TA_TC, -- System.Partition_Interface
kono
parents:
diff changeset
1380
kono
parents:
diff changeset
1381 RE_TC_A, -- System.Partition_Interface
kono
parents:
diff changeset
1382 RE_TC_B, -- System.Partition_Interface
kono
parents:
diff changeset
1383 RE_TC_C, -- System.Partition_Interface
kono
parents:
diff changeset
1384 RE_TC_F, -- System.Partition_Interface
kono
parents:
diff changeset
1385 RE_TC_I8, -- System.Partition_Interface
kono
parents:
diff changeset
1386 RE_TC_I16, -- System.Partition_Interface
kono
parents:
diff changeset
1387 RE_TC_I32, -- System.Partition_Interface
kono
parents:
diff changeset
1388 RE_TC_I64, -- System.Partition_Interface
kono
parents:
diff changeset
1389 RE_TC_LF, -- System.Partition_Interface
kono
parents:
diff changeset
1390 RE_TC_LLF, -- System.Partition_Interface
kono
parents:
diff changeset
1391 RE_TC_SF, -- System.Partition_Interface
kono
parents:
diff changeset
1392 RE_TC_U8, -- System.Partition_Interface
kono
parents:
diff changeset
1393 RE_TC_U16, -- System.Partition_Interface
kono
parents:
diff changeset
1394 RE_TC_U32, -- System.Partition_Interface
kono
parents:
diff changeset
1395 RE_TC_U64, -- System.Partition_Interface
kono
parents:
diff changeset
1396 RE_TC_Void, -- System.Partition_Interface
kono
parents:
diff changeset
1397 RE_TC_Opaque, -- System.Partition_Interface
kono
parents:
diff changeset
1398 RE_TC_WC, -- System.Partition_Interface
kono
parents:
diff changeset
1399 RE_TC_WWC, -- System.Partition_Interface
kono
parents:
diff changeset
1400 RE_TC_String, -- System.Partition_Interface
kono
parents:
diff changeset
1401
kono
parents:
diff changeset
1402 RE_Tk_Alias, -- System.Partition_Interface
kono
parents:
diff changeset
1403 RE_Tk_Array, -- System.Partition_Interface
kono
parents:
diff changeset
1404 RE_Tk_Sequence, -- System.Partition_Interface
kono
parents:
diff changeset
1405 RE_Tk_Struct, -- System.Partition_Interface
kono
parents:
diff changeset
1406 RE_Tk_Objref, -- System.Partition_Interface
kono
parents:
diff changeset
1407 RE_Tk_Union, -- System.Partition_Interface
kono
parents:
diff changeset
1408
kono
parents:
diff changeset
1409 RO_RD_Delay_For, -- System.Relative_Delays
kono
parents:
diff changeset
1410
kono
parents:
diff changeset
1411 RE_IS_Is1, -- System.Scalar_Values
kono
parents:
diff changeset
1412 RE_IS_Is2, -- System.Scalar_Values
kono
parents:
diff changeset
1413 RE_IS_Is4, -- System.Scalar_Values
kono
parents:
diff changeset
1414 RE_IS_Is8, -- System.Scalar_Values
kono
parents:
diff changeset
1415 RE_IS_Iu1, -- System.Scalar_Values
kono
parents:
diff changeset
1416 RE_IS_Iu2, -- System.Scalar_Values
kono
parents:
diff changeset
1417 RE_IS_Iu4, -- System.Scalar_Values
kono
parents:
diff changeset
1418 RE_IS_Iu8, -- System.Scalar_Values
kono
parents:
diff changeset
1419 RE_IS_Iz1, -- System.Scalar_Values
kono
parents:
diff changeset
1420 RE_IS_Iz2, -- System.Scalar_Values
kono
parents:
diff changeset
1421 RE_IS_Iz4, -- System.Scalar_Values
kono
parents:
diff changeset
1422 RE_IS_Iz8, -- System.Scalar_Values
kono
parents:
diff changeset
1423 RE_IS_Isf, -- System.Scalar_Values
kono
parents:
diff changeset
1424 RE_IS_Ifl, -- System.Scalar_Values
kono
parents:
diff changeset
1425 RE_IS_Ilf, -- System.Scalar_Values
kono
parents:
diff changeset
1426 RE_IS_Ill, -- System.Scalar_Values
kono
parents:
diff changeset
1427
kono
parents:
diff changeset
1428 RE_Mark_Id, -- System.Secondary_Stack
kono
parents:
diff changeset
1429 RE_SS_Allocate, -- System.Secondary_Stack
kono
parents:
diff changeset
1430 RE_SS_Pool, -- System.Secondary_Stack
kono
parents:
diff changeset
1431 RE_SS_Mark, -- System.Secondary_Stack
kono
parents:
diff changeset
1432 RE_SS_Release, -- System.Secondary_Stack
kono
parents:
diff changeset
1433 RE_SS_Stack, -- System.Secondary_Stack
kono
parents:
diff changeset
1434
kono
parents:
diff changeset
1435 RE_Shared_Var_Lock, -- System.Shared_Storage
kono
parents:
diff changeset
1436 RE_Shared_Var_Unlock, -- System.Shared_Storage
kono
parents:
diff changeset
1437 RE_Shared_Var_Procs, -- System.Shared_Storage
kono
parents:
diff changeset
1438
kono
parents:
diff changeset
1439 RE_Abort_Undefer_Direct, -- System.Standard_Library
kono
parents:
diff changeset
1440 RE_Exception_Data_Ptr, -- System.Standard_Library
kono
parents:
diff changeset
1441
kono
parents:
diff changeset
1442 RE_Integer_Address, -- System.Storage_Elements
kono
parents:
diff changeset
1443 RE_Storage_Array, -- System.Storage_Elements
kono
parents:
diff changeset
1444 RE_Storage_Count, -- System.Storage_Elements
kono
parents:
diff changeset
1445 RE_Storage_Offset, -- System.Storage_Elements
kono
parents:
diff changeset
1446 RE_To_Address, -- System.Storage_Elements
kono
parents:
diff changeset
1447
kono
parents:
diff changeset
1448 RE_Allocate_Any, -- System.Storage_Pools
kono
parents:
diff changeset
1449 RE_Deallocate_Any, -- System.Storage_Pools
kono
parents:
diff changeset
1450 RE_Root_Storage_Pool, -- System.Storage_Pools
kono
parents:
diff changeset
1451 RE_Root_Storage_Pool_Ptr, -- System.Storage_Pools
kono
parents:
diff changeset
1452
kono
parents:
diff changeset
1453 RE_Adjust_Controlled_Dereference, -- System.Storage_Pools.Subpools
kono
parents:
diff changeset
1454 RE_Allocate_Any_Controlled, -- System.Storage_Pools.Subpools
kono
parents:
diff changeset
1455 RE_Deallocate_Any_Controlled, -- System.Storage_Pools.Subpools
kono
parents:
diff changeset
1456 RE_Header_Size_With_Padding, -- System.Storage_Pools.Subpools
kono
parents:
diff changeset
1457 RE_Root_Storage_Pool_With_Subpools, -- System.Storage_Pools.Subpools
kono
parents:
diff changeset
1458 RE_Root_Subpool, -- System.Storage_Pools.Subpools
kono
parents:
diff changeset
1459 RE_Subpool_Handle, -- System.Storage_Pools.Subpools
kono
parents:
diff changeset
1460
kono
parents:
diff changeset
1461 RE_I_AD, -- System.Stream_Attributes
kono
parents:
diff changeset
1462 RE_I_AS, -- System.Stream_Attributes
kono
parents:
diff changeset
1463 RE_I_B, -- System.Stream_Attributes
kono
parents:
diff changeset
1464 RE_I_C, -- System.Stream_Attributes
kono
parents:
diff changeset
1465 RE_I_F, -- System.Stream_Attributes
kono
parents:
diff changeset
1466 RE_I_I, -- System.Stream_Attributes
kono
parents:
diff changeset
1467 RE_I_LF, -- System.Stream_Attributes
kono
parents:
diff changeset
1468 RE_I_LI, -- System.Stream_Attributes
kono
parents:
diff changeset
1469 RE_I_LLF, -- System.Stream_Attributes
kono
parents:
diff changeset
1470 RE_I_LLI, -- System.Stream_Attributes
kono
parents:
diff changeset
1471 RE_I_LLU, -- System.Stream_Attributes
kono
parents:
diff changeset
1472 RE_I_LU, -- System.Stream_Attributes
kono
parents:
diff changeset
1473 RE_I_SF, -- System.Stream_Attributes
kono
parents:
diff changeset
1474 RE_I_SI, -- System.Stream_Attributes
kono
parents:
diff changeset
1475 RE_I_SSI, -- System.Stream_Attributes
kono
parents:
diff changeset
1476 RE_I_SSU, -- System.Stream_Attributes
kono
parents:
diff changeset
1477 RE_I_SU, -- System.Stream_Attributes
kono
parents:
diff changeset
1478 RE_I_U, -- System.Stream_Attributes
kono
parents:
diff changeset
1479 RE_I_WC, -- System.Stream_Attributes
kono
parents:
diff changeset
1480 RE_I_WWC, -- System.Stream_Attributes
kono
parents:
diff changeset
1481
kono
parents:
diff changeset
1482 RE_W_AD, -- System.Stream_Attributes
kono
parents:
diff changeset
1483 RE_W_AS, -- System.Stream_Attributes
kono
parents:
diff changeset
1484 RE_W_B, -- System.Stream_Attributes
kono
parents:
diff changeset
1485 RE_W_C, -- System.Stream_Attributes
kono
parents:
diff changeset
1486 RE_W_F, -- System.Stream_Attributes
kono
parents:
diff changeset
1487 RE_W_I, -- System.Stream_Attributes
kono
parents:
diff changeset
1488 RE_W_LF, -- System.Stream_Attributes
kono
parents:
diff changeset
1489 RE_W_LI, -- System.Stream_Attributes
kono
parents:
diff changeset
1490 RE_W_LLF, -- System.Stream_Attributes
kono
parents:
diff changeset
1491 RE_W_LLI, -- System.Stream_Attributes
kono
parents:
diff changeset
1492 RE_W_LLU, -- System.Stream_Attributes
kono
parents:
diff changeset
1493 RE_W_LU, -- System.Stream_Attributes
kono
parents:
diff changeset
1494 RE_W_SF, -- System.Stream_Attributes
kono
parents:
diff changeset
1495 RE_W_SI, -- System.Stream_Attributes
kono
parents:
diff changeset
1496 RE_W_SSI, -- System.Stream_Attributes
kono
parents:
diff changeset
1497 RE_W_SSU, -- System.Stream_Attributes
kono
parents:
diff changeset
1498 RE_W_SU, -- System.Stream_Attributes
kono
parents:
diff changeset
1499 RE_W_U, -- System.Stream_Attributes
kono
parents:
diff changeset
1500 RE_W_WC, -- System.Stream_Attributes
kono
parents:
diff changeset
1501 RE_W_WWC, -- System.Stream_Attributes
kono
parents:
diff changeset
1502
kono
parents:
diff changeset
1503 RE_Storage_Array_Input, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1504 RE_Storage_Array_Input_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1505 RE_Storage_Array_Output, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1506 RE_Storage_Array_Output_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1507 RE_Storage_Array_Read, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1508 RE_Storage_Array_Read_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1509 RE_Storage_Array_Write, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1510 RE_Storage_Array_Write_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1511
kono
parents:
diff changeset
1512 RE_Stream_Element_Array_Input, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1513 RE_Stream_Element_Array_Input_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1514 RE_Stream_Element_Array_Output, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1515 RE_Stream_Element_Array_Output_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1516 RE_Stream_Element_Array_Read, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1517 RE_Stream_Element_Array_Read_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1518 RE_Stream_Element_Array_Write, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1519 RE_Stream_Element_Array_Write_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1520
kono
parents:
diff changeset
1521 RE_String_Input, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1522 RE_String_Input_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1523 RE_String_Input_Tag, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1524 RE_String_Output, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1525 RE_String_Output_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1526 RE_String_Read, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1527 RE_String_Read_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1528 RE_String_Write, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1529 RE_String_Write_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1530
kono
parents:
diff changeset
1531 RE_Wide_String_Input, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1532 RE_Wide_String_Input_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1533 RE_Wide_String_Output, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1534 RE_Wide_String_Output_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1535 RE_Wide_String_Read, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1536 RE_Wide_String_Read_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1537 RE_Wide_String_Write, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1538 RE_Wide_String_Write_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1539
kono
parents:
diff changeset
1540 RE_Wide_Wide_String_Input, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1541 RE_Wide_Wide_String_Input_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1542 RE_Wide_Wide_String_Output, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1543 RE_Wide_Wide_String_Output_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1544 RE_Wide_Wide_String_Read, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1545 RE_Wide_Wide_String_Read_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1546 RE_Wide_Wide_String_Write, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1547 RE_Wide_Wide_String_Write_Blk_IO, -- System.Strings.Stream_Ops
kono
parents:
diff changeset
1548
kono
parents:
diff changeset
1549 RE_Task_Info_Type, -- System.Task_Info
kono
parents:
diff changeset
1550 RE_Unspecified_Task_Info, -- System.Task_Info
kono
parents:
diff changeset
1551
kono
parents:
diff changeset
1552 RE_Task_Procedure_Access, -- System.Tasking
kono
parents:
diff changeset
1553 RO_ST_Number_Of_Entries, -- System.Tasking
kono
parents:
diff changeset
1554
kono
parents:
diff changeset
1555 RO_ST_Task_Id, -- System.Tasking
kono
parents:
diff changeset
1556 RO_ST_Null_Task, -- System.Tasking
kono
parents:
diff changeset
1557
kono
parents:
diff changeset
1558 RE_Call_Modes, -- System.Tasking
kono
parents:
diff changeset
1559 RE_Simple_Call, -- System.Tasking
kono
parents:
diff changeset
1560 RE_Conditional_Call, -- System.Tasking
kono
parents:
diff changeset
1561 RE_Asynchronous_Call, -- System.Tasking
kono
parents:
diff changeset
1562
kono
parents:
diff changeset
1563 RE_Foreign_Task_Level, -- System.Tasking
kono
parents:
diff changeset
1564 RE_Environment_Task_Level, -- System.Tasking
kono
parents:
diff changeset
1565 RE_Independent_Task_Level, -- System.Tasking
kono
parents:
diff changeset
1566 RE_Library_Task_Level, -- System.Tasking
kono
parents:
diff changeset
1567
kono
parents:
diff changeset
1568 RE_Ada_Task_Control_Block, -- System.Tasking
kono
parents:
diff changeset
1569
kono
parents:
diff changeset
1570 RE_Task_List, -- System.Tasking
kono
parents:
diff changeset
1571
kono
parents:
diff changeset
1572 RE_Accept_List, -- System.Tasking
kono
parents:
diff changeset
1573 RE_No_Rendezvous, -- System.Tasking
kono
parents:
diff changeset
1574 RE_Null_Task_Entry, -- System.Tasking
kono
parents:
diff changeset
1575 RE_Select_Index, -- System.Tasking
kono
parents:
diff changeset
1576 RE_Else_Mode, -- System.Tasking
kono
parents:
diff changeset
1577 RE_Simple_Mode, -- System.Tasking
kono
parents:
diff changeset
1578 RE_Terminate_Mode, -- System.Tasking
kono
parents:
diff changeset
1579 RE_Delay_Mode, -- System.Tasking
kono
parents:
diff changeset
1580 RE_Entry_Index, -- System.Tasking
kono
parents:
diff changeset
1581 RE_Task_Entry_Index, -- System.Tasking
kono
parents:
diff changeset
1582 RE_Self, -- System.Tasking
kono
parents:
diff changeset
1583
kono
parents:
diff changeset
1584 RE_Master_Id, -- System.Tasking
kono
parents:
diff changeset
1585 RE_Unspecified_Priority, -- System.Tasking
kono
parents:
diff changeset
1586
kono
parents:
diff changeset
1587 RE_Activation_Chain, -- System.Tasking
kono
parents:
diff changeset
1588 RE_Activation_Chain_Access, -- System.Tasking
kono
parents:
diff changeset
1589 RE_Storage_Size, -- System.Tasking
kono
parents:
diff changeset
1590
kono
parents:
diff changeset
1591 RE_Unspecified_CPU, -- System.Tasking
kono
parents:
diff changeset
1592
kono
parents:
diff changeset
1593 RE_Dispatching_Domain_Access, -- System.Tasking
kono
parents:
diff changeset
1594
kono
parents:
diff changeset
1595 RE_Abort_Defer, -- System.Soft_Links
kono
parents:
diff changeset
1596 RE_Abort_Undefer, -- System.Soft_Links
kono
parents:
diff changeset
1597 RE_Complete_Master, -- System.Soft_Links
kono
parents:
diff changeset
1598 RE_Current_Master, -- System.Soft_Links
kono
parents:
diff changeset
1599 RE_Dummy_Communication_Block, -- System.Soft_Links
kono
parents:
diff changeset
1600 RE_Enter_Master, -- System.Soft_Links
kono
parents:
diff changeset
1601 RE_Get_Current_Excep, -- System.Soft_Links
kono
parents:
diff changeset
1602 RE_Get_GNAT_Exception, -- System.Soft_Links
kono
parents:
diff changeset
1603 RE_Save_Library_Occurrence, -- System.Soft_Links
kono
parents:
diff changeset
1604
kono
parents:
diff changeset
1605 RE_Bits_1, -- System.Unsigned_Types
kono
parents:
diff changeset
1606 RE_Bits_2, -- System.Unsigned_Types
kono
parents:
diff changeset
1607 RE_Bits_4, -- System.Unsigned_Types
kono
parents:
diff changeset
1608 RE_Float_Unsigned, -- System.Unsigned_Types
kono
parents:
diff changeset
1609 RE_Long_Unsigned, -- System.Unsigned_Types
kono
parents:
diff changeset
1610 RE_Long_Long_Unsigned, -- System.Unsigned_Types
kono
parents:
diff changeset
1611 RE_Packed_Byte, -- System.Unsigned_Types
kono
parents:
diff changeset
1612 RE_Packed_Bytes1, -- System.Unsigned_Types
kono
parents:
diff changeset
1613 RE_Packed_Bytes2, -- System.Unsigned_Types
kono
parents:
diff changeset
1614 RE_Packed_Bytes4, -- System.Unsigned_Types
kono
parents:
diff changeset
1615 RE_Short_Unsigned, -- System.Unsigned_Types
kono
parents:
diff changeset
1616 RE_Short_Short_Unsigned, -- System.Unsigned_Types
kono
parents:
diff changeset
1617 RE_Unsigned, -- System.Unsigned_Types
kono
parents:
diff changeset
1618
kono
parents:
diff changeset
1619 RE_Value_Boolean, -- System.Val_Bool
kono
parents:
diff changeset
1620
kono
parents:
diff changeset
1621 RE_Value_Character, -- System.Val_Char
kono
parents:
diff changeset
1622
kono
parents:
diff changeset
1623 RE_Value_Decimal, -- System.Val_Dec
kono
parents:
diff changeset
1624
kono
parents:
diff changeset
1625 RE_Value_Enumeration_8, -- System.Val_Enum
kono
parents:
diff changeset
1626 RE_Value_Enumeration_16, -- System.Val_Enum
kono
parents:
diff changeset
1627 RE_Value_Enumeration_32, -- System.Val_Enum
kono
parents:
diff changeset
1628
kono
parents:
diff changeset
1629 RE_Value_Integer, -- System.Val_Int
kono
parents:
diff changeset
1630
kono
parents:
diff changeset
1631 RE_Value_Long_Long_Decimal, -- System.Val_LLD
kono
parents:
diff changeset
1632
kono
parents:
diff changeset
1633 RE_Value_Long_Long_Integer, -- System.Val_LLI
kono
parents:
diff changeset
1634
kono
parents:
diff changeset
1635 RE_Value_Long_Long_Unsigned, -- System.Val_LLU
kono
parents:
diff changeset
1636
kono
parents:
diff changeset
1637 RE_Value_Real, -- System.Val_Real
kono
parents:
diff changeset
1638
kono
parents:
diff changeset
1639 RE_Value_Unsigned, -- System.Val_Uns
kono
parents:
diff changeset
1640
kono
parents:
diff changeset
1641 RE_Value_Wide_Character, -- System.Val_WChar
kono
parents:
diff changeset
1642 RE_Value_Wide_Wide_Character, -- System.Val_WChar
kono
parents:
diff changeset
1643
kono
parents:
diff changeset
1644 RE_Version_String, -- System.Version_Control
kono
parents:
diff changeset
1645 RE_Get_Version_String, -- System.Version_Control
kono
parents:
diff changeset
1646
kono
parents:
diff changeset
1647 RE_String_To_Wide_String, -- System.WCh_StW
kono
parents:
diff changeset
1648 RE_String_To_Wide_Wide_String, -- System.WCh_StW
kono
parents:
diff changeset
1649
kono
parents:
diff changeset
1650 RE_Wide_String_To_String, -- System.WCh_WtS
kono
parents:
diff changeset
1651 RE_Wide_Wide_String_To_String, -- System.WCh_WtS
kono
parents:
diff changeset
1652
kono
parents:
diff changeset
1653 RE_Wide_Width_Character, -- System.WWd_Char
kono
parents:
diff changeset
1654 RE_Wide_Wide_Width_Character, -- System.WWd_Char
kono
parents:
diff changeset
1655
kono
parents:
diff changeset
1656 RE_Wide_Wide_Width_Enumeration_8, -- System.WWd_Enum
kono
parents:
diff changeset
1657 RE_Wide_Wide_Width_Enumeration_16, -- System.WWd_Enum
kono
parents:
diff changeset
1658 RE_Wide_Wide_Width_Enumeration_32, -- System.WWd_Enum
kono
parents:
diff changeset
1659
kono
parents:
diff changeset
1660 RE_Wide_Width_Enumeration_8, -- System.WWd_Enum
kono
parents:
diff changeset
1661 RE_Wide_Width_Enumeration_16, -- System.WWd_Enum
kono
parents:
diff changeset
1662 RE_Wide_Width_Enumeration_32, -- System.WWd_Enum
kono
parents:
diff changeset
1663
kono
parents:
diff changeset
1664 RE_Wide_Wide_Width_Wide_Character, -- System.WWd_Wchar
kono
parents:
diff changeset
1665 RE_Wide_Wide_Width_Wide_Wide_Char, -- System.WWd_Wchar
kono
parents:
diff changeset
1666 RE_Wide_Width_Wide_Character, -- System.WWd_Wchar
kono
parents:
diff changeset
1667 RE_Wide_Width_Wide_Wide_Character, -- System.WWd_Wchar
kono
parents:
diff changeset
1668
kono
parents:
diff changeset
1669 RE_Width_Boolean, -- System.Wid_Bool
kono
parents:
diff changeset
1670
kono
parents:
diff changeset
1671 RE_Width_Character, -- System.Wid_Char
kono
parents:
diff changeset
1672
kono
parents:
diff changeset
1673 RE_Width_Enumeration_8, -- System.Wid_Enum
kono
parents:
diff changeset
1674 RE_Width_Enumeration_16, -- System.Wid_Enum
kono
parents:
diff changeset
1675 RE_Width_Enumeration_32, -- System.Wid_Enum
kono
parents:
diff changeset
1676
kono
parents:
diff changeset
1677 RE_Width_Long_Long_Integer, -- System.Wid_LLI
kono
parents:
diff changeset
1678
kono
parents:
diff changeset
1679 RE_Width_Long_Long_Unsigned, -- System.Wid_LLU
kono
parents:
diff changeset
1680
kono
parents:
diff changeset
1681 RE_Width_Wide_Character, -- System.Wid_WChar
kono
parents:
diff changeset
1682 RE_Width_Wide_Wide_Character, -- System.Wid_WChar
kono
parents:
diff changeset
1683
kono
parents:
diff changeset
1684 RE_Dispatching_Domain, -- Multiprocessors.Dispatching_Domains
kono
parents:
diff changeset
1685
kono
parents:
diff changeset
1686 RE_Protected_Entry_Body_Array, -- Tasking.Protected_Objects.Entries
kono
parents:
diff changeset
1687 RE_Protected_Entry_Queue_Max_Array, -- Tasking.Protected_Objects.Entries
kono
parents:
diff changeset
1688 RE_Protection_Entries, -- Tasking.Protected_Objects.Entries
kono
parents:
diff changeset
1689 RE_Protection_Entries_Access, -- Tasking.Protected_Objects.Entries
kono
parents:
diff changeset
1690 RE_Initialize_Protection_Entries, -- Tasking.Protected_Objects.Entries
kono
parents:
diff changeset
1691 RE_Lock_Entries, -- Tasking.Protected_Objects.Entries
kono
parents:
diff changeset
1692 RE_Unlock_Entries, -- Tasking.Protected_Objects.Entries
kono
parents:
diff changeset
1693 RO_PE_Get_Ceiling, -- Tasking.Protected_Objects.Entries
kono
parents:
diff changeset
1694 RO_PE_Number_Of_Entries, -- Tasking.Protected_Objects.Entries
kono
parents:
diff changeset
1695 RO_PE_Set_Ceiling, -- Tasking.Protected_Objects.Entries
kono
parents:
diff changeset
1696
kono
parents:
diff changeset
1697 RE_Communication_Block, -- Protected_Objects.Operations
kono
parents:
diff changeset
1698 RE_Protected_Entry_Call, -- Protected_Objects.Operations
kono
parents:
diff changeset
1699 RE_Service_Entries, -- Protected_Objects.Operations
kono
parents:
diff changeset
1700 RE_Cancel_Protected_Entry_Call, -- Protected_Objects.Operations
kono
parents:
diff changeset
1701 RE_Enqueued, -- Protected_Objects.Operations
kono
parents:
diff changeset
1702 RE_Cancelled, -- Protected_Objects.Operations
kono
parents:
diff changeset
1703 RE_Complete_Entry_Body, -- Protected_Objects.Operations
kono
parents:
diff changeset
1704 RE_Exceptional_Complete_Entry_Body, -- Protected_Objects.Operations
kono
parents:
diff changeset
1705 RE_Requeue_Protected_Entry, -- Protected_Objects.Operations
kono
parents:
diff changeset
1706 RE_Requeue_Task_To_Protected_Entry, -- Protected_Objects.Operations
kono
parents:
diff changeset
1707 RE_Protected_Count, -- Protected_Objects.Operations
kono
parents:
diff changeset
1708 RE_Protected_Entry_Caller, -- Protected_Objects.Operations
kono
parents:
diff changeset
1709 RE_Timed_Protected_Entry_Call, -- Protected_Objects.Operations
kono
parents:
diff changeset
1710
kono
parents:
diff changeset
1711 RE_Protection_Entry, -- Protected_Objects.Single_Entry
kono
parents:
diff changeset
1712 RE_Initialize_Protection_Entry, -- Protected_Objects.Single_Entry
kono
parents:
diff changeset
1713 RE_Lock_Entry, -- Protected_Objects.Single_Entry
kono
parents:
diff changeset
1714 RE_Unlock_Entry, -- Protected_Objects.Single_Entry
kono
parents:
diff changeset
1715 RE_Protected_Single_Entry_Call, -- Protected_Objects.Single_Entry
kono
parents:
diff changeset
1716 RE_Service_Entry, -- Protected_Objects.Single_Entry
kono
parents:
diff changeset
1717 RE_Exceptional_Complete_Single_Entry_Body,
kono
parents:
diff changeset
1718 RE_Protected_Count_Entry, -- Protected_Objects.Single_Entry
kono
parents:
diff changeset
1719 RE_Protected_Single_Entry_Caller, -- Protected_Objects.Single_Entry
kono
parents:
diff changeset
1720
kono
parents:
diff changeset
1721 RE_Protected_Entry_Index, -- System.Tasking.Protected_Objects
kono
parents:
diff changeset
1722 RE_Entry_Body, -- System.Tasking.Protected_Objects
kono
parents:
diff changeset
1723 RE_Protection, -- System.Tasking.Protected_Objects
kono
parents:
diff changeset
1724 RE_Initialize_Protection, -- System.Tasking.Protected_Objects
kono
parents:
diff changeset
1725 RE_Finalize_Protection, -- System.Tasking.Protected_Objects
kono
parents:
diff changeset
1726 RE_Lock, -- System.Tasking.Protected_Objects
kono
parents:
diff changeset
1727 RE_Lock_Read_Only, -- System.Tasking.Protected_Objects
kono
parents:
diff changeset
1728 RE_Get_Ceiling, -- System.Tasking.Protected_Objects
kono
parents:
diff changeset
1729 RE_Set_Ceiling, -- System.Tasking.Protected_Objects
kono
parents:
diff changeset
1730 RE_Unlock, -- System.Tasking.Protected_Objects
kono
parents:
diff changeset
1731
kono
parents:
diff changeset
1732 RE_Delay_Block, -- System.Tasking.Async_Delays
kono
parents:
diff changeset
1733 RE_Timed_Out, -- System.Tasking.Async_Delays
kono
parents:
diff changeset
1734 RE_Cancel_Async_Delay, -- System.Tasking.Async_Delays
kono
parents:
diff changeset
1735 RE_Enqueue_Duration, -- System.Tasking.Async_Delays
kono
parents:
diff changeset
1736 RE_Enqueue_Calendar, -- System.Tasking.Async_Delays
kono
parents:
diff changeset
1737 RE_Enqueue_RT, -- System.Tasking.Async_Delays
kono
parents:
diff changeset
1738
kono
parents:
diff changeset
1739 RE_Accept_Call, -- System.Tasking.Rendezvous
kono
parents:
diff changeset
1740 RE_Accept_Trivial, -- System.Tasking.Rendezvous
kono
parents:
diff changeset
1741 RE_Callable, -- System.Tasking.Rendezvous
kono
parents:
diff changeset
1742 RE_Call_Simple, -- System.Tasking.Rendezvous
kono
parents:
diff changeset
1743 RE_Requeue_Task_Entry, -- System.Tasking.Rendezvous
kono
parents:
diff changeset
1744 RE_Requeue_Protected_To_Task_Entry, -- System.Tasking.Rendezvous
kono
parents:
diff changeset
1745 RE_Cancel_Task_Entry_Call, -- System.Tasking.Rendezvous
kono
parents:
diff changeset
1746 RE_Complete_Rendezvous, -- System.Tasking.Rendezvous
kono
parents:
diff changeset
1747 RE_Task_Count, -- System.Tasking.Rendezvous
kono
parents:
diff changeset
1748 RE_Exceptional_Complete_Rendezvous, -- System.Tasking.Rendezvous
kono
parents:
diff changeset
1749 RE_Selective_Wait, -- System.Tasking.Rendezvous
kono
parents:
diff changeset
1750 RE_Task_Entry_Call, -- System.Tasking.Rendezvous
kono
parents:
diff changeset
1751 RE_Task_Entry_Caller, -- System.Tasking.Rendezvous
kono
parents:
diff changeset
1752 RE_Timed_Task_Entry_Call, -- System.Tasking.Rendezvous
kono
parents:
diff changeset
1753 RE_Timed_Selective_Wait, -- System.Tasking.Rendezvous
kono
parents:
diff changeset
1754
kono
parents:
diff changeset
1755 RE_Activate_Restricted_Tasks, -- System.Tasking.Restricted.Stages
kono
parents:
diff changeset
1756 RE_Complete_Restricted_Activation, -- System.Tasking.Restricted.Stages
kono
parents:
diff changeset
1757 RE_Create_Restricted_Task, -- System.Tasking.Restricted.Stages
kono
parents:
diff changeset
1758 RE_Create_Restricted_Task_Sequential, -- System.Tasking.Restricted.Stages
kono
parents:
diff changeset
1759 RE_Complete_Restricted_Task, -- System.Tasking.Restricted.Stages
kono
parents:
diff changeset
1760 RE_Restricted_Terminated, -- System.Tasking.Restricted.Stages
kono
parents:
diff changeset
1761
kono
parents:
diff changeset
1762 RE_Abort_Tasks, -- System.Tasking.Stages
kono
parents:
diff changeset
1763 RE_Activate_Tasks, -- System.Tasking.Stages
kono
parents:
diff changeset
1764 RE_Complete_Activation, -- System.Tasking.Stages
kono
parents:
diff changeset
1765 RE_Create_Task, -- System.Tasking.Stages
kono
parents:
diff changeset
1766 RE_Complete_Task, -- System.Tasking.Stages
kono
parents:
diff changeset
1767 RE_Free_Task, -- System.Tasking.Stages
kono
parents:
diff changeset
1768 RE_Expunge_Unactivated_Tasks, -- System.Tasking.Stages
kono
parents:
diff changeset
1769 RE_Move_Activation_Chain, -- System.Tasking_Stages
kono
parents:
diff changeset
1770 RE_Terminated); -- System.Tasking.Stages
kono
parents:
diff changeset
1771
kono
parents:
diff changeset
1772 -- The following declarations build a table that is indexed by the RTE
kono
parents:
diff changeset
1773 -- function to determine the unit containing the given entity. This table
kono
parents:
diff changeset
1774 -- is sorted in order of package names.
kono
parents:
diff changeset
1775
kono
parents:
diff changeset
1776 RE_Unit_Table : constant array (RE_Id) of RTU_Id := (
kono
parents:
diff changeset
1777
kono
parents:
diff changeset
1778 RE_Null => RTU_Null,
kono
parents:
diff changeset
1779
kono
parents:
diff changeset
1780 RO_CA_Time => Ada_Calendar,
kono
parents:
diff changeset
1781
kono
parents:
diff changeset
1782 RO_CA_Delay_For => Ada_Calendar_Delays,
kono
parents:
diff changeset
1783 RO_CA_Delay_Until => Ada_Calendar_Delays,
kono
parents:
diff changeset
1784 RO_CA_To_Duration => Ada_Calendar_Delays,
kono
parents:
diff changeset
1785
kono
parents:
diff changeset
1786 RE_Set_Deadline => Ada_Dispatching_EDF,
kono
parents:
diff changeset
1787
kono
parents:
diff changeset
1788 RE_Code_Loc => Ada_Exceptions,
kono
parents:
diff changeset
1789 RE_Exception_Id => Ada_Exceptions,
kono
parents:
diff changeset
1790 RE_Exception_Identity => Ada_Exceptions,
kono
parents:
diff changeset
1791 RE_Exception_Information => Ada_Exceptions,
kono
parents:
diff changeset
1792 RE_Exception_Message => Ada_Exceptions,
kono
parents:
diff changeset
1793 RE_Exception_Name_Simple => Ada_Exceptions,
kono
parents:
diff changeset
1794 RE_Exception_Occurrence => Ada_Exceptions,
kono
parents:
diff changeset
1795 RE_Exception_Occurrence_Access => Ada_Exceptions,
kono
parents:
diff changeset
1796 RE_Null_Id => Ada_Exceptions,
kono
parents:
diff changeset
1797 RE_Null_Occurrence => Ada_Exceptions,
kono
parents:
diff changeset
1798 RE_Poll => Ada_Exceptions,
kono
parents:
diff changeset
1799 RE_Raise_Exception => Ada_Exceptions,
kono
parents:
diff changeset
1800 RE_Raise_Exception_Always => Ada_Exceptions,
kono
parents:
diff changeset
1801 RE_Raise_From_Controlled_Operation => Ada_Exceptions,
kono
parents:
diff changeset
1802 RE_Reraise_Occurrence => Ada_Exceptions,
kono
parents:
diff changeset
1803 RE_Reraise_Occurrence_Always => Ada_Exceptions,
kono
parents:
diff changeset
1804 RE_Reraise_Occurrence_No_Defer => Ada_Exceptions,
kono
parents:
diff changeset
1805 RE_Save_Occurrence => Ada_Exceptions,
kono
parents:
diff changeset
1806 RE_Triggered_By_Abort => Ada_Exceptions,
kono
parents:
diff changeset
1807
kono
parents:
diff changeset
1808 RE_Interrupt_ID => Ada_Interrupts,
kono
parents:
diff changeset
1809 RE_Is_Reserved => Ada_Interrupts,
kono
parents:
diff changeset
1810 RE_Is_Attached => Ada_Interrupts,
kono
parents:
diff changeset
1811 RE_Current_Handler => Ada_Interrupts,
kono
parents:
diff changeset
1812 RE_Attach_Handler => Ada_Interrupts,
kono
parents:
diff changeset
1813 RE_Exchange_Handler => Ada_Interrupts,
kono
parents:
diff changeset
1814 RE_Detach_Handler => Ada_Interrupts,
kono
parents:
diff changeset
1815 RE_Reference => Ada_Interrupts,
kono
parents:
diff changeset
1816
kono
parents:
diff changeset
1817 RE_Names => Ada_Interrupts_Names,
kono
parents:
diff changeset
1818
kono
parents:
diff changeset
1819 RE_Clock => Ada_Real_Time,
kono
parents:
diff changeset
1820 RE_Time_Span => Ada_Real_Time,
kono
parents:
diff changeset
1821 RE_Time_Span_Zero => Ada_Real_Time,
kono
parents:
diff changeset
1822 RO_RT_Time => Ada_Real_Time,
kono
parents:
diff changeset
1823
kono
parents:
diff changeset
1824 RO_RT_Delay_Until => Ada_Real_Time_Delays,
kono
parents:
diff changeset
1825 RO_RT_To_Duration => Ada_Real_Time_Delays,
kono
parents:
diff changeset
1826
kono
parents:
diff changeset
1827 RE_Set_Handler => Ada_Real_Time_Timing_Events,
kono
parents:
diff changeset
1828 RE_Timing_Event => Ada_Real_Time_Timing_Events,
kono
parents:
diff changeset
1829
kono
parents:
diff changeset
1830 RE_Root_Stream_Type => Ada_Streams,
kono
parents:
diff changeset
1831 RE_Stream_Element => Ada_Streams,
kono
parents:
diff changeset
1832 RE_Stream_Element_Array => Ada_Streams,
kono
parents:
diff changeset
1833 RE_Stream_Element_Offset => Ada_Streams,
kono
parents:
diff changeset
1834
kono
parents:
diff changeset
1835 RE_Stream_Access => Ada_Streams_Stream_IO,
kono
parents:
diff changeset
1836
kono
parents:
diff changeset
1837 RO_SU_Super_String => Ada_Strings_Superbounded,
kono
parents:
diff changeset
1838
kono
parents:
diff changeset
1839 RO_WI_Super_String => Ada_Strings_Wide_Superbounded,
kono
parents:
diff changeset
1840
kono
parents:
diff changeset
1841 RO_WW_Super_String => Ada_Strings_Wide_Wide_Superbounded,
kono
parents:
diff changeset
1842
kono
parents:
diff changeset
1843 RE_Unbounded_String => Ada_Strings_Unbounded,
kono
parents:
diff changeset
1844
kono
parents:
diff changeset
1845 RE_Access_Level => Ada_Tags,
kono
parents:
diff changeset
1846 RE_Alignment => Ada_Tags,
kono
parents:
diff changeset
1847 RE_Address_Array => Ada_Tags,
kono
parents:
diff changeset
1848 RE_Addr_Ptr => Ada_Tags,
kono
parents:
diff changeset
1849 RE_Base_Address => Ada_Tags,
kono
parents:
diff changeset
1850 RE_Check_Interface_Conversion => Ada_Tags,
kono
parents:
diff changeset
1851 RE_Check_TSD => Ada_Tags,
kono
parents:
diff changeset
1852 RE_Cstring_Ptr => Ada_Tags,
kono
parents:
diff changeset
1853 RE_Descendant_Tag => Ada_Tags,
kono
parents:
diff changeset
1854 RE_Dispatch_Table => Ada_Tags,
kono
parents:
diff changeset
1855 RE_Dispatch_Table_Wrapper => Ada_Tags,
kono
parents:
diff changeset
1856 RE_Displace => Ada_Tags,
kono
parents:
diff changeset
1857 RE_DT => Ada_Tags,
kono
parents:
diff changeset
1858 RE_DT_Offset_To_Top_Offset => Ada_Tags,
kono
parents:
diff changeset
1859 RE_DT_Predef_Prims_Offset => Ada_Tags,
kono
parents:
diff changeset
1860 RE_DT_Typeinfo_Ptr_Size => Ada_Tags,
kono
parents:
diff changeset
1861 RE_External_Tag => Ada_Tags,
kono
parents:
diff changeset
1862 RO_TA_External_Tag => Ada_Tags,
kono
parents:
diff changeset
1863 RE_Get_Access_Level => Ada_Tags,
kono
parents:
diff changeset
1864 RE_Get_Alignment => Ada_Tags,
kono
parents:
diff changeset
1865 RE_Get_Entry_Index => Ada_Tags,
kono
parents:
diff changeset
1866 RE_Get_Offset_Index => Ada_Tags,
kono
parents:
diff changeset
1867 RE_Get_Prim_Op_Kind => Ada_Tags,
kono
parents:
diff changeset
1868 RE_Get_Tagged_Kind => Ada_Tags,
kono
parents:
diff changeset
1869 RE_Idepth => Ada_Tags,
kono
parents:
diff changeset
1870 RE_Interfaces_Array => Ada_Tags,
kono
parents:
diff changeset
1871 RE_Interfaces_Table => Ada_Tags,
kono
parents:
diff changeset
1872 RE_Interface_Data => Ada_Tags,
kono
parents:
diff changeset
1873 RE_Interface_Data_Element => Ada_Tags,
kono
parents:
diff changeset
1874 RE_Interface_Tag => Ada_Tags,
kono
parents:
diff changeset
1875 RE_Is_Abstract => Ada_Tags,
kono
parents:
diff changeset
1876 RE_IW_Membership => Ada_Tags,
kono
parents:
diff changeset
1877 RE_Max_Predef_Prims => Ada_Tags,
kono
parents:
diff changeset
1878 RE_Needs_Finalization => Ada_Tags,
kono
parents:
diff changeset
1879 RE_No_Dispatch_Table_Wrapper => Ada_Tags,
kono
parents:
diff changeset
1880 RE_No_Tag => Ada_Tags,
kono
parents:
diff changeset
1881 RE_NDT_Prims_Ptr => Ada_Tags,
kono
parents:
diff changeset
1882 RE_NDT_TSD => Ada_Tags,
kono
parents:
diff changeset
1883 RE_Num_Prims => Ada_Tags,
kono
parents:
diff changeset
1884 RE_Object_Specific_Data => Ada_Tags,
kono
parents:
diff changeset
1885 RE_Offset_To_Top => Ada_Tags,
kono
parents:
diff changeset
1886 RE_Offset_To_Top_Ptr => Ada_Tags,
kono
parents:
diff changeset
1887 RE_Offset_To_Top_Function_Ptr => Ada_Tags,
kono
parents:
diff changeset
1888 RE_OSD_Table => Ada_Tags,
kono
parents:
diff changeset
1889 RE_OSD_Num_Prims => Ada_Tags,
kono
parents:
diff changeset
1890 RE_POK_Function => Ada_Tags,
kono
parents:
diff changeset
1891 RE_POK_Procedure => Ada_Tags,
kono
parents:
diff changeset
1892 RE_POK_Protected_Entry => Ada_Tags,
kono
parents:
diff changeset
1893 RE_POK_Protected_Function => Ada_Tags,
kono
parents:
diff changeset
1894 RE_POK_Protected_Procedure => Ada_Tags,
kono
parents:
diff changeset
1895 RE_POK_Task_Entry => Ada_Tags,
kono
parents:
diff changeset
1896 RE_POK_Task_Function => Ada_Tags,
kono
parents:
diff changeset
1897 RE_POK_Task_Procedure => Ada_Tags,
kono
parents:
diff changeset
1898 RE_Predef_Prims => Ada_Tags,
kono
parents:
diff changeset
1899 RE_Predef_Prims_Table_Ptr => Ada_Tags,
kono
parents:
diff changeset
1900 RE_Prim_Op_Kind => Ada_Tags,
kono
parents:
diff changeset
1901 RE_Prim_Ptr => Ada_Tags,
kono
parents:
diff changeset
1902 RE_Prims_Ptr => Ada_Tags,
kono
parents:
diff changeset
1903 RE_Primary_DT => Ada_Tags,
kono
parents:
diff changeset
1904 RE_Signature => Ada_Tags,
kono
parents:
diff changeset
1905 RE_SSD => Ada_Tags,
kono
parents:
diff changeset
1906 RE_TSD => Ada_Tags,
kono
parents:
diff changeset
1907 RE_Type_Specific_Data => Ada_Tags,
kono
parents:
diff changeset
1908 RE_Register_Interface_Offset => Ada_Tags,
kono
parents:
diff changeset
1909 RE_Register_Tag => Ada_Tags,
kono
parents:
diff changeset
1910 RE_Register_TSD => Ada_Tags,
kono
parents:
diff changeset
1911 RE_Transportable => Ada_Tags,
kono
parents:
diff changeset
1912 RE_Secondary_DT => Ada_Tags,
kono
parents:
diff changeset
1913 RE_Secondary_Tag => Ada_Tags,
kono
parents:
diff changeset
1914 RE_Select_Specific_Data => Ada_Tags,
kono
parents:
diff changeset
1915 RE_Set_Entry_Index => Ada_Tags,
kono
parents:
diff changeset
1916 RE_Set_Dynamic_Offset_To_Top => Ada_Tags,
kono
parents:
diff changeset
1917 RE_Set_Prim_Op_Kind => Ada_Tags,
kono
parents:
diff changeset
1918 RE_Size_Func => Ada_Tags,
kono
parents:
diff changeset
1919 RE_Size_Ptr => Ada_Tags,
kono
parents:
diff changeset
1920 RE_Tag => Ada_Tags,
kono
parents:
diff changeset
1921 RE_Tag_Error => Ada_Tags,
kono
parents:
diff changeset
1922 RE_Tag_Kind => Ada_Tags,
kono
parents:
diff changeset
1923 RE_Tag_Ptr => Ada_Tags,
kono
parents:
diff changeset
1924 RE_Tag_Table => Ada_Tags,
kono
parents:
diff changeset
1925 RE_Tags_Table => Ada_Tags,
kono
parents:
diff changeset
1926 RE_Tagged_Kind => Ada_Tags,
kono
parents:
diff changeset
1927 RE_Type_Specific_Data_Ptr => Ada_Tags,
kono
parents:
diff changeset
1928 RE_TK_Abstract_Limited_Tagged => Ada_Tags,
kono
parents:
diff changeset
1929 RE_TK_Abstract_Tagged => Ada_Tags,
kono
parents:
diff changeset
1930 RE_TK_Limited_Tagged => Ada_Tags,
kono
parents:
diff changeset
1931 RE_TK_Protected => Ada_Tags,
kono
parents:
diff changeset
1932 RE_TK_Tagged => Ada_Tags,
kono
parents:
diff changeset
1933 RE_TK_Task => Ada_Tags,
kono
parents:
diff changeset
1934 RE_Unregister_Tag => Ada_Tags,
kono
parents:
diff changeset
1935
kono
parents:
diff changeset
1936 RE_Set_Specific_Handler => Ada_Task_Termination,
kono
parents:
diff changeset
1937 RE_Specific_Handler => Ada_Task_Termination,
kono
parents:
diff changeset
1938
kono
parents:
diff changeset
1939 RE_Abort_Task => Ada_Task_Identification,
kono
parents:
diff changeset
1940 RE_Current_Task => Ada_Task_Identification,
kono
parents:
diff changeset
1941 RO_AT_Task_Id => Ada_Task_Identification,
kono
parents:
diff changeset
1942 RE_Tasking_State => Ada_Task_Identification,
kono
parents:
diff changeset
1943
kono
parents:
diff changeset
1944 RE_Decimal_IO => Ada_Text_IO,
kono
parents:
diff changeset
1945 RE_Fixed_IO => Ada_Text_IO,
kono
parents:
diff changeset
1946
kono
parents:
diff changeset
1947 RO_WT_Decimal_IO => Ada_Wide_Text_IO,
kono
parents:
diff changeset
1948 RO_WT_Fixed_IO => Ada_Wide_Text_IO,
kono
parents:
diff changeset
1949
kono
parents:
diff changeset
1950 RO_WW_Decimal_IO => Ada_Wide_Wide_Text_IO,
kono
parents:
diff changeset
1951 RO_WW_Fixed_IO => Ada_Wide_Wide_Text_IO,
kono
parents:
diff changeset
1952
kono
parents:
diff changeset
1953 RE_Integer_8 => Interfaces,
kono
parents:
diff changeset
1954 RE_Integer_16 => Interfaces,
kono
parents:
diff changeset
1955 RE_Integer_32 => Interfaces,
kono
parents:
diff changeset
1956 RE_Integer_64 => Interfaces,
kono
parents:
diff changeset
1957 RE_Unsigned_8 => Interfaces,
kono
parents:
diff changeset
1958 RE_Unsigned_16 => Interfaces,
kono
parents:
diff changeset
1959 RE_Unsigned_32 => Interfaces,
kono
parents:
diff changeset
1960 RE_Unsigned_64 => Interfaces,
kono
parents:
diff changeset
1961
kono
parents:
diff changeset
1962 RE_Address => System,
kono
parents:
diff changeset
1963 RE_Any_Priority => System,
kono
parents:
diff changeset
1964 RE_Bit_Order => System,
kono
parents:
diff changeset
1965 RE_Default_Priority => System,
kono
parents:
diff changeset
1966 RE_High_Order_First => System,
kono
parents:
diff changeset
1967 RE_Interrupt_Priority => System,
kono
parents:
diff changeset
1968 RE_Lib_Stop => System,
kono
parents:
diff changeset
1969 RE_Low_Order_First => System,
kono
parents:
diff changeset
1970 RE_Max_Base_Digits => System,
kono
parents:
diff changeset
1971 RE_Max_Priority => System,
kono
parents:
diff changeset
1972 RE_Null_Address => System,
kono
parents:
diff changeset
1973 RE_Priority => System,
kono
parents:
diff changeset
1974
kono
parents:
diff changeset
1975 RE_Address_Image => System_Address_Image,
kono
parents:
diff changeset
1976
kono
parents:
diff changeset
1977 RE_Add_With_Ovflo_Check => System_Arith_64,
kono
parents:
diff changeset
1978 RE_Double_Divide => System_Arith_64,
kono
parents:
diff changeset
1979 RE_Multiply_With_Ovflo_Check => System_Arith_64,
kono
parents:
diff changeset
1980 RE_Scaled_Divide => System_Arith_64,
kono
parents:
diff changeset
1981 RE_Subtract_With_Ovflo_Check => System_Arith_64,
kono
parents:
diff changeset
1982
kono
parents:
diff changeset
1983 RE_Create_AST_Handler => System_AST_Handling,
kono
parents:
diff changeset
1984
kono
parents:
diff changeset
1985 RE_Assert_Failure => System_Assertions,
kono
parents:
diff changeset
1986 RE_Raise_Assert_Failure => System_Assertions,
kono
parents:
diff changeset
1987
kono
parents:
diff changeset
1988 RE_Lock_Free_Read_8 => System_Atomic_Primitives,
kono
parents:
diff changeset
1989 RE_Lock_Free_Read_16 => System_Atomic_Primitives,
kono
parents:
diff changeset
1990 RE_Lock_Free_Read_32 => System_Atomic_Primitives,
kono
parents:
diff changeset
1991 RE_Lock_Free_Read_64 => System_Atomic_Primitives,
kono
parents:
diff changeset
1992 RE_Lock_Free_Try_Write_8 => System_Atomic_Primitives,
kono
parents:
diff changeset
1993 RE_Lock_Free_Try_Write_16 => System_Atomic_Primitives,
kono
parents:
diff changeset
1994 RE_Lock_Free_Try_Write_32 => System_Atomic_Primitives,
kono
parents:
diff changeset
1995 RE_Lock_Free_Try_Write_64 => System_Atomic_Primitives,
kono
parents:
diff changeset
1996 RE_Uint8 => System_Atomic_Primitives,
kono
parents:
diff changeset
1997 RE_Uint16 => System_Atomic_Primitives,
kono
parents:
diff changeset
1998 RE_Uint32 => System_Atomic_Primitives,
kono
parents:
diff changeset
1999 RE_Uint64 => System_Atomic_Primitives,
kono
parents:
diff changeset
2000
kono
parents:
diff changeset
2001 RE_AST_Handler => System_Aux_DEC,
kono
parents:
diff changeset
2002 RE_Import_Address => System_Aux_DEC,
kono
parents:
diff changeset
2003 RE_Import_Value => System_Aux_DEC,
kono
parents:
diff changeset
2004 RE_No_AST_Handler => System_Aux_DEC,
kono
parents:
diff changeset
2005 RE_Type_Class => System_Aux_DEC,
kono
parents:
diff changeset
2006 RE_Type_Class_Enumeration => System_Aux_DEC,
kono
parents:
diff changeset
2007 RE_Type_Class_Integer => System_Aux_DEC,
kono
parents:
diff changeset
2008 RE_Type_Class_Fixed_Point => System_Aux_DEC,
kono
parents:
diff changeset
2009 RE_Type_Class_Floating_Point => System_Aux_DEC,
kono
parents:
diff changeset
2010 RE_Type_Class_Array => System_Aux_DEC,
kono
parents:
diff changeset
2011 RE_Type_Class_Record => System_Aux_DEC,
kono
parents:
diff changeset
2012 RE_Type_Class_Access => System_Aux_DEC,
kono
parents:
diff changeset
2013 RE_Type_Class_Task => System_Aux_DEC,
kono
parents:
diff changeset
2014 RE_Type_Class_Address => System_Aux_DEC,
kono
parents:
diff changeset
2015
kono
parents:
diff changeset
2016 RE_Big_Abs => System_Bignums,
kono
parents:
diff changeset
2017 RE_Big_Add => System_Bignums,
kono
parents:
diff changeset
2018 RE_Big_Div => System_Bignums,
kono
parents:
diff changeset
2019 RE_Big_Exp => System_Bignums,
kono
parents:
diff changeset
2020 RE_Big_Mod => System_Bignums,
kono
parents:
diff changeset
2021 RE_Big_Mul => System_Bignums,
kono
parents:
diff changeset
2022 RE_Big_Neg => System_Bignums,
kono
parents:
diff changeset
2023 RE_Big_Rem => System_Bignums,
kono
parents:
diff changeset
2024 RE_Big_Sub => System_Bignums,
kono
parents:
diff changeset
2025
kono
parents:
diff changeset
2026 RE_Big_EQ => System_Bignums,
kono
parents:
diff changeset
2027 RE_Big_GE => System_Bignums,
kono
parents:
diff changeset
2028 RE_Big_GT => System_Bignums,
kono
parents:
diff changeset
2029 RE_Big_LE => System_Bignums,
kono
parents:
diff changeset
2030 RE_Big_LT => System_Bignums,
kono
parents:
diff changeset
2031 RE_Big_NE => System_Bignums,
kono
parents:
diff changeset
2032
kono
parents:
diff changeset
2033 RE_Bignum => System_Bignums,
kono
parents:
diff changeset
2034 RE_Bignum_In_LLI_Range => System_Bignums,
kono
parents:
diff changeset
2035 RE_To_Bignum => System_Bignums,
kono
parents:
diff changeset
2036 RE_From_Bignum => System_Bignums,
kono
parents:
diff changeset
2037
kono
parents:
diff changeset
2038 RE_Bit_And => System_Bit_Ops,
kono
parents:
diff changeset
2039 RE_Bit_Eq => System_Bit_Ops,
kono
parents:
diff changeset
2040 RE_Bit_Not => System_Bit_Ops,
kono
parents:
diff changeset
2041 RE_Bit_Or => System_Bit_Ops,
kono
parents:
diff changeset
2042 RE_Bit_Xor => System_Bit_Ops,
kono
parents:
diff changeset
2043
kono
parents:
diff changeset
2044 RE_Checked_Pool => System_Checked_Pools,
kono
parents:
diff changeset
2045
kono
parents:
diff changeset
2046 RE_Vector_Not => System_Boolean_Array_Operations,
kono
parents:
diff changeset
2047 RE_Vector_And => System_Boolean_Array_Operations,
kono
parents:
diff changeset
2048 RE_Vector_Or => System_Boolean_Array_Operations,
kono
parents:
diff changeset
2049 RE_Vector_Nand => System_Boolean_Array_Operations,
kono
parents:
diff changeset
2050 RE_Vector_Nor => System_Boolean_Array_Operations,
kono
parents:
diff changeset
2051 RE_Vector_Nxor => System_Boolean_Array_Operations,
kono
parents:
diff changeset
2052 RE_Vector_Xor => System_Boolean_Array_Operations,
kono
parents:
diff changeset
2053
kono
parents:
diff changeset
2054 RE_Bswap_16 => System_Byte_Swapping,
kono
parents:
diff changeset
2055 RE_Bswap_32 => System_Byte_Swapping,
kono
parents:
diff changeset
2056 RE_Bswap_64 => System_Byte_Swapping,
kono
parents:
diff changeset
2057
kono
parents:
diff changeset
2058 RE_Compare_Array_S8 => System_Compare_Array_Signed_8,
kono
parents:
diff changeset
2059 RE_Compare_Array_S8_Unaligned => System_Compare_Array_Signed_8,
kono
parents:
diff changeset
2060
kono
parents:
diff changeset
2061 RE_Compare_Array_S16 => System_Compare_Array_Signed_16,
kono
parents:
diff changeset
2062
kono
parents:
diff changeset
2063 RE_Compare_Array_S32 => System_Compare_Array_Signed_32,
kono
parents:
diff changeset
2064
kono
parents:
diff changeset
2065 RE_Compare_Array_S64 => System_Compare_Array_Signed_64,
kono
parents:
diff changeset
2066
kono
parents:
diff changeset
2067 RE_Compare_Array_U8 => System_Compare_Array_Unsigned_8,
kono
parents:
diff changeset
2068 RE_Compare_Array_U8_Unaligned => System_Compare_Array_Unsigned_8,
kono
parents:
diff changeset
2069
kono
parents:
diff changeset
2070 RE_Compare_Array_U16 => System_Compare_Array_Unsigned_16,
kono
parents:
diff changeset
2071
kono
parents:
diff changeset
2072 RE_Compare_Array_U32 => System_Compare_Array_Unsigned_32,
kono
parents:
diff changeset
2073
kono
parents:
diff changeset
2074 RE_Compare_Array_U64 => System_Compare_Array_Unsigned_64,
kono
parents:
diff changeset
2075
kono
parents:
diff changeset
2076 RE_Str_Concat_2 => System_Concat_2,
kono
parents:
diff changeset
2077 RE_Str_Concat_3 => System_Concat_3,
kono
parents:
diff changeset
2078 RE_Str_Concat_4 => System_Concat_4,
kono
parents:
diff changeset
2079 RE_Str_Concat_5 => System_Concat_5,
kono
parents:
diff changeset
2080 RE_Str_Concat_6 => System_Concat_6,
kono
parents:
diff changeset
2081 RE_Str_Concat_7 => System_Concat_7,
kono
parents:
diff changeset
2082 RE_Str_Concat_8 => System_Concat_8,
kono
parents:
diff changeset
2083 RE_Str_Concat_9 => System_Concat_9,
kono
parents:
diff changeset
2084
kono
parents:
diff changeset
2085 RE_Str_Concat_Bounds_2 => System_Concat_2,
kono
parents:
diff changeset
2086 RE_Str_Concat_Bounds_3 => System_Concat_3,
kono
parents:
diff changeset
2087 RE_Str_Concat_Bounds_4 => System_Concat_4,
kono
parents:
diff changeset
2088 RE_Str_Concat_Bounds_5 => System_Concat_5,
kono
parents:
diff changeset
2089 RE_Str_Concat_Bounds_6 => System_Concat_6,
kono
parents:
diff changeset
2090 RE_Str_Concat_Bounds_7 => System_Concat_7,
kono
parents:
diff changeset
2091 RE_Str_Concat_Bounds_8 => System_Concat_8,
kono
parents:
diff changeset
2092 RE_Str_Concat_Bounds_9 => System_Concat_9,
kono
parents:
diff changeset
2093
kono
parents:
diff changeset
2094 RE_Get_Active_Partition_Id => System_DSA_Services,
kono
parents:
diff changeset
2095 RE_Get_Local_Partition_Id => System_DSA_Services,
kono
parents:
diff changeset
2096 RE_Get_Passive_Partition_Id => System_DSA_Services,
kono
parents:
diff changeset
2097
kono
parents:
diff changeset
2098 RE_Any_Container_Ptr => System_DSA_Types,
kono
parents:
diff changeset
2099
kono
parents:
diff changeset
2100 RE_Check_Standard_Allocator => System_Elaboration_Allocators,
kono
parents:
diff changeset
2101
kono
parents:
diff changeset
2102 RE_Register_Exception => System_Exception_Table,
kono
parents:
diff changeset
2103
kono
parents:
diff changeset
2104 RE_Local_Raise => System_Exceptions_Debug,
kono
parents:
diff changeset
2105
kono
parents:
diff changeset
2106 RE_Exn_Integer => System_Exn_Int,
kono
parents:
diff changeset
2107
kono
parents:
diff changeset
2108 RE_Exn_Float => System_Exn_LLF,
kono
parents:
diff changeset
2109 RE_Exn_Long_Float => System_Exn_LLF,
kono
parents:
diff changeset
2110 RE_Exn_Long_Long_Float => System_Exn_LLF,
kono
parents:
diff changeset
2111
kono
parents:
diff changeset
2112 RE_Exn_Long_Long_Integer => System_Exn_LLI,
kono
parents:
diff changeset
2113
kono
parents:
diff changeset
2114 RE_Exp_Integer => System_Exp_Int,
kono
parents:
diff changeset
2115
kono
parents:
diff changeset
2116 RE_Exp_Long_Long_Integer => System_Exp_LLI,
kono
parents:
diff changeset
2117
kono
parents:
diff changeset
2118 RE_Exp_Long_Long_Unsigned => System_Exp_LLU,
kono
parents:
diff changeset
2119
kono
parents:
diff changeset
2120 RE_Exp_Modular => System_Exp_Mod,
kono
parents:
diff changeset
2121
kono
parents:
diff changeset
2122 RE_Exp_Unsigned => System_Exp_Uns,
kono
parents:
diff changeset
2123
kono
parents:
diff changeset
2124 RE_Attr_Float => System_Fat_Flt,
kono
parents:
diff changeset
2125
kono
parents:
diff changeset
2126 RE_Attr_IEEE_Long => System_Fat_IEEE_Long_Float,
kono
parents:
diff changeset
2127 RE_Fat_IEEE_Long => System_Fat_IEEE_Long_Float,
kono
parents:
diff changeset
2128
kono
parents:
diff changeset
2129 RE_Attr_IEEE_Short => System_Fat_IEEE_Short_Float,
kono
parents:
diff changeset
2130 RE_Fat_IEEE_Short => System_Fat_IEEE_Short_Float,
kono
parents:
diff changeset
2131
kono
parents:
diff changeset
2132 RE_Attr_Long_Float => System_Fat_LFlt,
kono
parents:
diff changeset
2133
kono
parents:
diff changeset
2134 RE_Attr_Long_Long_Float => System_Fat_LLF,
kono
parents:
diff changeset
2135
kono
parents:
diff changeset
2136 RE_Attr_Short_Float => System_Fat_SFlt,
kono
parents:
diff changeset
2137
kono
parents:
diff changeset
2138 RE_Attr_VAX_D_Float => System_Fat_VAX_D_Float,
kono
parents:
diff changeset
2139 RE_Fat_VAX_D => System_Fat_VAX_D_Float,
kono
parents:
diff changeset
2140
kono
parents:
diff changeset
2141 RE_Attr_VAX_F_Float => System_Fat_VAX_F_Float,
kono
parents:
diff changeset
2142 RE_Fat_VAX_F => System_Fat_VAX_F_Float,
kono
parents:
diff changeset
2143
kono
parents:
diff changeset
2144 RE_Attr_VAX_G_Float => System_Fat_VAX_G_Float,
kono
parents:
diff changeset
2145 RE_Fat_VAX_G => System_Fat_VAX_G_Float,
kono
parents:
diff changeset
2146
kono
parents:
diff changeset
2147 RE_Add_Offset_To_Address => System_Finalization_Masters,
kono
parents:
diff changeset
2148 RE_Attach => System_Finalization_Masters,
kono
parents:
diff changeset
2149 RE_Base_Pool => System_Finalization_Masters,
kono
parents:
diff changeset
2150 RE_Detach => System_Finalization_Masters,
kono
parents:
diff changeset
2151 RE_Finalization_Master => System_Finalization_Masters,
kono
parents:
diff changeset
2152 RE_Finalization_Master_Ptr => System_Finalization_Masters,
kono
parents:
diff changeset
2153 RE_Set_Base_Pool => System_Finalization_Masters,
kono
parents:
diff changeset
2154 RE_Set_Finalize_Address => System_Finalization_Masters,
kono
parents:
diff changeset
2155 RE_Set_Is_Heterogeneous => System_Finalization_Masters,
kono
parents:
diff changeset
2156
kono
parents:
diff changeset
2157 RE_Root_Controlled => System_Finalization_Root,
kono
parents:
diff changeset
2158 RE_Root_Controlled_Ptr => System_Finalization_Root,
kono
parents:
diff changeset
2159
kono
parents:
diff changeset
2160 RE_Fore => System_Fore,
kono
parents:
diff changeset
2161
kono
parents:
diff changeset
2162 RE_Image_Boolean => System_Img_Bool,
kono
parents:
diff changeset
2163
kono
parents:
diff changeset
2164 RE_Image_Character => System_Img_Char,
kono
parents:
diff changeset
2165 RE_Image_Character_05 => System_Img_Char,
kono
parents:
diff changeset
2166
kono
parents:
diff changeset
2167 RE_Image_Decimal => System_Img_Dec,
kono
parents:
diff changeset
2168
kono
parents:
diff changeset
2169 RE_Image_Enumeration_8 => System_Img_Enum_New,
kono
parents:
diff changeset
2170 RE_Image_Enumeration_16 => System_Img_Enum_New,
kono
parents:
diff changeset
2171 RE_Image_Enumeration_32 => System_Img_Enum_New,
kono
parents:
diff changeset
2172
kono
parents:
diff changeset
2173 RE_Image_Integer => System_Img_Int,
kono
parents:
diff changeset
2174
kono
parents:
diff changeset
2175 RE_Image_Long_Long_Decimal => System_Img_LLD,
kono
parents:
diff changeset
2176
kono
parents:
diff changeset
2177 RE_Image_Long_Long_Integer => System_Img_LLI,
kono
parents:
diff changeset
2178
kono
parents:
diff changeset
2179 RE_Image_Long_Long_Unsigned => System_Img_LLU,
kono
parents:
diff changeset
2180
kono
parents:
diff changeset
2181 RE_Image_Ordinary_Fixed_Point => System_Img_Real,
kono
parents:
diff changeset
2182 RE_Image_Floating_Point => System_Img_Real,
kono
parents:
diff changeset
2183
kono
parents:
diff changeset
2184 RE_Image_Unsigned => System_Img_Uns,
kono
parents:
diff changeset
2185
kono
parents:
diff changeset
2186 RE_Image_Wide_Character => System_Img_WChar,
kono
parents:
diff changeset
2187 RE_Image_Wide_Wide_Character => System_Img_WChar,
kono
parents:
diff changeset
2188
kono
parents:
diff changeset
2189 RE_Bind_Interrupt_To_Entry => System_Interrupts,
kono
parents:
diff changeset
2190 RE_Default_Interrupt_Priority => System_Interrupts,
kono
parents:
diff changeset
2191 RE_Dynamic_Interrupt_Protection => System_Interrupts,
kono
parents:
diff changeset
2192 RE_Install_Handlers => System_Interrupts,
kono
parents:
diff changeset
2193 RE_Install_Restricted_Handlers => System_Interrupts,
kono
parents:
diff changeset
2194 RE_Register_Interrupt_Handler => System_Interrupts,
kono
parents:
diff changeset
2195 RE_Static_Interrupt_Protection => System_Interrupts,
kono
parents:
diff changeset
2196 RE_System_Interrupt_Id => System_Interrupts,
kono
parents:
diff changeset
2197
kono
parents:
diff changeset
2198 RE_Expon_LLF => System_Long_Long_Float_Expon,
kono
parents:
diff changeset
2199
kono
parents:
diff changeset
2200 RE_Asm_Insn => System_Machine_Code,
kono
parents:
diff changeset
2201 RE_Asm_Input_Operand => System_Machine_Code,
kono
parents:
diff changeset
2202 RE_Asm_Output_Operand => System_Machine_Code,
kono
parents:
diff changeset
2203
kono
parents:
diff changeset
2204 RE_Mantissa_Value => System_Mantissa,
kono
parents:
diff changeset
2205
kono
parents:
diff changeset
2206 RE_Free => System_Memory,
kono
parents:
diff changeset
2207
kono
parents:
diff changeset
2208 RE_CPU_Range => System_Multiprocessors,
kono
parents:
diff changeset
2209
kono
parents:
diff changeset
2210 RE_Bits_03 => System_Pack_03,
kono
parents:
diff changeset
2211 RE_Get_03 => System_Pack_03,
kono
parents:
diff changeset
2212 RE_Set_03 => System_Pack_03,
kono
parents:
diff changeset
2213
kono
parents:
diff changeset
2214 RE_Bits_05 => System_Pack_05,
kono
parents:
diff changeset
2215 RE_Get_05 => System_Pack_05,
kono
parents:
diff changeset
2216 RE_Set_05 => System_Pack_05,
kono
parents:
diff changeset
2217
kono
parents:
diff changeset
2218 RE_Bits_06 => System_Pack_06,
kono
parents:
diff changeset
2219 RE_Get_06 => System_Pack_06,
kono
parents:
diff changeset
2220 RE_GetU_06 => System_Pack_06,
kono
parents:
diff changeset
2221 RE_Set_06 => System_Pack_06,
kono
parents:
diff changeset
2222 RE_SetU_06 => System_Pack_06,
kono
parents:
diff changeset
2223
kono
parents:
diff changeset
2224 RE_Bits_07 => System_Pack_07,
kono
parents:
diff changeset
2225 RE_Get_07 => System_Pack_07,
kono
parents:
diff changeset
2226 RE_Set_07 => System_Pack_07,
kono
parents:
diff changeset
2227
kono
parents:
diff changeset
2228 RE_Bits_09 => System_Pack_09,
kono
parents:
diff changeset
2229 RE_Get_09 => System_Pack_09,
kono
parents:
diff changeset
2230 RE_Set_09 => System_Pack_09,
kono
parents:
diff changeset
2231
kono
parents:
diff changeset
2232 RE_Bits_10 => System_Pack_10,
kono
parents:
diff changeset
2233 RE_Get_10 => System_Pack_10,
kono
parents:
diff changeset
2234 RE_GetU_10 => System_Pack_10,
kono
parents:
diff changeset
2235 RE_Set_10 => System_Pack_10,
kono
parents:
diff changeset
2236 RE_SetU_10 => System_Pack_10,
kono
parents:
diff changeset
2237
kono
parents:
diff changeset
2238 RE_Bits_11 => System_Pack_11,
kono
parents:
diff changeset
2239 RE_Get_11 => System_Pack_11,
kono
parents:
diff changeset
2240 RE_Set_11 => System_Pack_11,
kono
parents:
diff changeset
2241
kono
parents:
diff changeset
2242 RE_Bits_12 => System_Pack_12,
kono
parents:
diff changeset
2243 RE_Get_12 => System_Pack_12,
kono
parents:
diff changeset
2244 RE_GetU_12 => System_Pack_12,
kono
parents:
diff changeset
2245 RE_Set_12 => System_Pack_12,
kono
parents:
diff changeset
2246 RE_SetU_12 => System_Pack_12,
kono
parents:
diff changeset
2247
kono
parents:
diff changeset
2248 RE_Bits_13 => System_Pack_13,
kono
parents:
diff changeset
2249 RE_Get_13 => System_Pack_13,
kono
parents:
diff changeset
2250 RE_Set_13 => System_Pack_13,
kono
parents:
diff changeset
2251
kono
parents:
diff changeset
2252 RE_Bits_14 => System_Pack_14,
kono
parents:
diff changeset
2253 RE_Get_14 => System_Pack_14,
kono
parents:
diff changeset
2254 RE_GetU_14 => System_Pack_14,
kono
parents:
diff changeset
2255 RE_Set_14 => System_Pack_14,
kono
parents:
diff changeset
2256 RE_SetU_14 => System_Pack_14,
kono
parents:
diff changeset
2257
kono
parents:
diff changeset
2258 RE_Bits_15 => System_Pack_15,
kono
parents:
diff changeset
2259 RE_Get_15 => System_Pack_15,
kono
parents:
diff changeset
2260 RE_Set_15 => System_Pack_15,
kono
parents:
diff changeset
2261
kono
parents:
diff changeset
2262 RE_Bits_17 => System_Pack_17,
kono
parents:
diff changeset
2263 RE_Get_17 => System_Pack_17,
kono
parents:
diff changeset
2264 RE_Set_17 => System_Pack_17,
kono
parents:
diff changeset
2265
kono
parents:
diff changeset
2266 RE_Bits_18 => System_Pack_18,
kono
parents:
diff changeset
2267 RE_Get_18 => System_Pack_18,
kono
parents:
diff changeset
2268 RE_GetU_18 => System_Pack_18,
kono
parents:
diff changeset
2269 RE_Set_18 => System_Pack_18,
kono
parents:
diff changeset
2270 RE_SetU_18 => System_Pack_18,
kono
parents:
diff changeset
2271
kono
parents:
diff changeset
2272 RE_Bits_19 => System_Pack_19,
kono
parents:
diff changeset
2273 RE_Get_19 => System_Pack_19,
kono
parents:
diff changeset
2274 RE_Set_19 => System_Pack_19,
kono
parents:
diff changeset
2275
kono
parents:
diff changeset
2276 RE_Bits_20 => System_Pack_20,
kono
parents:
diff changeset
2277 RE_Get_20 => System_Pack_20,
kono
parents:
diff changeset
2278 RE_GetU_20 => System_Pack_20,
kono
parents:
diff changeset
2279 RE_Set_20 => System_Pack_20,
kono
parents:
diff changeset
2280 RE_SetU_20 => System_Pack_20,
kono
parents:
diff changeset
2281
kono
parents:
diff changeset
2282 RE_Bits_21 => System_Pack_21,
kono
parents:
diff changeset
2283 RE_Get_21 => System_Pack_21,
kono
parents:
diff changeset
2284 RE_Set_21 => System_Pack_21,
kono
parents:
diff changeset
2285
kono
parents:
diff changeset
2286 RE_Bits_22 => System_Pack_22,
kono
parents:
diff changeset
2287 RE_Get_22 => System_Pack_22,
kono
parents:
diff changeset
2288 RE_GetU_22 => System_Pack_22,
kono
parents:
diff changeset
2289 RE_Set_22 => System_Pack_22,
kono
parents:
diff changeset
2290 RE_SetU_22 => System_Pack_22,
kono
parents:
diff changeset
2291
kono
parents:
diff changeset
2292 RE_Bits_23 => System_Pack_23,
kono
parents:
diff changeset
2293 RE_Get_23 => System_Pack_23,
kono
parents:
diff changeset
2294 RE_Set_23 => System_Pack_23,
kono
parents:
diff changeset
2295
kono
parents:
diff changeset
2296 RE_Bits_24 => System_Pack_24,
kono
parents:
diff changeset
2297 RE_Get_24 => System_Pack_24,
kono
parents:
diff changeset
2298 RE_GetU_24 => System_Pack_24,
kono
parents:
diff changeset
2299 RE_Set_24 => System_Pack_24,
kono
parents:
diff changeset
2300 RE_SetU_24 => System_Pack_24,
kono
parents:
diff changeset
2301
kono
parents:
diff changeset
2302 RE_Bits_25 => System_Pack_25,
kono
parents:
diff changeset
2303 RE_Get_25 => System_Pack_25,
kono
parents:
diff changeset
2304 RE_Set_25 => System_Pack_25,
kono
parents:
diff changeset
2305
kono
parents:
diff changeset
2306 RE_Bits_26 => System_Pack_26,
kono
parents:
diff changeset
2307 RE_Get_26 => System_Pack_26,
kono
parents:
diff changeset
2308 RE_GetU_26 => System_Pack_26,
kono
parents:
diff changeset
2309 RE_Set_26 => System_Pack_26,
kono
parents:
diff changeset
2310 RE_SetU_26 => System_Pack_26,
kono
parents:
diff changeset
2311
kono
parents:
diff changeset
2312 RE_Bits_27 => System_Pack_27,
kono
parents:
diff changeset
2313 RE_Get_27 => System_Pack_27,
kono
parents:
diff changeset
2314 RE_Set_27 => System_Pack_27,
kono
parents:
diff changeset
2315
kono
parents:
diff changeset
2316 RE_Bits_28 => System_Pack_28,
kono
parents:
diff changeset
2317 RE_Get_28 => System_Pack_28,
kono
parents:
diff changeset
2318 RE_GetU_28 => System_Pack_28,
kono
parents:
diff changeset
2319 RE_Set_28 => System_Pack_28,
kono
parents:
diff changeset
2320 RE_SetU_28 => System_Pack_28,
kono
parents:
diff changeset
2321
kono
parents:
diff changeset
2322 RE_Bits_29 => System_Pack_29,
kono
parents:
diff changeset
2323 RE_Get_29 => System_Pack_29,
kono
parents:
diff changeset
2324 RE_Set_29 => System_Pack_29,
kono
parents:
diff changeset
2325
kono
parents:
diff changeset
2326 RE_Bits_30 => System_Pack_30,
kono
parents:
diff changeset
2327 RE_Get_30 => System_Pack_30,
kono
parents:
diff changeset
2328 RE_GetU_30 => System_Pack_30,
kono
parents:
diff changeset
2329 RE_Set_30 => System_Pack_30,
kono
parents:
diff changeset
2330 RE_SetU_30 => System_Pack_30,
kono
parents:
diff changeset
2331
kono
parents:
diff changeset
2332 RE_Bits_31 => System_Pack_31,
kono
parents:
diff changeset
2333 RE_Get_31 => System_Pack_31,
kono
parents:
diff changeset
2334 RE_Set_31 => System_Pack_31,
kono
parents:
diff changeset
2335
kono
parents:
diff changeset
2336 RE_Bits_33 => System_Pack_33,
kono
parents:
diff changeset
2337 RE_Get_33 => System_Pack_33,
kono
parents:
diff changeset
2338 RE_Set_33 => System_Pack_33,
kono
parents:
diff changeset
2339
kono
parents:
diff changeset
2340 RE_Bits_34 => System_Pack_34,
kono
parents:
diff changeset
2341 RE_Get_34 => System_Pack_34,
kono
parents:
diff changeset
2342 RE_GetU_34 => System_Pack_34,
kono
parents:
diff changeset
2343 RE_Set_34 => System_Pack_34,
kono
parents:
diff changeset
2344 RE_SetU_34 => System_Pack_34,
kono
parents:
diff changeset
2345
kono
parents:
diff changeset
2346 RE_Bits_35 => System_Pack_35,
kono
parents:
diff changeset
2347 RE_Get_35 => System_Pack_35,
kono
parents:
diff changeset
2348 RE_Set_35 => System_Pack_35,
kono
parents:
diff changeset
2349
kono
parents:
diff changeset
2350 RE_Bits_36 => System_Pack_36,
kono
parents:
diff changeset
2351 RE_Get_36 => System_Pack_36,
kono
parents:
diff changeset
2352 RE_GetU_36 => System_Pack_36,
kono
parents:
diff changeset
2353 RE_Set_36 => System_Pack_36,
kono
parents:
diff changeset
2354 RE_SetU_36 => System_Pack_36,
kono
parents:
diff changeset
2355
kono
parents:
diff changeset
2356 RE_Bits_37 => System_Pack_37,
kono
parents:
diff changeset
2357 RE_Get_37 => System_Pack_37,
kono
parents:
diff changeset
2358 RE_Set_37 => System_Pack_37,
kono
parents:
diff changeset
2359
kono
parents:
diff changeset
2360 RE_Bits_38 => System_Pack_38,
kono
parents:
diff changeset
2361 RE_Get_38 => System_Pack_38,
kono
parents:
diff changeset
2362 RE_GetU_38 => System_Pack_38,
kono
parents:
diff changeset
2363 RE_Set_38 => System_Pack_38,
kono
parents:
diff changeset
2364 RE_SetU_38 => System_Pack_38,
kono
parents:
diff changeset
2365
kono
parents:
diff changeset
2366 RE_Bits_39 => System_Pack_39,
kono
parents:
diff changeset
2367 RE_Get_39 => System_Pack_39,
kono
parents:
diff changeset
2368 RE_Set_39 => System_Pack_39,
kono
parents:
diff changeset
2369
kono
parents:
diff changeset
2370 RE_Bits_40 => System_Pack_40,
kono
parents:
diff changeset
2371 RE_Get_40 => System_Pack_40,
kono
parents:
diff changeset
2372 RE_GetU_40 => System_Pack_40,
kono
parents:
diff changeset
2373 RE_Set_40 => System_Pack_40,
kono
parents:
diff changeset
2374 RE_SetU_40 => System_Pack_40,
kono
parents:
diff changeset
2375
kono
parents:
diff changeset
2376 RE_Bits_41 => System_Pack_41,
kono
parents:
diff changeset
2377 RE_Get_41 => System_Pack_41,
kono
parents:
diff changeset
2378 RE_Set_41 => System_Pack_41,
kono
parents:
diff changeset
2379
kono
parents:
diff changeset
2380 RE_Bits_42 => System_Pack_42,
kono
parents:
diff changeset
2381 RE_Get_42 => System_Pack_42,
kono
parents:
diff changeset
2382 RE_GetU_42 => System_Pack_42,
kono
parents:
diff changeset
2383 RE_Set_42 => System_Pack_42,
kono
parents:
diff changeset
2384 RE_SetU_42 => System_Pack_42,
kono
parents:
diff changeset
2385
kono
parents:
diff changeset
2386 RE_Bits_43 => System_Pack_43,
kono
parents:
diff changeset
2387 RE_Get_43 => System_Pack_43,
kono
parents:
diff changeset
2388 RE_Set_43 => System_Pack_43,
kono
parents:
diff changeset
2389
kono
parents:
diff changeset
2390 RE_Bits_44 => System_Pack_44,
kono
parents:
diff changeset
2391 RE_Get_44 => System_Pack_44,
kono
parents:
diff changeset
2392 RE_GetU_44 => System_Pack_44,
kono
parents:
diff changeset
2393 RE_Set_44 => System_Pack_44,
kono
parents:
diff changeset
2394 RE_SetU_44 => System_Pack_44,
kono
parents:
diff changeset
2395
kono
parents:
diff changeset
2396 RE_Bits_45 => System_Pack_45,
kono
parents:
diff changeset
2397 RE_Get_45 => System_Pack_45,
kono
parents:
diff changeset
2398 RE_Set_45 => System_Pack_45,
kono
parents:
diff changeset
2399
kono
parents:
diff changeset
2400 RE_Bits_46 => System_Pack_46,
kono
parents:
diff changeset
2401 RE_Get_46 => System_Pack_46,
kono
parents:
diff changeset
2402 RE_GetU_46 => System_Pack_46,
kono
parents:
diff changeset
2403 RE_Set_46 => System_Pack_46,
kono
parents:
diff changeset
2404 RE_SetU_46 => System_Pack_46,
kono
parents:
diff changeset
2405
kono
parents:
diff changeset
2406 RE_Bits_47 => System_Pack_47,
kono
parents:
diff changeset
2407 RE_Get_47 => System_Pack_47,
kono
parents:
diff changeset
2408 RE_Set_47 => System_Pack_47,
kono
parents:
diff changeset
2409
kono
parents:
diff changeset
2410 RE_Bits_48 => System_Pack_48,
kono
parents:
diff changeset
2411 RE_Get_48 => System_Pack_48,
kono
parents:
diff changeset
2412 RE_GetU_48 => System_Pack_48,
kono
parents:
diff changeset
2413 RE_Set_48 => System_Pack_48,
kono
parents:
diff changeset
2414 RE_SetU_48 => System_Pack_48,
kono
parents:
diff changeset
2415
kono
parents:
diff changeset
2416 RE_Bits_49 => System_Pack_49,
kono
parents:
diff changeset
2417 RE_Get_49 => System_Pack_49,
kono
parents:
diff changeset
2418 RE_Set_49 => System_Pack_49,
kono
parents:
diff changeset
2419
kono
parents:
diff changeset
2420 RE_Bits_50 => System_Pack_50,
kono
parents:
diff changeset
2421 RE_Get_50 => System_Pack_50,
kono
parents:
diff changeset
2422 RE_GetU_50 => System_Pack_50,
kono
parents:
diff changeset
2423 RE_Set_50 => System_Pack_50,
kono
parents:
diff changeset
2424 RE_SetU_50 => System_Pack_50,
kono
parents:
diff changeset
2425
kono
parents:
diff changeset
2426 RE_Bits_51 => System_Pack_51,
kono
parents:
diff changeset
2427 RE_Get_51 => System_Pack_51,
kono
parents:
diff changeset
2428 RE_Set_51 => System_Pack_51,
kono
parents:
diff changeset
2429
kono
parents:
diff changeset
2430 RE_Bits_52 => System_Pack_52,
kono
parents:
diff changeset
2431 RE_Get_52 => System_Pack_52,
kono
parents:
diff changeset
2432 RE_GetU_52 => System_Pack_52,
kono
parents:
diff changeset
2433 RE_Set_52 => System_Pack_52,
kono
parents:
diff changeset
2434 RE_SetU_52 => System_Pack_52,
kono
parents:
diff changeset
2435
kono
parents:
diff changeset
2436 RE_Bits_53 => System_Pack_53,
kono
parents:
diff changeset
2437 RE_Get_53 => System_Pack_53,
kono
parents:
diff changeset
2438 RE_Set_53 => System_Pack_53,
kono
parents:
diff changeset
2439
kono
parents:
diff changeset
2440 RE_Bits_54 => System_Pack_54,
kono
parents:
diff changeset
2441 RE_Get_54 => System_Pack_54,
kono
parents:
diff changeset
2442 RE_GetU_54 => System_Pack_54,
kono
parents:
diff changeset
2443 RE_Set_54 => System_Pack_54,
kono
parents:
diff changeset
2444 RE_SetU_54 => System_Pack_54,
kono
parents:
diff changeset
2445
kono
parents:
diff changeset
2446 RE_Bits_55 => System_Pack_55,
kono
parents:
diff changeset
2447 RE_Get_55 => System_Pack_55,
kono
parents:
diff changeset
2448 RE_Set_55 => System_Pack_55,
kono
parents:
diff changeset
2449
kono
parents:
diff changeset
2450 RE_Bits_56 => System_Pack_56,
kono
parents:
diff changeset
2451 RE_Get_56 => System_Pack_56,
kono
parents:
diff changeset
2452 RE_GetU_56 => System_Pack_56,
kono
parents:
diff changeset
2453 RE_Set_56 => System_Pack_56,
kono
parents:
diff changeset
2454 RE_SetU_56 => System_Pack_56,
kono
parents:
diff changeset
2455
kono
parents:
diff changeset
2456 RE_Bits_57 => System_Pack_57,
kono
parents:
diff changeset
2457 RE_Get_57 => System_Pack_57,
kono
parents:
diff changeset
2458 RE_Set_57 => System_Pack_57,
kono
parents:
diff changeset
2459
kono
parents:
diff changeset
2460 RE_Bits_58 => System_Pack_58,
kono
parents:
diff changeset
2461 RE_Get_58 => System_Pack_58,
kono
parents:
diff changeset
2462 RE_GetU_58 => System_Pack_58,
kono
parents:
diff changeset
2463 RE_Set_58 => System_Pack_58,
kono
parents:
diff changeset
2464 RE_SetU_58 => System_Pack_58,
kono
parents:
diff changeset
2465
kono
parents:
diff changeset
2466 RE_Bits_59 => System_Pack_59,
kono
parents:
diff changeset
2467 RE_Get_59 => System_Pack_59,
kono
parents:
diff changeset
2468 RE_Set_59 => System_Pack_59,
kono
parents:
diff changeset
2469
kono
parents:
diff changeset
2470 RE_Bits_60 => System_Pack_60,
kono
parents:
diff changeset
2471 RE_Get_60 => System_Pack_60,
kono
parents:
diff changeset
2472 RE_GetU_60 => System_Pack_60,
kono
parents:
diff changeset
2473 RE_Set_60 => System_Pack_60,
kono
parents:
diff changeset
2474 RE_SetU_60 => System_Pack_60,
kono
parents:
diff changeset
2475
kono
parents:
diff changeset
2476 RE_Bits_61 => System_Pack_61,
kono
parents:
diff changeset
2477 RE_Get_61 => System_Pack_61,
kono
parents:
diff changeset
2478 RE_Set_61 => System_Pack_61,
kono
parents:
diff changeset
2479
kono
parents:
diff changeset
2480 RE_Bits_62 => System_Pack_62,
kono
parents:
diff changeset
2481 RE_Get_62 => System_Pack_62,
kono
parents:
diff changeset
2482 RE_GetU_62 => System_Pack_62,
kono
parents:
diff changeset
2483 RE_Set_62 => System_Pack_62,
kono
parents:
diff changeset
2484 RE_SetU_62 => System_Pack_62,
kono
parents:
diff changeset
2485
kono
parents:
diff changeset
2486 RE_Bits_63 => System_Pack_63,
kono
parents:
diff changeset
2487 RE_Get_63 => System_Pack_63,
kono
parents:
diff changeset
2488 RE_Set_63 => System_Pack_63,
kono
parents:
diff changeset
2489
kono
parents:
diff changeset
2490 RE_Adjust_Storage_Size => System_Parameters,
kono
parents:
diff changeset
2491 RE_Default_Secondary_Stack_Size => System_Parameters,
kono
parents:
diff changeset
2492 RE_Default_Stack_Size => System_Parameters,
kono
parents:
diff changeset
2493 RE_Garbage_Collected => System_Parameters,
kono
parents:
diff changeset
2494 RE_Size_Type => System_Parameters,
kono
parents:
diff changeset
2495 RE_Unspecified_Size => System_Parameters,
kono
parents:
diff changeset
2496
kono
parents:
diff changeset
2497 RE_DSA_Implementation => System_Partition_Interface,
kono
parents:
diff changeset
2498 RE_PCS_Version => System_Partition_Interface,
kono
parents:
diff changeset
2499 RE_Get_RACW => System_Partition_Interface,
kono
parents:
diff changeset
2500 RE_Get_RCI_Package_Receiver => System_Partition_Interface,
kono
parents:
diff changeset
2501 RE_Get_Unique_Remote_Pointer => System_Partition_Interface,
kono
parents:
diff changeset
2502 RE_RACW_Stub_Type => System_Partition_Interface,
kono
parents:
diff changeset
2503 RE_RACW_Stub_Type_Access => System_Partition_Interface,
kono
parents:
diff changeset
2504 RE_RAS_Proxy_Type_Access => System_Partition_Interface,
kono
parents:
diff changeset
2505 RE_Raise_Program_Error_Unknown_Tag => System_Partition_Interface,
kono
parents:
diff changeset
2506 RE_Register_Passive_Package => System_Partition_Interface,
kono
parents:
diff changeset
2507 RE_Register_Receiving_Stub => System_Partition_Interface,
kono
parents:
diff changeset
2508 RE_Request => System_Partition_Interface,
kono
parents:
diff changeset
2509 RE_Request_Access => System_Partition_Interface,
kono
parents:
diff changeset
2510 RE_RCI_Locator => System_Partition_Interface,
kono
parents:
diff changeset
2511 RE_RCI_Subp_Info => System_Partition_Interface,
kono
parents:
diff changeset
2512 RE_RCI_Subp_Info_Array => System_Partition_Interface,
kono
parents:
diff changeset
2513 RE_Same_Partition => System_Partition_Interface,
kono
parents:
diff changeset
2514 RE_Subprogram_Id => System_Partition_Interface,
kono
parents:
diff changeset
2515 RE_Get_RAS_Info => System_Partition_Interface,
kono
parents:
diff changeset
2516
kono
parents:
diff changeset
2517 RE_To_PolyORB_String => System_Partition_Interface,
kono
parents:
diff changeset
2518 RE_Caseless_String_Eq => System_Partition_Interface,
kono
parents:
diff changeset
2519 RE_TypeCode => System_Partition_Interface,
kono
parents:
diff changeset
2520 RE_Any => System_Partition_Interface,
kono
parents:
diff changeset
2521 RE_Mode_In => System_Partition_Interface,
kono
parents:
diff changeset
2522 RE_Mode_Out => System_Partition_Interface,
kono
parents:
diff changeset
2523 RE_Mode_Inout => System_Partition_Interface,
kono
parents:
diff changeset
2524 RE_NamedValue => System_Partition_Interface,
kono
parents:
diff changeset
2525 RE_Result_Name => System_Partition_Interface,
kono
parents:
diff changeset
2526 RE_Object_Ref => System_Partition_Interface,
kono
parents:
diff changeset
2527 RE_Create_Any => System_Partition_Interface,
kono
parents:
diff changeset
2528 RE_Any_Aggregate_Build => System_Partition_Interface,
kono
parents:
diff changeset
2529 RE_Add_Aggregate_Element => System_Partition_Interface,
kono
parents:
diff changeset
2530 RE_Get_Aggregate_Element => System_Partition_Interface,
kono
parents:
diff changeset
2531 RE_Content_Type => System_Partition_Interface,
kono
parents:
diff changeset
2532 RE_Any_Member_Type => System_Partition_Interface,
kono
parents:
diff changeset
2533 RE_Get_Nested_Sequence_Length => System_Partition_Interface,
kono
parents:
diff changeset
2534 RE_Get_Any_Type => System_Partition_Interface,
kono
parents:
diff changeset
2535 RE_Extract_Union_Value => System_Partition_Interface,
kono
parents:
diff changeset
2536 RE_NVList_Ref => System_Partition_Interface,
kono
parents:
diff changeset
2537 RE_NVList_Create => System_Partition_Interface,
kono
parents:
diff changeset
2538 RE_NVList_Add_Item => System_Partition_Interface,
kono
parents:
diff changeset
2539 RE_Request_Arguments => System_Partition_Interface,
kono
parents:
diff changeset
2540 RE_Request_Invoke => System_Partition_Interface,
kono
parents:
diff changeset
2541 RE_Request_Raise_Occurrence => System_Partition_Interface,
kono
parents:
diff changeset
2542 RE_Request_Set_Out => System_Partition_Interface,
kono
parents:
diff changeset
2543 RE_Request_Setup => System_Partition_Interface,
kono
parents:
diff changeset
2544 RE_Nil_Exc_List => System_Partition_Interface,
kono
parents:
diff changeset
2545 RE_Servant => System_Partition_Interface,
kono
parents:
diff changeset
2546 RE_Move_Any_Value => System_Partition_Interface,
kono
parents:
diff changeset
2547 RE_Set_Result => System_Partition_Interface,
kono
parents:
diff changeset
2548 RE_Register_Obj_Receiving_Stub => System_Partition_Interface,
kono
parents:
diff changeset
2549 RE_Register_Pkg_Receiving_Stub => System_Partition_Interface,
kono
parents:
diff changeset
2550 RE_Is_Nil => System_Partition_Interface,
kono
parents:
diff changeset
2551 RE_Entity_Ptr => System_Partition_Interface,
kono
parents:
diff changeset
2552 RE_Entity_Of => System_Partition_Interface,
kono
parents:
diff changeset
2553 RE_Inc_Usage => System_Partition_Interface,
kono
parents:
diff changeset
2554 RE_Set_Ref => System_Partition_Interface,
kono
parents:
diff changeset
2555 RE_Make_Ref => System_Partition_Interface,
kono
parents:
diff changeset
2556 RE_Get_Local_Address => System_Partition_Interface,
kono
parents:
diff changeset
2557 RE_Get_Reference => System_Partition_Interface,
kono
parents:
diff changeset
2558 RE_Asynchronous_P_To_Sync_Scope => System_Partition_Interface,
kono
parents:
diff changeset
2559 RE_Buffer_Stream_Type => System_Partition_Interface,
kono
parents:
diff changeset
2560 RE_Release_Buffer => System_Partition_Interface,
kono
parents:
diff changeset
2561 RE_BS_To_Any => System_Partition_Interface,
kono
parents:
diff changeset
2562 RE_Any_To_BS => System_Partition_Interface,
kono
parents:
diff changeset
2563 RE_Build_Complex_TC => System_Partition_Interface,
kono
parents:
diff changeset
2564 RE_Get_TC => System_Partition_Interface,
kono
parents:
diff changeset
2565 RE_Set_TC => System_Partition_Interface,
kono
parents:
diff changeset
2566
kono
parents:
diff changeset
2567 RE_FA_A => System_Partition_Interface,
kono
parents:
diff changeset
2568 RE_FA_B => System_Partition_Interface,
kono
parents:
diff changeset
2569 RE_FA_C => System_Partition_Interface,
kono
parents:
diff changeset
2570 RE_FA_F => System_Partition_Interface,
kono
parents:
diff changeset
2571 RE_FA_I8 => System_Partition_Interface,
kono
parents:
diff changeset
2572 RE_FA_I16 => System_Partition_Interface,
kono
parents:
diff changeset
2573 RE_FA_I32 => System_Partition_Interface,
kono
parents:
diff changeset
2574 RE_FA_I64 => System_Partition_Interface,
kono
parents:
diff changeset
2575 RE_FA_LF => System_Partition_Interface,
kono
parents:
diff changeset
2576 RE_FA_LLF => System_Partition_Interface,
kono
parents:
diff changeset
2577 RE_FA_SF => System_Partition_Interface,
kono
parents:
diff changeset
2578 RE_FA_U8 => System_Partition_Interface,
kono
parents:
diff changeset
2579 RE_FA_U16 => System_Partition_Interface,
kono
parents:
diff changeset
2580 RE_FA_U32 => System_Partition_Interface,
kono
parents:
diff changeset
2581 RE_FA_U64 => System_Partition_Interface,
kono
parents:
diff changeset
2582 RE_FA_WC => System_Partition_Interface,
kono
parents:
diff changeset
2583 RE_FA_WWC => System_Partition_Interface,
kono
parents:
diff changeset
2584 RE_FA_String => System_Partition_Interface,
kono
parents:
diff changeset
2585 RE_FA_ObjRef => System_Partition_Interface,
kono
parents:
diff changeset
2586
kono
parents:
diff changeset
2587 RE_TA_A => System_Partition_Interface,
kono
parents:
diff changeset
2588 RE_TA_B => System_Partition_Interface,
kono
parents:
diff changeset
2589 RE_TA_C => System_Partition_Interface,
kono
parents:
diff changeset
2590 RE_TA_F => System_Partition_Interface,
kono
parents:
diff changeset
2591 RE_TA_I8 => System_Partition_Interface,
kono
parents:
diff changeset
2592 RE_TA_I16 => System_Partition_Interface,
kono
parents:
diff changeset
2593 RE_TA_I32 => System_Partition_Interface,
kono
parents:
diff changeset
2594 RE_TA_I64 => System_Partition_Interface,
kono
parents:
diff changeset
2595 RE_TA_LF => System_Partition_Interface,
kono
parents:
diff changeset
2596 RE_TA_LLF => System_Partition_Interface,
kono
parents:
diff changeset
2597 RE_TA_SF => System_Partition_Interface,
kono
parents:
diff changeset
2598 RE_TA_U8 => System_Partition_Interface,
kono
parents:
diff changeset
2599 RE_TA_U16 => System_Partition_Interface,
kono
parents:
diff changeset
2600 RE_TA_U32 => System_Partition_Interface,
kono
parents:
diff changeset
2601 RE_TA_U64 => System_Partition_Interface,
kono
parents:
diff changeset
2602 RE_TA_WC => System_Partition_Interface,
kono
parents:
diff changeset
2603 RE_TA_WWC => System_Partition_Interface,
kono
parents:
diff changeset
2604 RE_TA_String => System_Partition_Interface,
kono
parents:
diff changeset
2605 RE_TA_ObjRef => System_Partition_Interface,
kono
parents:
diff changeset
2606 RE_TA_Std_String => System_Partition_Interface,
kono
parents:
diff changeset
2607 RE_TA_TC => System_Partition_Interface,
kono
parents:
diff changeset
2608
kono
parents:
diff changeset
2609 RE_TC_A => System_Partition_Interface,
kono
parents:
diff changeset
2610 RE_TC_B => System_Partition_Interface,
kono
parents:
diff changeset
2611 RE_TC_C => System_Partition_Interface,
kono
parents:
diff changeset
2612 RE_TC_F => System_Partition_Interface,
kono
parents:
diff changeset
2613 RE_TC_I8 => System_Partition_Interface,
kono
parents:
diff changeset
2614 RE_TC_I16 => System_Partition_Interface,
kono
parents:
diff changeset
2615 RE_TC_I32 => System_Partition_Interface,
kono
parents:
diff changeset
2616 RE_TC_I64 => System_Partition_Interface,
kono
parents:
diff changeset
2617 RE_TC_LF => System_Partition_Interface,
kono
parents:
diff changeset
2618 RE_TC_LLF => System_Partition_Interface,
kono
parents:
diff changeset
2619 RE_TC_SF => System_Partition_Interface,
kono
parents:
diff changeset
2620 RE_TC_U8 => System_Partition_Interface,
kono
parents:
diff changeset
2621 RE_TC_U16 => System_Partition_Interface,
kono
parents:
diff changeset
2622 RE_TC_U32 => System_Partition_Interface,
kono
parents:
diff changeset
2623 RE_TC_U64 => System_Partition_Interface,
kono
parents:
diff changeset
2624 RE_TC_Void => System_Partition_Interface,
kono
parents:
diff changeset
2625 RE_TC_Opaque => System_Partition_Interface,
kono
parents:
diff changeset
2626 RE_TC_WC => System_Partition_Interface,
kono
parents:
diff changeset
2627 RE_TC_WWC => System_Partition_Interface,
kono
parents:
diff changeset
2628 RE_TC_String => System_Partition_Interface,
kono
parents:
diff changeset
2629
kono
parents:
diff changeset
2630 RE_Tk_Alias => System_Partition_Interface,
kono
parents:
diff changeset
2631 RE_Tk_Array => System_Partition_Interface,
kono
parents:
diff changeset
2632 RE_Tk_Sequence => System_Partition_Interface,
kono
parents:
diff changeset
2633 RE_Tk_Struct => System_Partition_Interface,
kono
parents:
diff changeset
2634 RE_Tk_Objref => System_Partition_Interface,
kono
parents:
diff changeset
2635 RE_Tk_Union => System_Partition_Interface,
kono
parents:
diff changeset
2636
kono
parents:
diff changeset
2637 RE_Global_Pool_Object => System_Pool_Global,
kono
parents:
diff changeset
2638
kono
parents:
diff changeset
2639 RE_Global_Pool_32_Object => System_Pool_32_Global,
kono
parents:
diff changeset
2640
kono
parents:
diff changeset
2641 RE_Stack_Bounded_Pool => System_Pool_Size,
kono
parents:
diff changeset
2642
kono
parents:
diff changeset
2643 RO_RD_Delay_For => System_Relative_Delays,
kono
parents:
diff changeset
2644
kono
parents:
diff changeset
2645 RE_Do_Apc => System_RPC,
kono
parents:
diff changeset
2646 RE_Do_Rpc => System_RPC,
kono
parents:
diff changeset
2647 RE_Params_Stream_Type => System_RPC,
kono
parents:
diff changeset
2648 RE_Partition_ID => System_RPC,
kono
parents:
diff changeset
2649
kono
parents:
diff changeset
2650 RE_IS_Is1 => System_Scalar_Values,
kono
parents:
diff changeset
2651 RE_IS_Is2 => System_Scalar_Values,
kono
parents:
diff changeset
2652 RE_IS_Is4 => System_Scalar_Values,
kono
parents:
diff changeset
2653 RE_IS_Is8 => System_Scalar_Values,
kono
parents:
diff changeset
2654 RE_IS_Iu1 => System_Scalar_Values,
kono
parents:
diff changeset
2655 RE_IS_Iu2 => System_Scalar_Values,
kono
parents:
diff changeset
2656 RE_IS_Iu4 => System_Scalar_Values,
kono
parents:
diff changeset
2657 RE_IS_Iu8 => System_Scalar_Values,
kono
parents:
diff changeset
2658 RE_IS_Iz1 => System_Scalar_Values,
kono
parents:
diff changeset
2659 RE_IS_Iz2 => System_Scalar_Values,
kono
parents:
diff changeset
2660 RE_IS_Iz4 => System_Scalar_Values,
kono
parents:
diff changeset
2661 RE_IS_Iz8 => System_Scalar_Values,
kono
parents:
diff changeset
2662 RE_IS_Isf => System_Scalar_Values,
kono
parents:
diff changeset
2663 RE_IS_Ifl => System_Scalar_Values,
kono
parents:
diff changeset
2664 RE_IS_Ilf => System_Scalar_Values,
kono
parents:
diff changeset
2665 RE_IS_Ill => System_Scalar_Values,
kono
parents:
diff changeset
2666
kono
parents:
diff changeset
2667 RE_Mark_Id => System_Secondary_Stack,
kono
parents:
diff changeset
2668 RE_SS_Allocate => System_Secondary_Stack,
kono
parents:
diff changeset
2669 RE_SS_Mark => System_Secondary_Stack,
kono
parents:
diff changeset
2670 RE_SS_Pool => System_Secondary_Stack,
kono
parents:
diff changeset
2671 RE_SS_Release => System_Secondary_Stack,
kono
parents:
diff changeset
2672 RE_SS_Stack => System_Secondary_Stack,
kono
parents:
diff changeset
2673
kono
parents:
diff changeset
2674 RE_Shared_Var_Lock => System_Shared_Storage,
kono
parents:
diff changeset
2675 RE_Shared_Var_Unlock => System_Shared_Storage,
kono
parents:
diff changeset
2676 RE_Shared_Var_Procs => System_Shared_Storage,
kono
parents:
diff changeset
2677
kono
parents:
diff changeset
2678 RE_Abort_Undefer_Direct => System_Standard_Library,
kono
parents:
diff changeset
2679 RE_Exception_Data_Ptr => System_Standard_Library,
kono
parents:
diff changeset
2680
kono
parents:
diff changeset
2681 RE_Integer_Address => System_Storage_Elements,
kono
parents:
diff changeset
2682 RE_Storage_Array => System_Storage_Elements,
kono
parents:
diff changeset
2683 RE_Storage_Count => System_Storage_Elements,
kono
parents:
diff changeset
2684 RE_Storage_Offset => System_Storage_Elements,
kono
parents:
diff changeset
2685 RE_To_Address => System_Storage_Elements,
kono
parents:
diff changeset
2686
kono
parents:
diff changeset
2687 RE_Allocate_Any => System_Storage_Pools,
kono
parents:
diff changeset
2688 RE_Deallocate_Any => System_Storage_Pools,
kono
parents:
diff changeset
2689 RE_Root_Storage_Pool => System_Storage_Pools,
kono
parents:
diff changeset
2690 RE_Root_Storage_Pool_Ptr => System_Storage_Pools,
kono
parents:
diff changeset
2691
kono
parents:
diff changeset
2692 RE_Adjust_Controlled_Dereference => System_Storage_Pools_Subpools,
kono
parents:
diff changeset
2693 RE_Allocate_Any_Controlled => System_Storage_Pools_Subpools,
kono
parents:
diff changeset
2694 RE_Deallocate_Any_Controlled => System_Storage_Pools_Subpools,
kono
parents:
diff changeset
2695 RE_Header_Size_With_Padding => System_Storage_Pools_Subpools,
kono
parents:
diff changeset
2696 RE_Root_Storage_Pool_With_Subpools => System_Storage_Pools_Subpools,
kono
parents:
diff changeset
2697 RE_Root_Subpool => System_Storage_Pools_Subpools,
kono
parents:
diff changeset
2698 RE_Subpool_Handle => System_Storage_Pools_Subpools,
kono
parents:
diff changeset
2699
kono
parents:
diff changeset
2700 RE_I_AD => System_Stream_Attributes,
kono
parents:
diff changeset
2701 RE_I_AS => System_Stream_Attributes,
kono
parents:
diff changeset
2702 RE_I_B => System_Stream_Attributes,
kono
parents:
diff changeset
2703 RE_I_C => System_Stream_Attributes,
kono
parents:
diff changeset
2704 RE_I_F => System_Stream_Attributes,
kono
parents:
diff changeset
2705 RE_I_I => System_Stream_Attributes,
kono
parents:
diff changeset
2706 RE_I_LF => System_Stream_Attributes,
kono
parents:
diff changeset
2707 RE_I_LI => System_Stream_Attributes,
kono
parents:
diff changeset
2708 RE_I_LLF => System_Stream_Attributes,
kono
parents:
diff changeset
2709 RE_I_LLI => System_Stream_Attributes,
kono
parents:
diff changeset
2710 RE_I_LLU => System_Stream_Attributes,
kono
parents:
diff changeset
2711 RE_I_LU => System_Stream_Attributes,
kono
parents:
diff changeset
2712 RE_I_SF => System_Stream_Attributes,
kono
parents:
diff changeset
2713 RE_I_SI => System_Stream_Attributes,
kono
parents:
diff changeset
2714 RE_I_SSI => System_Stream_Attributes,
kono
parents:
diff changeset
2715 RE_I_SSU => System_Stream_Attributes,
kono
parents:
diff changeset
2716 RE_I_SU => System_Stream_Attributes,
kono
parents:
diff changeset
2717 RE_I_U => System_Stream_Attributes,
kono
parents:
diff changeset
2718 RE_I_WC => System_Stream_Attributes,
kono
parents:
diff changeset
2719 RE_I_WWC => System_Stream_Attributes,
kono
parents:
diff changeset
2720
kono
parents:
diff changeset
2721 RE_W_AD => System_Stream_Attributes,
kono
parents:
diff changeset
2722 RE_W_AS => System_Stream_Attributes,
kono
parents:
diff changeset
2723 RE_W_B => System_Stream_Attributes,
kono
parents:
diff changeset
2724 RE_W_C => System_Stream_Attributes,
kono
parents:
diff changeset
2725 RE_W_F => System_Stream_Attributes,
kono
parents:
diff changeset
2726 RE_W_I => System_Stream_Attributes,
kono
parents:
diff changeset
2727 RE_W_LF => System_Stream_Attributes,
kono
parents:
diff changeset
2728 RE_W_LI => System_Stream_Attributes,
kono
parents:
diff changeset
2729 RE_W_LLF => System_Stream_Attributes,
kono
parents:
diff changeset
2730 RE_W_LLI => System_Stream_Attributes,
kono
parents:
diff changeset
2731 RE_W_LLU => System_Stream_Attributes,
kono
parents:
diff changeset
2732 RE_W_LU => System_Stream_Attributes,
kono
parents:
diff changeset
2733 RE_W_SF => System_Stream_Attributes,
kono
parents:
diff changeset
2734 RE_W_SI => System_Stream_Attributes,
kono
parents:
diff changeset
2735 RE_W_SSI => System_Stream_Attributes,
kono
parents:
diff changeset
2736 RE_W_SSU => System_Stream_Attributes,
kono
parents:
diff changeset
2737 RE_W_SU => System_Stream_Attributes,
kono
parents:
diff changeset
2738 RE_W_U => System_Stream_Attributes,
kono
parents:
diff changeset
2739 RE_W_WC => System_Stream_Attributes,
kono
parents:
diff changeset
2740 RE_W_WWC => System_Stream_Attributes,
kono
parents:
diff changeset
2741
kono
parents:
diff changeset
2742 RE_Storage_Array_Input => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2743 RE_Storage_Array_Input_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2744 RE_Storage_Array_Output => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2745 RE_Storage_Array_Output_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2746 RE_Storage_Array_Read => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2747 RE_Storage_Array_Read_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2748 RE_Storage_Array_Write => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2749 RE_Storage_Array_Write_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2750
kono
parents:
diff changeset
2751 RE_Stream_Element_Array_Input => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2752 RE_Stream_Element_Array_Input_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2753 RE_Stream_Element_Array_Output => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2754 RE_Stream_Element_Array_Output_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2755 RE_Stream_Element_Array_Read => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2756 RE_Stream_Element_Array_Read_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2757 RE_Stream_Element_Array_Write => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2758 RE_Stream_Element_Array_Write_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2759
kono
parents:
diff changeset
2760 RE_String_Input => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2761 RE_String_Input_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2762 RE_String_Input_Tag => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2763 RE_String_Output => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2764 RE_String_Output_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2765 RE_String_Read => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2766 RE_String_Read_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2767 RE_String_Write => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2768 RE_String_Write_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2769
kono
parents:
diff changeset
2770 RE_Wide_String_Input => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2771 RE_Wide_String_Input_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2772 RE_Wide_String_Output => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2773 RE_Wide_String_Output_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2774 RE_Wide_String_Read => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2775 RE_Wide_String_Read_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2776 RE_Wide_String_Write => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2777
kono
parents:
diff changeset
2778 RE_Wide_String_Write_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2779 RE_Wide_Wide_String_Input => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2780 RE_Wide_Wide_String_Input_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2781 RE_Wide_Wide_String_Output => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2782 RE_Wide_Wide_String_Output_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2783 RE_Wide_Wide_String_Read => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2784 RE_Wide_Wide_String_Read_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2785 RE_Wide_Wide_String_Write => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2786 RE_Wide_Wide_String_Write_Blk_IO => System_Strings_Stream_Ops,
kono
parents:
diff changeset
2787
kono
parents:
diff changeset
2788 RE_Task_Info_Type => System_Task_Info,
kono
parents:
diff changeset
2789 RE_Unspecified_Task_Info => System_Task_Info,
kono
parents:
diff changeset
2790
kono
parents:
diff changeset
2791 RE_Task_Procedure_Access => System_Tasking,
kono
parents:
diff changeset
2792 RO_ST_Number_Of_Entries => System_Tasking,
kono
parents:
diff changeset
2793
kono
parents:
diff changeset
2794 RO_ST_Task_Id => System_Tasking,
kono
parents:
diff changeset
2795 RO_ST_Null_Task => System_Tasking,
kono
parents:
diff changeset
2796
kono
parents:
diff changeset
2797 RE_Call_Modes => System_Tasking,
kono
parents:
diff changeset
2798 RE_Simple_Call => System_Tasking,
kono
parents:
diff changeset
2799 RE_Conditional_Call => System_Tasking,
kono
parents:
diff changeset
2800 RE_Asynchronous_Call => System_Tasking,
kono
parents:
diff changeset
2801
kono
parents:
diff changeset
2802 RE_Foreign_Task_Level => System_Tasking,
kono
parents:
diff changeset
2803 RE_Environment_Task_Level => System_Tasking,
kono
parents:
diff changeset
2804 RE_Independent_Task_Level => System_Tasking,
kono
parents:
diff changeset
2805 RE_Library_Task_Level => System_Tasking,
kono
parents:
diff changeset
2806
kono
parents:
diff changeset
2807 RE_Ada_Task_Control_Block => System_Tasking,
kono
parents:
diff changeset
2808
kono
parents:
diff changeset
2809 RE_Task_List => System_Tasking,
kono
parents:
diff changeset
2810
kono
parents:
diff changeset
2811 RE_Accept_List => System_Tasking,
kono
parents:
diff changeset
2812 RE_No_Rendezvous => System_Tasking,
kono
parents:
diff changeset
2813 RE_Null_Task_Entry => System_Tasking,
kono
parents:
diff changeset
2814 RE_Select_Index => System_Tasking,
kono
parents:
diff changeset
2815 RE_Else_Mode => System_Tasking,
kono
parents:
diff changeset
2816 RE_Simple_Mode => System_Tasking,
kono
parents:
diff changeset
2817 RE_Terminate_Mode => System_Tasking,
kono
parents:
diff changeset
2818 RE_Delay_Mode => System_Tasking,
kono
parents:
diff changeset
2819 RE_Entry_Index => System_Tasking,
kono
parents:
diff changeset
2820 RE_Task_Entry_Index => System_Tasking,
kono
parents:
diff changeset
2821 RE_Self => System_Tasking,
kono
parents:
diff changeset
2822
kono
parents:
diff changeset
2823 RE_Master_Id => System_Tasking,
kono
parents:
diff changeset
2824 RE_Unspecified_Priority => System_Tasking,
kono
parents:
diff changeset
2825
kono
parents:
diff changeset
2826 RE_Activation_Chain => System_Tasking,
kono
parents:
diff changeset
2827 RE_Activation_Chain_Access => System_Tasking,
kono
parents:
diff changeset
2828 RE_Storage_Size => System_Tasking,
kono
parents:
diff changeset
2829
kono
parents:
diff changeset
2830 RE_Unspecified_CPU => System_Tasking,
kono
parents:
diff changeset
2831
kono
parents:
diff changeset
2832 RE_Dispatching_Domain_Access => System_Tasking,
kono
parents:
diff changeset
2833
kono
parents:
diff changeset
2834 RE_Abort_Defer => System_Soft_Links,
kono
parents:
diff changeset
2835 RE_Abort_Undefer => System_Soft_Links,
kono
parents:
diff changeset
2836 RE_Complete_Master => System_Soft_Links,
kono
parents:
diff changeset
2837 RE_Current_Master => System_Soft_Links,
kono
parents:
diff changeset
2838 RE_Dummy_Communication_Block => System_Soft_Links,
kono
parents:
diff changeset
2839 RE_Enter_Master => System_Soft_Links,
kono
parents:
diff changeset
2840 RE_Get_Current_Excep => System_Soft_Links,
kono
parents:
diff changeset
2841 RE_Get_GNAT_Exception => System_Soft_Links,
kono
parents:
diff changeset
2842 RE_Save_Library_Occurrence => System_Soft_Links,
kono
parents:
diff changeset
2843
kono
parents:
diff changeset
2844 RE_Bits_1 => System_Unsigned_Types,
kono
parents:
diff changeset
2845 RE_Bits_2 => System_Unsigned_Types,
kono
parents:
diff changeset
2846 RE_Bits_4 => System_Unsigned_Types,
kono
parents:
diff changeset
2847 RE_Float_Unsigned => System_Unsigned_Types,
kono
parents:
diff changeset
2848 RE_Long_Unsigned => System_Unsigned_Types,
kono
parents:
diff changeset
2849 RE_Long_Long_Unsigned => System_Unsigned_Types,
kono
parents:
diff changeset
2850 RE_Packed_Byte => System_Unsigned_Types,
kono
parents:
diff changeset
2851 RE_Packed_Bytes1 => System_Unsigned_Types,
kono
parents:
diff changeset
2852 RE_Packed_Bytes2 => System_Unsigned_Types,
kono
parents:
diff changeset
2853 RE_Packed_Bytes4 => System_Unsigned_Types,
kono
parents:
diff changeset
2854 RE_Short_Unsigned => System_Unsigned_Types,
kono
parents:
diff changeset
2855 RE_Short_Short_Unsigned => System_Unsigned_Types,
kono
parents:
diff changeset
2856 RE_Unsigned => System_Unsigned_Types,
kono
parents:
diff changeset
2857
kono
parents:
diff changeset
2858 RE_Value_Boolean => System_Val_Bool,
kono
parents:
diff changeset
2859
kono
parents:
diff changeset
2860 RE_Value_Character => System_Val_Char,
kono
parents:
diff changeset
2861
kono
parents:
diff changeset
2862 RE_Value_Decimal => System_Val_Dec,
kono
parents:
diff changeset
2863
kono
parents:
diff changeset
2864 RE_Value_Enumeration_8 => System_Val_Enum,
kono
parents:
diff changeset
2865 RE_Value_Enumeration_16 => System_Val_Enum,
kono
parents:
diff changeset
2866 RE_Value_Enumeration_32 => System_Val_Enum,
kono
parents:
diff changeset
2867
kono
parents:
diff changeset
2868 RE_Value_Integer => System_Val_Int,
kono
parents:
diff changeset
2869
kono
parents:
diff changeset
2870 RE_Value_Long_Long_Decimal => System_Val_LLD,
kono
parents:
diff changeset
2871
kono
parents:
diff changeset
2872 RE_Value_Long_Long_Integer => System_Val_LLI,
kono
parents:
diff changeset
2873
kono
parents:
diff changeset
2874 RE_Value_Long_Long_Unsigned => System_Val_LLU,
kono
parents:
diff changeset
2875
kono
parents:
diff changeset
2876 RE_Value_Real => System_Val_Real,
kono
parents:
diff changeset
2877
kono
parents:
diff changeset
2878 RE_Value_Unsigned => System_Val_Uns,
kono
parents:
diff changeset
2879
kono
parents:
diff changeset
2880 RE_Value_Wide_Character => System_Val_WChar,
kono
parents:
diff changeset
2881 RE_Value_Wide_Wide_Character => System_Val_WChar,
kono
parents:
diff changeset
2882
kono
parents:
diff changeset
2883 RE_Version_String => System_Version_Control,
kono
parents:
diff changeset
2884 RE_Get_Version_String => System_Version_Control,
kono
parents:
diff changeset
2885
kono
parents:
diff changeset
2886 RE_String_To_Wide_String => System_WCh_StW,
kono
parents:
diff changeset
2887 RE_String_To_Wide_Wide_String => System_WCh_StW,
kono
parents:
diff changeset
2888
kono
parents:
diff changeset
2889 RE_Wide_String_To_String => System_WCh_WtS,
kono
parents:
diff changeset
2890 RE_Wide_Wide_String_To_String => System_WCh_WtS,
kono
parents:
diff changeset
2891
kono
parents:
diff changeset
2892 RE_Wide_Wide_Width_Character => System_WWd_Char,
kono
parents:
diff changeset
2893 RE_Wide_Width_Character => System_WWd_Char,
kono
parents:
diff changeset
2894
kono
parents:
diff changeset
2895 RE_Wide_Wide_Width_Enumeration_8 => System_WWd_Enum,
kono
parents:
diff changeset
2896 RE_Wide_Wide_Width_Enumeration_16 => System_WWd_Enum,
kono
parents:
diff changeset
2897 RE_Wide_Wide_Width_Enumeration_32 => System_WWd_Enum,
kono
parents:
diff changeset
2898
kono
parents:
diff changeset
2899 RE_Wide_Width_Enumeration_8 => System_WWd_Enum,
kono
parents:
diff changeset
2900 RE_Wide_Width_Enumeration_16 => System_WWd_Enum,
kono
parents:
diff changeset
2901 RE_Wide_Width_Enumeration_32 => System_WWd_Enum,
kono
parents:
diff changeset
2902
kono
parents:
diff changeset
2903 RE_Wide_Wide_Width_Wide_Character => System_WWd_Wchar,
kono
parents:
diff changeset
2904 RE_Wide_Wide_Width_Wide_Wide_Char => System_WWd_Wchar,
kono
parents:
diff changeset
2905
kono
parents:
diff changeset
2906 RE_Wide_Width_Wide_Character => System_WWd_Wchar,
kono
parents:
diff changeset
2907 RE_Wide_Width_Wide_Wide_Character => System_WWd_Wchar,
kono
parents:
diff changeset
2908
kono
parents:
diff changeset
2909 RE_Width_Boolean => System_Wid_Bool,
kono
parents:
diff changeset
2910
kono
parents:
diff changeset
2911 RE_Width_Character => System_Wid_Char,
kono
parents:
diff changeset
2912
kono
parents:
diff changeset
2913 RE_Width_Enumeration_8 => System_Wid_Enum,
kono
parents:
diff changeset
2914 RE_Width_Enumeration_16 => System_Wid_Enum,
kono
parents:
diff changeset
2915 RE_Width_Enumeration_32 => System_Wid_Enum,
kono
parents:
diff changeset
2916
kono
parents:
diff changeset
2917 RE_Width_Long_Long_Integer => System_Wid_LLI,
kono
parents:
diff changeset
2918
kono
parents:
diff changeset
2919 RE_Width_Long_Long_Unsigned => System_Wid_LLU,
kono
parents:
diff changeset
2920
kono
parents:
diff changeset
2921 RE_Width_Wide_Character => System_Wid_WChar,
kono
parents:
diff changeset
2922 RE_Width_Wide_Wide_Character => System_Wid_WChar,
kono
parents:
diff changeset
2923
kono
parents:
diff changeset
2924 RE_Dispatching_Domain =>
kono
parents:
diff changeset
2925 System_Multiprocessors_Dispatching_Domains,
kono
parents:
diff changeset
2926
kono
parents:
diff changeset
2927 RE_Protected_Entry_Body_Array =>
kono
parents:
diff changeset
2928 System_Tasking_Protected_Objects_Entries,
kono
parents:
diff changeset
2929 RE_Protected_Entry_Queue_Max_Array =>
kono
parents:
diff changeset
2930 System_Tasking_Protected_Objects_Entries,
kono
parents:
diff changeset
2931 RE_Protection_Entries =>
kono
parents:
diff changeset
2932 System_Tasking_Protected_Objects_Entries,
kono
parents:
diff changeset
2933 RE_Protection_Entries_Access =>
kono
parents:
diff changeset
2934 System_Tasking_Protected_Objects_Entries,
kono
parents:
diff changeset
2935 RE_Initialize_Protection_Entries =>
kono
parents:
diff changeset
2936 System_Tasking_Protected_Objects_Entries,
kono
parents:
diff changeset
2937 RE_Lock_Entries =>
kono
parents:
diff changeset
2938 System_Tasking_Protected_Objects_Entries,
kono
parents:
diff changeset
2939 RE_Unlock_Entries =>
kono
parents:
diff changeset
2940 System_Tasking_Protected_Objects_Entries,
kono
parents:
diff changeset
2941 RO_PE_Get_Ceiling =>
kono
parents:
diff changeset
2942 System_Tasking_Protected_Objects_Entries,
kono
parents:
diff changeset
2943 RO_PE_Number_Of_Entries =>
kono
parents:
diff changeset
2944 System_Tasking_Protected_Objects_Entries,
kono
parents:
diff changeset
2945 RO_PE_Set_Ceiling =>
kono
parents:
diff changeset
2946 System_Tasking_Protected_Objects_Entries,
kono
parents:
diff changeset
2947
kono
parents:
diff changeset
2948 RE_Communication_Block =>
kono
parents:
diff changeset
2949 System_Tasking_Protected_Objects_Operations,
kono
parents:
diff changeset
2950 RE_Protected_Entry_Call =>
kono
parents:
diff changeset
2951 System_Tasking_Protected_Objects_Operations,
kono
parents:
diff changeset
2952 RE_Service_Entries =>
kono
parents:
diff changeset
2953 System_Tasking_Protected_Objects_Operations,
kono
parents:
diff changeset
2954 RE_Cancel_Protected_Entry_Call =>
kono
parents:
diff changeset
2955 System_Tasking_Protected_Objects_Operations,
kono
parents:
diff changeset
2956 RE_Enqueued =>
kono
parents:
diff changeset
2957 System_Tasking_Protected_Objects_Operations,
kono
parents:
diff changeset
2958 RE_Cancelled =>
kono
parents:
diff changeset
2959 System_Tasking_Protected_Objects_Operations,
kono
parents:
diff changeset
2960 RE_Complete_Entry_Body =>
kono
parents:
diff changeset
2961 System_Tasking_Protected_Objects_Operations,
kono
parents:
diff changeset
2962 RE_Exceptional_Complete_Entry_Body =>
kono
parents:
diff changeset
2963 System_Tasking_Protected_Objects_Operations,
kono
parents:
diff changeset
2964 RE_Requeue_Protected_Entry =>
kono
parents:
diff changeset
2965 System_Tasking_Protected_Objects_Operations,
kono
parents:
diff changeset
2966 RE_Requeue_Task_To_Protected_Entry =>
kono
parents:
diff changeset
2967 System_Tasking_Protected_Objects_Operations,
kono
parents:
diff changeset
2968 RE_Protected_Count =>
kono
parents:
diff changeset
2969 System_Tasking_Protected_Objects_Operations,
kono
parents:
diff changeset
2970 RE_Protected_Entry_Caller =>
kono
parents:
diff changeset
2971 System_Tasking_Protected_Objects_Operations,
kono
parents:
diff changeset
2972 RE_Timed_Protected_Entry_Call =>
kono
parents:
diff changeset
2973 System_Tasking_Protected_Objects_Operations,
kono
parents:
diff changeset
2974
kono
parents:
diff changeset
2975 RE_Protection_Entry =>
kono
parents:
diff changeset
2976 System_Tasking_Protected_Objects_Single_Entry,
kono
parents:
diff changeset
2977 RE_Initialize_Protection_Entry =>
kono
parents:
diff changeset
2978 System_Tasking_Protected_Objects_Single_Entry,
kono
parents:
diff changeset
2979 RE_Lock_Entry =>
kono
parents:
diff changeset
2980 System_Tasking_Protected_Objects_Single_Entry,
kono
parents:
diff changeset
2981 RE_Unlock_Entry =>
kono
parents:
diff changeset
2982 System_Tasking_Protected_Objects_Single_Entry,
kono
parents:
diff changeset
2983 RE_Protected_Single_Entry_Call =>
kono
parents:
diff changeset
2984 System_Tasking_Protected_Objects_Single_Entry,
kono
parents:
diff changeset
2985 RE_Service_Entry =>
kono
parents:
diff changeset
2986 System_Tasking_Protected_Objects_Single_Entry,
kono
parents:
diff changeset
2987 RE_Exceptional_Complete_Single_Entry_Body =>
kono
parents:
diff changeset
2988 System_Tasking_Protected_Objects_Single_Entry,
kono
parents:
diff changeset
2989 RE_Protected_Count_Entry =>
kono
parents:
diff changeset
2990 System_Tasking_Protected_Objects_Single_Entry,
kono
parents:
diff changeset
2991 RE_Protected_Single_Entry_Caller =>
kono
parents:
diff changeset
2992 System_Tasking_Protected_Objects_Single_Entry,
kono
parents:
diff changeset
2993
kono
parents:
diff changeset
2994 RE_Protected_Entry_Index => System_Tasking_Protected_Objects,
kono
parents:
diff changeset
2995 RE_Entry_Body => System_Tasking_Protected_Objects,
kono
parents:
diff changeset
2996 RE_Protection => System_Tasking_Protected_Objects,
kono
parents:
diff changeset
2997 RE_Initialize_Protection => System_Tasking_Protected_Objects,
kono
parents:
diff changeset
2998 RE_Finalize_Protection => System_Tasking_Protected_Objects,
kono
parents:
diff changeset
2999 RE_Lock => System_Tasking_Protected_Objects,
kono
parents:
diff changeset
3000 RE_Lock_Read_Only => System_Tasking_Protected_Objects,
kono
parents:
diff changeset
3001 RE_Get_Ceiling => System_Tasking_Protected_Objects,
kono
parents:
diff changeset
3002 RE_Set_Ceiling => System_Tasking_Protected_Objects,
kono
parents:
diff changeset
3003 RE_Unlock => System_Tasking_Protected_Objects,
kono
parents:
diff changeset
3004
kono
parents:
diff changeset
3005 RE_Delay_Block => System_Tasking_Async_Delays,
kono
parents:
diff changeset
3006 RE_Timed_Out => System_Tasking_Async_Delays,
kono
parents:
diff changeset
3007 RE_Cancel_Async_Delay => System_Tasking_Async_Delays,
kono
parents:
diff changeset
3008 RE_Enqueue_Duration => System_Tasking_Async_Delays,
kono
parents:
diff changeset
3009
kono
parents:
diff changeset
3010 RE_Enqueue_Calendar =>
kono
parents:
diff changeset
3011 System_Tasking_Async_Delays_Enqueue_Calendar,
kono
parents:
diff changeset
3012 RE_Enqueue_RT =>
kono
parents:
diff changeset
3013 System_Tasking_Async_Delays_Enqueue_RT,
kono
parents:
diff changeset
3014
kono
parents:
diff changeset
3015 RE_Accept_Call => System_Tasking_Rendezvous,
kono
parents:
diff changeset
3016 RE_Accept_Trivial => System_Tasking_Rendezvous,
kono
parents:
diff changeset
3017 RE_Callable => System_Tasking_Rendezvous,
kono
parents:
diff changeset
3018 RE_Call_Simple => System_Tasking_Rendezvous,
kono
parents:
diff changeset
3019 RE_Cancel_Task_Entry_Call => System_Tasking_Rendezvous,
kono
parents:
diff changeset
3020 RE_Requeue_Task_Entry => System_Tasking_Rendezvous,
kono
parents:
diff changeset
3021 RE_Requeue_Protected_To_Task_Entry => System_Tasking_Rendezvous,
kono
parents:
diff changeset
3022 RE_Complete_Rendezvous => System_Tasking_Rendezvous,
kono
parents:
diff changeset
3023 RE_Task_Count => System_Tasking_Rendezvous,
kono
parents:
diff changeset
3024 RE_Exceptional_Complete_Rendezvous => System_Tasking_Rendezvous,
kono
parents:
diff changeset
3025 RE_Selective_Wait => System_Tasking_Rendezvous,
kono
parents:
diff changeset
3026 RE_Task_Entry_Call => System_Tasking_Rendezvous,
kono
parents:
diff changeset
3027 RE_Task_Entry_Caller => System_Tasking_Rendezvous,
kono
parents:
diff changeset
3028 RE_Timed_Task_Entry_Call => System_Tasking_Rendezvous,
kono
parents:
diff changeset
3029 RE_Timed_Selective_Wait => System_Tasking_Rendezvous,
kono
parents:
diff changeset
3030
kono
parents:
diff changeset
3031 RE_Activate_Restricted_Tasks => System_Tasking_Restricted_Stages,
kono
parents:
diff changeset
3032 RE_Complete_Restricted_Activation => System_Tasking_Restricted_Stages,
kono
parents:
diff changeset
3033 RE_Create_Restricted_Task => System_Tasking_Restricted_Stages,
kono
parents:
diff changeset
3034 RE_Create_Restricted_Task_Sequential => System_Tasking_Restricted_Stages,
kono
parents:
diff changeset
3035 RE_Complete_Restricted_Task => System_Tasking_Restricted_Stages,
kono
parents:
diff changeset
3036 RE_Restricted_Terminated => System_Tasking_Restricted_Stages,
kono
parents:
diff changeset
3037
kono
parents:
diff changeset
3038 RE_Abort_Tasks => System_Tasking_Stages,
kono
parents:
diff changeset
3039 RE_Activate_Tasks => System_Tasking_Stages,
kono
parents:
diff changeset
3040 RE_Complete_Activation => System_Tasking_Stages,
kono
parents:
diff changeset
3041 RE_Create_Task => System_Tasking_Stages,
kono
parents:
diff changeset
3042 RE_Complete_Task => System_Tasking_Stages,
kono
parents:
diff changeset
3043 RE_Free_Task => System_Tasking_Stages,
kono
parents:
diff changeset
3044 RE_Expunge_Unactivated_Tasks => System_Tasking_Stages,
kono
parents:
diff changeset
3045 RE_Move_Activation_Chain => System_Tasking_Stages,
kono
parents:
diff changeset
3046 RE_Terminated => System_Tasking_Stages);
kono
parents:
diff changeset
3047
kono
parents:
diff changeset
3048 --------------------------------
kono
parents:
diff changeset
3049 -- Configurable Run-Time Mode --
kono
parents:
diff changeset
3050 --------------------------------
kono
parents:
diff changeset
3051
kono
parents:
diff changeset
3052 -- Part of the job of Rtsfind is to enforce run-time restrictions in
kono
parents:
diff changeset
3053 -- configurable run-time mode. This is done by monitoring implicit access
kono
parents:
diff changeset
3054 -- to the run time library requested by calls to the RTE function. A call
kono
parents:
diff changeset
3055 -- may be invalid in configurable run-time mode for either of the
kono
parents:
diff changeset
3056 -- following two reasons:
kono
parents:
diff changeset
3057
kono
parents:
diff changeset
3058 -- 1. File in which entity lives is not present in run-time library
kono
parents:
diff changeset
3059 -- 2. File is present, but entity is not defined in the file
kono
parents:
diff changeset
3060
kono
parents:
diff changeset
3061 -- In normal mode, either or these two situations is a fatal error
kono
parents:
diff changeset
3062 -- that indicates that the run-time library is incorrectly configured,
kono
parents:
diff changeset
3063 -- and a fatal error message is issued to signal this error.
kono
parents:
diff changeset
3064
kono
parents:
diff changeset
3065 -- In configurable run-time mode, either of these two situations indicates
kono
parents:
diff changeset
3066 -- simply that the corresponding operation is not available in the current
kono
parents:
diff changeset
3067 -- run-time that is use. This is not a configuration error, but rather a
kono
parents:
diff changeset
3068 -- natural result of a limited run-time. This situation is signalled by
kono
parents:
diff changeset
3069 -- raising the exception RE_Not_Available. The caller must respond to
kono
parents:
diff changeset
3070 -- this exception by posting an appropriate error message.
kono
parents:
diff changeset
3071
kono
parents:
diff changeset
3072 ----------------------
kono
parents:
diff changeset
3073 -- No_Run_Time_Mode --
kono
parents:
diff changeset
3074 ----------------------
kono
parents:
diff changeset
3075
kono
parents:
diff changeset
3076 -- For backwards compatibility with previous versions of GNAT, the
kono
parents:
diff changeset
3077 -- compiler recognizes the pragma No_Run_Time. This provides a special
kono
parents:
diff changeset
3078 -- version of configurable run-time mode that operates with the standard
kono
parents:
diff changeset
3079 -- run-time library, but allows only a subset of entities to be
kono
parents:
diff changeset
3080 -- accessed. If any other entity is accessed, then it is treated
kono
parents:
diff changeset
3081 -- as a configurable run-time violation, and the exception
kono
parents:
diff changeset
3082 -- RE_Not_Available is raised.
kono
parents:
diff changeset
3083
kono
parents:
diff changeset
3084 -- The following array defines the set of units that contain entities
kono
parents:
diff changeset
3085 -- that can be referenced in No_Run_Time mode. For each of these units,
kono
parents:
diff changeset
3086 -- all entities defined in the unit can be used in this mode.
kono
parents:
diff changeset
3087
kono
parents:
diff changeset
3088 OK_No_Run_Time_Unit : constant array (RTU_Id) of Boolean :=
kono
parents:
diff changeset
3089 (Ada_Exceptions => True,
kono
parents:
diff changeset
3090 Ada_Tags => True,
kono
parents:
diff changeset
3091 Interfaces => True,
kono
parents:
diff changeset
3092 System => True,
kono
parents:
diff changeset
3093 System_Parameters => True,
kono
parents:
diff changeset
3094 System_Fat_Flt => True,
kono
parents:
diff changeset
3095 System_Fat_LFlt => True,
kono
parents:
diff changeset
3096 System_Fat_LLF => True,
kono
parents:
diff changeset
3097 System_Fat_SFlt => True,
kono
parents:
diff changeset
3098 System_Machine_Code => True,
kono
parents:
diff changeset
3099 System_Secondary_Stack => True,
kono
parents:
diff changeset
3100 System_Storage_Elements => True,
kono
parents:
diff changeset
3101 System_Task_Info => True,
kono
parents:
diff changeset
3102 System_Unsigned_Types => True,
kono
parents:
diff changeset
3103 others => False);
kono
parents:
diff changeset
3104
kono
parents:
diff changeset
3105 -----------------
kono
parents:
diff changeset
3106 -- Subprograms --
kono
parents:
diff changeset
3107 -----------------
kono
parents:
diff changeset
3108
kono
parents:
diff changeset
3109 RE_Not_Available : exception;
kono
parents:
diff changeset
3110 -- Raised by RTE if the requested entity is not available. This can
kono
parents:
diff changeset
3111 -- occur either because the file in which the entity should be found
kono
parents:
diff changeset
3112 -- does not exist, or because the entity is not present in the file.
kono
parents:
diff changeset
3113
kono
parents:
diff changeset
3114 procedure Check_Text_IO_Special_Unit (Nam : Node_Id);
kono
parents:
diff changeset
3115 -- In Ada 83, and hence for compatibility in later versions of Ada, package
kono
parents:
diff changeset
3116 -- Text_IO has generic subpackages (e.g. Integer_IO). They really should be
kono
parents:
diff changeset
3117 -- child packages, and in GNAT, they *are* child packages. To maintain the
kono
parents:
diff changeset
3118 -- required compatibility, this routine is called for package renamings and
kono
parents:
diff changeset
3119 -- generic instantiations, with the simple name of the referenced package.
kono
parents:
diff changeset
3120 -- If Text_IO has been with'ed and if the simple name of Nam matches
kono
parents:
diff changeset
3121 -- one of the subpackages of Text_IO, then this subpackage is with'ed
kono
parents:
diff changeset
3122 -- automatically. The important result of this approach is that Text_IO
kono
parents:
diff changeset
3123 -- does not drag in all the code for the subpackages unless they are used.
kono
parents:
diff changeset
3124 -- Our test is a little crude, and could drag in stuff when it is not
kono
parents:
diff changeset
3125 -- necessary, but that is acceptable. Wide_[Wide_]Text_IO is handled in
kono
parents:
diff changeset
3126 -- a similar manner.
kono
parents:
diff changeset
3127
kono
parents:
diff changeset
3128 procedure Initialize;
kono
parents:
diff changeset
3129 -- Procedure to initialize data structures used by RTE. Called at the
kono
parents:
diff changeset
3130 -- start of processing a new main source file. Must be called after
kono
parents:
diff changeset
3131 -- Initialize_Snames (since names it enters into name table must come
kono
parents:
diff changeset
3132 -- after names entered by Snames).
kono
parents:
diff changeset
3133
kono
parents:
diff changeset
3134 function Is_RTE (Ent : Entity_Id; E : RE_Id) return Boolean;
kono
parents:
diff changeset
3135 -- This function determines if the given entity corresponds to the entity
kono
parents:
diff changeset
3136 -- referenced by RE_Id. It is similar in effect to (Ent = RTE (E)) except
kono
parents:
diff changeset
3137 -- that the latter would unconditionally load the unit containing E. For
kono
parents:
diff changeset
3138 -- this call, if the unit is not loaded, then a result of False is returned
kono
parents:
diff changeset
3139 -- immediately, since obviously Ent cannot be the entity in question if the
kono
parents:
diff changeset
3140 -- corresponding unit has not been loaded.
kono
parents:
diff changeset
3141
kono
parents:
diff changeset
3142 function Is_RTU (Ent : Entity_Id; U : RTU_Id) return Boolean;
kono
parents:
diff changeset
3143 pragma Inline (Is_RTU);
kono
parents:
diff changeset
3144 -- This function determines if the given entity corresponds to the entity
kono
parents:
diff changeset
3145 -- for the unit referenced by U. If this unit has not been loaded, the
kono
parents:
diff changeset
3146 -- answer will always be False. If the unit has been loaded, then the
kono
parents:
diff changeset
3147 -- entity id values are compared and True is returned if Ent is the
kono
parents:
diff changeset
3148 -- entity for this unit.
kono
parents:
diff changeset
3149
kono
parents:
diff changeset
3150 function Is_Text_IO_Special_Unit (Nam : Node_Id) return Boolean;
kono
parents:
diff changeset
3151 -- Returns True if the given Nam is an Expanded Name, whose Prefix is Ada,
kono
parents:
diff changeset
3152 -- and whose selector is either Text_IO.xxx or Wide_Text_IO.xxx or
kono
parents:
diff changeset
3153 -- Wide_Wide_Text_IO.xxx, where xxx is one of the subpackages of Text_IO
kono
parents:
diff changeset
3154 -- that is specially handled as described for Check_Text_IO_Special_Unit.
kono
parents:
diff changeset
3155
kono
parents:
diff changeset
3156 function RTE (E : RE_Id) return Entity_Id;
kono
parents:
diff changeset
3157 -- Given the entity defined in the above tables, as identified by the
kono
parents:
diff changeset
3158 -- corresponding value in the RE_Id enumeration type, returns the Id of the
kono
parents:
diff changeset
3159 -- corresponding entity, first loading in (parsing, analyzing and
kono
parents:
diff changeset
3160 -- expanding) its spec if the unit has not already been loaded. For
kono
parents:
diff changeset
3161 -- efficiency reasons, this routine restricts the search to the package
kono
parents:
diff changeset
3162 -- entity chain.
kono
parents:
diff changeset
3163 --
kono
parents:
diff changeset
3164 -- Note: In the case of a package, RTE can return either an entity that is
kono
parents:
diff changeset
3165 -- declared at the top level of the package, or the package entity itself.
kono
parents:
diff changeset
3166 -- If an entity within the package has the same simple name as the package,
kono
parents:
diff changeset
3167 -- then the entity within the package is returned.
kono
parents:
diff changeset
3168 --
kono
parents:
diff changeset
3169 -- If RTE returns, the returned value is the required entity
kono
parents:
diff changeset
3170 --
kono
parents:
diff changeset
3171 -- If the entity is not available, then an error message is given. The
kono
parents:
diff changeset
3172 -- form of the message depends on whether we are in configurable run time
kono
parents:
diff changeset
3173 -- mode or not. In configurable run time mode, a missing entity is not
kono
parents:
diff changeset
3174 -- that surprising and merely says that the particular construct is not
kono
parents:
diff changeset
3175 -- supported by the run-time in use. If we are not in configurable run
kono
parents:
diff changeset
3176 -- time mode, a missing entity is some kind of run-time configuration
kono
parents:
diff changeset
3177 -- error. In either case, the result of the call is to raise the exception
kono
parents:
diff changeset
3178 -- RE_Not_Available, which should terminate the expansion of the current
kono
parents:
diff changeset
3179 -- construct.
kono
parents:
diff changeset
3180
kono
parents:
diff changeset
3181 function RTE_Available (E : RE_Id) return Boolean;
kono
parents:
diff changeset
3182 -- Returns true if a call to RTE will succeed without raising an exception
kono
parents:
diff changeset
3183 -- and without generating an error message, i.e. if the call will obtain
kono
parents:
diff changeset
3184 -- the desired entity without any problems.
kono
parents:
diff changeset
3185
kono
parents:
diff changeset
3186 function RTE_Record_Component (E : RE_Id) return Entity_Id;
kono
parents:
diff changeset
3187 -- Given the entity defined in the above tables, as identified by the
kono
parents:
diff changeset
3188 -- corresponding value in the RE_Id enumeration type, returns the Id of
kono
parents:
diff changeset
3189 -- the corresponding entity, first loading in (parsing, analyzing and
kono
parents:
diff changeset
3190 -- expanding) its spec if the unit has not already been loaded. For
kono
parents:
diff changeset
3191 -- efficiency reasons, this routine restricts the search of E to fields
kono
parents:
diff changeset
3192 -- of record type declarations found in the package entity chain.
kono
parents:
diff changeset
3193 --
kono
parents:
diff changeset
3194 -- Note: In the case of a package, RTE can return either an entity that is
kono
parents:
diff changeset
3195 -- declared at the top level of the package, or the package entity itself.
kono
parents:
diff changeset
3196 -- If an entity within the package has the same simple name as the package,
kono
parents:
diff changeset
3197 -- then the entity within the package is returned.
kono
parents:
diff changeset
3198 --
kono
parents:
diff changeset
3199 -- If RTE returns, the returned value is the required entity
kono
parents:
diff changeset
3200 --
kono
parents:
diff changeset
3201 -- If the entity is not available, then an error message is given. The
kono
parents:
diff changeset
3202 -- form of the message depends on whether we are in configurable run time
kono
parents:
diff changeset
3203 -- mode or not. In configurable run time mode, a missing entity is not
kono
parents:
diff changeset
3204 -- that surprising and merely says that the particular construct is not
kono
parents:
diff changeset
3205 -- supported by the run-time in use. If we are not in configurable run
kono
parents:
diff changeset
3206 -- time mode, a missing entity is some kind of run-time configuration
kono
parents:
diff changeset
3207 -- error. In either case, the result of the call is to raise the exception
kono
parents:
diff changeset
3208 -- RE_Not_Available, which should terminate the expansion of the current
kono
parents:
diff changeset
3209 -- construct.
kono
parents:
diff changeset
3210
kono
parents:
diff changeset
3211 function RTE_Record_Component_Available (E : RE_Id) return Boolean;
kono
parents:
diff changeset
3212 -- Returns true if a call to RTE_Record_Component will succeed without
kono
parents:
diff changeset
3213 -- raising an exception and without generating an error message, i.e.
kono
parents:
diff changeset
3214 -- if the call will obtain the desired entity without any problems.
kono
parents:
diff changeset
3215
kono
parents:
diff changeset
3216 function RTU_Entity (U : RTU_Id) return Entity_Id;
kono
parents:
diff changeset
3217 pragma Inline (RTU_Entity);
kono
parents:
diff changeset
3218 -- This function returns the entity for the unit referenced by U. If
kono
parents:
diff changeset
3219 -- this unit has not been loaded, it returns Empty.
kono
parents:
diff changeset
3220
kono
parents:
diff changeset
3221 function RTU_Loaded (U : RTU_Id) return Boolean;
kono
parents:
diff changeset
3222 pragma Inline (RTU_Loaded);
kono
parents:
diff changeset
3223 -- Returns true if indicated unit has already been successfully loaded.
kono
parents:
diff changeset
3224 -- If the unit has not been loaded, returns False. Note that this does
kono
parents:
diff changeset
3225 -- not mean that an attempt to load it subsequently would fail.
kono
parents:
diff changeset
3226
kono
parents:
diff changeset
3227 procedure Set_RTU_Loaded (N : Node_Id);
kono
parents:
diff changeset
3228 -- Register the predefined unit N as already loaded
kono
parents:
diff changeset
3229
kono
parents:
diff changeset
3230 procedure SPARK_Implicit_Load (E : RE_Id);
kono
parents:
diff changeset
3231 -- Force loading of the unit containing the entity E; only needed in
kono
parents:
diff changeset
3232 -- GNATprove mode when processing code that implicitly references a
kono
parents:
diff changeset
3233 -- given entity.
kono
parents:
diff changeset
3234
kono
parents:
diff changeset
3235 end Rtsfind;