OSDN Git Service

637e15351e5f03c9fbcffcf76a637d113a64feff
[pf3gnuchains/gcc-fork.git] / gcc / ada / sem_ch10.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             S E M _ C H 1 0                              --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2008, Free Software Foundation, Inc.         --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 3,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT; see file COPYING3.  If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license.          --
20 --                                                                          --
21 -- GNAT was originally developed  by the GNAT team at  New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
23 --                                                                          --
24 ------------------------------------------------------------------------------
25
26 with Atree;    use Atree;
27 with Debug;    use Debug;
28 with Einfo;    use Einfo;
29 with Errout;   use Errout;
30 with Exp_Util; use Exp_Util;
31 with Elists;   use Elists;
32 with Fname;    use Fname;
33 with Fname.UF; use Fname.UF;
34 with Freeze;   use Freeze;
35 with Impunit;  use Impunit;
36 with Inline;   use Inline;
37 with Lib;      use Lib;
38 with Lib.Load; use Lib.Load;
39 with Lib.Xref; use Lib.Xref;
40 with Namet;    use Namet;
41 with Nlists;   use Nlists;
42 with Nmake;    use Nmake;
43 with Opt;      use Opt;
44 with Output;   use Output;
45 with Restrict; use Restrict;
46 with Rident;   use Rident;
47 with Rtsfind;  use Rtsfind;
48 with Sem;      use Sem;
49 with Sem_Ch3;  use Sem_Ch3;
50 with Sem_Ch6;  use Sem_Ch6;
51 with Sem_Ch7;  use Sem_Ch7;
52 with Sem_Ch8;  use Sem_Ch8;
53 with Sem_Dist; use Sem_Dist;
54 with Sem_Prag; use Sem_Prag;
55 with Sem_Util; use Sem_Util;
56 with Sem_Warn; use Sem_Warn;
57 with Stand;    use Stand;
58 with Sinfo;    use Sinfo;
59 with Sinfo.CN; use Sinfo.CN;
60 with Sinput;   use Sinput;
61 with Snames;   use Snames;
62 with Style;    use Style;
63 with Stylesw;  use Stylesw;
64 with Tbuild;   use Tbuild;
65 with Uname;    use Uname;
66
67 package body Sem_Ch10 is
68
69    -----------------------
70    -- Local Subprograms --
71    -----------------------
72
73    procedure Analyze_Context (N : Node_Id);
74    --  Analyzes items in the context clause of compilation unit
75
76    procedure Build_Limited_Views (N : Node_Id);
77    --  Build and decorate the list of shadow entities for a package mentioned
78    --  in a limited_with clause. If the package was not previously analyzed
79    --  then it also performs a basic decoration of the real entities; this
80    --  is required to do not pass non-decorated entities to the back-end.
81    --  Implements Ada 2005 (AI-50217).
82
83    procedure Check_Body_Needed_For_SAL (Unit_Name : Entity_Id);
84    --  Check whether the source for the body of a compilation unit must
85    --  be included in a standalone library.
86
87    procedure Check_Private_Child_Unit (N : Node_Id);
88    --  If a with_clause mentions a private child unit, the compilation
89    --  unit must be a member of the same family, as described in 10.1.2.
90
91    procedure Check_Stub_Level (N : Node_Id);
92    --  Verify that a stub is declared immediately within a compilation unit,
93    --  and not in an inner frame.
94
95    procedure Expand_With_Clause (Item : Node_Id; Nam : Node_Id; N : Node_Id);
96    --  When a child unit appears in a context clause, the implicit withs on
97    --  parents are made explicit, and with clauses are inserted in the context
98    --  clause before the one for the child. If a parent in the with_clause
99    --  is a renaming, the implicit with_clause is on the renaming whose name
100    --  is mentioned in the with_clause, and not on the package it renames.
101    --  N is the compilation unit whose list of context items receives the
102    --  implicit with_clauses.
103
104    function Get_Parent_Entity (Unit : Node_Id) return Entity_Id;
105    --  Get defining entity of parent unit of a child unit. In most cases this
106    --  is the defining entity of the unit, but for a child instance whose
107    --  parent needs a body for inlining, the instantiation node of the parent
108    --  has not yet been rewritten as a package declaration, and the entity has
109    --  to be retrieved from the Instance_Spec of the unit.
110
111    procedure Implicit_With_On_Parent (Child_Unit : Node_Id; N : Node_Id);
112    --  If the main unit is a child unit, implicit withs are also added for
113    --  all its ancestors.
114
115    function In_Chain (E : Entity_Id) return Boolean;
116    --  Check that the shadow entity is not already in the homonym chain, for
117    --  example through a limited_with clause in a parent unit.
118
119    procedure Install_Context_Clauses (N : Node_Id);
120    --  Subsidiary to Install_Context and Install_Parents. Process only with_
121    --  and use_clauses for current unit and its library unit if any.
122
123    procedure Install_Limited_Context_Clauses (N : Node_Id);
124    --  Subsidiary to Install_Context. Process only limited with_clauses
125    --  for current unit. Implements Ada 2005 (AI-50217).
126
127    procedure Install_Limited_Withed_Unit (N : Node_Id);
128    --  Place shadow entities for a limited_with package in the visibility
129    --  structures for the current compilation. Implements Ada 2005 (AI-50217).
130
131    procedure Install_Withed_Unit
132      (With_Clause     : Node_Id;
133       Private_With_OK : Boolean := False);
134    --  If the unit is not a child unit, make unit immediately visible.
135    --  The caller ensures that the unit is not already currently installed.
136    --  The flag Private_With_OK is set true in Install_Private_With_Clauses,
137    --  which is called when compiling the private part of a package, or
138    --  installing the private declarations of a parent unit.
139
140    procedure Install_Parents (Lib_Unit : Node_Id; Is_Private : Boolean);
141    --  This procedure establishes the context for the compilation of a child
142    --  unit. If Lib_Unit is a child library spec then the context of the parent
143    --  is installed, and the parent itself made immediately visible, so that
144    --  the child unit is processed in the declarative region of the parent.
145    --  Install_Parents makes a recursive call to itself to ensure that all
146    --  parents are loaded in the nested case. If Lib_Unit is a library body,
147    --  the only effect of Install_Parents is to install the private decls of
148    --  the parents, because the visible parent declarations will have been
149    --  installed as part of the context of the corresponding spec.
150
151    procedure Install_Siblings (U_Name : Entity_Id; N : Node_Id);
152    --  In the compilation of a child unit, a child of any of the  ancestor
153    --  units is directly visible if it is visible, because the parent is in
154    --  an enclosing scope. Iterate over context to find child units of U_Name
155    --  or of some ancestor of it.
156
157    function Is_Child_Spec (Lib_Unit : Node_Id) return Boolean;
158    --  Lib_Unit is a library unit which may be a spec or a body. Is_Child_Spec
159    --  returns True if Lib_Unit is a library spec which is a child spec, i.e.
160    --  a library spec that has a parent. If the call to Is_Child_Spec returns
161    --  True, then Parent_Spec (Lib_Unit) is non-Empty and points to the
162    --  compilation unit for the parent spec.
163    --
164    --  Lib_Unit can also be a subprogram body that acts as its own spec. If
165    --  the Parent_Spec is  non-empty, this is also a child unit.
166
167    procedure Remove_Context_Clauses (N : Node_Id);
168    --  Subsidiary of previous one. Remove use_ and with_clauses
169
170    procedure Remove_Limited_With_Clause (N : Node_Id);
171    --  Remove from visibility the shadow entities introduced for a package
172    --  mentioned in a limited_with clause. Implements Ada 2005 (AI-50217).
173
174    procedure Remove_Parents (Lib_Unit : Node_Id);
175    --  Remove_Parents checks if Lib_Unit is a child spec. If so then the parent
176    --  contexts established by the corresponding call to Install_Parents are
177    --  removed. Remove_Parents contains a recursive call to itself to ensure
178    --  that all parents are removed in the nested case.
179
180    procedure Remove_Unit_From_Visibility (Unit_Name : Entity_Id);
181    --  Reset all visibility flags on unit after compiling it, either as a
182    --  main unit or as a unit in the context.
183
184    procedure Unchain (E : Entity_Id);
185    --  Remove single entity from visibility list
186
187    procedure Analyze_Proper_Body (N : Node_Id; Nam : Entity_Id);
188    --  Common processing for all stubs (subprograms, tasks, packages, and
189    --  protected cases). N is the stub to be analyzed. Once the subunit
190    --  name is established, load and analyze. Nam is the non-overloadable
191    --  entity for which the proper body provides a completion. Subprogram
192    --  stubs are handled differently because they can be declarations.
193
194    procedure sm;
195    --  A dummy procedure, for debugging use, called just before analyzing the
196    --  main unit (after dealing with any context clauses).
197
198    --------------------------
199    -- Limited_With_Clauses --
200    --------------------------
201
202    --  Limited_With clauses are the mechanism chosen for Ada05 to support
203    --  mutually recursive types declared in different units. A limited_with
204    --  clause that names package P in the context of unit U makes the types
205    --  declared in the visible part of P available within U, but with the
206    --  restriction that these types can only be used as incomplete types.
207    --  The limited_with clause does not impose a semantic dependence on P,
208    --  and it is possible for two packages to have limited_with_clauses on
209    --  each other without creating an elaboration circularity.
210
211    --  To support this feature, the analysis of a limited_with clause must
212    --  create an abbreviated view of the package, without performing any
213    --  semantic analysis on it. This "package abstract" contains shadow
214    --  types that are in one-one correspondence with the real types in the
215    --  package, and that have the properties of incomplete types.
216
217    --  The implementation creates two element lists: one to chain the shadow
218    --  entities, and one to chain the corresponding type entities in the tree
219    --  of the package. Links between corresponding entities in both chains
220    --  allow the compiler to select the proper view of a given type, depending
221    --  on the context. Note that in contrast with the handling of private
222    --  types, the limited view and the non-limited view of a type are treated
223    --  as separate entities, and no entity exchange needs to take place, which
224    --  makes the implementation must simpler than could be feared.
225
226    ------------------------------
227    -- Analyze_Compilation_Unit --
228    ------------------------------
229
230    procedure Analyze_Compilation_Unit (N : Node_Id) is
231       Unit_Node     : constant Node_Id := Unit (N);
232       Lib_Unit      : Node_Id          := Library_Unit (N);
233       Spec_Id       : Entity_Id;
234       Main_Cunit    : constant Node_Id := Cunit (Main_Unit);
235       Par_Spec_Name : Unit_Name_Type;
236       Unum          : Unit_Number_Type;
237
238       procedure Check_Redundant_Withs
239         (Context_Items      : List_Id;
240          Spec_Context_Items : List_Id := No_List);
241       --  Determine whether the context list of a compilation unit contains
242       --  redundant with clauses. When checking body clauses against spec
243       --  clauses, set Context_Items to the context list of the body and
244       --  Spec_Context_Items to that of the spec. Parent packages are not
245       --  examined for documentation purposes.
246
247       procedure Generate_Parent_References (N : Node_Id; P_Id : Entity_Id);
248       --  Generate cross-reference information for the parents of child units.
249       --  N is a defining_program_unit_name, and P_Id is the immediate parent.
250
251       ---------------------------
252       -- Check_Redundant_Withs --
253       ---------------------------
254
255       procedure Check_Redundant_Withs
256         (Context_Items      : List_Id;
257          Spec_Context_Items : List_Id := No_List)
258       is
259          Clause : Node_Id;
260
261          procedure Process_Body_Clauses
262           (Context_List      : List_Id;
263            Clause            : Node_Id;
264            Used              : in out Boolean;
265            Used_Type_Or_Elab : in out Boolean);
266          --  Examine the context clauses of a package body, trying to match
267          --  the name entity of Clause with any list element. If the match
268          --  occurs on a use package clause, set Used to True, for a use
269          --  type clause, pragma Elaborate or pragma Elaborate_All, set
270          --  Used_Type_Or_Elab to True.
271
272          procedure Process_Spec_Clauses
273           (Context_List : List_Id;
274            Clause       : Node_Id;
275            Used         : in out Boolean;
276            Withed       : in out Boolean;
277            Exit_On_Self : Boolean := False);
278          --  Examine the context clauses of a package spec, trying to match
279          --  the name entity of Clause with any list element. If the match
280          --  occurs on a use package clause, set Used to True, for a with
281          --  package clause other than Clause, set Withed to True. Limited
282          --  with clauses, implicitly generated with clauses and withs
283          --  having pragmas Elaborate or Elaborate_All applied to them are
284          --  skipped. Exit_On_Self is used to control the search loop and
285          --  force an exit whenever Clause sees itself in the search.
286
287          --------------------------
288          -- Process_Body_Clauses --
289          --------------------------
290
291          procedure Process_Body_Clauses
292           (Context_List      : List_Id;
293            Clause            : Node_Id;
294            Used              : in out Boolean;
295            Used_Type_Or_Elab : in out Boolean)
296          is
297             Nam_Ent   : constant Entity_Id := Entity (Name (Clause));
298             Cont_Item : Node_Id;
299             Prag_Unit : Node_Id;
300             Subt_Mark : Node_Id;
301             Use_Item  : Node_Id;
302
303             function Same_Unit (N : Node_Id; P : Entity_Id) return Boolean;
304             --  In an expanded name in a use clause, if the prefix is a
305             --  renamed package, the entity is set to the original package
306             --  as a result, when checking whether the package appears in a
307             --  previous with_clause, the renaming has to be taken into
308             --  account, to prevent spurious or incorrect warnings. The
309             --  common case is the use of Text_IO.
310
311             ---------------
312             -- Same_Unit --
313             ---------------
314
315             function Same_Unit (N : Node_Id; P : Entity_Id) return Boolean is
316             begin
317                return Entity (N) = P
318                  or else
319                    (Present (Renamed_Object (P))
320                      and then Entity (N) = Renamed_Object (P));
321             end Same_Unit;
322
323          --  Start of processing for Process_Body_Clauses
324
325          begin
326             Used := False;
327             Used_Type_Or_Elab := False;
328
329             Cont_Item := First (Context_List);
330             while Present (Cont_Item) loop
331
332                --  Package use clause
333
334                if Nkind (Cont_Item) = N_Use_Package_Clause
335                  and then not Used
336                then
337                   --  Search through use clauses
338
339                   Use_Item := First (Names (Cont_Item));
340                   while Present (Use_Item) and then not Used loop
341
342                      --  Case of a direct use of the one we are looking for
343
344                      if Entity (Use_Item) = Nam_Ent then
345                         Used := True;
346
347                      --  Handle nested case, as in "with P; use P.Q.R"
348
349                      else
350                         declare
351                            UE : Node_Id;
352
353                         begin
354                            --  Loop through prefixes looking for match
355
356                            UE := Use_Item;
357                            while Nkind (UE) = N_Expanded_Name loop
358                               if Same_Unit (Prefix (UE), Nam_Ent) then
359                                  Used := True;
360                                  exit;
361                               end if;
362
363                               UE := Prefix (UE);
364                            end loop;
365                         end;
366                      end if;
367
368                      Next (Use_Item);
369                   end loop;
370
371                --  USE TYPE clause
372
373                elsif Nkind (Cont_Item) = N_Use_Type_Clause
374                  and then not Used_Type_Or_Elab
375                then
376                   Subt_Mark := First (Subtype_Marks (Cont_Item));
377                   while Present (Subt_Mark)
378                     and then not Used_Type_Or_Elab
379                   loop
380                      if Same_Unit (Prefix (Subt_Mark), Nam_Ent) then
381                         Used_Type_Or_Elab := True;
382                      end if;
383
384                      Next (Subt_Mark);
385                   end loop;
386
387                --  Pragma Elaborate or Elaborate_All
388
389                elsif Nkind (Cont_Item) = N_Pragma
390                  and then
391                    (Pragma_Name (Cont_Item) = Name_Elaborate
392                       or else
393                     Pragma_Name (Cont_Item) = Name_Elaborate_All)
394                  and then not Used_Type_Or_Elab
395                then
396                   Prag_Unit :=
397                     First (Pragma_Argument_Associations (Cont_Item));
398                   while Present (Prag_Unit)
399                     and then not Used_Type_Or_Elab
400                   loop
401                      if Entity (Expression (Prag_Unit)) = Nam_Ent then
402                         Used_Type_Or_Elab := True;
403                      end if;
404
405                      Next (Prag_Unit);
406                   end loop;
407                end if;
408
409                Next (Cont_Item);
410             end loop;
411          end Process_Body_Clauses;
412
413          --------------------------
414          -- Process_Spec_Clauses --
415          --------------------------
416
417          procedure Process_Spec_Clauses
418           (Context_List : List_Id;
419            Clause       : Node_Id;
420            Used         : in out Boolean;
421            Withed       : in out Boolean;
422            Exit_On_Self : Boolean := False)
423          is
424             Nam_Ent   : constant Entity_Id := Entity (Name (Clause));
425             Cont_Item : Node_Id;
426             Use_Item  : Node_Id;
427
428          begin
429             Used := False;
430             Withed := False;
431
432             Cont_Item := First (Context_List);
433             while Present (Cont_Item) loop
434
435                --  Stop the search since the context items after Cont_Item
436                --  have already been examined in a previous iteration of
437                --  the reverse loop in Check_Redundant_Withs.
438
439                if Exit_On_Self
440                  and Cont_Item = Clause
441                then
442                   exit;
443                end if;
444
445                --  Package use clause
446
447                if Nkind (Cont_Item) = N_Use_Package_Clause
448                  and then not Used
449                then
450                   Use_Item := First (Names (Cont_Item));
451                   while Present (Use_Item) and then not Used loop
452                      if Entity (Use_Item) = Nam_Ent then
453                         Used := True;
454                      end if;
455
456                      Next (Use_Item);
457                   end loop;
458
459                --  Package with clause. Avoid processing self, implicitly
460                --  generated with clauses or limited with clauses. Note
461                --  that we examine with clauses having pragmas Elaborate
462                --  or Elaborate_All applied to them due to cases such as:
463                --
464                --     with Pack;
465                --     with Pack;
466                --     pragma Elaborate (Pack);
467                --
468                --  In this case, the second with clause is redundant since
469                --  the pragma applies only to the first "with Pack;".
470
471                elsif Nkind (Cont_Item) = N_With_Clause
472                  and then not Implicit_With (Cont_Item)
473                  and then not Limited_Present (Cont_Item)
474                  and then Cont_Item /= Clause
475                  and then Entity (Name (Cont_Item)) = Nam_Ent
476                then
477                   Withed := True;
478                end if;
479
480                Next (Cont_Item);
481             end loop;
482          end Process_Spec_Clauses;
483
484       --  Start of processing for Check_Redundant_Withs
485
486       begin
487          Clause := Last (Context_Items);
488          while Present (Clause) loop
489
490             --  Avoid checking implicitly generated with clauses, limited
491             --  with clauses or withs that have pragma Elaborate or
492             --  Elaborate_All applied.
493
494             if Nkind (Clause) = N_With_Clause
495               and then not Implicit_With (Clause)
496               and then not Limited_Present (Clause)
497               and then not Elaborate_Present (Clause)
498             then
499                --  Package body-to-spec check
500
501                if Present (Spec_Context_Items) then
502                   declare
503                      Used_In_Body      : Boolean := False;
504                      Used_In_Spec      : Boolean := False;
505                      Used_Type_Or_Elab : Boolean := False;
506                      Withed_In_Spec    : Boolean := False;
507
508                   begin
509                      Process_Spec_Clauses
510                       (Context_List => Spec_Context_Items,
511                        Clause       => Clause,
512                        Used         => Used_In_Spec,
513                        Withed       => Withed_In_Spec);
514
515                      Process_Body_Clauses
516                       (Context_List      => Context_Items,
517                        Clause            => Clause,
518                        Used              => Used_In_Body,
519                        Used_Type_Or_Elab => Used_Type_Or_Elab);
520
521                      --  "Type Elab" refers to the presence of either a use
522                      --  type clause, pragmas Elaborate or Elaborate_All.
523
524                      --  +---------------+---------------------------+------+
525                      --  | Spec          | Body                      | Warn |
526                      --  +--------+------+--------+------+-----------+------+
527                      --  | Withed | Used | Withed | Used | Type Elab |      |
528                      --  |   X    |      |   X    |      |           |  X   |
529                      --  |   X    |      |   X    |  X   |           |      |
530                      --  |   X    |      |   X    |      |     X     |      |
531                      --  |   X    |      |   X    |  X   |     X     |      |
532                      --  |   X    |  X   |   X    |      |           |  X   |
533                      --  |   X    |  X   |   X    |      |     X     |      |
534                      --  |   X    |  X   |   X    |  X   |           |  X   |
535                      --  |   X    |  X   |   X    |  X   |     X     |      |
536                      --  +--------+------+--------+------+-----------+------+
537
538                      if (Withed_In_Spec
539                            and then not Used_Type_Or_Elab)
540                              and then
541                                ((not Used_In_Spec
542                                    and then not Used_In_Body)
543                                      or else
544                                        Used_In_Spec)
545                      then
546                         Error_Msg_N ("?redundant with clause in body", Clause);
547                      end if;
548
549                      Used_In_Body := False;
550                      Used_In_Spec := False;
551                      Used_Type_Or_Elab := False;
552                      Withed_In_Spec := False;
553                   end;
554
555                --  Standalone package spec or body check
556
557                else
558                   declare
559                      Dont_Care : Boolean := False;
560                      Withed    : Boolean := False;
561
562                   begin
563                      --  The mechanism for examining the context clauses of a
564                      --  package spec can be applied to package body clauses.
565
566                      Process_Spec_Clauses
567                       (Context_List => Context_Items,
568                        Clause       => Clause,
569                        Used         => Dont_Care,
570                        Withed       => Withed,
571                        Exit_On_Self => True);
572
573                      if Withed then
574                         Error_Msg_N ("?redundant with clause", Clause);
575                      end if;
576                   end;
577                end if;
578             end if;
579
580             Prev (Clause);
581          end loop;
582       end Check_Redundant_Withs;
583
584       --------------------------------
585       -- Generate_Parent_References --
586       --------------------------------
587
588       procedure Generate_Parent_References (N : Node_Id; P_Id : Entity_Id) is
589          Pref   : Node_Id;
590          P_Name : Entity_Id := P_Id;
591
592       begin
593          Pref := Name (Parent (Defining_Entity (N)));
594
595          if Nkind (Pref) = N_Expanded_Name then
596
597             --  Done already, if the unit has been compiled indirectly as
598             --  part of the closure of its context because of inlining.
599
600             return;
601          end if;
602
603          while Nkind (Pref) = N_Selected_Component loop
604             Change_Selected_Component_To_Expanded_Name (Pref);
605             Set_Entity (Pref, P_Name);
606             Set_Etype (Pref, Etype (P_Name));
607             Generate_Reference (P_Name, Pref, 'r');
608             Pref   := Prefix (Pref);
609             P_Name := Scope (P_Name);
610          end loop;
611
612          --  The guard here on P_Name is to handle the error condition where
613          --  the parent unit is missing because the file was not found.
614
615          if Present (P_Name) then
616             Set_Entity (Pref, P_Name);
617             Set_Etype (Pref, Etype (P_Name));
618             Generate_Reference (P_Name, Pref, 'r');
619             Style.Check_Identifier (Pref, P_Name);
620          end if;
621       end Generate_Parent_References;
622
623    --  Start of processing for Analyze_Compilation_Unit
624
625    begin
626       Process_Compilation_Unit_Pragmas (N);
627
628       --  If the unit is a subunit whose parent has not been analyzed (which
629       --  indicates that the main unit is a subunit, either the current one or
630       --  one of its descendents) then the subunit is compiled as part of the
631       --  analysis of the parent, which we proceed to do. Basically this gets
632       --  handled from the top down and we don't want to do anything at this
633       --  level (i.e. this subunit will be handled on the way down from the
634       --  parent), so at this level we immediately return. If the subunit
635       --  ends up not analyzed, it means that the parent did not contain a
636       --  stub for it, or that there errors were detected in some ancestor.
637
638       if Nkind (Unit_Node) = N_Subunit
639         and then not Analyzed (Lib_Unit)
640       then
641          Semantics (Lib_Unit);
642
643          if not Analyzed (Proper_Body (Unit_Node)) then
644             if Serious_Errors_Detected > 0 then
645                Error_Msg_N ("subunit not analyzed (errors in parent unit)", N);
646             else
647                Error_Msg_N ("missing stub for subunit", N);
648             end if;
649          end if;
650
651          return;
652       end if;
653
654       --  Analyze context (this will call Sem recursively for with'ed units)
655
656       Analyze_Context (N);
657
658       --  If the unit is a package body, the spec is already loaded and must
659       --  be analyzed first, before we analyze the body.
660
661       if Nkind (Unit_Node) = N_Package_Body then
662
663          --  If no Lib_Unit, then there was a serious previous error, so
664          --  just ignore the entire analysis effort
665
666          if No (Lib_Unit) then
667             return;
668
669          else
670             Semantics (Lib_Unit);
671             Check_Unused_Withs (Get_Cunit_Unit_Number (Lib_Unit));
672
673             --  Verify that the library unit is a package declaration
674
675             if not Nkind_In (Unit (Lib_Unit), N_Package_Declaration,
676                                               N_Generic_Package_Declaration)
677             then
678                Error_Msg_N
679                  ("no legal package declaration for package body", N);
680                return;
681
682             --  Otherwise, the entity in the declaration is visible. Update
683             --  the version to reflect dependence of this body on the spec.
684
685             else
686                Spec_Id := Defining_Entity (Unit (Lib_Unit));
687                Set_Is_Immediately_Visible (Spec_Id, True);
688                Version_Update (N, Lib_Unit);
689
690                if Nkind (Defining_Unit_Name (Unit_Node)) =
691                                              N_Defining_Program_Unit_Name
692                then
693                   Generate_Parent_References (Unit_Node, Scope (Spec_Id));
694                end if;
695             end if;
696          end if;
697
698       --  If the unit is a subprogram body, then we similarly need to analyze
699       --  its spec. However, things are a little simpler in this case, because
700       --  here, this analysis is done only for error checking and consistency
701       --  purposes, so there's nothing else to be done.
702
703       elsif Nkind (Unit_Node) = N_Subprogram_Body then
704          if Acts_As_Spec (N) then
705
706             --  If the subprogram body is a child unit, we must create a
707             --  declaration for it, in order to properly load the parent(s).
708             --  After this, the original unit does not acts as a spec, because
709             --  there is an explicit one. If this unit appears in a context
710             --  clause, then an implicit with on the parent will be added when
711             --  installing the context. If this is the main unit, there is no
712             --  Unit_Table entry for the declaration (it has the unit number
713             --  of the main unit) and code generation is unaffected.
714
715             Unum := Get_Cunit_Unit_Number (N);
716             Par_Spec_Name := Get_Parent_Spec_Name (Unit_Name (Unum));
717
718             if Par_Spec_Name /= No_Unit_Name then
719                Unum :=
720                  Load_Unit
721                    (Load_Name  => Par_Spec_Name,
722                     Required   => True,
723                     Subunit    => False,
724                     Error_Node => N);
725
726                if Unum /= No_Unit then
727
728                   --  Build subprogram declaration and attach parent unit to it
729                   --  This subprogram declaration does not come from source,
730                   --  Nevertheless the backend must generate debugging info for
731                   --  it, and this must be indicated explicitly. We also mark
732                   --  the body entity as a child unit now, to prevent a
733                   --  cascaded error if the spec entity cannot be entered
734                   --  in its scope.
735
736                   declare
737                      Loc : constant Source_Ptr := Sloc (N);
738                      SCS : constant Boolean :=
739                              Get_Comes_From_Source_Default;
740
741                   begin
742                      Set_Comes_From_Source_Default (False);
743                      Lib_Unit :=
744                        Make_Compilation_Unit (Loc,
745                          Context_Items => New_Copy_List (Context_Items (N)),
746                          Unit =>
747                            Make_Subprogram_Declaration (Sloc (N),
748                              Specification =>
749                                Copy_Separate_Tree
750                                  (Specification (Unit_Node))),
751                          Aux_Decls_Node =>
752                            Make_Compilation_Unit_Aux (Loc));
753
754                      Set_Library_Unit (N, Lib_Unit);
755                      Set_Parent_Spec (Unit (Lib_Unit), Cunit (Unum));
756                      Semantics (Lib_Unit);
757
758                      --  Now that a separate declaration exists, the body
759                      --  of the child unit does not act as spec any longer.
760
761                      Set_Acts_As_Spec (N, False);
762                      Set_Is_Child_Unit (Defining_Entity (Unit_Node));
763                      Set_Debug_Info_Needed (Defining_Entity (Unit (Lib_Unit)));
764                      Set_Comes_From_Source_Default (SCS);
765                   end;
766                end if;
767             end if;
768
769          --  Here for subprogram with separate declaration
770
771          else
772             Semantics (Lib_Unit);
773             Check_Unused_Withs (Get_Cunit_Unit_Number (Lib_Unit));
774             Version_Update (N, Lib_Unit);
775          end if;
776
777          if Nkind (Defining_Unit_Name (Specification (Unit_Node))) =
778                                              N_Defining_Program_Unit_Name
779          then
780             Generate_Parent_References (
781               Specification (Unit_Node),
782                 Scope (Defining_Entity (Unit (Lib_Unit))));
783          end if;
784       end if;
785
786       --  If it is a child unit, the parent must be elaborated first
787       --  and we update version, since we are dependent on our parent.
788
789       if Is_Child_Spec (Unit_Node) then
790
791          --  The analysis of the parent is done with style checks off
792
793          declare
794             Save_Style_Check : constant Boolean := Style_Check;
795             Save_C_Restrict  : constant Save_Cunit_Boolean_Restrictions :=
796                                  Cunit_Boolean_Restrictions_Save;
797
798          begin
799             if not GNAT_Mode then
800                Style_Check := False;
801             end if;
802
803             Semantics (Parent_Spec (Unit_Node));
804             Version_Update (N, Parent_Spec (Unit_Node));
805             Style_Check := Save_Style_Check;
806             Cunit_Boolean_Restrictions_Restore (Save_C_Restrict);
807          end;
808       end if;
809
810       --  With the analysis done, install the context. Note that we can't
811       --  install the context from the with clauses as we analyze them, because
812       --  each with clause must be analyzed in a clean visibility context, so
813       --  we have to wait and install them all at once.
814
815       Install_Context (N);
816
817       if Is_Child_Spec (Unit_Node) then
818
819          --  Set the entities of all parents in the program_unit_name
820
821          Generate_Parent_References (
822            Unit_Node, Get_Parent_Entity (Unit (Parent_Spec (Unit_Node))));
823       end if;
824
825       --  All components of the context: with-clauses, library unit, ancestors
826       --  if any, (and their context)  are analyzed and installed.
827
828       --  Call special debug routine sm if this is the main unit
829
830       if Current_Sem_Unit = Main_Unit then
831          sm;
832       end if;
833
834       --  Now analyze the unit (package, subprogram spec, body) itself
835
836       Analyze (Unit_Node);
837
838       if Warn_On_Redundant_Constructs then
839          Check_Redundant_Withs (Context_Items (N));
840
841          if Nkind (Unit_Node) = N_Package_Body then
842             Check_Redundant_Withs
843               (Context_Items      => Context_Items (N),
844                Spec_Context_Items => Context_Items (Lib_Unit));
845          end if;
846       end if;
847
848       --  The above call might have made Unit_Node an N_Subprogram_Body from
849       --  something else, so propagate any Acts_As_Spec flag.
850
851       if Nkind (Unit_Node) = N_Subprogram_Body
852         and then Acts_As_Spec (Unit_Node)
853       then
854          Set_Acts_As_Spec (N);
855       end if;
856
857       --  Register predefined units in Rtsfind
858
859       declare
860          Unum : constant Unit_Number_Type := Get_Source_Unit (Sloc (N));
861       begin
862          if Is_Predefined_File_Name (Unit_File_Name (Unum)) then
863             Set_RTU_Loaded (Unit_Node);
864          end if;
865       end;
866
867       --  Treat compilation unit pragmas that appear after the library unit
868
869       if Present (Pragmas_After (Aux_Decls_Node (N))) then
870          declare
871             Prag_Node : Node_Id := First (Pragmas_After (Aux_Decls_Node (N)));
872          begin
873             while Present (Prag_Node) loop
874                Analyze (Prag_Node);
875                Next (Prag_Node);
876             end loop;
877          end;
878       end if;
879
880       --  Generate distribution stubs if requested and no error
881
882       if N = Main_Cunit
883         and then (Distribution_Stub_Mode = Generate_Receiver_Stub_Body
884                     or else
885                   Distribution_Stub_Mode = Generate_Caller_Stub_Body)
886         and then not Fatal_Error (Main_Unit)
887       then
888          if Is_RCI_Pkg_Spec_Or_Body (N) then
889
890             --  Regular RCI package
891
892             Add_Stub_Constructs (N);
893
894          elsif (Nkind (Unit_Node) = N_Package_Declaration
895                  and then Is_Shared_Passive (Defining_Entity
896                                               (Specification (Unit_Node))))
897            or else (Nkind (Unit_Node) = N_Package_Body
898                      and then
899                        Is_Shared_Passive (Corresponding_Spec (Unit_Node)))
900          then
901             --  Shared passive package
902
903             Add_Stub_Constructs (N);
904
905          elsif Nkind (Unit_Node) = N_Package_Instantiation
906            and then
907              Is_Remote_Call_Interface
908                (Defining_Entity (Specification (Instance_Spec (Unit_Node))))
909          then
910             --  Instantiation of a RCI generic package
911
912             Add_Stub_Constructs (N);
913          end if;
914       end if;
915
916       --  Remove unit from visibility, so that environment is clean for
917       --  the next compilation, which is either the main unit or some
918       --  other unit in the context.
919
920       if Nkind_In (Unit_Node, N_Package_Declaration,
921                               N_Package_Renaming_Declaration,
922                               N_Subprogram_Declaration)
923         or else Nkind (Unit_Node) in N_Generic_Declaration
924         or else
925           (Nkind (Unit_Node) = N_Subprogram_Body
926             and then Acts_As_Spec (Unit_Node))
927       then
928          Remove_Unit_From_Visibility (Defining_Entity (Unit_Node));
929
930       --  If the unit is an instantiation whose body will be elaborated for
931       --  inlining purposes, use the proper entity of the instance. The
932       --  entity may be missing if the instantiation was illegal.
933
934       elsif Nkind (Unit_Node) = N_Package_Instantiation
935         and then not Error_Posted (Unit_Node)
936         and then Present (Instance_Spec (Unit_Node))
937       then
938          Remove_Unit_From_Visibility
939            (Defining_Entity (Instance_Spec (Unit_Node)));
940
941       elsif Nkind (Unit_Node) = N_Package_Body
942         or else (Nkind (Unit_Node) = N_Subprogram_Body
943                   and then not Acts_As_Spec (Unit_Node))
944       then
945          --  Bodies that are not the main unit are compiled if they are generic
946          --  or contain generic or inlined units. Their analysis brings in the
947          --  context of the corresponding spec (unit declaration) which must be
948          --  removed as well, to return the compilation environment to its
949          --  proper state.
950
951          Remove_Context (Lib_Unit);
952          Set_Is_Immediately_Visible (Defining_Entity (Unit (Lib_Unit)), False);
953       end if;
954
955       --  Last step is to deinstall the context we just installed as well as
956       --  the unit just compiled.
957
958       Remove_Context (N);
959
960       --  If this is the main unit and we are generating code, we must check
961       --  that all generic units in the context have a body if they need it,
962       --  even if they have not been instantiated. In the absence of .ali files
963       --  for generic units, we must force the load of the body, just to
964       --  produce the proper error if the body is absent. We skip this
965       --  verification if the main unit itself is generic.
966
967       if Get_Cunit_Unit_Number (N) = Main_Unit
968         and then Operating_Mode = Generate_Code
969         and then Expander_Active
970       then
971          --  Check whether the source for the body of the unit must be included
972          --  in a standalone library.
973
974          Check_Body_Needed_For_SAL (Cunit_Entity (Main_Unit));
975
976          --  Indicate that the main unit is now analyzed, to catch possible
977          --  circularities between it and generic bodies. Remove main unit from
978          --  visibility. This might seem superfluous, but the main unit must
979          --  not be visible in the generic body expansions that follow.
980
981          Set_Analyzed (N, True);
982          Set_Is_Immediately_Visible (Cunit_Entity (Main_Unit), False);
983
984          declare
985             Item  : Node_Id;
986             Nam   : Entity_Id;
987             Un    : Unit_Number_Type;
988
989             Save_Style_Check : constant Boolean := Style_Check;
990             Save_C_Restrict  : constant Save_Cunit_Boolean_Restrictions :=
991                                  Cunit_Boolean_Restrictions_Save;
992
993          begin
994             Item := First (Context_Items (N));
995             while Present (Item) loop
996
997                --  Check for explicit with clause
998
999                if Nkind (Item) = N_With_Clause
1000                  and then not Implicit_With (Item)
1001
1002                   --  Ada 2005 (AI-50217): Ignore limited-withed units
1003
1004                  and then not Limited_Present (Item)
1005                then
1006                   Nam := Entity (Name (Item));
1007
1008                   --  Compile generic subprogram, unless it is intrinsic or
1009                   --  imported so no body is required, or generic package body
1010                   --  if the package spec requires a body.
1011
1012                   if (Is_Generic_Subprogram (Nam)
1013                        and then not Is_Intrinsic_Subprogram (Nam)
1014                        and then not Is_Imported (Nam))
1015                     or else (Ekind (Nam) = E_Generic_Package
1016                               and then Unit_Requires_Body (Nam))
1017                   then
1018                      Style_Check := False;
1019
1020                      if Present (Renamed_Object (Nam)) then
1021                         Un :=
1022                            Load_Unit
1023                              (Load_Name  => Get_Body_Name
1024                                               (Get_Unit_Name
1025                                                 (Unit_Declaration_Node
1026                                                   (Renamed_Object (Nam)))),
1027                               Required   => False,
1028                               Subunit    => False,
1029                               Error_Node => N,
1030                               Renamings  => True);
1031                      else
1032                         Un :=
1033                           Load_Unit
1034                             (Load_Name  => Get_Body_Name
1035                                              (Get_Unit_Name (Item)),
1036                              Required   => False,
1037                              Subunit    => False,
1038                              Error_Node => N,
1039                              Renamings  => True);
1040                      end if;
1041
1042                      if Un = No_Unit then
1043                         Error_Msg_NE
1044                           ("body of generic unit& not found", Item, Nam);
1045                         exit;
1046
1047                      elsif not Analyzed (Cunit (Un))
1048                        and then Un /= Main_Unit
1049                        and then not Fatal_Error (Un)
1050                      then
1051                         Style_Check := False;
1052                         Semantics (Cunit (Un));
1053                      end if;
1054                   end if;
1055                end if;
1056
1057                Next (Item);
1058             end loop;
1059
1060             Style_Check := Save_Style_Check;
1061             Cunit_Boolean_Restrictions_Restore (Save_C_Restrict);
1062          end;
1063       end if;
1064
1065       --  Deal with creating elaboration Boolean if needed. We create an
1066       --  elaboration boolean only for units that come from source since
1067       --  units manufactured by the compiler never need elab checks.
1068
1069       if Comes_From_Source (N)
1070         and then Nkind_In (Unit_Node, N_Package_Declaration,
1071                                       N_Generic_Package_Declaration,
1072                                       N_Subprogram_Declaration,
1073                                       N_Generic_Subprogram_Declaration)
1074       then
1075          declare
1076             Loc  : constant Source_Ptr       := Sloc (N);
1077             Unum : constant Unit_Number_Type := Get_Source_Unit (Loc);
1078
1079          begin
1080             Spec_Id := Defining_Entity (Unit_Node);
1081             Generate_Definition (Spec_Id);
1082
1083             --  See if an elaboration entity is required for possible access
1084             --  before elaboration checking. Note that we must allow for this
1085             --  even if -gnatE is not set, since a client may be compiled in
1086             --  -gnatE mode and reference the entity.
1087
1088             --  These entities are also used by the binder to prevent multiple
1089             --  attempts to execute the elaboration code for the library case
1090             --  where the elaboration routine might otherwise be called more
1091             --  than once.
1092
1093             --  Case of units which do not require elaboration checks
1094
1095             if
1096                --  Pure units do not need checks
1097
1098                  Is_Pure (Spec_Id)
1099
1100                --  Preelaborated units do not need checks
1101
1102                  or else Is_Preelaborated (Spec_Id)
1103
1104                --  No checks needed if pragma Elaborate_Body present
1105
1106                  or else Has_Pragma_Elaborate_Body (Spec_Id)
1107
1108                --  No checks needed if unit does not require a body
1109
1110                  or else not Unit_Requires_Body (Spec_Id)
1111
1112                --  No checks needed for predefined files
1113
1114                  or else Is_Predefined_File_Name (Unit_File_Name (Unum))
1115
1116                --  No checks required if no separate spec
1117
1118                  or else Acts_As_Spec (N)
1119             then
1120                --  This is a case where we only need the entity for
1121                --  checking to prevent multiple elaboration checks.
1122
1123                Set_Elaboration_Entity_Required (Spec_Id, False);
1124
1125             --  Case of elaboration entity is required for access before
1126             --  elaboration checking (so certainly we must build it!)
1127
1128             else
1129                Set_Elaboration_Entity_Required (Spec_Id, True);
1130             end if;
1131
1132             Build_Elaboration_Entity (N, Spec_Id);
1133          end;
1134       end if;
1135
1136       --  Freeze the compilation unit entity. This for sure is needed because
1137       --  of some warnings that can be output (see Freeze_Subprogram), but may
1138       --  in general be required. If freezing actions result, place them in the
1139       --  compilation unit actions list, and analyze them.
1140
1141       declare
1142          Loc : constant Source_Ptr := Sloc (N);
1143          L   : constant List_Id :=
1144                  Freeze_Entity (Cunit_Entity (Current_Sem_Unit), Loc);
1145       begin
1146          while Is_Non_Empty_List (L) loop
1147             Insert_Library_Level_Action (Remove_Head (L));
1148          end loop;
1149       end;
1150
1151       Set_Analyzed (N);
1152
1153       if Nkind (Unit_Node) = N_Package_Declaration
1154         and then Get_Cunit_Unit_Number (N) /= Main_Unit
1155         and then Expander_Active
1156       then
1157          declare
1158             Save_Style_Check : constant Boolean := Style_Check;
1159             Save_Warning     : constant Warning_Mode_Type := Warning_Mode;
1160             Options          : Style_Check_Options;
1161
1162          begin
1163             Save_Style_Check_Options (Options);
1164             Reset_Style_Check_Options;
1165             Opt.Warning_Mode := Suppress;
1166             Check_Body_For_Inlining (N, Defining_Entity (Unit_Node));
1167
1168             Reset_Style_Check_Options;
1169             Set_Style_Check_Options (Options);
1170             Style_Check := Save_Style_Check;
1171             Warning_Mode := Save_Warning;
1172          end;
1173       end if;
1174
1175       --  If we are generating obsolescent warnings, then here is where we
1176       --  generate them for the with'ed items. The reason for this special
1177       --  processing is that the normal mechanism of generating the warnings
1178       --  for referenced entities does not work for context clause references.
1179       --  That's because when we first analyze the context, it is too early to
1180       --  know if the with'ing unit is itself obsolescent (which suppresses
1181       --  the warnings).
1182
1183       if not GNAT_Mode and then Warn_On_Obsolescent_Feature then
1184
1185          --  Push current compilation unit as scope, so that the test for
1186          --  being within an obsolescent unit will work correctly.
1187
1188          Push_Scope (Defining_Entity (Unit_Node));
1189
1190          --  Loop through context items to deal with with clauses
1191
1192          declare
1193             Item : Node_Id;
1194             Nam  : Node_Id;
1195             Ent  : Entity_Id;
1196
1197          begin
1198             Item := First (Context_Items (N));
1199             while Present (Item) loop
1200                if Nkind (Item) = N_With_Clause
1201
1202                   --  Suppress this check in limited-withed units. Further work
1203                   --  needed here if we decide to incorporate this check on
1204                   --  limited-withed units.
1205
1206                  and then not Limited_Present (Item)
1207                then
1208                   Nam := Name (Item);
1209                   Ent := Entity (Nam);
1210
1211                   if Is_Obsolescent (Ent) then
1212                      Output_Obsolescent_Entity_Warnings (Nam, Ent);
1213                   end if;
1214                end if;
1215
1216                Next (Item);
1217             end loop;
1218          end;
1219
1220          --  Remove temporary install of current unit as scope
1221
1222          Pop_Scope;
1223       end if;
1224    end Analyze_Compilation_Unit;
1225
1226    ---------------------
1227    -- Analyze_Context --
1228    ---------------------
1229
1230    procedure Analyze_Context (N : Node_Id) is
1231       Ukind : constant Node_Kind := Nkind (Unit (N));
1232       Item  : Node_Id;
1233
1234    begin
1235       --  First process all configuration pragmas at the start of the context
1236       --  items. Strictly these are not part of the context clause, but that
1237       --  is where the parser puts them. In any case for sure we must analyze
1238       --  these before analyzing the actual context items, since they can have
1239       --  an effect on that analysis (e.g. pragma Ada_2005 may allow a unit to
1240       --  be with'ed as a result of changing categorizations in Ada 2005).
1241
1242       Item := First (Context_Items (N));
1243       while Present (Item)
1244         and then Nkind (Item) = N_Pragma
1245         and then Pragma_Name (Item) in Configuration_Pragma_Names
1246       loop
1247          Analyze (Item);
1248          Next (Item);
1249       end loop;
1250
1251       --  This is the point at which we capture the configuration settings
1252       --  for the unit. At the moment only the Optimize_Alignment setting
1253       --  needs to be captured. Probably more later ???
1254
1255       if Optimize_Alignment_Local then
1256          Set_OA_Setting (Current_Sem_Unit, 'L');
1257       else
1258          Set_OA_Setting (Current_Sem_Unit, Optimize_Alignment);
1259       end if;
1260
1261       --  Loop through actual context items. This is done in two passes:
1262
1263       --  a) The first pass analyzes non-limited with-clauses and also any
1264       --     configuration pragmas (we need to get the latter analyzed right
1265       --     away, since they can affect processing of subsequent items.
1266
1267       --  b) The second pass analyzes limited_with clauses (Ada 2005: AI-50217)
1268
1269       while Present (Item) loop
1270
1271          --  For with clause, analyze the with clause, and then update
1272          --  the version, since we are dependent on a unit that we with.
1273
1274          if Nkind (Item) = N_With_Clause
1275            and then not Limited_Present (Item)
1276          then
1277             --  Skip analyzing with clause if no unit, nothing to do (this
1278             --  happens for a with that references a non-existent unit)
1279
1280             if Present (Library_Unit (Item)) then
1281                Analyze (Item);
1282             end if;
1283
1284             if not Implicit_With (Item) then
1285                Version_Update (N, Library_Unit (Item));
1286             end if;
1287
1288          --  Skip pragmas. Configuration pragmas at the start were handled in
1289          --  the loop above, and remaining pragmas are not processed until we
1290          --  actually install the context (see Install_Context). We delay the
1291          --  analysis of these pragmas to make sure that we have installed all
1292          --  the implicit with's on parent units.
1293
1294          --  Skip use clauses at this stage, since we don't want to do any
1295          --  installing of potentially use visible entities until we we
1296          --  actually install the complete context (in Install_Context).
1297          --  Otherwise things can get installed in the wrong context.
1298
1299          else
1300             null;
1301          end if;
1302
1303          Next (Item);
1304       end loop;
1305
1306       --  Second pass: examine all limited_with clauses. All other context
1307       --  items are ignored in this pass.
1308
1309       Item := First (Context_Items (N));
1310       while Present (Item) loop
1311          if Nkind (Item) = N_With_Clause
1312            and then Limited_Present (Item)
1313          then
1314             --  No need to check errors on implicitly generated limited-with
1315             --  clauses.
1316
1317             if not Implicit_With (Item) then
1318
1319                --  Verify that the illegal contexts given in 10.1.2 (18/2)
1320                --  are properly rejected, including renaming declarations.
1321
1322                if not Nkind_In (Ukind, N_Package_Declaration,
1323                                        N_Subprogram_Declaration)
1324                  and then Ukind not in N_Generic_Declaration
1325                  and then Ukind not in N_Generic_Instantiation
1326                then
1327                   Error_Msg_N ("limited with_clause not allowed here", Item);
1328
1329                --  Check wrong use of a limited with clause applied to the
1330                --  compilation unit containing the limited-with clause.
1331
1332                --      limited with P.Q;
1333                --      package P.Q is ...
1334
1335                elsif Unit (Library_Unit (Item)) = Unit (N) then
1336                   Error_Msg_N ("wrong use of limited-with clause", Item);
1337
1338                --  Check wrong use of limited-with clause applied to some
1339                --  immediate ancestor.
1340
1341                elsif Is_Child_Spec (Unit (N)) then
1342                   declare
1343                      Lib_U : constant Entity_Id := Unit (Library_Unit (Item));
1344                      P     : Node_Id;
1345
1346                   begin
1347                      P := Parent_Spec (Unit (N));
1348                      loop
1349                         if Unit (P) = Lib_U then
1350                            Error_Msg_N ("limited with_clause of immediate "
1351                                         & "ancestor not allowed", Item);
1352                            exit;
1353                         end if;
1354
1355                         exit when not Is_Child_Spec (Unit (P));
1356                         P := Parent_Spec (Unit (P));
1357                      end loop;
1358                   end;
1359                end if;
1360
1361                --  Check if the limited-withed unit is already visible through
1362                --  some context clause of the current compilation unit or some
1363                --  ancestor of the current compilation unit.
1364
1365                declare
1366                   Lim_Unit_Name : constant Node_Id := Name (Item);
1367                   Comp_Unit     : Node_Id;
1368                   It            : Node_Id;
1369                   Unit_Name     : Node_Id;
1370
1371                begin
1372                   Comp_Unit := N;
1373                   loop
1374                      It := First (Context_Items (Comp_Unit));
1375                      while Present (It) loop
1376                         if Item /= It
1377                           and then Nkind (It) = N_With_Clause
1378                           and then not Limited_Present (It)
1379                           and then
1380                             Nkind_In (Unit (Library_Unit (It)),
1381                                        N_Package_Declaration,
1382                                        N_Package_Renaming_Declaration)
1383                         then
1384                            if Nkind (Unit (Library_Unit (It))) =
1385                                                       N_Package_Declaration
1386                            then
1387                               Unit_Name := Name (It);
1388                            else
1389                               Unit_Name := Name (Unit (Library_Unit (It)));
1390                            end if;
1391
1392                            --  Check if the named package (or some ancestor)
1393                            --  leaves visible the full-view of the unit given
1394                            --  in the limited-with clause
1395
1396                            loop
1397                               if Designate_Same_Unit (Lim_Unit_Name,
1398                                                       Unit_Name)
1399                               then
1400                                  Error_Msg_Sloc := Sloc (It);
1401                                  Error_Msg_N
1402                                    ("simultaneous visibility of limited "
1403                                     & "and unlimited views not allowed",
1404                                     Item);
1405                                  Error_Msg_NE
1406                                    ("\unlimited view visible through "
1407                                     & "context clause #",
1408                                     Item, It);
1409                                  exit;
1410
1411                               elsif Nkind (Unit_Name) = N_Identifier then
1412                                  exit;
1413                               end if;
1414
1415                               Unit_Name := Prefix (Unit_Name);
1416                            end loop;
1417                         end if;
1418
1419                         Next (It);
1420                      end loop;
1421
1422                      exit when not Is_Child_Spec (Unit (Comp_Unit));
1423
1424                      Comp_Unit := Parent_Spec (Unit (Comp_Unit));
1425                   end loop;
1426                end;
1427             end if;
1428
1429             --  Skip analyzing with clause if no unit, see above
1430
1431             if Present (Library_Unit (Item)) then
1432                Analyze (Item);
1433             end if;
1434
1435             --  A limited_with does not impose an elaboration order, but
1436             --  there is a semantic dependency for recompilation purposes.
1437
1438             if not Implicit_With (Item) then
1439                Version_Update (N, Library_Unit (Item));
1440             end if;
1441
1442             --  Pragmas and use clauses and with clauses other than limited
1443             --  with's are ignored in this pass through the context items.
1444
1445          else
1446             null;
1447          end if;
1448
1449          Next (Item);
1450       end loop;
1451    end Analyze_Context;
1452
1453    -------------------------------
1454    -- Analyze_Package_Body_Stub --
1455    -------------------------------
1456
1457    procedure Analyze_Package_Body_Stub (N : Node_Id) is
1458       Id   : constant Entity_Id := Defining_Identifier (N);
1459       Nam  : Entity_Id;
1460
1461    begin
1462       --  The package declaration must be in the current declarative part
1463
1464       Check_Stub_Level (N);
1465       Nam := Current_Entity_In_Scope (Id);
1466
1467       if No (Nam) or else not Is_Package_Or_Generic_Package (Nam) then
1468          Error_Msg_N ("missing specification for package stub", N);
1469
1470       elsif Has_Completion (Nam)
1471         and then Present (Corresponding_Body (Unit_Declaration_Node (Nam)))
1472       then
1473          Error_Msg_N ("duplicate or redundant stub for package", N);
1474
1475       else
1476          --  Indicate that the body of the package exists. If we are doing
1477          --  only semantic analysis, the stub stands for the body. If we are
1478          --  generating code, the existence of the body will be confirmed
1479          --  when we load the proper body.
1480
1481          Set_Has_Completion (Nam);
1482          Set_Scope (Defining_Entity (N), Current_Scope);
1483          Generate_Reference (Nam, Id, 'b');
1484          Analyze_Proper_Body (N, Nam);
1485       end if;
1486    end Analyze_Package_Body_Stub;
1487
1488    -------------------------
1489    -- Analyze_Proper_Body --
1490    -------------------------
1491
1492    procedure Analyze_Proper_Body (N : Node_Id; Nam : Entity_Id) is
1493       Subunit_Name      : constant Unit_Name_Type := Get_Unit_Name (N);
1494       Unum              : Unit_Number_Type;
1495
1496       procedure Optional_Subunit;
1497       --  This procedure is called when the main unit is a stub, or when we
1498       --  are not generating code. In such a case, we analyze the subunit if
1499       --  present, which is user-friendly and in fact required for ASIS, but
1500       --  we don't complain if the subunit is missing.
1501
1502       ----------------------
1503       -- Optional_Subunit --
1504       ----------------------
1505
1506       procedure Optional_Subunit is
1507          Comp_Unit : Node_Id;
1508
1509       begin
1510          --  Try to load subunit, but ignore any errors that occur during
1511          --  the loading of the subunit, by using the special feature in
1512          --  Errout to ignore all errors. Note that Fatal_Error will still
1513          --  be set, so we will be able to check for this case below.
1514
1515          if not ASIS_Mode then
1516             Ignore_Errors_Enable := Ignore_Errors_Enable + 1;
1517          end if;
1518
1519          Unum :=
1520            Load_Unit
1521              (Load_Name  => Subunit_Name,
1522               Required   => False,
1523               Subunit    => True,
1524               Error_Node => N);
1525
1526          if not ASIS_Mode then
1527             Ignore_Errors_Enable := Ignore_Errors_Enable - 1;
1528          end if;
1529
1530          --  All done if we successfully loaded the subunit
1531
1532          if Unum /= No_Unit
1533            and then (not Fatal_Error (Unum) or else Try_Semantics)
1534          then
1535             Comp_Unit := Cunit (Unum);
1536
1537             --  If the file was empty or seriously mangled, the unit
1538             --  itself may be missing.
1539
1540             if No (Unit (Comp_Unit)) then
1541                Error_Msg_N
1542                  ("subunit does not contain expected proper body", N);
1543
1544             elsif Nkind (Unit (Comp_Unit)) /= N_Subunit then
1545                Error_Msg_N
1546                  ("expected SEPARATE subunit, found child unit",
1547                   Cunit_Entity (Unum));
1548             else
1549                Set_Corresponding_Stub (Unit (Comp_Unit), N);
1550                Analyze_Subunit (Comp_Unit);
1551                Set_Library_Unit (N, Comp_Unit);
1552             end if;
1553
1554          elsif Unum = No_Unit
1555            and then Present (Nam)
1556          then
1557             if Is_Protected_Type (Nam) then
1558                Set_Corresponding_Body (Parent (Nam), Defining_Identifier (N));
1559             else
1560                Set_Corresponding_Body (
1561                  Unit_Declaration_Node (Nam), Defining_Identifier (N));
1562             end if;
1563          end if;
1564       end Optional_Subunit;
1565
1566    --  Start of processing for Analyze_Proper_Body
1567
1568    begin
1569       --  If the subunit is already loaded, it means that the main unit
1570       --  is a subunit, and that the current unit is one of its parents
1571       --  which was being analyzed to provide the needed context for the
1572       --  analysis of the subunit. In this case we analyze the subunit and
1573       --  continue with the parent, without looking a subsequent subunits.
1574
1575       if Is_Loaded (Subunit_Name) then
1576
1577          --  If the proper body is already linked to the stub node,
1578          --  the stub is in a generic unit and just needs analyzing.
1579
1580          if Present (Library_Unit (N)) then
1581             Set_Corresponding_Stub (Unit (Library_Unit (N)), N);
1582             Analyze_Subunit (Library_Unit (N));
1583
1584          --  Otherwise we must load the subunit and link to it
1585
1586          else
1587             --  Load the subunit, this must work, since we originally
1588             --  loaded the subunit earlier on. So this will not really
1589             --  load it, just give access to it.
1590
1591             Unum :=
1592               Load_Unit
1593                 (Load_Name  => Subunit_Name,
1594                  Required   => True,
1595                  Subunit    => False,
1596                  Error_Node => N);
1597
1598             --  And analyze the subunit in the parent context (note that we
1599             --  do not call Semantics, since that would remove the parent
1600             --  context). Because of this, we have to manually reset the
1601             --  compiler state to Analyzing since it got destroyed by Load.
1602
1603             if Unum /= No_Unit then
1604                Compiler_State := Analyzing;
1605
1606                --  Check that the proper body is a subunit and not a child
1607                --  unit. If the unit was previously loaded, the error will
1608                --  have been emitted when copying the generic node, so we
1609                --  just return to avoid cascaded errors.
1610
1611                if Nkind (Unit (Cunit (Unum))) /= N_Subunit then
1612                   return;
1613                end if;
1614
1615                Set_Corresponding_Stub (Unit (Cunit (Unum)), N);
1616                Analyze_Subunit (Cunit (Unum));
1617                Set_Library_Unit (N, Cunit (Unum));
1618             end if;
1619          end if;
1620
1621       --  If the main unit is a subunit, then we are just performing semantic
1622       --  analysis on that subunit, and any other subunits of any parent unit
1623       --  should be ignored, except that if we are building trees for ASIS
1624       --  usage we want to annotate the stub properly.
1625
1626       elsif Nkind (Unit (Cunit (Main_Unit))) = N_Subunit
1627         and then Subunit_Name /= Unit_Name (Main_Unit)
1628       then
1629          if ASIS_Mode then
1630             Optional_Subunit;
1631          end if;
1632
1633          --  But before we return, set the flag for unloaded subunits. This
1634          --  will suppress junk warnings of variables in the same declarative
1635          --  part (or a higher level one) that are in danger of looking unused
1636          --  when in fact there might be a declaration in the subunit that we
1637          --  do not intend to load.
1638
1639          Unloaded_Subunits := True;
1640          return;
1641
1642       --  If the subunit is not already loaded, and we are generating code,
1643       --  then this is the case where compilation started from the parent,
1644       --  and we are generating code for an entire subunit tree. In that
1645       --  case we definitely need to load the subunit.
1646
1647       --  In order to continue the analysis with the rest of the parent,
1648       --  and other subunits, we load the unit without requiring its
1649       --  presence, and emit a warning if not found, rather than terminating
1650       --  the compilation abruptly, as for other missing file problems.
1651
1652       elsif Original_Operating_Mode = Generate_Code then
1653
1654          --  If the proper body is already linked to the stub node,
1655          --  the stub is in a generic unit and just needs analyzing.
1656
1657          --  We update the version. Although we are not technically
1658          --  semantically dependent on the subunit, given our approach
1659          --  of macro substitution of subunits, it makes sense to
1660          --  include it in the version identification.
1661
1662          if Present (Library_Unit (N)) then
1663             Set_Corresponding_Stub (Unit (Library_Unit (N)), N);
1664             Analyze_Subunit (Library_Unit (N));
1665             Version_Update (Cunit (Main_Unit), Library_Unit (N));
1666
1667          --  Otherwise we must load the subunit and link to it
1668
1669          else
1670             Unum :=
1671               Load_Unit
1672                 (Load_Name  => Subunit_Name,
1673                  Required   => False,
1674                  Subunit    => True,
1675                  Error_Node => N);
1676
1677             if Original_Operating_Mode = Generate_Code
1678               and then Unum = No_Unit
1679             then
1680                Error_Msg_Unit_1 := Subunit_Name;
1681                Error_Msg_File_1 :=
1682                  Get_File_Name (Subunit_Name, Subunit => True);
1683                Error_Msg_N
1684                  ("subunit$$ in file{ not found?", N);
1685                Subunits_Missing := True;
1686             end if;
1687
1688             --  Load_Unit may reset Compiler_State, since it may have been
1689             --  necessary to parse an additional units, so we make sure
1690             --  that we reset it to the Analyzing state.
1691
1692             Compiler_State := Analyzing;
1693
1694             if Unum /= No_Unit then
1695                if Debug_Flag_L then
1696                   Write_Str ("*** Loaded subunit from stub. Analyze");
1697                   Write_Eol;
1698                end if;
1699
1700                declare
1701                   Comp_Unit : constant Node_Id := Cunit (Unum);
1702
1703                begin
1704                   --  Check for child unit instead of subunit
1705
1706                   if Nkind (Unit (Comp_Unit)) /= N_Subunit then
1707                      Error_Msg_N
1708                        ("expected SEPARATE subunit, found child unit",
1709                         Cunit_Entity (Unum));
1710
1711                   --  OK, we have a subunit
1712
1713                   else
1714                      --  Set corresponding stub (even if errors)
1715
1716                      Set_Corresponding_Stub (Unit (Comp_Unit), N);
1717
1718                      --  Analyze the unit if semantics active
1719
1720                      if not Fatal_Error (Unum) or else Try_Semantics then
1721                         Analyze_Subunit (Comp_Unit);
1722                      end if;
1723
1724                      --  Set the library unit pointer in any case
1725
1726                      Set_Library_Unit (N, Comp_Unit);
1727
1728                      --  We update the version. Although we are not technically
1729                      --  semantically dependent on the subunit, given our
1730                      --  approach of macro substitution of subunits, it makes
1731                      --  sense to include it in the version identification.
1732
1733                      Version_Update (Cunit (Main_Unit), Comp_Unit);
1734                   end if;
1735                end;
1736             end if;
1737          end if;
1738
1739          --  The remaining case is when the subunit is not already loaded and
1740          --  we are not generating code. In this case we are just performing
1741          --  semantic analysis on the parent, and we are not interested in
1742          --  the subunit. For subprograms, analyze the stub as a body. For
1743          --  other entities the stub has already been marked as completed.
1744
1745       else
1746          Optional_Subunit;
1747       end if;
1748    end Analyze_Proper_Body;
1749
1750    ----------------------------------
1751    -- Analyze_Protected_Body_Stub --
1752    ----------------------------------
1753
1754    procedure Analyze_Protected_Body_Stub (N : Node_Id) is
1755       Nam : Entity_Id := Current_Entity_In_Scope (Defining_Identifier (N));
1756
1757    begin
1758       Check_Stub_Level (N);
1759
1760       --  First occurrence of name may have been as an incomplete type
1761
1762       if Present (Nam) and then Ekind (Nam) = E_Incomplete_Type then
1763          Nam := Full_View (Nam);
1764       end if;
1765
1766       if No (Nam)
1767         or else not Is_Protected_Type (Etype (Nam))
1768       then
1769          Error_Msg_N ("missing specification for Protected body", N);
1770       else
1771          Set_Scope (Defining_Entity (N), Current_Scope);
1772          Set_Has_Completion (Etype (Nam));
1773          Generate_Reference (Nam, Defining_Identifier (N), 'b');
1774          Analyze_Proper_Body (N, Etype (Nam));
1775       end if;
1776    end Analyze_Protected_Body_Stub;
1777
1778    ----------------------------------
1779    -- Analyze_Subprogram_Body_Stub --
1780    ----------------------------------
1781
1782    --  A subprogram body stub can appear with or without a previous
1783    --  specification. If there is one, the analysis of the body will
1784    --  find it and verify conformance.  The formals appearing in the
1785    --  specification of the stub play no role, except for requiring an
1786    --  additional conformance check. If there is no previous subprogram
1787    --  declaration, the stub acts as a spec, and provides the defining
1788    --  entity for the subprogram.
1789
1790    procedure Analyze_Subprogram_Body_Stub (N : Node_Id) is
1791       Decl : Node_Id;
1792
1793    begin
1794       Check_Stub_Level (N);
1795
1796       --  Verify that the identifier for the stub is unique within this
1797       --  declarative part.
1798
1799       if Nkind_In (Parent (N), N_Block_Statement,
1800                                N_Package_Body,
1801                                N_Subprogram_Body)
1802       then
1803          Decl := First (Declarations (Parent (N)));
1804          while Present (Decl)
1805            and then Decl /= N
1806          loop
1807             if Nkind (Decl) = N_Subprogram_Body_Stub
1808               and then (Chars (Defining_Unit_Name (Specification (Decl))) =
1809                         Chars (Defining_Unit_Name (Specification (N))))
1810             then
1811                Error_Msg_N ("identifier for stub is not unique", N);
1812             end if;
1813
1814             Next (Decl);
1815          end loop;
1816       end if;
1817
1818       --  Treat stub as a body, which checks conformance if there is a previous
1819       --  declaration, or else introduces entity and its signature.
1820
1821       Analyze_Subprogram_Body (N);
1822       Analyze_Proper_Body (N, Empty);
1823    end Analyze_Subprogram_Body_Stub;
1824
1825    ---------------------
1826    -- Analyze_Subunit --
1827    ---------------------
1828
1829    --  A subunit is compiled either by itself (for semantic checking)
1830    --  or as part of compiling the parent (for code generation). In
1831    --  either case, by the time we actually process the subunit, the
1832    --  parent has already been installed and analyzed. The node N is
1833    --  a compilation unit, whose context needs to be treated here,
1834    --  because we come directly here from the parent without calling
1835    --  Analyze_Compilation_Unit.
1836
1837    --  The compilation context includes the explicit context of the
1838    --  subunit, and the context of the parent, together with the parent
1839    --  itself. In order to compile the current context, we remove the
1840    --  one inherited from the parent, in order to have a clean visibility
1841    --  table. We restore the parent context before analyzing the proper
1842    --  body itself. On exit, we remove only the explicit context of the
1843    --  subunit.
1844
1845    procedure Analyze_Subunit (N : Node_Id) is
1846       Lib_Unit : constant Node_Id   := Library_Unit (N);
1847       Par_Unit : constant Entity_Id := Current_Scope;
1848
1849       Lib_Spec        : Node_Id := Library_Unit (Lib_Unit);
1850       Num_Scopes      : Int := 0;
1851       Use_Clauses     : array (1 .. Scope_Stack.Last) of Node_Id;
1852       Enclosing_Child : Entity_Id := Empty;
1853       Svg             : constant Suppress_Array := Scope_Suppress;
1854
1855       procedure Analyze_Subunit_Context;
1856       --  Capture names in use clauses of the subunit. This must be done
1857       --  before re-installing parent declarations, because items in the
1858       --  context must not be hidden by declarations local to the parent.
1859
1860       procedure Re_Install_Parents (L : Node_Id; Scop : Entity_Id);
1861       --  Recursive procedure to restore scope of all ancestors of subunit,
1862       --  from outermost in. If parent is not a subunit, the call to install
1863       --  context installs context of spec and (if parent is a child unit)
1864       --  the context of its parents as well. It is confusing that parents
1865       --  should be treated differently in both cases, but the semantics are
1866       --  just not identical.
1867
1868       procedure Re_Install_Use_Clauses;
1869       --  As part of the removal of the parent scope, the use clauses are
1870       --  removed, to be reinstalled when the context of the subunit has
1871       --  been analyzed. Use clauses may also have been affected by the
1872       --  analysis of the context of the subunit, so they have to be applied
1873       --  again, to insure that the compilation environment of the rest of
1874       --  the parent unit is identical.
1875
1876       procedure Remove_Scope;
1877       --  Remove current scope from scope stack, and preserve the list
1878       --  of use clauses in it, to be reinstalled after context is analyzed.
1879
1880       -----------------------------
1881       -- Analyze_Subunit_Context --
1882       -----------------------------
1883
1884       procedure Analyze_Subunit_Context is
1885          Item      :  Node_Id;
1886          Nam       :  Node_Id;
1887          Unit_Name : Entity_Id;
1888
1889       begin
1890          Analyze_Context (N);
1891
1892          --  Make withed units immediately visible. If child unit, make the
1893          --  ultimate parent immediately visible.
1894
1895          Item := First (Context_Items (N));
1896          while Present (Item) loop
1897             if Nkind (Item) = N_With_Clause then
1898
1899                --  Protect frontend against previous errors in context clauses
1900
1901                if Nkind (Name (Item)) /= N_Selected_Component then
1902                   if Error_Posted (Item) then
1903                      null;
1904
1905                   else
1906                      Unit_Name := Entity (Name (Item));
1907                      while Is_Child_Unit (Unit_Name) loop
1908                         Set_Is_Visible_Child_Unit (Unit_Name);
1909                         Unit_Name := Scope (Unit_Name);
1910                      end loop;
1911
1912                      if not Is_Immediately_Visible (Unit_Name) then
1913                         Set_Is_Immediately_Visible (Unit_Name);
1914                         Set_Context_Installed (Item);
1915                      end if;
1916                   end if;
1917                end if;
1918
1919             elsif Nkind (Item) = N_Use_Package_Clause then
1920                Nam := First (Names (Item));
1921                while Present (Nam) loop
1922                   Analyze (Nam);
1923                   Next (Nam);
1924                end loop;
1925
1926             elsif Nkind (Item) = N_Use_Type_Clause then
1927                Nam := First (Subtype_Marks (Item));
1928                while Present (Nam) loop
1929                   Analyze (Nam);
1930                   Next (Nam);
1931                end loop;
1932             end if;
1933
1934             Next (Item);
1935          end loop;
1936
1937          --  Reset visibility of withed units. They will be made visible
1938          --  again when we install the subunit context.
1939
1940          Item := First (Context_Items (N));
1941          while Present (Item) loop
1942             if Nkind (Item) = N_With_Clause
1943
1944                --  Protect frontend against previous errors in context clauses
1945
1946               and then Nkind (Name (Item)) /= N_Selected_Component
1947               and then not Error_Posted (Item)
1948             then
1949                Unit_Name := Entity (Name (Item));
1950                while Is_Child_Unit (Unit_Name) loop
1951                   Set_Is_Visible_Child_Unit (Unit_Name, False);
1952                   Unit_Name := Scope (Unit_Name);
1953                end loop;
1954
1955                if Context_Installed (Item) then
1956                   Set_Is_Immediately_Visible (Unit_Name, False);
1957                   Set_Context_Installed (Item, False);
1958                end if;
1959             end if;
1960
1961             Next (Item);
1962          end loop;
1963       end Analyze_Subunit_Context;
1964
1965       ------------------------
1966       -- Re_Install_Parents --
1967       ------------------------
1968
1969       procedure Re_Install_Parents (L : Node_Id; Scop : Entity_Id) is
1970          E : Entity_Id;
1971
1972       begin
1973          if Nkind (Unit (L)) = N_Subunit then
1974             Re_Install_Parents (Library_Unit (L), Scope (Scop));
1975          end if;
1976
1977          Install_Context (L);
1978
1979          --  If the subunit occurs within a child unit, we must restore the
1980          --  immediate visibility of any siblings that may occur in context.
1981
1982          if Present (Enclosing_Child) then
1983             Install_Siblings (Enclosing_Child, L);
1984          end if;
1985
1986          Push_Scope (Scop);
1987
1988          if Scop /= Par_Unit then
1989             Set_Is_Immediately_Visible (Scop);
1990          end if;
1991
1992          --  Make entities in scope visible again. For child units, restore
1993          --  visibility only if they are actually in context.
1994
1995          E := First_Entity (Current_Scope);
1996          while Present (E) loop
1997             if not Is_Child_Unit (E)
1998               or else Is_Visible_Child_Unit (E)
1999             then
2000                Set_Is_Immediately_Visible (E);
2001             end if;
2002
2003             Next_Entity (E);
2004          end loop;
2005
2006          --  A subunit appears within a body, and for a nested subunits
2007          --  all the parents are bodies. Restore full visibility of their
2008          --  private entities.
2009
2010          if Ekind (Scop) = E_Package
2011            or else Ekind (Scop) = E_Generic_Package
2012          then
2013             Set_In_Package_Body (Scop);
2014             Install_Private_Declarations (Scop);
2015          end if;
2016       end Re_Install_Parents;
2017
2018       ----------------------------
2019       -- Re_Install_Use_Clauses --
2020       ----------------------------
2021
2022       procedure Re_Install_Use_Clauses is
2023          U  : Node_Id;
2024       begin
2025          for J in reverse 1 .. Num_Scopes loop
2026             U := Use_Clauses (J);
2027             Scope_Stack.Table (Scope_Stack.Last - J + 1).First_Use_Clause := U;
2028             Install_Use_Clauses (U, Force_Installation => True);
2029          end loop;
2030       end Re_Install_Use_Clauses;
2031
2032       ------------------
2033       -- Remove_Scope --
2034       ------------------
2035
2036       procedure Remove_Scope is
2037          E : Entity_Id;
2038
2039       begin
2040          Num_Scopes := Num_Scopes + 1;
2041          Use_Clauses (Num_Scopes) :=
2042            Scope_Stack.Table (Scope_Stack.Last).First_Use_Clause;
2043
2044          E := First_Entity (Current_Scope);
2045          while Present (E) loop
2046             Set_Is_Immediately_Visible (E, False);
2047             Next_Entity (E);
2048          end loop;
2049
2050          if Is_Child_Unit (Current_Scope) then
2051             Enclosing_Child := Current_Scope;
2052          end if;
2053
2054          Pop_Scope;
2055       end Remove_Scope;
2056
2057    --  Start of processing for Analyze_Subunit
2058
2059    begin
2060       if not Is_Empty_List (Context_Items (N)) then
2061
2062          --  Save current use clauses
2063
2064          Remove_Scope;
2065          Remove_Context (Lib_Unit);
2066
2067          --  Now remove parents and their context, including enclosing
2068          --  subunits and the outer parent body which is not a subunit.
2069
2070          if Present (Lib_Spec) then
2071             Remove_Context (Lib_Spec);
2072
2073             while Nkind (Unit (Lib_Spec)) = N_Subunit loop
2074                Lib_Spec := Library_Unit (Lib_Spec);
2075                Remove_Scope;
2076                Remove_Context (Lib_Spec);
2077             end loop;
2078
2079             if Nkind (Unit (Lib_Unit)) = N_Subunit then
2080                Remove_Scope;
2081             end if;
2082
2083             if Nkind (Unit (Lib_Spec)) = N_Package_Body then
2084                Remove_Context (Library_Unit (Lib_Spec));
2085             end if;
2086          end if;
2087
2088          Set_Is_Immediately_Visible (Par_Unit, False);
2089
2090          Analyze_Subunit_Context;
2091
2092          Re_Install_Parents (Lib_Unit, Par_Unit);
2093          Set_Is_Immediately_Visible (Par_Unit);
2094
2095          --  If the context includes a child unit of the parent of the
2096          --  subunit, the parent will have been removed from visibility,
2097          --  after compiling that cousin in the context. The visibility
2098          --  of the parent must be restored now. This also applies if the
2099          --  context includes another subunit of the same parent which in
2100          --  turn includes a child unit in its context.
2101
2102          if Ekind (Par_Unit) = E_Package
2103            or else Ekind (Par_Unit) = E_Generic_Package
2104          then
2105             if not Is_Immediately_Visible (Par_Unit)
2106               or else (Present (First_Entity (Par_Unit))
2107                         and then not Is_Immediately_Visible
2108                                       (First_Entity (Par_Unit)))
2109             then
2110                Set_Is_Immediately_Visible   (Par_Unit);
2111                Install_Visible_Declarations (Par_Unit);
2112                Install_Private_Declarations (Par_Unit);
2113             end if;
2114          end if;
2115
2116          Re_Install_Use_Clauses;
2117          Install_Context (N);
2118
2119          --  Restore state of suppress flags for current body
2120
2121          Scope_Suppress := Svg;
2122
2123          --  If the subunit is within a child unit, then siblings of any
2124          --  parent unit that appear in the context clause of the subunit
2125          --  must also be made immediately visible.
2126
2127          if Present (Enclosing_Child) then
2128             Install_Siblings (Enclosing_Child, N);
2129          end if;
2130
2131       end if;
2132
2133       Analyze (Proper_Body (Unit (N)));
2134       Remove_Context (N);
2135
2136       --  The subunit may contain a with_clause on a sibling of some
2137       --  ancestor. Removing the context will remove from visibility those
2138       --  ancestor child units, which must be restored to the visibility
2139       --  they have in the enclosing body.
2140
2141       if Present (Enclosing_Child) then
2142          declare
2143             C : Entity_Id;
2144          begin
2145             C := Current_Scope;
2146             while Present (C)
2147               and then Is_Child_Unit (C)
2148             loop
2149                Set_Is_Immediately_Visible (C);
2150                Set_Is_Visible_Child_Unit (C);
2151                C := Scope (C);
2152             end loop;
2153          end;
2154       end if;
2155    end Analyze_Subunit;
2156
2157    ----------------------------
2158    -- Analyze_Task_Body_Stub --
2159    ----------------------------
2160
2161    procedure Analyze_Task_Body_Stub (N : Node_Id) is
2162       Nam : Entity_Id := Current_Entity_In_Scope (Defining_Identifier (N));
2163       Loc : constant Source_Ptr := Sloc (N);
2164
2165    begin
2166       Check_Stub_Level (N);
2167
2168       --  First occurrence of name may have been as an incomplete type
2169
2170       if Present (Nam) and then Ekind (Nam) = E_Incomplete_Type then
2171          Nam := Full_View (Nam);
2172       end if;
2173
2174       if No (Nam)
2175         or else not Is_Task_Type (Etype (Nam))
2176       then
2177          Error_Msg_N ("missing specification for task body", N);
2178       else
2179          Set_Scope (Defining_Entity (N), Current_Scope);
2180          Generate_Reference (Nam, Defining_Identifier (N), 'b');
2181          Set_Has_Completion (Etype (Nam));
2182          Analyze_Proper_Body (N, Etype (Nam));
2183
2184          --  Set elaboration flag to indicate that entity is callable.
2185          --  This cannot be done in the expansion of the body  itself,
2186          --  because the proper body is not in a declarative part. This
2187          --  is only done if expansion is active, because the context
2188          --  may be generic and the flag not defined yet.
2189
2190          if Expander_Active then
2191             Insert_After (N,
2192               Make_Assignment_Statement (Loc,
2193                 Name =>
2194                   Make_Identifier (Loc,
2195                     New_External_Name (Chars (Etype (Nam)), 'E')),
2196                  Expression => New_Reference_To (Standard_True, Loc)));
2197          end if;
2198
2199       end if;
2200    end Analyze_Task_Body_Stub;
2201
2202    -------------------------
2203    -- Analyze_With_Clause --
2204    -------------------------
2205
2206    --  Analyze the declaration of a unit in a with clause. At end,
2207    --  label the with clause with the defining entity for the unit.
2208
2209    procedure Analyze_With_Clause (N : Node_Id) is
2210
2211       --  Retrieve the original kind of the unit node, before analysis.
2212       --  If it is a subprogram instantiation, its analysis below will
2213       --  rewrite as the declaration of the wrapper package. If the same
2214       --  instantiation appears indirectly elsewhere in the context, it
2215       --  will have been analyzed already.
2216
2217       Unit_Kind : constant Node_Kind :=
2218                     Nkind (Original_Node (Unit (Library_Unit (N))));
2219       Nam       : constant Node_Id := Name (N);
2220       E_Name    : Entity_Id;
2221       Par_Name  : Entity_Id;
2222       Pref      : Node_Id;
2223       U         : Node_Id;
2224
2225       Intunit : Boolean;
2226       --  Set True if the unit currently being compiled is an internal unit
2227
2228       Save_Style_Check : constant Boolean := Opt.Style_Check;
2229       Save_C_Restrict  : constant Save_Cunit_Boolean_Restrictions :=
2230                            Cunit_Boolean_Restrictions_Save;
2231
2232    begin
2233       U := Unit (Library_Unit (N));
2234
2235       --  Several actions are skipped for dummy packages (those supplied for
2236       --  with's where no matching file could be found). Such packages are
2237       --  identified by the Sloc value being set to No_Location.
2238
2239       if Limited_Present (N) then
2240
2241          --  Ada 2005 (AI-50217): Build visibility structures but do not
2242          --  analyze the unit.
2243
2244          if Sloc (U) /= No_Location then
2245             Build_Limited_Views (N);
2246          end if;
2247
2248          return;
2249       end if;
2250
2251       --  We reset ordinary style checking during the analysis of a with'ed
2252       --  unit, but we do NOT reset GNAT special analysis mode (the latter
2253       --  definitely *does* apply to with'ed units).
2254
2255       if not GNAT_Mode then
2256          Style_Check := False;
2257       end if;
2258
2259       --  If the library unit is a predefined unit, and we are in high
2260       --  integrity mode, then temporarily reset Configurable_Run_Time_Mode
2261       --  for the analysis of the with'ed unit. This mode does not prevent
2262       --  explicit with'ing of run-time units.
2263
2264       if Configurable_Run_Time_Mode
2265         and then
2266           Is_Predefined_File_Name
2267             (Unit_File_Name (Get_Source_Unit (Unit (Library_Unit (N)))))
2268       then
2269          Configurable_Run_Time_Mode := False;
2270          Semantics (Library_Unit (N));
2271          Configurable_Run_Time_Mode := True;
2272
2273       else
2274          Semantics (Library_Unit (N));
2275       end if;
2276
2277       Intunit := Is_Internal_File_Name (Unit_File_Name (Current_Sem_Unit));
2278
2279       if Sloc (U) /= No_Location then
2280
2281          --  Check restrictions, except that we skip the check if this is an
2282          --  internal unit unless we are compiling the internal unit as the
2283          --  main unit. We also skip this for dummy packages.
2284
2285          Check_Restriction_No_Dependence (Nam, N);
2286
2287          if not Intunit or else Current_Sem_Unit = Main_Unit then
2288             Check_Restricted_Unit (Unit_Name (Get_Source_Unit (U)), N);
2289          end if;
2290
2291          --  Deal with special case of GNAT.Current_Exceptions which interacts
2292          --  with the optimization of local raise statements into gotos.
2293
2294          if Nkind (Nam) = N_Selected_Component
2295            and then Nkind (Prefix (Nam)) = N_Identifier
2296            and then Chars (Prefix (Nam)) = Name_Gnat
2297            and then (Chars (Selector_Name (Nam)) = Name_Most_Recent_Exception
2298                        or else
2299                      Chars (Selector_Name (Nam)) = Name_Exception_Traces)
2300          then
2301             Check_Restriction (No_Exception_Propagation, N);
2302             Special_Exception_Package_Used := True;
2303          end if;
2304
2305          --  Check for inappropriate with of internal implementation unit if we
2306          --  are currently compiling the main unit and the main unit is itself
2307          --  not an internal unit. We do not issue this message for implicit
2308          --  with's generated by the compiler itself.
2309
2310          if Implementation_Unit_Warnings
2311            and then Current_Sem_Unit = Main_Unit
2312            and then not Intunit
2313            and then not Implicit_With (N)
2314            and then not GNAT_Mode
2315          then
2316             declare
2317                U_Kind : constant Kind_Of_Unit :=
2318                           Get_Kind_Of_Unit (Get_Source_Unit (U));
2319
2320             begin
2321                if U_Kind = Implementation_Unit then
2322                   Error_Msg_F ("& is an internal 'G'N'A'T unit?", Name (N));
2323                   Error_Msg_F
2324                     ("\use of this unit is non-portable " &
2325                      "and version-dependent?",
2326                      Name (N));
2327
2328                elsif U_Kind = Ada_05_Unit
2329                  and then Ada_Version < Ada_05
2330                  and then Warn_On_Ada_2005_Compatibility
2331                then
2332                   Error_Msg_N ("& is an Ada 2005 unit?", Name (N));
2333                end if;
2334             end;
2335          end if;
2336       end if;
2337
2338       --  Semantic analysis of a generic unit is performed on a copy of
2339       --  the original tree. Retrieve the entity on  which semantic info
2340       --  actually appears.
2341
2342       if Unit_Kind in N_Generic_Declaration then
2343          E_Name := Defining_Entity (U);
2344
2345       --  Note: in the following test, Unit_Kind is the original Nkind, but in
2346       --  the case of an instantiation, semantic analysis above will have
2347       --  replaced the unit by its instantiated version. If the instance body
2348       --  has been generated, the instance now denotes the body entity. For
2349       --  visibility purposes we need the entity of its spec.
2350
2351       elsif (Unit_Kind = N_Package_Instantiation
2352               or else Nkind (Original_Node (Unit (Library_Unit (N)))) =
2353                                                   N_Package_Instantiation)
2354         and then Nkind (U) = N_Package_Body
2355       then
2356          E_Name := Corresponding_Spec (U);
2357
2358       elsif Unit_Kind = N_Package_Instantiation
2359         and then Nkind (U) = N_Package_Instantiation
2360       then
2361          --  If the instance has not been rewritten as a package declaration,
2362          --  then it appeared already in a previous with clause. Retrieve
2363          --  the entity from the previous instance.
2364
2365          E_Name := Defining_Entity (Specification (Instance_Spec (U)));
2366
2367       elsif Unit_Kind in N_Subprogram_Instantiation then
2368
2369          --  Instantiation node is replaced with a wrapper package. Retrieve
2370          --  the visible subprogram created by the instance from corresponding
2371          --  attribute of the wrapper.
2372
2373          E_Name := Related_Instance (Defining_Entity (U));
2374
2375       elsif Unit_Kind = N_Package_Renaming_Declaration
2376         or else Unit_Kind in N_Generic_Renaming_Declaration
2377       then
2378          E_Name := Defining_Entity (U);
2379
2380       elsif Unit_Kind = N_Subprogram_Body
2381         and then Nkind (Name (N)) = N_Selected_Component
2382         and then not Acts_As_Spec (Library_Unit (N))
2383       then
2384          --  For a child unit that has no spec, one has been created and
2385          --  analyzed. The entity required is that of the spec.
2386
2387          E_Name := Corresponding_Spec (U);
2388
2389       else
2390          E_Name := Defining_Entity (U);
2391       end if;
2392
2393       if Nkind (Name (N)) = N_Selected_Component then
2394
2395          --  Child unit in a with clause
2396
2397          Change_Selected_Component_To_Expanded_Name (Name (N));
2398       end if;
2399
2400       --  Restore style checks and restrictions
2401
2402       Style_Check := Save_Style_Check;
2403       Cunit_Boolean_Restrictions_Restore (Save_C_Restrict);
2404
2405       --  Record the reference, but do NOT set the unit as referenced, we want
2406       --  to consider the unit as unreferenced if this is the only reference
2407       --  that occurs.
2408
2409       Set_Entity_With_Style_Check (Name (N), E_Name);
2410       Generate_Reference (E_Name, Name (N), 'w', Set_Ref => False);
2411
2412       if Is_Child_Unit (E_Name) then
2413          Pref     := Prefix (Name (N));
2414          Par_Name := Scope (E_Name);
2415          while Nkind (Pref) = N_Selected_Component loop
2416             Change_Selected_Component_To_Expanded_Name (Pref);
2417             Set_Entity_With_Style_Check (Pref, Par_Name);
2418
2419             Generate_Reference (Par_Name, Pref);
2420             Pref := Prefix (Pref);
2421
2422             --  If E_Name is the dummy entity for a nonexistent unit, its scope
2423             --  is set to Standard_Standard, and no attempt should be made to
2424             --  further unwind scopes.
2425
2426             if Par_Name /= Standard_Standard then
2427                Par_Name := Scope (Par_Name);
2428             end if;
2429          end loop;
2430
2431          if Present (Entity (Pref))
2432            and then not Analyzed (Parent (Parent (Entity (Pref))))
2433          then
2434             --  If the entity is set without its unit being compiled, the
2435             --  original parent is a renaming, and Par_Name is the renamed
2436             --  entity. For visibility purposes, we need the original entity,
2437             --  which must be analyzed now because Load_Unit directly retrieves
2438             --  the renamed unit, and the renaming declaration itself has not
2439             --  been analyzed.
2440
2441             Analyze (Parent (Parent (Entity (Pref))));
2442             pragma Assert (Renamed_Object (Entity (Pref)) = Par_Name);
2443             Par_Name := Entity (Pref);
2444          end if;
2445
2446          Set_Entity_With_Style_Check (Pref, Par_Name);
2447          Generate_Reference (Par_Name, Pref);
2448       end if;
2449
2450       --  If the withed unit is System, and a system extension pragma is
2451       --  present, compile the extension now, rather than waiting for a
2452       --  visibility check on a specific entity.
2453
2454       if Chars (E_Name) = Name_System
2455         and then Scope (E_Name) = Standard_Standard
2456         and then Present (System_Extend_Unit)
2457         and then Present_System_Aux (N)
2458       then
2459          --  If the extension is not present, an error will have been emitted
2460
2461          null;
2462       end if;
2463
2464       --  Ada 2005 (AI-262): Remove from visibility the entity corresponding
2465       --  to private_with units; they will be made visible later (just before
2466       --  the private part is analyzed)
2467
2468       if Private_Present (N) then
2469          Set_Is_Immediately_Visible (E_Name, False);
2470       end if;
2471    end Analyze_With_Clause;
2472
2473    ------------------------------
2474    -- Check_Private_Child_Unit --
2475    ------------------------------
2476
2477    procedure Check_Private_Child_Unit (N : Node_Id) is
2478       Lib_Unit   : constant Node_Id := Unit (N);
2479       Item       : Node_Id;
2480       Curr_Unit  : Entity_Id;
2481       Sub_Parent : Node_Id;
2482       Priv_Child : Entity_Id;
2483       Par_Lib    : Entity_Id;
2484       Par_Spec   : Node_Id;
2485
2486       function Is_Private_Library_Unit (Unit : Entity_Id) return Boolean;
2487       --  Returns true if and only if the library unit is declared with
2488       --  an explicit designation of private.
2489
2490       function Is_Private_Library_Unit (Unit : Entity_Id) return Boolean is
2491          Comp_Unit : constant Node_Id := Parent (Unit_Declaration_Node (Unit));
2492
2493       begin
2494          return Private_Present (Comp_Unit);
2495       end Is_Private_Library_Unit;
2496
2497    --  Start of processing for Check_Private_Child_Unit
2498
2499    begin
2500       if Nkind_In (Lib_Unit, N_Package_Body, N_Subprogram_Body) then
2501          Curr_Unit := Defining_Entity (Unit (Library_Unit (N)));
2502          Par_Lib   := Curr_Unit;
2503
2504       elsif Nkind (Lib_Unit) = N_Subunit then
2505
2506          --  The parent is itself a body. The parent entity is to be found in
2507          --  the corresponding spec.
2508
2509          Sub_Parent := Library_Unit (N);
2510          Curr_Unit  := Defining_Entity (Unit (Library_Unit (Sub_Parent)));
2511
2512          --  If the parent itself is a subunit, Curr_Unit is the entity
2513          --  of the enclosing body, retrieve the spec entity which is
2514          --  the proper ancestor we need for the following tests.
2515
2516          if Ekind (Curr_Unit) = E_Package_Body then
2517             Curr_Unit := Spec_Entity (Curr_Unit);
2518          end if;
2519
2520          Par_Lib    := Curr_Unit;
2521
2522       else
2523          Curr_Unit := Defining_Entity (Lib_Unit);
2524
2525          Par_Lib := Curr_Unit;
2526          Par_Spec  := Parent_Spec (Lib_Unit);
2527
2528          if No (Par_Spec) then
2529             Par_Lib := Empty;
2530          else
2531             Par_Lib := Defining_Entity (Unit (Par_Spec));
2532          end if;
2533       end if;
2534
2535       --  Loop through context items
2536
2537       Item := First (Context_Items (N));
2538       while Present (Item) loop
2539
2540          --  Ada 2005 (AI-262): Allow private_with of a private child package
2541          --  in public siblings
2542
2543          if Nkind (Item) = N_With_Clause
2544             and then not Implicit_With (Item)
2545             and then not Limited_Present (Item)
2546             and then Is_Private_Descendant (Entity (Name (Item)))
2547          then
2548             Priv_Child := Entity (Name (Item));
2549
2550             declare
2551                Curr_Parent  : Entity_Id := Par_Lib;
2552                Child_Parent : Entity_Id := Scope (Priv_Child);
2553                Prv_Ancestor : Entity_Id := Child_Parent;
2554                Curr_Private : Boolean   := Is_Private_Library_Unit (Curr_Unit);
2555
2556             begin
2557                --  If the child unit is a public child then locate the nearest
2558                --  private ancestor. Child_Parent will then be set to the
2559                --  parent of that ancestor.
2560
2561                if not Is_Private_Library_Unit (Priv_Child) then
2562                   while Present (Prv_Ancestor)
2563                     and then not Is_Private_Library_Unit (Prv_Ancestor)
2564                   loop
2565                      Prv_Ancestor := Scope (Prv_Ancestor);
2566                   end loop;
2567
2568                   if Present (Prv_Ancestor) then
2569                      Child_Parent := Scope (Prv_Ancestor);
2570                   end if;
2571                end if;
2572
2573                while Present (Curr_Parent)
2574                  and then Curr_Parent /= Standard_Standard
2575                  and then Curr_Parent /= Child_Parent
2576                loop
2577                   Curr_Private :=
2578                     Curr_Private or else Is_Private_Library_Unit (Curr_Parent);
2579                   Curr_Parent := Scope (Curr_Parent);
2580                end loop;
2581
2582                if No (Curr_Parent) then
2583                   Curr_Parent := Standard_Standard;
2584                end if;
2585
2586                if Curr_Parent /= Child_Parent then
2587                   if Ekind (Priv_Child) = E_Generic_Package
2588                     and then Chars (Priv_Child) in Text_IO_Package_Name
2589                     and then Chars (Scope (Scope (Priv_Child))) = Name_Ada
2590                   then
2591                      Error_Msg_NE
2592                        ("& is a nested package, not a compilation unit",
2593                        Name (Item), Priv_Child);
2594
2595                   else
2596                      Error_Msg_N
2597                        ("unit in with clause is private child unit!", Item);
2598                      Error_Msg_NE
2599                        ("\current unit must also have parent&!",
2600                         Item, Child_Parent);
2601                   end if;
2602
2603                elsif Curr_Private
2604                  or else Private_Present (Item)
2605                  or else Nkind_In (Lib_Unit, N_Package_Body, N_Subunit)
2606                  or else (Nkind (Lib_Unit) = N_Subprogram_Body
2607                             and then not Acts_As_Spec (Parent (Lib_Unit)))
2608                then
2609                   null;
2610
2611                else
2612                   Error_Msg_NE
2613                     ("current unit must also be private descendant of&",
2614                      Item, Child_Parent);
2615                end if;
2616             end;
2617          end if;
2618
2619          Next (Item);
2620       end loop;
2621
2622    end Check_Private_Child_Unit;
2623
2624    ----------------------
2625    -- Check_Stub_Level --
2626    ----------------------
2627
2628    procedure Check_Stub_Level (N : Node_Id) is
2629       Par  : constant Node_Id   := Parent (N);
2630       Kind : constant Node_Kind := Nkind (Par);
2631
2632    begin
2633       if Nkind_In (Kind, N_Package_Body,
2634                          N_Subprogram_Body,
2635                          N_Task_Body,
2636                          N_Protected_Body)
2637         and then Nkind_In (Parent (Par), N_Compilation_Unit, N_Subunit)
2638       then
2639          null;
2640
2641       --  In an instance, a missing stub appears at any level. A warning
2642       --  message will have been emitted already for the missing file.
2643
2644       elsif not In_Instance then
2645          Error_Msg_N ("stub cannot appear in an inner scope", N);
2646
2647       elsif Expander_Active then
2648          Error_Msg_N ("missing proper body", N);
2649       end if;
2650    end Check_Stub_Level;
2651
2652    ------------------------
2653    -- Expand_With_Clause --
2654    ------------------------
2655
2656    procedure Expand_With_Clause (Item : Node_Id; Nam : Node_Id; N : Node_Id) is
2657       Loc   : constant Source_Ptr := Sloc (Nam);
2658       Ent   : constant Entity_Id := Entity (Nam);
2659       Withn : Node_Id;
2660       P     : Node_Id;
2661
2662       function Build_Unit_Name (Nam : Node_Id) return Node_Id;
2663       --  Comment required here ???
2664
2665       ---------------------
2666       -- Build_Unit_Name --
2667       ---------------------
2668
2669       function Build_Unit_Name (Nam : Node_Id) return Node_Id is
2670          Renaming : Entity_Id;
2671          Result   : Node_Id;
2672
2673       begin
2674          if Nkind (Nam) = N_Identifier then
2675
2676             --  If the parent unit P in the name of the with_clause for P.Q
2677             --  is a renaming of package R, then the entity of the parent is
2678             --  set to R, but the identifier retains Chars (P) to be consistent
2679             --  with the source (see details in lib-load). However, the
2680             --  implicit_with_clause for the parent must make the entity for
2681             --  P visible, because P.Q may be used as a prefix within the
2682             --  current unit. The entity for P is the current_entity with that
2683             --  name, because the package renaming declaration for it has just
2684             --  been analyzed. Note that this case can only happen if P.Q has
2685             --  already appeared in a previous with_clause in a related unit,
2686             --  such as the library body of the current unit.
2687
2688             if Chars (Nam) /= Chars (Entity (Nam)) then
2689                Renaming := Current_Entity (Nam);
2690                pragma Assert (Renamed_Entity (Renaming) = Entity (Nam));
2691                return New_Occurrence_Of (Renaming, Loc);
2692
2693             else
2694                return New_Occurrence_Of (Entity (Nam), Loc);
2695             end if;
2696
2697          else
2698             Result :=
2699               Make_Expanded_Name (Loc,
2700                 Chars  => Chars (Entity (Nam)),
2701                 Prefix => Build_Unit_Name (Prefix (Nam)),
2702                 Selector_Name => New_Occurrence_Of (Entity (Nam), Loc));
2703             Set_Entity (Result, Entity (Nam));
2704             return Result;
2705          end if;
2706       end Build_Unit_Name;
2707
2708    --  Start of processing for Expand_With_Clause
2709
2710    begin
2711       New_Nodes_OK := New_Nodes_OK + 1;
2712       Withn :=
2713         Make_With_Clause (Loc,
2714           Name => Build_Unit_Name (Nam));
2715
2716       P := Parent (Unit_Declaration_Node (Ent));
2717       Set_Library_Unit       (Withn, P);
2718       Set_Corresponding_Spec (Withn, Ent);
2719       Set_First_Name         (Withn, True);
2720       Set_Implicit_With      (Withn, True);
2721
2722       --  If the unit is a package declaration, a private_with_clause on a
2723       --  child unit implies that the implicit with on the parent is also
2724       --  private.
2725
2726       if Nkind (Unit (N)) = N_Package_Declaration then
2727          Set_Private_Present (Withn, Private_Present (Item));
2728       end if;
2729
2730       Prepend (Withn, Context_Items (N));
2731       Mark_Rewrite_Insertion (Withn);
2732       Install_Withed_Unit (Withn);
2733
2734       if Nkind (Nam) = N_Expanded_Name then
2735          Expand_With_Clause (Item, Prefix (Nam), N);
2736       end if;
2737
2738       New_Nodes_OK := New_Nodes_OK - 1;
2739    end Expand_With_Clause;
2740
2741    -----------------------
2742    -- Get_Parent_Entity --
2743    -----------------------
2744
2745    function Get_Parent_Entity (Unit : Node_Id) return Entity_Id is
2746    begin
2747       if Nkind (Unit) = N_Package_Body
2748         and then Nkind (Original_Node (Unit)) = N_Package_Instantiation
2749       then
2750          return Defining_Entity
2751                  (Specification (Instance_Spec (Original_Node (Unit))));
2752       elsif Nkind (Unit) = N_Package_Instantiation then
2753          return Defining_Entity (Specification (Instance_Spec (Unit)));
2754       else
2755          return Defining_Entity (Unit);
2756       end if;
2757    end Get_Parent_Entity;
2758
2759    -----------------------------
2760    -- Implicit_With_On_Parent --
2761    -----------------------------
2762
2763    procedure Implicit_With_On_Parent
2764      (Child_Unit : Node_Id;
2765       N          : Node_Id)
2766    is
2767       Loc    : constant Source_Ptr := Sloc (N);
2768       P      : constant Node_Id    := Parent_Spec (Child_Unit);
2769       P_Unit : Node_Id             := Unit (P);
2770       P_Name : constant Entity_Id  := Get_Parent_Entity (P_Unit);
2771       Withn  : Node_Id;
2772
2773       function Build_Ancestor_Name (P : Node_Id) return Node_Id;
2774       --  Build prefix of child unit name. Recurse if needed
2775
2776       function Build_Unit_Name return Node_Id;
2777       --  If the unit is a child unit, build qualified name with all ancestors
2778
2779       -------------------------
2780       -- Build_Ancestor_Name --
2781       -------------------------
2782
2783       function Build_Ancestor_Name (P : Node_Id) return Node_Id is
2784          P_Ref  : constant Node_Id :=
2785                    New_Reference_To (Defining_Entity (P), Loc);
2786          P_Spec : Node_Id := P;
2787
2788       begin
2789          --  Ancestor may have been rewritten as a package body. Retrieve
2790          --  the original spec to trace earlier ancestors.
2791
2792          if Nkind (P) = N_Package_Body
2793            and then Nkind (Original_Node (P)) = N_Package_Instantiation
2794          then
2795             P_Spec := Original_Node (P);
2796          end if;
2797
2798          if No (Parent_Spec (P_Spec)) then
2799             return P_Ref;
2800          else
2801             return
2802               Make_Selected_Component (Loc,
2803                 Prefix => Build_Ancestor_Name (Unit (Parent_Spec (P_Spec))),
2804                 Selector_Name => P_Ref);
2805          end if;
2806       end Build_Ancestor_Name;
2807
2808       ---------------------
2809       -- Build_Unit_Name --
2810       ---------------------
2811
2812       function Build_Unit_Name return Node_Id is
2813          Result : Node_Id;
2814       begin
2815          if No (Parent_Spec (P_Unit)) then
2816             return New_Reference_To (P_Name, Loc);
2817          else
2818             Result :=
2819               Make_Expanded_Name (Loc,
2820                 Chars  => Chars (P_Name),
2821                 Prefix => Build_Ancestor_Name (Unit (Parent_Spec (P_Unit))),
2822                 Selector_Name => New_Reference_To (P_Name, Loc));
2823             Set_Entity (Result, P_Name);
2824             return Result;
2825          end if;
2826       end Build_Unit_Name;
2827
2828    --  Start of processing for Implicit_With_On_Parent
2829
2830    begin
2831       --  The unit of the current compilation may be a package body that
2832       --  replaces an instance node. In this case we need the original instance
2833       --  node to construct the proper parent name.
2834
2835       if Nkind (P_Unit) = N_Package_Body
2836         and then Nkind (Original_Node (P_Unit)) = N_Package_Instantiation
2837       then
2838          P_Unit := Original_Node (P_Unit);
2839       end if;
2840
2841       --  We add the implicit with if the child unit is the current unit being
2842       --  compiled. If the current unit is a body, we do not want to add an
2843       --  implicit_with a second time to the corresponding spec.
2844
2845       if Nkind (Child_Unit) = N_Package_Declaration
2846         and then Child_Unit /= Unit (Cunit (Current_Sem_Unit))
2847       then
2848          return;
2849       end if;
2850
2851       New_Nodes_OK := New_Nodes_OK + 1;
2852       Withn := Make_With_Clause (Loc, Name => Build_Unit_Name);
2853
2854       Set_Library_Unit          (Withn, P);
2855       Set_Corresponding_Spec    (Withn, P_Name);
2856       Set_First_Name            (Withn, True);
2857       Set_Implicit_With         (Withn, True);
2858
2859       --  Node is placed at the beginning of the context items, so that
2860       --  subsequent use clauses on the parent can be validated.
2861
2862       Prepend (Withn, Context_Items (N));
2863       Mark_Rewrite_Insertion (Withn);
2864       Install_Withed_Unit (Withn);
2865
2866       if Is_Child_Spec (P_Unit) then
2867          Implicit_With_On_Parent (P_Unit, N);
2868       end if;
2869
2870       New_Nodes_OK := New_Nodes_OK - 1;
2871    end Implicit_With_On_Parent;
2872
2873    --------------
2874    -- In_Chain --
2875    --------------
2876
2877    function In_Chain (E : Entity_Id) return Boolean is
2878       H : Entity_Id;
2879
2880    begin
2881       H := Current_Entity (E);
2882       while Present (H) loop
2883          if H = E then
2884             return True;
2885          else
2886             H := Homonym (H);
2887          end if;
2888       end loop;
2889
2890       return False;
2891    end In_Chain;
2892
2893    ---------------------
2894    -- Install_Context --
2895    ---------------------
2896
2897    procedure Install_Context (N : Node_Id) is
2898       Lib_Unit : constant Node_Id := Unit (N);
2899
2900    begin
2901       Install_Context_Clauses (N);
2902
2903       if Is_Child_Spec (Lib_Unit) then
2904          Install_Parents (Lib_Unit, Private_Present (Parent (Lib_Unit)));
2905       end if;
2906
2907       Install_Limited_Context_Clauses (N);
2908    end Install_Context;
2909
2910    -----------------------------
2911    -- Install_Context_Clauses --
2912    -----------------------------
2913
2914    procedure Install_Context_Clauses (N : Node_Id) is
2915       Lib_Unit      : constant Node_Id := Unit (N);
2916       Item          : Node_Id;
2917       Uname_Node    : Entity_Id;
2918       Check_Private : Boolean := False;
2919       Decl_Node     : Node_Id;
2920       Lib_Parent    : Entity_Id;
2921
2922    begin
2923       --  First skip configuration pragmas at the start of the context. They
2924       --  are not technically part of the context clause, but that's where the
2925       --  parser puts them. Note they were analyzed in Analyze_Context.
2926
2927       Item := First (Context_Items (N));
2928       while Present (Item)
2929         and then Nkind (Item) = N_Pragma
2930         and then Pragma_Name (Item) in Configuration_Pragma_Names
2931       loop
2932          Next (Item);
2933       end loop;
2934
2935       --  Loop through the actual context clause items. We process everything
2936       --  except Limited_With clauses in this routine. Limited_With clauses
2937       --  are separately installed (see Install_Limited_Context_Clauses).
2938
2939       while Present (Item) loop
2940
2941          --  Case of explicit WITH clause
2942
2943          if Nkind (Item) = N_With_Clause
2944            and then not Implicit_With (Item)
2945          then
2946             if Limited_Present (Item) then
2947
2948                --  Limited withed units will be installed later
2949
2950                goto Continue;
2951
2952             --  If Name (Item) is not an entity name, something is wrong, and
2953             --  this will be detected in due course, for now ignore the item
2954
2955             elsif not Is_Entity_Name (Name (Item)) then
2956                goto Continue;
2957
2958             elsif No (Entity (Name (Item))) then
2959                Set_Entity (Name (Item), Any_Id);
2960                goto Continue;
2961             end if;
2962
2963             Uname_Node := Entity (Name (Item));
2964
2965             if Is_Private_Descendant (Uname_Node) then
2966                Check_Private := True;
2967             end if;
2968
2969             Install_Withed_Unit (Item);
2970
2971             Decl_Node := Unit_Declaration_Node (Uname_Node);
2972
2973             --  If the unit is a subprogram instance, it appears nested within
2974             --  a package that carries the parent information.
2975
2976             if Is_Generic_Instance (Uname_Node)
2977               and then Ekind (Uname_Node) /= E_Package
2978             then
2979                Decl_Node := Parent (Parent (Decl_Node));
2980             end if;
2981
2982             if Is_Child_Spec (Decl_Node) then
2983                if Nkind (Name (Item)) = N_Expanded_Name then
2984                   Expand_With_Clause (Item, Prefix (Name (Item)), N);
2985                else
2986                   --  If not an expanded name, the child unit must be a
2987                   --  renaming, nothing to do.
2988
2989                   null;
2990                end if;
2991
2992             elsif Nkind (Decl_Node) = N_Subprogram_Body
2993               and then not Acts_As_Spec (Parent (Decl_Node))
2994               and then Is_Child_Spec (Unit (Library_Unit (Parent (Decl_Node))))
2995             then
2996                Implicit_With_On_Parent
2997                  (Unit (Library_Unit (Parent (Decl_Node))), N);
2998             end if;
2999
3000             --  Check license conditions unless this is a dummy unit
3001
3002             if Sloc (Library_Unit (Item)) /= No_Location then
3003                License_Check : declare
3004
3005                   Withu : constant Unit_Number_Type :=
3006                             Get_Source_Unit (Library_Unit (Item));
3007
3008                   Withl : constant License_Type :=
3009                             License (Source_Index (Withu));
3010
3011                   Unitl : constant License_Type :=
3012                            License (Source_Index (Current_Sem_Unit));
3013
3014                   procedure License_Error;
3015                   --  Signal error of bad license
3016
3017                   -------------------
3018                   -- License_Error --
3019                   -------------------
3020
3021                   procedure License_Error is
3022                   begin
3023                      Error_Msg_N
3024                        ("?license of with'ed unit & may be inconsistent",
3025                         Name (Item));
3026                   end License_Error;
3027
3028                --  Start of processing for License_Check
3029
3030                begin
3031                   --  Exclude license check if withed unit is an internal unit.
3032                   --  This situation arises e.g. with the GPL version of GNAT.
3033
3034                   if Is_Internal_File_Name (Unit_File_Name (Withu)) then
3035                      null;
3036
3037                      --  Otherwise check various cases
3038                   else
3039                      case Unitl is
3040                         when Unknown =>
3041                            null;
3042
3043                         when Restricted =>
3044                            if Withl = GPL then
3045                               License_Error;
3046                            end if;
3047
3048                         when GPL =>
3049                            if Withl = Restricted then
3050                               License_Error;
3051                            end if;
3052
3053                         when Modified_GPL =>
3054                            if Withl = Restricted or else Withl = GPL then
3055                               License_Error;
3056                            end if;
3057
3058                         when Unrestricted =>
3059                            null;
3060                      end case;
3061                   end if;
3062                end License_Check;
3063             end if;
3064
3065          --  Case of USE PACKAGE clause
3066
3067          elsif Nkind (Item) = N_Use_Package_Clause then
3068             Analyze_Use_Package (Item);
3069
3070          --  Case of USE TYPE clause
3071
3072          elsif Nkind (Item) = N_Use_Type_Clause then
3073             Analyze_Use_Type (Item);
3074
3075          --  case of PRAGMA
3076
3077          elsif Nkind (Item) = N_Pragma then
3078             Analyze (Item);
3079          end if;
3080
3081       <<Continue>>
3082          Next (Item);
3083       end loop;
3084
3085       if Is_Child_Spec (Lib_Unit) then
3086
3087          --  The unit also has implicit withs on its own parents
3088
3089          if No (Context_Items (N)) then
3090             Set_Context_Items (N, New_List);
3091          end if;
3092
3093          Implicit_With_On_Parent (Lib_Unit, N);
3094       end if;
3095
3096       --  If the unit is a body, the context of the specification must also
3097       --  be installed.
3098
3099       if Nkind (Lib_Unit) = N_Package_Body
3100         or else (Nkind (Lib_Unit) = N_Subprogram_Body
3101                    and then not Acts_As_Spec (N))
3102       then
3103          Install_Context (Library_Unit (N));
3104
3105          if Is_Child_Spec (Unit (Library_Unit (N))) then
3106
3107             --  If the unit is the body of a public child unit, the private
3108             --  declarations of the parent must be made visible. If the child
3109             --  unit is private, the private declarations have been installed
3110             --  already in the call to Install_Parents for the spec. Installing
3111             --  private declarations must be done for all ancestors of public
3112             --  child units. In addition, sibling units mentioned in the
3113             --  context clause of the body are directly visible.
3114
3115             declare
3116                Lib_Spec : Node_Id;
3117                P        : Node_Id;
3118                P_Name   : Entity_Id;
3119
3120             begin
3121                Lib_Spec := Unit (Library_Unit (N));
3122                while Is_Child_Spec (Lib_Spec) loop
3123                   P      := Unit (Parent_Spec (Lib_Spec));
3124                   P_Name := Defining_Entity (P);
3125
3126                   if not (Private_Present (Parent (Lib_Spec)))
3127                     and then not In_Private_Part (P_Name)
3128                   then
3129                      Install_Private_Declarations (P_Name);
3130                      Install_Private_With_Clauses (P_Name);
3131                      Set_Use (Private_Declarations (Specification (P)));
3132                   end if;
3133
3134                   Lib_Spec := P;
3135                end loop;
3136             end;
3137          end if;
3138
3139          --  For a package body, children in context are immediately visible
3140
3141          Install_Siblings (Defining_Entity (Unit (Library_Unit (N))), N);
3142       end if;
3143
3144       if Nkind_In (Lib_Unit, N_Generic_Package_Declaration,
3145                              N_Generic_Subprogram_Declaration,
3146                              N_Package_Declaration,
3147                              N_Subprogram_Declaration)
3148       then
3149          if Is_Child_Spec (Lib_Unit) then
3150             Lib_Parent := Defining_Entity (Unit (Parent_Spec (Lib_Unit)));
3151             Set_Is_Private_Descendant
3152               (Defining_Entity (Lib_Unit),
3153                Is_Private_Descendant (Lib_Parent)
3154                  or else Private_Present (Parent (Lib_Unit)));
3155
3156          else
3157             Set_Is_Private_Descendant
3158               (Defining_Entity (Lib_Unit),
3159                Private_Present (Parent (Lib_Unit)));
3160          end if;
3161       end if;
3162
3163       if Check_Private then
3164          Check_Private_Child_Unit (N);
3165       end if;
3166    end Install_Context_Clauses;
3167
3168    -------------------------------------
3169    -- Install_Limited_Context_Clauses --
3170    -------------------------------------
3171
3172    procedure Install_Limited_Context_Clauses (N : Node_Id) is
3173       Item : Node_Id;
3174
3175       procedure Check_Renamings (P : Node_Id; W : Node_Id);
3176       --  Check that the unlimited view of a given compilation_unit is not
3177       --  already visible through "use + renamings".
3178
3179       procedure Check_Private_Limited_Withed_Unit (Item : Node_Id);
3180       --  Check that if a limited_with clause of a given compilation_unit
3181       --  mentions a descendant of a private child of some library unit,
3182       --  then the given compilation_unit shall be the declaration of a
3183       --  private descendant of that library unit, or a public descendant
3184       --  of such. The code is analogous to that of Check_Private_Child_Unit
3185       --  but we cannot use entities on the limited with_clauses because
3186       --  their units have not been analyzed, so we have to climb the tree
3187       --  of ancestors looking for private keywords.
3188
3189       procedure Expand_Limited_With_Clause
3190         (Comp_Unit : Node_Id;
3191          Nam       : Node_Id;
3192          N         : Node_Id);
3193       --  If a child unit appears in a limited_with clause, there are implicit
3194       --  limited_with clauses on all parents that are not already visible
3195       --  through a regular with clause. This procedure creates the implicit
3196       --  limited with_clauses for the parents and loads the corresponding
3197       --  units. The shadow entities are created when the inserted clause is
3198       --  analyzed. Implements Ada 2005 (AI-50217).
3199
3200       ---------------------
3201       -- Check_Renamings --
3202       ---------------------
3203
3204       procedure Check_Renamings (P : Node_Id; W : Node_Id) is
3205          Item   : Node_Id;
3206          Spec   : Node_Id;
3207          WEnt   : Entity_Id;
3208          Nam    : Node_Id;
3209          E      : Entity_Id;
3210          E2     : Entity_Id;
3211
3212       begin
3213          pragma Assert (Nkind (W) = N_With_Clause);
3214
3215          --  Protect the frontend against previous critical errors
3216
3217          case Nkind (Unit (Library_Unit (W))) is
3218             when N_Subprogram_Declaration         |
3219                  N_Package_Declaration            |
3220                  N_Generic_Subprogram_Declaration |
3221                  N_Generic_Package_Declaration    =>
3222                null;
3223
3224             when others =>
3225                return;
3226          end case;
3227
3228          --  Check "use + renamings"
3229
3230          WEnt := Defining_Unit_Name (Specification (Unit (Library_Unit (W))));
3231          Spec := Specification (Unit (P));
3232
3233          Item := First (Visible_Declarations (Spec));
3234          while Present (Item) loop
3235
3236             --  Look only at use package clauses
3237
3238             if Nkind (Item) = N_Use_Package_Clause then
3239
3240                --  Traverse the list of packages
3241
3242                Nam := First (Names (Item));
3243                while Present (Nam) loop
3244                   E := Entity (Nam);
3245
3246                   pragma Assert (Present (Parent (E)));
3247
3248                   if Nkind (Parent (E)) = N_Package_Renaming_Declaration
3249                     and then Renamed_Entity (E) = WEnt
3250                   then
3251                      --  The unlimited view is visible through use clause and
3252                      --  renamings. There is not need to generate the error
3253                      --  message here because Is_Visible_Through_Renamings
3254                      --  takes care of generating the precise error message.
3255
3256                      return;
3257
3258                   elsif Nkind (Parent (E)) = N_Package_Specification then
3259
3260                      --  The use clause may refer to a local package.
3261                      --  Check all the enclosing scopes.
3262
3263                      E2 := E;
3264                      while E2 /= Standard_Standard
3265                        and then E2 /= WEnt
3266                      loop
3267                         E2 := Scope (E2);
3268                      end loop;
3269
3270                      if E2 = WEnt then
3271                         Error_Msg_N
3272                           ("unlimited view visible through use clause ", W);
3273                         return;
3274                      end if;
3275                   end if;
3276
3277                   Next (Nam);
3278                end loop;
3279             end if;
3280
3281             Next (Item);
3282          end loop;
3283
3284          --  Recursive call to check all the ancestors
3285
3286          if Is_Child_Spec (Unit (P)) then
3287             Check_Renamings (P => Parent_Spec (Unit (P)), W => W);
3288          end if;
3289       end Check_Renamings;
3290
3291       ---------------------------------------
3292       -- Check_Private_Limited_Withed_Unit --
3293       ---------------------------------------
3294
3295       procedure Check_Private_Limited_Withed_Unit (Item : Node_Id) is
3296          Curr_Parent  : Node_Id;
3297          Child_Parent : Node_Id;
3298          Curr_Private : Boolean;
3299
3300       begin
3301          --  Compilation unit of the parent of the withed library unit
3302
3303          Child_Parent := Library_Unit (Item);
3304
3305          --  If the child unit is a public child, then locate its nearest
3306          --  private ancestor, if any; Child_Parent will then be set to
3307          --  the parent of that ancestor.
3308
3309          if not Private_Present (Library_Unit (Item)) then
3310             while Present (Child_Parent)
3311               and then not Private_Present (Child_Parent)
3312             loop
3313                Child_Parent := Parent_Spec (Unit (Child_Parent));
3314             end loop;
3315
3316             if No (Child_Parent) then
3317                return;
3318             end if;
3319          end if;
3320
3321          Child_Parent := Parent_Spec (Unit (Child_Parent));
3322
3323          --  Traverse all the ancestors of the current compilation
3324          --  unit to check if it is a descendant of named library unit.
3325
3326          Curr_Parent := Parent (Item);
3327          Curr_Private := Private_Present (Curr_Parent);
3328
3329          while Present (Parent_Spec (Unit (Curr_Parent)))
3330            and then Curr_Parent /= Child_Parent
3331          loop
3332             Curr_Parent := Parent_Spec (Unit (Curr_Parent));
3333             Curr_Private := Curr_Private or else Private_Present (Curr_Parent);
3334          end loop;
3335
3336          if Curr_Parent /= Child_Parent then
3337             Error_Msg_N
3338               ("unit in with clause is private child unit!", Item);
3339             Error_Msg_NE
3340               ("\current unit must also have parent&!",
3341                Item, Defining_Unit_Name (Specification (Unit (Child_Parent))));
3342
3343          elsif Private_Present (Parent (Item))
3344             or else Curr_Private
3345             or else Private_Present (Item)
3346             or else Nkind_In (Unit (Parent (Item)), N_Package_Body,
3347                                                         N_Subprogram_Body,
3348                                                         N_Subunit)
3349          then
3350             --  Current unit is private, of descendant of a private unit.
3351
3352             null;
3353
3354          else
3355             Error_Msg_NE
3356               ("current unit must also be private descendant of&",
3357                Item, Defining_Unit_Name (Specification (Unit (Child_Parent))));
3358          end if;
3359       end Check_Private_Limited_Withed_Unit;
3360
3361       --------------------------------
3362       -- Expand_Limited_With_Clause --
3363       --------------------------------
3364
3365       procedure Expand_Limited_With_Clause
3366         (Comp_Unit : Node_Id;
3367          Nam       : Node_Id;
3368          N         : Node_Id)
3369       is
3370          Loc   : constant Source_Ptr := Sloc (Nam);
3371          Unum  : Unit_Number_Type;
3372          Withn : Node_Id;
3373
3374          function Previous_Withed_Unit (W : Node_Id) return Boolean;
3375          --  Returns true if the context already includes a with_clause for
3376          --  this unit. If the with_clause is non-limited, the unit is fully
3377          --  visible and an implicit limited_with should not be created. If
3378          --  there is already a limited_with clause for W, a second one is
3379          --  simply redundant.
3380
3381          --------------------------
3382          -- Previous_Withed_Unit --
3383          --------------------------
3384
3385          function Previous_Withed_Unit (W : Node_Id) return Boolean is
3386             Item : Node_Id;
3387
3388          begin
3389             --  A limited with_clause cannot appear in the same context_clause
3390             --  as a nonlimited with_clause which mentions the same library.
3391
3392             Item := First (Context_Items (Comp_Unit));
3393             while Present (Item) loop
3394                if Nkind (Item) = N_With_Clause
3395                  and then Library_Unit (Item) = Library_Unit (W)
3396                then
3397                   return True;
3398                end if;
3399
3400                Next (Item);
3401             end loop;
3402
3403             return False;
3404          end Previous_Withed_Unit;
3405
3406       --  Start of processing for Expand_Limited_With_Clause
3407
3408       begin
3409          New_Nodes_OK := New_Nodes_OK + 1;
3410
3411          if Nkind (Nam) = N_Identifier then
3412
3413             --  Create node for name of withed unit
3414
3415             Withn :=
3416               Make_With_Clause (Loc,
3417                 Name => New_Copy (Nam));
3418
3419          else pragma Assert (Nkind (Nam) = N_Selected_Component);
3420             Withn :=
3421               Make_With_Clause (Loc,
3422                 Name => Make_Selected_Component (Loc,
3423                   Prefix        => New_Copy_Tree (Prefix (Nam)),
3424                   Selector_Name => New_Copy (Selector_Name (Nam))));
3425             Set_Parent (Withn, Parent (N));
3426          end if;
3427
3428          Set_Limited_Present (Withn);
3429          Set_First_Name      (Withn);
3430          Set_Implicit_With   (Withn);
3431
3432          Unum :=
3433            Load_Unit
3434              (Load_Name  => Get_Spec_Name (Get_Unit_Name (Nam)),
3435               Required   => True,
3436               Subunit    => False,
3437               Error_Node => Nam);
3438
3439          --  Do not generate a limited_with_clause on the current unit.
3440          --  This path is taken when a unit has a limited_with clause on
3441          --  one of its child units.
3442
3443          if Unum = Current_Sem_Unit then
3444             return;
3445          end if;
3446
3447          Set_Library_Unit (Withn, Cunit (Unum));
3448          Set_Corresponding_Spec
3449            (Withn, Specification (Unit (Cunit (Unum))));
3450
3451          if not Previous_Withed_Unit (Withn) then
3452             Prepend (Withn, Context_Items (Parent (N)));
3453             Mark_Rewrite_Insertion (Withn);
3454
3455             --  Add implicit limited_with_clauses for parents of child units
3456             --  mentioned in limited_with clauses.
3457
3458             if Nkind (Nam) = N_Selected_Component then
3459                Expand_Limited_With_Clause (Comp_Unit, Prefix (Nam), N);
3460             end if;
3461
3462             Analyze (Withn);
3463
3464             if not Limited_View_Installed (Withn) then
3465                Install_Limited_Withed_Unit (Withn);
3466             end if;
3467          end if;
3468
3469          New_Nodes_OK := New_Nodes_OK - 1;
3470       end Expand_Limited_With_Clause;
3471
3472    --  Start of processing for Install_Limited_Context_Clauses
3473
3474    begin
3475       Item := First (Context_Items (N));
3476       while Present (Item) loop
3477          if Nkind (Item) = N_With_Clause
3478            and then Limited_Present (Item)
3479          then
3480             if Nkind (Name (Item)) = N_Selected_Component then
3481                Expand_Limited_With_Clause
3482                  (Comp_Unit => N, Nam => Prefix (Name (Item)), N => Item);
3483             end if;
3484
3485             Check_Private_Limited_Withed_Unit (Item);
3486
3487             if not Implicit_With (Item)
3488               and then Is_Child_Spec (Unit (N))
3489             then
3490                Check_Renamings (Parent_Spec (Unit (N)), Item);
3491             end if;
3492
3493             --  A unit may have a limited with on itself if it has a limited
3494             --  with_clause on one of its child units. In that case it is
3495             --  already being compiled and it makes no sense to install its
3496             --  limited view.
3497
3498             --  If the item is a limited_private_with_clause, install it if the
3499             --  current unit is a body or if it is a private child. Otherwise
3500             --  the private clause is installed before analyzing the private
3501             --  part of the current unit.
3502
3503             if Library_Unit (Item) /= Cunit (Current_Sem_Unit)
3504               and then not Limited_View_Installed (Item)
3505             then
3506                if not Private_Present (Item)
3507                  or else Private_Present (N)
3508                  or else Nkind_In (Unit (N), N_Package_Body,
3509                                              N_Subprogram_Body,
3510                                              N_Subunit)
3511                then
3512                   Install_Limited_Withed_Unit (Item);
3513                end if;
3514             end if;
3515
3516          --  All items other than Limited_With clauses are ignored (they were
3517          --  installed separately early on by Install_Context_Clause).
3518
3519          else
3520             null;
3521          end if;
3522
3523          Next (Item);
3524       end loop;
3525
3526       --  Ada 2005 (AI-412): Examine the visible declarations of a package
3527       --  spec, looking for incomplete subtype declarations of incomplete
3528       --  types visible through a limited with clause.
3529
3530       if Ada_Version >= Ada_05
3531         and then Analyzed (N)
3532         and then Nkind (Unit (N)) = N_Package_Declaration
3533       then
3534          declare
3535             Decl         : Node_Id;
3536             Def_Id       : Entity_Id;
3537             Non_Lim_View : Entity_Id;
3538
3539          begin
3540             Decl := First (Visible_Declarations (Specification (Unit (N))));
3541             while Present (Decl) loop
3542                if Nkind (Decl) = N_Subtype_Declaration
3543                  and then
3544                    Ekind (Defining_Identifier (Decl)) = E_Incomplete_Subtype
3545                  and then
3546                    From_With_Type (Defining_Identifier (Decl))
3547                then
3548                   Def_Id := Defining_Identifier (Decl);
3549                   Non_Lim_View := Non_Limited_View (Def_Id);
3550
3551                   if not Is_Incomplete_Type (Non_Lim_View) then
3552
3553                      --  Convert an incomplete subtype declaration into a
3554                      --  corresponding non-limited view subtype declaration.
3555                      --  This is usually the case when analyzing a body that
3556                      --  has regular with-clauses, when the spec has limited
3557                      --  ones.
3558
3559                      --  If the non-limited view is still incomplete, it is
3560                      --  the dummy entry already created, and the declaration
3561                      --  cannot be reanalyzed. This is the case when installing
3562                      --  a parent unit that has limited with-clauses.
3563
3564                      Set_Subtype_Indication (Decl,
3565                        New_Reference_To (Non_Lim_View, Sloc (Def_Id)));
3566                      Set_Etype (Def_Id, Non_Lim_View);
3567                      Set_Ekind (Def_Id, Subtype_Kind (Ekind (Non_Lim_View)));
3568                      Set_Analyzed (Decl, False);
3569
3570                      --  Reanalyze the declaration, suppressing the call to
3571                      --  Enter_Name to avoid duplicate names.
3572
3573                      Analyze_Subtype_Declaration
3574                       (N    => Decl,
3575                        Skip => True);
3576                   end if;
3577                end if;
3578
3579                Next (Decl);
3580             end loop;
3581          end;
3582       end if;
3583    end Install_Limited_Context_Clauses;
3584
3585    ---------------------
3586    -- Install_Parents --
3587    ---------------------
3588
3589    procedure Install_Parents (Lib_Unit : Node_Id; Is_Private : Boolean) is
3590       P      : Node_Id;
3591       E_Name : Entity_Id;
3592       P_Name : Entity_Id;
3593       P_Spec : Node_Id;
3594
3595    begin
3596       P := Unit (Parent_Spec (Lib_Unit));
3597       P_Name := Get_Parent_Entity (P);
3598
3599       if Etype (P_Name) = Any_Type then
3600          return;
3601       end if;
3602
3603       if Ekind (P_Name) = E_Generic_Package
3604         and then not Nkind_In (Lib_Unit, N_Generic_Subprogram_Declaration,
3605                                          N_Generic_Package_Declaration)
3606         and then Nkind (Lib_Unit) not in N_Generic_Renaming_Declaration
3607       then
3608          Error_Msg_N
3609            ("child of a generic package must be a generic unit", Lib_Unit);
3610
3611       elsif not Is_Package_Or_Generic_Package (P_Name) then
3612          Error_Msg_N
3613            ("parent unit must be package or generic package", Lib_Unit);
3614          raise Unrecoverable_Error;
3615
3616       elsif Present (Renamed_Object (P_Name)) then
3617          Error_Msg_N ("parent unit cannot be a renaming", Lib_Unit);
3618          raise Unrecoverable_Error;
3619
3620       --  Verify that a child of an instance is itself an instance, or the
3621       --  renaming of one. Given that an instance that is a unit is replaced
3622       --  with a package declaration, check against the original node. The
3623       --  parent may be currently being instantiated, in which case it appears
3624       --  as a declaration, but the generic_parent is already established
3625       --  indicating that we deal with an instance.
3626
3627       elsif Nkind (Original_Node (P)) = N_Package_Instantiation then
3628          if Nkind (Lib_Unit) in N_Renaming_Declaration
3629            or else Nkind (Original_Node (Lib_Unit)) in N_Generic_Instantiation
3630            or else
3631              (Nkind (Lib_Unit) = N_Package_Declaration
3632                 and then Present (Generic_Parent (Specification (Lib_Unit))))
3633          then
3634             null;
3635          else
3636             Error_Msg_N
3637               ("child of an instance must be an instance or renaming",
3638                 Lib_Unit);
3639          end if;
3640       end if;
3641
3642       --  This is the recursive call that ensures all parents are loaded
3643
3644       if Is_Child_Spec (P) then
3645          Install_Parents (P,
3646            Is_Private or else Private_Present (Parent (Lib_Unit)));
3647       end if;
3648
3649       --  Now we can install the context for this parent
3650
3651       Install_Context_Clauses (Parent_Spec (Lib_Unit));
3652       Install_Limited_Context_Clauses (Parent_Spec (Lib_Unit));
3653       Install_Siblings (P_Name, Parent (Lib_Unit));
3654
3655       --  The child unit is in the declarative region of the parent. The parent
3656       --  must therefore appear in the scope stack and be visible, as when
3657       --  compiling the corresponding body. If the child unit is private or it
3658       --  is a package body, private declarations must be accessible as well.
3659       --  Use declarations in the parent must also be installed. Finally, other
3660       --  child units of the same parent that are in the context are
3661       --  immediately visible.
3662
3663       --  Find entity for compilation unit, and set its private descendant
3664       --  status as needed.
3665
3666       E_Name := Defining_Entity (Lib_Unit);
3667
3668       Set_Is_Child_Unit (E_Name);
3669
3670       Set_Is_Private_Descendant (E_Name,
3671          Is_Private_Descendant (P_Name)
3672            or else Private_Present (Parent (Lib_Unit)));
3673
3674       P_Spec := Specification (Unit_Declaration_Node (P_Name));
3675       Push_Scope (P_Name);
3676
3677       --  Save current visibility of unit
3678
3679       Scope_Stack.Table (Scope_Stack.Last).Previous_Visibility :=
3680         Is_Immediately_Visible (P_Name);
3681       Set_Is_Immediately_Visible (P_Name);
3682       Install_Visible_Declarations (P_Name);
3683       Set_Use (Visible_Declarations (P_Spec));
3684
3685       --  If the parent is a generic unit, its formal part may contain formal
3686       --  packages and use clauses for them.
3687
3688       if Ekind (P_Name) = E_Generic_Package then
3689          Set_Use (Generic_Formal_Declarations (Parent (P_Spec)));
3690       end if;
3691
3692       if Is_Private
3693         or else Private_Present (Parent (Lib_Unit))
3694       then
3695          Install_Private_Declarations (P_Name);
3696          Install_Private_With_Clauses (P_Name);
3697          Set_Use (Private_Declarations (P_Spec));
3698       end if;
3699    end Install_Parents;
3700
3701    ----------------------------------
3702    -- Install_Private_With_Clauses --
3703    ----------------------------------
3704
3705    procedure Install_Private_With_Clauses (P : Entity_Id) is
3706       Decl   : constant Node_Id := Unit_Declaration_Node (P);
3707       Item   : Node_Id;
3708
3709    begin
3710       if Debug_Flag_I then
3711          Write_Str ("install private with clauses of ");
3712          Write_Name (Chars (P));
3713          Write_Eol;
3714       end if;
3715
3716       if Nkind (Parent (Decl)) = N_Compilation_Unit then
3717          Item := First (Context_Items (Parent (Decl)));
3718          while Present (Item) loop
3719             if Nkind (Item) = N_With_Clause
3720               and then Private_Present (Item)
3721             then
3722                if Limited_Present (Item) then
3723                   if not Limited_View_Installed (Item) then
3724                      Install_Limited_Withed_Unit (Item);
3725                   end if;
3726                else
3727                   Install_Withed_Unit (Item, Private_With_OK => True);
3728                end if;
3729             end if;
3730
3731             Next (Item);
3732          end loop;
3733       end if;
3734    end Install_Private_With_Clauses;
3735
3736    ----------------------
3737    -- Install_Siblings --
3738    ----------------------
3739
3740    procedure Install_Siblings (U_Name : Entity_Id; N : Node_Id) is
3741       Item : Node_Id;
3742       Id   : Entity_Id;
3743       Prev : Entity_Id;
3744
3745    begin
3746       --  Iterate over explicit with clauses, and check whether the scope of
3747       --  each entity is an ancestor of the current unit, in which case it is
3748       --  immediately visible.
3749
3750       Item := First (Context_Items (N));
3751       while Present (Item) loop
3752
3753          --  Do not install private_with_clauses declaration, unless
3754          --  unit is itself a private child unit, or is a body.
3755          --  Note that for a subprogram body the private_with_clause does
3756          --  not take effect until after the specification.
3757
3758          if Nkind (Item) /= N_With_Clause
3759            or else Implicit_With (Item)
3760            or else Limited_Present (Item)
3761          then
3762             null;
3763
3764          elsif not Private_Present (Item)
3765            or else Private_Present (N)
3766            or else Nkind (Unit (N)) = N_Package_Body
3767          then
3768             Id := Entity (Name (Item));
3769
3770             if Is_Child_Unit (Id)
3771               and then Is_Ancestor_Package (Scope (Id), U_Name)
3772             then
3773                Set_Is_Immediately_Visible (Id);
3774
3775                --  Check for the presence of another unit in the context,
3776                --  that may be inadvertently hidden by the child.
3777
3778                Prev := Current_Entity (Id);
3779
3780                if Present (Prev)
3781                  and then Is_Immediately_Visible (Prev)
3782                  and then not Is_Child_Unit (Prev)
3783                then
3784                   declare
3785                      Clause : Node_Id;
3786
3787                   begin
3788                      Clause := First (Context_Items (N));
3789                      while Present (Clause) loop
3790                         if Nkind (Clause) = N_With_Clause
3791                           and then Entity (Name (Clause)) = Prev
3792                         then
3793                            Error_Msg_NE
3794                               ("child unit& hides compilation unit " &
3795                                "with the same name?",
3796                                  Name (Item), Id);
3797                            exit;
3798                         end if;
3799
3800                         Next (Clause);
3801                      end loop;
3802                   end;
3803                end if;
3804
3805             --  The With_Clause may be on a grand-child or one of its further
3806             --  descendants, which makes a child immediately visible. Examine
3807             --  ancestry to determine whether such a child exists. For example,
3808             --  if current unit is A.C, and with_clause is on A.X.Y.Z, then X
3809             --  is immediately visible.
3810
3811             elsif Is_Child_Unit (Id) then
3812                declare
3813                   Par : Entity_Id;
3814
3815                begin
3816                   Par := Scope (Id);
3817                   while Is_Child_Unit (Par) loop
3818                      if Is_Ancestor_Package (Scope (Par), U_Name) then
3819                         Set_Is_Immediately_Visible (Par);
3820                         exit;
3821                      end if;
3822
3823                      Par := Scope (Par);
3824                   end loop;
3825                end;
3826             end if;
3827
3828          --  If the item is a private with-clause on a child unit, the parent
3829          --  may have been installed already, but the child unit must remain
3830          --  invisible until installed in a private part or body.
3831
3832          elsif Private_Present (Item) then
3833             Id := Entity (Name (Item));
3834
3835             if Is_Child_Unit (Id) then
3836                Set_Is_Visible_Child_Unit (Id, False);
3837             end if;
3838          end if;
3839
3840          Next (Item);
3841       end loop;
3842    end Install_Siblings;
3843
3844    ---------------------------------
3845    -- Install_Limited_Withed_Unit --
3846    ---------------------------------
3847
3848    procedure Install_Limited_Withed_Unit (N : Node_Id) is
3849       P_Unit           : constant Entity_Id := Unit (Library_Unit (N));
3850       E                : Entity_Id;
3851       P                : Entity_Id;
3852       Is_Child_Package : Boolean := False;
3853       Lim_Header       : Entity_Id;
3854       Lim_Typ          : Entity_Id;
3855
3856       procedure Check_Body_Required;
3857       --  A unit mentioned in a limited with_clause may not be mentioned in
3858       --  a regular with_clause, but must still be included in the current
3859       --  partition. We need to determine whether the unit needs a body, so
3860       --  that the binder can determine the name of the file to be compiled.
3861       --  Checking whether a unit needs a body can be done without semantic
3862       --  analysis, by examining the nature of the declarations in the package.
3863
3864       function Has_Limited_With_Clause
3865         (C_Unit : Entity_Id;
3866          Pack   : Entity_Id) return Boolean;
3867       --  Determine whether any package in the ancestor chain starting with
3868       --  C_Unit has a limited with clause for package Pack.
3869
3870       function Has_With_Clause
3871         (C_Unit     : Node_Id;
3872          Pack       : Entity_Id;
3873          Is_Limited : Boolean := False) return Boolean;
3874       --  Determine whether compilation unit C_Unit contains a with clause
3875       --  for package Pack. Use flag Is_Limited to designate desired clause
3876       --  kind. This is a subsidiary routine to Has_Limited_With_Clause.
3877
3878       function Is_Visible_Through_Renamings (P : Entity_Id) return Boolean;
3879       --  Check if some package installed though normal with-clauses has a
3880       --  renaming declaration of package P. AARM 10.1.2(21/2).
3881
3882       -------------------------
3883       -- Check_Body_Required --
3884       -------------------------
3885
3886       --  ??? misses pragma Import on subprograms
3887       --  ??? misses pragma Import on renamed subprograms
3888
3889       procedure Check_Body_Required is
3890          PA : constant List_Id :=
3891                 Pragmas_After (Aux_Decls_Node (Parent (P_Unit)));
3892
3893          procedure Check_Declarations (Spec : Node_Id);
3894          --  Recursive procedure that does the work and checks nested packages
3895
3896          ------------------------
3897          -- Check_Declarations --
3898          ------------------------
3899
3900          procedure Check_Declarations (Spec : Node_Id) is
3901             Decl             : Node_Id;
3902             Incomplete_Decls : constant Elist_Id := New_Elmt_List;
3903
3904          begin
3905             --  Search for Elaborate Body pragma
3906
3907             Decl := First (Visible_Declarations (Spec));
3908             while Present (Decl)
3909               and then Nkind (Decl) = N_Pragma
3910             loop
3911                if Get_Pragma_Id (Decl) = Pragma_Elaborate_Body then
3912                   Set_Body_Required (Library_Unit (N));
3913                   return;
3914                end if;
3915
3916                Next (Decl);
3917             end loop;
3918
3919             --  Look for declarations that require the presence of a body
3920
3921             while Present (Decl) loop
3922
3923                --  Subprogram that comes from source means body required
3924                --  This is where a test for Import is missing ???
3925
3926                if Comes_From_Source (Decl)
3927                  and then (Nkind_In (Decl, N_Subprogram_Declaration,
3928                                            N_Generic_Subprogram_Declaration))
3929                then
3930                   Set_Body_Required (Library_Unit (N));
3931                   return;
3932
3933                --  Package declaration of generic package declaration. We need
3934                --  to recursively examine nested declarations.
3935
3936                elsif Nkind_In (Decl, N_Package_Declaration,
3937                                      N_Generic_Package_Declaration)
3938                then
3939                   Check_Declarations (Specification (Decl));
3940                end if;
3941
3942                Next (Decl);
3943             end loop;
3944
3945             --  Same set of tests for private part. In addition to subprograms
3946             --  detect the presence of Taft Amendment types (incomplete types
3947             --  completed in the body).
3948
3949             Decl := First (Private_Declarations (Spec));
3950             while Present (Decl) loop
3951                if Comes_From_Source (Decl)
3952                  and then (Nkind_In (Decl, N_Subprogram_Declaration,
3953                                            N_Generic_Subprogram_Declaration))
3954                then
3955                   Set_Body_Required (Library_Unit (N));
3956
3957                elsif Nkind_In (Decl, N_Package_Declaration,
3958                                      N_Generic_Package_Declaration)
3959                then
3960                   Check_Declarations (Specification (Decl));
3961
3962                --  Collect incomplete type declarations for separate pass
3963
3964                elsif Nkind (Decl) = N_Incomplete_Type_Declaration then
3965                   Append_Elmt (Decl, Incomplete_Decls);
3966                end if;
3967
3968                Next (Decl);
3969             end loop;
3970
3971             --  Now check incomplete declarations to locate Taft amendment
3972             --  types. This can be done by examing the defining identifiers
3973             --  of  type declarations without real semantic analysis.
3974
3975             declare
3976                Inc : Elmt_Id;
3977
3978             begin
3979                Inc := First_Elmt (Incomplete_Decls);
3980                while Present (Inc) loop
3981                   Decl := Next (Node (Inc));
3982                   while Present (Decl) loop
3983                      if Nkind (Decl) = N_Full_Type_Declaration
3984                        and then Chars (Defining_Identifier (Decl)) =
3985                                 Chars (Defining_Identifier (Node (Inc)))
3986                      then
3987                         exit;
3988                      end if;
3989
3990                      Next (Decl);
3991                   end loop;
3992
3993                   --  If no completion, this is a TAT, and a body is needed
3994
3995                   if No (Decl) then
3996                      Set_Body_Required (Library_Unit (N));
3997                      return;
3998                   end if;
3999
4000                   Next_Elmt (Inc);
4001                end loop;
4002             end;
4003          end Check_Declarations;
4004
4005       --  Start of processing for Check_Body_Required
4006
4007       begin
4008          --  If this is an imported package (Java and CIL usage) no body is
4009          --  needed. Scan list of pragmas that may follow a compilation unit
4010          --  to look for a relevant pragma Import.
4011
4012          if Present (PA) then
4013             declare
4014                Prag : Node_Id;
4015
4016             begin
4017                Prag := First (PA);
4018                while Present (Prag) loop
4019                   if Nkind (Prag) = N_Pragma
4020                     and then Get_Pragma_Id (Prag) = Pragma_Import
4021                   then
4022                      return;
4023                   end if;
4024
4025                   Next (Prag);
4026                end loop;
4027             end;
4028          end if;
4029
4030          Check_Declarations (Specification (P_Unit));
4031       end Check_Body_Required;
4032
4033       -----------------------------
4034       -- Has_Limited_With_Clause --
4035       -----------------------------
4036
4037       function Has_Limited_With_Clause
4038         (C_Unit : Entity_Id;
4039          Pack   : Entity_Id) return Boolean
4040       is
4041          Par      : Entity_Id;
4042          Par_Unit : Node_Id;
4043
4044       begin
4045          Par := C_Unit;
4046          while Present (Par) loop
4047             if Ekind (Par) /= E_Package then
4048                exit;
4049             end if;
4050
4051             --  Retrieve the Compilation_Unit node for Par and determine if
4052             --  its context clauses contain a limited with for Pack.
4053
4054             Par_Unit := Parent (Parent (Parent (Par)));
4055
4056             if Nkind (Par_Unit) = N_Package_Declaration then
4057                Par_Unit := Parent (Par_Unit);
4058             end if;
4059
4060             if Has_With_Clause (Par_Unit, Pack, True) then
4061                return True;
4062             end if;
4063
4064             --  If there are more ancestors, climb up the tree, otherwise
4065             --  we are done.
4066
4067             if Is_Child_Unit (Par) then
4068                Par := Scope (Par);
4069             else
4070                exit;
4071             end if;
4072          end loop;
4073
4074          return False;
4075       end Has_Limited_With_Clause;
4076
4077       ---------------------
4078       -- Has_With_Clause --
4079       ---------------------
4080
4081       function Has_With_Clause
4082         (C_Unit     : Node_Id;
4083          Pack       : Entity_Id;
4084          Is_Limited : Boolean := False) return Boolean
4085       is
4086          Item : Node_Id;
4087          Nam  : Entity_Id;
4088
4089       begin
4090          if Present (Context_Items (C_Unit)) then
4091             Item := First (Context_Items (C_Unit));
4092             while Present (Item) loop
4093                if Nkind (Item) = N_With_Clause then
4094
4095                   --  Retrieve the entity of the imported compilation unit
4096
4097                   if Nkind (Name (Item)) = N_Selected_Component then
4098                      Nam := Entity (Selector_Name (Name (Item)));
4099                   else
4100                      Nam := Entity (Name (Item));
4101                   end if;
4102
4103                   if Nam = Pack
4104                     and then
4105                       ((Is_Limited and then Limited_Present (Item))
4106                           or else
4107                        (not Is_Limited and then not Limited_Present (Item)))
4108                   then
4109                      return True;
4110                   end if;
4111                end if;
4112
4113                Next (Item);
4114             end loop;
4115          end if;
4116
4117          return False;
4118       end Has_With_Clause;
4119
4120       ----------------------------------
4121       -- Is_Visible_Through_Renamings --
4122       ----------------------------------
4123
4124       function Is_Visible_Through_Renamings (P : Entity_Id) return Boolean is
4125          Kind     : constant Node_Kind :=
4126                       Nkind (Unit (Cunit (Current_Sem_Unit)));
4127          Aux_Unit : Node_Id;
4128          Item     : Node_Id;
4129          Decl     : Entity_Id;
4130
4131       begin
4132          --  Example of the error detected by this subprogram:
4133
4134          --  package P is
4135          --    type T is ...
4136          --  end P;
4137
4138          --  with P;
4139          --  package Q is
4140          --     package Ren_P renames P;
4141          --  end Q;
4142
4143          --  with Q;
4144          --  package R is ...
4145
4146          --  limited with P; -- ERROR
4147          --  package R.C is ...
4148
4149          Aux_Unit := Cunit (Current_Sem_Unit);
4150
4151          loop
4152             Item := First (Context_Items (Aux_Unit));
4153             while Present (Item) loop
4154                if Nkind (Item) = N_With_Clause
4155                  and then not Limited_Present (Item)
4156                  and then Nkind (Unit (Library_Unit (Item))) =
4157                                                   N_Package_Declaration
4158                then
4159                   Decl :=
4160                     First (Visible_Declarations
4161                             (Specification (Unit (Library_Unit (Item)))));
4162                   while Present (Decl) loop
4163                      if Nkind (Decl) = N_Package_Renaming_Declaration
4164                        and then Entity (Name (Decl)) = P
4165                      then
4166                         --  Generate the error message only if the current unit
4167                         --  is a package declaration; in case of subprogram
4168                         --  bodies and package bodies we just return true to
4169                         --  indicate that the limited view must not be
4170                         --  installed.
4171
4172                         if Kind = N_Package_Declaration then
4173                            Error_Msg_N
4174                              ("simultaneous visibility of the limited and " &
4175                               "unlimited views not allowed", N);
4176                            Error_Msg_Sloc := Sloc (Item);
4177                            Error_Msg_NE
4178                              ("\\  unlimited view of & visible through the " &
4179                               "context clause #", N, P);
4180                            Error_Msg_Sloc := Sloc (Decl);
4181                            Error_Msg_NE ("\\  and the renaming #", N, P);
4182                         end if;
4183
4184                         return True;
4185                      end if;
4186
4187                      Next (Decl);
4188                   end loop;
4189                end if;
4190
4191                Next (Item);
4192             end loop;
4193
4194             if Present (Library_Unit (Aux_Unit)) then
4195                if Aux_Unit = Library_Unit (Aux_Unit) then
4196
4197                   --  Aux_Unit is a body that acts as a spec. Clause has
4198                   --  already been flagged as illegal.
4199
4200                   return False;
4201
4202                else
4203                   Aux_Unit := Library_Unit (Aux_Unit);
4204                end if;
4205             else
4206                Aux_Unit := Parent_Spec (Unit (Aux_Unit));
4207             end if;
4208
4209             exit when No (Aux_Unit);
4210          end loop;
4211
4212          return False;
4213       end Is_Visible_Through_Renamings;
4214
4215    --  Start of processing for Install_Limited_Withed_Unit
4216
4217    begin
4218       pragma Assert (not Limited_View_Installed (N));
4219
4220       --  In case of limited with_clause on subprograms, generics, instances,
4221       --  or renamings, the corresponding error was previously posted and we
4222       --  have nothing to do here. If the file is missing altogether, it has
4223       --  no source location.
4224
4225       if Nkind (P_Unit) /= N_Package_Declaration
4226         or else Sloc (P_Unit) = No_Location
4227       then
4228          return;
4229       end if;
4230
4231       P := Defining_Unit_Name (Specification (P_Unit));
4232
4233       --  Handle child packages
4234
4235       if Nkind (P) = N_Defining_Program_Unit_Name then
4236          Is_Child_Package := True;
4237          P := Defining_Identifier (P);
4238       end if;
4239
4240       --  Do not install the limited-view if the full-view is already visible
4241       --  through renaming declarations.
4242
4243       if Is_Visible_Through_Renamings (P) then
4244          return;
4245       end if;
4246
4247       --  Do not install the limited view if this is the unit being analyzed.
4248       --  This unusual case will happen when a unit has a limited_with clause
4249       --  on one of its children. The compilation of the child forces the
4250       --  load of the parent which tries to install the limited view of the
4251       --  child again. Installing the limited view must also be disabled
4252       --  when compiling the body of the child unit.
4253
4254       if P = Cunit_Entity (Current_Sem_Unit)
4255         or else
4256          (Nkind (Unit (Cunit (Current_Sem_Unit))) = N_Package_Body
4257             and then P = Main_Unit_Entity)
4258       then
4259          return;
4260       end if;
4261
4262       --  This scenario is similar to the one above, the difference is that
4263       --  the compilation of sibling Par.Sib forces the load of parent Par
4264       --  which tries to install the limited view of Lim_Pack [1]. However
4265       --  Par.Sib has a with clause for Lim_Pack [2] in its body, and thus
4266       --  needs the non-limited views of all entities from Lim_Pack.
4267
4268       --     limited with Lim_Pack;   --  [1]
4269       --     package Par is ...           package Lim_Pack is ...
4270
4271       --                                  with Lim_Pack;  --  [2]
4272       --     package Par.Sib is ...       package body Par.Sib is ...
4273
4274       --  In this case Main_Unit_Entity is the spec of Par.Sib and Current_
4275       --  Sem_Unit is the body of Par.Sib.
4276
4277       if Ekind (P) = E_Package
4278         and then Ekind (Main_Unit_Entity) = E_Package
4279         and then Is_Child_Unit (Main_Unit_Entity)
4280
4281          --  The body has a regular with clause
4282
4283         and then Nkind (Unit (Cunit (Current_Sem_Unit))) = N_Package_Body
4284         and then Has_With_Clause (Cunit (Current_Sem_Unit), P)
4285
4286          --  One of the ancestors has a limited with clause
4287
4288         and then Nkind (Parent (Parent (Main_Unit_Entity))) =
4289                    N_Package_Specification
4290         and then Has_Limited_With_Clause (Scope (Main_Unit_Entity), P)
4291       then
4292          return;
4293       end if;
4294
4295       --  A common use of the limited-with is to have a limited-with
4296       --  in the package spec, and a normal with in its package body.
4297       --  For example:
4298
4299       --       limited with X;  -- [1]
4300       --       package A is ...
4301
4302       --       with X;          -- [2]
4303       --       package body A is ...
4304
4305       --  The compilation of A's body installs the context clauses found at [2]
4306       --  and then the context clauses of its specification (found at [1]). As
4307       --  a consequence, at [1] the specification of X has been analyzed and it
4308       --  is immediately visible. According to the semantics of limited-with
4309       --  context clauses we don't install the limited view because the full
4310       --  view of X supersedes its limited view.
4311
4312       if Analyzed (P_Unit)
4313         and then
4314           (Is_Immediately_Visible (P)
4315             or else
4316               (Is_Child_Package and then Is_Visible_Child_Unit (P)))
4317       then
4318          return;
4319       end if;
4320
4321       if Debug_Flag_I then
4322          Write_Str ("install limited view of ");
4323          Write_Name (Chars (P));
4324          Write_Eol;
4325       end if;
4326
4327       --  If the unit has not been analyzed and the limited view has not been
4328       --  already installed then we install it.
4329
4330       if not Analyzed (P_Unit) then
4331          if not In_Chain (P) then
4332
4333             --  Minimum decoration
4334
4335             Set_Ekind (P, E_Package);
4336             Set_Etype (P, Standard_Void_Type);
4337             Set_Scope (P, Standard_Standard);
4338
4339             if Is_Child_Package then
4340                Set_Is_Child_Unit (P);
4341                Set_Is_Visible_Child_Unit (P);
4342                Set_Scope (P, Defining_Entity (Unit (Parent_Spec (P_Unit))));
4343             end if;
4344
4345             --  Place entity on visibility structure
4346
4347             Set_Homonym (P, Current_Entity (P));
4348             Set_Current_Entity (P);
4349
4350             if Debug_Flag_I then
4351                Write_Str ("   (homonym) chain ");
4352                Write_Name (Chars (P));
4353                Write_Eol;
4354             end if;
4355
4356             --  Install the incomplete view. The first element of the limited
4357             --  view is a header (an E_Package entity) used to reference the
4358             --  first shadow entity in the private part of the package.
4359
4360             Lim_Header := Limited_View (P);
4361             Lim_Typ    := First_Entity (Lim_Header);
4362
4363             while Present (Lim_Typ)
4364               and then Lim_Typ /= First_Private_Entity (Lim_Header)
4365             loop
4366                Set_Homonym (Lim_Typ, Current_Entity (Lim_Typ));
4367                Set_Current_Entity (Lim_Typ);
4368
4369                if Debug_Flag_I then
4370                   Write_Str ("   (homonym) chain ");
4371                   Write_Name (Chars (Lim_Typ));
4372                   Write_Eol;
4373                end if;
4374
4375                Next_Entity (Lim_Typ);
4376             end loop;
4377          end if;
4378
4379       --  If the unit appears in a previous regular with_clause, the regular
4380       --  entities of the public part of the withed package must be replaced
4381       --  by the shadow ones.
4382
4383       --  This code must be kept synchronized with the code that replaces the
4384       --  shadow entities by the real entities (see body of Remove_Limited
4385       --  With_Clause); otherwise the contents of the homonym chains are not
4386       --  consistent.
4387
4388       else
4389          --  Hide all the type entities of the public part of the package to
4390          --  avoid its usage. This is needed to cover all the subtype decla-
4391          --  rations because we do not remove them from the homonym chain.
4392
4393          E := First_Entity (P);
4394          while Present (E) and then E /= First_Private_Entity (P) loop
4395             if Is_Type (E) then
4396                Set_Was_Hidden (E, Is_Hidden (E));
4397                Set_Is_Hidden (E);
4398             end if;
4399
4400             Next_Entity (E);
4401          end loop;
4402
4403          --  Replace the real entities by the shadow entities of the limited
4404          --  view. The first element of the limited view is a header that is
4405          --  used to reference the first shadow entity in the private part
4406          --  of the package. Successive elements are the limited views of the
4407          --  type (including regular incomplete types) declared in the package.
4408
4409          Lim_Header := Limited_View (P);
4410
4411          Lim_Typ := First_Entity (Lim_Header);
4412          while Present (Lim_Typ)
4413            and then Lim_Typ /= First_Private_Entity (Lim_Header)
4414          loop
4415             pragma Assert (not In_Chain (Lim_Typ));
4416
4417             --  Do not unchain nested packages and child units
4418
4419             if Ekind (Lim_Typ) /= E_Package
4420               and then not Is_Child_Unit (Lim_Typ)
4421             then
4422                declare
4423                   Prev : Entity_Id;
4424
4425                begin
4426                   Prev := Current_Entity (Lim_Typ);
4427                   E := Prev;
4428
4429                   --  Replace E in the homonyms list, so that the limited
4430                   --  view becomes available.
4431
4432                   if E = Non_Limited_View (Lim_Typ) then
4433                      Set_Homonym (Lim_Typ, Homonym (Prev));
4434                      Set_Current_Entity (Lim_Typ);
4435
4436                   else
4437                      loop
4438                         E := Homonym (Prev);
4439
4440                         --  E may have been removed when installing a
4441                         --  previous limited_with_clause.
4442
4443                         exit when No (E);
4444
4445                         exit when E = Non_Limited_View (Lim_Typ);
4446
4447                         Prev := Homonym (Prev);
4448                      end loop;
4449
4450                      if Present (E) then
4451                         Set_Homonym (Lim_Typ, Homonym (Homonym (Prev)));
4452                         Set_Homonym (Prev, Lim_Typ);
4453                      end if;
4454                   end if;
4455                end;
4456
4457                if Debug_Flag_I then
4458                   Write_Str ("   (homonym) chain ");
4459                   Write_Name (Chars (Lim_Typ));
4460                   Write_Eol;
4461                end if;
4462             end if;
4463
4464             Next_Entity (Lim_Typ);
4465          end loop;
4466       end if;
4467
4468       --  The package must be visible while the limited-with clause is active
4469       --  because references to the type P.T must resolve in the usual way.
4470       --  In addition, we remember that the limited-view has been installed to
4471       --  uninstall it at the point of context removal.
4472
4473       Set_Is_Immediately_Visible (P);
4474       Set_Limited_View_Installed (N);
4475
4476       --  If unit has not been analyzed in some previous context, check
4477       --  (imperfectly ???) whether it might need a body.
4478
4479       if not Analyzed (P_Unit) then
4480          Check_Body_Required;
4481       end if;
4482
4483       --  If the package in the limited_with clause is a child unit, the
4484       --  clause is unanalyzed and appears as a selected component. Recast
4485       --  it as an expanded name so that the entity can be properly set. Use
4486       --  entity of parent, if available, for higher ancestors in the name.
4487
4488       if Nkind (Name (N)) = N_Selected_Component then
4489          declare
4490             Nam : Node_Id;
4491             Ent : Entity_Id;
4492
4493          begin
4494             Nam := Name (N);
4495             Ent := P;
4496             while Nkind (Nam) = N_Selected_Component
4497               and then Present (Ent)
4498             loop
4499                Change_Selected_Component_To_Expanded_Name (Nam);
4500
4501                --  Set entity of parent identifiers if the unit is a child
4502                --  unit. This ensures that the tree is properly formed from
4503                --  semantic point of view (e.g. for ASIS queries).
4504
4505                Set_Entity (Nam, Ent);
4506
4507                Nam := Prefix (Nam);
4508                Ent := Scope (Ent);
4509
4510                --  Set entity of last ancestor
4511
4512                if Nkind (Nam) = N_Identifier then
4513                   Set_Entity (Nam, Ent);
4514                end if;
4515             end loop;
4516          end;
4517       end if;
4518
4519       Set_Entity (Name (N), P);
4520       Set_From_With_Type (P);
4521    end Install_Limited_Withed_Unit;
4522
4523    -------------------------
4524    -- Install_Withed_Unit --
4525    -------------------------
4526
4527    procedure Install_Withed_Unit
4528      (With_Clause     : Node_Id;
4529       Private_With_OK : Boolean := False)
4530    is
4531       Uname : constant Entity_Id := Entity (Name (With_Clause));
4532       P     : constant Entity_Id := Scope (Uname);
4533
4534    begin
4535       --  Ada 2005 (AI-262): Do not install the private withed unit if we are
4536       --  compiling a package declaration and the Private_With_OK flag was not
4537       --  set by the caller. These declarations will be installed later (before
4538       --  analyzing the private part of the package).
4539
4540       if Private_Present (With_Clause)
4541         and then Nkind (Unit (Parent (With_Clause))) = N_Package_Declaration
4542         and then not (Private_With_OK)
4543       then
4544          return;
4545       end if;
4546
4547       if Debug_Flag_I then
4548          if Private_Present (With_Clause) then
4549             Write_Str ("install private withed unit ");
4550          else
4551             Write_Str ("install withed unit ");
4552          end if;
4553
4554          Write_Name (Chars (Uname));
4555          Write_Eol;
4556       end if;
4557
4558       --  We do not apply the restrictions to an internal unit unless
4559       --  we are compiling the internal unit as a main unit. This check
4560       --  is also skipped for dummy units (for missing packages).
4561
4562       if Sloc (Uname) /= No_Location
4563         and then (not Is_Internal_File_Name (Unit_File_Name (Current_Sem_Unit))
4564                     or else Current_Sem_Unit = Main_Unit)
4565       then
4566          Check_Restricted_Unit
4567            (Unit_Name (Get_Source_Unit (Uname)), With_Clause);
4568       end if;
4569
4570       if P /= Standard_Standard then
4571
4572          --  If the unit is not analyzed after analysis of the with clause and
4573          --  it is an instantiation then it awaits a body and is the main unit.
4574          --  Its appearance in the context of some other unit indicates a
4575          --  circular dependency (DEC suite perversity).
4576
4577          if not Analyzed (Uname)
4578            and then Nkind (Parent (Uname)) = N_Package_Instantiation
4579          then
4580             Error_Msg_N
4581               ("instantiation depends on itself", Name (With_Clause));
4582
4583          elsif not Is_Visible_Child_Unit (Uname) then
4584             Set_Is_Visible_Child_Unit (Uname);
4585
4586             --  If the child unit appears in the context of its parent, it is
4587             --  immediately visible.
4588
4589             if In_Open_Scopes (Scope (Uname)) then
4590                Set_Is_Immediately_Visible (Uname);
4591             end if;
4592
4593             if Is_Generic_Instance (Uname)
4594               and then Ekind (Uname) in Subprogram_Kind
4595             then
4596                --  Set flag as well on the visible entity that denotes the
4597                --  instance, which renames the current one.
4598
4599                Set_Is_Visible_Child_Unit
4600                  (Related_Instance
4601                    (Defining_Entity (Unit (Library_Unit (With_Clause)))));
4602             end if;
4603
4604             --  The parent unit may have been installed already, and may have
4605             --  appeared in a use clause.
4606
4607             if In_Use (Scope (Uname)) then
4608                Set_Is_Potentially_Use_Visible (Uname);
4609             end if;
4610
4611             Set_Context_Installed (With_Clause);
4612          end if;
4613
4614       elsif not Is_Immediately_Visible (Uname) then
4615          if not Private_Present (With_Clause)
4616            or else Private_With_OK
4617          then
4618             Set_Is_Immediately_Visible (Uname);
4619          end if;
4620
4621          Set_Context_Installed (With_Clause);
4622       end if;
4623
4624       --   A with-clause overrides a with-type clause: there are no restric-
4625       --   tions on the use of package entities.
4626
4627       if Ekind (Uname) = E_Package then
4628          Set_From_With_Type (Uname, False);
4629       end if;
4630
4631       --  Ada 2005 (AI-377): it is illegal for a with_clause to name a child
4632       --  unit if there is a visible homograph for it declared in the same
4633       --  declarative region. This pathological case can only arise when an
4634       --  instance I1 of a generic unit G1 has an explicit child unit I1.G2,
4635       --  G1 has a generic child also named G2, and the context includes with_
4636       --  clauses for both I1.G2 and for G1.G2, making an implicit declaration
4637       --  of I1.G2 visible as well. If the child unit is named Standard, do
4638       --  not apply the check to the Standard package itself.
4639
4640       if Is_Child_Unit (Uname)
4641         and then Is_Visible_Child_Unit (Uname)
4642         and then Ada_Version >= Ada_05
4643       then
4644          declare
4645             Decl1 : constant Node_Id  := Unit_Declaration_Node (P);
4646             Decl2 : Node_Id;
4647             P2    : Entity_Id;
4648             U2    : Entity_Id;
4649
4650          begin
4651             U2 := Homonym (Uname);
4652             while Present (U2)
4653               and then U2 /= Standard_Standard
4654            loop
4655                P2 := Scope (U2);
4656                Decl2  := Unit_Declaration_Node (P2);
4657
4658                if Is_Child_Unit (U2)
4659                  and then Is_Visible_Child_Unit (U2)
4660                then
4661                   if Is_Generic_Instance (P)
4662                     and then Nkind (Decl1) = N_Package_Declaration
4663                     and then Generic_Parent (Specification (Decl1)) = P2
4664                   then
4665                      Error_Msg_N ("illegal with_clause", With_Clause);
4666                      Error_Msg_N
4667                        ("\child unit has visible homograph" &
4668                            " (RM 8.3(26), 10.1.1(19))",
4669                          With_Clause);
4670                      exit;
4671
4672                   elsif Is_Generic_Instance (P2)
4673                     and then Nkind (Decl2) = N_Package_Declaration
4674                     and then Generic_Parent (Specification (Decl2)) = P
4675                   then
4676                      --  With_clause for child unit of instance appears before
4677                      --  in the context. We want to place the error message on
4678                      --  it, not on the generic child unit itself.
4679
4680                      declare
4681                         Prev_Clause : Node_Id;
4682
4683                      begin
4684                         Prev_Clause := First (List_Containing (With_Clause));
4685                         while Entity (Name (Prev_Clause)) /= U2 loop
4686                            Next (Prev_Clause);
4687                         end loop;
4688
4689                         pragma Assert (Present (Prev_Clause));
4690                         Error_Msg_N ("illegal with_clause", Prev_Clause);
4691                         Error_Msg_N
4692                           ("\child unit has visible homograph" &
4693                               " (RM 8.3(26), 10.1.1(19))",
4694                             Prev_Clause);
4695                         exit;
4696                      end;
4697                   end if;
4698                end if;
4699
4700                U2 := Homonym (U2);
4701             end loop;
4702          end;
4703       end if;
4704    end Install_Withed_Unit;
4705
4706    -------------------
4707    -- Is_Child_Spec --
4708    -------------------
4709
4710    function Is_Child_Spec (Lib_Unit : Node_Id) return Boolean is
4711       K : constant Node_Kind := Nkind (Lib_Unit);
4712
4713    begin
4714       return (K in N_Generic_Declaration              or else
4715               K in N_Generic_Instantiation            or else
4716               K in N_Generic_Renaming_Declaration     or else
4717               K =  N_Package_Declaration              or else
4718               K =  N_Package_Renaming_Declaration     or else
4719               K =  N_Subprogram_Declaration           or else
4720               K =  N_Subprogram_Renaming_Declaration)
4721         and then Present (Parent_Spec (Lib_Unit));
4722    end Is_Child_Spec;
4723
4724    -----------------------
4725    -- Load_Needed_Body --
4726    -----------------------
4727
4728    --  N is a generic unit named in a with clause, or else it is a unit that
4729    --  contains a generic unit or an inlined function. In order to perform an
4730    --  instantiation, the body of the unit must be present. If the unit itself
4731    --  is generic, we assume that an instantiation follows, and load & analyze
4732    --  the body unconditionally. This forces analysis of the spec as well.
4733
4734    --  If the unit is not generic, but contains a generic unit, it is loaded on
4735    --  demand, at the point of instantiation (see ch12).
4736
4737    procedure Load_Needed_Body (N : Node_Id; OK : out Boolean) is
4738       Body_Name : Unit_Name_Type;
4739       Unum      : Unit_Number_Type;
4740
4741       Save_Style_Check : constant Boolean := Opt.Style_Check;
4742       --  The loading and analysis is done with style checks off
4743
4744    begin
4745       if not GNAT_Mode then
4746          Style_Check := False;
4747       end if;
4748
4749       Body_Name := Get_Body_Name (Get_Unit_Name (Unit (N)));
4750       Unum :=
4751         Load_Unit
4752           (Load_Name  => Body_Name,
4753            Required   => False,
4754            Subunit    => False,
4755            Error_Node => N,
4756            Renamings  => True);
4757
4758       if Unum = No_Unit then
4759          OK := False;
4760
4761       else
4762          Compiler_State := Analyzing; -- reset after load
4763
4764          if not Fatal_Error (Unum) or else Try_Semantics then
4765             if Debug_Flag_L then
4766                Write_Str ("*** Loaded generic body");
4767                Write_Eol;
4768             end if;
4769
4770             Semantics (Cunit (Unum));
4771          end if;
4772
4773          OK := True;
4774       end if;
4775
4776       Style_Check := Save_Style_Check;
4777    end Load_Needed_Body;
4778
4779    -------------------------
4780    -- Build_Limited_Views --
4781    -------------------------
4782
4783    procedure Build_Limited_Views (N : Node_Id) is
4784       Unum : constant Unit_Number_Type := Get_Source_Unit (Library_Unit (N));
4785       P    : constant Entity_Id        := Cunit_Entity (Unum);
4786
4787       Spec     : Node_Id;            --  To denote a package specification
4788       Lim_Typ  : Entity_Id;          --  To denote shadow entities
4789       Comp_Typ : Entity_Id;          --  To denote real entities
4790
4791       Lim_Header     : Entity_Id;          --  Package entity
4792       Last_Lim_E     : Entity_Id := Empty; --  Last limited entity built
4793       Last_Pub_Lim_E : Entity_Id;          --  To set the first private entity
4794
4795       procedure Decorate_Incomplete_Type
4796         (E    : Entity_Id;
4797          Scop : Entity_Id);
4798       --  Add attributes of an incomplete type to a shadow entity. The same
4799       --  attributes are placed on the real entity, so that gigi receives
4800       --  a consistent view.
4801
4802       procedure Decorate_Package_Specification (P : Entity_Id);
4803       --  Add attributes of a package entity to the entity in a package
4804       --  declaration
4805
4806       procedure Decorate_Tagged_Type
4807         (Loc  : Source_Ptr;
4808          T    : Entity_Id;
4809          Scop : Entity_Id);
4810       --  Set basic attributes of tagged type T, including its class_wide type.
4811       --  The parameters Loc, Scope are used to decorate the class_wide type.
4812
4813       procedure Build_Chain
4814         (Scope      : Entity_Id;
4815          First_Decl : Node_Id);
4816       --  Construct list of shadow entities and attach it to entity of
4817       --  package that is mentioned in a limited_with clause.
4818
4819       function New_Internal_Shadow_Entity
4820         (Kind       : Entity_Kind;
4821          Sloc_Value : Source_Ptr;
4822          Id_Char    : Character) return Entity_Id;
4823       --  Build a new internal entity and append it to the list of shadow
4824       --  entities available through the limited-header
4825
4826       ------------------------------
4827       -- Decorate_Incomplete_Type --
4828       ------------------------------
4829
4830       procedure Decorate_Incomplete_Type
4831         (E    : Entity_Id;
4832          Scop : Entity_Id)
4833       is
4834       begin
4835          Set_Ekind             (E, E_Incomplete_Type);
4836          Set_Scope             (E, Scop);
4837          Set_Etype             (E, E);
4838          Set_Is_First_Subtype  (E, True);
4839          Set_Stored_Constraint (E, No_Elist);
4840          Set_Full_View         (E, Empty);
4841          Init_Size_Align       (E);
4842       end Decorate_Incomplete_Type;
4843
4844       --------------------------
4845       -- Decorate_Tagged_Type --
4846       --------------------------
4847
4848       procedure Decorate_Tagged_Type
4849         (Loc  : Source_Ptr;
4850          T    : Entity_Id;
4851          Scop : Entity_Id)
4852       is
4853          CW : Entity_Id;
4854
4855       begin
4856          Decorate_Incomplete_Type (T, Scop);
4857          Set_Is_Tagged_Type (T);
4858
4859          --  Build corresponding class_wide type, if not previously done
4860
4861          --  Note: The class-wide entity is shared by the limited-view
4862          --  and the full-view.
4863
4864          if No (Class_Wide_Type (T)) then
4865             CW := Make_Defining_Identifier (Loc,  New_Internal_Name ('S'));
4866
4867             --  Set parent to be the same as the parent of the tagged type.
4868             --  We need a parent field set, and it is supposed to point to
4869             --  the declaration of the type. The tagged type declaration
4870             --  essentially declares two separate types, the tagged type
4871             --  itself and the corresponding class-wide type, so it is
4872             --  reasonable for the parent fields to point to the declaration
4873             --  in both cases.
4874
4875             Set_Parent (CW, Parent (T));
4876
4877             --  Set remaining fields of classwide type
4878
4879             Set_Ekind                     (CW, E_Class_Wide_Type);
4880             Set_Etype                     (CW, T);
4881             Set_Scope                     (CW, Scop);
4882             Set_Is_Tagged_Type            (CW);
4883             Set_Is_First_Subtype          (CW, True);
4884             Init_Size_Align               (CW);
4885             Set_Has_Unknown_Discriminants (CW, True);
4886             Set_Class_Wide_Type           (CW, CW);
4887             Set_Equivalent_Type           (CW, Empty);
4888             Set_From_With_Type            (CW, From_With_Type (T));
4889
4890             --  Link type to its class-wide type
4891
4892             Set_Class_Wide_Type           (T, CW);
4893          end if;
4894       end Decorate_Tagged_Type;
4895
4896       ------------------------------------
4897       -- Decorate_Package_Specification --
4898       ------------------------------------
4899
4900       procedure Decorate_Package_Specification (P : Entity_Id) is
4901       begin
4902          --  Place only the most basic attributes
4903
4904          Set_Ekind (P, E_Package);
4905          Set_Etype (P, Standard_Void_Type);
4906       end Decorate_Package_Specification;
4907
4908       --------------------------------
4909       -- New_Internal_Shadow_Entity --
4910       --------------------------------
4911
4912       function New_Internal_Shadow_Entity
4913         (Kind       : Entity_Kind;
4914          Sloc_Value : Source_Ptr;
4915          Id_Char    : Character) return Entity_Id
4916       is
4917          E : constant Entity_Id :=
4918                Make_Defining_Identifier (Sloc_Value,
4919                  Chars => New_Internal_Name (Id_Char));
4920
4921       begin
4922          Set_Ekind       (E, Kind);
4923          Set_Is_Internal (E, True);
4924
4925          if Kind in Type_Kind then
4926             Init_Size_Align (E);
4927          end if;
4928
4929          Append_Entity (E, Lim_Header);
4930          Last_Lim_E := E;
4931          return E;
4932       end New_Internal_Shadow_Entity;
4933
4934       -----------------
4935       -- Build_Chain --
4936       -----------------
4937
4938       procedure Build_Chain
4939         (Scope         : Entity_Id;
4940          First_Decl    : Node_Id)
4941       is
4942          Analyzed_Unit : constant Boolean := Analyzed (Cunit (Unum));
4943          Is_Tagged     : Boolean;
4944          Decl          : Node_Id;
4945
4946       begin
4947          Decl := First_Decl;
4948          while Present (Decl) loop
4949
4950             --  For each library_package_declaration in the environment, there
4951             --  is an implicit declaration of a *limited view* of that library
4952             --  package. The limited view of a package contains:
4953
4954             --   * For each nested package_declaration, a declaration of the
4955             --     limited view of that package, with the same defining-
4956             --     program-unit name.
4957
4958             --   * For each type_declaration in the visible part, an incomplete
4959             --     type-declaration with the same defining_identifier, whose
4960             --     completion is the type_declaration. If the type_declaration
4961             --     is tagged, then the incomplete_type_declaration is tagged
4962             --     incomplete.
4963
4964             --     The partial view is tagged if the declaration has the
4965             --     explicit keyword, or else if it is a type extension, both
4966             --     of which can be ascertained syntactically.
4967
4968             if Nkind (Decl) = N_Full_Type_Declaration then
4969                Is_Tagged :=
4970                   (Nkind (Type_Definition (Decl)) = N_Record_Definition
4971                     and then Tagged_Present (Type_Definition (Decl)))
4972                  or else
4973                    (Nkind (Type_Definition (Decl)) = N_Derived_Type_Definition
4974                      and then
4975                        Present
4976                          (Record_Extension_Part (Type_Definition (Decl))));
4977
4978                Comp_Typ := Defining_Identifier (Decl);
4979
4980                if not Analyzed_Unit then
4981                   if Is_Tagged then
4982                      Decorate_Tagged_Type (Sloc (Decl), Comp_Typ, Scope);
4983                   else
4984                      Decorate_Incomplete_Type (Comp_Typ, Scope);
4985                   end if;
4986                end if;
4987
4988                --  Create shadow entity for type
4989
4990                Lim_Typ := New_Internal_Shadow_Entity
4991                  (Kind       => Ekind (Comp_Typ),
4992                   Sloc_Value => Sloc (Comp_Typ),
4993                   Id_Char    => 'Z');
4994
4995                Set_Chars  (Lim_Typ, Chars (Comp_Typ));
4996                Set_Parent (Lim_Typ, Parent (Comp_Typ));
4997                Set_From_With_Type (Lim_Typ);
4998
4999                if Is_Tagged then
5000                   Decorate_Tagged_Type (Sloc (Decl), Lim_Typ, Scope);
5001                else
5002                   Decorate_Incomplete_Type (Lim_Typ, Scope);
5003                end if;
5004
5005                Set_Non_Limited_View (Lim_Typ, Comp_Typ);
5006
5007             elsif Nkind_In (Decl, N_Private_Type_Declaration,
5008                                   N_Incomplete_Type_Declaration,
5009                                   N_Task_Type_Declaration,
5010                                   N_Protected_Type_Declaration)
5011             then
5012                Comp_Typ := Defining_Identifier (Decl);
5013
5014                Is_Tagged :=
5015                  Nkind_In (Decl, N_Private_Type_Declaration,
5016                                  N_Incomplete_Type_Declaration)
5017                  and then Tagged_Present (Decl);
5018
5019                if not Analyzed_Unit then
5020                   if Is_Tagged then
5021                      Decorate_Tagged_Type (Sloc (Decl), Comp_Typ, Scope);
5022                   else
5023                      Decorate_Incomplete_Type (Comp_Typ, Scope);
5024                   end if;
5025                end if;
5026
5027                Lim_Typ  := New_Internal_Shadow_Entity
5028                  (Kind       => Ekind (Comp_Typ),
5029                   Sloc_Value => Sloc (Comp_Typ),
5030                   Id_Char    => 'Z');
5031
5032                Set_Chars  (Lim_Typ, Chars (Comp_Typ));
5033                Set_Parent (Lim_Typ, Parent (Comp_Typ));
5034                Set_From_With_Type (Lim_Typ);
5035
5036                if Is_Tagged then
5037                   Decorate_Tagged_Type (Sloc (Decl), Lim_Typ, Scope);
5038                else
5039                   Decorate_Incomplete_Type (Lim_Typ, Scope);
5040                end if;
5041
5042                Set_Non_Limited_View (Lim_Typ, Comp_Typ);
5043
5044             elsif Nkind (Decl) = N_Private_Extension_Declaration then
5045                Comp_Typ := Defining_Identifier (Decl);
5046
5047                if not Analyzed_Unit then
5048                   Decorate_Tagged_Type (Sloc (Decl), Comp_Typ, Scope);
5049                end if;
5050
5051                --  Create shadow entity for type
5052
5053                Lim_Typ := New_Internal_Shadow_Entity
5054                  (Kind       => Ekind (Comp_Typ),
5055                   Sloc_Value => Sloc (Comp_Typ),
5056                   Id_Char    => 'Z');
5057
5058                Set_Chars  (Lim_Typ, Chars (Comp_Typ));
5059                Set_Parent (Lim_Typ, Parent (Comp_Typ));
5060                Set_From_With_Type (Lim_Typ);
5061
5062                Decorate_Tagged_Type (Sloc (Decl), Lim_Typ, Scope);
5063                Set_Non_Limited_View (Lim_Typ, Comp_Typ);
5064
5065             elsif Nkind (Decl) = N_Package_Declaration then
5066
5067                --  Local package
5068
5069                declare
5070                   Spec : constant Node_Id := Specification (Decl);
5071
5072                begin
5073                   Comp_Typ := Defining_Unit_Name (Spec);
5074
5075                   if not Analyzed (Cunit (Unum)) then
5076                      Decorate_Package_Specification (Comp_Typ);
5077                      Set_Scope (Comp_Typ, Scope);
5078                   end if;
5079
5080                   Lim_Typ  := New_Internal_Shadow_Entity
5081                     (Kind       => Ekind (Comp_Typ),
5082                      Sloc_Value => Sloc (Comp_Typ),
5083                      Id_Char    => 'Z');
5084
5085                   Decorate_Package_Specification (Lim_Typ);
5086                   Set_Scope (Lim_Typ, Scope);
5087
5088                   Set_Chars  (Lim_Typ, Chars (Comp_Typ));
5089                   Set_Parent (Lim_Typ, Parent (Comp_Typ));
5090                   Set_From_With_Type (Lim_Typ);
5091
5092                   --  Note: The non_limited_view attribute is not used
5093                   --  for local packages.
5094
5095                   Build_Chain
5096                     (Scope      => Lim_Typ,
5097                      First_Decl => First (Visible_Declarations (Spec)));
5098                end;
5099             end if;
5100
5101             Next (Decl);
5102          end loop;
5103       end Build_Chain;
5104
5105    --  Start of processing for Build_Limited_Views
5106
5107    begin
5108       pragma Assert (Limited_Present (N));
5109
5110       --  A library_item mentioned in a limited_with_clause is a package
5111       --  declaration, not a subprogram declaration, generic declaration,
5112       --  generic instantiation, or package renaming declaration.
5113
5114       case Nkind (Unit (Library_Unit (N))) is
5115          when N_Package_Declaration =>
5116             null;
5117
5118          when N_Subprogram_Declaration =>
5119             Error_Msg_N ("subprograms not allowed in "
5120                          & "limited with_clauses", N);
5121             return;
5122
5123          when N_Generic_Package_Declaration |
5124               N_Generic_Subprogram_Declaration =>
5125             Error_Msg_N ("generics not allowed in "
5126                          & "limited with_clauses", N);
5127             return;
5128
5129          when N_Generic_Instantiation =>
5130             Error_Msg_N ("generic instantiations not allowed in "
5131                          & "limited with_clauses", N);
5132             return;
5133
5134          when N_Generic_Renaming_Declaration =>
5135             Error_Msg_N ("generic renamings not allowed in "
5136                          & "limited with_clauses", N);
5137             return;
5138
5139          when N_Subprogram_Renaming_Declaration =>
5140             Error_Msg_N ("renamed subprograms not allowed in "
5141                          & "limited with_clauses", N);
5142             return;
5143
5144          when N_Package_Renaming_Declaration =>
5145             Error_Msg_N ("renamed packages not allowed in "
5146                          & "limited with_clauses", N);
5147             return;
5148
5149          when others =>
5150             raise Program_Error;
5151       end case;
5152
5153       --  Check if the chain is already built
5154
5155       Spec := Specification (Unit (Library_Unit (N)));
5156
5157       if Limited_View_Installed (Spec) then
5158          return;
5159       end if;
5160
5161       Set_Ekind (P, E_Package);
5162
5163       --  Build the header of the limited_view
5164
5165       Lim_Header :=
5166         Make_Defining_Identifier (Sloc (N),
5167           Chars => New_Internal_Name (Id_Char => 'Z'));
5168       Set_Ekind (Lim_Header, E_Package);
5169       Set_Is_Internal (Lim_Header);
5170       Set_Limited_View (P, Lim_Header);
5171
5172       --  Create the auxiliary chain. All the shadow entities are appended to
5173       --  the list of entities of the limited-view header
5174
5175       Build_Chain
5176         (Scope      => P,
5177          First_Decl => First (Visible_Declarations (Spec)));
5178
5179       --  Save the last built shadow entity. It is needed later to set the
5180       --  reference to the first shadow entity in the private part
5181
5182       Last_Pub_Lim_E := Last_Lim_E;
5183
5184       --  Ada 2005 (AI-262): Add the limited view of the private declarations
5185       --  Required to give support to limited-private-with clauses
5186
5187       Build_Chain (Scope      => P,
5188                    First_Decl => First (Private_Declarations (Spec)));
5189
5190       if Last_Pub_Lim_E /= Empty then
5191          Set_First_Private_Entity (Lim_Header,
5192                                    Next_Entity (Last_Pub_Lim_E));
5193       else
5194          Set_First_Private_Entity (Lim_Header,
5195                                    First_Entity (P));
5196       end if;
5197
5198       Set_Limited_View_Installed (Spec);
5199    end Build_Limited_Views;
5200
5201    -------------------------------
5202    -- Check_Body_Needed_For_SAL --
5203    -------------------------------
5204
5205    procedure Check_Body_Needed_For_SAL (Unit_Name : Entity_Id) is
5206
5207       function Entity_Needs_Body (E : Entity_Id) return Boolean;
5208       --  Determine whether use of entity E might require the presence of its
5209       --  body. For a package this requires a recursive traversal of all nested
5210       --  declarations.
5211
5212       ---------------------------
5213       -- Entity_Needed_For_SAL --
5214       ---------------------------
5215
5216       function Entity_Needs_Body (E : Entity_Id) return Boolean is
5217          Ent : Entity_Id;
5218
5219       begin
5220          if Is_Subprogram (E)
5221            and then Has_Pragma_Inline (E)
5222          then
5223             return True;
5224
5225          elsif Ekind (E) = E_Generic_Function
5226            or else Ekind (E) = E_Generic_Procedure
5227          then
5228             return True;
5229
5230          elsif Ekind (E) = E_Generic_Package
5231            and then
5232              Nkind (Unit_Declaration_Node (E)) = N_Generic_Package_Declaration
5233            and then Present (Corresponding_Body (Unit_Declaration_Node (E)))
5234          then
5235             return True;
5236
5237          elsif Ekind (E) = E_Package
5238            and then
5239              Nkind (Unit_Declaration_Node (E)) = N_Package_Declaration
5240            and then Present (Corresponding_Body (Unit_Declaration_Node (E)))
5241          then
5242             Ent := First_Entity (E);
5243             while Present (Ent) loop
5244                if Entity_Needs_Body (Ent) then
5245                   return True;
5246                end if;
5247
5248                Next_Entity (Ent);
5249             end loop;
5250
5251             return False;
5252
5253          else
5254             return False;
5255          end if;
5256       end Entity_Needs_Body;
5257
5258    --  Start of processing for Check_Body_Needed_For_SAL
5259
5260    begin
5261       if Ekind (Unit_Name) = E_Generic_Package
5262         and then
5263           Nkind (Unit_Declaration_Node (Unit_Name)) =
5264                                             N_Generic_Package_Declaration
5265         and then
5266           Present (Corresponding_Body (Unit_Declaration_Node (Unit_Name)))
5267       then
5268          Set_Body_Needed_For_SAL (Unit_Name);
5269
5270       elsif Ekind (Unit_Name) = E_Generic_Procedure
5271         or else Ekind (Unit_Name) = E_Generic_Function
5272       then
5273          Set_Body_Needed_For_SAL (Unit_Name);
5274
5275       elsif Is_Subprogram (Unit_Name)
5276         and then Nkind (Unit_Declaration_Node (Unit_Name)) =
5277                                             N_Subprogram_Declaration
5278         and then Has_Pragma_Inline (Unit_Name)
5279       then
5280          Set_Body_Needed_For_SAL (Unit_Name);
5281
5282       elsif Ekind (Unit_Name) = E_Subprogram_Body then
5283          Check_Body_Needed_For_SAL
5284            (Corresponding_Spec (Unit_Declaration_Node (Unit_Name)));
5285
5286       elsif Ekind (Unit_Name) = E_Package
5287         and then Entity_Needs_Body (Unit_Name)
5288       then
5289          Set_Body_Needed_For_SAL (Unit_Name);
5290
5291       elsif Ekind (Unit_Name) = E_Package_Body
5292         and then Nkind (Unit_Declaration_Node (Unit_Name)) = N_Package_Body
5293       then
5294          Check_Body_Needed_For_SAL
5295            (Corresponding_Spec (Unit_Declaration_Node (Unit_Name)));
5296       end if;
5297    end Check_Body_Needed_For_SAL;
5298
5299    --------------------
5300    -- Remove_Context --
5301    --------------------
5302
5303    procedure Remove_Context (N : Node_Id) is
5304       Lib_Unit : constant Node_Id := Unit (N);
5305
5306    begin
5307       --  If this is a child unit, first remove the parent units
5308
5309       if Is_Child_Spec (Lib_Unit) then
5310          Remove_Parents (Lib_Unit);
5311       end if;
5312
5313       Remove_Context_Clauses (N);
5314    end Remove_Context;
5315
5316    ----------------------------
5317    -- Remove_Context_Clauses --
5318    ----------------------------
5319
5320    procedure Remove_Context_Clauses (N : Node_Id) is
5321       Item      : Node_Id;
5322       Unit_Name : Entity_Id;
5323
5324    begin
5325       --  Ada 2005 (AI-50217): We remove the context clauses in two phases:
5326       --  limited-views first and regular-views later (to maintain the
5327       --  stack model).
5328
5329       --  First Phase: Remove limited_with context clauses
5330
5331       Item := First (Context_Items (N));
5332       while Present (Item) loop
5333
5334          --  We are interested only in with clauses which got installed
5335          --  on entry.
5336
5337          if Nkind (Item) = N_With_Clause
5338            and then Limited_Present (Item)
5339            and then Limited_View_Installed (Item)
5340          then
5341             Remove_Limited_With_Clause (Item);
5342          end if;
5343
5344          Next (Item);
5345       end loop;
5346
5347       --  Second Phase: Loop through context items and undo regular
5348       --  with_clauses and use_clauses.
5349
5350       Item := First (Context_Items (N));
5351       while Present (Item) loop
5352
5353          --  We are interested only in with clauses which got installed on
5354          --  entry, as indicated by their Context_Installed flag set
5355
5356          if Nkind (Item) = N_With_Clause
5357            and then Limited_Present (Item)
5358            and then Limited_View_Installed (Item)
5359          then
5360             null;
5361
5362          elsif Nkind (Item) = N_With_Clause
5363             and then Context_Installed (Item)
5364          then
5365             --  Remove items from one with'ed unit
5366
5367             Unit_Name := Entity (Name (Item));
5368             Remove_Unit_From_Visibility (Unit_Name);
5369             Set_Context_Installed (Item, False);
5370
5371          elsif Nkind (Item) = N_Use_Package_Clause then
5372             End_Use_Package (Item);
5373
5374          elsif Nkind (Item) = N_Use_Type_Clause then
5375             End_Use_Type (Item);
5376          end if;
5377
5378          Next (Item);
5379       end loop;
5380    end Remove_Context_Clauses;
5381
5382    --------------------------------
5383    -- Remove_Limited_With_Clause --
5384    --------------------------------
5385
5386    procedure Remove_Limited_With_Clause (N : Node_Id) is
5387       P_Unit     : constant Entity_Id := Unit (Library_Unit (N));
5388       E          : Entity_Id;
5389       P          : Entity_Id;
5390       Lim_Header : Entity_Id;
5391       Lim_Typ    : Entity_Id;
5392       Prev       : Entity_Id;
5393
5394    begin
5395       pragma Assert (Limited_View_Installed (N));
5396
5397       --  In case of limited with_clause on subprograms, generics, instances,
5398       --  or renamings, the corresponding error was previously posted and we
5399       --  have nothing to do here.
5400
5401       if Nkind (P_Unit) /= N_Package_Declaration then
5402          return;
5403       end if;
5404
5405       P := Defining_Unit_Name (Specification (P_Unit));
5406
5407       --  Handle child packages
5408
5409       if Nkind (P) = N_Defining_Program_Unit_Name then
5410          P := Defining_Identifier (P);
5411       end if;
5412
5413       if Debug_Flag_I then
5414          Write_Str ("remove limited view of ");
5415          Write_Name (Chars (P));
5416          Write_Str (" from visibility");
5417          Write_Eol;
5418       end if;
5419
5420       --  Prepare the removal of the shadow entities from visibility. The
5421       --  first element of the limited view is a header (an E_Package
5422       --  entity) that is used to reference the first shadow entity in the
5423       --  private part of the package
5424
5425       Lim_Header := Limited_View (P);
5426       Lim_Typ    := First_Entity (Lim_Header);
5427
5428       --  Remove package and shadow entities from visibility if it has not
5429       --  been analyzed
5430
5431       if not Analyzed (P_Unit) then
5432          Unchain (P);
5433          Set_Is_Immediately_Visible (P, False);
5434
5435          while Present (Lim_Typ) loop
5436             Unchain (Lim_Typ);
5437             Next_Entity (Lim_Typ);
5438          end loop;
5439
5440       --  Otherwise this package has already appeared in the closure and its
5441       --  shadow entities must be replaced by its real entities. This code
5442       --  must be kept synchronized with the complementary code in Install
5443       --  Limited_Withed_Unit.
5444
5445       else
5446          --  Real entities that are type or subtype declarations were hidden
5447          --  from visibility at the point of installation of the limited-view.
5448          --  Now we recover the previous value of the hidden attribute.
5449
5450          E := First_Entity (P);
5451          while Present (E) and then E /= First_Private_Entity (P) loop
5452             if Is_Type (E) then
5453                Set_Is_Hidden (E, Was_Hidden (E));
5454             end if;
5455
5456             Next_Entity (E);
5457          end loop;
5458
5459          while Present (Lim_Typ)
5460            and then Lim_Typ /= First_Private_Entity (Lim_Header)
5461          loop
5462             --  Nested packages and child units were not unchained
5463
5464             if Ekind (Lim_Typ) /= E_Package
5465               and then not Is_Child_Unit (Non_Limited_View (Lim_Typ))
5466             then
5467                --  Handle incomplete types of the real view. For this purpose
5468                --  we traverse the list of visible entities to look for an
5469                --  incomplete type in the real-view associated with Lim_Typ.
5470
5471                E := First_Entity (P);
5472                while Present (E) and then E /= First_Private_Entity (P) loop
5473                   exit when Ekind (E) = E_Incomplete_Type
5474                     and then Present (Full_View (E))
5475                     and then Full_View (E) = Lim_Typ;
5476
5477                   Next_Entity (E);
5478                end loop;
5479
5480                --  If the previous search was not successful then the entity
5481                --  to be restored in the homonym list is the non-limited view
5482
5483                if E = First_Private_Entity (P) then
5484                   E := Non_Limited_View (Lim_Typ);
5485                end if;
5486
5487                pragma Assert (not In_Chain (E));
5488
5489                Prev := Current_Entity (Lim_Typ);
5490
5491                if Prev = Lim_Typ then
5492                   Set_Current_Entity (E);
5493
5494                else
5495                   while Present (Prev)
5496                     and then Homonym (Prev) /= Lim_Typ
5497                   loop
5498                      Prev := Homonym (Prev);
5499                   end loop;
5500
5501                   if Present (Prev) then
5502                      Set_Homonym (Prev, E);
5503                   end if;
5504                end if;
5505
5506                --  We must also set the next homonym entity of the real entity
5507                --  to handle the case in which the next homonym was a shadow
5508                --  entity.
5509
5510                Set_Homonym (E, Homonym (Lim_Typ));
5511             end if;
5512
5513             Next_Entity (Lim_Typ);
5514          end loop;
5515       end if;
5516
5517       --  Indicate that the limited view of the package is not installed
5518
5519       Set_From_With_Type         (P, False);
5520       Set_Limited_View_Installed (N, False);
5521    end Remove_Limited_With_Clause;
5522
5523    --------------------
5524    -- Remove_Parents --
5525    --------------------
5526
5527    procedure Remove_Parents (Lib_Unit : Node_Id) is
5528       P      : Node_Id;
5529       P_Name : Entity_Id;
5530       P_Spec : Node_Id := Empty;
5531       E      : Entity_Id;
5532       Vis    : constant Boolean :=
5533                  Scope_Stack.Table (Scope_Stack.Last).Previous_Visibility;
5534
5535    begin
5536       if Is_Child_Spec (Lib_Unit) then
5537          P_Spec := Parent_Spec (Lib_Unit);
5538
5539       elsif Nkind (Lib_Unit) = N_Package_Body
5540         and then Nkind (Original_Node (Lib_Unit)) = N_Package_Instantiation
5541       then
5542          P_Spec := Parent_Spec (Original_Node (Lib_Unit));
5543       end if;
5544
5545       if Present (P_Spec) then
5546
5547          P := Unit (P_Spec);
5548          P_Name := Get_Parent_Entity (P);
5549          Remove_Context_Clauses (P_Spec);
5550          End_Package_Scope (P_Name);
5551          Set_Is_Immediately_Visible (P_Name, Vis);
5552
5553          --  Remove from visibility the siblings as well, which are directly
5554          --  visible while the parent is in scope.
5555
5556          E := First_Entity (P_Name);
5557          while Present (E) loop
5558             if Is_Child_Unit (E) then
5559                Set_Is_Immediately_Visible (E, False);
5560             end if;
5561
5562             Next_Entity (E);
5563          end loop;
5564
5565          Set_In_Package_Body (P_Name, False);
5566
5567          --  This is the recursive call to remove the context of any
5568          --  higher level parent. This recursion ensures that all parents
5569          --  are removed in the reverse order of their installation.
5570
5571          Remove_Parents (P);
5572       end if;
5573    end Remove_Parents;
5574
5575    ---------------------------------
5576    -- Remove_Private_With_Clauses --
5577    ---------------------------------
5578
5579    procedure Remove_Private_With_Clauses (Comp_Unit : Node_Id) is
5580       Item : Node_Id;
5581
5582       function In_Regular_With_Clause (E : Entity_Id) return Boolean;
5583       --  Check whether a given unit appears in a regular with_clause.
5584       --  Used to determine whether a private_with_clause, implicit or
5585       --  explicit, should be ignored.
5586
5587       ----------------------------
5588       -- In_Regular_With_Clause --
5589       ----------------------------
5590
5591       function In_Regular_With_Clause (E : Entity_Id) return Boolean
5592       is
5593          Item : Node_Id;
5594
5595       begin
5596          Item := First (Context_Items (Comp_Unit));
5597          while Present (Item) loop
5598             if Nkind (Item) = N_With_Clause
5599               and then Entity (Name (Item)) = E
5600               and then not Private_Present (Item)
5601             then
5602                return True;
5603             end if;
5604             Next (Item);
5605          end loop;
5606
5607          return False;
5608       end In_Regular_With_Clause;
5609
5610    --  Start of processing for Remove_Private_With_Clauses
5611
5612    begin
5613       Item := First (Context_Items (Comp_Unit));
5614       while Present (Item) loop
5615          if Nkind (Item) = N_With_Clause
5616            and then Private_Present (Item)
5617          then
5618             --  If private_with_clause is redundant, remove it from
5619             --  context, as a small optimization to subsequent handling
5620             --  of private_with clauses in other nested packages..
5621
5622             if In_Regular_With_Clause (Entity (Name (Item))) then
5623                declare
5624                   Nxt : constant Node_Id := Next (Item);
5625                begin
5626                   Remove (Item);
5627                   Item := Nxt;
5628                end;
5629
5630             elsif Limited_Present (Item) then
5631                if not Limited_View_Installed (Item) then
5632                   Remove_Limited_With_Clause (Item);
5633                end if;
5634
5635                Next (Item);
5636
5637             else
5638                Remove_Unit_From_Visibility (Entity (Name (Item)));
5639                Set_Context_Installed (Item, False);
5640                Next (Item);
5641             end if;
5642
5643          else
5644             Next (Item);
5645          end if;
5646       end loop;
5647    end Remove_Private_With_Clauses;
5648
5649    ---------------------------------
5650    -- Remove_Unit_From_Visibility --
5651    ---------------------------------
5652
5653    procedure Remove_Unit_From_Visibility (Unit_Name : Entity_Id) is
5654       P : constant Entity_Id := Scope (Unit_Name);
5655
5656    begin
5657       if Debug_Flag_I then
5658          Write_Str ("remove unit ");
5659          Write_Name (Chars (Unit_Name));
5660          Write_Str (" from visibility");
5661          Write_Eol;
5662       end if;
5663
5664       if P /= Standard_Standard then
5665          Set_Is_Visible_Child_Unit (Unit_Name, False);
5666       end if;
5667
5668       Set_Is_Potentially_Use_Visible (Unit_Name, False);
5669       Set_Is_Immediately_Visible     (Unit_Name, False);
5670    end Remove_Unit_From_Visibility;
5671
5672    --------
5673    -- sm --
5674    --------
5675
5676    procedure sm is
5677    begin
5678       null;
5679    end sm;
5680
5681    -------------
5682    -- Unchain --
5683    -------------
5684
5685    procedure Unchain (E : Entity_Id) is
5686       Prev : Entity_Id;
5687
5688    begin
5689       Prev := Current_Entity (E);
5690
5691       if No (Prev) then
5692          return;
5693
5694       elsif Prev = E then
5695          Set_Name_Entity_Id (Chars (E), Homonym (E));
5696
5697       else
5698          while Present (Prev)
5699            and then Homonym (Prev) /= E
5700          loop
5701             Prev := Homonym (Prev);
5702          end loop;
5703
5704          if Present (Prev) then
5705             Set_Homonym (Prev, Homonym (E));
5706          end if;
5707       end if;
5708
5709       if Debug_Flag_I then
5710          Write_Str ("   (homonym) unchain ");
5711          Write_Name (Chars (E));
5712          Write_Eol;
5713       end if;
5714    end Unchain;
5715
5716 end Sem_Ch10;