OSDN Git Service

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