OSDN Git Service

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