OSDN Git Service

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