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