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