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