OSDN Git Service

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