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