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