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