Merged with mainline at revision 128810.
[official-gcc.git] / gcc / ada / rtsfind.adb
blob0b17d957f814665390374c34f4edb6544fec2c3d
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- R T S F I N D --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2007, 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 ------------------------------------------------------------------------------
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;
36 with Lib; use Lib;
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;
42 with Opt; use Opt;
43 with Restrict; use Restrict;
44 with Sem; use Sem;
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.
66 ----------------
67 -- Unit table --
68 ----------------
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 type RT_Unit_Table_Record is record
83 Entity : Entity_Id;
84 Uname : Unit_Name_Type;
85 Unum : Unit_Number_Type;
86 Withed : Boolean;
87 end record;
89 RT_Unit_Table : array (RTU_Id) of RT_Unit_Table_Record;
91 --------------------------
92 -- Runtime Entity Table --
93 --------------------------
95 -- There is one entry in the runtime entity table for each entity that is
96 -- included in the definition of the RE_Id type in the spec. The entries
97 -- are set by Initialize_Rtsfind to contain Empty, indicating that the
98 -- entity has not yet been located. Once the entity is located for the
99 -- first time, its ID is stored in this array, so that subsequent calls
100 -- for the same entity can be satisfied immediately.
102 -- NOTE: In order to avoid conflicts between record components and subprgs
103 -- that have the same name (ie. subprogram External_Tag and component
104 -- External_Tag of package Ada.Tags) this table is not used with
105 -- Record_Components.
107 RE_Table : array (RE_Id) of Entity_Id;
109 --------------------------
110 -- Generation of WITH's --
111 --------------------------
113 -- When a unit is implicitly loaded as a result of a call to RTE, it
114 -- is necessary to create an implicit WITH to ensure that the object
115 -- is correctly loaded by the binder. Such WITH statements are only
116 -- required when the request is from the extended main unit (if a
117 -- client needs a WITH, that will be taken care of when the client
118 -- is compiled).
120 -- We always attach the WITH to the main unit. This is not perfectly
121 -- accurate in terms of elaboration requirements, but it is close
122 -- enough, since the units that are accessed using rtsfind do not
123 -- have delicate elaboration requirements.
125 -- The flag Withed in the unit table record is initially set to False.
126 -- It is set True if a WITH has been generated for the main unit for
127 -- the corresponding unit.
129 -----------------------
130 -- Local Subprograms --
131 -----------------------
133 function Check_CRT (E : RE_Id; Eid : Entity_Id) return Entity_Id;
134 -- Check entity Eid to ensure that configurable run-time restrictions
135 -- are met. May generate an error message and raise RE_Not_Available
136 -- if the entity E does not exist (i.e. Eid is Empty)
138 procedure Entity_Not_Defined (Id : RE_Id);
139 -- Outputs error messages for an entity that is not defined in the
140 -- run-time library (the form of the error message is tailored for
141 -- no run time/configurable run time mode as required).
143 function Get_Unit_Name (U_Id : RTU_Id) return Unit_Name_Type;
144 -- Retrieves the Unit Name given a unit id represented by its
145 -- enumeration value in RTU_Id.
147 procedure Load_Fail (S : String; U_Id : RTU_Id; Id : RE_Id);
148 -- Internal procedure called if we can't sucessfully locate or
149 -- process a run-time unit. The parameters give information about
150 -- the error message to be given. S is a reason for failing to
151 -- compile the file and U_Id is the unit id. RE_Id is the RE_Id
152 -- originally passed to RTE. The message in S is one of the
153 -- following:
155 -- "not found"
156 -- "had parser errors"
157 -- "had semantic errors"
159 -- The "not found" case is treated specially in that it is considered
160 -- a normal situation in configurable run-time mode (and the message in
161 -- this case is suppressed unless we are operating in All_Errors_Mode).
163 procedure Load_RTU
164 (U_Id : RTU_Id;
165 Id : RE_Id := RE_Null;
166 Use_Setting : Boolean := False);
167 -- Load the unit whose Id is given if not already loaded. The unit is
168 -- loaded, analyzed, and added to the WITH list, and the entry in
169 -- RT_Unit_Table is updated to reflect the load. Use_Setting is used
170 -- to indicate the initial setting for the Is_Potentially_Use_Visible
171 -- flag of the entity for the loaded unit (if it is indeed loaded).
172 -- A value of False means nothing special need be done. A value of
173 -- True indicates that this flag must be set to True. It is needed
174 -- only in the Text_IO_Kludge procedure, which may materialize an
175 -- entity of Text_IO (or [Wide_]Wide_Text_IO) that was previously unknown.
176 -- Id is the RE_Id value of the entity which was originally requested.
177 -- Id is used only for error message detail, and if it is RE_Null, then
178 -- the attempt to output the entity name is ignored.
180 function Make_Unit_Name (E : RE_Id; N : Node_Id) return Node_Id;
181 -- If the unit is a child unit, build fully qualified name for use in
182 -- With_Clause.
184 procedure Output_Entity_Name (Id : RE_Id; Msg : String);
185 -- Output continuation error message giving qualified name of entity
186 -- corresponding to Id, appending the string given by Msg. This call
187 -- is only effective in All_Errors mode.
189 function RE_Chars (E : RE_Id) return Name_Id;
190 -- Given a RE_Id value returns the Chars of the corresponding entity
192 procedure RTE_Error_Msg (Msg : String);
193 -- Generates a message by calling Error_Msg_N specifying Current_Error_Node
194 -- as the node location using the given Msg text. Special processing in the
195 -- case where RTE_Available_Call is set. In this case, no message is output
196 -- and instead RTE_Is_Available is set to False. Note that this can only be
197 -- used if you are sure that the message comes directly or indirectly from
198 -- a call to the RTE function.
200 ---------------
201 -- Check_CRT --
202 ---------------
204 function Check_CRT (E : RE_Id; Eid : Entity_Id) return Entity_Id is
205 U_Id : constant RTU_Id := RE_Unit_Table (E);
207 begin
208 if No (Eid) then
209 Entity_Not_Defined (E);
210 raise RE_Not_Available;
212 -- Entity is available
214 else
215 -- If in No_Run_Time mode and entity is not in one of the
216 -- specially permitted units, raise the exception.
218 if No_Run_Time_Mode
219 and then not OK_No_Run_Time_Unit (U_Id)
220 then
221 Entity_Not_Defined (E);
222 raise RE_Not_Available;
223 end if;
225 -- Otherwise entity is accessible
227 return Eid;
228 end if;
229 end Check_CRT;
231 ------------------------
232 -- Entity_Not_Defined --
233 ------------------------
235 procedure Entity_Not_Defined (Id : RE_Id) is
236 begin
237 if No_Run_Time_Mode then
239 -- If the error occurs when compiling the body of a predefined
240 -- unit for inlining purposes, the body must be illegal in this
241 -- mode, and there is no point in continuing.
243 if Is_Predefined_File_Name
244 (Unit_File_Name (Get_Source_Unit (Sloc (Current_Error_Node))))
245 then
246 Error_Msg_N
247 ("construct not allowed in no run time mode!",
248 Current_Error_Node);
249 raise Unrecoverable_Error;
251 else
252 RTE_Error_Msg ("|construct not allowed in no run time mode");
253 end if;
255 elsif Configurable_Run_Time_Mode then
256 RTE_Error_Msg ("|construct not allowed in this configuration>");
257 else
258 RTE_Error_Msg ("run-time configuration error");
259 end if;
261 Output_Entity_Name (Id, "not defined");
262 end Entity_Not_Defined;
264 -------------------
265 -- Get_Unit_Name --
266 -------------------
268 function Get_Unit_Name (U_Id : RTU_Id) return Unit_Name_Type is
269 Uname_Chars : constant String := RTU_Id'Image (U_Id);
271 begin
272 Name_Len := Uname_Chars'Length;
273 Name_Buffer (1 .. Name_Len) := Uname_Chars;
274 Set_Casing (All_Lower_Case);
276 if U_Id in Ada_Child then
277 Name_Buffer (4) := '.';
279 if U_Id in Ada_Calendar_Child then
280 Name_Buffer (13) := '.';
282 elsif U_Id in Ada_Finalization_Child then
283 Name_Buffer (17) := '.';
285 elsif U_Id in Ada_Interrupts_Child then
286 Name_Buffer (15) := '.';
288 elsif U_Id in Ada_Real_Time_Child then
289 Name_Buffer (14) := '.';
291 elsif U_Id in Ada_Streams_Child then
292 Name_Buffer (12) := '.';
294 elsif U_Id in Ada_Text_IO_Child then
295 Name_Buffer (12) := '.';
297 elsif U_Id in Ada_Wide_Text_IO_Child then
298 Name_Buffer (17) := '.';
300 elsif U_Id in Ada_Wide_Wide_Text_IO_Child then
301 Name_Buffer (22) := '.';
302 end if;
304 elsif U_Id in Interfaces_Child then
305 Name_Buffer (11) := '.';
307 elsif U_Id in System_Child then
308 Name_Buffer (7) := '.';
310 if U_Id in System_Tasking_Child then
311 Name_Buffer (15) := '.';
312 end if;
314 if U_Id in System_Tasking_Restricted_Child then
315 Name_Buffer (26) := '.';
316 end if;
318 if U_Id in System_Tasking_Protected_Objects_Child then
319 Name_Buffer (33) := '.';
320 end if;
322 if U_Id in System_Tasking_Async_Delays_Child then
323 Name_Buffer (28) := '.';
324 end if;
325 end if;
327 -- Add %s at end for spec
329 Name_Buffer (Name_Len + 1) := '%';
330 Name_Buffer (Name_Len + 2) := 's';
331 Name_Len := Name_Len + 2;
333 return Name_Find;
334 end Get_Unit_Name;
336 ----------------
337 -- Initialize --
338 ----------------
340 procedure Initialize is
341 begin
342 -- Initialize the unit table
344 for J in RTU_Id loop
345 RT_Unit_Table (J).Entity := Empty;
346 end loop;
348 for J in RE_Id loop
349 RE_Table (J) := Empty;
350 end loop;
352 RTE_Is_Available := False;
353 end Initialize;
355 ------------
356 -- Is_RTE --
357 ------------
359 function Is_RTE (Ent : Entity_Id; E : RE_Id) return Boolean is
360 E_Unit_Name : Unit_Name_Type;
361 Ent_Unit_Name : Unit_Name_Type;
363 S : Entity_Id;
364 E1 : Entity_Id;
365 E2 : Entity_Id;
367 begin
368 if No (Ent) then
369 return False;
371 -- If E has already a corresponding entity, check it directly,
372 -- going to full views if they exist to deal with the incomplete
373 -- and private type cases properly.
375 elsif Present (RE_Table (E)) then
376 E1 := Ent;
378 if Is_Type (E1) and then Present (Full_View (E1)) then
379 E1 := Full_View (E1);
380 end if;
382 E2 := RE_Table (E);
384 if Is_Type (E2) and then Present (Full_View (E2)) then
385 E2 := Full_View (E2);
386 end if;
388 return E1 = E2;
389 end if;
391 -- If the unit containing E is not loaded, we already know that
392 -- the entity we have cannot have come from this unit.
394 E_Unit_Name := Get_Unit_Name (RE_Unit_Table (E));
396 if not Is_Loaded (E_Unit_Name) then
397 return False;
398 end if;
400 -- Here the unit containing the entity is loaded. We have not made
401 -- an explicit call to RTE to get the entity in question, but we may
402 -- have obtained a reference to it indirectly from some other entity
403 -- in the same unit, or some other unit that references it.
405 -- Get the defining unit of the entity
407 S := Scope (Ent);
409 if Ekind (S) /= E_Package then
410 return False;
411 end if;
413 Ent_Unit_Name := Get_Unit_Name (Unit_Declaration_Node (S));
415 -- If the defining unit of the entity we are testing is not the
416 -- unit containing E, then they cannot possibly match.
418 if Ent_Unit_Name /= E_Unit_Name then
419 return False;
420 end if;
422 -- If the units match, then compare the names (remember that no
423 -- overloading is permitted in entities fetched using Rtsfind).
425 if RE_Chars (E) = Chars (Ent) then
426 RE_Table (E) := Ent;
428 -- If front-end inlining is enabled, we may be within a body that
429 -- contains inlined functions, which has not been retrieved through
430 -- rtsfind, and therefore is not yet recorded in the RT_Unit_Table.
431 -- Add the unit information now, it must be fully available.
433 declare
434 U : RT_Unit_Table_Record
435 renames RT_Unit_Table (RE_Unit_Table (E));
436 begin
437 if No (U.Entity) then
438 U.Entity := S;
439 U.Uname := E_Unit_Name;
440 U.Unum := Get_Source_Unit (S);
441 end if;
442 end;
444 return True;
445 else
446 return False;
447 end if;
448 end Is_RTE;
450 ------------
451 -- Is_RTU --
452 ------------
454 function Is_RTU (Ent : Entity_Id; U : RTU_Id) return Boolean is
455 E : constant Entity_Id := RT_Unit_Table (U).Entity;
456 begin
457 return Present (E) and then E = Ent;
458 end Is_RTU;
460 ----------------------------
461 -- Is_Text_IO_Kludge_Unit --
462 ----------------------------
464 function Is_Text_IO_Kludge_Unit (Nam : Node_Id) return Boolean is
465 Prf : Node_Id;
466 Sel : Node_Id;
468 begin
469 if Nkind (Nam) /= N_Expanded_Name then
470 return False;
471 end if;
473 Prf := Prefix (Nam);
474 Sel := Selector_Name (Nam);
476 if Nkind (Sel) /= N_Expanded_Name
477 or else Nkind (Prf) /= N_Identifier
478 or else Chars (Prf) /= Name_Ada
479 then
480 return False;
481 end if;
483 Prf := Prefix (Sel);
484 Sel := Selector_Name (Sel);
486 return
487 Nkind (Prf) = N_Identifier
488 and then
489 (Chars (Prf) = Name_Text_IO
490 or else
491 Chars (Prf) = Name_Wide_Text_IO
492 or else
493 Chars (Prf) = Name_Wide_Wide_Text_IO)
494 and then
495 Nkind (Sel) = N_Identifier
496 and then
497 Chars (Sel) in Text_IO_Package_Name;
498 end Is_Text_IO_Kludge_Unit;
500 ---------------
501 -- Load_Fail --
502 ---------------
504 procedure Load_Fail (S : String; U_Id : RTU_Id; Id : RE_Id) is
505 M : String (1 .. 100);
506 P : Natural := 0;
508 begin
509 -- Output header message
511 if Configurable_Run_Time_Mode then
512 RTE_Error_Msg ("construct not allowed in configurable run-time mode");
513 else
514 RTE_Error_Msg ("run-time library configuration error");
515 end if;
517 -- Output file name and reason string
519 if S /= "not found"
520 or else not Configurable_Run_Time_Mode
521 or else All_Errors_Mode
522 then
523 M (1 .. 6) := "\file ";
524 P := 6;
526 Get_Name_String
527 (Get_File_Name (RT_Unit_Table (U_Id).Uname, Subunit => False));
528 M (P + 1 .. P + Name_Len) := Name_Buffer (1 .. Name_Len);
529 P := P + Name_Len;
531 M (P + 1) := ' ';
532 P := P + 1;
534 M (P + 1 .. P + S'Length) := S;
535 P := P + S'Length;
537 RTE_Error_Msg (M (1 .. P));
539 -- Output entity name
541 Output_Entity_Name (Id, "not available");
542 end if;
544 -- In configurable run time mode, we raise RE_Not_Available, and we hope
545 -- the caller deals gracefully with this. If we are in normal full run
546 -- time mode, a load failure is considered fatal and unrecoverable.
548 if Configurable_Run_Time_Mode then
549 raise RE_Not_Available;
550 else
551 raise Unrecoverable_Error;
552 end if;
553 end Load_Fail;
555 --------------
556 -- Load_RTU --
557 --------------
559 procedure Load_RTU
560 (U_Id : RTU_Id;
561 Id : RE_Id := RE_Null;
562 Use_Setting : Boolean := False)
564 U : RT_Unit_Table_Record renames RT_Unit_Table (U_Id);
565 Priv_Par : constant Elist_Id := New_Elmt_List;
566 Lib_Unit : Node_Id;
568 procedure Save_Private_Visibility;
569 -- If the current unit is the body of child unit or the spec of a
570 -- private child unit, the private declarations of the parent (s)
571 -- are visible. If the unit to be loaded is another public sibling,
572 -- its compilation will affect the visibility of the common ancestors.
573 -- Indicate those that must be restored.
575 procedure Restore_Private_Visibility;
576 -- Restore the visibility of ancestors after compiling RTU
578 --------------------------------
579 -- Restore_Private_Visibility --
580 --------------------------------
582 procedure Restore_Private_Visibility is
583 E_Par : Elmt_Id;
585 begin
586 E_Par := First_Elmt (Priv_Par);
588 while Present (E_Par) loop
589 if not In_Private_Part (Node (E_Par)) then
590 Install_Private_Declarations (Node (E_Par));
591 end if;
593 Next_Elmt (E_Par);
594 end loop;
595 end Restore_Private_Visibility;
597 -----------------------------
598 -- Save_Private_Visibility --
599 -----------------------------
601 procedure Save_Private_Visibility is
602 Par : Entity_Id;
604 begin
605 Par := Scope (Current_Scope);
607 while Present (Par)
608 and then Par /= Standard_Standard
609 loop
610 if Ekind (Par) = E_Package
611 and then Is_Compilation_Unit (Par)
612 and then In_Private_Part (Par)
613 then
614 Append_Elmt (Par, Priv_Par);
615 end if;
617 Par := Scope (Par);
618 end loop;
619 end Save_Private_Visibility;
621 -- Start of processing for Load_RTU
623 begin
624 -- Nothing to do if unit is already loaded
626 if Present (U.Entity) then
627 return;
628 end if;
630 -- Note if secondary stack is used
632 if U_Id = System_Secondary_Stack then
633 Opt.Sec_Stack_Used := True;
634 end if;
636 -- Otherwise we need to load the unit, First build unit name
637 -- from the enumeration literal name in type RTU_Id.
639 U.Uname := Get_Unit_Name (U_Id);
640 U.Withed := False;
642 declare
643 Loaded : Boolean;
644 pragma Warnings (Off, Loaded);
645 begin
646 Loaded := Is_Loaded (U.Uname);
647 end;
649 -- Now do the load call, note that setting Error_Node to Empty is
650 -- a signal to Load_Unit that we will regard a failure to find the
651 -- file as a fatal error, and that it should not output any kind
652 -- of diagnostics, since we will take care of it here.
654 U.Unum :=
655 Load_Unit
656 (Load_Name => U.Uname,
657 Required => False,
658 Subunit => False,
659 Error_Node => Empty);
661 if U.Unum = No_Unit then
662 Load_Fail ("not found", U_Id, Id);
663 elsif Fatal_Error (U.Unum) then
664 Load_Fail ("had parser errors", U_Id, Id);
665 end if;
667 -- Make sure that the unit is analyzed
669 declare
670 Was_Analyzed : constant Boolean :=
671 Analyzed (Cunit (Current_Sem_Unit));
673 begin
674 -- Pretend that the current unit is analyzed, in case it is System
675 -- or some such. This allows us to put some declarations, such as
676 -- exceptions and packed arrays of Boolean, into System even though
677 -- expanding them requires System...
679 -- This is a bit odd but works fine. If the RTS unit does not depend
680 -- in any way on the current unit, then it never gets back into the
681 -- current unit's tree, and the change we make to the current unit
682 -- tree is never noticed by anyone (it is undone in a moment). That
683 -- is the normal situation.
685 -- If the RTS Unit *does* depend on the current unit, for instance,
686 -- when you are compiling System, then you had better have finished
687 -- analyzing the part of System that is depended on before you try
688 -- to load the RTS Unit. This means having the System ordered in an
689 -- appropriate manner.
691 Set_Analyzed (Cunit (Current_Sem_Unit), True);
693 if not Analyzed (Cunit (U.Unum)) then
695 -- If the unit is already loaded through a limited_with clauses,
696 -- the relevant entities must already be available. We do not
697 -- want to load and analyze the unit because this would create
698 -- a real semantic dependence when the purpose of the limited_with
699 -- is precisely to avoid such.
701 if From_With_Type (Cunit_Entity (U.Unum)) then
702 null;
704 else
705 Save_Private_Visibility;
706 Semantics (Cunit (U.Unum));
707 Restore_Private_Visibility;
709 if Fatal_Error (U.Unum) then
710 Load_Fail ("had semantic errors", U_Id, Id);
711 end if;
712 end if;
713 end if;
715 -- Undo the pretence
717 Set_Analyzed (Cunit (Current_Sem_Unit), Was_Analyzed);
718 end;
720 Lib_Unit := Unit (Cunit (U.Unum));
721 U.Entity := Defining_Entity (Lib_Unit);
723 if Use_Setting then
724 Set_Is_Potentially_Use_Visible (U.Entity, True);
725 end if;
726 end Load_RTU;
728 --------------------
729 -- Make_Unit_Name --
730 --------------------
732 function Make_Unit_Name (E : RE_Id; N : Node_Id) return Node_Id is
733 U_Id : constant RTU_Id := RE_Unit_Table (E);
734 U : RT_Unit_Table_Record renames RT_Unit_Table (U_Id);
735 Nam : Node_Id;
736 Scop : Entity_Id;
738 begin
739 Nam := New_Reference_To (U.Entity, Standard_Location);
740 Scop := Scope (U.Entity);
742 if Nkind (N) = N_Defining_Program_Unit_Name then
743 while Scop /= Standard_Standard loop
744 Nam :=
745 Make_Expanded_Name (Standard_Location,
746 Chars => Chars (U.Entity),
747 Prefix => New_Reference_To (Scop, Standard_Location),
748 Selector_Name => Nam);
749 Set_Entity (Nam, U.Entity);
751 Scop := Scope (Scop);
752 end loop;
753 end if;
755 return Nam;
756 end Make_Unit_Name;
758 -----------------------
759 -- Output_Entity_Name --
760 ------------------------
762 procedure Output_Entity_Name (Id : RE_Id; Msg : String) is
763 M : String (1 .. 2048);
764 P : Natural := 0;
765 -- M (1 .. P) is current message to be output
767 RE_Image : constant String := RE_Id'Image (Id);
769 begin
770 if Id = RE_Null or else not All_Errors_Mode then
771 return;
772 end if;
774 M (1 .. 9) := "\entity """;
775 P := 9;
777 -- Add unit name to message, excluding %s or %b at end
779 Get_Name_String (Get_Unit_Name (RE_Unit_Table (Id)));
780 Name_Len := Name_Len - 2;
781 Set_Casing (Mixed_Case);
782 M (P + 1 .. P + Name_Len) := Name_Buffer (1 .. Name_Len);
783 P := P + Name_Len;
785 -- Add a qualifying period
787 M (P + 1) := '.';
788 P := P + 1;
790 -- Add entity name and closing quote to message
792 Name_Len := RE_Image'Length - 3;
793 Name_Buffer (1 .. Name_Len) := RE_Image (4 .. RE_Image'Length);
794 Set_Casing (Mixed_Case);
795 M (P + 1 .. P + Name_Len) := Name_Buffer (1 .. Name_Len);
796 P := P + Name_Len;
797 M (P + 1) := '"';
798 P := P + 1;
800 -- Add message
802 M (P + 1) := ' ';
803 P := P + 1;
804 M (P + 1 .. P + Msg'Length) := Msg;
805 P := P + Msg'Length;
807 -- Output message at current error node location
809 RTE_Error_Msg (M (1 .. P));
810 end Output_Entity_Name;
812 --------------
813 -- RE_Chars --
814 --------------
816 function RE_Chars (E : RE_Id) return Name_Id is
817 RE_Name_Chars : constant String := RE_Id'Image (E);
819 begin
820 -- Copy name skipping initial RE_ or RO_XX characters
822 if RE_Name_Chars (1 .. 2) = "RE" then
823 for J in 4 .. RE_Name_Chars'Last loop
824 Name_Buffer (J - 3) := Fold_Lower (RE_Name_Chars (J));
825 end loop;
827 Name_Len := RE_Name_Chars'Length - 3;
829 else
830 for J in 7 .. RE_Name_Chars'Last loop
831 Name_Buffer (J - 6) := Fold_Lower (RE_Name_Chars (J));
832 end loop;
834 Name_Len := RE_Name_Chars'Length - 6;
835 end if;
837 return Name_Find;
838 end RE_Chars;
840 ---------
841 -- RTE --
842 ---------
844 function RTE (E : RE_Id) return Entity_Id is
845 U_Id : constant RTU_Id := RE_Unit_Table (E);
846 U : RT_Unit_Table_Record renames RT_Unit_Table (U_Id);
848 Lib_Unit : Node_Id;
849 Pkg_Ent : Entity_Id;
850 Ename : Name_Id;
852 -- The following flag is used to disable front-end inlining when RTE
853 -- is invoked. This prevents the analysis of other runtime bodies when
854 -- a particular spec is loaded through Rtsfind. This is both efficient,
855 -- and it prevents spurious visibility conflicts between use-visible
856 -- user entities, and entities in run-time packages.
858 -- In configurable run-time mode, subprograms marked Inlined_Always must
859 -- be inlined, so in the case we retain the Front_End_Inlining mode.
861 Save_Front_End_Inlining : Boolean;
863 procedure Check_RPC;
864 -- Reject programs that make use of distribution features not supported
865 -- on the current target. Also check that the PCS is compatible with
866 -- the code generator version. On such targets (VMS, Vxworks, others?)
867 -- we provide a minimal body for System.Rpc that only supplies an
868 -- implementation of Partition_Id.
870 function Find_Local_Entity (E : RE_Id) return Entity_Id;
871 -- This function is used when entity E is in this compilation's main
872 -- unit. It gets the value from the already compiled declaration.
874 ---------------
875 -- Check_RPC --
876 ---------------
878 procedure Check_RPC is
880 procedure Check_RPC_Failure (Msg : String);
881 pragma No_Return (Check_RPC_Failure);
882 -- Display Msg on standard error and raise Unrecoverable_Error
884 -----------------------
885 -- Check_RPC_Failure --
886 -----------------------
888 procedure Check_RPC_Failure (Msg : String) is
889 begin
890 Set_Standard_Error;
891 Write_Str (Msg);
892 Write_Eol;
893 raise Unrecoverable_Error;
894 end Check_RPC_Failure;
896 -- Start of processing for Check_RPC
898 begin
899 -- Bypass this check if debug flag -gnatdR set
901 if Debug_Flag_RR then
902 return;
903 end if;
905 -- Otherwise we need the check if we are going after one of
906 -- the critical entities in System.RPC in stubs mode.
908 -- ??? Should we do this for other s-parint entities too?
910 if (Distribution_Stub_Mode = Generate_Receiver_Stub_Body
911 or else
912 Distribution_Stub_Mode = Generate_Caller_Stub_Body)
913 and then (E = RE_Do_Rpc
914 or else
915 E = RE_Do_Apc
916 or else
917 E = RE_Params_Stream_Type
918 or else
919 E = RE_Request_Access)
920 then
921 if Get_PCS_Name = Name_No_DSA then
922 Check_RPC_Failure ("distribution feature not supported");
924 elsif Get_PCS_Version /= Exp_Dist.PCS_Version_Number then
925 Check_RPC_Failure ("PCS version mismatch");
927 end if;
928 end if;
929 end Check_RPC;
931 -----------------------
932 -- Find_Local_Entity --
933 -----------------------
935 function Find_Local_Entity (E : RE_Id) return Entity_Id is
936 RE_Str : constant String := RE_Id'Image (E);
937 Nam : Name_Id;
938 Ent : Entity_Id;
940 Save_Nam : constant String := Name_Buffer (1 .. Name_Len);
941 -- Save name buffer and length over call
943 begin
944 Name_Len := Natural'Max (0, RE_Str'Length - 3);
945 Name_Buffer (1 .. Name_Len) :=
946 RE_Str (RE_Str'First + 3 .. RE_Str'Last);
948 Nam := Name_Find;
949 Ent := Entity_Id (Get_Name_Table_Info (Nam));
951 Name_Len := Save_Nam'Length;
952 Name_Buffer (1 .. Name_Len) := Save_Nam;
954 return Ent;
955 end Find_Local_Entity;
957 -- Start of processing for RTE
959 begin
960 -- Doing a rtsfind in system.ads is special, as we cannot do this
961 -- when compiling System itself. So if we are compiling system then
962 -- we should already have acquired and processed the declaration
963 -- of the entity. The test is to see if this compilation's main unit
964 -- is System. If so, return the value from the already compiled
965 -- declaration and otherwise do a regular find.
967 -- Not pleasant, but these kinds of annoying recursion when
968 -- writing an Ada compiler in Ada have to be broken somewhere!
970 if Present (Main_Unit_Entity)
971 and then Chars (Main_Unit_Entity) = Name_System
972 and then Analyzed (Main_Unit_Entity)
973 and then not Is_Child_Unit (Main_Unit_Entity)
974 then
975 return Check_CRT (E, Find_Local_Entity (E));
976 end if;
978 Save_Front_End_Inlining := Front_End_Inlining;
979 Front_End_Inlining := Configurable_Run_Time_Mode;
981 -- Load unit if unit not previously loaded
983 if No (RE_Table (E)) then
984 Load_RTU (U_Id, Id => E);
985 Lib_Unit := Unit (Cunit (U.Unum));
987 -- In the subprogram case, we are all done, the entity we want
988 -- is the entity for the subprogram itself. Note that we do not
989 -- bother to check that it is the entity that was requested.
990 -- the only way that could fail to be the case is if runtime is
991 -- hopelessly misconfigured, and it isn't worth testing for this.
993 if Nkind (Lib_Unit) = N_Subprogram_Declaration then
994 RE_Table (E) := U.Entity;
996 -- Otherwise we must have the package case. First check package
997 -- entity itself (e.g. RTE_Name for System.Interrupts.Name)
999 else
1000 pragma Assert (Nkind (Lib_Unit) = N_Package_Declaration);
1001 Ename := RE_Chars (E);
1003 -- First we search the package entity chain. If the package
1004 -- only has a limited view, scan the corresponding list of
1005 -- incomplete types.
1007 if From_With_Type (U.Entity) then
1008 Pkg_Ent := First_Entity (Limited_View (U.Entity));
1009 else
1010 Pkg_Ent := First_Entity (U.Entity);
1011 end if;
1013 while Present (Pkg_Ent) loop
1014 if Ename = Chars (Pkg_Ent) then
1015 RE_Table (E) := Pkg_Ent;
1016 Check_RPC;
1017 goto Found;
1018 end if;
1020 Next_Entity (Pkg_Ent);
1021 end loop;
1023 -- If we did not find the entity in the package entity chain,
1024 -- then check if the package entity itself matches. Note that
1025 -- we do this check after searching the entity chain, since
1026 -- the rule is that in case of ambiguity, we prefer the entity
1027 -- defined within the package, rather than the package itself.
1029 if Ename = Chars (U.Entity) then
1030 RE_Table (E) := U.Entity;
1031 end if;
1033 -- If we didn't find the entity we want, something is wrong.
1034 -- We just leave RE_Table (E) set to Empty and the appropriate
1035 -- action will be taken by Check_CRT when we exit.
1037 end if;
1038 end if;
1040 -- See if we have to generate a WITH for this entity. We generate
1041 -- a WITH if the current unit is part of the extended main code
1042 -- unit, and if we have not already added the with. The WITH is
1043 -- added to the appropriate unit (the current one). We do not need
1044 -- to generate a WITH for a call issued from RTE_Available.
1046 <<Found>>
1047 if (not U.Withed)
1048 and then
1049 In_Extended_Main_Code_Unit (Cunit_Entity (Current_Sem_Unit))
1050 and then not RTE_Available_Call
1051 then
1052 U.Withed := True;
1054 declare
1055 Withn : Node_Id;
1056 Lib_Unit : Node_Id;
1058 begin
1059 Lib_Unit := Unit (Cunit (U.Unum));
1060 Withn :=
1061 Make_With_Clause (Standard_Location,
1062 Name =>
1063 Make_Unit_Name
1064 (E, Defining_Unit_Name (Specification (Lib_Unit))));
1065 Set_Library_Unit (Withn, Cunit (U.Unum));
1066 Set_Corresponding_Spec (Withn, U.Entity);
1067 Set_First_Name (Withn, True);
1068 Set_Implicit_With (Withn, True);
1070 Mark_Rewrite_Insertion (Withn);
1071 Append (Withn, Context_Items (Cunit (Current_Sem_Unit)));
1072 Check_Restriction_No_Dependence (Name (Withn), Current_Error_Node);
1073 end;
1074 end if;
1076 Front_End_Inlining := Save_Front_End_Inlining;
1077 return Check_CRT (E, RE_Table (E));
1078 end RTE;
1080 -------------------
1081 -- RTE_Available --
1082 -------------------
1084 function RTE_Available (E : RE_Id) return Boolean is
1085 Dummy : Entity_Id;
1086 pragma Warnings (Off, Dummy);
1088 Result : Boolean;
1090 Save_RTE_Available_Call : constant Boolean := RTE_Available_Call;
1091 Save_RTE_Is_Available : constant Boolean := RTE_Is_Available;
1092 -- These are saved recursively because the call to load a unit
1093 -- caused by an upper level call may perform a recursive call
1094 -- to this routine during analysis of the corresponding unit.
1096 begin
1097 RTE_Available_Call := True;
1098 RTE_Is_Available := True;
1099 Dummy := RTE (E);
1100 Result := RTE_Is_Available;
1101 RTE_Available_Call := Save_RTE_Available_Call;
1102 RTE_Is_Available := Save_RTE_Is_Available;
1103 return Result;
1105 exception
1106 when RE_Not_Available =>
1107 RTE_Available_Call := Save_RTE_Available_Call;
1108 RTE_Is_Available := Save_RTE_Is_Available;
1109 return False;
1110 end RTE_Available;
1112 --------------------------
1113 -- RTE_Record_Component --
1114 --------------------------
1116 function RTE_Record_Component (E : RE_Id) return Entity_Id is
1117 U_Id : constant RTU_Id := RE_Unit_Table (E);
1118 U : RT_Unit_Table_Record renames RT_Unit_Table (U_Id);
1119 E1 : Entity_Id;
1120 Ename : Name_Id;
1121 Found_E : Entity_Id;
1122 Lib_Unit : Node_Id;
1123 Pkg_Ent : Entity_Id;
1125 -- The following flag is used to disable front-end inlining when
1126 -- RTE_Record_Component is invoked. This prevents the analysis of other
1127 -- runtime bodies when a particular spec is loaded through Rtsfind. This
1128 -- is both efficient, and it prevents spurious visibility conflicts
1129 -- between use-visible user entities, and entities in run-time packages.
1131 -- In configurable run-time mode, subprograms marked Inlined_Always must
1132 -- be inlined, so in the case we retain the Front_End_Inlining mode.
1134 Save_Front_End_Inlining : Boolean;
1136 begin
1137 -- Note: Contrary to subprogram RTE, there is no need to do any special
1138 -- management with package system.ads because it has no record type
1139 -- declarations.
1141 Save_Front_End_Inlining := Front_End_Inlining;
1142 Front_End_Inlining := Configurable_Run_Time_Mode;
1144 -- Load unit if unit not previously loaded
1146 if not Present (U.Entity) then
1147 Load_RTU (U_Id, Id => E);
1148 end if;
1150 Lib_Unit := Unit (Cunit (U.Unum));
1152 pragma Assert (Nkind (Lib_Unit) = N_Package_Declaration);
1153 Ename := RE_Chars (E);
1155 -- Search the entity in the components of record type declarations
1156 -- found in the package entity chain.
1158 Found_E := Empty;
1159 Pkg_Ent := First_Entity (U.Entity);
1160 Search : while Present (Pkg_Ent) loop
1161 if Is_Record_Type (Pkg_Ent) then
1162 E1 := First_Entity (Pkg_Ent);
1163 while Present (E1) loop
1164 if Ename = Chars (E1) then
1165 pragma Assert (not Present (Found_E));
1166 Found_E := E1;
1167 end if;
1169 Next_Entity (E1);
1170 end loop;
1171 end if;
1173 Next_Entity (Pkg_Ent);
1174 end loop Search;
1176 -- If we didn't find the entity we want, something is wrong. The
1177 -- appropriate action will be taken by Check_CRT when we exit.
1179 -- Cenerate a with-clause if the current unit is part of the extended
1180 -- main code unit, and if we have not already added the with. The clause
1181 -- is added to the appropriate unit (the current one). We do not need to
1182 -- generate it for a call issued from RTE_Component_Available.
1184 if (not U.Withed)
1185 and then
1186 In_Extended_Main_Code_Unit (Cunit_Entity (Current_Sem_Unit))
1187 and then not RTE_Available_Call
1188 then
1189 U.Withed := True;
1191 declare
1192 Withn : Node_Id;
1193 Lib_Unit : Node_Id;
1195 begin
1196 Lib_Unit := Unit (Cunit (U.Unum));
1197 Withn :=
1198 Make_With_Clause (Standard_Location,
1199 Name =>
1200 Make_Unit_Name
1201 (E, Defining_Unit_Name (Specification (Lib_Unit))));
1202 Set_Library_Unit (Withn, Cunit (U.Unum));
1203 Set_Corresponding_Spec (Withn, U.Entity);
1204 Set_First_Name (Withn, True);
1205 Set_Implicit_With (Withn, True);
1207 Mark_Rewrite_Insertion (Withn);
1208 Append (Withn, Context_Items (Cunit (Current_Sem_Unit)));
1209 Check_Restriction_No_Dependence (Name (Withn), Current_Error_Node);
1210 end;
1211 end if;
1213 Front_End_Inlining := Save_Front_End_Inlining;
1214 return Check_CRT (E, Found_E);
1215 end RTE_Record_Component;
1217 ------------------------------------
1218 -- RTE_Record_Component_Available --
1219 ------------------------------------
1221 function RTE_Record_Component_Available (E : RE_Id) return Boolean is
1222 Dummy : Entity_Id;
1223 pragma Warnings (Off, Dummy);
1225 Result : Boolean;
1227 Save_RTE_Available_Call : constant Boolean := RTE_Available_Call;
1228 Save_RTE_Is_Available : constant Boolean := RTE_Is_Available;
1229 -- These are saved recursively because the call to load a unit
1230 -- caused by an upper level call may perform a recursive call
1231 -- to this routine during analysis of the corresponding unit.
1233 begin
1234 RTE_Available_Call := True;
1235 RTE_Is_Available := True;
1236 Dummy := RTE_Record_Component (E);
1237 Result := RTE_Is_Available;
1238 RTE_Available_Call := Save_RTE_Available_Call;
1239 RTE_Is_Available := Save_RTE_Is_Available;
1240 return Result;
1242 exception
1243 when RE_Not_Available =>
1244 RTE_Available_Call := Save_RTE_Available_Call;
1245 RTE_Is_Available := Save_RTE_Is_Available;
1246 return False;
1247 end RTE_Record_Component_Available;
1249 -------------------
1250 -- RTE_Error_Msg --
1251 -------------------
1253 procedure RTE_Error_Msg (Msg : String) is
1254 begin
1255 if RTE_Available_Call then
1256 RTE_Is_Available := False;
1257 else
1258 Error_Msg_N (Msg, Current_Error_Node);
1260 -- Bump count of violations if we are in configurable run-time
1261 -- mode and this is not a continuation message.
1263 if Configurable_Run_Time_Mode and then Msg (Msg'First) /= '\' then
1264 Configurable_Run_Time_Violations :=
1265 Configurable_Run_Time_Violations + 1;
1266 end if;
1267 end if;
1268 end RTE_Error_Msg;
1270 ----------------
1271 -- RTU_Entity --
1272 ----------------
1274 function RTU_Entity (U : RTU_Id) return Entity_Id is
1275 begin
1276 return RT_Unit_Table (U).Entity;
1277 end RTU_Entity;
1279 ----------------
1280 -- RTU_Loaded --
1281 ----------------
1283 function RTU_Loaded (U : RTU_Id) return Boolean is
1284 begin
1285 return Present (RT_Unit_Table (U).Entity);
1286 end RTU_Loaded;
1288 --------------------
1289 -- Set_RTU_Loaded --
1290 --------------------
1292 procedure Set_RTU_Loaded (N : Node_Id) is
1293 Loc : constant Source_Ptr := Sloc (N);
1294 Unum : constant Unit_Number_Type := Get_Source_Unit (Loc);
1295 Uname : constant Unit_Name_Type := Unit_Name (Unum);
1296 E : constant Entity_Id :=
1297 Defining_Entity (Unit (Cunit (Unum)));
1298 begin
1299 pragma Assert (Is_Predefined_File_Name (Unit_File_Name (Unum)));
1301 -- Loop through entries in RTU table looking for matching entry
1303 for U_Id in RTU_Id'Range loop
1305 -- Here we have a match
1307 if Get_Unit_Name (U_Id) = Uname then
1308 declare
1309 U : RT_Unit_Table_Record renames RT_Unit_Table (U_Id);
1310 -- The RT_Unit_Table entry that may need updating
1312 begin
1313 -- If entry is not set, set it now
1315 if No (U.Entity) then
1316 U.Entity := E;
1317 U.Uname := Get_Unit_Name (U_Id);
1318 U.Unum := Unum;
1319 U.Withed := False;
1320 end if;
1322 return;
1323 end;
1324 end if;
1325 end loop;
1326 end Set_RTU_Loaded;
1328 --------------------
1329 -- Text_IO_Kludge --
1330 --------------------
1332 procedure Text_IO_Kludge (Nam : Node_Id) is
1333 Chrs : Name_Id;
1335 type Name_Map_Type is array (Text_IO_Package_Name) of RTU_Id;
1337 Name_Map : constant Name_Map_Type := Name_Map_Type'(
1338 Name_Decimal_IO => Ada_Text_IO_Decimal_IO,
1339 Name_Enumeration_IO => Ada_Text_IO_Enumeration_IO,
1340 Name_Fixed_IO => Ada_Text_IO_Fixed_IO,
1341 Name_Float_IO => Ada_Text_IO_Float_IO,
1342 Name_Integer_IO => Ada_Text_IO_Integer_IO,
1343 Name_Modular_IO => Ada_Text_IO_Modular_IO);
1345 Wide_Name_Map : constant Name_Map_Type := Name_Map_Type'(
1346 Name_Decimal_IO => Ada_Wide_Text_IO_Decimal_IO,
1347 Name_Enumeration_IO => Ada_Wide_Text_IO_Enumeration_IO,
1348 Name_Fixed_IO => Ada_Wide_Text_IO_Fixed_IO,
1349 Name_Float_IO => Ada_Wide_Text_IO_Float_IO,
1350 Name_Integer_IO => Ada_Wide_Text_IO_Integer_IO,
1351 Name_Modular_IO => Ada_Wide_Text_IO_Modular_IO);
1353 Wide_Wide_Name_Map : constant Name_Map_Type := Name_Map_Type'(
1354 Name_Decimal_IO => Ada_Wide_Wide_Text_IO_Decimal_IO,
1355 Name_Enumeration_IO => Ada_Wide_Wide_Text_IO_Enumeration_IO,
1356 Name_Fixed_IO => Ada_Wide_Wide_Text_IO_Fixed_IO,
1357 Name_Float_IO => Ada_Wide_Wide_Text_IO_Float_IO,
1358 Name_Integer_IO => Ada_Wide_Wide_Text_IO_Integer_IO,
1359 Name_Modular_IO => Ada_Wide_Wide_Text_IO_Modular_IO);
1361 begin
1362 -- Nothing to do if name is not identifier or a selected component
1363 -- whose selector_name is not an identifier.
1365 if Nkind (Nam) = N_Identifier then
1366 Chrs := Chars (Nam);
1368 elsif Nkind (Nam) = N_Selected_Component
1369 and then Nkind (Selector_Name (Nam)) = N_Identifier
1370 then
1371 Chrs := Chars (Selector_Name (Nam));
1373 else
1374 return;
1375 end if;
1377 -- Nothing to do if name is not one of the Text_IO subpackages
1378 -- Otherwise look through loaded units, and if we find Text_IO
1379 -- or [Wide_]Wide_Text_IO already loaded, then load the proper child.
1381 if Chrs in Text_IO_Package_Name then
1382 for U in Main_Unit .. Last_Unit loop
1383 Get_Name_String (Unit_File_Name (U));
1385 if Name_Len = 12 then
1387 -- Here is where we do the loads if we find one of the units
1388 -- Ada.Text_IO or Ada.[Wide_]Wide_Text_IO. An interesting
1389 -- detail is that these units may already be used (i.e. their
1390 -- In_Use flags may be set). Normally when the In_Use flag is
1391 -- set, the Is_Potentially_Use_Visible flag of all entities in
1392 -- the package is set, but the new entity we are mysteriously
1393 -- adding was not there to have its flag set at the time. So
1394 -- that's why we pass the extra parameter to RTU_Find, to make
1395 -- sure the flag does get set now. Given that those generic
1396 -- packages are in fact child units, we must indicate that
1397 -- they are visible.
1399 if Name_Buffer (1 .. 12) = "a-textio.ads" then
1400 Load_RTU
1401 (Name_Map (Chrs),
1402 Use_Setting => In_Use (Cunit_Entity (U)));
1403 Set_Is_Visible_Child_Unit
1404 (RT_Unit_Table (Name_Map (Chrs)).Entity);
1406 elsif Name_Buffer (1 .. 12) = "a-witeio.ads" then
1407 Load_RTU
1408 (Wide_Name_Map (Chrs),
1409 Use_Setting => In_Use (Cunit_Entity (U)));
1410 Set_Is_Visible_Child_Unit
1411 (RT_Unit_Table (Wide_Name_Map (Chrs)).Entity);
1413 elsif Name_Buffer (1 .. 12) = "a-ztexio.ads" then
1414 Load_RTU
1415 (Wide_Wide_Name_Map (Chrs),
1416 Use_Setting => In_Use (Cunit_Entity (U)));
1417 Set_Is_Visible_Child_Unit
1418 (RT_Unit_Table (Wide_Wide_Name_Map (Chrs)).Entity);
1419 end if;
1420 end if;
1421 end loop;
1422 end if;
1424 exception
1425 -- Generate error message if run-time unit not available
1427 when RE_Not_Available =>
1428 Error_Msg_N ("& not available", Nam);
1429 end Text_IO_Kludge;
1431 end Rtsfind;