Add assember CFI directives to millicode division and remainder routines.
[official-gcc.git] / gcc / ada / rtsfind.ads
blob881f723dfa9689393378304a383954c4ccf56fd2
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-2023, 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_Runtime_Api,
183 CUDA_Vector_Types,
185 -- Interfaces
187 Interfaces,
189 -- Children of Interfaces
191 Interfaces_C,
193 -- Children of Interfaces.C
195 Interfaces_C_Strings,
197 -- Package System
199 System,
201 -- Children of System
203 System_Address_Image,
204 System_Address_To_Access_Conversions,
205 System_Arith_64,
206 System_Arith_128,
207 System_Assertions,
208 System_Atomic_Operations,
209 System_Atomic_Primitives,
210 System_Aux_DEC,
211 System_Bignums,
212 System_Bitfields,
213 System_Bit_Ops,
214 System_Boolean_Array_Operations,
215 System_Byte_Swapping,
216 System_Checked_Pools,
217 System_Compare_Array_Signed_8,
218 System_Compare_Array_Signed_16,
219 System_Compare_Array_Signed_32,
220 System_Compare_Array_Signed_64,
221 System_Compare_Array_Signed_128,
222 System_Compare_Array_Unsigned_8,
223 System_Compare_Array_Unsigned_16,
224 System_Compare_Array_Unsigned_32,
225 System_Compare_Array_Unsigned_64,
226 System_Compare_Array_Unsigned_128,
227 System_Concat_2,
228 System_Concat_3,
229 System_Concat_4,
230 System_Concat_5,
231 System_Concat_6,
232 System_Concat_7,
233 System_Concat_8,
234 System_Concat_9,
235 System_Dim,
236 System_DSA_Services,
237 System_DSA_Types,
238 System_Elaboration_Allocators,
239 System_Exception_Table,
240 System_Exceptions_Debug,
241 System_Exn_Int,
242 System_Exn_Flt,
243 System_Exn_LFlt,
244 System_Exn_LLF,
245 System_Exn_LLI,
246 System_Exn_LLLI,
247 System_Exp_Int,
248 System_Exp_LLI,
249 System_Exp_LLLI,
250 System_Exp_LLU,
251 System_Exp_LLLU,
252 System_Exp_Mod,
253 System_Exp_Uns,
254 System_Fat_Flt,
255 System_Fat_LFlt,
256 System_Fat_LLF,
257 System_Fat_SFlt,
258 System_Finalization_Masters,
259 System_Finalization_Root,
260 System_Fore_Decimal_32,
261 System_Fore_Decimal_64,
262 System_Fore_Decimal_128,
263 System_Fore_Fixed_32,
264 System_Fore_Fixed_64,
265 System_Fore_Fixed_128,
266 System_Fore_Real,
267 System_Img_Bool,
268 System_Img_Char,
269 System_Img_Decimal_32,
270 System_Img_Decimal_64,
271 System_Img_Decimal_128,
272 System_Img_Enum_8,
273 System_Img_Enum_16,
274 System_Img_Enum_32,
275 System_Img_Fixed_32,
276 System_Img_Fixed_64,
277 System_Img_Fixed_128,
278 System_Img_Flt,
279 System_Img_Int,
280 System_Img_LFlt,
281 System_Img_LLF,
282 System_Img_LLI,
283 System_Img_LLLI,
284 System_Img_LLU,
285 System_Img_LLLU,
286 System_Img_Uns,
287 System_Img_WChar,
288 System_Interrupts,
289 System_Long_Long_Float_Expon,
290 System_Machine_Code,
291 System_Mantissa,
292 System_Memory,
293 System_Multiprocessors,
294 System_Pack_03,
295 System_Pack_05,
296 System_Pack_06,
297 System_Pack_07,
298 System_Pack_09,
299 System_Pack_10,
300 System_Pack_11,
301 System_Pack_12,
302 System_Pack_13,
303 System_Pack_14,
304 System_Pack_15,
305 System_Pack_17,
306 System_Pack_18,
307 System_Pack_19,
308 System_Pack_20,
309 System_Pack_21,
310 System_Pack_22,
311 System_Pack_23,
312 System_Pack_24,
313 System_Pack_25,
314 System_Pack_26,
315 System_Pack_27,
316 System_Pack_28,
317 System_Pack_29,
318 System_Pack_30,
319 System_Pack_31,
320 System_Pack_33,
321 System_Pack_34,
322 System_Pack_35,
323 System_Pack_36,
324 System_Pack_37,
325 System_Pack_38,
326 System_Pack_39,
327 System_Pack_40,
328 System_Pack_41,
329 System_Pack_42,
330 System_Pack_43,
331 System_Pack_44,
332 System_Pack_45,
333 System_Pack_46,
334 System_Pack_47,
335 System_Pack_48,
336 System_Pack_49,
337 System_Pack_50,
338 System_Pack_51,
339 System_Pack_52,
340 System_Pack_53,
341 System_Pack_54,
342 System_Pack_55,
343 System_Pack_56,
344 System_Pack_57,
345 System_Pack_58,
346 System_Pack_59,
347 System_Pack_60,
348 System_Pack_61,
349 System_Pack_62,
350 System_Pack_63,
351 System_Pack_65,
352 System_Pack_66,
353 System_Pack_67,
354 System_Pack_68,
355 System_Pack_69,
356 System_Pack_70,
357 System_Pack_71,
358 System_Pack_72,
359 System_Pack_73,
360 System_Pack_74,
361 System_Pack_75,
362 System_Pack_76,
363 System_Pack_77,
364 System_Pack_78,
365 System_Pack_79,
366 System_Pack_80,
367 System_Pack_81,
368 System_Pack_82,
369 System_Pack_83,
370 System_Pack_84,
371 System_Pack_85,
372 System_Pack_86,
373 System_Pack_87,
374 System_Pack_88,
375 System_Pack_89,
376 System_Pack_90,
377 System_Pack_91,
378 System_Pack_92,
379 System_Pack_93,
380 System_Pack_94,
381 System_Pack_95,
382 System_Pack_96,
383 System_Pack_97,
384 System_Pack_98,
385 System_Pack_99,
386 System_Pack_100,
387 System_Pack_101,
388 System_Pack_102,
389 System_Pack_103,
390 System_Pack_104,
391 System_Pack_105,
392 System_Pack_106,
393 System_Pack_107,
394 System_Pack_108,
395 System_Pack_109,
396 System_Pack_110,
397 System_Pack_111,
398 System_Pack_112,
399 System_Pack_113,
400 System_Pack_114,
401 System_Pack_115,
402 System_Pack_116,
403 System_Pack_117,
404 System_Pack_118,
405 System_Pack_119,
406 System_Pack_120,
407 System_Pack_121,
408 System_Pack_122,
409 System_Pack_123,
410 System_Pack_124,
411 System_Pack_125,
412 System_Pack_126,
413 System_Pack_127,
414 System_Parameters,
415 System_Partition_Interface,
416 System_Pool_Global,
417 System_Pool_Size,
418 System_Put_Images,
419 System_Put_Task_Images,
420 System_Relative_Delays,
421 System_Return_Stack,
422 System_RPC,
423 System_Scalar_Values,
424 System_Secondary_Stack,
425 System_Shared_Storage,
426 System_Soft_Links,
427 System_Standard_Library,
428 System_Storage_Elements,
429 System_Storage_Pools,
430 System_Stream_Attributes,
431 System_Task_Info,
432 System_Tasking,
433 System_Unsigned_Types,
434 System_Val_Bool,
435 System_Val_Char,
436 System_Val_Decimal_32,
437 System_Val_Decimal_64,
438 System_Val_Decimal_128,
439 System_Val_Enum_8,
440 System_Val_Enum_16,
441 System_Val_Enum_32,
442 System_Val_Fixed_32,
443 System_Val_Fixed_64,
444 System_Val_Fixed_128,
445 System_Val_Flt,
446 System_Val_Int,
447 System_Val_LFlt,
448 System_Val_LLF,
449 System_Val_LLI,
450 System_Val_LLLI,
451 System_Val_LLU,
452 System_Val_LLLU,
453 System_Val_Uns,
454 System_Val_WChar,
455 System_Version_Control,
456 System_WCh_StW,
457 System_WCh_WtS,
458 System_Wid_Bool,
459 System_Wid_Char,
460 System_Wid_Enum,
461 System_Wid_Int,
462 System_Wid_LLI,
463 System_Wid_LLLI,
464 System_Wid_LLU,
465 System_Wid_LLLU,
466 System_Wid_Uns,
467 System_Wid_WChar,
468 System_WWd_Char,
469 System_WWd_Enum,
470 System_WWd_Wchar,
472 -- Children of System.Atomic_Operations
474 System_Atomic_Operations_Test_And_Set,
476 -- Children of System.Dim
478 System_Dim_Float_IO,
479 System_Dim_Integer_IO,
481 -- Children of System.Multiprocessors
483 System_Multiprocessors_Dispatching_Domains,
485 -- Children of System.Storage_Pools
487 System_Storage_Pools_Subpools,
489 -- Children of System.Strings
491 System_Strings_Stream_Ops,
493 -- Children of System.Tasking
495 System_Tasking_Async_Delays,
496 System_Tasking_Async_Delays_Enqueue_Calendar,
497 System_Tasking_Async_Delays_Enqueue_RT,
498 System_Tasking_Protected_Objects,
499 System_Tasking_Protected_Objects_Entries,
500 System_Tasking_Protected_Objects_Operations,
501 System_Tasking_Protected_Objects_Single_Entry,
502 System_Tasking_Restricted_Stages,
503 System_Tasking_Rendezvous,
504 System_Tasking_Stages);
506 --------------------------
507 -- Runtime Entity Table --
508 --------------------------
510 -- This is the enumeration type used to define the argument passed to
511 -- the RTE function. The name must exactly match the name of the entity
512 -- involved, and in the case of a package entity, this name must uniquely
513 -- imply the package containing the entity.
515 -- As far as possible, we avoid duplicate names in runtime packages, so
516 -- that the name RE_nnn uniquely identifies the entity nnn. In some cases,
517 -- it is impossible to avoid such duplication because the names come from
518 -- RM defined packages. In such cases, the name is of the form RO_XX_nnn
519 -- where XX is two letters used to differentiate the multiple occurrences
520 -- of the name xx, and nnn is the entity name.
522 -- Note that not all entities in the units contained in the run-time unit
523 -- table are included in the following table, only those that actually
524 -- have to be referenced from generated code.
526 -- Note on RE_Null. This value is used as a null entry where an RE_Id
527 -- value is required syntactically, but no real entry is required or
528 -- needed. Use of this value will cause a fatal error in an RTE call.
530 -- It is normally not allowed to have more than one of these entities with
531 -- the same name in a given package. The one exception is Save_Occurrence,
532 -- where the RM mandates the overloading. In this case, the compiler uses
533 -- the procedure, not the function, and the procedure must come first so
534 -- that the compiler finds it and not the function.
536 type RE_Id is (
538 RE_Null,
540 RO_CA_Clock_Time, -- Ada.Calendar
541 RO_CA_Time, -- Ada.Calendar
543 RO_CA_Delay_For, -- Ada.Calendar.Delays
544 RO_CA_Delay_Until, -- Ada.Calendar.Delays
545 RO_CA_To_Duration, -- Ada.Calendar.Delays
547 RE_Yield, -- Ada_Dispatching
549 RE_Set_Deadline, -- Ada.Dispatching.EDF
551 RE_Exception_Id, -- Ada.Exceptions
552 RE_Exception_Information, -- Ada.Exceptions
553 RE_Exception_Message, -- Ada.Exceptions
554 RE_Exception_Name_Simple, -- Ada.Exceptions
555 RE_Exception_Occurrence, -- Ada.Exceptions
556 RE_Null_Id, -- Ada.Exceptions
557 RE_Null_Occurrence, -- Ada.Exceptions
558 RE_Raise_Exception, -- Ada.Exceptions
559 RE_Raise_Exception_Always, -- Ada.Exceptions
560 RE_Raise_From_Controlled_Operation, -- Ada.Exceptions
561 RE_Reraise_Occurrence, -- Ada.Exceptions
562 RE_Reraise_Occurrence_Always, -- Ada.Exceptions
563 RE_Reraise_Occurrence_No_Defer, -- Ada.Exceptions
564 RE_Save_Occurrence, -- Ada.Exceptions
565 RE_Triggered_By_Abort, -- Ada.Exceptions
567 RE_Interrupt_ID, -- Ada.Interrupts
568 RE_Is_Reserved, -- Ada.Interrupts
569 RE_Is_Attached, -- Ada.Interrupts
570 RE_Current_Handler, -- Ada.Interrupts
571 RE_Attach_Handler, -- Ada.Interrupts
572 RE_Exchange_Handler, -- Ada.Interrupts
573 RE_Detach_Handler, -- Ada.Interrupts
574 RE_Reference, -- Ada.Interrupts
576 RE_Big_Integer, -- Ada.Numerics.Big_Numbers.Big_Integers
577 RO_GH_Big_Integer, -- Ada.Numerics.Big_Numbers.Big_Integers_Ghost
579 RE_Names, -- Ada.Interrupts.Names
581 RE_Clock, -- Ada.Real_Time
582 RE_Clock_Time, -- Ada.Real_Time [used by GNATprove]
583 RE_Time_Span, -- Ada.Real_Time
584 RE_Time_Span_Zero, -- Ada.Real_Time
585 RO_RT_Time, -- Ada.Real_Time
587 RO_RT_Delay_Until, -- Ada.Real_Time.Delays
588 RO_RT_To_Duration, -- Ada.Real_Time.Delays
590 RE_Set_Handler, -- Ada.Real_Time.Timing_Events
591 RE_Timing_Event, -- Ada.Real_Time.Timing_Events
593 RE_Root_Stream_Type, -- Ada.Streams
594 RE_Stream_Element, -- Ada.Streams
595 RE_Stream_Element_Array, -- Ada.Streams
596 RE_Stream_Element_Offset, -- Ada.Streams
598 RO_SU_Super_String, -- Ada.Strings.Superbounded
600 RO_WI_Super_String, -- Ada.Strings.Wide_Superbounded
602 RO_WW_Super_String, -- Ada.Strings.Wide_Wide_Superbounded
604 RE_Unbounded_String, -- Ada.Strings.Unbounded
606 RE_Root_Buffer_Type, -- Ada.Strings.Text_Buffers
607 RE_Put_UTF_8, -- Ada.Strings.Text_Buffers
608 RE_Set_Trim_Leading_Spaces, -- Ada.Strings.Text_Buffers
609 RE_Wide_Wide_Put, -- Ada.Strings.Text_Buffers
611 RE_Buffer_Type, -- Ada.Strings.Text_Buffers.Unbounded
612 RE_Get, -- Ada.Strings.Text_Buffers.Unbounded
613 RE_Wide_Get, -- Ada.Strings.Text_Buffers.Unbounded
614 RE_Wide_Wide_Get, -- Ada.Strings.Text_Buffers.Unbounded
616 RE_Wait_For_Release, -- Ada.Synchronous_Barriers
618 RE_Suspend_Until_True, -- Ada.Synchronous_Task_Control
619 RE_Suspension_Object, -- Ada.Synchronous_Task_Control
621 RE_Access_Level, -- Ada.Tags
622 RE_Alignment, -- Ada.Tags
623 RE_Address_Array, -- Ada.Tags
624 RE_Addr_Ptr, -- Ada.Tags
625 RE_Base_Address, -- Ada.Tags
626 RE_Check_TSD, -- Ada.Tags
627 RE_Cstring_Ptr, -- Ada.Tags
628 RE_CW_Membership, -- Ada.Tags
629 RE_Descendant_Tag, -- Ada.Tags
630 RE_Dispatch_Table, -- Ada.Tags
631 RE_Dispatch_Table_Wrapper, -- Ada.Tags
632 RE_Displace, -- Ada.Tags
633 RE_DT, -- Ada.Tags
634 RE_DT_Offset_To_Top_Offset, -- Ada.Tags
635 RE_DT_Predef_Prims_Offset, -- Ada.Tags
636 RE_DT_Typeinfo_Ptr_Size, -- Ada.Tags
637 RE_External_Tag, -- Ada.Tags
638 RO_TA_External_Tag, -- Ada.Tags
639 RE_Get_Access_Level, -- Ada.Tags
640 RE_Get_Entry_Index, -- Ada.Tags
641 RE_Get_Offset_Index, -- Ada.Tags
642 RE_Get_Prim_Op_Kind, -- Ada.Tags
643 RE_Get_Tagged_Kind, -- Ada.Tags
644 RE_HT_Link, -- Ada.Tags
645 RE_Interfaces_Array, -- Ada.Tags
646 RE_Interfaces_Table, -- Ada.Tags
647 RE_Interface_Data, -- Ada.Tags
648 RE_Interface_Data_Element, -- Ada.Tags
649 RE_Interface_Tag, -- Ada.Tags
650 RE_Is_Abstract, -- Ada.Tags
651 RE_IW_Membership, -- Ada.Tags
652 RE_Max_Predef_Prims, -- Ada.Tags
653 RE_Needs_Finalization, -- Ada.Tags
654 RE_No_Dispatch_Table_Wrapper, -- Ada.Tags
655 RE_No_Tag, -- Ada.Tags
656 RE_NDT_Prims_Ptr, -- Ada.Tags
657 RE_Object_Specific_Data, -- Ada.Tags
658 RE_Offset_To_Top, -- Ada.Tags
659 RE_Offset_To_Top_Ptr, -- Ada.Tags
660 RE_Offset_To_Top_Function_Ptr, -- Ada.Tags
661 RE_OSD_Table, -- Ada.Tags
662 RE_OSD_Num_Prims, -- Ada.Tags
663 RE_POK_Function, -- Ada.Tags
664 RE_POK_Procedure, -- Ada.Tags
665 RE_POK_Protected_Entry, -- Ada.Tags
666 RE_POK_Protected_Function, -- Ada.Tags
667 RE_POK_Protected_Procedure, -- Ada.Tags
668 RE_POK_Task_Entry, -- Ada.Tags
669 RE_POK_Task_Function, -- Ada.Tags
670 RE_POK_Task_Procedure, -- Ada.Tags
671 RE_Predef_Prims, -- Ada.Tags
672 RE_Predef_Prims_Table_Ptr, -- Ada.Tags
673 RE_Prim_Op_Kind, -- Ada.Tags
674 RE_Prim_Ptr, -- Ada.Tags
675 RE_Prims_Ptr, -- Ada.Tags
676 RE_Primary_DT, -- Ada.Tags
677 RE_Signature, -- Ada.Tags
678 RE_SSD, -- Ada.Tags
679 RE_Type_Specific_Data, -- Ada.Tags
680 RE_Register_Interface_Offset, -- Ada.Tags
681 RE_Register_Tag, -- Ada.Tags
682 RE_Transportable, -- Ada.Tags
683 RE_Secondary_DT, -- Ada.Tags
684 RE_Secondary_Tag, -- Ada.Tags
685 RE_Select_Specific_Data, -- Ada.Tags
686 RE_Set_Entry_Index, -- Ada.Tags
687 RE_Set_Dynamic_Offset_To_Top, -- Ada.Tags
688 RE_Set_Prim_Op_Kind, -- Ada.Tags
689 RE_Size_Func, -- Ada.Tags
690 RE_Size_Ptr, -- Ada.Tags
691 RE_Tag, -- Ada.Tags
692 RE_Tag_Error, -- Ada.Tags
693 RE_Tag_Kind, -- Ada.Tags
694 RE_Tag_Ptr, -- Ada.Tags
695 RE_Tag_Table, -- Ada.Tags
696 RE_Tags_Table, -- Ada.Tags
697 RE_Tagged_Kind, -- Ada.Tags
698 RE_Type_Specific_Data_Ptr, -- Ada.Tags
699 RE_TK_Abstract_Limited_Tagged, -- Ada.Tags
700 RE_TK_Abstract_Tagged, -- Ada.Tags
701 RE_TK_Limited_Tagged, -- Ada.Tags
702 RE_TK_Protected, -- Ada.Tags
703 RE_TK_Tagged, -- Ada.Tags
704 RE_TK_Task, -- Ada.Tags
705 RE_Unregister_Tag, -- Ada.Tags
706 RE_Wide_Wide_Expanded_Name, -- Ada.Tags
708 RE_Set_Specific_Handler, -- Ada.Task_Termination
709 RE_Specific_Handler, -- Ada.Task_Termination
711 RE_Abort_Task, -- Ada.Task_Identification
712 RE_Current_Task, -- Ada.Task_Identification
713 RO_AT_Task_Id, -- Ada.Task_Identification
714 RE_Tasking_State, -- Ada.Task_Identification
716 RE_Decimal_IO, -- Ada.Text_IO
717 RE_Fixed_IO, -- Ada.Text_IO
719 RO_WT_Decimal_IO, -- Ada.Wide_Text_IO
720 RO_WT_Fixed_IO, -- Ada.Wide_Text_IO
722 RO_WW_Decimal_IO, -- Ada.Wide_Wide_Text_IO
723 RO_WW_Fixed_IO, -- Ada.Wide_Wide_Text_IO
725 RE_Stream_T, -- CUDA.Driver_Types
727 RE_Launch_Kernel, -- CUDA.Internal
728 RE_Pop_Call_Configuration, -- CUDA.Internal
729 RE_Push_Call_Configuration, -- CUDA.Internal
730 RE_Register_Fat_Binary, -- CUDA.Internal
731 RE_Register_Fat_Binary_End, -- CUDA.Internal
732 RE_Register_Function, -- CUDA.Internal
734 RE_Dim3, -- CUDA.Vector_Types
736 RE_Integer_8, -- Interfaces
737 RE_Integer_16, -- Interfaces
738 RE_Integer_32, -- Interfaces
739 RE_Integer_64, -- Interfaces
740 RE_Integer_128, -- Interfaces
741 RE_Unsigned_8, -- Interfaces
742 RE_Unsigned_16, -- Interfaces
743 RE_Unsigned_32, -- Interfaces
744 RE_Unsigned_64, -- Interfaces
745 RE_Unsigned_128, -- Interfaces
747 RO_IC_Unsigned, -- Interfaces.C
749 RE_Address, -- System
750 RE_Any_Priority, -- System
751 RE_Bit_Order, -- System
752 RE_Default_Priority, -- System
753 RE_High_Order_First, -- System
754 RE_Interrupt_Priority, -- System
755 RE_Low_Order_First, -- System
756 RE_Max_Base_Digits, -- System
757 RE_Null_Address, -- System
758 RE_Priority, -- System
760 RE_Address_Image, -- System.Address_Image
762 RE_Add_With_Ovflo_Check64, -- System.Arith_64
763 RE_Double_Divide64, -- System.Arith_64
764 RE_Multiply_With_Ovflo_Check64, -- System.Arith_64
765 RE_Scaled_Divide64, -- System.Arith_64
766 RE_Subtract_With_Ovflo_Check64, -- System.Arith_64
768 RE_Add_With_Ovflo_Check128, -- System.Arith_128
769 RE_Double_Divide128, -- System.Arith_128
770 RE_Multiply_With_Ovflo_Check128, -- System.Arith_128
771 RE_Subtract_With_Ovflo_Check128, -- System.Arith_128
772 RE_Scaled_Divide128, -- System.Arith_128
774 RE_Assert_Failure, -- System.Assertions
775 RE_Raise_Assert_Failure, -- System.Assertions
777 RE_Lock_Free_Read_8, -- System.Atomic_Primitives
778 RE_Lock_Free_Read_16, -- System.Atomic_Primitives
779 RE_Lock_Free_Read_32, -- System.Atomic_Primitives
780 RE_Lock_Free_Read_64, -- System.Atomic_Primitives
781 RE_Lock_Free_Try_Write_8, -- System.Atomic_Primitives
782 RE_Lock_Free_Try_Write_16, -- System.Atomic_Primitives
783 RE_Lock_Free_Try_Write_32, -- System.Atomic_Primitives
784 RE_Lock_Free_Try_Write_64, -- System.Atomic_Primitives
785 RE_Uint8, -- System.Atomic_Primitives
786 RE_Uint16, -- System.Atomic_Primitives
787 RE_Uint32, -- System.Atomic_Primitives
788 RE_Uint64, -- System.Atomic_Primitives
790 RE_Test_And_Set_Flag, -- System.Atomic_Operations.Test_And_Set
791 RE_Atomic_Test_And_Set, -- System.Atomic_Operations.Test_And_Set
793 RE_AST_Handler, -- System.Aux_DEC
794 RE_Type_Class, -- System.Aux_DEC
795 RE_Type_Class_Enumeration, -- System.Aux_DEC
796 RE_Type_Class_Integer, -- System.Aux_DEC
797 RE_Type_Class_Fixed_Point, -- System.Aux_DEC
798 RE_Type_Class_Floating_Point, -- System.Aux_DEC
799 RE_Type_Class_Array, -- System.Aux_DEC
800 RE_Type_Class_Record, -- System.Aux_DEC
801 RE_Type_Class_Access, -- System.Aux_DEC
802 RE_Type_Class_Task, -- System.Aux_DEC
803 RE_Type_Class_Address, -- System.Aux_DEC
805 RE_Big_Abs, -- System.Bignums
806 RE_Big_Add, -- System.Bignums
807 RE_Big_Div, -- System.Bignums
808 RE_Big_Exp, -- System.Bignums
809 RE_Big_Mod, -- System.Bignums
810 RE_Big_Mul, -- System.Bignums
811 RE_Big_Neg, -- System.Bignums
812 RE_Big_Rem, -- System.Bignums
813 RE_Big_Sub, -- System.Bignums
815 RE_Big_EQ, -- System.Bignums
816 RE_Big_GE, -- System.Bignums
817 RE_Big_GT, -- System.Bignums
818 RE_Big_LE, -- System.Bignums
819 RE_Big_LT, -- System.Bignums
820 RE_Big_NE, -- System.Bignums
822 RE_Bignum, -- System.Bignums
823 RE_Bignum_In_LLI_Range, -- System.Bignums
824 RE_To_Bignum, -- System.Bignums
825 RE_From_Bignum, -- System.Bignums
827 RE_Val_2, -- System.Bitfields
828 RE_Copy_Bitfield, -- System.Bitfields
829 RE_Fast_Copy_Bitfield, -- System.Bitfields
831 RE_Bit_And, -- System.Bit_Ops
832 RE_Bit_Eq, -- System.Bit_Ops
833 RE_Bit_Not, -- System.Bit_Ops
834 RE_Bit_Or, -- System.Bit_Ops
835 RE_Bit_Xor, -- System.Bit_Ops
837 RE_Vector_Not, -- System.Boolean_Array_Operations,
838 RE_Vector_And, -- System.Boolean_Array_Operations,
839 RE_Vector_Or, -- System.Boolean_Array_Operations,
840 RE_Vector_Nand, -- System.Boolean_Array_Operations,
841 RE_Vector_Nor, -- System.Boolean_Array_Operations,
842 RE_Vector_Nxor, -- System.Boolean_Array_Operations,
843 RE_Vector_Xor, -- System.Boolean_Array_Operations,
845 RE_Bswap_16, -- System.Byte_Swapping
846 RE_Bswap_32, -- System.Byte_Swapping
847 RE_Bswap_64, -- System.Byte_Swapping
848 RE_Bswap_128, -- System.Byte_Swapping
850 RE_Checked_Pool, -- System.Checked_Pools
852 RE_Compare_Array_S8, -- System.Compare_Array_Signed_8
853 RE_Compare_Array_S8_Unaligned, -- System.Compare_Array_Signed_8
855 RE_Compare_Array_S16, -- System.Compare_Array_Signed_16
856 RE_Compare_Array_S32, -- System.Compare_Array_Signed_32
857 RE_Compare_Array_S64, -- System.Compare_Array_Signed_64
858 RE_Compare_Array_S128, -- System.Compare_Array_Signed_128
860 RE_Compare_Array_U8, -- System.Compare_Array_Unsigned_8
861 RE_Compare_Array_U8_Unaligned, -- System.Compare_Array_Unsigned_8
863 RE_Compare_Array_U16, -- System.Compare_Array_Unsigned_16
864 RE_Compare_Array_U32, -- System.Compare_Array_Unsigned_32
865 RE_Compare_Array_U64, -- System.Compare_Array_Unsigned_64
866 RE_Compare_Array_U128, -- System.Compare_Array_Unsigned_128
868 RE_Str_Concat_2, -- System.Concat_2
869 RE_Str_Concat_3, -- System.Concat_3
870 RE_Str_Concat_4, -- System.Concat_4
871 RE_Str_Concat_5, -- System.Concat_5
872 RE_Str_Concat_6, -- System.Concat_6
873 RE_Str_Concat_7, -- System.Concat_7
874 RE_Str_Concat_8, -- System.Concat_8
875 RE_Str_Concat_9, -- System.Concat_9
877 RE_Get_Active_Partition_Id, -- System.DSA_Services
878 RE_Get_Local_Partition_Id, -- System.DSA_Services
879 RE_Get_Passive_Partition_Id, -- System.DSA_Services
881 RE_Any_Container_Ptr, -- System.DSA_Types
883 RE_Check_Standard_Allocator, -- System.Elaboration_Allocators
885 RE_Register_Exception, -- System.Exception_Table
887 RE_Local_Raise, -- System.Exceptions_Debug
889 RE_Exn_Integer, -- System.Exn_Int
891 RE_Exn_Float, -- System.Exn_Flt
893 RE_Exn_Long_Float, -- System.Exn_LFlt
895 RE_Exn_Long_Long_Float, -- System.Exn_LLF
897 RE_Exn_Long_Long_Integer, -- System.Exn_LLI
899 RE_Exn_Long_Long_Long_Integer, -- System.Exn_LLLI
901 RE_Exp_Integer, -- System.Exp_Int
903 RE_Exp_Long_Long_Integer, -- System.Exp_LLI
905 RE_Exp_Long_Long_Long_Integer, -- System.Exp_LLLI
907 RE_Exp_Long_Long_Unsigned, -- System.Exp_LLU
909 RE_Exp_Long_Long_Long_Unsigned, -- System.Exp_LLLU
911 RE_Exp_Modular, -- System.Exp_Mod
913 RE_Exp_Unsigned, -- System.Exp_Uns
915 RE_Attr_Float, -- System.Fat_Flt
917 RE_Attr_Long_Float, -- System.Fat_LFlt
919 RE_Attr_Long_Long_Float, -- System.Fat_LLF
921 RE_Add_Offset_To_Address, -- System.Finalization_Masters
922 RE_Attach, -- System.Finalization_Masters
923 RE_Base_Pool, -- System.Finalization_Masters
924 RE_Finalization_Master, -- System.Finalization_Masters
925 RE_Finalization_Master_Ptr, -- System.Finalization_Masters
926 RE_Set_Base_Pool, -- System.Finalization_Masters
927 RE_Set_Finalize_Address, -- System.Finalization_Masters
929 RE_Root_Controlled, -- System.Finalization_Root
931 RE_Fore_Decimal32, -- System.Fore_Decimal_32
933 RE_Fore_Decimal64, -- System.Fore_Decimal_64
935 RE_Fore_Decimal128, -- System.Fore_Decimal_128
937 RE_Fore_Fixed, -- System.Fore_Real
939 RE_Fore_Fixed32, -- System.Fore_Fixed_32
941 RE_Fore_Fixed64, -- System.Fore_Fixed_64
943 RE_Fore_Fixed128, -- System.Fore_Fixed_128
945 RE_Image_Boolean, -- System.Img_Bool
947 RE_Image_Character, -- System.Img_Char
948 RE_Image_Character_05, -- System.Img_Char
950 RE_Image_Decimal32, -- System.Img_Decimal_32
952 RE_Image_Decimal64, -- System.Img_Decimal_64
954 RE_Image_Decimal128, -- System.Img_Decimal_128
956 RE_Image_Enumeration_8, -- System.Img_Enum_New
957 RE_Image_Enumeration_16, -- System.Img_Enum_New
958 RE_Image_Enumeration_32, -- System.Img_Enum_New
960 RE_Image_Float, -- System_Img_Flt
962 RE_Image_Integer, -- System.Img_Int
964 RE_Image_Long_Float, -- System_Img_LFlt
966 RE_Image_Long_Long_Float, -- System_Img_LLF
968 RE_Image_Long_Long_Integer, -- System.Img_LLI
970 RE_Image_Long_Long_Long_Integer, -- System.Img_LLLI
972 RE_Image_Long_Long_Unsigned, -- System.Img_LLU
974 RE_Image_Long_Long_Long_Unsigned, -- System.Img_LLLU
976 RE_Image_Fixed, -- System.Img_LFlt
978 RE_Image_Fixed32, -- System.Img_Fixed_32
980 RE_Image_Fixed64, -- System.Img_Fixed_64
982 RE_Image_Fixed128, -- System.Img_Fixed_128
984 RE_Image_Unsigned, -- System.Img_Uns
986 RE_Image_Wide_Character, -- System.Img_WChar
987 RE_Image_Wide_Wide_Character, -- System.Img_WChar
989 RE_Bind_Interrupt_To_Entry, -- System.Interrupts
990 RE_Default_Interrupt_Priority, -- System.Interrupts
991 RE_Dynamic_Interrupt_Protection, -- System.Interrupts
992 RE_Install_Handlers, -- System.Interrupts
993 RE_Install_Restricted_Handlers, -- System.Interrupts
994 RE_Register_Interrupt_Handler, -- System.Interrupts
995 RE_Static_Interrupt_Protection, -- System.Interrupts
996 RE_System_Interrupt_Id, -- System.Interrupts
998 RE_Expon_LLF, -- System.Long_Long_Float_Expon
1000 RE_Asm_Insn, -- System.Machine_Code
1001 RE_Asm_Input_Operand, -- System.Machine_Code
1002 RE_Asm_Output_Operand, -- System.Machine_Code
1004 RE_Mantissa_Value, -- System.Mantissa
1006 RE_Free, -- System.Memory
1008 RE_CPU_Range, -- System.Multiprocessors
1010 RE_Bits_03, -- System.Pack_03
1011 RE_Get_03, -- System.Pack_03
1012 RE_Set_03, -- System.Pack_03
1014 RE_Bits_05, -- System.Pack_05
1015 RE_Get_05, -- System.Pack_05
1016 RE_Set_05, -- System.Pack_05
1018 RE_Bits_06, -- System.Pack_06
1019 RE_Get_06, -- System.Pack_06
1020 RE_GetU_06, -- System.Pack_06
1021 RE_Set_06, -- System.Pack_06
1022 RE_SetU_06, -- System.Pack_06
1024 RE_Bits_07, -- System.Pack_07
1025 RE_Get_07, -- System.Pack_07
1026 RE_Set_07, -- System.Pack_07
1028 RE_Bits_09, -- System.Pack_09
1029 RE_Get_09, -- System.Pack_09
1030 RE_Set_09, -- System.Pack_09
1032 RE_Bits_10, -- System.Pack_10
1033 RE_Get_10, -- System.Pack_10
1034 RE_GetU_10, -- System.Pack_10
1035 RE_Set_10, -- System.Pack_10
1036 RE_SetU_10, -- System.Pack_10
1038 RE_Bits_11, -- System.Pack_11
1039 RE_Get_11, -- System.Pack_11
1040 RE_Set_11, -- System.Pack_11
1042 RE_Bits_12, -- System.Pack_12
1043 RE_Get_12, -- System.Pack_12
1044 RE_GetU_12, -- System.Pack_12
1045 RE_Set_12, -- System.Pack_12
1046 RE_SetU_12, -- System.Pack_12
1048 RE_Bits_13, -- System.Pack_13
1049 RE_Get_13, -- System.Pack_13
1050 RE_Set_13, -- System.Pack_13
1052 RE_Bits_14, -- System.Pack_14
1053 RE_Get_14, -- System.Pack_14
1054 RE_GetU_14, -- System.Pack_14
1055 RE_Set_14, -- System.Pack_14
1056 RE_SetU_14, -- System.Pack_14
1058 RE_Bits_15, -- System.Pack_15
1059 RE_Get_15, -- System.Pack_15
1060 RE_Set_15, -- System.Pack_15
1062 RE_Bits_17, -- System.Pack_17
1063 RE_Get_17, -- System.Pack_17
1064 RE_Set_17, -- System.Pack_17
1066 RE_Bits_18, -- System.Pack_18
1067 RE_Get_18, -- System.Pack_18
1068 RE_GetU_18, -- System.Pack_18
1069 RE_Set_18, -- System.Pack_18
1070 RE_SetU_18, -- System.Pack_18
1072 RE_Bits_19, -- System.Pack_19
1073 RE_Get_19, -- System.Pack_19
1074 RE_Set_19, -- System.Pack_19
1076 RE_Bits_20, -- System.Pack_20
1077 RE_Get_20, -- System.Pack_20
1078 RE_GetU_20, -- System.Pack_20
1079 RE_Set_20, -- System.Pack_20
1080 RE_SetU_20, -- System.Pack_20
1082 RE_Bits_21, -- System.Pack_21
1083 RE_Get_21, -- System.Pack_21
1084 RE_Set_21, -- System.Pack_21
1086 RE_Bits_22, -- System.Pack_22
1087 RE_Get_22, -- System.Pack_22
1088 RE_GetU_22, -- System.Pack_22
1089 RE_Set_22, -- System.Pack_22
1090 RE_SetU_22, -- System.Pack_22
1092 RE_Bits_23, -- System.Pack_23
1093 RE_Get_23, -- System.Pack_23
1094 RE_Set_23, -- System.Pack_23
1096 RE_Bits_24, -- System.Pack_24
1097 RE_Get_24, -- System.Pack_24
1098 RE_GetU_24, -- System.Pack_24
1099 RE_Set_24, -- System.Pack_24
1100 RE_SetU_24, -- System.Pack_24
1102 RE_Bits_25, -- System.Pack_25
1103 RE_Get_25, -- System.Pack_25
1104 RE_Set_25, -- System.Pack_25
1106 RE_Bits_26, -- System.Pack_26
1107 RE_Get_26, -- System.Pack_26
1108 RE_GetU_26, -- System.Pack_26
1109 RE_Set_26, -- System.Pack_26
1110 RE_SetU_26, -- System.Pack_26
1112 RE_Bits_27, -- System.Pack_27
1113 RE_Get_27, -- System.Pack_27
1114 RE_Set_27, -- System.Pack_27
1116 RE_Bits_28, -- System.Pack_28
1117 RE_Get_28, -- System.Pack_28
1118 RE_GetU_28, -- System.Pack_28
1119 RE_Set_28, -- System.Pack_28
1120 RE_SetU_28, -- System.Pack_28
1122 RE_Bits_29, -- System.Pack_29
1123 RE_Get_29, -- System.Pack_29
1124 RE_Set_29, -- System.Pack_29
1126 RE_Bits_30, -- System.Pack_30
1127 RE_Get_30, -- System.Pack_30
1128 RE_GetU_30, -- System.Pack_30
1129 RE_Set_30, -- System.Pack_30
1130 RE_SetU_30, -- System.Pack_30
1132 RE_Bits_31, -- System.Pack_31
1133 RE_Get_31, -- System.Pack_31
1134 RE_Set_31, -- System.Pack_31
1136 RE_Bits_33, -- System.Pack_33
1137 RE_Get_33, -- System.Pack_33
1138 RE_Set_33, -- System.Pack_33
1140 RE_Bits_34, -- System.Pack_34
1141 RE_Get_34, -- System.Pack_34
1142 RE_GetU_34, -- System.Pack_34
1143 RE_Set_34, -- System.Pack_34
1144 RE_SetU_34, -- System.Pack_34
1146 RE_Bits_35, -- System.Pack_35
1147 RE_Get_35, -- System.Pack_35
1148 RE_Set_35, -- System.Pack_35
1150 RE_Bits_36, -- System.Pack_36
1151 RE_Get_36, -- System.Pack_36
1152 RE_GetU_36, -- System.Pack_36
1153 RE_Set_36, -- System.Pack_36
1154 RE_SetU_36, -- System.Pack_36
1156 RE_Bits_37, -- System.Pack_37
1157 RE_Get_37, -- System.Pack_37
1158 RE_Set_37, -- System.Pack_37
1160 RE_Bits_38, -- System.Pack_38
1161 RE_Get_38, -- System.Pack_38
1162 RE_GetU_38, -- System.Pack_38
1163 RE_Set_38, -- System.Pack_38
1164 RE_SetU_38, -- System.Pack_38
1166 RE_Bits_39, -- System.Pack_39
1167 RE_Get_39, -- System.Pack_39
1168 RE_Set_39, -- System.Pack_39
1170 RE_Bits_40, -- System.Pack_40
1171 RE_Get_40, -- System.Pack_40
1172 RE_GetU_40, -- System.Pack_40
1173 RE_Set_40, -- System.Pack_40
1174 RE_SetU_40, -- System.Pack_40
1176 RE_Bits_41, -- System.Pack_41
1177 RE_Get_41, -- System.Pack_41
1178 RE_Set_41, -- System.Pack_41
1180 RE_Bits_42, -- System.Pack_42
1181 RE_Get_42, -- System.Pack_42
1182 RE_GetU_42, -- System.Pack_42
1183 RE_Set_42, -- System.Pack_42
1184 RE_SetU_42, -- System.Pack_42
1186 RE_Bits_43, -- System.Pack_43
1187 RE_Get_43, -- System.Pack_43
1188 RE_Set_43, -- System.Pack_43
1190 RE_Bits_44, -- System.Pack_44
1191 RE_Get_44, -- System.Pack_44
1192 RE_GetU_44, -- System.Pack_44
1193 RE_Set_44, -- System.Pack_44
1194 RE_SetU_44, -- System.Pack_44
1196 RE_Bits_45, -- System.Pack_45
1197 RE_Get_45, -- System.Pack_45
1198 RE_Set_45, -- System.Pack_45
1200 RE_Bits_46, -- System.Pack_46
1201 RE_Get_46, -- System.Pack_46
1202 RE_GetU_46, -- System.Pack_46
1203 RE_Set_46, -- System.Pack_46
1204 RE_SetU_46, -- System.Pack_46
1206 RE_Bits_47, -- System.Pack_47
1207 RE_Get_47, -- System.Pack_47
1208 RE_Set_47, -- System.Pack_47
1210 RE_Bits_48, -- System.Pack_48
1211 RE_Get_48, -- System.Pack_48
1212 RE_GetU_48, -- System.Pack_48
1213 RE_Set_48, -- System.Pack_48
1214 RE_SetU_48, -- System.Pack_48
1216 RE_Bits_49, -- System.Pack_49
1217 RE_Get_49, -- System.Pack_49
1218 RE_Set_49, -- System.Pack_49
1220 RE_Bits_50, -- System.Pack_50
1221 RE_Get_50, -- System.Pack_50
1222 RE_GetU_50, -- System.Pack_50
1223 RE_Set_50, -- System.Pack_50
1224 RE_SetU_50, -- System.Pack_50
1226 RE_Bits_51, -- System.Pack_51
1227 RE_Get_51, -- System.Pack_51
1228 RE_Set_51, -- System.Pack_51
1230 RE_Bits_52, -- System.Pack_52
1231 RE_Get_52, -- System.Pack_52
1232 RE_GetU_52, -- System.Pack_52
1233 RE_Set_52, -- System.Pack_52
1234 RE_SetU_52, -- System.Pack_52
1236 RE_Bits_53, -- System.Pack_53
1237 RE_Get_53, -- System.Pack_53
1238 RE_Set_53, -- System.Pack_53
1240 RE_Bits_54, -- System.Pack_54
1241 RE_Get_54, -- System.Pack_54
1242 RE_GetU_54, -- System.Pack_54
1243 RE_Set_54, -- System.Pack_54
1244 RE_SetU_54, -- System.Pack_54
1246 RE_Bits_55, -- System.Pack_55
1247 RE_Get_55, -- System.Pack_55
1248 RE_Set_55, -- System.Pack_55
1250 RE_Bits_56, -- System.Pack_56
1251 RE_Get_56, -- System.Pack_56
1252 RE_GetU_56, -- System.Pack_56
1253 RE_Set_56, -- System.Pack_56
1254 RE_SetU_56, -- System.Pack_56
1256 RE_Bits_57, -- System.Pack_57
1257 RE_Get_57, -- System.Pack_57
1258 RE_Set_57, -- System.Pack_57
1260 RE_Bits_58, -- System.Pack_58
1261 RE_Get_58, -- System.Pack_58
1262 RE_GetU_58, -- System.Pack_58
1263 RE_Set_58, -- System.Pack_58
1264 RE_SetU_58, -- System.Pack_58
1266 RE_Bits_59, -- System.Pack_59
1267 RE_Get_59, -- System.Pack_59
1268 RE_Set_59, -- System.Pack_59
1270 RE_Bits_60, -- System.Pack_60
1271 RE_Get_60, -- System.Pack_60
1272 RE_GetU_60, -- System.Pack_60
1273 RE_Set_60, -- System.Pack_60
1274 RE_SetU_60, -- System.Pack_60
1276 RE_Bits_61, -- System.Pack_61
1277 RE_Get_61, -- System.Pack_61
1278 RE_Set_61, -- System.Pack_61
1280 RE_Bits_62, -- System.Pack_62
1281 RE_Get_62, -- System.Pack_62
1282 RE_GetU_62, -- System.Pack_62
1283 RE_Set_62, -- System.Pack_62
1284 RE_SetU_62, -- System.Pack_62
1286 RE_Bits_63, -- System.Pack_63
1287 RE_Get_63, -- System.Pack_63
1288 RE_Set_63, -- System.Pack_63
1290 RE_Bits_65, -- System.Pack_65
1291 RE_Get_65, -- System.Pack_65
1292 RE_Set_65, -- System.Pack_65
1294 RE_Bits_66, -- System.Pack_66
1295 RE_Get_66, -- System.Pack_66
1296 RE_GetU_66, -- System.Pack_66
1297 RE_Set_66, -- System.Pack_66
1298 RE_SetU_66, -- System.Pack_66
1300 RE_Bits_67, -- System.Pack_67
1301 RE_Get_67, -- System.Pack_67
1302 RE_Set_67, -- System.Pack_67
1304 RE_Bits_68, -- System.Pack_68
1305 RE_Get_68, -- System.Pack_68
1306 RE_GetU_68, -- System.Pack_68
1307 RE_Set_68, -- System.Pack_68
1308 RE_SetU_68, -- System.Pack_68
1310 RE_Bits_69, -- System.Pack_69
1311 RE_Get_69, -- System.Pack_69
1312 RE_Set_69, -- System.Pack_69
1314 RE_Bits_70, -- System.Pack_70
1315 RE_Get_70, -- System.Pack_70
1316 RE_GetU_70, -- System.Pack_70
1317 RE_Set_70, -- System.Pack_70
1318 RE_SetU_70, -- System.Pack_70
1320 RE_Bits_71, -- System.Pack_71
1321 RE_Get_71, -- System.Pack_71
1322 RE_Set_71, -- System.Pack_71
1324 RE_Bits_72, -- System.Pack_72
1325 RE_Get_72, -- System.Pack_72
1326 RE_GetU_72, -- System.Pack_72
1327 RE_Set_72, -- System.Pack_72
1328 RE_SetU_72, -- System.Pack_72
1330 RE_Bits_73, -- System.Pack_73
1331 RE_Get_73, -- System.Pack_73
1332 RE_Set_73, -- System.Pack_73
1334 RE_Bits_74, -- System.Pack_74
1335 RE_Get_74, -- System.Pack_74
1336 RE_GetU_74, -- System.Pack_74
1337 RE_Set_74, -- System.Pack_74
1338 RE_SetU_74, -- System.Pack_74
1340 RE_Bits_75, -- System.Pack_75
1341 RE_Get_75, -- System.Pack_75
1342 RE_Set_75, -- System.Pack_75
1344 RE_Bits_76, -- System.Pack_76
1345 RE_Get_76, -- System.Pack_76
1346 RE_GetU_76, -- System.Pack_76
1347 RE_Set_76, -- System.Pack_76
1348 RE_SetU_76, -- System.Pack_76
1350 RE_Bits_77, -- System.Pack_77
1351 RE_Get_77, -- System.Pack_77
1352 RE_Set_77, -- System.Pack_77
1354 RE_Bits_78, -- System.Pack_78
1355 RE_Get_78, -- System.Pack_78
1356 RE_GetU_78, -- System.Pack_78
1357 RE_Set_78, -- System.Pack_78
1358 RE_SetU_78, -- System.Pack_78
1360 RE_Bits_79, -- System.Pack_79
1361 RE_Get_79, -- System.Pack_79
1362 RE_Set_79, -- System.Pack_79
1364 RE_Bits_80, -- System.Pack_80
1365 RE_Get_80, -- System.Pack_80
1366 RE_GetU_80, -- System.Pack_80
1367 RE_Set_80, -- System.Pack_80
1368 RE_SetU_80, -- System.Pack_80
1370 RE_Bits_81, -- System.Pack_81
1371 RE_Get_81, -- System.Pack_81
1372 RE_Set_81, -- System.Pack_81
1374 RE_Bits_82, -- System.Pack_82
1375 RE_Get_82, -- System.Pack_82
1376 RE_GetU_82, -- System.Pack_82
1377 RE_Set_82, -- System.Pack_82
1378 RE_SetU_82, -- System.Pack_82
1380 RE_Bits_83, -- System.Pack_83
1381 RE_Get_83, -- System.Pack_83
1382 RE_Set_83, -- System.Pack_83
1384 RE_Bits_84, -- System.Pack_84
1385 RE_Get_84, -- System.Pack_84
1386 RE_GetU_84, -- System.Pack_84
1387 RE_Set_84, -- System.Pack_84
1388 RE_SetU_84, -- System.Pack_84
1390 RE_Bits_85, -- System.Pack_85
1391 RE_Get_85, -- System.Pack_85
1392 RE_Set_85, -- System.Pack_85
1394 RE_Bits_86, -- System.Pack_86
1395 RE_Get_86, -- System.Pack_86
1396 RE_GetU_86, -- System.Pack_86
1397 RE_Set_86, -- System.Pack_86
1398 RE_SetU_86, -- System.Pack_86
1400 RE_Bits_87, -- System.Pack_87
1401 RE_Get_87, -- System.Pack_87
1402 RE_Set_87, -- System.Pack_87
1404 RE_Bits_88, -- System.Pack_88
1405 RE_Get_88, -- System.Pack_88
1406 RE_GetU_88, -- System.Pack_88
1407 RE_Set_88, -- System.Pack_88
1408 RE_SetU_88, -- System.Pack_88
1410 RE_Bits_89, -- System.Pack_89
1411 RE_Get_89, -- System.Pack_89
1412 RE_Set_89, -- System.Pack_89
1414 RE_Bits_90, -- System.Pack_90
1415 RE_Get_90, -- System.Pack_90
1416 RE_GetU_90, -- System.Pack_90
1417 RE_Set_90, -- System.Pack_90
1418 RE_SetU_90, -- System.Pack_90
1420 RE_Bits_91, -- System.Pack_91
1421 RE_Get_91, -- System.Pack_91
1422 RE_Set_91, -- System.Pack_91
1424 RE_Bits_92, -- System.Pack_92
1425 RE_Get_92, -- System.Pack_92
1426 RE_GetU_92, -- System.Pack_92
1427 RE_Set_92, -- System.Pack_92
1428 RE_SetU_92, -- System.Pack_92
1430 RE_Bits_93, -- System.Pack_93
1431 RE_Get_93, -- System.Pack_93
1432 RE_Set_93, -- System.Pack_93
1434 RE_Bits_94, -- System.Pack_94
1435 RE_Get_94, -- System.Pack_94
1436 RE_GetU_94, -- System.Pack_94
1437 RE_Set_94, -- System.Pack_94
1438 RE_SetU_94, -- System.Pack_94
1440 RE_Bits_95, -- System.Pack_95
1441 RE_Get_95, -- System.Pack_95
1442 RE_Set_95, -- System.Pack_95
1444 RE_Bits_96, -- System.Pack_96
1445 RE_Get_96, -- System.Pack_96
1446 RE_GetU_96, -- System.Pack_96
1447 RE_Set_96, -- System.Pack_96
1448 RE_SetU_96, -- System.Pack_96
1450 RE_Bits_97, -- System.Pack_97
1451 RE_Get_97, -- System.Pack_97
1452 RE_Set_97, -- System.Pack_97
1454 RE_Bits_98, -- System.Pack_98
1455 RE_Get_98, -- System.Pack_98
1456 RE_GetU_98, -- System.Pack_98
1457 RE_Set_98, -- System.Pack_98
1458 RE_SetU_98, -- System.Pack_98
1460 RE_Bits_99, -- System.Pack_99
1461 RE_Get_99, -- System.Pack_99
1462 RE_Set_99, -- System.Pack_99
1464 RE_Bits_100, -- System.Pack_100
1465 RE_Get_100, -- System.Pack_100
1466 RE_GetU_100, -- System.Pack_100
1467 RE_Set_100, -- System.Pack_100
1468 RE_SetU_100, -- System.Pack_100
1470 RE_Bits_101, -- System.Pack_101
1471 RE_Get_101, -- System.Pack_101
1472 RE_Set_101, -- System.Pack_101
1474 RE_Bits_102, -- System.Pack_102
1475 RE_Get_102, -- System.Pack_102
1476 RE_GetU_102, -- System.Pack_102
1477 RE_Set_102, -- System.Pack_102
1478 RE_SetU_102, -- System.Pack_102
1480 RE_Bits_103, -- System.Pack_103
1481 RE_Get_103, -- System.Pack_103
1482 RE_Set_103, -- System.Pack_103
1484 RE_Bits_104, -- System.Pack_104
1485 RE_Get_104, -- System.Pack_104
1486 RE_GetU_104, -- System.Pack_104
1487 RE_Set_104, -- System.Pack_104
1488 RE_SetU_104, -- System.Pack_104
1490 RE_Bits_105, -- System.Pack_105
1491 RE_Get_105, -- System.Pack_105
1492 RE_Set_105, -- System.Pack_105
1494 RE_Bits_106, -- System.Pack_106
1495 RE_Get_106, -- System.Pack_106
1496 RE_GetU_106, -- System.Pack_106
1497 RE_Set_106, -- System.Pack_106
1498 RE_SetU_106, -- System.Pack_106
1500 RE_Bits_107, -- System.Pack_107
1501 RE_Get_107, -- System.Pack_107
1502 RE_Set_107, -- System.Pack_107
1504 RE_Bits_108, -- System.Pack_108
1505 RE_Get_108, -- System.Pack_108
1506 RE_GetU_108, -- System.Pack_108
1507 RE_Set_108, -- System.Pack_108
1508 RE_SetU_108, -- System.Pack_108
1510 RE_Bits_109, -- System.Pack_109
1511 RE_Get_109, -- System.Pack_109
1512 RE_Set_109, -- System.Pack_109
1514 RE_Bits_110, -- System.Pack_110
1515 RE_Get_110, -- System.Pack_110
1516 RE_GetU_110, -- System.Pack_110
1517 RE_Set_110, -- System.Pack_110
1518 RE_SetU_110, -- System.Pack_110
1520 RE_Bits_111, -- System.Pack_111
1521 RE_Get_111, -- System.Pack_111
1522 RE_Set_111, -- System.Pack_111
1524 RE_Bits_112, -- System.Pack_112
1525 RE_Get_112, -- System.Pack_112
1526 RE_GetU_112, -- System.Pack_112
1527 RE_Set_112, -- System.Pack_112
1528 RE_SetU_112, -- System.Pack_112
1530 RE_Bits_113, -- System.Pack_113
1531 RE_Get_113, -- System.Pack_113
1532 RE_Set_113, -- System.Pack_113
1534 RE_Bits_114, -- System.Pack_114
1535 RE_Get_114, -- System.Pack_114
1536 RE_GetU_114, -- System.Pack_114
1537 RE_Set_114, -- System.Pack_114
1538 RE_SetU_114, -- System.Pack_114
1540 RE_Bits_115, -- System.Pack_115
1541 RE_Get_115, -- System.Pack_115
1542 RE_Set_115, -- System.Pack_115
1544 RE_Bits_116, -- System.Pack_116
1545 RE_Get_116, -- System.Pack_116
1546 RE_GetU_116, -- System.Pack_116
1547 RE_Set_116, -- System.Pack_116
1548 RE_SetU_116, -- System.Pack_116
1550 RE_Bits_117, -- System.Pack_117
1551 RE_Get_117, -- System.Pack_117
1552 RE_Set_117, -- System.Pack_117
1554 RE_Bits_118, -- System.Pack_118
1555 RE_Get_118, -- System.Pack_118
1556 RE_GetU_118, -- System.Pack_118
1557 RE_Set_118, -- System.Pack_118
1558 RE_SetU_118, -- System.Pack_118
1560 RE_Bits_119, -- System.Pack_119
1561 RE_Get_119, -- System.Pack_119
1562 RE_Set_119, -- System.Pack_119
1564 RE_Bits_120, -- System.Pack_120
1565 RE_Get_120, -- System.Pack_120
1566 RE_GetU_120, -- System.Pack_120
1567 RE_Set_120, -- System.Pack_120
1568 RE_SetU_120, -- System.Pack_120
1570 RE_Bits_121, -- System.Pack_121
1571 RE_Get_121, -- System.Pack_121
1572 RE_Set_121, -- System.Pack_121
1574 RE_Bits_122, -- System.Pack_122
1575 RE_Get_122, -- System.Pack_122
1576 RE_GetU_122, -- System.Pack_122
1577 RE_Set_122, -- System.Pack_122
1578 RE_SetU_122, -- System.Pack_122
1580 RE_Bits_123, -- System.Pack_123
1581 RE_Get_123, -- System.Pack_123
1582 RE_Set_123, -- System.Pack_123
1584 RE_Bits_124, -- System.Pack_124
1585 RE_Get_124, -- System.Pack_124
1586 RE_GetU_124, -- System.Pack_124
1587 RE_Set_124, -- System.Pack_124
1588 RE_SetU_124, -- System.Pack_124
1590 RE_Bits_125, -- System.Pack_125
1591 RE_Get_125, -- System.Pack_125
1592 RE_Set_125, -- System.Pack_125
1594 RE_Bits_126, -- System.Pack_126
1595 RE_Get_126, -- System.Pack_126
1596 RE_GetU_126, -- System.Pack_126
1597 RE_Set_126, -- System.Pack_126
1598 RE_SetU_126, -- System.Pack_126
1600 RE_Bits_127, -- System.Pack_127
1601 RE_Get_127, -- System.Pack_127
1602 RE_Set_127, -- System.Pack_127
1604 RE_Adjust_Storage_Size, -- System.Parameters
1605 RE_Default_Stack_Size, -- System.Parameters
1606 RE_Size_Type, -- System.Parameters
1607 RE_Unspecified_Size, -- System.Parameters
1609 RE_DSA_Implementation, -- System.Partition_Interface
1610 RE_PCS_Version, -- System.Partition_Interface
1611 RE_Get_RACW, -- System.Partition_Interface
1612 RE_Get_RCI_Package_Receiver, -- System.Partition_Interface
1613 RE_Get_Unique_Remote_Pointer, -- System.Partition_Interface
1614 RE_RACW_Stub_Type, -- System.Partition_Interface
1615 RE_RACW_Stub_Type_Access, -- System.Partition_Interface
1616 RE_RAS_Proxy_Type_Access, -- System.Partition_Interface
1617 RE_Raise_Program_Error_Unknown_Tag, -- System.Partition_Interface
1618 RE_Register_Passive_Package, -- System.Partition_Interface
1619 RE_Register_Receiving_Stub, -- System.Partition_Interface
1620 RE_Request, -- System.Partition_Interface
1621 RE_Request_Access, -- System.Partition_Interface
1622 RE_RCI_Locator, -- System.Partition_Interface
1623 RE_RCI_Subp_Info, -- System.Partition_Interface
1624 RE_RCI_Subp_Info_Array, -- System.Partition_Interface
1625 RE_Same_Partition, -- System.Partition_Interface
1626 RE_Subprogram_Id, -- System.Partition_Interface
1627 RE_Get_RAS_Info, -- System.Partition_Interface
1629 RE_Global_Pool_Object, -- System.Pool_Global
1631 RE_Stack_Bounded_Pool, -- System.Pool_Size
1633 RE_Put_Image_Integer, -- System.Put_Images
1634 RE_Put_Image_Long_Long_Integer, -- System.Put_Images
1635 RE_Put_Image_Long_Long_Long_Integer, -- System.Put_Images
1636 RE_Put_Image_Unsigned, -- System.Put_Images
1637 RE_Put_Image_Long_Long_Unsigned, -- System.Put_Images
1638 RE_Put_Image_Long_Long_Long_Unsigned, -- System.Put_Images
1639 RE_Put_Image_Thin_Pointer, -- System.Put_Images
1640 RE_Put_Image_Fat_Pointer, -- System.Put_Images
1641 RE_Put_Image_Access_Subp, -- System.Put_Images
1642 RE_Put_Image_Access_Prot_Subp, -- System.Put_Images
1643 RE_Put_Image_String, -- System.Put_Images
1644 RE_Put_Image_Wide_String, -- System.Put_Images
1645 RE_Put_Image_Wide_Wide_String, -- System.Put_Images
1646 RE_Array_Before, -- System.Put_Images
1647 RE_Array_Between, -- System.Put_Images
1648 RE_Array_After, -- System.Put_Images
1649 RE_Simple_Array_Between, -- System.Put_Images
1650 RE_Record_Before, -- System.Put_Images
1651 RE_Record_Between, -- System.Put_Images
1652 RE_Record_After, -- System.Put_Images
1653 RE_Put_Image_Unknown, -- System.Put_Images
1655 RE_Put_Image_Protected, -- System.Put_Task_Images
1656 RE_Put_Image_Task, -- System.Put_Task_Images
1658 RE_Do_Apc, -- System.RPC
1659 RE_Do_Rpc, -- System.RPC
1660 RE_Params_Stream_Type, -- System.RPC
1661 RE_Partition_ID, -- System.RPC
1663 RE_To_PolyORB_String, -- System.Partition_Interface
1664 RE_Caseless_String_Eq, -- System.Partition_Interface
1665 RE_TypeCode, -- System.Partition_Interface
1666 RE_Any, -- System.Partition_Interface
1667 RE_Mode_In, -- System.Partition_Interface
1668 RE_Mode_Out, -- System.Partition_Interface
1669 RE_Mode_Inout, -- System.Partition_Interface
1670 RE_NamedValue, -- System.Partition_Interface
1671 RE_Result_Name, -- System.Partition_Interface
1672 RE_Object_Ref, -- System.Partition_Interface
1673 RE_Create_Any, -- System.Partition_Interface
1674 RE_Any_Aggregate_Build, -- System.Partition_Interface
1675 RE_Add_Aggregate_Element, -- System.Partition_Interface
1676 RE_Get_Aggregate_Element, -- System.Partition_Interface
1677 RE_Content_Type, -- System.Partition_Interface
1678 RE_Any_Member_Type, -- System.Partition_Interface
1679 RE_Get_Nested_Sequence_Length, -- System.Partition_Interface
1680 RE_Get_Any_Type, -- System.Partition_Interface
1681 RE_Extract_Union_Value, -- System.Partition_Interface
1682 RE_NVList_Ref, -- System.Partition_Interface
1683 RE_NVList_Create, -- System.Partition_Interface
1684 RE_NVList_Add_Item, -- System.Partition_Interface
1685 RE_Request_Arguments, -- System.Partition_Interface
1686 RE_Request_Invoke, -- System.Partition_Interface
1687 RE_Request_Raise_Occurrence, -- System.Partition_Interface
1688 RE_Request_Set_Out, -- System.Partition_Interface
1689 RE_Request_Setup, -- System.Partition_Interface
1690 RE_Nil_Exc_List, -- System.Partition_Interface
1691 RE_Servant, -- System.Partition_Interface
1692 RE_Move_Any_Value, -- System.Partition_Interface
1693 RE_Set_Result, -- System.Partition_Interface
1694 RE_Register_Obj_Receiving_Stub, -- System.Partition_Interface
1695 RE_Register_Pkg_Receiving_Stub, -- System.Partition_Interface
1696 RE_Entity_Of, -- System.Partition_Interface
1697 RE_Inc_Usage, -- System.Partition_Interface
1698 RE_Make_Ref, -- System.Partition_Interface
1699 RE_Get_Local_Address, -- System.Partition_Interface
1700 RE_Get_Reference, -- System.Partition_Interface
1701 RE_Asynchronous_P_To_Sync_Scope, -- System.Partition_Interface
1702 RE_Buffer_Stream_Type, -- System.Partition_Interface
1703 RE_Release_Buffer, -- System.Partition_Interface
1704 RE_BS_To_Any, -- System.Partition_Interface
1705 RE_Any_To_BS, -- System.Partition_Interface
1706 RE_Build_Complex_TC, -- System.Partition_Interface
1707 RE_Get_TC, -- System.Partition_Interface
1708 RE_Set_TC, -- System.Partition_Interface
1710 RE_FA_A, -- System.Partition_Interface
1711 RE_FA_B, -- System.Partition_Interface
1712 RE_FA_C, -- System.Partition_Interface
1713 RE_FA_F, -- System.Partition_Interface
1714 RE_FA_I8, -- System.Partition_Interface
1715 RE_FA_I16, -- System.Partition_Interface
1716 RE_FA_I32, -- System.Partition_Interface
1717 RE_FA_I64, -- System.Partition_Interface
1718 RE_FA_LF, -- System.Partition_Interface
1719 RE_FA_LLF, -- System.Partition_Interface
1720 RE_FA_SF, -- System.Partition_Interface
1721 RE_FA_U8, -- System.Partition_Interface
1722 RE_FA_U16, -- System.Partition_Interface
1723 RE_FA_U32, -- System.Partition_Interface
1724 RE_FA_U64, -- System.Partition_Interface
1725 RE_FA_WC, -- System.Partition_Interface
1726 RE_FA_WWC, -- System.Partition_Interface
1727 RE_FA_String, -- System.Partition_Interface
1728 RE_FA_ObjRef, -- System.Partition_Interface
1730 RE_TA_A, -- System.Partition_Interface
1731 RE_TA_B, -- System.Partition_Interface
1732 RE_TA_C, -- System.Partition_Interface
1733 RE_TA_F, -- System.Partition_Interface
1734 RE_TA_I8, -- System.Partition_Interface
1735 RE_TA_I16, -- System.Partition_Interface
1736 RE_TA_I32, -- System.Partition_Interface
1737 RE_TA_I64, -- System.Partition_Interface
1738 RE_TA_LF, -- System.Partition_Interface
1739 RE_TA_LLF, -- System.Partition_Interface
1740 RE_TA_SF, -- System.Partition_Interface
1741 RE_TA_U8, -- System.Partition_Interface
1742 RE_TA_U16, -- System.Partition_Interface
1743 RE_TA_U32, -- System.Partition_Interface
1744 RE_TA_U64, -- System.Partition_Interface
1745 RE_TA_WC, -- System.Partition_Interface
1746 RE_TA_WWC, -- System.Partition_Interface
1747 RE_TA_String, -- System.Partition_Interface
1748 RE_TA_ObjRef, -- System.Partition_Interface
1749 RE_TA_Std_String, -- System.Partition_Interface
1750 RE_TA_TC, -- System.Partition_Interface
1752 RE_TC_A, -- System.Partition_Interface
1753 RE_TC_B, -- System.Partition_Interface
1754 RE_TC_C, -- System.Partition_Interface
1755 RE_TC_F, -- System.Partition_Interface
1756 RE_TC_I8, -- System.Partition_Interface
1757 RE_TC_I16, -- System.Partition_Interface
1758 RE_TC_I32, -- System.Partition_Interface
1759 RE_TC_I64, -- System.Partition_Interface
1760 RE_TC_LF, -- System.Partition_Interface
1761 RE_TC_LLF, -- System.Partition_Interface
1762 RE_TC_SF, -- System.Partition_Interface
1763 RE_TC_U8, -- System.Partition_Interface
1764 RE_TC_U16, -- System.Partition_Interface
1765 RE_TC_U32, -- System.Partition_Interface
1766 RE_TC_U64, -- System.Partition_Interface
1767 RE_TC_Void, -- System.Partition_Interface
1768 RE_TC_Opaque, -- System.Partition_Interface
1769 RE_TC_WC, -- System.Partition_Interface
1770 RE_TC_WWC, -- System.Partition_Interface
1771 RE_TC_String, -- System.Partition_Interface
1773 RE_Tk_Alias, -- System.Partition_Interface
1774 RE_Tk_Array, -- System.Partition_Interface
1775 RE_Tk_Sequence, -- System.Partition_Interface
1776 RE_Tk_Struct, -- System.Partition_Interface
1777 RE_Tk_Objref, -- System.Partition_Interface
1778 RE_Tk_Union, -- System.Partition_Interface
1780 RO_RD_Delay_For, -- System.Relative_Delays
1782 RE_RS_Allocate, -- System.Return_Stack
1783 RE_RS_Pool, -- System.Return_Stack
1785 RE_IS_Is1, -- System.Scalar_Values
1786 RE_IS_Is2, -- System.Scalar_Values
1787 RE_IS_Is4, -- System.Scalar_Values
1788 RE_IS_Is8, -- System.Scalar_Values
1789 RE_IS_Is16, -- System.Scalar_Values
1790 RE_IS_Iu1, -- System.Scalar_Values
1791 RE_IS_Iu2, -- System.Scalar_Values
1792 RE_IS_Iu4, -- System.Scalar_Values
1793 RE_IS_Iu8, -- System.Scalar_Values
1794 RE_IS_Iu16, -- System.Scalar_Values
1795 RE_IS_Isf, -- System.Scalar_Values
1796 RE_IS_Ifl, -- System.Scalar_Values
1797 RE_IS_Ilf, -- System.Scalar_Values
1798 RE_IS_Ill, -- System.Scalar_Values
1800 RE_Mark_Id, -- System.Secondary_Stack
1801 RE_SS_Allocate, -- System.Secondary_Stack
1802 RE_SS_Pool, -- System.Secondary_Stack
1803 RE_SS_Mark, -- System.Secondary_Stack
1804 RE_SS_Release, -- System.Secondary_Stack
1805 RE_SS_Stack, -- System.Secondary_Stack
1807 RE_Shared_Var_Lock, -- System.Shared_Storage
1808 RE_Shared_Var_Unlock, -- System.Shared_Storage
1809 RE_Shared_Var_Procs, -- System.Shared_Storage
1811 RE_Abort_Undefer_Direct, -- System.Standard_Library
1812 RE_Exception_Data_Ptr, -- System.Standard_Library
1814 RE_Integer_Address, -- System.Storage_Elements
1815 RE_Storage_Array, -- System.Storage_Elements
1816 RE_Storage_Count, -- System.Storage_Elements
1817 RE_Storage_Offset, -- System.Storage_Elements
1818 RE_To_Address, -- System.Storage_Elements
1820 RE_Allocate_Any, -- System.Storage_Pools
1821 RE_Deallocate_Any, -- System.Storage_Pools
1822 RE_Root_Storage_Pool, -- System.Storage_Pools
1823 RE_Root_Storage_Pool_Ptr, -- System.Storage_Pools
1825 RE_Adjust_Controlled_Dereference, -- System.Storage_Pools.Subpools
1826 RE_Allocate_Any_Controlled, -- System.Storage_Pools.Subpools
1827 RE_Deallocate_Any_Controlled, -- System.Storage_Pools.Subpools
1828 RE_Header_Size_With_Padding, -- System.Storage_Pools.Subpools
1829 RE_Root_Storage_Pool_With_Subpools, -- System.Storage_Pools.Subpools
1831 RE_I_AD, -- System.Stream_Attributes
1832 RE_I_AS, -- System.Stream_Attributes
1833 RE_I_B, -- System.Stream_Attributes
1834 RE_I_C, -- System.Stream_Attributes
1835 RE_I_F, -- System.Stream_Attributes
1836 RE_I_I, -- System.Stream_Attributes
1837 RE_I_I24, -- System.Stream_Attributes
1838 RE_I_LF, -- System.Stream_Attributes
1839 RE_I_LI, -- System.Stream_Attributes
1840 RE_I_LLF, -- System.Stream_Attributes
1841 RE_I_LLI, -- System.Stream_Attributes
1842 RE_I_LLLI, -- System.Stream_Attributes
1843 RE_I_LLLU, -- System.Stream_Attributes
1844 RE_I_LLU, -- System.Stream_Attributes
1845 RE_I_LU, -- System.Stream_Attributes
1846 RE_I_SF, -- System.Stream_Attributes
1847 RE_I_SI, -- System.Stream_Attributes
1848 RE_I_SSI, -- System.Stream_Attributes
1849 RE_I_SSU, -- System.Stream_Attributes
1850 RE_I_SU, -- System.Stream_Attributes
1851 RE_I_U, -- System.Stream_Attributes
1852 RE_I_U24, -- System.Stream_Attributes
1853 RE_I_WC, -- System.Stream_Attributes
1854 RE_I_WWC, -- System.Stream_Attributes
1856 RE_W_AD, -- System.Stream_Attributes
1857 RE_W_AS, -- System.Stream_Attributes
1858 RE_W_B, -- System.Stream_Attributes
1859 RE_W_C, -- System.Stream_Attributes
1860 RE_W_F, -- System.Stream_Attributes
1861 RE_W_I, -- System.Stream_Attributes
1862 RE_W_I24, -- System.Stream_Attributes
1863 RE_W_LF, -- System.Stream_Attributes
1864 RE_W_LI, -- System.Stream_Attributes
1865 RE_W_LLF, -- System.Stream_Attributes
1866 RE_W_LLI, -- System.Stream_Attributes
1867 RE_W_LLLI, -- System.Stream_Attributes
1868 RE_W_LLLU, -- System.Stream_Attributes
1869 RE_W_LLU, -- System.Stream_Attributes
1870 RE_W_LU, -- System.Stream_Attributes
1871 RE_W_SF, -- System.Stream_Attributes
1872 RE_W_SI, -- System.Stream_Attributes
1873 RE_W_SSI, -- System.Stream_Attributes
1874 RE_W_SSU, -- System.Stream_Attributes
1875 RE_W_SU, -- System.Stream_Attributes
1876 RE_W_U, -- System.Stream_Attributes
1877 RE_W_U24, -- System.Stream_Attributes
1878 RE_W_WC, -- System.Stream_Attributes
1879 RE_W_WWC, -- System.Stream_Attributes
1881 RE_Storage_Array_Input, -- System.Strings.Stream_Ops
1882 RE_Storage_Array_Input_Blk_IO, -- System.Strings.Stream_Ops
1883 RE_Storage_Array_Output, -- System.Strings.Stream_Ops
1884 RE_Storage_Array_Output_Blk_IO, -- System.Strings.Stream_Ops
1885 RE_Storage_Array_Read, -- System.Strings.Stream_Ops
1886 RE_Storage_Array_Read_Blk_IO, -- System.Strings.Stream_Ops
1887 RE_Storage_Array_Write, -- System.Strings.Stream_Ops
1888 RE_Storage_Array_Write_Blk_IO, -- System.Strings.Stream_Ops
1890 RE_Stream_Element_Array_Input, -- System.Strings.Stream_Ops
1891 RE_Stream_Element_Array_Input_Blk_IO, -- System.Strings.Stream_Ops
1892 RE_Stream_Element_Array_Output, -- System.Strings.Stream_Ops
1893 RE_Stream_Element_Array_Output_Blk_IO, -- System.Strings.Stream_Ops
1894 RE_Stream_Element_Array_Read, -- System.Strings.Stream_Ops
1895 RE_Stream_Element_Array_Read_Blk_IO, -- System.Strings.Stream_Ops
1896 RE_Stream_Element_Array_Write, -- System.Strings.Stream_Ops
1897 RE_Stream_Element_Array_Write_Blk_IO, -- System.Strings.Stream_Ops
1899 RE_String_Input, -- System.Strings.Stream_Ops
1900 RE_String_Input_Blk_IO, -- System.Strings.Stream_Ops
1901 RE_String_Input_Tag, -- System.Strings.Stream_Ops
1902 RE_String_Output, -- System.Strings.Stream_Ops
1903 RE_String_Output_Blk_IO, -- System.Strings.Stream_Ops
1904 RE_String_Read, -- System.Strings.Stream_Ops
1905 RE_String_Read_Blk_IO, -- System.Strings.Stream_Ops
1906 RE_String_Write, -- System.Strings.Stream_Ops
1907 RE_String_Write_Blk_IO, -- System.Strings.Stream_Ops
1909 RE_Wide_String_Input, -- System.Strings.Stream_Ops
1910 RE_Wide_String_Input_Blk_IO, -- System.Strings.Stream_Ops
1911 RE_Wide_String_Output, -- System.Strings.Stream_Ops
1912 RE_Wide_String_Output_Blk_IO, -- System.Strings.Stream_Ops
1913 RE_Wide_String_Read, -- System.Strings.Stream_Ops
1914 RE_Wide_String_Read_Blk_IO, -- System.Strings.Stream_Ops
1915 RE_Wide_String_Write, -- System.Strings.Stream_Ops
1916 RE_Wide_String_Write_Blk_IO, -- System.Strings.Stream_Ops
1918 RE_Wide_Wide_String_Input, -- System.Strings.Stream_Ops
1919 RE_Wide_Wide_String_Input_Blk_IO, -- System.Strings.Stream_Ops
1920 RE_Wide_Wide_String_Output, -- System.Strings.Stream_Ops
1921 RE_Wide_Wide_String_Output_Blk_IO, -- System.Strings.Stream_Ops
1922 RE_Wide_Wide_String_Read, -- System.Strings.Stream_Ops
1923 RE_Wide_Wide_String_Read_Blk_IO, -- System.Strings.Stream_Ops
1924 RE_Wide_Wide_String_Write, -- System.Strings.Stream_Ops
1925 RE_Wide_Wide_String_Write_Blk_IO, -- System.Strings.Stream_Ops
1927 RE_Task_Info_Type, -- System.Task_Info
1928 RE_Unspecified_Task_Info, -- System.Task_Info
1930 RE_Task_Procedure_Access, -- System.Tasking
1931 RO_ST_Number_Of_Entries, -- System.Tasking
1933 RO_ST_Task_Id, -- System.Tasking
1934 RO_ST_Null_Task, -- System.Tasking
1936 RE_Call_Modes, -- System.Tasking
1937 RE_Simple_Call, -- System.Tasking
1938 RE_Conditional_Call, -- System.Tasking
1939 RE_Asynchronous_Call, -- System.Tasking
1941 RE_Ada_Task_Control_Block, -- System.Tasking
1943 RE_Task_List, -- System.Tasking
1945 RE_Accept_List, -- System.Tasking
1946 RE_No_Rendezvous, -- System.Tasking
1947 RE_Null_Task_Entry, -- System.Tasking
1948 RE_Select_Index, -- System.Tasking
1949 RE_Else_Mode, -- System.Tasking
1950 RE_Simple_Mode, -- System.Tasking
1951 RE_Terminate_Mode, -- System.Tasking
1952 RE_Delay_Mode, -- System.Tasking
1953 RE_Task_Entry_Index, -- System.Tasking
1954 RE_Self, -- System.Tasking
1956 RE_Unspecified_Priority, -- System.Tasking
1958 RE_Activation_Chain, -- System.Tasking
1959 RE_Activation_Chain_Access, -- System.Tasking
1960 RE_Storage_Size, -- System.Tasking
1962 RE_Unspecified_CPU, -- System.Tasking
1964 RE_Dispatching_Domain_Access, -- System.Tasking
1966 RE_Abort_Defer, -- System.Soft_Links
1967 RE_Abort_Undefer, -- System.Soft_Links
1968 RE_Complete_Master, -- System.Soft_Links
1969 RE_Current_Master, -- System.Soft_Links
1970 RE_Dummy_Communication_Block, -- System.Soft_Links
1971 RE_Enter_Master, -- System.Soft_Links
1972 RE_Get_Current_Excep, -- System.Soft_Links
1973 RE_Get_GNAT_Exception, -- System.Soft_Links
1974 RE_Save_Library_Occurrence, -- System.Soft_Links
1976 RE_Bits_1, -- System.Unsigned_Types
1977 RE_Bits_2, -- System.Unsigned_Types
1978 RE_Bits_4, -- System.Unsigned_Types
1979 RE_Long_Long_Unsigned, -- System.Unsigned_Types
1980 RE_Long_Long_Long_Unsigned, -- System.Unsigned_Types
1981 RE_Packed_Byte, -- System.Unsigned_Types
1982 RE_Packed_Bytes1, -- System.Unsigned_Types
1983 RE_Packed_Bytes2, -- System.Unsigned_Types
1984 RE_Packed_Bytes4, -- System.Unsigned_Types
1985 RE_Rev_Packed_Bytes1, -- System.Unsigned_Types
1986 RE_Rev_Packed_Bytes2, -- System.Unsigned_Types
1987 RE_Rev_Packed_Bytes4, -- System.Unsigned_Types
1988 RE_Unsigned, -- System.Unsigned_Types
1990 RE_Value_Boolean, -- System.Val_Bool
1992 RE_Value_Character, -- System.Val_Char
1994 RE_Value_Decimal32, -- System_Val_Decimal_32
1996 RE_Value_Decimal64, -- System_Val_Decimal_64
1998 RE_Value_Decimal128, -- System_Val_Decimal_128
2000 RE_Value_Enumeration_8, -- System.Val_Enum_8
2001 RE_Value_Enumeration_16, -- System.Val_Enum_16
2002 RE_Value_Enumeration_32, -- System.Val_Enum_32
2004 RE_Valid_Value_Enumeration_8, -- System.Val_Enum_8
2005 RE_Valid_Value_Enumeration_16, -- System.Val_Enum_16
2006 RE_Valid_Value_Enumeration_32, -- System.Val_Enum_32
2008 RE_Value_Fixed32, -- System_Val_Fixed_32
2010 RE_Value_Fixed64, -- System_Val_Fixed_64
2012 RE_Value_Fixed128, -- System_Val_Fixed_128
2014 RE_Value_Float, -- System_Val_Flt
2016 RE_Value_Integer, -- System.Val_Int
2018 RE_Value_Long_Float, -- System_Val_LFlt
2020 RE_Value_Long_Long_Float, -- System_Val_LLF
2022 RE_Value_Long_Long_Integer, -- System.Val_LLI
2024 RE_Value_Long_Long_Long_Integer, -- System.Val_LLLI
2026 RE_Value_Long_Long_Unsigned, -- System.Val_LLU
2028 RE_Value_Long_Long_Long_Unsigned, -- System.Val_LLLU
2030 RE_Value_Unsigned, -- System.Val_Uns
2032 RE_Value_Wide_Character, -- System.Val_WChar
2033 RE_Value_Wide_Wide_Character, -- System.Val_WChar
2035 RE_Version_String, -- System.Version_Control
2036 RE_Get_Version_String, -- System.Version_Control
2038 RE_String_To_Wide_String, -- System.WCh_StW
2039 RE_String_To_Wide_Wide_String, -- System.WCh_StW
2041 RE_Wide_String_To_String, -- System.WCh_WtS
2042 RE_Wide_Wide_String_To_String, -- System.WCh_WtS
2044 RE_Wide_Width_Character, -- System.WWd_Char
2045 RE_Wide_Wide_Width_Character, -- System.WWd_Char
2047 RE_Wide_Wide_Width_Enumeration_8, -- System.WWd_Enum
2048 RE_Wide_Wide_Width_Enumeration_16, -- System.WWd_Enum
2049 RE_Wide_Wide_Width_Enumeration_32, -- System.WWd_Enum
2051 RE_Wide_Width_Enumeration_8, -- System.WWd_Enum
2052 RE_Wide_Width_Enumeration_16, -- System.WWd_Enum
2053 RE_Wide_Width_Enumeration_32, -- System.WWd_Enum
2055 RE_Wide_Wide_Width_Wide_Character, -- System.WWd_Wchar
2056 RE_Wide_Wide_Width_Wide_Wide_Char, -- System.WWd_Wchar
2057 RE_Wide_Width_Wide_Character, -- System.WWd_Wchar
2058 RE_Wide_Width_Wide_Wide_Character, -- System.WWd_Wchar
2060 RE_Width_Boolean, -- System.Wid_Bool
2062 RE_Width_Character, -- System.Wid_Char
2064 RE_Width_Enumeration_8, -- System.Wid_Enum
2065 RE_Width_Enumeration_16, -- System.Wid_Enum
2066 RE_Width_Enumeration_32, -- System.Wid_Enum
2068 RE_Width_Integer, -- System.Wid_Int
2070 RE_Width_Long_Long_Integer, -- System.Wid_LLI
2072 RE_Width_Long_Long_Long_Integer, -- System.Wid_LLLI
2074 RE_Width_Long_Long_Unsigned, -- System.Wid_LLU
2076 RE_Width_Long_Long_Long_Unsigned, -- System.Wid_LLLU
2078 RE_Width_Unsigned, -- System.Wid_Uns
2080 RE_Width_Wide_Character, -- System.Wid_WChar
2081 RE_Width_Wide_Wide_Character, -- System.Wid_WChar
2083 RE_Dispatching_Domain, -- Multiprocessors.Dispatching_Domains
2085 RE_Protected_Entry_Body_Array, -- Tasking.Protected_Objects.Entries
2086 RE_Protected_Entry_Queue_Max_Array, -- Tasking.Protected_Objects.Entries
2087 RE_Protection_Entries, -- Tasking.Protected_Objects.Entries
2088 RE_Protection_Entries_Access, -- Tasking.Protected_Objects.Entries
2089 RE_Initialize_Protection_Entries, -- Tasking.Protected_Objects.Entries
2090 RE_Lock_Entries, -- Tasking.Protected_Objects.Entries
2091 RE_Unlock_Entries, -- Tasking.Protected_Objects.Entries
2092 RO_PE_Get_Ceiling, -- Tasking.Protected_Objects.Entries
2093 RO_PE_Number_Of_Entries, -- Tasking.Protected_Objects.Entries
2094 RO_PE_Set_Ceiling, -- Tasking.Protected_Objects.Entries
2096 RE_Communication_Block, -- Protected_Objects.Operations
2097 RE_Protected_Entry_Call, -- Protected_Objects.Operations
2098 RE_Service_Entries, -- Protected_Objects.Operations
2099 RE_Cancel_Protected_Entry_Call, -- Protected_Objects.Operations
2100 RE_Enqueued, -- Protected_Objects.Operations
2101 RE_Cancelled, -- Protected_Objects.Operations
2102 RE_Complete_Entry_Body, -- Protected_Objects.Operations
2103 RE_Exceptional_Complete_Entry_Body, -- Protected_Objects.Operations
2104 RE_Requeue_Protected_Entry, -- Protected_Objects.Operations
2105 RE_Requeue_Task_To_Protected_Entry, -- Protected_Objects.Operations
2106 RE_Protected_Count, -- Protected_Objects.Operations
2107 RE_Protected_Entry_Caller, -- Protected_Objects.Operations
2108 RE_Timed_Protected_Entry_Call, -- Protected_Objects.Operations
2110 RE_Protection_Entry, -- Protected_Objects.Single_Entry
2111 RE_Initialize_Protection_Entry, -- Protected_Objects.Single_Entry
2112 RE_Lock_Entry, -- Protected_Objects.Single_Entry
2113 RE_Unlock_Entry, -- Protected_Objects.Single_Entry
2114 RE_Protected_Single_Entry_Call, -- Protected_Objects.Single_Entry
2115 RE_Service_Entry, -- Protected_Objects.Single_Entry
2116 RE_Exceptional_Complete_Single_Entry_Body,
2117 RE_Protected_Count_Entry, -- Protected_Objects.Single_Entry
2118 RE_Protected_Single_Entry_Caller, -- Protected_Objects.Single_Entry
2120 RE_Protected_Entry_Index, -- System.Tasking.Protected_Objects
2121 RE_Entry_Body, -- System.Tasking.Protected_Objects
2122 RE_Protection, -- System.Tasking.Protected_Objects
2123 RE_Initialize_Protection, -- System.Tasking.Protected_Objects
2124 RE_Finalize_Protection, -- System.Tasking.Protected_Objects
2125 RE_Lock, -- System.Tasking.Protected_Objects
2126 RE_Lock_Read_Only, -- System.Tasking.Protected_Objects
2127 RE_Get_Ceiling, -- System.Tasking.Protected_Objects
2128 RE_Set_Ceiling, -- System.Tasking.Protected_Objects
2129 RE_Unlock, -- System.Tasking.Protected_Objects
2131 RE_Delay_Block, -- System.Tasking.Async_Delays
2132 RE_Timed_Out, -- System.Tasking.Async_Delays
2133 RE_Cancel_Async_Delay, -- System.Tasking.Async_Delays
2134 RE_Enqueue_Duration, -- System.Tasking.Async_Delays
2135 RE_Enqueue_Calendar, -- System.Tasking.Async_Delays
2136 RE_Enqueue_RT, -- System.Tasking.Async_Delays
2138 RE_Accept_Call, -- System.Tasking.Rendezvous
2139 RE_Accept_Trivial, -- System.Tasking.Rendezvous
2140 RE_Callable, -- System.Tasking.Rendezvous
2141 RE_Call_Simple, -- System.Tasking.Rendezvous
2142 RE_Requeue_Task_Entry, -- System.Tasking.Rendezvous
2143 RE_Requeue_Protected_To_Task_Entry, -- System.Tasking.Rendezvous
2144 RE_Cancel_Task_Entry_Call, -- System.Tasking.Rendezvous
2145 RE_Complete_Rendezvous, -- System.Tasking.Rendezvous
2146 RE_Task_Count, -- System.Tasking.Rendezvous
2147 RE_Exceptional_Complete_Rendezvous, -- System.Tasking.Rendezvous
2148 RE_Selective_Wait, -- System.Tasking.Rendezvous
2149 RE_Task_Entry_Call, -- System.Tasking.Rendezvous
2150 RE_Task_Entry_Caller, -- System.Tasking.Rendezvous
2151 RE_Timed_Task_Entry_Call, -- System.Tasking.Rendezvous
2152 RE_Timed_Selective_Wait, -- System.Tasking.Rendezvous
2154 RE_Activate_Restricted_Tasks, -- System.Tasking.Restricted.Stages
2155 RE_Complete_Restricted_Activation, -- System.Tasking.Restricted.Stages
2156 RE_Create_Restricted_Task, -- System.Tasking.Restricted.Stages
2157 RE_Create_Restricted_Task_Sequential, -- System.Tasking.Restricted.Stages
2158 RE_Complete_Restricted_Task, -- System.Tasking.Restricted.Stages
2159 RE_Restricted_Terminated, -- System.Tasking.Restricted.Stages
2161 RE_Abort_Tasks, -- System.Tasking.Stages
2162 RE_Activate_Tasks, -- System.Tasking.Stages
2163 RE_Complete_Activation, -- System.Tasking.Stages
2164 RE_Create_Task, -- System.Tasking.Stages
2165 RE_Complete_Task, -- System.Tasking.Stages
2166 RE_Free_Task, -- System.Tasking.Stages
2167 RE_Expunge_Unactivated_Tasks, -- System.Tasking.Stages
2168 RE_Move_Activation_Chain, -- System.Tasking_Stages
2169 RE_Terminated); -- System.Tasking.Stages
2171 -- The following declarations build a table that is indexed by the RTE
2172 -- function to determine the unit containing the given entity. This table
2173 -- is sorted in order of package names.
2175 RE_Unit_Table : constant array (RE_Id) of RTU_Id := (
2177 RE_Null => RTU_Null,
2179 RO_CA_Clock_Time => Ada_Calendar,
2180 RO_CA_Time => Ada_Calendar,
2182 RO_CA_Delay_For => Ada_Calendar_Delays,
2183 RO_CA_Delay_Until => Ada_Calendar_Delays,
2184 RO_CA_To_Duration => Ada_Calendar_Delays,
2186 RE_Yield => Ada_Dispatching,
2188 RE_Set_Deadline => Ada_Dispatching_EDF,
2190 RE_Exception_Id => Ada_Exceptions,
2191 RE_Exception_Information => Ada_Exceptions,
2192 RE_Exception_Message => Ada_Exceptions,
2193 RE_Exception_Name_Simple => Ada_Exceptions,
2194 RE_Exception_Occurrence => Ada_Exceptions,
2195 RE_Null_Id => Ada_Exceptions,
2196 RE_Null_Occurrence => Ada_Exceptions,
2197 RE_Raise_Exception => Ada_Exceptions,
2198 RE_Raise_Exception_Always => Ada_Exceptions,
2199 RE_Raise_From_Controlled_Operation => Ada_Exceptions,
2200 RE_Reraise_Occurrence => Ada_Exceptions,
2201 RE_Reraise_Occurrence_Always => Ada_Exceptions,
2202 RE_Reraise_Occurrence_No_Defer => Ada_Exceptions,
2203 RE_Save_Occurrence => Ada_Exceptions,
2204 RE_Triggered_By_Abort => Ada_Exceptions,
2206 RE_Interrupt_ID => Ada_Interrupts,
2207 RE_Is_Reserved => Ada_Interrupts,
2208 RE_Is_Attached => Ada_Interrupts,
2209 RE_Current_Handler => Ada_Interrupts,
2210 RE_Attach_Handler => Ada_Interrupts,
2211 RE_Exchange_Handler => Ada_Interrupts,
2212 RE_Detach_Handler => Ada_Interrupts,
2213 RE_Reference => Ada_Interrupts,
2215 RE_Big_Integer => Ada_Numerics_Big_Numbers_Big_Integers,
2216 RO_GH_Big_Integer => Ada_Numerics_Big_Numbers_Big_Integers_Ghost,
2218 RE_Names => Ada_Interrupts_Names,
2220 RE_Clock => Ada_Real_Time,
2221 RE_Clock_Time => Ada_Real_Time,
2222 RE_Time_Span => Ada_Real_Time,
2223 RE_Time_Span_Zero => Ada_Real_Time,
2224 RO_RT_Time => Ada_Real_Time,
2226 RO_RT_Delay_Until => Ada_Real_Time_Delays,
2227 RO_RT_To_Duration => Ada_Real_Time_Delays,
2229 RE_Set_Handler => Ada_Real_Time_Timing_Events,
2230 RE_Timing_Event => Ada_Real_Time_Timing_Events,
2232 RE_Root_Stream_Type => Ada_Streams,
2233 RE_Stream_Element => Ada_Streams,
2234 RE_Stream_Element_Array => Ada_Streams,
2235 RE_Stream_Element_Offset => Ada_Streams,
2237 RO_SU_Super_String => Ada_Strings_Superbounded,
2239 RO_WI_Super_String => Ada_Strings_Wide_Superbounded,
2241 RO_WW_Super_String => Ada_Strings_Wide_Wide_Superbounded,
2243 RE_Unbounded_String => Ada_Strings_Unbounded,
2245 RE_Root_Buffer_Type => Ada_Strings_Text_Buffers,
2246 RE_Put_UTF_8 => Ada_Strings_Text_Buffers,
2247 RE_Set_Trim_Leading_Spaces => Ada_Strings_Text_Buffers,
2248 RE_Wide_Wide_Put => Ada_Strings_Text_Buffers,
2250 RE_Buffer_Type => Ada_Strings_Text_Buffers_Unbounded,
2251 RE_Get => Ada_Strings_Text_Buffers_Unbounded,
2252 RE_Wide_Get => Ada_Strings_Text_Buffers_Unbounded,
2253 RE_Wide_Wide_Get => Ada_Strings_Text_Buffers_Unbounded,
2255 RE_Wait_For_Release => Ada_Synchronous_Barriers,
2257 RE_Suspend_Until_True => Ada_Synchronous_Task_Control,
2258 RE_Suspension_Object => Ada_Synchronous_Task_Control,
2260 RE_Access_Level => Ada_Tags,
2261 RE_Alignment => Ada_Tags,
2262 RE_Address_Array => Ada_Tags,
2263 RE_Addr_Ptr => Ada_Tags,
2264 RE_Base_Address => Ada_Tags,
2265 RE_Check_TSD => Ada_Tags,
2266 RE_Cstring_Ptr => Ada_Tags,
2267 RE_CW_Membership => Ada_Tags,
2268 RE_Descendant_Tag => Ada_Tags,
2269 RE_Dispatch_Table => Ada_Tags,
2270 RE_Dispatch_Table_Wrapper => Ada_Tags,
2271 RE_Displace => Ada_Tags,
2272 RE_DT => Ada_Tags,
2273 RE_DT_Offset_To_Top_Offset => Ada_Tags,
2274 RE_DT_Predef_Prims_Offset => Ada_Tags,
2275 RE_DT_Typeinfo_Ptr_Size => Ada_Tags,
2276 RE_External_Tag => Ada_Tags,
2277 RO_TA_External_Tag => Ada_Tags,
2278 RE_Get_Access_Level => Ada_Tags,
2279 RE_Get_Entry_Index => Ada_Tags,
2280 RE_Get_Offset_Index => Ada_Tags,
2281 RE_Get_Prim_Op_Kind => Ada_Tags,
2282 RE_Get_Tagged_Kind => Ada_Tags,
2283 RE_HT_Link => Ada_Tags,
2284 RE_Interfaces_Array => Ada_Tags,
2285 RE_Interfaces_Table => Ada_Tags,
2286 RE_Interface_Data => Ada_Tags,
2287 RE_Interface_Data_Element => Ada_Tags,
2288 RE_Interface_Tag => Ada_Tags,
2289 RE_Is_Abstract => Ada_Tags,
2290 RE_IW_Membership => Ada_Tags,
2291 RE_Max_Predef_Prims => Ada_Tags,
2292 RE_Needs_Finalization => Ada_Tags,
2293 RE_No_Dispatch_Table_Wrapper => Ada_Tags,
2294 RE_No_Tag => Ada_Tags,
2295 RE_NDT_Prims_Ptr => Ada_Tags,
2296 RE_Object_Specific_Data => Ada_Tags,
2297 RE_Offset_To_Top => Ada_Tags,
2298 RE_Offset_To_Top_Ptr => Ada_Tags,
2299 RE_Offset_To_Top_Function_Ptr => Ada_Tags,
2300 RE_OSD_Table => Ada_Tags,
2301 RE_OSD_Num_Prims => Ada_Tags,
2302 RE_POK_Function => Ada_Tags,
2303 RE_POK_Procedure => Ada_Tags,
2304 RE_POK_Protected_Entry => Ada_Tags,
2305 RE_POK_Protected_Function => Ada_Tags,
2306 RE_POK_Protected_Procedure => Ada_Tags,
2307 RE_POK_Task_Entry => Ada_Tags,
2308 RE_POK_Task_Function => Ada_Tags,
2309 RE_POK_Task_Procedure => Ada_Tags,
2310 RE_Predef_Prims => Ada_Tags,
2311 RE_Predef_Prims_Table_Ptr => Ada_Tags,
2312 RE_Prim_Op_Kind => Ada_Tags,
2313 RE_Prim_Ptr => Ada_Tags,
2314 RE_Prims_Ptr => Ada_Tags,
2315 RE_Primary_DT => Ada_Tags,
2316 RE_Signature => Ada_Tags,
2317 RE_SSD => Ada_Tags,
2318 RE_Type_Specific_Data => Ada_Tags,
2319 RE_Register_Interface_Offset => Ada_Tags,
2320 RE_Register_Tag => Ada_Tags,
2321 RE_Transportable => Ada_Tags,
2322 RE_Secondary_DT => Ada_Tags,
2323 RE_Secondary_Tag => Ada_Tags,
2324 RE_Select_Specific_Data => Ada_Tags,
2325 RE_Set_Entry_Index => Ada_Tags,
2326 RE_Set_Dynamic_Offset_To_Top => Ada_Tags,
2327 RE_Set_Prim_Op_Kind => Ada_Tags,
2328 RE_Size_Func => Ada_Tags,
2329 RE_Size_Ptr => Ada_Tags,
2330 RE_Tag => Ada_Tags,
2331 RE_Tag_Error => Ada_Tags,
2332 RE_Tag_Kind => Ada_Tags,
2333 RE_Tag_Ptr => Ada_Tags,
2334 RE_Tag_Table => Ada_Tags,
2335 RE_Tags_Table => Ada_Tags,
2336 RE_Tagged_Kind => Ada_Tags,
2337 RE_Type_Specific_Data_Ptr => Ada_Tags,
2338 RE_TK_Abstract_Limited_Tagged => Ada_Tags,
2339 RE_TK_Abstract_Tagged => Ada_Tags,
2340 RE_TK_Limited_Tagged => Ada_Tags,
2341 RE_TK_Protected => Ada_Tags,
2342 RE_TK_Tagged => Ada_Tags,
2343 RE_TK_Task => Ada_Tags,
2344 RE_Unregister_Tag => Ada_Tags,
2345 RE_Wide_Wide_Expanded_Name => Ada_Tags,
2347 RE_Set_Specific_Handler => Ada_Task_Termination,
2348 RE_Specific_Handler => Ada_Task_Termination,
2350 RE_Abort_Task => Ada_Task_Identification,
2351 RE_Current_Task => Ada_Task_Identification,
2352 RO_AT_Task_Id => Ada_Task_Identification,
2353 RE_Tasking_State => Ada_Task_Identification,
2355 RE_Decimal_IO => Ada_Text_IO,
2356 RE_Fixed_IO => Ada_Text_IO,
2358 RO_WT_Decimal_IO => Ada_Wide_Text_IO,
2359 RO_WT_Fixed_IO => Ada_Wide_Text_IO,
2361 RO_WW_Decimal_IO => Ada_Wide_Wide_Text_IO,
2362 RO_WW_Fixed_IO => Ada_Wide_Wide_Text_IO,
2364 RE_Stream_T => CUDA_Driver_Types,
2366 RE_Launch_Kernel => CUDA_Internal,
2367 RE_Pop_Call_Configuration => CUDA_Internal,
2368 RE_Push_Call_Configuration => CUDA_Internal,
2369 RE_Register_Fat_Binary => CUDA_Internal,
2370 RE_Register_Fat_Binary_End => CUDA_Internal,
2371 RE_Register_Function => CUDA_Internal,
2373 RE_Dim3 => CUDA_Vector_Types,
2375 RE_Integer_8 => Interfaces,
2376 RE_Integer_16 => Interfaces,
2377 RE_Integer_32 => Interfaces,
2378 RE_Integer_64 => Interfaces,
2379 RE_Integer_128 => Interfaces,
2380 RE_Unsigned_8 => Interfaces,
2381 RE_Unsigned_16 => Interfaces,
2382 RE_Unsigned_32 => Interfaces,
2383 RE_Unsigned_64 => Interfaces,
2384 RE_Unsigned_128 => Interfaces,
2386 RO_IC_Unsigned => Interfaces_C,
2388 RE_Address => System,
2389 RE_Any_Priority => System,
2390 RE_Bit_Order => System,
2391 RE_Default_Priority => System,
2392 RE_High_Order_First => System,
2393 RE_Interrupt_Priority => System,
2394 RE_Low_Order_First => System,
2395 RE_Max_Base_Digits => System,
2396 RE_Null_Address => System,
2397 RE_Priority => System,
2399 RE_Address_Image => System_Address_Image,
2401 RE_Add_With_Ovflo_Check64 => System_Arith_64,
2402 RE_Double_Divide64 => System_Arith_64,
2403 RE_Multiply_With_Ovflo_Check64 => System_Arith_64,
2404 RE_Scaled_Divide64 => System_Arith_64,
2405 RE_Subtract_With_Ovflo_Check64 => System_Arith_64,
2407 RE_Add_With_Ovflo_Check128 => System_Arith_128,
2408 RE_Double_Divide128 => System_Arith_128,
2409 RE_Multiply_With_Ovflo_Check128 => System_Arith_128,
2410 RE_Subtract_With_Ovflo_Check128 => System_Arith_128,
2411 RE_Scaled_Divide128 => System_Arith_128,
2413 RE_Assert_Failure => System_Assertions,
2414 RE_Raise_Assert_Failure => System_Assertions,
2416 RE_Lock_Free_Read_8 => System_Atomic_Primitives,
2417 RE_Lock_Free_Read_16 => System_Atomic_Primitives,
2418 RE_Lock_Free_Read_32 => System_Atomic_Primitives,
2419 RE_Lock_Free_Read_64 => System_Atomic_Primitives,
2420 RE_Lock_Free_Try_Write_8 => System_Atomic_Primitives,
2421 RE_Lock_Free_Try_Write_16 => System_Atomic_Primitives,
2422 RE_Lock_Free_Try_Write_32 => System_Atomic_Primitives,
2423 RE_Lock_Free_Try_Write_64 => System_Atomic_Primitives,
2424 RE_Uint8 => System_Atomic_Primitives,
2425 RE_Uint16 => System_Atomic_Primitives,
2426 RE_Uint32 => System_Atomic_Primitives,
2427 RE_Uint64 => System_Atomic_Primitives,
2429 RE_Test_And_Set_Flag => System_Atomic_Operations_Test_And_Set,
2430 RE_Atomic_Test_And_Set => System_Atomic_Operations_Test_And_Set,
2432 RE_AST_Handler => System_Aux_DEC,
2433 RE_Type_Class => System_Aux_DEC,
2434 RE_Type_Class_Enumeration => System_Aux_DEC,
2435 RE_Type_Class_Integer => System_Aux_DEC,
2436 RE_Type_Class_Fixed_Point => System_Aux_DEC,
2437 RE_Type_Class_Floating_Point => System_Aux_DEC,
2438 RE_Type_Class_Array => System_Aux_DEC,
2439 RE_Type_Class_Record => System_Aux_DEC,
2440 RE_Type_Class_Access => System_Aux_DEC,
2441 RE_Type_Class_Task => System_Aux_DEC,
2442 RE_Type_Class_Address => System_Aux_DEC,
2444 RE_Big_Abs => System_Bignums,
2445 RE_Big_Add => System_Bignums,
2446 RE_Big_Div => System_Bignums,
2447 RE_Big_Exp => System_Bignums,
2448 RE_Big_Mod => System_Bignums,
2449 RE_Big_Mul => System_Bignums,
2450 RE_Big_Neg => System_Bignums,
2451 RE_Big_Rem => System_Bignums,
2452 RE_Big_Sub => System_Bignums,
2454 RE_Big_EQ => System_Bignums,
2455 RE_Big_GE => System_Bignums,
2456 RE_Big_GT => System_Bignums,
2457 RE_Big_LE => System_Bignums,
2458 RE_Big_LT => System_Bignums,
2459 RE_Big_NE => System_Bignums,
2461 RE_Bignum => System_Bignums,
2462 RE_Bignum_In_LLI_Range => System_Bignums,
2463 RE_To_Bignum => System_Bignums,
2464 RE_From_Bignum => System_Bignums,
2466 RE_Val_2 => System_Bitfields,
2467 RE_Copy_Bitfield => System_Bitfields,
2468 RE_Fast_Copy_Bitfield => System_Bitfields,
2470 RE_Bit_And => System_Bit_Ops,
2471 RE_Bit_Eq => System_Bit_Ops,
2472 RE_Bit_Not => System_Bit_Ops,
2473 RE_Bit_Or => System_Bit_Ops,
2474 RE_Bit_Xor => System_Bit_Ops,
2476 RE_Checked_Pool => System_Checked_Pools,
2478 RE_Vector_Not => System_Boolean_Array_Operations,
2479 RE_Vector_And => System_Boolean_Array_Operations,
2480 RE_Vector_Or => System_Boolean_Array_Operations,
2481 RE_Vector_Nand => System_Boolean_Array_Operations,
2482 RE_Vector_Nor => System_Boolean_Array_Operations,
2483 RE_Vector_Nxor => System_Boolean_Array_Operations,
2484 RE_Vector_Xor => System_Boolean_Array_Operations,
2486 RE_Bswap_16 => System_Byte_Swapping,
2487 RE_Bswap_32 => System_Byte_Swapping,
2488 RE_Bswap_64 => System_Byte_Swapping,
2489 RE_Bswap_128 => System_Byte_Swapping,
2491 RE_Compare_Array_S8 => System_Compare_Array_Signed_8,
2492 RE_Compare_Array_S8_Unaligned => System_Compare_Array_Signed_8,
2494 RE_Compare_Array_S16 => System_Compare_Array_Signed_16,
2496 RE_Compare_Array_S32 => System_Compare_Array_Signed_32,
2498 RE_Compare_Array_S64 => System_Compare_Array_Signed_64,
2500 RE_Compare_Array_S128 => System_Compare_Array_Signed_128,
2502 RE_Compare_Array_U8 => System_Compare_Array_Unsigned_8,
2503 RE_Compare_Array_U8_Unaligned => System_Compare_Array_Unsigned_8,
2505 RE_Compare_Array_U16 => System_Compare_Array_Unsigned_16,
2507 RE_Compare_Array_U32 => System_Compare_Array_Unsigned_32,
2509 RE_Compare_Array_U64 => System_Compare_Array_Unsigned_64,
2511 RE_Compare_Array_U128 => System_Compare_Array_Unsigned_128,
2513 RE_Str_Concat_2 => System_Concat_2,
2514 RE_Str_Concat_3 => System_Concat_3,
2515 RE_Str_Concat_4 => System_Concat_4,
2516 RE_Str_Concat_5 => System_Concat_5,
2517 RE_Str_Concat_6 => System_Concat_6,
2518 RE_Str_Concat_7 => System_Concat_7,
2519 RE_Str_Concat_8 => System_Concat_8,
2520 RE_Str_Concat_9 => System_Concat_9,
2522 RE_Get_Active_Partition_Id => System_DSA_Services,
2523 RE_Get_Local_Partition_Id => System_DSA_Services,
2524 RE_Get_Passive_Partition_Id => System_DSA_Services,
2526 RE_Any_Container_Ptr => System_DSA_Types,
2528 RE_Check_Standard_Allocator => System_Elaboration_Allocators,
2530 RE_Register_Exception => System_Exception_Table,
2532 RE_Local_Raise => System_Exceptions_Debug,
2534 RE_Exn_Integer => System_Exn_Int,
2536 RE_Exn_Float => System_Exn_Flt,
2538 RE_Exn_Long_Float => System_Exn_LFlt,
2540 RE_Exn_Long_Long_Float => System_Exn_LLF,
2542 RE_Exn_Long_Long_Integer => System_Exn_LLI,
2544 RE_Exn_Long_Long_Long_Integer => System_Exn_LLLI,
2546 RE_Exp_Integer => System_Exp_Int,
2548 RE_Exp_Long_Long_Integer => System_Exp_LLI,
2550 RE_Exp_Long_Long_Long_Integer => System_Exp_LLLI,
2552 RE_Exp_Long_Long_Unsigned => System_Exp_LLU,
2554 RE_Exp_Long_Long_Long_Unsigned => System_Exp_LLLU,
2556 RE_Exp_Modular => System_Exp_Mod,
2558 RE_Exp_Unsigned => System_Exp_Uns,
2560 RE_Attr_Float => System_Fat_Flt,
2562 RE_Attr_Long_Float => System_Fat_LFlt,
2564 RE_Attr_Long_Long_Float => System_Fat_LLF,
2566 RE_Add_Offset_To_Address => System_Finalization_Masters,
2567 RE_Attach => System_Finalization_Masters,
2568 RE_Base_Pool => System_Finalization_Masters,
2569 RE_Finalization_Master => System_Finalization_Masters,
2570 RE_Finalization_Master_Ptr => System_Finalization_Masters,
2571 RE_Set_Base_Pool => System_Finalization_Masters,
2572 RE_Set_Finalize_Address => System_Finalization_Masters,
2574 RE_Root_Controlled => System_Finalization_Root,
2576 RE_Fore_Decimal32 => System_Fore_Decimal_32,
2578 RE_Fore_Decimal64 => System_Fore_Decimal_64,
2580 RE_Fore_Decimal128 => System_Fore_Decimal_128,
2582 RE_Fore_Fixed => System_Fore_Real,
2584 RE_Fore_Fixed32 => System_Fore_Fixed_32,
2586 RE_Fore_Fixed64 => System_Fore_Fixed_64,
2588 RE_Fore_Fixed128 => System_Fore_Fixed_128,
2590 RE_Image_Boolean => System_Img_Bool,
2592 RE_Image_Character => System_Img_Char,
2593 RE_Image_Character_05 => System_Img_Char,
2595 RE_Image_Decimal32 => System_Img_Decimal_32,
2597 RE_Image_Decimal64 => System_Img_Decimal_64,
2599 RE_Image_Decimal128 => System_Img_Decimal_128,
2601 RE_Image_Enumeration_8 => System_Img_Enum_8,
2603 RE_Image_Enumeration_16 => System_Img_Enum_16,
2605 RE_Image_Enumeration_32 => System_Img_Enum_32,
2607 RE_Image_Float => System_Img_Flt,
2609 RE_Image_Integer => System_Img_Int,
2611 RE_Image_Long_Float => System_Img_LFlt,
2613 RE_Image_Long_Long_Float => System_Img_LLF,
2615 RE_Image_Long_Long_Integer => System_Img_LLI,
2617 RE_Image_Long_Long_Long_Integer => System_Img_LLLI,
2619 RE_Image_Long_Long_Unsigned => System_Img_LLU,
2621 RE_Image_Long_Long_Long_Unsigned => System_Img_LLLU,
2623 RE_Image_Fixed => System_Img_LFlt,
2625 RE_Image_Fixed32 => System_Img_Fixed_32,
2627 RE_Image_Fixed64 => System_Img_Fixed_64,
2629 RE_Image_Fixed128 => System_Img_Fixed_128,
2631 RE_Image_Unsigned => System_Img_Uns,
2633 RE_Image_Wide_Character => System_Img_WChar,
2634 RE_Image_Wide_Wide_Character => System_Img_WChar,
2636 RE_Bind_Interrupt_To_Entry => System_Interrupts,
2637 RE_Default_Interrupt_Priority => System_Interrupts,
2638 RE_Dynamic_Interrupt_Protection => System_Interrupts,
2639 RE_Install_Handlers => System_Interrupts,
2640 RE_Install_Restricted_Handlers => System_Interrupts,
2641 RE_Register_Interrupt_Handler => System_Interrupts,
2642 RE_Static_Interrupt_Protection => System_Interrupts,
2643 RE_System_Interrupt_Id => System_Interrupts,
2645 RE_Expon_LLF => System_Long_Long_Float_Expon,
2647 RE_Asm_Insn => System_Machine_Code,
2648 RE_Asm_Input_Operand => System_Machine_Code,
2649 RE_Asm_Output_Operand => System_Machine_Code,
2651 RE_Mantissa_Value => System_Mantissa,
2653 RE_Free => System_Memory,
2655 RE_CPU_Range => System_Multiprocessors,
2657 RE_Bits_03 => System_Pack_03,
2658 RE_Get_03 => System_Pack_03,
2659 RE_Set_03 => System_Pack_03,
2661 RE_Bits_05 => System_Pack_05,
2662 RE_Get_05 => System_Pack_05,
2663 RE_Set_05 => System_Pack_05,
2665 RE_Bits_06 => System_Pack_06,
2666 RE_Get_06 => System_Pack_06,
2667 RE_GetU_06 => System_Pack_06,
2668 RE_Set_06 => System_Pack_06,
2669 RE_SetU_06 => System_Pack_06,
2671 RE_Bits_07 => System_Pack_07,
2672 RE_Get_07 => System_Pack_07,
2673 RE_Set_07 => System_Pack_07,
2675 RE_Bits_09 => System_Pack_09,
2676 RE_Get_09 => System_Pack_09,
2677 RE_Set_09 => System_Pack_09,
2679 RE_Bits_10 => System_Pack_10,
2680 RE_Get_10 => System_Pack_10,
2681 RE_GetU_10 => System_Pack_10,
2682 RE_Set_10 => System_Pack_10,
2683 RE_SetU_10 => System_Pack_10,
2685 RE_Bits_11 => System_Pack_11,
2686 RE_Get_11 => System_Pack_11,
2687 RE_Set_11 => System_Pack_11,
2689 RE_Bits_12 => System_Pack_12,
2690 RE_Get_12 => System_Pack_12,
2691 RE_GetU_12 => System_Pack_12,
2692 RE_Set_12 => System_Pack_12,
2693 RE_SetU_12 => System_Pack_12,
2695 RE_Bits_13 => System_Pack_13,
2696 RE_Get_13 => System_Pack_13,
2697 RE_Set_13 => System_Pack_13,
2699 RE_Bits_14 => System_Pack_14,
2700 RE_Get_14 => System_Pack_14,
2701 RE_GetU_14 => System_Pack_14,
2702 RE_Set_14 => System_Pack_14,
2703 RE_SetU_14 => System_Pack_14,
2705 RE_Bits_15 => System_Pack_15,
2706 RE_Get_15 => System_Pack_15,
2707 RE_Set_15 => System_Pack_15,
2709 RE_Bits_17 => System_Pack_17,
2710 RE_Get_17 => System_Pack_17,
2711 RE_Set_17 => System_Pack_17,
2713 RE_Bits_18 => System_Pack_18,
2714 RE_Get_18 => System_Pack_18,
2715 RE_GetU_18 => System_Pack_18,
2716 RE_Set_18 => System_Pack_18,
2717 RE_SetU_18 => System_Pack_18,
2719 RE_Bits_19 => System_Pack_19,
2720 RE_Get_19 => System_Pack_19,
2721 RE_Set_19 => System_Pack_19,
2723 RE_Bits_20 => System_Pack_20,
2724 RE_Get_20 => System_Pack_20,
2725 RE_GetU_20 => System_Pack_20,
2726 RE_Set_20 => System_Pack_20,
2727 RE_SetU_20 => System_Pack_20,
2729 RE_Bits_21 => System_Pack_21,
2730 RE_Get_21 => System_Pack_21,
2731 RE_Set_21 => System_Pack_21,
2733 RE_Bits_22 => System_Pack_22,
2734 RE_Get_22 => System_Pack_22,
2735 RE_GetU_22 => System_Pack_22,
2736 RE_Set_22 => System_Pack_22,
2737 RE_SetU_22 => System_Pack_22,
2739 RE_Bits_23 => System_Pack_23,
2740 RE_Get_23 => System_Pack_23,
2741 RE_Set_23 => System_Pack_23,
2743 RE_Bits_24 => System_Pack_24,
2744 RE_Get_24 => System_Pack_24,
2745 RE_GetU_24 => System_Pack_24,
2746 RE_Set_24 => System_Pack_24,
2747 RE_SetU_24 => System_Pack_24,
2749 RE_Bits_25 => System_Pack_25,
2750 RE_Get_25 => System_Pack_25,
2751 RE_Set_25 => System_Pack_25,
2753 RE_Bits_26 => System_Pack_26,
2754 RE_Get_26 => System_Pack_26,
2755 RE_GetU_26 => System_Pack_26,
2756 RE_Set_26 => System_Pack_26,
2757 RE_SetU_26 => System_Pack_26,
2759 RE_Bits_27 => System_Pack_27,
2760 RE_Get_27 => System_Pack_27,
2761 RE_Set_27 => System_Pack_27,
2763 RE_Bits_28 => System_Pack_28,
2764 RE_Get_28 => System_Pack_28,
2765 RE_GetU_28 => System_Pack_28,
2766 RE_Set_28 => System_Pack_28,
2767 RE_SetU_28 => System_Pack_28,
2769 RE_Bits_29 => System_Pack_29,
2770 RE_Get_29 => System_Pack_29,
2771 RE_Set_29 => System_Pack_29,
2773 RE_Bits_30 => System_Pack_30,
2774 RE_Get_30 => System_Pack_30,
2775 RE_GetU_30 => System_Pack_30,
2776 RE_Set_30 => System_Pack_30,
2777 RE_SetU_30 => System_Pack_30,
2779 RE_Bits_31 => System_Pack_31,
2780 RE_Get_31 => System_Pack_31,
2781 RE_Set_31 => System_Pack_31,
2783 RE_Bits_33 => System_Pack_33,
2784 RE_Get_33 => System_Pack_33,
2785 RE_Set_33 => System_Pack_33,
2787 RE_Bits_34 => System_Pack_34,
2788 RE_Get_34 => System_Pack_34,
2789 RE_GetU_34 => System_Pack_34,
2790 RE_Set_34 => System_Pack_34,
2791 RE_SetU_34 => System_Pack_34,
2793 RE_Bits_35 => System_Pack_35,
2794 RE_Get_35 => System_Pack_35,
2795 RE_Set_35 => System_Pack_35,
2797 RE_Bits_36 => System_Pack_36,
2798 RE_Get_36 => System_Pack_36,
2799 RE_GetU_36 => System_Pack_36,
2800 RE_Set_36 => System_Pack_36,
2801 RE_SetU_36 => System_Pack_36,
2803 RE_Bits_37 => System_Pack_37,
2804 RE_Get_37 => System_Pack_37,
2805 RE_Set_37 => System_Pack_37,
2807 RE_Bits_38 => System_Pack_38,
2808 RE_Get_38 => System_Pack_38,
2809 RE_GetU_38 => System_Pack_38,
2810 RE_Set_38 => System_Pack_38,
2811 RE_SetU_38 => System_Pack_38,
2813 RE_Bits_39 => System_Pack_39,
2814 RE_Get_39 => System_Pack_39,
2815 RE_Set_39 => System_Pack_39,
2817 RE_Bits_40 => System_Pack_40,
2818 RE_Get_40 => System_Pack_40,
2819 RE_GetU_40 => System_Pack_40,
2820 RE_Set_40 => System_Pack_40,
2821 RE_SetU_40 => System_Pack_40,
2823 RE_Bits_41 => System_Pack_41,
2824 RE_Get_41 => System_Pack_41,
2825 RE_Set_41 => System_Pack_41,
2827 RE_Bits_42 => System_Pack_42,
2828 RE_Get_42 => System_Pack_42,
2829 RE_GetU_42 => System_Pack_42,
2830 RE_Set_42 => System_Pack_42,
2831 RE_SetU_42 => System_Pack_42,
2833 RE_Bits_43 => System_Pack_43,
2834 RE_Get_43 => System_Pack_43,
2835 RE_Set_43 => System_Pack_43,
2837 RE_Bits_44 => System_Pack_44,
2838 RE_Get_44 => System_Pack_44,
2839 RE_GetU_44 => System_Pack_44,
2840 RE_Set_44 => System_Pack_44,
2841 RE_SetU_44 => System_Pack_44,
2843 RE_Bits_45 => System_Pack_45,
2844 RE_Get_45 => System_Pack_45,
2845 RE_Set_45 => System_Pack_45,
2847 RE_Bits_46 => System_Pack_46,
2848 RE_Get_46 => System_Pack_46,
2849 RE_GetU_46 => System_Pack_46,
2850 RE_Set_46 => System_Pack_46,
2851 RE_SetU_46 => System_Pack_46,
2853 RE_Bits_47 => System_Pack_47,
2854 RE_Get_47 => System_Pack_47,
2855 RE_Set_47 => System_Pack_47,
2857 RE_Bits_48 => System_Pack_48,
2858 RE_Get_48 => System_Pack_48,
2859 RE_GetU_48 => System_Pack_48,
2860 RE_Set_48 => System_Pack_48,
2861 RE_SetU_48 => System_Pack_48,
2863 RE_Bits_49 => System_Pack_49,
2864 RE_Get_49 => System_Pack_49,
2865 RE_Set_49 => System_Pack_49,
2867 RE_Bits_50 => System_Pack_50,
2868 RE_Get_50 => System_Pack_50,
2869 RE_GetU_50 => System_Pack_50,
2870 RE_Set_50 => System_Pack_50,
2871 RE_SetU_50 => System_Pack_50,
2873 RE_Bits_51 => System_Pack_51,
2874 RE_Get_51 => System_Pack_51,
2875 RE_Set_51 => System_Pack_51,
2877 RE_Bits_52 => System_Pack_52,
2878 RE_Get_52 => System_Pack_52,
2879 RE_GetU_52 => System_Pack_52,
2880 RE_Set_52 => System_Pack_52,
2881 RE_SetU_52 => System_Pack_52,
2883 RE_Bits_53 => System_Pack_53,
2884 RE_Get_53 => System_Pack_53,
2885 RE_Set_53 => System_Pack_53,
2887 RE_Bits_54 => System_Pack_54,
2888 RE_Get_54 => System_Pack_54,
2889 RE_GetU_54 => System_Pack_54,
2890 RE_Set_54 => System_Pack_54,
2891 RE_SetU_54 => System_Pack_54,
2893 RE_Bits_55 => System_Pack_55,
2894 RE_Get_55 => System_Pack_55,
2895 RE_Set_55 => System_Pack_55,
2897 RE_Bits_56 => System_Pack_56,
2898 RE_Get_56 => System_Pack_56,
2899 RE_GetU_56 => System_Pack_56,
2900 RE_Set_56 => System_Pack_56,
2901 RE_SetU_56 => System_Pack_56,
2903 RE_Bits_57 => System_Pack_57,
2904 RE_Get_57 => System_Pack_57,
2905 RE_Set_57 => System_Pack_57,
2907 RE_Bits_58 => System_Pack_58,
2908 RE_Get_58 => System_Pack_58,
2909 RE_GetU_58 => System_Pack_58,
2910 RE_Set_58 => System_Pack_58,
2911 RE_SetU_58 => System_Pack_58,
2913 RE_Bits_59 => System_Pack_59,
2914 RE_Get_59 => System_Pack_59,
2915 RE_Set_59 => System_Pack_59,
2917 RE_Bits_60 => System_Pack_60,
2918 RE_Get_60 => System_Pack_60,
2919 RE_GetU_60 => System_Pack_60,
2920 RE_Set_60 => System_Pack_60,
2921 RE_SetU_60 => System_Pack_60,
2923 RE_Bits_61 => System_Pack_61,
2924 RE_Get_61 => System_Pack_61,
2925 RE_Set_61 => System_Pack_61,
2927 RE_Bits_62 => System_Pack_62,
2928 RE_Get_62 => System_Pack_62,
2929 RE_GetU_62 => System_Pack_62,
2930 RE_Set_62 => System_Pack_62,
2931 RE_SetU_62 => System_Pack_62,
2933 RE_Bits_63 => System_Pack_63,
2934 RE_Get_63 => System_Pack_63,
2935 RE_Set_63 => System_Pack_63,
2937 RE_Bits_65 => System_Pack_65,
2938 RE_Get_65 => System_Pack_65,
2939 RE_Set_65 => System_Pack_65,
2941 RE_Bits_66 => System_Pack_66,
2942 RE_Get_66 => System_Pack_66,
2943 RE_GetU_66 => System_Pack_66,
2944 RE_Set_66 => System_Pack_66,
2945 RE_SetU_66 => System_Pack_66,
2947 RE_Bits_67 => System_Pack_67,
2948 RE_Get_67 => System_Pack_67,
2949 RE_Set_67 => System_Pack_67,
2951 RE_Bits_68 => System_Pack_68,
2952 RE_Get_68 => System_Pack_68,
2953 RE_GetU_68 => System_Pack_68,
2954 RE_Set_68 => System_Pack_68,
2955 RE_SetU_68 => System_Pack_68,
2957 RE_Bits_69 => System_Pack_69,
2958 RE_Get_69 => System_Pack_69,
2959 RE_Set_69 => System_Pack_69,
2961 RE_Bits_70 => System_Pack_70,
2962 RE_Get_70 => System_Pack_70,
2963 RE_GetU_70 => System_Pack_70,
2964 RE_Set_70 => System_Pack_70,
2965 RE_SetU_70 => System_Pack_70,
2967 RE_Bits_71 => System_Pack_71,
2968 RE_Get_71 => System_Pack_71,
2969 RE_Set_71 => System_Pack_71,
2971 RE_Bits_72 => System_Pack_72,
2972 RE_Get_72 => System_Pack_72,
2973 RE_GetU_72 => System_Pack_72,
2974 RE_Set_72 => System_Pack_72,
2975 RE_SetU_72 => System_Pack_72,
2977 RE_Bits_73 => System_Pack_73,
2978 RE_Get_73 => System_Pack_73,
2979 RE_Set_73 => System_Pack_73,
2981 RE_Bits_74 => System_Pack_74,
2982 RE_Get_74 => System_Pack_74,
2983 RE_GetU_74 => System_Pack_74,
2984 RE_Set_74 => System_Pack_74,
2985 RE_SetU_74 => System_Pack_74,
2987 RE_Bits_75 => System_Pack_75,
2988 RE_Get_75 => System_Pack_75,
2989 RE_Set_75 => System_Pack_75,
2991 RE_Bits_76 => System_Pack_76,
2992 RE_Get_76 => System_Pack_76,
2993 RE_GetU_76 => System_Pack_76,
2994 RE_Set_76 => System_Pack_76,
2995 RE_SetU_76 => System_Pack_76,
2997 RE_Bits_77 => System_Pack_77,
2998 RE_Get_77 => System_Pack_77,
2999 RE_Set_77 => System_Pack_77,
3001 RE_Bits_78 => System_Pack_78,
3002 RE_Get_78 => System_Pack_78,
3003 RE_GetU_78 => System_Pack_78,
3004 RE_Set_78 => System_Pack_78,
3005 RE_SetU_78 => System_Pack_78,
3007 RE_Bits_79 => System_Pack_79,
3008 RE_Get_79 => System_Pack_79,
3009 RE_Set_79 => System_Pack_79,
3011 RE_Bits_80 => System_Pack_80,
3012 RE_Get_80 => System_Pack_80,
3013 RE_GetU_80 => System_Pack_80,
3014 RE_Set_80 => System_Pack_80,
3015 RE_SetU_80 => System_Pack_80,
3017 RE_Bits_81 => System_Pack_81,
3018 RE_Get_81 => System_Pack_81,
3019 RE_Set_81 => System_Pack_81,
3021 RE_Bits_82 => System_Pack_82,
3022 RE_Get_82 => System_Pack_82,
3023 RE_GetU_82 => System_Pack_82,
3024 RE_Set_82 => System_Pack_82,
3025 RE_SetU_82 => System_Pack_82,
3027 RE_Bits_83 => System_Pack_83,
3028 RE_Get_83 => System_Pack_83,
3029 RE_Set_83 => System_Pack_83,
3031 RE_Bits_84 => System_Pack_84,
3032 RE_Get_84 => System_Pack_84,
3033 RE_GetU_84 => System_Pack_84,
3034 RE_Set_84 => System_Pack_84,
3035 RE_SetU_84 => System_Pack_84,
3037 RE_Bits_85 => System_Pack_85,
3038 RE_Get_85 => System_Pack_85,
3039 RE_Set_85 => System_Pack_85,
3041 RE_Bits_86 => System_Pack_86,
3042 RE_Get_86 => System_Pack_86,
3043 RE_GetU_86 => System_Pack_86,
3044 RE_Set_86 => System_Pack_86,
3045 RE_SetU_86 => System_Pack_86,
3047 RE_Bits_87 => System_Pack_87,
3048 RE_Get_87 => System_Pack_87,
3049 RE_Set_87 => System_Pack_87,
3051 RE_Bits_88 => System_Pack_88,
3052 RE_Get_88 => System_Pack_88,
3053 RE_GetU_88 => System_Pack_88,
3054 RE_Set_88 => System_Pack_88,
3055 RE_SetU_88 => System_Pack_88,
3057 RE_Bits_89 => System_Pack_89,
3058 RE_Get_89 => System_Pack_89,
3059 RE_Set_89 => System_Pack_89,
3061 RE_Bits_90 => System_Pack_90,
3062 RE_Get_90 => System_Pack_90,
3063 RE_GetU_90 => System_Pack_90,
3064 RE_Set_90 => System_Pack_90,
3065 RE_SetU_90 => System_Pack_90,
3067 RE_Bits_91 => System_Pack_91,
3068 RE_Get_91 => System_Pack_91,
3069 RE_Set_91 => System_Pack_91,
3071 RE_Bits_92 => System_Pack_92,
3072 RE_Get_92 => System_Pack_92,
3073 RE_GetU_92 => System_Pack_92,
3074 RE_Set_92 => System_Pack_92,
3075 RE_SetU_92 => System_Pack_92,
3077 RE_Bits_93 => System_Pack_93,
3078 RE_Get_93 => System_Pack_93,
3079 RE_Set_93 => System_Pack_93,
3081 RE_Bits_94 => System_Pack_94,
3082 RE_Get_94 => System_Pack_94,
3083 RE_GetU_94 => System_Pack_94,
3084 RE_Set_94 => System_Pack_94,
3085 RE_SetU_94 => System_Pack_94,
3087 RE_Bits_95 => System_Pack_95,
3088 RE_Get_95 => System_Pack_95,
3089 RE_Set_95 => System_Pack_95,
3091 RE_Bits_96 => System_Pack_96,
3092 RE_Get_96 => System_Pack_96,
3093 RE_GetU_96 => System_Pack_96,
3094 RE_Set_96 => System_Pack_96,
3095 RE_SetU_96 => System_Pack_96,
3097 RE_Bits_97 => System_Pack_97,
3098 RE_Get_97 => System_Pack_97,
3099 RE_Set_97 => System_Pack_97,
3101 RE_Bits_98 => System_Pack_98,
3102 RE_Get_98 => System_Pack_98,
3103 RE_GetU_98 => System_Pack_98,
3104 RE_Set_98 => System_Pack_98,
3105 RE_SetU_98 => System_Pack_98,
3107 RE_Bits_99 => System_Pack_99,
3108 RE_Get_99 => System_Pack_99,
3109 RE_Set_99 => System_Pack_99,
3111 RE_Bits_100 => System_Pack_100,
3112 RE_Get_100 => System_Pack_100,
3113 RE_GetU_100 => System_Pack_100,
3114 RE_Set_100 => System_Pack_100,
3115 RE_SetU_100 => System_Pack_100,
3117 RE_Bits_101 => System_Pack_101,
3118 RE_Get_101 => System_Pack_101,
3119 RE_Set_101 => System_Pack_101,
3121 RE_Bits_102 => System_Pack_102,
3122 RE_Get_102 => System_Pack_102,
3123 RE_GetU_102 => System_Pack_102,
3124 RE_Set_102 => System_Pack_102,
3125 RE_SetU_102 => System_Pack_102,
3127 RE_Bits_103 => System_Pack_103,
3128 RE_Get_103 => System_Pack_103,
3129 RE_Set_103 => System_Pack_103,
3131 RE_Bits_104 => System_Pack_104,
3132 RE_Get_104 => System_Pack_104,
3133 RE_GetU_104 => System_Pack_104,
3134 RE_Set_104 => System_Pack_104,
3135 RE_SetU_104 => System_Pack_104,
3137 RE_Bits_105 => System_Pack_105,
3138 RE_Get_105 => System_Pack_105,
3139 RE_Set_105 => System_Pack_105,
3141 RE_Bits_106 => System_Pack_106,
3142 RE_Get_106 => System_Pack_106,
3143 RE_GetU_106 => System_Pack_106,
3144 RE_Set_106 => System_Pack_106,
3145 RE_SetU_106 => System_Pack_106,
3147 RE_Bits_107 => System_Pack_107,
3148 RE_Get_107 => System_Pack_107,
3149 RE_Set_107 => System_Pack_107,
3151 RE_Bits_108 => System_Pack_108,
3152 RE_Get_108 => System_Pack_108,
3153 RE_GetU_108 => System_Pack_108,
3154 RE_Set_108 => System_Pack_108,
3155 RE_SetU_108 => System_Pack_108,
3157 RE_Bits_109 => System_Pack_109,
3158 RE_Get_109 => System_Pack_109,
3159 RE_Set_109 => System_Pack_109,
3161 RE_Bits_110 => System_Pack_110,
3162 RE_Get_110 => System_Pack_110,
3163 RE_GetU_110 => System_Pack_110,
3164 RE_Set_110 => System_Pack_110,
3165 RE_SetU_110 => System_Pack_110,
3167 RE_Bits_111 => System_Pack_111,
3168 RE_Get_111 => System_Pack_111,
3169 RE_Set_111 => System_Pack_111,
3171 RE_Bits_112 => System_Pack_112,
3172 RE_Get_112 => System_Pack_112,
3173 RE_GetU_112 => System_Pack_112,
3174 RE_Set_112 => System_Pack_112,
3175 RE_SetU_112 => System_Pack_112,
3177 RE_Bits_113 => System_Pack_113,
3178 RE_Get_113 => System_Pack_113,
3179 RE_Set_113 => System_Pack_113,
3181 RE_Bits_114 => System_Pack_114,
3182 RE_Get_114 => System_Pack_114,
3183 RE_GetU_114 => System_Pack_114,
3184 RE_Set_114 => System_Pack_114,
3185 RE_SetU_114 => System_Pack_114,
3187 RE_Bits_115 => System_Pack_115,
3188 RE_Get_115 => System_Pack_115,
3189 RE_Set_115 => System_Pack_115,
3191 RE_Bits_116 => System_Pack_116,
3192 RE_Get_116 => System_Pack_116,
3193 RE_GetU_116 => System_Pack_116,
3194 RE_Set_116 => System_Pack_116,
3195 RE_SetU_116 => System_Pack_116,
3197 RE_Bits_117 => System_Pack_117,
3198 RE_Get_117 => System_Pack_117,
3199 RE_Set_117 => System_Pack_117,
3201 RE_Bits_118 => System_Pack_118,
3202 RE_Get_118 => System_Pack_118,
3203 RE_GetU_118 => System_Pack_118,
3204 RE_Set_118 => System_Pack_118,
3205 RE_SetU_118 => System_Pack_118,
3207 RE_Bits_119 => System_Pack_119,
3208 RE_Get_119 => System_Pack_119,
3209 RE_Set_119 => System_Pack_119,
3211 RE_Bits_120 => System_Pack_120,
3212 RE_Get_120 => System_Pack_120,
3213 RE_GetU_120 => System_Pack_120,
3214 RE_Set_120 => System_Pack_120,
3215 RE_SetU_120 => System_Pack_120,
3217 RE_Bits_121 => System_Pack_121,
3218 RE_Get_121 => System_Pack_121,
3219 RE_Set_121 => System_Pack_121,
3221 RE_Bits_122 => System_Pack_122,
3222 RE_Get_122 => System_Pack_122,
3223 RE_GetU_122 => System_Pack_122,
3224 RE_Set_122 => System_Pack_122,
3225 RE_SetU_122 => System_Pack_122,
3227 RE_Bits_123 => System_Pack_123,
3228 RE_Get_123 => System_Pack_123,
3229 RE_Set_123 => System_Pack_123,
3231 RE_Bits_124 => System_Pack_124,
3232 RE_Get_124 => System_Pack_124,
3233 RE_GetU_124 => System_Pack_124,
3234 RE_Set_124 => System_Pack_124,
3235 RE_SetU_124 => System_Pack_124,
3237 RE_Bits_125 => System_Pack_125,
3238 RE_Get_125 => System_Pack_125,
3239 RE_Set_125 => System_Pack_125,
3241 RE_Bits_126 => System_Pack_126,
3242 RE_Get_126 => System_Pack_126,
3243 RE_GetU_126 => System_Pack_126,
3244 RE_Set_126 => System_Pack_126,
3245 RE_SetU_126 => System_Pack_126,
3247 RE_Bits_127 => System_Pack_127,
3248 RE_Get_127 => System_Pack_127,
3249 RE_Set_127 => System_Pack_127,
3251 RE_Adjust_Storage_Size => System_Parameters,
3252 RE_Default_Stack_Size => System_Parameters,
3253 RE_Size_Type => System_Parameters,
3254 RE_Unspecified_Size => System_Parameters,
3256 RE_DSA_Implementation => System_Partition_Interface,
3257 RE_PCS_Version => System_Partition_Interface,
3258 RE_Get_RACW => System_Partition_Interface,
3259 RE_Get_RCI_Package_Receiver => System_Partition_Interface,
3260 RE_Get_Unique_Remote_Pointer => System_Partition_Interface,
3261 RE_RACW_Stub_Type => System_Partition_Interface,
3262 RE_RACW_Stub_Type_Access => System_Partition_Interface,
3263 RE_RAS_Proxy_Type_Access => System_Partition_Interface,
3264 RE_Raise_Program_Error_Unknown_Tag => System_Partition_Interface,
3265 RE_Register_Passive_Package => System_Partition_Interface,
3266 RE_Register_Receiving_Stub => System_Partition_Interface,
3267 RE_Request => System_Partition_Interface,
3268 RE_Request_Access => System_Partition_Interface,
3269 RE_RCI_Locator => System_Partition_Interface,
3270 RE_RCI_Subp_Info => System_Partition_Interface,
3271 RE_RCI_Subp_Info_Array => System_Partition_Interface,
3272 RE_Same_Partition => System_Partition_Interface,
3273 RE_Subprogram_Id => System_Partition_Interface,
3274 RE_Get_RAS_Info => System_Partition_Interface,
3276 RE_To_PolyORB_String => System_Partition_Interface,
3277 RE_Caseless_String_Eq => System_Partition_Interface,
3278 RE_TypeCode => System_Partition_Interface,
3279 RE_Any => System_Partition_Interface,
3280 RE_Mode_In => System_Partition_Interface,
3281 RE_Mode_Out => System_Partition_Interface,
3282 RE_Mode_Inout => System_Partition_Interface,
3283 RE_NamedValue => System_Partition_Interface,
3284 RE_Result_Name => System_Partition_Interface,
3285 RE_Object_Ref => System_Partition_Interface,
3286 RE_Create_Any => System_Partition_Interface,
3287 RE_Any_Aggregate_Build => System_Partition_Interface,
3288 RE_Add_Aggregate_Element => System_Partition_Interface,
3289 RE_Get_Aggregate_Element => System_Partition_Interface,
3290 RE_Content_Type => System_Partition_Interface,
3291 RE_Any_Member_Type => System_Partition_Interface,
3292 RE_Get_Nested_Sequence_Length => System_Partition_Interface,
3293 RE_Get_Any_Type => System_Partition_Interface,
3294 RE_Extract_Union_Value => System_Partition_Interface,
3295 RE_NVList_Ref => System_Partition_Interface,
3296 RE_NVList_Create => System_Partition_Interface,
3297 RE_NVList_Add_Item => System_Partition_Interface,
3298 RE_Request_Arguments => System_Partition_Interface,
3299 RE_Request_Invoke => System_Partition_Interface,
3300 RE_Request_Raise_Occurrence => System_Partition_Interface,
3301 RE_Request_Set_Out => System_Partition_Interface,
3302 RE_Request_Setup => System_Partition_Interface,
3303 RE_Nil_Exc_List => System_Partition_Interface,
3304 RE_Servant => System_Partition_Interface,
3305 RE_Move_Any_Value => System_Partition_Interface,
3306 RE_Set_Result => System_Partition_Interface,
3307 RE_Register_Obj_Receiving_Stub => System_Partition_Interface,
3308 RE_Register_Pkg_Receiving_Stub => System_Partition_Interface,
3309 RE_Entity_Of => System_Partition_Interface,
3310 RE_Inc_Usage => System_Partition_Interface,
3311 RE_Make_Ref => System_Partition_Interface,
3312 RE_Get_Local_Address => System_Partition_Interface,
3313 RE_Get_Reference => System_Partition_Interface,
3314 RE_Asynchronous_P_To_Sync_Scope => System_Partition_Interface,
3315 RE_Buffer_Stream_Type => System_Partition_Interface,
3316 RE_Release_Buffer => System_Partition_Interface,
3317 RE_BS_To_Any => System_Partition_Interface,
3318 RE_Any_To_BS => System_Partition_Interface,
3319 RE_Build_Complex_TC => System_Partition_Interface,
3320 RE_Get_TC => System_Partition_Interface,
3321 RE_Set_TC => System_Partition_Interface,
3323 RE_FA_A => System_Partition_Interface,
3324 RE_FA_B => System_Partition_Interface,
3325 RE_FA_C => System_Partition_Interface,
3326 RE_FA_F => System_Partition_Interface,
3327 RE_FA_I8 => System_Partition_Interface,
3328 RE_FA_I16 => System_Partition_Interface,
3329 RE_FA_I32 => System_Partition_Interface,
3330 RE_FA_I64 => System_Partition_Interface,
3331 RE_FA_LF => System_Partition_Interface,
3332 RE_FA_LLF => System_Partition_Interface,
3333 RE_FA_SF => System_Partition_Interface,
3334 RE_FA_U8 => System_Partition_Interface,
3335 RE_FA_U16 => System_Partition_Interface,
3336 RE_FA_U32 => System_Partition_Interface,
3337 RE_FA_U64 => System_Partition_Interface,
3338 RE_FA_WC => System_Partition_Interface,
3339 RE_FA_WWC => System_Partition_Interface,
3340 RE_FA_String => System_Partition_Interface,
3341 RE_FA_ObjRef => System_Partition_Interface,
3343 RE_TA_A => System_Partition_Interface,
3344 RE_TA_B => System_Partition_Interface,
3345 RE_TA_C => System_Partition_Interface,
3346 RE_TA_F => System_Partition_Interface,
3347 RE_TA_I8 => System_Partition_Interface,
3348 RE_TA_I16 => System_Partition_Interface,
3349 RE_TA_I32 => System_Partition_Interface,
3350 RE_TA_I64 => System_Partition_Interface,
3351 RE_TA_LF => System_Partition_Interface,
3352 RE_TA_LLF => System_Partition_Interface,
3353 RE_TA_SF => System_Partition_Interface,
3354 RE_TA_U8 => System_Partition_Interface,
3355 RE_TA_U16 => System_Partition_Interface,
3356 RE_TA_U32 => System_Partition_Interface,
3357 RE_TA_U64 => System_Partition_Interface,
3358 RE_TA_WC => System_Partition_Interface,
3359 RE_TA_WWC => System_Partition_Interface,
3360 RE_TA_String => System_Partition_Interface,
3361 RE_TA_ObjRef => System_Partition_Interface,
3362 RE_TA_Std_String => System_Partition_Interface,
3363 RE_TA_TC => System_Partition_Interface,
3365 RE_TC_A => System_Partition_Interface,
3366 RE_TC_B => System_Partition_Interface,
3367 RE_TC_C => System_Partition_Interface,
3368 RE_TC_F => System_Partition_Interface,
3369 RE_TC_I8 => System_Partition_Interface,
3370 RE_TC_I16 => System_Partition_Interface,
3371 RE_TC_I32 => System_Partition_Interface,
3372 RE_TC_I64 => System_Partition_Interface,
3373 RE_TC_LF => System_Partition_Interface,
3374 RE_TC_LLF => System_Partition_Interface,
3375 RE_TC_SF => System_Partition_Interface,
3376 RE_TC_U8 => System_Partition_Interface,
3377 RE_TC_U16 => System_Partition_Interface,
3378 RE_TC_U32 => System_Partition_Interface,
3379 RE_TC_U64 => System_Partition_Interface,
3380 RE_TC_Void => System_Partition_Interface,
3381 RE_TC_Opaque => System_Partition_Interface,
3382 RE_TC_WC => System_Partition_Interface,
3383 RE_TC_WWC => System_Partition_Interface,
3384 RE_TC_String => System_Partition_Interface,
3386 RE_Tk_Alias => System_Partition_Interface,
3387 RE_Tk_Array => System_Partition_Interface,
3388 RE_Tk_Sequence => System_Partition_Interface,
3389 RE_Tk_Struct => System_Partition_Interface,
3390 RE_Tk_Objref => System_Partition_Interface,
3391 RE_Tk_Union => System_Partition_Interface,
3393 RE_Global_Pool_Object => System_Pool_Global,
3395 RE_Stack_Bounded_Pool => System_Pool_Size,
3397 RE_Put_Image_Integer => System_Put_Images,
3398 RE_Put_Image_Long_Long_Integer => System_Put_Images,
3399 RE_Put_Image_Long_Long_Long_Integer => System_Put_Images,
3400 RE_Put_Image_Unsigned => System_Put_Images,
3401 RE_Put_Image_Long_Long_Unsigned => System_Put_Images,
3402 RE_Put_Image_Long_Long_Long_Unsigned => System_Put_Images,
3403 RE_Put_Image_Thin_Pointer => System_Put_Images,
3404 RE_Put_Image_Fat_Pointer => System_Put_Images,
3405 RE_Put_Image_Access_Subp => System_Put_Images,
3406 RE_Put_Image_Access_Prot_Subp => System_Put_Images,
3407 RE_Put_Image_String => System_Put_Images,
3408 RE_Put_Image_Wide_String => System_Put_Images,
3409 RE_Put_Image_Wide_Wide_String => System_Put_Images,
3410 RE_Array_Before => System_Put_Images,
3411 RE_Array_Between => System_Put_Images,
3412 RE_Array_After => System_Put_Images,
3413 RE_Simple_Array_Between => System_Put_Images,
3414 RE_Record_Before => System_Put_Images,
3415 RE_Record_Between => System_Put_Images,
3416 RE_Record_After => System_Put_Images,
3417 RE_Put_Image_Unknown => System_Put_Images,
3419 RE_Put_Image_Protected => System_Put_Task_Images,
3420 RE_Put_Image_Task => System_Put_Task_Images,
3422 RO_RD_Delay_For => System_Relative_Delays,
3424 RE_RS_Allocate => System_Return_Stack,
3425 RE_RS_Pool => System_Return_Stack,
3427 RE_Do_Apc => System_RPC,
3428 RE_Do_Rpc => System_RPC,
3429 RE_Params_Stream_Type => System_RPC,
3430 RE_Partition_ID => System_RPC,
3432 RE_IS_Is1 => System_Scalar_Values,
3433 RE_IS_Is2 => System_Scalar_Values,
3434 RE_IS_Is4 => System_Scalar_Values,
3435 RE_IS_Is8 => System_Scalar_Values,
3436 RE_IS_Is16 => System_Scalar_Values,
3437 RE_IS_Iu1 => System_Scalar_Values,
3438 RE_IS_Iu2 => System_Scalar_Values,
3439 RE_IS_Iu4 => System_Scalar_Values,
3440 RE_IS_Iu8 => System_Scalar_Values,
3441 RE_IS_Iu16 => System_Scalar_Values,
3442 RE_IS_Isf => System_Scalar_Values,
3443 RE_IS_Ifl => System_Scalar_Values,
3444 RE_IS_Ilf => System_Scalar_Values,
3445 RE_IS_Ill => System_Scalar_Values,
3447 RE_Mark_Id => System_Secondary_Stack,
3448 RE_SS_Allocate => System_Secondary_Stack,
3449 RE_SS_Mark => System_Secondary_Stack,
3450 RE_SS_Pool => System_Secondary_Stack,
3451 RE_SS_Release => System_Secondary_Stack,
3452 RE_SS_Stack => System_Secondary_Stack,
3454 RE_Shared_Var_Lock => System_Shared_Storage,
3455 RE_Shared_Var_Unlock => System_Shared_Storage,
3456 RE_Shared_Var_Procs => System_Shared_Storage,
3458 RE_Abort_Undefer_Direct => System_Standard_Library,
3459 RE_Exception_Data_Ptr => System_Standard_Library,
3461 RE_Integer_Address => System_Storage_Elements,
3462 RE_Storage_Array => System_Storage_Elements,
3463 RE_Storage_Count => System_Storage_Elements,
3464 RE_Storage_Offset => System_Storage_Elements,
3465 RE_To_Address => System_Storage_Elements,
3467 RE_Allocate_Any => System_Storage_Pools,
3468 RE_Deallocate_Any => System_Storage_Pools,
3469 RE_Root_Storage_Pool => System_Storage_Pools,
3470 RE_Root_Storage_Pool_Ptr => System_Storage_Pools,
3472 RE_Adjust_Controlled_Dereference => System_Storage_Pools_Subpools,
3473 RE_Allocate_Any_Controlled => System_Storage_Pools_Subpools,
3474 RE_Deallocate_Any_Controlled => System_Storage_Pools_Subpools,
3475 RE_Header_Size_With_Padding => System_Storage_Pools_Subpools,
3476 RE_Root_Storage_Pool_With_Subpools => System_Storage_Pools_Subpools,
3478 RE_I_AD => System_Stream_Attributes,
3479 RE_I_AS => System_Stream_Attributes,
3480 RE_I_B => System_Stream_Attributes,
3481 RE_I_C => System_Stream_Attributes,
3482 RE_I_F => System_Stream_Attributes,
3483 RE_I_I => System_Stream_Attributes,
3484 RE_I_I24 => System_Stream_Attributes,
3485 RE_I_LF => System_Stream_Attributes,
3486 RE_I_LI => System_Stream_Attributes,
3487 RE_I_LLF => System_Stream_Attributes,
3488 RE_I_LLI => System_Stream_Attributes,
3489 RE_I_LLLI => System_Stream_Attributes,
3490 RE_I_LLLU => System_Stream_Attributes,
3491 RE_I_LLU => System_Stream_Attributes,
3492 RE_I_LU => System_Stream_Attributes,
3493 RE_I_SF => System_Stream_Attributes,
3494 RE_I_SI => System_Stream_Attributes,
3495 RE_I_SSI => System_Stream_Attributes,
3496 RE_I_SSU => System_Stream_Attributes,
3497 RE_I_SU => System_Stream_Attributes,
3498 RE_I_U => System_Stream_Attributes,
3499 RE_I_U24 => System_Stream_Attributes,
3500 RE_I_WC => System_Stream_Attributes,
3501 RE_I_WWC => System_Stream_Attributes,
3503 RE_W_AD => System_Stream_Attributes,
3504 RE_W_AS => System_Stream_Attributes,
3505 RE_W_B => System_Stream_Attributes,
3506 RE_W_C => System_Stream_Attributes,
3507 RE_W_F => System_Stream_Attributes,
3508 RE_W_I => System_Stream_Attributes,
3509 RE_W_I24 => System_Stream_Attributes,
3510 RE_W_LF => System_Stream_Attributes,
3511 RE_W_LI => System_Stream_Attributes,
3512 RE_W_LLF => System_Stream_Attributes,
3513 RE_W_LLI => System_Stream_Attributes,
3514 RE_W_LLLI => System_Stream_Attributes,
3515 RE_W_LLLU => System_Stream_Attributes,
3516 RE_W_LLU => System_Stream_Attributes,
3517 RE_W_LU => System_Stream_Attributes,
3518 RE_W_SF => System_Stream_Attributes,
3519 RE_W_SI => System_Stream_Attributes,
3520 RE_W_SSI => System_Stream_Attributes,
3521 RE_W_SSU => System_Stream_Attributes,
3522 RE_W_SU => System_Stream_Attributes,
3523 RE_W_U => System_Stream_Attributes,
3524 RE_W_U24 => System_Stream_Attributes,
3525 RE_W_WC => System_Stream_Attributes,
3526 RE_W_WWC => System_Stream_Attributes,
3528 RE_Storage_Array_Input => System_Strings_Stream_Ops,
3529 RE_Storage_Array_Input_Blk_IO => System_Strings_Stream_Ops,
3530 RE_Storage_Array_Output => System_Strings_Stream_Ops,
3531 RE_Storage_Array_Output_Blk_IO => System_Strings_Stream_Ops,
3532 RE_Storage_Array_Read => System_Strings_Stream_Ops,
3533 RE_Storage_Array_Read_Blk_IO => System_Strings_Stream_Ops,
3534 RE_Storage_Array_Write => System_Strings_Stream_Ops,
3535 RE_Storage_Array_Write_Blk_IO => System_Strings_Stream_Ops,
3537 RE_Stream_Element_Array_Input => System_Strings_Stream_Ops,
3538 RE_Stream_Element_Array_Input_Blk_IO => System_Strings_Stream_Ops,
3539 RE_Stream_Element_Array_Output => System_Strings_Stream_Ops,
3540 RE_Stream_Element_Array_Output_Blk_IO => System_Strings_Stream_Ops,
3541 RE_Stream_Element_Array_Read => System_Strings_Stream_Ops,
3542 RE_Stream_Element_Array_Read_Blk_IO => System_Strings_Stream_Ops,
3543 RE_Stream_Element_Array_Write => System_Strings_Stream_Ops,
3544 RE_Stream_Element_Array_Write_Blk_IO => System_Strings_Stream_Ops,
3546 RE_String_Input => System_Strings_Stream_Ops,
3547 RE_String_Input_Blk_IO => System_Strings_Stream_Ops,
3548 RE_String_Input_Tag => System_Strings_Stream_Ops,
3549 RE_String_Output => System_Strings_Stream_Ops,
3550 RE_String_Output_Blk_IO => System_Strings_Stream_Ops,
3551 RE_String_Read => System_Strings_Stream_Ops,
3552 RE_String_Read_Blk_IO => System_Strings_Stream_Ops,
3553 RE_String_Write => System_Strings_Stream_Ops,
3554 RE_String_Write_Blk_IO => System_Strings_Stream_Ops,
3556 RE_Wide_String_Input => System_Strings_Stream_Ops,
3557 RE_Wide_String_Input_Blk_IO => System_Strings_Stream_Ops,
3558 RE_Wide_String_Output => System_Strings_Stream_Ops,
3559 RE_Wide_String_Output_Blk_IO => System_Strings_Stream_Ops,
3560 RE_Wide_String_Read => System_Strings_Stream_Ops,
3561 RE_Wide_String_Read_Blk_IO => System_Strings_Stream_Ops,
3562 RE_Wide_String_Write => System_Strings_Stream_Ops,
3564 RE_Wide_String_Write_Blk_IO => System_Strings_Stream_Ops,
3565 RE_Wide_Wide_String_Input => System_Strings_Stream_Ops,
3566 RE_Wide_Wide_String_Input_Blk_IO => System_Strings_Stream_Ops,
3567 RE_Wide_Wide_String_Output => System_Strings_Stream_Ops,
3568 RE_Wide_Wide_String_Output_Blk_IO => System_Strings_Stream_Ops,
3569 RE_Wide_Wide_String_Read => System_Strings_Stream_Ops,
3570 RE_Wide_Wide_String_Read_Blk_IO => System_Strings_Stream_Ops,
3571 RE_Wide_Wide_String_Write => System_Strings_Stream_Ops,
3572 RE_Wide_Wide_String_Write_Blk_IO => System_Strings_Stream_Ops,
3574 RE_Task_Info_Type => System_Task_Info,
3575 RE_Unspecified_Task_Info => System_Task_Info,
3577 RE_Task_Procedure_Access => System_Tasking,
3578 RO_ST_Number_Of_Entries => System_Tasking,
3580 RO_ST_Task_Id => System_Tasking,
3581 RO_ST_Null_Task => System_Tasking,
3583 RE_Call_Modes => System_Tasking,
3584 RE_Simple_Call => System_Tasking,
3585 RE_Conditional_Call => System_Tasking,
3586 RE_Asynchronous_Call => System_Tasking,
3588 RE_Ada_Task_Control_Block => System_Tasking,
3590 RE_Task_List => System_Tasking,
3592 RE_Accept_List => System_Tasking,
3593 RE_No_Rendezvous => System_Tasking,
3594 RE_Null_Task_Entry => System_Tasking,
3595 RE_Select_Index => System_Tasking,
3596 RE_Else_Mode => System_Tasking,
3597 RE_Simple_Mode => System_Tasking,
3598 RE_Terminate_Mode => System_Tasking,
3599 RE_Delay_Mode => System_Tasking,
3600 RE_Task_Entry_Index => System_Tasking,
3601 RE_Self => System_Tasking,
3603 RE_Unspecified_Priority => System_Tasking,
3605 RE_Activation_Chain => System_Tasking,
3606 RE_Activation_Chain_Access => System_Tasking,
3607 RE_Storage_Size => System_Tasking,
3609 RE_Unspecified_CPU => System_Tasking,
3611 RE_Dispatching_Domain_Access => System_Tasking,
3613 RE_Abort_Defer => System_Soft_Links,
3614 RE_Abort_Undefer => System_Soft_Links,
3615 RE_Complete_Master => System_Soft_Links,
3616 RE_Current_Master => System_Soft_Links,
3617 RE_Dummy_Communication_Block => System_Soft_Links,
3618 RE_Enter_Master => System_Soft_Links,
3619 RE_Get_Current_Excep => System_Soft_Links,
3620 RE_Get_GNAT_Exception => System_Soft_Links,
3621 RE_Save_Library_Occurrence => System_Soft_Links,
3623 RE_Bits_1 => System_Unsigned_Types,
3624 RE_Bits_2 => System_Unsigned_Types,
3625 RE_Bits_4 => System_Unsigned_Types,
3626 RE_Long_Long_Unsigned => System_Unsigned_Types,
3627 RE_Long_Long_Long_Unsigned => System_Unsigned_Types,
3628 RE_Packed_Byte => System_Unsigned_Types,
3629 RE_Packed_Bytes1 => System_Unsigned_Types,
3630 RE_Packed_Bytes2 => System_Unsigned_Types,
3631 RE_Packed_Bytes4 => System_Unsigned_Types,
3632 RE_Rev_Packed_Bytes1 => System_Unsigned_Types,
3633 RE_Rev_Packed_Bytes2 => System_Unsigned_Types,
3634 RE_Rev_Packed_Bytes4 => System_Unsigned_Types,
3635 RE_Unsigned => System_Unsigned_Types,
3637 RE_Value_Boolean => System_Val_Bool,
3639 RE_Value_Character => System_Val_Char,
3641 RE_Value_Decimal32 => System_Val_Decimal_32,
3643 RE_Value_Decimal64 => System_Val_Decimal_64,
3645 RE_Value_Decimal128 => System_Val_Decimal_128,
3647 RE_Value_Enumeration_8 => System_Val_Enum_8,
3649 RE_Value_Enumeration_16 => System_Val_Enum_16,
3651 RE_Value_Enumeration_32 => System_Val_Enum_32,
3653 RE_Valid_Value_Enumeration_8 => System_Val_Enum_8,
3655 RE_Valid_Value_Enumeration_16 => System_Val_Enum_16,
3657 RE_Valid_Value_Enumeration_32 => System_Val_Enum_32,
3659 RE_Value_Fixed32 => System_Val_Fixed_32,
3661 RE_Value_Fixed64 => System_Val_Fixed_64,
3663 RE_Value_Fixed128 => System_Val_Fixed_128,
3665 RE_Value_Float => System_Val_Flt,
3667 RE_Value_Integer => System_Val_Int,
3669 RE_Value_Long_Float => System_Val_LFlt,
3671 RE_Value_Long_Long_Float => System_Val_LLF,
3673 RE_Value_Long_Long_Integer => System_Val_LLI,
3675 RE_Value_Long_Long_Long_Integer => System_Val_LLLI,
3677 RE_Value_Long_Long_Unsigned => System_Val_LLU,
3679 RE_Value_Long_Long_Long_Unsigned => System_Val_LLLU,
3681 RE_Value_Unsigned => System_Val_Uns,
3683 RE_Value_Wide_Character => System_Val_WChar,
3684 RE_Value_Wide_Wide_Character => System_Val_WChar,
3686 RE_Version_String => System_Version_Control,
3687 RE_Get_Version_String => System_Version_Control,
3689 RE_String_To_Wide_String => System_WCh_StW,
3690 RE_String_To_Wide_Wide_String => System_WCh_StW,
3692 RE_Wide_String_To_String => System_WCh_WtS,
3693 RE_Wide_Wide_String_To_String => System_WCh_WtS,
3695 RE_Wide_Wide_Width_Character => System_WWd_Char,
3696 RE_Wide_Width_Character => System_WWd_Char,
3698 RE_Wide_Wide_Width_Enumeration_8 => System_WWd_Enum,
3699 RE_Wide_Wide_Width_Enumeration_16 => System_WWd_Enum,
3700 RE_Wide_Wide_Width_Enumeration_32 => System_WWd_Enum,
3702 RE_Wide_Width_Enumeration_8 => System_WWd_Enum,
3703 RE_Wide_Width_Enumeration_16 => System_WWd_Enum,
3704 RE_Wide_Width_Enumeration_32 => System_WWd_Enum,
3706 RE_Wide_Wide_Width_Wide_Character => System_WWd_Wchar,
3707 RE_Wide_Wide_Width_Wide_Wide_Char => System_WWd_Wchar,
3709 RE_Wide_Width_Wide_Character => System_WWd_Wchar,
3710 RE_Wide_Width_Wide_Wide_Character => System_WWd_Wchar,
3712 RE_Width_Boolean => System_Wid_Bool,
3714 RE_Width_Character => System_Wid_Char,
3716 RE_Width_Enumeration_8 => System_Wid_Enum,
3717 RE_Width_Enumeration_16 => System_Wid_Enum,
3718 RE_Width_Enumeration_32 => System_Wid_Enum,
3720 RE_Width_Integer => System_Wid_Int,
3722 RE_Width_Long_Long_Integer => System_Wid_LLI,
3724 RE_Width_Long_Long_Long_Integer => System_Wid_LLLI,
3726 RE_Width_Long_Long_Unsigned => System_Wid_LLU,
3728 RE_Width_Long_Long_Long_Unsigned => System_Wid_LLLU,
3730 RE_Width_Unsigned => System_Wid_Uns,
3732 RE_Width_Wide_Character => System_Wid_WChar,
3733 RE_Width_Wide_Wide_Character => System_Wid_WChar,
3735 RE_Dispatching_Domain =>
3736 System_Multiprocessors_Dispatching_Domains,
3738 RE_Protected_Entry_Body_Array =>
3739 System_Tasking_Protected_Objects_Entries,
3740 RE_Protected_Entry_Queue_Max_Array =>
3741 System_Tasking_Protected_Objects_Entries,
3742 RE_Protection_Entries =>
3743 System_Tasking_Protected_Objects_Entries,
3744 RE_Protection_Entries_Access =>
3745 System_Tasking_Protected_Objects_Entries,
3746 RE_Initialize_Protection_Entries =>
3747 System_Tasking_Protected_Objects_Entries,
3748 RE_Lock_Entries =>
3749 System_Tasking_Protected_Objects_Entries,
3750 RE_Unlock_Entries =>
3751 System_Tasking_Protected_Objects_Entries,
3752 RO_PE_Get_Ceiling =>
3753 System_Tasking_Protected_Objects_Entries,
3754 RO_PE_Number_Of_Entries =>
3755 System_Tasking_Protected_Objects_Entries,
3756 RO_PE_Set_Ceiling =>
3757 System_Tasking_Protected_Objects_Entries,
3759 RE_Communication_Block =>
3760 System_Tasking_Protected_Objects_Operations,
3761 RE_Protected_Entry_Call =>
3762 System_Tasking_Protected_Objects_Operations,
3763 RE_Service_Entries =>
3764 System_Tasking_Protected_Objects_Operations,
3765 RE_Cancel_Protected_Entry_Call =>
3766 System_Tasking_Protected_Objects_Operations,
3767 RE_Enqueued =>
3768 System_Tasking_Protected_Objects_Operations,
3769 RE_Cancelled =>
3770 System_Tasking_Protected_Objects_Operations,
3771 RE_Complete_Entry_Body =>
3772 System_Tasking_Protected_Objects_Operations,
3773 RE_Exceptional_Complete_Entry_Body =>
3774 System_Tasking_Protected_Objects_Operations,
3775 RE_Requeue_Protected_Entry =>
3776 System_Tasking_Protected_Objects_Operations,
3777 RE_Requeue_Task_To_Protected_Entry =>
3778 System_Tasking_Protected_Objects_Operations,
3779 RE_Protected_Count =>
3780 System_Tasking_Protected_Objects_Operations,
3781 RE_Protected_Entry_Caller =>
3782 System_Tasking_Protected_Objects_Operations,
3783 RE_Timed_Protected_Entry_Call =>
3784 System_Tasking_Protected_Objects_Operations,
3786 RE_Protection_Entry =>
3787 System_Tasking_Protected_Objects_Single_Entry,
3788 RE_Initialize_Protection_Entry =>
3789 System_Tasking_Protected_Objects_Single_Entry,
3790 RE_Lock_Entry =>
3791 System_Tasking_Protected_Objects_Single_Entry,
3792 RE_Unlock_Entry =>
3793 System_Tasking_Protected_Objects_Single_Entry,
3794 RE_Protected_Single_Entry_Call =>
3795 System_Tasking_Protected_Objects_Single_Entry,
3796 RE_Service_Entry =>
3797 System_Tasking_Protected_Objects_Single_Entry,
3798 RE_Exceptional_Complete_Single_Entry_Body =>
3799 System_Tasking_Protected_Objects_Single_Entry,
3800 RE_Protected_Count_Entry =>
3801 System_Tasking_Protected_Objects_Single_Entry,
3802 RE_Protected_Single_Entry_Caller =>
3803 System_Tasking_Protected_Objects_Single_Entry,
3805 RE_Protected_Entry_Index => System_Tasking_Protected_Objects,
3806 RE_Entry_Body => System_Tasking_Protected_Objects,
3807 RE_Protection => System_Tasking_Protected_Objects,
3808 RE_Initialize_Protection => System_Tasking_Protected_Objects,
3809 RE_Finalize_Protection => System_Tasking_Protected_Objects,
3810 RE_Lock => System_Tasking_Protected_Objects,
3811 RE_Lock_Read_Only => System_Tasking_Protected_Objects,
3812 RE_Get_Ceiling => System_Tasking_Protected_Objects,
3813 RE_Set_Ceiling => System_Tasking_Protected_Objects,
3814 RE_Unlock => System_Tasking_Protected_Objects,
3816 RE_Delay_Block => System_Tasking_Async_Delays,
3817 RE_Timed_Out => System_Tasking_Async_Delays,
3818 RE_Cancel_Async_Delay => System_Tasking_Async_Delays,
3819 RE_Enqueue_Duration => System_Tasking_Async_Delays,
3821 RE_Enqueue_Calendar =>
3822 System_Tasking_Async_Delays_Enqueue_Calendar,
3823 RE_Enqueue_RT =>
3824 System_Tasking_Async_Delays_Enqueue_RT,
3826 RE_Accept_Call => System_Tasking_Rendezvous,
3827 RE_Accept_Trivial => System_Tasking_Rendezvous,
3828 RE_Callable => System_Tasking_Rendezvous,
3829 RE_Call_Simple => System_Tasking_Rendezvous,
3830 RE_Cancel_Task_Entry_Call => System_Tasking_Rendezvous,
3831 RE_Requeue_Task_Entry => System_Tasking_Rendezvous,
3832 RE_Requeue_Protected_To_Task_Entry => System_Tasking_Rendezvous,
3833 RE_Complete_Rendezvous => System_Tasking_Rendezvous,
3834 RE_Task_Count => System_Tasking_Rendezvous,
3835 RE_Exceptional_Complete_Rendezvous => System_Tasking_Rendezvous,
3836 RE_Selective_Wait => System_Tasking_Rendezvous,
3837 RE_Task_Entry_Call => System_Tasking_Rendezvous,
3838 RE_Task_Entry_Caller => System_Tasking_Rendezvous,
3839 RE_Timed_Task_Entry_Call => System_Tasking_Rendezvous,
3840 RE_Timed_Selective_Wait => System_Tasking_Rendezvous,
3842 RE_Activate_Restricted_Tasks => System_Tasking_Restricted_Stages,
3843 RE_Complete_Restricted_Activation => System_Tasking_Restricted_Stages,
3844 RE_Create_Restricted_Task => System_Tasking_Restricted_Stages,
3845 RE_Create_Restricted_Task_Sequential => System_Tasking_Restricted_Stages,
3846 RE_Complete_Restricted_Task => System_Tasking_Restricted_Stages,
3847 RE_Restricted_Terminated => System_Tasking_Restricted_Stages,
3849 RE_Abort_Tasks => System_Tasking_Stages,
3850 RE_Activate_Tasks => System_Tasking_Stages,
3851 RE_Complete_Activation => System_Tasking_Stages,
3852 RE_Create_Task => System_Tasking_Stages,
3853 RE_Complete_Task => System_Tasking_Stages,
3854 RE_Free_Task => System_Tasking_Stages,
3855 RE_Expunge_Unactivated_Tasks => System_Tasking_Stages,
3856 RE_Move_Activation_Chain => System_Tasking_Stages,
3857 RE_Terminated => System_Tasking_Stages);
3859 --------------------------------
3860 -- Configurable Run-Time Mode --
3861 --------------------------------
3863 -- Part of the job of Rtsfind is to enforce run-time restrictions in
3864 -- configurable run-time mode. This is done by monitoring implicit access
3865 -- to the run time library requested by calls to the RTE function. A call
3866 -- may be invalid in configurable run-time mode for either of the
3867 -- following two reasons:
3869 -- 1. File in which entity lives is not present in run-time library
3870 -- 2. File is present, but entity is not defined in the file
3872 -- In normal mode, either or these two situations is a fatal error
3873 -- that indicates that the run-time library is incorrectly configured,
3874 -- and a fatal error message is issued to signal this error.
3876 -- In configurable run-time mode, either of these two situations indicates
3877 -- simply that the corresponding operation is not available in the current
3878 -- run-time that is use. This is not a configuration error, but rather a
3879 -- natural result of a limited run-time. This situation is signalled by
3880 -- raising the exception RE_Not_Available. The caller must respond to
3881 -- this exception by posting an appropriate error message.
3883 ----------------------
3884 -- No_Run_Time_Mode --
3885 ----------------------
3887 -- For backwards compatibility with previous versions of GNAT, the
3888 -- compiler recognizes the pragma No_Run_Time. This provides a special
3889 -- version of configurable run-time mode that operates with the standard
3890 -- run-time library, but allows only a subset of entities to be
3891 -- accessed. If any other entity is accessed, then it is treated
3892 -- as a configurable run-time violation, and the exception
3893 -- RE_Not_Available is raised.
3895 -- The following array defines the set of units that contain entities
3896 -- that can be referenced in No_Run_Time mode. For each of these units,
3897 -- all entities defined in the unit can be used in this mode.
3899 OK_No_Run_Time_Unit : constant array (RTU_Id) of Boolean :=
3900 (Ada_Exceptions => True,
3901 Ada_Tags => True,
3902 Interfaces => True,
3903 System => True,
3904 System_Parameters => True,
3905 System_Fat_Flt => True,
3906 System_Fat_LFlt => True,
3907 System_Fat_LLF => True,
3908 System_Fat_SFlt => True,
3909 System_Machine_Code => True,
3910 System_Return_Stack => True,
3911 System_Secondary_Stack => True,
3912 System_Storage_Elements => True,
3913 System_Task_Info => True,
3914 System_Unsigned_Types => True,
3915 others => False);
3917 Library_Task_Level : constant Uint := Uint_3;
3918 -- Corresponds to System.Tasking.Library_Task_Level
3920 -----------------
3921 -- Subprograms --
3922 -----------------
3924 RE_Not_Available : exception;
3925 -- Raised by RTE if the requested entity is not available. This can
3926 -- occur either because the file in which the entity should be found
3927 -- does not exist, or because the entity is not present in the file.
3929 procedure Check_Text_IO_Special_Unit (Nam : Node_Id);
3930 -- In Ada 83, and hence for compatibility in later versions of Ada, package
3931 -- Text_IO has generic subpackages (e.g. Integer_IO). They really should be
3932 -- child packages, and in GNAT, they *are* child packages. To maintain the
3933 -- required compatibility, this routine is called for package renamings and
3934 -- generic instantiations, with the simple name of the referenced package.
3935 -- If Text_IO has been with'ed and if the simple name of Nam matches
3936 -- one of the subpackages of Text_IO, then this subpackage is with'ed
3937 -- automatically. The important result of this approach is that Text_IO
3938 -- does not drag in all the code for the subpackages unless they are used.
3939 -- Our test is a little crude, and could drag in stuff when it is not
3940 -- necessary, but that is acceptable. Wide_[Wide_]Text_IO is handled in
3941 -- a similar manner.
3943 procedure Initialize;
3944 -- Procedure to initialize data structures used by RTE. Called at the
3945 -- start of processing a new main source file. Must be called after
3946 -- Initialize_Snames (since names it enters into name table must come
3947 -- after names entered by Snames).
3949 function Is_RTE (Ent : Entity_Id; E : RE_Id) return Boolean;
3950 -- This function determines if the given entity corresponds to the entity
3951 -- referenced by RE_Id. It is similar in effect to (Ent = RTE (E)) except
3952 -- that the latter would unconditionally load the unit containing E. For
3953 -- this call, if the unit is not loaded, then a result of False is returned
3954 -- immediately, since obviously Ent cannot be the entity in question if the
3955 -- corresponding unit has not been loaded.
3957 function Is_RTU (Ent : Entity_Id; U : RTU_Id) return Boolean;
3958 pragma Inline (Is_RTU);
3959 -- This function determines if the given entity corresponds to the entity
3960 -- for the unit referenced by U. If this unit has not been loaded, the
3961 -- answer will always be False. If the unit has been loaded, then the
3962 -- entity id values are compared and True is returned if Ent is the
3963 -- entity for this unit.
3965 function Is_Text_IO_Special_Unit (Nam : Node_Id) return Boolean;
3966 -- Returns True if the given Nam is an Expanded Name, whose Prefix is Ada,
3967 -- and whose selector is either Text_IO.xxx or Wide_Text_IO.xxx or
3968 -- Wide_Wide_Text_IO.xxx, where xxx is one of the subpackages of Text_IO
3969 -- that is specially handled as described for Check_Text_IO_Special_Unit.
3971 function Is_Text_IO_Special_Package (E : Entity_Id) return Boolean;
3972 -- Return True iff E is one of the special generic Text_IO packages, which
3973 -- Ada RM defines to be nested in Ada.Text_IO, but GNAT defines as its
3974 -- private children. This is similar to Is_Text_IO_Special_Unit, but is
3975 -- meant to be used on a fully resolved AST, especially in the backends.
3976 -- This is used by SPARK.
3978 function RTE (E : RE_Id) return Entity_Id;
3979 -- Given the entity defined in the above tables, as identified by the
3980 -- corresponding value in the RE_Id enumeration type, returns the Id of the
3981 -- corresponding entity, first loading in (parsing, analyzing and
3982 -- expanding) its spec if the unit has not already been loaded. For
3983 -- efficiency reasons, this routine restricts the search to the package
3984 -- entity chain.
3986 -- Note: In the case of a package, RTE can return either an entity that is
3987 -- declared at the top level of the package, or the package entity itself.
3988 -- If an entity within the package has the same simple name as the package,
3989 -- then the entity within the package is returned.
3991 -- If RTE returns, the returned value is the required entity
3993 -- If the entity is not available, then an error message is given. The
3994 -- form of the message depends on whether we are in configurable run time
3995 -- mode or not. In configurable run time mode, a missing entity is not
3996 -- that surprising and merely says that the particular construct is not
3997 -- supported by the run-time in use. If we are not in configurable run
3998 -- time mode, a missing entity is some kind of run-time configuration
3999 -- error. In either case, the result of the call is to raise the exception
4000 -- RE_Not_Available, which should terminate the expansion of the current
4001 -- construct.
4003 function RTE_Available (E : RE_Id) return Boolean;
4004 -- Returns true if a call to RTE will succeed without raising an exception
4005 -- and without generating an error message, i.e. if the call will obtain
4006 -- the desired entity without any problems.
4008 -- If we call this and it returns True, we should generate a reference to
4009 -- E (usually a call). In other words, for a subprogram E, the compiler
4010 -- should not call RTE_Available (E) until it has decided it wants to
4011 -- generate a call to E. Otherwise we can get spurious dependencies and
4012 -- elaboration orders.
4014 -- if RTE_Available (E) -- WRONG!
4015 -- and then <some condition>
4016 -- then
4017 -- generate call to E;
4019 -- Should be:
4021 -- if <some condition>
4022 -- and then RTE_Available (E) -- Correct
4023 -- then
4024 -- generate call to E;
4026 function RTE_Record_Component (E : RE_Id) return Entity_Id;
4027 -- Given the entity defined in the above tables, as identified by the
4028 -- corresponding value in the RE_Id enumeration type, returns the Id of
4029 -- the corresponding entity, first loading in (parsing, analyzing and
4030 -- expanding) its spec if the unit has not already been loaded. For
4031 -- efficiency reasons, this routine restricts the search of E to fields
4032 -- of record type declarations found in the package entity chain.
4034 -- Note: In the case of a package, RTE can return either an entity that is
4035 -- declared at the top level of the package, or the package entity itself.
4036 -- If an entity within the package has the same simple name as the package,
4037 -- then the entity within the package is returned.
4039 -- If RTE returns, the returned value is the required entity
4041 -- If the entity is not available, then an error message is given. The
4042 -- form of the message depends on whether we are in configurable run time
4043 -- mode or not. In configurable run time mode, a missing entity is not
4044 -- that surprising and merely says that the particular construct is not
4045 -- supported by the run-time in use. If we are not in configurable run
4046 -- time mode, a missing entity is some kind of run-time configuration
4047 -- error. In either case, the result of the call is to raise the exception
4048 -- RE_Not_Available, which should terminate the expansion of the current
4049 -- construct.
4051 function RTE_Record_Component_Available (E : RE_Id) return Boolean;
4052 -- Returns true if a call to RTE_Record_Component will succeed without
4053 -- raising an exception and without generating an error message, i.e.
4054 -- if the call will obtain the desired entity without any problems.
4056 function RTU_Entity (U : RTU_Id) return Entity_Id;
4057 pragma Inline (RTU_Entity);
4058 -- This function returns the entity for the unit referenced by U. If
4059 -- this unit has not been loaded, it returns Empty.
4061 function RTU_Loaded (U : RTU_Id) return Boolean;
4062 pragma Inline (RTU_Loaded);
4063 -- Returns true if indicated unit has already been successfully loaded.
4064 -- If the unit has not been loaded, returns False. Note that this does
4065 -- not mean that an attempt to load it subsequently would fail.
4067 procedure Set_RTU_Loaded (N : Node_Id);
4068 -- Register the predefined unit N as already loaded
4070 procedure SPARK_Implicit_Load (E : RE_Id);
4071 -- Force loading of the unit containing the entity E; only needed in
4072 -- GNATprove mode when processing code that implicitly references a
4073 -- given entity.
4075 end Rtsfind;