RISC-V: Cleanup some temporally files [NFC]
[official-gcc.git] / gcc / ada / rtsfind.ads
blob50c77867dcdc70298f9c21c3e5d22707852cba4f
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-2024, 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 -- IMPORTANT NOTE: the specs of packages and procedures with'ed using
64 -- this mechanism must not contain private with clauses. This is because
65 -- the special context installation/removal for private with clauses
66 -- only works in a clean environment for compilation, and could lead
67 -- here to removing visibility over lib units in the calling context.
69 -- NOTE: If RTU_Id is modified, the subtypes of RTU_Id in the package body
70 -- might need to be modified. See Get_Unit_Name.
72 type RTU_Id is (
74 -- Runtime packages, for list of accessible entities in each package,
75 -- see declarations in the runtime entity table below.
77 RTU_Null,
78 -- Used as a null entry (will cause an error if referenced)
80 -- Package Ada
82 Ada,
84 -- Children of Ada
86 Ada_Calendar,
87 Ada_Dispatching,
88 Ada_Exceptions,
89 Ada_Finalization,
90 Ada_Interrupts,
91 Ada_Numerics,
92 Ada_Real_Time,
93 Ada_Streams,
94 Ada_Strings,
95 Ada_Synchronous_Barriers,
96 Ada_Synchronous_Task_Control,
97 Ada_Tags,
98 Ada_Task_Identification,
99 Ada_Task_Termination,
100 Ada_Text_IO,
101 Ada_Wide_Text_IO,
102 Ada_Wide_Wide_Text_IO,
104 -- Children of Ada.Calendar
106 Ada_Calendar_Delays,
108 -- Children of Ada.Dispatching
110 Ada_Dispatching_EDF,
112 -- Children of Ada.Interrupts
114 Ada_Interrupts_Names,
116 -- Children of Ada.Numerics
118 Ada_Numerics_Big_Numbers,
119 Ada_Numerics_Generic_Elementary_Functions,
121 -- Children of Ada.Numerics.Big_Numbers
123 Ada_Numerics_Big_Numbers_Big_Integers,
124 Ada_Numerics_Big_Numbers_Big_Integers_Ghost,
126 -- Children of Ada.Real_Time
128 Ada_Real_Time_Delays,
129 Ada_Real_Time_Timing_Events,
131 -- Children of Ada.Streams
133 Ada_Streams_Stream_IO,
135 -- Children of Ada.Strings
137 Ada_Strings_Superbounded,
138 Ada_Strings_Wide_Superbounded,
139 Ada_Strings_Wide_Wide_Superbounded,
140 Ada_Strings_Unbounded,
141 Ada_Strings_Text_Buffers,
143 -- Children of Ada.Strings.Text_Buffers
145 Ada_Strings_Text_Buffers_Unbounded,
147 -- Children of Ada.Text_IO (for Check_Text_IO_Special_Unit)
149 Ada_Text_IO_Decimal_IO,
150 Ada_Text_IO_Enumeration_IO,
151 Ada_Text_IO_Fixed_IO,
152 Ada_Text_IO_Float_IO,
153 Ada_Text_IO_Integer_IO,
154 Ada_Text_IO_Modular_IO,
156 -- Children of Ada.Wide_Text_IO (for Check_Text_IO_Special_Unit)
158 Ada_Wide_Text_IO_Decimal_IO,
159 Ada_Wide_Text_IO_Enumeration_IO,
160 Ada_Wide_Text_IO_Fixed_IO,
161 Ada_Wide_Text_IO_Float_IO,
162 Ada_Wide_Text_IO_Integer_IO,
163 Ada_Wide_Text_IO_Modular_IO,
165 -- Children of Ada.Wide_Wide_Text_IO (for Check_Text_IO_Special_Unit)
167 Ada_Wide_Wide_Text_IO_Decimal_IO,
168 Ada_Wide_Wide_Text_IO_Enumeration_IO,
169 Ada_Wide_Wide_Text_IO_Fixed_IO,
170 Ada_Wide_Wide_Text_IO_Float_IO,
171 Ada_Wide_Wide_Text_IO_Integer_IO,
172 Ada_Wide_Wide_Text_IO_Modular_IO,
174 -- Package CUDA
176 CUDA,
178 -- Children of CUDA
180 CUDA_Driver_Types,
181 CUDA_Internal,
182 CUDA_Vector_Types,
184 -- Interfaces
186 Interfaces,
188 -- Children of Interfaces
190 Interfaces_C,
192 -- Children of Interfaces.C
194 Interfaces_C_Strings,
196 -- Package System
198 System,
200 -- Children of System
202 System_Address_Image,
203 System_Address_To_Access_Conversions,
204 System_Arith_64,
205 System_Arith_128,
206 System_Assertions,
207 System_Atomic_Operations,
208 System_Atomic_Primitives,
209 System_Aux_DEC,
210 System_Bignums,
211 System_Bitfields,
212 System_Bit_Ops,
213 System_Boolean_Array_Operations,
214 System_Byte_Swapping,
215 System_Checked_Pools,
216 System_Compare_Array_Signed_8,
217 System_Compare_Array_Signed_16,
218 System_Compare_Array_Signed_32,
219 System_Compare_Array_Signed_64,
220 System_Compare_Array_Signed_128,
221 System_Compare_Array_Unsigned_8,
222 System_Compare_Array_Unsigned_16,
223 System_Compare_Array_Unsigned_32,
224 System_Compare_Array_Unsigned_64,
225 System_Compare_Array_Unsigned_128,
226 System_Concat_2,
227 System_Concat_3,
228 System_Concat_4,
229 System_Concat_5,
230 System_Concat_6,
231 System_Concat_7,
232 System_Concat_8,
233 System_Concat_9,
234 System_Dim,
235 System_DSA_Services,
236 System_DSA_Types,
237 System_Elaboration_Allocators,
238 System_Exception_Table,
239 System_Exceptions_Debug,
240 System_Exn_Int,
241 System_Exn_Flt,
242 System_Exn_LFlt,
243 System_Exn_LLF,
244 System_Exn_LLI,
245 System_Exn_LLLI,
246 System_Exp_Int,
247 System_Exp_LLI,
248 System_Exp_LLLI,
249 System_Exp_LLU,
250 System_Exp_LLLU,
251 System_Exp_Mod,
252 System_Exp_Uns,
253 System_Fat_Flt,
254 System_Fat_LFlt,
255 System_Fat_LLF,
256 System_Fat_SFlt,
257 System_Finalization_Primitives,
258 System_Finalization_Root,
259 System_Fore_Decimal_32,
260 System_Fore_Decimal_64,
261 System_Fore_Decimal_128,
262 System_Fore_Fixed_32,
263 System_Fore_Fixed_64,
264 System_Fore_Fixed_128,
265 System_Fore_Real,
266 System_Img_Bool,
267 System_Img_Char,
268 System_Img_Decimal_32,
269 System_Img_Decimal_64,
270 System_Img_Decimal_128,
271 System_Img_Enum_8,
272 System_Img_Enum_16,
273 System_Img_Enum_32,
274 System_Img_Fixed_32,
275 System_Img_Fixed_64,
276 System_Img_Fixed_128,
277 System_Img_Flt,
278 System_Img_Int,
279 System_Img_LFlt,
280 System_Img_LLF,
281 System_Img_LLI,
282 System_Img_LLLI,
283 System_Img_LLU,
284 System_Img_LLLU,
285 System_Img_Uns,
286 System_Img_WChar,
287 System_Interrupts,
288 System_Long_Long_Float_Expon,
289 System_Machine_Code,
290 System_Mantissa,
291 System_Memory,
292 System_Multiprocessors,
293 System_Pack_03,
294 System_Pack_05,
295 System_Pack_06,
296 System_Pack_07,
297 System_Pack_09,
298 System_Pack_10,
299 System_Pack_11,
300 System_Pack_12,
301 System_Pack_13,
302 System_Pack_14,
303 System_Pack_15,
304 System_Pack_17,
305 System_Pack_18,
306 System_Pack_19,
307 System_Pack_20,
308 System_Pack_21,
309 System_Pack_22,
310 System_Pack_23,
311 System_Pack_24,
312 System_Pack_25,
313 System_Pack_26,
314 System_Pack_27,
315 System_Pack_28,
316 System_Pack_29,
317 System_Pack_30,
318 System_Pack_31,
319 System_Pack_33,
320 System_Pack_34,
321 System_Pack_35,
322 System_Pack_36,
323 System_Pack_37,
324 System_Pack_38,
325 System_Pack_39,
326 System_Pack_40,
327 System_Pack_41,
328 System_Pack_42,
329 System_Pack_43,
330 System_Pack_44,
331 System_Pack_45,
332 System_Pack_46,
333 System_Pack_47,
334 System_Pack_48,
335 System_Pack_49,
336 System_Pack_50,
337 System_Pack_51,
338 System_Pack_52,
339 System_Pack_53,
340 System_Pack_54,
341 System_Pack_55,
342 System_Pack_56,
343 System_Pack_57,
344 System_Pack_58,
345 System_Pack_59,
346 System_Pack_60,
347 System_Pack_61,
348 System_Pack_62,
349 System_Pack_63,
350 System_Pack_65,
351 System_Pack_66,
352 System_Pack_67,
353 System_Pack_68,
354 System_Pack_69,
355 System_Pack_70,
356 System_Pack_71,
357 System_Pack_72,
358 System_Pack_73,
359 System_Pack_74,
360 System_Pack_75,
361 System_Pack_76,
362 System_Pack_77,
363 System_Pack_78,
364 System_Pack_79,
365 System_Pack_80,
366 System_Pack_81,
367 System_Pack_82,
368 System_Pack_83,
369 System_Pack_84,
370 System_Pack_85,
371 System_Pack_86,
372 System_Pack_87,
373 System_Pack_88,
374 System_Pack_89,
375 System_Pack_90,
376 System_Pack_91,
377 System_Pack_92,
378 System_Pack_93,
379 System_Pack_94,
380 System_Pack_95,
381 System_Pack_96,
382 System_Pack_97,
383 System_Pack_98,
384 System_Pack_99,
385 System_Pack_100,
386 System_Pack_101,
387 System_Pack_102,
388 System_Pack_103,
389 System_Pack_104,
390 System_Pack_105,
391 System_Pack_106,
392 System_Pack_107,
393 System_Pack_108,
394 System_Pack_109,
395 System_Pack_110,
396 System_Pack_111,
397 System_Pack_112,
398 System_Pack_113,
399 System_Pack_114,
400 System_Pack_115,
401 System_Pack_116,
402 System_Pack_117,
403 System_Pack_118,
404 System_Pack_119,
405 System_Pack_120,
406 System_Pack_121,
407 System_Pack_122,
408 System_Pack_123,
409 System_Pack_124,
410 System_Pack_125,
411 System_Pack_126,
412 System_Pack_127,
413 System_Parameters,
414 System_Partition_Interface,
415 System_Pool_Global,
416 System_Pool_Size,
417 System_Put_Images,
418 System_Put_Task_Images,
419 System_Relative_Delays,
420 System_Return_Stack,
421 System_RPC,
422 System_Scalar_Values,
423 System_Secondary_Stack,
424 System_Shared_Storage,
425 System_Soft_Links,
426 System_Standard_Library,
427 System_Storage_Elements,
428 System_Storage_Pools,
429 System_Stream_Attributes,
430 System_Task_Info,
431 System_Tasking,
432 System_Unsigned_Types,
433 System_Val_Bool,
434 System_Val_Char,
435 System_Val_Decimal_32,
436 System_Val_Decimal_64,
437 System_Val_Decimal_128,
438 System_Val_Enum_8,
439 System_Val_Enum_16,
440 System_Val_Enum_32,
441 System_Val_Fixed_32,
442 System_Val_Fixed_64,
443 System_Val_Fixed_128,
444 System_Val_Flt,
445 System_Val_Int,
446 System_Val_LFlt,
447 System_Val_LLF,
448 System_Val_LLI,
449 System_Val_LLLI,
450 System_Val_LLU,
451 System_Val_LLLU,
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_Uns,
466 System_Wid_WChar,
467 System_WWd_Char,
468 System_WWd_Enum,
469 System_WWd_Wchar,
471 -- Children of System.Atomic_Operations
473 System_Atomic_Operations_Test_And_Set,
475 -- Children of System.Dim
477 System_Dim_Float_IO,
478 System_Dim_Integer_IO,
480 -- Children of System.Multiprocessors
482 System_Multiprocessors_Dispatching_Domains,
484 -- Children of System.Storage_Pools
486 System_Storage_Pools_Subpools,
488 -- Children of System.Strings
490 System_Strings_Stream_Ops,
492 -- Children of System.Tasking
494 System_Tasking_Async_Delays,
495 System_Tasking_Async_Delays_Enqueue_Calendar,
496 System_Tasking_Async_Delays_Enqueue_RT,
497 System_Tasking_Protected_Objects,
498 System_Tasking_Protected_Objects_Entries,
499 System_Tasking_Protected_Objects_Operations,
500 System_Tasking_Protected_Objects_Single_Entry,
501 System_Tasking_Restricted_Stages,
502 System_Tasking_Rendezvous,
503 System_Tasking_Stages);
505 --------------------------
506 -- Runtime Entity Table --
507 --------------------------
509 -- This is the enumeration type used to define the argument passed to
510 -- the RTE function. The name must exactly match the name of the entity
511 -- involved, and in the case of a package entity, this name must uniquely
512 -- imply the package containing the entity.
514 -- As far as possible, we avoid duplicate names in runtime packages, so
515 -- that the name RE_nnn uniquely identifies the entity nnn. In some cases,
516 -- it is impossible to avoid such duplication because the names come from
517 -- RM defined packages. In such cases, the name is of the form RO_XX_nnn
518 -- where XX is two letters used to differentiate the multiple occurrences
519 -- of the name xx, and nnn is the entity name.
521 -- Note that not all entities in the units contained in the run-time unit
522 -- table are included in the following table, only those that actually
523 -- have to be referenced from generated code.
525 -- Note on RE_Null. This value is used as a null entry where an RE_Id
526 -- value is required syntactically, but no real entry is required or
527 -- needed. Use of this value will cause a fatal error in an RTE call.
529 -- It is normally not allowed to have more than one of these entities with
530 -- the same name in a given package. The one exception is Save_Occurrence,
531 -- where the RM mandates the overloading. In this case, the compiler uses
532 -- the procedure, not the function, and the procedure must come first so
533 -- that the compiler finds it and not the function.
535 type RE_Id is (
537 RE_Null,
539 RO_CA_Clock_Time, -- Ada.Calendar
540 RO_CA_Time, -- Ada.Calendar
542 RO_CA_Delay_For, -- Ada.Calendar.Delays
543 RO_CA_Delay_Until, -- Ada.Calendar.Delays
544 RO_CA_To_Duration, -- Ada.Calendar.Delays
546 RE_Yield, -- Ada_Dispatching
548 RE_Set_Deadline, -- Ada.Dispatching.EDF
550 RE_Exception_Id, -- Ada.Exceptions
551 RE_Exception_Information, -- Ada.Exceptions
552 RE_Exception_Message, -- Ada.Exceptions
553 RE_Exception_Name_Simple, -- Ada.Exceptions
554 RE_Exception_Occurrence, -- Ada.Exceptions
555 RE_Null_Id, -- Ada.Exceptions
556 RE_Null_Occurrence, -- Ada.Exceptions
557 RE_Raise_Exception, -- Ada.Exceptions
558 RE_Raise_Exception_Always, -- Ada.Exceptions
559 RE_Raise_From_Controlled_Operation, -- Ada.Exceptions
560 RE_Reraise_Occurrence, -- Ada.Exceptions
561 RE_Reraise_Occurrence_Always, -- Ada.Exceptions
562 RE_Reraise_Occurrence_No_Defer, -- Ada.Exceptions
563 RE_Save_Occurrence, -- Ada.Exceptions
564 RE_Triggered_By_Abort, -- Ada.Exceptions
566 RE_Interrupt_ID, -- Ada.Interrupts
567 RE_Is_Reserved, -- Ada.Interrupts
568 RE_Is_Attached, -- Ada.Interrupts
569 RE_Current_Handler, -- Ada.Interrupts
570 RE_Attach_Handler, -- Ada.Interrupts
571 RE_Exchange_Handler, -- Ada.Interrupts
572 RE_Detach_Handler, -- Ada.Interrupts
573 RE_Reference, -- Ada.Interrupts
575 RE_Big_Integer, -- Ada.Numerics.Big_Numbers.Big_Integers
576 RO_GH_Big_Integer, -- Ada.Numerics.Big_Numbers.Big_Integers_Ghost
578 RE_Names, -- Ada.Interrupts.Names
580 RE_Clock, -- Ada.Real_Time
581 RE_Clock_Time, -- Ada.Real_Time [used by GNATprove]
582 RE_Time_Span, -- Ada.Real_Time
583 RE_Time_Span_Zero, -- Ada.Real_Time
584 RO_RT_Time, -- Ada.Real_Time
586 RO_RT_Delay_Until, -- Ada.Real_Time.Delays
587 RO_RT_To_Duration, -- Ada.Real_Time.Delays
589 RE_Set_Handler, -- Ada.Real_Time.Timing_Events
590 RE_Timing_Event, -- Ada.Real_Time.Timing_Events
592 RE_Root_Stream_Type, -- Ada.Streams
593 RE_Stream_Element, -- Ada.Streams
594 RE_Stream_Element_Array, -- Ada.Streams
595 RE_Stream_Element_Offset, -- Ada.Streams
597 RO_SU_Super_String, -- Ada.Strings.Superbounded
599 RO_WI_Super_String, -- Ada.Strings.Wide_Superbounded
601 RO_WW_Super_String, -- Ada.Strings.Wide_Wide_Superbounded
603 RE_Unbounded_String, -- Ada.Strings.Unbounded
605 RE_Root_Buffer_Type, -- Ada.Strings.Text_Buffers
606 RE_Put_UTF_8, -- Ada.Strings.Text_Buffers
607 RE_Set_Trim_Leading_Spaces, -- Ada.Strings.Text_Buffers
608 RE_Wide_Wide_Put, -- Ada.Strings.Text_Buffers
610 RE_Buffer_Type, -- Ada.Strings.Text_Buffers.Unbounded
611 RE_Get, -- Ada.Strings.Text_Buffers.Unbounded
612 RE_Wide_Get, -- Ada.Strings.Text_Buffers.Unbounded
613 RE_Wide_Wide_Get, -- Ada.Strings.Text_Buffers.Unbounded
615 RE_Wait_For_Release, -- Ada.Synchronous_Barriers
617 RE_Suspend_Until_True, -- Ada.Synchronous_Task_Control
618 RE_Suspension_Object, -- Ada.Synchronous_Task_Control
620 RE_Access_Level, -- Ada.Tags
621 RE_Alignment, -- Ada.Tags
622 RE_Address_Array, -- Ada.Tags
623 RE_Addr_Ptr, -- Ada.Tags
624 RE_Base_Address, -- Ada.Tags
625 RE_Check_TSD, -- Ada.Tags
626 RE_Cstring_Ptr, -- Ada.Tags
627 RE_CW_Membership, -- Ada.Tags
628 RE_Descendant_Tag, -- Ada.Tags
629 RE_Dispatch_Table, -- Ada.Tags
630 RE_Dispatch_Table_Wrapper, -- Ada.Tags
631 RE_Displace, -- Ada.Tags
632 RE_DT, -- Ada.Tags
633 RE_DT_Offset_To_Top_Offset, -- Ada.Tags
634 RE_DT_Predef_Prims_Offset, -- Ada.Tags
635 RE_DT_Typeinfo_Ptr_Size, -- Ada.Tags
636 RE_External_Tag, -- Ada.Tags
637 RO_TA_External_Tag, -- Ada.Tags
638 RE_Get_Access_Level, -- Ada.Tags
639 RE_Get_Entry_Index, -- Ada.Tags
640 RE_Get_Offset_Index, -- Ada.Tags
641 RE_Get_Prim_Op_Kind, -- Ada.Tags
642 RE_Get_Tagged_Kind, -- Ada.Tags
643 RE_HT_Link, -- Ada.Tags
644 RE_Interfaces_Array, -- Ada.Tags
645 RE_Interfaces_Table, -- Ada.Tags
646 RE_Interface_Data, -- Ada.Tags
647 RE_Interface_Data_Element, -- Ada.Tags
648 RE_Interface_Tag, -- Ada.Tags
649 RE_Is_Abstract, -- Ada.Tags
650 RE_IW_Membership, -- Ada.Tags
651 RE_Max_Predef_Prims, -- Ada.Tags
652 RE_Needs_Finalization, -- Ada.Tags
653 RE_No_Dispatch_Table_Wrapper, -- Ada.Tags
654 RE_No_Tag, -- Ada.Tags
655 RE_NDT_Prims_Ptr, -- Ada.Tags
656 RE_Object_Specific_Data, -- Ada.Tags
657 RE_Offset_To_Top, -- Ada.Tags
658 RE_Offset_To_Top_Ptr, -- Ada.Tags
659 RE_Offset_To_Top_Function_Ptr, -- Ada.Tags
660 RE_OSD_Table, -- Ada.Tags
661 RE_OSD_Num_Prims, -- Ada.Tags
662 RE_POK_Function, -- Ada.Tags
663 RE_POK_Procedure, -- Ada.Tags
664 RE_POK_Protected_Entry, -- Ada.Tags
665 RE_POK_Protected_Function, -- Ada.Tags
666 RE_POK_Protected_Procedure, -- Ada.Tags
667 RE_POK_Task_Entry, -- Ada.Tags
668 RE_POK_Task_Function, -- Ada.Tags
669 RE_POK_Task_Procedure, -- Ada.Tags
670 RE_Predef_Prims, -- Ada.Tags
671 RE_Predef_Prims_Table_Ptr, -- Ada.Tags
672 RE_Prim_Op_Kind, -- Ada.Tags
673 RE_Prim_Ptr, -- Ada.Tags
674 RE_Prims_Ptr, -- Ada.Tags
675 RE_Primary_DT, -- Ada.Tags
676 RE_Signature, -- Ada.Tags
677 RE_SSD, -- Ada.Tags
678 RE_Type_Specific_Data, -- Ada.Tags
679 RE_Register_Interface_Offset, -- Ada.Tags
680 RE_Register_Tag, -- Ada.Tags
681 RE_Transportable, -- Ada.Tags
682 RE_Secondary_DT, -- Ada.Tags
683 RE_Secondary_Tag, -- Ada.Tags
684 RE_Select_Specific_Data, -- Ada.Tags
685 RE_Set_Entry_Index, -- Ada.Tags
686 RE_Set_Dynamic_Offset_To_Top, -- Ada.Tags
687 RE_Set_Prim_Op_Kind, -- Ada.Tags
688 RE_Size_Func, -- Ada.Tags
689 RE_Size_Ptr, -- Ada.Tags
690 RE_Tag, -- Ada.Tags
691 RE_Tag_Error, -- Ada.Tags
692 RE_Tag_Kind, -- Ada.Tags
693 RE_Tag_Ptr, -- Ada.Tags
694 RE_Tag_Table, -- Ada.Tags
695 RE_Tags_Table, -- Ada.Tags
696 RE_Tagged_Kind, -- Ada.Tags
697 RE_Type_Specific_Data_Ptr, -- Ada.Tags
698 RE_TK_Abstract_Limited_Tagged, -- Ada.Tags
699 RE_TK_Abstract_Tagged, -- Ada.Tags
700 RE_TK_Limited_Tagged, -- Ada.Tags
701 RE_TK_Protected, -- Ada.Tags
702 RE_TK_Tagged, -- Ada.Tags
703 RE_TK_Task, -- Ada.Tags
704 RE_Unregister_Tag, -- Ada.Tags
705 RE_Wide_Wide_Expanded_Name, -- Ada.Tags
707 RE_Set_Specific_Handler, -- Ada.Task_Termination
708 RE_Specific_Handler, -- Ada.Task_Termination
710 RE_Abort_Task, -- Ada.Task_Identification
711 RE_Current_Task, -- Ada.Task_Identification
712 RO_AT_Task_Id, -- Ada.Task_Identification
713 RE_Tasking_State, -- Ada.Task_Identification
715 RE_Decimal_IO, -- Ada.Text_IO
716 RE_Fixed_IO, -- Ada.Text_IO
718 RO_WT_Decimal_IO, -- Ada.Wide_Text_IO
719 RO_WT_Fixed_IO, -- Ada.Wide_Text_IO
721 RO_WW_Decimal_IO, -- Ada.Wide_Wide_Text_IO
722 RO_WW_Fixed_IO, -- Ada.Wide_Wide_Text_IO
724 RE_Stream_T, -- CUDA.Driver_Types
726 RE_Launch_Kernel, -- CUDA.Internal
727 RE_Pop_Call_Configuration, -- CUDA.Internal
728 RE_Push_Call_Configuration, -- CUDA.Internal
729 RE_Register_Fat_Binary, -- CUDA.Internal
730 RE_Register_Fat_Binary_End, -- CUDA.Internal
731 RE_Register_Function, -- CUDA.Internal
733 RE_Dim3, -- CUDA.Vector_Types
735 RE_Integer_8, -- Interfaces
736 RE_Integer_16, -- Interfaces
737 RE_Integer_32, -- Interfaces
738 RE_Integer_64, -- Interfaces
739 RE_Integer_128, -- Interfaces
740 RE_Unsigned_8, -- Interfaces
741 RE_Unsigned_16, -- Interfaces
742 RE_Unsigned_32, -- Interfaces
743 RE_Unsigned_64, -- Interfaces
744 RE_Unsigned_128, -- Interfaces
746 RO_IC_Unsigned, -- Interfaces.C
748 RE_Address, -- System
749 RE_Any_Priority, -- System
750 RE_Bit_Order, -- System
751 RE_Default_Priority, -- System
752 RE_High_Order_First, -- System
753 RE_Interrupt_Priority, -- System
754 RE_Low_Order_First, -- System
755 RE_Max_Base_Digits, -- System
756 RE_Null_Address, -- System
757 RE_Priority, -- System
759 RE_Address_Image, -- System.Address_Image
761 RE_Add_With_Ovflo_Check64, -- System.Arith_64
762 RE_Double_Divide64, -- System.Arith_64
763 RE_Multiply_With_Ovflo_Check64, -- System.Arith_64
764 RE_Scaled_Divide64, -- System.Arith_64
765 RE_Subtract_With_Ovflo_Check64, -- System.Arith_64
767 RE_Add_With_Ovflo_Check128, -- System.Arith_128
768 RE_Double_Divide128, -- System.Arith_128
769 RE_Multiply_With_Ovflo_Check128, -- System.Arith_128
770 RE_Subtract_With_Ovflo_Check128, -- System.Arith_128
771 RE_Scaled_Divide128, -- System.Arith_128
773 RE_Assert_Failure, -- System.Assertions
774 RE_Raise_Assert_Failure, -- System.Assertions
776 RE_Lock_Free_Read_8, -- System.Atomic_Primitives
777 RE_Lock_Free_Read_16, -- System.Atomic_Primitives
778 RE_Lock_Free_Read_32, -- System.Atomic_Primitives
779 RE_Lock_Free_Read_64, -- System.Atomic_Primitives
780 RE_Lock_Free_Try_Write_8, -- System.Atomic_Primitives
781 RE_Lock_Free_Try_Write_16, -- System.Atomic_Primitives
782 RE_Lock_Free_Try_Write_32, -- System.Atomic_Primitives
783 RE_Lock_Free_Try_Write_64, -- System.Atomic_Primitives
784 RE_Uint8, -- System.Atomic_Primitives
785 RE_Uint16, -- System.Atomic_Primitives
786 RE_Uint32, -- System.Atomic_Primitives
787 RE_Uint64, -- System.Atomic_Primitives
789 RE_Test_And_Set_Flag, -- System.Atomic_Operations.Test_And_Set
790 RE_Atomic_Test_And_Set, -- System.Atomic_Operations.Test_And_Set
792 RE_AST_Handler, -- System.Aux_DEC
793 RE_Type_Class, -- System.Aux_DEC
794 RE_Type_Class_Enumeration, -- System.Aux_DEC
795 RE_Type_Class_Integer, -- System.Aux_DEC
796 RE_Type_Class_Fixed_Point, -- System.Aux_DEC
797 RE_Type_Class_Floating_Point, -- System.Aux_DEC
798 RE_Type_Class_Array, -- System.Aux_DEC
799 RE_Type_Class_Record, -- System.Aux_DEC
800 RE_Type_Class_Access, -- System.Aux_DEC
801 RE_Type_Class_Task, -- System.Aux_DEC
802 RE_Type_Class_Address, -- System.Aux_DEC
804 RE_Big_Abs, -- System.Bignums
805 RE_Big_Add, -- System.Bignums
806 RE_Big_Div, -- System.Bignums
807 RE_Big_Exp, -- System.Bignums
808 RE_Big_Mod, -- System.Bignums
809 RE_Big_Mul, -- System.Bignums
810 RE_Big_Neg, -- System.Bignums
811 RE_Big_Rem, -- System.Bignums
812 RE_Big_Sub, -- System.Bignums
814 RE_Big_EQ, -- System.Bignums
815 RE_Big_GE, -- System.Bignums
816 RE_Big_GT, -- System.Bignums
817 RE_Big_LE, -- System.Bignums
818 RE_Big_LT, -- System.Bignums
819 RE_Big_NE, -- System.Bignums
821 RE_Bignum, -- System.Bignums
822 RE_Bignum_In_LLI_Range, -- System.Bignums
823 RE_To_Bignum, -- System.Bignums
824 RE_From_Bignum, -- System.Bignums
826 RE_Val_2, -- System.Bitfields
827 RE_Copy_Bitfield, -- System.Bitfields
828 RE_Fast_Copy_Bitfield, -- System.Bitfields
830 RE_Bit_And, -- System.Bit_Ops
831 RE_Bit_Eq, -- System.Bit_Ops
832 RE_Bit_Not, -- System.Bit_Ops
833 RE_Bit_Or, -- System.Bit_Ops
834 RE_Bit_Xor, -- System.Bit_Ops
836 RE_Vector_Not, -- System.Boolean_Array_Operations,
837 RE_Vector_And, -- System.Boolean_Array_Operations,
838 RE_Vector_Or, -- System.Boolean_Array_Operations,
839 RE_Vector_Nand, -- System.Boolean_Array_Operations,
840 RE_Vector_Nor, -- System.Boolean_Array_Operations,
841 RE_Vector_Nxor, -- System.Boolean_Array_Operations,
842 RE_Vector_Xor, -- System.Boolean_Array_Operations,
844 RE_Bswap_16, -- System.Byte_Swapping
845 RE_Bswap_32, -- System.Byte_Swapping
846 RE_Bswap_64, -- System.Byte_Swapping
847 RE_Bswap_128, -- System.Byte_Swapping
849 RE_Checked_Pool, -- System.Checked_Pools
851 RE_Compare_Array_S8, -- System.Compare_Array_Signed_8
852 RE_Compare_Array_S8_Unaligned, -- System.Compare_Array_Signed_8
854 RE_Compare_Array_S16, -- System.Compare_Array_Signed_16
855 RE_Compare_Array_S32, -- System.Compare_Array_Signed_32
856 RE_Compare_Array_S64, -- System.Compare_Array_Signed_64
857 RE_Compare_Array_S128, -- System.Compare_Array_Signed_128
859 RE_Compare_Array_U8, -- System.Compare_Array_Unsigned_8
860 RE_Compare_Array_U8_Unaligned, -- System.Compare_Array_Unsigned_8
862 RE_Compare_Array_U16, -- System.Compare_Array_Unsigned_16
863 RE_Compare_Array_U32, -- System.Compare_Array_Unsigned_32
864 RE_Compare_Array_U64, -- System.Compare_Array_Unsigned_64
865 RE_Compare_Array_U128, -- System.Compare_Array_Unsigned_128
867 RE_Str_Concat_2, -- System.Concat_2
868 RE_Str_Concat_3, -- System.Concat_3
869 RE_Str_Concat_4, -- System.Concat_4
870 RE_Str_Concat_5, -- System.Concat_5
871 RE_Str_Concat_6, -- System.Concat_6
872 RE_Str_Concat_7, -- System.Concat_7
873 RE_Str_Concat_8, -- System.Concat_8
874 RE_Str_Concat_9, -- System.Concat_9
876 RE_Get_Active_Partition_Id, -- System.DSA_Services
877 RE_Get_Local_Partition_Id, -- System.DSA_Services
878 RE_Get_Passive_Partition_Id, -- System.DSA_Services
880 RE_Any_Container_Ptr, -- System.DSA_Types
882 RE_Check_Standard_Allocator, -- System.Elaboration_Allocators
884 RE_Register_Exception, -- System.Exception_Table
886 RE_Local_Raise, -- System.Exceptions_Debug
888 RE_Exn_Integer, -- System.Exn_Int
890 RE_Exn_Float, -- System.Exn_Flt
892 RE_Exn_Long_Float, -- System.Exn_LFlt
894 RE_Exn_Long_Long_Float, -- System.Exn_LLF
896 RE_Exn_Long_Long_Integer, -- System.Exn_LLI
898 RE_Exn_Long_Long_Long_Integer, -- System.Exn_LLLI
900 RE_Exp_Integer, -- System.Exp_Int
902 RE_Exp_Long_Long_Integer, -- System.Exp_LLI
904 RE_Exp_Long_Long_Long_Integer, -- System.Exp_LLLI
906 RE_Exp_Long_Long_Unsigned, -- System.Exp_LLU
908 RE_Exp_Long_Long_Long_Unsigned, -- System.Exp_LLLU
910 RE_Exp_Modular, -- System.Exp_Mod
912 RE_Exp_Unsigned, -- System.Exp_Uns
914 RE_Attr_Float, -- System.Fat_Flt
916 RE_Attr_Long_Float, -- System.Fat_LFlt
918 RE_Attr_Long_Long_Float, -- System.Fat_LLF
920 RE_Add_Offset_To_Address, -- System.Finalization_Primitives
921 RE_Attach_Object_To_Collection, -- System.Finalization_Primitives
922 RE_Attach_Object_To_Master, -- System.Finalization_Primitives
923 RE_Attach_Object_To_Node, -- System.Finalization_Primitives
924 RE_Chain_Node_To_Master, -- System.Finalization_Primitives
925 RE_Detach_Object_From_Collection, -- System.Finalization_Primitives
926 RE_Finalization_Collection, -- System.Finalization_Primitives
927 RE_Finalization_Collection_Ptr, -- System.Finalization_Primitives
928 RE_Finalization_Master, -- System.Finalization_Primitives
929 RE_Finalize_Master, -- System.Finalization_Primitives
930 RE_Finalize_Object, -- System.Finalization_Primitives
931 RE_Master_Node, -- System.Finalization_Primitives
932 RE_Suppress_Object_Finalize_At_End, -- System.Finalization_Primitives
934 RE_Root_Controlled, -- System.Finalization_Root
936 RE_Fore_Decimal32, -- System.Fore_Decimal_32
938 RE_Fore_Decimal64, -- System.Fore_Decimal_64
940 RE_Fore_Decimal128, -- System.Fore_Decimal_128
942 RE_Fore_Fixed, -- System.Fore_Real
944 RE_Fore_Fixed32, -- System.Fore_Fixed_32
946 RE_Fore_Fixed64, -- System.Fore_Fixed_64
948 RE_Fore_Fixed128, -- System.Fore_Fixed_128
950 RE_Image_Boolean, -- System.Img_Bool
952 RE_Image_Character, -- System.Img_Char
953 RE_Image_Character_05, -- System.Img_Char
955 RE_Image_Decimal32, -- System.Img_Decimal_32
957 RE_Image_Decimal64, -- System.Img_Decimal_64
959 RE_Image_Decimal128, -- System.Img_Decimal_128
961 RE_Image_Enumeration_8, -- System.Img_Enum_New
962 RE_Image_Enumeration_16, -- System.Img_Enum_New
963 RE_Image_Enumeration_32, -- System.Img_Enum_New
965 RE_Image_Float, -- System_Img_Flt
967 RE_Image_Integer, -- System.Img_Int
969 RE_Image_Long_Float, -- System_Img_LFlt
971 RE_Image_Long_Long_Float, -- System_Img_LLF
973 RE_Image_Long_Long_Integer, -- System.Img_LLI
975 RE_Image_Long_Long_Long_Integer, -- System.Img_LLLI
977 RE_Image_Long_Long_Unsigned, -- System.Img_LLU
979 RE_Image_Long_Long_Long_Unsigned, -- System.Img_LLLU
981 RE_Image_Fixed, -- System.Img_LFlt
983 RE_Image_Fixed32, -- System.Img_Fixed_32
985 RE_Image_Fixed64, -- System.Img_Fixed_64
987 RE_Image_Fixed128, -- System.Img_Fixed_128
989 RE_Image_Unsigned, -- System.Img_Uns
991 RE_Image_Wide_Character, -- System.Img_WChar
992 RE_Image_Wide_Wide_Character, -- System.Img_WChar
994 RE_Bind_Interrupt_To_Entry, -- System.Interrupts
995 RE_Default_Interrupt_Priority, -- System.Interrupts
996 RE_Dynamic_Interrupt_Protection, -- System.Interrupts
997 RE_Install_Handlers, -- System.Interrupts
998 RE_Install_Restricted_Handlers, -- System.Interrupts
999 RE_Register_Interrupt_Handler, -- System.Interrupts
1000 RE_Static_Interrupt_Protection, -- System.Interrupts
1001 RE_System_Interrupt_Id, -- System.Interrupts
1003 RE_Expon_LLF, -- System.Long_Long_Float_Expon
1005 RE_Asm_Insn, -- System.Machine_Code
1006 RE_Asm_Input_Operand, -- System.Machine_Code
1007 RE_Asm_Output_Operand, -- System.Machine_Code
1009 RE_Mantissa_Value, -- System.Mantissa
1011 RE_Free, -- System.Memory
1013 RE_CPU_Range, -- System.Multiprocessors
1015 RE_Bits_03, -- System.Pack_03
1016 RE_Get_03, -- System.Pack_03
1017 RE_Set_03, -- System.Pack_03
1019 RE_Bits_05, -- System.Pack_05
1020 RE_Get_05, -- System.Pack_05
1021 RE_Set_05, -- System.Pack_05
1023 RE_Bits_06, -- System.Pack_06
1024 RE_Get_06, -- System.Pack_06
1025 RE_GetU_06, -- System.Pack_06
1026 RE_Set_06, -- System.Pack_06
1027 RE_SetU_06, -- System.Pack_06
1029 RE_Bits_07, -- System.Pack_07
1030 RE_Get_07, -- System.Pack_07
1031 RE_Set_07, -- System.Pack_07
1033 RE_Bits_09, -- System.Pack_09
1034 RE_Get_09, -- System.Pack_09
1035 RE_Set_09, -- System.Pack_09
1037 RE_Bits_10, -- System.Pack_10
1038 RE_Get_10, -- System.Pack_10
1039 RE_GetU_10, -- System.Pack_10
1040 RE_Set_10, -- System.Pack_10
1041 RE_SetU_10, -- System.Pack_10
1043 RE_Bits_11, -- System.Pack_11
1044 RE_Get_11, -- System.Pack_11
1045 RE_Set_11, -- System.Pack_11
1047 RE_Bits_12, -- System.Pack_12
1048 RE_Get_12, -- System.Pack_12
1049 RE_GetU_12, -- System.Pack_12
1050 RE_Set_12, -- System.Pack_12
1051 RE_SetU_12, -- System.Pack_12
1053 RE_Bits_13, -- System.Pack_13
1054 RE_Get_13, -- System.Pack_13
1055 RE_Set_13, -- System.Pack_13
1057 RE_Bits_14, -- System.Pack_14
1058 RE_Get_14, -- System.Pack_14
1059 RE_GetU_14, -- System.Pack_14
1060 RE_Set_14, -- System.Pack_14
1061 RE_SetU_14, -- System.Pack_14
1063 RE_Bits_15, -- System.Pack_15
1064 RE_Get_15, -- System.Pack_15
1065 RE_Set_15, -- System.Pack_15
1067 RE_Bits_17, -- System.Pack_17
1068 RE_Get_17, -- System.Pack_17
1069 RE_Set_17, -- System.Pack_17
1071 RE_Bits_18, -- System.Pack_18
1072 RE_Get_18, -- System.Pack_18
1073 RE_GetU_18, -- System.Pack_18
1074 RE_Set_18, -- System.Pack_18
1075 RE_SetU_18, -- System.Pack_18
1077 RE_Bits_19, -- System.Pack_19
1078 RE_Get_19, -- System.Pack_19
1079 RE_Set_19, -- System.Pack_19
1081 RE_Bits_20, -- System.Pack_20
1082 RE_Get_20, -- System.Pack_20
1083 RE_GetU_20, -- System.Pack_20
1084 RE_Set_20, -- System.Pack_20
1085 RE_SetU_20, -- System.Pack_20
1087 RE_Bits_21, -- System.Pack_21
1088 RE_Get_21, -- System.Pack_21
1089 RE_Set_21, -- System.Pack_21
1091 RE_Bits_22, -- System.Pack_22
1092 RE_Get_22, -- System.Pack_22
1093 RE_GetU_22, -- System.Pack_22
1094 RE_Set_22, -- System.Pack_22
1095 RE_SetU_22, -- System.Pack_22
1097 RE_Bits_23, -- System.Pack_23
1098 RE_Get_23, -- System.Pack_23
1099 RE_Set_23, -- System.Pack_23
1101 RE_Bits_24, -- System.Pack_24
1102 RE_Get_24, -- System.Pack_24
1103 RE_GetU_24, -- System.Pack_24
1104 RE_Set_24, -- System.Pack_24
1105 RE_SetU_24, -- System.Pack_24
1107 RE_Bits_25, -- System.Pack_25
1108 RE_Get_25, -- System.Pack_25
1109 RE_Set_25, -- System.Pack_25
1111 RE_Bits_26, -- System.Pack_26
1112 RE_Get_26, -- System.Pack_26
1113 RE_GetU_26, -- System.Pack_26
1114 RE_Set_26, -- System.Pack_26
1115 RE_SetU_26, -- System.Pack_26
1117 RE_Bits_27, -- System.Pack_27
1118 RE_Get_27, -- System.Pack_27
1119 RE_Set_27, -- System.Pack_27
1121 RE_Bits_28, -- System.Pack_28
1122 RE_Get_28, -- System.Pack_28
1123 RE_GetU_28, -- System.Pack_28
1124 RE_Set_28, -- System.Pack_28
1125 RE_SetU_28, -- System.Pack_28
1127 RE_Bits_29, -- System.Pack_29
1128 RE_Get_29, -- System.Pack_29
1129 RE_Set_29, -- System.Pack_29
1131 RE_Bits_30, -- System.Pack_30
1132 RE_Get_30, -- System.Pack_30
1133 RE_GetU_30, -- System.Pack_30
1134 RE_Set_30, -- System.Pack_30
1135 RE_SetU_30, -- System.Pack_30
1137 RE_Bits_31, -- System.Pack_31
1138 RE_Get_31, -- System.Pack_31
1139 RE_Set_31, -- System.Pack_31
1141 RE_Bits_33, -- System.Pack_33
1142 RE_Get_33, -- System.Pack_33
1143 RE_Set_33, -- System.Pack_33
1145 RE_Bits_34, -- System.Pack_34
1146 RE_Get_34, -- System.Pack_34
1147 RE_GetU_34, -- System.Pack_34
1148 RE_Set_34, -- System.Pack_34
1149 RE_SetU_34, -- System.Pack_34
1151 RE_Bits_35, -- System.Pack_35
1152 RE_Get_35, -- System.Pack_35
1153 RE_Set_35, -- System.Pack_35
1155 RE_Bits_36, -- System.Pack_36
1156 RE_Get_36, -- System.Pack_36
1157 RE_GetU_36, -- System.Pack_36
1158 RE_Set_36, -- System.Pack_36
1159 RE_SetU_36, -- System.Pack_36
1161 RE_Bits_37, -- System.Pack_37
1162 RE_Get_37, -- System.Pack_37
1163 RE_Set_37, -- System.Pack_37
1165 RE_Bits_38, -- System.Pack_38
1166 RE_Get_38, -- System.Pack_38
1167 RE_GetU_38, -- System.Pack_38
1168 RE_Set_38, -- System.Pack_38
1169 RE_SetU_38, -- System.Pack_38
1171 RE_Bits_39, -- System.Pack_39
1172 RE_Get_39, -- System.Pack_39
1173 RE_Set_39, -- System.Pack_39
1175 RE_Bits_40, -- System.Pack_40
1176 RE_Get_40, -- System.Pack_40
1177 RE_GetU_40, -- System.Pack_40
1178 RE_Set_40, -- System.Pack_40
1179 RE_SetU_40, -- System.Pack_40
1181 RE_Bits_41, -- System.Pack_41
1182 RE_Get_41, -- System.Pack_41
1183 RE_Set_41, -- System.Pack_41
1185 RE_Bits_42, -- System.Pack_42
1186 RE_Get_42, -- System.Pack_42
1187 RE_GetU_42, -- System.Pack_42
1188 RE_Set_42, -- System.Pack_42
1189 RE_SetU_42, -- System.Pack_42
1191 RE_Bits_43, -- System.Pack_43
1192 RE_Get_43, -- System.Pack_43
1193 RE_Set_43, -- System.Pack_43
1195 RE_Bits_44, -- System.Pack_44
1196 RE_Get_44, -- System.Pack_44
1197 RE_GetU_44, -- System.Pack_44
1198 RE_Set_44, -- System.Pack_44
1199 RE_SetU_44, -- System.Pack_44
1201 RE_Bits_45, -- System.Pack_45
1202 RE_Get_45, -- System.Pack_45
1203 RE_Set_45, -- System.Pack_45
1205 RE_Bits_46, -- System.Pack_46
1206 RE_Get_46, -- System.Pack_46
1207 RE_GetU_46, -- System.Pack_46
1208 RE_Set_46, -- System.Pack_46
1209 RE_SetU_46, -- System.Pack_46
1211 RE_Bits_47, -- System.Pack_47
1212 RE_Get_47, -- System.Pack_47
1213 RE_Set_47, -- System.Pack_47
1215 RE_Bits_48, -- System.Pack_48
1216 RE_Get_48, -- System.Pack_48
1217 RE_GetU_48, -- System.Pack_48
1218 RE_Set_48, -- System.Pack_48
1219 RE_SetU_48, -- System.Pack_48
1221 RE_Bits_49, -- System.Pack_49
1222 RE_Get_49, -- System.Pack_49
1223 RE_Set_49, -- System.Pack_49
1225 RE_Bits_50, -- System.Pack_50
1226 RE_Get_50, -- System.Pack_50
1227 RE_GetU_50, -- System.Pack_50
1228 RE_Set_50, -- System.Pack_50
1229 RE_SetU_50, -- System.Pack_50
1231 RE_Bits_51, -- System.Pack_51
1232 RE_Get_51, -- System.Pack_51
1233 RE_Set_51, -- System.Pack_51
1235 RE_Bits_52, -- System.Pack_52
1236 RE_Get_52, -- System.Pack_52
1237 RE_GetU_52, -- System.Pack_52
1238 RE_Set_52, -- System.Pack_52
1239 RE_SetU_52, -- System.Pack_52
1241 RE_Bits_53, -- System.Pack_53
1242 RE_Get_53, -- System.Pack_53
1243 RE_Set_53, -- System.Pack_53
1245 RE_Bits_54, -- System.Pack_54
1246 RE_Get_54, -- System.Pack_54
1247 RE_GetU_54, -- System.Pack_54
1248 RE_Set_54, -- System.Pack_54
1249 RE_SetU_54, -- System.Pack_54
1251 RE_Bits_55, -- System.Pack_55
1252 RE_Get_55, -- System.Pack_55
1253 RE_Set_55, -- System.Pack_55
1255 RE_Bits_56, -- System.Pack_56
1256 RE_Get_56, -- System.Pack_56
1257 RE_GetU_56, -- System.Pack_56
1258 RE_Set_56, -- System.Pack_56
1259 RE_SetU_56, -- System.Pack_56
1261 RE_Bits_57, -- System.Pack_57
1262 RE_Get_57, -- System.Pack_57
1263 RE_Set_57, -- System.Pack_57
1265 RE_Bits_58, -- System.Pack_58
1266 RE_Get_58, -- System.Pack_58
1267 RE_GetU_58, -- System.Pack_58
1268 RE_Set_58, -- System.Pack_58
1269 RE_SetU_58, -- System.Pack_58
1271 RE_Bits_59, -- System.Pack_59
1272 RE_Get_59, -- System.Pack_59
1273 RE_Set_59, -- System.Pack_59
1275 RE_Bits_60, -- System.Pack_60
1276 RE_Get_60, -- System.Pack_60
1277 RE_GetU_60, -- System.Pack_60
1278 RE_Set_60, -- System.Pack_60
1279 RE_SetU_60, -- System.Pack_60
1281 RE_Bits_61, -- System.Pack_61
1282 RE_Get_61, -- System.Pack_61
1283 RE_Set_61, -- System.Pack_61
1285 RE_Bits_62, -- System.Pack_62
1286 RE_Get_62, -- System.Pack_62
1287 RE_GetU_62, -- System.Pack_62
1288 RE_Set_62, -- System.Pack_62
1289 RE_SetU_62, -- System.Pack_62
1291 RE_Bits_63, -- System.Pack_63
1292 RE_Get_63, -- System.Pack_63
1293 RE_Set_63, -- System.Pack_63
1295 RE_Bits_65, -- System.Pack_65
1296 RE_Get_65, -- System.Pack_65
1297 RE_Set_65, -- System.Pack_65
1299 RE_Bits_66, -- System.Pack_66
1300 RE_Get_66, -- System.Pack_66
1301 RE_GetU_66, -- System.Pack_66
1302 RE_Set_66, -- System.Pack_66
1303 RE_SetU_66, -- System.Pack_66
1305 RE_Bits_67, -- System.Pack_67
1306 RE_Get_67, -- System.Pack_67
1307 RE_Set_67, -- System.Pack_67
1309 RE_Bits_68, -- System.Pack_68
1310 RE_Get_68, -- System.Pack_68
1311 RE_GetU_68, -- System.Pack_68
1312 RE_Set_68, -- System.Pack_68
1313 RE_SetU_68, -- System.Pack_68
1315 RE_Bits_69, -- System.Pack_69
1316 RE_Get_69, -- System.Pack_69
1317 RE_Set_69, -- System.Pack_69
1319 RE_Bits_70, -- System.Pack_70
1320 RE_Get_70, -- System.Pack_70
1321 RE_GetU_70, -- System.Pack_70
1322 RE_Set_70, -- System.Pack_70
1323 RE_SetU_70, -- System.Pack_70
1325 RE_Bits_71, -- System.Pack_71
1326 RE_Get_71, -- System.Pack_71
1327 RE_Set_71, -- System.Pack_71
1329 RE_Bits_72, -- System.Pack_72
1330 RE_Get_72, -- System.Pack_72
1331 RE_GetU_72, -- System.Pack_72
1332 RE_Set_72, -- System.Pack_72
1333 RE_SetU_72, -- System.Pack_72
1335 RE_Bits_73, -- System.Pack_73
1336 RE_Get_73, -- System.Pack_73
1337 RE_Set_73, -- System.Pack_73
1339 RE_Bits_74, -- System.Pack_74
1340 RE_Get_74, -- System.Pack_74
1341 RE_GetU_74, -- System.Pack_74
1342 RE_Set_74, -- System.Pack_74
1343 RE_SetU_74, -- System.Pack_74
1345 RE_Bits_75, -- System.Pack_75
1346 RE_Get_75, -- System.Pack_75
1347 RE_Set_75, -- System.Pack_75
1349 RE_Bits_76, -- System.Pack_76
1350 RE_Get_76, -- System.Pack_76
1351 RE_GetU_76, -- System.Pack_76
1352 RE_Set_76, -- System.Pack_76
1353 RE_SetU_76, -- System.Pack_76
1355 RE_Bits_77, -- System.Pack_77
1356 RE_Get_77, -- System.Pack_77
1357 RE_Set_77, -- System.Pack_77
1359 RE_Bits_78, -- System.Pack_78
1360 RE_Get_78, -- System.Pack_78
1361 RE_GetU_78, -- System.Pack_78
1362 RE_Set_78, -- System.Pack_78
1363 RE_SetU_78, -- System.Pack_78
1365 RE_Bits_79, -- System.Pack_79
1366 RE_Get_79, -- System.Pack_79
1367 RE_Set_79, -- System.Pack_79
1369 RE_Bits_80, -- System.Pack_80
1370 RE_Get_80, -- System.Pack_80
1371 RE_GetU_80, -- System.Pack_80
1372 RE_Set_80, -- System.Pack_80
1373 RE_SetU_80, -- System.Pack_80
1375 RE_Bits_81, -- System.Pack_81
1376 RE_Get_81, -- System.Pack_81
1377 RE_Set_81, -- System.Pack_81
1379 RE_Bits_82, -- System.Pack_82
1380 RE_Get_82, -- System.Pack_82
1381 RE_GetU_82, -- System.Pack_82
1382 RE_Set_82, -- System.Pack_82
1383 RE_SetU_82, -- System.Pack_82
1385 RE_Bits_83, -- System.Pack_83
1386 RE_Get_83, -- System.Pack_83
1387 RE_Set_83, -- System.Pack_83
1389 RE_Bits_84, -- System.Pack_84
1390 RE_Get_84, -- System.Pack_84
1391 RE_GetU_84, -- System.Pack_84
1392 RE_Set_84, -- System.Pack_84
1393 RE_SetU_84, -- System.Pack_84
1395 RE_Bits_85, -- System.Pack_85
1396 RE_Get_85, -- System.Pack_85
1397 RE_Set_85, -- System.Pack_85
1399 RE_Bits_86, -- System.Pack_86
1400 RE_Get_86, -- System.Pack_86
1401 RE_GetU_86, -- System.Pack_86
1402 RE_Set_86, -- System.Pack_86
1403 RE_SetU_86, -- System.Pack_86
1405 RE_Bits_87, -- System.Pack_87
1406 RE_Get_87, -- System.Pack_87
1407 RE_Set_87, -- System.Pack_87
1409 RE_Bits_88, -- System.Pack_88
1410 RE_Get_88, -- System.Pack_88
1411 RE_GetU_88, -- System.Pack_88
1412 RE_Set_88, -- System.Pack_88
1413 RE_SetU_88, -- System.Pack_88
1415 RE_Bits_89, -- System.Pack_89
1416 RE_Get_89, -- System.Pack_89
1417 RE_Set_89, -- System.Pack_89
1419 RE_Bits_90, -- System.Pack_90
1420 RE_Get_90, -- System.Pack_90
1421 RE_GetU_90, -- System.Pack_90
1422 RE_Set_90, -- System.Pack_90
1423 RE_SetU_90, -- System.Pack_90
1425 RE_Bits_91, -- System.Pack_91
1426 RE_Get_91, -- System.Pack_91
1427 RE_Set_91, -- System.Pack_91
1429 RE_Bits_92, -- System.Pack_92
1430 RE_Get_92, -- System.Pack_92
1431 RE_GetU_92, -- System.Pack_92
1432 RE_Set_92, -- System.Pack_92
1433 RE_SetU_92, -- System.Pack_92
1435 RE_Bits_93, -- System.Pack_93
1436 RE_Get_93, -- System.Pack_93
1437 RE_Set_93, -- System.Pack_93
1439 RE_Bits_94, -- System.Pack_94
1440 RE_Get_94, -- System.Pack_94
1441 RE_GetU_94, -- System.Pack_94
1442 RE_Set_94, -- System.Pack_94
1443 RE_SetU_94, -- System.Pack_94
1445 RE_Bits_95, -- System.Pack_95
1446 RE_Get_95, -- System.Pack_95
1447 RE_Set_95, -- System.Pack_95
1449 RE_Bits_96, -- System.Pack_96
1450 RE_Get_96, -- System.Pack_96
1451 RE_GetU_96, -- System.Pack_96
1452 RE_Set_96, -- System.Pack_96
1453 RE_SetU_96, -- System.Pack_96
1455 RE_Bits_97, -- System.Pack_97
1456 RE_Get_97, -- System.Pack_97
1457 RE_Set_97, -- System.Pack_97
1459 RE_Bits_98, -- System.Pack_98
1460 RE_Get_98, -- System.Pack_98
1461 RE_GetU_98, -- System.Pack_98
1462 RE_Set_98, -- System.Pack_98
1463 RE_SetU_98, -- System.Pack_98
1465 RE_Bits_99, -- System.Pack_99
1466 RE_Get_99, -- System.Pack_99
1467 RE_Set_99, -- System.Pack_99
1469 RE_Bits_100, -- System.Pack_100
1470 RE_Get_100, -- System.Pack_100
1471 RE_GetU_100, -- System.Pack_100
1472 RE_Set_100, -- System.Pack_100
1473 RE_SetU_100, -- System.Pack_100
1475 RE_Bits_101, -- System.Pack_101
1476 RE_Get_101, -- System.Pack_101
1477 RE_Set_101, -- System.Pack_101
1479 RE_Bits_102, -- System.Pack_102
1480 RE_Get_102, -- System.Pack_102
1481 RE_GetU_102, -- System.Pack_102
1482 RE_Set_102, -- System.Pack_102
1483 RE_SetU_102, -- System.Pack_102
1485 RE_Bits_103, -- System.Pack_103
1486 RE_Get_103, -- System.Pack_103
1487 RE_Set_103, -- System.Pack_103
1489 RE_Bits_104, -- System.Pack_104
1490 RE_Get_104, -- System.Pack_104
1491 RE_GetU_104, -- System.Pack_104
1492 RE_Set_104, -- System.Pack_104
1493 RE_SetU_104, -- System.Pack_104
1495 RE_Bits_105, -- System.Pack_105
1496 RE_Get_105, -- System.Pack_105
1497 RE_Set_105, -- System.Pack_105
1499 RE_Bits_106, -- System.Pack_106
1500 RE_Get_106, -- System.Pack_106
1501 RE_GetU_106, -- System.Pack_106
1502 RE_Set_106, -- System.Pack_106
1503 RE_SetU_106, -- System.Pack_106
1505 RE_Bits_107, -- System.Pack_107
1506 RE_Get_107, -- System.Pack_107
1507 RE_Set_107, -- System.Pack_107
1509 RE_Bits_108, -- System.Pack_108
1510 RE_Get_108, -- System.Pack_108
1511 RE_GetU_108, -- System.Pack_108
1512 RE_Set_108, -- System.Pack_108
1513 RE_SetU_108, -- System.Pack_108
1515 RE_Bits_109, -- System.Pack_109
1516 RE_Get_109, -- System.Pack_109
1517 RE_Set_109, -- System.Pack_109
1519 RE_Bits_110, -- System.Pack_110
1520 RE_Get_110, -- System.Pack_110
1521 RE_GetU_110, -- System.Pack_110
1522 RE_Set_110, -- System.Pack_110
1523 RE_SetU_110, -- System.Pack_110
1525 RE_Bits_111, -- System.Pack_111
1526 RE_Get_111, -- System.Pack_111
1527 RE_Set_111, -- System.Pack_111
1529 RE_Bits_112, -- System.Pack_112
1530 RE_Get_112, -- System.Pack_112
1531 RE_GetU_112, -- System.Pack_112
1532 RE_Set_112, -- System.Pack_112
1533 RE_SetU_112, -- System.Pack_112
1535 RE_Bits_113, -- System.Pack_113
1536 RE_Get_113, -- System.Pack_113
1537 RE_Set_113, -- System.Pack_113
1539 RE_Bits_114, -- System.Pack_114
1540 RE_Get_114, -- System.Pack_114
1541 RE_GetU_114, -- System.Pack_114
1542 RE_Set_114, -- System.Pack_114
1543 RE_SetU_114, -- System.Pack_114
1545 RE_Bits_115, -- System.Pack_115
1546 RE_Get_115, -- System.Pack_115
1547 RE_Set_115, -- System.Pack_115
1549 RE_Bits_116, -- System.Pack_116
1550 RE_Get_116, -- System.Pack_116
1551 RE_GetU_116, -- System.Pack_116
1552 RE_Set_116, -- System.Pack_116
1553 RE_SetU_116, -- System.Pack_116
1555 RE_Bits_117, -- System.Pack_117
1556 RE_Get_117, -- System.Pack_117
1557 RE_Set_117, -- System.Pack_117
1559 RE_Bits_118, -- System.Pack_118
1560 RE_Get_118, -- System.Pack_118
1561 RE_GetU_118, -- System.Pack_118
1562 RE_Set_118, -- System.Pack_118
1563 RE_SetU_118, -- System.Pack_118
1565 RE_Bits_119, -- System.Pack_119
1566 RE_Get_119, -- System.Pack_119
1567 RE_Set_119, -- System.Pack_119
1569 RE_Bits_120, -- System.Pack_120
1570 RE_Get_120, -- System.Pack_120
1571 RE_GetU_120, -- System.Pack_120
1572 RE_Set_120, -- System.Pack_120
1573 RE_SetU_120, -- System.Pack_120
1575 RE_Bits_121, -- System.Pack_121
1576 RE_Get_121, -- System.Pack_121
1577 RE_Set_121, -- System.Pack_121
1579 RE_Bits_122, -- System.Pack_122
1580 RE_Get_122, -- System.Pack_122
1581 RE_GetU_122, -- System.Pack_122
1582 RE_Set_122, -- System.Pack_122
1583 RE_SetU_122, -- System.Pack_122
1585 RE_Bits_123, -- System.Pack_123
1586 RE_Get_123, -- System.Pack_123
1587 RE_Set_123, -- System.Pack_123
1589 RE_Bits_124, -- System.Pack_124
1590 RE_Get_124, -- System.Pack_124
1591 RE_GetU_124, -- System.Pack_124
1592 RE_Set_124, -- System.Pack_124
1593 RE_SetU_124, -- System.Pack_124
1595 RE_Bits_125, -- System.Pack_125
1596 RE_Get_125, -- System.Pack_125
1597 RE_Set_125, -- System.Pack_125
1599 RE_Bits_126, -- System.Pack_126
1600 RE_Get_126, -- System.Pack_126
1601 RE_GetU_126, -- System.Pack_126
1602 RE_Set_126, -- System.Pack_126
1603 RE_SetU_126, -- System.Pack_126
1605 RE_Bits_127, -- System.Pack_127
1606 RE_Get_127, -- System.Pack_127
1607 RE_Set_127, -- System.Pack_127
1609 RE_Adjust_Storage_Size, -- System.Parameters
1610 RE_Default_Stack_Size, -- System.Parameters
1611 RE_Size_Type, -- System.Parameters
1612 RE_Unspecified_Size, -- System.Parameters
1614 RE_DSA_Implementation, -- System.Partition_Interface
1615 RE_PCS_Version, -- System.Partition_Interface
1616 RE_Get_RACW, -- System.Partition_Interface
1617 RE_Get_RCI_Package_Receiver, -- System.Partition_Interface
1618 RE_Get_Unique_Remote_Pointer, -- System.Partition_Interface
1619 RE_RACW_Stub_Type, -- System.Partition_Interface
1620 RE_RACW_Stub_Type_Access, -- System.Partition_Interface
1621 RE_RAS_Proxy_Type_Access, -- System.Partition_Interface
1622 RE_Raise_Program_Error_Unknown_Tag, -- System.Partition_Interface
1623 RE_Register_Passive_Package, -- System.Partition_Interface
1624 RE_Register_Receiving_Stub, -- System.Partition_Interface
1625 RE_Request, -- System.Partition_Interface
1626 RE_Request_Access, -- System.Partition_Interface
1627 RE_RCI_Locator, -- System.Partition_Interface
1628 RE_RCI_Subp_Info, -- System.Partition_Interface
1629 RE_RCI_Subp_Info_Array, -- System.Partition_Interface
1630 RE_Same_Partition, -- System.Partition_Interface
1631 RE_Subprogram_Id, -- System.Partition_Interface
1632 RE_Get_RAS_Info, -- System.Partition_Interface
1634 RE_Global_Pool_Object, -- System.Pool_Global
1636 RE_Stack_Bounded_Pool, -- System.Pool_Size
1638 RE_Put_Image_Integer, -- System.Put_Images
1639 RE_Put_Image_Long_Long_Integer, -- System.Put_Images
1640 RE_Put_Image_Long_Long_Long_Integer, -- System.Put_Images
1641 RE_Put_Image_Unsigned, -- System.Put_Images
1642 RE_Put_Image_Long_Long_Unsigned, -- System.Put_Images
1643 RE_Put_Image_Long_Long_Long_Unsigned, -- System.Put_Images
1644 RE_Put_Image_Thin_Pointer, -- System.Put_Images
1645 RE_Put_Image_Fat_Pointer, -- System.Put_Images
1646 RE_Put_Image_Access_Subp, -- System.Put_Images
1647 RE_Put_Image_Access_Prot_Subp, -- System.Put_Images
1648 RE_Put_Image_String, -- System.Put_Images
1649 RE_Put_Image_Wide_String, -- System.Put_Images
1650 RE_Put_Image_Wide_Wide_String, -- System.Put_Images
1651 RE_Array_Before, -- System.Put_Images
1652 RE_Array_Between, -- System.Put_Images
1653 RE_Array_After, -- System.Put_Images
1654 RE_Simple_Array_Between, -- System.Put_Images
1655 RE_Record_Before, -- System.Put_Images
1656 RE_Record_Between, -- System.Put_Images
1657 RE_Record_After, -- System.Put_Images
1658 RE_Put_Image_Unknown, -- System.Put_Images
1660 RE_Put_Image_Protected, -- System.Put_Task_Images
1661 RE_Put_Image_Task, -- System.Put_Task_Images
1663 RE_Do_Apc, -- System.RPC
1664 RE_Do_Rpc, -- System.RPC
1665 RE_Params_Stream_Type, -- System.RPC
1666 RE_Partition_ID, -- System.RPC
1668 RE_To_PolyORB_String, -- System.Partition_Interface
1669 RE_Caseless_String_Eq, -- System.Partition_Interface
1670 RE_TypeCode, -- System.Partition_Interface
1671 RE_Any, -- System.Partition_Interface
1672 RE_Mode_In, -- System.Partition_Interface
1673 RE_Mode_Out, -- System.Partition_Interface
1674 RE_Mode_Inout, -- System.Partition_Interface
1675 RE_NamedValue, -- System.Partition_Interface
1676 RE_Result_Name, -- System.Partition_Interface
1677 RE_Object_Ref, -- System.Partition_Interface
1678 RE_Create_Any, -- System.Partition_Interface
1679 RE_Any_Aggregate_Build, -- System.Partition_Interface
1680 RE_Add_Aggregate_Element, -- System.Partition_Interface
1681 RE_Get_Aggregate_Element, -- System.Partition_Interface
1682 RE_Content_Type, -- System.Partition_Interface
1683 RE_Any_Member_Type, -- System.Partition_Interface
1684 RE_Get_Nested_Sequence_Length, -- System.Partition_Interface
1685 RE_Get_Any_Type, -- System.Partition_Interface
1686 RE_Extract_Union_Value, -- System.Partition_Interface
1687 RE_NVList_Ref, -- System.Partition_Interface
1688 RE_NVList_Create, -- System.Partition_Interface
1689 RE_NVList_Add_Item, -- System.Partition_Interface
1690 RE_Request_Arguments, -- System.Partition_Interface
1691 RE_Request_Invoke, -- System.Partition_Interface
1692 RE_Request_Raise_Occurrence, -- System.Partition_Interface
1693 RE_Request_Set_Out, -- System.Partition_Interface
1694 RE_Request_Setup, -- System.Partition_Interface
1695 RE_Nil_Exc_List, -- System.Partition_Interface
1696 RE_Servant, -- System.Partition_Interface
1697 RE_Move_Any_Value, -- System.Partition_Interface
1698 RE_Set_Result, -- System.Partition_Interface
1699 RE_Register_Obj_Receiving_Stub, -- System.Partition_Interface
1700 RE_Register_Pkg_Receiving_Stub, -- System.Partition_Interface
1701 RE_Entity_Of, -- System.Partition_Interface
1702 RE_Inc_Usage, -- System.Partition_Interface
1703 RE_Make_Ref, -- System.Partition_Interface
1704 RE_Get_Local_Address, -- System.Partition_Interface
1705 RE_Get_Reference, -- System.Partition_Interface
1706 RE_Asynchronous_P_To_Sync_Scope, -- System.Partition_Interface
1707 RE_Buffer_Stream_Type, -- System.Partition_Interface
1708 RE_Release_Buffer, -- System.Partition_Interface
1709 RE_BS_To_Any, -- System.Partition_Interface
1710 RE_Any_To_BS, -- System.Partition_Interface
1711 RE_Build_Complex_TC, -- System.Partition_Interface
1712 RE_Get_TC, -- System.Partition_Interface
1713 RE_Set_TC, -- System.Partition_Interface
1715 RE_FA_A, -- System.Partition_Interface
1716 RE_FA_B, -- System.Partition_Interface
1717 RE_FA_C, -- System.Partition_Interface
1718 RE_FA_F, -- System.Partition_Interface
1719 RE_FA_I8, -- System.Partition_Interface
1720 RE_FA_I16, -- System.Partition_Interface
1721 RE_FA_I32, -- System.Partition_Interface
1722 RE_FA_I64, -- System.Partition_Interface
1723 RE_FA_LF, -- System.Partition_Interface
1724 RE_FA_LLF, -- System.Partition_Interface
1725 RE_FA_SF, -- System.Partition_Interface
1726 RE_FA_U8, -- System.Partition_Interface
1727 RE_FA_U16, -- System.Partition_Interface
1728 RE_FA_U32, -- System.Partition_Interface
1729 RE_FA_U64, -- System.Partition_Interface
1730 RE_FA_WC, -- System.Partition_Interface
1731 RE_FA_WWC, -- System.Partition_Interface
1732 RE_FA_String, -- System.Partition_Interface
1733 RE_FA_ObjRef, -- System.Partition_Interface
1735 RE_TA_A, -- System.Partition_Interface
1736 RE_TA_B, -- System.Partition_Interface
1737 RE_TA_C, -- System.Partition_Interface
1738 RE_TA_F, -- System.Partition_Interface
1739 RE_TA_I8, -- System.Partition_Interface
1740 RE_TA_I16, -- System.Partition_Interface
1741 RE_TA_I32, -- System.Partition_Interface
1742 RE_TA_I64, -- System.Partition_Interface
1743 RE_TA_LF, -- System.Partition_Interface
1744 RE_TA_LLF, -- System.Partition_Interface
1745 RE_TA_SF, -- System.Partition_Interface
1746 RE_TA_U8, -- System.Partition_Interface
1747 RE_TA_U16, -- System.Partition_Interface
1748 RE_TA_U32, -- System.Partition_Interface
1749 RE_TA_U64, -- System.Partition_Interface
1750 RE_TA_WC, -- System.Partition_Interface
1751 RE_TA_WWC, -- System.Partition_Interface
1752 RE_TA_String, -- System.Partition_Interface
1753 RE_TA_ObjRef, -- System.Partition_Interface
1754 RE_TA_Std_String, -- System.Partition_Interface
1755 RE_TA_TC, -- System.Partition_Interface
1757 RE_TC_A, -- System.Partition_Interface
1758 RE_TC_B, -- System.Partition_Interface
1759 RE_TC_C, -- System.Partition_Interface
1760 RE_TC_F, -- System.Partition_Interface
1761 RE_TC_I8, -- System.Partition_Interface
1762 RE_TC_I16, -- System.Partition_Interface
1763 RE_TC_I32, -- System.Partition_Interface
1764 RE_TC_I64, -- System.Partition_Interface
1765 RE_TC_LF, -- System.Partition_Interface
1766 RE_TC_LLF, -- System.Partition_Interface
1767 RE_TC_SF, -- System.Partition_Interface
1768 RE_TC_U8, -- System.Partition_Interface
1769 RE_TC_U16, -- System.Partition_Interface
1770 RE_TC_U32, -- System.Partition_Interface
1771 RE_TC_U64, -- System.Partition_Interface
1772 RE_TC_Void, -- System.Partition_Interface
1773 RE_TC_Opaque, -- System.Partition_Interface
1774 RE_TC_WC, -- System.Partition_Interface
1775 RE_TC_WWC, -- System.Partition_Interface
1776 RE_TC_String, -- System.Partition_Interface
1778 RE_Tk_Alias, -- System.Partition_Interface
1779 RE_Tk_Array, -- System.Partition_Interface
1780 RE_Tk_Sequence, -- System.Partition_Interface
1781 RE_Tk_Struct, -- System.Partition_Interface
1782 RE_Tk_Objref, -- System.Partition_Interface
1783 RE_Tk_Union, -- System.Partition_Interface
1785 RO_RD_Delay_For, -- System.Relative_Delays
1787 RE_RS_Allocate, -- System.Return_Stack
1788 RE_RS_Pool, -- System.Return_Stack
1790 RE_IS_Is1, -- System.Scalar_Values
1791 RE_IS_Is2, -- System.Scalar_Values
1792 RE_IS_Is4, -- System.Scalar_Values
1793 RE_IS_Is8, -- System.Scalar_Values
1794 RE_IS_Is16, -- System.Scalar_Values
1795 RE_IS_Iu1, -- System.Scalar_Values
1796 RE_IS_Iu2, -- System.Scalar_Values
1797 RE_IS_Iu4, -- System.Scalar_Values
1798 RE_IS_Iu8, -- System.Scalar_Values
1799 RE_IS_Iu16, -- System.Scalar_Values
1800 RE_IS_Isf, -- System.Scalar_Values
1801 RE_IS_Ifl, -- System.Scalar_Values
1802 RE_IS_Ilf, -- System.Scalar_Values
1803 RE_IS_Ill, -- System.Scalar_Values
1805 RE_Mark_Id, -- System.Secondary_Stack
1806 RE_SS_Allocate, -- System.Secondary_Stack
1807 RE_SS_Pool, -- System.Secondary_Stack
1808 RE_SS_Mark, -- System.Secondary_Stack
1809 RE_SS_Release, -- System.Secondary_Stack
1810 RE_SS_Stack, -- System.Secondary_Stack
1812 RE_Shared_Var_Lock, -- System.Shared_Storage
1813 RE_Shared_Var_Unlock, -- System.Shared_Storage
1814 RE_Shared_Var_Procs, -- System.Shared_Storage
1816 RE_Abort_Undefer_Direct, -- System.Standard_Library
1817 RE_Exception_Data_Ptr, -- System.Standard_Library
1819 RE_Integer_Address, -- System.Storage_Elements
1820 RE_Storage_Array, -- System.Storage_Elements
1821 RE_Storage_Count, -- System.Storage_Elements
1822 RE_Storage_Offset, -- System.Storage_Elements
1823 RE_To_Address, -- System.Storage_Elements
1825 RE_Allocate_Any, -- System.Storage_Pools
1826 RE_Deallocate_Any, -- System.Storage_Pools
1827 RE_Root_Storage_Pool, -- System.Storage_Pools
1828 RE_Root_Storage_Pool_Ptr, -- System.Storage_Pools
1830 RE_Adjust_Controlled_Dereference, -- System.Storage_Pools.Subpools
1831 RE_Allocate_Any_Controlled, -- System.Storage_Pools.Subpools
1832 RE_Deallocate_Any_Controlled, -- System.Storage_Pools.Subpools
1833 RE_Header_Size_With_Padding, -- System.Storage_Pools.Subpools
1834 RE_Root_Storage_Pool_With_Subpools, -- System.Storage_Pools.Subpools
1836 RE_I_AD, -- System.Stream_Attributes
1837 RE_I_AS, -- System.Stream_Attributes
1838 RE_I_B, -- System.Stream_Attributes
1839 RE_I_C, -- System.Stream_Attributes
1840 RE_I_F, -- System.Stream_Attributes
1841 RE_I_I, -- System.Stream_Attributes
1842 RE_I_I24, -- System.Stream_Attributes
1843 RE_I_LF, -- System.Stream_Attributes
1844 RE_I_LI, -- System.Stream_Attributes
1845 RE_I_LLF, -- System.Stream_Attributes
1846 RE_I_LLI, -- System.Stream_Attributes
1847 RE_I_LLLI, -- System.Stream_Attributes
1848 RE_I_LLLU, -- System.Stream_Attributes
1849 RE_I_LLU, -- System.Stream_Attributes
1850 RE_I_LU, -- System.Stream_Attributes
1851 RE_I_SF, -- System.Stream_Attributes
1852 RE_I_SI, -- System.Stream_Attributes
1853 RE_I_SSI, -- System.Stream_Attributes
1854 RE_I_SSU, -- System.Stream_Attributes
1855 RE_I_SU, -- System.Stream_Attributes
1856 RE_I_U, -- System.Stream_Attributes
1857 RE_I_U24, -- System.Stream_Attributes
1858 RE_I_WC, -- System.Stream_Attributes
1859 RE_I_WWC, -- System.Stream_Attributes
1861 RE_W_AD, -- System.Stream_Attributes
1862 RE_W_AS, -- System.Stream_Attributes
1863 RE_W_B, -- System.Stream_Attributes
1864 RE_W_C, -- System.Stream_Attributes
1865 RE_W_F, -- System.Stream_Attributes
1866 RE_W_I, -- System.Stream_Attributes
1867 RE_W_I24, -- System.Stream_Attributes
1868 RE_W_LF, -- System.Stream_Attributes
1869 RE_W_LI, -- System.Stream_Attributes
1870 RE_W_LLF, -- System.Stream_Attributes
1871 RE_W_LLI, -- System.Stream_Attributes
1872 RE_W_LLLI, -- System.Stream_Attributes
1873 RE_W_LLLU, -- System.Stream_Attributes
1874 RE_W_LLU, -- System.Stream_Attributes
1875 RE_W_LU, -- System.Stream_Attributes
1876 RE_W_SF, -- System.Stream_Attributes
1877 RE_W_SI, -- System.Stream_Attributes
1878 RE_W_SSI, -- System.Stream_Attributes
1879 RE_W_SSU, -- System.Stream_Attributes
1880 RE_W_SU, -- System.Stream_Attributes
1881 RE_W_U, -- System.Stream_Attributes
1882 RE_W_U24, -- System.Stream_Attributes
1883 RE_W_WC, -- System.Stream_Attributes
1884 RE_W_WWC, -- System.Stream_Attributes
1886 RE_Storage_Array_Input, -- System.Strings.Stream_Ops
1887 RE_Storage_Array_Input_Blk_IO, -- System.Strings.Stream_Ops
1888 RE_Storage_Array_Output, -- System.Strings.Stream_Ops
1889 RE_Storage_Array_Output_Blk_IO, -- System.Strings.Stream_Ops
1890 RE_Storage_Array_Read, -- System.Strings.Stream_Ops
1891 RE_Storage_Array_Read_Blk_IO, -- System.Strings.Stream_Ops
1892 RE_Storage_Array_Write, -- System.Strings.Stream_Ops
1893 RE_Storage_Array_Write_Blk_IO, -- System.Strings.Stream_Ops
1895 RE_Stream_Element_Array_Input, -- System.Strings.Stream_Ops
1896 RE_Stream_Element_Array_Input_Blk_IO, -- System.Strings.Stream_Ops
1897 RE_Stream_Element_Array_Output, -- System.Strings.Stream_Ops
1898 RE_Stream_Element_Array_Output_Blk_IO, -- System.Strings.Stream_Ops
1899 RE_Stream_Element_Array_Read, -- System.Strings.Stream_Ops
1900 RE_Stream_Element_Array_Read_Blk_IO, -- System.Strings.Stream_Ops
1901 RE_Stream_Element_Array_Write, -- System.Strings.Stream_Ops
1902 RE_Stream_Element_Array_Write_Blk_IO, -- System.Strings.Stream_Ops
1904 RE_String_Input, -- System.Strings.Stream_Ops
1905 RE_String_Input_Blk_IO, -- System.Strings.Stream_Ops
1906 RE_String_Input_Tag, -- System.Strings.Stream_Ops
1907 RE_String_Output, -- System.Strings.Stream_Ops
1908 RE_String_Output_Blk_IO, -- System.Strings.Stream_Ops
1909 RE_String_Read, -- System.Strings.Stream_Ops
1910 RE_String_Read_Blk_IO, -- System.Strings.Stream_Ops
1911 RE_String_Write, -- System.Strings.Stream_Ops
1912 RE_String_Write_Blk_IO, -- System.Strings.Stream_Ops
1914 RE_Wide_String_Input, -- System.Strings.Stream_Ops
1915 RE_Wide_String_Input_Blk_IO, -- System.Strings.Stream_Ops
1916 RE_Wide_String_Output, -- System.Strings.Stream_Ops
1917 RE_Wide_String_Output_Blk_IO, -- System.Strings.Stream_Ops
1918 RE_Wide_String_Read, -- System.Strings.Stream_Ops
1919 RE_Wide_String_Read_Blk_IO, -- System.Strings.Stream_Ops
1920 RE_Wide_String_Write, -- System.Strings.Stream_Ops
1921 RE_Wide_String_Write_Blk_IO, -- System.Strings.Stream_Ops
1923 RE_Wide_Wide_String_Input, -- System.Strings.Stream_Ops
1924 RE_Wide_Wide_String_Input_Blk_IO, -- System.Strings.Stream_Ops
1925 RE_Wide_Wide_String_Output, -- System.Strings.Stream_Ops
1926 RE_Wide_Wide_String_Output_Blk_IO, -- System.Strings.Stream_Ops
1927 RE_Wide_Wide_String_Read, -- System.Strings.Stream_Ops
1928 RE_Wide_Wide_String_Read_Blk_IO, -- System.Strings.Stream_Ops
1929 RE_Wide_Wide_String_Write, -- System.Strings.Stream_Ops
1930 RE_Wide_Wide_String_Write_Blk_IO, -- System.Strings.Stream_Ops
1932 RE_Task_Info_Type, -- System.Task_Info
1933 RE_Unspecified_Task_Info, -- System.Task_Info
1935 RE_Task_Procedure_Access, -- System.Tasking
1936 RO_ST_Number_Of_Entries, -- System.Tasking
1938 RO_ST_Task_Id, -- System.Tasking
1939 RO_ST_Null_Task, -- System.Tasking
1941 RE_Call_Modes, -- System.Tasking
1942 RE_Simple_Call, -- System.Tasking
1943 RE_Conditional_Call, -- System.Tasking
1944 RE_Asynchronous_Call, -- System.Tasking
1946 RE_Ada_Task_Control_Block, -- System.Tasking
1948 RE_Task_List, -- System.Tasking
1950 RE_Accept_List, -- System.Tasking
1951 RE_No_Rendezvous, -- System.Tasking
1952 RE_Null_Task_Entry, -- System.Tasking
1953 RE_Select_Index, -- System.Tasking
1954 RE_Else_Mode, -- System.Tasking
1955 RE_Simple_Mode, -- System.Tasking
1956 RE_Terminate_Mode, -- System.Tasking
1957 RE_Delay_Mode, -- System.Tasking
1958 RE_Task_Entry_Index, -- System.Tasking
1959 RE_Self, -- System.Tasking
1961 RE_Unspecified_Priority, -- System.Tasking
1963 RE_Activation_Chain, -- System.Tasking
1964 RE_Activation_Chain_Access, -- System.Tasking
1965 RE_Storage_Size, -- System.Tasking
1967 RE_Unspecified_CPU, -- System.Tasking
1969 RE_Dispatching_Domain_Access, -- System.Tasking
1971 RE_Abort_Defer, -- System.Soft_Links
1972 RE_Abort_Undefer, -- System.Soft_Links
1973 RE_Complete_Master, -- System.Soft_Links
1974 RE_Current_Master, -- System.Soft_Links
1975 RE_Dummy_Communication_Block, -- System.Soft_Links
1976 RE_Enter_Master, -- System.Soft_Links
1977 RE_Get_Current_Excep, -- System.Soft_Links
1978 RE_Get_GNAT_Exception, -- System.Soft_Links
1979 RE_Save_Library_Occurrence, -- System.Soft_Links
1981 RE_Bits_1, -- System.Unsigned_Types
1982 RE_Bits_2, -- System.Unsigned_Types
1983 RE_Bits_4, -- System.Unsigned_Types
1984 RE_Long_Long_Unsigned, -- System.Unsigned_Types
1985 RE_Long_Long_Long_Unsigned, -- System.Unsigned_Types
1986 RE_Packed_Byte, -- System.Unsigned_Types
1987 RE_Packed_Bytes1, -- System.Unsigned_Types
1988 RE_Packed_Bytes2, -- System.Unsigned_Types
1989 RE_Packed_Bytes4, -- System.Unsigned_Types
1990 RE_Rev_Packed_Bytes1, -- System.Unsigned_Types
1991 RE_Rev_Packed_Bytes2, -- System.Unsigned_Types
1992 RE_Rev_Packed_Bytes4, -- System.Unsigned_Types
1993 RE_Unsigned, -- System.Unsigned_Types
1995 RE_Value_Boolean, -- System.Val_Bool
1997 RE_Value_Character, -- System.Val_Char
1999 RE_Value_Decimal32, -- System_Val_Decimal_32
2001 RE_Value_Decimal64, -- System_Val_Decimal_64
2003 RE_Value_Decimal128, -- System_Val_Decimal_128
2005 RE_Value_Enumeration_8, -- System.Val_Enum_8
2006 RE_Value_Enumeration_16, -- System.Val_Enum_16
2007 RE_Value_Enumeration_32, -- System.Val_Enum_32
2009 RE_Valid_Value_Enumeration_8, -- System.Val_Enum_8
2010 RE_Valid_Value_Enumeration_16, -- System.Val_Enum_16
2011 RE_Valid_Value_Enumeration_32, -- System.Val_Enum_32
2013 RE_Value_Fixed32, -- System_Val_Fixed_32
2015 RE_Value_Fixed64, -- System_Val_Fixed_64
2017 RE_Value_Fixed128, -- System_Val_Fixed_128
2019 RE_Value_Float, -- System_Val_Flt
2021 RE_Value_Integer, -- System.Val_Int
2023 RE_Value_Long_Float, -- System_Val_LFlt
2025 RE_Value_Long_Long_Float, -- System_Val_LLF
2027 RE_Value_Long_Long_Integer, -- System.Val_LLI
2029 RE_Value_Long_Long_Long_Integer, -- System.Val_LLLI
2031 RE_Value_Long_Long_Unsigned, -- System.Val_LLU
2033 RE_Value_Long_Long_Long_Unsigned, -- System.Val_LLLU
2035 RE_Value_Unsigned, -- System.Val_Uns
2037 RE_Value_Wide_Character, -- System.Val_WChar
2038 RE_Value_Wide_Wide_Character, -- System.Val_WChar
2040 RE_Version_String, -- System.Version_Control
2041 RE_Get_Version_String, -- System.Version_Control
2043 RE_String_To_Wide_String, -- System.WCh_StW
2044 RE_String_To_Wide_Wide_String, -- System.WCh_StW
2046 RE_Wide_String_To_String, -- System.WCh_WtS
2047 RE_Wide_Wide_String_To_String, -- System.WCh_WtS
2049 RE_Wide_Width_Character, -- System.WWd_Char
2050 RE_Wide_Wide_Width_Character, -- System.WWd_Char
2052 RE_Wide_Wide_Width_Enumeration_8, -- System.WWd_Enum
2053 RE_Wide_Wide_Width_Enumeration_16, -- System.WWd_Enum
2054 RE_Wide_Wide_Width_Enumeration_32, -- System.WWd_Enum
2056 RE_Wide_Width_Enumeration_8, -- System.WWd_Enum
2057 RE_Wide_Width_Enumeration_16, -- System.WWd_Enum
2058 RE_Wide_Width_Enumeration_32, -- System.WWd_Enum
2060 RE_Wide_Wide_Width_Wide_Character, -- System.WWd_Wchar
2061 RE_Wide_Wide_Width_Wide_Wide_Char, -- System.WWd_Wchar
2062 RE_Wide_Width_Wide_Character, -- System.WWd_Wchar
2063 RE_Wide_Width_Wide_Wide_Character, -- System.WWd_Wchar
2065 RE_Width_Boolean, -- System.Wid_Bool
2067 RE_Width_Character, -- System.Wid_Char
2069 RE_Width_Enumeration_8, -- System.Wid_Enum
2070 RE_Width_Enumeration_16, -- System.Wid_Enum
2071 RE_Width_Enumeration_32, -- System.Wid_Enum
2073 RE_Width_Integer, -- System.Wid_Int
2075 RE_Width_Long_Long_Integer, -- System.Wid_LLI
2077 RE_Width_Long_Long_Long_Integer, -- System.Wid_LLLI
2079 RE_Width_Long_Long_Unsigned, -- System.Wid_LLU
2081 RE_Width_Long_Long_Long_Unsigned, -- System.Wid_LLLU
2083 RE_Width_Unsigned, -- System.Wid_Uns
2085 RE_Width_Wide_Character, -- System.Wid_WChar
2086 RE_Width_Wide_Wide_Character, -- System.Wid_WChar
2088 RE_Dispatching_Domain, -- Multiprocessors.Dispatching_Domains
2090 RE_Protected_Entry_Body_Array, -- Tasking.Protected_Objects.Entries
2091 RE_Protected_Entry_Queue_Max_Array, -- Tasking.Protected_Objects.Entries
2092 RE_Protection_Entries, -- Tasking.Protected_Objects.Entries
2093 RE_Protection_Entries_Access, -- Tasking.Protected_Objects.Entries
2094 RE_Initialize_Protection_Entries, -- Tasking.Protected_Objects.Entries
2095 RE_Lock_Entries, -- Tasking.Protected_Objects.Entries
2096 RE_Unlock_Entries, -- Tasking.Protected_Objects.Entries
2097 RO_PE_Get_Ceiling, -- Tasking.Protected_Objects.Entries
2098 RO_PE_Number_Of_Entries, -- Tasking.Protected_Objects.Entries
2099 RO_PE_Set_Ceiling, -- Tasking.Protected_Objects.Entries
2101 RE_Communication_Block, -- Protected_Objects.Operations
2102 RE_Protected_Entry_Call, -- Protected_Objects.Operations
2103 RE_Service_Entries, -- Protected_Objects.Operations
2104 RE_Cancel_Protected_Entry_Call, -- Protected_Objects.Operations
2105 RE_Enqueued, -- Protected_Objects.Operations
2106 RE_Cancelled, -- Protected_Objects.Operations
2107 RE_Complete_Entry_Body, -- Protected_Objects.Operations
2108 RE_Exceptional_Complete_Entry_Body, -- Protected_Objects.Operations
2109 RE_Requeue_Protected_Entry, -- Protected_Objects.Operations
2110 RE_Requeue_Task_To_Protected_Entry, -- Protected_Objects.Operations
2111 RE_Protected_Count, -- Protected_Objects.Operations
2112 RE_Protected_Entry_Caller, -- Protected_Objects.Operations
2113 RE_Timed_Protected_Entry_Call, -- Protected_Objects.Operations
2115 RE_Protection_Entry, -- Protected_Objects.Single_Entry
2116 RE_Initialize_Protection_Entry, -- Protected_Objects.Single_Entry
2117 RE_Lock_Entry, -- Protected_Objects.Single_Entry
2118 RE_Unlock_Entry, -- Protected_Objects.Single_Entry
2119 RE_Protected_Single_Entry_Call, -- Protected_Objects.Single_Entry
2120 RE_Service_Entry, -- Protected_Objects.Single_Entry
2121 RE_Exceptional_Complete_Single_Entry_Body,
2122 RE_Protected_Count_Entry, -- Protected_Objects.Single_Entry
2123 RE_Protected_Single_Entry_Caller, -- Protected_Objects.Single_Entry
2125 RE_Protected_Entry_Index, -- System.Tasking.Protected_Objects
2126 RE_Entry_Body, -- System.Tasking.Protected_Objects
2127 RE_Protection, -- System.Tasking.Protected_Objects
2128 RE_Initialize_Protection, -- System.Tasking.Protected_Objects
2129 RE_Finalize_Protection, -- System.Tasking.Protected_Objects
2130 RE_Lock, -- System.Tasking.Protected_Objects
2131 RE_Lock_Read_Only, -- System.Tasking.Protected_Objects
2132 RE_Get_Ceiling, -- System.Tasking.Protected_Objects
2133 RE_Set_Ceiling, -- System.Tasking.Protected_Objects
2134 RE_Unlock, -- System.Tasking.Protected_Objects
2136 RE_Delay_Block, -- System.Tasking.Async_Delays
2137 RE_Timed_Out, -- System.Tasking.Async_Delays
2138 RE_Cancel_Async_Delay, -- System.Tasking.Async_Delays
2139 RE_Enqueue_Duration, -- System.Tasking.Async_Delays
2140 RE_Enqueue_Calendar, -- System.Tasking.Async_Delays
2141 RE_Enqueue_RT, -- System.Tasking.Async_Delays
2143 RE_Accept_Call, -- System.Tasking.Rendezvous
2144 RE_Accept_Trivial, -- System.Tasking.Rendezvous
2145 RE_Callable, -- System.Tasking.Rendezvous
2146 RE_Call_Simple, -- System.Tasking.Rendezvous
2147 RE_Requeue_Task_Entry, -- System.Tasking.Rendezvous
2148 RE_Requeue_Protected_To_Task_Entry, -- System.Tasking.Rendezvous
2149 RE_Cancel_Task_Entry_Call, -- System.Tasking.Rendezvous
2150 RE_Complete_Rendezvous, -- System.Tasking.Rendezvous
2151 RE_Task_Count, -- System.Tasking.Rendezvous
2152 RE_Exceptional_Complete_Rendezvous, -- System.Tasking.Rendezvous
2153 RE_Selective_Wait, -- System.Tasking.Rendezvous
2154 RE_Task_Entry_Call, -- System.Tasking.Rendezvous
2155 RE_Task_Entry_Caller, -- System.Tasking.Rendezvous
2156 RE_Timed_Task_Entry_Call, -- System.Tasking.Rendezvous
2157 RE_Timed_Selective_Wait, -- System.Tasking.Rendezvous
2159 RE_Activate_Restricted_Tasks, -- System.Tasking.Restricted.Stages
2160 RE_Complete_Restricted_Activation, -- System.Tasking.Restricted.Stages
2161 RE_Create_Restricted_Task, -- System.Tasking.Restricted.Stages
2162 RE_Create_Restricted_Task_Sequential, -- System.Tasking.Restricted.Stages
2163 RE_Complete_Restricted_Task, -- System.Tasking.Restricted.Stages
2164 RE_Restricted_Terminated, -- System.Tasking.Restricted.Stages
2166 RE_Abort_Tasks, -- System.Tasking.Stages
2167 RE_Activate_Tasks, -- System.Tasking.Stages
2168 RE_Complete_Activation, -- System.Tasking.Stages
2169 RE_Create_Task, -- System.Tasking.Stages
2170 RE_Complete_Task, -- System.Tasking.Stages
2171 RE_Free_Task, -- System.Tasking.Stages
2172 RE_Expunge_Unactivated_Tasks, -- System.Tasking.Stages
2173 RE_Move_Activation_Chain, -- System.Tasking_Stages
2174 RE_Terminated); -- System.Tasking.Stages
2176 -- The following declarations build a table that is indexed by the RTE
2177 -- function to determine the unit containing the given entity. This table
2178 -- is sorted in order of package names.
2180 RE_Unit_Table : constant array (RE_Id) of RTU_Id := (
2182 RE_Null => RTU_Null,
2184 RO_CA_Clock_Time => Ada_Calendar,
2185 RO_CA_Time => Ada_Calendar,
2187 RO_CA_Delay_For => Ada_Calendar_Delays,
2188 RO_CA_Delay_Until => Ada_Calendar_Delays,
2189 RO_CA_To_Duration => Ada_Calendar_Delays,
2191 RE_Yield => Ada_Dispatching,
2193 RE_Set_Deadline => Ada_Dispatching_EDF,
2195 RE_Exception_Id => Ada_Exceptions,
2196 RE_Exception_Information => Ada_Exceptions,
2197 RE_Exception_Message => Ada_Exceptions,
2198 RE_Exception_Name_Simple => Ada_Exceptions,
2199 RE_Exception_Occurrence => Ada_Exceptions,
2200 RE_Null_Id => Ada_Exceptions,
2201 RE_Null_Occurrence => Ada_Exceptions,
2202 RE_Raise_Exception => Ada_Exceptions,
2203 RE_Raise_Exception_Always => Ada_Exceptions,
2204 RE_Raise_From_Controlled_Operation => Ada_Exceptions,
2205 RE_Reraise_Occurrence => Ada_Exceptions,
2206 RE_Reraise_Occurrence_Always => Ada_Exceptions,
2207 RE_Reraise_Occurrence_No_Defer => Ada_Exceptions,
2208 RE_Save_Occurrence => Ada_Exceptions,
2209 RE_Triggered_By_Abort => Ada_Exceptions,
2211 RE_Interrupt_ID => Ada_Interrupts,
2212 RE_Is_Reserved => Ada_Interrupts,
2213 RE_Is_Attached => Ada_Interrupts,
2214 RE_Current_Handler => Ada_Interrupts,
2215 RE_Attach_Handler => Ada_Interrupts,
2216 RE_Exchange_Handler => Ada_Interrupts,
2217 RE_Detach_Handler => Ada_Interrupts,
2218 RE_Reference => Ada_Interrupts,
2220 RE_Big_Integer => Ada_Numerics_Big_Numbers_Big_Integers,
2221 RO_GH_Big_Integer => Ada_Numerics_Big_Numbers_Big_Integers_Ghost,
2223 RE_Names => Ada_Interrupts_Names,
2225 RE_Clock => Ada_Real_Time,
2226 RE_Clock_Time => Ada_Real_Time,
2227 RE_Time_Span => Ada_Real_Time,
2228 RE_Time_Span_Zero => Ada_Real_Time,
2229 RO_RT_Time => Ada_Real_Time,
2231 RO_RT_Delay_Until => Ada_Real_Time_Delays,
2232 RO_RT_To_Duration => Ada_Real_Time_Delays,
2234 RE_Set_Handler => Ada_Real_Time_Timing_Events,
2235 RE_Timing_Event => Ada_Real_Time_Timing_Events,
2237 RE_Root_Stream_Type => Ada_Streams,
2238 RE_Stream_Element => Ada_Streams,
2239 RE_Stream_Element_Array => Ada_Streams,
2240 RE_Stream_Element_Offset => Ada_Streams,
2242 RO_SU_Super_String => Ada_Strings_Superbounded,
2244 RO_WI_Super_String => Ada_Strings_Wide_Superbounded,
2246 RO_WW_Super_String => Ada_Strings_Wide_Wide_Superbounded,
2248 RE_Unbounded_String => Ada_Strings_Unbounded,
2250 RE_Root_Buffer_Type => Ada_Strings_Text_Buffers,
2251 RE_Put_UTF_8 => Ada_Strings_Text_Buffers,
2252 RE_Set_Trim_Leading_Spaces => Ada_Strings_Text_Buffers,
2253 RE_Wide_Wide_Put => Ada_Strings_Text_Buffers,
2255 RE_Buffer_Type => Ada_Strings_Text_Buffers_Unbounded,
2256 RE_Get => Ada_Strings_Text_Buffers_Unbounded,
2257 RE_Wide_Get => Ada_Strings_Text_Buffers_Unbounded,
2258 RE_Wide_Wide_Get => Ada_Strings_Text_Buffers_Unbounded,
2260 RE_Wait_For_Release => Ada_Synchronous_Barriers,
2262 RE_Suspend_Until_True => Ada_Synchronous_Task_Control,
2263 RE_Suspension_Object => Ada_Synchronous_Task_Control,
2265 RE_Access_Level => Ada_Tags,
2266 RE_Alignment => Ada_Tags,
2267 RE_Address_Array => Ada_Tags,
2268 RE_Addr_Ptr => Ada_Tags,
2269 RE_Base_Address => Ada_Tags,
2270 RE_Check_TSD => Ada_Tags,
2271 RE_Cstring_Ptr => Ada_Tags,
2272 RE_CW_Membership => Ada_Tags,
2273 RE_Descendant_Tag => Ada_Tags,
2274 RE_Dispatch_Table => Ada_Tags,
2275 RE_Dispatch_Table_Wrapper => Ada_Tags,
2276 RE_Displace => Ada_Tags,
2277 RE_DT => Ada_Tags,
2278 RE_DT_Offset_To_Top_Offset => Ada_Tags,
2279 RE_DT_Predef_Prims_Offset => Ada_Tags,
2280 RE_DT_Typeinfo_Ptr_Size => Ada_Tags,
2281 RE_External_Tag => Ada_Tags,
2282 RO_TA_External_Tag => Ada_Tags,
2283 RE_Get_Access_Level => Ada_Tags,
2284 RE_Get_Entry_Index => Ada_Tags,
2285 RE_Get_Offset_Index => Ada_Tags,
2286 RE_Get_Prim_Op_Kind => Ada_Tags,
2287 RE_Get_Tagged_Kind => Ada_Tags,
2288 RE_HT_Link => Ada_Tags,
2289 RE_Interfaces_Array => Ada_Tags,
2290 RE_Interfaces_Table => Ada_Tags,
2291 RE_Interface_Data => Ada_Tags,
2292 RE_Interface_Data_Element => Ada_Tags,
2293 RE_Interface_Tag => Ada_Tags,
2294 RE_Is_Abstract => Ada_Tags,
2295 RE_IW_Membership => Ada_Tags,
2296 RE_Max_Predef_Prims => Ada_Tags,
2297 RE_Needs_Finalization => Ada_Tags,
2298 RE_No_Dispatch_Table_Wrapper => Ada_Tags,
2299 RE_No_Tag => Ada_Tags,
2300 RE_NDT_Prims_Ptr => Ada_Tags,
2301 RE_Object_Specific_Data => Ada_Tags,
2302 RE_Offset_To_Top => Ada_Tags,
2303 RE_Offset_To_Top_Ptr => Ada_Tags,
2304 RE_Offset_To_Top_Function_Ptr => Ada_Tags,
2305 RE_OSD_Table => Ada_Tags,
2306 RE_OSD_Num_Prims => Ada_Tags,
2307 RE_POK_Function => Ada_Tags,
2308 RE_POK_Procedure => Ada_Tags,
2309 RE_POK_Protected_Entry => Ada_Tags,
2310 RE_POK_Protected_Function => Ada_Tags,
2311 RE_POK_Protected_Procedure => Ada_Tags,
2312 RE_POK_Task_Entry => Ada_Tags,
2313 RE_POK_Task_Function => Ada_Tags,
2314 RE_POK_Task_Procedure => Ada_Tags,
2315 RE_Predef_Prims => Ada_Tags,
2316 RE_Predef_Prims_Table_Ptr => Ada_Tags,
2317 RE_Prim_Op_Kind => Ada_Tags,
2318 RE_Prim_Ptr => Ada_Tags,
2319 RE_Prims_Ptr => Ada_Tags,
2320 RE_Primary_DT => Ada_Tags,
2321 RE_Signature => Ada_Tags,
2322 RE_SSD => Ada_Tags,
2323 RE_Type_Specific_Data => Ada_Tags,
2324 RE_Register_Interface_Offset => Ada_Tags,
2325 RE_Register_Tag => Ada_Tags,
2326 RE_Transportable => Ada_Tags,
2327 RE_Secondary_DT => Ada_Tags,
2328 RE_Secondary_Tag => Ada_Tags,
2329 RE_Select_Specific_Data => Ada_Tags,
2330 RE_Set_Entry_Index => Ada_Tags,
2331 RE_Set_Dynamic_Offset_To_Top => Ada_Tags,
2332 RE_Set_Prim_Op_Kind => Ada_Tags,
2333 RE_Size_Func => Ada_Tags,
2334 RE_Size_Ptr => Ada_Tags,
2335 RE_Tag => Ada_Tags,
2336 RE_Tag_Error => Ada_Tags,
2337 RE_Tag_Kind => Ada_Tags,
2338 RE_Tag_Ptr => Ada_Tags,
2339 RE_Tag_Table => Ada_Tags,
2340 RE_Tags_Table => Ada_Tags,
2341 RE_Tagged_Kind => Ada_Tags,
2342 RE_Type_Specific_Data_Ptr => Ada_Tags,
2343 RE_TK_Abstract_Limited_Tagged => Ada_Tags,
2344 RE_TK_Abstract_Tagged => Ada_Tags,
2345 RE_TK_Limited_Tagged => Ada_Tags,
2346 RE_TK_Protected => Ada_Tags,
2347 RE_TK_Tagged => Ada_Tags,
2348 RE_TK_Task => Ada_Tags,
2349 RE_Unregister_Tag => Ada_Tags,
2350 RE_Wide_Wide_Expanded_Name => Ada_Tags,
2352 RE_Set_Specific_Handler => Ada_Task_Termination,
2353 RE_Specific_Handler => Ada_Task_Termination,
2355 RE_Abort_Task => Ada_Task_Identification,
2356 RE_Current_Task => Ada_Task_Identification,
2357 RO_AT_Task_Id => Ada_Task_Identification,
2358 RE_Tasking_State => Ada_Task_Identification,
2360 RE_Decimal_IO => Ada_Text_IO,
2361 RE_Fixed_IO => Ada_Text_IO,
2363 RO_WT_Decimal_IO => Ada_Wide_Text_IO,
2364 RO_WT_Fixed_IO => Ada_Wide_Text_IO,
2366 RO_WW_Decimal_IO => Ada_Wide_Wide_Text_IO,
2367 RO_WW_Fixed_IO => Ada_Wide_Wide_Text_IO,
2369 RE_Stream_T => CUDA_Driver_Types,
2371 RE_Launch_Kernel => CUDA_Internal,
2372 RE_Pop_Call_Configuration => CUDA_Internal,
2373 RE_Push_Call_Configuration => CUDA_Internal,
2374 RE_Register_Fat_Binary => CUDA_Internal,
2375 RE_Register_Fat_Binary_End => CUDA_Internal,
2376 RE_Register_Function => CUDA_Internal,
2378 RE_Dim3 => CUDA_Vector_Types,
2380 RE_Integer_8 => Interfaces,
2381 RE_Integer_16 => Interfaces,
2382 RE_Integer_32 => Interfaces,
2383 RE_Integer_64 => Interfaces,
2384 RE_Integer_128 => Interfaces,
2385 RE_Unsigned_8 => Interfaces,
2386 RE_Unsigned_16 => Interfaces,
2387 RE_Unsigned_32 => Interfaces,
2388 RE_Unsigned_64 => Interfaces,
2389 RE_Unsigned_128 => Interfaces,
2391 RO_IC_Unsigned => Interfaces_C,
2393 RE_Address => System,
2394 RE_Any_Priority => System,
2395 RE_Bit_Order => System,
2396 RE_Default_Priority => System,
2397 RE_High_Order_First => System,
2398 RE_Interrupt_Priority => System,
2399 RE_Low_Order_First => System,
2400 RE_Max_Base_Digits => System,
2401 RE_Null_Address => System,
2402 RE_Priority => System,
2404 RE_Address_Image => System_Address_Image,
2406 RE_Add_With_Ovflo_Check64 => System_Arith_64,
2407 RE_Double_Divide64 => System_Arith_64,
2408 RE_Multiply_With_Ovflo_Check64 => System_Arith_64,
2409 RE_Scaled_Divide64 => System_Arith_64,
2410 RE_Subtract_With_Ovflo_Check64 => System_Arith_64,
2412 RE_Add_With_Ovflo_Check128 => System_Arith_128,
2413 RE_Double_Divide128 => System_Arith_128,
2414 RE_Multiply_With_Ovflo_Check128 => System_Arith_128,
2415 RE_Subtract_With_Ovflo_Check128 => System_Arith_128,
2416 RE_Scaled_Divide128 => System_Arith_128,
2418 RE_Assert_Failure => System_Assertions,
2419 RE_Raise_Assert_Failure => System_Assertions,
2421 RE_Lock_Free_Read_8 => System_Atomic_Primitives,
2422 RE_Lock_Free_Read_16 => System_Atomic_Primitives,
2423 RE_Lock_Free_Read_32 => System_Atomic_Primitives,
2424 RE_Lock_Free_Read_64 => System_Atomic_Primitives,
2425 RE_Lock_Free_Try_Write_8 => System_Atomic_Primitives,
2426 RE_Lock_Free_Try_Write_16 => System_Atomic_Primitives,
2427 RE_Lock_Free_Try_Write_32 => System_Atomic_Primitives,
2428 RE_Lock_Free_Try_Write_64 => System_Atomic_Primitives,
2429 RE_Uint8 => System_Atomic_Primitives,
2430 RE_Uint16 => System_Atomic_Primitives,
2431 RE_Uint32 => System_Atomic_Primitives,
2432 RE_Uint64 => System_Atomic_Primitives,
2434 RE_Test_And_Set_Flag => System_Atomic_Operations_Test_And_Set,
2435 RE_Atomic_Test_And_Set => System_Atomic_Operations_Test_And_Set,
2437 RE_AST_Handler => System_Aux_DEC,
2438 RE_Type_Class => System_Aux_DEC,
2439 RE_Type_Class_Enumeration => System_Aux_DEC,
2440 RE_Type_Class_Integer => System_Aux_DEC,
2441 RE_Type_Class_Fixed_Point => System_Aux_DEC,
2442 RE_Type_Class_Floating_Point => System_Aux_DEC,
2443 RE_Type_Class_Array => System_Aux_DEC,
2444 RE_Type_Class_Record => System_Aux_DEC,
2445 RE_Type_Class_Access => System_Aux_DEC,
2446 RE_Type_Class_Task => System_Aux_DEC,
2447 RE_Type_Class_Address => System_Aux_DEC,
2449 RE_Big_Abs => System_Bignums,
2450 RE_Big_Add => System_Bignums,
2451 RE_Big_Div => System_Bignums,
2452 RE_Big_Exp => System_Bignums,
2453 RE_Big_Mod => System_Bignums,
2454 RE_Big_Mul => System_Bignums,
2455 RE_Big_Neg => System_Bignums,
2456 RE_Big_Rem => System_Bignums,
2457 RE_Big_Sub => System_Bignums,
2459 RE_Big_EQ => System_Bignums,
2460 RE_Big_GE => System_Bignums,
2461 RE_Big_GT => System_Bignums,
2462 RE_Big_LE => System_Bignums,
2463 RE_Big_LT => System_Bignums,
2464 RE_Big_NE => System_Bignums,
2466 RE_Bignum => System_Bignums,
2467 RE_Bignum_In_LLI_Range => System_Bignums,
2468 RE_To_Bignum => System_Bignums,
2469 RE_From_Bignum => System_Bignums,
2471 RE_Val_2 => System_Bitfields,
2472 RE_Copy_Bitfield => System_Bitfields,
2473 RE_Fast_Copy_Bitfield => System_Bitfields,
2475 RE_Bit_And => System_Bit_Ops,
2476 RE_Bit_Eq => System_Bit_Ops,
2477 RE_Bit_Not => System_Bit_Ops,
2478 RE_Bit_Or => System_Bit_Ops,
2479 RE_Bit_Xor => System_Bit_Ops,
2481 RE_Checked_Pool => System_Checked_Pools,
2483 RE_Vector_Not => System_Boolean_Array_Operations,
2484 RE_Vector_And => System_Boolean_Array_Operations,
2485 RE_Vector_Or => System_Boolean_Array_Operations,
2486 RE_Vector_Nand => System_Boolean_Array_Operations,
2487 RE_Vector_Nor => System_Boolean_Array_Operations,
2488 RE_Vector_Nxor => System_Boolean_Array_Operations,
2489 RE_Vector_Xor => System_Boolean_Array_Operations,
2491 RE_Bswap_16 => System_Byte_Swapping,
2492 RE_Bswap_32 => System_Byte_Swapping,
2493 RE_Bswap_64 => System_Byte_Swapping,
2494 RE_Bswap_128 => System_Byte_Swapping,
2496 RE_Compare_Array_S8 => System_Compare_Array_Signed_8,
2497 RE_Compare_Array_S8_Unaligned => System_Compare_Array_Signed_8,
2499 RE_Compare_Array_S16 => System_Compare_Array_Signed_16,
2501 RE_Compare_Array_S32 => System_Compare_Array_Signed_32,
2503 RE_Compare_Array_S64 => System_Compare_Array_Signed_64,
2505 RE_Compare_Array_S128 => System_Compare_Array_Signed_128,
2507 RE_Compare_Array_U8 => System_Compare_Array_Unsigned_8,
2508 RE_Compare_Array_U8_Unaligned => System_Compare_Array_Unsigned_8,
2510 RE_Compare_Array_U16 => System_Compare_Array_Unsigned_16,
2512 RE_Compare_Array_U32 => System_Compare_Array_Unsigned_32,
2514 RE_Compare_Array_U64 => System_Compare_Array_Unsigned_64,
2516 RE_Compare_Array_U128 => System_Compare_Array_Unsigned_128,
2518 RE_Str_Concat_2 => System_Concat_2,
2519 RE_Str_Concat_3 => System_Concat_3,
2520 RE_Str_Concat_4 => System_Concat_4,
2521 RE_Str_Concat_5 => System_Concat_5,
2522 RE_Str_Concat_6 => System_Concat_6,
2523 RE_Str_Concat_7 => System_Concat_7,
2524 RE_Str_Concat_8 => System_Concat_8,
2525 RE_Str_Concat_9 => System_Concat_9,
2527 RE_Get_Active_Partition_Id => System_DSA_Services,
2528 RE_Get_Local_Partition_Id => System_DSA_Services,
2529 RE_Get_Passive_Partition_Id => System_DSA_Services,
2531 RE_Any_Container_Ptr => System_DSA_Types,
2533 RE_Check_Standard_Allocator => System_Elaboration_Allocators,
2535 RE_Register_Exception => System_Exception_Table,
2537 RE_Local_Raise => System_Exceptions_Debug,
2539 RE_Exn_Integer => System_Exn_Int,
2541 RE_Exn_Float => System_Exn_Flt,
2543 RE_Exn_Long_Float => System_Exn_LFlt,
2545 RE_Exn_Long_Long_Float => System_Exn_LLF,
2547 RE_Exn_Long_Long_Integer => System_Exn_LLI,
2549 RE_Exn_Long_Long_Long_Integer => System_Exn_LLLI,
2551 RE_Exp_Integer => System_Exp_Int,
2553 RE_Exp_Long_Long_Integer => System_Exp_LLI,
2555 RE_Exp_Long_Long_Long_Integer => System_Exp_LLLI,
2557 RE_Exp_Long_Long_Unsigned => System_Exp_LLU,
2559 RE_Exp_Long_Long_Long_Unsigned => System_Exp_LLLU,
2561 RE_Exp_Modular => System_Exp_Mod,
2563 RE_Exp_Unsigned => System_Exp_Uns,
2565 RE_Attr_Float => System_Fat_Flt,
2567 RE_Attr_Long_Float => System_Fat_LFlt,
2569 RE_Attr_Long_Long_Float => System_Fat_LLF,
2571 RE_Add_Offset_To_Address => System_Finalization_Primitives,
2572 RE_Attach_Object_To_Collection => System_Finalization_Primitives,
2573 RE_Attach_Object_To_Master => System_Finalization_Primitives,
2574 RE_Attach_Object_To_Node => System_Finalization_Primitives,
2575 RE_Chain_Node_To_Master => System_Finalization_Primitives,
2576 RE_Detach_Object_From_Collection => System_Finalization_Primitives,
2577 RE_Finalization_Collection => System_Finalization_Primitives,
2578 RE_Finalization_Collection_Ptr => System_Finalization_Primitives,
2579 RE_Finalization_Master => System_Finalization_Primitives,
2580 RE_Finalize_Master => System_Finalization_Primitives,
2581 RE_Finalize_Object => System_Finalization_Primitives,
2582 RE_Master_Node => System_Finalization_Primitives,
2583 RE_Suppress_Object_Finalize_At_End => System_Finalization_Primitives,
2585 RE_Root_Controlled => System_Finalization_Root,
2587 RE_Fore_Decimal32 => System_Fore_Decimal_32,
2589 RE_Fore_Decimal64 => System_Fore_Decimal_64,
2591 RE_Fore_Decimal128 => System_Fore_Decimal_128,
2593 RE_Fore_Fixed => System_Fore_Real,
2595 RE_Fore_Fixed32 => System_Fore_Fixed_32,
2597 RE_Fore_Fixed64 => System_Fore_Fixed_64,
2599 RE_Fore_Fixed128 => System_Fore_Fixed_128,
2601 RE_Image_Boolean => System_Img_Bool,
2603 RE_Image_Character => System_Img_Char,
2604 RE_Image_Character_05 => System_Img_Char,
2606 RE_Image_Decimal32 => System_Img_Decimal_32,
2608 RE_Image_Decimal64 => System_Img_Decimal_64,
2610 RE_Image_Decimal128 => System_Img_Decimal_128,
2612 RE_Image_Enumeration_8 => System_Img_Enum_8,
2614 RE_Image_Enumeration_16 => System_Img_Enum_16,
2616 RE_Image_Enumeration_32 => System_Img_Enum_32,
2618 RE_Image_Float => System_Img_Flt,
2620 RE_Image_Integer => System_Img_Int,
2622 RE_Image_Long_Float => System_Img_LFlt,
2624 RE_Image_Long_Long_Float => System_Img_LLF,
2626 RE_Image_Long_Long_Integer => System_Img_LLI,
2628 RE_Image_Long_Long_Long_Integer => System_Img_LLLI,
2630 RE_Image_Long_Long_Unsigned => System_Img_LLU,
2632 RE_Image_Long_Long_Long_Unsigned => System_Img_LLLU,
2634 RE_Image_Fixed => System_Img_LFlt,
2636 RE_Image_Fixed32 => System_Img_Fixed_32,
2638 RE_Image_Fixed64 => System_Img_Fixed_64,
2640 RE_Image_Fixed128 => System_Img_Fixed_128,
2642 RE_Image_Unsigned => System_Img_Uns,
2644 RE_Image_Wide_Character => System_Img_WChar,
2645 RE_Image_Wide_Wide_Character => System_Img_WChar,
2647 RE_Bind_Interrupt_To_Entry => System_Interrupts,
2648 RE_Default_Interrupt_Priority => System_Interrupts,
2649 RE_Dynamic_Interrupt_Protection => System_Interrupts,
2650 RE_Install_Handlers => System_Interrupts,
2651 RE_Install_Restricted_Handlers => System_Interrupts,
2652 RE_Register_Interrupt_Handler => System_Interrupts,
2653 RE_Static_Interrupt_Protection => System_Interrupts,
2654 RE_System_Interrupt_Id => System_Interrupts,
2656 RE_Expon_LLF => System_Long_Long_Float_Expon,
2658 RE_Asm_Insn => System_Machine_Code,
2659 RE_Asm_Input_Operand => System_Machine_Code,
2660 RE_Asm_Output_Operand => System_Machine_Code,
2662 RE_Mantissa_Value => System_Mantissa,
2664 RE_Free => System_Memory,
2666 RE_CPU_Range => System_Multiprocessors,
2668 RE_Bits_03 => System_Pack_03,
2669 RE_Get_03 => System_Pack_03,
2670 RE_Set_03 => System_Pack_03,
2672 RE_Bits_05 => System_Pack_05,
2673 RE_Get_05 => System_Pack_05,
2674 RE_Set_05 => System_Pack_05,
2676 RE_Bits_06 => System_Pack_06,
2677 RE_Get_06 => System_Pack_06,
2678 RE_GetU_06 => System_Pack_06,
2679 RE_Set_06 => System_Pack_06,
2680 RE_SetU_06 => System_Pack_06,
2682 RE_Bits_07 => System_Pack_07,
2683 RE_Get_07 => System_Pack_07,
2684 RE_Set_07 => System_Pack_07,
2686 RE_Bits_09 => System_Pack_09,
2687 RE_Get_09 => System_Pack_09,
2688 RE_Set_09 => System_Pack_09,
2690 RE_Bits_10 => System_Pack_10,
2691 RE_Get_10 => System_Pack_10,
2692 RE_GetU_10 => System_Pack_10,
2693 RE_Set_10 => System_Pack_10,
2694 RE_SetU_10 => System_Pack_10,
2696 RE_Bits_11 => System_Pack_11,
2697 RE_Get_11 => System_Pack_11,
2698 RE_Set_11 => System_Pack_11,
2700 RE_Bits_12 => System_Pack_12,
2701 RE_Get_12 => System_Pack_12,
2702 RE_GetU_12 => System_Pack_12,
2703 RE_Set_12 => System_Pack_12,
2704 RE_SetU_12 => System_Pack_12,
2706 RE_Bits_13 => System_Pack_13,
2707 RE_Get_13 => System_Pack_13,
2708 RE_Set_13 => System_Pack_13,
2710 RE_Bits_14 => System_Pack_14,
2711 RE_Get_14 => System_Pack_14,
2712 RE_GetU_14 => System_Pack_14,
2713 RE_Set_14 => System_Pack_14,
2714 RE_SetU_14 => System_Pack_14,
2716 RE_Bits_15 => System_Pack_15,
2717 RE_Get_15 => System_Pack_15,
2718 RE_Set_15 => System_Pack_15,
2720 RE_Bits_17 => System_Pack_17,
2721 RE_Get_17 => System_Pack_17,
2722 RE_Set_17 => System_Pack_17,
2724 RE_Bits_18 => System_Pack_18,
2725 RE_Get_18 => System_Pack_18,
2726 RE_GetU_18 => System_Pack_18,
2727 RE_Set_18 => System_Pack_18,
2728 RE_SetU_18 => System_Pack_18,
2730 RE_Bits_19 => System_Pack_19,
2731 RE_Get_19 => System_Pack_19,
2732 RE_Set_19 => System_Pack_19,
2734 RE_Bits_20 => System_Pack_20,
2735 RE_Get_20 => System_Pack_20,
2736 RE_GetU_20 => System_Pack_20,
2737 RE_Set_20 => System_Pack_20,
2738 RE_SetU_20 => System_Pack_20,
2740 RE_Bits_21 => System_Pack_21,
2741 RE_Get_21 => System_Pack_21,
2742 RE_Set_21 => System_Pack_21,
2744 RE_Bits_22 => System_Pack_22,
2745 RE_Get_22 => System_Pack_22,
2746 RE_GetU_22 => System_Pack_22,
2747 RE_Set_22 => System_Pack_22,
2748 RE_SetU_22 => System_Pack_22,
2750 RE_Bits_23 => System_Pack_23,
2751 RE_Get_23 => System_Pack_23,
2752 RE_Set_23 => System_Pack_23,
2754 RE_Bits_24 => System_Pack_24,
2755 RE_Get_24 => System_Pack_24,
2756 RE_GetU_24 => System_Pack_24,
2757 RE_Set_24 => System_Pack_24,
2758 RE_SetU_24 => System_Pack_24,
2760 RE_Bits_25 => System_Pack_25,
2761 RE_Get_25 => System_Pack_25,
2762 RE_Set_25 => System_Pack_25,
2764 RE_Bits_26 => System_Pack_26,
2765 RE_Get_26 => System_Pack_26,
2766 RE_GetU_26 => System_Pack_26,
2767 RE_Set_26 => System_Pack_26,
2768 RE_SetU_26 => System_Pack_26,
2770 RE_Bits_27 => System_Pack_27,
2771 RE_Get_27 => System_Pack_27,
2772 RE_Set_27 => System_Pack_27,
2774 RE_Bits_28 => System_Pack_28,
2775 RE_Get_28 => System_Pack_28,
2776 RE_GetU_28 => System_Pack_28,
2777 RE_Set_28 => System_Pack_28,
2778 RE_SetU_28 => System_Pack_28,
2780 RE_Bits_29 => System_Pack_29,
2781 RE_Get_29 => System_Pack_29,
2782 RE_Set_29 => System_Pack_29,
2784 RE_Bits_30 => System_Pack_30,
2785 RE_Get_30 => System_Pack_30,
2786 RE_GetU_30 => System_Pack_30,
2787 RE_Set_30 => System_Pack_30,
2788 RE_SetU_30 => System_Pack_30,
2790 RE_Bits_31 => System_Pack_31,
2791 RE_Get_31 => System_Pack_31,
2792 RE_Set_31 => System_Pack_31,
2794 RE_Bits_33 => System_Pack_33,
2795 RE_Get_33 => System_Pack_33,
2796 RE_Set_33 => System_Pack_33,
2798 RE_Bits_34 => System_Pack_34,
2799 RE_Get_34 => System_Pack_34,
2800 RE_GetU_34 => System_Pack_34,
2801 RE_Set_34 => System_Pack_34,
2802 RE_SetU_34 => System_Pack_34,
2804 RE_Bits_35 => System_Pack_35,
2805 RE_Get_35 => System_Pack_35,
2806 RE_Set_35 => System_Pack_35,
2808 RE_Bits_36 => System_Pack_36,
2809 RE_Get_36 => System_Pack_36,
2810 RE_GetU_36 => System_Pack_36,
2811 RE_Set_36 => System_Pack_36,
2812 RE_SetU_36 => System_Pack_36,
2814 RE_Bits_37 => System_Pack_37,
2815 RE_Get_37 => System_Pack_37,
2816 RE_Set_37 => System_Pack_37,
2818 RE_Bits_38 => System_Pack_38,
2819 RE_Get_38 => System_Pack_38,
2820 RE_GetU_38 => System_Pack_38,
2821 RE_Set_38 => System_Pack_38,
2822 RE_SetU_38 => System_Pack_38,
2824 RE_Bits_39 => System_Pack_39,
2825 RE_Get_39 => System_Pack_39,
2826 RE_Set_39 => System_Pack_39,
2828 RE_Bits_40 => System_Pack_40,
2829 RE_Get_40 => System_Pack_40,
2830 RE_GetU_40 => System_Pack_40,
2831 RE_Set_40 => System_Pack_40,
2832 RE_SetU_40 => System_Pack_40,
2834 RE_Bits_41 => System_Pack_41,
2835 RE_Get_41 => System_Pack_41,
2836 RE_Set_41 => System_Pack_41,
2838 RE_Bits_42 => System_Pack_42,
2839 RE_Get_42 => System_Pack_42,
2840 RE_GetU_42 => System_Pack_42,
2841 RE_Set_42 => System_Pack_42,
2842 RE_SetU_42 => System_Pack_42,
2844 RE_Bits_43 => System_Pack_43,
2845 RE_Get_43 => System_Pack_43,
2846 RE_Set_43 => System_Pack_43,
2848 RE_Bits_44 => System_Pack_44,
2849 RE_Get_44 => System_Pack_44,
2850 RE_GetU_44 => System_Pack_44,
2851 RE_Set_44 => System_Pack_44,
2852 RE_SetU_44 => System_Pack_44,
2854 RE_Bits_45 => System_Pack_45,
2855 RE_Get_45 => System_Pack_45,
2856 RE_Set_45 => System_Pack_45,
2858 RE_Bits_46 => System_Pack_46,
2859 RE_Get_46 => System_Pack_46,
2860 RE_GetU_46 => System_Pack_46,
2861 RE_Set_46 => System_Pack_46,
2862 RE_SetU_46 => System_Pack_46,
2864 RE_Bits_47 => System_Pack_47,
2865 RE_Get_47 => System_Pack_47,
2866 RE_Set_47 => System_Pack_47,
2868 RE_Bits_48 => System_Pack_48,
2869 RE_Get_48 => System_Pack_48,
2870 RE_GetU_48 => System_Pack_48,
2871 RE_Set_48 => System_Pack_48,
2872 RE_SetU_48 => System_Pack_48,
2874 RE_Bits_49 => System_Pack_49,
2875 RE_Get_49 => System_Pack_49,
2876 RE_Set_49 => System_Pack_49,
2878 RE_Bits_50 => System_Pack_50,
2879 RE_Get_50 => System_Pack_50,
2880 RE_GetU_50 => System_Pack_50,
2881 RE_Set_50 => System_Pack_50,
2882 RE_SetU_50 => System_Pack_50,
2884 RE_Bits_51 => System_Pack_51,
2885 RE_Get_51 => System_Pack_51,
2886 RE_Set_51 => System_Pack_51,
2888 RE_Bits_52 => System_Pack_52,
2889 RE_Get_52 => System_Pack_52,
2890 RE_GetU_52 => System_Pack_52,
2891 RE_Set_52 => System_Pack_52,
2892 RE_SetU_52 => System_Pack_52,
2894 RE_Bits_53 => System_Pack_53,
2895 RE_Get_53 => System_Pack_53,
2896 RE_Set_53 => System_Pack_53,
2898 RE_Bits_54 => System_Pack_54,
2899 RE_Get_54 => System_Pack_54,
2900 RE_GetU_54 => System_Pack_54,
2901 RE_Set_54 => System_Pack_54,
2902 RE_SetU_54 => System_Pack_54,
2904 RE_Bits_55 => System_Pack_55,
2905 RE_Get_55 => System_Pack_55,
2906 RE_Set_55 => System_Pack_55,
2908 RE_Bits_56 => System_Pack_56,
2909 RE_Get_56 => System_Pack_56,
2910 RE_GetU_56 => System_Pack_56,
2911 RE_Set_56 => System_Pack_56,
2912 RE_SetU_56 => System_Pack_56,
2914 RE_Bits_57 => System_Pack_57,
2915 RE_Get_57 => System_Pack_57,
2916 RE_Set_57 => System_Pack_57,
2918 RE_Bits_58 => System_Pack_58,
2919 RE_Get_58 => System_Pack_58,
2920 RE_GetU_58 => System_Pack_58,
2921 RE_Set_58 => System_Pack_58,
2922 RE_SetU_58 => System_Pack_58,
2924 RE_Bits_59 => System_Pack_59,
2925 RE_Get_59 => System_Pack_59,
2926 RE_Set_59 => System_Pack_59,
2928 RE_Bits_60 => System_Pack_60,
2929 RE_Get_60 => System_Pack_60,
2930 RE_GetU_60 => System_Pack_60,
2931 RE_Set_60 => System_Pack_60,
2932 RE_SetU_60 => System_Pack_60,
2934 RE_Bits_61 => System_Pack_61,
2935 RE_Get_61 => System_Pack_61,
2936 RE_Set_61 => System_Pack_61,
2938 RE_Bits_62 => System_Pack_62,
2939 RE_Get_62 => System_Pack_62,
2940 RE_GetU_62 => System_Pack_62,
2941 RE_Set_62 => System_Pack_62,
2942 RE_SetU_62 => System_Pack_62,
2944 RE_Bits_63 => System_Pack_63,
2945 RE_Get_63 => System_Pack_63,
2946 RE_Set_63 => System_Pack_63,
2948 RE_Bits_65 => System_Pack_65,
2949 RE_Get_65 => System_Pack_65,
2950 RE_Set_65 => System_Pack_65,
2952 RE_Bits_66 => System_Pack_66,
2953 RE_Get_66 => System_Pack_66,
2954 RE_GetU_66 => System_Pack_66,
2955 RE_Set_66 => System_Pack_66,
2956 RE_SetU_66 => System_Pack_66,
2958 RE_Bits_67 => System_Pack_67,
2959 RE_Get_67 => System_Pack_67,
2960 RE_Set_67 => System_Pack_67,
2962 RE_Bits_68 => System_Pack_68,
2963 RE_Get_68 => System_Pack_68,
2964 RE_GetU_68 => System_Pack_68,
2965 RE_Set_68 => System_Pack_68,
2966 RE_SetU_68 => System_Pack_68,
2968 RE_Bits_69 => System_Pack_69,
2969 RE_Get_69 => System_Pack_69,
2970 RE_Set_69 => System_Pack_69,
2972 RE_Bits_70 => System_Pack_70,
2973 RE_Get_70 => System_Pack_70,
2974 RE_GetU_70 => System_Pack_70,
2975 RE_Set_70 => System_Pack_70,
2976 RE_SetU_70 => System_Pack_70,
2978 RE_Bits_71 => System_Pack_71,
2979 RE_Get_71 => System_Pack_71,
2980 RE_Set_71 => System_Pack_71,
2982 RE_Bits_72 => System_Pack_72,
2983 RE_Get_72 => System_Pack_72,
2984 RE_GetU_72 => System_Pack_72,
2985 RE_Set_72 => System_Pack_72,
2986 RE_SetU_72 => System_Pack_72,
2988 RE_Bits_73 => System_Pack_73,
2989 RE_Get_73 => System_Pack_73,
2990 RE_Set_73 => System_Pack_73,
2992 RE_Bits_74 => System_Pack_74,
2993 RE_Get_74 => System_Pack_74,
2994 RE_GetU_74 => System_Pack_74,
2995 RE_Set_74 => System_Pack_74,
2996 RE_SetU_74 => System_Pack_74,
2998 RE_Bits_75 => System_Pack_75,
2999 RE_Get_75 => System_Pack_75,
3000 RE_Set_75 => System_Pack_75,
3002 RE_Bits_76 => System_Pack_76,
3003 RE_Get_76 => System_Pack_76,
3004 RE_GetU_76 => System_Pack_76,
3005 RE_Set_76 => System_Pack_76,
3006 RE_SetU_76 => System_Pack_76,
3008 RE_Bits_77 => System_Pack_77,
3009 RE_Get_77 => System_Pack_77,
3010 RE_Set_77 => System_Pack_77,
3012 RE_Bits_78 => System_Pack_78,
3013 RE_Get_78 => System_Pack_78,
3014 RE_GetU_78 => System_Pack_78,
3015 RE_Set_78 => System_Pack_78,
3016 RE_SetU_78 => System_Pack_78,
3018 RE_Bits_79 => System_Pack_79,
3019 RE_Get_79 => System_Pack_79,
3020 RE_Set_79 => System_Pack_79,
3022 RE_Bits_80 => System_Pack_80,
3023 RE_Get_80 => System_Pack_80,
3024 RE_GetU_80 => System_Pack_80,
3025 RE_Set_80 => System_Pack_80,
3026 RE_SetU_80 => System_Pack_80,
3028 RE_Bits_81 => System_Pack_81,
3029 RE_Get_81 => System_Pack_81,
3030 RE_Set_81 => System_Pack_81,
3032 RE_Bits_82 => System_Pack_82,
3033 RE_Get_82 => System_Pack_82,
3034 RE_GetU_82 => System_Pack_82,
3035 RE_Set_82 => System_Pack_82,
3036 RE_SetU_82 => System_Pack_82,
3038 RE_Bits_83 => System_Pack_83,
3039 RE_Get_83 => System_Pack_83,
3040 RE_Set_83 => System_Pack_83,
3042 RE_Bits_84 => System_Pack_84,
3043 RE_Get_84 => System_Pack_84,
3044 RE_GetU_84 => System_Pack_84,
3045 RE_Set_84 => System_Pack_84,
3046 RE_SetU_84 => System_Pack_84,
3048 RE_Bits_85 => System_Pack_85,
3049 RE_Get_85 => System_Pack_85,
3050 RE_Set_85 => System_Pack_85,
3052 RE_Bits_86 => System_Pack_86,
3053 RE_Get_86 => System_Pack_86,
3054 RE_GetU_86 => System_Pack_86,
3055 RE_Set_86 => System_Pack_86,
3056 RE_SetU_86 => System_Pack_86,
3058 RE_Bits_87 => System_Pack_87,
3059 RE_Get_87 => System_Pack_87,
3060 RE_Set_87 => System_Pack_87,
3062 RE_Bits_88 => System_Pack_88,
3063 RE_Get_88 => System_Pack_88,
3064 RE_GetU_88 => System_Pack_88,
3065 RE_Set_88 => System_Pack_88,
3066 RE_SetU_88 => System_Pack_88,
3068 RE_Bits_89 => System_Pack_89,
3069 RE_Get_89 => System_Pack_89,
3070 RE_Set_89 => System_Pack_89,
3072 RE_Bits_90 => System_Pack_90,
3073 RE_Get_90 => System_Pack_90,
3074 RE_GetU_90 => System_Pack_90,
3075 RE_Set_90 => System_Pack_90,
3076 RE_SetU_90 => System_Pack_90,
3078 RE_Bits_91 => System_Pack_91,
3079 RE_Get_91 => System_Pack_91,
3080 RE_Set_91 => System_Pack_91,
3082 RE_Bits_92 => System_Pack_92,
3083 RE_Get_92 => System_Pack_92,
3084 RE_GetU_92 => System_Pack_92,
3085 RE_Set_92 => System_Pack_92,
3086 RE_SetU_92 => System_Pack_92,
3088 RE_Bits_93 => System_Pack_93,
3089 RE_Get_93 => System_Pack_93,
3090 RE_Set_93 => System_Pack_93,
3092 RE_Bits_94 => System_Pack_94,
3093 RE_Get_94 => System_Pack_94,
3094 RE_GetU_94 => System_Pack_94,
3095 RE_Set_94 => System_Pack_94,
3096 RE_SetU_94 => System_Pack_94,
3098 RE_Bits_95 => System_Pack_95,
3099 RE_Get_95 => System_Pack_95,
3100 RE_Set_95 => System_Pack_95,
3102 RE_Bits_96 => System_Pack_96,
3103 RE_Get_96 => System_Pack_96,
3104 RE_GetU_96 => System_Pack_96,
3105 RE_Set_96 => System_Pack_96,
3106 RE_SetU_96 => System_Pack_96,
3108 RE_Bits_97 => System_Pack_97,
3109 RE_Get_97 => System_Pack_97,
3110 RE_Set_97 => System_Pack_97,
3112 RE_Bits_98 => System_Pack_98,
3113 RE_Get_98 => System_Pack_98,
3114 RE_GetU_98 => System_Pack_98,
3115 RE_Set_98 => System_Pack_98,
3116 RE_SetU_98 => System_Pack_98,
3118 RE_Bits_99 => System_Pack_99,
3119 RE_Get_99 => System_Pack_99,
3120 RE_Set_99 => System_Pack_99,
3122 RE_Bits_100 => System_Pack_100,
3123 RE_Get_100 => System_Pack_100,
3124 RE_GetU_100 => System_Pack_100,
3125 RE_Set_100 => System_Pack_100,
3126 RE_SetU_100 => System_Pack_100,
3128 RE_Bits_101 => System_Pack_101,
3129 RE_Get_101 => System_Pack_101,
3130 RE_Set_101 => System_Pack_101,
3132 RE_Bits_102 => System_Pack_102,
3133 RE_Get_102 => System_Pack_102,
3134 RE_GetU_102 => System_Pack_102,
3135 RE_Set_102 => System_Pack_102,
3136 RE_SetU_102 => System_Pack_102,
3138 RE_Bits_103 => System_Pack_103,
3139 RE_Get_103 => System_Pack_103,
3140 RE_Set_103 => System_Pack_103,
3142 RE_Bits_104 => System_Pack_104,
3143 RE_Get_104 => System_Pack_104,
3144 RE_GetU_104 => System_Pack_104,
3145 RE_Set_104 => System_Pack_104,
3146 RE_SetU_104 => System_Pack_104,
3148 RE_Bits_105 => System_Pack_105,
3149 RE_Get_105 => System_Pack_105,
3150 RE_Set_105 => System_Pack_105,
3152 RE_Bits_106 => System_Pack_106,
3153 RE_Get_106 => System_Pack_106,
3154 RE_GetU_106 => System_Pack_106,
3155 RE_Set_106 => System_Pack_106,
3156 RE_SetU_106 => System_Pack_106,
3158 RE_Bits_107 => System_Pack_107,
3159 RE_Get_107 => System_Pack_107,
3160 RE_Set_107 => System_Pack_107,
3162 RE_Bits_108 => System_Pack_108,
3163 RE_Get_108 => System_Pack_108,
3164 RE_GetU_108 => System_Pack_108,
3165 RE_Set_108 => System_Pack_108,
3166 RE_SetU_108 => System_Pack_108,
3168 RE_Bits_109 => System_Pack_109,
3169 RE_Get_109 => System_Pack_109,
3170 RE_Set_109 => System_Pack_109,
3172 RE_Bits_110 => System_Pack_110,
3173 RE_Get_110 => System_Pack_110,
3174 RE_GetU_110 => System_Pack_110,
3175 RE_Set_110 => System_Pack_110,
3176 RE_SetU_110 => System_Pack_110,
3178 RE_Bits_111 => System_Pack_111,
3179 RE_Get_111 => System_Pack_111,
3180 RE_Set_111 => System_Pack_111,
3182 RE_Bits_112 => System_Pack_112,
3183 RE_Get_112 => System_Pack_112,
3184 RE_GetU_112 => System_Pack_112,
3185 RE_Set_112 => System_Pack_112,
3186 RE_SetU_112 => System_Pack_112,
3188 RE_Bits_113 => System_Pack_113,
3189 RE_Get_113 => System_Pack_113,
3190 RE_Set_113 => System_Pack_113,
3192 RE_Bits_114 => System_Pack_114,
3193 RE_Get_114 => System_Pack_114,
3194 RE_GetU_114 => System_Pack_114,
3195 RE_Set_114 => System_Pack_114,
3196 RE_SetU_114 => System_Pack_114,
3198 RE_Bits_115 => System_Pack_115,
3199 RE_Get_115 => System_Pack_115,
3200 RE_Set_115 => System_Pack_115,
3202 RE_Bits_116 => System_Pack_116,
3203 RE_Get_116 => System_Pack_116,
3204 RE_GetU_116 => System_Pack_116,
3205 RE_Set_116 => System_Pack_116,
3206 RE_SetU_116 => System_Pack_116,
3208 RE_Bits_117 => System_Pack_117,
3209 RE_Get_117 => System_Pack_117,
3210 RE_Set_117 => System_Pack_117,
3212 RE_Bits_118 => System_Pack_118,
3213 RE_Get_118 => System_Pack_118,
3214 RE_GetU_118 => System_Pack_118,
3215 RE_Set_118 => System_Pack_118,
3216 RE_SetU_118 => System_Pack_118,
3218 RE_Bits_119 => System_Pack_119,
3219 RE_Get_119 => System_Pack_119,
3220 RE_Set_119 => System_Pack_119,
3222 RE_Bits_120 => System_Pack_120,
3223 RE_Get_120 => System_Pack_120,
3224 RE_GetU_120 => System_Pack_120,
3225 RE_Set_120 => System_Pack_120,
3226 RE_SetU_120 => System_Pack_120,
3228 RE_Bits_121 => System_Pack_121,
3229 RE_Get_121 => System_Pack_121,
3230 RE_Set_121 => System_Pack_121,
3232 RE_Bits_122 => System_Pack_122,
3233 RE_Get_122 => System_Pack_122,
3234 RE_GetU_122 => System_Pack_122,
3235 RE_Set_122 => System_Pack_122,
3236 RE_SetU_122 => System_Pack_122,
3238 RE_Bits_123 => System_Pack_123,
3239 RE_Get_123 => System_Pack_123,
3240 RE_Set_123 => System_Pack_123,
3242 RE_Bits_124 => System_Pack_124,
3243 RE_Get_124 => System_Pack_124,
3244 RE_GetU_124 => System_Pack_124,
3245 RE_Set_124 => System_Pack_124,
3246 RE_SetU_124 => System_Pack_124,
3248 RE_Bits_125 => System_Pack_125,
3249 RE_Get_125 => System_Pack_125,
3250 RE_Set_125 => System_Pack_125,
3252 RE_Bits_126 => System_Pack_126,
3253 RE_Get_126 => System_Pack_126,
3254 RE_GetU_126 => System_Pack_126,
3255 RE_Set_126 => System_Pack_126,
3256 RE_SetU_126 => System_Pack_126,
3258 RE_Bits_127 => System_Pack_127,
3259 RE_Get_127 => System_Pack_127,
3260 RE_Set_127 => System_Pack_127,
3262 RE_Adjust_Storage_Size => System_Parameters,
3263 RE_Default_Stack_Size => System_Parameters,
3264 RE_Size_Type => System_Parameters,
3265 RE_Unspecified_Size => System_Parameters,
3267 RE_DSA_Implementation => System_Partition_Interface,
3268 RE_PCS_Version => System_Partition_Interface,
3269 RE_Get_RACW => System_Partition_Interface,
3270 RE_Get_RCI_Package_Receiver => System_Partition_Interface,
3271 RE_Get_Unique_Remote_Pointer => System_Partition_Interface,
3272 RE_RACW_Stub_Type => System_Partition_Interface,
3273 RE_RACW_Stub_Type_Access => System_Partition_Interface,
3274 RE_RAS_Proxy_Type_Access => System_Partition_Interface,
3275 RE_Raise_Program_Error_Unknown_Tag => System_Partition_Interface,
3276 RE_Register_Passive_Package => System_Partition_Interface,
3277 RE_Register_Receiving_Stub => System_Partition_Interface,
3278 RE_Request => System_Partition_Interface,
3279 RE_Request_Access => System_Partition_Interface,
3280 RE_RCI_Locator => System_Partition_Interface,
3281 RE_RCI_Subp_Info => System_Partition_Interface,
3282 RE_RCI_Subp_Info_Array => System_Partition_Interface,
3283 RE_Same_Partition => System_Partition_Interface,
3284 RE_Subprogram_Id => System_Partition_Interface,
3285 RE_Get_RAS_Info => System_Partition_Interface,
3287 RE_To_PolyORB_String => System_Partition_Interface,
3288 RE_Caseless_String_Eq => System_Partition_Interface,
3289 RE_TypeCode => System_Partition_Interface,
3290 RE_Any => System_Partition_Interface,
3291 RE_Mode_In => System_Partition_Interface,
3292 RE_Mode_Out => System_Partition_Interface,
3293 RE_Mode_Inout => System_Partition_Interface,
3294 RE_NamedValue => System_Partition_Interface,
3295 RE_Result_Name => System_Partition_Interface,
3296 RE_Object_Ref => System_Partition_Interface,
3297 RE_Create_Any => System_Partition_Interface,
3298 RE_Any_Aggregate_Build => System_Partition_Interface,
3299 RE_Add_Aggregate_Element => System_Partition_Interface,
3300 RE_Get_Aggregate_Element => System_Partition_Interface,
3301 RE_Content_Type => System_Partition_Interface,
3302 RE_Any_Member_Type => System_Partition_Interface,
3303 RE_Get_Nested_Sequence_Length => System_Partition_Interface,
3304 RE_Get_Any_Type => System_Partition_Interface,
3305 RE_Extract_Union_Value => System_Partition_Interface,
3306 RE_NVList_Ref => System_Partition_Interface,
3307 RE_NVList_Create => System_Partition_Interface,
3308 RE_NVList_Add_Item => System_Partition_Interface,
3309 RE_Request_Arguments => System_Partition_Interface,
3310 RE_Request_Invoke => System_Partition_Interface,
3311 RE_Request_Raise_Occurrence => System_Partition_Interface,
3312 RE_Request_Set_Out => System_Partition_Interface,
3313 RE_Request_Setup => System_Partition_Interface,
3314 RE_Nil_Exc_List => System_Partition_Interface,
3315 RE_Servant => System_Partition_Interface,
3316 RE_Move_Any_Value => System_Partition_Interface,
3317 RE_Set_Result => System_Partition_Interface,
3318 RE_Register_Obj_Receiving_Stub => System_Partition_Interface,
3319 RE_Register_Pkg_Receiving_Stub => System_Partition_Interface,
3320 RE_Entity_Of => System_Partition_Interface,
3321 RE_Inc_Usage => System_Partition_Interface,
3322 RE_Make_Ref => System_Partition_Interface,
3323 RE_Get_Local_Address => System_Partition_Interface,
3324 RE_Get_Reference => System_Partition_Interface,
3325 RE_Asynchronous_P_To_Sync_Scope => System_Partition_Interface,
3326 RE_Buffer_Stream_Type => System_Partition_Interface,
3327 RE_Release_Buffer => System_Partition_Interface,
3328 RE_BS_To_Any => System_Partition_Interface,
3329 RE_Any_To_BS => System_Partition_Interface,
3330 RE_Build_Complex_TC => System_Partition_Interface,
3331 RE_Get_TC => System_Partition_Interface,
3332 RE_Set_TC => System_Partition_Interface,
3334 RE_FA_A => System_Partition_Interface,
3335 RE_FA_B => System_Partition_Interface,
3336 RE_FA_C => System_Partition_Interface,
3337 RE_FA_F => System_Partition_Interface,
3338 RE_FA_I8 => System_Partition_Interface,
3339 RE_FA_I16 => System_Partition_Interface,
3340 RE_FA_I32 => System_Partition_Interface,
3341 RE_FA_I64 => System_Partition_Interface,
3342 RE_FA_LF => System_Partition_Interface,
3343 RE_FA_LLF => System_Partition_Interface,
3344 RE_FA_SF => System_Partition_Interface,
3345 RE_FA_U8 => System_Partition_Interface,
3346 RE_FA_U16 => System_Partition_Interface,
3347 RE_FA_U32 => System_Partition_Interface,
3348 RE_FA_U64 => System_Partition_Interface,
3349 RE_FA_WC => System_Partition_Interface,
3350 RE_FA_WWC => System_Partition_Interface,
3351 RE_FA_String => System_Partition_Interface,
3352 RE_FA_ObjRef => System_Partition_Interface,
3354 RE_TA_A => System_Partition_Interface,
3355 RE_TA_B => System_Partition_Interface,
3356 RE_TA_C => System_Partition_Interface,
3357 RE_TA_F => System_Partition_Interface,
3358 RE_TA_I8 => System_Partition_Interface,
3359 RE_TA_I16 => System_Partition_Interface,
3360 RE_TA_I32 => System_Partition_Interface,
3361 RE_TA_I64 => System_Partition_Interface,
3362 RE_TA_LF => System_Partition_Interface,
3363 RE_TA_LLF => System_Partition_Interface,
3364 RE_TA_SF => System_Partition_Interface,
3365 RE_TA_U8 => System_Partition_Interface,
3366 RE_TA_U16 => System_Partition_Interface,
3367 RE_TA_U32 => System_Partition_Interface,
3368 RE_TA_U64 => System_Partition_Interface,
3369 RE_TA_WC => System_Partition_Interface,
3370 RE_TA_WWC => System_Partition_Interface,
3371 RE_TA_String => System_Partition_Interface,
3372 RE_TA_ObjRef => System_Partition_Interface,
3373 RE_TA_Std_String => System_Partition_Interface,
3374 RE_TA_TC => System_Partition_Interface,
3376 RE_TC_A => System_Partition_Interface,
3377 RE_TC_B => System_Partition_Interface,
3378 RE_TC_C => System_Partition_Interface,
3379 RE_TC_F => System_Partition_Interface,
3380 RE_TC_I8 => System_Partition_Interface,
3381 RE_TC_I16 => System_Partition_Interface,
3382 RE_TC_I32 => System_Partition_Interface,
3383 RE_TC_I64 => System_Partition_Interface,
3384 RE_TC_LF => System_Partition_Interface,
3385 RE_TC_LLF => System_Partition_Interface,
3386 RE_TC_SF => System_Partition_Interface,
3387 RE_TC_U8 => System_Partition_Interface,
3388 RE_TC_U16 => System_Partition_Interface,
3389 RE_TC_U32 => System_Partition_Interface,
3390 RE_TC_U64 => System_Partition_Interface,
3391 RE_TC_Void => System_Partition_Interface,
3392 RE_TC_Opaque => System_Partition_Interface,
3393 RE_TC_WC => System_Partition_Interface,
3394 RE_TC_WWC => System_Partition_Interface,
3395 RE_TC_String => System_Partition_Interface,
3397 RE_Tk_Alias => System_Partition_Interface,
3398 RE_Tk_Array => System_Partition_Interface,
3399 RE_Tk_Sequence => System_Partition_Interface,
3400 RE_Tk_Struct => System_Partition_Interface,
3401 RE_Tk_Objref => System_Partition_Interface,
3402 RE_Tk_Union => System_Partition_Interface,
3404 RE_Global_Pool_Object => System_Pool_Global,
3406 RE_Stack_Bounded_Pool => System_Pool_Size,
3408 RE_Put_Image_Integer => System_Put_Images,
3409 RE_Put_Image_Long_Long_Integer => System_Put_Images,
3410 RE_Put_Image_Long_Long_Long_Integer => System_Put_Images,
3411 RE_Put_Image_Unsigned => System_Put_Images,
3412 RE_Put_Image_Long_Long_Unsigned => System_Put_Images,
3413 RE_Put_Image_Long_Long_Long_Unsigned => System_Put_Images,
3414 RE_Put_Image_Thin_Pointer => System_Put_Images,
3415 RE_Put_Image_Fat_Pointer => System_Put_Images,
3416 RE_Put_Image_Access_Subp => System_Put_Images,
3417 RE_Put_Image_Access_Prot_Subp => System_Put_Images,
3418 RE_Put_Image_String => System_Put_Images,
3419 RE_Put_Image_Wide_String => System_Put_Images,
3420 RE_Put_Image_Wide_Wide_String => System_Put_Images,
3421 RE_Array_Before => System_Put_Images,
3422 RE_Array_Between => System_Put_Images,
3423 RE_Array_After => System_Put_Images,
3424 RE_Simple_Array_Between => System_Put_Images,
3425 RE_Record_Before => System_Put_Images,
3426 RE_Record_Between => System_Put_Images,
3427 RE_Record_After => System_Put_Images,
3428 RE_Put_Image_Unknown => System_Put_Images,
3430 RE_Put_Image_Protected => System_Put_Task_Images,
3431 RE_Put_Image_Task => System_Put_Task_Images,
3433 RO_RD_Delay_For => System_Relative_Delays,
3435 RE_RS_Allocate => System_Return_Stack,
3436 RE_RS_Pool => System_Return_Stack,
3438 RE_Do_Apc => System_RPC,
3439 RE_Do_Rpc => System_RPC,
3440 RE_Params_Stream_Type => System_RPC,
3441 RE_Partition_ID => System_RPC,
3443 RE_IS_Is1 => System_Scalar_Values,
3444 RE_IS_Is2 => System_Scalar_Values,
3445 RE_IS_Is4 => System_Scalar_Values,
3446 RE_IS_Is8 => System_Scalar_Values,
3447 RE_IS_Is16 => System_Scalar_Values,
3448 RE_IS_Iu1 => System_Scalar_Values,
3449 RE_IS_Iu2 => System_Scalar_Values,
3450 RE_IS_Iu4 => System_Scalar_Values,
3451 RE_IS_Iu8 => System_Scalar_Values,
3452 RE_IS_Iu16 => System_Scalar_Values,
3453 RE_IS_Isf => System_Scalar_Values,
3454 RE_IS_Ifl => System_Scalar_Values,
3455 RE_IS_Ilf => System_Scalar_Values,
3456 RE_IS_Ill => System_Scalar_Values,
3458 RE_Mark_Id => System_Secondary_Stack,
3459 RE_SS_Allocate => System_Secondary_Stack,
3460 RE_SS_Mark => System_Secondary_Stack,
3461 RE_SS_Pool => System_Secondary_Stack,
3462 RE_SS_Release => System_Secondary_Stack,
3463 RE_SS_Stack => System_Secondary_Stack,
3465 RE_Shared_Var_Lock => System_Shared_Storage,
3466 RE_Shared_Var_Unlock => System_Shared_Storage,
3467 RE_Shared_Var_Procs => System_Shared_Storage,
3469 RE_Abort_Undefer_Direct => System_Standard_Library,
3470 RE_Exception_Data_Ptr => System_Standard_Library,
3472 RE_Integer_Address => System_Storage_Elements,
3473 RE_Storage_Array => System_Storage_Elements,
3474 RE_Storage_Count => System_Storage_Elements,
3475 RE_Storage_Offset => System_Storage_Elements,
3476 RE_To_Address => System_Storage_Elements,
3478 RE_Allocate_Any => System_Storage_Pools,
3479 RE_Deallocate_Any => System_Storage_Pools,
3480 RE_Root_Storage_Pool => System_Storage_Pools,
3481 RE_Root_Storage_Pool_Ptr => System_Storage_Pools,
3483 RE_Adjust_Controlled_Dereference => System_Storage_Pools_Subpools,
3484 RE_Allocate_Any_Controlled => System_Storage_Pools_Subpools,
3485 RE_Deallocate_Any_Controlled => System_Storage_Pools_Subpools,
3486 RE_Header_Size_With_Padding => System_Storage_Pools_Subpools,
3487 RE_Root_Storage_Pool_With_Subpools => System_Storage_Pools_Subpools,
3489 RE_I_AD => System_Stream_Attributes,
3490 RE_I_AS => System_Stream_Attributes,
3491 RE_I_B => System_Stream_Attributes,
3492 RE_I_C => System_Stream_Attributes,
3493 RE_I_F => System_Stream_Attributes,
3494 RE_I_I => System_Stream_Attributes,
3495 RE_I_I24 => System_Stream_Attributes,
3496 RE_I_LF => System_Stream_Attributes,
3497 RE_I_LI => System_Stream_Attributes,
3498 RE_I_LLF => System_Stream_Attributes,
3499 RE_I_LLI => System_Stream_Attributes,
3500 RE_I_LLLI => System_Stream_Attributes,
3501 RE_I_LLLU => System_Stream_Attributes,
3502 RE_I_LLU => System_Stream_Attributes,
3503 RE_I_LU => System_Stream_Attributes,
3504 RE_I_SF => System_Stream_Attributes,
3505 RE_I_SI => System_Stream_Attributes,
3506 RE_I_SSI => System_Stream_Attributes,
3507 RE_I_SSU => System_Stream_Attributes,
3508 RE_I_SU => System_Stream_Attributes,
3509 RE_I_U => System_Stream_Attributes,
3510 RE_I_U24 => System_Stream_Attributes,
3511 RE_I_WC => System_Stream_Attributes,
3512 RE_I_WWC => System_Stream_Attributes,
3514 RE_W_AD => System_Stream_Attributes,
3515 RE_W_AS => System_Stream_Attributes,
3516 RE_W_B => System_Stream_Attributes,
3517 RE_W_C => System_Stream_Attributes,
3518 RE_W_F => System_Stream_Attributes,
3519 RE_W_I => System_Stream_Attributes,
3520 RE_W_I24 => System_Stream_Attributes,
3521 RE_W_LF => System_Stream_Attributes,
3522 RE_W_LI => System_Stream_Attributes,
3523 RE_W_LLF => System_Stream_Attributes,
3524 RE_W_LLI => System_Stream_Attributes,
3525 RE_W_LLLI => System_Stream_Attributes,
3526 RE_W_LLLU => System_Stream_Attributes,
3527 RE_W_LLU => System_Stream_Attributes,
3528 RE_W_LU => System_Stream_Attributes,
3529 RE_W_SF => System_Stream_Attributes,
3530 RE_W_SI => System_Stream_Attributes,
3531 RE_W_SSI => System_Stream_Attributes,
3532 RE_W_SSU => System_Stream_Attributes,
3533 RE_W_SU => System_Stream_Attributes,
3534 RE_W_U => System_Stream_Attributes,
3535 RE_W_U24 => System_Stream_Attributes,
3536 RE_W_WC => System_Stream_Attributes,
3537 RE_W_WWC => System_Stream_Attributes,
3539 RE_Storage_Array_Input => System_Strings_Stream_Ops,
3540 RE_Storage_Array_Input_Blk_IO => System_Strings_Stream_Ops,
3541 RE_Storage_Array_Output => System_Strings_Stream_Ops,
3542 RE_Storage_Array_Output_Blk_IO => System_Strings_Stream_Ops,
3543 RE_Storage_Array_Read => System_Strings_Stream_Ops,
3544 RE_Storage_Array_Read_Blk_IO => System_Strings_Stream_Ops,
3545 RE_Storage_Array_Write => System_Strings_Stream_Ops,
3546 RE_Storage_Array_Write_Blk_IO => System_Strings_Stream_Ops,
3548 RE_Stream_Element_Array_Input => System_Strings_Stream_Ops,
3549 RE_Stream_Element_Array_Input_Blk_IO => System_Strings_Stream_Ops,
3550 RE_Stream_Element_Array_Output => System_Strings_Stream_Ops,
3551 RE_Stream_Element_Array_Output_Blk_IO => System_Strings_Stream_Ops,
3552 RE_Stream_Element_Array_Read => System_Strings_Stream_Ops,
3553 RE_Stream_Element_Array_Read_Blk_IO => System_Strings_Stream_Ops,
3554 RE_Stream_Element_Array_Write => System_Strings_Stream_Ops,
3555 RE_Stream_Element_Array_Write_Blk_IO => System_Strings_Stream_Ops,
3557 RE_String_Input => System_Strings_Stream_Ops,
3558 RE_String_Input_Blk_IO => System_Strings_Stream_Ops,
3559 RE_String_Input_Tag => System_Strings_Stream_Ops,
3560 RE_String_Output => System_Strings_Stream_Ops,
3561 RE_String_Output_Blk_IO => System_Strings_Stream_Ops,
3562 RE_String_Read => System_Strings_Stream_Ops,
3563 RE_String_Read_Blk_IO => System_Strings_Stream_Ops,
3564 RE_String_Write => System_Strings_Stream_Ops,
3565 RE_String_Write_Blk_IO => System_Strings_Stream_Ops,
3567 RE_Wide_String_Input => System_Strings_Stream_Ops,
3568 RE_Wide_String_Input_Blk_IO => System_Strings_Stream_Ops,
3569 RE_Wide_String_Output => System_Strings_Stream_Ops,
3570 RE_Wide_String_Output_Blk_IO => System_Strings_Stream_Ops,
3571 RE_Wide_String_Read => System_Strings_Stream_Ops,
3572 RE_Wide_String_Read_Blk_IO => System_Strings_Stream_Ops,
3573 RE_Wide_String_Write => System_Strings_Stream_Ops,
3575 RE_Wide_String_Write_Blk_IO => System_Strings_Stream_Ops,
3576 RE_Wide_Wide_String_Input => System_Strings_Stream_Ops,
3577 RE_Wide_Wide_String_Input_Blk_IO => System_Strings_Stream_Ops,
3578 RE_Wide_Wide_String_Output => System_Strings_Stream_Ops,
3579 RE_Wide_Wide_String_Output_Blk_IO => System_Strings_Stream_Ops,
3580 RE_Wide_Wide_String_Read => System_Strings_Stream_Ops,
3581 RE_Wide_Wide_String_Read_Blk_IO => System_Strings_Stream_Ops,
3582 RE_Wide_Wide_String_Write => System_Strings_Stream_Ops,
3583 RE_Wide_Wide_String_Write_Blk_IO => System_Strings_Stream_Ops,
3585 RE_Task_Info_Type => System_Task_Info,
3586 RE_Unspecified_Task_Info => System_Task_Info,
3588 RE_Task_Procedure_Access => System_Tasking,
3589 RO_ST_Number_Of_Entries => System_Tasking,
3591 RO_ST_Task_Id => System_Tasking,
3592 RO_ST_Null_Task => System_Tasking,
3594 RE_Call_Modes => System_Tasking,
3595 RE_Simple_Call => System_Tasking,
3596 RE_Conditional_Call => System_Tasking,
3597 RE_Asynchronous_Call => System_Tasking,
3599 RE_Ada_Task_Control_Block => System_Tasking,
3601 RE_Task_List => System_Tasking,
3603 RE_Accept_List => System_Tasking,
3604 RE_No_Rendezvous => System_Tasking,
3605 RE_Null_Task_Entry => System_Tasking,
3606 RE_Select_Index => System_Tasking,
3607 RE_Else_Mode => System_Tasking,
3608 RE_Simple_Mode => System_Tasking,
3609 RE_Terminate_Mode => System_Tasking,
3610 RE_Delay_Mode => System_Tasking,
3611 RE_Task_Entry_Index => System_Tasking,
3612 RE_Self => System_Tasking,
3614 RE_Unspecified_Priority => System_Tasking,
3616 RE_Activation_Chain => System_Tasking,
3617 RE_Activation_Chain_Access => System_Tasking,
3618 RE_Storage_Size => System_Tasking,
3620 RE_Unspecified_CPU => System_Tasking,
3622 RE_Dispatching_Domain_Access => System_Tasking,
3624 RE_Abort_Defer => System_Soft_Links,
3625 RE_Abort_Undefer => System_Soft_Links,
3626 RE_Complete_Master => System_Soft_Links,
3627 RE_Current_Master => System_Soft_Links,
3628 RE_Dummy_Communication_Block => System_Soft_Links,
3629 RE_Enter_Master => System_Soft_Links,
3630 RE_Get_Current_Excep => System_Soft_Links,
3631 RE_Get_GNAT_Exception => System_Soft_Links,
3632 RE_Save_Library_Occurrence => System_Soft_Links,
3634 RE_Bits_1 => System_Unsigned_Types,
3635 RE_Bits_2 => System_Unsigned_Types,
3636 RE_Bits_4 => System_Unsigned_Types,
3637 RE_Long_Long_Unsigned => System_Unsigned_Types,
3638 RE_Long_Long_Long_Unsigned => System_Unsigned_Types,
3639 RE_Packed_Byte => System_Unsigned_Types,
3640 RE_Packed_Bytes1 => System_Unsigned_Types,
3641 RE_Packed_Bytes2 => System_Unsigned_Types,
3642 RE_Packed_Bytes4 => System_Unsigned_Types,
3643 RE_Rev_Packed_Bytes1 => System_Unsigned_Types,
3644 RE_Rev_Packed_Bytes2 => System_Unsigned_Types,
3645 RE_Rev_Packed_Bytes4 => System_Unsigned_Types,
3646 RE_Unsigned => System_Unsigned_Types,
3648 RE_Value_Boolean => System_Val_Bool,
3650 RE_Value_Character => System_Val_Char,
3652 RE_Value_Decimal32 => System_Val_Decimal_32,
3654 RE_Value_Decimal64 => System_Val_Decimal_64,
3656 RE_Value_Decimal128 => System_Val_Decimal_128,
3658 RE_Value_Enumeration_8 => System_Val_Enum_8,
3660 RE_Value_Enumeration_16 => System_Val_Enum_16,
3662 RE_Value_Enumeration_32 => System_Val_Enum_32,
3664 RE_Valid_Value_Enumeration_8 => System_Val_Enum_8,
3666 RE_Valid_Value_Enumeration_16 => System_Val_Enum_16,
3668 RE_Valid_Value_Enumeration_32 => System_Val_Enum_32,
3670 RE_Value_Fixed32 => System_Val_Fixed_32,
3672 RE_Value_Fixed64 => System_Val_Fixed_64,
3674 RE_Value_Fixed128 => System_Val_Fixed_128,
3676 RE_Value_Float => System_Val_Flt,
3678 RE_Value_Integer => System_Val_Int,
3680 RE_Value_Long_Float => System_Val_LFlt,
3682 RE_Value_Long_Long_Float => System_Val_LLF,
3684 RE_Value_Long_Long_Integer => System_Val_LLI,
3686 RE_Value_Long_Long_Long_Integer => System_Val_LLLI,
3688 RE_Value_Long_Long_Unsigned => System_Val_LLU,
3690 RE_Value_Long_Long_Long_Unsigned => System_Val_LLLU,
3692 RE_Value_Unsigned => System_Val_Uns,
3694 RE_Value_Wide_Character => System_Val_WChar,
3695 RE_Value_Wide_Wide_Character => System_Val_WChar,
3697 RE_Version_String => System_Version_Control,
3698 RE_Get_Version_String => System_Version_Control,
3700 RE_String_To_Wide_String => System_WCh_StW,
3701 RE_String_To_Wide_Wide_String => System_WCh_StW,
3703 RE_Wide_String_To_String => System_WCh_WtS,
3704 RE_Wide_Wide_String_To_String => System_WCh_WtS,
3706 RE_Wide_Wide_Width_Character => System_WWd_Char,
3707 RE_Wide_Width_Character => System_WWd_Char,
3709 RE_Wide_Wide_Width_Enumeration_8 => System_WWd_Enum,
3710 RE_Wide_Wide_Width_Enumeration_16 => System_WWd_Enum,
3711 RE_Wide_Wide_Width_Enumeration_32 => System_WWd_Enum,
3713 RE_Wide_Width_Enumeration_8 => System_WWd_Enum,
3714 RE_Wide_Width_Enumeration_16 => System_WWd_Enum,
3715 RE_Wide_Width_Enumeration_32 => System_WWd_Enum,
3717 RE_Wide_Wide_Width_Wide_Character => System_WWd_Wchar,
3718 RE_Wide_Wide_Width_Wide_Wide_Char => System_WWd_Wchar,
3720 RE_Wide_Width_Wide_Character => System_WWd_Wchar,
3721 RE_Wide_Width_Wide_Wide_Character => System_WWd_Wchar,
3723 RE_Width_Boolean => System_Wid_Bool,
3725 RE_Width_Character => System_Wid_Char,
3727 RE_Width_Enumeration_8 => System_Wid_Enum,
3728 RE_Width_Enumeration_16 => System_Wid_Enum,
3729 RE_Width_Enumeration_32 => System_Wid_Enum,
3731 RE_Width_Integer => System_Wid_Int,
3733 RE_Width_Long_Long_Integer => System_Wid_LLI,
3735 RE_Width_Long_Long_Long_Integer => System_Wid_LLLI,
3737 RE_Width_Long_Long_Unsigned => System_Wid_LLU,
3739 RE_Width_Long_Long_Long_Unsigned => System_Wid_LLLU,
3741 RE_Width_Unsigned => System_Wid_Uns,
3743 RE_Width_Wide_Character => System_Wid_WChar,
3744 RE_Width_Wide_Wide_Character => System_Wid_WChar,
3746 RE_Dispatching_Domain =>
3747 System_Multiprocessors_Dispatching_Domains,
3749 RE_Protected_Entry_Body_Array =>
3750 System_Tasking_Protected_Objects_Entries,
3751 RE_Protected_Entry_Queue_Max_Array =>
3752 System_Tasking_Protected_Objects_Entries,
3753 RE_Protection_Entries =>
3754 System_Tasking_Protected_Objects_Entries,
3755 RE_Protection_Entries_Access =>
3756 System_Tasking_Protected_Objects_Entries,
3757 RE_Initialize_Protection_Entries =>
3758 System_Tasking_Protected_Objects_Entries,
3759 RE_Lock_Entries =>
3760 System_Tasking_Protected_Objects_Entries,
3761 RE_Unlock_Entries =>
3762 System_Tasking_Protected_Objects_Entries,
3763 RO_PE_Get_Ceiling =>
3764 System_Tasking_Protected_Objects_Entries,
3765 RO_PE_Number_Of_Entries =>
3766 System_Tasking_Protected_Objects_Entries,
3767 RO_PE_Set_Ceiling =>
3768 System_Tasking_Protected_Objects_Entries,
3770 RE_Communication_Block =>
3771 System_Tasking_Protected_Objects_Operations,
3772 RE_Protected_Entry_Call =>
3773 System_Tasking_Protected_Objects_Operations,
3774 RE_Service_Entries =>
3775 System_Tasking_Protected_Objects_Operations,
3776 RE_Cancel_Protected_Entry_Call =>
3777 System_Tasking_Protected_Objects_Operations,
3778 RE_Enqueued =>
3779 System_Tasking_Protected_Objects_Operations,
3780 RE_Cancelled =>
3781 System_Tasking_Protected_Objects_Operations,
3782 RE_Complete_Entry_Body =>
3783 System_Tasking_Protected_Objects_Operations,
3784 RE_Exceptional_Complete_Entry_Body =>
3785 System_Tasking_Protected_Objects_Operations,
3786 RE_Requeue_Protected_Entry =>
3787 System_Tasking_Protected_Objects_Operations,
3788 RE_Requeue_Task_To_Protected_Entry =>
3789 System_Tasking_Protected_Objects_Operations,
3790 RE_Protected_Count =>
3791 System_Tasking_Protected_Objects_Operations,
3792 RE_Protected_Entry_Caller =>
3793 System_Tasking_Protected_Objects_Operations,
3794 RE_Timed_Protected_Entry_Call =>
3795 System_Tasking_Protected_Objects_Operations,
3797 RE_Protection_Entry =>
3798 System_Tasking_Protected_Objects_Single_Entry,
3799 RE_Initialize_Protection_Entry =>
3800 System_Tasking_Protected_Objects_Single_Entry,
3801 RE_Lock_Entry =>
3802 System_Tasking_Protected_Objects_Single_Entry,
3803 RE_Unlock_Entry =>
3804 System_Tasking_Protected_Objects_Single_Entry,
3805 RE_Protected_Single_Entry_Call =>
3806 System_Tasking_Protected_Objects_Single_Entry,
3807 RE_Service_Entry =>
3808 System_Tasking_Protected_Objects_Single_Entry,
3809 RE_Exceptional_Complete_Single_Entry_Body =>
3810 System_Tasking_Protected_Objects_Single_Entry,
3811 RE_Protected_Count_Entry =>
3812 System_Tasking_Protected_Objects_Single_Entry,
3813 RE_Protected_Single_Entry_Caller =>
3814 System_Tasking_Protected_Objects_Single_Entry,
3816 RE_Protected_Entry_Index => System_Tasking_Protected_Objects,
3817 RE_Entry_Body => System_Tasking_Protected_Objects,
3818 RE_Protection => System_Tasking_Protected_Objects,
3819 RE_Initialize_Protection => System_Tasking_Protected_Objects,
3820 RE_Finalize_Protection => System_Tasking_Protected_Objects,
3821 RE_Lock => System_Tasking_Protected_Objects,
3822 RE_Lock_Read_Only => System_Tasking_Protected_Objects,
3823 RE_Get_Ceiling => System_Tasking_Protected_Objects,
3824 RE_Set_Ceiling => System_Tasking_Protected_Objects,
3825 RE_Unlock => System_Tasking_Protected_Objects,
3827 RE_Delay_Block => System_Tasking_Async_Delays,
3828 RE_Timed_Out => System_Tasking_Async_Delays,
3829 RE_Cancel_Async_Delay => System_Tasking_Async_Delays,
3830 RE_Enqueue_Duration => System_Tasking_Async_Delays,
3832 RE_Enqueue_Calendar =>
3833 System_Tasking_Async_Delays_Enqueue_Calendar,
3834 RE_Enqueue_RT =>
3835 System_Tasking_Async_Delays_Enqueue_RT,
3837 RE_Accept_Call => System_Tasking_Rendezvous,
3838 RE_Accept_Trivial => System_Tasking_Rendezvous,
3839 RE_Callable => System_Tasking_Rendezvous,
3840 RE_Call_Simple => System_Tasking_Rendezvous,
3841 RE_Cancel_Task_Entry_Call => System_Tasking_Rendezvous,
3842 RE_Requeue_Task_Entry => System_Tasking_Rendezvous,
3843 RE_Requeue_Protected_To_Task_Entry => System_Tasking_Rendezvous,
3844 RE_Complete_Rendezvous => System_Tasking_Rendezvous,
3845 RE_Task_Count => System_Tasking_Rendezvous,
3846 RE_Exceptional_Complete_Rendezvous => System_Tasking_Rendezvous,
3847 RE_Selective_Wait => System_Tasking_Rendezvous,
3848 RE_Task_Entry_Call => System_Tasking_Rendezvous,
3849 RE_Task_Entry_Caller => System_Tasking_Rendezvous,
3850 RE_Timed_Task_Entry_Call => System_Tasking_Rendezvous,
3851 RE_Timed_Selective_Wait => System_Tasking_Rendezvous,
3853 RE_Activate_Restricted_Tasks => System_Tasking_Restricted_Stages,
3854 RE_Complete_Restricted_Activation => System_Tasking_Restricted_Stages,
3855 RE_Create_Restricted_Task => System_Tasking_Restricted_Stages,
3856 RE_Create_Restricted_Task_Sequential => System_Tasking_Restricted_Stages,
3857 RE_Complete_Restricted_Task => System_Tasking_Restricted_Stages,
3858 RE_Restricted_Terminated => System_Tasking_Restricted_Stages,
3860 RE_Abort_Tasks => System_Tasking_Stages,
3861 RE_Activate_Tasks => System_Tasking_Stages,
3862 RE_Complete_Activation => System_Tasking_Stages,
3863 RE_Create_Task => System_Tasking_Stages,
3864 RE_Complete_Task => System_Tasking_Stages,
3865 RE_Free_Task => System_Tasking_Stages,
3866 RE_Expunge_Unactivated_Tasks => System_Tasking_Stages,
3867 RE_Move_Activation_Chain => System_Tasking_Stages,
3868 RE_Terminated => System_Tasking_Stages);
3870 --------------------------------
3871 -- Configurable Run-Time Mode --
3872 --------------------------------
3874 -- Part of the job of Rtsfind is to enforce run-time restrictions in
3875 -- configurable run-time mode. This is done by monitoring implicit access
3876 -- to the run time library requested by calls to the RTE function. A call
3877 -- may be invalid in configurable run-time mode for either of the
3878 -- following two reasons:
3880 -- 1. File in which entity lives is not present in run-time library
3881 -- 2. File is present, but entity is not defined in the file
3883 -- In normal mode, either or these two situations is a fatal error
3884 -- that indicates that the run-time library is incorrectly configured,
3885 -- and a fatal error message is issued to signal this error.
3887 -- In configurable run-time mode, either of these two situations indicates
3888 -- simply that the corresponding operation is not available in the current
3889 -- run-time that is use. This is not a configuration error, but rather a
3890 -- natural result of a limited run-time. This situation is signalled by
3891 -- raising the exception RE_Not_Available. The caller must respond to
3892 -- this exception by posting an appropriate error message.
3894 ----------------------
3895 -- No_Run_Time_Mode --
3896 ----------------------
3898 -- For backwards compatibility with previous versions of GNAT, the
3899 -- compiler recognizes the pragma No_Run_Time. This provides a special
3900 -- version of configurable run-time mode that operates with the standard
3901 -- run-time library, but allows only a subset of entities to be
3902 -- accessed. If any other entity is accessed, then it is treated
3903 -- as a configurable run-time violation, and the exception
3904 -- RE_Not_Available is raised.
3906 -- The following array defines the set of units that contain entities
3907 -- that can be referenced in No_Run_Time mode. For each of these units,
3908 -- all entities defined in the unit can be used in this mode.
3910 OK_No_Run_Time_Unit : constant array (RTU_Id) of Boolean :=
3911 (Ada_Exceptions => True,
3912 Ada_Tags => True,
3913 Interfaces => True,
3914 System => True,
3915 System_Parameters => True,
3916 System_Fat_Flt => True,
3917 System_Fat_LFlt => True,
3918 System_Fat_LLF => True,
3919 System_Fat_SFlt => True,
3920 System_Machine_Code => True,
3921 System_Return_Stack => True,
3922 System_Secondary_Stack => True,
3923 System_Storage_Elements => True,
3924 System_Task_Info => True,
3925 System_Unsigned_Types => True,
3926 others => False);
3928 Library_Task_Level : constant Uint := Uint_3;
3929 -- Corresponds to System.Tasking.Library_Task_Level
3931 -----------------
3932 -- Subprograms --
3933 -----------------
3935 RE_Not_Available : exception;
3936 -- Raised by RTE if the requested entity is not available. This can
3937 -- occur either because the file in which the entity should be found
3938 -- does not exist, or because the entity is not present in the file.
3940 procedure Check_Text_IO_Special_Unit (Nam : Node_Id);
3941 -- In Ada 83, and hence for compatibility in later versions of Ada, package
3942 -- Text_IO has generic subpackages (e.g. Integer_IO). They really should be
3943 -- child packages, and in GNAT, they *are* child packages. To maintain the
3944 -- required compatibility, this routine is called for package renamings and
3945 -- generic instantiations, with the simple name of the referenced package.
3946 -- If Text_IO has been with'ed and if the simple name of Nam matches
3947 -- one of the subpackages of Text_IO, then this subpackage is with'ed
3948 -- automatically. The important result of this approach is that Text_IO
3949 -- does not drag in all the code for the subpackages unless they are used.
3950 -- Our test is a little crude, and could drag in stuff when it is not
3951 -- necessary, but that is acceptable. Wide_[Wide_]Text_IO is handled in
3952 -- a similar manner.
3954 procedure Initialize;
3955 -- Procedure to initialize data structures used by RTE. Called at the
3956 -- start of processing a new main source file. Must be called after
3957 -- Initialize_Snames (since names it enters into name table must come
3958 -- after names entered by Snames).
3960 function Is_RTE (Ent : Entity_Id; E : RE_Id) return Boolean;
3961 -- This function determines if the given entity corresponds to the entity
3962 -- referenced by RE_Id. It is similar in effect to (Ent = RTE (E)) except
3963 -- that the latter would unconditionally load the unit containing E. For
3964 -- this call, if the unit is not loaded, then a result of False is returned
3965 -- immediately, since obviously Ent cannot be the entity in question if the
3966 -- corresponding unit has not been loaded.
3968 function Is_RTU (Ent : Entity_Id; U : RTU_Id) return Boolean;
3969 pragma Inline (Is_RTU);
3970 -- This function determines if the given entity corresponds to the entity
3971 -- for the unit referenced by U. If this unit has not been loaded, the
3972 -- answer will always be False. If the unit has been loaded, then the
3973 -- entity id values are compared and True is returned if Ent is the
3974 -- entity for this unit.
3976 function Is_Text_IO_Special_Unit (Nam : Node_Id) return Boolean;
3977 -- Returns True if the given Nam is an Expanded Name, whose Prefix is Ada,
3978 -- and whose selector is either Text_IO.xxx or Wide_Text_IO.xxx or
3979 -- Wide_Wide_Text_IO.xxx, where xxx is one of the subpackages of Text_IO
3980 -- that is specially handled as described for Check_Text_IO_Special_Unit.
3982 function Is_Text_IO_Special_Package (E : Entity_Id) return Boolean;
3983 -- Return True iff E is one of the special generic Text_IO packages, which
3984 -- Ada RM defines to be nested in Ada.Text_IO, but GNAT defines as its
3985 -- private children. This is similar to Is_Text_IO_Special_Unit, but is
3986 -- meant to be used on a fully resolved AST, especially in the backends.
3987 -- This is used by SPARK.
3989 function RTE (E : RE_Id) return Entity_Id;
3990 -- Given the entity defined in the above tables, as identified by the
3991 -- corresponding value in the RE_Id enumeration type, returns the Id of the
3992 -- corresponding entity, first loading in (parsing, analyzing and
3993 -- expanding) its spec if the unit has not already been loaded. For
3994 -- efficiency reasons, this routine restricts the search to the package
3995 -- entity chain.
3997 -- Note: In the case of a package, RTE can return either an entity that is
3998 -- declared at the top level of the package, or the package entity itself.
3999 -- If an entity within the package has the same simple name as the package,
4000 -- then the entity within the package is returned.
4002 -- If RTE returns, the returned value is the required entity
4004 -- If the entity is not available, then an error message is given. The
4005 -- form of the message depends on whether we are in configurable run time
4006 -- mode or not. In configurable run time mode, a missing entity is not
4007 -- that surprising and merely says that the particular construct is not
4008 -- supported by the run-time in use. If we are not in configurable run
4009 -- time mode, a missing entity is some kind of run-time configuration
4010 -- error. In either case, the result of the call is to raise the exception
4011 -- RE_Not_Available, which should terminate the expansion of the current
4012 -- construct.
4014 function RTE_Available (E : RE_Id) return Boolean;
4015 -- Returns true if a call to RTE will succeed without raising an exception
4016 -- and without generating an error message, i.e. if the call will obtain
4017 -- the desired entity without any problems.
4019 -- If we call this and it returns True, we should generate a reference to
4020 -- E (usually a call). In other words, for a subprogram E, the compiler
4021 -- should not call RTE_Available (E) until it has decided it wants to
4022 -- generate a call to E. Otherwise we can get spurious dependencies and
4023 -- elaboration orders.
4025 -- if RTE_Available (E) -- WRONG!
4026 -- and then <some condition>
4027 -- then
4028 -- generate call to E;
4030 -- Should be:
4032 -- if <some condition>
4033 -- and then RTE_Available (E) -- Correct
4034 -- then
4035 -- generate call to E;
4037 function RTE_Record_Component (E : RE_Id) return Entity_Id;
4038 -- Given the entity defined in the above tables, as identified by the
4039 -- corresponding value in the RE_Id enumeration type, returns the Id of
4040 -- the corresponding entity, first loading in (parsing, analyzing and
4041 -- expanding) its spec if the unit has not already been loaded. For
4042 -- efficiency reasons, this routine restricts the search of E to fields
4043 -- of record type declarations found in the package entity chain.
4045 -- Note: In the case of a package, RTE can return either an entity that is
4046 -- declared at the top level of the package, or the package entity itself.
4047 -- If an entity within the package has the same simple name as the package,
4048 -- then the entity within the package is returned.
4050 -- If RTE returns, the returned value is the required entity
4052 -- If the entity is not available, then an error message is given. The
4053 -- form of the message depends on whether we are in configurable run time
4054 -- mode or not. In configurable run time mode, a missing entity is not
4055 -- that surprising and merely says that the particular construct is not
4056 -- supported by the run-time in use. If we are not in configurable run
4057 -- time mode, a missing entity is some kind of run-time configuration
4058 -- error. In either case, the result of the call is to raise the exception
4059 -- RE_Not_Available, which should terminate the expansion of the current
4060 -- construct.
4062 function RTE_Record_Component_Available (E : RE_Id) return Boolean;
4063 -- Returns true if a call to RTE_Record_Component will succeed without
4064 -- raising an exception and without generating an error message, i.e.
4065 -- if the call will obtain the desired entity without any problems.
4067 function RTU_Entity (U : RTU_Id) return Entity_Id;
4068 pragma Inline (RTU_Entity);
4069 -- This function returns the entity for the unit referenced by U. If
4070 -- this unit has not been loaded, it returns Empty.
4072 function RTU_Loaded (U : RTU_Id) return Boolean;
4073 pragma Inline (RTU_Loaded);
4074 -- Returns true if indicated unit has already been successfully loaded.
4075 -- If the unit has not been loaded, returns False. Note that this does
4076 -- not mean that an attempt to load it subsequently would fail.
4078 procedure Set_RTU_Loaded (N : Node_Id);
4079 -- Register the predefined unit N as already loaded
4081 procedure SPARK_Implicit_Load (E : RE_Id);
4082 -- Force loading of the unit containing the entity E; only needed in
4083 -- GNATprove mode when processing code that implicitly references a
4084 -- given entity.
4086 end Rtsfind;