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