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