OSDN Git Service

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