OSDN Git Service

2004-06-28 Robert Dewar <dewar@gnat.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / rtsfind.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                              R T S F I N D                               --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2004, Free Software Foundation, Inc.         --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
19 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
20 -- MA 02111-1307, USA.                                                      --
21 --                                                                          --
22 -- GNAT was originally developed  by the GNAT team at  New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
24 --                                                                          --
25 ------------------------------------------------------------------------------
26
27 with Types; use Types;
28
29 package 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
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
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
129       --  Children of Ada.Interrupts
130
131       Ada_Interrupts_Names,
132
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,
179       System_Boolean_Array_Operations,
180       System_Checked_Pools,
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,
189       System_Exception_Table,
190       System_Exceptions,
191       System_Exn_Int,
192       System_Exn_LLF,
193       System_Exn_LLI,
194       System_Exp_Int,
195       System_Exp_LInt,
196       System_Exp_LLI,
197       System_Exp_LLU,
198       System_Exp_Mod,
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,
222       System_Memcop,
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,
282       System_PolyORB_Interface,
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,
302       System_Threads,
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
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
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
431      RE_Exceptions_Available_In_HIE,     -- Ada.Exceptions
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
452      RE_Interrupt_ID,                    -- Ada.Interrupts
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
460
461      RE_Names,                           -- Ada.Interupts.Names
462
463      RE_Root_Stream_Type,                -- Ada.Streams
464      RE_Stream_Element,                  -- Ada.Streams
465      RE_Stream_Element_Count,            -- Ada.Streams
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
497      RE_Abort_Task,                      -- Ada.Task_Identification
498      RE_Current_Task,                    -- Ada.Task_Identification
499      RO_AT_Task_Id,                      -- Ada.Task_Identification
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
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
599      RE_Checked_Pool,                    -- System.Checked_Pools
600
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
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
635      RE_Exn_Integer,                     -- System.Exn_Int
636
637      RE_Exn_Long_Long_Float,             -- System.Exn_LLF
638
639      RE_Exn_Long_Long_Integer,           -- System.Exn_LLI
640
641      RE_Exp_Integer,                     -- System.Exp_Int
642
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
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
710      RE_System_Interrupt_Id,             -- System.Interrupts
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
718      RE_memcpy,                          -- System_Memcop
719      RE_memmove,                         -- System_Memcop
720
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
1007      RE_DSA_Implementation,              -- System.Partition_Interface
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
1015      RE_Raise_Program_Error_Unknown_Tag, -- System.Partition_Interface
1016      RE_Register_Passive_Package,        -- System.Partition_Interface
1017      RE_Register_Receiving_Stub,         -- System.Partition_Interface
1018      RE_RCI_Info,                        -- System.Partition_Interface
1019      RE_Subprogram_Id,                   -- System.Partition_Interface
1020
1021      RE_Global_Pool_Object,              -- System.Pool_Global
1022
1023      RE_Unbounded_Reclaim_Pool,          -- System.Pool_Local
1024
1025      RE_Stack_Bounded_Pool,              -- System.Pool_Size
1026
1027      RE_Do_Apc,                          -- System.RPC
1028      RE_Do_Rpc,                          -- System.RPC
1029      RE_Params_Stream_Type,              -- System.RPC
1030      RE_Partition_ID,                    -- System.RPC
1031      RE_RPC_Receiver,                    -- System.RPC
1032
1033      RE_To_PolyORB_String,               -- System.PolyORB_Interface
1034      RE_To_Standard_String,              -- System.PolyORB_Interface
1035      RE_Caseless_String_Eq,              -- System.PolyORB_Interface
1036      RE_TypeCode,                        -- System.PolyORB_Interface
1037      RE_Any,                             -- System.PolyORB_Interface
1038      RE_Mode_In,                         -- System.PolyORB_Interface
1039      RE_Mode_Out,                        -- System.PolyORB_Interface
1040      RE_Mode_Inout,                      -- System.PolyORB_Interface
1041      RE_NamedValue,                      -- System.PolyORB_Interface
1042      RE_Result_Name,                     -- System.PolyORB_Interface
1043      RE_Object_Ref,                      -- System.PolyORB_Interface
1044      RE_Create_Any,                      -- System.PolyORB_Interface
1045      RE_Any_Aggregate_Build,             -- System.PolyORB_Interface
1046      RE_Add_Aggregate_Element,           -- System.PolyORB_Interface
1047      RE_Get_Aggregate_Element,           -- System.PolyORB_Interface
1048      RE_Content_Type,                    -- System.PolyORB_Interface
1049      RE_Any_Member_Type,                 -- System.PolyORB_Interface
1050      RE_Get_Nested_Sequence_Length,      -- System.PolyORB_Interface
1051      RE_Extract_Union_Value,             -- System.PolyORB_Interface
1052      RE_NVList_Ref,                      -- System.PolyORB_Interface
1053      RE_NVList_Create,                   -- System.PolyORB_Interface
1054      RE_NVList_Add_Item,                 -- System.PolyORB_Interface
1055      RE_Request_Access,                  -- System.PolyORB_Interface
1056      RE_Request_Create,                  -- System.PolyORB_Interface
1057      RE_Request_Invoke,                  -- System.PolyORB_Interface
1058      RE_Request_Arguments,               -- System.PolyORB_Interface
1059      RE_Request_Set_Out,                 -- System.PolyORB_Interface
1060      RE_Request_Raise_Occurrence,        -- System.PolyORB_Interface
1061      RE_Nil_Exc_List,                    -- System.PolyORB_Interface
1062      RE_Servant,                         -- System.PolyORB_Interface
1063      RE_Copy_Any_Value,                  -- System.PolyORB_Interface
1064      RE_Set_Result,                      -- System.PolyORB_Interface
1065      RE_Register_Obj_Receiving_Stub,     -- System.PolyORB_Interface
1066      RE_Register_Pkg_Receiving_Stub,     -- System.PolyORB_Interface
1067      RE_Is_Nil,                          -- System.PolyORB_Interface
1068      RE_Entity_Ptr,                      -- System.PolyORB_Interface
1069      RE_Entity_Of,                       -- System.PolyORB_Interface
1070      RE_Inc_Usage,                       -- System.PolyORB_Interface
1071      RE_Set_Ref,                         -- System.PolyORB_Interface
1072      RE_Get_Local_Address,               -- System.PolyORB_Interface
1073      RE_Get_Reference,                   -- System.PolyORB_Interface
1074      RE_Local_Oid_To_Address,            -- System.PolyORB_Interface
1075      RE_RCI_Locator,                     -- System.PolyORB_Interface
1076      RE_RCI_Subp_Info,                   -- System.PolyORB_Interface
1077      RE_RCI_Subp_Info_Array,             -- System.PolyORB_Interface
1078      RE_Get_RAS_Ref,                     -- System.PolyORB_Interface
1079      RE_Asynchronous_P_To_Sync_Scope,    -- System.PolyORB_Interface
1080      RE_Buffer_Stream_Type,              -- System.PolyORB_Interface
1081      RE_Allocate_Buffer,                 -- System.PolyORB_Interface
1082      RE_Release_Buffer,                  -- System.PolyORB_Interface
1083      RE_BS_To_Any,                       -- System.PolyORB_Interface
1084      RE_Any_To_BS,                       -- System.PolyORB_Interface
1085
1086      RE_FA_AD,                           -- System.PolyORB_Interface
1087      RE_FA_AS,                           -- System.PolyORB_Interface
1088      RE_FA_B,                            -- System.PolyORB_Interface
1089      RE_FA_C,                            -- System.PolyORB_Interface
1090      RE_FA_F,                            -- System.PolyORB_Interface
1091      RE_FA_I,                            -- System.PolyORB_Interface
1092      RE_FA_LF,                           -- System.PolyORB_Interface
1093      RE_FA_LI,                           -- System.PolyORB_Interface
1094      RE_FA_LLF,                          -- System.PolyORB_Interface
1095      RE_FA_LLI,                          -- System.PolyORB_Interface
1096      RE_FA_LLU,                          -- System.PolyORB_Interface
1097      RE_FA_LU,                           -- System.PolyORB_Interface
1098      RE_FA_SF,                           -- System.PolyORB_Interface
1099      RE_FA_SI,                           -- System.PolyORB_Interface
1100      RE_FA_SSI,                          -- System.PolyORB_Interface
1101      RE_FA_SSU,                          -- System.PolyORB_Interface
1102      RE_FA_SU,                           -- System.PolyORB_Interface
1103      RE_FA_U,                            -- System.PolyORB_Interface
1104      RE_FA_WC,                           -- System.PolyORB_Interface
1105      RE_FA_String,                       -- System.PolyORB_Interface
1106      RE_FA_ObjRef,                       -- System.PolyORB_Interface
1107
1108      RE_TA_AD,                           -- System.PolyORB_Interface
1109      RE_TA_AS,                           -- System.PolyORB_Interface
1110      RE_TA_B,                            -- System.PolyORB_Interface
1111      RE_TA_C,                            -- System.PolyORB_Interface
1112      RE_TA_F,                            -- System.PolyORB_Interface
1113      RE_TA_I,                            -- System.PolyORB_Interface
1114      RE_TA_LF,                           -- System.PolyORB_Interface
1115      RE_TA_LI,                           -- System.PolyORB_Interface
1116      RE_TA_LLF,                          -- System.PolyORB_Interface
1117      RE_TA_LLI,                          -- System.PolyORB_Interface
1118      RE_TA_LLU,                          -- System.PolyORB_Interface
1119      RE_TA_LU,                           -- System.PolyORB_Interface
1120      RE_TA_SF,                           -- System.PolyORB_Interface
1121      RE_TA_SI,                           -- System.PolyORB_Interface
1122      RE_TA_SSI,                          -- System.PolyORB_Interface
1123      RE_TA_SSU,                          -- System.PolyORB_Interface
1124      RE_TA_SU,                           -- System.PolyORB_Interface
1125      RE_TA_U,                            -- System.PolyORB_Interface
1126      RE_TA_WC,                           -- System.PolyORB_Interface
1127      RE_TA_String,                       -- System.PolyORB_Interface
1128      RE_TA_ObjRef,                       -- System.PolyORB_Interface
1129      RE_TA_TC,                           -- System.PolyORB_Interface
1130
1131      RE_TC_Alias,                        -- System.PolyORB_Interface
1132      RE_TC_Build,                        -- System.PolyORB_Interface
1133      RE_Set_TC,                          -- System.PolyORB_Interface
1134      RE_TC_Any,                          -- System.PolyORB_Interface
1135      RE_TC_AD,                           -- System.PolyORB_Interface
1136      RE_TC_AS,                           -- System.PolyORB_Interface
1137      RE_TC_B,                            -- System.PolyORB_Interface
1138      RE_TC_C,                            -- System.PolyORB_Interface
1139      RE_TC_F,                            -- System.PolyORB_Interface
1140      RE_TC_I,                            -- System.PolyORB_Interface
1141      RE_TC_LF,                           -- System.PolyORB_Interface
1142      RE_TC_LI,                           -- System.PolyORB_Interface
1143      RE_TC_LLF,                          -- System.PolyORB_Interface
1144      RE_TC_LLI,                          -- System.PolyORB_Interface
1145      RE_TC_LLU,                          -- System.PolyORB_Interface
1146      RE_TC_LU,                           -- System.PolyORB_Interface
1147      RE_TC_SF,                           -- System.PolyORB_Interface
1148      RE_TC_SI,                           -- System.PolyORB_Interface
1149      RE_TC_SSI,                          -- System.PolyORB_Interface
1150      RE_TC_SSU,                          -- System.PolyORB_Interface
1151      RE_TC_SU,                           -- System.PolyORB_Interface
1152      RE_TC_U,                            -- System.PolyORB_Interface
1153      RE_TC_Void,                         -- System.PolyORB_Interface
1154      RE_TC_Opaque,                       -- System.PolyORB_Interface,
1155      RE_TC_WC,                           -- System.PolyORB_Interface
1156      RE_TC_Array,                        -- System.PolyORB_Interface,
1157      RE_TC_Sequence,                     -- System.PolyORB_Interface,
1158      RE_TC_String,                       -- System.PolyORB_Interface,
1159      RE_TC_Struct,                       -- System.PolyORB_Interface,
1160      RE_TC_Union,                        -- System.PolyORB_Interface,
1161
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
1175      RE_Default_Secondary_Stack_Size,    -- System.Secondary_Stack
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
1189      RE_Exception_Code,                  -- System.Standard_Library
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
1198      RE_Allocate_Any,                    -- System_Storage_Pools,
1199      RE_Deallocate_Any,                  -- System_Storage_Pools,
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
1244      RE_Block_Stream_Ops_OK,             -- System.Stream_Attributes
1245
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
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
1259      RE_Task_Info_Type,                  -- System.Task_Info
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
1266      RO_ST_Task_Id,                      -- System.Tasking
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
1274      RE_Task_List,                       -- System.Tasking
1275
1276      RE_Accept_Alternative,              -- System.Tasking
1277      RE_Accept_List,                     -- System.Tasking
1278      RE_Accept_List_Access,              -- System.Tasking
1279      RE_Max_Select,                      -- System.Tasking
1280      RE_Max_Task_Entry,                  -- System.Tasking
1281      RE_No_Rendezvous,                   -- System.Tasking
1282      RE_Null_Task_Entry,                 -- System.Tasking
1283      RE_Positive_Select_Index,           -- System.Tasking
1284      RE_Select_Index,                    -- System.Tasking
1285      RE_Select_Modes,                    -- System.Tasking
1286      RE_Else_Mode,                       -- System.Tasking
1287      RE_Simple_Mode,                     -- System.Tasking
1288      RE_Terminate_Mode,                  -- System.Tasking
1289      RE_Delay_Mode,                      -- System.Tasking
1290      RE_Task_Entry_Index,                -- System.Tasking
1291      RE_Self,                            -- System.Tasking
1292
1293      RE_Master_Id,                       -- System.Tasking
1294      RE_Unspecified_Priority,            -- System.Tasking
1295
1296      RE_Activation_Chain,                -- System.Tasking
1297
1298      RE_Abort_Defer,                     -- System.Soft_Links
1299      RE_Abort_Undefer,                   -- System.Soft_Links
1300      RE_Complete_Master,                 -- System.Soft_Links
1301      RE_Current_Master,                  -- System.Soft_Links
1302      RE_Enter_Master,                    -- System.Soft_Links
1303      RE_Get_Current_Excep,               -- System.Soft_Links
1304      RE_Get_GNAT_Exception,              -- System.Soft_Links
1305      RE_Update_Exception,                -- System.Soft_Links
1306
1307      RE_ATSD,                            -- System.Threads
1308      RE_Thread_Body_Enter,               -- System.Threads
1309      RE_Thread_Body_Exceptional_Exit,    -- System.Threads
1310      RE_Thread_Body_Leave,               -- System.Threads
1311
1312      RE_Bits_1,                          -- System.Unsigned_Types
1313      RE_Bits_2,                          -- System.Unsigned_Types
1314      RE_Bits_4,                          -- System.Unsigned_Types
1315      RE_Float_Unsigned,                  -- System.Unsigned_Types
1316      RE_Long_Unsigned,                   -- System.Unsigned_Types
1317      RE_Long_Long_Unsigned,              -- System.Unsigned_Types
1318      RE_Packed_Byte,                     -- System.Unsigned_Types
1319      RE_Packed_Bytes1,                   -- System.Unsigned_Types
1320      RE_Packed_Bytes2,                   -- System.Unsigned_Types
1321      RE_Packed_Bytes4,                   -- System.Unsigned_Types
1322      RE_Short_Unsigned,                  -- System.Unsigned_Types
1323      RE_Short_Short_Unsigned,            -- System.Unsigned_Types
1324      RE_Unsigned,                        -- System.Unsigned_Types
1325
1326      RE_Value_Boolean,                   -- System.Val_Bool
1327
1328      RE_Value_Character,                 -- System.Val_Char
1329
1330      RE_Value_Decimal,                   -- System.Val_Dec
1331
1332      RE_Value_Enumeration_8,             -- System.Val_Enum
1333      RE_Value_Enumeration_16,            -- System.Val_Enum
1334      RE_Value_Enumeration_32,            -- System.Val_Enum
1335
1336      RE_Value_Integer,                   -- System.Val_Int
1337
1338      RE_Value_Long_Long_Decimal,         -- System.Val_LLD
1339
1340      RE_Value_Long_Long_Integer,         -- System.Val_LLI
1341
1342      RE_Value_Long_Long_Unsigned,        -- System.Val_LLU
1343
1344      RE_Value_Real,                      -- System.Val_Real
1345
1346      RE_Value_Unsigned,                  -- System.Val_Uns
1347
1348      RE_Value_Wide_Character,            -- System.Val_WChar
1349
1350      RE_D,                               -- System.Vax_Float_Operations
1351      RE_F,                               -- System.Vax_Float_Operations
1352      RE_G,                               -- System.Vax_Float_Operations
1353      RE_Q,                               -- System.Vax_Float_Operations
1354      RE_S,                               -- System.Vax_Float_Operations
1355      RE_T,                               -- System.Vax_Float_Operations
1356
1357      RE_D_To_G,                          -- System.Vax_Float_Operations
1358      RE_F_To_G,                          -- System.Vax_Float_Operations
1359      RE_F_To_Q,                          -- System.Vax_Float_Operations
1360      RE_F_To_S,                          -- System.Vax_Float_Operations
1361      RE_G_To_D,                          -- System.Vax_Float_Operations
1362      RE_G_To_F,                          -- System.Vax_Float_Operations
1363      RE_G_To_Q,                          -- System.Vax_Float_Operations
1364      RE_G_To_T,                          -- System.Vax_Float_Operations
1365      RE_Q_To_F,                          -- System.Vax_Float_Operations
1366      RE_Q_To_G,                          -- System.Vax_Float_Operations
1367      RE_S_To_F,                          -- System.Vax_Float_Operations
1368      RE_T_To_D,                          -- System.Vax_Float_Operations
1369      RE_T_To_G,                          -- System.Vax_Float_Operations
1370
1371      RE_Abs_F,                           -- System.Vax_Float_Operations
1372      RE_Abs_G,                           -- System.Vax_Float_Operations
1373      RE_Add_F,                           -- System.Vax_Float_Operations
1374      RE_Add_G,                           -- System.Vax_Float_Operations
1375      RE_Div_F,                           -- System.Vax_Float_Operations
1376      RE_Div_G,                           -- System.Vax_Float_Operations
1377      RE_Mul_F,                           -- System.Vax_Float_Operations
1378      RE_Mul_G,                           -- System.Vax_Float_Operations
1379      RE_Neg_F,                           -- System.Vax_Float_Operations
1380      RE_Neg_G,                           -- System.Vax_Float_Operations
1381      RE_Sub_F,                           -- System.Vax_Float_Operations
1382      RE_Sub_G,                           -- System.Vax_Float_Operations
1383
1384      RE_Eq_F,                            -- System.Vax_Float_Operations
1385      RE_Eq_G,                            -- System.Vax_Float_Operations
1386      RE_Le_F,                            -- System.Vax_Float_Operations
1387      RE_Le_G,                            -- System.Vax_Float_Operations
1388      RE_Lt_F,                            -- System.Vax_Float_Operations
1389      RE_Lt_G,                            -- System.Vax_Float_Operations
1390
1391      RE_Version_String,                  -- System.Version_Control
1392      RE_Get_Version_String,              -- System.Version_Control
1393
1394      RE_Register_VMS_Exception,          -- System.VMS_Exception_Table
1395
1396      RE_String_To_Wide_String,           -- System.WCh_StW
1397
1398      RE_Wide_String_To_String,           -- System.WCh_WtS
1399
1400      RE_Wide_Width_Character,            -- System.WWd_Char
1401
1402      RE_Wide_Width_Enumeration_8,        -- System.WWd_Enum
1403      RE_Wide_Width_Enumeration_16,       -- System.WWd_Enum
1404      RE_Wide_Width_Enumeration_32,       -- System.WWd_Enum
1405
1406      RE_Wide_Width_Wide_Character,       -- System.WWd_Wchar
1407
1408      RE_Width_Boolean,                   -- System.Wid_Bool
1409
1410      RE_Width_Character,                 -- System.Wid_Char
1411
1412      RE_Width_Enumeration_8,             -- System.Wid_Enum
1413      RE_Width_Enumeration_16,            -- System.Wid_Enum
1414      RE_Width_Enumeration_32,            -- System.Wid_Enum
1415
1416      RE_Width_Long_Long_Integer,         -- System.Wid_LLI
1417
1418      RE_Width_Long_Long_Unsigned,        -- System.Wid_LLU
1419
1420      RE_Width_Wide_Character,            -- System.Wid_WChar
1421
1422      RE_Protected_Entry_Body_Array,      -- Tasking.Protected_Objects.Entries
1423      RE_Protection_Entries,              -- Tasking.Protected_Objects.Entries
1424      RE_Initialize_Protection_Entries,   -- Tasking.Protected_Objects.Entries
1425      RE_Lock_Entries,                    -- Tasking.Protected_Objects.Entries
1426      RE_Lock_Read_Only_Entries,          -- Tasking.Protected_Objects.Entries
1427      RE_Unlock_Entries,                  -- Tasking.Protected_Objects.Entries
1428      RE_Communication_Block,             -- Protected_Objects.Operations
1429      RE_Protected_Entry_Call,            -- Protected_Objects.Operations
1430      RE_Service_Entries,                 -- Protected_Objects.Operations
1431      RE_Cancel_Protected_Entry_Call,     -- Protected_Objects.Operations
1432      RE_Enqueued,                        -- Protected_Objects.Operations
1433      RE_Cancelled,                       -- Protected_Objects.Operations
1434      RE_Complete_Entry_Body,             -- Protected_Objects.Operations
1435      RE_Exceptional_Complete_Entry_Body, -- Protected_Objects.Operations
1436      RE_Requeue_Protected_Entry,         -- Protected_Objects.Operations
1437      RE_Requeue_Task_To_Protected_Entry, -- Protected_Objects.Operations
1438      RE_Protected_Count,                 -- Protected_Objects.Operations
1439      RE_Protected_Entry_Caller,          -- Protected_Objects.Operations
1440      RE_Timed_Protected_Entry_Call,      -- Protected_Objects.Operations
1441
1442      RE_Protection_Entry,                -- Protected_Objects.Single_Entry
1443      RE_Initialize_Protection_Entry,     -- Protected_Objects.Single_Entry
1444      RE_Lock_Entry,                      -- Protected_Objects.Single_Entry
1445      RE_Lock_Read_Only_Entry,            -- Protected_Objects.Single_Entry
1446      RE_Unlock_Entry,                    -- Protected_Objects.Single_Entry
1447      RE_Protected_Single_Entry_Call,     -- Protected_Objects.Single_Entry
1448      RE_Service_Entry,                   -- Protected_Objects.Single_Entry
1449      RE_Complete_Single_Entry_Body,      -- Protected_Objects.Single_Entry
1450      RE_Exceptional_Complete_Single_Entry_Body,
1451      RE_Protected_Count_Entry,           -- Protected_Objects.Single_Entry
1452      RE_Protected_Single_Entry_Caller,   -- Protected_Objects.Single_Entry
1453      RE_Timed_Protected_Single_Entry_Call,
1454
1455      RE_Protected_Entry_Index,           -- System.Tasking.Protected_Objects
1456      RE_Entry_Body,                      -- System.Tasking.Protected_Objects
1457      RE_Protection,                      -- System.Tasking.Protected_Objects
1458      RE_Initialize_Protection,           -- System.Tasking.Protected_Objects
1459      RE_Finalize_Protection,             -- System.Tasking.Protected_Objects
1460      RE_Lock,                            -- System.Tasking.Protected_Objects
1461      RE_Lock_Read_Only,                  -- System.Tasking.Protected_Objects
1462      RE_Unlock,                          -- System.Tasking.Protected_Objects
1463
1464      RE_Delay_Block,                     -- System.Tasking.Async_Delays
1465      RE_Timed_Out,                       -- System.Tasking.Async_Delays
1466      RE_Cancel_Async_Delay,              -- System.Tasking.Async_Delays
1467      RE_Enqueue_Duration,                -- System.Tasking.Async_Delays
1468      RE_Enqueue_Calendar,                -- System.Tasking.Async_Delays
1469      RE_Enqueue_RT,                      -- System.Tasking.Async_Delays
1470
1471      RE_Accept_Call,                     -- System.Tasking.Rendezvous
1472      RE_Accept_Trivial,                  -- System.Tasking.Rendezvous
1473      RE_Callable,                        -- System.Tasking.Rendezvous
1474      RE_Call_Simple,                     -- System.Tasking.Rendezvous
1475      RE_Requeue_Task_Entry,              -- System.Tasking.Rendezvous
1476      RE_Requeue_Protected_To_Task_Entry, -- System.Tasking.Rendezvous
1477      RE_Cancel_Task_Entry_Call,          -- System.Tasking.Rendezvous
1478      RE_Complete_Rendezvous,             -- System.Tasking.Rendezvous
1479      RE_Task_Count,                      -- System.Tasking.Rendezvous
1480      RE_Exceptional_Complete_Rendezvous, -- System.Tasking.Rendezvous
1481      RE_Selective_Wait,                  -- System.Tasking.Rendezvous
1482      RE_Task_Entry_Call,                 -- System.Tasking.Rendezvous
1483      RE_Task_Entry_Caller,               -- System.Tasking.Rendezvous
1484      RE_Timed_Task_Entry_Call,           -- System.Tasking.Rendezvous
1485      RE_Timed_Selective_Wait,            -- System.Tasking.Rendezvous
1486
1487      RE_Activate_Restricted_Tasks,       -- System.Tasking.Restricted.Stages
1488      RE_Complete_Restricted_Activation,  -- System.Tasking.Restricted.Stages
1489      RE_Create_Restricted_Task,          -- System.Tasking.Restricted.Stages
1490      RE_Complete_Restricted_Task,        -- System.Tasking.Restricted.Stages
1491      RE_Restricted_Terminated,           -- System.Tasking.Restricted.Stages
1492
1493      RE_Abort_Tasks,                     -- System.Tasking.Stages
1494      RE_Activate_Tasks,                  -- System.Tasking.Stages
1495      RE_Complete_Activation,             -- System.Tasking.Stages
1496      RE_Create_Task,                     -- System.Tasking.Stages
1497      RE_Complete_Task,                   -- System.Tasking.Stages
1498      RE_Free_Task,                       -- System.Tasking.Stages
1499      RE_Expunge_Unactivated_Tasks,       -- System.Tasking.Stages
1500      RE_Terminated);                     -- System.Tasking.Stages
1501
1502    --  The following declarations build a table that is indexed by the
1503    --  RTE function to determine the unit containing the given entity.
1504    --  This table is sorted in order of package names.
1505
1506    RE_Unit_Table : array (RE_Id) of RTU_Id := (
1507
1508      RE_Null                             => RTU_Null,
1509
1510      RE_Exceptions_Available_In_HIE      => Ada_Exceptions,
1511      RE_Code_Loc                         => Ada_Exceptions,
1512      RE_Current_Target_Exception         => Ada_Exceptions, -- of JGNAT
1513      RE_Exception_Id                     => Ada_Exceptions,
1514      RE_Exception_Information            => Ada_Exceptions,
1515      RE_Exception_Message                => Ada_Exceptions,
1516      RE_Exception_Name_Simple            => Ada_Exceptions,
1517      RE_Exception_Occurrence             => Ada_Exceptions,
1518      RE_Null_Id                          => Ada_Exceptions,
1519      RE_Null_Occurrence                  => Ada_Exceptions,
1520      RE_Poll                             => Ada_Exceptions,
1521      RE_Raise_Exception                  => Ada_Exceptions,
1522      RE_Raise_Exception_Always           => Ada_Exceptions,
1523      RE_Reraise_Occurrence               => Ada_Exceptions,
1524      RE_Reraise_Occurrence_Always        => Ada_Exceptions,
1525      RE_Reraise_Occurrence_No_Defer      => Ada_Exceptions,
1526      RE_Save_Occurrence                  => Ada_Exceptions,
1527
1528      RE_Simple_List_Controller           => Ada_Finalization_List_Controller,
1529      RE_List_Controller                  => Ada_Finalization_List_Controller,
1530
1531      RE_Interrupt_ID                     => Ada_Interrupts,
1532      RE_Is_Reserved                      => Ada_Interrupts,
1533      RE_Is_Attached                      => Ada_Interrupts,
1534      RE_Current_Handler                  => Ada_Interrupts,
1535      RE_Attach_Handler                   => Ada_Interrupts,
1536      RE_Exchange_Handler                 => Ada_Interrupts,
1537      RE_Detach_Handler                   => Ada_Interrupts,
1538      RE_Reference                        => Ada_Interrupts,
1539
1540      RE_Names                            => Ada_Interrupts_Names,
1541
1542      RE_Root_Stream_Type                 => Ada_Streams,
1543      RE_Stream_Element                   => Ada_Streams,
1544      RE_Stream_Element_Count             => Ada_Streams,
1545      RE_Stream_Element_Offset            => Ada_Streams,
1546      RE_Stream_Element_Array             => Ada_Streams,
1547
1548      RE_Stream_Access                    => Ada_Streams_Stream_IO,
1549
1550      RE_CW_Membership                    => Ada_Tags,
1551      RE_DT_Entry_Size                    => Ada_Tags,
1552      RE_DT_Prologue_Size                 => Ada_Tags,
1553      RE_External_Tag                     => Ada_Tags,
1554      RE_Get_Expanded_Name                => Ada_Tags,
1555      RE_Get_External_Tag                 => Ada_Tags,
1556      RE_Get_Prim_Op_Address              => Ada_Tags,
1557      RE_Get_RC_Offset                    => Ada_Tags,
1558      RE_Get_Remotely_Callable            => Ada_Tags,
1559      RE_Get_TSD                          => Ada_Tags,
1560      RE_Inherit_DT                       => Ada_Tags,
1561      RE_Inherit_TSD                      => Ada_Tags,
1562      RE_Internal_Tag                     => Ada_Tags,
1563      RE_Register_Tag                     => Ada_Tags,
1564      RE_Set_Expanded_Name                => Ada_Tags,
1565      RE_Set_External_Tag                 => Ada_Tags,
1566      RE_Set_Prim_Op_Address              => Ada_Tags,
1567      RE_Set_RC_Offset                    => Ada_Tags,
1568      RE_Set_Remotely_Callable            => Ada_Tags,
1569      RE_Set_TSD                          => Ada_Tags,
1570      RE_Tag_Error                        => Ada_Tags,
1571      RE_TSD_Entry_Size                   => Ada_Tags,
1572      RE_TSD_Prologue_Size                => Ada_Tags,
1573      RE_Tag                              => Ada_Tags,
1574      RE_Address_Array                    => Ada_Tags,
1575
1576      RE_Abort_Task                       => Ada_Task_Identification,
1577      RE_Current_Task                     => Ada_Task_Identification,
1578      RO_AT_Task_Id                       => Ada_Task_Identification,
1579
1580      RO_CA_Time                          => Ada_Calendar,
1581      RO_CA_Delay_For                     => Ada_Calendar_Delays,
1582      RO_CA_Delay_Until                   => Ada_Calendar_Delays,
1583      RO_CA_To_Duration                   => Ada_Calendar_Delays,
1584
1585      RO_RT_Time                          => Ada_Real_Time,
1586      RO_RT_Delay_Until                   => Ada_Real_Time_Delays,
1587      RO_RT_To_Duration                   => Ada_Real_Time_Delays,
1588
1589      RE_Integer_64                       => Interfaces,
1590      RE_Unsigned_8                       => Interfaces,
1591      RE_Unsigned_16                      => Interfaces,
1592      RE_Unsigned_32                      => Interfaces,
1593      RE_Unsigned_64                      => Interfaces,
1594
1595      RE_Vtable_Ptr                       => Interfaces_CPP,
1596      RE_Displaced_This                   => Interfaces_CPP,
1597      RE_CPP_CW_Membership                => Interfaces_CPP,
1598      RE_CPP_DT_Entry_Size                => Interfaces_CPP,
1599      RE_CPP_DT_Prologue_Size             => Interfaces_CPP,
1600      RE_CPP_Get_Expanded_Name            => Interfaces_CPP,
1601      RE_CPP_Get_External_Tag             => Interfaces_CPP,
1602      RE_CPP_Get_Prim_Op_Address          => Interfaces_CPP,
1603      RE_CPP_Get_RC_Offset                => Interfaces_CPP,
1604      RE_CPP_Get_Remotely_Callable        => Interfaces_CPP,
1605      RE_CPP_Get_TSD                      => Interfaces_CPP,
1606      RE_CPP_Inherit_DT                   => Interfaces_CPP,
1607      RE_CPP_Inherit_TSD                  => Interfaces_CPP,
1608      RE_CPP_Register_Tag                 => Interfaces_CPP,
1609      RE_CPP_Set_Expanded_Name            => Interfaces_CPP,
1610      RE_CPP_Set_External_Tag             => Interfaces_CPP,
1611      RE_CPP_Set_Prim_Op_Address          => Interfaces_CPP,
1612      RE_CPP_Set_RC_Offset                => Interfaces_CPP,
1613      RE_CPP_Set_Remotely_Callable        => Interfaces_CPP,
1614      RE_CPP_Set_TSD                      => Interfaces_CPP,
1615      RE_CPP_TSD_Entry_Size               => Interfaces_CPP,
1616      RE_CPP_TSD_Prologue_Size            => Interfaces_CPP,
1617
1618      RE_Packed_Size                      => Interfaces_Packed_Decimal,
1619      RE_Packed_To_Int32                  => Interfaces_Packed_Decimal,
1620      RE_Packed_To_Int64                  => Interfaces_Packed_Decimal,
1621      RE_Int32_To_Packed                  => Interfaces_Packed_Decimal,
1622      RE_Int64_To_Packed                  => Interfaces_Packed_Decimal,
1623
1624      RE_Address                          => System,
1625      RE_Any_Priority                     => System,
1626      RE_Bit_Order                        => System,
1627      RE_Default_Priority                 => System,
1628      RE_High_Order_First                 => System,
1629      RE_Interrupt_Priority               => System,
1630      RE_Lib_Stop                         => System,
1631      RE_Low_Order_First                  => System,
1632      RE_Max_Interrupt_Priority           => System,
1633      RE_Max_Priority                     => System,
1634      RE_Null_Address                     => System,
1635      RE_Priority                         => System,
1636
1637      RE_Add_With_Ovflo_Check             => System_Arith_64,
1638      RE_Double_Divide                    => System_Arith_64,
1639      RE_Multiply_With_Ovflo_Check        => System_Arith_64,
1640      RE_Scaled_Divide                    => System_Arith_64,
1641      RE_Subtract_With_Ovflo_Check        => System_Arith_64,
1642
1643      RE_Create_AST_Handler               => System_AST_Handling,
1644
1645      RE_Raise_Assert_Failure             => System_Assertions,
1646
1647      RE_AST_Handler                      => System_Aux_DEC,
1648      RE_Import_Value                     => System_Aux_DEC,
1649      RE_No_AST_Handler                   => System_Aux_DEC,
1650      RE_Type_Class                       => System_Aux_DEC,
1651      RE_Type_Class_Enumeration           => System_Aux_DEC,
1652      RE_Type_Class_Integer               => System_Aux_DEC,
1653      RE_Type_Class_Fixed_Point           => System_Aux_DEC,
1654      RE_Type_Class_Floating_Point        => System_Aux_DEC,
1655      RE_Type_Class_Array                 => System_Aux_DEC,
1656      RE_Type_Class_Record                => System_Aux_DEC,
1657      RE_Type_Class_Access                => System_Aux_DEC,
1658      RE_Type_Class_Task                  => System_Aux_DEC,
1659      RE_Type_Class_Address               => System_Aux_DEC,
1660
1661      RE_Bit_And                          => System_Bit_Ops,
1662      RE_Bit_Eq                           => System_Bit_Ops,
1663      RE_Bit_Not                          => System_Bit_Ops,
1664      RE_Bit_Or                           => System_Bit_Ops,
1665      RE_Bit_Xor                          => System_Bit_Ops,
1666
1667      RE_Checked_Pool                     => System_Checked_Pools,
1668
1669      RE_Boolean_Array                    => System_Boolean_Array_Operations,
1670      RE_Vector_Not                       => System_Boolean_Array_Operations,
1671      RE_Vector_And                       => System_Boolean_Array_Operations,
1672      RE_Vector_Or                        => System_Boolean_Array_Operations,
1673      RE_Vector_Nand                      => System_Boolean_Array_Operations,
1674      RE_Vector_Nor                       => System_Boolean_Array_Operations,
1675      RE_Vector_Nxor                      => System_Boolean_Array_Operations,
1676      RE_Vector_Xor                       => System_Boolean_Array_Operations,
1677
1678      RE_Compare_Array_S8                 => System_Compare_Array_Signed_8,
1679      RE_Compare_Array_S8_Unaligned       => System_Compare_Array_Signed_8,
1680
1681      RE_Compare_Array_S16                => System_Compare_Array_Signed_16,
1682
1683      RE_Compare_Array_S32                => System_Compare_Array_Signed_32,
1684
1685      RE_Compare_Array_S64                => System_Compare_Array_Signed_64,
1686
1687      RE_Compare_Array_U8                 => System_Compare_Array_Unsigned_8,
1688      RE_Compare_Array_U8_Unaligned       => System_Compare_Array_Unsigned_8,
1689
1690      RE_Compare_Array_U16                => System_Compare_Array_Unsigned_16,
1691
1692      RE_Compare_Array_U32                => System_Compare_Array_Unsigned_32,
1693
1694      RE_Compare_Array_U64                => System_Compare_Array_Unsigned_64,
1695
1696      RE_Register_Exception               => System_Exception_Table,
1697
1698      RE_All_Others_Id                    => System_Exceptions,
1699      RE_Handler_Record                   => System_Exceptions,
1700      RE_Handler_Record_Ptr               => System_Exceptions,
1701      RE_Others_Id                        => System_Exceptions,
1702      RE_Subprogram_Descriptor            => System_Exceptions,
1703      RE_Subprogram_Descriptor_0          => System_Exceptions,
1704      RE_Subprogram_Descriptor_1          => System_Exceptions,
1705      RE_Subprogram_Descriptor_2          => System_Exceptions,
1706      RE_Subprogram_Descriptor_3          => System_Exceptions,
1707      RE_Subprogram_Descriptor_List       => System_Exceptions,
1708      RE_Subprogram_Descriptor_Ptr        => System_Exceptions,
1709      RE_Subprogram_Descriptors_Record    => System_Exceptions,
1710      RE_Subprogram_Descriptors_Ptr       => System_Exceptions,
1711
1712      RE_Exn_Integer                      => System_Exn_Int,
1713
1714      RE_Exn_Long_Long_Float              => System_Exn_LLF,
1715
1716      RE_Exn_Long_Long_Integer            => System_Exn_LLI,
1717
1718      RE_Exp_Integer                      => System_Exp_Int,
1719
1720      RE_Exp_Long_Long_Integer            => System_Exp_LLI,
1721
1722      RE_Exp_Long_Long_Unsigned           => System_Exp_LLU,
1723
1724      RE_Exp_Modular                      => System_Exp_Mod,
1725
1726      RE_Exp_Unsigned                     => System_Exp_Uns,
1727
1728      RE_Fat_Float                        => System_Fat_Flt,
1729
1730      RE_Fat_Long_Float                   => System_Fat_LFlt,
1731
1732      RE_Fat_Long_Long_Float              => System_Fat_LLF,
1733
1734      RE_Fat_Short_Float                  => System_Fat_SFlt,
1735
1736      RE_Attach_To_Final_List             => System_Finalization_Implementation,
1737      RE_Finalize_List                    => System_Finalization_Implementation,
1738      RE_Finalize_One                     => System_Finalization_Implementation,
1739      RE_Global_Final_List                => System_Finalization_Implementation,
1740      RE_Record_Controller                => System_Finalization_Implementation,
1741      RE_Limited_Record_Controller        => System_Finalization_Implementation,
1742      RE_Deep_Tag_Initialize              => System_Finalization_Implementation,
1743      RE_Deep_Tag_Adjust                  => System_Finalization_Implementation,
1744      RE_Deep_Tag_Finalize                => System_Finalization_Implementation,
1745      RE_Deep_Tag_Attach                  => System_Finalization_Implementation,
1746      RE_Deep_Rec_Initialize              => System_Finalization_Implementation,
1747      RE_Deep_Rec_Adjust                  => System_Finalization_Implementation,
1748      RE_Deep_Rec_Finalize                => System_Finalization_Implementation,
1749
1750      RE_Root_Controlled                  => System_Finalization_Root,
1751      RE_Finalizable                      => System_Finalization_Root,
1752      RE_Finalizable_Ptr                  => System_Finalization_Root,
1753
1754      RE_Fore                             => System_Fore,
1755
1756      RE_Image_Boolean                    => System_Img_Bool,
1757
1758      RE_Image_Character                  => System_Img_Char,
1759
1760      RE_Image_Decimal                    => System_Img_Dec,
1761
1762      RE_Image_Enumeration_8              => System_Img_Enum,
1763      RE_Image_Enumeration_16             => System_Img_Enum,
1764      RE_Image_Enumeration_32             => System_Img_Enum,
1765
1766      RE_Image_Integer                    => System_Img_Int,
1767
1768      RE_Image_Long_Long_Decimal          => System_Img_LLD,
1769
1770      RE_Image_Long_Long_Integer          => System_Img_LLI,
1771
1772      RE_Image_Long_Long_Unsigned         => System_Img_LLU,
1773
1774      RE_Image_Ordinary_Fixed_Point       => System_Img_Real,
1775      RE_Image_Floating_Point             => System_Img_Real,
1776
1777      RE_Image_Unsigned                   => System_Img_Uns,
1778
1779      RE_Image_Wide_Character             => System_Img_WChar,
1780
1781      RE_Bind_Interrupt_To_Entry          => System_Interrupts,
1782      RE_Default_Interrupt_Priority       => System_Interrupts,
1783      RE_Dynamic_Interrupt_Protection     => System_Interrupts,
1784      RE_Install_Handlers                 => System_Interrupts,
1785      RE_Register_Interrupt_Handler       => System_Interrupts,
1786      RE_Static_Interrupt_Protection      => System_Interrupts,
1787      RE_System_Interrupt_Id              => System_Interrupts,
1788
1789      RE_Asm_Insn                         => System_Machine_Code,
1790      RE_Asm_Input_Operand                => System_Machine_Code,
1791      RE_Asm_Output_Operand               => System_Machine_Code,
1792
1793      RE_Mantissa_Value                   => System_Mantissa,
1794
1795      RE_memcpy                           => System_Memcop,
1796      RE_memmove                          => System_Memcop,
1797
1798      RE_Bits_03                          => System_Pack_03,
1799      RE_Get_03                           => System_Pack_03,
1800      RE_Set_03                           => System_Pack_03,
1801
1802      RE_Bits_05                          => System_Pack_05,
1803      RE_Get_05                           => System_Pack_05,
1804      RE_Set_05                           => System_Pack_05,
1805
1806      RE_Bits_06                          => System_Pack_06,
1807      RE_Get_06                           => System_Pack_06,
1808      RE_GetU_06                          => System_Pack_06,
1809      RE_Set_06                           => System_Pack_06,
1810      RE_SetU_06                          => System_Pack_06,
1811
1812      RE_Bits_07                          => System_Pack_07,
1813      RE_Get_07                           => System_Pack_07,
1814      RE_Set_07                           => System_Pack_07,
1815
1816      RE_Bits_09                          => System_Pack_09,
1817      RE_Get_09                           => System_Pack_09,
1818      RE_Set_09                           => System_Pack_09,
1819
1820      RE_Bits_10                          => System_Pack_10,
1821      RE_Get_10                           => System_Pack_10,
1822      RE_GetU_10                          => System_Pack_10,
1823      RE_Set_10                           => System_Pack_10,
1824      RE_SetU_10                          => System_Pack_10,
1825
1826      RE_Bits_11                          => System_Pack_11,
1827      RE_Get_11                           => System_Pack_11,
1828      RE_Set_11                           => System_Pack_11,
1829
1830      RE_Bits_12                          => System_Pack_12,
1831      RE_Get_12                           => System_Pack_12,
1832      RE_GetU_12                          => System_Pack_12,
1833      RE_Set_12                           => System_Pack_12,
1834      RE_SetU_12                          => System_Pack_12,
1835
1836      RE_Bits_13                          => System_Pack_13,
1837      RE_Get_13                           => System_Pack_13,
1838      RE_Set_13                           => System_Pack_13,
1839
1840      RE_Bits_14                          => System_Pack_14,
1841      RE_Get_14                           => System_Pack_14,
1842      RE_GetU_14                          => System_Pack_14,
1843      RE_Set_14                           => System_Pack_14,
1844      RE_SetU_14                          => System_Pack_14,
1845
1846      RE_Bits_15                          => System_Pack_15,
1847      RE_Get_15                           => System_Pack_15,
1848      RE_Set_15                           => System_Pack_15,
1849
1850      RE_Bits_17                          => System_Pack_17,
1851      RE_Get_17                           => System_Pack_17,
1852      RE_Set_17                           => System_Pack_17,
1853
1854      RE_Bits_18                          => System_Pack_18,
1855      RE_Get_18                           => System_Pack_18,
1856      RE_GetU_18                          => System_Pack_18,
1857      RE_Set_18                           => System_Pack_18,
1858      RE_SetU_18                          => System_Pack_18,
1859
1860      RE_Bits_19                          => System_Pack_19,
1861      RE_Get_19                           => System_Pack_19,
1862      RE_Set_19                           => System_Pack_19,
1863
1864      RE_Bits_20                          => System_Pack_20,
1865      RE_Get_20                           => System_Pack_20,
1866      RE_GetU_20                          => System_Pack_20,
1867      RE_Set_20                           => System_Pack_20,
1868      RE_SetU_20                          => System_Pack_20,
1869
1870      RE_Bits_21                          => System_Pack_21,
1871      RE_Get_21                           => System_Pack_21,
1872      RE_Set_21                           => System_Pack_21,
1873
1874      RE_Bits_22                          => System_Pack_22,
1875      RE_Get_22                           => System_Pack_22,
1876      RE_GetU_22                          => System_Pack_22,
1877      RE_Set_22                           => System_Pack_22,
1878      RE_SetU_22                          => System_Pack_22,
1879
1880      RE_Bits_23                          => System_Pack_23,
1881      RE_Get_23                           => System_Pack_23,
1882      RE_Set_23                           => System_Pack_23,
1883
1884      RE_Bits_24                          => System_Pack_24,
1885      RE_Get_24                           => System_Pack_24,
1886      RE_GetU_24                          => System_Pack_24,
1887      RE_Set_24                           => System_Pack_24,
1888      RE_SetU_24                          => System_Pack_24,
1889
1890      RE_Bits_25                          => System_Pack_25,
1891      RE_Get_25                           => System_Pack_25,
1892      RE_Set_25                           => System_Pack_25,
1893
1894      RE_Bits_26                          => System_Pack_26,
1895      RE_Get_26                           => System_Pack_26,
1896      RE_GetU_26                          => System_Pack_26,
1897      RE_Set_26                           => System_Pack_26,
1898      RE_SetU_26                          => System_Pack_26,
1899
1900      RE_Bits_27                          => System_Pack_27,
1901      RE_Get_27                           => System_Pack_27,
1902      RE_Set_27                           => System_Pack_27,
1903
1904      RE_Bits_28                          => System_Pack_28,
1905      RE_Get_28                           => System_Pack_28,
1906      RE_GetU_28                          => System_Pack_28,
1907      RE_Set_28                           => System_Pack_28,
1908      RE_SetU_28                          => System_Pack_28,
1909
1910      RE_Bits_29                          => System_Pack_29,
1911      RE_Get_29                           => System_Pack_29,
1912      RE_Set_29                           => System_Pack_29,
1913
1914      RE_Bits_30                          => System_Pack_30,
1915      RE_Get_30                           => System_Pack_30,
1916      RE_GetU_30                          => System_Pack_30,
1917      RE_Set_30                           => System_Pack_30,
1918      RE_SetU_30                          => System_Pack_30,
1919
1920      RE_Bits_31                          => System_Pack_31,
1921      RE_Get_31                           => System_Pack_31,
1922      RE_Set_31                           => System_Pack_31,
1923
1924      RE_Bits_33                          => System_Pack_33,
1925      RE_Get_33                           => System_Pack_33,
1926      RE_Set_33                           => System_Pack_33,
1927
1928      RE_Bits_34                          => System_Pack_34,
1929      RE_Get_34                           => System_Pack_34,
1930      RE_GetU_34                          => System_Pack_34,
1931      RE_Set_34                           => System_Pack_34,
1932      RE_SetU_34                          => System_Pack_34,
1933
1934      RE_Bits_35                          => System_Pack_35,
1935      RE_Get_35                           => System_Pack_35,
1936      RE_Set_35                           => System_Pack_35,
1937
1938      RE_Bits_36                          => System_Pack_36,
1939      RE_Get_36                           => System_Pack_36,
1940      RE_GetU_36                          => System_Pack_36,
1941      RE_Set_36                           => System_Pack_36,
1942      RE_SetU_36                          => System_Pack_36,
1943
1944      RE_Bits_37                          => System_Pack_37,
1945      RE_Get_37                           => System_Pack_37,
1946      RE_Set_37                           => System_Pack_37,
1947
1948      RE_Bits_38                          => System_Pack_38,
1949      RE_Get_38                           => System_Pack_38,
1950      RE_GetU_38                          => System_Pack_38,
1951      RE_Set_38                           => System_Pack_38,
1952      RE_SetU_38                          => System_Pack_38,
1953
1954      RE_Bits_39                          => System_Pack_39,
1955      RE_Get_39                           => System_Pack_39,
1956      RE_Set_39                           => System_Pack_39,
1957
1958      RE_Bits_40                          => System_Pack_40,
1959      RE_Get_40                           => System_Pack_40,
1960      RE_GetU_40                          => System_Pack_40,
1961      RE_Set_40                           => System_Pack_40,
1962      RE_SetU_40                          => System_Pack_40,
1963
1964      RE_Bits_41                          => System_Pack_41,
1965      RE_Get_41                           => System_Pack_41,
1966      RE_Set_41                           => System_Pack_41,
1967
1968      RE_Bits_42                          => System_Pack_42,
1969      RE_Get_42                           => System_Pack_42,
1970      RE_GetU_42                          => System_Pack_42,
1971      RE_Set_42                           => System_Pack_42,
1972      RE_SetU_42                          => System_Pack_42,
1973
1974      RE_Bits_43                          => System_Pack_43,
1975      RE_Get_43                           => System_Pack_43,
1976      RE_Set_43                           => System_Pack_43,
1977
1978      RE_Bits_44                          => System_Pack_44,
1979      RE_Get_44                           => System_Pack_44,
1980      RE_GetU_44                          => System_Pack_44,
1981      RE_Set_44                           => System_Pack_44,
1982      RE_SetU_44                          => System_Pack_44,
1983
1984      RE_Bits_45                          => System_Pack_45,
1985      RE_Get_45                           => System_Pack_45,
1986      RE_Set_45                           => System_Pack_45,
1987
1988      RE_Bits_46                          => System_Pack_46,
1989      RE_Get_46                           => System_Pack_46,
1990      RE_GetU_46                          => System_Pack_46,
1991      RE_Set_46                           => System_Pack_46,
1992      RE_SetU_46                          => System_Pack_46,
1993
1994      RE_Bits_47                          => System_Pack_47,
1995      RE_Get_47                           => System_Pack_47,
1996      RE_Set_47                           => System_Pack_47,
1997
1998      RE_Bits_48                          => System_Pack_48,
1999      RE_Get_48                           => System_Pack_48,
2000      RE_GetU_48                          => System_Pack_48,
2001      RE_Set_48                           => System_Pack_48,
2002      RE_SetU_48                          => System_Pack_48,
2003
2004      RE_Bits_49                          => System_Pack_49,
2005      RE_Get_49                           => System_Pack_49,
2006      RE_Set_49                           => System_Pack_49,
2007
2008      RE_Bits_50                          => System_Pack_50,
2009      RE_Get_50                           => System_Pack_50,
2010      RE_GetU_50                          => System_Pack_50,
2011      RE_Set_50                           => System_Pack_50,
2012      RE_SetU_50                          => System_Pack_50,
2013
2014      RE_Bits_51                          => System_Pack_51,
2015      RE_Get_51                           => System_Pack_51,
2016      RE_Set_51                           => System_Pack_51,
2017
2018      RE_Bits_52                          => System_Pack_52,
2019      RE_Get_52                           => System_Pack_52,
2020      RE_GetU_52                          => System_Pack_52,
2021      RE_Set_52                           => System_Pack_52,
2022      RE_SetU_52                          => System_Pack_52,
2023
2024      RE_Bits_53                          => System_Pack_53,
2025      RE_Get_53                           => System_Pack_53,
2026      RE_Set_53                           => System_Pack_53,
2027
2028      RE_Bits_54                          => System_Pack_54,
2029      RE_Get_54                           => System_Pack_54,
2030      RE_GetU_54                          => System_Pack_54,
2031      RE_Set_54                           => System_Pack_54,
2032      RE_SetU_54                          => System_Pack_54,
2033
2034      RE_Bits_55                          => System_Pack_55,
2035      RE_Get_55                           => System_Pack_55,
2036      RE_Set_55                           => System_Pack_55,
2037
2038      RE_Bits_56                          => System_Pack_56,
2039      RE_Get_56                           => System_Pack_56,
2040      RE_GetU_56                          => System_Pack_56,
2041      RE_Set_56                           => System_Pack_56,
2042      RE_SetU_56                          => System_Pack_56,
2043
2044      RE_Bits_57                          => System_Pack_57,
2045      RE_Get_57                           => System_Pack_57,
2046      RE_Set_57                           => System_Pack_57,
2047
2048      RE_Bits_58                          => System_Pack_58,
2049      RE_Get_58                           => System_Pack_58,
2050      RE_GetU_58                          => System_Pack_58,
2051      RE_Set_58                           => System_Pack_58,
2052      RE_SetU_58                          => System_Pack_58,
2053
2054      RE_Bits_59                          => System_Pack_59,
2055      RE_Get_59                           => System_Pack_59,
2056      RE_Set_59                           => System_Pack_59,
2057
2058      RE_Bits_60                          => System_Pack_60,
2059      RE_Get_60                           => System_Pack_60,
2060      RE_GetU_60                          => System_Pack_60,
2061      RE_Set_60                           => System_Pack_60,
2062      RE_SetU_60                          => System_Pack_60,
2063
2064      RE_Bits_61                          => System_Pack_61,
2065      RE_Get_61                           => System_Pack_61,
2066      RE_Set_61                           => System_Pack_61,
2067
2068      RE_Bits_62                          => System_Pack_62,
2069      RE_Get_62                           => System_Pack_62,
2070      RE_GetU_62                          => System_Pack_62,
2071      RE_Set_62                           => System_Pack_62,
2072      RE_SetU_62                          => System_Pack_62,
2073
2074      RE_Bits_63                          => System_Pack_63,
2075      RE_Get_63                           => System_Pack_63,
2076      RE_Set_63                           => System_Pack_63,
2077
2078      RE_Adjust_Storage_Size              => System_Parameters,
2079      RE_Default_Stack_Size               => System_Parameters,
2080      RE_Garbage_Collected                => System_Parameters,
2081      RE_Size_Type                        => System_Parameters,
2082      RE_Unspecified_Size                 => System_Parameters,
2083
2084      RE_DSA_Implementation               => System_Partition_Interface,
2085      RE_Get_Active_Partition_Id          => System_Partition_Interface,
2086      RE_Get_Passive_Partition_Id         => System_Partition_Interface,
2087      RE_Get_Local_Partition_Id           => System_Partition_Interface,
2088      RE_Get_RCI_Package_Receiver         => System_Partition_Interface,
2089      RE_Get_Unique_Remote_Pointer        => System_Partition_Interface,
2090      RE_RACW_Stub_Type                   => System_Partition_Interface,
2091      RE_RACW_Stub_Type_Access            => System_Partition_Interface,
2092      RE_Raise_Program_Error_Unknown_Tag  => System_Partition_Interface,
2093      RE_Register_Passive_Package         => System_Partition_Interface,
2094      RE_Register_Receiving_Stub          => System_Partition_Interface,
2095      RE_RCI_Info                         => System_Partition_Interface,
2096      RE_Subprogram_Id                    => System_Partition_Interface,
2097
2098      RE_To_PolyORB_String                => System_PolyORB_Interface,
2099      RE_To_Standard_String               => System_PolyORB_Interface,
2100      RE_Caseless_String_Eq               => System_PolyORB_Interface,
2101      RE_TypeCode                         => System_PolyORB_Interface,
2102      RE_Any                              => System_PolyORB_Interface,
2103      RE_Mode_In                          => System_PolyORB_Interface,
2104      RE_Mode_Out                         => System_PolyORB_Interface,
2105      RE_Mode_Inout                       => System_PolyORB_Interface,
2106      RE_NamedValue                       => System_PolyORB_Interface,
2107      RE_Result_Name                      => System_PolyORB_Interface,
2108      RE_Object_Ref                       => System_PolyORB_Interface,
2109      RE_Create_Any                       => System_PolyORB_Interface,
2110      RE_Any_Aggregate_Build              => System_PolyORB_Interface,
2111      RE_Add_Aggregate_Element            => System_PolyORB_Interface,
2112      RE_Get_Aggregate_Element            => System_PolyORB_Interface,
2113      RE_Content_Type                     => System_PolyORB_Interface,
2114      RE_Any_Member_Type                  => System_PolyORB_Interface,
2115      RE_Get_Nested_Sequence_Length       => System_PolyORB_Interface,
2116      RE_Extract_Union_Value              => System_PolyORB_Interface,
2117      RE_NVList_Ref                       => System_PolyORB_Interface,
2118      RE_NVList_Create                    => System_PolyORB_Interface,
2119      RE_NVList_Add_Item                  => System_PolyORB_Interface,
2120      RE_Request_Access                   => System_PolyORB_Interface,
2121      RE_Request_Create                   => System_PolyORB_Interface,
2122      RE_Request_Invoke                   => System_PolyORB_Interface,
2123      RE_Request_Arguments                => System_PolyORB_Interface,
2124      RE_Request_Set_Out                  => System_PolyORB_Interface,
2125      RE_Request_Raise_Occurrence         => System_PolyORB_Interface,
2126      RE_Nil_Exc_List                     => System_PolyORB_Interface,
2127      RE_Servant                          => System_PolyORB_Interface,
2128      RE_Copy_Any_Value                   => System_PolyORB_Interface,
2129      RE_Set_Result                       => System_PolyORB_Interface,
2130      RE_Register_Obj_Receiving_Stub      => System_PolyORB_Interface,
2131      RE_Register_Pkg_Receiving_Stub      => System_PolyORB_Interface,
2132      RE_Is_Nil                           => System_PolyORB_Interface,
2133      RE_Entity_Ptr                       => System_PolyORB_Interface,
2134      RE_Entity_Of                        => System_PolyORB_Interface,
2135      RE_Inc_Usage                        => System_PolyORB_Interface,
2136      RE_Set_Ref                          => System_PolyORB_Interface,
2137      RE_Get_Local_Address                => System_PolyORB_Interface,
2138      RE_Get_Reference                    => System_PolyORB_Interface,
2139      RE_Local_Oid_To_Address             => System_PolyORB_Interface,
2140      RE_RCI_Locator                      => System_PolyORB_Interface,
2141      RE_RCI_Subp_Info                    => System_PolyORB_Interface,
2142      RE_RCI_Subp_Info_Array              => System_PolyORB_Interface,
2143      RE_Get_RAS_Ref                      => System_PolyORB_Interface,
2144      RE_Asynchronous_P_To_Sync_Scope     => System_PolyORB_Interface,
2145      RE_Buffer_Stream_Type               => System_PolyORB_Interface,
2146      RE_Allocate_Buffer                  => System_PolyORB_Interface,
2147      RE_Release_Buffer                   => System_PolyORB_Interface,
2148      RE_BS_To_Any                        => System_PolyORB_Interface,
2149      RE_Any_To_BS                        => System_PolyORB_Interface,
2150
2151      RE_FA_AD                            => System_PolyORB_Interface,
2152      RE_FA_AS                            => System_PolyORB_Interface,
2153      RE_FA_B                             => System_PolyORB_Interface,
2154      RE_FA_C                             => System_PolyORB_Interface,
2155      RE_FA_F                             => System_PolyORB_Interface,
2156      RE_FA_I                             => System_PolyORB_Interface,
2157      RE_FA_LF                            => System_PolyORB_Interface,
2158      RE_FA_LI                            => System_PolyORB_Interface,
2159      RE_FA_LLF                           => System_PolyORB_Interface,
2160      RE_FA_LLI                           => System_PolyORB_Interface,
2161      RE_FA_LLU                           => System_PolyORB_Interface,
2162      RE_FA_LU                            => System_PolyORB_Interface,
2163      RE_FA_SF                            => System_PolyORB_Interface,
2164      RE_FA_SI                            => System_PolyORB_Interface,
2165      RE_FA_SSI                           => System_PolyORB_Interface,
2166      RE_FA_SSU                           => System_PolyORB_Interface,
2167      RE_FA_SU                            => System_PolyORB_Interface,
2168      RE_FA_U                             => System_PolyORB_Interface,
2169      RE_FA_WC                            => System_PolyORB_Interface,
2170      RE_FA_String                        => System_PolyORB_Interface,
2171      RE_FA_ObjRef                        => System_PolyORB_Interface,
2172
2173      RE_TA_AD                            => System_PolyORB_Interface,
2174      RE_TA_AS                            => System_PolyORB_Interface,
2175      RE_TA_B                             => System_PolyORB_Interface,
2176      RE_TA_C                             => System_PolyORB_Interface,
2177      RE_TA_F                             => System_PolyORB_Interface,
2178      RE_TA_I                             => System_PolyORB_Interface,
2179      RE_TA_LF                            => System_PolyORB_Interface,
2180      RE_TA_LI                            => System_PolyORB_Interface,
2181      RE_TA_LLF                           => System_PolyORB_Interface,
2182      RE_TA_LLI                           => System_PolyORB_Interface,
2183      RE_TA_LLU                           => System_PolyORB_Interface,
2184      RE_TA_LU                            => System_PolyORB_Interface,
2185      RE_TA_SF                            => System_PolyORB_Interface,
2186      RE_TA_SI                            => System_PolyORB_Interface,
2187      RE_TA_SSI                           => System_PolyORB_Interface,
2188      RE_TA_SSU                           => System_PolyORB_Interface,
2189      RE_TA_SU                            => System_PolyORB_Interface,
2190      RE_TA_U                             => System_PolyORB_Interface,
2191      RE_TA_WC                            => System_PolyORB_Interface,
2192      RE_TA_String                        => System_PolyORB_Interface,
2193      RE_TA_ObjRef                        => System_PolyORB_Interface,
2194      RE_TA_TC                            => System_PolyORB_Interface,
2195
2196      RE_TC_Alias                         => System_PolyORB_Interface,
2197      RE_TC_Build                         => System_PolyORB_Interface,
2198      RE_Set_TC                           => System_PolyORB_Interface,
2199      RE_TC_Any                           => System_PolyORB_Interface,
2200      RE_TC_AD                            => System_PolyORB_Interface,
2201      RE_TC_AS                            => System_PolyORB_Interface,
2202      RE_TC_B                             => System_PolyORB_Interface,
2203      RE_TC_C                             => System_PolyORB_Interface,
2204      RE_TC_F                             => System_PolyORB_Interface,
2205      RE_TC_I                             => System_PolyORB_Interface,
2206      RE_TC_LF                            => System_PolyORB_Interface,
2207      RE_TC_LI                            => System_PolyORB_Interface,
2208      RE_TC_LLF                           => System_PolyORB_Interface,
2209      RE_TC_LLI                           => System_PolyORB_Interface,
2210      RE_TC_LLU                           => System_PolyORB_Interface,
2211      RE_TC_LU                            => System_PolyORB_Interface,
2212      RE_TC_SF                            => System_PolyORB_Interface,
2213      RE_TC_SI                            => System_PolyORB_Interface,
2214      RE_TC_SSI                           => System_PolyORB_Interface,
2215      RE_TC_SSU                           => System_PolyORB_Interface,
2216      RE_TC_SU                            => System_PolyORB_Interface,
2217      RE_TC_U                             => System_PolyORB_Interface,
2218      RE_TC_Void                          => System_PolyORB_Interface,
2219      RE_TC_Opaque                        => System_PolyORB_Interface,
2220      RE_TC_WC                            => System_PolyORB_Interface,
2221      RE_TC_Array                         => System_PolyORB_Interface,
2222      RE_TC_Sequence                      => System_PolyORB_Interface,
2223      RE_TC_String                        => System_PolyORB_Interface,
2224      RE_TC_Struct                        => System_PolyORB_Interface,
2225      RE_TC_Union                         => System_PolyORB_Interface,
2226
2227      RE_Global_Pool_Object               => System_Pool_Global,
2228
2229      RE_Unbounded_Reclaim_Pool           => System_Pool_Local,
2230
2231      RE_Stack_Bounded_Pool               => System_Pool_Size,
2232
2233      RE_Do_Apc                           => System_RPC,
2234      RE_Do_Rpc                           => System_RPC,
2235      RE_Params_Stream_Type               => System_RPC,
2236      RE_Partition_ID                     => System_RPC,
2237      RE_RPC_Receiver                     => System_RPC,
2238
2239      RE_IS_Is1                           => System_Scalar_Values,
2240      RE_IS_Is2                           => System_Scalar_Values,
2241      RE_IS_Is4                           => System_Scalar_Values,
2242      RE_IS_Is8                           => System_Scalar_Values,
2243      RE_IS_Iu1                           => System_Scalar_Values,
2244      RE_IS_Iu2                           => System_Scalar_Values,
2245      RE_IS_Iu4                           => System_Scalar_Values,
2246      RE_IS_Iu8                           => System_Scalar_Values,
2247      RE_IS_Isf                           => System_Scalar_Values,
2248      RE_IS_Ifl                           => System_Scalar_Values,
2249      RE_IS_Ilf                           => System_Scalar_Values,
2250      RE_IS_Ill                           => System_Scalar_Values,
2251
2252      RE_Default_Secondary_Stack_Size     => System_Secondary_Stack,
2253      RE_Mark_Id                          => System_Secondary_Stack,
2254      RE_SS_Allocate                      => System_Secondary_Stack,
2255      RE_SS_Mark                          => System_Secondary_Stack,
2256      RE_SS_Pool                          => System_Secondary_Stack,
2257      RE_SS_Release                       => System_Secondary_Stack,
2258
2259      RE_Shared_Var_Close                 => System_Shared_Storage,
2260      RE_Shared_Var_Lock                  => System_Shared_Storage,
2261      RE_Shared_Var_ROpen                 => System_Shared_Storage,
2262      RE_Shared_Var_Unlock                => System_Shared_Storage,
2263      RE_Shared_Var_WOpen                 => System_Shared_Storage,
2264
2265      RE_Abort_Undefer_Direct             => System_Standard_Library,
2266      RE_Exception_Code                   => System_Standard_Library,
2267      RE_Exception_Data_Ptr               => System_Standard_Library,
2268
2269      RE_Integer_Address                  => System_Storage_Elements,
2270      RE_Storage_Offset                   => System_Storage_Elements,
2271      RE_Storage_Array                    => System_Storage_Elements,
2272      RE_To_Address                       => System_Storage_Elements,
2273
2274      RE_Root_Storage_Pool                => System_Storage_Pools,
2275      RE_Allocate_Any                     => System_Storage_Pools,
2276      RE_Deallocate_Any                   => System_Storage_Pools,
2277
2278      RE_Thin_Pointer                     => System_Stream_Attributes,
2279      RE_Fat_Pointer                      => System_Stream_Attributes,
2280
2281      RE_I_AD                             => System_Stream_Attributes,
2282      RE_I_AS                             => System_Stream_Attributes,
2283      RE_I_B                              => System_Stream_Attributes,
2284      RE_I_C                              => System_Stream_Attributes,
2285      RE_I_F                              => System_Stream_Attributes,
2286      RE_I_I                              => System_Stream_Attributes,
2287      RE_I_LF                             => System_Stream_Attributes,
2288      RE_I_LI                             => System_Stream_Attributes,
2289      RE_I_LLF                            => System_Stream_Attributes,
2290      RE_I_LLI                            => System_Stream_Attributes,
2291      RE_I_LLU                            => System_Stream_Attributes,
2292      RE_I_LU                             => System_Stream_Attributes,
2293      RE_I_SF                             => System_Stream_Attributes,
2294      RE_I_SI                             => System_Stream_Attributes,
2295      RE_I_SSI                            => System_Stream_Attributes,
2296      RE_I_SSU                            => System_Stream_Attributes,
2297      RE_I_SU                             => System_Stream_Attributes,
2298      RE_I_U                              => System_Stream_Attributes,
2299      RE_I_WC                             => System_Stream_Attributes,
2300
2301      RE_W_AD                             => System_Stream_Attributes,
2302      RE_W_AS                             => System_Stream_Attributes,
2303      RE_W_B                              => System_Stream_Attributes,
2304      RE_W_C                              => System_Stream_Attributes,
2305      RE_W_F                              => System_Stream_Attributes,
2306      RE_W_I                              => System_Stream_Attributes,
2307      RE_W_LF                             => System_Stream_Attributes,
2308      RE_W_LI                             => System_Stream_Attributes,
2309      RE_W_LLF                            => System_Stream_Attributes,
2310      RE_W_LLI                            => System_Stream_Attributes,
2311      RE_W_LLU                            => System_Stream_Attributes,
2312      RE_W_LU                             => System_Stream_Attributes,
2313      RE_W_SF                             => System_Stream_Attributes,
2314      RE_W_SI                             => System_Stream_Attributes,
2315      RE_W_SSI                            => System_Stream_Attributes,
2316      RE_W_SSU                            => System_Stream_Attributes,
2317      RE_W_SU                             => System_Stream_Attributes,
2318      RE_W_U                              => System_Stream_Attributes,
2319      RE_W_WC                             => System_Stream_Attributes,
2320
2321      RE_Block_Stream_Ops_OK              => System_Stream_Attributes,
2322
2323      RE_Str_Concat                       => System_String_Ops,
2324      RE_Str_Normalize                    => System_String_Ops,
2325      RE_Wide_Str_Normalize               => System_String_Ops,
2326      RE_Str_Concat_CC                    => System_String_Ops,
2327      RE_Str_Concat_CS                    => System_String_Ops,
2328      RE_Str_Concat_SC                    => System_String_Ops,
2329
2330      RE_Str_Concat_3                     => System_String_Ops_Concat_3,
2331
2332      RE_Str_Concat_4                     => System_String_Ops_Concat_4,
2333
2334      RE_Str_Concat_5                     => System_String_Ops_Concat_5,
2335
2336      RE_Task_Info_Type                   => System_Task_Info,
2337      RE_Unspecified_Task_Info            => System_Task_Info,
2338
2339      RE_Library_Task_Level               => System_Tasking,
2340
2341      RE_Task_Procedure_Access            => System_Tasking,
2342
2343      RO_ST_Task_Id                       => System_Tasking,
2344
2345      RE_Call_Modes                       => System_Tasking,
2346      RE_Simple_Call                      => System_Tasking,
2347      RE_Conditional_Call                 => System_Tasking,
2348      RE_Asynchronous_Call                => System_Tasking,
2349      RE_Timed_Call                       => System_Tasking,
2350
2351      RE_Task_List                        => System_Tasking,
2352
2353      RE_Accept_Alternative               => System_Tasking,
2354      RE_Accept_List                      => System_Tasking,
2355      RE_Accept_List_Access               => System_Tasking,
2356      RE_Max_Select                       => System_Tasking,
2357      RE_Max_Task_Entry                   => System_Tasking,
2358      RE_No_Rendezvous                    => System_Tasking,
2359      RE_Null_Task_Entry                  => System_Tasking,
2360      RE_Positive_Select_Index            => System_Tasking,
2361      RE_Select_Index                     => System_Tasking,
2362      RE_Select_Modes                     => System_Tasking,
2363      RE_Else_Mode                        => System_Tasking,
2364      RE_Simple_Mode                      => System_Tasking,
2365      RE_Terminate_Mode                   => System_Tasking,
2366      RE_Delay_Mode                       => System_Tasking,
2367      RE_Task_Entry_Index                 => System_Tasking,
2368      RE_Self                             => System_Tasking,
2369
2370      RE_Master_Id                        => System_Tasking,
2371      RE_Unspecified_Priority             => System_Tasking,
2372
2373      RE_Activation_Chain                 => System_Tasking,
2374
2375      RE_Abort_Defer                      => System_Soft_Links,
2376      RE_Abort_Undefer                    => System_Soft_Links,
2377      RE_Complete_Master                  => System_Soft_Links,
2378      RE_Current_Master                   => System_Soft_Links,
2379      RE_Enter_Master                     => System_Soft_Links,
2380      RE_Get_Current_Excep                => System_Soft_Links,
2381      RE_Get_GNAT_Exception               => System_Soft_Links,
2382      RE_Update_Exception                 => System_Soft_Links,
2383
2384      RE_ATSD                             => System_Threads,
2385      RE_Thread_Body_Enter                => System_Threads,
2386      RE_Thread_Body_Exceptional_Exit     => System_Threads,
2387      RE_Thread_Body_Leave                => System_Threads,
2388
2389      RE_Bits_1                           => System_Unsigned_Types,
2390      RE_Bits_2                           => System_Unsigned_Types,
2391      RE_Bits_4                           => System_Unsigned_Types,
2392      RE_Float_Unsigned                   => System_Unsigned_Types,
2393      RE_Long_Unsigned                    => System_Unsigned_Types,
2394      RE_Long_Long_Unsigned               => System_Unsigned_Types,
2395      RE_Packed_Byte                      => System_Unsigned_Types,
2396      RE_Packed_Bytes1                    => System_Unsigned_Types,
2397      RE_Packed_Bytes2                    => System_Unsigned_Types,
2398      RE_Packed_Bytes4                    => System_Unsigned_Types,
2399      RE_Short_Unsigned                   => System_Unsigned_Types,
2400      RE_Short_Short_Unsigned             => System_Unsigned_Types,
2401      RE_Unsigned                         => System_Unsigned_Types,
2402
2403      RE_Value_Boolean                    => System_Val_Bool,
2404
2405      RE_Value_Character                  => System_Val_Char,
2406
2407      RE_Value_Decimal                    => System_Val_Dec,
2408
2409      RE_Value_Enumeration_8              => System_Val_Enum,
2410      RE_Value_Enumeration_16             => System_Val_Enum,
2411      RE_Value_Enumeration_32             => System_Val_Enum,
2412
2413      RE_Value_Integer                    => System_Val_Int,
2414
2415      RE_Value_Long_Long_Decimal          => System_Val_LLD,
2416
2417      RE_Value_Long_Long_Integer          => System_Val_LLI,
2418
2419      RE_Value_Long_Long_Unsigned         => System_Val_LLU,
2420
2421      RE_Value_Real                       => System_Val_Real,
2422
2423      RE_Value_Unsigned                   => System_Val_Uns,
2424
2425      RE_Value_Wide_Character             => System_Val_WChar,
2426
2427      RE_D                                => System_Vax_Float_Operations,
2428      RE_F                                => System_Vax_Float_Operations,
2429      RE_G                                => System_Vax_Float_Operations,
2430      RE_Q                                => System_Vax_Float_Operations,
2431      RE_S                                => System_Vax_Float_Operations,
2432      RE_T                                => System_Vax_Float_Operations,
2433
2434      RE_D_To_G                           => System_Vax_Float_Operations,
2435      RE_F_To_G                           => System_Vax_Float_Operations,
2436      RE_F_To_Q                           => System_Vax_Float_Operations,
2437      RE_F_To_S                           => System_Vax_Float_Operations,
2438      RE_G_To_D                           => System_Vax_Float_Operations,
2439      RE_G_To_F                           => System_Vax_Float_Operations,
2440      RE_G_To_Q                           => System_Vax_Float_Operations,
2441      RE_G_To_T                           => System_Vax_Float_Operations,
2442      RE_Q_To_F                           => System_Vax_Float_Operations,
2443      RE_Q_To_G                           => System_Vax_Float_Operations,
2444      RE_S_To_F                           => System_Vax_Float_Operations,
2445      RE_T_To_D                           => System_Vax_Float_Operations,
2446      RE_T_To_G                           => System_Vax_Float_Operations,
2447
2448      RE_Abs_F                            => System_Vax_Float_Operations,
2449      RE_Abs_G                            => System_Vax_Float_Operations,
2450      RE_Add_F                            => System_Vax_Float_Operations,
2451      RE_Add_G                            => System_Vax_Float_Operations,
2452      RE_Div_F                            => System_Vax_Float_Operations,
2453      RE_Div_G                            => System_Vax_Float_Operations,
2454      RE_Mul_F                            => System_Vax_Float_Operations,
2455      RE_Mul_G                            => System_Vax_Float_Operations,
2456      RE_Neg_F                            => System_Vax_Float_Operations,
2457      RE_Neg_G                            => System_Vax_Float_Operations,
2458      RE_Sub_F                            => System_Vax_Float_Operations,
2459      RE_Sub_G                            => System_Vax_Float_Operations,
2460
2461      RE_Eq_F                             => System_Vax_Float_Operations,
2462      RE_Eq_G                             => System_Vax_Float_Operations,
2463      RE_Le_F                             => System_Vax_Float_Operations,
2464      RE_Le_G                             => System_Vax_Float_Operations,
2465      RE_Lt_F                             => System_Vax_Float_Operations,
2466      RE_Lt_G                             => System_Vax_Float_Operations,
2467
2468      RE_Version_String                   => System_Version_Control,
2469      RE_Get_Version_String               => System_Version_Control,
2470
2471      RE_Register_VMS_Exception           => System_VMS_Exception_Table,
2472
2473      RE_String_To_Wide_String            => System_WCh_StW,
2474
2475      RE_Wide_String_To_String            => System_WCh_WtS,
2476
2477      RE_Wide_Width_Character             => System_WWd_Char,
2478
2479      RE_Wide_Width_Enumeration_8         => System_WWd_Enum,
2480      RE_Wide_Width_Enumeration_16        => System_WWd_Enum,
2481      RE_Wide_Width_Enumeration_32        => System_WWd_Enum,
2482
2483      RE_Wide_Width_Wide_Character        => System_WWd_Wchar,
2484
2485      RE_Width_Boolean                    => System_Wid_Bool,
2486
2487      RE_Width_Character                  => System_Wid_Char,
2488
2489      RE_Width_Enumeration_8              => System_Wid_Enum,
2490      RE_Width_Enumeration_16             => System_Wid_Enum,
2491      RE_Width_Enumeration_32             => System_Wid_Enum,
2492
2493      RE_Width_Long_Long_Integer          => System_Wid_LLI,
2494
2495      RE_Width_Long_Long_Unsigned         => System_Wid_LLU,
2496
2497      RE_Width_Wide_Character             => System_Wid_WChar,
2498
2499      RE_Protected_Entry_Body_Array       =>
2500        System_Tasking_Protected_Objects_Entries,
2501      RE_Protection_Entries               =>
2502        System_Tasking_Protected_Objects_Entries,
2503      RE_Initialize_Protection_Entries    =>
2504        System_Tasking_Protected_Objects_Entries,
2505      RE_Lock_Entries                     =>
2506        System_Tasking_Protected_Objects_Entries,
2507      RE_Lock_Read_Only_Entries           =>
2508        System_Tasking_Protected_Objects_Entries,
2509      RE_Unlock_Entries                   =>
2510        System_Tasking_Protected_Objects_Entries,
2511      RE_Communication_Block              =>
2512        System_Tasking_Protected_Objects_Operations,
2513      RE_Protected_Entry_Call             =>
2514        System_Tasking_Protected_Objects_Operations,
2515      RE_Service_Entries                  =>
2516        System_Tasking_Protected_Objects_Operations,
2517      RE_Cancel_Protected_Entry_Call      =>
2518        System_Tasking_Protected_Objects_Operations,
2519      RE_Enqueued                         =>
2520        System_Tasking_Protected_Objects_Operations,
2521      RE_Cancelled                        =>
2522        System_Tasking_Protected_Objects_Operations,
2523      RE_Complete_Entry_Body              =>
2524        System_Tasking_Protected_Objects_Operations,
2525      RE_Exceptional_Complete_Entry_Body  =>
2526        System_Tasking_Protected_Objects_Operations,
2527      RE_Requeue_Protected_Entry          =>
2528        System_Tasking_Protected_Objects_Operations,
2529      RE_Requeue_Task_To_Protected_Entry  =>
2530        System_Tasking_Protected_Objects_Operations,
2531      RE_Protected_Count                  =>
2532        System_Tasking_Protected_Objects_Operations,
2533      RE_Protected_Entry_Caller           =>
2534        System_Tasking_Protected_Objects_Operations,
2535      RE_Timed_Protected_Entry_Call       =>
2536        System_Tasking_Protected_Objects_Operations,
2537
2538      RE_Protection_Entry                 =>
2539        System_Tasking_Protected_Objects_Single_Entry,
2540      RE_Initialize_Protection_Entry      =>
2541        System_Tasking_Protected_Objects_Single_Entry,
2542      RE_Lock_Entry                       =>
2543        System_Tasking_Protected_Objects_Single_Entry,
2544      RE_Lock_Read_Only_Entry             =>
2545        System_Tasking_Protected_Objects_Single_Entry,
2546      RE_Unlock_Entry                     =>
2547        System_Tasking_Protected_Objects_Single_Entry,
2548      RE_Protected_Single_Entry_Call      =>
2549        System_Tasking_Protected_Objects_Single_Entry,
2550      RE_Service_Entry                    =>
2551        System_Tasking_Protected_Objects_Single_Entry,
2552      RE_Complete_Single_Entry_Body       =>
2553        System_Tasking_Protected_Objects_Single_Entry,
2554      RE_Exceptional_Complete_Single_Entry_Body =>
2555        System_Tasking_Protected_Objects_Single_Entry,
2556      RE_Protected_Count_Entry            =>
2557        System_Tasking_Protected_Objects_Single_Entry,
2558      RE_Protected_Single_Entry_Caller    =>
2559        System_Tasking_Protected_Objects_Single_Entry,
2560      RE_Timed_Protected_Single_Entry_Call =>
2561        System_Tasking_Protected_Objects_Single_Entry,
2562
2563      RE_Protected_Entry_Index            => System_Tasking_Protected_Objects,
2564      RE_Entry_Body                       => System_Tasking_Protected_Objects,
2565      RE_Protection                       => System_Tasking_Protected_Objects,
2566      RE_Initialize_Protection            => System_Tasking_Protected_Objects,
2567      RE_Finalize_Protection              => System_Tasking_Protected_Objects,
2568      RE_Lock                             => System_Tasking_Protected_Objects,
2569      RE_Lock_Read_Only                   => System_Tasking_Protected_Objects,
2570      RE_Unlock                           => System_Tasking_Protected_Objects,
2571
2572      RE_Delay_Block                      => System_Tasking_Async_Delays,
2573      RE_Timed_Out                        => System_Tasking_Async_Delays,
2574      RE_Cancel_Async_Delay               => System_Tasking_Async_Delays,
2575      RE_Enqueue_Duration                 => System_Tasking_Async_Delays,
2576
2577      RE_Enqueue_Calendar                 =>
2578        System_Tasking_Async_Delays_Enqueue_Calendar,
2579      RE_Enqueue_RT                       =>
2580        System_Tasking_Async_Delays_Enqueue_RT,
2581
2582      RE_Accept_Call                      => System_Tasking_Rendezvous,
2583      RE_Accept_Trivial                   => System_Tasking_Rendezvous,
2584      RE_Callable                         => System_Tasking_Rendezvous,
2585      RE_Call_Simple                      => System_Tasking_Rendezvous,
2586      RE_Cancel_Task_Entry_Call           => System_Tasking_Rendezvous,
2587      RE_Requeue_Task_Entry               => System_Tasking_Rendezvous,
2588      RE_Requeue_Protected_To_Task_Entry  => System_Tasking_Rendezvous,
2589      RE_Complete_Rendezvous              => System_Tasking_Rendezvous,
2590      RE_Task_Count                       => System_Tasking_Rendezvous,
2591      RE_Exceptional_Complete_Rendezvous  => System_Tasking_Rendezvous,
2592      RE_Selective_Wait                   => System_Tasking_Rendezvous,
2593      RE_Task_Entry_Call                  => System_Tasking_Rendezvous,
2594      RE_Task_Entry_Caller                => System_Tasking_Rendezvous,
2595      RE_Timed_Task_Entry_Call            => System_Tasking_Rendezvous,
2596      RE_Timed_Selective_Wait             => System_Tasking_Rendezvous,
2597
2598      RE_Activate_Restricted_Tasks        => System_Tasking_Restricted_Stages,
2599      RE_Complete_Restricted_Activation   => System_Tasking_Restricted_Stages,
2600      RE_Create_Restricted_Task           => System_Tasking_Restricted_Stages,
2601      RE_Complete_Restricted_Task         => System_Tasking_Restricted_Stages,
2602      RE_Restricted_Terminated            => System_Tasking_Restricted_Stages,
2603
2604      RE_Abort_Tasks                      => System_Tasking_Stages,
2605      RE_Activate_Tasks                   => System_Tasking_Stages,
2606      RE_Complete_Activation              => System_Tasking_Stages,
2607      RE_Create_Task                      => System_Tasking_Stages,
2608      RE_Complete_Task                    => System_Tasking_Stages,
2609      RE_Free_Task                        => System_Tasking_Stages,
2610      RE_Expunge_Unactivated_Tasks        => System_Tasking_Stages,
2611      RE_Terminated                       => System_Tasking_Stages);
2612
2613    --------------------------------
2614    -- Configurable Run-Time Mode --
2615    --------------------------------
2616
2617    --  Part of the job of Rtsfind is to enforce run-time restrictions in
2618    --  configurable run-time mode. This is done by monitoring implicit access
2619    --  to the run time library requested by calls to the RTE function. A call
2620    --  may be invalid in configurable run-time mode for either of the
2621    --  following two reasons:
2622
2623    --     1. File in which entity lives is not present in run-time library
2624    --     2. File is present, but entity is not defined in the file
2625
2626    --  In normal mode, either or these two situations is a fatal error
2627    --  that indicates that the run-time library is incorrectly configured,
2628    --  and a fatal error message is issued to signal this error.
2629
2630    --  In configurable run-time mode, either of these two situations indicates
2631    --  simply that the corresponding operation is not available in the current
2632    --  run-time that is use. This is not a configuration error, but rather a
2633    --  natural result of a limited run-time. This situation is signalled by
2634    --  raising the exception RE_Not_Available. The caller must respond to
2635    --  this exception by posting an appropriate error message.
2636
2637    ----------------------
2638    -- No_Run_Time_Mode --
2639    ----------------------
2640
2641    --  For backwards compatibility with previous versions of GNAT, the
2642    --  compiler recognizes the pragma No_Run_Time. This provides a special
2643    --  version of configurable run-time mode that operates with the standard
2644    --  run-time library, but allows only a subset of entities to be
2645    --  accessed. If any other entity is accessed, then it is treated
2646    --  as a configurable run-time violation, and the exception
2647    --  RE_Not_Availble is raised.
2648
2649    --  The following array defines the set of units that contain entities
2650    --  that can be referenced in No_Run_Time mode. For each of these units,
2651    --  all entities defined in the unit can be used in this mode.
2652
2653    OK_No_Run_Time_Unit : constant array (RTU_Id) of Boolean :=
2654      (Ada_Exceptions          => True,
2655       Ada_Tags                => True,
2656       Interfaces              => True,
2657       System                  => True,
2658       System_Parameters       => True,
2659       System_Fat_Flt          => True,
2660       System_Fat_LFlt         => True,
2661       System_Fat_LLF          => True,
2662       System_Fat_SFlt         => True,
2663       System_Machine_Code     => True,
2664       System_Secondary_Stack  => True,
2665       System_Storage_Elements => True,
2666       System_Task_Info        => True,
2667       System_Unsigned_Types   => True,
2668       others                  => False);
2669
2670    -----------------
2671    -- Subprograms --
2672    -----------------
2673
2674    procedure Initialize;
2675    --  Procedure to initialize data structures used by RTE. Called at the
2676    --  start of processing a new main source file. Must be called after
2677    --  Initialize_Snames (since names it enters into name table must come
2678    --  after names entered by Snames).
2679
2680    RE_Not_Available : exception;
2681    --  Raised by RTE if the requested entity is not available. This can
2682    --  occur either because the file in which the entity should be found
2683    --  does not exist, or because the entity is not present in the file.
2684
2685    function RTE (E : RE_Id) return Entity_Id;
2686    --  Given the entity defined in the above tables, as identified by the
2687    --  corresponding value in the RE_Id enumeration type, returns the Id
2688    --  of the corresponding entity, first loading in (parsing, analyzing and
2689    --  expanding) its spec if the unit has not already been loaded.
2690    --
2691    --  Note: In the case of a package, RTE can return either an entity that
2692    --  is declared at the top level of the package, or the package entity
2693    --  itself. If an entity within the package has the same simple name as
2694    --  the package, then the entity within the package is returned rather
2695    --
2696    --  If RTE returns, the returned value is the required entity
2697    --
2698    --  If the entity is not available, then an error message is given. The
2699    --  form of the message depends on whether we are in configurable run time
2700    --  mode or not. In configurable run time mode, a missing entity is not
2701    --  that surprising and merely says that the particular construct is not
2702    --  supported by the run-time in use. If we are not in configurable run
2703    --  time mode, a missing entity is some kind of run-time configuration
2704    --  error. In either case, the result of the call is to raise the exception
2705    --  RE_Not_Available, which should terminate the expansion of the current
2706    --  construct.
2707
2708    function Is_RTE (Ent : Entity_Id; E : RE_Id) return Boolean;
2709    --  This function determines if the given entity corresponds to the entity
2710    --  referenced by RE_Id. It is similar in effect to (Ent = RTE (E)) except
2711    --  that the latter would unconditionally load the unit containing E. For
2712    --  this call, if the unit is not loaded, then a result of False is returned
2713    --  immediately, since obviously Ent cannot be the entity in question if the
2714    --  corresponding unit has not been loaded.
2715
2716    function Is_RTU (Ent : Entity_Id;  U : RTU_Id) return Boolean;
2717    pragma Inline (Is_RTU);
2718    --  This function determines if the given entity corresponds to the entity
2719    --  for the unit referenced by U. If this unit has not been loaded, the
2720    --  answer will always be False. If the unit has been loaded, then the
2721    --  entity id values are compared and True is returned if Ent is the
2722    --  entity for this unit.
2723
2724    function RTE_Available (E : RE_Id) return Boolean;
2725    --  Returns true if a call to RTE will succeed without raising an
2726    --  exception and without generating an error message, i.e. if the
2727    --  call will obtain the desired entity without any problems.
2728
2729    function RTU_Loaded (U : RTU_Id) return Boolean;
2730    pragma Inline (RTU_Loaded);
2731    --  Returns true if indicated unit has already been successfully loaded.
2732    --  If the unit has not been loaded, returns False. Note that this does
2733    --  not mean that an attempt to load it subsequently would fail.
2734
2735    procedure Set_RTU_Loaded (N : Node_Id);
2736    --  Register the predefined unit N as already loaded.
2737
2738    procedure Text_IO_Kludge (Nam : Node_Id);
2739    --  In Ada 83, and hence for compatibility in Ada 9X, package Text_IO has
2740    --  generic subpackages (e.g. Integer_IO). They really should be child
2741    --  packages, and in GNAT, they *are* child packages. To maintain the
2742    --  required compatibility, this routine is called for package renamings
2743    --  and generic instantiations, with the simple name of the referenced
2744    --  package. If Text_IO has been with'ed and if the simple name of Nam
2745    --  matches one of the subpackages of Text_IO, then this subpackage is
2746    --  with'ed automatically. The important result of this approach is that
2747    --  Text_IO does not drag in all the code for the subpackages unless they
2748    --  are used. Our test is a little crude, and could drag in stuff when it
2749    --  is not necessary, but that doesn't matter. Wide_Text_IO is handled in
2750    --  a similar manner.
2751
2752    function Is_Text_IO_Kludge_Unit (Nam : Node_Id) return Boolean;
2753    --  Returns True if the given Nam is an Expanded Name, whose Prefix is
2754    --  Ada, and whose selector is either Text_IO.xxx or Wide_Text_IO.xxx
2755    --  where xxx is one of the subpackages of Text_IO that is specially
2756    --  handled as described above for Text_IO_Kludge.
2757
2758 end Rtsfind;