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