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

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gcc/ada/rtsfind.ads	Fri Oct 27 22:46:09 2017 +0900
@@ -0,0 +1,3235 @@
+------------------------------------------------------------------------------
+--                                                                          --
+--                         GNAT COMPILER COMPONENTS                         --
+--                                                                          --
+--                              R T S F I N D                               --
+--                                                                          --
+--                                 S p e c                                  --
+--                                                                          --
+--          Copyright (C) 1992-2017, Free Software Foundation, Inc.         --
+--                                                                          --
+-- GNAT is free software;  you can  redistribute it  and/or modify it under --
+-- terms of the  GNU General Public License as published  by the Free Soft- --
+-- ware  Foundation;  either version 3,  or (at your option) any later ver- --
+-- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
+-- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
+-- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
+-- for  more details.  You should have  received  a copy of the GNU General --
+-- Public License  distributed with GNAT; see file COPYING3.  If not, go to --
+-- http://www.gnu.org/licenses for a complete copy of the license.          --
+--                                                                          --
+-- GNAT was originally developed  by the GNAT team at  New York University. --
+-- Extensive contributions were provided by Ada Core Technologies Inc.      --
+--                                                                          --
+------------------------------------------------------------------------------
+
+--  This package contains the routine that is used to obtain runtime library
+--  entities, loading in the required runtime library packages on demand. It
+--  is also used for such purposes as finding System.Address when System has
+--  not been explicitly With'ed.
+
+with Types; use Types;
+
+package Rtsfind is
+
+   ------------------------
+   -- Runtime Unit Table --
+   ------------------------
+
+   --  The following type includes an enumeration entry for each runtime unit.
+   --  The enumeration literal represents the fully qualified name of the unit,
+   --  as follows:
+
+   --    Names of the form Ada_xxx are first level children of Ada, whose name
+   --    is Ada.xxx. For example, the name Ada_Tags refers to package Ada.Tags.
+
+   --    Names of the form Ada_Calendar_xxx are second level children of
+   --    Ada.Calendar. This is part of a temporary implementation of delays;
+   --    eventually, packages implementing delays will be found relative to
+   --    the package that declares the time type.
+
+   --    Names of the form Ada_Interrupts_xxx are second level children of
+   --    Ada.Interrupts. This is needed for Ada.Interrupts.Names which is used
+   --    by pragma Interrupt_State.
+
+   --    Names of the form Ada_Real_Time_xxx are second level children of
+   --    Ada.Real_Time.
+
+   --    Names of the form Ada_Streams_xxx are second level children
+   --    of Ada.Streams.
+
+   --    Names of the form Ada_Strings_xxx are second level children
+   --    of Ada.Strings.
+
+   --    Names of the form Ada_Text_IO_xxx are second level children of
+   --    Ada.Text_IO.
+
+   --    Names of the form Ada_Wide_Text_IO_xxx are second level children of
+   --    Ada.Wide_Text_IO.
+
+   --    Names of the form Ada_Wide_Wide_Text_IO_xxx are second level children
+   --    of Ada.Wide_Wide_Text_IO.
+
+   --    Names of the form Interfaces_xxx are first level children of
+   --    Interfaces. For example, the name Interfaces_Packed_Decimal refers to
+   --    package Interfaces.Packed_Decimal.
+
+   --    Names of the form System_xxx are first level children of System, whose
+   --    name is System.xxx. For example, the name System_Str_Concat refers to
+   --    package System.Str_Concat.
+
+   --    Names of the form System_Storage_Pools_xxx are second level children
+   --    of the package System.Storage_Pools.
+
+   --    Names of the form System_Strings_xxx are second level children of the
+   --    package System.Strings.
+
+   --    Names of the form System_Tasking_xxx are second level children of the
+   --    package System.Tasking. For example, System_Tasking_Stages refers to
+   --    the package System.Tasking.Stages.
+
+   --    Other names stand for themselves (e.g. System for package System)
+
+   --  This list can contain both subprogram and package unit names. For
+   --  packages, the accessible entities in the package are separately listed
+   --  in the package entity table. The units must be either library level
+   --  package declarations, or library level subprogram declarations. Generic
+   --  units, library level instantiations and subprogram bodies acting as
+   --  specs may not be referenced (all these cases could be added at the
+   --  expense of additional complexity in the body of Rtsfind, but it doesn't
+   --  seem worthwhile, since the implementation controls the set of units that
+   --  are referenced, and this restriction is easily met.
+
+   --  IMPORTANT NOTE: the specs of packages and procedures with'ed using this
+   --  mechanism may not contain use clauses. This is because these subprograms
+   --  are compiled in the current visibility environment, and it would be too
+   --  much trouble to establish a clean environment for the compilation. The
+   --  presence of extraneous visible stuff has no effect on the compilation
+   --  except in the presence of use clauses (which might result in unexpected
+   --  ambiguities).
+
+   type RTU_Id is (
+
+      --  Runtime packages, for list of accessible entities in each package,
+      --  see declarations in the runtime entity table below.
+
+      RTU_Null,
+      --  Used as a null entry (will cause an error if referenced)
+
+      --  Package Ada
+
+      Ada,
+
+      --  Children of Ada
+
+      Ada_Calendar,
+      Ada_Dispatching,
+      Ada_Exceptions,
+      Ada_Finalization,
+      Ada_Interrupts,
+      Ada_Numerics,
+      Ada_Real_Time,
+      Ada_Streams,
+      Ada_Strings,
+      Ada_Tags,
+      Ada_Task_Identification,
+      Ada_Task_Termination,
+      Ada_Text_IO,
+      Ada_Wide_Text_IO,
+      Ada_Wide_Wide_Text_IO,
+
+      --  Children of Ada.Calendar
+
+      Ada_Calendar_Delays,
+
+      --  Children of Ada.Dispatching
+
+      Ada_Dispatching_EDF,
+
+      --  Children of Ada.Interrupts
+
+      Ada_Interrupts_Names,
+
+      --  Children of Ada.Numerics
+
+      Ada_Numerics_Generic_Elementary_Functions,
+
+      --  Children of Ada.Real_Time
+
+      Ada_Real_Time_Delays,
+      Ada_Real_Time_Timing_Events,
+
+      --  Children of Ada.Streams
+
+      Ada_Streams_Stream_IO,
+
+      --  Children of Ada.Strings
+
+      Ada_Strings_Superbounded,
+      Ada_Strings_Wide_Superbounded,
+      Ada_Strings_Wide_Wide_Superbounded,
+      Ada_Strings_Unbounded,
+
+      --  Children of Ada.Text_IO (for Check_Text_IO_Special_Unit)
+
+      Ada_Text_IO_Decimal_IO,
+      Ada_Text_IO_Enumeration_IO,
+      Ada_Text_IO_Fixed_IO,
+      Ada_Text_IO_Float_IO,
+      Ada_Text_IO_Integer_IO,
+      Ada_Text_IO_Modular_IO,
+
+      --  Children of Ada.Wide_Text_IO (for Check_Text_IO_Special_Unit)
+
+      Ada_Wide_Text_IO_Decimal_IO,
+      Ada_Wide_Text_IO_Enumeration_IO,
+      Ada_Wide_Text_IO_Fixed_IO,
+      Ada_Wide_Text_IO_Float_IO,
+      Ada_Wide_Text_IO_Integer_IO,
+      Ada_Wide_Text_IO_Modular_IO,
+
+      --  Children of Ada.Wide_Wide_Text_IO (for Check_Text_IO_Special_Unit)
+
+      Ada_Wide_Wide_Text_IO_Decimal_IO,
+      Ada_Wide_Wide_Text_IO_Enumeration_IO,
+      Ada_Wide_Wide_Text_IO_Fixed_IO,
+      Ada_Wide_Wide_Text_IO_Float_IO,
+      Ada_Wide_Wide_Text_IO_Integer_IO,
+      Ada_Wide_Wide_Text_IO_Modular_IO,
+
+      --  Interfaces
+
+      Interfaces,
+
+      --  Children of Interfaces
+
+      Interfaces_Packed_Decimal,
+
+      --  Package System
+
+      System,
+
+      --  Children of System
+
+      System_Address_Image,
+      System_Arith_64,
+      System_AST_Handling,
+      System_Assertions,
+      System_Atomic_Primitives,
+      System_Aux_DEC,
+      System_Bignums,
+      System_Bit_Ops,
+      System_Boolean_Array_Operations,
+      System_Byte_Swapping,
+      System_Checked_Pools,
+      System_Compare_Array_Signed_16,
+      System_Compare_Array_Signed_32,
+      System_Compare_Array_Signed_64,
+      System_Compare_Array_Signed_8,
+      System_Compare_Array_Unsigned_16,
+      System_Compare_Array_Unsigned_32,
+      System_Compare_Array_Unsigned_64,
+      System_Compare_Array_Unsigned_8,
+      System_Concat_2,
+      System_Concat_3,
+      System_Concat_4,
+      System_Concat_5,
+      System_Concat_6,
+      System_Concat_7,
+      System_Concat_8,
+      System_Concat_9,
+      System_Dim,
+      System_DSA_Services,
+      System_DSA_Types,
+      System_Elaboration_Allocators,
+      System_Exception_Table,
+      System_Exceptions_Debug,
+      System_Exn_Int,
+      System_Exn_LLF,
+      System_Exn_LLI,
+      System_Exp_Int,
+      System_Exp_LInt,
+      System_Exp_LLI,
+      System_Exp_LLU,
+      System_Exp_Mod,
+      System_Exp_Uns,
+      System_Fat_Flt,
+      System_Fat_IEEE_Long_Float,
+      System_Fat_IEEE_Short_Float,
+      System_Fat_LFlt,
+      System_Fat_LLF,
+      System_Fat_SFlt,
+      System_Fat_VAX_D_Float,
+      System_Fat_VAX_F_Float,
+      System_Fat_VAX_G_Float,
+      System_Finalization_Masters,
+      System_Finalization_Root,
+      System_Fore,
+      System_Img_Bool,
+      System_Img_Char,
+      System_Img_Dec,
+      System_Img_Enum,
+      System_Img_Enum_New,
+      System_Img_Int,
+      System_Img_LLD,
+      System_Img_LLI,
+      System_Img_LLU,
+      System_Img_Name,
+      System_Img_Real,
+      System_Img_Uns,
+      System_Img_WChar,
+      System_Interrupts,
+      System_Long_Long_Float_Expon,
+      System_Machine_Code,
+      System_Mantissa,
+      System_Memcop,
+      System_Memory,
+      System_Multiprocessors,
+      System_Pack_03,
+      System_Pack_05,
+      System_Pack_06,
+      System_Pack_07,
+      System_Pack_09,
+      System_Pack_10,
+      System_Pack_11,
+      System_Pack_12,
+      System_Pack_13,
+      System_Pack_14,
+      System_Pack_15,
+      System_Pack_17,
+      System_Pack_18,
+      System_Pack_19,
+      System_Pack_20,
+      System_Pack_21,
+      System_Pack_22,
+      System_Pack_23,
+      System_Pack_24,
+      System_Pack_25,
+      System_Pack_26,
+      System_Pack_27,
+      System_Pack_28,
+      System_Pack_29,
+      System_Pack_30,
+      System_Pack_31,
+      System_Pack_33,
+      System_Pack_34,
+      System_Pack_35,
+      System_Pack_36,
+      System_Pack_37,
+      System_Pack_38,
+      System_Pack_39,
+      System_Pack_40,
+      System_Pack_41,
+      System_Pack_42,
+      System_Pack_43,
+      System_Pack_44,
+      System_Pack_45,
+      System_Pack_46,
+      System_Pack_47,
+      System_Pack_48,
+      System_Pack_49,
+      System_Pack_50,
+      System_Pack_51,
+      System_Pack_52,
+      System_Pack_53,
+      System_Pack_54,
+      System_Pack_55,
+      System_Pack_56,
+      System_Pack_57,
+      System_Pack_58,
+      System_Pack_59,
+      System_Pack_60,
+      System_Pack_61,
+      System_Pack_62,
+      System_Pack_63,
+      System_Parameters,
+      System_Partition_Interface,
+      System_Pool_32_Global,
+      System_Pool_Global,
+      System_Pool_Empty,
+      System_Pool_Local,
+      System_Pool_Size,
+      System_Relative_Delays,
+      System_RPC,
+      System_Scalar_Values,
+      System_Secondary_Stack,
+      System_Shared_Storage,
+      System_Soft_Links,
+      System_Standard_Library,
+      System_Storage_Elements,
+      System_Storage_Pools,
+      System_Stream_Attributes,
+      System_Task_Info,
+      System_Tasking,
+      System_Threads,
+      System_Unsigned_Types,
+      System_Val_Bool,
+      System_Val_Char,
+      System_Val_Dec,
+      System_Val_Enum,
+      System_Val_Int,
+      System_Val_LLD,
+      System_Val_LLI,
+      System_Val_LLU,
+      System_Val_Name,
+      System_Val_Real,
+      System_Val_Uns,
+      System_Val_WChar,
+      System_Version_Control,
+      System_WCh_StW,
+      System_WCh_WtS,
+      System_Wid_Bool,
+      System_Wid_Char,
+      System_Wid_Enum,
+      System_Wid_LLI,
+      System_Wid_LLU,
+      System_Wid_Name,
+      System_Wid_WChar,
+      System_WWd_Char,
+      System_WWd_Enum,
+      System_WWd_Wchar,
+
+      --  Children of System.Dim
+
+      System_Dim_Float_IO,
+      System_Dim_Integer_IO,
+
+      --  Children of System.Multiprocessors
+
+      System_Multiprocessors_Dispatching_Domains,
+
+      --  Children of System.Storage_Pools
+
+      System_Storage_Pools_Subpools,
+
+      --  Children of System.Strings
+
+      System_Strings_Stream_Ops,
+
+      --  Children of System.Tasking
+
+      System_Tasking_Async_Delays,
+      System_Tasking_Async_Delays_Enqueue_Calendar,
+      System_Tasking_Async_Delays_Enqueue_RT,
+      System_Tasking_Protected_Objects,
+      System_Tasking_Protected_Objects_Entries,
+      System_Tasking_Protected_Objects_Operations,
+      System_Tasking_Protected_Objects_Single_Entry,
+      System_Tasking_Restricted_Stages,
+      System_Tasking_Rendezvous,
+      System_Tasking_Stages);
+
+   subtype Ada_Child is RTU_Id
+     range Ada_Calendar .. Ada_Wide_Wide_Text_IO_Modular_IO;
+   --  Range of values for children or grand-children of Ada
+
+   subtype Ada_Calendar_Child is Ada_Child
+     range Ada_Calendar_Delays .. Ada_Calendar_Delays;
+   --  Range of values for children of Ada.Calendar
+
+   subtype Ada_Dispatching_Child is RTU_Id
+     range Ada_Dispatching_EDF .. Ada_Dispatching_EDF;
+   --  Range of values for children of Ada.Dispatching
+
+   subtype Ada_Interrupts_Child is Ada_Child range
+     Ada_Interrupts_Names .. Ada_Interrupts_Names;
+   --  Range of values for children of Ada.Interrupts
+
+   subtype Ada_Numerics_Child is Ada_Child
+     range Ada_Numerics_Generic_Elementary_Functions ..
+           Ada_Numerics_Generic_Elementary_Functions;
+   --  Range of values for children of Ada.Numerics
+
+   subtype Ada_Real_Time_Child is Ada_Child
+     range Ada_Real_Time_Delays .. Ada_Real_Time_Timing_Events;
+   --  Range of values for children of Ada.Real_Time
+
+   subtype Ada_Streams_Child is Ada_Child
+     range Ada_Streams_Stream_IO .. Ada_Streams_Stream_IO;
+   --  Range of values for children of Ada.Streams
+
+   subtype Ada_Strings_Child is Ada_Child
+     range Ada_Strings_Superbounded .. Ada_Strings_Unbounded;
+   --  Range of values for children of Ada.Strings
+
+   subtype Ada_Text_IO_Child is Ada_Child
+     range Ada_Text_IO_Decimal_IO .. Ada_Text_IO_Modular_IO;
+   --  Range of values for children of Ada.Text_IO
+
+   subtype Ada_Wide_Text_IO_Child is Ada_Child
+     range Ada_Wide_Text_IO_Decimal_IO .. Ada_Wide_Text_IO_Modular_IO;
+   --  Range of values for children of Ada.Text_IO
+
+   subtype Ada_Wide_Wide_Text_IO_Child is Ada_Child
+     range Ada_Wide_Wide_Text_IO_Decimal_IO ..
+           Ada_Wide_Wide_Text_IO_Modular_IO;
+
+   subtype Interfaces_Child is RTU_Id
+     range Interfaces_Packed_Decimal .. Interfaces_Packed_Decimal;
+   --  Range of values for children of Interfaces
+
+   subtype System_Child is RTU_Id
+     range System_Address_Image .. System_Tasking_Stages;
+   --  Range of values for children or grandchildren of System
+
+   subtype System_Dim_Child is RTU_Id
+     range System_Dim_Float_IO .. System_Dim_Integer_IO;
+   --  Range of values for children of System.Dim
+
+   subtype System_Multiprocessors_Child is RTU_Id
+     range System_Multiprocessors_Dispatching_Domains ..
+       System_Multiprocessors_Dispatching_Domains;
+   --  Range of values for children of System.Multiprocessors
+
+   subtype System_Storage_Pools_Child is RTU_Id
+     range System_Storage_Pools_Subpools .. System_Storage_Pools_Subpools;
+
+   subtype System_Strings_Child is RTU_Id
+     range System_Strings_Stream_Ops .. System_Strings_Stream_Ops;
+
+   subtype System_Tasking_Child is System_Child
+     range System_Tasking_Async_Delays .. System_Tasking_Stages;
+   --  Range of values for children of System.Tasking
+
+   subtype System_Tasking_Protected_Objects_Child is System_Tasking_Child
+     range System_Tasking_Protected_Objects_Entries ..
+       System_Tasking_Protected_Objects_Single_Entry;
+   --  Range of values for children of System.Tasking.Protected_Objects
+
+   subtype System_Tasking_Restricted_Child is System_Tasking_Child
+     range System_Tasking_Restricted_Stages ..
+       System_Tasking_Restricted_Stages;
+   --  Range of values for children of System.Tasking.Restricted
+
+   subtype System_Tasking_Async_Delays_Child is System_Tasking_Child
+     range System_Tasking_Async_Delays_Enqueue_Calendar ..
+       System_Tasking_Async_Delays_Enqueue_RT;
+   --  Range of values for children of System.Tasking.Async_Delays
+
+   --------------------------
+   -- Runtime Entity Table --
+   --------------------------
+
+   --  This is the enumeration type used to define the argument passed to
+   --  the RTE function. The name must exactly match the name of the entity
+   --  involved, and in the case of a package entity, this name must uniquely
+   --  imply the package containing the entity.
+
+   --  As far as possible, we avoid duplicate names in runtime packages, so
+   --  that the name RE_nnn uniquely identifies the entity nnn. In some cases,
+   --  it is impossible to avoid such duplication because the names come from
+   --  RM defined packages. In such cases, the name is of the form RO_XX_nnn
+   --  where XX is two letters used to differentiate the multiple occurrences
+   --  of the name xx, and nnn is the entity name.
+
+   --  Note that not all entities in the units contained in the run-time unit
+   --  table are included in the following table, only those that actually
+   --  have to be referenced from generated code.
+
+   --  Note on RE_Null. This value is used as a null entry where an RE_Id
+   --  value is required syntactically, but no real entry is required or
+   --  needed. Use of this value will cause a fatal error in an RTE call.
+
+   --  Note that under no circumstances can any of these entities be defined
+   --  more than once in a given package, i.e. no overloading is allowed for
+   --  any entity that is found using rtsfind. A fatal error is given if this
+   --  rule is violated. The one exception is for Save_Occurrence, where the
+   --  RM mandates the overloading. In this case, the compiler only uses the
+   --  procedure, not the function, and the procedure must come first so that
+   --  the compiler finds it and not the function.
+
+   type RE_Id is (
+
+     RE_Null,
+
+     RO_CA_Time,                         -- Ada.Calendar
+
+     RO_CA_Delay_For,                    -- Ada.Calendar.Delays
+     RO_CA_Delay_Until,                  -- Ada.Calendar.Delays
+     RO_CA_To_Duration,                  -- Ada.Calendar.Delays
+
+     RE_Set_Deadline,                    -- Ada.Dispatching.EDF
+
+     RE_Code_Loc,                        -- Ada.Exceptions
+     RE_Exception_Id,                    -- Ada.Exceptions
+     RE_Exception_Identity,              -- Ada.Exceptions
+     RE_Exception_Information,           -- Ada.Exceptions
+     RE_Exception_Message,               -- Ada.Exceptions
+     RE_Exception_Name_Simple,           -- Ada.Exceptions
+     RE_Exception_Occurrence,            -- Ada.Exceptions
+     RE_Exception_Occurrence_Access,     -- Ada.Exceptions
+     RE_Null_Id,                         -- Ada.Exceptions
+     RE_Null_Occurrence,                 -- Ada.Exceptions
+     RE_Poll,                            -- Ada.Exceptions
+     RE_Raise_Exception,                 -- Ada.Exceptions
+     RE_Raise_Exception_Always,          -- Ada.Exceptions
+     RE_Raise_From_Controlled_Operation, -- Ada.Exceptions
+     RE_Reraise_Occurrence,              -- Ada.Exceptions
+     RE_Reraise_Occurrence_Always,       -- Ada.Exceptions
+     RE_Reraise_Occurrence_No_Defer,     -- Ada.Exceptions
+     RE_Save_Occurrence,                 -- Ada.Exceptions
+     RE_Triggered_By_Abort,              -- Ada.Exceptions
+
+     RE_Interrupt_ID,                    -- Ada.Interrupts
+     RE_Is_Reserved,                     -- Ada.Interrupts
+     RE_Is_Attached,                     -- Ada.Interrupts
+     RE_Current_Handler,                 -- Ada.Interrupts
+     RE_Attach_Handler,                  -- Ada.Interrupts
+     RE_Exchange_Handler,                -- Ada.Interrupts
+     RE_Detach_Handler,                  -- Ada.Interrupts
+     RE_Reference,                       -- Ada.Interrupts
+
+     RE_Names,                           -- Ada.Interrupts.Names
+
+     RE_Clock,                           -- Ada.Real_Time
+     RE_Time_Span,                       -- Ada.Real_Time
+     RE_Time_Span_Zero,                  -- Ada.Real_Time
+     RO_RT_Time,                         -- Ada.Real_Time
+
+     RO_RT_Delay_Until,                  -- Ada.Real_Time.Delays
+     RO_RT_To_Duration,                  -- Ada.Real_Time.Delays
+
+     RE_Set_Handler,                     -- Ada.Real_Time.Timing_Events
+     RE_Timing_Event,                    -- Ada.Real_Time.Timing_Events
+
+     RE_Root_Stream_Type,                -- Ada.Streams
+     RE_Stream_Element,                  -- Ada.Streams
+     RE_Stream_Element_Array,            -- Ada.Streams
+     RE_Stream_Element_Offset,           -- Ada.Streams
+
+     RE_Stream_Access,                   -- Ada.Streams.Stream_IO
+
+     RO_SU_Super_String,                 -- Ada.Strings.Superbounded
+
+     RO_WI_Super_String,                 -- Ada.Strings.Wide_Superbounded
+
+     RO_WW_Super_String,                 -- Ada.Strings.Wide_Wide_Superbounded
+
+     RE_Unbounded_String,                -- Ada.Strings.Unbounded
+
+     RE_Access_Level,                    -- Ada.Tags
+     RE_Alignment,                       -- Ada.Tags
+     RE_Address_Array,                   -- Ada.Tags
+     RE_Addr_Ptr,                        -- Ada.Tags
+     RE_Base_Address,                    -- Ada.Tags
+     RE_Check_Interface_Conversion,      -- Ada.Tags
+     RE_Check_TSD,                       -- Ada.Tags
+     RE_Cstring_Ptr,                     -- Ada.Tags
+     RE_Descendant_Tag,                  -- Ada.Tags
+     RE_Dispatch_Table,                  -- Ada.Tags
+     RE_Dispatch_Table_Wrapper,          -- Ada.Tags
+     RE_Displace,                        -- Ada.Tags
+     RE_DT,                              -- Ada.Tags
+     RE_DT_Offset_To_Top_Offset,         -- Ada.Tags
+     RE_DT_Predef_Prims_Offset,          -- Ada.Tags
+     RE_DT_Typeinfo_Ptr_Size,            -- Ada.Tags
+     RE_External_Tag,                    -- Ada.Tags
+     RO_TA_External_Tag,                 -- Ada.Tags
+     RE_Get_Access_Level,                -- Ada.Tags
+     RE_Get_Alignment,                   -- Ada.Tags
+     RE_Get_Entry_Index,                 -- Ada.Tags
+     RE_Get_Offset_Index,                -- Ada.Tags
+     RE_Get_Prim_Op_Kind,                -- Ada.Tags
+     RE_Get_Tagged_Kind,                 -- Ada.Tags
+     RE_Idepth,                          -- Ada.Tags
+     RE_Interfaces_Array,                -- Ada.Tags
+     RE_Interfaces_Table,                -- Ada.Tags
+     RE_Interface_Data,                  -- Ada.Tags
+     RE_Interface_Data_Element,          -- Ada.Tags
+     RE_Interface_Tag,                   -- Ada.Tags
+     RE_Is_Abstract,                     -- Ada.Tags
+     RE_IW_Membership,                   -- Ada.Tags
+     RE_Max_Predef_Prims,                -- Ada.Tags
+     RE_Needs_Finalization,              -- Ada.Tags
+     RE_No_Dispatch_Table_Wrapper,       -- Ada.Tags
+     RE_No_Tag,                          -- Ada.Tags
+     RE_NDT_Prims_Ptr,                   -- Ada.Tags
+     RE_NDT_TSD,                         -- Ada.Tags
+     RE_Num_Prims,                       -- Ada.Tags
+     RE_Object_Specific_Data,            -- Ada.Tags
+     RE_Offset_To_Top,                   -- Ada.Tags
+     RE_Offset_To_Top_Ptr,               -- Ada.Tags
+     RE_Offset_To_Top_Function_Ptr,      -- Ada.Tags
+     RE_OSD_Table,                       -- Ada.Tags
+     RE_OSD_Num_Prims,                   -- Ada.Tags
+     RE_POK_Function,                    -- Ada.Tags
+     RE_POK_Procedure,                   -- Ada.Tags
+     RE_POK_Protected_Entry,             -- Ada.Tags
+     RE_POK_Protected_Function,          -- Ada.Tags
+     RE_POK_Protected_Procedure,         -- Ada.Tags
+     RE_POK_Task_Entry,                  -- Ada.Tags
+     RE_POK_Task_Function,               -- Ada.Tags
+     RE_POK_Task_Procedure,              -- Ada.Tags
+     RE_Predef_Prims,                    -- Ada.Tags
+     RE_Predef_Prims_Table_Ptr,          -- Ada.Tags
+     RE_Prim_Op_Kind,                    -- Ada.Tags
+     RE_Prim_Ptr,                        -- Ada.Tags
+     RE_Prims_Ptr,                       -- Ada.Tags
+     RE_Primary_DT,                      -- Ada.Tags
+     RE_Signature,                       -- Ada.Tags
+     RE_SSD,                             -- Ada.Tags
+     RE_TSD,                             -- Ada.Tags
+     RE_Type_Specific_Data,              -- Ada.Tags
+     RE_Register_Interface_Offset,       -- Ada.Tags
+     RE_Register_Tag,                    -- Ada.Tags
+     RE_Register_TSD,                    -- Ada.Tags
+     RE_Transportable,                   -- Ada.Tags
+     RE_Secondary_DT,                    -- Ada.Tags
+     RE_Secondary_Tag,                   -- Ada.Tags
+     RE_Select_Specific_Data,            -- Ada.Tags
+     RE_Set_Entry_Index,                 -- Ada.Tags
+     RE_Set_Dynamic_Offset_To_Top,       -- Ada.Tags
+     RE_Set_Prim_Op_Kind,                -- Ada.Tags
+     RE_Size_Func,                       -- Ada.Tags
+     RE_Size_Ptr,                        -- Ada.Tags
+     RE_Tag,                             -- Ada.Tags
+     RE_Tag_Error,                       -- Ada.Tags
+     RE_Tag_Kind,                        -- Ada.Tags
+     RE_Tag_Ptr,                         -- Ada.Tags
+     RE_Tag_Table,                       -- Ada.Tags
+     RE_Tags_Table,                      -- Ada.Tags
+     RE_Tagged_Kind,                     -- Ada.Tags
+     RE_Type_Specific_Data_Ptr,          -- Ada.Tags
+     RE_TK_Abstract_Limited_Tagged,      -- Ada.Tags
+     RE_TK_Abstract_Tagged,              -- Ada.Tags
+     RE_TK_Limited_Tagged,               -- Ada.Tags
+     RE_TK_Protected,                    -- Ada.Tags
+     RE_TK_Tagged,                       -- Ada.Tags
+     RE_TK_Task,                         -- Ada.Tags
+     RE_Unregister_Tag,                  -- Ada.Tags
+
+     RE_Set_Specific_Handler,            -- Ada.Task_Termination
+     RE_Specific_Handler,                -- Ada.Task_Termination
+
+     RE_Abort_Task,                      -- Ada.Task_Identification
+     RE_Current_Task,                    -- Ada.Task_Identification
+     RO_AT_Task_Id,                      -- Ada.Task_Identification
+     RE_Tasking_State,                   -- Ada.Task_Identification
+
+     RE_Decimal_IO,                      -- Ada.Text_IO
+     RE_Fixed_IO,                        -- Ada.Text_IO
+
+     RO_WT_Decimal_IO,                   -- Ada.Wide_Text_IO
+     RO_WT_Fixed_IO,                     -- Ada.Wide_Text_IO
+
+     RO_WW_Decimal_IO,                   -- Ada.Wide_Wide_Text_IO
+     RO_WW_Fixed_IO,                     -- Ada.Wide_Wide_Text_IO
+
+     RE_Integer_8,                       -- Interfaces
+     RE_Integer_16,                      -- Interfaces
+     RE_Integer_32,                      -- Interfaces
+     RE_Integer_64,                      -- Interfaces
+     RE_Unsigned_8,                      -- Interfaces
+     RE_Unsigned_16,                     -- Interfaces
+     RE_Unsigned_32,                     -- Interfaces
+     RE_Unsigned_64,                     -- Interfaces
+
+     RE_Address,                         -- System
+     RE_Any_Priority,                    -- System
+     RE_Bit_Order,                       -- System
+     RE_Default_Priority,                -- System
+     RE_High_Order_First,                -- System
+     RE_Interrupt_Priority,              -- System
+     RE_Lib_Stop,                        -- System
+     RE_Low_Order_First,                 -- System
+     RE_Max_Base_Digits,                 -- System
+     RE_Max_Priority,                    -- System
+     RE_Null_Address,                    -- System
+     RE_Priority,                        -- System
+
+     RE_Address_Image,                   -- System.Address_Image
+
+     RE_Add_With_Ovflo_Check,            -- System.Arith_64
+     RE_Double_Divide,                   -- System.Arith_64
+     RE_Multiply_With_Ovflo_Check,       -- System.Arith_64
+     RE_Scaled_Divide,                   -- System.Arith_64
+     RE_Subtract_With_Ovflo_Check,       -- System.Arith_64
+
+     RE_Create_AST_Handler,              -- System.AST_Handling
+
+     RE_Assert_Failure,                  -- System.Assertions
+     RE_Raise_Assert_Failure,            -- System.Assertions
+
+     RE_Lock_Free_Read_8,                -- System.Atomic_Primitives
+     RE_Lock_Free_Read_16,               -- System.Atomic_Primitives
+     RE_Lock_Free_Read_32,               -- System.Atomic_Primitives
+     RE_Lock_Free_Read_64,               -- System.Atomic_Primitives
+     RE_Lock_Free_Try_Write_8,           -- System.Atomic_Primitives
+     RE_Lock_Free_Try_Write_16,          -- System.Atomic_Primitives
+     RE_Lock_Free_Try_Write_32,          -- System.Atomic_Primitives
+     RE_Lock_Free_Try_Write_64,          -- System.Atomic_Primitives
+     RE_Uint8,                           -- System.Atomic_Primitives
+     RE_Uint16,                          -- System.Atomic_Primitives
+     RE_Uint32,                          -- System.Atomic_Primitives
+     RE_Uint64,                          -- System.Atomic_Primitives
+
+     RE_AST_Handler,                     -- System.Aux_DEC
+     RE_Import_Address,                  -- System.Aux_DEC
+     RE_Import_Value,                    -- System.Aux_DEC
+     RE_No_AST_Handler,                  -- System.Aux_DEC
+     RE_Type_Class,                      -- System.Aux_DEC
+     RE_Type_Class_Enumeration,          -- System.Aux_DEC
+     RE_Type_Class_Integer,              -- System.Aux_DEC
+     RE_Type_Class_Fixed_Point,          -- System.Aux_DEC
+     RE_Type_Class_Floating_Point,       -- System.Aux_DEC
+     RE_Type_Class_Array,                -- System.Aux_DEC
+     RE_Type_Class_Record,               -- System.Aux_DEC
+     RE_Type_Class_Access,               -- System.Aux_DEC
+     RE_Type_Class_Task,                 -- System.Aux_DEC
+     RE_Type_Class_Address,              -- System.Aux_DEC
+
+     RE_Big_Abs,                         -- System.Bignums
+     RE_Big_Add,                         -- System.Bignums
+     RE_Big_Div,                         -- System.Bignums
+     RE_Big_Exp,                         -- System.Bignums
+     RE_Big_Mod,                         -- System.Bignums
+     RE_Big_Mul,                         -- System.Bignums
+     RE_Big_Neg,                         -- System.Bignums
+     RE_Big_Rem,                         -- System.Bignums
+     RE_Big_Sub,                         -- System.Bignums
+
+     RE_Big_EQ,                          -- System.Bignums
+     RE_Big_GE,                          -- System.Bignums
+     RE_Big_GT,                          -- System.Bignums
+     RE_Big_LE,                          -- System.Bignums
+     RE_Big_LT,                          -- System.Bignums
+     RE_Big_NE,                          -- System.Bignums
+
+     RE_Bignum,                          -- System.Bignums
+     RE_Bignum_In_LLI_Range,             -- System.Bignums
+     RE_To_Bignum,                       -- System.Bignums
+     RE_From_Bignum,                     -- System.Bignums
+
+     RE_Bit_And,                         -- System.Bit_Ops
+     RE_Bit_Eq,                          -- System.Bit_Ops
+     RE_Bit_Not,                         -- System.Bit_Ops
+     RE_Bit_Or,                          -- System.Bit_Ops
+     RE_Bit_Xor,                         -- System.Bit_Ops
+
+     RE_Vector_Not,                      -- System.Boolean_Array_Operations,
+     RE_Vector_And,                      -- System.Boolean_Array_Operations,
+     RE_Vector_Or,                       -- System.Boolean_Array_Operations,
+     RE_Vector_Nand,                     -- System.Boolean_Array_Operations,
+     RE_Vector_Nor,                      -- System.Boolean_Array_Operations,
+     RE_Vector_Nxor,                     -- System.Boolean_Array_Operations,
+     RE_Vector_Xor,                      -- System.Boolean_Array_Operations,
+
+     RE_Bswap_16,                        -- System.Byte_Swapping
+     RE_Bswap_32,                        -- System.Byte_Swapping
+     RE_Bswap_64,                        -- System.Byte_Swapping
+
+     RE_Checked_Pool,                    -- System.Checked_Pools
+
+     RE_Compare_Array_S8,                -- System.Compare_Array_Signed_8
+     RE_Compare_Array_S8_Unaligned,      -- System.Compare_Array_Signed_8
+
+     RE_Compare_Array_S16,               -- System.Compare_Array_Signed_16
+     RE_Compare_Array_S32,               -- System.Compare_Array_Signed_16
+     RE_Compare_Array_S64,               -- System.Compare_Array_Signed_16
+
+     RE_Compare_Array_U8,                -- System.Compare_Array_Unsigned_8
+     RE_Compare_Array_U8_Unaligned,      -- System.Compare_Array_Unsigned_8
+
+     RE_Compare_Array_U16,               -- System.Compare_Array_Unsigned_16
+     RE_Compare_Array_U32,               -- System.Compare_Array_Unsigned_16
+     RE_Compare_Array_U64,               -- System.Compare_Array_Unsigned_16
+
+     RE_Str_Concat_2,                    -- System.Concat_2
+     RE_Str_Concat_3,                    -- System.Concat_3
+     RE_Str_Concat_4,                    -- System.Concat_4
+     RE_Str_Concat_5,                    -- System.Concat_5
+     RE_Str_Concat_6,                    -- System.Concat_6
+     RE_Str_Concat_7,                    -- System.Concat_7
+     RE_Str_Concat_8,                    -- System.Concat_8
+     RE_Str_Concat_9,                    -- System.Concat_9
+
+     RE_Str_Concat_Bounds_2,             -- System.Concat_2
+     RE_Str_Concat_Bounds_3,             -- System.Concat_3
+     RE_Str_Concat_Bounds_4,             -- System.Concat_4
+     RE_Str_Concat_Bounds_5,             -- System.Concat_5
+     RE_Str_Concat_Bounds_6,             -- System.Concat_6
+     RE_Str_Concat_Bounds_7,             -- System.Concat_7
+     RE_Str_Concat_Bounds_8,             -- System.Concat_8
+     RE_Str_Concat_Bounds_9,             -- System.Concat_9
+
+     RE_Get_Active_Partition_Id,         -- System.DSA_Services
+     RE_Get_Local_Partition_Id,          -- System.DSA_Services
+     RE_Get_Passive_Partition_Id,        -- System.DSA_Services
+
+     RE_Any_Container_Ptr,               -- System.DSA_Types
+
+     RE_Check_Standard_Allocator,        -- System.Elaboration_Allocators
+
+     RE_Register_Exception,              -- System.Exception_Table
+
+     RE_Local_Raise,                     -- System.Exceptions_Debug
+
+     RE_Exn_Integer,                     -- System.Exn_Int
+
+     RE_Exn_Float,                       -- System.Exn_LLF
+     RE_Exn_Long_Float,                  -- System.Exn_LLF
+     RE_Exn_Long_Long_Float,             -- System.Exn_LLF
+
+     RE_Exn_Long_Long_Integer,           -- System.Exn_LLI
+
+     RE_Exp_Integer,                     -- System.Exp_Int
+
+     RE_Exp_Long_Long_Integer,           -- System.Exp_LLI
+
+     RE_Exp_Long_Long_Unsigned,          -- System.Exp_LLU
+
+     RE_Exp_Modular,                     -- System.Exp_Mod
+
+     RE_Exp_Unsigned,                    -- System.Exp_Uns
+
+     RE_Attr_Float,                      -- System.Fat_Flt
+
+     RE_Attr_IEEE_Long,                  -- System.Fat_IEEE_Long_Float
+     RE_Fat_IEEE_Long,                   -- System.Fat_IEEE_Long_Float
+
+     RE_Attr_IEEE_Short,                 -- System.Fat_IEEE_Short_Float
+     RE_Fat_IEEE_Short,                  -- System.Fat_IEEE_Short_Float
+
+     RE_Attr_Long_Float,                 -- System.Fat_LFlt
+
+     RE_Attr_Long_Long_Float,            -- System.Fat_LLF
+
+     RE_Attr_Short_Float,                -- System.Fat_SFlt
+
+     RE_Attr_VAX_D_Float,                -- System.Fat_VAX_D_Float
+     RE_Fat_VAX_D,                       -- System.Fat_VAX_D_Float
+
+     RE_Attr_VAX_F_Float,                -- System.Fat_VAX_F_Float
+     RE_Fat_VAX_F,                       -- System.Fat_VAX_F_Float
+
+     RE_Attr_VAX_G_Float,                -- System.Fat_VAX_G_Float
+     RE_Fat_VAX_G,                       -- System.Fat_VAX_G_Float
+
+     RE_Add_Offset_To_Address,           -- System.Finalization_Masters
+     RE_Attach,                          -- System.Finalization_Masters
+     RE_Base_Pool,                       -- System.Finalization_Masters
+     RE_Detach,                          -- System.Finalization_Masters
+     RE_Finalization_Master,             -- System.Finalization_Masters
+     RE_Finalization_Master_Ptr,         -- System.Finalization_Masters
+     RE_Set_Base_Pool,                   -- System.Finalization_Masters
+     RE_Set_Finalize_Address,            -- System.Finalization_Masters
+     RE_Set_Is_Heterogeneous,            -- System.Finalization_Masters
+
+     RE_Root_Controlled,                 -- System.Finalization_Root
+     RE_Root_Controlled_Ptr,             -- System.Finalization_Root
+
+     RE_Fore,                            -- System.Fore
+
+     RE_Image_Boolean,                   -- System.Img_Bool
+
+     RE_Image_Character,                 -- System.Img_Char
+     RE_Image_Character_05,              -- System.Img_Char
+
+     RE_Image_Decimal,                   -- System.Img_Dec
+
+     RE_Image_Enumeration_8,             -- System.Img_Enum_New
+     RE_Image_Enumeration_16,            -- System.Img_Enum_New
+     RE_Image_Enumeration_32,            -- System.Img_Enum_New
+
+     RE_Image_Integer,                   -- System.Img_Int
+
+     RE_Image_Long_Long_Decimal,         -- System.Img_LLD
+
+     RE_Image_Long_Long_Integer,         -- System.Img_LLI
+
+     RE_Image_Long_Long_Unsigned,        -- System.Img_LLU
+
+     RE_Image_Ordinary_Fixed_Point,      -- System.Img_Real
+     RE_Image_Floating_Point,            -- System.Img_Real
+
+     RE_Image_Unsigned,                  -- System.Img_Uns
+
+     RE_Image_Wide_Character,            -- System.Img_WChar
+     RE_Image_Wide_Wide_Character,       -- System.Img_WChar
+
+     RE_Bind_Interrupt_To_Entry,         -- System.Interrupts
+     RE_Default_Interrupt_Priority,      -- System.Interrupts
+     RE_Dynamic_Interrupt_Protection,    -- System.Interrupts
+     RE_Install_Handlers,                -- System.Interrupts
+     RE_Install_Restricted_Handlers,     -- System.Interrupts
+     RE_Register_Interrupt_Handler,      -- System.Interrupts
+     RE_Static_Interrupt_Protection,     -- System.Interrupts
+     RE_System_Interrupt_Id,             -- System.Interrupts
+
+     RE_Expon_LLF,                       -- System.Long_Long_Float_Expon
+
+     RE_Asm_Insn,                        -- System.Machine_Code
+     RE_Asm_Input_Operand,               -- System.Machine_Code
+     RE_Asm_Output_Operand,              -- System.Machine_Code
+
+     RE_Mantissa_Value,                  -- System.Mantissa
+
+     RE_Free,                            -- System.Memory
+
+     RE_CPU_Range,                       -- System.Multiprocessors
+
+     RE_Bits_03,                         -- System.Pack_03
+     RE_Get_03,                          -- System.Pack_03
+     RE_Set_03,                          -- System.Pack_03
+
+     RE_Bits_05,                         -- System.Pack_05
+     RE_Get_05,                          -- System.Pack_05
+     RE_Set_05,                          -- System.Pack_05
+
+     RE_Bits_06,                         -- System.Pack_06
+     RE_Get_06,                          -- System.Pack_06
+     RE_GetU_06,                         -- System.Pack_06
+     RE_Set_06,                          -- System.Pack_06
+     RE_SetU_06,                         -- System.Pack_06
+
+     RE_Bits_07,                         -- System.Pack_07
+     RE_Get_07,                          -- System.Pack_07
+     RE_Set_07,                          -- System.Pack_07
+
+     RE_Bits_09,                         -- System.Pack_09
+     RE_Get_09,                          -- System.Pack_09
+     RE_Set_09,                          -- System.Pack_09
+
+     RE_Bits_10,                         -- System.Pack_10
+     RE_Get_10,                          -- System.Pack_10
+     RE_GetU_10,                         -- System.Pack_10
+     RE_Set_10,                          -- System.Pack_10
+     RE_SetU_10,                         -- System.Pack_10
+
+     RE_Bits_11,                         -- System.Pack_11
+     RE_Get_11,                          -- System.Pack_11
+     RE_Set_11,                          -- System.Pack_11
+
+     RE_Bits_12,                         -- System.Pack_12
+     RE_Get_12,                          -- System.Pack_12
+     RE_GetU_12,                         -- System.Pack_12
+     RE_Set_12,                          -- System.Pack_12
+     RE_SetU_12,                         -- System.Pack_12
+
+     RE_Bits_13,                         -- System.Pack_13
+     RE_Get_13,                          -- System.Pack_13
+     RE_Set_13,                          -- System.Pack_13
+
+     RE_Bits_14,                         -- System.Pack_14
+     RE_Get_14,                          -- System.Pack_14
+     RE_GetU_14,                         -- System.Pack_14
+     RE_Set_14,                          -- System.Pack_14
+     RE_SetU_14,                         -- System.Pack_14
+
+     RE_Bits_15,                         -- System.Pack_15
+     RE_Get_15,                          -- System.Pack_15
+     RE_Set_15,                          -- System.Pack_15
+
+     RE_Bits_17,                         -- System.Pack_17
+     RE_Get_17,                          -- System.Pack_17
+     RE_Set_17,                          -- System.Pack_17
+
+     RE_Bits_18,                         -- System.Pack_18
+     RE_Get_18,                          -- System.Pack_18
+     RE_GetU_18,                         -- System.Pack_18
+     RE_Set_18,                          -- System.Pack_18
+     RE_SetU_18,                         -- System.Pack_18
+
+     RE_Bits_19,                         -- System.Pack_19
+     RE_Get_19,                          -- System.Pack_19
+     RE_Set_19,                          -- System.Pack_19
+
+     RE_Bits_20,                         -- System.Pack_20
+     RE_Get_20,                          -- System.Pack_20
+     RE_GetU_20,                         -- System.Pack_20
+     RE_Set_20,                          -- System.Pack_20
+     RE_SetU_20,                         -- System.Pack_20
+
+     RE_Bits_21,                         -- System.Pack_21
+     RE_Get_21,                          -- System.Pack_21
+     RE_Set_21,                          -- System.Pack_21
+
+     RE_Bits_22,                         -- System.Pack_22
+     RE_Get_22,                          -- System.Pack_22
+     RE_GetU_22,                         -- System.Pack_22
+     RE_Set_22,                          -- System.Pack_22
+     RE_SetU_22,                         -- System.Pack_22
+
+     RE_Bits_23,                         -- System.Pack_23
+     RE_Get_23,                          -- System.Pack_23
+     RE_Set_23,                          -- System.Pack_23
+
+     RE_Bits_24,                         -- System.Pack_24
+     RE_Get_24,                          -- System.Pack_24
+     RE_GetU_24,                         -- System.Pack_24
+     RE_Set_24,                          -- System.Pack_24
+     RE_SetU_24,                         -- System.Pack_24
+
+     RE_Bits_25,                         -- System.Pack_25
+     RE_Get_25,                          -- System.Pack_25
+     RE_Set_25,                          -- System.Pack_25
+
+     RE_Bits_26,                         -- System.Pack_26
+     RE_Get_26,                          -- System.Pack_26
+     RE_GetU_26,                         -- System.Pack_26
+     RE_Set_26,                          -- System.Pack_26
+     RE_SetU_26,                         -- System.Pack_26
+
+     RE_Bits_27,                         -- System.Pack_27
+     RE_Get_27,                          -- System.Pack_27
+     RE_Set_27,                          -- System.Pack_27
+
+     RE_Bits_28,                         -- System.Pack_28
+     RE_Get_28,                          -- System.Pack_28
+     RE_GetU_28,                         -- System.Pack_28
+     RE_Set_28,                          -- System.Pack_28
+     RE_SetU_28,                         -- System.Pack_28
+
+     RE_Bits_29,                         -- System.Pack_29
+     RE_Get_29,                          -- System.Pack_29
+     RE_Set_29,                          -- System.Pack_29
+
+     RE_Bits_30,                         -- System.Pack_30
+     RE_Get_30,                          -- System.Pack_30
+     RE_GetU_30,                         -- System.Pack_30
+     RE_Set_30,                          -- System.Pack_30
+     RE_SetU_30,                         -- System.Pack_30
+
+     RE_Bits_31,                         -- System.Pack_31
+     RE_Get_31,                          -- System.Pack_31
+     RE_Set_31,                          -- System.Pack_31
+
+     RE_Bits_33,                         -- System.Pack_33
+     RE_Get_33,                          -- System.Pack_33
+     RE_Set_33,                          -- System.Pack_33
+
+     RE_Bits_34,                         -- System.Pack_34
+     RE_Get_34,                          -- System.Pack_34
+     RE_GetU_34,                         -- System.Pack_34
+     RE_Set_34,                          -- System.Pack_34
+     RE_SetU_34,                         -- System.Pack_34
+
+     RE_Bits_35,                         -- System.Pack_35
+     RE_Get_35,                          -- System.Pack_35
+     RE_Set_35,                          -- System.Pack_35
+
+     RE_Bits_36,                         -- System.Pack_36
+     RE_Get_36,                          -- System.Pack_36
+     RE_GetU_36,                         -- System.Pack_36
+     RE_Set_36,                          -- System.Pack_36
+     RE_SetU_36,                         -- System.Pack_36
+
+     RE_Bits_37,                         -- System.Pack_37
+     RE_Get_37,                          -- System.Pack_37
+     RE_Set_37,                          -- System.Pack_37
+
+     RE_Bits_38,                         -- System.Pack_38
+     RE_Get_38,                          -- System.Pack_38
+     RE_GetU_38,                         -- System.Pack_38
+     RE_Set_38,                          -- System.Pack_38
+     RE_SetU_38,                         -- System.Pack_38
+
+     RE_Bits_39,                         -- System.Pack_39
+     RE_Get_39,                          -- System.Pack_39
+     RE_Set_39,                          -- System.Pack_39
+
+     RE_Bits_40,                         -- System.Pack_40
+     RE_Get_40,                          -- System.Pack_40
+     RE_GetU_40,                         -- System.Pack_40
+     RE_Set_40,                          -- System.Pack_40
+     RE_SetU_40,                         -- System.Pack_40
+
+     RE_Bits_41,                         -- System.Pack_41
+     RE_Get_41,                          -- System.Pack_41
+     RE_Set_41,                          -- System.Pack_41
+
+     RE_Bits_42,                         -- System.Pack_42
+     RE_Get_42,                          -- System.Pack_42
+     RE_GetU_42,                         -- System.Pack_42
+     RE_Set_42,                          -- System.Pack_42
+     RE_SetU_42,                         -- System.Pack_42
+
+     RE_Bits_43,                         -- System.Pack_43
+     RE_Get_43,                          -- System.Pack_43
+     RE_Set_43,                          -- System.Pack_43
+
+     RE_Bits_44,                         -- System.Pack_44
+     RE_Get_44,                          -- System.Pack_44
+     RE_GetU_44,                         -- System.Pack_44
+     RE_Set_44,                          -- System.Pack_44
+     RE_SetU_44,                         -- System.Pack_44
+
+     RE_Bits_45,                         -- System.Pack_45
+     RE_Get_45,                          -- System.Pack_45
+     RE_Set_45,                          -- System.Pack_45
+
+     RE_Bits_46,                         -- System.Pack_46
+     RE_Get_46,                          -- System.Pack_46
+     RE_GetU_46,                         -- System.Pack_46
+     RE_Set_46,                          -- System.Pack_46
+     RE_SetU_46,                         -- System.Pack_46
+
+     RE_Bits_47,                         -- System.Pack_47
+     RE_Get_47,                          -- System.Pack_47
+     RE_Set_47,                          -- System.Pack_47
+
+     RE_Bits_48,                         -- System.Pack_48
+     RE_Get_48,                          -- System.Pack_48
+     RE_GetU_48,                         -- System.Pack_48
+     RE_Set_48,                          -- System.Pack_48
+     RE_SetU_48,                         -- System.Pack_48
+
+     RE_Bits_49,                         -- System.Pack_49
+     RE_Get_49,                          -- System.Pack_49
+     RE_Set_49,                          -- System.Pack_49
+
+     RE_Bits_50,                         -- System.Pack_50
+     RE_Get_50,                          -- System.Pack_50
+     RE_GetU_50,                         -- System.Pack_50
+     RE_Set_50,                          -- System.Pack_50
+     RE_SetU_50,                         -- System.Pack_50
+
+     RE_Bits_51,                         -- System.Pack_51
+     RE_Get_51,                          -- System.Pack_51
+     RE_Set_51,                          -- System.Pack_51
+
+     RE_Bits_52,                         -- System.Pack_52
+     RE_Get_52,                          -- System.Pack_52
+     RE_GetU_52,                         -- System.Pack_52
+     RE_Set_52,                          -- System.Pack_52
+     RE_SetU_52,                         -- System.Pack_52
+
+     RE_Bits_53,                         -- System.Pack_53
+     RE_Get_53,                          -- System.Pack_53
+     RE_Set_53,                          -- System.Pack_53
+
+     RE_Bits_54,                         -- System.Pack_54
+     RE_Get_54,                          -- System.Pack_54
+     RE_GetU_54,                         -- System.Pack_54
+     RE_Set_54,                          -- System.Pack_54
+     RE_SetU_54,                         -- System.Pack_54
+
+     RE_Bits_55,                         -- System.Pack_55
+     RE_Get_55,                          -- System.Pack_55
+     RE_Set_55,                          -- System.Pack_55
+
+     RE_Bits_56,                         -- System.Pack_56
+     RE_Get_56,                          -- System.Pack_56
+     RE_GetU_56,                         -- System.Pack_56
+     RE_Set_56,                          -- System.Pack_56
+     RE_SetU_56,                         -- System.Pack_56
+
+     RE_Bits_57,                         -- System.Pack_57
+     RE_Get_57,                          -- System.Pack_57
+     RE_Set_57,                          -- System.Pack_57
+
+     RE_Bits_58,                         -- System.Pack_58
+     RE_Get_58,                          -- System.Pack_58
+     RE_GetU_58,                         -- System.Pack_58
+     RE_Set_58,                          -- System.Pack_58
+     RE_SetU_58,                         -- System.Pack_58
+
+     RE_Bits_59,                         -- System.Pack_59
+     RE_Get_59,                          -- System.Pack_59
+     RE_Set_59,                          -- System.Pack_59
+
+     RE_Bits_60,                         -- System.Pack_60
+     RE_Get_60,                          -- System.Pack_60
+     RE_GetU_60,                         -- System.Pack_60
+     RE_Set_60,                          -- System.Pack_60
+     RE_SetU_60,                         -- System.Pack_60
+
+     RE_Bits_61,                         -- System.Pack_61
+     RE_Get_61,                          -- System.Pack_61
+     RE_Set_61,                          -- System.Pack_61
+
+     RE_Bits_62,                         -- System.Pack_62
+     RE_Get_62,                          -- System.Pack_62
+     RE_GetU_62,                         -- System.Pack_62
+     RE_Set_62,                          -- System.Pack_62
+     RE_SetU_62,                         -- System.Pack_62
+
+     RE_Bits_63,                         -- System.Pack_63
+     RE_Get_63,                          -- System.Pack_63
+     RE_Set_63,                          -- System.Pack_63
+
+     RE_Adjust_Storage_Size,             -- System.Parameters
+     RE_Default_Secondary_Stack_Size,    -- System.Parameters
+     RE_Default_Stack_Size,              -- System.Parameters
+     RE_Garbage_Collected,               -- System.Parameters
+     RE_Size_Type,                       -- System.Parameters
+     RE_Unspecified_Size,                -- System.Parameters
+
+     RE_DSA_Implementation,              -- System.Partition_Interface
+     RE_PCS_Version,                     -- System.Partition_Interface
+     RE_Get_RACW,                        -- System.Partition_Interface
+     RE_Get_RCI_Package_Receiver,        -- System.Partition_Interface
+     RE_Get_Unique_Remote_Pointer,       -- System.Partition_Interface
+     RE_RACW_Stub_Type,                  -- System.Partition_Interface
+     RE_RACW_Stub_Type_Access,           -- System.Partition_Interface
+     RE_RAS_Proxy_Type_Access,           -- System.Partition_Interface
+     RE_Raise_Program_Error_Unknown_Tag, -- System.Partition_Interface
+     RE_Register_Passive_Package,        -- System.Partition_Interface
+     RE_Register_Receiving_Stub,         -- System.Partition_Interface
+     RE_Request,                         -- System.Partition_Interface
+     RE_Request_Access,                  -- System.Partition_Interface
+     RE_RCI_Locator,                     -- System.Partition_Interface
+     RE_RCI_Subp_Info,                   -- System.Partition_Interface
+     RE_RCI_Subp_Info_Array,             -- System.Partition_Interface
+     RE_Same_Partition,                  -- System.Partition_Interface
+     RE_Subprogram_Id,                   -- System.Partition_Interface
+     RE_Get_RAS_Info,                    -- System.Partition_Interface
+
+     RE_Global_Pool_Object,              -- System.Pool_Global
+
+     RE_Global_Pool_32_Object,           -- System.Pool_32_Global
+
+     RE_Stack_Bounded_Pool,              -- System.Pool_Size
+
+     RE_Do_Apc,                          -- System.RPC
+     RE_Do_Rpc,                          -- System.RPC
+     RE_Params_Stream_Type,              -- System.RPC
+     RE_Partition_ID,                    -- System.RPC
+
+     RE_To_PolyORB_String,               -- System.Partition_Interface
+     RE_Caseless_String_Eq,              -- System.Partition_Interface
+     RE_TypeCode,                        -- System.Partition_Interface
+     RE_Any,                             -- System.Partition_Interface
+     RE_Mode_In,                         -- System.Partition_Interface
+     RE_Mode_Out,                        -- System.Partition_Interface
+     RE_Mode_Inout,                      -- System.Partition_Interface
+     RE_NamedValue,                      -- System.Partition_Interface
+     RE_Result_Name,                     -- System.Partition_Interface
+     RE_Object_Ref,                      -- System.Partition_Interface
+     RE_Create_Any,                      -- System.Partition_Interface
+     RE_Any_Aggregate_Build,             -- System.Partition_Interface
+     RE_Add_Aggregate_Element,           -- System.Partition_Interface
+     RE_Get_Aggregate_Element,           -- System.Partition_Interface
+     RE_Content_Type,                    -- System.Partition_Interface
+     RE_Any_Member_Type,                 -- System.Partition_Interface
+     RE_Get_Nested_Sequence_Length,      -- System.Partition_Interface
+     RE_Get_Any_Type,                    -- System.Partition_Interface
+     RE_Extract_Union_Value,             -- System.Partition_Interface
+     RE_NVList_Ref,                      -- System.Partition_Interface
+     RE_NVList_Create,                   -- System.Partition_Interface
+     RE_NVList_Add_Item,                 -- System.Partition_Interface
+     RE_Request_Arguments,               -- System.Partition_Interface
+     RE_Request_Invoke,                  -- System.Partition_Interface
+     RE_Request_Raise_Occurrence,        -- System.Partition_Interface
+     RE_Request_Set_Out,                 -- System.Partition_Interface
+     RE_Request_Setup,                   -- System.Partition_Interface
+     RE_Nil_Exc_List,                    -- System.Partition_Interface
+     RE_Servant,                         -- System.Partition_Interface
+     RE_Move_Any_Value,                  -- System.Partition_Interface
+     RE_Set_Result,                      -- System.Partition_Interface
+     RE_Register_Obj_Receiving_Stub,     -- System.Partition_Interface
+     RE_Register_Pkg_Receiving_Stub,     -- System.Partition_Interface
+     RE_Is_Nil,                          -- System.Partition_Interface
+     RE_Entity_Ptr,                      -- System.Partition_Interface
+     RE_Entity_Of,                       -- System.Partition_Interface
+     RE_Inc_Usage,                       -- System.Partition_Interface
+     RE_Set_Ref,                         -- System.Partition_Interface
+     RE_Make_Ref,                        -- System.Partition_Interface
+     RE_Get_Local_Address,               -- System.Partition_Interface
+     RE_Get_Reference,                   -- System.Partition_Interface
+     RE_Asynchronous_P_To_Sync_Scope,    -- System.Partition_Interface
+     RE_Buffer_Stream_Type,              -- System.Partition_Interface
+     RE_Release_Buffer,                  -- System.Partition_Interface
+     RE_BS_To_Any,                       -- System.Partition_Interface
+     RE_Any_To_BS,                       -- System.Partition_Interface
+     RE_Build_Complex_TC,                -- System.Partition_Interface
+     RE_Get_TC,                          -- System.Partition_Interface
+     RE_Set_TC,                          -- System.Partition_Interface
+
+     RE_FA_A,                            -- System.Partition_Interface
+     RE_FA_B,                            -- System.Partition_Interface
+     RE_FA_C,                            -- System.Partition_Interface
+     RE_FA_F,                            -- System.Partition_Interface
+     RE_FA_I8,                           -- System.Partition_Interface
+     RE_FA_I16,                          -- System.Partition_Interface
+     RE_FA_I32,                          -- System.Partition_Interface
+     RE_FA_I64,                          -- System.Partition_Interface
+     RE_FA_LF,                           -- System.Partition_Interface
+     RE_FA_LLF,                          -- System.Partition_Interface
+     RE_FA_SF,                           -- System.Partition_Interface
+     RE_FA_U8,                           -- System.Partition_Interface
+     RE_FA_U16,                          -- System.Partition_Interface
+     RE_FA_U32,                          -- System.Partition_Interface
+     RE_FA_U64,                          -- System.Partition_Interface
+     RE_FA_WC,                           -- System.Partition_Interface
+     RE_FA_WWC,                          -- System.Partition_Interface
+     RE_FA_String,                       -- System.Partition_Interface
+     RE_FA_ObjRef,                       -- System.Partition_Interface
+
+     RE_TA_A,                            -- System.Partition_Interface
+     RE_TA_B,                            -- System.Partition_Interface
+     RE_TA_C,                            -- System.Partition_Interface
+     RE_TA_F,                            -- System.Partition_Interface
+     RE_TA_I8,                           -- System.Partition_Interface
+     RE_TA_I16,                          -- System.Partition_Interface
+     RE_TA_I32,                          -- System.Partition_Interface
+     RE_TA_I64,                          -- System.Partition_Interface
+     RE_TA_LF,                           -- System.Partition_Interface
+     RE_TA_LLF,                          -- System.Partition_Interface
+     RE_TA_SF,                           -- System.Partition_Interface
+     RE_TA_U8,                           -- System.Partition_Interface
+     RE_TA_U16,                          -- System.Partition_Interface
+     RE_TA_U32,                          -- System.Partition_Interface
+     RE_TA_U64,                          -- System.Partition_Interface
+     RE_TA_WC,                           -- System.Partition_Interface
+     RE_TA_WWC,                          -- System.Partition_Interface
+     RE_TA_String,                       -- System.Partition_Interface
+     RE_TA_ObjRef,                       -- System.Partition_Interface
+     RE_TA_Std_String,                   -- System.Partition_Interface
+     RE_TA_TC,                           -- System.Partition_Interface
+
+     RE_TC_A,                            -- System.Partition_Interface
+     RE_TC_B,                            -- System.Partition_Interface
+     RE_TC_C,                            -- System.Partition_Interface
+     RE_TC_F,                            -- System.Partition_Interface
+     RE_TC_I8,                           -- System.Partition_Interface
+     RE_TC_I16,                          -- System.Partition_Interface
+     RE_TC_I32,                          -- System.Partition_Interface
+     RE_TC_I64,                          -- System.Partition_Interface
+     RE_TC_LF,                           -- System.Partition_Interface
+     RE_TC_LLF,                          -- System.Partition_Interface
+     RE_TC_SF,                           -- System.Partition_Interface
+     RE_TC_U8,                           -- System.Partition_Interface
+     RE_TC_U16,                          -- System.Partition_Interface
+     RE_TC_U32,                          -- System.Partition_Interface
+     RE_TC_U64,                          -- System.Partition_Interface
+     RE_TC_Void,                         -- System.Partition_Interface
+     RE_TC_Opaque,                       -- System.Partition_Interface
+     RE_TC_WC,                           -- System.Partition_Interface
+     RE_TC_WWC,                          -- System.Partition_Interface
+     RE_TC_String,                       -- System.Partition_Interface
+
+     RE_Tk_Alias,                        -- System.Partition_Interface
+     RE_Tk_Array,                        -- System.Partition_Interface
+     RE_Tk_Sequence,                     -- System.Partition_Interface
+     RE_Tk_Struct,                       -- System.Partition_Interface
+     RE_Tk_Objref,                       -- System.Partition_Interface
+     RE_Tk_Union,                        -- System.Partition_Interface
+
+     RO_RD_Delay_For,                    -- System.Relative_Delays
+
+     RE_IS_Is1,                          -- System.Scalar_Values
+     RE_IS_Is2,                          -- System.Scalar_Values
+     RE_IS_Is4,                          -- System.Scalar_Values
+     RE_IS_Is8,                          -- System.Scalar_Values
+     RE_IS_Iu1,                          -- System.Scalar_Values
+     RE_IS_Iu2,                          -- System.Scalar_Values
+     RE_IS_Iu4,                          -- System.Scalar_Values
+     RE_IS_Iu8,                          -- System.Scalar_Values
+     RE_IS_Iz1,                          -- System.Scalar_Values
+     RE_IS_Iz2,                          -- System.Scalar_Values
+     RE_IS_Iz4,                          -- System.Scalar_Values
+     RE_IS_Iz8,                          -- System.Scalar_Values
+     RE_IS_Isf,                          -- System.Scalar_Values
+     RE_IS_Ifl,                          -- System.Scalar_Values
+     RE_IS_Ilf,                          -- System.Scalar_Values
+     RE_IS_Ill,                          -- System.Scalar_Values
+
+     RE_Mark_Id,                         -- System.Secondary_Stack
+     RE_SS_Allocate,                     -- System.Secondary_Stack
+     RE_SS_Pool,                         -- System.Secondary_Stack
+     RE_SS_Mark,                         -- System.Secondary_Stack
+     RE_SS_Release,                      -- System.Secondary_Stack
+     RE_SS_Stack,                        -- System.Secondary_Stack
+
+     RE_Shared_Var_Lock,                 -- System.Shared_Storage
+     RE_Shared_Var_Unlock,               -- System.Shared_Storage
+     RE_Shared_Var_Procs,                -- System.Shared_Storage
+
+     RE_Abort_Undefer_Direct,            -- System.Standard_Library
+     RE_Exception_Data_Ptr,              -- System.Standard_Library
+
+     RE_Integer_Address,                 -- System.Storage_Elements
+     RE_Storage_Array,                   -- System.Storage_Elements
+     RE_Storage_Count,                   -- System.Storage_Elements
+     RE_Storage_Offset,                  -- System.Storage_Elements
+     RE_To_Address,                      -- System.Storage_Elements
+
+     RE_Allocate_Any,                    -- System.Storage_Pools
+     RE_Deallocate_Any,                  -- System.Storage_Pools
+     RE_Root_Storage_Pool,               -- System.Storage_Pools
+     RE_Root_Storage_Pool_Ptr,           -- System.Storage_Pools
+
+     RE_Adjust_Controlled_Dereference,   -- System.Storage_Pools.Subpools
+     RE_Allocate_Any_Controlled,         -- System.Storage_Pools.Subpools
+     RE_Deallocate_Any_Controlled,       -- System.Storage_Pools.Subpools
+     RE_Header_Size_With_Padding,        -- System.Storage_Pools.Subpools
+     RE_Root_Storage_Pool_With_Subpools, -- System.Storage_Pools.Subpools
+     RE_Root_Subpool,                    -- System.Storage_Pools.Subpools
+     RE_Subpool_Handle,                  -- System.Storage_Pools.Subpools
+
+     RE_I_AD,                            -- System.Stream_Attributes
+     RE_I_AS,                            -- System.Stream_Attributes
+     RE_I_B,                             -- System.Stream_Attributes
+     RE_I_C,                             -- System.Stream_Attributes
+     RE_I_F,                             -- System.Stream_Attributes
+     RE_I_I,                             -- System.Stream_Attributes
+     RE_I_LF,                            -- System.Stream_Attributes
+     RE_I_LI,                            -- System.Stream_Attributes
+     RE_I_LLF,                           -- System.Stream_Attributes
+     RE_I_LLI,                           -- System.Stream_Attributes
+     RE_I_LLU,                           -- System.Stream_Attributes
+     RE_I_LU,                            -- System.Stream_Attributes
+     RE_I_SF,                            -- System.Stream_Attributes
+     RE_I_SI,                            -- System.Stream_Attributes
+     RE_I_SSI,                           -- System.Stream_Attributes
+     RE_I_SSU,                           -- System.Stream_Attributes
+     RE_I_SU,                            -- System.Stream_Attributes
+     RE_I_U,                             -- System.Stream_Attributes
+     RE_I_WC,                            -- System.Stream_Attributes
+     RE_I_WWC,                           -- System.Stream_Attributes
+
+     RE_W_AD,                            -- System.Stream_Attributes
+     RE_W_AS,                            -- System.Stream_Attributes
+     RE_W_B,                             -- System.Stream_Attributes
+     RE_W_C,                             -- System.Stream_Attributes
+     RE_W_F,                             -- System.Stream_Attributes
+     RE_W_I,                             -- System.Stream_Attributes
+     RE_W_LF,                            -- System.Stream_Attributes
+     RE_W_LI,                            -- System.Stream_Attributes
+     RE_W_LLF,                           -- System.Stream_Attributes
+     RE_W_LLI,                           -- System.Stream_Attributes
+     RE_W_LLU,                           -- System.Stream_Attributes
+     RE_W_LU,                            -- System.Stream_Attributes
+     RE_W_SF,                            -- System.Stream_Attributes
+     RE_W_SI,                            -- System.Stream_Attributes
+     RE_W_SSI,                           -- System.Stream_Attributes
+     RE_W_SSU,                           -- System.Stream_Attributes
+     RE_W_SU,                            -- System.Stream_Attributes
+     RE_W_U,                             -- System.Stream_Attributes
+     RE_W_WC,                            -- System.Stream_Attributes
+     RE_W_WWC,                           -- System.Stream_Attributes
+
+     RE_Storage_Array_Input,             -- System.Strings.Stream_Ops
+     RE_Storage_Array_Input_Blk_IO,      -- System.Strings.Stream_Ops
+     RE_Storage_Array_Output,            -- System.Strings.Stream_Ops
+     RE_Storage_Array_Output_Blk_IO,     -- System.Strings.Stream_Ops
+     RE_Storage_Array_Read,              -- System.Strings.Stream_Ops
+     RE_Storage_Array_Read_Blk_IO,       -- System.Strings.Stream_Ops
+     RE_Storage_Array_Write,             -- System.Strings.Stream_Ops
+     RE_Storage_Array_Write_Blk_IO,      -- System.Strings.Stream_Ops
+
+     RE_Stream_Element_Array_Input,         -- System.Strings.Stream_Ops
+     RE_Stream_Element_Array_Input_Blk_IO,  -- System.Strings.Stream_Ops
+     RE_Stream_Element_Array_Output,        -- System.Strings.Stream_Ops
+     RE_Stream_Element_Array_Output_Blk_IO, -- System.Strings.Stream_Ops
+     RE_Stream_Element_Array_Read,          -- System.Strings.Stream_Ops
+     RE_Stream_Element_Array_Read_Blk_IO,   -- System.Strings.Stream_Ops
+     RE_Stream_Element_Array_Write,         -- System.Strings.Stream_Ops
+     RE_Stream_Element_Array_Write_Blk_IO,  -- System.Strings.Stream_Ops
+
+     RE_String_Input,                    -- System.Strings.Stream_Ops
+     RE_String_Input_Blk_IO,             -- System.Strings.Stream_Ops
+     RE_String_Input_Tag,                -- System.Strings.Stream_Ops
+     RE_String_Output,                   -- System.Strings.Stream_Ops
+     RE_String_Output_Blk_IO,            -- System.Strings.Stream_Ops
+     RE_String_Read,                     -- System.Strings.Stream_Ops
+     RE_String_Read_Blk_IO,              -- System.Strings.Stream_Ops
+     RE_String_Write,                    -- System.Strings.Stream_Ops
+     RE_String_Write_Blk_IO,             -- System.Strings.Stream_Ops
+
+     RE_Wide_String_Input,               -- System.Strings.Stream_Ops
+     RE_Wide_String_Input_Blk_IO,        -- System.Strings.Stream_Ops
+     RE_Wide_String_Output,              -- System.Strings.Stream_Ops
+     RE_Wide_String_Output_Blk_IO,       -- System.Strings.Stream_Ops
+     RE_Wide_String_Read,                -- System.Strings.Stream_Ops
+     RE_Wide_String_Read_Blk_IO,         -- System.Strings.Stream_Ops
+     RE_Wide_String_Write,               -- System.Strings.Stream_Ops
+     RE_Wide_String_Write_Blk_IO,        -- System.Strings.Stream_Ops
+
+     RE_Wide_Wide_String_Input,          -- System.Strings.Stream_Ops
+     RE_Wide_Wide_String_Input_Blk_IO,   -- System.Strings.Stream_Ops
+     RE_Wide_Wide_String_Output,         -- System.Strings.Stream_Ops
+     RE_Wide_Wide_String_Output_Blk_IO,  -- System.Strings.Stream_Ops
+     RE_Wide_Wide_String_Read,           -- System.Strings.Stream_Ops
+     RE_Wide_Wide_String_Read_Blk_IO,    -- System.Strings.Stream_Ops
+     RE_Wide_Wide_String_Write,          -- System.Strings.Stream_Ops
+     RE_Wide_Wide_String_Write_Blk_IO,   -- System.Strings.Stream_Ops
+
+     RE_Task_Info_Type,                  -- System.Task_Info
+     RE_Unspecified_Task_Info,           -- System.Task_Info
+
+     RE_Task_Procedure_Access,           -- System.Tasking
+     RO_ST_Number_Of_Entries,            -- System.Tasking
+
+     RO_ST_Task_Id,                      -- System.Tasking
+     RO_ST_Null_Task,                    -- System.Tasking
+
+     RE_Call_Modes,                      -- System.Tasking
+     RE_Simple_Call,                     -- System.Tasking
+     RE_Conditional_Call,                -- System.Tasking
+     RE_Asynchronous_Call,               -- System.Tasking
+
+     RE_Foreign_Task_Level,              -- System.Tasking
+     RE_Environment_Task_Level,          -- System.Tasking
+     RE_Independent_Task_Level,          -- System.Tasking
+     RE_Library_Task_Level,              -- System.Tasking
+
+     RE_Ada_Task_Control_Block,          -- System.Tasking
+
+     RE_Task_List,                       -- System.Tasking
+
+     RE_Accept_List,                     -- System.Tasking
+     RE_No_Rendezvous,                   -- System.Tasking
+     RE_Null_Task_Entry,                 -- System.Tasking
+     RE_Select_Index,                    -- System.Tasking
+     RE_Else_Mode,                       -- System.Tasking
+     RE_Simple_Mode,                     -- System.Tasking
+     RE_Terminate_Mode,                  -- System.Tasking
+     RE_Delay_Mode,                      -- System.Tasking
+     RE_Entry_Index,                     -- System.Tasking
+     RE_Task_Entry_Index,                -- System.Tasking
+     RE_Self,                            -- System.Tasking
+
+     RE_Master_Id,                       -- System.Tasking
+     RE_Unspecified_Priority,            -- System.Tasking
+
+     RE_Activation_Chain,                -- System.Tasking
+     RE_Activation_Chain_Access,         -- System.Tasking
+     RE_Storage_Size,                    -- System.Tasking
+
+     RE_Unspecified_CPU,                 -- System.Tasking
+
+     RE_Dispatching_Domain_Access,       -- System.Tasking
+
+     RE_Abort_Defer,                     -- System.Soft_Links
+     RE_Abort_Undefer,                   -- System.Soft_Links
+     RE_Complete_Master,                 -- System.Soft_Links
+     RE_Current_Master,                  -- System.Soft_Links
+     RE_Dummy_Communication_Block,       -- System.Soft_Links
+     RE_Enter_Master,                    -- System.Soft_Links
+     RE_Get_Current_Excep,               -- System.Soft_Links
+     RE_Get_GNAT_Exception,              -- System.Soft_Links
+     RE_Save_Library_Occurrence,         -- System.Soft_Links
+
+     RE_Bits_1,                          -- System.Unsigned_Types
+     RE_Bits_2,                          -- System.Unsigned_Types
+     RE_Bits_4,                          -- System.Unsigned_Types
+     RE_Float_Unsigned,                  -- System.Unsigned_Types
+     RE_Long_Unsigned,                   -- System.Unsigned_Types
+     RE_Long_Long_Unsigned,              -- System.Unsigned_Types
+     RE_Packed_Byte,                     -- System.Unsigned_Types
+     RE_Packed_Bytes1,                   -- System.Unsigned_Types
+     RE_Packed_Bytes2,                   -- System.Unsigned_Types
+     RE_Packed_Bytes4,                   -- System.Unsigned_Types
+     RE_Short_Unsigned,                  -- System.Unsigned_Types
+     RE_Short_Short_Unsigned,            -- System.Unsigned_Types
+     RE_Unsigned,                        -- System.Unsigned_Types
+
+     RE_Value_Boolean,                   -- System.Val_Bool
+
+     RE_Value_Character,                 -- System.Val_Char
+
+     RE_Value_Decimal,                   -- System.Val_Dec
+
+     RE_Value_Enumeration_8,             -- System.Val_Enum
+     RE_Value_Enumeration_16,            -- System.Val_Enum
+     RE_Value_Enumeration_32,            -- System.Val_Enum
+
+     RE_Value_Integer,                   -- System.Val_Int
+
+     RE_Value_Long_Long_Decimal,         -- System.Val_LLD
+
+     RE_Value_Long_Long_Integer,         -- System.Val_LLI
+
+     RE_Value_Long_Long_Unsigned,        -- System.Val_LLU
+
+     RE_Value_Real,                      -- System.Val_Real
+
+     RE_Value_Unsigned,                  -- System.Val_Uns
+
+     RE_Value_Wide_Character,            -- System.Val_WChar
+     RE_Value_Wide_Wide_Character,       -- System.Val_WChar
+
+     RE_Version_String,                  -- System.Version_Control
+     RE_Get_Version_String,              -- System.Version_Control
+
+     RE_String_To_Wide_String,           -- System.WCh_StW
+     RE_String_To_Wide_Wide_String,      -- System.WCh_StW
+
+     RE_Wide_String_To_String,           -- System.WCh_WtS
+     RE_Wide_Wide_String_To_String,      -- System.WCh_WtS
+
+     RE_Wide_Width_Character,            -- System.WWd_Char
+     RE_Wide_Wide_Width_Character,       -- System.WWd_Char
+
+     RE_Wide_Wide_Width_Enumeration_8,   -- System.WWd_Enum
+     RE_Wide_Wide_Width_Enumeration_16,  -- System.WWd_Enum
+     RE_Wide_Wide_Width_Enumeration_32,  -- System.WWd_Enum
+
+     RE_Wide_Width_Enumeration_8,        -- System.WWd_Enum
+     RE_Wide_Width_Enumeration_16,       -- System.WWd_Enum
+     RE_Wide_Width_Enumeration_32,       -- System.WWd_Enum
+
+     RE_Wide_Wide_Width_Wide_Character,  -- System.WWd_Wchar
+     RE_Wide_Wide_Width_Wide_Wide_Char,  -- System.WWd_Wchar
+     RE_Wide_Width_Wide_Character,       -- System.WWd_Wchar
+     RE_Wide_Width_Wide_Wide_Character,  -- System.WWd_Wchar
+
+     RE_Width_Boolean,                   -- System.Wid_Bool
+
+     RE_Width_Character,                 -- System.Wid_Char
+
+     RE_Width_Enumeration_8,             -- System.Wid_Enum
+     RE_Width_Enumeration_16,            -- System.Wid_Enum
+     RE_Width_Enumeration_32,            -- System.Wid_Enum
+
+     RE_Width_Long_Long_Integer,         -- System.Wid_LLI
+
+     RE_Width_Long_Long_Unsigned,        -- System.Wid_LLU
+
+     RE_Width_Wide_Character,            -- System.Wid_WChar
+     RE_Width_Wide_Wide_Character,       -- System.Wid_WChar
+
+     RE_Dispatching_Domain,              -- Multiprocessors.Dispatching_Domains
+
+     RE_Protected_Entry_Body_Array,      -- Tasking.Protected_Objects.Entries
+     RE_Protected_Entry_Queue_Max_Array, -- Tasking.Protected_Objects.Entries
+     RE_Protection_Entries,              -- Tasking.Protected_Objects.Entries
+     RE_Protection_Entries_Access,       -- Tasking.Protected_Objects.Entries
+     RE_Initialize_Protection_Entries,   -- Tasking.Protected_Objects.Entries
+     RE_Lock_Entries,                    -- Tasking.Protected_Objects.Entries
+     RE_Unlock_Entries,                  -- Tasking.Protected_Objects.Entries
+     RO_PE_Get_Ceiling,                  -- Tasking.Protected_Objects.Entries
+     RO_PE_Number_Of_Entries,            -- Tasking.Protected_Objects.Entries
+     RO_PE_Set_Ceiling,                  -- Tasking.Protected_Objects.Entries
+
+     RE_Communication_Block,             -- Protected_Objects.Operations
+     RE_Protected_Entry_Call,            -- Protected_Objects.Operations
+     RE_Service_Entries,                 -- Protected_Objects.Operations
+     RE_Cancel_Protected_Entry_Call,     -- Protected_Objects.Operations
+     RE_Enqueued,                        -- Protected_Objects.Operations
+     RE_Cancelled,                       -- Protected_Objects.Operations
+     RE_Complete_Entry_Body,             -- Protected_Objects.Operations
+     RE_Exceptional_Complete_Entry_Body, -- Protected_Objects.Operations
+     RE_Requeue_Protected_Entry,         -- Protected_Objects.Operations
+     RE_Requeue_Task_To_Protected_Entry, -- Protected_Objects.Operations
+     RE_Protected_Count,                 -- Protected_Objects.Operations
+     RE_Protected_Entry_Caller,          -- Protected_Objects.Operations
+     RE_Timed_Protected_Entry_Call,      -- Protected_Objects.Operations
+
+     RE_Protection_Entry,                -- Protected_Objects.Single_Entry
+     RE_Initialize_Protection_Entry,     -- Protected_Objects.Single_Entry
+     RE_Lock_Entry,                      -- Protected_Objects.Single_Entry
+     RE_Unlock_Entry,                    -- Protected_Objects.Single_Entry
+     RE_Protected_Single_Entry_Call,     -- Protected_Objects.Single_Entry
+     RE_Service_Entry,                   -- Protected_Objects.Single_Entry
+     RE_Exceptional_Complete_Single_Entry_Body,
+     RE_Protected_Count_Entry,           -- Protected_Objects.Single_Entry
+     RE_Protected_Single_Entry_Caller,   -- Protected_Objects.Single_Entry
+
+     RE_Protected_Entry_Index,           -- System.Tasking.Protected_Objects
+     RE_Entry_Body,                      -- System.Tasking.Protected_Objects
+     RE_Protection,                      -- System.Tasking.Protected_Objects
+     RE_Initialize_Protection,           -- System.Tasking.Protected_Objects
+     RE_Finalize_Protection,             -- System.Tasking.Protected_Objects
+     RE_Lock,                            -- System.Tasking.Protected_Objects
+     RE_Lock_Read_Only,                  -- System.Tasking.Protected_Objects
+     RE_Get_Ceiling,                     -- System.Tasking.Protected_Objects
+     RE_Set_Ceiling,                     -- System.Tasking.Protected_Objects
+     RE_Unlock,                          -- System.Tasking.Protected_Objects
+
+     RE_Delay_Block,                     -- System.Tasking.Async_Delays
+     RE_Timed_Out,                       -- System.Tasking.Async_Delays
+     RE_Cancel_Async_Delay,              -- System.Tasking.Async_Delays
+     RE_Enqueue_Duration,                -- System.Tasking.Async_Delays
+     RE_Enqueue_Calendar,                -- System.Tasking.Async_Delays
+     RE_Enqueue_RT,                      -- System.Tasking.Async_Delays
+
+     RE_Accept_Call,                     -- System.Tasking.Rendezvous
+     RE_Accept_Trivial,                  -- System.Tasking.Rendezvous
+     RE_Callable,                        -- System.Tasking.Rendezvous
+     RE_Call_Simple,                     -- System.Tasking.Rendezvous
+     RE_Requeue_Task_Entry,              -- System.Tasking.Rendezvous
+     RE_Requeue_Protected_To_Task_Entry, -- System.Tasking.Rendezvous
+     RE_Cancel_Task_Entry_Call,          -- System.Tasking.Rendezvous
+     RE_Complete_Rendezvous,             -- System.Tasking.Rendezvous
+     RE_Task_Count,                      -- System.Tasking.Rendezvous
+     RE_Exceptional_Complete_Rendezvous, -- System.Tasking.Rendezvous
+     RE_Selective_Wait,                  -- System.Tasking.Rendezvous
+     RE_Task_Entry_Call,                 -- System.Tasking.Rendezvous
+     RE_Task_Entry_Caller,               -- System.Tasking.Rendezvous
+     RE_Timed_Task_Entry_Call,           -- System.Tasking.Rendezvous
+     RE_Timed_Selective_Wait,            -- System.Tasking.Rendezvous
+
+     RE_Activate_Restricted_Tasks,         -- System.Tasking.Restricted.Stages
+     RE_Complete_Restricted_Activation,    -- System.Tasking.Restricted.Stages
+     RE_Create_Restricted_Task,            -- System.Tasking.Restricted.Stages
+     RE_Create_Restricted_Task_Sequential, -- System.Tasking.Restricted.Stages
+     RE_Complete_Restricted_Task,          -- System.Tasking.Restricted.Stages
+     RE_Restricted_Terminated,             -- System.Tasking.Restricted.Stages
+
+     RE_Abort_Tasks,                     -- System.Tasking.Stages
+     RE_Activate_Tasks,                  -- System.Tasking.Stages
+     RE_Complete_Activation,             -- System.Tasking.Stages
+     RE_Create_Task,                     -- System.Tasking.Stages
+     RE_Complete_Task,                   -- System.Tasking.Stages
+     RE_Free_Task,                       -- System.Tasking.Stages
+     RE_Expunge_Unactivated_Tasks,       -- System.Tasking.Stages
+     RE_Move_Activation_Chain,           -- System.Tasking_Stages
+     RE_Terminated);                     -- System.Tasking.Stages
+
+   --  The following declarations build a table that is indexed by the RTE
+   --  function to determine the unit containing the given entity. This table
+   --  is sorted in order of package names.
+
+   RE_Unit_Table : constant array (RE_Id) of RTU_Id := (
+
+     RE_Null                             => RTU_Null,
+
+     RO_CA_Time                          => Ada_Calendar,
+
+     RO_CA_Delay_For                     => Ada_Calendar_Delays,
+     RO_CA_Delay_Until                   => Ada_Calendar_Delays,
+     RO_CA_To_Duration                   => Ada_Calendar_Delays,
+
+     RE_Set_Deadline                     => Ada_Dispatching_EDF,
+
+     RE_Code_Loc                         => Ada_Exceptions,
+     RE_Exception_Id                     => Ada_Exceptions,
+     RE_Exception_Identity               => Ada_Exceptions,
+     RE_Exception_Information            => Ada_Exceptions,
+     RE_Exception_Message                => Ada_Exceptions,
+     RE_Exception_Name_Simple            => Ada_Exceptions,
+     RE_Exception_Occurrence             => Ada_Exceptions,
+     RE_Exception_Occurrence_Access      => Ada_Exceptions,
+     RE_Null_Id                          => Ada_Exceptions,
+     RE_Null_Occurrence                  => Ada_Exceptions,
+     RE_Poll                             => Ada_Exceptions,
+     RE_Raise_Exception                  => Ada_Exceptions,
+     RE_Raise_Exception_Always           => Ada_Exceptions,
+     RE_Raise_From_Controlled_Operation  => Ada_Exceptions,
+     RE_Reraise_Occurrence               => Ada_Exceptions,
+     RE_Reraise_Occurrence_Always        => Ada_Exceptions,
+     RE_Reraise_Occurrence_No_Defer      => Ada_Exceptions,
+     RE_Save_Occurrence                  => Ada_Exceptions,
+     RE_Triggered_By_Abort               => Ada_Exceptions,
+
+     RE_Interrupt_ID                     => Ada_Interrupts,
+     RE_Is_Reserved                      => Ada_Interrupts,
+     RE_Is_Attached                      => Ada_Interrupts,
+     RE_Current_Handler                  => Ada_Interrupts,
+     RE_Attach_Handler                   => Ada_Interrupts,
+     RE_Exchange_Handler                 => Ada_Interrupts,
+     RE_Detach_Handler                   => Ada_Interrupts,
+     RE_Reference                        => Ada_Interrupts,
+
+     RE_Names                            => Ada_Interrupts_Names,
+
+     RE_Clock                            => Ada_Real_Time,
+     RE_Time_Span                        => Ada_Real_Time,
+     RE_Time_Span_Zero                   => Ada_Real_Time,
+     RO_RT_Time                          => Ada_Real_Time,
+
+     RO_RT_Delay_Until                   => Ada_Real_Time_Delays,
+     RO_RT_To_Duration                   => Ada_Real_Time_Delays,
+
+     RE_Set_Handler                      => Ada_Real_Time_Timing_Events,
+     RE_Timing_Event                     => Ada_Real_Time_Timing_Events,
+
+     RE_Root_Stream_Type                 => Ada_Streams,
+     RE_Stream_Element                   => Ada_Streams,
+     RE_Stream_Element_Array             => Ada_Streams,
+     RE_Stream_Element_Offset            => Ada_Streams,
+
+     RE_Stream_Access                    => Ada_Streams_Stream_IO,
+
+     RO_SU_Super_String                  => Ada_Strings_Superbounded,
+
+     RO_WI_Super_String                  => Ada_Strings_Wide_Superbounded,
+
+     RO_WW_Super_String                  => Ada_Strings_Wide_Wide_Superbounded,
+
+     RE_Unbounded_String                 => Ada_Strings_Unbounded,
+
+     RE_Access_Level                     => Ada_Tags,
+     RE_Alignment                        => Ada_Tags,
+     RE_Address_Array                    => Ada_Tags,
+     RE_Addr_Ptr                         => Ada_Tags,
+     RE_Base_Address                     => Ada_Tags,
+     RE_Check_Interface_Conversion       => Ada_Tags,
+     RE_Check_TSD                        => Ada_Tags,
+     RE_Cstring_Ptr                      => Ada_Tags,
+     RE_Descendant_Tag                   => Ada_Tags,
+     RE_Dispatch_Table                   => Ada_Tags,
+     RE_Dispatch_Table_Wrapper           => Ada_Tags,
+     RE_Displace                         => Ada_Tags,
+     RE_DT                               => Ada_Tags,
+     RE_DT_Offset_To_Top_Offset          => Ada_Tags,
+     RE_DT_Predef_Prims_Offset           => Ada_Tags,
+     RE_DT_Typeinfo_Ptr_Size             => Ada_Tags,
+     RE_External_Tag                     => Ada_Tags,
+     RO_TA_External_Tag                  => Ada_Tags,
+     RE_Get_Access_Level                 => Ada_Tags,
+     RE_Get_Alignment                    => Ada_Tags,
+     RE_Get_Entry_Index                  => Ada_Tags,
+     RE_Get_Offset_Index                 => Ada_Tags,
+     RE_Get_Prim_Op_Kind                 => Ada_Tags,
+     RE_Get_Tagged_Kind                  => Ada_Tags,
+     RE_Idepth                           => Ada_Tags,
+     RE_Interfaces_Array                 => Ada_Tags,
+     RE_Interfaces_Table                 => Ada_Tags,
+     RE_Interface_Data                   => Ada_Tags,
+     RE_Interface_Data_Element           => Ada_Tags,
+     RE_Interface_Tag                    => Ada_Tags,
+     RE_Is_Abstract                      => Ada_Tags,
+     RE_IW_Membership                    => Ada_Tags,
+     RE_Max_Predef_Prims                 => Ada_Tags,
+     RE_Needs_Finalization               => Ada_Tags,
+     RE_No_Dispatch_Table_Wrapper        => Ada_Tags,
+     RE_No_Tag                           => Ada_Tags,
+     RE_NDT_Prims_Ptr                    => Ada_Tags,
+     RE_NDT_TSD                          => Ada_Tags,
+     RE_Num_Prims                        => Ada_Tags,
+     RE_Object_Specific_Data             => Ada_Tags,
+     RE_Offset_To_Top                    => Ada_Tags,
+     RE_Offset_To_Top_Ptr                => Ada_Tags,
+     RE_Offset_To_Top_Function_Ptr       => Ada_Tags,
+     RE_OSD_Table                        => Ada_Tags,
+     RE_OSD_Num_Prims                    => Ada_Tags,
+     RE_POK_Function                     => Ada_Tags,
+     RE_POK_Procedure                    => Ada_Tags,
+     RE_POK_Protected_Entry              => Ada_Tags,
+     RE_POK_Protected_Function           => Ada_Tags,
+     RE_POK_Protected_Procedure          => Ada_Tags,
+     RE_POK_Task_Entry                   => Ada_Tags,
+     RE_POK_Task_Function                => Ada_Tags,
+     RE_POK_Task_Procedure               => Ada_Tags,
+     RE_Predef_Prims                     => Ada_Tags,
+     RE_Predef_Prims_Table_Ptr           => Ada_Tags,
+     RE_Prim_Op_Kind                     => Ada_Tags,
+     RE_Prim_Ptr                         => Ada_Tags,
+     RE_Prims_Ptr                        => Ada_Tags,
+     RE_Primary_DT                       => Ada_Tags,
+     RE_Signature                        => Ada_Tags,
+     RE_SSD                              => Ada_Tags,
+     RE_TSD                              => Ada_Tags,
+     RE_Type_Specific_Data               => Ada_Tags,
+     RE_Register_Interface_Offset        => Ada_Tags,
+     RE_Register_Tag                     => Ada_Tags,
+     RE_Register_TSD                     => Ada_Tags,
+     RE_Transportable                    => Ada_Tags,
+     RE_Secondary_DT                     => Ada_Tags,
+     RE_Secondary_Tag                    => Ada_Tags,
+     RE_Select_Specific_Data             => Ada_Tags,
+     RE_Set_Entry_Index                  => Ada_Tags,
+     RE_Set_Dynamic_Offset_To_Top        => Ada_Tags,
+     RE_Set_Prim_Op_Kind                 => Ada_Tags,
+     RE_Size_Func                        => Ada_Tags,
+     RE_Size_Ptr                         => Ada_Tags,
+     RE_Tag                              => Ada_Tags,
+     RE_Tag_Error                        => Ada_Tags,
+     RE_Tag_Kind                         => Ada_Tags,
+     RE_Tag_Ptr                          => Ada_Tags,
+     RE_Tag_Table                        => Ada_Tags,
+     RE_Tags_Table                       => Ada_Tags,
+     RE_Tagged_Kind                      => Ada_Tags,
+     RE_Type_Specific_Data_Ptr           => Ada_Tags,
+     RE_TK_Abstract_Limited_Tagged       => Ada_Tags,
+     RE_TK_Abstract_Tagged               => Ada_Tags,
+     RE_TK_Limited_Tagged                => Ada_Tags,
+     RE_TK_Protected                     => Ada_Tags,
+     RE_TK_Tagged                        => Ada_Tags,
+     RE_TK_Task                          => Ada_Tags,
+     RE_Unregister_Tag                   => Ada_Tags,
+
+     RE_Set_Specific_Handler             => Ada_Task_Termination,
+     RE_Specific_Handler                 => Ada_Task_Termination,
+
+     RE_Abort_Task                       => Ada_Task_Identification,
+     RE_Current_Task                     => Ada_Task_Identification,
+     RO_AT_Task_Id                       => Ada_Task_Identification,
+     RE_Tasking_State                    => Ada_Task_Identification,
+
+     RE_Decimal_IO                       => Ada_Text_IO,
+     RE_Fixed_IO                         => Ada_Text_IO,
+
+     RO_WT_Decimal_IO                    => Ada_Wide_Text_IO,
+     RO_WT_Fixed_IO                      => Ada_Wide_Text_IO,
+
+     RO_WW_Decimal_IO                    => Ada_Wide_Wide_Text_IO,
+     RO_WW_Fixed_IO                      => Ada_Wide_Wide_Text_IO,
+
+     RE_Integer_8                        => Interfaces,
+     RE_Integer_16                       => Interfaces,
+     RE_Integer_32                       => Interfaces,
+     RE_Integer_64                       => Interfaces,
+     RE_Unsigned_8                       => Interfaces,
+     RE_Unsigned_16                      => Interfaces,
+     RE_Unsigned_32                      => Interfaces,
+     RE_Unsigned_64                      => Interfaces,
+
+     RE_Address                          => System,
+     RE_Any_Priority                     => System,
+     RE_Bit_Order                        => System,
+     RE_Default_Priority                 => System,
+     RE_High_Order_First                 => System,
+     RE_Interrupt_Priority               => System,
+     RE_Lib_Stop                         => System,
+     RE_Low_Order_First                  => System,
+     RE_Max_Base_Digits                  => System,
+     RE_Max_Priority                     => System,
+     RE_Null_Address                     => System,
+     RE_Priority                         => System,
+
+     RE_Address_Image                    => System_Address_Image,
+
+     RE_Add_With_Ovflo_Check             => System_Arith_64,
+     RE_Double_Divide                    => System_Arith_64,
+     RE_Multiply_With_Ovflo_Check        => System_Arith_64,
+     RE_Scaled_Divide                    => System_Arith_64,
+     RE_Subtract_With_Ovflo_Check        => System_Arith_64,
+
+     RE_Create_AST_Handler               => System_AST_Handling,
+
+     RE_Assert_Failure                   => System_Assertions,
+     RE_Raise_Assert_Failure             => System_Assertions,
+
+     RE_Lock_Free_Read_8                 => System_Atomic_Primitives,
+     RE_Lock_Free_Read_16                => System_Atomic_Primitives,
+     RE_Lock_Free_Read_32                => System_Atomic_Primitives,
+     RE_Lock_Free_Read_64                => System_Atomic_Primitives,
+     RE_Lock_Free_Try_Write_8            => System_Atomic_Primitives,
+     RE_Lock_Free_Try_Write_16           => System_Atomic_Primitives,
+     RE_Lock_Free_Try_Write_32           => System_Atomic_Primitives,
+     RE_Lock_Free_Try_Write_64           => System_Atomic_Primitives,
+     RE_Uint8                            => System_Atomic_Primitives,
+     RE_Uint16                           => System_Atomic_Primitives,
+     RE_Uint32                           => System_Atomic_Primitives,
+     RE_Uint64                           => System_Atomic_Primitives,
+
+     RE_AST_Handler                      => System_Aux_DEC,
+     RE_Import_Address                   => System_Aux_DEC,
+     RE_Import_Value                     => System_Aux_DEC,
+     RE_No_AST_Handler                   => System_Aux_DEC,
+     RE_Type_Class                       => System_Aux_DEC,
+     RE_Type_Class_Enumeration           => System_Aux_DEC,
+     RE_Type_Class_Integer               => System_Aux_DEC,
+     RE_Type_Class_Fixed_Point           => System_Aux_DEC,
+     RE_Type_Class_Floating_Point        => System_Aux_DEC,
+     RE_Type_Class_Array                 => System_Aux_DEC,
+     RE_Type_Class_Record                => System_Aux_DEC,
+     RE_Type_Class_Access                => System_Aux_DEC,
+     RE_Type_Class_Task                  => System_Aux_DEC,
+     RE_Type_Class_Address               => System_Aux_DEC,
+
+     RE_Big_Abs                          => System_Bignums,
+     RE_Big_Add                          => System_Bignums,
+     RE_Big_Div                          => System_Bignums,
+     RE_Big_Exp                          => System_Bignums,
+     RE_Big_Mod                          => System_Bignums,
+     RE_Big_Mul                          => System_Bignums,
+     RE_Big_Neg                          => System_Bignums,
+     RE_Big_Rem                          => System_Bignums,
+     RE_Big_Sub                          => System_Bignums,
+
+     RE_Big_EQ                           => System_Bignums,
+     RE_Big_GE                           => System_Bignums,
+     RE_Big_GT                           => System_Bignums,
+     RE_Big_LE                           => System_Bignums,
+     RE_Big_LT                           => System_Bignums,
+     RE_Big_NE                           => System_Bignums,
+
+     RE_Bignum                           => System_Bignums,
+     RE_Bignum_In_LLI_Range              => System_Bignums,
+     RE_To_Bignum                        => System_Bignums,
+     RE_From_Bignum                      => System_Bignums,
+
+     RE_Bit_And                          => System_Bit_Ops,
+     RE_Bit_Eq                           => System_Bit_Ops,
+     RE_Bit_Not                          => System_Bit_Ops,
+     RE_Bit_Or                           => System_Bit_Ops,
+     RE_Bit_Xor                          => System_Bit_Ops,
+
+     RE_Checked_Pool                     => System_Checked_Pools,
+
+     RE_Vector_Not                       => System_Boolean_Array_Operations,
+     RE_Vector_And                       => System_Boolean_Array_Operations,
+     RE_Vector_Or                        => System_Boolean_Array_Operations,
+     RE_Vector_Nand                      => System_Boolean_Array_Operations,
+     RE_Vector_Nor                       => System_Boolean_Array_Operations,
+     RE_Vector_Nxor                      => System_Boolean_Array_Operations,
+     RE_Vector_Xor                       => System_Boolean_Array_Operations,
+
+     RE_Bswap_16                         => System_Byte_Swapping,
+     RE_Bswap_32                         => System_Byte_Swapping,
+     RE_Bswap_64                         => System_Byte_Swapping,
+
+     RE_Compare_Array_S8                 => System_Compare_Array_Signed_8,
+     RE_Compare_Array_S8_Unaligned       => System_Compare_Array_Signed_8,
+
+     RE_Compare_Array_S16                => System_Compare_Array_Signed_16,
+
+     RE_Compare_Array_S32                => System_Compare_Array_Signed_32,
+
+     RE_Compare_Array_S64                => System_Compare_Array_Signed_64,
+
+     RE_Compare_Array_U8                 => System_Compare_Array_Unsigned_8,
+     RE_Compare_Array_U8_Unaligned       => System_Compare_Array_Unsigned_8,
+
+     RE_Compare_Array_U16                => System_Compare_Array_Unsigned_16,
+
+     RE_Compare_Array_U32                => System_Compare_Array_Unsigned_32,
+
+     RE_Compare_Array_U64                => System_Compare_Array_Unsigned_64,
+
+     RE_Str_Concat_2                     => System_Concat_2,
+     RE_Str_Concat_3                     => System_Concat_3,
+     RE_Str_Concat_4                     => System_Concat_4,
+     RE_Str_Concat_5                     => System_Concat_5,
+     RE_Str_Concat_6                     => System_Concat_6,
+     RE_Str_Concat_7                     => System_Concat_7,
+     RE_Str_Concat_8                     => System_Concat_8,
+     RE_Str_Concat_9                     => System_Concat_9,
+
+     RE_Str_Concat_Bounds_2              => System_Concat_2,
+     RE_Str_Concat_Bounds_3              => System_Concat_3,
+     RE_Str_Concat_Bounds_4              => System_Concat_4,
+     RE_Str_Concat_Bounds_5              => System_Concat_5,
+     RE_Str_Concat_Bounds_6              => System_Concat_6,
+     RE_Str_Concat_Bounds_7              => System_Concat_7,
+     RE_Str_Concat_Bounds_8              => System_Concat_8,
+     RE_Str_Concat_Bounds_9              => System_Concat_9,
+
+     RE_Get_Active_Partition_Id          => System_DSA_Services,
+     RE_Get_Local_Partition_Id           => System_DSA_Services,
+     RE_Get_Passive_Partition_Id         => System_DSA_Services,
+
+     RE_Any_Container_Ptr                => System_DSA_Types,
+
+     RE_Check_Standard_Allocator         => System_Elaboration_Allocators,
+
+     RE_Register_Exception               => System_Exception_Table,
+
+     RE_Local_Raise                      => System_Exceptions_Debug,
+
+     RE_Exn_Integer                      => System_Exn_Int,
+
+     RE_Exn_Float                        => System_Exn_LLF,
+     RE_Exn_Long_Float                   => System_Exn_LLF,
+     RE_Exn_Long_Long_Float              => System_Exn_LLF,
+
+     RE_Exn_Long_Long_Integer            => System_Exn_LLI,
+
+     RE_Exp_Integer                      => System_Exp_Int,
+
+     RE_Exp_Long_Long_Integer            => System_Exp_LLI,
+
+     RE_Exp_Long_Long_Unsigned           => System_Exp_LLU,
+
+     RE_Exp_Modular                      => System_Exp_Mod,
+
+     RE_Exp_Unsigned                     => System_Exp_Uns,
+
+     RE_Attr_Float                       => System_Fat_Flt,
+
+     RE_Attr_IEEE_Long                   => System_Fat_IEEE_Long_Float,
+     RE_Fat_IEEE_Long                    => System_Fat_IEEE_Long_Float,
+
+     RE_Attr_IEEE_Short                  => System_Fat_IEEE_Short_Float,
+     RE_Fat_IEEE_Short                   => System_Fat_IEEE_Short_Float,
+
+     RE_Attr_Long_Float                  => System_Fat_LFlt,
+
+     RE_Attr_Long_Long_Float             => System_Fat_LLF,
+
+     RE_Attr_Short_Float                 => System_Fat_SFlt,
+
+     RE_Attr_VAX_D_Float                 => System_Fat_VAX_D_Float,
+     RE_Fat_VAX_D                        => System_Fat_VAX_D_Float,
+
+     RE_Attr_VAX_F_Float                 => System_Fat_VAX_F_Float,
+     RE_Fat_VAX_F                        => System_Fat_VAX_F_Float,
+
+     RE_Attr_VAX_G_Float                 => System_Fat_VAX_G_Float,
+     RE_Fat_VAX_G                        => System_Fat_VAX_G_Float,
+
+     RE_Add_Offset_To_Address            => System_Finalization_Masters,
+     RE_Attach                           => System_Finalization_Masters,
+     RE_Base_Pool                        => System_Finalization_Masters,
+     RE_Detach                           => System_Finalization_Masters,
+     RE_Finalization_Master              => System_Finalization_Masters,
+     RE_Finalization_Master_Ptr          => System_Finalization_Masters,
+     RE_Set_Base_Pool                    => System_Finalization_Masters,
+     RE_Set_Finalize_Address             => System_Finalization_Masters,
+     RE_Set_Is_Heterogeneous             => System_Finalization_Masters,
+
+     RE_Root_Controlled                  => System_Finalization_Root,
+     RE_Root_Controlled_Ptr              => System_Finalization_Root,
+
+     RE_Fore                             => System_Fore,
+
+     RE_Image_Boolean                    => System_Img_Bool,
+
+     RE_Image_Character                  => System_Img_Char,
+     RE_Image_Character_05               => System_Img_Char,
+
+     RE_Image_Decimal                    => System_Img_Dec,
+
+     RE_Image_Enumeration_8              => System_Img_Enum_New,
+     RE_Image_Enumeration_16             => System_Img_Enum_New,
+     RE_Image_Enumeration_32             => System_Img_Enum_New,
+
+     RE_Image_Integer                    => System_Img_Int,
+
+     RE_Image_Long_Long_Decimal          => System_Img_LLD,
+
+     RE_Image_Long_Long_Integer          => System_Img_LLI,
+
+     RE_Image_Long_Long_Unsigned         => System_Img_LLU,
+
+     RE_Image_Ordinary_Fixed_Point       => System_Img_Real,
+     RE_Image_Floating_Point             => System_Img_Real,
+
+     RE_Image_Unsigned                   => System_Img_Uns,
+
+     RE_Image_Wide_Character             => System_Img_WChar,
+     RE_Image_Wide_Wide_Character        => System_Img_WChar,
+
+     RE_Bind_Interrupt_To_Entry          => System_Interrupts,
+     RE_Default_Interrupt_Priority       => System_Interrupts,
+     RE_Dynamic_Interrupt_Protection     => System_Interrupts,
+     RE_Install_Handlers                 => System_Interrupts,
+     RE_Install_Restricted_Handlers      => System_Interrupts,
+     RE_Register_Interrupt_Handler       => System_Interrupts,
+     RE_Static_Interrupt_Protection      => System_Interrupts,
+     RE_System_Interrupt_Id              => System_Interrupts,
+
+     RE_Expon_LLF                        => System_Long_Long_Float_Expon,
+
+     RE_Asm_Insn                         => System_Machine_Code,
+     RE_Asm_Input_Operand                => System_Machine_Code,
+     RE_Asm_Output_Operand               => System_Machine_Code,
+
+     RE_Mantissa_Value                   => System_Mantissa,
+
+     RE_Free                             => System_Memory,
+
+     RE_CPU_Range                        => System_Multiprocessors,
+
+     RE_Bits_03                          => System_Pack_03,
+     RE_Get_03                           => System_Pack_03,
+     RE_Set_03                           => System_Pack_03,
+
+     RE_Bits_05                          => System_Pack_05,
+     RE_Get_05                           => System_Pack_05,
+     RE_Set_05                           => System_Pack_05,
+
+     RE_Bits_06                          => System_Pack_06,
+     RE_Get_06                           => System_Pack_06,
+     RE_GetU_06                          => System_Pack_06,
+     RE_Set_06                           => System_Pack_06,
+     RE_SetU_06                          => System_Pack_06,
+
+     RE_Bits_07                          => System_Pack_07,
+     RE_Get_07                           => System_Pack_07,
+     RE_Set_07                           => System_Pack_07,
+
+     RE_Bits_09                          => System_Pack_09,
+     RE_Get_09                           => System_Pack_09,
+     RE_Set_09                           => System_Pack_09,
+
+     RE_Bits_10                          => System_Pack_10,
+     RE_Get_10                           => System_Pack_10,
+     RE_GetU_10                          => System_Pack_10,
+     RE_Set_10                           => System_Pack_10,
+     RE_SetU_10                          => System_Pack_10,
+
+     RE_Bits_11                          => System_Pack_11,
+     RE_Get_11                           => System_Pack_11,
+     RE_Set_11                           => System_Pack_11,
+
+     RE_Bits_12                          => System_Pack_12,
+     RE_Get_12                           => System_Pack_12,
+     RE_GetU_12                          => System_Pack_12,
+     RE_Set_12                           => System_Pack_12,
+     RE_SetU_12                          => System_Pack_12,
+
+     RE_Bits_13                          => System_Pack_13,
+     RE_Get_13                           => System_Pack_13,
+     RE_Set_13                           => System_Pack_13,
+
+     RE_Bits_14                          => System_Pack_14,
+     RE_Get_14                           => System_Pack_14,
+     RE_GetU_14                          => System_Pack_14,
+     RE_Set_14                           => System_Pack_14,
+     RE_SetU_14                          => System_Pack_14,
+
+     RE_Bits_15                          => System_Pack_15,
+     RE_Get_15                           => System_Pack_15,
+     RE_Set_15                           => System_Pack_15,
+
+     RE_Bits_17                          => System_Pack_17,
+     RE_Get_17                           => System_Pack_17,
+     RE_Set_17                           => System_Pack_17,
+
+     RE_Bits_18                          => System_Pack_18,
+     RE_Get_18                           => System_Pack_18,
+     RE_GetU_18                          => System_Pack_18,
+     RE_Set_18                           => System_Pack_18,
+     RE_SetU_18                          => System_Pack_18,
+
+     RE_Bits_19                          => System_Pack_19,
+     RE_Get_19                           => System_Pack_19,
+     RE_Set_19                           => System_Pack_19,
+
+     RE_Bits_20                          => System_Pack_20,
+     RE_Get_20                           => System_Pack_20,
+     RE_GetU_20                          => System_Pack_20,
+     RE_Set_20                           => System_Pack_20,
+     RE_SetU_20                          => System_Pack_20,
+
+     RE_Bits_21                          => System_Pack_21,
+     RE_Get_21                           => System_Pack_21,
+     RE_Set_21                           => System_Pack_21,
+
+     RE_Bits_22                          => System_Pack_22,
+     RE_Get_22                           => System_Pack_22,
+     RE_GetU_22                          => System_Pack_22,
+     RE_Set_22                           => System_Pack_22,
+     RE_SetU_22                          => System_Pack_22,
+
+     RE_Bits_23                          => System_Pack_23,
+     RE_Get_23                           => System_Pack_23,
+     RE_Set_23                           => System_Pack_23,
+
+     RE_Bits_24                          => System_Pack_24,
+     RE_Get_24                           => System_Pack_24,
+     RE_GetU_24                          => System_Pack_24,
+     RE_Set_24                           => System_Pack_24,
+     RE_SetU_24                          => System_Pack_24,
+
+     RE_Bits_25                          => System_Pack_25,
+     RE_Get_25                           => System_Pack_25,
+     RE_Set_25                           => System_Pack_25,
+
+     RE_Bits_26                          => System_Pack_26,
+     RE_Get_26                           => System_Pack_26,
+     RE_GetU_26                          => System_Pack_26,
+     RE_Set_26                           => System_Pack_26,
+     RE_SetU_26                          => System_Pack_26,
+
+     RE_Bits_27                          => System_Pack_27,
+     RE_Get_27                           => System_Pack_27,
+     RE_Set_27                           => System_Pack_27,
+
+     RE_Bits_28                          => System_Pack_28,
+     RE_Get_28                           => System_Pack_28,
+     RE_GetU_28                          => System_Pack_28,
+     RE_Set_28                           => System_Pack_28,
+     RE_SetU_28                          => System_Pack_28,
+
+     RE_Bits_29                          => System_Pack_29,
+     RE_Get_29                           => System_Pack_29,
+     RE_Set_29                           => System_Pack_29,
+
+     RE_Bits_30                          => System_Pack_30,
+     RE_Get_30                           => System_Pack_30,
+     RE_GetU_30                          => System_Pack_30,
+     RE_Set_30                           => System_Pack_30,
+     RE_SetU_30                          => System_Pack_30,
+
+     RE_Bits_31                          => System_Pack_31,
+     RE_Get_31                           => System_Pack_31,
+     RE_Set_31                           => System_Pack_31,
+
+     RE_Bits_33                          => System_Pack_33,
+     RE_Get_33                           => System_Pack_33,
+     RE_Set_33                           => System_Pack_33,
+
+     RE_Bits_34                          => System_Pack_34,
+     RE_Get_34                           => System_Pack_34,
+     RE_GetU_34                          => System_Pack_34,
+     RE_Set_34                           => System_Pack_34,
+     RE_SetU_34                          => System_Pack_34,
+
+     RE_Bits_35                          => System_Pack_35,
+     RE_Get_35                           => System_Pack_35,
+     RE_Set_35                           => System_Pack_35,
+
+     RE_Bits_36                          => System_Pack_36,
+     RE_Get_36                           => System_Pack_36,
+     RE_GetU_36                          => System_Pack_36,
+     RE_Set_36                           => System_Pack_36,
+     RE_SetU_36                          => System_Pack_36,
+
+     RE_Bits_37                          => System_Pack_37,
+     RE_Get_37                           => System_Pack_37,
+     RE_Set_37                           => System_Pack_37,
+
+     RE_Bits_38                          => System_Pack_38,
+     RE_Get_38                           => System_Pack_38,
+     RE_GetU_38                          => System_Pack_38,
+     RE_Set_38                           => System_Pack_38,
+     RE_SetU_38                          => System_Pack_38,
+
+     RE_Bits_39                          => System_Pack_39,
+     RE_Get_39                           => System_Pack_39,
+     RE_Set_39                           => System_Pack_39,
+
+     RE_Bits_40                          => System_Pack_40,
+     RE_Get_40                           => System_Pack_40,
+     RE_GetU_40                          => System_Pack_40,
+     RE_Set_40                           => System_Pack_40,
+     RE_SetU_40                          => System_Pack_40,
+
+     RE_Bits_41                          => System_Pack_41,
+     RE_Get_41                           => System_Pack_41,
+     RE_Set_41                           => System_Pack_41,
+
+     RE_Bits_42                          => System_Pack_42,
+     RE_Get_42                           => System_Pack_42,
+     RE_GetU_42                          => System_Pack_42,
+     RE_Set_42                           => System_Pack_42,
+     RE_SetU_42                          => System_Pack_42,
+
+     RE_Bits_43                          => System_Pack_43,
+     RE_Get_43                           => System_Pack_43,
+     RE_Set_43                           => System_Pack_43,
+
+     RE_Bits_44                          => System_Pack_44,
+     RE_Get_44                           => System_Pack_44,
+     RE_GetU_44                          => System_Pack_44,
+     RE_Set_44                           => System_Pack_44,
+     RE_SetU_44                          => System_Pack_44,
+
+     RE_Bits_45                          => System_Pack_45,
+     RE_Get_45                           => System_Pack_45,
+     RE_Set_45                           => System_Pack_45,
+
+     RE_Bits_46                          => System_Pack_46,
+     RE_Get_46                           => System_Pack_46,
+     RE_GetU_46                          => System_Pack_46,
+     RE_Set_46                           => System_Pack_46,
+     RE_SetU_46                          => System_Pack_46,
+
+     RE_Bits_47                          => System_Pack_47,
+     RE_Get_47                           => System_Pack_47,
+     RE_Set_47                           => System_Pack_47,
+
+     RE_Bits_48                          => System_Pack_48,
+     RE_Get_48                           => System_Pack_48,
+     RE_GetU_48                          => System_Pack_48,
+     RE_Set_48                           => System_Pack_48,
+     RE_SetU_48                          => System_Pack_48,
+
+     RE_Bits_49                          => System_Pack_49,
+     RE_Get_49                           => System_Pack_49,
+     RE_Set_49                           => System_Pack_49,
+
+     RE_Bits_50                          => System_Pack_50,
+     RE_Get_50                           => System_Pack_50,
+     RE_GetU_50                          => System_Pack_50,
+     RE_Set_50                           => System_Pack_50,
+     RE_SetU_50                          => System_Pack_50,
+
+     RE_Bits_51                          => System_Pack_51,
+     RE_Get_51                           => System_Pack_51,
+     RE_Set_51                           => System_Pack_51,
+
+     RE_Bits_52                          => System_Pack_52,
+     RE_Get_52                           => System_Pack_52,
+     RE_GetU_52                          => System_Pack_52,
+     RE_Set_52                           => System_Pack_52,
+     RE_SetU_52                          => System_Pack_52,
+
+     RE_Bits_53                          => System_Pack_53,
+     RE_Get_53                           => System_Pack_53,
+     RE_Set_53                           => System_Pack_53,
+
+     RE_Bits_54                          => System_Pack_54,
+     RE_Get_54                           => System_Pack_54,
+     RE_GetU_54                          => System_Pack_54,
+     RE_Set_54                           => System_Pack_54,
+     RE_SetU_54                          => System_Pack_54,
+
+     RE_Bits_55                          => System_Pack_55,
+     RE_Get_55                           => System_Pack_55,
+     RE_Set_55                           => System_Pack_55,
+
+     RE_Bits_56                          => System_Pack_56,
+     RE_Get_56                           => System_Pack_56,
+     RE_GetU_56                          => System_Pack_56,
+     RE_Set_56                           => System_Pack_56,
+     RE_SetU_56                          => System_Pack_56,
+
+     RE_Bits_57                          => System_Pack_57,
+     RE_Get_57                           => System_Pack_57,
+     RE_Set_57                           => System_Pack_57,
+
+     RE_Bits_58                          => System_Pack_58,
+     RE_Get_58                           => System_Pack_58,
+     RE_GetU_58                          => System_Pack_58,
+     RE_Set_58                           => System_Pack_58,
+     RE_SetU_58                          => System_Pack_58,
+
+     RE_Bits_59                          => System_Pack_59,
+     RE_Get_59                           => System_Pack_59,
+     RE_Set_59                           => System_Pack_59,
+
+     RE_Bits_60                          => System_Pack_60,
+     RE_Get_60                           => System_Pack_60,
+     RE_GetU_60                          => System_Pack_60,
+     RE_Set_60                           => System_Pack_60,
+     RE_SetU_60                          => System_Pack_60,
+
+     RE_Bits_61                          => System_Pack_61,
+     RE_Get_61                           => System_Pack_61,
+     RE_Set_61                           => System_Pack_61,
+
+     RE_Bits_62                          => System_Pack_62,
+     RE_Get_62                           => System_Pack_62,
+     RE_GetU_62                          => System_Pack_62,
+     RE_Set_62                           => System_Pack_62,
+     RE_SetU_62                          => System_Pack_62,
+
+     RE_Bits_63                          => System_Pack_63,
+     RE_Get_63                           => System_Pack_63,
+     RE_Set_63                           => System_Pack_63,
+
+     RE_Adjust_Storage_Size              => System_Parameters,
+     RE_Default_Secondary_Stack_Size     => System_Parameters,
+     RE_Default_Stack_Size               => System_Parameters,
+     RE_Garbage_Collected                => System_Parameters,
+     RE_Size_Type                        => System_Parameters,
+     RE_Unspecified_Size                 => System_Parameters,
+
+     RE_DSA_Implementation               => System_Partition_Interface,
+     RE_PCS_Version                      => System_Partition_Interface,
+     RE_Get_RACW                         => System_Partition_Interface,
+     RE_Get_RCI_Package_Receiver         => System_Partition_Interface,
+     RE_Get_Unique_Remote_Pointer        => System_Partition_Interface,
+     RE_RACW_Stub_Type                   => System_Partition_Interface,
+     RE_RACW_Stub_Type_Access            => System_Partition_Interface,
+     RE_RAS_Proxy_Type_Access            => System_Partition_Interface,
+     RE_Raise_Program_Error_Unknown_Tag  => System_Partition_Interface,
+     RE_Register_Passive_Package         => System_Partition_Interface,
+     RE_Register_Receiving_Stub          => System_Partition_Interface,
+     RE_Request                          => System_Partition_Interface,
+     RE_Request_Access                   => System_Partition_Interface,
+     RE_RCI_Locator                      => System_Partition_Interface,
+     RE_RCI_Subp_Info                    => System_Partition_Interface,
+     RE_RCI_Subp_Info_Array              => System_Partition_Interface,
+     RE_Same_Partition                   => System_Partition_Interface,
+     RE_Subprogram_Id                    => System_Partition_Interface,
+     RE_Get_RAS_Info                     => System_Partition_Interface,
+
+     RE_To_PolyORB_String                => System_Partition_Interface,
+     RE_Caseless_String_Eq               => System_Partition_Interface,
+     RE_TypeCode                         => System_Partition_Interface,
+     RE_Any                              => System_Partition_Interface,
+     RE_Mode_In                          => System_Partition_Interface,
+     RE_Mode_Out                         => System_Partition_Interface,
+     RE_Mode_Inout                       => System_Partition_Interface,
+     RE_NamedValue                       => System_Partition_Interface,
+     RE_Result_Name                      => System_Partition_Interface,
+     RE_Object_Ref                       => System_Partition_Interface,
+     RE_Create_Any                       => System_Partition_Interface,
+     RE_Any_Aggregate_Build              => System_Partition_Interface,
+     RE_Add_Aggregate_Element            => System_Partition_Interface,
+     RE_Get_Aggregate_Element            => System_Partition_Interface,
+     RE_Content_Type                     => System_Partition_Interface,
+     RE_Any_Member_Type                  => System_Partition_Interface,
+     RE_Get_Nested_Sequence_Length       => System_Partition_Interface,
+     RE_Get_Any_Type                     => System_Partition_Interface,
+     RE_Extract_Union_Value              => System_Partition_Interface,
+     RE_NVList_Ref                       => System_Partition_Interface,
+     RE_NVList_Create                    => System_Partition_Interface,
+     RE_NVList_Add_Item                  => System_Partition_Interface,
+     RE_Request_Arguments                => System_Partition_Interface,
+     RE_Request_Invoke                   => System_Partition_Interface,
+     RE_Request_Raise_Occurrence         => System_Partition_Interface,
+     RE_Request_Set_Out                  => System_Partition_Interface,
+     RE_Request_Setup                    => System_Partition_Interface,
+     RE_Nil_Exc_List                     => System_Partition_Interface,
+     RE_Servant                          => System_Partition_Interface,
+     RE_Move_Any_Value                   => System_Partition_Interface,
+     RE_Set_Result                       => System_Partition_Interface,
+     RE_Register_Obj_Receiving_Stub      => System_Partition_Interface,
+     RE_Register_Pkg_Receiving_Stub      => System_Partition_Interface,
+     RE_Is_Nil                           => System_Partition_Interface,
+     RE_Entity_Ptr                       => System_Partition_Interface,
+     RE_Entity_Of                        => System_Partition_Interface,
+     RE_Inc_Usage                        => System_Partition_Interface,
+     RE_Set_Ref                          => System_Partition_Interface,
+     RE_Make_Ref                         => System_Partition_Interface,
+     RE_Get_Local_Address                => System_Partition_Interface,
+     RE_Get_Reference                    => System_Partition_Interface,
+     RE_Asynchronous_P_To_Sync_Scope     => System_Partition_Interface,
+     RE_Buffer_Stream_Type               => System_Partition_Interface,
+     RE_Release_Buffer                   => System_Partition_Interface,
+     RE_BS_To_Any                        => System_Partition_Interface,
+     RE_Any_To_BS                        => System_Partition_Interface,
+     RE_Build_Complex_TC                 => System_Partition_Interface,
+     RE_Get_TC                           => System_Partition_Interface,
+     RE_Set_TC                           => System_Partition_Interface,
+
+     RE_FA_A                             => System_Partition_Interface,
+     RE_FA_B                             => System_Partition_Interface,
+     RE_FA_C                             => System_Partition_Interface,
+     RE_FA_F                             => System_Partition_Interface,
+     RE_FA_I8                            => System_Partition_Interface,
+     RE_FA_I16                           => System_Partition_Interface,
+     RE_FA_I32                           => System_Partition_Interface,
+     RE_FA_I64                           => System_Partition_Interface,
+     RE_FA_LF                            => System_Partition_Interface,
+     RE_FA_LLF                           => System_Partition_Interface,
+     RE_FA_SF                            => System_Partition_Interface,
+     RE_FA_U8                            => System_Partition_Interface,
+     RE_FA_U16                           => System_Partition_Interface,
+     RE_FA_U32                           => System_Partition_Interface,
+     RE_FA_U64                           => System_Partition_Interface,
+     RE_FA_WC                            => System_Partition_Interface,
+     RE_FA_WWC                           => System_Partition_Interface,
+     RE_FA_String                        => System_Partition_Interface,
+     RE_FA_ObjRef                        => System_Partition_Interface,
+
+     RE_TA_A                             => System_Partition_Interface,
+     RE_TA_B                             => System_Partition_Interface,
+     RE_TA_C                             => System_Partition_Interface,
+     RE_TA_F                             => System_Partition_Interface,
+     RE_TA_I8                            => System_Partition_Interface,
+     RE_TA_I16                           => System_Partition_Interface,
+     RE_TA_I32                           => System_Partition_Interface,
+     RE_TA_I64                           => System_Partition_Interface,
+     RE_TA_LF                            => System_Partition_Interface,
+     RE_TA_LLF                           => System_Partition_Interface,
+     RE_TA_SF                            => System_Partition_Interface,
+     RE_TA_U8                            => System_Partition_Interface,
+     RE_TA_U16                           => System_Partition_Interface,
+     RE_TA_U32                           => System_Partition_Interface,
+     RE_TA_U64                           => System_Partition_Interface,
+     RE_TA_WC                            => System_Partition_Interface,
+     RE_TA_WWC                           => System_Partition_Interface,
+     RE_TA_String                        => System_Partition_Interface,
+     RE_TA_ObjRef                        => System_Partition_Interface,
+     RE_TA_Std_String                    => System_Partition_Interface,
+     RE_TA_TC                            => System_Partition_Interface,
+
+     RE_TC_A                             => System_Partition_Interface,
+     RE_TC_B                             => System_Partition_Interface,
+     RE_TC_C                             => System_Partition_Interface,
+     RE_TC_F                             => System_Partition_Interface,
+     RE_TC_I8                            => System_Partition_Interface,
+     RE_TC_I16                           => System_Partition_Interface,
+     RE_TC_I32                           => System_Partition_Interface,
+     RE_TC_I64                           => System_Partition_Interface,
+     RE_TC_LF                            => System_Partition_Interface,
+     RE_TC_LLF                           => System_Partition_Interface,
+     RE_TC_SF                            => System_Partition_Interface,
+     RE_TC_U8                            => System_Partition_Interface,
+     RE_TC_U16                           => System_Partition_Interface,
+     RE_TC_U32                           => System_Partition_Interface,
+     RE_TC_U64                           => System_Partition_Interface,
+     RE_TC_Void                          => System_Partition_Interface,
+     RE_TC_Opaque                        => System_Partition_Interface,
+     RE_TC_WC                            => System_Partition_Interface,
+     RE_TC_WWC                           => System_Partition_Interface,
+     RE_TC_String                        => System_Partition_Interface,
+
+     RE_Tk_Alias                         => System_Partition_Interface,
+     RE_Tk_Array                         => System_Partition_Interface,
+     RE_Tk_Sequence                      => System_Partition_Interface,
+     RE_Tk_Struct                        => System_Partition_Interface,
+     RE_Tk_Objref                        => System_Partition_Interface,
+     RE_Tk_Union                         => System_Partition_Interface,
+
+     RE_Global_Pool_Object               => System_Pool_Global,
+
+     RE_Global_Pool_32_Object            => System_Pool_32_Global,
+
+     RE_Stack_Bounded_Pool               => System_Pool_Size,
+
+     RO_RD_Delay_For                     => System_Relative_Delays,
+
+     RE_Do_Apc                           => System_RPC,
+     RE_Do_Rpc                           => System_RPC,
+     RE_Params_Stream_Type               => System_RPC,
+     RE_Partition_ID                     => System_RPC,
+
+     RE_IS_Is1                           => System_Scalar_Values,
+     RE_IS_Is2                           => System_Scalar_Values,
+     RE_IS_Is4                           => System_Scalar_Values,
+     RE_IS_Is8                           => System_Scalar_Values,
+     RE_IS_Iu1                           => System_Scalar_Values,
+     RE_IS_Iu2                           => System_Scalar_Values,
+     RE_IS_Iu4                           => System_Scalar_Values,
+     RE_IS_Iu8                           => System_Scalar_Values,
+     RE_IS_Iz1                           => System_Scalar_Values,
+     RE_IS_Iz2                           => System_Scalar_Values,
+     RE_IS_Iz4                           => System_Scalar_Values,
+     RE_IS_Iz8                           => System_Scalar_Values,
+     RE_IS_Isf                           => System_Scalar_Values,
+     RE_IS_Ifl                           => System_Scalar_Values,
+     RE_IS_Ilf                           => System_Scalar_Values,
+     RE_IS_Ill                           => System_Scalar_Values,
+
+     RE_Mark_Id                          => System_Secondary_Stack,
+     RE_SS_Allocate                      => System_Secondary_Stack,
+     RE_SS_Mark                          => System_Secondary_Stack,
+     RE_SS_Pool                          => System_Secondary_Stack,
+     RE_SS_Release                       => System_Secondary_Stack,
+     RE_SS_Stack                         => System_Secondary_Stack,
+
+     RE_Shared_Var_Lock                  => System_Shared_Storage,
+     RE_Shared_Var_Unlock                => System_Shared_Storage,
+     RE_Shared_Var_Procs                 => System_Shared_Storage,
+
+     RE_Abort_Undefer_Direct             => System_Standard_Library,
+     RE_Exception_Data_Ptr               => System_Standard_Library,
+
+     RE_Integer_Address                  => System_Storage_Elements,
+     RE_Storage_Array                    => System_Storage_Elements,
+     RE_Storage_Count                    => System_Storage_Elements,
+     RE_Storage_Offset                   => System_Storage_Elements,
+     RE_To_Address                       => System_Storage_Elements,
+
+     RE_Allocate_Any                     => System_Storage_Pools,
+     RE_Deallocate_Any                   => System_Storage_Pools,
+     RE_Root_Storage_Pool                => System_Storage_Pools,
+     RE_Root_Storage_Pool_Ptr            => System_Storage_Pools,
+
+     RE_Adjust_Controlled_Dereference    => System_Storage_Pools_Subpools,
+     RE_Allocate_Any_Controlled          => System_Storage_Pools_Subpools,
+     RE_Deallocate_Any_Controlled        => System_Storage_Pools_Subpools,
+     RE_Header_Size_With_Padding         => System_Storage_Pools_Subpools,
+     RE_Root_Storage_Pool_With_Subpools  => System_Storage_Pools_Subpools,
+     RE_Root_Subpool                     => System_Storage_Pools_Subpools,
+     RE_Subpool_Handle                   => System_Storage_Pools_Subpools,
+
+     RE_I_AD                             => System_Stream_Attributes,
+     RE_I_AS                             => System_Stream_Attributes,
+     RE_I_B                              => System_Stream_Attributes,
+     RE_I_C                              => System_Stream_Attributes,
+     RE_I_F                              => System_Stream_Attributes,
+     RE_I_I                              => System_Stream_Attributes,
+     RE_I_LF                             => System_Stream_Attributes,
+     RE_I_LI                             => System_Stream_Attributes,
+     RE_I_LLF                            => System_Stream_Attributes,
+     RE_I_LLI                            => System_Stream_Attributes,
+     RE_I_LLU                            => System_Stream_Attributes,
+     RE_I_LU                             => System_Stream_Attributes,
+     RE_I_SF                             => System_Stream_Attributes,
+     RE_I_SI                             => System_Stream_Attributes,
+     RE_I_SSI                            => System_Stream_Attributes,
+     RE_I_SSU                            => System_Stream_Attributes,
+     RE_I_SU                             => System_Stream_Attributes,
+     RE_I_U                              => System_Stream_Attributes,
+     RE_I_WC                             => System_Stream_Attributes,
+     RE_I_WWC                            => System_Stream_Attributes,
+
+     RE_W_AD                             => System_Stream_Attributes,
+     RE_W_AS                             => System_Stream_Attributes,
+     RE_W_B                              => System_Stream_Attributes,
+     RE_W_C                              => System_Stream_Attributes,
+     RE_W_F                              => System_Stream_Attributes,
+     RE_W_I                              => System_Stream_Attributes,
+     RE_W_LF                             => System_Stream_Attributes,
+     RE_W_LI                             => System_Stream_Attributes,
+     RE_W_LLF                            => System_Stream_Attributes,
+     RE_W_LLI                            => System_Stream_Attributes,
+     RE_W_LLU                            => System_Stream_Attributes,
+     RE_W_LU                             => System_Stream_Attributes,
+     RE_W_SF                             => System_Stream_Attributes,
+     RE_W_SI                             => System_Stream_Attributes,
+     RE_W_SSI                            => System_Stream_Attributes,
+     RE_W_SSU                            => System_Stream_Attributes,
+     RE_W_SU                             => System_Stream_Attributes,
+     RE_W_U                              => System_Stream_Attributes,
+     RE_W_WC                             => System_Stream_Attributes,
+     RE_W_WWC                            => System_Stream_Attributes,
+
+     RE_Storage_Array_Input              =>  System_Strings_Stream_Ops,
+     RE_Storage_Array_Input_Blk_IO       =>  System_Strings_Stream_Ops,
+     RE_Storage_Array_Output             =>  System_Strings_Stream_Ops,
+     RE_Storage_Array_Output_Blk_IO      =>  System_Strings_Stream_Ops,
+     RE_Storage_Array_Read               =>  System_Strings_Stream_Ops,
+     RE_Storage_Array_Read_Blk_IO        =>  System_Strings_Stream_Ops,
+     RE_Storage_Array_Write              =>  System_Strings_Stream_Ops,
+     RE_Storage_Array_Write_Blk_IO       =>  System_Strings_Stream_Ops,
+
+     RE_Stream_Element_Array_Input          =>  System_Strings_Stream_Ops,
+     RE_Stream_Element_Array_Input_Blk_IO   =>  System_Strings_Stream_Ops,
+     RE_Stream_Element_Array_Output         =>  System_Strings_Stream_Ops,
+     RE_Stream_Element_Array_Output_Blk_IO  =>  System_Strings_Stream_Ops,
+     RE_Stream_Element_Array_Read           =>  System_Strings_Stream_Ops,
+     RE_Stream_Element_Array_Read_Blk_IO    =>  System_Strings_Stream_Ops,
+     RE_Stream_Element_Array_Write          =>  System_Strings_Stream_Ops,
+     RE_Stream_Element_Array_Write_Blk_IO   =>  System_Strings_Stream_Ops,
+
+     RE_String_Input                     => System_Strings_Stream_Ops,
+     RE_String_Input_Blk_IO              => System_Strings_Stream_Ops,
+     RE_String_Input_Tag                 => System_Strings_Stream_Ops,
+     RE_String_Output                    => System_Strings_Stream_Ops,
+     RE_String_Output_Blk_IO             => System_Strings_Stream_Ops,
+     RE_String_Read                      => System_Strings_Stream_Ops,
+     RE_String_Read_Blk_IO               => System_Strings_Stream_Ops,
+     RE_String_Write                     => System_Strings_Stream_Ops,
+     RE_String_Write_Blk_IO              => System_Strings_Stream_Ops,
+
+     RE_Wide_String_Input                => System_Strings_Stream_Ops,
+     RE_Wide_String_Input_Blk_IO         => System_Strings_Stream_Ops,
+     RE_Wide_String_Output               => System_Strings_Stream_Ops,
+     RE_Wide_String_Output_Blk_IO        => System_Strings_Stream_Ops,
+     RE_Wide_String_Read                 => System_Strings_Stream_Ops,
+     RE_Wide_String_Read_Blk_IO          => System_Strings_Stream_Ops,
+     RE_Wide_String_Write                => System_Strings_Stream_Ops,
+
+     RE_Wide_String_Write_Blk_IO         => System_Strings_Stream_Ops,
+     RE_Wide_Wide_String_Input           => System_Strings_Stream_Ops,
+     RE_Wide_Wide_String_Input_Blk_IO    => System_Strings_Stream_Ops,
+     RE_Wide_Wide_String_Output          => System_Strings_Stream_Ops,
+     RE_Wide_Wide_String_Output_Blk_IO   => System_Strings_Stream_Ops,
+     RE_Wide_Wide_String_Read            => System_Strings_Stream_Ops,
+     RE_Wide_Wide_String_Read_Blk_IO     => System_Strings_Stream_Ops,
+     RE_Wide_Wide_String_Write           => System_Strings_Stream_Ops,
+     RE_Wide_Wide_String_Write_Blk_IO    => System_Strings_Stream_Ops,
+
+     RE_Task_Info_Type                   => System_Task_Info,
+     RE_Unspecified_Task_Info            => System_Task_Info,
+
+     RE_Task_Procedure_Access            => System_Tasking,
+     RO_ST_Number_Of_Entries             => System_Tasking,
+
+     RO_ST_Task_Id                       => System_Tasking,
+     RO_ST_Null_Task                     => System_Tasking,
+
+     RE_Call_Modes                       => System_Tasking,
+     RE_Simple_Call                      => System_Tasking,
+     RE_Conditional_Call                 => System_Tasking,
+     RE_Asynchronous_Call                => System_Tasking,
+
+     RE_Foreign_Task_Level               => System_Tasking,
+     RE_Environment_Task_Level           => System_Tasking,
+     RE_Independent_Task_Level           => System_Tasking,
+     RE_Library_Task_Level               => System_Tasking,
+
+     RE_Ada_Task_Control_Block           => System_Tasking,
+
+     RE_Task_List                        => System_Tasking,
+
+     RE_Accept_List                      => System_Tasking,
+     RE_No_Rendezvous                    => System_Tasking,
+     RE_Null_Task_Entry                  => System_Tasking,
+     RE_Select_Index                     => System_Tasking,
+     RE_Else_Mode                        => System_Tasking,
+     RE_Simple_Mode                      => System_Tasking,
+     RE_Terminate_Mode                   => System_Tasking,
+     RE_Delay_Mode                       => System_Tasking,
+     RE_Entry_Index                      => System_Tasking,
+     RE_Task_Entry_Index                 => System_Tasking,
+     RE_Self                             => System_Tasking,
+
+     RE_Master_Id                        => System_Tasking,
+     RE_Unspecified_Priority             => System_Tasking,
+
+     RE_Activation_Chain                 => System_Tasking,
+     RE_Activation_Chain_Access          => System_Tasking,
+     RE_Storage_Size                     => System_Tasking,
+
+     RE_Unspecified_CPU                  => System_Tasking,
+
+     RE_Dispatching_Domain_Access        => System_Tasking,
+
+     RE_Abort_Defer                      => System_Soft_Links,
+     RE_Abort_Undefer                    => System_Soft_Links,
+     RE_Complete_Master                  => System_Soft_Links,
+     RE_Current_Master                   => System_Soft_Links,
+     RE_Dummy_Communication_Block        => System_Soft_Links,
+     RE_Enter_Master                     => System_Soft_Links,
+     RE_Get_Current_Excep                => System_Soft_Links,
+     RE_Get_GNAT_Exception               => System_Soft_Links,
+     RE_Save_Library_Occurrence          => System_Soft_Links,
+
+     RE_Bits_1                           => System_Unsigned_Types,
+     RE_Bits_2                           => System_Unsigned_Types,
+     RE_Bits_4                           => System_Unsigned_Types,
+     RE_Float_Unsigned                   => System_Unsigned_Types,
+     RE_Long_Unsigned                    => System_Unsigned_Types,
+     RE_Long_Long_Unsigned               => System_Unsigned_Types,
+     RE_Packed_Byte                      => System_Unsigned_Types,
+     RE_Packed_Bytes1                    => System_Unsigned_Types,
+     RE_Packed_Bytes2                    => System_Unsigned_Types,
+     RE_Packed_Bytes4                    => System_Unsigned_Types,
+     RE_Short_Unsigned                   => System_Unsigned_Types,
+     RE_Short_Short_Unsigned             => System_Unsigned_Types,
+     RE_Unsigned                         => System_Unsigned_Types,
+
+     RE_Value_Boolean                    => System_Val_Bool,
+
+     RE_Value_Character                  => System_Val_Char,
+
+     RE_Value_Decimal                    => System_Val_Dec,
+
+     RE_Value_Enumeration_8              => System_Val_Enum,
+     RE_Value_Enumeration_16             => System_Val_Enum,
+     RE_Value_Enumeration_32             => System_Val_Enum,
+
+     RE_Value_Integer                    => System_Val_Int,
+
+     RE_Value_Long_Long_Decimal          => System_Val_LLD,
+
+     RE_Value_Long_Long_Integer          => System_Val_LLI,
+
+     RE_Value_Long_Long_Unsigned         => System_Val_LLU,
+
+     RE_Value_Real                       => System_Val_Real,
+
+     RE_Value_Unsigned                   => System_Val_Uns,
+
+     RE_Value_Wide_Character             => System_Val_WChar,
+     RE_Value_Wide_Wide_Character        => System_Val_WChar,
+
+     RE_Version_String                   => System_Version_Control,
+     RE_Get_Version_String               => System_Version_Control,
+
+     RE_String_To_Wide_String            => System_WCh_StW,
+     RE_String_To_Wide_Wide_String       => System_WCh_StW,
+
+     RE_Wide_String_To_String            => System_WCh_WtS,
+     RE_Wide_Wide_String_To_String       => System_WCh_WtS,
+
+     RE_Wide_Wide_Width_Character        => System_WWd_Char,
+     RE_Wide_Width_Character             => System_WWd_Char,
+
+     RE_Wide_Wide_Width_Enumeration_8    => System_WWd_Enum,
+     RE_Wide_Wide_Width_Enumeration_16   => System_WWd_Enum,
+     RE_Wide_Wide_Width_Enumeration_32   => System_WWd_Enum,
+
+     RE_Wide_Width_Enumeration_8         => System_WWd_Enum,
+     RE_Wide_Width_Enumeration_16        => System_WWd_Enum,
+     RE_Wide_Width_Enumeration_32        => System_WWd_Enum,
+
+     RE_Wide_Wide_Width_Wide_Character   => System_WWd_Wchar,
+     RE_Wide_Wide_Width_Wide_Wide_Char   => System_WWd_Wchar,
+
+     RE_Wide_Width_Wide_Character        => System_WWd_Wchar,
+     RE_Wide_Width_Wide_Wide_Character   => System_WWd_Wchar,
+
+     RE_Width_Boolean                    => System_Wid_Bool,
+
+     RE_Width_Character                  => System_Wid_Char,
+
+     RE_Width_Enumeration_8              => System_Wid_Enum,
+     RE_Width_Enumeration_16             => System_Wid_Enum,
+     RE_Width_Enumeration_32             => System_Wid_Enum,
+
+     RE_Width_Long_Long_Integer          => System_Wid_LLI,
+
+     RE_Width_Long_Long_Unsigned         => System_Wid_LLU,
+
+     RE_Width_Wide_Character             => System_Wid_WChar,
+     RE_Width_Wide_Wide_Character        => System_Wid_WChar,
+
+     RE_Dispatching_Domain               =>
+       System_Multiprocessors_Dispatching_Domains,
+
+     RE_Protected_Entry_Body_Array       =>
+       System_Tasking_Protected_Objects_Entries,
+     RE_Protected_Entry_Queue_Max_Array  =>
+       System_Tasking_Protected_Objects_Entries,
+     RE_Protection_Entries               =>
+       System_Tasking_Protected_Objects_Entries,
+     RE_Protection_Entries_Access        =>
+       System_Tasking_Protected_Objects_Entries,
+     RE_Initialize_Protection_Entries    =>
+       System_Tasking_Protected_Objects_Entries,
+     RE_Lock_Entries                     =>
+       System_Tasking_Protected_Objects_Entries,
+     RE_Unlock_Entries                   =>
+       System_Tasking_Protected_Objects_Entries,
+     RO_PE_Get_Ceiling                   =>
+       System_Tasking_Protected_Objects_Entries,
+     RO_PE_Number_Of_Entries             =>
+       System_Tasking_Protected_Objects_Entries,
+     RO_PE_Set_Ceiling                   =>
+       System_Tasking_Protected_Objects_Entries,
+
+     RE_Communication_Block              =>
+       System_Tasking_Protected_Objects_Operations,
+     RE_Protected_Entry_Call             =>
+       System_Tasking_Protected_Objects_Operations,
+     RE_Service_Entries                  =>
+       System_Tasking_Protected_Objects_Operations,
+     RE_Cancel_Protected_Entry_Call      =>
+       System_Tasking_Protected_Objects_Operations,
+     RE_Enqueued                         =>
+       System_Tasking_Protected_Objects_Operations,
+     RE_Cancelled                        =>
+       System_Tasking_Protected_Objects_Operations,
+     RE_Complete_Entry_Body              =>
+       System_Tasking_Protected_Objects_Operations,
+     RE_Exceptional_Complete_Entry_Body  =>
+       System_Tasking_Protected_Objects_Operations,
+     RE_Requeue_Protected_Entry          =>
+       System_Tasking_Protected_Objects_Operations,
+     RE_Requeue_Task_To_Protected_Entry  =>
+       System_Tasking_Protected_Objects_Operations,
+     RE_Protected_Count                  =>
+       System_Tasking_Protected_Objects_Operations,
+     RE_Protected_Entry_Caller           =>
+       System_Tasking_Protected_Objects_Operations,
+     RE_Timed_Protected_Entry_Call       =>
+       System_Tasking_Protected_Objects_Operations,
+
+     RE_Protection_Entry                 =>
+       System_Tasking_Protected_Objects_Single_Entry,
+     RE_Initialize_Protection_Entry      =>
+       System_Tasking_Protected_Objects_Single_Entry,
+     RE_Lock_Entry                       =>
+       System_Tasking_Protected_Objects_Single_Entry,
+     RE_Unlock_Entry                     =>
+       System_Tasking_Protected_Objects_Single_Entry,
+     RE_Protected_Single_Entry_Call      =>
+       System_Tasking_Protected_Objects_Single_Entry,
+     RE_Service_Entry                    =>
+       System_Tasking_Protected_Objects_Single_Entry,
+     RE_Exceptional_Complete_Single_Entry_Body =>
+       System_Tasking_Protected_Objects_Single_Entry,
+     RE_Protected_Count_Entry            =>
+       System_Tasking_Protected_Objects_Single_Entry,
+     RE_Protected_Single_Entry_Caller    =>
+       System_Tasking_Protected_Objects_Single_Entry,
+
+     RE_Protected_Entry_Index            => System_Tasking_Protected_Objects,
+     RE_Entry_Body                       => System_Tasking_Protected_Objects,
+     RE_Protection                       => System_Tasking_Protected_Objects,
+     RE_Initialize_Protection            => System_Tasking_Protected_Objects,
+     RE_Finalize_Protection              => System_Tasking_Protected_Objects,
+     RE_Lock                             => System_Tasking_Protected_Objects,
+     RE_Lock_Read_Only                   => System_Tasking_Protected_Objects,
+     RE_Get_Ceiling                      => System_Tasking_Protected_Objects,
+     RE_Set_Ceiling                      => System_Tasking_Protected_Objects,
+     RE_Unlock                           => System_Tasking_Protected_Objects,
+
+     RE_Delay_Block                      => System_Tasking_Async_Delays,
+     RE_Timed_Out                        => System_Tasking_Async_Delays,
+     RE_Cancel_Async_Delay               => System_Tasking_Async_Delays,
+     RE_Enqueue_Duration                 => System_Tasking_Async_Delays,
+
+     RE_Enqueue_Calendar                 =>
+       System_Tasking_Async_Delays_Enqueue_Calendar,
+     RE_Enqueue_RT                       =>
+       System_Tasking_Async_Delays_Enqueue_RT,
+
+     RE_Accept_Call                      => System_Tasking_Rendezvous,
+     RE_Accept_Trivial                   => System_Tasking_Rendezvous,
+     RE_Callable                         => System_Tasking_Rendezvous,
+     RE_Call_Simple                      => System_Tasking_Rendezvous,
+     RE_Cancel_Task_Entry_Call           => System_Tasking_Rendezvous,
+     RE_Requeue_Task_Entry               => System_Tasking_Rendezvous,
+     RE_Requeue_Protected_To_Task_Entry  => System_Tasking_Rendezvous,
+     RE_Complete_Rendezvous              => System_Tasking_Rendezvous,
+     RE_Task_Count                       => System_Tasking_Rendezvous,
+     RE_Exceptional_Complete_Rendezvous  => System_Tasking_Rendezvous,
+     RE_Selective_Wait                   => System_Tasking_Rendezvous,
+     RE_Task_Entry_Call                  => System_Tasking_Rendezvous,
+     RE_Task_Entry_Caller                => System_Tasking_Rendezvous,
+     RE_Timed_Task_Entry_Call            => System_Tasking_Rendezvous,
+     RE_Timed_Selective_Wait             => System_Tasking_Rendezvous,
+
+     RE_Activate_Restricted_Tasks         => System_Tasking_Restricted_Stages,
+     RE_Complete_Restricted_Activation    => System_Tasking_Restricted_Stages,
+     RE_Create_Restricted_Task            => System_Tasking_Restricted_Stages,
+     RE_Create_Restricted_Task_Sequential => System_Tasking_Restricted_Stages,
+     RE_Complete_Restricted_Task          => System_Tasking_Restricted_Stages,
+     RE_Restricted_Terminated             => System_Tasking_Restricted_Stages,
+
+     RE_Abort_Tasks                      => System_Tasking_Stages,
+     RE_Activate_Tasks                   => System_Tasking_Stages,
+     RE_Complete_Activation              => System_Tasking_Stages,
+     RE_Create_Task                      => System_Tasking_Stages,
+     RE_Complete_Task                    => System_Tasking_Stages,
+     RE_Free_Task                        => System_Tasking_Stages,
+     RE_Expunge_Unactivated_Tasks        => System_Tasking_Stages,
+     RE_Move_Activation_Chain            => System_Tasking_Stages,
+     RE_Terminated                       => System_Tasking_Stages);
+
+   --------------------------------
+   -- Configurable Run-Time Mode --
+   --------------------------------
+
+   --  Part of the job of Rtsfind is to enforce run-time restrictions in
+   --  configurable run-time mode. This is done by monitoring implicit access
+   --  to the run time library requested by calls to the RTE function. A call
+   --  may be invalid in configurable run-time mode for either of the
+   --  following two reasons:
+
+   --     1. File in which entity lives is not present in run-time library
+   --     2. File is present, but entity is not defined in the file
+
+   --  In normal mode, either or these two situations is a fatal error
+   --  that indicates that the run-time library is incorrectly configured,
+   --  and a fatal error message is issued to signal this error.
+
+   --  In configurable run-time mode, either of these two situations indicates
+   --  simply that the corresponding operation is not available in the current
+   --  run-time that is use. This is not a configuration error, but rather a
+   --  natural result of a limited run-time. This situation is signalled by
+   --  raising the exception RE_Not_Available. The caller must respond to
+   --  this exception by posting an appropriate error message.
+
+   ----------------------
+   -- No_Run_Time_Mode --
+   ----------------------
+
+   --  For backwards compatibility with previous versions of GNAT, the
+   --  compiler recognizes the pragma No_Run_Time. This provides a special
+   --  version of configurable run-time mode that operates with the standard
+   --  run-time library, but allows only a subset of entities to be
+   --  accessed. If any other entity is accessed, then it is treated
+   --  as a configurable run-time violation, and the exception
+   --  RE_Not_Available is raised.
+
+   --  The following array defines the set of units that contain entities
+   --  that can be referenced in No_Run_Time mode. For each of these units,
+   --  all entities defined in the unit can be used in this mode.
+
+   OK_No_Run_Time_Unit : constant array (RTU_Id) of Boolean :=
+     (Ada_Exceptions          => True,
+      Ada_Tags                => True,
+      Interfaces              => True,
+      System                  => True,
+      System_Parameters       => True,
+      System_Fat_Flt          => True,
+      System_Fat_LFlt         => True,
+      System_Fat_LLF          => True,
+      System_Fat_SFlt         => True,
+      System_Machine_Code     => True,
+      System_Secondary_Stack  => True,
+      System_Storage_Elements => True,
+      System_Task_Info        => True,
+      System_Unsigned_Types   => True,
+      others                  => False);
+
+   -----------------
+   -- Subprograms --
+   -----------------
+
+   RE_Not_Available : exception;
+   --  Raised by RTE if the requested entity is not available. This can
+   --  occur either because the file in which the entity should be found
+   --  does not exist, or because the entity is not present in the file.
+
+   procedure Check_Text_IO_Special_Unit (Nam : Node_Id);
+   --  In Ada 83, and hence for compatibility in later versions of Ada, package
+   --  Text_IO has generic subpackages (e.g. Integer_IO). They really should be
+   --  child packages, and in GNAT, they *are* child packages. To maintain the
+   --  required compatibility, this routine is called for package renamings and
+   --  generic instantiations, with the simple name of the referenced package.
+   --  If Text_IO has been with'ed and if the simple name of Nam matches
+   --  one of the subpackages of Text_IO, then this subpackage is with'ed
+   --  automatically. The important result of this approach is that Text_IO
+   --  does not drag in all the code for the subpackages unless they are used.
+   --  Our test is a little crude, and could drag in stuff when it is not
+   --  necessary, but that is acceptable. Wide_[Wide_]Text_IO is handled in
+   --  a similar manner.
+
+   procedure Initialize;
+   --  Procedure to initialize data structures used by RTE. Called at the
+   --  start of processing a new main source file. Must be called after
+   --  Initialize_Snames (since names it enters into name table must come
+   --  after names entered by Snames).
+
+   function Is_RTE (Ent : Entity_Id; E : RE_Id) return Boolean;
+   --  This function determines if the given entity corresponds to the entity
+   --  referenced by RE_Id. It is similar in effect to (Ent = RTE (E)) except
+   --  that the latter would unconditionally load the unit containing E. For
+   --  this call, if the unit is not loaded, then a result of False is returned
+   --  immediately, since obviously Ent cannot be the entity in question if the
+   --  corresponding unit has not been loaded.
+
+   function Is_RTU (Ent : Entity_Id;  U : RTU_Id) return Boolean;
+   pragma Inline (Is_RTU);
+   --  This function determines if the given entity corresponds to the entity
+   --  for the unit referenced by U. If this unit has not been loaded, the
+   --  answer will always be False. If the unit has been loaded, then the
+   --  entity id values are compared and True is returned if Ent is the
+   --  entity for this unit.
+
+   function Is_Text_IO_Special_Unit (Nam : Node_Id) return Boolean;
+   --  Returns True if the given Nam is an Expanded Name, whose Prefix is Ada,
+   --  and whose selector is either Text_IO.xxx or Wide_Text_IO.xxx or
+   --  Wide_Wide_Text_IO.xxx, where xxx is one of the subpackages of Text_IO
+   --  that is specially handled as described for Check_Text_IO_Special_Unit.
+
+   function RTE (E : RE_Id) return Entity_Id;
+   --  Given the entity defined in the above tables, as identified by the
+   --  corresponding value in the RE_Id enumeration type, returns the Id of the
+   --  corresponding entity, first loading in (parsing, analyzing and
+   --  expanding) its spec if the unit has not already been loaded. For
+   --  efficiency reasons, this routine restricts the search to the package
+   --  entity chain.
+   --
+   --  Note: In the case of a package, RTE can return either an entity that is
+   --  declared at the top level of the package, or the package entity itself.
+   --  If an entity within the package has the same simple name as the package,
+   --  then the entity within the package is returned.
+   --
+   --  If RTE returns, the returned value is the required entity
+   --
+   --  If the entity is not available, then an error message is given. The
+   --  form of the message depends on whether we are in configurable run time
+   --  mode or not. In configurable run time mode, a missing entity is not
+   --  that surprising and merely says that the particular construct is not
+   --  supported by the run-time in use. If we are not in configurable run
+   --  time mode, a missing entity is some kind of run-time configuration
+   --  error. In either case, the result of the call is to raise the exception
+   --  RE_Not_Available, which should terminate the expansion of the current
+   --  construct.
+
+   function RTE_Available (E : RE_Id) return Boolean;
+   --  Returns true if a call to RTE will succeed without raising an exception
+   --  and without generating an error message, i.e. if the call will obtain
+   --  the desired entity without any problems.
+
+   function RTE_Record_Component (E : RE_Id) return Entity_Id;
+   --  Given the entity defined in the above tables, as identified by the
+   --  corresponding value in the RE_Id enumeration type, returns the Id of
+   --  the corresponding entity, first loading in (parsing, analyzing and
+   --  expanding) its spec if the unit has not already been loaded. For
+   --  efficiency reasons, this routine restricts the search of E to fields
+   --  of record type declarations found in the package entity chain.
+   --
+   --  Note: In the case of a package, RTE can return either an entity that is
+   --  declared at the top level of the package, or the package entity itself.
+   --  If an entity within the package has the same simple name as the package,
+   --  then the entity within the package is returned.
+   --
+   --  If RTE returns, the returned value is the required entity
+   --
+   --  If the entity is not available, then an error message is given. The
+   --  form of the message depends on whether we are in configurable run time
+   --  mode or not. In configurable run time mode, a missing entity is not
+   --  that surprising and merely says that the particular construct is not
+   --  supported by the run-time in use. If we are not in configurable run
+   --  time mode, a missing entity is some kind of run-time configuration
+   --  error. In either case, the result of the call is to raise the exception
+   --  RE_Not_Available, which should terminate the expansion of the current
+   --  construct.
+
+   function RTE_Record_Component_Available (E : RE_Id) return Boolean;
+   --  Returns true if a call to RTE_Record_Component will succeed without
+   --  raising an exception and without generating an error message, i.e.
+   --  if the call will obtain the desired entity without any problems.
+
+   function RTU_Entity (U : RTU_Id) return Entity_Id;
+   pragma Inline (RTU_Entity);
+   --  This function returns the entity for the unit referenced by U. If
+   --  this unit has not been loaded, it returns Empty.
+
+   function RTU_Loaded (U : RTU_Id) return Boolean;
+   pragma Inline (RTU_Loaded);
+   --  Returns true if indicated unit has already been successfully loaded.
+   --  If the unit has not been loaded, returns False. Note that this does
+   --  not mean that an attempt to load it subsequently would fail.
+
+   procedure Set_RTU_Loaded (N : Node_Id);
+   --  Register the predefined unit N as already loaded
+
+   procedure SPARK_Implicit_Load (E : RE_Id);
+   --  Force loading of the unit containing the entity E; only needed in
+   --  GNATprove mode when processing code that implicitly references a
+   --  given entity.
+
+end Rtsfind;