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