1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2012, 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_Aux
; use Sem_Aux
;
46 with Sem_Ch7
; use Sem_Ch7
;
47 with Sem_Dist
; use Sem_Dist
;
48 with Sem_Util
; use Sem_Util
;
49 with Sinfo
; use Sinfo
;
50 with Stand
; use Stand
;
51 with Snames
; use Snames
;
52 with Tbuild
; use Tbuild
;
53 with Uname
; use Uname
;
55 package body Rtsfind
is
57 RTE_Available_Call
: Boolean := False;
58 -- Set True during call to RTE from RTE_Available (or from call to
59 -- RTE_Record_Component from RTE_Record_Component_Available). Tells
60 -- the called subprogram to set RTE_Is_Available to False rather than
61 -- generating an error message.
63 RTE_Is_Available
: Boolean;
64 -- Set True by RTE_Available on entry. When RTE_Available_Call is set
65 -- True, set False if RTE would otherwise generate an error message.
71 -- The unit table has one entry for each unit included in the definition
72 -- of the type RTU_Id in the spec. The table entries are initialized in
73 -- Initialize to set the Entity field to Empty, indicating that the
74 -- corresponding unit has not yet been loaded. The fields are set when
75 -- a unit is loaded to contain the defining entity for the unit, the
76 -- unit name, and the unit number.
78 -- Note that a unit can be loaded either by a call to find an entity
79 -- within the unit (e.g. RTE), or by an explicit with of the unit. In
80 -- the latter case it is critical to make a call to Set_RTU_Loaded to
81 -- ensure that the entry in this table reflects the load.
83 -- A unit retrieved through rtsfind may end up in the context of several
84 -- other units, in addition to the main unit. These additional with_clauses
85 -- are needed to generate a proper traversal order for Inspector. To
86 -- minimize somewhat the redundancy created by numerous calls to rtsfind
87 -- from different units, we keep track of the list of implicit with_clauses
88 -- already created for the current loaded unit.
90 type RT_Unit_Table_Record
is record
92 Uname
: Unit_Name_Type
;
93 First_Implicit_With
: Node_Id
;
94 Unum
: Unit_Number_Type
;
97 RT_Unit_Table
: array (RTU_Id
) of RT_Unit_Table_Record
;
99 --------------------------
100 -- Runtime Entity Table --
101 --------------------------
103 -- There is one entry in the runtime entity table for each entity that is
104 -- included in the definition of the RE_Id type in the spec. The entries
105 -- are set by Initialize_Rtsfind to contain Empty, indicating that the
106 -- entity has not yet been located. Once the entity is located for the
107 -- first time, its ID is stored in this array, so that subsequent calls
108 -- for the same entity can be satisfied immediately.
110 -- NOTE: In order to avoid conflicts between record components and subprgs
111 -- that have the same name (i.e. subprogram External_Tag and
112 -- component External_Tag of package Ada.Tags) this table is not used
113 -- with Record_Components.
115 RE_Table
: array (RE_Id
) of Entity_Id
;
117 --------------------------------
118 -- Generation of with_clauses --
119 --------------------------------
121 -- When a unit is implicitly loaded as a result of a call to RTE, it is
122 -- necessary to create one or two implicit with_clauses. We add such
123 -- with_clauses to the extended main unit if needed, and also to whatever
124 -- unit needs them, which is not necessarily the main unit. The former
125 -- ensures that the object is correctly loaded by the binder. The latter
126 -- is necessary for SofCheck Inspector.
128 -- The field First_Implicit_With in the unit table record are used to
129 -- avoid creating duplicate with_clauses.
131 -----------------------
132 -- Local Subprograms --
133 -----------------------
135 function Check_CRT
(E
: RE_Id
; Eid
: Entity_Id
) return Entity_Id
;
136 -- Check entity Eid to ensure that configurable run-time restrictions are
137 -- met. May generate an error message (if RTE_Available_Call is false) and
138 -- raise RE_Not_Available if entity E does not exist (e.g. Eid is Empty).
139 -- Also check that entity is not overloaded.
141 procedure Entity_Not_Defined
(Id
: RE_Id
);
142 -- Outputs error messages for an entity that is not defined in the run-time
143 -- library (the form of the error message is tailored for no run time or
144 -- configurable run time mode as required).
146 function Get_Unit_Name
(U_Id
: RTU_Id
) return Unit_Name_Type
;
147 -- Retrieves the Unit Name given a unit id represented by its enumeration
150 procedure Load_Fail
(S
: String; U_Id
: RTU_Id
; Id
: RE_Id
);
151 -- Internal procedure called if we can't successfully locate or process a
152 -- run-time unit. The parameters give information about the error message
153 -- to be given. S is a reason for failing to compile the file and U_Id is
154 -- the unit id. RE_Id is the RE_Id originally passed to RTE. The message in
155 -- S is one of the following:
158 -- "had parser errors"
159 -- "had semantic errors"
161 -- The "not found" case is treated specially in that it is considered
162 -- a normal situation in configurable run-time mode, and generates
163 -- a warning, but is otherwise ignored.
167 Id
: RE_Id
:= RE_Null
;
168 Use_Setting
: Boolean := False);
169 -- Load the unit whose Id is given if not already loaded. The unit is
170 -- loaded and analyzed, and the entry in RT_Unit_Table is updated to
171 -- reflect the load. Use_Setting is used to indicate the initial setting
172 -- for the Is_Potentially_Use_Visible flag of the entity for the loaded
173 -- unit (if it is indeed loaded). A value of False means nothing special
174 -- need be done. A value of True indicates that this flag must be set to
175 -- True. It is needed only in the Text_IO_Kludge procedure, which may
176 -- materialize an entity of Text_IO (or [Wide_]Wide_Text_IO) that was
177 -- previously unknown. Id is the RE_Id value of the entity which was
178 -- originally requested. Id is used only for error message detail, and if
179 -- it is RE_Null, then the attempt to output the entity name is ignored.
181 function Make_Unit_Name
182 (U
: RT_Unit_Table_Record
;
183 N
: Node_Id
) return Node_Id
;
184 -- If the unit is a child unit, build fully qualified name for use in
187 procedure Maybe_Add_With
(U
: in out RT_Unit_Table_Record
);
188 -- If necessary, add an implicit with_clause from the current unit to the
189 -- one represented by U.
191 procedure Output_Entity_Name
(Id
: RE_Id
; Msg
: String);
192 -- Output continuation error message giving qualified name of entity
193 -- corresponding to Id, appending the string given by Msg. This call
194 -- is only effective in All_Errors mode.
196 function RE_Chars
(E
: RE_Id
) return Name_Id
;
197 -- Given a RE_Id value returns the Chars of the corresponding entity
199 procedure RTE_Error_Msg
(Msg
: String);
200 -- Generates a message by calling Error_Msg_N specifying Current_Error_Node
201 -- as the node location using the given Msg text. Special processing in the
202 -- case where RTE_Available_Call is set. In this case, no message is output
203 -- and instead RTE_Is_Available is set to False. Note that this can only be
204 -- used if you are sure that the message comes directly or indirectly from
205 -- a call to the RTE function.
211 function Check_CRT
(E
: RE_Id
; Eid
: Entity_Id
) return Entity_Id
is
212 U_Id
: constant RTU_Id
:= RE_Unit_Table
(E
);
216 if RTE_Available_Call
then
217 RTE_Is_Available
:= False;
219 Entity_Not_Defined
(E
);
222 raise RE_Not_Available
;
224 -- Entity is available
227 -- If in No_Run_Time mode and entity is not in one of the
228 -- specially permitted units, raise the exception.
231 and then not OK_No_Run_Time_Unit
(U_Id
)
233 Entity_Not_Defined
(E
);
234 raise RE_Not_Available
;
237 -- Check entity is not overloaded, checking for special exceptions
240 and then E
/= RE_Save_Occurrence
243 Write_Str
("Run-time configuration error (");
244 Write_Str
("rtsfind entity """);
245 Get_Decoded_Name_String
(Chars
(Eid
));
246 Set_Casing
(Mixed_Case
);
247 Write_Str
(Name_Buffer
(1 .. Name_Len
));
248 Write_Str
(""" is overloaded)");
250 raise Unrecoverable_Error
;
253 -- Otherwise entity is accessible
259 ------------------------
260 -- Entity_Not_Defined --
261 ------------------------
263 procedure Entity_Not_Defined
(Id
: RE_Id
) is
265 if No_Run_Time_Mode
then
267 -- If the error occurs when compiling the body of a predefined
268 -- unit for inlining purposes, the body must be illegal in this
269 -- mode, and there is no point in continuing.
271 if Is_Predefined_File_Name
272 (Unit_File_Name
(Get_Source_Unit
(Sloc
(Current_Error_Node
))))
275 ("construct not allowed in no run time mode!",
277 raise Unrecoverable_Error
;
280 RTE_Error_Msg
("|construct not allowed in no run time mode");
283 elsif Configurable_Run_Time_Mode
then
284 RTE_Error_Msg
("|construct not allowed in this configuration>");
286 RTE_Error_Msg
("run-time configuration error");
289 Output_Entity_Name
(Id
, "not defined");
290 end Entity_Not_Defined
;
296 function Get_Unit_Name
(U_Id
: RTU_Id
) return Unit_Name_Type
is
297 Uname_Chars
: constant String := RTU_Id
'Image (U_Id
);
300 Name_Len
:= Uname_Chars
'Length;
301 Name_Buffer
(1 .. Name_Len
) := Uname_Chars
;
302 Set_Casing
(All_Lower_Case
);
304 if U_Id
in Ada_Child
then
305 Name_Buffer
(4) := '.';
307 if U_Id
in Ada_Calendar_Child
then
308 Name_Buffer
(13) := '.';
310 elsif U_Id
in Ada_Dispatching_Child
then
311 Name_Buffer
(16) := '.';
313 elsif U_Id
in Ada_Interrupts_Child
then
314 Name_Buffer
(15) := '.';
316 elsif U_Id
in Ada_Numerics_Child
then
317 Name_Buffer
(13) := '.';
319 elsif U_Id
in Ada_Real_Time_Child
then
320 Name_Buffer
(14) := '.';
322 elsif U_Id
in Ada_Streams_Child
then
323 Name_Buffer
(12) := '.';
325 elsif U_Id
in Ada_Strings_Child
then
326 Name_Buffer
(12) := '.';
328 elsif U_Id
in Ada_Text_IO_Child
then
329 Name_Buffer
(12) := '.';
331 elsif U_Id
in Ada_Wide_Text_IO_Child
then
332 Name_Buffer
(17) := '.';
334 elsif U_Id
in Ada_Wide_Wide_Text_IO_Child
then
335 Name_Buffer
(22) := '.';
338 elsif U_Id
in Interfaces_Child
then
339 Name_Buffer
(11) := '.';
341 elsif U_Id
in System_Child
then
342 Name_Buffer
(7) := '.';
344 if U_Id
in System_Dim_Child
then
345 Name_Buffer
(11) := '.';
348 if U_Id
in System_Multiprocessors_Child
then
349 Name_Buffer
(23) := '.';
352 if U_Id
in System_Storage_Pools_Child
then
353 Name_Buffer
(21) := '.';
356 if U_Id
in System_Strings_Child
then
357 Name_Buffer
(15) := '.';
360 if U_Id
in System_Tasking_Child
then
361 Name_Buffer
(15) := '.';
364 if U_Id
in System_Tasking_Restricted_Child
then
365 Name_Buffer
(26) := '.';
368 if U_Id
in System_Tasking_Protected_Objects_Child
then
369 Name_Buffer
(33) := '.';
372 if U_Id
in System_Tasking_Async_Delays_Child
then
373 Name_Buffer
(28) := '.';
377 -- Add %s at end for spec
379 Name_Buffer
(Name_Len
+ 1) := '%';
380 Name_Buffer
(Name_Len
+ 2) := 's';
381 Name_Len
:= Name_Len
+ 2;
390 procedure Initialize
is
392 -- Initialize the unit table
395 RT_Unit_Table
(J
).Entity
:= Empty
;
399 RE_Table
(J
) := Empty
;
402 RTE_Is_Available
:= False;
409 function Is_RTE
(Ent
: Entity_Id
; E
: RE_Id
) return Boolean is
410 E_Unit_Name
: Unit_Name_Type
;
411 Ent_Unit_Name
: Unit_Name_Type
;
421 -- If E has already a corresponding entity, check it directly,
422 -- going to full views if they exist to deal with the incomplete
423 -- and private type cases properly.
425 elsif Present
(RE_Table
(E
)) then
428 if Is_Type
(E1
) and then Present
(Full_View
(E1
)) then
429 E1
:= Full_View
(E1
);
434 if Is_Type
(E2
) and then Present
(Full_View
(E2
)) then
435 E2
:= Full_View
(E2
);
441 -- If the unit containing E is not loaded, we already know that the
442 -- entity we have cannot have come from this unit.
444 E_Unit_Name
:= Get_Unit_Name
(RE_Unit_Table
(E
));
446 if not Is_Loaded
(E_Unit_Name
) then
450 -- Here the unit containing the entity is loaded. We have not made
451 -- an explicit call to RTE to get the entity in question, but we may
452 -- have obtained a reference to it indirectly from some other entity
453 -- in the same unit, or some other unit that references it.
455 -- Get the defining unit of the entity
459 if Ekind
(S
) /= E_Package
then
463 Ent_Unit_Name
:= Get_Unit_Name
(Unit_Declaration_Node
(S
));
465 -- If the defining unit of the entity we are testing is not the
466 -- unit containing E, then they cannot possibly match.
468 if Ent_Unit_Name
/= E_Unit_Name
then
472 -- If the units match, then compare the names (remember that no
473 -- overloading is permitted in entities fetched using Rtsfind).
475 if RE_Chars
(E
) = Chars
(Ent
) then
478 -- If front-end inlining is enabled, we may be within a body that
479 -- contains inlined functions, which has not been retrieved through
480 -- rtsfind, and therefore is not yet recorded in the RT_Unit_Table.
481 -- Add the unit information now, it must be fully available.
484 U
: RT_Unit_Table_Record
485 renames RT_Unit_Table
(RE_Unit_Table
(E
));
487 if No
(U
.Entity
) then
489 U
.Uname
:= E_Unit_Name
;
490 U
.Unum
:= Get_Source_Unit
(S
);
504 function Is_RTU
(Ent
: Entity_Id
; U
: RTU_Id
) return Boolean is
505 E
: constant Entity_Id
:= RT_Unit_Table
(U
).Entity
;
507 return Present
(E
) and then E
= Ent
;
510 ----------------------------
511 -- Is_Text_IO_Kludge_Unit --
512 ----------------------------
514 function Is_Text_IO_Kludge_Unit
(Nam
: Node_Id
) return Boolean is
519 if Nkind
(Nam
) /= N_Expanded_Name
then
524 Sel
:= Selector_Name
(Nam
);
526 if Nkind
(Sel
) /= N_Expanded_Name
527 or else Nkind
(Prf
) /= N_Identifier
528 or else Chars
(Prf
) /= Name_Ada
534 Sel
:= Selector_Name
(Sel
);
537 Nkind
(Prf
) = N_Identifier
539 (Chars
(Prf
) = Name_Text_IO
541 Chars
(Prf
) = Name_Wide_Text_IO
543 Chars
(Prf
) = Name_Wide_Wide_Text_IO
)
545 Nkind
(Sel
) = N_Identifier
547 Chars
(Sel
) in Text_IO_Package_Name
;
548 end Is_Text_IO_Kludge_Unit
;
554 procedure Load_Fail
(S
: String; U_Id
: RTU_Id
; Id
: RE_Id
) is
555 M
: String (1 .. 100);
559 -- Output header message
561 if Configurable_Run_Time_Mode
then
562 RTE_Error_Msg
("construct not allowed in configurable run-time mode");
564 RTE_Error_Msg
("run-time library configuration error");
567 -- Output file name and reason string
569 M
(1 .. 6) := "\file ";
573 (Get_File_Name
(RT_Unit_Table
(U_Id
).Uname
, Subunit
=> False));
574 M
(P
+ 1 .. P
+ Name_Len
) := Name_Buffer
(1 .. Name_Len
);
580 M
(P
+ 1 .. P
+ S
'Length) := S
;
583 RTE_Error_Msg
(M
(1 .. P
));
585 -- Output entity name
587 Output_Entity_Name
(Id
, "not available");
589 -- In configurable run time mode, we raise RE_Not_Available, and the
590 -- caller is expected to deal gracefully with this. In the case of a
591 -- call to RTE_Available, this exception will be caught in Rtsfind,
592 -- and result in a returned value of False for the call.
594 if Configurable_Run_Time_Mode
then
595 raise RE_Not_Available
;
597 -- Here we have a load failure in normal full run time mode. See if we
598 -- are in the context of an RTE_Available call. If so, we just raise
599 -- RE_Not_Available. This can happen if a unit is unavailable, which
600 -- happens for example in the VM case, where the run-time is not
601 -- complete, but we do not regard it as a configurable run-time.
602 -- If the caller has done an explicit call to RTE_Available, then
603 -- clearly the caller is prepared to deal with a result of False.
605 elsif RTE_Available_Call
then
606 RTE_Is_Available
:= False;
607 raise RE_Not_Available
;
609 -- If we are not in the context of an RTE_Available call, we are really
610 -- trying to load an entity that is not there, and that should never
611 -- happen, so in this case we signal a fatal error.
614 raise Unrecoverable_Error
;
624 Id
: RE_Id
:= RE_Null
;
625 Use_Setting
: Boolean := False)
627 U
: RT_Unit_Table_Record
renames RT_Unit_Table
(U_Id
);
628 Priv_Par
: constant Elist_Id
:= New_Elmt_List
;
631 procedure Save_Private_Visibility
;
632 -- If the current unit is the body of child unit or the spec of a
633 -- private child unit, the private declarations of the parent(s) are
634 -- visible. If the unit to be loaded is another public sibling, its
635 -- compilation will affect the visibility of the common ancestors.
636 -- Indicate those that must be restored.
638 procedure Restore_Private_Visibility
;
639 -- Restore the visibility of ancestors after compiling RTU
641 --------------------------------
642 -- Restore_Private_Visibility --
643 --------------------------------
645 procedure Restore_Private_Visibility
is
649 E_Par
:= First_Elmt
(Priv_Par
);
650 while Present
(E_Par
) loop
651 if not In_Private_Part
(Node
(E_Par
)) then
652 Install_Private_Declarations
(Node
(E_Par
));
657 end Restore_Private_Visibility
;
659 -----------------------------
660 -- Save_Private_Visibility --
661 -----------------------------
663 procedure Save_Private_Visibility
is
667 Par
:= Scope
(Current_Scope
);
669 and then Par
/= Standard_Standard
671 if Ekind
(Par
) = E_Package
672 and then Is_Compilation_Unit
(Par
)
673 and then In_Private_Part
(Par
)
675 Append_Elmt
(Par
, Priv_Par
);
680 end Save_Private_Visibility
;
682 -- Start of processing for Load_RTU
685 -- Nothing to do if unit is already loaded
687 if Present
(U
.Entity
) then
691 -- Note if secondary stack is used
693 if U_Id
= System_Secondary_Stack
then
694 Opt
.Sec_Stack_Used
:= True;
697 -- Otherwise we need to load the unit, First build unit name
698 -- from the enumeration literal name in type RTU_Id.
700 U
.Uname
:= Get_Unit_Name
(U_Id
);
701 U
. First_Implicit_With
:= Empty
;
703 -- Now do the load call, note that setting Error_Node to Empty is
704 -- a signal to Load_Unit that we will regard a failure to find the
705 -- file as a fatal error, and that it should not output any kind
706 -- of diagnostics, since we will take care of it here.
708 -- We save style checking switches and turn off style checking for
709 -- loading the unit, since we don't want any style checking!
712 Save_Style_Check
: constant Boolean := Style_Check
;
714 Style_Check
:= False;
717 (Load_Name
=> U
.Uname
,
720 Error_Node
=> Empty
);
721 Style_Check
:= Save_Style_Check
;
724 -- Check for bad unit load
726 if U
.Unum
= No_Unit
then
727 Load_Fail
("not found", U_Id
, Id
);
728 elsif Fatal_Error
(U
.Unum
) then
729 Load_Fail
("had parser errors", U_Id
, Id
);
732 -- Make sure that the unit is analyzed
735 Was_Analyzed
: constant Boolean :=
736 Analyzed
(Cunit
(Current_Sem_Unit
));
739 -- Pretend that the current unit is analyzed, in case it is System
740 -- or some such. This allows us to put some declarations, such as
741 -- exceptions and packed arrays of Boolean, into System even though
742 -- expanding them requires System...
744 -- This is a bit odd but works fine. If the RTS unit does not depend
745 -- in any way on the current unit, then it never gets back into the
746 -- current unit's tree, and the change we make to the current unit
747 -- tree is never noticed by anyone (it is undone in a moment). That
748 -- is the normal situation.
750 -- If the RTS Unit *does* depend on the current unit, for instance,
751 -- when you are compiling System, then you had better have finished
752 -- analyzing the part of System that is depended on before you try to
753 -- load the RTS Unit. This means having the code in System ordered in
754 -- an appropriate manner.
756 Set_Analyzed
(Cunit
(Current_Sem_Unit
), True);
758 if not Analyzed
(Cunit
(U
.Unum
)) then
760 -- If the unit is already loaded through a limited_with_clause,
761 -- the relevant entities must already be available. We do not
762 -- want to load and analyze the unit because this would create
763 -- a real semantic dependence when the purpose of the limited_with
764 -- is precisely to avoid such.
766 if From_With_Type
(Cunit_Entity
(U
.Unum
)) then
770 Save_Private_Visibility
;
771 Semantics
(Cunit
(U
.Unum
));
772 Restore_Private_Visibility
;
774 if Fatal_Error
(U
.Unum
) then
775 Load_Fail
("had semantic errors", U_Id
, Id
);
782 Set_Analyzed
(Cunit
(Current_Sem_Unit
), Was_Analyzed
);
785 Lib_Unit
:= Unit
(Cunit
(U
.Unum
));
786 U
.Entity
:= Defining_Entity
(Lib_Unit
);
789 Set_Is_Potentially_Use_Visible
(U
.Entity
, True);
797 function Make_Unit_Name
798 (U
: RT_Unit_Table_Record
;
799 N
: Node_Id
) return Node_Id
is
805 Nam
:= New_Reference_To
(U
.Entity
, Standard_Location
);
806 Scop
:= Scope
(U
.Entity
);
808 if Nkind
(N
) = N_Defining_Program_Unit_Name
then
809 while Scop
/= Standard_Standard
loop
811 Make_Expanded_Name
(Standard_Location
,
812 Chars
=> Chars
(U
.Entity
),
813 Prefix
=> New_Reference_To
(Scop
, Standard_Location
),
814 Selector_Name
=> Nam
);
815 Set_Entity
(Nam
, U
.Entity
);
817 Scop
:= Scope
(Scop
);
828 procedure Maybe_Add_With
(U
: in out RT_Unit_Table_Record
) is
830 -- We do not need to generate a with_clause for a call issued from
831 -- RTE_Component_Available. However, for CodePeer, we need these
832 -- additional with's, because for a sequence like "if RTE_Available (X)
833 -- then ... RTE (X)" the RTE call fails to create some necessary
836 if RTE_Available_Call
and then not Generate_SCIL
then
840 -- Avoid creating directly self-referential with clauses
842 if Current_Sem_Unit
= U
.Unum
then
846 -- Add the with_clause, if not already in the context of the
847 -- current compilation unit.
850 LibUnit
: constant Node_Id
:= Unit
(Cunit
(U
.Unum
));
855 Clause
:= U
.First_Implicit_With
;
856 while Present
(Clause
) loop
857 if Parent
(Clause
) = Cunit
(Current_Sem_Unit
) then
861 Clause
:= Next_Implicit_With
(Clause
);
865 Make_With_Clause
(Standard_Location
,
868 (U
, Defining_Unit_Name
(Specification
(LibUnit
))));
870 Set_Library_Unit
(Withn
, Cunit
(U
.Unum
));
871 Set_Corresponding_Spec
(Withn
, U
.Entity
);
872 Set_First_Name
(Withn
, True);
873 Set_Implicit_With
(Withn
, True);
874 Set_Next_Implicit_With
(Withn
, U
.First_Implicit_With
);
876 U
.First_Implicit_With
:= Withn
;
878 Mark_Rewrite_Insertion
(Withn
);
879 Append
(Withn
, Context_Items
(Cunit
(Current_Sem_Unit
)));
880 Check_Restriction_No_Dependence
(Name
(Withn
), Current_Error_Node
);
884 ------------------------
885 -- Output_Entity_Name --
886 ------------------------
888 procedure Output_Entity_Name
(Id
: RE_Id
; Msg
: String) is
889 M
: String (1 .. 2048);
891 -- M (1 .. P) is current message to be output
893 RE_Image
: constant String := RE_Id
'Image (Id
);
900 M
(1 .. 9) := "\entity """;
903 -- Add unit name to message, excluding %s or %b at end
905 Get_Name_String
(Get_Unit_Name
(RE_Unit_Table
(Id
)));
906 Name_Len
:= Name_Len
- 2;
907 Set_Casing
(Mixed_Case
);
908 M
(P
+ 1 .. P
+ Name_Len
) := Name_Buffer
(1 .. Name_Len
);
911 -- Add a qualifying period
916 -- Add entity name and closing quote to message
918 Name_Len
:= RE_Image
'Length - 3;
919 Name_Buffer
(1 .. Name_Len
) := RE_Image
(4 .. RE_Image
'Length);
920 Set_Casing
(Mixed_Case
);
921 M
(P
+ 1 .. P
+ Name_Len
) := Name_Buffer
(1 .. Name_Len
);
930 M
(P
+ 1 .. P
+ Msg
'Length) := Msg
;
933 -- Output message at current error node location
935 RTE_Error_Msg
(M
(1 .. P
));
936 end Output_Entity_Name
;
942 function RE_Chars
(E
: RE_Id
) return Name_Id
is
943 RE_Name_Chars
: constant String := RE_Id
'Image (E
);
946 -- Copy name skipping initial RE_ or RO_XX characters
948 if RE_Name_Chars
(1 .. 2) = "RE" then
949 for J
in 4 .. RE_Name_Chars
'Last loop
950 Name_Buffer
(J
- 3) := Fold_Lower
(RE_Name_Chars
(J
));
953 Name_Len
:= RE_Name_Chars
'Length - 3;
956 for J
in 7 .. RE_Name_Chars
'Last loop
957 Name_Buffer
(J
- 6) := Fold_Lower
(RE_Name_Chars
(J
));
960 Name_Len
:= RE_Name_Chars
'Length - 6;
970 function RTE
(E
: RE_Id
) return Entity_Id
is
971 U_Id
: constant RTU_Id
:= RE_Unit_Table
(E
);
972 U
: RT_Unit_Table_Record
renames RT_Unit_Table
(U_Id
);
978 -- The following flag is used to disable front-end inlining when RTE
979 -- is invoked. This prevents the analysis of other runtime bodies when
980 -- a particular spec is loaded through Rtsfind. This is both efficient,
981 -- and it prevents spurious visibility conflicts between use-visible
982 -- user entities, and entities in run-time packages.
984 Save_Front_End_Inlining
: Boolean;
987 -- Reject programs that make use of distribution features not supported
988 -- on the current target. Also check that the PCS is compatible with
989 -- the code generator version. On such targets (VMS, Vxworks, others?)
990 -- we provide a minimal body for System.Rpc that only supplies an
991 -- implementation of Partition_Id.
993 function Find_Local_Entity
(E
: RE_Id
) return Entity_Id
;
994 -- This function is used when entity E is in this compilation's main
995 -- unit. It gets the value from the already compiled declaration.
1001 procedure Check_RPC
is
1003 -- Bypass this check if debug flag -gnatdR set
1005 if Debug_Flag_RR
then
1009 -- Otherwise we need the check if we are going after one of the
1010 -- critical entities in System.RPC / System.Partition_Interface.
1016 E
= RE_Params_Stream_Type
1018 E
= RE_Request_Access
1020 -- If generating RCI stubs, check that we have a real PCS
1022 if (Distribution_Stub_Mode
= Generate_Receiver_Stub_Body
1024 Distribution_Stub_Mode
= Generate_Caller_Stub_Body
)
1025 and then Get_PCS_Name
= Name_No_DSA
1028 Write_Str
("distribution feature not supported");
1030 raise Unrecoverable_Error
;
1032 -- In all cases, check Exp_Dist and System.Partition_Interface
1035 elsif Get_PCS_Version
/=
1036 Exp_Dist
.PCS_Version_Number
(Get_PCS_Name
)
1039 Write_Str
("PCS version mismatch: expander ");
1040 Write_Int
(Exp_Dist
.PCS_Version_Number
(Get_PCS_Name
));
1041 Write_Str
(", PCS (");
1042 Write_Name
(Get_PCS_Name
);
1044 Write_Int
(Get_PCS_Version
);
1046 raise Unrecoverable_Error
;
1051 -----------------------
1052 -- Find_Local_Entity --
1053 -----------------------
1055 function Find_Local_Entity
(E
: RE_Id
) return Entity_Id
is
1056 RE_Str
: constant String := RE_Id
'Image (E
);
1060 Save_Nam
: constant String := Name_Buffer
(1 .. Name_Len
);
1061 -- Save name buffer and length over call
1064 Name_Len
:= Natural'Max (0, RE_Str
'Length - 3);
1065 Name_Buffer
(1 .. Name_Len
) :=
1066 RE_Str
(RE_Str
'First + 3 .. RE_Str
'Last);
1069 Ent
:= Entity_Id
(Get_Name_Table_Info
(Nam
));
1071 Name_Len
:= Save_Nam
'Length;
1072 Name_Buffer
(1 .. Name_Len
) := Save_Nam
;
1075 end Find_Local_Entity
;
1077 -- Start of processing for RTE
1080 -- Doing a rtsfind in system.ads is special, as we cannot do this
1081 -- when compiling System itself. So if we are compiling system then
1082 -- we should already have acquired and processed the declaration
1083 -- of the entity. The test is to see if this compilation's main unit
1084 -- is System. If so, return the value from the already compiled
1085 -- declaration and otherwise do a regular find.
1087 -- Not pleasant, but these kinds of annoying recursion when
1088 -- writing an Ada compiler in Ada have to be broken somewhere!
1090 if Present
(Main_Unit_Entity
)
1091 and then Chars
(Main_Unit_Entity
) = Name_System
1092 and then Analyzed
(Main_Unit_Entity
)
1093 and then not Is_Child_Unit
(Main_Unit_Entity
)
1095 return Check_CRT
(E
, Find_Local_Entity
(E
));
1098 Save_Front_End_Inlining
:= Front_End_Inlining
;
1099 Front_End_Inlining
:= False;
1101 -- Load unit if unit not previously loaded
1103 if No
(RE_Table
(E
)) then
1104 Load_RTU
(U_Id
, Id
=> E
);
1105 Lib_Unit
:= Unit
(Cunit
(U
.Unum
));
1107 -- In the subprogram case, we are all done, the entity we want
1108 -- is the entity for the subprogram itself. Note that we do not
1109 -- bother to check that it is the entity that was requested.
1110 -- the only way that could fail to be the case is if runtime is
1111 -- hopelessly misconfigured, and it isn't worth testing for this.
1113 if Nkind
(Lib_Unit
) = N_Subprogram_Declaration
then
1114 RE_Table
(E
) := U
.Entity
;
1116 -- Otherwise we must have the package case. First check package
1117 -- entity itself (e.g. RTE_Name for System.Interrupts.Name)
1120 pragma Assert
(Nkind
(Lib_Unit
) = N_Package_Declaration
);
1121 Ename
:= RE_Chars
(E
);
1123 -- First we search the package entity chain. If the package
1124 -- only has a limited view, scan the corresponding list of
1125 -- incomplete types.
1127 if From_With_Type
(U
.Entity
) then
1128 Pkg_Ent
:= First_Entity
(Limited_View
(U
.Entity
));
1130 Pkg_Ent
:= First_Entity
(U
.Entity
);
1133 while Present
(Pkg_Ent
) loop
1134 if Ename
= Chars
(Pkg_Ent
) then
1135 RE_Table
(E
) := Pkg_Ent
;
1140 Next_Entity
(Pkg_Ent
);
1143 -- If we did not find the entity in the package entity chain,
1144 -- then check if the package entity itself matches. Note that
1145 -- we do this check after searching the entity chain, since
1146 -- the rule is that in case of ambiguity, we prefer the entity
1147 -- defined within the package, rather than the package itself.
1149 if Ename
= Chars
(U
.Entity
) then
1150 RE_Table
(E
) := U
.Entity
;
1153 -- If we didn't find the entity we want, something is wrong.
1154 -- We just leave RE_Table (E) set to Empty and the appropriate
1155 -- action will be taken by Check_CRT when we exit.
1163 Front_End_Inlining
:= Save_Front_End_Inlining
;
1164 return Check_CRT
(E
, RE_Table
(E
));
1171 function RTE_Available
(E
: RE_Id
) return Boolean is
1173 pragma Warnings
(Off
, Dummy
);
1177 Save_RTE_Available_Call
: constant Boolean := RTE_Available_Call
;
1178 Save_RTE_Is_Available
: constant Boolean := RTE_Is_Available
;
1179 -- These are saved recursively because the call to load a unit
1180 -- caused by an upper level call may perform a recursive call
1181 -- to this routine during analysis of the corresponding unit.
1184 RTE_Available_Call
:= True;
1185 RTE_Is_Available
:= True;
1187 Result
:= RTE_Is_Available
;
1188 RTE_Available_Call
:= Save_RTE_Available_Call
;
1189 RTE_Is_Available
:= Save_RTE_Is_Available
;
1193 when RE_Not_Available
=>
1194 RTE_Available_Call
:= Save_RTE_Available_Call
;
1195 RTE_Is_Available
:= Save_RTE_Is_Available
;
1199 --------------------------
1200 -- RTE_Record_Component --
1201 --------------------------
1203 function RTE_Record_Component
(E
: RE_Id
) return Entity_Id
is
1204 U_Id
: constant RTU_Id
:= RE_Unit_Table
(E
);
1205 U
: RT_Unit_Table_Record
renames RT_Unit_Table
(U_Id
);
1208 Found_E
: Entity_Id
;
1210 Pkg_Ent
: Entity_Id
;
1212 -- The following flag is used to disable front-end inlining when
1213 -- RTE_Record_Component is invoked. This prevents the analysis of other
1214 -- runtime bodies when a particular spec is loaded through Rtsfind. This
1215 -- is both efficient, and it prevents spurious visibility conflicts
1216 -- between use-visible user entities, and entities in run-time packages.
1218 Save_Front_End_Inlining
: Boolean;
1221 -- Note: Contrary to subprogram RTE, there is no need to do any special
1222 -- management with package system.ads because it has no record type
1225 Save_Front_End_Inlining
:= Front_End_Inlining
;
1226 Front_End_Inlining
:= False;
1228 -- Load unit if unit not previously loaded
1230 if not Present
(U
.Entity
) then
1231 Load_RTU
(U_Id
, Id
=> E
);
1234 Lib_Unit
:= Unit
(Cunit
(U
.Unum
));
1236 pragma Assert
(Nkind
(Lib_Unit
) = N_Package_Declaration
);
1237 Ename
:= RE_Chars
(E
);
1239 -- Search the entity in the components of record type declarations
1240 -- found in the package entity chain.
1243 Pkg_Ent
:= First_Entity
(U
.Entity
);
1244 Search
: while Present
(Pkg_Ent
) loop
1245 if Is_Record_Type
(Pkg_Ent
) then
1246 E1
:= First_Entity
(Pkg_Ent
);
1247 while Present
(E1
) loop
1248 if Ename
= Chars
(E1
) then
1249 pragma Assert
(not Present
(Found_E
));
1257 Next_Entity
(Pkg_Ent
);
1260 -- If we didn't find the entity we want, something is wrong. The
1261 -- appropriate action will be taken by Check_CRT when we exit.
1265 Front_End_Inlining
:= Save_Front_End_Inlining
;
1266 return Check_CRT
(E
, Found_E
);
1267 end RTE_Record_Component
;
1269 ------------------------------------
1270 -- RTE_Record_Component_Available --
1271 ------------------------------------
1273 function RTE_Record_Component_Available
(E
: RE_Id
) return Boolean is
1275 pragma Warnings
(Off
, Dummy
);
1279 Save_RTE_Available_Call
: constant Boolean := RTE_Available_Call
;
1280 Save_RTE_Is_Available
: constant Boolean := RTE_Is_Available
;
1281 -- These are saved recursively because the call to load a unit
1282 -- caused by an upper level call may perform a recursive call
1283 -- to this routine during analysis of the corresponding unit.
1286 RTE_Available_Call
:= True;
1287 RTE_Is_Available
:= True;
1288 Dummy
:= RTE_Record_Component
(E
);
1289 Result
:= RTE_Is_Available
;
1290 RTE_Available_Call
:= Save_RTE_Available_Call
;
1291 RTE_Is_Available
:= Save_RTE_Is_Available
;
1295 when RE_Not_Available
=>
1296 RTE_Available_Call
:= Save_RTE_Available_Call
;
1297 RTE_Is_Available
:= Save_RTE_Is_Available
;
1299 end RTE_Record_Component_Available
;
1305 procedure RTE_Error_Msg
(Msg
: String) is
1307 if RTE_Available_Call
then
1308 RTE_Is_Available
:= False;
1310 Error_Msg_N
(Msg
, Current_Error_Node
);
1312 -- Bump count of violations if we are in configurable run-time
1313 -- mode and this is not a continuation message.
1315 if Configurable_Run_Time_Mode
and then Msg
(Msg
'First) /= '\' then
1316 Configurable_Run_Time_Violations
:=
1317 Configurable_Run_Time_Violations
+ 1;
1326 function RTU_Entity
(U
: RTU_Id
) return Entity_Id
is
1328 return RT_Unit_Table
(U
).Entity
;
1335 function RTU_Loaded
(U
: RTU_Id
) return Boolean is
1337 return Present
(RT_Unit_Table
(U
).Entity
);
1340 --------------------
1341 -- Set_RTU_Loaded --
1342 --------------------
1344 procedure Set_RTU_Loaded
(N
: Node_Id
) is
1345 Loc
: constant Source_Ptr
:= Sloc
(N
);
1346 Unum
: constant Unit_Number_Type
:= Get_Source_Unit
(Loc
);
1347 Uname
: constant Unit_Name_Type
:= Unit_Name
(Unum
);
1348 E
: constant Entity_Id
:=
1349 Defining_Entity
(Unit
(Cunit
(Unum
)));
1351 pragma Assert
(Is_Predefined_File_Name
(Unit_File_Name
(Unum
)));
1353 -- Loop through entries in RTU table looking for matching entry
1355 for U_Id
in RTU_Id
'Range loop
1357 -- Here we have a match
1359 if Get_Unit_Name
(U_Id
) = Uname
then
1361 U
: RT_Unit_Table_Record
renames RT_Unit_Table
(U_Id
);
1362 -- The RT_Unit_Table entry that may need updating
1365 -- If entry is not set, set it now, and indicate that it was
1366 -- loaded through an explicit context clause.
1368 if No
(U
.Entity
) then
1370 Uname
=> Get_Unit_Name
(U_Id
),
1372 First_Implicit_With
=> Empty
);
1381 --------------------
1382 -- Text_IO_Kludge --
1383 --------------------
1385 procedure Text_IO_Kludge
(Nam
: Node_Id
) is
1388 type Name_Map_Type
is array (Text_IO_Package_Name
) of RTU_Id
;
1390 Name_Map
: constant Name_Map_Type
:= Name_Map_Type
'(
1391 Name_Decimal_IO => Ada_Text_IO_Decimal_IO,
1392 Name_Enumeration_IO => Ada_Text_IO_Enumeration_IO,
1393 Name_Fixed_IO => Ada_Text_IO_Fixed_IO,
1394 Name_Float_IO => Ada_Text_IO_Float_IO,
1395 Name_Integer_IO => Ada_Text_IO_Integer_IO,
1396 Name_Modular_IO => Ada_Text_IO_Modular_IO);
1398 Wide_Name_Map : constant Name_Map_Type := Name_Map_Type'(
1399 Name_Decimal_IO
=> Ada_Wide_Text_IO_Decimal_IO
,
1400 Name_Enumeration_IO
=> Ada_Wide_Text_IO_Enumeration_IO
,
1401 Name_Fixed_IO
=> Ada_Wide_Text_IO_Fixed_IO
,
1402 Name_Float_IO
=> Ada_Wide_Text_IO_Float_IO
,
1403 Name_Integer_IO
=> Ada_Wide_Text_IO_Integer_IO
,
1404 Name_Modular_IO
=> Ada_Wide_Text_IO_Modular_IO
);
1406 Wide_Wide_Name_Map
: constant Name_Map_Type
:= Name_Map_Type
'(
1407 Name_Decimal_IO => Ada_Wide_Wide_Text_IO_Decimal_IO,
1408 Name_Enumeration_IO => Ada_Wide_Wide_Text_IO_Enumeration_IO,
1409 Name_Fixed_IO => Ada_Wide_Wide_Text_IO_Fixed_IO,
1410 Name_Float_IO => Ada_Wide_Wide_Text_IO_Float_IO,
1411 Name_Integer_IO => Ada_Wide_Wide_Text_IO_Integer_IO,
1412 Name_Modular_IO => Ada_Wide_Wide_Text_IO_Modular_IO);
1415 -- Unit to be loaded, from one of the above maps
1418 -- Nothing to do if name is not an identifier or a selected component
1419 -- whose selector_name is an identifier.
1421 if Nkind (Nam) = N_Identifier then
1422 Chrs := Chars (Nam);
1424 elsif Nkind (Nam) = N_Selected_Component
1425 and then Nkind (Selector_Name (Nam)) = N_Identifier
1427 Chrs := Chars (Selector_Name (Nam));
1433 -- Nothing to do if name is not one of the Text_IO subpackages
1434 -- Otherwise look through loaded units, and if we find Text_IO
1435 -- or [Wide_]Wide_Text_IO already loaded, then load the proper child.
1437 if Chrs in Text_IO_Package_Name then
1438 for U in Main_Unit .. Last_Unit loop
1439 Get_Name_String (Unit_File_Name (U));
1441 if Name_Len = 12 then
1443 -- Here is where we do the loads if we find one of the units
1444 -- Ada.Text_IO or Ada.[Wide_]Wide_Text_IO. An interesting
1445 -- detail is that these units may already be used (i.e. their
1446 -- In_Use flags may be set). Normally when the In_Use flag is
1447 -- set, the Is_Potentially_Use_Visible flag of all entities in
1448 -- the package is set, but the new entity we are mysteriously
1449 -- adding was not there to have its flag set at the time. So
1450 -- that's why we pass the extra parameter to RTU_Find, to make
1451 -- sure the flag does get set now. Given that those generic
1452 -- packages are in fact child units, we must indicate that
1453 -- they are visible.
1455 if Name_Buffer (1 .. 12) = "a-textio.ads" then
1456 To_Load := Name_Map (Chrs);
1458 elsif Name_Buffer (1 .. 12) = "a-witeio.ads" then
1459 To_Load := Wide_Name_Map (Chrs);
1461 elsif Name_Buffer (1 .. 12) = "a-ztexio.ads" then
1462 To_Load := Wide_Wide_Name_Map (Chrs);
1468 Load_RTU (To_Load, Use_Setting => In_Use (Cunit_Entity (U)));
1469 Set_Is_Visible_Child_Unit (RT_Unit_Table (To_Load).Entity);
1471 -- Prevent creation of an implicit 'with' from (for example)
1472 -- Ada.Wide_Text_IO.Integer_IO to Ada.Text_IO.Integer_IO,
1473 -- because these could create cycles. First check whether the
1474 -- simple names match ("integer_io" = "integer_io"), and then
1475 -- check whether the parent is indeed one of the
1476 -- [[Wide_]Wide_]Text_IO packages.
1478 if Chrs = Chars (Cunit_Entity (Current_Sem_Unit)) then
1480 Parent_Name : constant Unit_Name_Type :=
1481 Get_Parent_Spec_Name
1482 (Unit_Name (Current_Sem_Unit));
1485 if Parent_Name /= No_Unit_Name then
1486 Get_Name_String (Parent_Name);
1489 P : String renames Name_Buffer (1 .. Name_Len);
1491 if P = "ada.text_io%s" or else
1492 P = "ada.wide_text_io%s" or else
1493 P = "ada.wide_wide_text_io%s"
1502 -- Add an implicit with clause from the current unit to the
1503 -- [[Wide_]Wide_]Text_IO child (if necessary).
1505 Maybe_Add_With (RT_Unit_Table (To_Load));
1513 -- Generate error message if run-time unit not available
1515 when RE_Not_Available =>
1516 Error_Msg_N ("& not available", Nam);