OSDN Git Service

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