OSDN Git Service

2003-12-11 Ed Falis <falis@gnat.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / rtsfind.adb
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-2003, 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 2,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
19 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
20 -- MA 02111-1307, USA.                                                      --
21 --                                                                          --
22 -- GNAT was originally developed  by the GNAT team at  New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
24 --                                                                          --
25 ------------------------------------------------------------------------------
26
27 with Atree;    use Atree;
28 with Casing;   use Casing;
29 with Csets;    use Csets;
30 with Debug;    use Debug;
31 with Einfo;    use Einfo;
32 with Elists;   use Elists;
33 with Errout;   use Errout;
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 Sem;      use Sem;
44 with Sem_Ch7;  use Sem_Ch7;
45 with Sem_Util; use Sem_Util;
46 with Sinfo;    use Sinfo;
47 with Stand;    use Stand;
48 with Snames;   use Snames;
49 with Tbuild;   use Tbuild;
50 with Uname;    use Uname;
51
52 package body Rtsfind is
53
54    RTE_Available_Call : Boolean := False;
55    --  Set True during call to RTE from RTE_Available. Tells RTE to set
56    --  RTE_Is_Available to False rather than generating an error message.
57
58    RTE_Is_Available : Boolean;
59    --  Set True by RTE_Available on entry. When RTE_Available_Call is set
60    --  True, set False if RTE would otherwise generate an error message.
61
62    ----------------
63    -- Unit table --
64    ----------------
65
66    --  The unit table has one entry for each unit included in the definition
67    --  of the type RTU_Id in the spec. The table entries are initialized in
68    --  Initialize to set the Entity field to Empty, indicating that the
69    --  corresponding unit has not yet been loaded. The fields are set when
70    --  a unit is loaded to contain the defining entity for the unit, the
71    --  unit name, and the unit number.
72
73    type RT_Unit_Table_Record is record
74       Entity : Entity_Id;
75       Uname  : Unit_Name_Type;
76       Unum   : Unit_Number_Type;
77       Withed : Boolean;
78    end record;
79
80    RT_Unit_Table : array (RTU_Id) of RT_Unit_Table_Record;
81
82    --------------------------
83    -- Runtime Entity Table --
84    --------------------------
85
86    --  There is one entry in the runtime entity table for each entity that is
87    --  included in the definition of the RE_Id type in the spec. The entries
88    --  are set by Initialize_Rtsfind to contain Empty, indicating that the
89    --  entity has not yet been located. Once the entity is located for the
90    --  first time, its ID is stored in this array, so that subsequent calls
91    --  for the same entity can be satisfied immediately.
92
93    RE_Table : array (RE_Id) of Entity_Id;
94
95    --------------------------
96    -- Generation of WITH's --
97    --------------------------
98
99    --  When a unit is implicitly loaded as a result of a call to RTE, it
100    --  is necessary to create an implicit WITH to ensure that the object
101    --  is correctly loaded by the binder. Such WITH statements are only
102    --  required when the request is from the extended main unit (if a
103    --  client needs a WITH, that will be taken care of when the client
104    --  is compiled).
105
106    --  We always attach the WITH to the main unit. This is not perfectly
107    --  accurate in terms of elaboration requirements, but it is close
108    --  enough, since the units that are accessed using rtsfind do not
109    --  have delicate elaboration requirements.
110
111    --  The flag Withed in the unit table record is initially set to False.
112    --  It is set True if a WITH has been generated for the main unit for
113    --  the corresponding unit.
114
115    -----------------------
116    -- Local Subprograms --
117    -----------------------
118
119    procedure Entity_Not_Defined (Id : RE_Id);
120    --  Outputs error messages for an entity that is not defined in the
121    --  run-time library (the form of the error message is tailored for
122    --  no run time/configurable run time mode as required).
123
124    procedure Load_Fail (S : String; U_Id : RTU_Id; Id : RE_Id);
125    --  Internal procedure called if we can't sucessfully locate or
126    --  process a run-time unit. The parameters give information about
127    --  the error message to be given. S is a reason for failing to
128    --  compile the file and U_Id is the unit id. RE_Id is the RE_Id
129    --  originally passed to RTE. The message in S is one of the
130    --  following:
131    --
132    --     "not found"
133    --     "had parser errors"
134    --     "had semantic errors"
135    --
136    --  The "not found" case is treated specially in that it is considered
137    --  a normal situation in configurable run-time mode (and the message in
138    --  this case is suppressed unless we are operating in All_Errors_Mode).
139
140    function Get_Unit_Name (U_Id : RTU_Id) return Unit_Name_Type;
141    --  Retrieves the Unit Name given a unit id represented by its
142    --  enumaration value in RTU_Id.
143
144    procedure Load_RTU
145      (U_Id        : RTU_Id;
146       Id          : RE_Id   := RE_Null;
147       Use_Setting : Boolean := False);
148    --  Load the unit whose Id is given if not already loaded. The unit is
149    --  loaded, analyzed, and added to the WITH list, and the entry in
150    --  RT_Unit_Table is updated to reflect the load. The second parameter
151    --  indicates the initial setting for the Is_Potentially_Use_Visible
152    --  flag of the entity for the loaded unit (if it is indeed loaded).
153    --  A value of False means nothing special need be done. A value of
154    --  True indicates that this flag must be set to True. It is needed
155    --  only in the Text_IO_Kludge procedure, which may materialize an
156    --  entity of Text_IO (or Wide_Text_IO) that was previously unknown.
157    --  Id is the RE_Id value of the entity which was originally requested.
158    --  Id is used only for error message detail, and if it is RE_Null, then
159    --  the attempt to output the entity name is ignored.
160
161    procedure Output_Entity_Name (Id : RE_Id; Msg : String);
162    --  Output continuation error message giving qualified name of entity
163    --  corresponding to Id, appending the string given by Msg. This call
164    --  is only effective in All_Errors mode.
165
166    function RE_Chars (E : RE_Id) return Name_Id;
167    --  Given a RE_Id value returns the Chars of the corresponding entity.
168
169    procedure RTE_Error_Msg (Msg : String);
170    --  Generates a message by calling Error_Msg_N specifying Current_Error_Node
171    --  as the node location using the given Msg text. Special processing in the
172    --  case where RTE_Available_Call is set. In this case, no message is output
173    --  and instead RTE_Is_Available is set to False. Note that this can only be
174    --  used if you are sure that the message comes directly or indirectly from
175    --  a call to the RTE function.
176
177    -------------------
178    -- Get_Unit_Name --
179    -------------------
180
181    function Get_Unit_Name (U_Id : RTU_Id) return Unit_Name_Type is
182       Uname_Chars : constant String := RTU_Id'Image (U_Id);
183
184    begin
185       Name_Len := Uname_Chars'Length;
186       Name_Buffer (1 .. Name_Len) := Uname_Chars;
187       Set_Casing (All_Lower_Case);
188
189       if U_Id in Ada_Child then
190          Name_Buffer (4) := '.';
191
192          if U_Id in Ada_Calendar_Child then
193             Name_Buffer (13) := '.';
194
195          elsif U_Id in Ada_Finalization_Child then
196             Name_Buffer (17) := '.';
197
198          elsif U_Id in Ada_Interrupts_Child then
199             Name_Buffer (15) := '.';
200
201          elsif U_Id in Ada_Real_Time_Child then
202             Name_Buffer (14) := '.';
203
204          elsif U_Id in Ada_Streams_Child then
205             Name_Buffer (12) := '.';
206
207          elsif U_Id in Ada_Text_IO_Child then
208             Name_Buffer (12) := '.';
209
210          elsif U_Id in Ada_Wide_Text_IO_Child then
211             Name_Buffer (17) := '.';
212          end if;
213
214       elsif U_Id in Interfaces_Child then
215          Name_Buffer (11) := '.';
216
217       elsif U_Id in System_Child then
218          Name_Buffer (7) := '.';
219
220          if U_Id in System_Tasking_Child then
221             Name_Buffer (15) := '.';
222          end if;
223
224          if U_Id in System_Tasking_Restricted_Child then
225             Name_Buffer (26) := '.';
226          end if;
227
228          if U_Id in System_Tasking_Protected_Objects_Child then
229             Name_Buffer (33) := '.';
230          end if;
231
232          if U_Id in System_Tasking_Async_Delays_Child then
233             Name_Buffer (28) := '.';
234          end if;
235       end if;
236
237       --  Add %s at end for spec
238
239       Name_Buffer (Name_Len + 1) := '%';
240       Name_Buffer (Name_Len + 2) := 's';
241       Name_Len := Name_Len + 2;
242
243       return Name_Find;
244    end Get_Unit_Name;
245
246    ----------------
247    -- Initialize --
248    ----------------
249
250    procedure Initialize is
251    begin
252       --  Initialize the unit table
253
254       for J in RTU_Id loop
255          RT_Unit_Table (J).Entity := Empty;
256       end loop;
257
258       for J in RE_Id loop
259          RE_Table (J) := Empty;
260       end loop;
261
262       RTE_Is_Available := False;
263    end Initialize;
264
265    ------------
266    -- Is_RTE --
267    ------------
268
269    function Is_RTE (Ent : Entity_Id; E : RE_Id) return Boolean is
270       E_Unit_Name   : Unit_Name_Type;
271       Ent_Unit_Name : Unit_Name_Type;
272
273       S  : Entity_Id;
274       E1 : Entity_Id;
275       E2 : Entity_Id;
276
277    begin
278       if No (Ent) then
279          return False;
280
281       --  If E has already a corresponding entity, check it directly,
282       --  going to full views if they exist to deal with the incomplete
283       --  and private type cases properly.
284
285       elsif Present (RE_Table (E)) then
286          E1 := Ent;
287
288          if Is_Type (E1) and then Present (Full_View (E1)) then
289             E1 := Full_View (E1);
290          end if;
291
292          E2 := RE_Table (E);
293
294          if Is_Type (E2) and then Present (Full_View (E2)) then
295             E2 := Full_View (E2);
296          end if;
297
298          return E1 = E2;
299       end if;
300
301       --  If the unit containing E is not loaded, we already know that
302       --  the entity we have cannot have come from this unit.
303
304       E_Unit_Name := Get_Unit_Name (RE_Unit_Table (E));
305
306       if not Is_Loaded (E_Unit_Name) then
307          return False;
308       end if;
309
310       --  Here the unit containing the entity is loaded. We have not made
311       --  an explicit call to RTE to get the entity in question, but we may
312       --  have obtained a reference to it indirectly from some other entity
313       --  in the same unit, or some other unit that references it.
314
315       --  Get the defining unit of the entity
316
317       S := Scope (Ent);
318
319       if Ekind (S) /= E_Package then
320          return False;
321       end if;
322
323       Ent_Unit_Name := Get_Unit_Name (Unit_Declaration_Node (S));
324
325       --  If the defining unit of the entity we are testing is not the
326       --  unit containing E, then they cannot possibly match.
327
328       if Ent_Unit_Name /= E_Unit_Name then
329          return False;
330       end if;
331
332       --  If the units match, then compare the names (remember that no
333       --  overloading is permitted in entities fetched using Rtsfind).
334
335       if RE_Chars (E) = Chars (Ent) then
336          RE_Table (E) := Ent;
337
338          --  If front-end inlining is enabled, we may be within a body that
339          --  contains inlined functions, which has not been retrieved through
340          --  rtsfind, and therefore is not yet recorded in the RT_Unit_Table.
341          --  Add the unit information now, it must be fully available.
342
343          declare
344             U : RT_Unit_Table_Record
345                   renames  RT_Unit_Table (RE_Unit_Table (E));
346          begin
347             if No (U.Entity) then
348                U.Entity := S;
349                U.Uname  := E_Unit_Name;
350                U.Unum   := Get_Source_Unit (S);
351             end if;
352          end;
353
354          return True;
355       else
356          return False;
357       end if;
358    end Is_RTE;
359
360    ------------
361    -- Is_RTU --
362    ------------
363
364    function Is_RTU (Ent : Entity_Id;  U : RTU_Id) return Boolean is
365       E : constant Entity_Id := RT_Unit_Table (U).Entity;
366    begin
367       return Present (E) and then E = Ent;
368    end Is_RTU;
369
370    ----------------------------
371    -- Is_Text_IO_Kludge_Unit --
372    ----------------------------
373
374    function Is_Text_IO_Kludge_Unit (Nam : Node_Id) return Boolean is
375       Prf : Node_Id;
376       Sel : Node_Id;
377
378    begin
379       if Nkind (Nam) /= N_Expanded_Name then
380          return False;
381       end if;
382
383       Prf := Prefix (Nam);
384       Sel := Selector_Name (Nam);
385
386       if Nkind (Sel) /= N_Expanded_Name
387         or else Nkind (Prf) /= N_Identifier
388         or else Chars (Prf) /= Name_Ada
389       then
390          return False;
391       end if;
392
393       Prf := Prefix (Sel);
394       Sel := Selector_Name (Sel);
395
396       return
397         Nkind (Prf) = N_Identifier
398           and then
399         (Chars (Prf) = Name_Text_IO or else Chars (Prf) = Name_Wide_Text_IO)
400           and then
401         Nkind (Sel) = N_Identifier
402           and then
403         Chars (Sel) in Text_IO_Package_Name;
404    end Is_Text_IO_Kludge_Unit;
405
406    ------------------------
407    -- Entity_Not_Defined --
408    ------------------------
409
410    procedure Entity_Not_Defined (Id : RE_Id) is
411    begin
412       if No_Run_Time_Mode then
413          RTE_Error_Msg ("|construct not allowed in no run time mode");
414       elsif Configurable_Run_Time_Mode then
415          RTE_Error_Msg ("|construct not allowed in this configuration>");
416       else
417          RTE_Error_Msg ("run-time configuration error");
418       end if;
419
420       Output_Entity_Name (Id, "not defined");
421    end Entity_Not_Defined;
422
423    ---------------
424    -- Load_Fail --
425    ---------------
426
427    procedure Load_Fail (S : String; U_Id : RTU_Id; Id : RE_Id) is
428       M : String (1 .. 100);
429       P : Natural := 0;
430
431    begin
432       --  Output header message
433
434       if Configurable_Run_Time_Mode then
435          RTE_Error_Msg ("construct not allowed in configurable run-time mode");
436       else
437          RTE_Error_Msg ("run-time library configuration error");
438       end if;
439
440       --  Output file name and reason string
441
442       if S /= "not found"
443         or else not Configurable_Run_Time_Mode
444       then
445          M (1 .. 6) := "\file ";
446          P := 6;
447
448          Get_Name_String
449            (Get_File_Name (RT_Unit_Table (U_Id).Uname, Subunit => False));
450          M (P + 1 .. P + Name_Len) := Name_Buffer (1 .. Name_Len);
451          P := P + Name_Len;
452
453          M (P + 1) := ' ';
454          P := P + 1;
455
456          M (P + 1 .. P + S'Length) := S;
457          P := P + S'Length;
458
459          RTE_Error_Msg (M (1 .. P));
460
461          --  Output entity name
462
463          Output_Entity_Name (Id, "not available");
464       end if;
465
466       raise RE_Not_Available;
467    end Load_Fail;
468
469    --------------
470    -- Load_RTU --
471    --------------
472
473    procedure Load_RTU
474      (U_Id        : RTU_Id;
475       Id          : RE_Id   := RE_Null;
476       Use_Setting : Boolean := False)
477    is
478       U        : RT_Unit_Table_Record renames RT_Unit_Table (U_Id);
479       Priv_Par : constant Elist_Id := New_Elmt_List;
480       Lib_Unit : Node_Id;
481
482       procedure Save_Private_Visibility;
483       --  If the current unit is the body of child unit or the spec of a
484       --  private child unit, the private declarations of the parent (s)
485       --  are visible. If the unit to be loaded is another public sibling,
486       --  its compilation will affect the visibility of the common ancestors.
487       --  Indicate those that must be restored.
488
489       procedure Restore_Private_Visibility;
490       --  Restore the visibility of ancestors after compiling RTU.
491
492       --------------------------------
493       -- Restore_Private_Visibility --
494       --------------------------------
495
496       procedure Restore_Private_Visibility is
497          E_Par : Elmt_Id;
498
499       begin
500          E_Par := First_Elmt (Priv_Par);
501
502          while Present (E_Par) loop
503             if not In_Private_Part (Node (E_Par)) then
504                Install_Private_Declarations (Node (E_Par));
505             end if;
506
507             Next_Elmt (E_Par);
508          end loop;
509       end Restore_Private_Visibility;
510
511       -----------------------------
512       -- Save_Private_Visibility --
513       -----------------------------
514
515       procedure Save_Private_Visibility is
516          Par : Entity_Id;
517
518       begin
519          Par := Scope (Current_Scope);
520
521          while Present (Par)
522            and then Par /= Standard_Standard
523          loop
524             if Ekind (Par) = E_Package
525               and then Is_Compilation_Unit (Par)
526               and then In_Private_Part (Par)
527             then
528                Append_Elmt (Par, Priv_Par);
529             end if;
530
531             Par := Scope (Par);
532          end loop;
533       end Save_Private_Visibility;
534
535    --  Start of processing for Load_RTU
536
537    begin
538       --  Nothing to do if unit is already loaded
539
540       if Present (U.Entity) then
541          return;
542       end if;
543
544       --  Otherwise we need to load the unit, First build unit name
545       --  from the enumeration literal name in type RTU_Id.
546
547       U.Uname  := Get_Unit_Name (U_Id);
548       U.Withed := False;
549
550       declare
551          Loaded : Boolean;
552          pragma Warnings (Off, Loaded);
553       begin
554          Loaded := Is_Loaded (U.Uname);
555       end;
556
557       --  Now do the load call, note that setting Error_Node to Empty is
558       --  a signal to Load_Unit that we will regard a failure to find the
559       --  file as a fatal error, and that it should not output any kind
560       --  of diagnostics, since we will take care of it here.
561
562       U.Unum :=
563         Load_Unit
564           (Load_Name  => U.Uname,
565            Required   => False,
566            Subunit    => False,
567            Error_Node => Empty);
568
569       if U.Unum = No_Unit then
570          Load_Fail ("not found", U_Id, Id);
571       elsif Fatal_Error (U.Unum) then
572          Load_Fail ("had parser errors", U_Id, Id);
573       end if;
574
575       --  Make sure that the unit is analyzed
576
577       declare
578          Was_Analyzed : constant Boolean :=
579                           Analyzed (Cunit (Current_Sem_Unit));
580
581       begin
582          --  Pretend that the current unit is analyzed, in case it is System
583          --  or some such. This allows us to put some declarations, such as
584          --  exceptions and packed arrays of Boolean, into System even though
585          --  expanding them requires System...
586
587          --  This is a bit odd but works fine. If the RTS unit does not depend
588          --  in any way on the current unit, then it never gets back into the
589          --  current unit's tree, and the change we make to the current unit
590          --  tree is never noticed by anyone (it is undone in a moment). That
591          --  is the normal situation.
592
593          --  If the RTS Unit *does* depend on the current unit, for instance,
594          --  when you are compiling System, then you had better have finished
595          --  analyzing the part of System that is depended on before you try
596          --  to load the RTS Unit. This means having the System ordered in an
597          --  appropriate manner.
598
599          Set_Analyzed (Cunit (Current_Sem_Unit), True);
600
601          if not Analyzed (Cunit (U.Unum)) then
602             Save_Private_Visibility;
603             Semantics (Cunit (U.Unum));
604             Restore_Private_Visibility;
605
606             if Fatal_Error (U.Unum) then
607                Load_Fail ("had semantic errors", U_Id, Id);
608             end if;
609          end if;
610
611          --  Undo the pretence
612
613          Set_Analyzed (Cunit (Current_Sem_Unit), Was_Analyzed);
614       end;
615
616       Lib_Unit := Unit (Cunit (U.Unum));
617       U.Entity := Defining_Entity (Lib_Unit);
618
619       if Use_Setting then
620          Set_Is_Potentially_Use_Visible (U.Entity, True);
621       end if;
622    end Load_RTU;
623
624    -----------------------
625    -- Output_Entity_Name --
626    ------------------------
627
628    procedure Output_Entity_Name (Id : RE_Id; Msg : String) is
629       M : String (1 .. 2048);
630       P : Natural := 0;
631       --  M (1 .. P) is current message to be output
632
633       RE_Image : constant String := RE_Id'Image (Id);
634
635    begin
636       if Id = RE_Null or else not All_Errors_Mode then
637          return;
638       end if;
639
640       M (1 .. 9) := "\entity """;
641       P := 9;
642
643       --  Add unit name to message, excluding %s or %b at end
644
645       Get_Name_String (Get_Unit_Name (RE_Unit_Table (Id)));
646       Name_Len := Name_Len - 2;
647       Set_Casing (Mixed_Case);
648       M (P + 1 .. P + Name_Len) := Name_Buffer (1 .. Name_Len);
649       P := P + Name_Len;
650
651       --  Add a qualifying period
652
653       M (P + 1) := '.';
654       P := P + 1;
655
656       --  Add entity name and closing quote to message
657
658       Name_Len := RE_Image'Length - 3;
659       Name_Buffer (1 .. Name_Len) := RE_Image (4 .. RE_Image'Length);
660       Set_Casing (Mixed_Case);
661       M (P + 1 .. P + Name_Len) := Name_Buffer (1 .. Name_Len);
662       P := P + Name_Len;
663       M (P + 1) := '"';
664       P := P + 1;
665
666       --  Add message
667
668       M (P + 1) := ' ';
669       P := P + 1;
670       M (P + 1 .. P + Msg'Length) := Msg;
671       P := P + Msg'Length;
672
673       --  Output message at current error node location
674
675       RTE_Error_Msg (M (1 .. P));
676    end Output_Entity_Name;
677
678    --------------
679    -- RE_Chars --
680    --------------
681
682    function RE_Chars (E : RE_Id) return Name_Id is
683       RE_Name_Chars : constant String := RE_Id'Image (E);
684
685    begin
686       --  Copy name skipping initial RE_ or RO_XX characters
687
688       if RE_Name_Chars (1 .. 2) = "RE" then
689          for J in 4 .. RE_Name_Chars'Last loop
690             Name_Buffer (J - 3) := Fold_Lower (RE_Name_Chars (J));
691          end loop;
692
693          Name_Len := RE_Name_Chars'Length - 3;
694
695       else
696          for J in 7 .. RE_Name_Chars'Last loop
697             Name_Buffer (J - 6) := Fold_Lower (RE_Name_Chars (J));
698          end loop;
699
700          Name_Len := RE_Name_Chars'Length - 6;
701       end if;
702
703       return Name_Find;
704    end RE_Chars;
705
706    ---------
707    -- RTE --
708    ---------
709
710    function RTE (E : RE_Id) return Entity_Id is
711       U_Id : constant RTU_Id := RE_Unit_Table (E);
712       U    : RT_Unit_Table_Record renames RT_Unit_Table (U_Id);
713
714       Lib_Unit : Node_Id;
715       Pkg_Ent  : Entity_Id;
716       Ename    : Name_Id;
717
718       --  The following flag is used to disable front-end inlining when RTE
719       --  is invoked. This prevents the analysis of other runtime bodies when
720       --  a particular spec is loaded through Rtsfind. This is both efficient,
721       --  and it prevents spurious visibility conflicts between use-visible
722       --  user entities, and entities in run-time packages.
723
724       --  In configurable run-time mode, subprograms marked Inlined_Always must
725       --  be inlined, so in the case we retain the Front_End_Inlining mode.
726
727       Save_Front_End_Inlining : Boolean;
728
729       function Check_CRT (Eid : Entity_Id) return Entity_Id;
730       --  Check entity Eid to ensure that configurable run-time restrictions
731       --  are met. May generate an error message and raise RE_Not_Available
732       --  if the entity E does not exist (i.e. Eid is Empty)
733
734       procedure Check_RPC;
735       --  Reject programs that make use of distribution features not supported
736       --  on the current target. On such targets (VMS, Vxworks, others?) we
737       --  only provide a minimal body for System.Rpc that only supplies an
738       --  implementation of partition_id.
739
740       function Find_Local_Entity (E : RE_Id) return Entity_Id;
741       --  This function is used when entity E is in this compilation's main
742       --  unit. It gets the value from the already compiled declaration.
743
744       function Make_Unit_Name (N : Node_Id) return Node_Id;
745       --  If the unit is a child unit, build fully qualified name for use
746       --  in With_Clause.
747
748       ---------------
749       -- Check_CRT --
750       ---------------
751
752       function Check_CRT (Eid : Entity_Id) return Entity_Id is
753       begin
754          if No (Eid) then
755             Entity_Not_Defined (E);
756             raise RE_Not_Available;
757
758          --  Entity is available
759
760          else
761             --  If in No_Run_Time mode and entity is not in one of the
762             --  specially permitted units, raise the exception.
763
764             if No_Run_Time_Mode
765                  and then not OK_No_Run_Time_Unit (U_Id)
766             then
767                Entity_Not_Defined (E);
768                raise RE_Not_Available;
769             end if;
770
771             --  Otherwise entity is accessible
772
773             return Eid;
774          end if;
775       end Check_CRT;
776
777       ---------------
778       -- Check_RPC --
779       ---------------
780
781       procedure Check_RPC is
782          Body_Name    : Unit_Name_Type;
783          Unum         : Unit_Number_Type;
784
785       begin
786          --  Bypass this check if debug flag -gnatdR set
787
788          if Debug_Flag_RR then
789             return;
790          end if;
791
792          --  Otherwise we need the check if we are going after one of
793          --  the critical entities in System.RPC in stubs mode.
794
795          if (Distribution_Stub_Mode = Generate_Receiver_Stub_Body
796                       or else
797                         Distribution_Stub_Mode = Generate_Caller_Stub_Body)
798            and then (E = RE_Do_Rpc
799                        or else E = RE_Do_Apc
800                        or else E = RE_Params_Stream_Type
801                        or else E = RE_RPC_Receiver)
802          then
803             --  Load body of System.Rpc, and abort if this is the body that is
804             --  provided by GNAT, for which these features are not supported
805             --  on current target. We identify the gnat body by the presence
806             --  of a local entity called Gnat in the first declaration.
807
808             Lib_Unit := Unit (Cunit (U.Unum));
809             Body_Name := Get_Body_Name (Get_Unit_Name (Lib_Unit));
810             Unum :=
811               Load_Unit
812                 (Load_Name  => Body_Name,
813                  Required   => False,
814                  Subunit    => False,
815                  Error_Node => Empty,
816                  Renamings  => True);
817
818             if Unum /= No_Unit then
819                declare
820                   Decls : constant List_Id :=
821                             Declarations (Unit (Cunit (Unum)));
822
823                begin
824                   if Present (Decls)
825                     and then Nkind (First (Decls)) = N_Object_Declaration
826                     and then
827                       Chars (Defining_Identifier (First (Decls))) = Name_Gnat
828                   then
829                      Set_Standard_Error;
830                      Write_Str ("distribution feature not supported");
831                      Write_Eol;
832                      raise Unrecoverable_Error;
833                   end if;
834                end;
835             end if;
836          end if;
837       end Check_RPC;
838
839       ------------------------
840       -- Find_System_Entity --
841       ------------------------
842
843       function Find_Local_Entity (E : RE_Id) return Entity_Id is
844          RE_Str : String renames RE_Id'Image (E);
845          Ent    : Entity_Id;
846
847          Save_Nam : constant String := Name_Buffer (1 .. Name_Len);
848          --  Save name buffer and length over call
849
850       begin
851          Name_Len := Natural'Max (0, RE_Str'Length - 3);
852          Name_Buffer (1 .. Name_Len) :=
853            RE_Str (RE_Str'First + 3 .. RE_Str'Last);
854
855          Ent := Entity_Id (Get_Name_Table_Info (Name_Find));
856
857          Name_Len := Save_Nam'Length;
858          Name_Buffer (1 .. Name_Len) := Save_Nam;
859
860          return Ent;
861       end Find_Local_Entity;
862
863       --------------------
864       -- Make_Unit_Name --
865       --------------------
866
867       function Make_Unit_Name (N : Node_Id) return Node_Id is
868          Nam  : Node_Id;
869          Scop : Entity_Id;
870
871       begin
872          Nam  := New_Reference_To (U.Entity, Standard_Location);
873          Scop := Scope (U.Entity);
874
875          if Nkind (N) = N_Defining_Program_Unit_Name then
876             while Scop /= Standard_Standard loop
877                Nam :=
878                  Make_Expanded_Name (Standard_Location,
879                    Chars  => Chars (U.Entity),
880                    Prefix => New_Reference_To (Scop, Standard_Location),
881                    Selector_Name => Nam);
882                Set_Entity (Nam, U.Entity);
883
884                Scop := Scope (Scop);
885             end loop;
886          end if;
887
888          return Nam;
889       end Make_Unit_Name;
890
891    --  Start of processing for RTE
892
893    begin
894       --  Doing a rtsfind in system.ads is special, as we cannot do this
895       --  when compiling System itself. So if we are compiling system then
896       --  we should already have acquired and processed the declaration
897       --  of the entity. The test is to see if this compilation's main unit
898       --  is System. If so, return the value from the already compiled
899       --  declaration and otherwise do a regular find.
900
901       --  Not pleasant, but these kinds of annoying recursion when
902       --  writing an Ada compiler in Ada have to be broken somewhere!
903
904       if Present (Main_Unit_Entity)
905         and then Chars (Main_Unit_Entity) = Name_System
906         and then Analyzed (Main_Unit_Entity)
907         and then not Is_Child_Unit (Main_Unit_Entity)
908       then
909          return Check_CRT (Find_Local_Entity (E));
910       end if;
911
912       Save_Front_End_Inlining := Front_End_Inlining;
913       Front_End_Inlining := Configurable_Run_Time_Mode;
914
915       --  Load unit if unit not previously loaded
916
917       if No (RE_Table (E)) then
918          Load_RTU (U_Id, Id => E);
919          Lib_Unit := Unit (Cunit (U.Unum));
920
921          --  In the subprogram case, we are all done, the entity we want
922          --  is the entity for the subprogram itself. Note that we do not
923          --  bother to check that it is the entity that was requested.
924          --  the only way that could fail to be the case is if runtime is
925          --  hopelessly misconfigured, and it isn't worth testing for this.
926
927          if Nkind (Lib_Unit) = N_Subprogram_Declaration then
928             RE_Table (E) := U.Entity;
929
930          --  Otherwise we must have the package case. First check package
931          --  entity itself (e.g. RTE_Name for System.Interrupts.Name)
932
933          else
934             pragma Assert (Nkind (Lib_Unit) = N_Package_Declaration);
935             Ename := RE_Chars (E);
936
937             --  First we search the package entity chain
938
939                Pkg_Ent := First_Entity (U.Entity);
940                while Present (Pkg_Ent) loop
941                   if Ename = Chars (Pkg_Ent) then
942                      RE_Table (E) := Pkg_Ent;
943                      Check_RPC;
944                      goto Found;
945                   end if;
946
947                   Next_Entity (Pkg_Ent);
948                end loop;
949
950             --  If we did not find the entity in the package entity chain,
951             --  then check if the package entity itself matches. Note that
952             --  we do this check after searching the entity chain, since
953             --  the rule is that in case of ambiguity, we prefer the entity
954             --  defined within the package, rather than the package itself.
955
956             if Ename = Chars (U.Entity) then
957                RE_Table (E) := U.Entity;
958             end if;
959
960             --  If we didn't find the entity we want, something is wrong.
961             --  We just leave RE_Table (E) set to Empty and the appropriate
962             --  action will be taken by Check_CRT when we exit.
963
964          end if;
965       end if;
966
967       --  See if we have to generate a WITH for this entity. We generate
968       --  a WITH if the current unit is part of the extended main code
969       --  unit, and if we have not already added the with. The WITH is
970       --  added to the appropriate unit (the current one). We do not need
971       --  to generate a WITH for an
972
973    <<Found>>
974       if (not U.Withed)
975         and then
976           In_Extended_Main_Code_Unit (Cunit_Entity (Current_Sem_Unit))
977         and then not RTE_Available_Call
978       then
979          U.Withed := True;
980
981          declare
982             Withn    : Node_Id;
983             Lib_Unit : Node_Id;
984
985          begin
986             Lib_Unit := Unit (Cunit (U.Unum));
987             Withn :=
988               Make_With_Clause (Standard_Location,
989                 Name =>
990                   Make_Unit_Name
991                     (Defining_Unit_Name (Specification (Lib_Unit))));
992             Set_Library_Unit          (Withn, Cunit (U.Unum));
993             Set_Corresponding_Spec    (Withn, U.Entity);
994             Set_First_Name            (Withn, True);
995             Set_Implicit_With         (Withn, True);
996
997             Mark_Rewrite_Insertion (Withn);
998             Append (Withn, Context_Items (Cunit (Current_Sem_Unit)));
999          end;
1000       end if;
1001
1002       Front_End_Inlining := Save_Front_End_Inlining;
1003       return Check_CRT (RE_Table (E));
1004    end RTE;
1005
1006    -------------------
1007    -- RTE_Available --
1008    -------------------
1009
1010    function RTE_Available (E : RE_Id) return Boolean is
1011       Dummy : Entity_Id;
1012       pragma Warnings (Off, Dummy);
1013
1014       Result : Boolean;
1015
1016       Save_RTE_Available_Call : constant Boolean := RTE_Available_Call;
1017       Save_RTE_Is_Available   : constant Boolean := RTE_Is_Available;
1018       --  These are saved recursively because the call to load a unit
1019       --  caused by an upper level call may perform a recursive call
1020       --  to this routine during analysis of the corresponding unit.
1021
1022    begin
1023       RTE_Available_Call := True;
1024       RTE_Is_Available := True;
1025       Dummy := RTE (E);
1026       Result := RTE_Is_Available;
1027       RTE_Available_Call := Save_RTE_Available_Call;
1028       RTE_Is_Available   := Save_RTE_Is_Available;
1029       return Result;
1030
1031    exception
1032       when RE_Not_Available =>
1033          RTE_Available_Call := Save_RTE_Available_Call;
1034          RTE_Is_Available   := Save_RTE_Is_Available;
1035          return False;
1036    end RTE_Available;
1037
1038    -------------------
1039    -- RTE_Error_Msg --
1040    -------------------
1041
1042    procedure RTE_Error_Msg (Msg : String) is
1043    begin
1044       if RTE_Available_Call then
1045          RTE_Is_Available := False;
1046       else
1047          Error_Msg_N (Msg, Current_Error_Node);
1048
1049          --  Bump count of violations if we are in configurable run-time
1050          --  mode and this is not a continuation message.
1051
1052          if Configurable_Run_Time_Mode and then Msg (1) /= '\' then
1053             Configurable_Run_Time_Violations :=
1054               Configurable_Run_Time_Violations + 1;
1055          end if;
1056       end if;
1057    end RTE_Error_Msg;
1058
1059    --------------------
1060    -- Text_IO_Kludge --
1061    --------------------
1062
1063    procedure Text_IO_Kludge (Nam : Node_Id) is
1064       Chrs : Name_Id;
1065
1066       type Name_Map_Type is array (Text_IO_Package_Name) of RTU_Id;
1067
1068       Name_Map : constant Name_Map_Type := Name_Map_Type'(
1069         Name_Decimal_IO     => Ada_Text_IO_Decimal_IO,
1070         Name_Enumeration_IO => Ada_Text_IO_Enumeration_IO,
1071         Name_Fixed_IO       => Ada_Text_IO_Fixed_IO,
1072         Name_Float_IO       => Ada_Text_IO_Float_IO,
1073         Name_Integer_IO     => Ada_Text_IO_Integer_IO,
1074         Name_Modular_IO     => Ada_Text_IO_Modular_IO);
1075
1076       Wide_Name_Map : constant Name_Map_Type := Name_Map_Type'(
1077         Name_Decimal_IO     => Ada_Wide_Text_IO_Decimal_IO,
1078         Name_Enumeration_IO => Ada_Wide_Text_IO_Enumeration_IO,
1079         Name_Fixed_IO       => Ada_Wide_Text_IO_Fixed_IO,
1080         Name_Float_IO       => Ada_Wide_Text_IO_Float_IO,
1081         Name_Integer_IO     => Ada_Wide_Text_IO_Integer_IO,
1082         Name_Modular_IO     => Ada_Wide_Text_IO_Modular_IO);
1083
1084    begin
1085       --  Nothing to do if name is not identifier or a selected component
1086       --  whose selector_name is not an identifier.
1087
1088       if Nkind (Nam) = N_Identifier then
1089          Chrs := Chars (Nam);
1090
1091       elsif Nkind (Nam) = N_Selected_Component
1092         and then Nkind (Selector_Name (Nam)) = N_Identifier
1093       then
1094          Chrs := Chars (Selector_Name (Nam));
1095
1096       else
1097          return;
1098       end if;
1099
1100       --  Nothing to do if name is not one of the Text_IO subpackages
1101       --  Otherwise look through loaded units, and if we find Text_IO
1102       --  or Wide_Text_IO already loaded, then load the proper child.
1103
1104       if Chrs in Text_IO_Package_Name then
1105          for U in Main_Unit .. Last_Unit loop
1106             Get_Name_String (Unit_File_Name (U));
1107
1108             if Name_Len = 12 then
1109
1110                --  Here is where we do the loads if we find one of the
1111                --  units Ada.Text_IO or Ada.Wide_Text_IO. An interesting
1112                --  detail is that these units may already be used (i.e.
1113                --  their In_Use flags may be set). Normally when the In_Use
1114                --  flag is set, the Is_Potentially_Use_Visible flag of all
1115                --  entities in the package is set, but the new entity we
1116                --  are mysteriously adding was not there to have its flag
1117                --  set at the time. So that's why we pass the extra parameter
1118                --  to RTU_Find, to make sure the flag does get set now.
1119                --  Given that those generic packages are in fact child units,
1120                --  we must indicate that they are visible.
1121
1122                if Name_Buffer (1 .. 12) = "a-textio.ads" then
1123                   Load_RTU
1124                     (Name_Map (Chrs),
1125                      Use_Setting => In_Use (Cunit_Entity (U)));
1126                   Set_Is_Visible_Child_Unit
1127                     (RT_Unit_Table (Name_Map (Chrs)).Entity);
1128
1129                elsif Name_Buffer (1 .. 12) = "a-witeio.ads" then
1130                   Load_RTU
1131                     (Wide_Name_Map (Chrs),
1132                      Use_Setting => In_Use (Cunit_Entity (U)));
1133                   Set_Is_Visible_Child_Unit
1134                     (RT_Unit_Table (Wide_Name_Map (Chrs)).Entity);
1135                end if;
1136             end if;
1137          end loop;
1138       end if;
1139    end Text_IO_Kludge;
1140
1141 end Rtsfind;