1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2010, Free Software Foundation, Inc. --
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. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 with Atree
; use Atree
;
27 with Casing
; use Casing
;
28 with Csets
; use Csets
;
29 with Debug
; use Debug
;
30 with Einfo
; use Einfo
;
31 with Elists
; use Elists
;
32 with Errout
; use Errout
;
33 with Exp_Dist
; use Exp_Dist
;
34 with Fname
; use Fname
;
35 with Fname
.UF
; use Fname
.UF
;
37 with Lib
.Load
; use Lib
.Load
;
38 with Namet
; use Namet
;
39 with Nlists
; use Nlists
;
40 with Nmake
; use Nmake
;
41 with Output
; use Output
;
43 with Restrict
; use Restrict
;
45 with Sem_Ch7
; use Sem_Ch7
;
46 with Sem_Dist
; use Sem_Dist
;
47 with Sem_Util
; use Sem_Util
;
48 with Sinfo
; use Sinfo
;
49 with Stand
; use Stand
;
50 with Snames
; use Snames
;
51 with Tbuild
; use Tbuild
;
52 with Uname
; use Uname
;
54 package body Rtsfind
is
56 RTE_Available_Call
: Boolean := False;
57 -- Set True during call to RTE from RTE_Available (or from call to
58 -- RTE_Record_Component from RTE_Record_Component_Available). Tells
59 -- the called subprogram to set RTE_Is_Available to False rather than
60 -- generating an error message.
62 RTE_Is_Available
: Boolean;
63 -- Set True by RTE_Available on entry. When RTE_Available_Call is set
64 -- True, set False if RTE would otherwise generate an error message.
70 -- The unit table has one entry for each unit included in the definition
71 -- of the type RTU_Id in the spec. The table entries are initialized in
72 -- Initialize to set the Entity field to Empty, indicating that the
73 -- corresponding unit has not yet been loaded. The fields are set when
74 -- a unit is loaded to contain the defining entity for the unit, the
75 -- unit name, and the unit number.
77 -- Note that a unit can be loaded either by a call to find an entity
78 -- within the unit (e.g. RTE), or by an explicit with of the unit. In
79 -- the latter case it is critical to make a call to Set_RTU_Loaded to
80 -- ensure that the entry in this table reflects the load.
82 -- A unit retrieved through rtsfind may end up in the context of several
83 -- other units, in addition to the main unit. These additional with_clauses
84 -- are needed to generate a proper traversal order for Inspector. To
85 -- minimize somewhat the redundancy created by numerous calls to rtsfind
86 -- from different units, we keep track of the list of implicit with_clauses
87 -- already created for the current loaded unit.
89 type RT_Unit_Table_Record
is record
91 Uname
: Unit_Name_Type
;
92 First_Implicit_With
: Node_Id
;
93 Unum
: Unit_Number_Type
;
96 RT_Unit_Table
: array (RTU_Id
) of RT_Unit_Table_Record
;
98 --------------------------
99 -- Runtime Entity Table --
100 --------------------------
102 -- There is one entry in the runtime entity table for each entity that is
103 -- included in the definition of the RE_Id type in the spec. The entries
104 -- are set by Initialize_Rtsfind to contain Empty, indicating that the
105 -- entity has not yet been located. Once the entity is located for the
106 -- first time, its ID is stored in this array, so that subsequent calls
107 -- for the same entity can be satisfied immediately.
109 -- NOTE: In order to avoid conflicts between record components and subprgs
110 -- that have the same name (i.e. subprogram External_Tag and
111 -- component External_Tag of package Ada.Tags) this table is not used
112 -- with Record_Components.
114 RE_Table
: array (RE_Id
) of Entity_Id
;
116 --------------------------------
117 -- Generation of with_clauses --
118 --------------------------------
120 -- When a unit is implicitly loaded as a result of a call to RTE, it is
121 -- necessary to create one or two implicit with_clauses. We add such
122 -- with_clauses to the extended main unit if needed, and also to whatever
123 -- unit needs them, which is not necessarily the main unit. The former
124 -- ensures that the object is correctly loaded by the binder. The latter
125 -- is necessary for SofCheck Inspector.
127 -- The field First_Implicit_With in the unit table record are used to
128 -- avoid creating duplicate with_clauses.
130 -----------------------
131 -- Local Subprograms --
132 -----------------------
134 function Check_CRT
(E
: RE_Id
; Eid
: Entity_Id
) return Entity_Id
;
135 -- Check entity Eid to ensure that configurable run-time restrictions are
136 -- met. May generate an error message (if RTE_Available_Call is false) and
137 -- raise RE_Not_Available if entity E does not exist (e.g. Eid is Empty).
138 -- Above documentation not clear ???
140 procedure Entity_Not_Defined
(Id
: RE_Id
);
141 -- Outputs error messages for an entity that is not defined in the run-time
142 -- library (the form of the error message is tailored for no run time or
143 -- configurable run time mode as required).
145 function Get_Unit_Name
(U_Id
: RTU_Id
) return Unit_Name_Type
;
146 -- Retrieves the Unit Name given a unit id represented by its enumeration
149 procedure Load_Fail
(S
: String; U_Id
: RTU_Id
; Id
: RE_Id
);
150 -- Internal procedure called if we can't successfully locate or process a
151 -- run-time unit. The parameters give information about the error message
152 -- to be given. S is a reason for failing to compile the file and U_Id is
153 -- the unit id. RE_Id is the RE_Id originally passed to RTE. The message in
154 -- S is one of the following:
157 -- "had parser errors"
158 -- "had semantic errors"
160 -- The "not found" case is treated specially in that it is considered
161 -- a normal situation in configurable run-time mode, and generates
162 -- a warning, but is otherwise ignored.
166 Id
: RE_Id
:= RE_Null
;
167 Use_Setting
: Boolean := False);
168 -- Load the unit whose Id is given if not already loaded. The unit is
169 -- loaded and analyzed, and the entry in RT_Unit_Table is updated to
170 -- reflect the load. Use_Setting is used to indicate the initial setting
171 -- for the Is_Potentially_Use_Visible flag of the entity for the loaded
172 -- unit (if it is indeed loaded). A value of False means nothing special
173 -- need be done. A value of True indicates that this flag must be set to
174 -- True. It is needed only in the Text_IO_Kludge procedure, which may
175 -- materialize an entity of Text_IO (or [Wide_]Wide_Text_IO) that was
176 -- previously unknown. Id is the RE_Id value of the entity which was
177 -- originally requested. Id is used only for error message detail, and if
178 -- it is RE_Null, then the attempt to output the entity name is ignored.
180 function Make_Unit_Name
181 (U
: RT_Unit_Table_Record
;
182 N
: Node_Id
) return Node_Id
;
183 -- If the unit is a child unit, build fully qualified name for use in
186 procedure Maybe_Add_With
(U
: in out RT_Unit_Table_Record
);
187 -- If necessary, add an implicit with_clause from the current unit to the
188 -- one represented by U.
190 procedure Output_Entity_Name
(Id
: RE_Id
; Msg
: String);
191 -- Output continuation error message giving qualified name of entity
192 -- corresponding to Id, appending the string given by Msg. This call
193 -- is only effective in All_Errors mode.
195 function RE_Chars
(E
: RE_Id
) return Name_Id
;
196 -- Given a RE_Id value returns the Chars of the corresponding entity
198 procedure RTE_Error_Msg
(Msg
: String);
199 -- Generates a message by calling Error_Msg_N specifying Current_Error_Node
200 -- as the node location using the given Msg text. Special processing in the
201 -- case where RTE_Available_Call is set. In this case, no message is output
202 -- and instead RTE_Is_Available is set to False. Note that this can only be
203 -- used if you are sure that the message comes directly or indirectly from
204 -- a call to the RTE function.
210 function Check_CRT
(E
: RE_Id
; Eid
: Entity_Id
) return Entity_Id
is
211 U_Id
: constant RTU_Id
:= RE_Unit_Table
(E
);
215 if RTE_Available_Call
then
216 RTE_Is_Available
:= False;
218 Entity_Not_Defined
(E
);
221 raise RE_Not_Available
;
223 -- Entity is available
226 -- If in No_Run_Time mode and entity is not in one of the
227 -- specially permitted units, raise the exception.
230 and then not OK_No_Run_Time_Unit
(U_Id
)
232 Entity_Not_Defined
(E
);
233 raise RE_Not_Available
;
236 -- Otherwise entity is accessible
242 ------------------------
243 -- Entity_Not_Defined --
244 ------------------------
246 procedure Entity_Not_Defined
(Id
: RE_Id
) is
248 if No_Run_Time_Mode
then
250 -- If the error occurs when compiling the body of a predefined
251 -- unit for inlining purposes, the body must be illegal in this
252 -- mode, and there is no point in continuing.
254 if Is_Predefined_File_Name
255 (Unit_File_Name
(Get_Source_Unit
(Sloc
(Current_Error_Node
))))
258 ("construct not allowed in no run time mode!",
260 raise Unrecoverable_Error
;
263 RTE_Error_Msg
("|construct not allowed in no run time mode");
266 elsif Configurable_Run_Time_Mode
then
267 RTE_Error_Msg
("|construct not allowed in this configuration>");
269 RTE_Error_Msg
("run-time configuration error");
272 Output_Entity_Name
(Id
, "not defined");
273 end Entity_Not_Defined
;
279 function Get_Unit_Name
(U_Id
: RTU_Id
) return Unit_Name_Type
is
280 Uname_Chars
: constant String := RTU_Id
'Image (U_Id
);
283 Name_Len
:= Uname_Chars
'Length;
284 Name_Buffer
(1 .. Name_Len
) := Uname_Chars
;
285 Set_Casing
(All_Lower_Case
);
287 if U_Id
in Ada_Child
then
288 Name_Buffer
(4) := '.';
290 if U_Id
in Ada_Calendar_Child
then
291 Name_Buffer
(13) := '.';
293 elsif U_Id
in Ada_Dispatching_Child
then
294 Name_Buffer
(16) := '.';
296 elsif U_Id
in Ada_Finalization_Child
then
297 Name_Buffer
(17) := '.';
299 elsif U_Id
in Ada_Interrupts_Child
then
300 Name_Buffer
(15) := '.';
302 elsif U_Id
in Ada_Real_Time_Child
then
303 Name_Buffer
(14) := '.';
305 elsif U_Id
in Ada_Streams_Child
then
306 Name_Buffer
(12) := '.';
308 elsif U_Id
in Ada_Strings_Child
then
309 Name_Buffer
(12) := '.';
311 elsif U_Id
in Ada_Text_IO_Child
then
312 Name_Buffer
(12) := '.';
314 elsif U_Id
in Ada_Wide_Text_IO_Child
then
315 Name_Buffer
(17) := '.';
317 elsif U_Id
in Ada_Wide_Wide_Text_IO_Child
then
318 Name_Buffer
(22) := '.';
321 elsif U_Id
in Interfaces_Child
then
322 Name_Buffer
(11) := '.';
324 elsif U_Id
in System_Child
then
325 Name_Buffer
(7) := '.';
327 if U_Id
in System_Strings_Child
then
328 Name_Buffer
(15) := '.';
331 if U_Id
in System_Tasking_Child
then
332 Name_Buffer
(15) := '.';
335 if U_Id
in System_Tasking_Restricted_Child
then
336 Name_Buffer
(26) := '.';
339 if U_Id
in System_Tasking_Protected_Objects_Child
then
340 Name_Buffer
(33) := '.';
343 if U_Id
in System_Tasking_Async_Delays_Child
then
344 Name_Buffer
(28) := '.';
348 -- Add %s at end for spec
350 Name_Buffer
(Name_Len
+ 1) := '%';
351 Name_Buffer
(Name_Len
+ 2) := 's';
352 Name_Len
:= Name_Len
+ 2;
361 procedure Initialize
is
363 -- Initialize the unit table
366 RT_Unit_Table
(J
).Entity
:= Empty
;
370 RE_Table
(J
) := Empty
;
373 RTE_Is_Available
:= False;
380 function Is_RTE
(Ent
: Entity_Id
; E
: RE_Id
) return Boolean is
381 E_Unit_Name
: Unit_Name_Type
;
382 Ent_Unit_Name
: Unit_Name_Type
;
392 -- If E has already a corresponding entity, check it directly,
393 -- going to full views if they exist to deal with the incomplete
394 -- and private type cases properly.
396 elsif Present
(RE_Table
(E
)) then
399 if Is_Type
(E1
) and then Present
(Full_View
(E1
)) then
400 E1
:= Full_View
(E1
);
405 if Is_Type
(E2
) and then Present
(Full_View
(E2
)) then
406 E2
:= Full_View
(E2
);
412 -- If the unit containing E is not loaded, we already know that
413 -- the entity we have cannot have come from this unit.
415 E_Unit_Name
:= Get_Unit_Name
(RE_Unit_Table
(E
));
417 if not Is_Loaded
(E_Unit_Name
) then
421 -- Here the unit containing the entity is loaded. We have not made
422 -- an explicit call to RTE to get the entity in question, but we may
423 -- have obtained a reference to it indirectly from some other entity
424 -- in the same unit, or some other unit that references it.
426 -- Get the defining unit of the entity
430 if Ekind
(S
) /= E_Package
then
434 Ent_Unit_Name
:= Get_Unit_Name
(Unit_Declaration_Node
(S
));
436 -- If the defining unit of the entity we are testing is not the
437 -- unit containing E, then they cannot possibly match.
439 if Ent_Unit_Name
/= E_Unit_Name
then
443 -- If the units match, then compare the names (remember that no
444 -- overloading is permitted in entities fetched using Rtsfind).
446 if RE_Chars
(E
) = Chars
(Ent
) then
449 -- If front-end inlining is enabled, we may be within a body that
450 -- contains inlined functions, which has not been retrieved through
451 -- rtsfind, and therefore is not yet recorded in the RT_Unit_Table.
452 -- Add the unit information now, it must be fully available.
455 U
: RT_Unit_Table_Record
456 renames RT_Unit_Table
(RE_Unit_Table
(E
));
458 if No
(U
.Entity
) then
460 U
.Uname
:= E_Unit_Name
;
461 U
.Unum
:= Get_Source_Unit
(S
);
475 function Is_RTU
(Ent
: Entity_Id
; U
: RTU_Id
) return Boolean is
476 E
: constant Entity_Id
:= RT_Unit_Table
(U
).Entity
;
478 return Present
(E
) and then E
= Ent
;
481 ----------------------------
482 -- Is_Text_IO_Kludge_Unit --
483 ----------------------------
485 function Is_Text_IO_Kludge_Unit
(Nam
: Node_Id
) return Boolean is
490 if Nkind
(Nam
) /= N_Expanded_Name
then
495 Sel
:= Selector_Name
(Nam
);
497 if Nkind
(Sel
) /= N_Expanded_Name
498 or else Nkind
(Prf
) /= N_Identifier
499 or else Chars
(Prf
) /= Name_Ada
505 Sel
:= Selector_Name
(Sel
);
508 Nkind
(Prf
) = N_Identifier
510 (Chars
(Prf
) = Name_Text_IO
512 Chars
(Prf
) = Name_Wide_Text_IO
514 Chars
(Prf
) = Name_Wide_Wide_Text_IO
)
516 Nkind
(Sel
) = N_Identifier
518 Chars
(Sel
) in Text_IO_Package_Name
;
519 end Is_Text_IO_Kludge_Unit
;
525 procedure Load_Fail
(S
: String; U_Id
: RTU_Id
; Id
: RE_Id
) is
526 M
: String (1 .. 100);
530 -- Output header message
532 if Configurable_Run_Time_Mode
then
533 RTE_Error_Msg
("construct not allowed in configurable run-time mode");
535 RTE_Error_Msg
("run-time library configuration error");
538 -- Output file name and reason string
540 M
(1 .. 6) := "\file ";
544 (Get_File_Name
(RT_Unit_Table
(U_Id
).Uname
, Subunit
=> False));
545 M
(P
+ 1 .. P
+ Name_Len
) := Name_Buffer
(1 .. Name_Len
);
551 M
(P
+ 1 .. P
+ S
'Length) := S
;
554 RTE_Error_Msg
(M
(1 .. P
));
556 -- Output entity name
558 Output_Entity_Name
(Id
, "not available");
560 -- In configurable run time mode, we raise RE_Not_Available, and the
561 -- caller is expected to deal gracefully with this. In the case of a
562 -- call to RTE_Available, this exception will be caught in Rtsfind,
563 -- and result in a returned value of False for the call.
565 if Configurable_Run_Time_Mode
then
566 raise RE_Not_Available
;
568 -- Here we have a load failure in normal full run time mode. See if we
569 -- are in the context of an RTE_Available call. If so, we just raise
570 -- RE_Not_Available. This can happen if a unit is unavailable, which
571 -- happens for example in the VM case, where the run-time is not
572 -- complete, but we do not regard it as a configurable run-time.
573 -- If the caller has done an explicit call to RTE_Available, then
574 -- clearly the caller is prepared to deal with a result of False.
576 elsif RTE_Available_Call
then
577 RTE_Is_Available
:= False;
578 raise RE_Not_Available
;
580 -- If we are not in the context of an RTE_Available call, we are really
581 -- trying to load an entity that is not there, and that should never
582 -- happen, so in this case we signal a fatal error.
585 raise Unrecoverable_Error
;
595 Id
: RE_Id
:= RE_Null
;
596 Use_Setting
: Boolean := False)
598 U
: RT_Unit_Table_Record
renames RT_Unit_Table
(U_Id
);
599 Priv_Par
: constant Elist_Id
:= New_Elmt_List
;
602 procedure Save_Private_Visibility
;
603 -- If the current unit is the body of child unit or the spec of a
604 -- private child unit, the private declarations of the parent(s) are
605 -- visible. If the unit to be loaded is another public sibling, its
606 -- compilation will affect the visibility of the common ancestors.
607 -- Indicate those that must be restored.
609 procedure Restore_Private_Visibility
;
610 -- Restore the visibility of ancestors after compiling RTU
612 --------------------------------
613 -- Restore_Private_Visibility --
614 --------------------------------
616 procedure Restore_Private_Visibility
is
620 E_Par
:= First_Elmt
(Priv_Par
);
621 while Present
(E_Par
) loop
622 if not In_Private_Part
(Node
(E_Par
)) then
623 Install_Private_Declarations
(Node
(E_Par
));
628 end Restore_Private_Visibility
;
630 -----------------------------
631 -- Save_Private_Visibility --
632 -----------------------------
634 procedure Save_Private_Visibility
is
638 Par
:= Scope
(Current_Scope
);
640 and then Par
/= Standard_Standard
642 if Ekind
(Par
) = E_Package
643 and then Is_Compilation_Unit
(Par
)
644 and then In_Private_Part
(Par
)
646 Append_Elmt
(Par
, Priv_Par
);
651 end Save_Private_Visibility
;
653 -- Start of processing for Load_RTU
656 -- Nothing to do if unit is already loaded
658 if Present
(U
.Entity
) then
662 -- Note if secondary stack is used
664 if U_Id
= System_Secondary_Stack
then
665 Opt
.Sec_Stack_Used
:= True;
668 -- Otherwise we need to load the unit, First build unit name
669 -- from the enumeration literal name in type RTU_Id.
671 U
.Uname
:= Get_Unit_Name
(U_Id
);
672 U
. First_Implicit_With
:= Empty
;
674 -- Now do the load call, note that setting Error_Node to Empty is
675 -- a signal to Load_Unit that we will regard a failure to find the
676 -- file as a fatal error, and that it should not output any kind
677 -- of diagnostics, since we will take care of it here.
679 -- We save style checking switches and turn off style checking for
680 -- loading the unit, since we don't want any style checking!
683 Save_Style_Check
: constant Boolean := Style_Check
;
685 Style_Check
:= False;
688 (Load_Name
=> U
.Uname
,
691 Error_Node
=> Empty
);
692 Style_Check
:= Save_Style_Check
;
695 -- Check for bad unit load
697 if U
.Unum
= No_Unit
then
698 Load_Fail
("not found", U_Id
, Id
);
699 elsif Fatal_Error
(U
.Unum
) then
700 Load_Fail
("had parser errors", U_Id
, Id
);
703 -- Make sure that the unit is analyzed
706 Was_Analyzed
: constant Boolean :=
707 Analyzed
(Cunit
(Current_Sem_Unit
));
710 -- Pretend that the current unit is analyzed, in case it is System
711 -- or some such. This allows us to put some declarations, such as
712 -- exceptions and packed arrays of Boolean, into System even though
713 -- expanding them requires System...
715 -- This is a bit odd but works fine. If the RTS unit does not depend
716 -- in any way on the current unit, then it never gets back into the
717 -- current unit's tree, and the change we make to the current unit
718 -- tree is never noticed by anyone (it is undone in a moment). That
719 -- is the normal situation.
721 -- If the RTS Unit *does* depend on the current unit, for instance,
722 -- when you are compiling System, then you had better have finished
723 -- analyzing the part of System that is depended on before you try to
724 -- load the RTS Unit. This means having the code in System ordered in
725 -- an appropriate manner.
727 Set_Analyzed
(Cunit
(Current_Sem_Unit
), True);
729 if not Analyzed
(Cunit
(U
.Unum
)) then
731 -- If the unit is already loaded through a limited_with_clause,
732 -- the relevant entities must already be available. We do not
733 -- want to load and analyze the unit because this would create
734 -- a real semantic dependence when the purpose of the limited_with
735 -- is precisely to avoid such.
737 if From_With_Type
(Cunit_Entity
(U
.Unum
)) then
741 Save_Private_Visibility
;
742 Semantics
(Cunit
(U
.Unum
));
743 Restore_Private_Visibility
;
745 if Fatal_Error
(U
.Unum
) then
746 Load_Fail
("had semantic errors", U_Id
, Id
);
753 Set_Analyzed
(Cunit
(Current_Sem_Unit
), Was_Analyzed
);
756 Lib_Unit
:= Unit
(Cunit
(U
.Unum
));
757 U
.Entity
:= Defining_Entity
(Lib_Unit
);
760 Set_Is_Potentially_Use_Visible
(U
.Entity
, True);
768 function Make_Unit_Name
769 (U
: RT_Unit_Table_Record
;
770 N
: Node_Id
) return Node_Id
is
776 Nam
:= New_Reference_To
(U
.Entity
, Standard_Location
);
777 Scop
:= Scope
(U
.Entity
);
779 if Nkind
(N
) = N_Defining_Program_Unit_Name
then
780 while Scop
/= Standard_Standard
loop
782 Make_Expanded_Name
(Standard_Location
,
783 Chars
=> Chars
(U
.Entity
),
784 Prefix
=> New_Reference_To
(Scop
, Standard_Location
),
785 Selector_Name
=> Nam
);
786 Set_Entity
(Nam
, U
.Entity
);
788 Scop
:= Scope
(Scop
);
799 procedure Maybe_Add_With
(U
: in out RT_Unit_Table_Record
) is
801 -- We do not need to generate a with_clause for a call issued from
802 -- RTE_Component_Available. However, for CodePeer, we need these
803 -- additional with's, because for a sequence like "if RTE_Available (X)
804 -- then ... RTE (X)" the RTE call fails to create some necessary
807 if RTE_Available_Call
and then not Generate_SCIL
then
811 -- Avoid creating directly self-referential with clauses
813 if Current_Sem_Unit
= U
.Unum
then
817 -- Add the with_clause, if not already in the context of the
818 -- current compilation unit.
821 LibUnit
: constant Node_Id
:= Unit
(Cunit
(U
.Unum
));
826 Clause
:= U
.First_Implicit_With
;
827 while Present
(Clause
) loop
828 if Parent
(Clause
) = Cunit
(Current_Sem_Unit
) then
832 Clause
:= Next_Implicit_With
(Clause
);
836 Make_With_Clause
(Standard_Location
,
839 (U
, Defining_Unit_Name
(Specification
(LibUnit
))));
841 Set_Library_Unit
(Withn
, Cunit
(U
.Unum
));
842 Set_Corresponding_Spec
(Withn
, U
.Entity
);
843 Set_First_Name
(Withn
, True);
844 Set_Implicit_With
(Withn
, True);
845 Set_Next_Implicit_With
(Withn
, U
.First_Implicit_With
);
847 U
.First_Implicit_With
:= Withn
;
849 Mark_Rewrite_Insertion
(Withn
);
850 Append
(Withn
, Context_Items
(Cunit
(Current_Sem_Unit
)));
851 Check_Restriction_No_Dependence
(Name
(Withn
), Current_Error_Node
);
855 ------------------------
856 -- Output_Entity_Name --
857 ------------------------
859 procedure Output_Entity_Name
(Id
: RE_Id
; Msg
: String) is
860 M
: String (1 .. 2048);
862 -- M (1 .. P) is current message to be output
864 RE_Image
: constant String := RE_Id
'Image (Id
);
871 M
(1 .. 9) := "\entity """;
874 -- Add unit name to message, excluding %s or %b at end
876 Get_Name_String
(Get_Unit_Name
(RE_Unit_Table
(Id
)));
877 Name_Len
:= Name_Len
- 2;
878 Set_Casing
(Mixed_Case
);
879 M
(P
+ 1 .. P
+ Name_Len
) := Name_Buffer
(1 .. Name_Len
);
882 -- Add a qualifying period
887 -- Add entity name and closing quote to message
889 Name_Len
:= RE_Image
'Length - 3;
890 Name_Buffer
(1 .. Name_Len
) := RE_Image
(4 .. RE_Image
'Length);
891 Set_Casing
(Mixed_Case
);
892 M
(P
+ 1 .. P
+ Name_Len
) := Name_Buffer
(1 .. Name_Len
);
901 M
(P
+ 1 .. P
+ Msg
'Length) := Msg
;
904 -- Output message at current error node location
906 RTE_Error_Msg
(M
(1 .. P
));
907 end Output_Entity_Name
;
913 function RE_Chars
(E
: RE_Id
) return Name_Id
is
914 RE_Name_Chars
: constant String := RE_Id
'Image (E
);
917 -- Copy name skipping initial RE_ or RO_XX characters
919 if RE_Name_Chars
(1 .. 2) = "RE" then
920 for J
in 4 .. RE_Name_Chars
'Last loop
921 Name_Buffer
(J
- 3) := Fold_Lower
(RE_Name_Chars
(J
));
924 Name_Len
:= RE_Name_Chars
'Length - 3;
927 for J
in 7 .. RE_Name_Chars
'Last loop
928 Name_Buffer
(J
- 6) := Fold_Lower
(RE_Name_Chars
(J
));
931 Name_Len
:= RE_Name_Chars
'Length - 6;
941 function RTE
(E
: RE_Id
) return Entity_Id
is
942 U_Id
: constant RTU_Id
:= RE_Unit_Table
(E
);
943 U
: RT_Unit_Table_Record
renames RT_Unit_Table
(U_Id
);
949 -- The following flag is used to disable front-end inlining when RTE
950 -- is invoked. This prevents the analysis of other runtime bodies when
951 -- a particular spec is loaded through Rtsfind. This is both efficient,
952 -- and it prevents spurious visibility conflicts between use-visible
953 -- user entities, and entities in run-time packages.
955 Save_Front_End_Inlining
: Boolean;
958 -- Reject programs that make use of distribution features not supported
959 -- on the current target. Also check that the PCS is compatible with
960 -- the code generator version. On such targets (VMS, Vxworks, others?)
961 -- we provide a minimal body for System.Rpc that only supplies an
962 -- implementation of Partition_Id.
964 function Find_Local_Entity
(E
: RE_Id
) return Entity_Id
;
965 -- This function is used when entity E is in this compilation's main
966 -- unit. It gets the value from the already compiled declaration.
972 procedure Check_RPC
is
974 -- Bypass this check if debug flag -gnatdR set
976 if Debug_Flag_RR
then
980 -- Otherwise we need the check if we are going after one of the
981 -- critical entities in System.RPC / System.Partition_Interface.
987 E
= RE_Params_Stream_Type
989 E
= RE_Request_Access
991 -- If generating RCI stubs, check that we have a real PCS
993 if (Distribution_Stub_Mode
= Generate_Receiver_Stub_Body
995 Distribution_Stub_Mode
= Generate_Caller_Stub_Body
)
996 and then Get_PCS_Name
= Name_No_DSA
999 Write_Str
("distribution feature not supported");
1001 raise Unrecoverable_Error
;
1003 -- In all cases, check Exp_Dist and System.Partition_Interface
1006 elsif Get_PCS_Version
/=
1007 Exp_Dist
.PCS_Version_Number
(Get_PCS_Name
)
1010 Write_Str
("PCS version mismatch: expander ");
1011 Write_Int
(Exp_Dist
.PCS_Version_Number
(Get_PCS_Name
));
1012 Write_Str
(", PCS (");
1013 Write_Name
(Get_PCS_Name
);
1015 Write_Int
(Get_PCS_Version
);
1017 raise Unrecoverable_Error
;
1022 -----------------------
1023 -- Find_Local_Entity --
1024 -----------------------
1026 function Find_Local_Entity
(E
: RE_Id
) return Entity_Id
is
1027 RE_Str
: constant String := RE_Id
'Image (E
);
1031 Save_Nam
: constant String := Name_Buffer
(1 .. Name_Len
);
1032 -- Save name buffer and length over call
1035 Name_Len
:= Natural'Max (0, RE_Str
'Length - 3);
1036 Name_Buffer
(1 .. Name_Len
) :=
1037 RE_Str
(RE_Str
'First + 3 .. RE_Str
'Last);
1040 Ent
:= Entity_Id
(Get_Name_Table_Info
(Nam
));
1042 Name_Len
:= Save_Nam
'Length;
1043 Name_Buffer
(1 .. Name_Len
) := Save_Nam
;
1046 end Find_Local_Entity
;
1048 -- Start of processing for RTE
1051 -- Doing a rtsfind in system.ads is special, as we cannot do this
1052 -- when compiling System itself. So if we are compiling system then
1053 -- we should already have acquired and processed the declaration
1054 -- of the entity. The test is to see if this compilation's main unit
1055 -- is System. If so, return the value from the already compiled
1056 -- declaration and otherwise do a regular find.
1058 -- Not pleasant, but these kinds of annoying recursion when
1059 -- writing an Ada compiler in Ada have to be broken somewhere!
1061 if Present
(Main_Unit_Entity
)
1062 and then Chars
(Main_Unit_Entity
) = Name_System
1063 and then Analyzed
(Main_Unit_Entity
)
1064 and then not Is_Child_Unit
(Main_Unit_Entity
)
1066 return Check_CRT
(E
, Find_Local_Entity
(E
));
1069 Save_Front_End_Inlining
:= Front_End_Inlining
;
1070 Front_End_Inlining
:= False;
1072 -- Load unit if unit not previously loaded
1074 if No
(RE_Table
(E
)) then
1075 Load_RTU
(U_Id
, Id
=> E
);
1076 Lib_Unit
:= Unit
(Cunit
(U
.Unum
));
1078 -- In the subprogram case, we are all done, the entity we want
1079 -- is the entity for the subprogram itself. Note that we do not
1080 -- bother to check that it is the entity that was requested.
1081 -- the only way that could fail to be the case is if runtime is
1082 -- hopelessly misconfigured, and it isn't worth testing for this.
1084 if Nkind
(Lib_Unit
) = N_Subprogram_Declaration
then
1085 RE_Table
(E
) := U
.Entity
;
1087 -- Otherwise we must have the package case. First check package
1088 -- entity itself (e.g. RTE_Name for System.Interrupts.Name)
1091 pragma Assert
(Nkind
(Lib_Unit
) = N_Package_Declaration
);
1092 Ename
:= RE_Chars
(E
);
1094 -- First we search the package entity chain. If the package
1095 -- only has a limited view, scan the corresponding list of
1096 -- incomplete types.
1098 if From_With_Type
(U
.Entity
) then
1099 Pkg_Ent
:= First_Entity
(Limited_View
(U
.Entity
));
1101 Pkg_Ent
:= First_Entity
(U
.Entity
);
1104 while Present
(Pkg_Ent
) loop
1105 if Ename
= Chars
(Pkg_Ent
) then
1106 RE_Table
(E
) := Pkg_Ent
;
1111 Next_Entity
(Pkg_Ent
);
1114 -- If we did not find the entity in the package entity chain,
1115 -- then check if the package entity itself matches. Note that
1116 -- we do this check after searching the entity chain, since
1117 -- the rule is that in case of ambiguity, we prefer the entity
1118 -- defined within the package, rather than the package itself.
1120 if Ename
= Chars
(U
.Entity
) then
1121 RE_Table
(E
) := U
.Entity
;
1124 -- If we didn't find the entity we want, something is wrong.
1125 -- We just leave RE_Table (E) set to Empty and the appropriate
1126 -- action will be taken by Check_CRT when we exit.
1134 Front_End_Inlining
:= Save_Front_End_Inlining
;
1135 return Check_CRT
(E
, RE_Table
(E
));
1142 function RTE_Available
(E
: RE_Id
) return Boolean is
1144 pragma Warnings
(Off
, Dummy
);
1148 Save_RTE_Available_Call
: constant Boolean := RTE_Available_Call
;
1149 Save_RTE_Is_Available
: constant Boolean := RTE_Is_Available
;
1150 -- These are saved recursively because the call to load a unit
1151 -- caused by an upper level call may perform a recursive call
1152 -- to this routine during analysis of the corresponding unit.
1155 RTE_Available_Call
:= True;
1156 RTE_Is_Available
:= True;
1158 Result
:= RTE_Is_Available
;
1159 RTE_Available_Call
:= Save_RTE_Available_Call
;
1160 RTE_Is_Available
:= Save_RTE_Is_Available
;
1164 when RE_Not_Available
=>
1165 RTE_Available_Call
:= Save_RTE_Available_Call
;
1166 RTE_Is_Available
:= Save_RTE_Is_Available
;
1170 --------------------------
1171 -- RTE_Record_Component --
1172 --------------------------
1174 function RTE_Record_Component
(E
: RE_Id
) return Entity_Id
is
1175 U_Id
: constant RTU_Id
:= RE_Unit_Table
(E
);
1176 U
: RT_Unit_Table_Record
renames RT_Unit_Table
(U_Id
);
1179 Found_E
: Entity_Id
;
1181 Pkg_Ent
: Entity_Id
;
1183 -- The following flag is used to disable front-end inlining when
1184 -- RTE_Record_Component is invoked. This prevents the analysis of other
1185 -- runtime bodies when a particular spec is loaded through Rtsfind. This
1186 -- is both efficient, and it prevents spurious visibility conflicts
1187 -- between use-visible user entities, and entities in run-time packages.
1189 Save_Front_End_Inlining
: Boolean;
1192 -- Note: Contrary to subprogram RTE, there is no need to do any special
1193 -- management with package system.ads because it has no record type
1196 Save_Front_End_Inlining
:= Front_End_Inlining
;
1197 Front_End_Inlining
:= False;
1199 -- Load unit if unit not previously loaded
1201 if not Present
(U
.Entity
) then
1202 Load_RTU
(U_Id
, Id
=> E
);
1205 Lib_Unit
:= Unit
(Cunit
(U
.Unum
));
1207 pragma Assert
(Nkind
(Lib_Unit
) = N_Package_Declaration
);
1208 Ename
:= RE_Chars
(E
);
1210 -- Search the entity in the components of record type declarations
1211 -- found in the package entity chain.
1214 Pkg_Ent
:= First_Entity
(U
.Entity
);
1215 Search
: while Present
(Pkg_Ent
) loop
1216 if Is_Record_Type
(Pkg_Ent
) then
1217 E1
:= First_Entity
(Pkg_Ent
);
1218 while Present
(E1
) loop
1219 if Ename
= Chars
(E1
) then
1220 pragma Assert
(not Present
(Found_E
));
1228 Next_Entity
(Pkg_Ent
);
1231 -- If we didn't find the entity we want, something is wrong. The
1232 -- appropriate action will be taken by Check_CRT when we exit.
1236 Front_End_Inlining
:= Save_Front_End_Inlining
;
1237 return Check_CRT
(E
, Found_E
);
1238 end RTE_Record_Component
;
1240 ------------------------------------
1241 -- RTE_Record_Component_Available --
1242 ------------------------------------
1244 function RTE_Record_Component_Available
(E
: RE_Id
) return Boolean is
1246 pragma Warnings
(Off
, Dummy
);
1250 Save_RTE_Available_Call
: constant Boolean := RTE_Available_Call
;
1251 Save_RTE_Is_Available
: constant Boolean := RTE_Is_Available
;
1252 -- These are saved recursively because the call to load a unit
1253 -- caused by an upper level call may perform a recursive call
1254 -- to this routine during analysis of the corresponding unit.
1257 RTE_Available_Call
:= True;
1258 RTE_Is_Available
:= True;
1259 Dummy
:= RTE_Record_Component
(E
);
1260 Result
:= RTE_Is_Available
;
1261 RTE_Available_Call
:= Save_RTE_Available_Call
;
1262 RTE_Is_Available
:= Save_RTE_Is_Available
;
1266 when RE_Not_Available
=>
1267 RTE_Available_Call
:= Save_RTE_Available_Call
;
1268 RTE_Is_Available
:= Save_RTE_Is_Available
;
1270 end RTE_Record_Component_Available
;
1276 procedure RTE_Error_Msg
(Msg
: String) is
1278 if RTE_Available_Call
then
1279 RTE_Is_Available
:= False;
1281 Error_Msg_N
(Msg
, Current_Error_Node
);
1283 -- Bump count of violations if we are in configurable run-time
1284 -- mode and this is not a continuation message.
1286 if Configurable_Run_Time_Mode
and then Msg
(Msg
'First) /= '\' then
1287 Configurable_Run_Time_Violations
:=
1288 Configurable_Run_Time_Violations
+ 1;
1297 function RTU_Entity
(U
: RTU_Id
) return Entity_Id
is
1299 return RT_Unit_Table
(U
).Entity
;
1306 function RTU_Loaded
(U
: RTU_Id
) return Boolean is
1308 return Present
(RT_Unit_Table
(U
).Entity
);
1311 --------------------
1312 -- Set_RTU_Loaded --
1313 --------------------
1315 procedure Set_RTU_Loaded
(N
: Node_Id
) is
1316 Loc
: constant Source_Ptr
:= Sloc
(N
);
1317 Unum
: constant Unit_Number_Type
:= Get_Source_Unit
(Loc
);
1318 Uname
: constant Unit_Name_Type
:= Unit_Name
(Unum
);
1319 E
: constant Entity_Id
:=
1320 Defining_Entity
(Unit
(Cunit
(Unum
)));
1322 pragma Assert
(Is_Predefined_File_Name
(Unit_File_Name
(Unum
)));
1324 -- Loop through entries in RTU table looking for matching entry
1326 for U_Id
in RTU_Id
'Range loop
1328 -- Here we have a match
1330 if Get_Unit_Name
(U_Id
) = Uname
then
1332 U
: RT_Unit_Table_Record
renames RT_Unit_Table
(U_Id
);
1333 -- The RT_Unit_Table entry that may need updating
1336 -- If entry is not set, set it now, and indicate that it was
1337 -- loaded through an explicit context clause.
1339 if No
(U
.Entity
) then
1341 Uname
=> Get_Unit_Name
(U_Id
),
1343 First_Implicit_With
=> Empty
);
1352 --------------------
1353 -- Text_IO_Kludge --
1354 --------------------
1356 procedure Text_IO_Kludge
(Nam
: Node_Id
) is
1359 type Name_Map_Type
is array (Text_IO_Package_Name
) of RTU_Id
;
1361 Name_Map
: constant Name_Map_Type
:= Name_Map_Type
'(
1362 Name_Decimal_IO => Ada_Text_IO_Decimal_IO,
1363 Name_Enumeration_IO => Ada_Text_IO_Enumeration_IO,
1364 Name_Fixed_IO => Ada_Text_IO_Fixed_IO,
1365 Name_Float_IO => Ada_Text_IO_Float_IO,
1366 Name_Integer_IO => Ada_Text_IO_Integer_IO,
1367 Name_Modular_IO => Ada_Text_IO_Modular_IO);
1369 Wide_Name_Map : constant Name_Map_Type := Name_Map_Type'(
1370 Name_Decimal_IO
=> Ada_Wide_Text_IO_Decimal_IO
,
1371 Name_Enumeration_IO
=> Ada_Wide_Text_IO_Enumeration_IO
,
1372 Name_Fixed_IO
=> Ada_Wide_Text_IO_Fixed_IO
,
1373 Name_Float_IO
=> Ada_Wide_Text_IO_Float_IO
,
1374 Name_Integer_IO
=> Ada_Wide_Text_IO_Integer_IO
,
1375 Name_Modular_IO
=> Ada_Wide_Text_IO_Modular_IO
);
1377 Wide_Wide_Name_Map
: constant Name_Map_Type
:= Name_Map_Type
'(
1378 Name_Decimal_IO => Ada_Wide_Wide_Text_IO_Decimal_IO,
1379 Name_Enumeration_IO => Ada_Wide_Wide_Text_IO_Enumeration_IO,
1380 Name_Fixed_IO => Ada_Wide_Wide_Text_IO_Fixed_IO,
1381 Name_Float_IO => Ada_Wide_Wide_Text_IO_Float_IO,
1382 Name_Integer_IO => Ada_Wide_Wide_Text_IO_Integer_IO,
1383 Name_Modular_IO => Ada_Wide_Wide_Text_IO_Modular_IO);
1386 -- Unit to be loaded, from one of the above maps
1389 -- Nothing to do if name is not an identifier or a selected component
1390 -- whose selector_name is an identifier.
1392 if Nkind (Nam) = N_Identifier then
1393 Chrs := Chars (Nam);
1395 elsif Nkind (Nam) = N_Selected_Component
1396 and then Nkind (Selector_Name (Nam)) = N_Identifier
1398 Chrs := Chars (Selector_Name (Nam));
1404 -- Nothing to do if name is not one of the Text_IO subpackages
1405 -- Otherwise look through loaded units, and if we find Text_IO
1406 -- or [Wide_]Wide_Text_IO already loaded, then load the proper child.
1408 if Chrs in Text_IO_Package_Name then
1409 for U in Main_Unit .. Last_Unit loop
1410 Get_Name_String (Unit_File_Name (U));
1412 if Name_Len = 12 then
1414 -- Here is where we do the loads if we find one of the units
1415 -- Ada.Text_IO or Ada.[Wide_]Wide_Text_IO. An interesting
1416 -- detail is that these units may already be used (i.e. their
1417 -- In_Use flags may be set). Normally when the In_Use flag is
1418 -- set, the Is_Potentially_Use_Visible flag of all entities in
1419 -- the package is set, but the new entity we are mysteriously
1420 -- adding was not there to have its flag set at the time. So
1421 -- that's why we pass the extra parameter to RTU_Find, to make
1422 -- sure the flag does get set now. Given that those generic
1423 -- packages are in fact child units, we must indicate that
1424 -- they are visible.
1426 if Name_Buffer (1 .. 12) = "a-textio.ads" then
1427 To_Load := Name_Map (Chrs);
1429 elsif Name_Buffer (1 .. 12) = "a-witeio.ads" then
1430 To_Load := Wide_Name_Map (Chrs);
1432 elsif Name_Buffer (1 .. 12) = "a-ztexio.ads" then
1433 To_Load := Wide_Wide_Name_Map (Chrs);
1439 Load_RTU (To_Load, Use_Setting => In_Use (Cunit_Entity (U)));
1440 Set_Is_Visible_Child_Unit (RT_Unit_Table (To_Load).Entity);
1442 -- Prevent creation of an implicit 'with' from (for example)
1443 -- Ada.Wide_Text_IO.Integer_IO to Ada.Text_IO.Integer_IO,
1444 -- because these could create cycles. First check whether the
1445 -- simple names match ("integer_io" = "integer_io"), and then
1446 -- check whether the parent is indeed one of the
1447 -- [[Wide_]Wide_]Text_IO packages.
1449 if Chrs = Chars (Cunit_Entity (Current_Sem_Unit)) then
1451 Parent_Name : constant Unit_Name_Type :=
1452 Get_Parent_Spec_Name
1453 (Unit_Name (Current_Sem_Unit));
1456 if Parent_Name /= No_Unit_Name then
1457 Get_Name_String (Parent_Name);
1460 P : String renames Name_Buffer (1 .. Name_Len);
1462 if P = "ada.text_io%s" or else
1463 P = "ada.wide_text_io%s" or else
1464 P = "ada.wide_wide_text_io%s"
1473 -- Add an implicit with clause from the current unit to the
1474 -- [[Wide_]Wide_]Text_IO child (if necessary).
1476 Maybe_Add_With (RT_Unit_Table (To_Load));
1484 -- Generate error message if run-time unit not available
1486 when RE_Not_Available =>
1487 Error_Msg_N ("& not available", Nam);