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