OSDN Git Service

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