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