Daily bump.
[official-gcc.git] / gcc / ada / rtsfind.ads
blob99f870ad9ea34019b1f6e2c4453ee3cfba1ad04f
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-2021, 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 -- This package contains the routine that is used to obtain runtime library
27 -- entities, loading in the required runtime library packages on demand. It
28 -- is also used for such purposes as finding System.Address when System has
29 -- not been explicitly With'ed.
31 with Types; use Types;
32 with Uintp; use Uintp;
34 package Rtsfind is
36 ------------------------
37 -- Runtime Unit Table --
38 ------------------------
40 -- The following type includes an enumeration literal for each runtime
41 -- unit. The enumeration literal is the full expanded name of the unit
42 -- with "." replaced by "_". For example, the enumeration literal for
43 -- Ada.Interrupts.Names is Ada_Interrupts_Names
45 -- This list can contain both subprogram and package unit names. For
46 -- packages, the accessible entities in the package are separately listed
47 -- in the package entity table. The units must be either library level
48 -- package declarations, or library level subprogram declarations. Generic
49 -- units, library level instantiations and subprogram bodies acting as
50 -- specs must not be referenced. (All these cases could be added at the
51 -- expense of additional complexity in the body of Rtsfind, but it doesn't
52 -- seem worthwhile, since the implementation controls the set of units that
53 -- are referenced, and this restriction is easily met.)
55 -- IMPORTANT NOTE: the specs of packages and procedures with'ed using
56 -- this mechanism must not contain use clauses. This is because these
57 -- subprograms are compiled in the current visibility environment, and it
58 -- would be too much trouble to establish a clean environment for the
59 -- compilation. The presence of extraneous visible stuff has no effect on
60 -- the compilation except in the presence of use clauses, which might
61 -- result in unexpected ambiguities.
63 -- NOTE: If RTU_Id is modified, the subtypes of RTU_Id in the package body
64 -- might need to be modified. See Get_Unit_Name.
66 type RTU_Id is (
68 -- Runtime packages, for list of accessible entities in each package,
69 -- see declarations in the runtime entity table below.
71 RTU_Null,
72 -- Used as a null entry (will cause an error if referenced)
74 -- Package Ada
76 Ada,
78 -- Children of Ada
80 Ada_Calendar,
81 Ada_Dispatching,
82 Ada_Exceptions,
83 Ada_Finalization,
84 Ada_Interrupts,
85 Ada_Numerics,
86 Ada_Real_Time,
87 Ada_Streams,
88 Ada_Strings,
89 Ada_Synchronous_Barriers,
90 Ada_Synchronous_Task_Control,
91 Ada_Tags,
92 Ada_Task_Identification,
93 Ada_Task_Termination,
94 Ada_Text_IO,
95 Ada_Wide_Text_IO,
96 Ada_Wide_Wide_Text_IO,
98 -- Children of Ada.Calendar
100 Ada_Calendar_Delays,
102 -- Children of Ada.Dispatching
104 Ada_Dispatching_EDF,
106 -- Children of Ada.Interrupts
108 Ada_Interrupts_Names,
110 -- Children of Ada.Numerics
112 Ada_Numerics_Generic_Elementary_Functions,
114 -- Children of Ada.Real_Time
116 Ada_Real_Time_Delays,
117 Ada_Real_Time_Timing_Events,
119 -- Children of Ada.Streams
121 Ada_Streams_Stream_IO,
123 -- Children of Ada.Strings
125 Ada_Strings_Superbounded,
126 Ada_Strings_Wide_Superbounded,
127 Ada_Strings_Wide_Wide_Superbounded,
128 Ada_Strings_Unbounded,
129 Ada_Strings_Text_Buffers,
131 -- Children of Ada.Strings.Text_Buffers
133 Ada_Strings_Text_Buffers_Unbounded,
135 -- Children of Ada.Text_IO (for Check_Text_IO_Special_Unit)
137 Ada_Text_IO_Decimal_IO,
138 Ada_Text_IO_Enumeration_IO,
139 Ada_Text_IO_Fixed_IO,
140 Ada_Text_IO_Float_IO,
141 Ada_Text_IO_Integer_IO,
142 Ada_Text_IO_Modular_IO,
144 -- Children of Ada.Wide_Text_IO (for Check_Text_IO_Special_Unit)
146 Ada_Wide_Text_IO_Decimal_IO,
147 Ada_Wide_Text_IO_Enumeration_IO,
148 Ada_Wide_Text_IO_Fixed_IO,
149 Ada_Wide_Text_IO_Float_IO,
150 Ada_Wide_Text_IO_Integer_IO,
151 Ada_Wide_Text_IO_Modular_IO,
153 -- Children of Ada.Wide_Wide_Text_IO (for Check_Text_IO_Special_Unit)
155 Ada_Wide_Wide_Text_IO_Decimal_IO,
156 Ada_Wide_Wide_Text_IO_Enumeration_IO,
157 Ada_Wide_Wide_Text_IO_Fixed_IO,
158 Ada_Wide_Wide_Text_IO_Float_IO,
159 Ada_Wide_Wide_Text_IO_Integer_IO,
160 Ada_Wide_Wide_Text_IO_Modular_IO,
162 -- Package CUDA
164 CUDA,
166 -- Children of CUDA
168 CUDA_Driver_Types,
169 CUDA_Internal,
170 CUDA_Runtime_Api,
171 CUDA_Vector_Types,
173 -- Interfaces
175 Interfaces,
177 -- Children of Interfaces
179 Interfaces_C,
180 Interfaces_Packed_Decimal,
182 -- Children of Interfaces.C
184 Interfaces_C_Strings,
186 -- Package System
188 System,
190 -- Children of System
192 System_Address_Image,
193 System_Address_To_Access_Conversions,
194 System_Arith_64,
195 System_Arith_128,
196 System_AST_Handling,
197 System_Assertions,
198 System_Atomic_Operations,
199 System_Atomic_Primitives,
200 System_Aux_DEC,
201 System_Bignums,
202 System_Bitfields,
203 System_Bit_Ops,
204 System_Boolean_Array_Operations,
205 System_Byte_Swapping,
206 System_Checked_Pools,
207 System_Compare_Array_Signed_8,
208 System_Compare_Array_Signed_16,
209 System_Compare_Array_Signed_32,
210 System_Compare_Array_Signed_64,
211 System_Compare_Array_Signed_128,
212 System_Compare_Array_Unsigned_8,
213 System_Compare_Array_Unsigned_16,
214 System_Compare_Array_Unsigned_32,
215 System_Compare_Array_Unsigned_64,
216 System_Compare_Array_Unsigned_128,
217 System_Concat_2,
218 System_Concat_3,
219 System_Concat_4,
220 System_Concat_5,
221 System_Concat_6,
222 System_Concat_7,
223 System_Concat_8,
224 System_Concat_9,
225 System_Dim,
226 System_DSA_Services,
227 System_DSA_Types,
228 System_Elaboration_Allocators,
229 System_Exception_Table,
230 System_Exceptions_Debug,
231 System_Exn_Int,
232 System_Exn_Flt,
233 System_Exn_LFlt,
234 System_Exn_LLF,
235 System_Exn_LLI,
236 System_Exn_LLLI,
237 System_Exp_Int,
238 System_Exp_LLI,
239 System_Exp_LLLI,
240 System_Exp_LLU,
241 System_Exp_LLLU,
242 System_Exp_Mod,
243 System_Exp_Uns,
244 System_Fat_Flt,
245 System_Fat_LFlt,
246 System_Fat_LLF,
247 System_Fat_SFlt,
248 System_Fat_VAX_D_Float,
249 System_Fat_VAX_F_Float,
250 System_Fat_VAX_G_Float,
251 System_Finalization_Masters,
252 System_Finalization_Root,
253 System_Fore_Decimal_32,
254 System_Fore_Decimal_64,
255 System_Fore_Decimal_128,
256 System_Fore_Fixed_32,
257 System_Fore_Fixed_64,
258 System_Fore_Fixed_128,
259 System_Fore_Real,
260 System_Img_Bool,
261 System_Img_Char,
262 System_Img_Decimal_32,
263 System_Img_Decimal_64,
264 System_Img_Decimal_128,
265 System_Img_Enum_8,
266 System_Img_Enum_16,
267 System_Img_Enum_32,
268 System_Img_Fixed_32,
269 System_Img_Fixed_64,
270 System_Img_Fixed_128,
271 System_Img_Flt,
272 System_Img_Int,
273 System_Img_LFlt,
274 System_Img_LLF,
275 System_Img_LLI,
276 System_Img_LLLI,
277 System_Img_LLU,
278 System_Img_LLLU,
279 System_Img_Name,
280 System_Img_Uns,
281 System_Img_WChar,
282 System_Interrupts,
283 System_Long_Long_Float_Expon,
284 System_Machine_Code,
285 System_Mantissa,
286 System_Memcop,
287 System_Memory,
288 System_Multiprocessors,
289 System_Pack_03,
290 System_Pack_05,
291 System_Pack_06,
292 System_Pack_07,
293 System_Pack_09,
294 System_Pack_10,
295 System_Pack_11,
296 System_Pack_12,
297 System_Pack_13,
298 System_Pack_14,
299 System_Pack_15,
300 System_Pack_17,
301 System_Pack_18,
302 System_Pack_19,
303 System_Pack_20,
304 System_Pack_21,
305 System_Pack_22,
306 System_Pack_23,
307 System_Pack_24,
308 System_Pack_25,
309 System_Pack_26,
310 System_Pack_27,
311 System_Pack_28,
312 System_Pack_29,
313 System_Pack_30,
314 System_Pack_31,
315 System_Pack_33,
316 System_Pack_34,
317 System_Pack_35,
318 System_Pack_36,
319 System_Pack_37,
320 System_Pack_38,
321 System_Pack_39,
322 System_Pack_40,
323 System_Pack_41,
324 System_Pack_42,
325 System_Pack_43,
326 System_Pack_44,
327 System_Pack_45,
328 System_Pack_46,
329 System_Pack_47,
330 System_Pack_48,
331 System_Pack_49,
332 System_Pack_50,
333 System_Pack_51,
334 System_Pack_52,
335 System_Pack_53,
336 System_Pack_54,
337 System_Pack_55,
338 System_Pack_56,
339 System_Pack_57,
340 System_Pack_58,
341 System_Pack_59,
342 System_Pack_60,
343 System_Pack_61,
344 System_Pack_62,
345 System_Pack_63,
346 System_Pack_65,
347 System_Pack_66,
348 System_Pack_67,
349 System_Pack_68,
350 System_Pack_69,
351 System_Pack_70,
352 System_Pack_71,
353 System_Pack_72,
354 System_Pack_73,
355 System_Pack_74,
356 System_Pack_75,
357 System_Pack_76,
358 System_Pack_77,
359 System_Pack_78,
360 System_Pack_79,
361 System_Pack_80,
362 System_Pack_81,
363 System_Pack_82,
364 System_Pack_83,
365 System_Pack_84,
366 System_Pack_85,
367 System_Pack_86,
368 System_Pack_87,
369 System_Pack_88,
370 System_Pack_89,
371 System_Pack_90,
372 System_Pack_91,
373 System_Pack_92,
374 System_Pack_93,
375 System_Pack_94,
376 System_Pack_95,
377 System_Pack_96,
378 System_Pack_97,
379 System_Pack_98,
380 System_Pack_99,
381 System_Pack_100,
382 System_Pack_101,
383 System_Pack_102,
384 System_Pack_103,
385 System_Pack_104,
386 System_Pack_105,
387 System_Pack_106,
388 System_Pack_107,
389 System_Pack_108,
390 System_Pack_109,
391 System_Pack_110,
392 System_Pack_111,
393 System_Pack_112,
394 System_Pack_113,
395 System_Pack_114,
396 System_Pack_115,
397 System_Pack_116,
398 System_Pack_117,
399 System_Pack_118,
400 System_Pack_119,
401 System_Pack_120,
402 System_Pack_121,
403 System_Pack_122,
404 System_Pack_123,
405 System_Pack_124,
406 System_Pack_125,
407 System_Pack_126,
408 System_Pack_127,
409 System_Parameters,
410 System_Partition_Interface,
411 System_Pool_32_Global,
412 System_Pool_Global,
413 System_Pool_Empty,
414 System_Pool_Local,
415 System_Pool_Size,
416 System_Put_Images,
417 System_Put_Task_Images,
418 System_Relative_Delays,
419 System_RPC,
420 System_Scalar_Values,
421 System_Secondary_Stack,
422 System_Shared_Storage,
423 System_Soft_Links,
424 System_Standard_Library,
425 System_Storage_Elements,
426 System_Storage_Pools,
427 System_Stream_Attributes,
428 System_Task_Info,
429 System_Tasking,
430 System_Threads,
431 System_Unsigned_Types,
432 System_Val_Bool,
433 System_Val_Char,
434 System_Val_Decimal_32,
435 System_Val_Decimal_64,
436 System_Val_Decimal_128,
437 System_Val_Enum_8,
438 System_Val_Enum_16,
439 System_Val_Enum_32,
440 System_Val_Fixed_32,
441 System_Val_Fixed_64,
442 System_Val_Fixed_128,
443 System_Val_Flt,
444 System_Val_Int,
445 System_Val_LFlt,
446 System_Val_LLF,
447 System_Val_LLI,
448 System_Val_LLLI,
449 System_Val_LLU,
450 System_Val_LLLU,
451 System_Val_Name,
452 System_Val_Uns,
453 System_Val_WChar,
454 System_Version_Control,
455 System_WCh_StW,
456 System_WCh_WtS,
457 System_Wid_Bool,
458 System_Wid_Char,
459 System_Wid_Enum,
460 System_Wid_Int,
461 System_Wid_LLI,
462 System_Wid_LLLI,
463 System_Wid_LLU,
464 System_Wid_LLLU,
465 System_Wid_Name,
466 System_Wid_Uns,
467 System_Wid_WChar,
468 System_WWd_Char,
469 System_WWd_Enum,
470 System_WWd_Wchar,
472 -- Children of System.Atomic_Operations
474 System_Atomic_Operations_Test_And_Set,
476 -- Children of System.Dim
478 System_Dim_Float_IO,
479 System_Dim_Integer_IO,
481 -- Children of System.Multiprocessors
483 System_Multiprocessors_Dispatching_Domains,
485 -- Children of System.Storage_Pools
487 System_Storage_Pools_Subpools,
489 -- Children of System.Strings
491 System_Strings_Stream_Ops,
493 -- Children of System.Tasking
495 System_Tasking_Async_Delays,
496 System_Tasking_Async_Delays_Enqueue_Calendar,
497 System_Tasking_Async_Delays_Enqueue_RT,
498 System_Tasking_Protected_Objects,
499 System_Tasking_Protected_Objects_Entries,
500 System_Tasking_Protected_Objects_Operations,
501 System_Tasking_Protected_Objects_Single_Entry,
502 System_Tasking_Restricted_Stages,
503 System_Tasking_Rendezvous,
504 System_Tasking_Stages);
506 --------------------------
507 -- Runtime Entity Table --
508 --------------------------
510 -- This is the enumeration type used to define the argument passed to
511 -- the RTE function. The name must exactly match the name of the entity
512 -- involved, and in the case of a package entity, this name must uniquely
513 -- imply the package containing the entity.
515 -- As far as possible, we avoid duplicate names in runtime packages, so
516 -- that the name RE_nnn uniquely identifies the entity nnn. In some cases,
517 -- it is impossible to avoid such duplication because the names come from
518 -- RM defined packages. In such cases, the name is of the form RO_XX_nnn
519 -- where XX is two letters used to differentiate the multiple occurrences
520 -- of the name xx, and nnn is the entity name.
522 -- Note that not all entities in the units contained in the run-time unit
523 -- table are included in the following table, only those that actually
524 -- have to be referenced from generated code.
526 -- Note on RE_Null. This value is used as a null entry where an RE_Id
527 -- value is required syntactically, but no real entry is required or
528 -- needed. Use of this value will cause a fatal error in an RTE call.
530 -- Note that under no circumstances can any of these entities be defined
531 -- more than once in a given package, i.e. no overloading is allowed for
532 -- any entity that is found using rtsfind. A fatal error is given if this
533 -- rule is violated. The one exception is for Save_Occurrence, where the
534 -- RM mandates the overloading. In this case, the compiler only uses the
535 -- procedure, not the function, and the procedure must come first so that
536 -- the compiler finds it and not the function.
538 type RE_Id is (
540 RE_Null,
542 RO_CA_Clock_Time, -- Ada.Calendar
543 RO_CA_Time, -- Ada.Calendar
545 RO_CA_Delay_For, -- Ada.Calendar.Delays
546 RO_CA_Delay_Until, -- Ada.Calendar.Delays
547 RO_CA_To_Duration, -- Ada.Calendar.Delays
549 RE_Yield, -- Ada_Dispatching
551 RE_Set_Deadline, -- Ada.Dispatching.EDF
553 RE_Code_Loc, -- Ada.Exceptions
554 RE_Exception_Id, -- Ada.Exceptions
555 RE_Exception_Identity, -- Ada.Exceptions
556 RE_Exception_Information, -- Ada.Exceptions
557 RE_Exception_Message, -- Ada.Exceptions
558 RE_Exception_Name_Simple, -- Ada.Exceptions
559 RE_Exception_Occurrence, -- Ada.Exceptions
560 RE_Exception_Occurrence_Access, -- Ada.Exceptions
561 RE_Null_Id, -- Ada.Exceptions
562 RE_Null_Occurrence, -- Ada.Exceptions
563 RE_Poll, -- Ada.Exceptions
564 RE_Raise_Exception, -- Ada.Exceptions
565 RE_Raise_Exception_Always, -- Ada.Exceptions
566 RE_Raise_From_Controlled_Operation, -- Ada.Exceptions
567 RE_Reraise_Occurrence, -- Ada.Exceptions
568 RE_Reraise_Occurrence_Always, -- Ada.Exceptions
569 RE_Reraise_Occurrence_No_Defer, -- Ada.Exceptions
570 RE_Save_Occurrence, -- Ada.Exceptions
571 RE_Triggered_By_Abort, -- Ada.Exceptions
573 RE_Interrupt_ID, -- Ada.Interrupts
574 RE_Is_Reserved, -- Ada.Interrupts
575 RE_Is_Attached, -- Ada.Interrupts
576 RE_Current_Handler, -- Ada.Interrupts
577 RE_Attach_Handler, -- Ada.Interrupts
578 RE_Exchange_Handler, -- Ada.Interrupts
579 RE_Detach_Handler, -- Ada.Interrupts
580 RE_Reference, -- Ada.Interrupts
582 RE_Names, -- Ada.Interrupts.Names
584 RE_Clock, -- Ada.Real_Time
585 RE_Clock_Time, -- Ada.Real_Time
586 RE_Time_Span, -- Ada.Real_Time
587 RE_Time_Span_Zero, -- Ada.Real_Time
588 RO_RT_Time, -- Ada.Real_Time
590 RO_RT_Delay_Until, -- Ada.Real_Time.Delays
591 RO_RT_To_Duration, -- Ada.Real_Time.Delays
593 RE_Set_Handler, -- Ada.Real_Time.Timing_Events
594 RE_Timing_Event, -- Ada.Real_Time.Timing_Events
596 RE_Root_Stream_Type, -- Ada.Streams
597 RE_Stream_Element, -- Ada.Streams
598 RE_Stream_Element_Array, -- Ada.Streams
599 RE_Stream_Element_Offset, -- Ada.Streams
601 RE_Stream_Access, -- Ada.Streams.Stream_IO
603 RO_SU_Super_String, -- Ada.Strings.Superbounded
605 RO_WI_Super_String, -- Ada.Strings.Wide_Superbounded
607 RO_WW_Super_String, -- Ada.Strings.Wide_Wide_Superbounded
609 RE_Unbounded_String, -- Ada.Strings.Unbounded
611 RE_Root_Buffer_Type, -- Ada.Strings.Text_Buffers
612 RE_Put_UTF_8, -- Ada.Strings.Text_Buffers
613 RE_Wide_Wide_Put, -- Ada.Strings.Text_Buffers
615 RE_Buffer_Type, -- Ada.Strings.Text_Buffers.Unbounded
616 RE_Get, -- Ada.Strings.Text_Buffers.Unbounded
617 RE_Wide_Get, -- Ada.Strings.Text_Buffers.Unbounded
618 RE_Wide_Wide_Get, -- Ada.Strings.Text_Buffers.Unbounded
620 RE_Wait_For_Release, -- Ada.Synchronous_Barriers
622 RE_Suspend_Until_True, -- Ada.Synchronous_Task_Control
624 RE_Access_Level, -- Ada.Tags
625 RE_Alignment, -- Ada.Tags
626 RE_Address_Array, -- Ada.Tags
627 RE_Addr_Ptr, -- Ada.Tags
628 RE_Base_Address, -- Ada.Tags
629 RE_Check_Interface_Conversion, -- Ada.Tags
630 RE_Check_TSD, -- Ada.Tags
631 RE_Cstring_Ptr, -- Ada.Tags
632 RE_CW_Membership, -- Ada.Tags
633 RE_Descendant_Tag, -- Ada.Tags
634 RE_Dispatch_Table, -- Ada.Tags
635 RE_Dispatch_Table_Wrapper, -- Ada.Tags
636 RE_Displace, -- Ada.Tags
637 RE_DT, -- Ada.Tags
638 RE_DT_Offset_To_Top_Offset, -- Ada.Tags
639 RE_DT_Predef_Prims_Offset, -- Ada.Tags
640 RE_DT_Typeinfo_Ptr_Size, -- Ada.Tags
641 RE_External_Tag, -- Ada.Tags
642 RO_TA_External_Tag, -- Ada.Tags
643 RE_Get_Access_Level, -- Ada.Tags
644 RE_Get_Alignment, -- Ada.Tags
645 RE_Get_Entry_Index, -- Ada.Tags
646 RE_Get_Offset_Index, -- Ada.Tags
647 RE_Get_Prim_Op_Kind, -- Ada.Tags
648 RE_Get_Tagged_Kind, -- Ada.Tags
649 RE_HT_Link, -- Ada.Tags
650 RE_Idepth, -- Ada.Tags
651 RE_Interfaces_Array, -- Ada.Tags
652 RE_Interfaces_Table, -- Ada.Tags
653 RE_Interface_Data, -- Ada.Tags
654 RE_Interface_Data_Element, -- Ada.Tags
655 RE_Interface_Tag, -- Ada.Tags
656 RE_Is_Abstract, -- Ada.Tags
657 RE_IW_Membership, -- Ada.Tags
658 RE_Max_Predef_Prims, -- Ada.Tags
659 RE_Needs_Finalization, -- Ada.Tags
660 RE_No_Dispatch_Table_Wrapper, -- Ada.Tags
661 RE_No_Tag, -- Ada.Tags
662 RE_NDT_Prims_Ptr, -- Ada.Tags
663 RE_NDT_TSD, -- Ada.Tags
664 RE_Num_Prims, -- Ada.Tags
665 RE_Object_Specific_Data, -- Ada.Tags
666 RE_Offset_To_Top, -- Ada.Tags
667 RE_Offset_To_Top_Ptr, -- Ada.Tags
668 RE_Offset_To_Top_Function_Ptr, -- Ada.Tags
669 RE_OSD_Table, -- Ada.Tags
670 RE_OSD_Num_Prims, -- Ada.Tags
671 RE_POK_Function, -- Ada.Tags
672 RE_POK_Procedure, -- Ada.Tags
673 RE_POK_Protected_Entry, -- Ada.Tags
674 RE_POK_Protected_Function, -- Ada.Tags
675 RE_POK_Protected_Procedure, -- Ada.Tags
676 RE_POK_Task_Entry, -- Ada.Tags
677 RE_POK_Task_Function, -- Ada.Tags
678 RE_POK_Task_Procedure, -- Ada.Tags
679 RE_Predef_Prims, -- Ada.Tags
680 RE_Predef_Prims_Table_Ptr, -- Ada.Tags
681 RE_Prim_Op_Kind, -- Ada.Tags
682 RE_Prim_Ptr, -- Ada.Tags
683 RE_Prims_Ptr, -- Ada.Tags
684 RE_Primary_DT, -- Ada.Tags
685 RE_Signature, -- Ada.Tags
686 RE_SSD, -- Ada.Tags
687 RE_TSD, -- Ada.Tags
688 RE_Type_Specific_Data, -- Ada.Tags
689 RE_Register_Interface_Offset, -- Ada.Tags
690 RE_Register_Tag, -- Ada.Tags
691 RE_Register_TSD, -- Ada.Tags
692 RE_Transportable, -- Ada.Tags
693 RE_Secondary_DT, -- Ada.Tags
694 RE_Secondary_Tag, -- Ada.Tags
695 RE_Select_Specific_Data, -- Ada.Tags
696 RE_Set_Entry_Index, -- Ada.Tags
697 RE_Set_Dynamic_Offset_To_Top, -- Ada.Tags
698 RE_Set_Prim_Op_Kind, -- Ada.Tags
699 RE_Size_Func, -- Ada.Tags
700 RE_Size_Ptr, -- Ada.Tags
701 RE_Tag, -- Ada.Tags
702 RE_Tag_Error, -- Ada.Tags
703 RE_Tag_Kind, -- Ada.Tags
704 RE_Tag_Ptr, -- Ada.Tags
705 RE_Tag_Table, -- Ada.Tags
706 RE_Tags_Table, -- Ada.Tags
707 RE_Tagged_Kind, -- Ada.Tags
708 RE_Type_Specific_Data_Ptr, -- Ada.Tags
709 RE_TK_Abstract_Limited_Tagged, -- Ada.Tags
710 RE_TK_Abstract_Tagged, -- Ada.Tags
711 RE_TK_Limited_Tagged, -- Ada.Tags
712 RE_TK_Protected, -- Ada.Tags
713 RE_TK_Tagged, -- Ada.Tags
714 RE_TK_Task, -- Ada.Tags
715 RE_Unregister_Tag, -- Ada.Tags
716 RE_Wide_Wide_Expanded_Name, -- Ada.Tags
718 RE_Set_Specific_Handler, -- Ada.Task_Termination
719 RE_Specific_Handler, -- Ada.Task_Termination
721 RE_Abort_Task, -- Ada.Task_Identification
722 RE_Current_Task, -- Ada.Task_Identification
723 RO_AT_Task_Id, -- Ada.Task_Identification
724 RE_Tasking_State, -- Ada.Task_Identification
726 RE_Decimal_IO, -- Ada.Text_IO
727 RE_Fixed_IO, -- Ada.Text_IO
729 RO_WT_Decimal_IO, -- Ada.Wide_Text_IO
730 RO_WT_Fixed_IO, -- Ada.Wide_Text_IO
732 RO_WW_Decimal_IO, -- Ada.Wide_Wide_Text_IO
733 RO_WW_Fixed_IO, -- Ada.Wide_Wide_Text_IO
735 RE_Stream_T, -- CUDA.Driver_Types
737 RE_Fatbin_Wrapper, -- CUDA.Internal
738 RE_Launch_Kernel, -- CUDA.Internal
739 RE_Pop_Call_Configuration, -- CUDA.Internal
740 RE_Push_Call_Configuration, -- CUDA.Internal
741 RE_Register_Fat_Binary, -- CUDA.Internal
742 RE_Register_Fat_Binary_End, -- CUDA.Internal
743 RE_Register_Function, -- CUDA.Internal
745 RE_Dim3, -- CUDA.Vector_Types
747 RE_Integer_8, -- Interfaces
748 RE_Integer_16, -- Interfaces
749 RE_Integer_32, -- Interfaces
750 RE_Integer_64, -- Interfaces
751 RE_Integer_128, -- Interfaces
752 RE_Unsigned_8, -- Interfaces
753 RE_Unsigned_16, -- Interfaces
754 RE_Unsigned_32, -- Interfaces
755 RE_Unsigned_64, -- Interfaces
756 RE_Unsigned_128, -- Interfaces
758 RO_IC_Unsigned, -- Interfaces.C
760 RE_Chars_Ptr, -- Interfaces.C.Strings
761 RE_New_Char_Array, -- Interfaces.C.Strings
763 RE_Address, -- System
764 RE_Any_Priority, -- System
765 RE_Bit_Order, -- System
766 RE_Default_Priority, -- System
767 RE_High_Order_First, -- System
768 RE_Interrupt_Priority, -- System
769 RE_Lib_Stop, -- System
770 RE_Low_Order_First, -- System
771 RE_Max_Base_Digits, -- System
772 RE_Max_Priority, -- System
773 RE_Null_Address, -- System
774 RE_Priority, -- System
776 RE_Address_Image, -- System.Address_Image
778 RE_Add_With_Ovflo_Check64, -- System.Arith_64
779 RE_Double_Divide64, -- System.Arith_64
780 RE_Multiply_With_Ovflo_Check64, -- System.Arith_64
781 RE_Scaled_Divide64, -- System.Arith_64
782 RE_Subtract_With_Ovflo_Check64, -- System.Arith_64
784 RE_Add_With_Ovflo_Check128, -- System.Arith_128
785 RE_Double_Divide128, -- System.Arith_128
786 RE_Multiply_With_Ovflo_Check128, -- System.Arith_128
787 RE_Subtract_With_Ovflo_Check128, -- System.Arith_128
788 RE_Scaled_Divide128, -- System.Arith_128
790 RE_Create_AST_Handler, -- System.AST_Handling
792 RE_Assert_Failure, -- System.Assertions
793 RE_Raise_Assert_Failure, -- System.Assertions
795 RE_Lock_Free_Read_8, -- System.Atomic_Primitives
796 RE_Lock_Free_Read_16, -- System.Atomic_Primitives
797 RE_Lock_Free_Read_32, -- System.Atomic_Primitives
798 RE_Lock_Free_Read_64, -- System.Atomic_Primitives
799 RE_Lock_Free_Try_Write_8, -- System.Atomic_Primitives
800 RE_Lock_Free_Try_Write_16, -- System.Atomic_Primitives
801 RE_Lock_Free_Try_Write_32, -- System.Atomic_Primitives
802 RE_Lock_Free_Try_Write_64, -- System.Atomic_Primitives
803 RE_Uint8, -- System.Atomic_Primitives
804 RE_Uint16, -- System.Atomic_Primitives
805 RE_Uint32, -- System.Atomic_Primitives
806 RE_Uint64, -- System.Atomic_Primitives
808 RE_Test_And_Set_Flag, -- System.Atomic_Operations.Test_And_Set
809 RE_Atomic_Test_And_Set, -- System.Atomic_Operations.Test_And_Set
811 RE_AST_Handler, -- System.Aux_DEC
812 RE_Import_Address, -- System.Aux_DEC
813 RE_Import_Value, -- System.Aux_DEC
814 RE_No_AST_Handler, -- System.Aux_DEC
815 RE_Type_Class, -- System.Aux_DEC
816 RE_Type_Class_Enumeration, -- System.Aux_DEC
817 RE_Type_Class_Integer, -- System.Aux_DEC
818 RE_Type_Class_Fixed_Point, -- System.Aux_DEC
819 RE_Type_Class_Floating_Point, -- System.Aux_DEC
820 RE_Type_Class_Array, -- System.Aux_DEC
821 RE_Type_Class_Record, -- System.Aux_DEC
822 RE_Type_Class_Access, -- System.Aux_DEC
823 RE_Type_Class_Task, -- System.Aux_DEC
824 RE_Type_Class_Address, -- System.Aux_DEC
826 RE_Big_Abs, -- System.Bignums
827 RE_Big_Add, -- System.Bignums
828 RE_Big_Div, -- System.Bignums
829 RE_Big_Exp, -- System.Bignums
830 RE_Big_Mod, -- System.Bignums
831 RE_Big_Mul, -- System.Bignums
832 RE_Big_Neg, -- System.Bignums
833 RE_Big_Rem, -- System.Bignums
834 RE_Big_Sub, -- System.Bignums
836 RE_Big_EQ, -- System.Bignums
837 RE_Big_GE, -- System.Bignums
838 RE_Big_GT, -- System.Bignums
839 RE_Big_LE, -- System.Bignums
840 RE_Big_LT, -- System.Bignums
841 RE_Big_NE, -- System.Bignums
843 RE_Bignum, -- System.Bignums
844 RE_Bignum_In_LLI_Range, -- System.Bignums
845 RE_To_Bignum, -- System.Bignums
846 RE_From_Bignum, -- System.Bignums
848 RE_Val_2, -- System.Bitfields
849 RE_Copy_Bitfield, -- System.Bitfields
850 RE_Fast_Copy_Bitfield, -- System.Bitfields
852 RE_Bit_And, -- System.Bit_Ops
853 RE_Bit_Eq, -- System.Bit_Ops
854 RE_Bit_Not, -- System.Bit_Ops
855 RE_Bit_Or, -- System.Bit_Ops
856 RE_Bit_Xor, -- System.Bit_Ops
858 RE_Vector_Not, -- System.Boolean_Array_Operations,
859 RE_Vector_And, -- System.Boolean_Array_Operations,
860 RE_Vector_Or, -- System.Boolean_Array_Operations,
861 RE_Vector_Nand, -- System.Boolean_Array_Operations,
862 RE_Vector_Nor, -- System.Boolean_Array_Operations,
863 RE_Vector_Nxor, -- System.Boolean_Array_Operations,
864 RE_Vector_Xor, -- System.Boolean_Array_Operations,
866 RE_Bswap_16, -- System.Byte_Swapping
867 RE_Bswap_32, -- System.Byte_Swapping
868 RE_Bswap_64, -- System.Byte_Swapping
869 RE_Bswap_128, -- System.Byte_Swapping
871 RE_Checked_Pool, -- System.Checked_Pools
873 RE_Compare_Array_S8, -- System.Compare_Array_Signed_8
874 RE_Compare_Array_S8_Unaligned, -- System.Compare_Array_Signed_8
876 RE_Compare_Array_S16, -- System.Compare_Array_Signed_16
877 RE_Compare_Array_S32, -- System.Compare_Array_Signed_32
878 RE_Compare_Array_S64, -- System.Compare_Array_Signed_64
879 RE_Compare_Array_S128, -- System.Compare_Array_Signed_128
881 RE_Compare_Array_U8, -- System.Compare_Array_Unsigned_8
882 RE_Compare_Array_U8_Unaligned, -- System.Compare_Array_Unsigned_8
884 RE_Compare_Array_U16, -- System.Compare_Array_Unsigned_16
885 RE_Compare_Array_U32, -- System.Compare_Array_Unsigned_32
886 RE_Compare_Array_U64, -- System.Compare_Array_Unsigned_64
887 RE_Compare_Array_U128, -- System.Compare_Array_Unsigned_128
889 RE_Str_Concat_2, -- System.Concat_2
890 RE_Str_Concat_3, -- System.Concat_3
891 RE_Str_Concat_4, -- System.Concat_4
892 RE_Str_Concat_5, -- System.Concat_5
893 RE_Str_Concat_6, -- System.Concat_6
894 RE_Str_Concat_7, -- System.Concat_7
895 RE_Str_Concat_8, -- System.Concat_8
896 RE_Str_Concat_9, -- System.Concat_9
898 RE_Str_Concat_Bounds_2, -- System.Concat_2
899 RE_Str_Concat_Bounds_3, -- System.Concat_3
900 RE_Str_Concat_Bounds_4, -- System.Concat_4
901 RE_Str_Concat_Bounds_5, -- System.Concat_5
902 RE_Str_Concat_Bounds_6, -- System.Concat_6
903 RE_Str_Concat_Bounds_7, -- System.Concat_7
904 RE_Str_Concat_Bounds_8, -- System.Concat_8
905 RE_Str_Concat_Bounds_9, -- System.Concat_9
907 RE_Get_Active_Partition_Id, -- System.DSA_Services
908 RE_Get_Local_Partition_Id, -- System.DSA_Services
909 RE_Get_Passive_Partition_Id, -- System.DSA_Services
911 RE_Any_Container_Ptr, -- System.DSA_Types
913 RE_Check_Standard_Allocator, -- System.Elaboration_Allocators
915 RE_Register_Exception, -- System.Exception_Table
917 RE_Local_Raise, -- System.Exceptions_Debug
919 RE_Exn_Integer, -- System.Exn_Int
921 RE_Exn_Float, -- System.Exn_Flt
923 RE_Exn_Long_Float, -- System.Exn_LFlt
925 RE_Exn_Long_Long_Float, -- System.Exn_LLF
927 RE_Exn_Long_Long_Integer, -- System.Exn_LLI
929 RE_Exn_Long_Long_Long_Integer, -- System.Exn_LLLI
931 RE_Exp_Integer, -- System.Exp_Int
933 RE_Exp_Long_Long_Integer, -- System.Exp_LLI
935 RE_Exp_Long_Long_Long_Integer, -- System.Exp_LLLI
937 RE_Exp_Long_Long_Unsigned, -- System.Exp_LLU
939 RE_Exp_Long_Long_Long_Unsigned, -- System.Exp_LLLU
941 RE_Exp_Modular, -- System.Exp_Mod
943 RE_Exp_Unsigned, -- System.Exp_Uns
945 RE_Attr_Float, -- System.Fat_Flt
947 RE_Attr_Long_Float, -- System.Fat_LFlt
949 RE_Attr_Long_Long_Float, -- System.Fat_LLF
951 RE_Attr_VAX_D_Float, -- System.Fat_VAX_D_Float
952 RE_Fat_VAX_D, -- System.Fat_VAX_D_Float
954 RE_Attr_VAX_F_Float, -- System.Fat_VAX_F_Float
955 RE_Fat_VAX_F, -- System.Fat_VAX_F_Float
957 RE_Attr_VAX_G_Float, -- System.Fat_VAX_G_Float
958 RE_Fat_VAX_G, -- System.Fat_VAX_G_Float
960 RE_Add_Offset_To_Address, -- System.Finalization_Masters
961 RE_Attach, -- System.Finalization_Masters
962 RE_Base_Pool, -- System.Finalization_Masters
963 RE_Finalization_Master, -- System.Finalization_Masters
964 RE_Finalization_Master_Ptr, -- System.Finalization_Masters
965 RE_Set_Base_Pool, -- System.Finalization_Masters
966 RE_Set_Finalize_Address, -- System.Finalization_Masters
967 RE_Set_Is_Heterogeneous, -- System.Finalization_Masters
969 RE_Root_Controlled, -- System.Finalization_Root
970 RE_Root_Controlled_Ptr, -- System.Finalization_Root
972 RE_Fore_Decimal32, -- System.Fore_Decimal_32
974 RE_Fore_Decimal64, -- System.Fore_Decimal_64
976 RE_Fore_Decimal128, -- System.Fore_Decimal_128
978 RE_Fore_Fixed, -- System.Fore_Real
980 RE_Fore_Fixed32, -- System.Fore_Fixed_32
982 RE_Fore_Fixed64, -- System.Fore_Fixed_64
984 RE_Fore_Fixed128, -- System.Fore_Fixed_128
986 RE_Image_Boolean, -- System.Img_Bool
988 RE_Image_Character, -- System.Img_Char
989 RE_Image_Character_05, -- System.Img_Char
991 RE_Image_Decimal32, -- System.Img_Decimal_32
993 RE_Image_Decimal64, -- System.Img_Decimal_64
995 RE_Image_Decimal128, -- System.Img_Decimal_128
997 RE_Image_Enumeration_8, -- System.Img_Enum_New
998 RE_Image_Enumeration_16, -- System.Img_Enum_New
999 RE_Image_Enumeration_32, -- System.Img_Enum_New
1001 RE_Image_Float, -- System_Img_Flt
1003 RE_Image_Integer, -- System.Img_Int
1005 RE_Image_Long_Float, -- System_Img_LFlt
1007 RE_Image_Long_Long_Float, -- System_Img_LLF
1009 RE_Image_Long_Long_Integer, -- System.Img_LLI
1011 RE_Image_Long_Long_Long_Integer, -- System.Img_LLLI
1013 RE_Image_Long_Long_Unsigned, -- System.Img_LLU
1015 RE_Image_Long_Long_Long_Unsigned, -- System.Img_LLLU
1017 RE_Image_Fixed, -- System.Img_LFlt
1019 RE_Image_Fixed32, -- System.Img_Fixed_32
1021 RE_Image_Fixed64, -- System.Img_Fixed_64
1023 RE_Image_Fixed128, -- System.Img_Fixed_128
1025 RE_Image_Unsigned, -- System.Img_Uns
1027 RE_Image_Wide_Character, -- System.Img_WChar
1028 RE_Image_Wide_Wide_Character, -- System.Img_WChar
1030 RE_Bind_Interrupt_To_Entry, -- System.Interrupts
1031 RE_Default_Interrupt_Priority, -- System.Interrupts
1032 RE_Dynamic_Interrupt_Protection, -- System.Interrupts
1033 RE_Install_Handlers, -- System.Interrupts
1034 RE_Install_Restricted_Handlers, -- System.Interrupts
1035 RE_Register_Interrupt_Handler, -- System.Interrupts
1036 RE_Static_Interrupt_Protection, -- System.Interrupts
1037 RE_System_Interrupt_Id, -- System.Interrupts
1039 RE_Expon_LLF, -- System.Long_Long_Float_Expon
1041 RE_Asm_Insn, -- System.Machine_Code
1042 RE_Asm_Input_Operand, -- System.Machine_Code
1043 RE_Asm_Output_Operand, -- System.Machine_Code
1045 RE_Mantissa_Value, -- System.Mantissa
1047 RE_Free, -- System.Memory
1049 RE_CPU_Range, -- System.Multiprocessors
1051 RE_Bits_03, -- System.Pack_03
1052 RE_Get_03, -- System.Pack_03
1053 RE_Set_03, -- System.Pack_03
1055 RE_Bits_05, -- System.Pack_05
1056 RE_Get_05, -- System.Pack_05
1057 RE_Set_05, -- System.Pack_05
1059 RE_Bits_06, -- System.Pack_06
1060 RE_Get_06, -- System.Pack_06
1061 RE_GetU_06, -- System.Pack_06
1062 RE_Set_06, -- System.Pack_06
1063 RE_SetU_06, -- System.Pack_06
1065 RE_Bits_07, -- System.Pack_07
1066 RE_Get_07, -- System.Pack_07
1067 RE_Set_07, -- System.Pack_07
1069 RE_Bits_09, -- System.Pack_09
1070 RE_Get_09, -- System.Pack_09
1071 RE_Set_09, -- System.Pack_09
1073 RE_Bits_10, -- System.Pack_10
1074 RE_Get_10, -- System.Pack_10
1075 RE_GetU_10, -- System.Pack_10
1076 RE_Set_10, -- System.Pack_10
1077 RE_SetU_10, -- System.Pack_10
1079 RE_Bits_11, -- System.Pack_11
1080 RE_Get_11, -- System.Pack_11
1081 RE_Set_11, -- System.Pack_11
1083 RE_Bits_12, -- System.Pack_12
1084 RE_Get_12, -- System.Pack_12
1085 RE_GetU_12, -- System.Pack_12
1086 RE_Set_12, -- System.Pack_12
1087 RE_SetU_12, -- System.Pack_12
1089 RE_Bits_13, -- System.Pack_13
1090 RE_Get_13, -- System.Pack_13
1091 RE_Set_13, -- System.Pack_13
1093 RE_Bits_14, -- System.Pack_14
1094 RE_Get_14, -- System.Pack_14
1095 RE_GetU_14, -- System.Pack_14
1096 RE_Set_14, -- System.Pack_14
1097 RE_SetU_14, -- System.Pack_14
1099 RE_Bits_15, -- System.Pack_15
1100 RE_Get_15, -- System.Pack_15
1101 RE_Set_15, -- System.Pack_15
1103 RE_Bits_17, -- System.Pack_17
1104 RE_Get_17, -- System.Pack_17
1105 RE_Set_17, -- System.Pack_17
1107 RE_Bits_18, -- System.Pack_18
1108 RE_Get_18, -- System.Pack_18
1109 RE_GetU_18, -- System.Pack_18
1110 RE_Set_18, -- System.Pack_18
1111 RE_SetU_18, -- System.Pack_18
1113 RE_Bits_19, -- System.Pack_19
1114 RE_Get_19, -- System.Pack_19
1115 RE_Set_19, -- System.Pack_19
1117 RE_Bits_20, -- System.Pack_20
1118 RE_Get_20, -- System.Pack_20
1119 RE_GetU_20, -- System.Pack_20
1120 RE_Set_20, -- System.Pack_20
1121 RE_SetU_20, -- System.Pack_20
1123 RE_Bits_21, -- System.Pack_21
1124 RE_Get_21, -- System.Pack_21
1125 RE_Set_21, -- System.Pack_21
1127 RE_Bits_22, -- System.Pack_22
1128 RE_Get_22, -- System.Pack_22
1129 RE_GetU_22, -- System.Pack_22
1130 RE_Set_22, -- System.Pack_22
1131 RE_SetU_22, -- System.Pack_22
1133 RE_Bits_23, -- System.Pack_23
1134 RE_Get_23, -- System.Pack_23
1135 RE_Set_23, -- System.Pack_23
1137 RE_Bits_24, -- System.Pack_24
1138 RE_Get_24, -- System.Pack_24
1139 RE_GetU_24, -- System.Pack_24
1140 RE_Set_24, -- System.Pack_24
1141 RE_SetU_24, -- System.Pack_24
1143 RE_Bits_25, -- System.Pack_25
1144 RE_Get_25, -- System.Pack_25
1145 RE_Set_25, -- System.Pack_25
1147 RE_Bits_26, -- System.Pack_26
1148 RE_Get_26, -- System.Pack_26
1149 RE_GetU_26, -- System.Pack_26
1150 RE_Set_26, -- System.Pack_26
1151 RE_SetU_26, -- System.Pack_26
1153 RE_Bits_27, -- System.Pack_27
1154 RE_Get_27, -- System.Pack_27
1155 RE_Set_27, -- System.Pack_27
1157 RE_Bits_28, -- System.Pack_28
1158 RE_Get_28, -- System.Pack_28
1159 RE_GetU_28, -- System.Pack_28
1160 RE_Set_28, -- System.Pack_28
1161 RE_SetU_28, -- System.Pack_28
1163 RE_Bits_29, -- System.Pack_29
1164 RE_Get_29, -- System.Pack_29
1165 RE_Set_29, -- System.Pack_29
1167 RE_Bits_30, -- System.Pack_30
1168 RE_Get_30, -- System.Pack_30
1169 RE_GetU_30, -- System.Pack_30
1170 RE_Set_30, -- System.Pack_30
1171 RE_SetU_30, -- System.Pack_30
1173 RE_Bits_31, -- System.Pack_31
1174 RE_Get_31, -- System.Pack_31
1175 RE_Set_31, -- System.Pack_31
1177 RE_Bits_33, -- System.Pack_33
1178 RE_Get_33, -- System.Pack_33
1179 RE_Set_33, -- System.Pack_33
1181 RE_Bits_34, -- System.Pack_34
1182 RE_Get_34, -- System.Pack_34
1183 RE_GetU_34, -- System.Pack_34
1184 RE_Set_34, -- System.Pack_34
1185 RE_SetU_34, -- System.Pack_34
1187 RE_Bits_35, -- System.Pack_35
1188 RE_Get_35, -- System.Pack_35
1189 RE_Set_35, -- System.Pack_35
1191 RE_Bits_36, -- System.Pack_36
1192 RE_Get_36, -- System.Pack_36
1193 RE_GetU_36, -- System.Pack_36
1194 RE_Set_36, -- System.Pack_36
1195 RE_SetU_36, -- System.Pack_36
1197 RE_Bits_37, -- System.Pack_37
1198 RE_Get_37, -- System.Pack_37
1199 RE_Set_37, -- System.Pack_37
1201 RE_Bits_38, -- System.Pack_38
1202 RE_Get_38, -- System.Pack_38
1203 RE_GetU_38, -- System.Pack_38
1204 RE_Set_38, -- System.Pack_38
1205 RE_SetU_38, -- System.Pack_38
1207 RE_Bits_39, -- System.Pack_39
1208 RE_Get_39, -- System.Pack_39
1209 RE_Set_39, -- System.Pack_39
1211 RE_Bits_40, -- System.Pack_40
1212 RE_Get_40, -- System.Pack_40
1213 RE_GetU_40, -- System.Pack_40
1214 RE_Set_40, -- System.Pack_40
1215 RE_SetU_40, -- System.Pack_40
1217 RE_Bits_41, -- System.Pack_41
1218 RE_Get_41, -- System.Pack_41
1219 RE_Set_41, -- System.Pack_41
1221 RE_Bits_42, -- System.Pack_42
1222 RE_Get_42, -- System.Pack_42
1223 RE_GetU_42, -- System.Pack_42
1224 RE_Set_42, -- System.Pack_42
1225 RE_SetU_42, -- System.Pack_42
1227 RE_Bits_43, -- System.Pack_43
1228 RE_Get_43, -- System.Pack_43
1229 RE_Set_43, -- System.Pack_43
1231 RE_Bits_44, -- System.Pack_44
1232 RE_Get_44, -- System.Pack_44
1233 RE_GetU_44, -- System.Pack_44
1234 RE_Set_44, -- System.Pack_44
1235 RE_SetU_44, -- System.Pack_44
1237 RE_Bits_45, -- System.Pack_45
1238 RE_Get_45, -- System.Pack_45
1239 RE_Set_45, -- System.Pack_45
1241 RE_Bits_46, -- System.Pack_46
1242 RE_Get_46, -- System.Pack_46
1243 RE_GetU_46, -- System.Pack_46
1244 RE_Set_46, -- System.Pack_46
1245 RE_SetU_46, -- System.Pack_46
1247 RE_Bits_47, -- System.Pack_47
1248 RE_Get_47, -- System.Pack_47
1249 RE_Set_47, -- System.Pack_47
1251 RE_Bits_48, -- System.Pack_48
1252 RE_Get_48, -- System.Pack_48
1253 RE_GetU_48, -- System.Pack_48
1254 RE_Set_48, -- System.Pack_48
1255 RE_SetU_48, -- System.Pack_48
1257 RE_Bits_49, -- System.Pack_49
1258 RE_Get_49, -- System.Pack_49
1259 RE_Set_49, -- System.Pack_49
1261 RE_Bits_50, -- System.Pack_50
1262 RE_Get_50, -- System.Pack_50
1263 RE_GetU_50, -- System.Pack_50
1264 RE_Set_50, -- System.Pack_50
1265 RE_SetU_50, -- System.Pack_50
1267 RE_Bits_51, -- System.Pack_51
1268 RE_Get_51, -- System.Pack_51
1269 RE_Set_51, -- System.Pack_51
1271 RE_Bits_52, -- System.Pack_52
1272 RE_Get_52, -- System.Pack_52
1273 RE_GetU_52, -- System.Pack_52
1274 RE_Set_52, -- System.Pack_52
1275 RE_SetU_52, -- System.Pack_52
1277 RE_Bits_53, -- System.Pack_53
1278 RE_Get_53, -- System.Pack_53
1279 RE_Set_53, -- System.Pack_53
1281 RE_Bits_54, -- System.Pack_54
1282 RE_Get_54, -- System.Pack_54
1283 RE_GetU_54, -- System.Pack_54
1284 RE_Set_54, -- System.Pack_54
1285 RE_SetU_54, -- System.Pack_54
1287 RE_Bits_55, -- System.Pack_55
1288 RE_Get_55, -- System.Pack_55
1289 RE_Set_55, -- System.Pack_55
1291 RE_Bits_56, -- System.Pack_56
1292 RE_Get_56, -- System.Pack_56
1293 RE_GetU_56, -- System.Pack_56
1294 RE_Set_56, -- System.Pack_56
1295 RE_SetU_56, -- System.Pack_56
1297 RE_Bits_57, -- System.Pack_57
1298 RE_Get_57, -- System.Pack_57
1299 RE_Set_57, -- System.Pack_57
1301 RE_Bits_58, -- System.Pack_58
1302 RE_Get_58, -- System.Pack_58
1303 RE_GetU_58, -- System.Pack_58
1304 RE_Set_58, -- System.Pack_58
1305 RE_SetU_58, -- System.Pack_58
1307 RE_Bits_59, -- System.Pack_59
1308 RE_Get_59, -- System.Pack_59
1309 RE_Set_59, -- System.Pack_59
1311 RE_Bits_60, -- System.Pack_60
1312 RE_Get_60, -- System.Pack_60
1313 RE_GetU_60, -- System.Pack_60
1314 RE_Set_60, -- System.Pack_60
1315 RE_SetU_60, -- System.Pack_60
1317 RE_Bits_61, -- System.Pack_61
1318 RE_Get_61, -- System.Pack_61
1319 RE_Set_61, -- System.Pack_61
1321 RE_Bits_62, -- System.Pack_62
1322 RE_Get_62, -- System.Pack_62
1323 RE_GetU_62, -- System.Pack_62
1324 RE_Set_62, -- System.Pack_62
1325 RE_SetU_62, -- System.Pack_62
1327 RE_Bits_63, -- System.Pack_63
1328 RE_Get_63, -- System.Pack_63
1329 RE_Set_63, -- System.Pack_63
1331 RE_Bits_65, -- System.Pack_65
1332 RE_Get_65, -- System.Pack_65
1333 RE_Set_65, -- System.Pack_65
1335 RE_Bits_66, -- System.Pack_66
1336 RE_Get_66, -- System.Pack_66
1337 RE_GetU_66, -- System.Pack_66
1338 RE_Set_66, -- System.Pack_66
1339 RE_SetU_66, -- System.Pack_66
1341 RE_Bits_67, -- System.Pack_67
1342 RE_Get_67, -- System.Pack_67
1343 RE_Set_67, -- System.Pack_67
1345 RE_Bits_68, -- System.Pack_68
1346 RE_Get_68, -- System.Pack_68
1347 RE_GetU_68, -- System.Pack_68
1348 RE_Set_68, -- System.Pack_68
1349 RE_SetU_68, -- System.Pack_68
1351 RE_Bits_69, -- System.Pack_69
1352 RE_Get_69, -- System.Pack_69
1353 RE_Set_69, -- System.Pack_69
1355 RE_Bits_70, -- System.Pack_70
1356 RE_Get_70, -- System.Pack_70
1357 RE_GetU_70, -- System.Pack_70
1358 RE_Set_70, -- System.Pack_70
1359 RE_SetU_70, -- System.Pack_70
1361 RE_Bits_71, -- System.Pack_71
1362 RE_Get_71, -- System.Pack_71
1363 RE_Set_71, -- System.Pack_71
1365 RE_Bits_72, -- System.Pack_72
1366 RE_Get_72, -- System.Pack_72
1367 RE_GetU_72, -- System.Pack_72
1368 RE_Set_72, -- System.Pack_72
1369 RE_SetU_72, -- System.Pack_72
1371 RE_Bits_73, -- System.Pack_73
1372 RE_Get_73, -- System.Pack_73
1373 RE_Set_73, -- System.Pack_73
1375 RE_Bits_74, -- System.Pack_74
1376 RE_Get_74, -- System.Pack_74
1377 RE_GetU_74, -- System.Pack_74
1378 RE_Set_74, -- System.Pack_74
1379 RE_SetU_74, -- System.Pack_74
1381 RE_Bits_75, -- System.Pack_75
1382 RE_Get_75, -- System.Pack_75
1383 RE_Set_75, -- System.Pack_75
1385 RE_Bits_76, -- System.Pack_76
1386 RE_Get_76, -- System.Pack_76
1387 RE_GetU_76, -- System.Pack_76
1388 RE_Set_76, -- System.Pack_76
1389 RE_SetU_76, -- System.Pack_76
1391 RE_Bits_77, -- System.Pack_77
1392 RE_Get_77, -- System.Pack_77
1393 RE_Set_77, -- System.Pack_77
1395 RE_Bits_78, -- System.Pack_78
1396 RE_Get_78, -- System.Pack_78
1397 RE_GetU_78, -- System.Pack_78
1398 RE_Set_78, -- System.Pack_78
1399 RE_SetU_78, -- System.Pack_78
1401 RE_Bits_79, -- System.Pack_79
1402 RE_Get_79, -- System.Pack_79
1403 RE_Set_79, -- System.Pack_79
1405 RE_Bits_80, -- System.Pack_80
1406 RE_Get_80, -- System.Pack_80
1407 RE_GetU_80, -- System.Pack_80
1408 RE_Set_80, -- System.Pack_80
1409 RE_SetU_80, -- System.Pack_80
1411 RE_Bits_81, -- System.Pack_81
1412 RE_Get_81, -- System.Pack_81
1413 RE_Set_81, -- System.Pack_81
1415 RE_Bits_82, -- System.Pack_82
1416 RE_Get_82, -- System.Pack_82
1417 RE_GetU_82, -- System.Pack_82
1418 RE_Set_82, -- System.Pack_82
1419 RE_SetU_82, -- System.Pack_82
1421 RE_Bits_83, -- System.Pack_83
1422 RE_Get_83, -- System.Pack_83
1423 RE_Set_83, -- System.Pack_83
1425 RE_Bits_84, -- System.Pack_84
1426 RE_Get_84, -- System.Pack_84
1427 RE_GetU_84, -- System.Pack_84
1428 RE_Set_84, -- System.Pack_84
1429 RE_SetU_84, -- System.Pack_84
1431 RE_Bits_85, -- System.Pack_85
1432 RE_Get_85, -- System.Pack_85
1433 RE_Set_85, -- System.Pack_85
1435 RE_Bits_86, -- System.Pack_86
1436 RE_Get_86, -- System.Pack_86
1437 RE_GetU_86, -- System.Pack_86
1438 RE_Set_86, -- System.Pack_86
1439 RE_SetU_86, -- System.Pack_86
1441 RE_Bits_87, -- System.Pack_87
1442 RE_Get_87, -- System.Pack_87
1443 RE_Set_87, -- System.Pack_87
1445 RE_Bits_88, -- System.Pack_88
1446 RE_Get_88, -- System.Pack_88
1447 RE_GetU_88, -- System.Pack_88
1448 RE_Set_88, -- System.Pack_88
1449 RE_SetU_88, -- System.Pack_88
1451 RE_Bits_89, -- System.Pack_89
1452 RE_Get_89, -- System.Pack_89
1453 RE_Set_89, -- System.Pack_89
1455 RE_Bits_90, -- System.Pack_90
1456 RE_Get_90, -- System.Pack_90
1457 RE_GetU_90, -- System.Pack_90
1458 RE_Set_90, -- System.Pack_90
1459 RE_SetU_90, -- System.Pack_90
1461 RE_Bits_91, -- System.Pack_91
1462 RE_Get_91, -- System.Pack_91
1463 RE_Set_91, -- System.Pack_91
1465 RE_Bits_92, -- System.Pack_92
1466 RE_Get_92, -- System.Pack_92
1467 RE_GetU_92, -- System.Pack_92
1468 RE_Set_92, -- System.Pack_92
1469 RE_SetU_92, -- System.Pack_92
1471 RE_Bits_93, -- System.Pack_93
1472 RE_Get_93, -- System.Pack_93
1473 RE_Set_93, -- System.Pack_93
1475 RE_Bits_94, -- System.Pack_94
1476 RE_Get_94, -- System.Pack_94
1477 RE_GetU_94, -- System.Pack_94
1478 RE_Set_94, -- System.Pack_94
1479 RE_SetU_94, -- System.Pack_94
1481 RE_Bits_95, -- System.Pack_95
1482 RE_Get_95, -- System.Pack_95
1483 RE_Set_95, -- System.Pack_95
1485 RE_Bits_96, -- System.Pack_96
1486 RE_Get_96, -- System.Pack_96
1487 RE_GetU_96, -- System.Pack_96
1488 RE_Set_96, -- System.Pack_96
1489 RE_SetU_96, -- System.Pack_96
1491 RE_Bits_97, -- System.Pack_97
1492 RE_Get_97, -- System.Pack_97
1493 RE_Set_97, -- System.Pack_97
1495 RE_Bits_98, -- System.Pack_98
1496 RE_Get_98, -- System.Pack_98
1497 RE_GetU_98, -- System.Pack_98
1498 RE_Set_98, -- System.Pack_98
1499 RE_SetU_98, -- System.Pack_98
1501 RE_Bits_99, -- System.Pack_99
1502 RE_Get_99, -- System.Pack_99
1503 RE_Set_99, -- System.Pack_99
1505 RE_Bits_100, -- System.Pack_100
1506 RE_Get_100, -- System.Pack_100
1507 RE_GetU_100, -- System.Pack_100
1508 RE_Set_100, -- System.Pack_100
1509 RE_SetU_100, -- System.Pack_100
1511 RE_Bits_101, -- System.Pack_101
1512 RE_Get_101, -- System.Pack_101
1513 RE_Set_101, -- System.Pack_101
1515 RE_Bits_102, -- System.Pack_102
1516 RE_Get_102, -- System.Pack_102
1517 RE_GetU_102, -- System.Pack_102
1518 RE_Set_102, -- System.Pack_102
1519 RE_SetU_102, -- System.Pack_102
1521 RE_Bits_103, -- System.Pack_103
1522 RE_Get_103, -- System.Pack_103
1523 RE_Set_103, -- System.Pack_103
1525 RE_Bits_104, -- System.Pack_104
1526 RE_Get_104, -- System.Pack_104
1527 RE_GetU_104, -- System.Pack_104
1528 RE_Set_104, -- System.Pack_104
1529 RE_SetU_104, -- System.Pack_104
1531 RE_Bits_105, -- System.Pack_105
1532 RE_Get_105, -- System.Pack_105
1533 RE_Set_105, -- System.Pack_105
1535 RE_Bits_106, -- System.Pack_106
1536 RE_Get_106, -- System.Pack_106
1537 RE_GetU_106, -- System.Pack_106
1538 RE_Set_106, -- System.Pack_106
1539 RE_SetU_106, -- System.Pack_106
1541 RE_Bits_107, -- System.Pack_107
1542 RE_Get_107, -- System.Pack_107
1543 RE_Set_107, -- System.Pack_107
1545 RE_Bits_108, -- System.Pack_108
1546 RE_Get_108, -- System.Pack_108
1547 RE_GetU_108, -- System.Pack_108
1548 RE_Set_108, -- System.Pack_108
1549 RE_SetU_108, -- System.Pack_108
1551 RE_Bits_109, -- System.Pack_109
1552 RE_Get_109, -- System.Pack_109
1553 RE_Set_109, -- System.Pack_109
1555 RE_Bits_110, -- System.Pack_110
1556 RE_Get_110, -- System.Pack_110
1557 RE_GetU_110, -- System.Pack_110
1558 RE_Set_110, -- System.Pack_110
1559 RE_SetU_110, -- System.Pack_110
1561 RE_Bits_111, -- System.Pack_111
1562 RE_Get_111, -- System.Pack_111
1563 RE_Set_111, -- System.Pack_111
1565 RE_Bits_112, -- System.Pack_112
1566 RE_Get_112, -- System.Pack_112
1567 RE_GetU_112, -- System.Pack_112
1568 RE_Set_112, -- System.Pack_112
1569 RE_SetU_112, -- System.Pack_112
1571 RE_Bits_113, -- System.Pack_113
1572 RE_Get_113, -- System.Pack_113
1573 RE_Set_113, -- System.Pack_113
1575 RE_Bits_114, -- System.Pack_114
1576 RE_Get_114, -- System.Pack_114
1577 RE_GetU_114, -- System.Pack_114
1578 RE_Set_114, -- System.Pack_114
1579 RE_SetU_114, -- System.Pack_114
1581 RE_Bits_115, -- System.Pack_115
1582 RE_Get_115, -- System.Pack_115
1583 RE_Set_115, -- System.Pack_115
1585 RE_Bits_116, -- System.Pack_116
1586 RE_Get_116, -- System.Pack_116
1587 RE_GetU_116, -- System.Pack_116
1588 RE_Set_116, -- System.Pack_116
1589 RE_SetU_116, -- System.Pack_116
1591 RE_Bits_117, -- System.Pack_117
1592 RE_Get_117, -- System.Pack_117
1593 RE_Set_117, -- System.Pack_117
1595 RE_Bits_118, -- System.Pack_118
1596 RE_Get_118, -- System.Pack_118
1597 RE_GetU_118, -- System.Pack_118
1598 RE_Set_118, -- System.Pack_118
1599 RE_SetU_118, -- System.Pack_118
1601 RE_Bits_119, -- System.Pack_119
1602 RE_Get_119, -- System.Pack_119
1603 RE_Set_119, -- System.Pack_119
1605 RE_Bits_120, -- System.Pack_120
1606 RE_Get_120, -- System.Pack_120
1607 RE_GetU_120, -- System.Pack_120
1608 RE_Set_120, -- System.Pack_120
1609 RE_SetU_120, -- System.Pack_120
1611 RE_Bits_121, -- System.Pack_121
1612 RE_Get_121, -- System.Pack_121
1613 RE_Set_121, -- System.Pack_121
1615 RE_Bits_122, -- System.Pack_122
1616 RE_Get_122, -- System.Pack_122
1617 RE_GetU_122, -- System.Pack_122
1618 RE_Set_122, -- System.Pack_122
1619 RE_SetU_122, -- System.Pack_122
1621 RE_Bits_123, -- System.Pack_123
1622 RE_Get_123, -- System.Pack_123
1623 RE_Set_123, -- System.Pack_123
1625 RE_Bits_124, -- System.Pack_124
1626 RE_Get_124, -- System.Pack_124
1627 RE_GetU_124, -- System.Pack_124
1628 RE_Set_124, -- System.Pack_124
1629 RE_SetU_124, -- System.Pack_124
1631 RE_Bits_125, -- System.Pack_125
1632 RE_Get_125, -- System.Pack_125
1633 RE_Set_125, -- System.Pack_125
1635 RE_Bits_126, -- System.Pack_126
1636 RE_Get_126, -- System.Pack_126
1637 RE_GetU_126, -- System.Pack_126
1638 RE_Set_126, -- System.Pack_126
1639 RE_SetU_126, -- System.Pack_126
1641 RE_Bits_127, -- System.Pack_127
1642 RE_Get_127, -- System.Pack_127
1643 RE_Set_127, -- System.Pack_127
1645 RE_Adjust_Storage_Size, -- System.Parameters
1646 RE_Default_Secondary_Stack_Size, -- System.Parameters
1647 RE_Default_Stack_Size, -- System.Parameters
1648 RE_Garbage_Collected, -- System.Parameters
1649 RE_Size_Type, -- System.Parameters
1650 RE_Unspecified_Size, -- System.Parameters
1652 RE_DSA_Implementation, -- System.Partition_Interface
1653 RE_PCS_Version, -- System.Partition_Interface
1654 RE_Get_RACW, -- System.Partition_Interface
1655 RE_Get_RCI_Package_Receiver, -- System.Partition_Interface
1656 RE_Get_Unique_Remote_Pointer, -- System.Partition_Interface
1657 RE_RACW_Stub_Type, -- System.Partition_Interface
1658 RE_RACW_Stub_Type_Access, -- System.Partition_Interface
1659 RE_RAS_Proxy_Type_Access, -- System.Partition_Interface
1660 RE_Raise_Program_Error_Unknown_Tag, -- System.Partition_Interface
1661 RE_Register_Passive_Package, -- System.Partition_Interface
1662 RE_Register_Receiving_Stub, -- System.Partition_Interface
1663 RE_Request, -- System.Partition_Interface
1664 RE_Request_Access, -- System.Partition_Interface
1665 RE_RCI_Locator, -- System.Partition_Interface
1666 RE_RCI_Subp_Info, -- System.Partition_Interface
1667 RE_RCI_Subp_Info_Array, -- System.Partition_Interface
1668 RE_Same_Partition, -- System.Partition_Interface
1669 RE_Subprogram_Id, -- System.Partition_Interface
1670 RE_Get_RAS_Info, -- System.Partition_Interface
1672 RE_Global_Pool_Object, -- System.Pool_Global
1674 RE_Global_Pool_32_Object, -- System.Pool_32_Global
1676 RE_Stack_Bounded_Pool, -- System.Pool_Size
1678 RE_Put_Image_Integer, -- System.Put_Images
1679 RE_Put_Image_Long_Long_Integer, -- System.Put_Images
1680 RE_Put_Image_Long_Long_Long_Integer, -- System.Put_Images
1681 RE_Put_Image_Unsigned, -- System.Put_Images
1682 RE_Put_Image_Long_Long_Unsigned, -- System.Put_Images
1683 RE_Put_Image_Long_Long_Long_Unsigned, -- System.Put_Images
1684 RE_Put_Image_Thin_Pointer, -- System.Put_Images
1685 RE_Put_Image_Fat_Pointer, -- System.Put_Images
1686 RE_Put_Image_Access_Subp, -- System.Put_Images
1687 RE_Put_Image_Access_Prot_Subp, -- System.Put_Images
1688 RE_Put_Image_String, -- System.Put_Images
1689 RE_Put_Image_Wide_String, -- System.Put_Images
1690 RE_Put_Image_Wide_Wide_String, -- System.Put_Images
1691 RE_Array_Before, -- System.Put_Images
1692 RE_Array_Between, -- System.Put_Images
1693 RE_Array_After, -- System.Put_Images
1694 RE_Simple_Array_Between, -- System.Put_Images
1695 RE_Record_Before, -- System.Put_Images
1696 RE_Record_Between, -- System.Put_Images
1697 RE_Record_After, -- System.Put_Images
1698 RE_Put_Image_Unknown, -- System.Put_Images
1700 RE_Put_Image_Protected, -- System.Put_Task_Images
1701 RE_Put_Image_Task, -- System.Put_Task_Images
1703 RE_Do_Apc, -- System.RPC
1704 RE_Do_Rpc, -- System.RPC
1705 RE_Params_Stream_Type, -- System.RPC
1706 RE_Partition_ID, -- System.RPC
1708 RE_To_PolyORB_String, -- System.Partition_Interface
1709 RE_Caseless_String_Eq, -- System.Partition_Interface
1710 RE_TypeCode, -- System.Partition_Interface
1711 RE_Any, -- System.Partition_Interface
1712 RE_Mode_In, -- System.Partition_Interface
1713 RE_Mode_Out, -- System.Partition_Interface
1714 RE_Mode_Inout, -- System.Partition_Interface
1715 RE_NamedValue, -- System.Partition_Interface
1716 RE_Result_Name, -- System.Partition_Interface
1717 RE_Object_Ref, -- System.Partition_Interface
1718 RE_Create_Any, -- System.Partition_Interface
1719 RE_Any_Aggregate_Build, -- System.Partition_Interface
1720 RE_Add_Aggregate_Element, -- System.Partition_Interface
1721 RE_Get_Aggregate_Element, -- System.Partition_Interface
1722 RE_Content_Type, -- System.Partition_Interface
1723 RE_Any_Member_Type, -- System.Partition_Interface
1724 RE_Get_Nested_Sequence_Length, -- System.Partition_Interface
1725 RE_Get_Any_Type, -- System.Partition_Interface
1726 RE_Extract_Union_Value, -- System.Partition_Interface
1727 RE_NVList_Ref, -- System.Partition_Interface
1728 RE_NVList_Create, -- System.Partition_Interface
1729 RE_NVList_Add_Item, -- System.Partition_Interface
1730 RE_Request_Arguments, -- System.Partition_Interface
1731 RE_Request_Invoke, -- System.Partition_Interface
1732 RE_Request_Raise_Occurrence, -- System.Partition_Interface
1733 RE_Request_Set_Out, -- System.Partition_Interface
1734 RE_Request_Setup, -- System.Partition_Interface
1735 RE_Nil_Exc_List, -- System.Partition_Interface
1736 RE_Servant, -- System.Partition_Interface
1737 RE_Move_Any_Value, -- System.Partition_Interface
1738 RE_Set_Result, -- System.Partition_Interface
1739 RE_Register_Obj_Receiving_Stub, -- System.Partition_Interface
1740 RE_Register_Pkg_Receiving_Stub, -- System.Partition_Interface
1741 RE_Is_Nil, -- System.Partition_Interface
1742 RE_Entity_Ptr, -- System.Partition_Interface
1743 RE_Entity_Of, -- System.Partition_Interface
1744 RE_Inc_Usage, -- System.Partition_Interface
1745 RE_Set_Ref, -- System.Partition_Interface
1746 RE_Make_Ref, -- System.Partition_Interface
1747 RE_Get_Local_Address, -- System.Partition_Interface
1748 RE_Get_Reference, -- System.Partition_Interface
1749 RE_Asynchronous_P_To_Sync_Scope, -- System.Partition_Interface
1750 RE_Buffer_Stream_Type, -- System.Partition_Interface
1751 RE_Release_Buffer, -- System.Partition_Interface
1752 RE_BS_To_Any, -- System.Partition_Interface
1753 RE_Any_To_BS, -- System.Partition_Interface
1754 RE_Build_Complex_TC, -- System.Partition_Interface
1755 RE_Get_TC, -- System.Partition_Interface
1756 RE_Set_TC, -- System.Partition_Interface
1758 RE_FA_A, -- System.Partition_Interface
1759 RE_FA_B, -- System.Partition_Interface
1760 RE_FA_C, -- System.Partition_Interface
1761 RE_FA_F, -- System.Partition_Interface
1762 RE_FA_I8, -- System.Partition_Interface
1763 RE_FA_I16, -- System.Partition_Interface
1764 RE_FA_I32, -- System.Partition_Interface
1765 RE_FA_I64, -- System.Partition_Interface
1766 RE_FA_LF, -- System.Partition_Interface
1767 RE_FA_LLF, -- System.Partition_Interface
1768 RE_FA_SF, -- System.Partition_Interface
1769 RE_FA_U8, -- System.Partition_Interface
1770 RE_FA_U16, -- System.Partition_Interface
1771 RE_FA_U32, -- System.Partition_Interface
1772 RE_FA_U64, -- System.Partition_Interface
1773 RE_FA_WC, -- System.Partition_Interface
1774 RE_FA_WWC, -- System.Partition_Interface
1775 RE_FA_String, -- System.Partition_Interface
1776 RE_FA_ObjRef, -- System.Partition_Interface
1778 RE_TA_A, -- System.Partition_Interface
1779 RE_TA_B, -- System.Partition_Interface
1780 RE_TA_C, -- System.Partition_Interface
1781 RE_TA_F, -- System.Partition_Interface
1782 RE_TA_I8, -- System.Partition_Interface
1783 RE_TA_I16, -- System.Partition_Interface
1784 RE_TA_I32, -- System.Partition_Interface
1785 RE_TA_I64, -- System.Partition_Interface
1786 RE_TA_LF, -- System.Partition_Interface
1787 RE_TA_LLF, -- System.Partition_Interface
1788 RE_TA_SF, -- System.Partition_Interface
1789 RE_TA_U8, -- System.Partition_Interface
1790 RE_TA_U16, -- System.Partition_Interface
1791 RE_TA_U32, -- System.Partition_Interface
1792 RE_TA_U64, -- System.Partition_Interface
1793 RE_TA_WC, -- System.Partition_Interface
1794 RE_TA_WWC, -- System.Partition_Interface
1795 RE_TA_String, -- System.Partition_Interface
1796 RE_TA_ObjRef, -- System.Partition_Interface
1797 RE_TA_Std_String, -- System.Partition_Interface
1798 RE_TA_TC, -- System.Partition_Interface
1800 RE_TC_A, -- System.Partition_Interface
1801 RE_TC_B, -- System.Partition_Interface
1802 RE_TC_C, -- System.Partition_Interface
1803 RE_TC_F, -- System.Partition_Interface
1804 RE_TC_I8, -- System.Partition_Interface
1805 RE_TC_I16, -- System.Partition_Interface
1806 RE_TC_I32, -- System.Partition_Interface
1807 RE_TC_I64, -- System.Partition_Interface
1808 RE_TC_LF, -- System.Partition_Interface
1809 RE_TC_LLF, -- System.Partition_Interface
1810 RE_TC_SF, -- System.Partition_Interface
1811 RE_TC_U8, -- System.Partition_Interface
1812 RE_TC_U16, -- System.Partition_Interface
1813 RE_TC_U32, -- System.Partition_Interface
1814 RE_TC_U64, -- System.Partition_Interface
1815 RE_TC_Void, -- System.Partition_Interface
1816 RE_TC_Opaque, -- System.Partition_Interface
1817 RE_TC_WC, -- System.Partition_Interface
1818 RE_TC_WWC, -- System.Partition_Interface
1819 RE_TC_String, -- System.Partition_Interface
1821 RE_Tk_Alias, -- System.Partition_Interface
1822 RE_Tk_Array, -- System.Partition_Interface
1823 RE_Tk_Sequence, -- System.Partition_Interface
1824 RE_Tk_Struct, -- System.Partition_Interface
1825 RE_Tk_Objref, -- System.Partition_Interface
1826 RE_Tk_Union, -- System.Partition_Interface
1828 RO_RD_Delay_For, -- System.Relative_Delays
1830 RE_IS_Is1, -- System.Scalar_Values
1831 RE_IS_Is2, -- System.Scalar_Values
1832 RE_IS_Is4, -- System.Scalar_Values
1833 RE_IS_Is8, -- System.Scalar_Values
1834 RE_IS_Is16, -- System.Scalar_Values
1835 RE_IS_Iu1, -- System.Scalar_Values
1836 RE_IS_Iu2, -- System.Scalar_Values
1837 RE_IS_Iu4, -- System.Scalar_Values
1838 RE_IS_Iu8, -- System.Scalar_Values
1839 RE_IS_Iu16, -- System.Scalar_Values
1840 RE_IS_Isf, -- System.Scalar_Values
1841 RE_IS_Ifl, -- System.Scalar_Values
1842 RE_IS_Ilf, -- System.Scalar_Values
1843 RE_IS_Ill, -- System.Scalar_Values
1845 RE_Mark_Id, -- System.Secondary_Stack
1846 RE_SS_Allocate, -- System.Secondary_Stack
1847 RE_SS_Pool, -- System.Secondary_Stack
1848 RE_SS_Mark, -- System.Secondary_Stack
1849 RE_SS_Release, -- System.Secondary_Stack
1850 RE_SS_Stack, -- System.Secondary_Stack
1852 RE_Shared_Var_Lock, -- System.Shared_Storage
1853 RE_Shared_Var_Unlock, -- System.Shared_Storage
1854 RE_Shared_Var_Procs, -- System.Shared_Storage
1856 RE_Abort_Undefer_Direct, -- System.Standard_Library
1857 RE_Exception_Data_Ptr, -- System.Standard_Library
1859 RE_Integer_Address, -- System.Storage_Elements
1860 RE_Storage_Array, -- System.Storage_Elements
1861 RE_Storage_Count, -- System.Storage_Elements
1862 RE_Storage_Offset, -- System.Storage_Elements
1863 RE_To_Address, -- System.Storage_Elements
1865 RE_Allocate_Any, -- System.Storage_Pools
1866 RE_Deallocate_Any, -- System.Storage_Pools
1867 RE_Root_Storage_Pool, -- System.Storage_Pools
1868 RE_Root_Storage_Pool_Ptr, -- System.Storage_Pools
1870 RE_Adjust_Controlled_Dereference, -- System.Storage_Pools.Subpools
1871 RE_Allocate_Any_Controlled, -- System.Storage_Pools.Subpools
1872 RE_Deallocate_Any_Controlled, -- System.Storage_Pools.Subpools
1873 RE_Header_Size_With_Padding, -- System.Storage_Pools.Subpools
1874 RE_Root_Storage_Pool_With_Subpools, -- System.Storage_Pools.Subpools
1875 RE_Root_Subpool, -- System.Storage_Pools.Subpools
1876 RE_Subpool_Handle, -- System.Storage_Pools.Subpools
1878 RE_I_AD, -- System.Stream_Attributes
1879 RE_I_AS, -- System.Stream_Attributes
1880 RE_I_B, -- System.Stream_Attributes
1881 RE_I_C, -- System.Stream_Attributes
1882 RE_I_F, -- System.Stream_Attributes
1883 RE_I_I, -- System.Stream_Attributes
1884 RE_I_I24, -- System.Stream_Attributes
1885 RE_I_LF, -- System.Stream_Attributes
1886 RE_I_LI, -- System.Stream_Attributes
1887 RE_I_LLF, -- System.Stream_Attributes
1888 RE_I_LLI, -- System.Stream_Attributes
1889 RE_I_LLLI, -- System.Stream_Attributes
1890 RE_I_LLLU, -- System.Stream_Attributes
1891 RE_I_LLU, -- System.Stream_Attributes
1892 RE_I_LU, -- System.Stream_Attributes
1893 RE_I_SF, -- System.Stream_Attributes
1894 RE_I_SI, -- System.Stream_Attributes
1895 RE_I_SSI, -- System.Stream_Attributes
1896 RE_I_SSU, -- System.Stream_Attributes
1897 RE_I_SU, -- System.Stream_Attributes
1898 RE_I_U, -- System.Stream_Attributes
1899 RE_I_U24, -- System.Stream_Attributes
1900 RE_I_WC, -- System.Stream_Attributes
1901 RE_I_WWC, -- System.Stream_Attributes
1903 RE_W_AD, -- System.Stream_Attributes
1904 RE_W_AS, -- System.Stream_Attributes
1905 RE_W_B, -- System.Stream_Attributes
1906 RE_W_C, -- System.Stream_Attributes
1907 RE_W_F, -- System.Stream_Attributes
1908 RE_W_I, -- System.Stream_Attributes
1909 RE_W_I24, -- System.Stream_Attributes
1910 RE_W_LF, -- System.Stream_Attributes
1911 RE_W_LI, -- System.Stream_Attributes
1912 RE_W_LLF, -- System.Stream_Attributes
1913 RE_W_LLI, -- System.Stream_Attributes
1914 RE_W_LLLI, -- System.Stream_Attributes
1915 RE_W_LLLU, -- System.Stream_Attributes
1916 RE_W_LLU, -- System.Stream_Attributes
1917 RE_W_LU, -- System.Stream_Attributes
1918 RE_W_SF, -- System.Stream_Attributes
1919 RE_W_SI, -- System.Stream_Attributes
1920 RE_W_SSI, -- System.Stream_Attributes
1921 RE_W_SSU, -- System.Stream_Attributes
1922 RE_W_SU, -- System.Stream_Attributes
1923 RE_W_U, -- System.Stream_Attributes
1924 RE_W_U24, -- System.Stream_Attributes
1925 RE_W_WC, -- System.Stream_Attributes
1926 RE_W_WWC, -- System.Stream_Attributes
1928 RE_Storage_Array_Input, -- System.Strings.Stream_Ops
1929 RE_Storage_Array_Input_Blk_IO, -- System.Strings.Stream_Ops
1930 RE_Storage_Array_Output, -- System.Strings.Stream_Ops
1931 RE_Storage_Array_Output_Blk_IO, -- System.Strings.Stream_Ops
1932 RE_Storage_Array_Read, -- System.Strings.Stream_Ops
1933 RE_Storage_Array_Read_Blk_IO, -- System.Strings.Stream_Ops
1934 RE_Storage_Array_Write, -- System.Strings.Stream_Ops
1935 RE_Storage_Array_Write_Blk_IO, -- System.Strings.Stream_Ops
1937 RE_Stream_Element_Array_Input, -- System.Strings.Stream_Ops
1938 RE_Stream_Element_Array_Input_Blk_IO, -- System.Strings.Stream_Ops
1939 RE_Stream_Element_Array_Output, -- System.Strings.Stream_Ops
1940 RE_Stream_Element_Array_Output_Blk_IO, -- System.Strings.Stream_Ops
1941 RE_Stream_Element_Array_Read, -- System.Strings.Stream_Ops
1942 RE_Stream_Element_Array_Read_Blk_IO, -- System.Strings.Stream_Ops
1943 RE_Stream_Element_Array_Write, -- System.Strings.Stream_Ops
1944 RE_Stream_Element_Array_Write_Blk_IO, -- System.Strings.Stream_Ops
1946 RE_String_Input, -- System.Strings.Stream_Ops
1947 RE_String_Input_Blk_IO, -- System.Strings.Stream_Ops
1948 RE_String_Input_Tag, -- System.Strings.Stream_Ops
1949 RE_String_Output, -- System.Strings.Stream_Ops
1950 RE_String_Output_Blk_IO, -- System.Strings.Stream_Ops
1951 RE_String_Read, -- System.Strings.Stream_Ops
1952 RE_String_Read_Blk_IO, -- System.Strings.Stream_Ops
1953 RE_String_Write, -- System.Strings.Stream_Ops
1954 RE_String_Write_Blk_IO, -- System.Strings.Stream_Ops
1956 RE_Wide_String_Input, -- System.Strings.Stream_Ops
1957 RE_Wide_String_Input_Blk_IO, -- System.Strings.Stream_Ops
1958 RE_Wide_String_Output, -- System.Strings.Stream_Ops
1959 RE_Wide_String_Output_Blk_IO, -- System.Strings.Stream_Ops
1960 RE_Wide_String_Read, -- System.Strings.Stream_Ops
1961 RE_Wide_String_Read_Blk_IO, -- System.Strings.Stream_Ops
1962 RE_Wide_String_Write, -- System.Strings.Stream_Ops
1963 RE_Wide_String_Write_Blk_IO, -- System.Strings.Stream_Ops
1965 RE_Wide_Wide_String_Input, -- System.Strings.Stream_Ops
1966 RE_Wide_Wide_String_Input_Blk_IO, -- System.Strings.Stream_Ops
1967 RE_Wide_Wide_String_Output, -- System.Strings.Stream_Ops
1968 RE_Wide_Wide_String_Output_Blk_IO, -- System.Strings.Stream_Ops
1969 RE_Wide_Wide_String_Read, -- System.Strings.Stream_Ops
1970 RE_Wide_Wide_String_Read_Blk_IO, -- System.Strings.Stream_Ops
1971 RE_Wide_Wide_String_Write, -- System.Strings.Stream_Ops
1972 RE_Wide_Wide_String_Write_Blk_IO, -- System.Strings.Stream_Ops
1974 RE_Task_Info_Type, -- System.Task_Info
1975 RE_Unspecified_Task_Info, -- System.Task_Info
1977 RE_Task_Procedure_Access, -- System.Tasking
1978 RO_ST_Number_Of_Entries, -- System.Tasking
1980 RO_ST_Task_Id, -- System.Tasking
1981 RO_ST_Null_Task, -- System.Tasking
1983 RE_Call_Modes, -- System.Tasking
1984 RE_Simple_Call, -- System.Tasking
1985 RE_Conditional_Call, -- System.Tasking
1986 RE_Asynchronous_Call, -- System.Tasking
1988 RE_Ada_Task_Control_Block, -- System.Tasking
1990 RE_Task_List, -- System.Tasking
1992 RE_Accept_List, -- System.Tasking
1993 RE_No_Rendezvous, -- System.Tasking
1994 RE_Null_Task_Entry, -- System.Tasking
1995 RE_Select_Index, -- System.Tasking
1996 RE_Else_Mode, -- System.Tasking
1997 RE_Simple_Mode, -- System.Tasking
1998 RE_Terminate_Mode, -- System.Tasking
1999 RE_Delay_Mode, -- System.Tasking
2000 RE_Entry_Index, -- System.Tasking
2001 RE_Task_Entry_Index, -- System.Tasking
2002 RE_Self, -- System.Tasking
2004 RE_Unspecified_Priority, -- System.Tasking
2006 RE_Activation_Chain, -- System.Tasking
2007 RE_Activation_Chain_Access, -- System.Tasking
2008 RE_Storage_Size, -- System.Tasking
2010 RE_Unspecified_CPU, -- System.Tasking
2012 RE_Dispatching_Domain_Access, -- System.Tasking
2014 RE_Abort_Defer, -- System.Soft_Links
2015 RE_Abort_Undefer, -- System.Soft_Links
2016 RE_Complete_Master, -- System.Soft_Links
2017 RE_Current_Master, -- System.Soft_Links
2018 RE_Dummy_Communication_Block, -- System.Soft_Links
2019 RE_Enter_Master, -- System.Soft_Links
2020 RE_Get_Current_Excep, -- System.Soft_Links
2021 RE_Get_GNAT_Exception, -- System.Soft_Links
2022 RE_Save_Library_Occurrence, -- System.Soft_Links
2024 RE_Bits_1, -- System.Unsigned_Types
2025 RE_Bits_2, -- System.Unsigned_Types
2026 RE_Bits_4, -- System.Unsigned_Types
2027 RE_Long_Long_Unsigned, -- System.Unsigned_Types
2028 RE_Long_Long_Long_Unsigned, -- System.Unsigned_Types
2029 RE_Packed_Byte, -- System.Unsigned_Types
2030 RE_Packed_Bytes1, -- System.Unsigned_Types
2031 RE_Packed_Bytes2, -- System.Unsigned_Types
2032 RE_Packed_Bytes4, -- System.Unsigned_Types
2033 RE_Rev_Packed_Bytes1, -- System.Unsigned_Types
2034 RE_Rev_Packed_Bytes2, -- System.Unsigned_Types
2035 RE_Rev_Packed_Bytes4, -- System.Unsigned_Types
2036 RE_Unsigned, -- System.Unsigned_Types
2038 RE_Value_Boolean, -- System.Val_Bool
2040 RE_Value_Character, -- System.Val_Char
2042 RE_Value_Decimal32, -- System_Val_Decimal_32
2044 RE_Value_Decimal64, -- System_Val_Decimal_64
2046 RE_Value_Decimal128, -- System_Val_Decimal_128
2048 RE_Value_Enumeration_8, -- System.Val_Enum_8
2049 RE_Value_Enumeration_16, -- System.Val_Enum_16
2050 RE_Value_Enumeration_32, -- System.Val_Enum_32
2052 RE_Valid_Value_Enumeration_8, -- System.Val_Enum_8
2053 RE_Valid_Value_Enumeration_16, -- System.Val_Enum_16
2054 RE_Valid_Value_Enumeration_32, -- System.Val_Enum_32
2056 RE_Value_Fixed32, -- System_Val_Fixed_32
2058 RE_Value_Fixed64, -- System_Val_Fixed_64
2060 RE_Value_Fixed128, -- System_Val_Fixed_128
2062 RE_Value_Float, -- System_Val_Flt
2064 RE_Value_Integer, -- System.Val_Int
2066 RE_Value_Long_Float, -- System_Val_LFlt
2068 RE_Value_Long_Long_Float, -- System_Val_LLF
2070 RE_Value_Long_Long_Integer, -- System.Val_LLI
2072 RE_Value_Long_Long_Long_Integer, -- System.Val_LLLI
2074 RE_Value_Long_Long_Unsigned, -- System.Val_LLU
2076 RE_Value_Long_Long_Long_Unsigned, -- System.Val_LLLU
2078 RE_Value_Unsigned, -- System.Val_Uns
2080 RE_Value_Wide_Character, -- System.Val_WChar
2081 RE_Value_Wide_Wide_Character, -- System.Val_WChar
2083 RE_Version_String, -- System.Version_Control
2084 RE_Get_Version_String, -- System.Version_Control
2086 RE_String_To_Wide_String, -- System.WCh_StW
2087 RE_String_To_Wide_Wide_String, -- System.WCh_StW
2089 RE_Wide_String_To_String, -- System.WCh_WtS
2090 RE_Wide_Wide_String_To_String, -- System.WCh_WtS
2092 RE_Wide_Width_Character, -- System.WWd_Char
2093 RE_Wide_Wide_Width_Character, -- System.WWd_Char
2095 RE_Wide_Wide_Width_Enumeration_8, -- System.WWd_Enum
2096 RE_Wide_Wide_Width_Enumeration_16, -- System.WWd_Enum
2097 RE_Wide_Wide_Width_Enumeration_32, -- System.WWd_Enum
2099 RE_Wide_Width_Enumeration_8, -- System.WWd_Enum
2100 RE_Wide_Width_Enumeration_16, -- System.WWd_Enum
2101 RE_Wide_Width_Enumeration_32, -- System.WWd_Enum
2103 RE_Wide_Wide_Width_Wide_Character, -- System.WWd_Wchar
2104 RE_Wide_Wide_Width_Wide_Wide_Char, -- System.WWd_Wchar
2105 RE_Wide_Width_Wide_Character, -- System.WWd_Wchar
2106 RE_Wide_Width_Wide_Wide_Character, -- System.WWd_Wchar
2108 RE_Width_Boolean, -- System.Wid_Bool
2110 RE_Width_Character, -- System.Wid_Char
2112 RE_Width_Enumeration_8, -- System.Wid_Enum
2113 RE_Width_Enumeration_16, -- System.Wid_Enum
2114 RE_Width_Enumeration_32, -- System.Wid_Enum
2116 RE_Width_Integer, -- System.Wid_Int
2118 RE_Width_Long_Long_Integer, -- System.Wid_LLI
2120 RE_Width_Long_Long_Long_Integer, -- System.Wid_LLLI
2122 RE_Width_Long_Long_Unsigned, -- System.Wid_LLU
2124 RE_Width_Long_Long_Long_Unsigned, -- System.Wid_LLLU
2126 RE_Width_Unsigned, -- System.Wid_Uns
2128 RE_Width_Wide_Character, -- System.Wid_WChar
2129 RE_Width_Wide_Wide_Character, -- System.Wid_WChar
2131 RE_Dispatching_Domain, -- Multiprocessors.Dispatching_Domains
2133 RE_Protected_Entry_Body_Array, -- Tasking.Protected_Objects.Entries
2134 RE_Protected_Entry_Queue_Max_Array, -- Tasking.Protected_Objects.Entries
2135 RE_Protection_Entries, -- Tasking.Protected_Objects.Entries
2136 RE_Protection_Entries_Access, -- Tasking.Protected_Objects.Entries
2137 RE_Initialize_Protection_Entries, -- Tasking.Protected_Objects.Entries
2138 RE_Lock_Entries, -- Tasking.Protected_Objects.Entries
2139 RE_Unlock_Entries, -- Tasking.Protected_Objects.Entries
2140 RO_PE_Get_Ceiling, -- Tasking.Protected_Objects.Entries
2141 RO_PE_Number_Of_Entries, -- Tasking.Protected_Objects.Entries
2142 RO_PE_Set_Ceiling, -- Tasking.Protected_Objects.Entries
2144 RE_Communication_Block, -- Protected_Objects.Operations
2145 RE_Protected_Entry_Call, -- Protected_Objects.Operations
2146 RE_Service_Entries, -- Protected_Objects.Operations
2147 RE_Cancel_Protected_Entry_Call, -- Protected_Objects.Operations
2148 RE_Enqueued, -- Protected_Objects.Operations
2149 RE_Cancelled, -- Protected_Objects.Operations
2150 RE_Complete_Entry_Body, -- Protected_Objects.Operations
2151 RE_Exceptional_Complete_Entry_Body, -- Protected_Objects.Operations
2152 RE_Requeue_Protected_Entry, -- Protected_Objects.Operations
2153 RE_Requeue_Task_To_Protected_Entry, -- Protected_Objects.Operations
2154 RE_Protected_Count, -- Protected_Objects.Operations
2155 RE_Protected_Entry_Caller, -- Protected_Objects.Operations
2156 RE_Timed_Protected_Entry_Call, -- Protected_Objects.Operations
2158 RE_Protection_Entry, -- Protected_Objects.Single_Entry
2159 RE_Initialize_Protection_Entry, -- Protected_Objects.Single_Entry
2160 RE_Lock_Entry, -- Protected_Objects.Single_Entry
2161 RE_Unlock_Entry, -- Protected_Objects.Single_Entry
2162 RE_Protected_Single_Entry_Call, -- Protected_Objects.Single_Entry
2163 RE_Service_Entry, -- Protected_Objects.Single_Entry
2164 RE_Exceptional_Complete_Single_Entry_Body,
2165 RE_Protected_Count_Entry, -- Protected_Objects.Single_Entry
2166 RE_Protected_Single_Entry_Caller, -- Protected_Objects.Single_Entry
2168 RE_Protected_Entry_Index, -- System.Tasking.Protected_Objects
2169 RE_Entry_Body, -- System.Tasking.Protected_Objects
2170 RE_Protection, -- System.Tasking.Protected_Objects
2171 RE_Initialize_Protection, -- System.Tasking.Protected_Objects
2172 RE_Finalize_Protection, -- System.Tasking.Protected_Objects
2173 RE_Lock, -- System.Tasking.Protected_Objects
2174 RE_Lock_Read_Only, -- System.Tasking.Protected_Objects
2175 RE_Get_Ceiling, -- System.Tasking.Protected_Objects
2176 RE_Set_Ceiling, -- System.Tasking.Protected_Objects
2177 RE_Unlock, -- System.Tasking.Protected_Objects
2179 RE_Delay_Block, -- System.Tasking.Async_Delays
2180 RE_Timed_Out, -- System.Tasking.Async_Delays
2181 RE_Cancel_Async_Delay, -- System.Tasking.Async_Delays
2182 RE_Enqueue_Duration, -- System.Tasking.Async_Delays
2183 RE_Enqueue_Calendar, -- System.Tasking.Async_Delays
2184 RE_Enqueue_RT, -- System.Tasking.Async_Delays
2186 RE_Accept_Call, -- System.Tasking.Rendezvous
2187 RE_Accept_Trivial, -- System.Tasking.Rendezvous
2188 RE_Callable, -- System.Tasking.Rendezvous
2189 RE_Call_Simple, -- System.Tasking.Rendezvous
2190 RE_Requeue_Task_Entry, -- System.Tasking.Rendezvous
2191 RE_Requeue_Protected_To_Task_Entry, -- System.Tasking.Rendezvous
2192 RE_Cancel_Task_Entry_Call, -- System.Tasking.Rendezvous
2193 RE_Complete_Rendezvous, -- System.Tasking.Rendezvous
2194 RE_Task_Count, -- System.Tasking.Rendezvous
2195 RE_Exceptional_Complete_Rendezvous, -- System.Tasking.Rendezvous
2196 RE_Selective_Wait, -- System.Tasking.Rendezvous
2197 RE_Task_Entry_Call, -- System.Tasking.Rendezvous
2198 RE_Task_Entry_Caller, -- System.Tasking.Rendezvous
2199 RE_Timed_Task_Entry_Call, -- System.Tasking.Rendezvous
2200 RE_Timed_Selective_Wait, -- System.Tasking.Rendezvous
2202 RE_Activate_Restricted_Tasks, -- System.Tasking.Restricted.Stages
2203 RE_Complete_Restricted_Activation, -- System.Tasking.Restricted.Stages
2204 RE_Create_Restricted_Task, -- System.Tasking.Restricted.Stages
2205 RE_Create_Restricted_Task_Sequential, -- System.Tasking.Restricted.Stages
2206 RE_Complete_Restricted_Task, -- System.Tasking.Restricted.Stages
2207 RE_Restricted_Terminated, -- System.Tasking.Restricted.Stages
2209 RE_Abort_Tasks, -- System.Tasking.Stages
2210 RE_Activate_Tasks, -- System.Tasking.Stages
2211 RE_Complete_Activation, -- System.Tasking.Stages
2212 RE_Create_Task, -- System.Tasking.Stages
2213 RE_Complete_Task, -- System.Tasking.Stages
2214 RE_Free_Task, -- System.Tasking.Stages
2215 RE_Expunge_Unactivated_Tasks, -- System.Tasking.Stages
2216 RE_Move_Activation_Chain, -- System.Tasking_Stages
2217 RE_Terminated); -- System.Tasking.Stages
2219 -- The following declarations build a table that is indexed by the RTE
2220 -- function to determine the unit containing the given entity. This table
2221 -- is sorted in order of package names.
2223 RE_Unit_Table : constant array (RE_Id) of RTU_Id := (
2225 RE_Null => RTU_Null,
2227 RO_CA_Clock_Time => Ada_Calendar,
2228 RO_CA_Time => Ada_Calendar,
2230 RO_CA_Delay_For => Ada_Calendar_Delays,
2231 RO_CA_Delay_Until => Ada_Calendar_Delays,
2232 RO_CA_To_Duration => Ada_Calendar_Delays,
2234 RE_Yield => Ada_Dispatching,
2236 RE_Set_Deadline => Ada_Dispatching_EDF,
2238 RE_Code_Loc => Ada_Exceptions,
2239 RE_Exception_Id => Ada_Exceptions,
2240 RE_Exception_Identity => Ada_Exceptions,
2241 RE_Exception_Information => Ada_Exceptions,
2242 RE_Exception_Message => Ada_Exceptions,
2243 RE_Exception_Name_Simple => Ada_Exceptions,
2244 RE_Exception_Occurrence => Ada_Exceptions,
2245 RE_Exception_Occurrence_Access => Ada_Exceptions,
2246 RE_Null_Id => Ada_Exceptions,
2247 RE_Null_Occurrence => Ada_Exceptions,
2248 RE_Poll => Ada_Exceptions,
2249 RE_Raise_Exception => Ada_Exceptions,
2250 RE_Raise_Exception_Always => Ada_Exceptions,
2251 RE_Raise_From_Controlled_Operation => Ada_Exceptions,
2252 RE_Reraise_Occurrence => Ada_Exceptions,
2253 RE_Reraise_Occurrence_Always => Ada_Exceptions,
2254 RE_Reraise_Occurrence_No_Defer => Ada_Exceptions,
2255 RE_Save_Occurrence => Ada_Exceptions,
2256 RE_Triggered_By_Abort => Ada_Exceptions,
2258 RE_Interrupt_ID => Ada_Interrupts,
2259 RE_Is_Reserved => Ada_Interrupts,
2260 RE_Is_Attached => Ada_Interrupts,
2261 RE_Current_Handler => Ada_Interrupts,
2262 RE_Attach_Handler => Ada_Interrupts,
2263 RE_Exchange_Handler => Ada_Interrupts,
2264 RE_Detach_Handler => Ada_Interrupts,
2265 RE_Reference => Ada_Interrupts,
2267 RE_Names => Ada_Interrupts_Names,
2269 RE_Clock => Ada_Real_Time,
2270 RE_Clock_Time => Ada_Real_Time,
2271 RE_Time_Span => Ada_Real_Time,
2272 RE_Time_Span_Zero => Ada_Real_Time,
2273 RO_RT_Time => Ada_Real_Time,
2275 RO_RT_Delay_Until => Ada_Real_Time_Delays,
2276 RO_RT_To_Duration => Ada_Real_Time_Delays,
2278 RE_Set_Handler => Ada_Real_Time_Timing_Events,
2279 RE_Timing_Event => Ada_Real_Time_Timing_Events,
2281 RE_Root_Stream_Type => Ada_Streams,
2282 RE_Stream_Element => Ada_Streams,
2283 RE_Stream_Element_Array => Ada_Streams,
2284 RE_Stream_Element_Offset => Ada_Streams,
2286 RE_Stream_Access => Ada_Streams_Stream_IO,
2288 RO_SU_Super_String => Ada_Strings_Superbounded,
2290 RO_WI_Super_String => Ada_Strings_Wide_Superbounded,
2292 RO_WW_Super_String => Ada_Strings_Wide_Wide_Superbounded,
2294 RE_Unbounded_String => Ada_Strings_Unbounded,
2296 RE_Root_Buffer_Type => Ada_Strings_Text_Buffers,
2297 RE_Put_UTF_8 => Ada_Strings_Text_Buffers,
2298 RE_Wide_Wide_Put => Ada_Strings_Text_Buffers,
2300 RE_Buffer_Type => Ada_Strings_Text_Buffers_Unbounded,
2301 RE_Get => Ada_Strings_Text_Buffers_Unbounded,
2302 RE_Wide_Get => Ada_Strings_Text_Buffers_Unbounded,
2303 RE_Wide_Wide_Get => Ada_Strings_Text_Buffers_Unbounded,
2305 RE_Wait_For_Release => Ada_Synchronous_Barriers,
2307 RE_Suspend_Until_True => Ada_Synchronous_Task_Control,
2309 RE_Access_Level => Ada_Tags,
2310 RE_Alignment => Ada_Tags,
2311 RE_Address_Array => Ada_Tags,
2312 RE_Addr_Ptr => Ada_Tags,
2313 RE_Base_Address => Ada_Tags,
2314 RE_Check_Interface_Conversion => Ada_Tags,
2315 RE_Check_TSD => Ada_Tags,
2316 RE_Cstring_Ptr => Ada_Tags,
2317 RE_CW_Membership => Ada_Tags,
2318 RE_Descendant_Tag => Ada_Tags,
2319 RE_Dispatch_Table => Ada_Tags,
2320 RE_Dispatch_Table_Wrapper => Ada_Tags,
2321 RE_Displace => Ada_Tags,
2322 RE_DT => Ada_Tags,
2323 RE_DT_Offset_To_Top_Offset => Ada_Tags,
2324 RE_DT_Predef_Prims_Offset => Ada_Tags,
2325 RE_DT_Typeinfo_Ptr_Size => Ada_Tags,
2326 RE_External_Tag => Ada_Tags,
2327 RO_TA_External_Tag => Ada_Tags,
2328 RE_Get_Access_Level => Ada_Tags,
2329 RE_Get_Alignment => Ada_Tags,
2330 RE_Get_Entry_Index => Ada_Tags,
2331 RE_Get_Offset_Index => Ada_Tags,
2332 RE_Get_Prim_Op_Kind => Ada_Tags,
2333 RE_Get_Tagged_Kind => Ada_Tags,
2334 RE_HT_Link => Ada_Tags,
2335 RE_Idepth => Ada_Tags,
2336 RE_Interfaces_Array => Ada_Tags,
2337 RE_Interfaces_Table => Ada_Tags,
2338 RE_Interface_Data => Ada_Tags,
2339 RE_Interface_Data_Element => Ada_Tags,
2340 RE_Interface_Tag => Ada_Tags,
2341 RE_Is_Abstract => Ada_Tags,
2342 RE_IW_Membership => Ada_Tags,
2343 RE_Max_Predef_Prims => Ada_Tags,
2344 RE_Needs_Finalization => Ada_Tags,
2345 RE_No_Dispatch_Table_Wrapper => Ada_Tags,
2346 RE_No_Tag => Ada_Tags,
2347 RE_NDT_Prims_Ptr => Ada_Tags,
2348 RE_NDT_TSD => Ada_Tags,
2349 RE_Num_Prims => Ada_Tags,
2350 RE_Object_Specific_Data => Ada_Tags,
2351 RE_Offset_To_Top => Ada_Tags,
2352 RE_Offset_To_Top_Ptr => Ada_Tags,
2353 RE_Offset_To_Top_Function_Ptr => Ada_Tags,
2354 RE_OSD_Table => Ada_Tags,
2355 RE_OSD_Num_Prims => Ada_Tags,
2356 RE_POK_Function => Ada_Tags,
2357 RE_POK_Procedure => Ada_Tags,
2358 RE_POK_Protected_Entry => Ada_Tags,
2359 RE_POK_Protected_Function => Ada_Tags,
2360 RE_POK_Protected_Procedure => Ada_Tags,
2361 RE_POK_Task_Entry => Ada_Tags,
2362 RE_POK_Task_Function => Ada_Tags,
2363 RE_POK_Task_Procedure => Ada_Tags,
2364 RE_Predef_Prims => Ada_Tags,
2365 RE_Predef_Prims_Table_Ptr => Ada_Tags,
2366 RE_Prim_Op_Kind => Ada_Tags,
2367 RE_Prim_Ptr => Ada_Tags,
2368 RE_Prims_Ptr => Ada_Tags,
2369 RE_Primary_DT => Ada_Tags,
2370 RE_Signature => Ada_Tags,
2371 RE_SSD => Ada_Tags,
2372 RE_TSD => Ada_Tags,
2373 RE_Type_Specific_Data => Ada_Tags,
2374 RE_Register_Interface_Offset => Ada_Tags,
2375 RE_Register_Tag => Ada_Tags,
2376 RE_Register_TSD => Ada_Tags,
2377 RE_Transportable => Ada_Tags,
2378 RE_Secondary_DT => Ada_Tags,
2379 RE_Secondary_Tag => Ada_Tags,
2380 RE_Select_Specific_Data => Ada_Tags,
2381 RE_Set_Entry_Index => Ada_Tags,
2382 RE_Set_Dynamic_Offset_To_Top => Ada_Tags,
2383 RE_Set_Prim_Op_Kind => Ada_Tags,
2384 RE_Size_Func => Ada_Tags,
2385 RE_Size_Ptr => Ada_Tags,
2386 RE_Tag => Ada_Tags,
2387 RE_Tag_Error => Ada_Tags,
2388 RE_Tag_Kind => Ada_Tags,
2389 RE_Tag_Ptr => Ada_Tags,
2390 RE_Tag_Table => Ada_Tags,
2391 RE_Tags_Table => Ada_Tags,
2392 RE_Tagged_Kind => Ada_Tags,
2393 RE_Type_Specific_Data_Ptr => Ada_Tags,
2394 RE_TK_Abstract_Limited_Tagged => Ada_Tags,
2395 RE_TK_Abstract_Tagged => Ada_Tags,
2396 RE_TK_Limited_Tagged => Ada_Tags,
2397 RE_TK_Protected => Ada_Tags,
2398 RE_TK_Tagged => Ada_Tags,
2399 RE_TK_Task => Ada_Tags,
2400 RE_Unregister_Tag => Ada_Tags,
2401 RE_Wide_Wide_Expanded_Name => Ada_Tags,
2403 RE_Set_Specific_Handler => Ada_Task_Termination,
2404 RE_Specific_Handler => Ada_Task_Termination,
2406 RE_Abort_Task => Ada_Task_Identification,
2407 RE_Current_Task => Ada_Task_Identification,
2408 RO_AT_Task_Id => Ada_Task_Identification,
2409 RE_Tasking_State => Ada_Task_Identification,
2411 RE_Decimal_IO => Ada_Text_IO,
2412 RE_Fixed_IO => Ada_Text_IO,
2414 RO_WT_Decimal_IO => Ada_Wide_Text_IO,
2415 RO_WT_Fixed_IO => Ada_Wide_Text_IO,
2417 RO_WW_Decimal_IO => Ada_Wide_Wide_Text_IO,
2418 RO_WW_Fixed_IO => Ada_Wide_Wide_Text_IO,
2420 RE_Stream_T => CUDA_Driver_Types,
2422 RE_Fatbin_Wrapper => CUDA_Internal,
2423 RE_Launch_Kernel => CUDA_Internal,
2424 RE_Pop_Call_Configuration => CUDA_Internal,
2425 RE_Push_Call_Configuration => CUDA_Internal,
2426 RE_Register_Fat_Binary => CUDA_Internal,
2427 RE_Register_Fat_Binary_End => CUDA_Internal,
2428 RE_Register_Function => CUDA_Internal,
2430 RE_Dim3 => CUDA_Vector_Types,
2432 RE_Integer_8 => Interfaces,
2433 RE_Integer_16 => Interfaces,
2434 RE_Integer_32 => Interfaces,
2435 RE_Integer_64 => Interfaces,
2436 RE_Integer_128 => Interfaces,
2437 RE_Unsigned_8 => Interfaces,
2438 RE_Unsigned_16 => Interfaces,
2439 RE_Unsigned_32 => Interfaces,
2440 RE_Unsigned_64 => Interfaces,
2441 RE_Unsigned_128 => Interfaces,
2443 RO_IC_Unsigned => Interfaces_C,
2445 RE_Chars_Ptr => Interfaces_C_Strings,
2446 RE_New_Char_Array => Interfaces_C_Strings,
2448 RE_Address => System,
2449 RE_Any_Priority => System,
2450 RE_Bit_Order => System,
2451 RE_Default_Priority => System,
2452 RE_High_Order_First => System,
2453 RE_Interrupt_Priority => System,
2454 RE_Lib_Stop => System,
2455 RE_Low_Order_First => System,
2456 RE_Max_Base_Digits => System,
2457 RE_Max_Priority => System,
2458 RE_Null_Address => System,
2459 RE_Priority => System,
2461 RE_Address_Image => System_Address_Image,
2463 RE_Add_With_Ovflo_Check64 => System_Arith_64,
2464 RE_Double_Divide64 => System_Arith_64,
2465 RE_Multiply_With_Ovflo_Check64 => System_Arith_64,
2466 RE_Scaled_Divide64 => System_Arith_64,
2467 RE_Subtract_With_Ovflo_Check64 => System_Arith_64,
2469 RE_Add_With_Ovflo_Check128 => System_Arith_128,
2470 RE_Double_Divide128 => System_Arith_128,
2471 RE_Multiply_With_Ovflo_Check128 => System_Arith_128,
2472 RE_Subtract_With_Ovflo_Check128 => System_Arith_128,
2473 RE_Scaled_Divide128 => System_Arith_128,
2475 RE_Create_AST_Handler => System_AST_Handling,
2477 RE_Assert_Failure => System_Assertions,
2478 RE_Raise_Assert_Failure => System_Assertions,
2480 RE_Lock_Free_Read_8 => System_Atomic_Primitives,
2481 RE_Lock_Free_Read_16 => System_Atomic_Primitives,
2482 RE_Lock_Free_Read_32 => System_Atomic_Primitives,
2483 RE_Lock_Free_Read_64 => System_Atomic_Primitives,
2484 RE_Lock_Free_Try_Write_8 => System_Atomic_Primitives,
2485 RE_Lock_Free_Try_Write_16 => System_Atomic_Primitives,
2486 RE_Lock_Free_Try_Write_32 => System_Atomic_Primitives,
2487 RE_Lock_Free_Try_Write_64 => System_Atomic_Primitives,
2488 RE_Uint8 => System_Atomic_Primitives,
2489 RE_Uint16 => System_Atomic_Primitives,
2490 RE_Uint32 => System_Atomic_Primitives,
2491 RE_Uint64 => System_Atomic_Primitives,
2493 RE_Test_And_Set_Flag => System_Atomic_Operations_Test_And_Set,
2494 RE_Atomic_Test_And_Set => System_Atomic_Operations_Test_And_Set,
2496 RE_AST_Handler => System_Aux_DEC,
2497 RE_Import_Address => System_Aux_DEC,
2498 RE_Import_Value => System_Aux_DEC,
2499 RE_No_AST_Handler => System_Aux_DEC,
2500 RE_Type_Class => System_Aux_DEC,
2501 RE_Type_Class_Enumeration => System_Aux_DEC,
2502 RE_Type_Class_Integer => System_Aux_DEC,
2503 RE_Type_Class_Fixed_Point => System_Aux_DEC,
2504 RE_Type_Class_Floating_Point => System_Aux_DEC,
2505 RE_Type_Class_Array => System_Aux_DEC,
2506 RE_Type_Class_Record => System_Aux_DEC,
2507 RE_Type_Class_Access => System_Aux_DEC,
2508 RE_Type_Class_Task => System_Aux_DEC,
2509 RE_Type_Class_Address => System_Aux_DEC,
2511 RE_Big_Abs => System_Bignums,
2512 RE_Big_Add => System_Bignums,
2513 RE_Big_Div => System_Bignums,
2514 RE_Big_Exp => System_Bignums,
2515 RE_Big_Mod => System_Bignums,
2516 RE_Big_Mul => System_Bignums,
2517 RE_Big_Neg => System_Bignums,
2518 RE_Big_Rem => System_Bignums,
2519 RE_Big_Sub => System_Bignums,
2521 RE_Big_EQ => System_Bignums,
2522 RE_Big_GE => System_Bignums,
2523 RE_Big_GT => System_Bignums,
2524 RE_Big_LE => System_Bignums,
2525 RE_Big_LT => System_Bignums,
2526 RE_Big_NE => System_Bignums,
2528 RE_Bignum => System_Bignums,
2529 RE_Bignum_In_LLI_Range => System_Bignums,
2530 RE_To_Bignum => System_Bignums,
2531 RE_From_Bignum => System_Bignums,
2533 RE_Val_2 => System_Bitfields,
2534 RE_Copy_Bitfield => System_Bitfields,
2535 RE_Fast_Copy_Bitfield => System_Bitfields,
2537 RE_Bit_And => System_Bit_Ops,
2538 RE_Bit_Eq => System_Bit_Ops,
2539 RE_Bit_Not => System_Bit_Ops,
2540 RE_Bit_Or => System_Bit_Ops,
2541 RE_Bit_Xor => System_Bit_Ops,
2543 RE_Checked_Pool => System_Checked_Pools,
2545 RE_Vector_Not => System_Boolean_Array_Operations,
2546 RE_Vector_And => System_Boolean_Array_Operations,
2547 RE_Vector_Or => System_Boolean_Array_Operations,
2548 RE_Vector_Nand => System_Boolean_Array_Operations,
2549 RE_Vector_Nor => System_Boolean_Array_Operations,
2550 RE_Vector_Nxor => System_Boolean_Array_Operations,
2551 RE_Vector_Xor => System_Boolean_Array_Operations,
2553 RE_Bswap_16 => System_Byte_Swapping,
2554 RE_Bswap_32 => System_Byte_Swapping,
2555 RE_Bswap_64 => System_Byte_Swapping,
2556 RE_Bswap_128 => System_Byte_Swapping,
2558 RE_Compare_Array_S8 => System_Compare_Array_Signed_8,
2559 RE_Compare_Array_S8_Unaligned => System_Compare_Array_Signed_8,
2561 RE_Compare_Array_S16 => System_Compare_Array_Signed_16,
2563 RE_Compare_Array_S32 => System_Compare_Array_Signed_32,
2565 RE_Compare_Array_S64 => System_Compare_Array_Signed_64,
2567 RE_Compare_Array_S128 => System_Compare_Array_Signed_128,
2569 RE_Compare_Array_U8 => System_Compare_Array_Unsigned_8,
2570 RE_Compare_Array_U8_Unaligned => System_Compare_Array_Unsigned_8,
2572 RE_Compare_Array_U16 => System_Compare_Array_Unsigned_16,
2574 RE_Compare_Array_U32 => System_Compare_Array_Unsigned_32,
2576 RE_Compare_Array_U64 => System_Compare_Array_Unsigned_64,
2578 RE_Compare_Array_U128 => System_Compare_Array_Unsigned_128,
2580 RE_Str_Concat_2 => System_Concat_2,
2581 RE_Str_Concat_3 => System_Concat_3,
2582 RE_Str_Concat_4 => System_Concat_4,
2583 RE_Str_Concat_5 => System_Concat_5,
2584 RE_Str_Concat_6 => System_Concat_6,
2585 RE_Str_Concat_7 => System_Concat_7,
2586 RE_Str_Concat_8 => System_Concat_8,
2587 RE_Str_Concat_9 => System_Concat_9,
2589 RE_Str_Concat_Bounds_2 => System_Concat_2,
2590 RE_Str_Concat_Bounds_3 => System_Concat_3,
2591 RE_Str_Concat_Bounds_4 => System_Concat_4,
2592 RE_Str_Concat_Bounds_5 => System_Concat_5,
2593 RE_Str_Concat_Bounds_6 => System_Concat_6,
2594 RE_Str_Concat_Bounds_7 => System_Concat_7,
2595 RE_Str_Concat_Bounds_8 => System_Concat_8,
2596 RE_Str_Concat_Bounds_9 => System_Concat_9,
2598 RE_Get_Active_Partition_Id => System_DSA_Services,
2599 RE_Get_Local_Partition_Id => System_DSA_Services,
2600 RE_Get_Passive_Partition_Id => System_DSA_Services,
2602 RE_Any_Container_Ptr => System_DSA_Types,
2604 RE_Check_Standard_Allocator => System_Elaboration_Allocators,
2606 RE_Register_Exception => System_Exception_Table,
2608 RE_Local_Raise => System_Exceptions_Debug,
2610 RE_Exn_Integer => System_Exn_Int,
2612 RE_Exn_Float => System_Exn_Flt,
2614 RE_Exn_Long_Float => System_Exn_LFlt,
2616 RE_Exn_Long_Long_Float => System_Exn_LLF,
2618 RE_Exn_Long_Long_Integer => System_Exn_LLI,
2620 RE_Exn_Long_Long_Long_Integer => System_Exn_LLLI,
2622 RE_Exp_Integer => System_Exp_Int,
2624 RE_Exp_Long_Long_Integer => System_Exp_LLI,
2626 RE_Exp_Long_Long_Long_Integer => System_Exp_LLLI,
2628 RE_Exp_Long_Long_Unsigned => System_Exp_LLU,
2630 RE_Exp_Long_Long_Long_Unsigned => System_Exp_LLLU,
2632 RE_Exp_Modular => System_Exp_Mod,
2634 RE_Exp_Unsigned => System_Exp_Uns,
2636 RE_Attr_Float => System_Fat_Flt,
2638 RE_Attr_Long_Float => System_Fat_LFlt,
2640 RE_Attr_Long_Long_Float => System_Fat_LLF,
2642 RE_Attr_VAX_D_Float => System_Fat_VAX_D_Float,
2643 RE_Fat_VAX_D => System_Fat_VAX_D_Float,
2645 RE_Attr_VAX_F_Float => System_Fat_VAX_F_Float,
2646 RE_Fat_VAX_F => System_Fat_VAX_F_Float,
2648 RE_Attr_VAX_G_Float => System_Fat_VAX_G_Float,
2649 RE_Fat_VAX_G => System_Fat_VAX_G_Float,
2651 RE_Add_Offset_To_Address => System_Finalization_Masters,
2652 RE_Attach => System_Finalization_Masters,
2653 RE_Base_Pool => System_Finalization_Masters,
2654 RE_Finalization_Master => System_Finalization_Masters,
2655 RE_Finalization_Master_Ptr => System_Finalization_Masters,
2656 RE_Set_Base_Pool => System_Finalization_Masters,
2657 RE_Set_Finalize_Address => System_Finalization_Masters,
2658 RE_Set_Is_Heterogeneous => System_Finalization_Masters,
2660 RE_Root_Controlled => System_Finalization_Root,
2661 RE_Root_Controlled_Ptr => System_Finalization_Root,
2663 RE_Fore_Decimal32 => System_Fore_Decimal_32,
2665 RE_Fore_Decimal64 => System_Fore_Decimal_64,
2667 RE_Fore_Decimal128 => System_Fore_Decimal_128,
2669 RE_Fore_Fixed => System_Fore_Real,
2671 RE_Fore_Fixed32 => System_Fore_Fixed_32,
2673 RE_Fore_Fixed64 => System_Fore_Fixed_64,
2675 RE_Fore_Fixed128 => System_Fore_Fixed_128,
2677 RE_Image_Boolean => System_Img_Bool,
2679 RE_Image_Character => System_Img_Char,
2680 RE_Image_Character_05 => System_Img_Char,
2682 RE_Image_Decimal32 => System_Img_Decimal_32,
2684 RE_Image_Decimal64 => System_Img_Decimal_64,
2686 RE_Image_Decimal128 => System_Img_Decimal_128,
2688 RE_Image_Enumeration_8 => System_Img_Enum_8,
2690 RE_Image_Enumeration_16 => System_Img_Enum_16,
2692 RE_Image_Enumeration_32 => System_Img_Enum_32,
2694 RE_Image_Float => System_Img_Flt,
2696 RE_Image_Integer => System_Img_Int,
2698 RE_Image_Long_Float => System_Img_LFlt,
2700 RE_Image_Long_Long_Float => System_Img_LLF,
2702 RE_Image_Long_Long_Integer => System_Img_LLI,
2704 RE_Image_Long_Long_Long_Integer => System_Img_LLLI,
2706 RE_Image_Long_Long_Unsigned => System_Img_LLU,
2708 RE_Image_Long_Long_Long_Unsigned => System_Img_LLLU,
2710 RE_Image_Fixed => System_Img_LFlt,
2712 RE_Image_Fixed32 => System_Img_Fixed_32,
2714 RE_Image_Fixed64 => System_Img_Fixed_64,
2716 RE_Image_Fixed128 => System_Img_Fixed_128,
2718 RE_Image_Unsigned => System_Img_Uns,
2720 RE_Image_Wide_Character => System_Img_WChar,
2721 RE_Image_Wide_Wide_Character => System_Img_WChar,
2723 RE_Bind_Interrupt_To_Entry => System_Interrupts,
2724 RE_Default_Interrupt_Priority => System_Interrupts,
2725 RE_Dynamic_Interrupt_Protection => System_Interrupts,
2726 RE_Install_Handlers => System_Interrupts,
2727 RE_Install_Restricted_Handlers => System_Interrupts,
2728 RE_Register_Interrupt_Handler => System_Interrupts,
2729 RE_Static_Interrupt_Protection => System_Interrupts,
2730 RE_System_Interrupt_Id => System_Interrupts,
2732 RE_Expon_LLF => System_Long_Long_Float_Expon,
2734 RE_Asm_Insn => System_Machine_Code,
2735 RE_Asm_Input_Operand => System_Machine_Code,
2736 RE_Asm_Output_Operand => System_Machine_Code,
2738 RE_Mantissa_Value => System_Mantissa,
2740 RE_Free => System_Memory,
2742 RE_CPU_Range => System_Multiprocessors,
2744 RE_Bits_03 => System_Pack_03,
2745 RE_Get_03 => System_Pack_03,
2746 RE_Set_03 => System_Pack_03,
2748 RE_Bits_05 => System_Pack_05,
2749 RE_Get_05 => System_Pack_05,
2750 RE_Set_05 => System_Pack_05,
2752 RE_Bits_06 => System_Pack_06,
2753 RE_Get_06 => System_Pack_06,
2754 RE_GetU_06 => System_Pack_06,
2755 RE_Set_06 => System_Pack_06,
2756 RE_SetU_06 => System_Pack_06,
2758 RE_Bits_07 => System_Pack_07,
2759 RE_Get_07 => System_Pack_07,
2760 RE_Set_07 => System_Pack_07,
2762 RE_Bits_09 => System_Pack_09,
2763 RE_Get_09 => System_Pack_09,
2764 RE_Set_09 => System_Pack_09,
2766 RE_Bits_10 => System_Pack_10,
2767 RE_Get_10 => System_Pack_10,
2768 RE_GetU_10 => System_Pack_10,
2769 RE_Set_10 => System_Pack_10,
2770 RE_SetU_10 => System_Pack_10,
2772 RE_Bits_11 => System_Pack_11,
2773 RE_Get_11 => System_Pack_11,
2774 RE_Set_11 => System_Pack_11,
2776 RE_Bits_12 => System_Pack_12,
2777 RE_Get_12 => System_Pack_12,
2778 RE_GetU_12 => System_Pack_12,
2779 RE_Set_12 => System_Pack_12,
2780 RE_SetU_12 => System_Pack_12,
2782 RE_Bits_13 => System_Pack_13,
2783 RE_Get_13 => System_Pack_13,
2784 RE_Set_13 => System_Pack_13,
2786 RE_Bits_14 => System_Pack_14,
2787 RE_Get_14 => System_Pack_14,
2788 RE_GetU_14 => System_Pack_14,
2789 RE_Set_14 => System_Pack_14,
2790 RE_SetU_14 => System_Pack_14,
2792 RE_Bits_15 => System_Pack_15,
2793 RE_Get_15 => System_Pack_15,
2794 RE_Set_15 => System_Pack_15,
2796 RE_Bits_17 => System_Pack_17,
2797 RE_Get_17 => System_Pack_17,
2798 RE_Set_17 => System_Pack_17,
2800 RE_Bits_18 => System_Pack_18,
2801 RE_Get_18 => System_Pack_18,
2802 RE_GetU_18 => System_Pack_18,
2803 RE_Set_18 => System_Pack_18,
2804 RE_SetU_18 => System_Pack_18,
2806 RE_Bits_19 => System_Pack_19,
2807 RE_Get_19 => System_Pack_19,
2808 RE_Set_19 => System_Pack_19,
2810 RE_Bits_20 => System_Pack_20,
2811 RE_Get_20 => System_Pack_20,
2812 RE_GetU_20 => System_Pack_20,
2813 RE_Set_20 => System_Pack_20,
2814 RE_SetU_20 => System_Pack_20,
2816 RE_Bits_21 => System_Pack_21,
2817 RE_Get_21 => System_Pack_21,
2818 RE_Set_21 => System_Pack_21,
2820 RE_Bits_22 => System_Pack_22,
2821 RE_Get_22 => System_Pack_22,
2822 RE_GetU_22 => System_Pack_22,
2823 RE_Set_22 => System_Pack_22,
2824 RE_SetU_22 => System_Pack_22,
2826 RE_Bits_23 => System_Pack_23,
2827 RE_Get_23 => System_Pack_23,
2828 RE_Set_23 => System_Pack_23,
2830 RE_Bits_24 => System_Pack_24,
2831 RE_Get_24 => System_Pack_24,
2832 RE_GetU_24 => System_Pack_24,
2833 RE_Set_24 => System_Pack_24,
2834 RE_SetU_24 => System_Pack_24,
2836 RE_Bits_25 => System_Pack_25,
2837 RE_Get_25 => System_Pack_25,
2838 RE_Set_25 => System_Pack_25,
2840 RE_Bits_26 => System_Pack_26,
2841 RE_Get_26 => System_Pack_26,
2842 RE_GetU_26 => System_Pack_26,
2843 RE_Set_26 => System_Pack_26,
2844 RE_SetU_26 => System_Pack_26,
2846 RE_Bits_27 => System_Pack_27,
2847 RE_Get_27 => System_Pack_27,
2848 RE_Set_27 => System_Pack_27,
2850 RE_Bits_28 => System_Pack_28,
2851 RE_Get_28 => System_Pack_28,
2852 RE_GetU_28 => System_Pack_28,
2853 RE_Set_28 => System_Pack_28,
2854 RE_SetU_28 => System_Pack_28,
2856 RE_Bits_29 => System_Pack_29,
2857 RE_Get_29 => System_Pack_29,
2858 RE_Set_29 => System_Pack_29,
2860 RE_Bits_30 => System_Pack_30,
2861 RE_Get_30 => System_Pack_30,
2862 RE_GetU_30 => System_Pack_30,
2863 RE_Set_30 => System_Pack_30,
2864 RE_SetU_30 => System_Pack_30,
2866 RE_Bits_31 => System_Pack_31,
2867 RE_Get_31 => System_Pack_31,
2868 RE_Set_31 => System_Pack_31,
2870 RE_Bits_33 => System_Pack_33,
2871 RE_Get_33 => System_Pack_33,
2872 RE_Set_33 => System_Pack_33,
2874 RE_Bits_34 => System_Pack_34,
2875 RE_Get_34 => System_Pack_34,
2876 RE_GetU_34 => System_Pack_34,
2877 RE_Set_34 => System_Pack_34,
2878 RE_SetU_34 => System_Pack_34,
2880 RE_Bits_35 => System_Pack_35,
2881 RE_Get_35 => System_Pack_35,
2882 RE_Set_35 => System_Pack_35,
2884 RE_Bits_36 => System_Pack_36,
2885 RE_Get_36 => System_Pack_36,
2886 RE_GetU_36 => System_Pack_36,
2887 RE_Set_36 => System_Pack_36,
2888 RE_SetU_36 => System_Pack_36,
2890 RE_Bits_37 => System_Pack_37,
2891 RE_Get_37 => System_Pack_37,
2892 RE_Set_37 => System_Pack_37,
2894 RE_Bits_38 => System_Pack_38,
2895 RE_Get_38 => System_Pack_38,
2896 RE_GetU_38 => System_Pack_38,
2897 RE_Set_38 => System_Pack_38,
2898 RE_SetU_38 => System_Pack_38,
2900 RE_Bits_39 => System_Pack_39,
2901 RE_Get_39 => System_Pack_39,
2902 RE_Set_39 => System_Pack_39,
2904 RE_Bits_40 => System_Pack_40,
2905 RE_Get_40 => System_Pack_40,
2906 RE_GetU_40 => System_Pack_40,
2907 RE_Set_40 => System_Pack_40,
2908 RE_SetU_40 => System_Pack_40,
2910 RE_Bits_41 => System_Pack_41,
2911 RE_Get_41 => System_Pack_41,
2912 RE_Set_41 => System_Pack_41,
2914 RE_Bits_42 => System_Pack_42,
2915 RE_Get_42 => System_Pack_42,
2916 RE_GetU_42 => System_Pack_42,
2917 RE_Set_42 => System_Pack_42,
2918 RE_SetU_42 => System_Pack_42,
2920 RE_Bits_43 => System_Pack_43,
2921 RE_Get_43 => System_Pack_43,
2922 RE_Set_43 => System_Pack_43,
2924 RE_Bits_44 => System_Pack_44,
2925 RE_Get_44 => System_Pack_44,
2926 RE_GetU_44 => System_Pack_44,
2927 RE_Set_44 => System_Pack_44,
2928 RE_SetU_44 => System_Pack_44,
2930 RE_Bits_45 => System_Pack_45,
2931 RE_Get_45 => System_Pack_45,
2932 RE_Set_45 => System_Pack_45,
2934 RE_Bits_46 => System_Pack_46,
2935 RE_Get_46 => System_Pack_46,
2936 RE_GetU_46 => System_Pack_46,
2937 RE_Set_46 => System_Pack_46,
2938 RE_SetU_46 => System_Pack_46,
2940 RE_Bits_47 => System_Pack_47,
2941 RE_Get_47 => System_Pack_47,
2942 RE_Set_47 => System_Pack_47,
2944 RE_Bits_48 => System_Pack_48,
2945 RE_Get_48 => System_Pack_48,
2946 RE_GetU_48 => System_Pack_48,
2947 RE_Set_48 => System_Pack_48,
2948 RE_SetU_48 => System_Pack_48,
2950 RE_Bits_49 => System_Pack_49,
2951 RE_Get_49 => System_Pack_49,
2952 RE_Set_49 => System_Pack_49,
2954 RE_Bits_50 => System_Pack_50,
2955 RE_Get_50 => System_Pack_50,
2956 RE_GetU_50 => System_Pack_50,
2957 RE_Set_50 => System_Pack_50,
2958 RE_SetU_50 => System_Pack_50,
2960 RE_Bits_51 => System_Pack_51,
2961 RE_Get_51 => System_Pack_51,
2962 RE_Set_51 => System_Pack_51,
2964 RE_Bits_52 => System_Pack_52,
2965 RE_Get_52 => System_Pack_52,
2966 RE_GetU_52 => System_Pack_52,
2967 RE_Set_52 => System_Pack_52,
2968 RE_SetU_52 => System_Pack_52,
2970 RE_Bits_53 => System_Pack_53,
2971 RE_Get_53 => System_Pack_53,
2972 RE_Set_53 => System_Pack_53,
2974 RE_Bits_54 => System_Pack_54,
2975 RE_Get_54 => System_Pack_54,
2976 RE_GetU_54 => System_Pack_54,
2977 RE_Set_54 => System_Pack_54,
2978 RE_SetU_54 => System_Pack_54,
2980 RE_Bits_55 => System_Pack_55,
2981 RE_Get_55 => System_Pack_55,
2982 RE_Set_55 => System_Pack_55,
2984 RE_Bits_56 => System_Pack_56,
2985 RE_Get_56 => System_Pack_56,
2986 RE_GetU_56 => System_Pack_56,
2987 RE_Set_56 => System_Pack_56,
2988 RE_SetU_56 => System_Pack_56,
2990 RE_Bits_57 => System_Pack_57,
2991 RE_Get_57 => System_Pack_57,
2992 RE_Set_57 => System_Pack_57,
2994 RE_Bits_58 => System_Pack_58,
2995 RE_Get_58 => System_Pack_58,
2996 RE_GetU_58 => System_Pack_58,
2997 RE_Set_58 => System_Pack_58,
2998 RE_SetU_58 => System_Pack_58,
3000 RE_Bits_59 => System_Pack_59,
3001 RE_Get_59 => System_Pack_59,
3002 RE_Set_59 => System_Pack_59,
3004 RE_Bits_60 => System_Pack_60,
3005 RE_Get_60 => System_Pack_60,
3006 RE_GetU_60 => System_Pack_60,
3007 RE_Set_60 => System_Pack_60,
3008 RE_SetU_60 => System_Pack_60,
3010 RE_Bits_61 => System_Pack_61,
3011 RE_Get_61 => System_Pack_61,
3012 RE_Set_61 => System_Pack_61,
3014 RE_Bits_62 => System_Pack_62,
3015 RE_Get_62 => System_Pack_62,
3016 RE_GetU_62 => System_Pack_62,
3017 RE_Set_62 => System_Pack_62,
3018 RE_SetU_62 => System_Pack_62,
3020 RE_Bits_63 => System_Pack_63,
3021 RE_Get_63 => System_Pack_63,
3022 RE_Set_63 => System_Pack_63,
3024 RE_Bits_65 => System_Pack_65,
3025 RE_Get_65 => System_Pack_65,
3026 RE_Set_65 => System_Pack_65,
3028 RE_Bits_66 => System_Pack_66,
3029 RE_Get_66 => System_Pack_66,
3030 RE_GetU_66 => System_Pack_66,
3031 RE_Set_66 => System_Pack_66,
3032 RE_SetU_66 => System_Pack_66,
3034 RE_Bits_67 => System_Pack_67,
3035 RE_Get_67 => System_Pack_67,
3036 RE_Set_67 => System_Pack_67,
3038 RE_Bits_68 => System_Pack_68,
3039 RE_Get_68 => System_Pack_68,
3040 RE_GetU_68 => System_Pack_68,
3041 RE_Set_68 => System_Pack_68,
3042 RE_SetU_68 => System_Pack_68,
3044 RE_Bits_69 => System_Pack_69,
3045 RE_Get_69 => System_Pack_69,
3046 RE_Set_69 => System_Pack_69,
3048 RE_Bits_70 => System_Pack_70,
3049 RE_Get_70 => System_Pack_70,
3050 RE_GetU_70 => System_Pack_70,
3051 RE_Set_70 => System_Pack_70,
3052 RE_SetU_70 => System_Pack_70,
3054 RE_Bits_71 => System_Pack_71,
3055 RE_Get_71 => System_Pack_71,
3056 RE_Set_71 => System_Pack_71,
3058 RE_Bits_72 => System_Pack_72,
3059 RE_Get_72 => System_Pack_72,
3060 RE_GetU_72 => System_Pack_72,
3061 RE_Set_72 => System_Pack_72,
3062 RE_SetU_72 => System_Pack_72,
3064 RE_Bits_73 => System_Pack_73,
3065 RE_Get_73 => System_Pack_73,
3066 RE_Set_73 => System_Pack_73,
3068 RE_Bits_74 => System_Pack_74,
3069 RE_Get_74 => System_Pack_74,
3070 RE_GetU_74 => System_Pack_74,
3071 RE_Set_74 => System_Pack_74,
3072 RE_SetU_74 => System_Pack_74,
3074 RE_Bits_75 => System_Pack_75,
3075 RE_Get_75 => System_Pack_75,
3076 RE_Set_75 => System_Pack_75,
3078 RE_Bits_76 => System_Pack_76,
3079 RE_Get_76 => System_Pack_76,
3080 RE_GetU_76 => System_Pack_76,
3081 RE_Set_76 => System_Pack_76,
3082 RE_SetU_76 => System_Pack_76,
3084 RE_Bits_77 => System_Pack_77,
3085 RE_Get_77 => System_Pack_77,
3086 RE_Set_77 => System_Pack_77,
3088 RE_Bits_78 => System_Pack_78,
3089 RE_Get_78 => System_Pack_78,
3090 RE_GetU_78 => System_Pack_78,
3091 RE_Set_78 => System_Pack_78,
3092 RE_SetU_78 => System_Pack_78,
3094 RE_Bits_79 => System_Pack_79,
3095 RE_Get_79 => System_Pack_79,
3096 RE_Set_79 => System_Pack_79,
3098 RE_Bits_80 => System_Pack_80,
3099 RE_Get_80 => System_Pack_80,
3100 RE_GetU_80 => System_Pack_80,
3101 RE_Set_80 => System_Pack_80,
3102 RE_SetU_80 => System_Pack_80,
3104 RE_Bits_81 => System_Pack_81,
3105 RE_Get_81 => System_Pack_81,
3106 RE_Set_81 => System_Pack_81,
3108 RE_Bits_82 => System_Pack_82,
3109 RE_Get_82 => System_Pack_82,
3110 RE_GetU_82 => System_Pack_82,
3111 RE_Set_82 => System_Pack_82,
3112 RE_SetU_82 => System_Pack_82,
3114 RE_Bits_83 => System_Pack_83,
3115 RE_Get_83 => System_Pack_83,
3116 RE_Set_83 => System_Pack_83,
3118 RE_Bits_84 => System_Pack_84,
3119 RE_Get_84 => System_Pack_84,
3120 RE_GetU_84 => System_Pack_84,
3121 RE_Set_84 => System_Pack_84,
3122 RE_SetU_84 => System_Pack_84,
3124 RE_Bits_85 => System_Pack_85,
3125 RE_Get_85 => System_Pack_85,
3126 RE_Set_85 => System_Pack_85,
3128 RE_Bits_86 => System_Pack_86,
3129 RE_Get_86 => System_Pack_86,
3130 RE_GetU_86 => System_Pack_86,
3131 RE_Set_86 => System_Pack_86,
3132 RE_SetU_86 => System_Pack_86,
3134 RE_Bits_87 => System_Pack_87,
3135 RE_Get_87 => System_Pack_87,
3136 RE_Set_87 => System_Pack_87,
3138 RE_Bits_88 => System_Pack_88,
3139 RE_Get_88 => System_Pack_88,
3140 RE_GetU_88 => System_Pack_88,
3141 RE_Set_88 => System_Pack_88,
3142 RE_SetU_88 => System_Pack_88,
3144 RE_Bits_89 => System_Pack_89,
3145 RE_Get_89 => System_Pack_89,
3146 RE_Set_89 => System_Pack_89,
3148 RE_Bits_90 => System_Pack_90,
3149 RE_Get_90 => System_Pack_90,
3150 RE_GetU_90 => System_Pack_90,
3151 RE_Set_90 => System_Pack_90,
3152 RE_SetU_90 => System_Pack_90,
3154 RE_Bits_91 => System_Pack_91,
3155 RE_Get_91 => System_Pack_91,
3156 RE_Set_91 => System_Pack_91,
3158 RE_Bits_92 => System_Pack_92,
3159 RE_Get_92 => System_Pack_92,
3160 RE_GetU_92 => System_Pack_92,
3161 RE_Set_92 => System_Pack_92,
3162 RE_SetU_92 => System_Pack_92,
3164 RE_Bits_93 => System_Pack_93,
3165 RE_Get_93 => System_Pack_93,
3166 RE_Set_93 => System_Pack_93,
3168 RE_Bits_94 => System_Pack_94,
3169 RE_Get_94 => System_Pack_94,
3170 RE_GetU_94 => System_Pack_94,
3171 RE_Set_94 => System_Pack_94,
3172 RE_SetU_94 => System_Pack_94,
3174 RE_Bits_95 => System_Pack_95,
3175 RE_Get_95 => System_Pack_95,
3176 RE_Set_95 => System_Pack_95,
3178 RE_Bits_96 => System_Pack_96,
3179 RE_Get_96 => System_Pack_96,
3180 RE_GetU_96 => System_Pack_96,
3181 RE_Set_96 => System_Pack_96,
3182 RE_SetU_96 => System_Pack_96,
3184 RE_Bits_97 => System_Pack_97,
3185 RE_Get_97 => System_Pack_97,
3186 RE_Set_97 => System_Pack_97,
3188 RE_Bits_98 => System_Pack_98,
3189 RE_Get_98 => System_Pack_98,
3190 RE_GetU_98 => System_Pack_98,
3191 RE_Set_98 => System_Pack_98,
3192 RE_SetU_98 => System_Pack_98,
3194 RE_Bits_99 => System_Pack_99,
3195 RE_Get_99 => System_Pack_99,
3196 RE_Set_99 => System_Pack_99,
3198 RE_Bits_100 => System_Pack_100,
3199 RE_Get_100 => System_Pack_100,
3200 RE_GetU_100 => System_Pack_100,
3201 RE_Set_100 => System_Pack_100,
3202 RE_SetU_100 => System_Pack_100,
3204 RE_Bits_101 => System_Pack_101,
3205 RE_Get_101 => System_Pack_101,
3206 RE_Set_101 => System_Pack_101,
3208 RE_Bits_102 => System_Pack_102,
3209 RE_Get_102 => System_Pack_102,
3210 RE_GetU_102 => System_Pack_102,
3211 RE_Set_102 => System_Pack_102,
3212 RE_SetU_102 => System_Pack_102,
3214 RE_Bits_103 => System_Pack_103,
3215 RE_Get_103 => System_Pack_103,
3216 RE_Set_103 => System_Pack_103,
3218 RE_Bits_104 => System_Pack_104,
3219 RE_Get_104 => System_Pack_104,
3220 RE_GetU_104 => System_Pack_104,
3221 RE_Set_104 => System_Pack_104,
3222 RE_SetU_104 => System_Pack_104,
3224 RE_Bits_105 => System_Pack_105,
3225 RE_Get_105 => System_Pack_105,
3226 RE_Set_105 => System_Pack_105,
3228 RE_Bits_106 => System_Pack_106,
3229 RE_Get_106 => System_Pack_106,
3230 RE_GetU_106 => System_Pack_106,
3231 RE_Set_106 => System_Pack_106,
3232 RE_SetU_106 => System_Pack_106,
3234 RE_Bits_107 => System_Pack_107,
3235 RE_Get_107 => System_Pack_107,
3236 RE_Set_107 => System_Pack_107,
3238 RE_Bits_108 => System_Pack_108,
3239 RE_Get_108 => System_Pack_108,
3240 RE_GetU_108 => System_Pack_108,
3241 RE_Set_108 => System_Pack_108,
3242 RE_SetU_108 => System_Pack_108,
3244 RE_Bits_109 => System_Pack_109,
3245 RE_Get_109 => System_Pack_109,
3246 RE_Set_109 => System_Pack_109,
3248 RE_Bits_110 => System_Pack_110,
3249 RE_Get_110 => System_Pack_110,
3250 RE_GetU_110 => System_Pack_110,
3251 RE_Set_110 => System_Pack_110,
3252 RE_SetU_110 => System_Pack_110,
3254 RE_Bits_111 => System_Pack_111,
3255 RE_Get_111 => System_Pack_111,
3256 RE_Set_111 => System_Pack_111,
3258 RE_Bits_112 => System_Pack_112,
3259 RE_Get_112 => System_Pack_112,
3260 RE_GetU_112 => System_Pack_112,
3261 RE_Set_112 => System_Pack_112,
3262 RE_SetU_112 => System_Pack_112,
3264 RE_Bits_113 => System_Pack_113,
3265 RE_Get_113 => System_Pack_113,
3266 RE_Set_113 => System_Pack_113,
3268 RE_Bits_114 => System_Pack_114,
3269 RE_Get_114 => System_Pack_114,
3270 RE_GetU_114 => System_Pack_114,
3271 RE_Set_114 => System_Pack_114,
3272 RE_SetU_114 => System_Pack_114,
3274 RE_Bits_115 => System_Pack_115,
3275 RE_Get_115 => System_Pack_115,
3276 RE_Set_115 => System_Pack_115,
3278 RE_Bits_116 => System_Pack_116,
3279 RE_Get_116 => System_Pack_116,
3280 RE_GetU_116 => System_Pack_116,
3281 RE_Set_116 => System_Pack_116,
3282 RE_SetU_116 => System_Pack_116,
3284 RE_Bits_117 => System_Pack_117,
3285 RE_Get_117 => System_Pack_117,
3286 RE_Set_117 => System_Pack_117,
3288 RE_Bits_118 => System_Pack_118,
3289 RE_Get_118 => System_Pack_118,
3290 RE_GetU_118 => System_Pack_118,
3291 RE_Set_118 => System_Pack_118,
3292 RE_SetU_118 => System_Pack_118,
3294 RE_Bits_119 => System_Pack_119,
3295 RE_Get_119 => System_Pack_119,
3296 RE_Set_119 => System_Pack_119,
3298 RE_Bits_120 => System_Pack_120,
3299 RE_Get_120 => System_Pack_120,
3300 RE_GetU_120 => System_Pack_120,
3301 RE_Set_120 => System_Pack_120,
3302 RE_SetU_120 => System_Pack_120,
3304 RE_Bits_121 => System_Pack_121,
3305 RE_Get_121 => System_Pack_121,
3306 RE_Set_121 => System_Pack_121,
3308 RE_Bits_122 => System_Pack_122,
3309 RE_Get_122 => System_Pack_122,
3310 RE_GetU_122 => System_Pack_122,
3311 RE_Set_122 => System_Pack_122,
3312 RE_SetU_122 => System_Pack_122,
3314 RE_Bits_123 => System_Pack_123,
3315 RE_Get_123 => System_Pack_123,
3316 RE_Set_123 => System_Pack_123,
3318 RE_Bits_124 => System_Pack_124,
3319 RE_Get_124 => System_Pack_124,
3320 RE_GetU_124 => System_Pack_124,
3321 RE_Set_124 => System_Pack_124,
3322 RE_SetU_124 => System_Pack_124,
3324 RE_Bits_125 => System_Pack_125,
3325 RE_Get_125 => System_Pack_125,
3326 RE_Set_125 => System_Pack_125,
3328 RE_Bits_126 => System_Pack_126,
3329 RE_Get_126 => System_Pack_126,
3330 RE_GetU_126 => System_Pack_126,
3331 RE_Set_126 => System_Pack_126,
3332 RE_SetU_126 => System_Pack_126,
3334 RE_Bits_127 => System_Pack_127,
3335 RE_Get_127 => System_Pack_127,
3336 RE_Set_127 => System_Pack_127,
3338 RE_Adjust_Storage_Size => System_Parameters,
3339 RE_Default_Secondary_Stack_Size => System_Parameters,
3340 RE_Default_Stack_Size => System_Parameters,
3341 RE_Garbage_Collected => System_Parameters,
3342 RE_Size_Type => System_Parameters,
3343 RE_Unspecified_Size => System_Parameters,
3345 RE_DSA_Implementation => System_Partition_Interface,
3346 RE_PCS_Version => System_Partition_Interface,
3347 RE_Get_RACW => System_Partition_Interface,
3348 RE_Get_RCI_Package_Receiver => System_Partition_Interface,
3349 RE_Get_Unique_Remote_Pointer => System_Partition_Interface,
3350 RE_RACW_Stub_Type => System_Partition_Interface,
3351 RE_RACW_Stub_Type_Access => System_Partition_Interface,
3352 RE_RAS_Proxy_Type_Access => System_Partition_Interface,
3353 RE_Raise_Program_Error_Unknown_Tag => System_Partition_Interface,
3354 RE_Register_Passive_Package => System_Partition_Interface,
3355 RE_Register_Receiving_Stub => System_Partition_Interface,
3356 RE_Request => System_Partition_Interface,
3357 RE_Request_Access => System_Partition_Interface,
3358 RE_RCI_Locator => System_Partition_Interface,
3359 RE_RCI_Subp_Info => System_Partition_Interface,
3360 RE_RCI_Subp_Info_Array => System_Partition_Interface,
3361 RE_Same_Partition => System_Partition_Interface,
3362 RE_Subprogram_Id => System_Partition_Interface,
3363 RE_Get_RAS_Info => System_Partition_Interface,
3365 RE_To_PolyORB_String => System_Partition_Interface,
3366 RE_Caseless_String_Eq => System_Partition_Interface,
3367 RE_TypeCode => System_Partition_Interface,
3368 RE_Any => System_Partition_Interface,
3369 RE_Mode_In => System_Partition_Interface,
3370 RE_Mode_Out => System_Partition_Interface,
3371 RE_Mode_Inout => System_Partition_Interface,
3372 RE_NamedValue => System_Partition_Interface,
3373 RE_Result_Name => System_Partition_Interface,
3374 RE_Object_Ref => System_Partition_Interface,
3375 RE_Create_Any => System_Partition_Interface,
3376 RE_Any_Aggregate_Build => System_Partition_Interface,
3377 RE_Add_Aggregate_Element => System_Partition_Interface,
3378 RE_Get_Aggregate_Element => System_Partition_Interface,
3379 RE_Content_Type => System_Partition_Interface,
3380 RE_Any_Member_Type => System_Partition_Interface,
3381 RE_Get_Nested_Sequence_Length => System_Partition_Interface,
3382 RE_Get_Any_Type => System_Partition_Interface,
3383 RE_Extract_Union_Value => System_Partition_Interface,
3384 RE_NVList_Ref => System_Partition_Interface,
3385 RE_NVList_Create => System_Partition_Interface,
3386 RE_NVList_Add_Item => System_Partition_Interface,
3387 RE_Request_Arguments => System_Partition_Interface,
3388 RE_Request_Invoke => System_Partition_Interface,
3389 RE_Request_Raise_Occurrence => System_Partition_Interface,
3390 RE_Request_Set_Out => System_Partition_Interface,
3391 RE_Request_Setup => System_Partition_Interface,
3392 RE_Nil_Exc_List => System_Partition_Interface,
3393 RE_Servant => System_Partition_Interface,
3394 RE_Move_Any_Value => System_Partition_Interface,
3395 RE_Set_Result => System_Partition_Interface,
3396 RE_Register_Obj_Receiving_Stub => System_Partition_Interface,
3397 RE_Register_Pkg_Receiving_Stub => System_Partition_Interface,
3398 RE_Is_Nil => System_Partition_Interface,
3399 RE_Entity_Ptr => System_Partition_Interface,
3400 RE_Entity_Of => System_Partition_Interface,
3401 RE_Inc_Usage => System_Partition_Interface,
3402 RE_Set_Ref => System_Partition_Interface,
3403 RE_Make_Ref => System_Partition_Interface,
3404 RE_Get_Local_Address => System_Partition_Interface,
3405 RE_Get_Reference => System_Partition_Interface,
3406 RE_Asynchronous_P_To_Sync_Scope => System_Partition_Interface,
3407 RE_Buffer_Stream_Type => System_Partition_Interface,
3408 RE_Release_Buffer => System_Partition_Interface,
3409 RE_BS_To_Any => System_Partition_Interface,
3410 RE_Any_To_BS => System_Partition_Interface,
3411 RE_Build_Complex_TC => System_Partition_Interface,
3412 RE_Get_TC => System_Partition_Interface,
3413 RE_Set_TC => System_Partition_Interface,
3415 RE_FA_A => System_Partition_Interface,
3416 RE_FA_B => System_Partition_Interface,
3417 RE_FA_C => System_Partition_Interface,
3418 RE_FA_F => System_Partition_Interface,
3419 RE_FA_I8 => System_Partition_Interface,
3420 RE_FA_I16 => System_Partition_Interface,
3421 RE_FA_I32 => System_Partition_Interface,
3422 RE_FA_I64 => System_Partition_Interface,
3423 RE_FA_LF => System_Partition_Interface,
3424 RE_FA_LLF => System_Partition_Interface,
3425 RE_FA_SF => System_Partition_Interface,
3426 RE_FA_U8 => System_Partition_Interface,
3427 RE_FA_U16 => System_Partition_Interface,
3428 RE_FA_U32 => System_Partition_Interface,
3429 RE_FA_U64 => System_Partition_Interface,
3430 RE_FA_WC => System_Partition_Interface,
3431 RE_FA_WWC => System_Partition_Interface,
3432 RE_FA_String => System_Partition_Interface,
3433 RE_FA_ObjRef => System_Partition_Interface,
3435 RE_TA_A => System_Partition_Interface,
3436 RE_TA_B => System_Partition_Interface,
3437 RE_TA_C => System_Partition_Interface,
3438 RE_TA_F => System_Partition_Interface,
3439 RE_TA_I8 => System_Partition_Interface,
3440 RE_TA_I16 => System_Partition_Interface,
3441 RE_TA_I32 => System_Partition_Interface,
3442 RE_TA_I64 => System_Partition_Interface,
3443 RE_TA_LF => System_Partition_Interface,
3444 RE_TA_LLF => System_Partition_Interface,
3445 RE_TA_SF => System_Partition_Interface,
3446 RE_TA_U8 => System_Partition_Interface,
3447 RE_TA_U16 => System_Partition_Interface,
3448 RE_TA_U32 => System_Partition_Interface,
3449 RE_TA_U64 => System_Partition_Interface,
3450 RE_TA_WC => System_Partition_Interface,
3451 RE_TA_WWC => System_Partition_Interface,
3452 RE_TA_String => System_Partition_Interface,
3453 RE_TA_ObjRef => System_Partition_Interface,
3454 RE_TA_Std_String => System_Partition_Interface,
3455 RE_TA_TC => System_Partition_Interface,
3457 RE_TC_A => System_Partition_Interface,
3458 RE_TC_B => System_Partition_Interface,
3459 RE_TC_C => System_Partition_Interface,
3460 RE_TC_F => System_Partition_Interface,
3461 RE_TC_I8 => System_Partition_Interface,
3462 RE_TC_I16 => System_Partition_Interface,
3463 RE_TC_I32 => System_Partition_Interface,
3464 RE_TC_I64 => System_Partition_Interface,
3465 RE_TC_LF => System_Partition_Interface,
3466 RE_TC_LLF => System_Partition_Interface,
3467 RE_TC_SF => System_Partition_Interface,
3468 RE_TC_U8 => System_Partition_Interface,
3469 RE_TC_U16 => System_Partition_Interface,
3470 RE_TC_U32 => System_Partition_Interface,
3471 RE_TC_U64 => System_Partition_Interface,
3472 RE_TC_Void => System_Partition_Interface,
3473 RE_TC_Opaque => System_Partition_Interface,
3474 RE_TC_WC => System_Partition_Interface,
3475 RE_TC_WWC => System_Partition_Interface,
3476 RE_TC_String => System_Partition_Interface,
3478 RE_Tk_Alias => System_Partition_Interface,
3479 RE_Tk_Array => System_Partition_Interface,
3480 RE_Tk_Sequence => System_Partition_Interface,
3481 RE_Tk_Struct => System_Partition_Interface,
3482 RE_Tk_Objref => System_Partition_Interface,
3483 RE_Tk_Union => System_Partition_Interface,
3485 RE_Global_Pool_Object => System_Pool_Global,
3487 RE_Global_Pool_32_Object => System_Pool_32_Global,
3489 RE_Stack_Bounded_Pool => System_Pool_Size,
3491 RE_Put_Image_Integer => System_Put_Images,
3492 RE_Put_Image_Long_Long_Integer => System_Put_Images,
3493 RE_Put_Image_Long_Long_Long_Integer => System_Put_Images,
3494 RE_Put_Image_Unsigned => System_Put_Images,
3495 RE_Put_Image_Long_Long_Unsigned => System_Put_Images,
3496 RE_Put_Image_Long_Long_Long_Unsigned => System_Put_Images,
3497 RE_Put_Image_Thin_Pointer => System_Put_Images,
3498 RE_Put_Image_Fat_Pointer => System_Put_Images,
3499 RE_Put_Image_Access_Subp => System_Put_Images,
3500 RE_Put_Image_Access_Prot_Subp => System_Put_Images,
3501 RE_Put_Image_String => System_Put_Images,
3502 RE_Put_Image_Wide_String => System_Put_Images,
3503 RE_Put_Image_Wide_Wide_String => System_Put_Images,
3504 RE_Array_Before => System_Put_Images,
3505 RE_Array_Between => System_Put_Images,
3506 RE_Array_After => System_Put_Images,
3507 RE_Simple_Array_Between => System_Put_Images,
3508 RE_Record_Before => System_Put_Images,
3509 RE_Record_Between => System_Put_Images,
3510 RE_Record_After => System_Put_Images,
3511 RE_Put_Image_Unknown => System_Put_Images,
3513 RE_Put_Image_Protected => System_Put_Task_Images,
3514 RE_Put_Image_Task => System_Put_Task_Images,
3516 RO_RD_Delay_For => System_Relative_Delays,
3518 RE_Do_Apc => System_RPC,
3519 RE_Do_Rpc => System_RPC,
3520 RE_Params_Stream_Type => System_RPC,
3521 RE_Partition_ID => System_RPC,
3523 RE_IS_Is1 => System_Scalar_Values,
3524 RE_IS_Is2 => System_Scalar_Values,
3525 RE_IS_Is4 => System_Scalar_Values,
3526 RE_IS_Is8 => System_Scalar_Values,
3527 RE_IS_Is16 => System_Scalar_Values,
3528 RE_IS_Iu1 => System_Scalar_Values,
3529 RE_IS_Iu2 => System_Scalar_Values,
3530 RE_IS_Iu4 => System_Scalar_Values,
3531 RE_IS_Iu8 => System_Scalar_Values,
3532 RE_IS_Iu16 => System_Scalar_Values,
3533 RE_IS_Isf => System_Scalar_Values,
3534 RE_IS_Ifl => System_Scalar_Values,
3535 RE_IS_Ilf => System_Scalar_Values,
3536 RE_IS_Ill => System_Scalar_Values,
3538 RE_Mark_Id => System_Secondary_Stack,
3539 RE_SS_Allocate => System_Secondary_Stack,
3540 RE_SS_Mark => System_Secondary_Stack,
3541 RE_SS_Pool => System_Secondary_Stack,
3542 RE_SS_Release => System_Secondary_Stack,
3543 RE_SS_Stack => System_Secondary_Stack,
3545 RE_Shared_Var_Lock => System_Shared_Storage,
3546 RE_Shared_Var_Unlock => System_Shared_Storage,
3547 RE_Shared_Var_Procs => System_Shared_Storage,
3549 RE_Abort_Undefer_Direct => System_Standard_Library,
3550 RE_Exception_Data_Ptr => System_Standard_Library,
3552 RE_Integer_Address => System_Storage_Elements,
3553 RE_Storage_Array => System_Storage_Elements,
3554 RE_Storage_Count => System_Storage_Elements,
3555 RE_Storage_Offset => System_Storage_Elements,
3556 RE_To_Address => System_Storage_Elements,
3558 RE_Allocate_Any => System_Storage_Pools,
3559 RE_Deallocate_Any => System_Storage_Pools,
3560 RE_Root_Storage_Pool => System_Storage_Pools,
3561 RE_Root_Storage_Pool_Ptr => System_Storage_Pools,
3563 RE_Adjust_Controlled_Dereference => System_Storage_Pools_Subpools,
3564 RE_Allocate_Any_Controlled => System_Storage_Pools_Subpools,
3565 RE_Deallocate_Any_Controlled => System_Storage_Pools_Subpools,
3566 RE_Header_Size_With_Padding => System_Storage_Pools_Subpools,
3567 RE_Root_Storage_Pool_With_Subpools => System_Storage_Pools_Subpools,
3568 RE_Root_Subpool => System_Storage_Pools_Subpools,
3569 RE_Subpool_Handle => System_Storage_Pools_Subpools,
3571 RE_I_AD => System_Stream_Attributes,
3572 RE_I_AS => System_Stream_Attributes,
3573 RE_I_B => System_Stream_Attributes,
3574 RE_I_C => System_Stream_Attributes,
3575 RE_I_F => System_Stream_Attributes,
3576 RE_I_I => System_Stream_Attributes,
3577 RE_I_I24 => System_Stream_Attributes,
3578 RE_I_LF => System_Stream_Attributes,
3579 RE_I_LI => System_Stream_Attributes,
3580 RE_I_LLF => System_Stream_Attributes,
3581 RE_I_LLI => System_Stream_Attributes,
3582 RE_I_LLLI => System_Stream_Attributes,
3583 RE_I_LLLU => System_Stream_Attributes,
3584 RE_I_LLU => System_Stream_Attributes,
3585 RE_I_LU => System_Stream_Attributes,
3586 RE_I_SF => System_Stream_Attributes,
3587 RE_I_SI => System_Stream_Attributes,
3588 RE_I_SSI => System_Stream_Attributes,
3589 RE_I_SSU => System_Stream_Attributes,
3590 RE_I_SU => System_Stream_Attributes,
3591 RE_I_U => System_Stream_Attributes,
3592 RE_I_U24 => System_Stream_Attributes,
3593 RE_I_WC => System_Stream_Attributes,
3594 RE_I_WWC => System_Stream_Attributes,
3596 RE_W_AD => System_Stream_Attributes,
3597 RE_W_AS => System_Stream_Attributes,
3598 RE_W_B => System_Stream_Attributes,
3599 RE_W_C => System_Stream_Attributes,
3600 RE_W_F => System_Stream_Attributes,
3601 RE_W_I => System_Stream_Attributes,
3602 RE_W_I24 => System_Stream_Attributes,
3603 RE_W_LF => System_Stream_Attributes,
3604 RE_W_LI => System_Stream_Attributes,
3605 RE_W_LLF => System_Stream_Attributes,
3606 RE_W_LLI => System_Stream_Attributes,
3607 RE_W_LLLI => System_Stream_Attributes,
3608 RE_W_LLLU => System_Stream_Attributes,
3609 RE_W_LLU => System_Stream_Attributes,
3610 RE_W_LU => System_Stream_Attributes,
3611 RE_W_SF => System_Stream_Attributes,
3612 RE_W_SI => System_Stream_Attributes,
3613 RE_W_SSI => System_Stream_Attributes,
3614 RE_W_SSU => System_Stream_Attributes,
3615 RE_W_SU => System_Stream_Attributes,
3616 RE_W_U => System_Stream_Attributes,
3617 RE_W_U24 => System_Stream_Attributes,
3618 RE_W_WC => System_Stream_Attributes,
3619 RE_W_WWC => System_Stream_Attributes,
3621 RE_Storage_Array_Input => System_Strings_Stream_Ops,
3622 RE_Storage_Array_Input_Blk_IO => System_Strings_Stream_Ops,
3623 RE_Storage_Array_Output => System_Strings_Stream_Ops,
3624 RE_Storage_Array_Output_Blk_IO => System_Strings_Stream_Ops,
3625 RE_Storage_Array_Read => System_Strings_Stream_Ops,
3626 RE_Storage_Array_Read_Blk_IO => System_Strings_Stream_Ops,
3627 RE_Storage_Array_Write => System_Strings_Stream_Ops,
3628 RE_Storage_Array_Write_Blk_IO => System_Strings_Stream_Ops,
3630 RE_Stream_Element_Array_Input => System_Strings_Stream_Ops,
3631 RE_Stream_Element_Array_Input_Blk_IO => System_Strings_Stream_Ops,
3632 RE_Stream_Element_Array_Output => System_Strings_Stream_Ops,
3633 RE_Stream_Element_Array_Output_Blk_IO => System_Strings_Stream_Ops,
3634 RE_Stream_Element_Array_Read => System_Strings_Stream_Ops,
3635 RE_Stream_Element_Array_Read_Blk_IO => System_Strings_Stream_Ops,
3636 RE_Stream_Element_Array_Write => System_Strings_Stream_Ops,
3637 RE_Stream_Element_Array_Write_Blk_IO => System_Strings_Stream_Ops,
3639 RE_String_Input => System_Strings_Stream_Ops,
3640 RE_String_Input_Blk_IO => System_Strings_Stream_Ops,
3641 RE_String_Input_Tag => System_Strings_Stream_Ops,
3642 RE_String_Output => System_Strings_Stream_Ops,
3643 RE_String_Output_Blk_IO => System_Strings_Stream_Ops,
3644 RE_String_Read => System_Strings_Stream_Ops,
3645 RE_String_Read_Blk_IO => System_Strings_Stream_Ops,
3646 RE_String_Write => System_Strings_Stream_Ops,
3647 RE_String_Write_Blk_IO => System_Strings_Stream_Ops,
3649 RE_Wide_String_Input => System_Strings_Stream_Ops,
3650 RE_Wide_String_Input_Blk_IO => System_Strings_Stream_Ops,
3651 RE_Wide_String_Output => System_Strings_Stream_Ops,
3652 RE_Wide_String_Output_Blk_IO => System_Strings_Stream_Ops,
3653 RE_Wide_String_Read => System_Strings_Stream_Ops,
3654 RE_Wide_String_Read_Blk_IO => System_Strings_Stream_Ops,
3655 RE_Wide_String_Write => System_Strings_Stream_Ops,
3657 RE_Wide_String_Write_Blk_IO => System_Strings_Stream_Ops,
3658 RE_Wide_Wide_String_Input => System_Strings_Stream_Ops,
3659 RE_Wide_Wide_String_Input_Blk_IO => System_Strings_Stream_Ops,
3660 RE_Wide_Wide_String_Output => System_Strings_Stream_Ops,
3661 RE_Wide_Wide_String_Output_Blk_IO => System_Strings_Stream_Ops,
3662 RE_Wide_Wide_String_Read => System_Strings_Stream_Ops,
3663 RE_Wide_Wide_String_Read_Blk_IO => System_Strings_Stream_Ops,
3664 RE_Wide_Wide_String_Write => System_Strings_Stream_Ops,
3665 RE_Wide_Wide_String_Write_Blk_IO => System_Strings_Stream_Ops,
3667 RE_Task_Info_Type => System_Task_Info,
3668 RE_Unspecified_Task_Info => System_Task_Info,
3670 RE_Task_Procedure_Access => System_Tasking,
3671 RO_ST_Number_Of_Entries => System_Tasking,
3673 RO_ST_Task_Id => System_Tasking,
3674 RO_ST_Null_Task => System_Tasking,
3676 RE_Call_Modes => System_Tasking,
3677 RE_Simple_Call => System_Tasking,
3678 RE_Conditional_Call => System_Tasking,
3679 RE_Asynchronous_Call => System_Tasking,
3681 RE_Ada_Task_Control_Block => System_Tasking,
3683 RE_Task_List => System_Tasking,
3685 RE_Accept_List => System_Tasking,
3686 RE_No_Rendezvous => System_Tasking,
3687 RE_Null_Task_Entry => System_Tasking,
3688 RE_Select_Index => System_Tasking,
3689 RE_Else_Mode => System_Tasking,
3690 RE_Simple_Mode => System_Tasking,
3691 RE_Terminate_Mode => System_Tasking,
3692 RE_Delay_Mode => System_Tasking,
3693 RE_Entry_Index => System_Tasking,
3694 RE_Task_Entry_Index => System_Tasking,
3695 RE_Self => System_Tasking,
3697 RE_Unspecified_Priority => System_Tasking,
3699 RE_Activation_Chain => System_Tasking,
3700 RE_Activation_Chain_Access => System_Tasking,
3701 RE_Storage_Size => System_Tasking,
3703 RE_Unspecified_CPU => System_Tasking,
3705 RE_Dispatching_Domain_Access => System_Tasking,
3707 RE_Abort_Defer => System_Soft_Links,
3708 RE_Abort_Undefer => System_Soft_Links,
3709 RE_Complete_Master => System_Soft_Links,
3710 RE_Current_Master => System_Soft_Links,
3711 RE_Dummy_Communication_Block => System_Soft_Links,
3712 RE_Enter_Master => System_Soft_Links,
3713 RE_Get_Current_Excep => System_Soft_Links,
3714 RE_Get_GNAT_Exception => System_Soft_Links,
3715 RE_Save_Library_Occurrence => System_Soft_Links,
3717 RE_Bits_1 => System_Unsigned_Types,
3718 RE_Bits_2 => System_Unsigned_Types,
3719 RE_Bits_4 => System_Unsigned_Types,
3720 RE_Long_Long_Unsigned => System_Unsigned_Types,
3721 RE_Long_Long_Long_Unsigned => System_Unsigned_Types,
3722 RE_Packed_Byte => System_Unsigned_Types,
3723 RE_Packed_Bytes1 => System_Unsigned_Types,
3724 RE_Packed_Bytes2 => System_Unsigned_Types,
3725 RE_Packed_Bytes4 => System_Unsigned_Types,
3726 RE_Rev_Packed_Bytes1 => System_Unsigned_Types,
3727 RE_Rev_Packed_Bytes2 => System_Unsigned_Types,
3728 RE_Rev_Packed_Bytes4 => System_Unsigned_Types,
3729 RE_Unsigned => System_Unsigned_Types,
3731 RE_Value_Boolean => System_Val_Bool,
3733 RE_Value_Character => System_Val_Char,
3735 RE_Value_Decimal32 => System_Val_Decimal_32,
3737 RE_Value_Decimal64 => System_Val_Decimal_64,
3739 RE_Value_Decimal128 => System_Val_Decimal_128,
3741 RE_Value_Enumeration_8 => System_Val_Enum_8,
3743 RE_Value_Enumeration_16 => System_Val_Enum_16,
3745 RE_Value_Enumeration_32 => System_Val_Enum_32,
3747 RE_Valid_Value_Enumeration_8 => System_Val_Enum_8,
3749 RE_Valid_Value_Enumeration_16 => System_Val_Enum_16,
3751 RE_Valid_Value_Enumeration_32 => System_Val_Enum_32,
3753 RE_Value_Fixed32 => System_Val_Fixed_32,
3755 RE_Value_Fixed64 => System_Val_Fixed_64,
3757 RE_Value_Fixed128 => System_Val_Fixed_128,
3759 RE_Value_Float => System_Val_Flt,
3761 RE_Value_Integer => System_Val_Int,
3763 RE_Value_Long_Float => System_Val_LFlt,
3765 RE_Value_Long_Long_Float => System_Val_LLF,
3767 RE_Value_Long_Long_Integer => System_Val_LLI,
3769 RE_Value_Long_Long_Long_Integer => System_Val_LLLI,
3771 RE_Value_Long_Long_Unsigned => System_Val_LLU,
3773 RE_Value_Long_Long_Long_Unsigned => System_Val_LLLU,
3775 RE_Value_Unsigned => System_Val_Uns,
3777 RE_Value_Wide_Character => System_Val_WChar,
3778 RE_Value_Wide_Wide_Character => System_Val_WChar,
3780 RE_Version_String => System_Version_Control,
3781 RE_Get_Version_String => System_Version_Control,
3783 RE_String_To_Wide_String => System_WCh_StW,
3784 RE_String_To_Wide_Wide_String => System_WCh_StW,
3786 RE_Wide_String_To_String => System_WCh_WtS,
3787 RE_Wide_Wide_String_To_String => System_WCh_WtS,
3789 RE_Wide_Wide_Width_Character => System_WWd_Char,
3790 RE_Wide_Width_Character => System_WWd_Char,
3792 RE_Wide_Wide_Width_Enumeration_8 => System_WWd_Enum,
3793 RE_Wide_Wide_Width_Enumeration_16 => System_WWd_Enum,
3794 RE_Wide_Wide_Width_Enumeration_32 => System_WWd_Enum,
3796 RE_Wide_Width_Enumeration_8 => System_WWd_Enum,
3797 RE_Wide_Width_Enumeration_16 => System_WWd_Enum,
3798 RE_Wide_Width_Enumeration_32 => System_WWd_Enum,
3800 RE_Wide_Wide_Width_Wide_Character => System_WWd_Wchar,
3801 RE_Wide_Wide_Width_Wide_Wide_Char => System_WWd_Wchar,
3803 RE_Wide_Width_Wide_Character => System_WWd_Wchar,
3804 RE_Wide_Width_Wide_Wide_Character => System_WWd_Wchar,
3806 RE_Width_Boolean => System_Wid_Bool,
3808 RE_Width_Character => System_Wid_Char,
3810 RE_Width_Enumeration_8 => System_Wid_Enum,
3811 RE_Width_Enumeration_16 => System_Wid_Enum,
3812 RE_Width_Enumeration_32 => System_Wid_Enum,
3814 RE_Width_Integer => System_Wid_Int,
3816 RE_Width_Long_Long_Integer => System_Wid_LLI,
3818 RE_Width_Long_Long_Long_Integer => System_Wid_LLLI,
3820 RE_Width_Long_Long_Unsigned => System_Wid_LLU,
3822 RE_Width_Long_Long_Long_Unsigned => System_Wid_LLLU,
3824 RE_Width_Unsigned => System_Wid_Uns,
3826 RE_Width_Wide_Character => System_Wid_WChar,
3827 RE_Width_Wide_Wide_Character => System_Wid_WChar,
3829 RE_Dispatching_Domain =>
3830 System_Multiprocessors_Dispatching_Domains,
3832 RE_Protected_Entry_Body_Array =>
3833 System_Tasking_Protected_Objects_Entries,
3834 RE_Protected_Entry_Queue_Max_Array =>
3835 System_Tasking_Protected_Objects_Entries,
3836 RE_Protection_Entries =>
3837 System_Tasking_Protected_Objects_Entries,
3838 RE_Protection_Entries_Access =>
3839 System_Tasking_Protected_Objects_Entries,
3840 RE_Initialize_Protection_Entries =>
3841 System_Tasking_Protected_Objects_Entries,
3842 RE_Lock_Entries =>
3843 System_Tasking_Protected_Objects_Entries,
3844 RE_Unlock_Entries =>
3845 System_Tasking_Protected_Objects_Entries,
3846 RO_PE_Get_Ceiling =>
3847 System_Tasking_Protected_Objects_Entries,
3848 RO_PE_Number_Of_Entries =>
3849 System_Tasking_Protected_Objects_Entries,
3850 RO_PE_Set_Ceiling =>
3851 System_Tasking_Protected_Objects_Entries,
3853 RE_Communication_Block =>
3854 System_Tasking_Protected_Objects_Operations,
3855 RE_Protected_Entry_Call =>
3856 System_Tasking_Protected_Objects_Operations,
3857 RE_Service_Entries =>
3858 System_Tasking_Protected_Objects_Operations,
3859 RE_Cancel_Protected_Entry_Call =>
3860 System_Tasking_Protected_Objects_Operations,
3861 RE_Enqueued =>
3862 System_Tasking_Protected_Objects_Operations,
3863 RE_Cancelled =>
3864 System_Tasking_Protected_Objects_Operations,
3865 RE_Complete_Entry_Body =>
3866 System_Tasking_Protected_Objects_Operations,
3867 RE_Exceptional_Complete_Entry_Body =>
3868 System_Tasking_Protected_Objects_Operations,
3869 RE_Requeue_Protected_Entry =>
3870 System_Tasking_Protected_Objects_Operations,
3871 RE_Requeue_Task_To_Protected_Entry =>
3872 System_Tasking_Protected_Objects_Operations,
3873 RE_Protected_Count =>
3874 System_Tasking_Protected_Objects_Operations,
3875 RE_Protected_Entry_Caller =>
3876 System_Tasking_Protected_Objects_Operations,
3877 RE_Timed_Protected_Entry_Call =>
3878 System_Tasking_Protected_Objects_Operations,
3880 RE_Protection_Entry =>
3881 System_Tasking_Protected_Objects_Single_Entry,
3882 RE_Initialize_Protection_Entry =>
3883 System_Tasking_Protected_Objects_Single_Entry,
3884 RE_Lock_Entry =>
3885 System_Tasking_Protected_Objects_Single_Entry,
3886 RE_Unlock_Entry =>
3887 System_Tasking_Protected_Objects_Single_Entry,
3888 RE_Protected_Single_Entry_Call =>
3889 System_Tasking_Protected_Objects_Single_Entry,
3890 RE_Service_Entry =>
3891 System_Tasking_Protected_Objects_Single_Entry,
3892 RE_Exceptional_Complete_Single_Entry_Body =>
3893 System_Tasking_Protected_Objects_Single_Entry,
3894 RE_Protected_Count_Entry =>
3895 System_Tasking_Protected_Objects_Single_Entry,
3896 RE_Protected_Single_Entry_Caller =>
3897 System_Tasking_Protected_Objects_Single_Entry,
3899 RE_Protected_Entry_Index => System_Tasking_Protected_Objects,
3900 RE_Entry_Body => System_Tasking_Protected_Objects,
3901 RE_Protection => System_Tasking_Protected_Objects,
3902 RE_Initialize_Protection => System_Tasking_Protected_Objects,
3903 RE_Finalize_Protection => System_Tasking_Protected_Objects,
3904 RE_Lock => System_Tasking_Protected_Objects,
3905 RE_Lock_Read_Only => System_Tasking_Protected_Objects,
3906 RE_Get_Ceiling => System_Tasking_Protected_Objects,
3907 RE_Set_Ceiling => System_Tasking_Protected_Objects,
3908 RE_Unlock => System_Tasking_Protected_Objects,
3910 RE_Delay_Block => System_Tasking_Async_Delays,
3911 RE_Timed_Out => System_Tasking_Async_Delays,
3912 RE_Cancel_Async_Delay => System_Tasking_Async_Delays,
3913 RE_Enqueue_Duration => System_Tasking_Async_Delays,
3915 RE_Enqueue_Calendar =>
3916 System_Tasking_Async_Delays_Enqueue_Calendar,
3917 RE_Enqueue_RT =>
3918 System_Tasking_Async_Delays_Enqueue_RT,
3920 RE_Accept_Call => System_Tasking_Rendezvous,
3921 RE_Accept_Trivial => System_Tasking_Rendezvous,
3922 RE_Callable => System_Tasking_Rendezvous,
3923 RE_Call_Simple => System_Tasking_Rendezvous,
3924 RE_Cancel_Task_Entry_Call => System_Tasking_Rendezvous,
3925 RE_Requeue_Task_Entry => System_Tasking_Rendezvous,
3926 RE_Requeue_Protected_To_Task_Entry => System_Tasking_Rendezvous,
3927 RE_Complete_Rendezvous => System_Tasking_Rendezvous,
3928 RE_Task_Count => System_Tasking_Rendezvous,
3929 RE_Exceptional_Complete_Rendezvous => System_Tasking_Rendezvous,
3930 RE_Selective_Wait => System_Tasking_Rendezvous,
3931 RE_Task_Entry_Call => System_Tasking_Rendezvous,
3932 RE_Task_Entry_Caller => System_Tasking_Rendezvous,
3933 RE_Timed_Task_Entry_Call => System_Tasking_Rendezvous,
3934 RE_Timed_Selective_Wait => System_Tasking_Rendezvous,
3936 RE_Activate_Restricted_Tasks => System_Tasking_Restricted_Stages,
3937 RE_Complete_Restricted_Activation => System_Tasking_Restricted_Stages,
3938 RE_Create_Restricted_Task => System_Tasking_Restricted_Stages,
3939 RE_Create_Restricted_Task_Sequential => System_Tasking_Restricted_Stages,
3940 RE_Complete_Restricted_Task => System_Tasking_Restricted_Stages,
3941 RE_Restricted_Terminated => System_Tasking_Restricted_Stages,
3943 RE_Abort_Tasks => System_Tasking_Stages,
3944 RE_Activate_Tasks => System_Tasking_Stages,
3945 RE_Complete_Activation => System_Tasking_Stages,
3946 RE_Create_Task => System_Tasking_Stages,
3947 RE_Complete_Task => System_Tasking_Stages,
3948 RE_Free_Task => System_Tasking_Stages,
3949 RE_Expunge_Unactivated_Tasks => System_Tasking_Stages,
3950 RE_Move_Activation_Chain => System_Tasking_Stages,
3951 RE_Terminated => System_Tasking_Stages);
3953 --------------------------------
3954 -- Configurable Run-Time Mode --
3955 --------------------------------
3957 -- Part of the job of Rtsfind is to enforce run-time restrictions in
3958 -- configurable run-time mode. This is done by monitoring implicit access
3959 -- to the run time library requested by calls to the RTE function. A call
3960 -- may be invalid in configurable run-time mode for either of the
3961 -- following two reasons:
3963 -- 1. File in which entity lives is not present in run-time library
3964 -- 2. File is present, but entity is not defined in the file
3966 -- In normal mode, either or these two situations is a fatal error
3967 -- that indicates that the run-time library is incorrectly configured,
3968 -- and a fatal error message is issued to signal this error.
3970 -- In configurable run-time mode, either of these two situations indicates
3971 -- simply that the corresponding operation is not available in the current
3972 -- run-time that is use. This is not a configuration error, but rather a
3973 -- natural result of a limited run-time. This situation is signalled by
3974 -- raising the exception RE_Not_Available. The caller must respond to
3975 -- this exception by posting an appropriate error message.
3977 ----------------------
3978 -- No_Run_Time_Mode --
3979 ----------------------
3981 -- For backwards compatibility with previous versions of GNAT, the
3982 -- compiler recognizes the pragma No_Run_Time. This provides a special
3983 -- version of configurable run-time mode that operates with the standard
3984 -- run-time library, but allows only a subset of entities to be
3985 -- accessed. If any other entity is accessed, then it is treated
3986 -- as a configurable run-time violation, and the exception
3987 -- RE_Not_Available is raised.
3989 -- The following array defines the set of units that contain entities
3990 -- that can be referenced in No_Run_Time mode. For each of these units,
3991 -- all entities defined in the unit can be used in this mode.
3993 OK_No_Run_Time_Unit : constant array (RTU_Id) of Boolean :=
3994 (Ada_Exceptions => True,
3995 Ada_Tags => True,
3996 Interfaces => True,
3997 System => True,
3998 System_Parameters => True,
3999 System_Fat_Flt => True,
4000 System_Fat_LFlt => True,
4001 System_Fat_LLF => True,
4002 System_Fat_SFlt => True,
4003 System_Machine_Code => True,
4004 System_Secondary_Stack => True,
4005 System_Storage_Elements => True,
4006 System_Task_Info => True,
4007 System_Unsigned_Types => True,
4008 others => False);
4010 Library_Task_Level : constant Uint := Uint_3;
4011 -- Corresponds to System.Tasking.Library_Task_Level
4013 -----------------
4014 -- Subprograms --
4015 -----------------
4017 RE_Not_Available : exception;
4018 -- Raised by RTE if the requested entity is not available. This can
4019 -- occur either because the file in which the entity should be found
4020 -- does not exist, or because the entity is not present in the file.
4022 procedure Check_Text_IO_Special_Unit (Nam : Node_Id);
4023 -- In Ada 83, and hence for compatibility in later versions of Ada, package
4024 -- Text_IO has generic subpackages (e.g. Integer_IO). They really should be
4025 -- child packages, and in GNAT, they *are* child packages. To maintain the
4026 -- required compatibility, this routine is called for package renamings and
4027 -- generic instantiations, with the simple name of the referenced package.
4028 -- If Text_IO has been with'ed and if the simple name of Nam matches
4029 -- one of the subpackages of Text_IO, then this subpackage is with'ed
4030 -- automatically. The important result of this approach is that Text_IO
4031 -- does not drag in all the code for the subpackages unless they are used.
4032 -- Our test is a little crude, and could drag in stuff when it is not
4033 -- necessary, but that is acceptable. Wide_[Wide_]Text_IO is handled in
4034 -- a similar manner.
4036 procedure Initialize;
4037 -- Procedure to initialize data structures used by RTE. Called at the
4038 -- start of processing a new main source file. Must be called after
4039 -- Initialize_Snames (since names it enters into name table must come
4040 -- after names entered by Snames).
4042 function Is_RTE (Ent : Entity_Id; E : RE_Id) return Boolean;
4043 -- This function determines if the given entity corresponds to the entity
4044 -- referenced by RE_Id. It is similar in effect to (Ent = RTE (E)) except
4045 -- that the latter would unconditionally load the unit containing E. For
4046 -- this call, if the unit is not loaded, then a result of False is returned
4047 -- immediately, since obviously Ent cannot be the entity in question if the
4048 -- corresponding unit has not been loaded.
4050 function Is_RTU (Ent : Entity_Id; U : RTU_Id) return Boolean;
4051 pragma Inline (Is_RTU);
4052 -- This function determines if the given entity corresponds to the entity
4053 -- for the unit referenced by U. If this unit has not been loaded, the
4054 -- answer will always be False. If the unit has been loaded, then the
4055 -- entity id values are compared and True is returned if Ent is the
4056 -- entity for this unit.
4058 function Is_Text_IO_Special_Unit (Nam : Node_Id) return Boolean;
4059 -- Returns True if the given Nam is an Expanded Name, whose Prefix is Ada,
4060 -- and whose selector is either Text_IO.xxx or Wide_Text_IO.xxx or
4061 -- Wide_Wide_Text_IO.xxx, where xxx is one of the subpackages of Text_IO
4062 -- that is specially handled as described for Check_Text_IO_Special_Unit.
4064 function Is_Text_IO_Special_Package (E : Entity_Id) return Boolean;
4065 -- Return True iff E is one of the special generic Text_IO packages, which
4066 -- Ada RM defines to be nested in Ada.Text_IO, but GNAT defines as its
4067 -- private children. This is similar to Is_Text_IO_Special_Unit, but is
4068 -- meant to be used on a fully resolved AST, especially in the backends.
4069 -- This is used by SPARK.
4071 function RTE (E : RE_Id) return Entity_Id;
4072 -- Given the entity defined in the above tables, as identified by the
4073 -- corresponding value in the RE_Id enumeration type, returns the Id of the
4074 -- corresponding entity, first loading in (parsing, analyzing and
4075 -- expanding) its spec if the unit has not already been loaded. For
4076 -- efficiency reasons, this routine restricts the search to the package
4077 -- entity chain.
4079 -- Note: In the case of a package, RTE can return either an entity that is
4080 -- declared at the top level of the package, or the package entity itself.
4081 -- If an entity within the package has the same simple name as the package,
4082 -- then the entity within the package is returned.
4084 -- If RTE returns, the returned value is the required entity
4086 -- If the entity is not available, then an error message is given. The
4087 -- form of the message depends on whether we are in configurable run time
4088 -- mode or not. In configurable run time mode, a missing entity is not
4089 -- that surprising and merely says that the particular construct is not
4090 -- supported by the run-time in use. If we are not in configurable run
4091 -- time mode, a missing entity is some kind of run-time configuration
4092 -- error. In either case, the result of the call is to raise the exception
4093 -- RE_Not_Available, which should terminate the expansion of the current
4094 -- construct.
4096 function RTE_Available (E : RE_Id) return Boolean;
4097 -- Returns true if a call to RTE will succeed without raising an exception
4098 -- and without generating an error message, i.e. if the call will obtain
4099 -- the desired entity without any problems.
4101 -- If we call this and it returns True, we should generate a reference to
4102 -- E (usually a call). In other words, for a subprogram E, the compiler
4103 -- should not call RTE_Available (E) until it has decided it wants to
4104 -- generate a call to E. Otherwise we can get spurious dependencies and
4105 -- elaboration orders.
4107 -- if RTE_Available (E) -- WRONG!
4108 -- and then <some condition>
4109 -- then
4110 -- generate call to E;
4112 -- Should be:
4114 -- if <some condition>
4115 -- and then RTE_Available (E) -- Correct
4116 -- then
4117 -- generate call to E;
4119 function RTE_Record_Component (E : RE_Id) return Entity_Id;
4120 -- Given the entity defined in the above tables, as identified by the
4121 -- corresponding value in the RE_Id enumeration type, returns the Id of
4122 -- the corresponding entity, first loading in (parsing, analyzing and
4123 -- expanding) its spec if the unit has not already been loaded. For
4124 -- efficiency reasons, this routine restricts the search of E to fields
4125 -- of record type declarations found in the package entity chain.
4127 -- Note: In the case of a package, RTE can return either an entity that is
4128 -- declared at the top level of the package, or the package entity itself.
4129 -- If an entity within the package has the same simple name as the package,
4130 -- then the entity within the package is returned.
4132 -- If RTE returns, the returned value is the required entity
4134 -- If the entity is not available, then an error message is given. The
4135 -- form of the message depends on whether we are in configurable run time
4136 -- mode or not. In configurable run time mode, a missing entity is not
4137 -- that surprising and merely says that the particular construct is not
4138 -- supported by the run-time in use. If we are not in configurable run
4139 -- time mode, a missing entity is some kind of run-time configuration
4140 -- error. In either case, the result of the call is to raise the exception
4141 -- RE_Not_Available, which should terminate the expansion of the current
4142 -- construct.
4144 function RTE_Record_Component_Available (E : RE_Id) return Boolean;
4145 -- Returns true if a call to RTE_Record_Component will succeed without
4146 -- raising an exception and without generating an error message, i.e.
4147 -- if the call will obtain the desired entity without any problems.
4149 function RTU_Entity (U : RTU_Id) return Entity_Id;
4150 pragma Inline (RTU_Entity);
4151 -- This function returns the entity for the unit referenced by U. If
4152 -- this unit has not been loaded, it returns Empty.
4154 function RTU_Loaded (U : RTU_Id) return Boolean;
4155 pragma Inline (RTU_Loaded);
4156 -- Returns true if indicated unit has already been successfully loaded.
4157 -- If the unit has not been loaded, returns False. Note that this does
4158 -- not mean that an attempt to load it subsequently would fail.
4160 procedure Set_RTU_Loaded (N : Node_Id);
4161 -- Register the predefined unit N as already loaded
4163 procedure SPARK_Implicit_Load (E : RE_Id);
4164 -- Force loading of the unit containing the entity E; only needed in
4165 -- GNATprove mode when processing code that implicitly references a
4166 -- given entity.
4168 end Rtsfind;