OSDN Git Service

c10ab2b53c44354cbdf70d41a280c8a44da503a0
[pf3gnuchains/gcc-fork.git] / gcc / ada / sem_ch8.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                              S E M . C H 8                               --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2009, 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 Elists;   use Elists;
30 with Errout;   use Errout;
31 with Exp_Tss;  use Exp_Tss;
32 with Exp_Util; use Exp_Util;
33 with Fname;    use Fname;
34 with Freeze;   use Freeze;
35 with Impunit;  use Impunit;
36 with Lib;      use Lib;
37 with Lib.Load; use Lib.Load;
38 with Lib.Xref; use Lib.Xref;
39 with Namet;    use Namet;
40 with Namet.Sp; use Namet.Sp;
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_Aux;  use Sem_Aux;
50 with Sem_Cat;  use Sem_Cat;
51 with Sem_Ch3;  use Sem_Ch3;
52 with Sem_Ch4;  use Sem_Ch4;
53 with Sem_Ch6;  use Sem_Ch6;
54 with Sem_Ch12; use Sem_Ch12;
55 with Sem_Disp; use Sem_Disp;
56 with Sem_Dist; use Sem_Dist;
57 with Sem_Eval; use Sem_Eval;
58 with Sem_Res;  use Sem_Res;
59 with Sem_Util; use Sem_Util;
60 with Sem_Type; use Sem_Type;
61 with Stand;    use Stand;
62 with Sinfo;    use Sinfo;
63 with Sinfo.CN; use Sinfo.CN;
64 with Snames;   use Snames;
65 with Style;    use Style;
66 with Table;
67 with Tbuild;   use Tbuild;
68 with Uintp;    use Uintp;
69
70 package body Sem_Ch8 is
71
72    ------------------------------------
73    -- Visibility and Name Resolution --
74    ------------------------------------
75
76    --  This package handles name resolution and the collection of
77    --  interpretations for overloaded names, prior to overload resolution.
78
79    --  Name resolution is the process that establishes a mapping between source
80    --  identifiers and the entities they denote at each point in the program.
81    --  Each entity is represented by a defining occurrence. Each identifier
82    --  that denotes an entity points to the corresponding defining occurrence.
83    --  This is the entity of the applied occurrence. Each occurrence holds
84    --  an index into the names table, where source identifiers are stored.
85
86    --  Each entry in the names table for an identifier or designator uses the
87    --  Info pointer to hold a link to the currently visible entity that has
88    --  this name (see subprograms Get_Name_Entity_Id and Set_Name_Entity_Id
89    --  in package Sem_Util). The visibility is initialized at the beginning of
90    --  semantic processing to make entities in package Standard immediately
91    --  visible. The visibility table is used in a more subtle way when
92    --  compiling subunits (see below).
93
94    --  Entities that have the same name (i.e. homonyms) are chained. In the
95    --  case of overloaded entities, this chain holds all the possible meanings
96    --  of a given identifier. The process of overload resolution uses type
97    --  information to select from this chain the unique meaning of a given
98    --  identifier.
99
100    --  Entities are also chained in their scope, through the Next_Entity link.
101    --  As a consequence, the name space is organized as a sparse matrix, where
102    --  each row corresponds to a scope, and each column to a source identifier.
103    --  Open scopes, that is to say scopes currently being compiled, have their
104    --  corresponding rows of entities in order, innermost scope first.
105
106    --  The scopes of packages that are mentioned in  context clauses appear in
107    --  no particular order, interspersed among open scopes. This is because
108    --  in the course of analyzing the context of a compilation, a package
109    --  declaration is first an open scope, and subsequently an element of the
110    --  context. If subunits or child units are present, a parent unit may
111    --  appear under various guises at various times in the compilation.
112
113    --  When the compilation of the innermost scope is complete, the entities
114    --  defined therein are no longer visible. If the scope is not a package
115    --  declaration, these entities are never visible subsequently, and can be
116    --  removed from visibility chains. If the scope is a package declaration,
117    --  its visible declarations may still be accessible. Therefore the entities
118    --  defined in such a scope are left on the visibility chains, and only
119    --  their visibility (immediately visibility or potential use-visibility)
120    --  is affected.
121
122    --  The ordering of homonyms on their chain does not necessarily follow
123    --  the order of their corresponding scopes on the scope stack. For
124    --  example, if package P and the enclosing scope both contain entities
125    --  named E, then when compiling the package body the chain for E will
126    --  hold the global entity first,  and the local one (corresponding to
127    --  the current inner scope) next. As a result, name resolution routines
128    --  do not assume any relative ordering of the homonym chains, either
129    --  for scope nesting or to order of appearance of context clauses.
130
131    --  When compiling a child unit, entities in the parent scope are always
132    --  immediately visible. When compiling the body of a child unit, private
133    --  entities in the parent must also be made immediately visible. There
134    --  are separate routines to make the visible and private declarations
135    --  visible at various times (see package Sem_Ch7).
136
137    --              +--------+         +-----+
138    --              | In use |-------->| EU1 |-------------------------->
139    --              +--------+         +-----+
140    --                                    |                      |
141    --      +--------+                 +-----+                +-----+
142    --      | Stand. |---------------->| ES1 |--------------->| ES2 |--->
143    --      +--------+                 +-----+                +-----+
144    --                                    |                      |
145    --              +---------+           |                   +-----+
146    --              | with'ed |------------------------------>| EW2 |--->
147    --              +---------+           |                   +-----+
148    --                                    |                      |
149    --      +--------+                 +-----+                +-----+
150    --      | Scope2 |---------------->| E12 |--------------->| E22 |--->
151    --      +--------+                 +-----+                +-----+
152    --                                    |                      |
153    --      +--------+                 +-----+                +-----+
154    --      | Scope1 |---------------->| E11 |--------------->| E12 |--->
155    --      +--------+                 +-----+                +-----+
156    --          ^                         |                      |
157    --          |                         |                      |
158    --          |   +---------+           |                      |
159    --          |   | with'ed |----------------------------------------->
160    --          |   +---------+           |                      |
161    --          |                         |                      |
162    --      Scope stack                   |                      |
163    --      (innermost first)             |                      |
164    --                                 +----------------------------+
165    --      Names  table =>            | Id1 |     |    |     | Id2 |
166    --                                 +----------------------------+
167
168    --  Name resolution must deal with several syntactic forms: simple names,
169    --  qualified names, indexed names, and various forms of calls.
170
171    --  Each identifier points to an entry in the names table. The resolution
172    --  of a simple name consists in traversing the homonym chain, starting
173    --  from the names table. If an entry is immediately visible, it is the one
174    --  designated by the identifier. If only potentially use-visible entities
175    --  are on the chain, we must verify that they do not hide each other. If
176    --  the entity we find is overloadable, we collect all other overloadable
177    --  entities on the chain as long as they are not hidden.
178    --
179    --  To resolve expanded names, we must find the entity at the intersection
180    --  of the entity chain for the scope (the prefix) and the homonym chain
181    --  for the selector. In general, homonym chains will be much shorter than
182    --  entity chains, so it is preferable to start from the names table as
183    --  well. If the entity found is overloadable, we must collect all other
184    --  interpretations that are defined in the scope denoted by the prefix.
185
186    --  For records, protected types, and tasks, their local entities are
187    --  removed from visibility chains on exit from the corresponding scope.
188    --  From the outside, these entities are always accessed by selected
189    --  notation, and the entity chain for the record type, protected type,
190    --  etc. is traversed sequentially in  order to find the designated entity.
191
192    --  The discriminants of a type and the operations of a protected type or
193    --  task are unchained on  exit from the first view of the type, (such as
194    --  a private or incomplete type declaration, or a protected type speci-
195    --  fication) and re-chained when compiling the second view.
196
197    --  In the case of operators,  we do not make operators on derived types
198    --  explicit. As a result, the notation P."+" may denote either a user-
199    --  defined function with name "+", or else an implicit declaration of the
200    --  operator "+" in package P. The resolution of expanded names always
201    --  tries to resolve an operator name as such an implicitly defined entity,
202    --  in addition to looking for explicit declarations.
203
204    --  All forms of names that denote entities (simple names, expanded names,
205    --  character literals in some cases) have a Entity attribute, which
206    --  identifies the entity denoted by the name.
207
208    ---------------------
209    -- The Scope Stack --
210    ---------------------
211
212    --  The Scope stack keeps track of the scopes currently been compiled.
213    --  Every entity that contains declarations (including records) is placed
214    --  on the scope stack while it is being processed, and removed at the end.
215    --  Whenever a non-package scope is exited, the entities defined therein
216    --  are removed from the visibility table, so that entities in outer scopes
217    --  become visible (see previous description). On entry to Sem, the scope
218    --  stack only contains the package Standard. As usual, subunits complicate
219    --  this picture ever so slightly.
220
221    --  The Rtsfind mechanism can force a call to Semantics while another
222    --  compilation is in progress. The unit retrieved by Rtsfind must be
223    --  compiled in  its own context, and has no access to the visibility of
224    --  the unit currently being compiled. The procedures Save_Scope_Stack and
225    --  Restore_Scope_Stack make entities in current open scopes invisible
226    --  before compiling the retrieved unit, and restore the compilation
227    --  environment afterwards.
228
229    ------------------------
230    -- Compiling subunits --
231    ------------------------
232
233    --  Subunits must be compiled in the environment of the corresponding stub,
234    --  that is to say with the same visibility into the parent (and its
235    --  context) that is available at the point of the stub declaration, but
236    --  with the additional visibility provided by the context clause of the
237    --  subunit itself. As a result, compilation of a subunit forces compilation
238    --  of the parent (see description in lib-). At the point of the stub
239    --  declaration, Analyze is called recursively to compile the proper body of
240    --  the subunit, but without reinitializing the names table, nor the scope
241    --  stack (i.e. standard is not pushed on the stack). In this fashion the
242    --  context of the subunit is added to the context of the parent, and the
243    --  subunit is compiled in the correct environment. Note that in the course
244    --  of processing the context of a subunit, Standard will appear twice on
245    --  the scope stack: once for the parent of the subunit, and once for the
246    --  unit in the context clause being compiled. However, the two sets of
247    --  entities are not linked by homonym chains, so that the compilation of
248    --  any context unit happens in a fresh visibility environment.
249
250    -------------------------------
251    -- Processing of USE Clauses --
252    -------------------------------
253
254    --  Every defining occurrence has a flag indicating if it is potentially use
255    --  visible. Resolution of simple names examines this flag. The processing
256    --  of use clauses consists in setting this flag on all visible entities
257    --  defined in the corresponding package. On exit from the scope of the use
258    --  clause, the corresponding flag must be reset. However, a package may
259    --  appear in several nested use clauses (pathological but legal, alas!)
260    --  which forces us to use a slightly more involved scheme:
261
262    --    a) The defining occurrence for a package holds a flag -In_Use- to
263    --    indicate that it is currently in the scope of a use clause. If a
264    --    redundant use clause is encountered, then the corresponding occurrence
265    --    of the package name is flagged -Redundant_Use-.
266
267    --    b) On exit from a scope, the use clauses in its declarative part are
268    --    scanned. The visibility flag is reset in all entities declared in
269    --    package named in a use clause, as long as the package is not flagged
270    --    as being in a redundant use clause (in which case the outer use
271    --    clause is still in effect, and the direct visibility of its entities
272    --    must be retained).
273
274    --  Note that entities are not removed from their homonym chains on exit
275    --  from the package specification. A subsequent use clause does not need
276    --  to rechain the visible entities, but only to establish their direct
277    --  visibility.
278
279    -----------------------------------
280    -- Handling private declarations --
281    -----------------------------------
282
283    --  The principle that each entity has a single defining occurrence clashes
284    --  with the presence of two separate definitions for private types: the
285    --  first is the private type declaration, and second is the full type
286    --  declaration. It is important that all references to the type point to
287    --  the same defining occurrence, namely the first one. To enforce the two
288    --  separate views of the entity, the corresponding information is swapped
289    --  between the two declarations. Outside of the package, the defining
290    --  occurrence only contains the private declaration information, while in
291    --  the private part and the body of the package the defining occurrence
292    --  contains the full declaration. To simplify the swap, the defining
293    --  occurrence that currently holds the private declaration points to the
294    --  full declaration. During semantic processing the defining occurrence
295    --  also points to a list of private dependents, that is to say access types
296    --  or composite types whose designated types or component types are
297    --  subtypes or derived types of the private type in question. After the
298    --  full declaration has been seen, the private dependents are updated to
299    --  indicate that they have full definitions.
300
301    ------------------------------------
302    -- Handling of Undefined Messages --
303    ------------------------------------
304
305    --  In normal mode, only the first use of an undefined identifier generates
306    --  a message. The table Urefs is used to record error messages that have
307    --  been issued so that second and subsequent ones do not generate further
308    --  messages. However, the second reference causes text to be added to the
309    --  original undefined message noting "(more references follow)". The
310    --  full error list option (-gnatf) forces messages to be generated for
311    --  every reference and disconnects the use of this table.
312
313    type Uref_Entry is record
314       Node : Node_Id;
315       --  Node for identifier for which original message was posted. The
316       --  Chars field of this identifier is used to detect later references
317       --  to the same identifier.
318
319       Err : Error_Msg_Id;
320       --  Records error message Id of original undefined message. Reset to
321       --  No_Error_Msg after the second occurrence, where it is used to add
322       --  text to the original message as described above.
323
324       Nvis : Boolean;
325       --  Set if the message is not visible rather than undefined
326
327       Loc : Source_Ptr;
328       --  Records location of error message. Used to make sure that we do
329       --  not consider a, b : undefined as two separate instances, which
330       --  would otherwise happen, since the parser converts this sequence
331       --  to a : undefined; b : undefined.
332
333    end record;
334
335    package Urefs is new Table.Table (
336      Table_Component_Type => Uref_Entry,
337      Table_Index_Type     => Nat,
338      Table_Low_Bound      => 1,
339      Table_Initial        => 10,
340      Table_Increment      => 100,
341      Table_Name           => "Urefs");
342
343    Candidate_Renaming : Entity_Id;
344    --  Holds a candidate interpretation that appears in a subprogram renaming
345    --  declaration and does not match the given specification, but matches at
346    --  least on the first formal. Allows better error message when given
347    --  specification omits defaulted parameters, a common error.
348
349    -----------------------
350    -- Local Subprograms --
351    -----------------------
352
353    procedure Analyze_Generic_Renaming
354      (N : Node_Id;
355       K : Entity_Kind);
356    --  Common processing for all three kinds of generic renaming declarations.
357    --  Enter new name and indicate that it renames the generic unit.
358
359    procedure Analyze_Renamed_Character
360      (N       : Node_Id;
361       New_S   : Entity_Id;
362       Is_Body : Boolean);
363    --  Renamed entity is given by a character literal, which must belong
364    --  to the return type of the new entity. Is_Body indicates whether the
365    --  declaration is a renaming_as_body. If the original declaration has
366    --  already been frozen (because of an intervening body, e.g.) the body of
367    --  the function must be built now. The same applies to the following
368    --  various renaming procedures.
369
370    procedure Analyze_Renamed_Dereference
371      (N       : Node_Id;
372       New_S   : Entity_Id;
373       Is_Body : Boolean);
374    --  Renamed entity is given by an explicit dereference. Prefix must be a
375    --  conformant access_to_subprogram type.
376
377    procedure Analyze_Renamed_Entry
378      (N       : Node_Id;
379       New_S   : Entity_Id;
380       Is_Body : Boolean);
381    --  If the renamed entity in a subprogram renaming is an entry or protected
382    --  subprogram, build a body for the new entity whose only statement is a
383    --  call to the renamed entity.
384
385    procedure Analyze_Renamed_Family_Member
386      (N       : Node_Id;
387       New_S   : Entity_Id;
388       Is_Body : Boolean);
389    --  Used when the renamed entity is an indexed component. The prefix must
390    --  denote an entry family.
391
392    procedure Analyze_Renamed_Primitive_Operation
393      (N       : Node_Id;
394       New_S   : Entity_Id;
395       Is_Body : Boolean);
396    --  If the renamed entity in a subprogram renaming is a primitive operation
397    --  or a class-wide operation in prefix form, save the target object, which
398    --  must be added to the list of actuals in any subsequent call.
399
400    function Applicable_Use (Pack_Name : Node_Id) return Boolean;
401    --  Common code to Use_One_Package and Set_Use, to determine whether
402    --  use clause must be processed. Pack_Name is an entity name that
403    --  references the package in question.
404
405    procedure Attribute_Renaming (N : Node_Id);
406    --  Analyze renaming of attribute as subprogram. The renaming declaration N
407    --  is rewritten as a subprogram body that returns the attribute reference
408    --  applied to the formals of the function.
409
410    procedure Check_Frozen_Renaming (N : Node_Id; Subp : Entity_Id);
411    --  A renaming_as_body may occur after the entity of the original decla-
412    --  ration has been frozen. In that case, the body of the new entity must
413    --  be built now, because the usual mechanism of building the renamed
414    --  body at the point of freezing will not work. Subp is the subprogram
415    --  for which N provides the Renaming_As_Body.
416
417    procedure Check_In_Previous_With_Clause
418      (N   : Node_Id;
419       Nam : Node_Id);
420    --  N is a use_package clause and Nam the package name, or N is a use_type
421    --  clause and Nam is the prefix of the type name. In either case, verify
422    --  that the package is visible at that point in the context: either  it
423    --  appears in a previous with_clause, or because it is a fully qualified
424    --  name and the root ancestor appears in a previous with_clause.
425
426    procedure Check_Library_Unit_Renaming (N : Node_Id; Old_E : Entity_Id);
427    --  Verify that the entity in a renaming declaration that is a library unit
428    --  is itself a library unit and not a nested unit or subunit. Also check
429    --  that if the renaming is a child unit of a generic parent, then the
430    --  renamed unit must also be a child unit of that parent. Finally, verify
431    --  that a renamed generic unit is not an implicit child declared within
432    --  an instance of the parent.
433
434    procedure Chain_Use_Clause (N : Node_Id);
435    --  Chain use clause onto list of uses clauses headed by First_Use_Clause in
436    --  the proper scope table entry. This is usually the current scope, but it
437    --  will be an inner scope when installing the use clauses of the private
438    --  declarations of a parent unit prior to compiling the private part of a
439    --  child unit. This chain is traversed when installing/removing use clauses
440    --  when compiling a subunit or instantiating a generic body on the fly,
441    --  when it is necessary to save and restore full environments.
442
443    function Has_Implicit_Character_Literal (N : Node_Id) return Boolean;
444    --  Find a type derived from Character or Wide_Character in the prefix of N.
445    --  Used to resolved qualified names whose selector is a character literal.
446
447    function Has_Private_With (E : Entity_Id) return Boolean;
448    --  Ada 2005 (AI-262): Determines if the current compilation unit has a
449    --  private with on E.
450
451    procedure Find_Expanded_Name (N : Node_Id);
452    --  Selected component is known to be expanded name. Verify legality of
453    --  selector given the scope denoted by prefix.
454
455    function Find_Renamed_Entity
456      (N         : Node_Id;
457       Nam       : Node_Id;
458       New_S     : Entity_Id;
459       Is_Actual : Boolean := False) return Entity_Id;
460    --  Find the renamed entity that corresponds to the given parameter profile
461    --  in a subprogram renaming declaration. The renamed entity may be an
462    --  operator, a subprogram, an entry, or a protected operation. Is_Actual
463    --  indicates that the renaming is the one generated for an actual subpro-
464    --  gram in an instance, for which special visibility checks apply.
465
466    function Has_Implicit_Operator (N : Node_Id) return Boolean;
467    --  N is an expanded name whose selector is an operator name (e.g. P."+").
468    --  declarative part contains an implicit declaration of an operator if it
469    --  has a declaration of a type to which one of the predefined operators
470    --  apply. The existence of this routine is an implementation artifact. A
471    --  more straightforward but more space-consuming choice would be to make
472    --  all inherited operators explicit in the symbol table.
473
474    procedure Inherit_Renamed_Profile (New_S : Entity_Id; Old_S : Entity_Id);
475    --  A subprogram defined by a renaming declaration inherits the parameter
476    --  profile of the renamed entity. The subtypes given in the subprogram
477    --  specification are discarded and replaced with those of the renamed
478    --  subprogram, which are then used to recheck the default values.
479
480    function Is_Appropriate_For_Record (T : Entity_Id) return Boolean;
481    --  Prefix is appropriate for record if it is of a record type, or an access
482    --  to such.
483
484    function Is_Appropriate_For_Entry_Prefix (T : Entity_Id) return Boolean;
485    --  True if it is of a task type, a protected type, or else an access to one
486    --  of these types.
487
488    procedure Note_Redundant_Use (Clause : Node_Id);
489    --  Mark the name in a use clause as redundant if the corresponding entity
490    --  is already use-visible. Emit a warning if the use clause comes from
491    --  source and the proper warnings are enabled.
492
493    procedure Premature_Usage (N : Node_Id);
494    --  Diagnose usage of an entity before it is visible
495
496    procedure Use_One_Package (P : Entity_Id; N : Node_Id);
497    --  Make visible entities declared in package P potentially use-visible
498    --  in the current context. Also used in the analysis of subunits, when
499    --  re-installing use clauses of parent units. N is the use_clause that
500    --  names P (and possibly other packages).
501
502    procedure Use_One_Type (Id : Node_Id);
503    --  Id is the subtype mark from a use type clause. This procedure makes
504    --  the primitive operators of the type potentially use-visible.
505
506    procedure Write_Info;
507    --  Write debugging information on entities declared in current scope
508
509    procedure Write_Scopes;
510    pragma Warnings (Off, Write_Scopes);
511    --  Debugging information: dump all entities on scope stack
512
513    --------------------------------
514    -- Analyze_Exception_Renaming --
515    --------------------------------
516
517    --  The language only allows a single identifier, but the tree holds an
518    --  identifier list. The parser has already issued an error message if
519    --  there is more than one element in the list.
520
521    procedure Analyze_Exception_Renaming (N : Node_Id) is
522       Id  : constant Node_Id := Defining_Identifier (N);
523       Nam : constant Node_Id := Name (N);
524
525    begin
526       Enter_Name (Id);
527       Analyze (Nam);
528
529       Set_Ekind          (Id, E_Exception);
530       Set_Exception_Code (Id, Uint_0);
531       Set_Etype          (Id, Standard_Exception_Type);
532       Set_Is_Pure        (Id, Is_Pure (Current_Scope));
533
534       if not Is_Entity_Name (Nam) or else
535         Ekind (Entity (Nam)) /= E_Exception
536       then
537          Error_Msg_N ("invalid exception name in renaming", Nam);
538       else
539          if Present (Renamed_Object (Entity (Nam))) then
540             Set_Renamed_Object (Id, Renamed_Object (Entity (Nam)));
541          else
542             Set_Renamed_Object (Id, Entity (Nam));
543          end if;
544       end if;
545    end Analyze_Exception_Renaming;
546
547    ---------------------------
548    -- Analyze_Expanded_Name --
549    ---------------------------
550
551    procedure Analyze_Expanded_Name (N : Node_Id) is
552    begin
553       --  If the entity pointer is already set, this is an internal node, or a
554       --  node that is analyzed more than once, after a tree modification. In
555       --  such a case there is no resolution to perform, just set the type. For
556       --  completeness, analyze prefix as well.
557
558       if Present (Entity (N)) then
559          if Is_Type (Entity (N)) then
560             Set_Etype (N, Entity (N));
561          else
562             Set_Etype (N, Etype (Entity (N)));
563          end if;
564
565          Analyze (Prefix (N));
566          return;
567       else
568          Find_Expanded_Name (N);
569       end if;
570    end Analyze_Expanded_Name;
571
572    ---------------------------------------
573    -- Analyze_Generic_Function_Renaming --
574    ---------------------------------------
575
576    procedure Analyze_Generic_Function_Renaming  (N : Node_Id) is
577    begin
578       Analyze_Generic_Renaming (N, E_Generic_Function);
579    end Analyze_Generic_Function_Renaming;
580
581    --------------------------------------
582    -- Analyze_Generic_Package_Renaming --
583    --------------------------------------
584
585    procedure Analyze_Generic_Package_Renaming   (N : Node_Id) is
586    begin
587       --  Apply the Text_IO Kludge here, since we may be renaming one of the
588       --  subpackages of Text_IO, then join common routine.
589
590       Text_IO_Kludge (Name (N));
591
592       Analyze_Generic_Renaming (N, E_Generic_Package);
593    end Analyze_Generic_Package_Renaming;
594
595    ----------------------------------------
596    -- Analyze_Generic_Procedure_Renaming --
597    ----------------------------------------
598
599    procedure Analyze_Generic_Procedure_Renaming (N : Node_Id) is
600    begin
601       Analyze_Generic_Renaming (N, E_Generic_Procedure);
602    end Analyze_Generic_Procedure_Renaming;
603
604    ------------------------------
605    -- Analyze_Generic_Renaming --
606    ------------------------------
607
608    procedure Analyze_Generic_Renaming
609      (N : Node_Id;
610       K : Entity_Kind)
611    is
612       New_P : constant Entity_Id := Defining_Entity (N);
613       Old_P : Entity_Id;
614       Inst  : Boolean   := False; -- prevent junk warning
615
616    begin
617       if Name (N) = Error then
618          return;
619       end if;
620
621       Generate_Definition (New_P);
622
623       if Current_Scope /= Standard_Standard then
624          Set_Is_Pure (New_P, Is_Pure (Current_Scope));
625       end if;
626
627       if Nkind (Name (N)) = N_Selected_Component then
628          Check_Generic_Child_Unit (Name (N), Inst);
629       else
630          Analyze (Name (N));
631       end if;
632
633       if not Is_Entity_Name (Name (N)) then
634          Error_Msg_N ("expect entity name in renaming declaration", Name (N));
635          Old_P := Any_Id;
636       else
637          Old_P := Entity (Name (N));
638       end if;
639
640       Enter_Name (New_P);
641       Set_Ekind (New_P, K);
642
643       if Etype (Old_P) = Any_Type then
644          null;
645
646       elsif Ekind (Old_P) /= K then
647          Error_Msg_N ("invalid generic unit name", Name (N));
648
649       else
650          if Present (Renamed_Object (Old_P)) then
651             Set_Renamed_Object (New_P,  Renamed_Object (Old_P));
652          else
653             Set_Renamed_Object (New_P, Old_P);
654          end if;
655
656          Set_Is_Pure          (New_P, Is_Pure          (Old_P));
657          Set_Is_Preelaborated (New_P, Is_Preelaborated (Old_P));
658
659          Set_Etype (New_P, Etype (Old_P));
660          Set_Has_Completion (New_P);
661
662          if In_Open_Scopes (Old_P) then
663             Error_Msg_N ("within its scope, generic denotes its instance", N);
664          end if;
665
666          Check_Library_Unit_Renaming (N, Old_P);
667       end if;
668    end Analyze_Generic_Renaming;
669
670    -----------------------------
671    -- Analyze_Object_Renaming --
672    -----------------------------
673
674    procedure Analyze_Object_Renaming (N : Node_Id) is
675       Id  : constant Entity_Id := Defining_Identifier (N);
676       Dec : Node_Id;
677       Nam : constant Node_Id   := Name (N);
678       T   : Entity_Id;
679       T2  : Entity_Id;
680
681       function In_Generic_Scope (E : Entity_Id) return Boolean;
682       --  Determine whether entity E is inside a generic cope
683
684       ----------------------
685       -- In_Generic_Scope --
686       ----------------------
687
688       function In_Generic_Scope (E : Entity_Id) return Boolean is
689          S : Entity_Id;
690
691       begin
692          S := Scope (E);
693          while Present (S) and then S /= Standard_Standard loop
694             if Is_Generic_Unit (S) then
695                return True;
696             end if;
697
698             S := Scope (S);
699          end loop;
700
701          return False;
702       end In_Generic_Scope;
703
704    --  Start of processing for Analyze_Object_Renaming
705
706    begin
707       if Nam = Error then
708          return;
709       end if;
710
711       Set_Is_Pure (Id, Is_Pure (Current_Scope));
712       Enter_Name (Id);
713
714       --  The renaming of a component that depends on a discriminant requires
715       --  an actual subtype, because in subsequent use of the object Gigi will
716       --  be unable to locate the actual bounds. This explicit step is required
717       --  when the renaming is generated in removing side effects of an
718       --  already-analyzed expression.
719
720       if Nkind (Nam) = N_Selected_Component
721         and then Analyzed (Nam)
722       then
723          T := Etype (Nam);
724          Dec :=  Build_Actual_Subtype_Of_Component (Etype (Nam), Nam);
725
726          if Present (Dec) then
727             Insert_Action (N, Dec);
728             T := Defining_Identifier (Dec);
729             Set_Etype (Nam, T);
730          end if;
731
732          --  Complete analysis of the subtype mark in any case, for ASIS use
733
734          if Present (Subtype_Mark (N)) then
735             Find_Type (Subtype_Mark (N));
736          end if;
737
738       elsif Present (Subtype_Mark (N)) then
739          Find_Type (Subtype_Mark (N));
740          T := Entity (Subtype_Mark (N));
741          Analyze (Nam);
742
743          if Nkind (Nam) = N_Type_Conversion
744             and then not Is_Tagged_Type (T)
745          then
746             Error_Msg_N
747               ("renaming of conversion only allowed for tagged types", Nam);
748          end if;
749
750          Resolve (Nam, T);
751
752          --  Check that a class-wide object is not being renamed as an object
753          --  of a specific type. The test for access types is needed to exclude
754          --  cases where the renamed object is a dynamically tagged access
755          --  result, such as occurs in certain expansions.
756
757          if Is_Tagged_Type (T) then
758             Check_Dynamically_Tagged_Expression
759               (Expr        => Nam,
760                Typ         => T,
761                Related_Nod => N);
762          end if;
763
764       --  Ada 2005 (AI-230/AI-254): Access renaming
765
766       else pragma Assert (Present (Access_Definition (N)));
767          T := Access_Definition
768                 (Related_Nod => N,
769                  N           => Access_Definition (N));
770
771          Analyze (Nam);
772
773          --  Ada 2005 AI05-105: if the declaration has an anonymous access
774          --  type, the renamed object must also have an anonymous type, and
775          --  this is a name resolution rule. This was implicit in the last
776          --  part of the first sentence in 8.5.1.(3/2), and is made explicit
777          --  by this recent AI.
778
779          if not Is_Overloaded (Nam) then
780             if Ekind (Etype (Nam)) /= Ekind (T) then
781                Error_Msg_N
782                  ("expect anonymous access type in object renaming", N);
783             end if;
784
785          else
786             declare
787                I    : Interp_Index;
788                It   : Interp;
789                Typ  : Entity_Id := Empty;
790                Seen : Boolean   := False;
791
792             begin
793                Get_First_Interp (Nam, I, It);
794                while Present (It.Typ) loop
795
796                   --  Renaming is ambiguous if more than one candidate
797                   --  interpretation is type-conformant with the context.
798
799                   if Ekind (It.Typ) = Ekind (T) then
800                      if Ekind (T) = E_Anonymous_Access_Subprogram_Type
801                        and then
802                          Type_Conformant
803                            (Designated_Type (T), Designated_Type (It.Typ))
804                      then
805                         if not Seen then
806                            Seen := True;
807                         else
808                            Error_Msg_N
809                              ("ambiguous expression in renaming", Nam);
810                         end if;
811
812                      elsif Ekind (T) = E_Anonymous_Access_Type
813                        and then
814                          Covers (Designated_Type (T), Designated_Type (It.Typ))
815                      then
816                         if not Seen then
817                            Seen := True;
818                         else
819                            Error_Msg_N
820                              ("ambiguous expression in renaming", Nam);
821                         end if;
822                      end if;
823
824                      if Covers (T, It.Typ) then
825                         Typ := It.Typ;
826                         Set_Etype (Nam, Typ);
827                         Set_Is_Overloaded (Nam, False);
828                      end if;
829                   end if;
830
831                   Get_Next_Interp (I, It);
832                end loop;
833             end;
834          end if;
835
836          Resolve (Nam, T);
837
838          --  Ada 2005 (AI-231): "In the case where the type is defined by an
839          --  access_definition, the renamed entity shall be of an access-to-
840          --  constant type if and only if the access_definition defines an
841          --  access-to-constant type" ARM 8.5.1(4)
842
843          if Constant_Present (Access_Definition (N))
844            and then not Is_Access_Constant (Etype (Nam))
845          then
846             Error_Msg_N ("(Ada 2005): the renamed object is not "
847                          & "access-to-constant (RM 8.5.1(6))", N);
848
849          elsif not Constant_Present (Access_Definition (N))
850            and then Is_Access_Constant (Etype (Nam))
851          then
852             Error_Msg_N ("(Ada 2005): the renamed object is not "
853                          & "access-to-variable (RM 8.5.1(6))", N);
854          end if;
855
856          if Is_Access_Subprogram_Type (Etype (Nam)) then
857             Check_Subtype_Conformant
858               (Designated_Type (T), Designated_Type (Etype (Nam)));
859
860          elsif not Subtypes_Statically_Match
861                      (Designated_Type (T), Designated_Type (Etype (Nam)))
862          then
863             Error_Msg_N
864               ("subtype of renamed object does not statically match", N);
865          end if;
866       end if;
867
868       --  Special processing for renaming function return object. Some errors
869       --  and warnings are produced only for calls that come from source.
870
871       if Nkind (Nam) = N_Function_Call then
872          case Ada_Version is
873
874             --  Usage is illegal in Ada 83
875
876             when Ada_83 =>
877                if Comes_From_Source (Nam) then
878                   Error_Msg_N
879                     ("(Ada 83) cannot rename function return object", Nam);
880                end if;
881
882             --  In Ada 95, warn for odd case of renaming parameterless function
883             --  call if this is not a limited type (where this is useful).
884
885             when others =>
886                if Warn_On_Object_Renames_Function
887                  and then No (Parameter_Associations (Nam))
888                  and then not Is_Limited_Type (Etype (Nam))
889                  and then Comes_From_Source (Nam)
890                then
891                   Error_Msg_N
892                     ("?renaming function result object is suspicious", Nam);
893                   Error_Msg_NE
894                     ("\?function & will be called only once", Nam,
895                      Entity (Name (Nam)));
896                   Error_Msg_N
897                     ("\?suggest using an initialized constant object instead",
898                      Nam);
899                end if;
900
901                --  If the function call returns an unconstrained type, we must
902                --  build a constrained subtype for the new entity, in a way
903                --  similar to what is done for an object declaration with an
904                --  unconstrained nominal type.
905
906                if Is_Composite_Type (Etype (Nam))
907                  and then not Is_Constrained (Etype (Nam))
908                  and then not Has_Unknown_Discriminants (Etype (Nam))
909                  and then Expander_Active
910                then
911                   declare
912                      Loc  : constant Source_Ptr := Sloc (N);
913                      Subt : constant Entity_Id :=
914                               Make_Defining_Identifier (Loc,
915                                 Chars => New_Internal_Name ('T'));
916                   begin
917                      Remove_Side_Effects (Nam);
918                      Insert_Action (N,
919                        Make_Subtype_Declaration (Loc,
920                          Defining_Identifier => Subt,
921                          Subtype_Indication  =>
922                            Make_Subtype_From_Expr (Nam, Etype (Nam))));
923                      Rewrite (Subtype_Mark (N), New_Occurrence_Of (Subt, Loc));
924                      Set_Etype (Nam, Subt);
925                   end;
926                end if;
927          end case;
928       end if;
929
930       --  An object renaming requires an exact match of the type. Class-wide
931       --  matching is not allowed.
932
933       if Is_Class_Wide_Type (T)
934         and then Base_Type (Etype (Nam)) /= Base_Type (T)
935       then
936          Wrong_Type (Nam, T);
937       end if;
938
939       T2 := Etype (Nam);
940
941       --  (Ada 2005: AI-326): Handle wrong use of incomplete type
942
943       if Nkind (Nam) = N_Explicit_Dereference
944         and then Ekind (Etype (T2)) = E_Incomplete_Type
945       then
946          Error_Msg_NE ("invalid use of incomplete type&", Id, T2);
947          return;
948
949       elsif Ekind (Etype (T)) = E_Incomplete_Type then
950          Error_Msg_NE ("invalid use of incomplete type&", Id, T);
951          return;
952       end if;
953
954       --  Ada 2005 (AI-327)
955
956       if Ada_Version >= Ada_05
957         and then Nkind (Nam) = N_Attribute_Reference
958         and then Attribute_Name (Nam) = Name_Priority
959       then
960          null;
961
962       elsif Ada_Version >= Ada_05
963         and then Nkind (Nam) in N_Has_Entity
964       then
965          declare
966             Nam_Decl : Node_Id;
967             Nam_Ent  : Entity_Id;
968
969          begin
970             if Nkind (Nam) = N_Attribute_Reference then
971                Nam_Ent := Entity (Prefix (Nam));
972             else
973                Nam_Ent := Entity (Nam);
974             end if;
975
976             Nam_Decl := Parent (Nam_Ent);
977
978             if Has_Null_Exclusion (N)
979               and then not Has_Null_Exclusion (Nam_Decl)
980             then
981                --  Ada 2005 (AI-423): If the object name denotes a generic
982                --  formal object of a generic unit G, and the object renaming
983                --  declaration occurs within the body of G or within the body
984                --  of a generic unit declared within the declarative region
985                --  of G, then the declaration of the formal object of G must
986                --  have a null exclusion or a null-excluding subtype.
987
988                if Is_Formal_Object (Nam_Ent)
989                     and then In_Generic_Scope (Id)
990                then
991                   if not Can_Never_Be_Null (Etype (Nam_Ent)) then
992                      Error_Msg_N
993                        ("renamed formal does not exclude `NULL` "
994                         & "(RM 8.5.1(4.6/2))", N);
995
996                   elsif In_Package_Body (Scope (Id)) then
997                      Error_Msg_N
998                        ("formal object does not have a null exclusion"
999                         & "(RM 8.5.1(4.6/2))", N);
1000                   end if;
1001
1002                --  Ada 2005 (AI-423): Otherwise, the subtype of the object name
1003                --  shall exclude null.
1004
1005                elsif not Can_Never_Be_Null (Etype (Nam_Ent)) then
1006                   Error_Msg_N
1007                     ("renamed object does not exclude `NULL` "
1008                      & "(RM 8.5.1(4.6/2))", N);
1009
1010                --  An instance is illegal if it contains a renaming that
1011                --  excludes null, and the actual does not. The renaming
1012                --  declaration has already indicated that the declaration
1013                --  of the renamed actual in the instance will raise
1014                --  constraint_error.
1015
1016                elsif Nkind (Nam_Decl) = N_Object_Declaration
1017                  and then In_Instance
1018                  and then Present
1019                    (Corresponding_Generic_Association (Nam_Decl))
1020                  and then Nkind (Expression (Nam_Decl))
1021                    = N_Raise_Constraint_Error
1022                then
1023                   Error_Msg_N
1024                     ("renamed actual does not exclude `NULL` "
1025                      & "(RM 8.5.1(4.6/2))", N);
1026
1027                --  Finally, if there is a null exclusion, the subtype mark
1028                --  must not be null-excluding.
1029
1030                elsif No (Access_Definition (N))
1031                  and then Can_Never_Be_Null (T)
1032                then
1033                   Error_Msg_NE
1034                     ("`NOT NULL` not allowed (& already excludes null)",
1035                       N, T);
1036
1037                end if;
1038
1039             elsif Can_Never_Be_Null (T)
1040               and then not Can_Never_Be_Null (Etype (Nam_Ent))
1041             then
1042                Error_Msg_N
1043                  ("renamed object does not exclude `NULL` "
1044                   & "(RM 8.5.1(4.6/2))", N);
1045
1046             elsif Has_Null_Exclusion (N)
1047               and then No (Access_Definition (N))
1048               and then Can_Never_Be_Null (T)
1049             then
1050                Error_Msg_NE
1051                  ("`NOT NULL` not allowed (& already excludes null)", N, T);
1052             end if;
1053          end;
1054       end if;
1055
1056       Set_Ekind (Id, E_Variable);
1057       Init_Size_Align (Id);
1058
1059       if T = Any_Type or else Etype (Nam) = Any_Type then
1060          return;
1061
1062       --  Verify that the renamed entity is an object or a function call. It
1063       --  may have been rewritten in several ways.
1064
1065       elsif Is_Object_Reference (Nam) then
1066          if Comes_From_Source (N)
1067            and then Is_Dependent_Component_Of_Mutable_Object (Nam)
1068          then
1069             Error_Msg_N
1070               ("illegal renaming of discriminant-dependent component", Nam);
1071          end if;
1072
1073       --  A static function call may have been folded into a literal
1074
1075       elsif Nkind (Original_Node (Nam)) = N_Function_Call
1076
1077             --  When expansion is disabled, attribute reference is not
1078             --  rewritten as function call. Otherwise it may be rewritten
1079             --  as a conversion, so check original node.
1080
1081         or else (Nkind (Original_Node (Nam)) = N_Attribute_Reference
1082                   and then Is_Function_Attribute_Name
1083                              (Attribute_Name (Original_Node (Nam))))
1084
1085             --  Weird but legal, equivalent to renaming a function call.
1086             --  Illegal if the literal is the result of constant-folding an
1087             --  attribute reference that is not a function.
1088
1089         or else (Is_Entity_Name (Nam)
1090                   and then Ekind (Entity (Nam)) = E_Enumeration_Literal
1091                   and then
1092                     Nkind (Original_Node (Nam)) /= N_Attribute_Reference)
1093
1094         or else (Nkind (Nam) = N_Type_Conversion
1095                     and then Is_Tagged_Type (Entity (Subtype_Mark (Nam))))
1096       then
1097          null;
1098
1099       elsif Nkind (Nam) = N_Type_Conversion then
1100          Error_Msg_N
1101            ("renaming of conversion only allowed for tagged types", Nam);
1102
1103       --  Ada 2005 (AI-327)
1104
1105       elsif Ada_Version >= Ada_05
1106         and then Nkind (Nam) = N_Attribute_Reference
1107         and then Attribute_Name (Nam) = Name_Priority
1108       then
1109          null;
1110
1111       --  Allow internally generated x'Reference expression
1112
1113       elsif Nkind (Nam) = N_Reference then
1114          null;
1115
1116       else
1117          Error_Msg_N ("expect object name in renaming", Nam);
1118       end if;
1119
1120       Set_Etype (Id, T2);
1121
1122       if not Is_Variable (Nam) then
1123          Set_Ekind               (Id, E_Constant);
1124          Set_Never_Set_In_Source (Id, True);
1125          Set_Is_True_Constant    (Id, True);
1126       end if;
1127
1128       Set_Renamed_Object (Id, Nam);
1129    end Analyze_Object_Renaming;
1130
1131    ------------------------------
1132    -- Analyze_Package_Renaming --
1133    ------------------------------
1134
1135    procedure Analyze_Package_Renaming (N : Node_Id) is
1136       New_P : constant Entity_Id := Defining_Entity (N);
1137       Old_P : Entity_Id;
1138       Spec  : Node_Id;
1139
1140    begin
1141       if Name (N) = Error then
1142          return;
1143       end if;
1144
1145       --  Apply Text_IO kludge here since we may be renaming a child of Text_IO
1146
1147       Text_IO_Kludge (Name (N));
1148
1149       if Current_Scope /= Standard_Standard then
1150          Set_Is_Pure (New_P, Is_Pure (Current_Scope));
1151       end if;
1152
1153       Enter_Name (New_P);
1154       Analyze (Name (N));
1155
1156       if Is_Entity_Name (Name (N)) then
1157          Old_P := Entity (Name (N));
1158       else
1159          Old_P := Any_Id;
1160       end if;
1161
1162       if Etype (Old_P) = Any_Type then
1163          Error_Msg_N ("expect package name in renaming", Name (N));
1164
1165       elsif Ekind (Old_P) /= E_Package
1166         and then not (Ekind (Old_P) = E_Generic_Package
1167                        and then In_Open_Scopes (Old_P))
1168       then
1169          if Ekind (Old_P) = E_Generic_Package then
1170             Error_Msg_N
1171                ("generic package cannot be renamed as a package", Name (N));
1172          else
1173             Error_Msg_Sloc := Sloc (Old_P);
1174             Error_Msg_NE
1175              ("expect package name in renaming, found& declared#",
1176                Name (N), Old_P);
1177          end if;
1178
1179          --  Set basic attributes to minimize cascaded errors
1180
1181          Set_Ekind (New_P, E_Package);
1182          Set_Etype (New_P, Standard_Void_Type);
1183
1184       --  Here for OK package renaming
1185
1186       else
1187          --  Entities in the old package are accessible through the renaming
1188          --  entity. The simplest implementation is to have both packages share
1189          --  the entity list.
1190
1191          Set_Ekind (New_P, E_Package);
1192          Set_Etype (New_P, Standard_Void_Type);
1193
1194          if Present (Renamed_Object (Old_P)) then
1195             Set_Renamed_Object (New_P,  Renamed_Object (Old_P));
1196          else
1197             Set_Renamed_Object (New_P, Old_P);
1198          end if;
1199
1200          Set_Has_Completion (New_P);
1201
1202          Set_First_Entity (New_P,  First_Entity (Old_P));
1203          Set_Last_Entity  (New_P,  Last_Entity  (Old_P));
1204          Set_First_Private_Entity (New_P, First_Private_Entity (Old_P));
1205          Check_Library_Unit_Renaming (N, Old_P);
1206          Generate_Reference (Old_P, Name (N));
1207
1208          --  If the renaming is in the visible part of a package, then we set
1209          --  Renamed_In_Spec for the renamed package, to prevent giving
1210          --  warnings about no entities referenced. Such a warning would be
1211          --  overenthusiastic, since clients can see entities in the renamed
1212          --  package via the visible package renaming.
1213
1214          declare
1215             Ent : constant Entity_Id := Cunit_Entity (Current_Sem_Unit);
1216          begin
1217             if Ekind (Ent) = E_Package
1218               and then not In_Private_Part (Ent)
1219               and then In_Extended_Main_Source_Unit (N)
1220               and then Ekind (Old_P) = E_Package
1221             then
1222                Set_Renamed_In_Spec (Old_P);
1223             end if;
1224          end;
1225
1226          --  If this is the renaming declaration of a package instantiation
1227          --  within itself, it is the declaration that ends the list of actuals
1228          --  for the instantiation. At this point, the subtypes that rename
1229          --  the actuals are flagged as generic, to avoid spurious ambiguities
1230          --  if the actuals for two distinct formals happen to coincide. If
1231          --  the actual is a private type, the subtype has a private completion
1232          --  that is flagged in the same fashion.
1233
1234          --  Resolution is identical to what is was in the original generic.
1235          --  On exit from the generic instance, these are turned into regular
1236          --  subtypes again, so they are compatible with types in their class.
1237
1238          if not Is_Generic_Instance (Old_P) then
1239             return;
1240          else
1241             Spec := Specification (Unit_Declaration_Node (Old_P));
1242          end if;
1243
1244          if Nkind (Spec) = N_Package_Specification
1245            and then Present (Generic_Parent (Spec))
1246            and then Old_P = Current_Scope
1247            and then Chars (New_P) = Chars (Generic_Parent (Spec))
1248          then
1249             declare
1250                E : Entity_Id;
1251
1252             begin
1253                E := First_Entity (Old_P);
1254                while Present (E)
1255                  and then E /= New_P
1256                loop
1257                   if Is_Type (E)
1258                     and then Nkind (Parent (E)) = N_Subtype_Declaration
1259                   then
1260                      Set_Is_Generic_Actual_Type (E);
1261
1262                      if Is_Private_Type (E)
1263                        and then Present (Full_View (E))
1264                      then
1265                         Set_Is_Generic_Actual_Type (Full_View (E));
1266                      end if;
1267                   end if;
1268
1269                   Next_Entity (E);
1270                end loop;
1271             end;
1272          end if;
1273       end if;
1274    end Analyze_Package_Renaming;
1275
1276    -------------------------------
1277    -- Analyze_Renamed_Character --
1278    -------------------------------
1279
1280    procedure Analyze_Renamed_Character
1281      (N       : Node_Id;
1282       New_S   : Entity_Id;
1283       Is_Body : Boolean)
1284    is
1285       C : constant Node_Id := Name (N);
1286
1287    begin
1288       if Ekind (New_S) = E_Function then
1289          Resolve (C, Etype (New_S));
1290
1291          if Is_Body then
1292             Check_Frozen_Renaming (N, New_S);
1293          end if;
1294
1295       else
1296          Error_Msg_N ("character literal can only be renamed as function", N);
1297       end if;
1298    end Analyze_Renamed_Character;
1299
1300    ---------------------------------
1301    -- Analyze_Renamed_Dereference --
1302    ---------------------------------
1303
1304    procedure Analyze_Renamed_Dereference
1305      (N       : Node_Id;
1306       New_S   : Entity_Id;
1307       Is_Body : Boolean)
1308    is
1309       Nam : constant Node_Id := Name (N);
1310       P   : constant Node_Id := Prefix (Nam);
1311       Typ : Entity_Id;
1312       Ind : Interp_Index;
1313       It  : Interp;
1314
1315    begin
1316       if not Is_Overloaded (P) then
1317          if Ekind (Etype (Nam)) /= E_Subprogram_Type
1318            or else not Type_Conformant (Etype (Nam), New_S) then
1319             Error_Msg_N ("designated type does not match specification", P);
1320          else
1321             Resolve (P);
1322          end if;
1323
1324          return;
1325
1326       else
1327          Typ := Any_Type;
1328          Get_First_Interp (Nam, Ind, It);
1329
1330          while Present (It.Nam) loop
1331
1332             if Ekind (It.Nam) = E_Subprogram_Type
1333               and then Type_Conformant (It.Nam, New_S) then
1334
1335                if Typ /= Any_Id then
1336                   Error_Msg_N ("ambiguous renaming", P);
1337                   return;
1338                else
1339                   Typ := It.Nam;
1340                end if;
1341             end if;
1342
1343             Get_Next_Interp (Ind, It);
1344          end loop;
1345
1346          if Typ = Any_Type then
1347             Error_Msg_N ("designated type does not match specification", P);
1348          else
1349             Resolve (N, Typ);
1350
1351             if Is_Body then
1352                Check_Frozen_Renaming (N, New_S);
1353             end if;
1354          end if;
1355       end if;
1356    end Analyze_Renamed_Dereference;
1357
1358    ---------------------------
1359    -- Analyze_Renamed_Entry --
1360    ---------------------------
1361
1362    procedure Analyze_Renamed_Entry
1363      (N       : Node_Id;
1364       New_S   : Entity_Id;
1365       Is_Body : Boolean)
1366    is
1367       Nam   : constant Node_Id := Name (N);
1368       Sel   : constant Node_Id := Selector_Name (Nam);
1369       Old_S : Entity_Id;
1370
1371    begin
1372       if Entity (Sel) = Any_Id then
1373
1374          --  Selector is undefined on prefix. Error emitted already
1375
1376          Set_Has_Completion (New_S);
1377          return;
1378       end if;
1379
1380       --  Otherwise find renamed entity and build body of New_S as a call to it
1381
1382       Old_S := Find_Renamed_Entity (N, Selector_Name (Nam), New_S);
1383
1384       if Old_S = Any_Id then
1385          Error_Msg_N (" no subprogram or entry matches specification",  N);
1386       else
1387          if Is_Body then
1388             Check_Subtype_Conformant (New_S, Old_S, N);
1389             Generate_Reference (New_S, Defining_Entity (N), 'b');
1390             Style.Check_Identifier (Defining_Entity (N), New_S);
1391
1392          else
1393             --  Only mode conformance required for a renaming_as_declaration
1394
1395             Check_Mode_Conformant (New_S, Old_S, N);
1396          end if;
1397
1398          Inherit_Renamed_Profile (New_S, Old_S);
1399
1400          --  The prefix can be an arbitrary expression that yields a task type,
1401          --  so it must be resolved.
1402
1403          Resolve (Prefix (Nam), Scope (Old_S));
1404       end if;
1405
1406       Set_Convention (New_S, Convention (Old_S));
1407       Set_Has_Completion (New_S, Inside_A_Generic);
1408
1409       if Is_Body then
1410          Check_Frozen_Renaming (N, New_S);
1411       end if;
1412    end Analyze_Renamed_Entry;
1413
1414    -----------------------------------
1415    -- Analyze_Renamed_Family_Member --
1416    -----------------------------------
1417
1418    procedure Analyze_Renamed_Family_Member
1419      (N       : Node_Id;
1420       New_S   : Entity_Id;
1421       Is_Body : Boolean)
1422    is
1423       Nam   : constant Node_Id := Name (N);
1424       P     : constant Node_Id := Prefix (Nam);
1425       Old_S : Entity_Id;
1426
1427    begin
1428       if (Is_Entity_Name (P) and then Ekind (Entity (P)) = E_Entry_Family)
1429         or else (Nkind (P) = N_Selected_Component
1430                    and then
1431                  Ekind (Entity (Selector_Name (P))) = E_Entry_Family)
1432       then
1433          if Is_Entity_Name (P) then
1434             Old_S := Entity (P);
1435          else
1436             Old_S := Entity (Selector_Name (P));
1437          end if;
1438
1439          if not Entity_Matches_Spec (Old_S, New_S) then
1440             Error_Msg_N ("entry family does not match specification", N);
1441
1442          elsif Is_Body then
1443             Check_Subtype_Conformant (New_S, Old_S, N);
1444             Generate_Reference (New_S, Defining_Entity (N), 'b');
1445             Style.Check_Identifier (Defining_Entity (N), New_S);
1446          end if;
1447
1448       else
1449          Error_Msg_N ("no entry family matches specification", N);
1450       end if;
1451
1452       Set_Has_Completion (New_S, Inside_A_Generic);
1453
1454       if Is_Body then
1455          Check_Frozen_Renaming (N, New_S);
1456       end if;
1457    end Analyze_Renamed_Family_Member;
1458
1459    -----------------------------------------
1460    -- Analyze_Renamed_Primitive_Operation --
1461    -----------------------------------------
1462
1463    procedure Analyze_Renamed_Primitive_Operation
1464      (N       : Node_Id;
1465       New_S   : Entity_Id;
1466       Is_Body : Boolean)
1467    is
1468       Old_S : Entity_Id;
1469
1470       function Conforms
1471         (Subp : Entity_Id;
1472          Ctyp : Conformance_Type) return Boolean;
1473       --  Verify that the signatures of the renamed entity and the new entity
1474       --  match. The first formal of the renamed entity is skipped because it
1475       --  is the target object in any subsequent call.
1476
1477       function Conforms
1478         (Subp : Entity_Id;
1479          Ctyp : Conformance_Type) return Boolean
1480       is
1481          Old_F : Entity_Id;
1482          New_F : Entity_Id;
1483
1484       begin
1485          if Ekind (Subp) /= Ekind (New_S) then
1486             return False;
1487          end if;
1488
1489          Old_F := Next_Formal (First_Formal (Subp));
1490          New_F := First_Formal (New_S);
1491          while Present (Old_F) and then Present (New_F) loop
1492             if not Conforming_Types (Etype (Old_F), Etype (New_F), Ctyp) then
1493                return False;
1494             end if;
1495
1496             if Ctyp >= Mode_Conformant
1497               and then Ekind (Old_F) /= Ekind (New_F)
1498             then
1499                return False;
1500             end if;
1501
1502             Next_Formal (New_F);
1503             Next_Formal (Old_F);
1504          end loop;
1505
1506          return True;
1507       end Conforms;
1508
1509    begin
1510       if not Is_Overloaded (Selector_Name (Name (N))) then
1511          Old_S := Entity (Selector_Name (Name (N)));
1512
1513          if not Conforms (Old_S, Type_Conformant) then
1514             Old_S := Any_Id;
1515          end if;
1516
1517       else
1518          --  Find the operation that matches the given signature
1519
1520          declare
1521             It  : Interp;
1522             Ind : Interp_Index;
1523
1524          begin
1525             Old_S := Any_Id;
1526             Get_First_Interp (Selector_Name (Name (N)), Ind, It);
1527
1528             while Present (It.Nam) loop
1529                if Conforms (It.Nam, Type_Conformant) then
1530                   Old_S := It.Nam;
1531                end if;
1532
1533                Get_Next_Interp (Ind, It);
1534             end loop;
1535          end;
1536       end if;
1537
1538       if Old_S = Any_Id then
1539          Error_Msg_N (" no subprogram or entry matches specification",  N);
1540
1541       else
1542          if Is_Body then
1543             if not Conforms (Old_S, Subtype_Conformant) then
1544                Error_Msg_N ("subtype conformance error in renaming", N);
1545             end if;
1546
1547             Generate_Reference (New_S, Defining_Entity (N), 'b');
1548             Style.Check_Identifier (Defining_Entity (N), New_S);
1549
1550          else
1551             --  Only mode conformance required for a renaming_as_declaration
1552
1553             if not Conforms (Old_S, Mode_Conformant) then
1554                Error_Msg_N ("mode conformance error in renaming", N);
1555             end if;
1556          end if;
1557
1558          --  Inherit_Renamed_Profile (New_S, Old_S);
1559
1560          --  The prefix can be an arbitrary expression that yields an
1561          --  object, so it must be resolved.
1562
1563          Resolve (Prefix (Name (N)));
1564       end if;
1565    end Analyze_Renamed_Primitive_Operation;
1566
1567    ---------------------------------
1568    -- Analyze_Subprogram_Renaming --
1569    ---------------------------------
1570
1571    procedure Analyze_Subprogram_Renaming (N : Node_Id) is
1572       Formal_Spec : constant Node_Id          := Corresponding_Formal_Spec (N);
1573       Is_Actual   : constant Boolean          := Present (Formal_Spec);
1574       Inst_Node   : Node_Id                   := Empty;
1575       Nam         : constant Node_Id          := Name (N);
1576       New_S       : Entity_Id;
1577       Old_S       : Entity_Id                 := Empty;
1578       Rename_Spec : Entity_Id;
1579       Save_AV     : constant Ada_Version_Type := Ada_Version;
1580       Save_AV_Exp : constant Ada_Version_Type := Ada_Version_Explicit;
1581       Spec        : constant Node_Id          := Specification (N);
1582
1583       procedure Check_Null_Exclusion
1584         (Ren : Entity_Id;
1585          Sub : Entity_Id);
1586       --  Ada 2005 (AI-423): Given renaming Ren of subprogram Sub, check the
1587       --  following AI rules:
1588       --
1589       --    If Ren is a renaming of a formal subprogram and one of its
1590       --    parameters has a null exclusion, then the corresponding formal
1591       --    in Sub must also have one. Otherwise the subtype of the Sub's
1592       --    formal parameter must exclude null.
1593       --
1594       --    If Ren is a renaming of a formal function and its return
1595       --    profile has a null exclusion, then Sub's return profile must
1596       --    have one. Otherwise the subtype of Sub's return profile must
1597       --    exclude null.
1598
1599       function Original_Subprogram (Subp : Entity_Id) return Entity_Id;
1600       --  Find renamed entity when the declaration is a renaming_as_body and
1601       --  the renamed entity may itself be a renaming_as_body. Used to enforce
1602       --  rule that a renaming_as_body is illegal if the declaration occurs
1603       --  before the subprogram it completes is frozen, and renaming indirectly
1604       --  renames the subprogram itself.(Defect Report 8652/0027).
1605
1606       --------------------------
1607       -- Check_Null_Exclusion --
1608       --------------------------
1609
1610       procedure Check_Null_Exclusion
1611         (Ren : Entity_Id;
1612          Sub : Entity_Id)
1613       is
1614          Ren_Formal : Entity_Id;
1615          Sub_Formal : Entity_Id;
1616
1617       begin
1618          --  Parameter check
1619
1620          Ren_Formal := First_Formal (Ren);
1621          Sub_Formal := First_Formal (Sub);
1622          while Present (Ren_Formal)
1623            and then Present (Sub_Formal)
1624          loop
1625             if Has_Null_Exclusion (Parent (Ren_Formal))
1626               and then
1627                 not (Has_Null_Exclusion (Parent (Sub_Formal))
1628                        or else Can_Never_Be_Null (Etype (Sub_Formal)))
1629             then
1630                Error_Msg_NE
1631                  ("`NOT NULL` required for parameter &",
1632                   Parent (Sub_Formal), Sub_Formal);
1633             end if;
1634
1635             Next_Formal (Ren_Formal);
1636             Next_Formal (Sub_Formal);
1637          end loop;
1638
1639          --  Return profile check
1640
1641          if Nkind (Parent (Ren)) = N_Function_Specification
1642            and then Nkind (Parent (Sub)) = N_Function_Specification
1643            and then Has_Null_Exclusion (Parent (Ren))
1644            and then
1645              not (Has_Null_Exclusion (Parent (Sub))
1646                     or else Can_Never_Be_Null (Etype (Sub)))
1647          then
1648             Error_Msg_N
1649               ("return must specify `NOT NULL`",
1650                Result_Definition (Parent (Sub)));
1651          end if;
1652       end Check_Null_Exclusion;
1653
1654       -------------------------
1655       -- Original_Subprogram --
1656       -------------------------
1657
1658       function Original_Subprogram (Subp : Entity_Id) return Entity_Id is
1659          Orig_Decl : Node_Id;
1660          Orig_Subp : Entity_Id;
1661
1662       begin
1663          --  First case: renamed entity is itself a renaming
1664
1665          if Present (Alias (Subp)) then
1666             return Alias (Subp);
1667
1668          elsif
1669            Nkind (Unit_Declaration_Node (Subp)) = N_Subprogram_Declaration
1670              and then Present
1671               (Corresponding_Body (Unit_Declaration_Node (Subp)))
1672          then
1673             --  Check if renamed entity is a renaming_as_body
1674
1675             Orig_Decl :=
1676               Unit_Declaration_Node
1677                 (Corresponding_Body (Unit_Declaration_Node (Subp)));
1678
1679             if Nkind (Orig_Decl) = N_Subprogram_Renaming_Declaration then
1680                Orig_Subp := Entity (Name (Orig_Decl));
1681
1682                if Orig_Subp = Rename_Spec then
1683
1684                   --  Circularity detected
1685
1686                   return Orig_Subp;
1687
1688                else
1689                   return (Original_Subprogram (Orig_Subp));
1690                end if;
1691             else
1692                return Subp;
1693             end if;
1694          else
1695             return Subp;
1696          end if;
1697       end Original_Subprogram;
1698
1699    --  Start of processing for Analyze_Subprogram_Renaming
1700
1701    begin
1702       --  We must test for the attribute renaming case before the Analyze
1703       --  call because otherwise Sem_Attr will complain that the attribute
1704       --  is missing an argument when it is analyzed.
1705
1706       if Nkind (Nam) = N_Attribute_Reference then
1707
1708          --  In the case of an abstract formal subprogram association, rewrite
1709          --  an actual given by a stream attribute as the name of the
1710          --  corresponding stream primitive of the type.
1711
1712          --  In a generic context the stream operations are not generated, and
1713          --  this must be treated as a normal attribute reference, to be
1714          --  expanded in subsequent instantiations.
1715
1716          if Is_Actual and then Is_Abstract_Subprogram (Formal_Spec)
1717            and then Expander_Active
1718          then
1719             declare
1720                Stream_Prim : Entity_Id;
1721                Prefix_Type : constant Entity_Id := Entity (Prefix (Nam));
1722
1723             begin
1724                --  The class-wide forms of the stream attributes are not
1725                --  primitive dispatching operations (even though they
1726                --  internally dispatch to a stream attribute).
1727
1728                if Is_Class_Wide_Type (Prefix_Type) then
1729                   Error_Msg_N
1730                     ("attribute must be a primitive dispatching operation",
1731                      Nam);
1732                   return;
1733                end if;
1734
1735                --  Retrieve the primitive subprogram associated with the
1736                --  attribute. This can only be a stream attribute, since those
1737                --  are the only ones that are dispatching (and the actual for
1738                --  an abstract formal subprogram must be dispatching
1739                --  operation).
1740
1741                begin
1742                   case Attribute_Name (Nam) is
1743                      when Name_Input  =>
1744                         Stream_Prim :=
1745                           Find_Prim_Op (Prefix_Type, TSS_Stream_Input);
1746                      when Name_Output =>
1747                         Stream_Prim :=
1748                           Find_Prim_Op (Prefix_Type, TSS_Stream_Output);
1749                      when Name_Read   =>
1750                         Stream_Prim :=
1751                           Find_Prim_Op (Prefix_Type, TSS_Stream_Read);
1752                      when Name_Write  =>
1753                         Stream_Prim :=
1754                           Find_Prim_Op (Prefix_Type, TSS_Stream_Write);
1755                      when others      =>
1756                         Error_Msg_N
1757                           ("attribute must be a primitive"
1758                             & " dispatching operation", Nam);
1759                         return;
1760                   end case;
1761
1762                exception
1763
1764                   --  If no operation was found, and the type is limited,
1765                   --  the user should have defined one.
1766
1767                   when Program_Error =>
1768                      if Is_Limited_Type (Prefix_Type) then
1769                         Error_Msg_NE
1770                          ("stream operation not defined for type&",
1771                            N, Prefix_Type);
1772                         return;
1773
1774                      --  Otherwise, compiler should have generated default
1775
1776                      else
1777                         raise;
1778                      end if;
1779                end;
1780
1781                --  Rewrite the attribute into the name of its corresponding
1782                --  primitive dispatching subprogram. We can then proceed with
1783                --  the usual processing for subprogram renamings.
1784
1785                declare
1786                   Prim_Name : constant Node_Id :=
1787                                 Make_Identifier (Sloc (Nam),
1788                                   Chars => Chars (Stream_Prim));
1789                begin
1790                   Set_Entity (Prim_Name, Stream_Prim);
1791                   Rewrite (Nam, Prim_Name);
1792                   Analyze (Nam);
1793                end;
1794             end;
1795
1796          --  Normal processing for a renaming of an attribute
1797
1798          else
1799             Attribute_Renaming (N);
1800             return;
1801          end if;
1802       end if;
1803
1804       --  Check whether this declaration corresponds to the instantiation
1805       --  of a formal subprogram.
1806
1807       --  If this is an instantiation, the corresponding actual is frozen and
1808       --  error messages can be made more precise. If this is a default
1809       --  subprogram, the entity is already established in the generic, and is
1810       --  not retrieved by visibility. If it is a default with a box, the
1811       --  candidate interpretations, if any, have been collected when building
1812       --  the renaming declaration. If overloaded, the proper interpretation is
1813       --  determined in Find_Renamed_Entity. If the entity is an operator,
1814       --  Find_Renamed_Entity applies additional visibility checks.
1815
1816       if Is_Actual then
1817          Inst_Node := Unit_Declaration_Node (Formal_Spec);
1818
1819          if Is_Entity_Name (Nam)
1820            and then Present (Entity (Nam))
1821            and then not Comes_From_Source (Nam)
1822            and then not Is_Overloaded (Nam)
1823          then
1824             Old_S := Entity (Nam);
1825             New_S := Analyze_Subprogram_Specification (Spec);
1826
1827             --  Operator case
1828
1829             if Ekind (Entity (Nam)) = E_Operator then
1830
1831                --  Box present
1832
1833                if Box_Present (Inst_Node) then
1834                   Old_S := Find_Renamed_Entity (N, Name (N), New_S, Is_Actual);
1835
1836                --  If there is an immediately visible homonym of the operator
1837                --  and the declaration has a default, this is worth a warning
1838                --  because the user probably did not intend to get the pre-
1839                --  defined operator, visible in the generic declaration. To
1840                --  find if there is an intended candidate, analyze the renaming
1841                --  again in the current context.
1842
1843                elsif Scope (Old_S) = Standard_Standard
1844                  and then Present (Default_Name (Inst_Node))
1845                then
1846                   declare
1847                      Decl   : constant Node_Id := New_Copy_Tree (N);
1848                      Hidden : Entity_Id;
1849
1850                   begin
1851                      Set_Entity (Name (Decl), Empty);
1852                      Analyze (Name (Decl));
1853                      Hidden :=
1854                        Find_Renamed_Entity (Decl, Name (Decl), New_S, True);
1855
1856                      if Present (Hidden)
1857                        and then In_Open_Scopes (Scope (Hidden))
1858                        and then Is_Immediately_Visible (Hidden)
1859                        and then Comes_From_Source (Hidden)
1860                        and then Hidden /= Old_S
1861                      then
1862                         Error_Msg_Sloc := Sloc (Hidden);
1863                         Error_Msg_N ("?default subprogram is resolved " &
1864                                      "in the generic declaration " &
1865                                      "(RM 12.6(17))", N);
1866                         Error_Msg_NE ("\?and will not use & #", N, Hidden);
1867                      end if;
1868                   end;
1869                end if;
1870             end if;
1871
1872          else
1873             Analyze (Nam);
1874             New_S := Analyze_Subprogram_Specification (Spec);
1875          end if;
1876
1877       else
1878          --  Renamed entity must be analyzed first, to avoid being hidden by
1879          --  new name (which might be the same in a generic instance).
1880
1881          Analyze (Nam);
1882
1883          --  The renaming defines a new overloaded entity, which is analyzed
1884          --  like a subprogram declaration.
1885
1886          New_S := Analyze_Subprogram_Specification (Spec);
1887       end if;
1888
1889       if Current_Scope /= Standard_Standard then
1890          Set_Is_Pure (New_S, Is_Pure (Current_Scope));
1891       end if;
1892
1893       Rename_Spec := Find_Corresponding_Spec (N);
1894
1895       --  Case of Renaming_As_Body
1896
1897       if Present (Rename_Spec) then
1898
1899          --  Renaming declaration is the completion of the declaration of
1900          --  Rename_Spec. We build an actual body for it at the freezing point.
1901
1902          Set_Corresponding_Spec (N, Rename_Spec);
1903
1904          --  Deal with special case of stream functions of abstract types
1905          --  and interfaces.
1906
1907          if Nkind (Unit_Declaration_Node (Rename_Spec)) =
1908                                      N_Abstract_Subprogram_Declaration
1909          then
1910             --  Input stream functions are abstract if the object type is
1911             --  abstract. Similarly, all default stream functions for an
1912             --  interface type are abstract. However, these subprograms may
1913             --  receive explicit declarations in representation clauses, making
1914             --  the attribute subprograms usable as defaults in subsequent
1915             --  type extensions.
1916             --  In this case we rewrite the declaration to make the subprogram
1917             --  non-abstract. We remove the previous declaration, and insert
1918             --  the new one at the point of the renaming, to prevent premature
1919             --  access to unfrozen types. The new declaration reuses the
1920             --  specification of the previous one, and must not be analyzed.
1921
1922             pragma Assert
1923               (Is_Primitive (Entity (Nam))
1924                  and then
1925                    Is_Abstract_Type (Find_Dispatching_Type (Entity (Nam))));
1926             declare
1927                Old_Decl : constant Node_Id :=
1928                             Unit_Declaration_Node (Rename_Spec);
1929                New_Decl : constant Node_Id :=
1930                             Make_Subprogram_Declaration (Sloc (N),
1931                               Specification =>
1932                                 Relocate_Node (Specification (Old_Decl)));
1933             begin
1934                Remove (Old_Decl);
1935                Insert_After (N, New_Decl);
1936                Set_Is_Abstract_Subprogram (Rename_Spec, False);
1937                Set_Analyzed (New_Decl);
1938             end;
1939          end if;
1940
1941          Set_Corresponding_Body (Unit_Declaration_Node (Rename_Spec), New_S);
1942
1943          if Ada_Version = Ada_83 and then Comes_From_Source (N) then
1944             Error_Msg_N ("(Ada 83) renaming cannot serve as a body", N);
1945          end if;
1946
1947          Set_Convention (New_S, Convention (Rename_Spec));
1948          Check_Fully_Conformant (New_S, Rename_Spec);
1949          Set_Public_Status (New_S);
1950
1951          --  The specification does not introduce new formals, but only
1952          --  repeats the formals of the original subprogram declaration.
1953          --  For cross-reference purposes, and for refactoring tools, we
1954          --  treat the formals of the renaming declaration as body formals.
1955
1956          Reference_Body_Formals (Rename_Spec, New_S);
1957
1958          --  Indicate that the entity in the declaration functions like the
1959          --  corresponding body, and is not a new entity. The body will be
1960          --  constructed later at the freeze point, so indicate that the
1961          --  completion has not been seen yet.
1962
1963          Set_Ekind (New_S, E_Subprogram_Body);
1964          New_S := Rename_Spec;
1965          Set_Has_Completion (Rename_Spec, False);
1966
1967          --  Ada 2005: check overriding indicator
1968
1969          if Is_Overriding_Operation (Rename_Spec) then
1970             if Must_Not_Override (Specification (N)) then
1971                Error_Msg_NE
1972                  ("subprogram& overrides inherited operation",
1973                     N, Rename_Spec);
1974             elsif
1975               Style_Check and then not Must_Override (Specification (N))
1976             then
1977                Style.Missing_Overriding (N, Rename_Spec);
1978             end if;
1979
1980          elsif Must_Override (Specification (N)) then
1981             Error_Msg_NE ("subprogram& is not overriding", N, Rename_Spec);
1982          end if;
1983
1984       --  Normal subprogram renaming (not renaming as body)
1985
1986       else
1987          Generate_Definition (New_S);
1988          New_Overloaded_Entity (New_S);
1989
1990          if Is_Entity_Name (Nam)
1991            and then Is_Intrinsic_Subprogram (Entity (Nam))
1992          then
1993             null;
1994          else
1995             Check_Delayed_Subprogram (New_S);
1996          end if;
1997       end if;
1998
1999       --  There is no need for elaboration checks on the new entity, which may
2000       --  be called before the next freezing point where the body will appear.
2001       --  Elaboration checks refer to the real entity, not the one created by
2002       --  the renaming declaration.
2003
2004       Set_Kill_Elaboration_Checks (New_S, True);
2005
2006       if Etype (Nam) = Any_Type then
2007          Set_Has_Completion (New_S);
2008          return;
2009
2010       elsif Nkind (Nam) = N_Selected_Component then
2011
2012          --  A prefix of the form  A.B can designate an entry of task A, a
2013          --  protected operation of protected object A, or finally a primitive
2014          --  operation of object A. In the later case, A is an object of some
2015          --  tagged type, or an access type that denotes one such. To further
2016          --  distinguish these cases, note that the scope of a task entry or
2017          --  protected operation is type of the prefix.
2018
2019          --  The prefix could be an overloaded function call that returns both
2020          --  kinds of operations. This overloading pathology is left to the
2021          --  dedicated reader ???
2022
2023          declare
2024             T : constant Entity_Id := Etype (Prefix (Nam));
2025
2026          begin
2027             if Present (T)
2028               and then
2029                 (Is_Tagged_Type (T)
2030                   or else
2031                     (Is_Access_Type (T)
2032                       and then
2033                         Is_Tagged_Type (Designated_Type (T))))
2034               and then Scope (Entity (Selector_Name (Nam))) /= T
2035             then
2036                Analyze_Renamed_Primitive_Operation
2037                  (N, New_S, Present (Rename_Spec));
2038                return;
2039
2040             else
2041                --  Renamed entity is an entry or protected operation. For those
2042                --  cases an explicit body is built (at the point of freezing of
2043                --  this entity) that contains a call to the renamed entity.
2044
2045                --  This is not allowed for renaming as body if the renamed
2046                --  spec is already frozen (see RM 8.5.4(5) for details).
2047
2048                if Present (Rename_Spec)
2049                  and then Is_Frozen (Rename_Spec)
2050                then
2051                   Error_Msg_N
2052                     ("renaming-as-body cannot rename entry as subprogram", N);
2053                   Error_Msg_NE
2054                     ("\since & is already frozen (RM 8.5.4(5))",
2055                      N, Rename_Spec);
2056                else
2057                   Analyze_Renamed_Entry (N, New_S, Present (Rename_Spec));
2058                end if;
2059
2060                return;
2061             end if;
2062          end;
2063
2064       elsif Nkind (Nam) = N_Explicit_Dereference then
2065
2066          --  Renamed entity is designated by access_to_subprogram expression.
2067          --  Must build body to encapsulate call, as in the entry case.
2068
2069          Analyze_Renamed_Dereference (N, New_S, Present (Rename_Spec));
2070          return;
2071
2072       elsif Nkind (Nam) = N_Indexed_Component then
2073          Analyze_Renamed_Family_Member (N, New_S, Present (Rename_Spec));
2074          return;
2075
2076       elsif Nkind (Nam) = N_Character_Literal then
2077          Analyze_Renamed_Character (N, New_S, Present (Rename_Spec));
2078          return;
2079
2080       elsif (not Is_Entity_Name (Nam)
2081               and then Nkind (Nam) /= N_Operator_Symbol)
2082         or else not Is_Overloadable (Entity (Nam))
2083       then
2084          Error_Msg_N ("expect valid subprogram name in renaming", N);
2085          return;
2086       end if;
2087
2088       --  Find the renamed entity that matches the given specification. Disable
2089       --  Ada_83 because there is no requirement of full conformance between
2090       --  renamed entity and new entity, even though the same circuit is used.
2091
2092       --  This is a bit of a kludge, which introduces a really irregular use of
2093       --  Ada_Version[_Explicit]. Would be nice to find cleaner way to do this
2094       --  ???
2095
2096       Ada_Version := Ada_Version_Type'Max (Ada_Version, Ada_95);
2097       Ada_Version_Explicit := Ada_Version;
2098
2099       if No (Old_S) then
2100          Old_S := Find_Renamed_Entity (N, Name (N), New_S, Is_Actual);
2101
2102          --  When the renamed subprogram is overloaded and used as an actual
2103          --  of a generic, its entity is set to the first available homonym.
2104          --  We must first disambiguate the name, then set the proper entity.
2105
2106          if Is_Actual
2107            and then Is_Overloaded (Nam)
2108          then
2109             Set_Entity (Nam, Old_S);
2110          end if;
2111       end if;
2112
2113       --  Most common case: subprogram renames subprogram. No body is generated
2114       --  in this case, so we must indicate the declaration is complete as is.
2115       --  and inherit various attributes of the renamed subprogram.
2116
2117       if No (Rename_Spec) then
2118          Set_Has_Completion   (New_S);
2119          Set_Is_Imported      (New_S, Is_Imported      (Entity (Nam)));
2120          Set_Is_Pure          (New_S, Is_Pure          (Entity (Nam)));
2121          Set_Is_Preelaborated (New_S, Is_Preelaborated (Entity (Nam)));
2122
2123          --  Ada 2005 (AI-423): Check the consistency of null exclusions
2124          --  between a subprogram and its correct renaming.
2125
2126          --  Note: the Any_Id check is a guard that prevents compiler crashes
2127          --  when performing a null exclusion check between a renaming and a
2128          --  renamed subprogram that has been found to be illegal.
2129
2130          if Ada_Version >= Ada_05
2131            and then Entity (Nam) /= Any_Id
2132          then
2133             Check_Null_Exclusion
2134               (Ren => New_S,
2135                Sub => Entity (Nam));
2136          end if;
2137
2138          --  Enforce the Ada 2005 rule that the renamed entity cannot require
2139          --  overriding. The flag Requires_Overriding is set very selectively
2140          --  and misses some other illegal cases. The additional conditions
2141          --  checked below are sufficient but not necessary ???
2142
2143          --  The rule does not apply to the renaming generated for an actual
2144          --  subprogram in an instance.
2145
2146          if Is_Actual then
2147             null;
2148
2149          --  Guard against previous errors, and omit renamings of predefined
2150          --  operators.
2151
2152          elsif Ekind (Old_S) /= E_Function
2153            and then Ekind (Old_S) /= E_Procedure
2154          then
2155             null;
2156
2157          elsif Requires_Overriding (Old_S)
2158            or else
2159               (Is_Abstract_Subprogram (Old_S)
2160                  and then Present (Find_Dispatching_Type (Old_S))
2161                  and then
2162                    not Is_Abstract_Type (Find_Dispatching_Type (Old_S)))
2163          then
2164             Error_Msg_N
2165               ("renamed entity cannot be "
2166                & "subprogram that requires overriding (RM 8.5.4 (5.1))", N);
2167          end if;
2168       end if;
2169
2170       if Old_S /= Any_Id then
2171          if Is_Actual
2172            and then From_Default (N)
2173          then
2174             --  This is an implicit reference to the default actual
2175
2176             Generate_Reference (Old_S, Nam, Typ => 'i', Force => True);
2177          else
2178             Generate_Reference (Old_S, Nam);
2179          end if;
2180
2181          --  For a renaming-as-body, require subtype conformance, but if the
2182          --  declaration being completed has not been frozen, then inherit the
2183          --  convention of the renamed subprogram prior to checking conformance
2184          --  (unless the renaming has an explicit convention established; the
2185          --  rule stated in the RM doesn't seem to address this ???).
2186
2187          if Present (Rename_Spec) then
2188             Generate_Reference (Rename_Spec, Defining_Entity (Spec), 'b');
2189             Style.Check_Identifier (Defining_Entity (Spec), Rename_Spec);
2190
2191             if not Is_Frozen (Rename_Spec) then
2192                if not Has_Convention_Pragma (Rename_Spec) then
2193                   Set_Convention (New_S, Convention (Old_S));
2194                end if;
2195
2196                if Ekind (Old_S) /= E_Operator then
2197                   Check_Mode_Conformant (New_S, Old_S, Spec);
2198                end if;
2199
2200                if Original_Subprogram (Old_S) = Rename_Spec then
2201                   Error_Msg_N ("unfrozen subprogram cannot rename itself ", N);
2202                end if;
2203             else
2204                Check_Subtype_Conformant (New_S, Old_S, Spec);
2205             end if;
2206
2207             Check_Frozen_Renaming (N, Rename_Spec);
2208
2209             --  Check explicitly that renamed entity is not intrinsic, because
2210             --  in a generic the renamed body is not built. In this case,
2211             --  the renaming_as_body is a completion.
2212
2213             if Inside_A_Generic then
2214                if Is_Frozen (Rename_Spec)
2215                  and then Is_Intrinsic_Subprogram (Old_S)
2216                then
2217                   Error_Msg_N
2218                     ("subprogram in renaming_as_body cannot be intrinsic",
2219                        Name (N));
2220                end if;
2221
2222                Set_Has_Completion (Rename_Spec);
2223             end if;
2224
2225          elsif Ekind (Old_S) /= E_Operator then
2226             Check_Mode_Conformant (New_S, Old_S);
2227
2228             if Is_Actual
2229               and then Error_Posted (New_S)
2230             then
2231                Error_Msg_NE ("invalid actual subprogram: & #!", N, Old_S);
2232             end if;
2233          end if;
2234
2235          if No (Rename_Spec) then
2236
2237             --  The parameter profile of the new entity is that of the renamed
2238             --  entity: the subtypes given in the specification are irrelevant.
2239
2240             Inherit_Renamed_Profile (New_S, Old_S);
2241
2242             --  A call to the subprogram is transformed into a call to the
2243             --  renamed entity. This is transitive if the renamed entity is
2244             --  itself a renaming.
2245
2246             if Present (Alias (Old_S)) then
2247                Set_Alias (New_S, Alias (Old_S));
2248             else
2249                Set_Alias (New_S, Old_S);
2250             end if;
2251
2252             --  Note that we do not set Is_Intrinsic_Subprogram if we have a
2253             --  renaming as body, since the entity in this case is not an
2254             --  intrinsic (it calls an intrinsic, but we have a real body for
2255             --  this call, and it is in this body that the required intrinsic
2256             --  processing will take place).
2257
2258             --  Also, if this is a renaming of inequality, the renamed operator
2259             --  is intrinsic, but what matters is the corresponding equality
2260             --  operator, which may be user-defined.
2261
2262             Set_Is_Intrinsic_Subprogram
2263               (New_S,
2264                 Is_Intrinsic_Subprogram (Old_S)
2265                   and then
2266                     (Chars (Old_S) /= Name_Op_Ne
2267                        or else Ekind (Old_S) = E_Operator
2268                        or else
2269                          Is_Intrinsic_Subprogram
2270                             (Corresponding_Equality (Old_S))));
2271
2272             if Ekind (Alias (New_S)) = E_Operator then
2273                Set_Has_Delayed_Freeze (New_S, False);
2274             end if;
2275
2276             --  If the renaming corresponds to an association for an abstract
2277             --  formal subprogram, then various attributes must be set to
2278             --  indicate that the renaming is an abstract dispatching operation
2279             --  with a controlling type.
2280
2281             if Is_Actual and then Is_Abstract_Subprogram (Formal_Spec) then
2282
2283                --  Mark the renaming as abstract here, so Find_Dispatching_Type
2284                --  see it as corresponding to a generic association for a
2285                --  formal abstract subprogram
2286
2287                Set_Is_Abstract_Subprogram (New_S);
2288
2289                declare
2290                   New_S_Ctrl_Type : constant Entity_Id :=
2291                                       Find_Dispatching_Type (New_S);
2292                   Old_S_Ctrl_Type : constant Entity_Id :=
2293                                       Find_Dispatching_Type (Old_S);
2294
2295                begin
2296                   if Old_S_Ctrl_Type /= New_S_Ctrl_Type then
2297                      Error_Msg_NE
2298                        ("actual must be dispatching subprogram for type&",
2299                         Nam, New_S_Ctrl_Type);
2300
2301                   else
2302                      Set_Is_Dispatching_Operation (New_S);
2303                      Check_Controlling_Formals (New_S_Ctrl_Type, New_S);
2304
2305                      --  If the actual in the formal subprogram is itself a
2306                      --  formal abstract subprogram association, there's no
2307                      --  dispatch table component or position to inherit.
2308
2309                      if Present (DTC_Entity (Old_S)) then
2310                         Set_DTC_Entity  (New_S, DTC_Entity (Old_S));
2311                         Set_DT_Position (New_S, DT_Position (Old_S));
2312                      end if;
2313                   end if;
2314                end;
2315             end if;
2316          end if;
2317
2318          if not Is_Actual
2319            and then (Old_S = New_S
2320                       or else (Nkind (Nam) /= N_Expanded_Name
2321                         and then  Chars (Old_S) = Chars (New_S)))
2322          then
2323             Error_Msg_N ("subprogram cannot rename itself", N);
2324          end if;
2325
2326          Set_Convention (New_S, Convention (Old_S));
2327
2328          if Is_Abstract_Subprogram (Old_S) then
2329             if Present (Rename_Spec) then
2330                Error_Msg_N
2331                  ("a renaming-as-body cannot rename an abstract subprogram",
2332                   N);
2333                Set_Has_Completion (Rename_Spec);
2334             else
2335                Set_Is_Abstract_Subprogram (New_S);
2336             end if;
2337          end if;
2338
2339          Check_Library_Unit_Renaming (N, Old_S);
2340
2341          --  Pathological case: procedure renames entry in the scope of its
2342          --  task. Entry is given by simple name, but body must be built for
2343          --  procedure. Of course if called it will deadlock.
2344
2345          if Ekind (Old_S) = E_Entry then
2346             Set_Has_Completion (New_S, False);
2347             Set_Alias (New_S, Empty);
2348          end if;
2349
2350          if Is_Actual then
2351             Freeze_Before (N, Old_S);
2352             Set_Has_Delayed_Freeze (New_S, False);
2353             Freeze_Before (N, New_S);
2354
2355             --  An abstract subprogram is only allowed as an actual in the case
2356             --  where the formal subprogram is also abstract.
2357
2358             if (Ekind (Old_S) = E_Procedure or else Ekind (Old_S) = E_Function)
2359               and then Is_Abstract_Subprogram (Old_S)
2360               and then not Is_Abstract_Subprogram (Formal_Spec)
2361             then
2362                Error_Msg_N
2363                  ("abstract subprogram not allowed as generic actual", Nam);
2364             end if;
2365          end if;
2366
2367       else
2368          --  A common error is to assume that implicit operators for types are
2369          --  defined in Standard, or in the scope of a subtype. In those cases
2370          --  where the renamed entity is given with an expanded name, it is
2371          --  worth mentioning that operators for the type are not declared in
2372          --  the scope given by the prefix.
2373
2374          if Nkind (Nam) = N_Expanded_Name
2375            and then Nkind (Selector_Name (Nam)) = N_Operator_Symbol
2376            and then Scope (Entity (Nam)) = Standard_Standard
2377          then
2378             declare
2379                T : constant Entity_Id :=
2380                      Base_Type (Etype (First_Formal (New_S)));
2381             begin
2382                Error_Msg_Node_2 := Prefix (Nam);
2383                Error_Msg_NE
2384                  ("operator for type& is not declared in&", Prefix (Nam), T);
2385             end;
2386
2387          else
2388             Error_Msg_NE
2389               ("no visible subprogram matches the specification for&",
2390                 Spec, New_S);
2391          end if;
2392
2393          if Present (Candidate_Renaming) then
2394             declare
2395                F1 : Entity_Id;
2396                F2 : Entity_Id;
2397                T1 : Entity_Id;
2398
2399             begin
2400                F1 := First_Formal (Candidate_Renaming);
2401                F2 := First_Formal (New_S);
2402                T1 := First_Subtype (Etype (F1));
2403
2404                while Present (F1) and then Present (F2) loop
2405                   Next_Formal (F1);
2406                   Next_Formal (F2);
2407                end loop;
2408
2409                if Present (F1) and then Present (Default_Value (F1)) then
2410                   if Present (Next_Formal (F1)) then
2411                      Error_Msg_NE
2412                        ("\missing specification for &" &
2413                           " and other formals with defaults", Spec, F1);
2414                   else
2415                      Error_Msg_NE
2416                     ("\missing specification for &", Spec, F1);
2417                   end if;
2418                end if;
2419
2420                if Nkind (Nam) = N_Operator_Symbol
2421                  and then From_Default (N)
2422                then
2423                   Error_Msg_Node_2 := T1;
2424                   Error_Msg_NE
2425                     ("default & on & is not directly visible",
2426                       Nam, Nam);
2427                end if;
2428             end;
2429          end if;
2430       end if;
2431
2432       --  Ada 2005 AI 404: if the new subprogram is dispatching, verify that
2433       --  controlling access parameters are known non-null for the renamed
2434       --  subprogram. Test also applies to a subprogram instantiation that
2435       --  is dispatching. Test is skipped if some previous error was detected
2436       --  that set Old_S to Any_Id.
2437
2438       if Ada_Version >= Ada_05
2439         and then Old_S /= Any_Id
2440         and then not Is_Dispatching_Operation (Old_S)
2441         and then Is_Dispatching_Operation (New_S)
2442       then
2443          declare
2444             Old_F : Entity_Id;
2445             New_F : Entity_Id;
2446
2447          begin
2448             Old_F := First_Formal (Old_S);
2449             New_F := First_Formal (New_S);
2450             while Present (Old_F) loop
2451                if Ekind (Etype (Old_F)) = E_Anonymous_Access_Type
2452                  and then Is_Controlling_Formal (New_F)
2453                  and then not Can_Never_Be_Null (Old_F)
2454                then
2455                   Error_Msg_N ("access parameter is controlling,", New_F);
2456                   Error_Msg_NE
2457                     ("\corresponding parameter of& "
2458                      & "must be explicitly null excluding", New_F, Old_S);
2459                end if;
2460
2461                Next_Formal (Old_F);
2462                Next_Formal (New_F);
2463             end loop;
2464          end;
2465       end if;
2466
2467       --  A useful warning, suggested by Ada Bug Finder (Ada-Europe 2005)
2468
2469       if Comes_From_Source (N)
2470         and then Present (Old_S)
2471         and then Nkind (Old_S) = N_Defining_Operator_Symbol
2472         and then Nkind (New_S) = N_Defining_Operator_Symbol
2473         and then Chars (Old_S) /= Chars (New_S)
2474       then
2475          Error_Msg_NE
2476            ("?& is being renamed as a different operator",
2477              New_S, Old_S);
2478       end if;
2479
2480       --  Another warning or some utility: if the new subprogram as the same
2481       --  name as the old one, the old one is not hidden by an outer homograph,
2482       --  the new one is not a public symbol, and the old one is otherwise
2483       --  directly visible, the renaming is superfluous.
2484
2485       if Chars (Old_S) = Chars (New_S)
2486         and then Comes_From_Source (N)
2487         and then Scope (Old_S) /= Standard_Standard
2488         and then Warn_On_Redundant_Constructs
2489         and then
2490           (Is_Immediately_Visible (Old_S)
2491             or else Is_Potentially_Use_Visible (Old_S))
2492         and then Is_Overloadable (Current_Scope)
2493         and then Chars (Current_Scope) /= Chars (Old_S)
2494       then
2495          Error_Msg_N
2496           ("?redundant renaming, entity is directly visible", Name (N));
2497       end if;
2498
2499       Ada_Version := Save_AV;
2500       Ada_Version_Explicit := Save_AV_Exp;
2501    end Analyze_Subprogram_Renaming;
2502
2503    -------------------------
2504    -- Analyze_Use_Package --
2505    -------------------------
2506
2507    --  Resolve the package names in the use clause, and make all the visible
2508    --  entities defined in the package potentially use-visible. If the package
2509    --  is already in use from a previous use clause, its visible entities are
2510    --  already use-visible. In that case, mark the occurrence as a redundant
2511    --  use. If the package is an open scope, i.e. if the use clause occurs
2512    --  within the package itself, ignore it.
2513
2514    procedure Analyze_Use_Package (N : Node_Id) is
2515       Pack_Name : Node_Id;
2516       Pack      : Entity_Id;
2517
2518    --  Start of processing for Analyze_Use_Package
2519
2520    begin
2521       Set_Hidden_By_Use_Clause (N, No_Elist);
2522
2523       --  Use clause is not allowed in a spec of a predefined package
2524       --  declaration except that packages whose file name starts a-n are OK
2525       --  (these are children of Ada.Numerics, and such packages are never
2526       --  loaded by Rtsfind).
2527
2528       if Is_Predefined_File_Name (Unit_File_Name (Current_Sem_Unit))
2529         and then Name_Buffer (1 .. 3) /= "a-n"
2530         and then
2531           Nkind (Unit (Cunit (Current_Sem_Unit))) = N_Package_Declaration
2532       then
2533          Error_Msg_N ("use clause not allowed in predefined spec", N);
2534       end if;
2535
2536       --  Chain clause to list of use clauses in current scope
2537
2538       if Nkind (Parent (N)) /= N_Compilation_Unit then
2539          Chain_Use_Clause (N);
2540       end if;
2541
2542       --  Loop through package names to identify referenced packages
2543
2544       Pack_Name := First (Names (N));
2545       while Present (Pack_Name) loop
2546          Analyze (Pack_Name);
2547
2548          if Nkind (Parent (N)) = N_Compilation_Unit
2549            and then Nkind (Pack_Name) = N_Expanded_Name
2550          then
2551             declare
2552                Pref : Node_Id;
2553
2554             begin
2555                Pref := Prefix (Pack_Name);
2556                while Nkind (Pref) = N_Expanded_Name loop
2557                   Pref := Prefix (Pref);
2558                end loop;
2559
2560                if Entity (Pref) = Standard_Standard then
2561                   Error_Msg_N
2562                    ("predefined package Standard cannot appear"
2563                      & " in a context clause", Pref);
2564                end if;
2565             end;
2566          end if;
2567
2568          Next (Pack_Name);
2569       end loop;
2570
2571       --  Loop through package names to mark all entities as potentially
2572       --  use visible.
2573
2574       Pack_Name := First (Names (N));
2575       while Present (Pack_Name) loop
2576          if Is_Entity_Name (Pack_Name) then
2577             Pack := Entity (Pack_Name);
2578
2579             if Ekind (Pack) /= E_Package
2580               and then Etype (Pack) /= Any_Type
2581             then
2582                if Ekind (Pack) = E_Generic_Package then
2583                   Error_Msg_N  -- CODEFIX
2584                    ("a generic package is not allowed in a use clause",
2585                       Pack_Name);
2586                else
2587                   Error_Msg_N -- CODEFIX???
2588                     ("& is not a usable package", Pack_Name);
2589                end if;
2590
2591             else
2592                if Nkind (Parent (N)) = N_Compilation_Unit then
2593                   Check_In_Previous_With_Clause (N, Pack_Name);
2594                end if;
2595
2596                if Applicable_Use (Pack_Name) then
2597                   Use_One_Package (Pack, N);
2598                end if;
2599             end if;
2600
2601          --  Report error because name denotes something other than a package
2602
2603          else
2604             Error_Msg_N ("& is not a package", Pack_Name);
2605          end if;
2606
2607          Next (Pack_Name);
2608       end loop;
2609    end Analyze_Use_Package;
2610
2611    ----------------------
2612    -- Analyze_Use_Type --
2613    ----------------------
2614
2615    procedure Analyze_Use_Type (N : Node_Id) is
2616       E  : Entity_Id;
2617       Id : Node_Id;
2618
2619    begin
2620       Set_Hidden_By_Use_Clause (N, No_Elist);
2621
2622       --  Chain clause to list of use clauses in current scope
2623
2624       if Nkind (Parent (N)) /= N_Compilation_Unit then
2625          Chain_Use_Clause (N);
2626       end if;
2627
2628       Id := First (Subtype_Marks (N));
2629       while Present (Id) loop
2630          Find_Type (Id);
2631          E := Entity (Id);
2632
2633          if E /= Any_Type then
2634             Use_One_Type (Id);
2635
2636             if Nkind (Parent (N)) = N_Compilation_Unit then
2637                if Nkind (Id) = N_Identifier then
2638                   Error_Msg_N ("type is not directly visible", Id);
2639
2640                elsif Is_Child_Unit (Scope (E))
2641                  and then Scope (E) /= System_Aux_Id
2642                then
2643                   Check_In_Previous_With_Clause (N, Prefix (Id));
2644                end if;
2645             end if;
2646
2647          else
2648             --  If the use_type_clause appears in a compilation unit context,
2649             --  check whether it comes from a unit that may appear in a
2650             --  limited_with_clause, for a better error message.
2651
2652             if Nkind (Parent (N)) = N_Compilation_Unit
2653               and then Nkind (Id) /= N_Identifier
2654             then
2655                declare
2656                   Item : Node_Id;
2657                   Pref : Node_Id;
2658
2659                   function Mentioned (Nam : Node_Id) return Boolean;
2660                   --  Check whether the prefix of expanded name for the type
2661                   --  appears in the prefix of some limited_with_clause.
2662
2663                   ---------------
2664                   -- Mentioned --
2665                   ---------------
2666
2667                   function Mentioned (Nam : Node_Id) return Boolean is
2668                   begin
2669                      return Nkind (Name (Item)) = N_Selected_Component
2670                               and then
2671                             Chars (Prefix (Name (Item))) = Chars (Nam);
2672                   end Mentioned;
2673
2674                begin
2675                   Pref := Prefix (Id);
2676                   Item := First (Context_Items (Parent (N)));
2677
2678                   while Present (Item) and then Item /= N loop
2679                      if Nkind (Item) = N_With_Clause
2680                        and then Limited_Present (Item)
2681                        and then Mentioned (Pref)
2682                      then
2683                         Change_Error_Text
2684                           (Get_Msg_Id, "premature usage of incomplete type");
2685                      end if;
2686
2687                      Next (Item);
2688                   end loop;
2689                end;
2690             end if;
2691          end if;
2692
2693          Next (Id);
2694       end loop;
2695    end Analyze_Use_Type;
2696
2697    --------------------
2698    -- Applicable_Use --
2699    --------------------
2700
2701    function Applicable_Use (Pack_Name : Node_Id) return Boolean is
2702       Pack : constant Entity_Id := Entity (Pack_Name);
2703
2704    begin
2705       if In_Open_Scopes (Pack) then
2706          if Warn_On_Redundant_Constructs
2707            and then Pack = Current_Scope
2708          then
2709             Error_Msg_NE
2710               ("& is already use-visible within itself?", Pack_Name, Pack);
2711          end if;
2712
2713          return False;
2714
2715       elsif In_Use (Pack) then
2716          Note_Redundant_Use (Pack_Name);
2717          return False;
2718
2719       elsif Present (Renamed_Object (Pack))
2720         and then In_Use (Renamed_Object (Pack))
2721       then
2722          Note_Redundant_Use (Pack_Name);
2723          return False;
2724
2725       else
2726          return True;
2727       end if;
2728    end Applicable_Use;
2729
2730    ------------------------
2731    -- Attribute_Renaming --
2732    ------------------------
2733
2734    procedure Attribute_Renaming (N : Node_Id) is
2735       Loc        : constant Source_Ptr := Sloc (N);
2736       Nam        : constant Node_Id    := Name (N);
2737       Spec       : constant Node_Id    := Specification (N);
2738       New_S      : constant Entity_Id  := Defining_Unit_Name (Spec);
2739       Aname      : constant Name_Id    := Attribute_Name (Nam);
2740
2741       Form_Num   : Nat      := 0;
2742       Expr_List  : List_Id  := No_List;
2743
2744       Attr_Node  : Node_Id;
2745       Body_Node  : Node_Id;
2746       Param_Spec : Node_Id;
2747
2748    begin
2749       Generate_Definition (New_S);
2750
2751       --  This procedure is called in the context of subprogram renaming, and
2752       --  thus the attribute must be one that is a subprogram. All of those
2753       --  have at least one formal parameter, with the singular exception of
2754       --  AST_Entry (which is a real oddity, it is odd that this can be renamed
2755       --  at all!)
2756
2757       if not Is_Non_Empty_List (Parameter_Specifications (Spec)) then
2758          if Aname /= Name_AST_Entry then
2759             Error_Msg_N
2760               ("subprogram renaming an attribute must have formals", N);
2761             return;
2762          end if;
2763
2764       else
2765          Param_Spec := First (Parameter_Specifications (Spec));
2766          while Present (Param_Spec) loop
2767             Form_Num := Form_Num + 1;
2768
2769             if Nkind (Parameter_Type (Param_Spec)) /= N_Access_Definition then
2770                Find_Type (Parameter_Type (Param_Spec));
2771
2772                --  The profile of the new entity denotes the base type (s) of
2773                --  the types given in the specification. For access parameters
2774                --  there are no subtypes involved.
2775
2776                Rewrite (Parameter_Type (Param_Spec),
2777                 New_Reference_To
2778                   (Base_Type (Entity (Parameter_Type (Param_Spec))), Loc));
2779             end if;
2780
2781             if No (Expr_List) then
2782                Expr_List := New_List;
2783             end if;
2784
2785             Append_To (Expr_List,
2786               Make_Identifier (Loc,
2787                 Chars => Chars (Defining_Identifier (Param_Spec))));
2788
2789             --  The expressions in the attribute reference are not freeze
2790             --  points. Neither is the attribute as a whole, see below.
2791
2792             Set_Must_Not_Freeze (Last (Expr_List));
2793             Next (Param_Spec);
2794          end loop;
2795       end if;
2796
2797       --  Immediate error if too many formals. Other mismatches in number or
2798       --  types of parameters are detected when we analyze the body of the
2799       --  subprogram that we construct.
2800
2801       if Form_Num > 2 then
2802          Error_Msg_N ("too many formals for attribute", N);
2803
2804       --  Error if the attribute reference has expressions that look like
2805       --  formal parameters.
2806
2807       elsif Present (Expressions (Nam)) then
2808          Error_Msg_N ("illegal expressions in attribute reference", Nam);
2809
2810       elsif
2811         Aname = Name_Compose      or else
2812         Aname = Name_Exponent     or else
2813         Aname = Name_Leading_Part or else
2814         Aname = Name_Pos          or else
2815         Aname = Name_Round        or else
2816         Aname = Name_Scaling      or else
2817         Aname = Name_Val
2818       then
2819          if Nkind (N) = N_Subprogram_Renaming_Declaration
2820            and then Present (Corresponding_Formal_Spec (N))
2821          then
2822             Error_Msg_N
2823               ("generic actual cannot be attribute involving universal type",
2824                Nam);
2825          else
2826             Error_Msg_N
2827               ("attribute involving a universal type cannot be renamed",
2828                Nam);
2829          end if;
2830       end if;
2831
2832       --  AST_Entry is an odd case. It doesn't really make much sense to allow
2833       --  it to be renamed, but that's the DEC rule, so we have to do it right.
2834       --  The point is that the AST_Entry call should be made now, and what the
2835       --  function will return is the returned value.
2836
2837       --  Note that there is no Expr_List in this case anyway
2838
2839       if Aname = Name_AST_Entry then
2840          declare
2841             Ent  : Entity_Id;
2842             Decl : Node_Id;
2843
2844          begin
2845             Ent := Make_Defining_Identifier (Loc, New_Internal_Name ('R'));
2846
2847             Decl :=
2848               Make_Object_Declaration (Loc,
2849                 Defining_Identifier => Ent,
2850                 Object_Definition =>
2851                   New_Occurrence_Of (RTE (RE_AST_Handler), Loc),
2852                 Expression => Nam,
2853                 Constant_Present => True);
2854
2855             Set_Assignment_OK (Decl, True);
2856             Insert_Action (N, Decl);
2857             Attr_Node := Make_Identifier (Loc, Chars (Ent));
2858          end;
2859
2860       --  For all other attributes, we rewrite the attribute node to have
2861       --  a list of expressions corresponding to the subprogram formals.
2862       --  A renaming declaration is not a freeze point, and the analysis of
2863       --  the attribute reference should not freeze the type of the prefix.
2864
2865       else
2866          Attr_Node :=
2867            Make_Attribute_Reference (Loc,
2868              Prefix         => Prefix (Nam),
2869              Attribute_Name => Aname,
2870              Expressions    => Expr_List);
2871
2872          Set_Must_Not_Freeze (Attr_Node);
2873          Set_Must_Not_Freeze (Prefix (Nam));
2874       end if;
2875
2876       --  Case of renaming a function
2877
2878       if Nkind (Spec) = N_Function_Specification then
2879          if Is_Procedure_Attribute_Name (Aname) then
2880             Error_Msg_N ("attribute can only be renamed as procedure", Nam);
2881             return;
2882          end if;
2883
2884          Find_Type (Result_Definition (Spec));
2885          Rewrite (Result_Definition (Spec),
2886              New_Reference_To (
2887                Base_Type (Entity (Result_Definition (Spec))), Loc));
2888
2889          Body_Node :=
2890            Make_Subprogram_Body (Loc,
2891              Specification => Spec,
2892              Declarations => New_List,
2893              Handled_Statement_Sequence =>
2894                Make_Handled_Sequence_Of_Statements (Loc,
2895                    Statements => New_List (
2896                      Make_Simple_Return_Statement (Loc,
2897                        Expression => Attr_Node))));
2898
2899       --  Case of renaming a procedure
2900
2901       else
2902          if not Is_Procedure_Attribute_Name (Aname) then
2903             Error_Msg_N ("attribute can only be renamed as function", Nam);
2904             return;
2905          end if;
2906
2907          Body_Node :=
2908            Make_Subprogram_Body (Loc,
2909              Specification => Spec,
2910              Declarations => New_List,
2911              Handled_Statement_Sequence =>
2912                Make_Handled_Sequence_Of_Statements (Loc,
2913                    Statements => New_List (Attr_Node)));
2914       end if;
2915
2916       --  In case of tagged types we add the body of the generated function to
2917       --  the freezing actions of the type (because in the general case such
2918       --  type is still not frozen). We exclude from this processing generic
2919       --  formal subprograms found in instantiations and AST_Entry renamings.
2920
2921       if not Present (Corresponding_Formal_Spec (N))
2922         and then Etype (Nam) /= RTE (RE_AST_Handler)
2923       then
2924          declare
2925             P : constant Entity_Id := Prefix (Nam);
2926
2927          begin
2928             Find_Type (P);
2929
2930             if Is_Tagged_Type (Etype (P)) then
2931                Ensure_Freeze_Node (Etype (P));
2932                Append_Freeze_Action (Etype (P), Body_Node);
2933             else
2934                Rewrite (N, Body_Node);
2935                Analyze (N);
2936                Set_Etype (New_S, Base_Type (Etype (New_S)));
2937             end if;
2938          end;
2939
2940       --  Generic formal subprograms or AST_Handler renaming
2941
2942       else
2943          Rewrite (N, Body_Node);
2944          Analyze (N);
2945          Set_Etype (New_S, Base_Type (Etype (New_S)));
2946       end if;
2947
2948       if Is_Compilation_Unit (New_S) then
2949          Error_Msg_N
2950            ("a library unit can only rename another library unit", N);
2951       end if;
2952
2953       --  We suppress elaboration warnings for the resulting entity, since
2954       --  clearly they are not needed, and more particularly, in the case
2955       --  of a generic formal subprogram, the resulting entity can appear
2956       --  after the instantiation itself, and thus look like a bogus case
2957       --  of access before elaboration.
2958
2959       Set_Suppress_Elaboration_Warnings (New_S);
2960
2961    end Attribute_Renaming;
2962
2963    ----------------------
2964    -- Chain_Use_Clause --
2965    ----------------------
2966
2967    procedure Chain_Use_Clause (N : Node_Id) is
2968       Pack : Entity_Id;
2969       Level : Int := Scope_Stack.Last;
2970
2971    begin
2972       if not Is_Compilation_Unit (Current_Scope)
2973         or else not Is_Child_Unit (Current_Scope)
2974       then
2975          null;   --  Common case
2976
2977       elsif Defining_Entity (Parent (N)) = Current_Scope then
2978          null;   --  Common case for compilation unit
2979
2980       else
2981          --  If declaration appears in some other scope, it must be in some
2982          --  parent unit when compiling a child.
2983
2984          Pack := Defining_Entity (Parent (N));
2985          if not In_Open_Scopes (Pack) then
2986             null;  --  default as well
2987
2988          else
2989             --  Find entry for parent unit in scope stack
2990
2991             while Scope_Stack.Table (Level).Entity /= Pack loop
2992                Level := Level - 1;
2993             end loop;
2994          end if;
2995       end if;
2996
2997       Set_Next_Use_Clause (N,
2998         Scope_Stack.Table (Level).First_Use_Clause);
2999       Scope_Stack.Table (Level).First_Use_Clause := N;
3000    end Chain_Use_Clause;
3001
3002    ---------------------------
3003    -- Check_Frozen_Renaming --
3004    ---------------------------
3005
3006    procedure Check_Frozen_Renaming (N : Node_Id; Subp : Entity_Id) is
3007       B_Node : Node_Id;
3008       Old_S  : Entity_Id;
3009
3010    begin
3011       if Is_Frozen (Subp)
3012         and then not Has_Completion (Subp)
3013       then
3014          B_Node :=
3015            Build_Renamed_Body
3016              (Parent (Declaration_Node (Subp)), Defining_Entity (N));
3017
3018          if Is_Entity_Name (Name (N)) then
3019             Old_S := Entity (Name (N));
3020
3021             if not Is_Frozen (Old_S)
3022               and then Operating_Mode /= Check_Semantics
3023             then
3024                Append_Freeze_Action (Old_S, B_Node);
3025             else
3026                Insert_After (N, B_Node);
3027                Analyze (B_Node);
3028             end if;
3029
3030             if Is_Intrinsic_Subprogram (Old_S)
3031               and then not In_Instance
3032             then
3033                Error_Msg_N
3034                  ("subprogram used in renaming_as_body cannot be intrinsic",
3035                     Name (N));
3036             end if;
3037
3038          else
3039             Insert_After (N, B_Node);
3040             Analyze (B_Node);
3041          end if;
3042       end if;
3043    end Check_Frozen_Renaming;
3044
3045    -----------------------------------
3046    -- Check_In_Previous_With_Clause --
3047    -----------------------------------
3048
3049    procedure Check_In_Previous_With_Clause
3050      (N   : Node_Id;
3051       Nam : Entity_Id)
3052    is
3053       Pack : constant Entity_Id := Entity (Original_Node (Nam));
3054       Item : Node_Id;
3055       Par  : Node_Id;
3056
3057    begin
3058       Item := First (Context_Items (Parent (N)));
3059
3060       while Present (Item)
3061         and then Item /= N
3062       loop
3063          if Nkind (Item) = N_With_Clause
3064
3065             --  Protect the frontend against previous critical errors
3066
3067            and then Nkind (Name (Item)) /= N_Selected_Component
3068            and then Entity (Name (Item)) = Pack
3069          then
3070             Par := Nam;
3071
3072             --  Find root library unit in with_clause
3073
3074             while Nkind (Par) = N_Expanded_Name loop
3075                Par := Prefix (Par);
3076             end loop;
3077
3078             if Is_Child_Unit (Entity (Original_Node (Par))) then
3079                Error_Msg_NE
3080                  ("& is not directly visible", Par, Entity (Par));
3081             else
3082                return;
3083             end if;
3084          end if;
3085
3086          Next (Item);
3087       end loop;
3088
3089       --  On exit, package is not mentioned in a previous with_clause.
3090       --  Check if its prefix is.
3091
3092       if Nkind (Nam) = N_Expanded_Name then
3093          Check_In_Previous_With_Clause (N, Prefix (Nam));
3094
3095       elsif Pack /= Any_Id then
3096          Error_Msg_NE ("& is not visible", Nam, Pack);
3097       end if;
3098    end Check_In_Previous_With_Clause;
3099
3100    ---------------------------------
3101    -- Check_Library_Unit_Renaming --
3102    ---------------------------------
3103
3104    procedure Check_Library_Unit_Renaming (N : Node_Id; Old_E : Entity_Id) is
3105       New_E : Entity_Id;
3106
3107    begin
3108       if Nkind (Parent (N)) /= N_Compilation_Unit then
3109          return;
3110
3111       --  Check for library unit. Note that we used to check for the scope
3112       --  being Standard here, but that was wrong for Standard itself.
3113
3114       elsif not Is_Compilation_Unit (Old_E)
3115         and then not Is_Child_Unit (Old_E)
3116       then
3117          Error_Msg_N ("renamed unit must be a library unit", Name (N));
3118
3119       --  Entities defined in Standard (operators and boolean literals) cannot
3120       --  be renamed as library units.
3121
3122       elsif Scope (Old_E) = Standard_Standard
3123         and then Sloc (Old_E) = Standard_Location
3124       then
3125          Error_Msg_N ("renamed unit must be a library unit", Name (N));
3126
3127       elsif Present (Parent_Spec (N))
3128         and then Nkind (Unit (Parent_Spec (N))) = N_Generic_Package_Declaration
3129         and then not Is_Child_Unit (Old_E)
3130       then
3131          Error_Msg_N
3132            ("renamed unit must be a child unit of generic parent", Name (N));
3133
3134       elsif Nkind (N) in N_Generic_Renaming_Declaration
3135          and then  Nkind (Name (N)) = N_Expanded_Name
3136          and then Is_Generic_Instance (Entity (Prefix (Name (N))))
3137          and then Is_Generic_Unit (Old_E)
3138       then
3139          Error_Msg_N
3140            ("renamed generic unit must be a library unit", Name (N));
3141
3142       elsif Is_Package_Or_Generic_Package (Old_E) then
3143
3144          --  Inherit categorization flags
3145
3146          New_E := Defining_Entity (N);
3147          Set_Is_Pure                  (New_E, Is_Pure           (Old_E));
3148          Set_Is_Preelaborated         (New_E, Is_Preelaborated  (Old_E));
3149          Set_Is_Remote_Call_Interface (New_E,
3150                                        Is_Remote_Call_Interface (Old_E));
3151          Set_Is_Remote_Types          (New_E, Is_Remote_Types   (Old_E));
3152          Set_Is_Shared_Passive        (New_E, Is_Shared_Passive (Old_E));
3153       end if;
3154    end Check_Library_Unit_Renaming;
3155
3156    ---------------
3157    -- End_Scope --
3158    ---------------
3159
3160    procedure End_Scope is
3161       Id    : Entity_Id;
3162       Prev  : Entity_Id;
3163       Outer : Entity_Id;
3164
3165    begin
3166       Id := First_Entity (Current_Scope);
3167       while Present (Id) loop
3168          --  An entity in the current scope is not necessarily the first one
3169          --  on its homonym chain. Find its predecessor if any,
3170          --  If it is an internal entity, it will not be in the visibility
3171          --  chain altogether,  and there is nothing to unchain.
3172
3173          if Id /= Current_Entity (Id) then
3174             Prev := Current_Entity (Id);
3175             while Present (Prev)
3176               and then Present (Homonym (Prev))
3177               and then Homonym (Prev) /= Id
3178             loop
3179                Prev := Homonym (Prev);
3180             end loop;
3181
3182             --  Skip to end of loop if Id is not in the visibility chain
3183
3184             if No (Prev) or else Homonym (Prev) /= Id then
3185                goto Next_Ent;
3186             end if;
3187
3188          else
3189             Prev := Empty;
3190          end if;
3191
3192          Set_Is_Immediately_Visible (Id, False);
3193
3194          Outer := Homonym (Id);
3195          while Present (Outer) and then Scope (Outer) = Current_Scope loop
3196             Outer := Homonym (Outer);
3197          end loop;
3198
3199          --  Reset homonym link of other entities, but do not modify link
3200          --  between entities in current scope, so that the back-end can have
3201          --  a proper count of local overloadings.
3202
3203          if No (Prev) then
3204             Set_Name_Entity_Id (Chars (Id), Outer);
3205
3206          elsif Scope (Prev) /= Scope (Id) then
3207             Set_Homonym (Prev,  Outer);
3208          end if;
3209
3210          <<Next_Ent>>
3211             Next_Entity (Id);
3212       end loop;
3213
3214       --  If the scope generated freeze actions, place them before the
3215       --  current declaration and analyze them. Type declarations and
3216       --  the bodies of initialization procedures can generate such nodes.
3217       --  We follow the parent chain until we reach a list node, which is
3218       --  the enclosing list of declarations. If the list appears within
3219       --  a protected definition, move freeze nodes outside the protected
3220       --  type altogether.
3221
3222       if Present
3223          (Scope_Stack.Table (Scope_Stack.Last).Pending_Freeze_Actions)
3224       then
3225          declare
3226             Decl : Node_Id;
3227             L    : constant List_Id := Scope_Stack.Table
3228                     (Scope_Stack.Last).Pending_Freeze_Actions;
3229
3230          begin
3231             if Is_Itype (Current_Scope) then
3232                Decl := Associated_Node_For_Itype (Current_Scope);
3233             else
3234                Decl := Parent (Current_Scope);
3235             end if;
3236
3237             Pop_Scope;
3238
3239             while not (Is_List_Member (Decl))
3240               or else Nkind_In (Parent (Decl), N_Protected_Definition,
3241                                                N_Task_Definition)
3242             loop
3243                Decl := Parent (Decl);
3244             end loop;
3245
3246             Insert_List_Before_And_Analyze (Decl, L);
3247          end;
3248
3249       else
3250          Pop_Scope;
3251       end if;
3252
3253    end End_Scope;
3254
3255    ---------------------
3256    -- End_Use_Clauses --
3257    ---------------------
3258
3259    procedure End_Use_Clauses (Clause : Node_Id) is
3260       U   : Node_Id;
3261
3262    begin
3263       --  Remove Use_Type clauses first, because they affect the
3264       --  visibility of operators in subsequent used packages.
3265
3266       U := Clause;
3267       while Present (U) loop
3268          if Nkind (U) = N_Use_Type_Clause then
3269             End_Use_Type (U);
3270          end if;
3271
3272          Next_Use_Clause (U);
3273       end loop;
3274
3275       U := Clause;
3276       while Present (U) loop
3277          if Nkind (U) = N_Use_Package_Clause then
3278             End_Use_Package (U);
3279          end if;
3280
3281          Next_Use_Clause (U);
3282       end loop;
3283    end End_Use_Clauses;
3284
3285    ---------------------
3286    -- End_Use_Package --
3287    ---------------------
3288
3289    procedure End_Use_Package (N : Node_Id) is
3290       Pack_Name : Node_Id;
3291       Pack      : Entity_Id;
3292       Id        : Entity_Id;
3293       Elmt      : Elmt_Id;
3294
3295       function Is_Primitive_Operator
3296         (Op : Entity_Id;
3297          F  : Entity_Id) return Boolean;
3298       --  Check whether Op is a primitive operator of a use-visible type
3299
3300       ---------------------------
3301       -- Is_Primitive_Operator --
3302       ---------------------------
3303
3304       function Is_Primitive_Operator
3305         (Op : Entity_Id;
3306          F  : Entity_Id) return Boolean
3307       is
3308          T : constant Entity_Id := Etype (F);
3309       begin
3310          return In_Use (T)
3311            and then Scope (T) = Scope (Op);
3312       end Is_Primitive_Operator;
3313
3314    --  Start of processing for End_Use_Package
3315
3316    begin
3317       Pack_Name := First (Names (N));
3318       while Present (Pack_Name) loop
3319
3320          --  Test that Pack_Name actually denotes a package before processing
3321
3322          if Is_Entity_Name (Pack_Name)
3323            and then Ekind (Entity (Pack_Name)) = E_Package
3324          then
3325             Pack := Entity (Pack_Name);
3326
3327             if In_Open_Scopes (Pack) then
3328                null;
3329
3330             elsif not Redundant_Use (Pack_Name) then
3331                Set_In_Use (Pack, False);
3332                Set_Current_Use_Clause (Pack, Empty);
3333
3334                Id := First_Entity (Pack);
3335                while Present (Id) loop
3336
3337                   --  Preserve use-visibility of operators that are primitive
3338                   --  operators of a type that is use-visible through an active
3339                   --  use_type clause.
3340
3341                   if Nkind (Id) = N_Defining_Operator_Symbol
3342                        and then
3343                          (Is_Primitive_Operator (Id, First_Formal (Id))
3344                             or else
3345                           (Present (Next_Formal (First_Formal (Id)))
3346                              and then
3347                                Is_Primitive_Operator
3348                                  (Id, Next_Formal (First_Formal (Id)))))
3349                   then
3350                      null;
3351
3352                   else
3353                      Set_Is_Potentially_Use_Visible (Id, False);
3354                   end if;
3355
3356                   if Is_Private_Type (Id)
3357                     and then Present (Full_View (Id))
3358                   then
3359                      Set_Is_Potentially_Use_Visible (Full_View (Id), False);
3360                   end if;
3361
3362                   Next_Entity (Id);
3363                end loop;
3364
3365                if Present (Renamed_Object (Pack)) then
3366                   Set_In_Use (Renamed_Object (Pack), False);
3367                   Set_Current_Use_Clause (Renamed_Object (Pack), Empty);
3368                end if;
3369
3370                if Chars (Pack) = Name_System
3371                  and then Scope (Pack) = Standard_Standard
3372                  and then Present_System_Aux
3373                then
3374                   Id := First_Entity (System_Aux_Id);
3375                   while Present (Id) loop
3376                      Set_Is_Potentially_Use_Visible (Id, False);
3377
3378                      if Is_Private_Type (Id)
3379                        and then Present (Full_View (Id))
3380                      then
3381                         Set_Is_Potentially_Use_Visible (Full_View (Id), False);
3382                      end if;
3383
3384                      Next_Entity (Id);
3385                   end loop;
3386
3387                   Set_In_Use (System_Aux_Id, False);
3388                end if;
3389
3390             else
3391                Set_Redundant_Use (Pack_Name, False);
3392             end if;
3393          end if;
3394
3395          Next (Pack_Name);
3396       end loop;
3397
3398       if Present (Hidden_By_Use_Clause (N)) then
3399          Elmt := First_Elmt (Hidden_By_Use_Clause (N));
3400          while Present (Elmt) loop
3401             declare
3402                E : constant Entity_Id := Node (Elmt);
3403
3404             begin
3405                --  Reset either Use_Visibility or Direct_Visibility, depending
3406                --  on how the entity was hidden by the use clause.
3407
3408                if In_Use (Scope (E))
3409                  and then Used_As_Generic_Actual (Scope (E))
3410                then
3411                   Set_Is_Potentially_Use_Visible (Node (Elmt));
3412                else
3413                   Set_Is_Immediately_Visible (Node (Elmt));
3414                end if;
3415
3416                Next_Elmt (Elmt);
3417             end;
3418          end loop;
3419
3420          Set_Hidden_By_Use_Clause (N, No_Elist);
3421       end if;
3422    end End_Use_Package;
3423
3424    ------------------
3425    -- End_Use_Type --
3426    ------------------
3427
3428    procedure End_Use_Type (N : Node_Id) is
3429       Elmt    : Elmt_Id;
3430       Id      : Entity_Id;
3431       Op_List : Elist_Id;
3432       Op      : Entity_Id;
3433       T       : Entity_Id;
3434
3435       function May_Be_Used_Primitive_Of (T : Entity_Id) return Boolean;
3436       --  An operator may be primitive in several types, if they are declared
3437       --  in the same scope as the operator. To determine the use-visiblity of
3438       --  the operator in such cases we must examine all types in the profile.
3439
3440       ------------------------------
3441       -- May_Be_Used_Primitive_Of --
3442       ------------------------------
3443
3444       function May_Be_Used_Primitive_Of (T : Entity_Id) return Boolean is
3445       begin
3446          return Scope (Op) = Scope (T)
3447            and then (In_Use (T) or else Is_Potentially_Use_Visible (T));
3448       end May_Be_Used_Primitive_Of;
3449
3450    --  Start of processing for End_Use_Type
3451
3452    begin
3453       Id := First (Subtype_Marks (N));
3454       while Present (Id) loop
3455
3456          --  A call to Rtsfind may occur while analyzing a use_type clause,
3457          --  in which case the type marks are not resolved yet, and there is
3458          --  nothing to remove.
3459
3460          if not Is_Entity_Name (Id) or else No (Entity (Id)) then
3461             goto Continue;
3462          end if;
3463
3464          T := Entity (Id);
3465
3466          if T = Any_Type or else From_With_Type (T) then
3467             null;
3468
3469          --  Note that the use_type clause may mention a subtype of the type
3470          --  whose primitive operations have been made visible. Here as
3471          --  elsewhere, it is the base type that matters for visibility.
3472
3473          elsif In_Open_Scopes (Scope (Base_Type (T))) then
3474             null;
3475
3476          elsif not Redundant_Use (Id) then
3477             Set_In_Use (T, False);
3478             Set_In_Use (Base_Type (T), False);
3479             Set_Current_Use_Clause (T, Empty);
3480             Set_Current_Use_Clause (Base_Type (T), Empty);
3481             Op_List := Collect_Primitive_Operations (T);
3482
3483             Elmt := First_Elmt (Op_List);
3484             while Present (Elmt) loop
3485                Op := Node (Elmt);
3486
3487                if Nkind (Op) = N_Defining_Operator_Symbol then
3488                   declare
3489                      T_First : constant Entity_Id :=
3490                                  Base_Type (Etype (First_Formal (Op)));
3491                      T_Res   : constant Entity_Id := Base_Type (Etype (Op));
3492                      T_Next  : Entity_Id;
3493
3494                   begin
3495                      if Present (Next_Formal (First_Formal (Op))) then
3496                         T_Next :=
3497                           Base_Type (Etype (Next_Formal (First_Formal (Op))));
3498                      else
3499                         T_Next := T_First;
3500                      end if;
3501
3502                      if not May_Be_Used_Primitive_Of (T_First)
3503                        and then not May_Be_Used_Primitive_Of (T_Next)
3504                        and then not May_Be_Used_Primitive_Of (T_Res)
3505                      then
3506                         Set_Is_Potentially_Use_Visible (Op, False);
3507                      end if;
3508                   end;
3509                end if;
3510
3511                Next_Elmt (Elmt);
3512             end loop;
3513          end if;
3514
3515          <<Continue>>
3516          Next (Id);
3517       end loop;
3518    end End_Use_Type;
3519
3520    ----------------------
3521    -- Find_Direct_Name --
3522    ----------------------
3523
3524    procedure Find_Direct_Name (N : Node_Id) is
3525       E    : Entity_Id;
3526       E2   : Entity_Id;
3527       Msg  : Boolean;
3528
3529       Inst : Entity_Id := Empty;
3530       --  Enclosing instance, if any
3531
3532       Homonyms : Entity_Id;
3533       --  Saves start of homonym chain
3534
3535       Nvis_Entity : Boolean;
3536       --  Set True to indicate that there is at least one entity on the homonym
3537       --  chain which, while not visible, is visible enough from the user point
3538       --  of view to warrant an error message of "not visible" rather than
3539       --  undefined.
3540
3541       Nvis_Is_Private_Subprg : Boolean := False;
3542       --  Ada 2005 (AI-262): Set True to indicate that a form of Beaujolais
3543       --  effect concerning library subprograms has been detected. Used to
3544       --  generate the precise error message.
3545
3546       function From_Actual_Package (E : Entity_Id) return Boolean;
3547       --  Returns true if the entity is declared in a package that is
3548       --  an actual for a formal package of the current instance. Such an
3549       --  entity requires special handling because it may be use-visible
3550       --  but hides directly visible entities defined outside the instance.
3551
3552       function Is_Actual_Parameter return Boolean;
3553       --  This function checks if the node N is an identifier that is an actual
3554       --  parameter of a procedure call. If so it returns True, otherwise it
3555       --  return False. The reason for this check is that at this stage we do
3556       --  not know what procedure is being called if the procedure might be
3557       --  overloaded, so it is premature to go setting referenced flags or
3558       --  making calls to Generate_Reference. We will wait till Resolve_Actuals
3559       --  for that processing
3560
3561       function Known_But_Invisible (E : Entity_Id) return Boolean;
3562       --  This function determines whether the entity E (which is not
3563       --  visible) can reasonably be considered to be known to the writer
3564       --  of the reference. This is a heuristic test, used only for the
3565       --  purposes of figuring out whether we prefer to complain that an
3566       --  entity is undefined or invisible (and identify the declaration
3567       --  of the invisible entity in the latter case). The point here is
3568       --  that we don't want to complain that something is invisible and
3569       --  then point to something entirely mysterious to the writer.
3570
3571       procedure Nvis_Messages;
3572       --  Called if there are no visible entries for N, but there is at least
3573       --  one non-directly visible, or hidden declaration. This procedure
3574       --  outputs an appropriate set of error messages.
3575
3576       procedure Undefined (Nvis : Boolean);
3577       --  This function is called if the current node has no corresponding
3578       --  visible entity or entities. The value set in Msg indicates whether
3579       --  an error message was generated (multiple error messages for the
3580       --  same variable are generally suppressed, see body for details).
3581       --  Msg is True if an error message was generated, False if not. This
3582       --  value is used by the caller to determine whether or not to output
3583       --  additional messages where appropriate. The parameter is set False
3584       --  to get the message "X is undefined", and True to get the message
3585       --  "X is not visible".
3586
3587       -------------------------
3588       -- From_Actual_Package --
3589       -------------------------
3590
3591       function From_Actual_Package (E : Entity_Id) return Boolean is
3592          Scop : constant Entity_Id := Scope (E);
3593          Act  : Entity_Id;
3594
3595       begin
3596          if not In_Instance then
3597             return False;
3598          else
3599             Inst := Current_Scope;
3600             while Present (Inst)
3601               and then Ekind (Inst) /= E_Package
3602               and then not Is_Generic_Instance (Inst)
3603             loop
3604                Inst := Scope (Inst);
3605             end loop;
3606
3607             if No (Inst) then
3608                return False;
3609             end if;
3610
3611             Act := First_Entity (Inst);
3612             while Present (Act) loop
3613                if Ekind (Act) = E_Package then
3614
3615                   --  Check for end of actuals list
3616
3617                   if Renamed_Object (Act) = Inst then
3618                      return False;
3619
3620                   elsif Present (Associated_Formal_Package (Act))
3621                     and then Renamed_Object (Act) = Scop
3622                   then
3623                      --  Entity comes from (instance of) formal package
3624
3625                      return True;
3626
3627                   else
3628                      Next_Entity (Act);
3629                   end if;
3630
3631                else
3632                   Next_Entity (Act);
3633                end if;
3634             end loop;
3635
3636             return False;
3637          end if;
3638       end From_Actual_Package;
3639
3640       -------------------------
3641       -- Is_Actual_Parameter --
3642       -------------------------
3643
3644       function Is_Actual_Parameter return Boolean is
3645       begin
3646          return
3647            Nkind (N) = N_Identifier
3648              and then
3649                (Nkind (Parent (N)) = N_Procedure_Call_Statement
3650                   or else
3651                     (Nkind (Parent (N)) = N_Parameter_Association
3652                        and then N = Explicit_Actual_Parameter (Parent (N))
3653                        and then Nkind (Parent (Parent (N))) =
3654                                           N_Procedure_Call_Statement));
3655       end Is_Actual_Parameter;
3656
3657       -------------------------
3658       -- Known_But_Invisible --
3659       -------------------------
3660
3661       function Known_But_Invisible (E : Entity_Id) return Boolean is
3662          Fname : File_Name_Type;
3663
3664       begin
3665          --  Entities in Standard are always considered to be known
3666
3667          if Sloc (E) <= Standard_Location then
3668             return True;
3669
3670          --  An entity that does not come from source is always considered
3671          --  to be unknown, since it is an artifact of code expansion.
3672
3673          elsif not Comes_From_Source (E) then
3674             return False;
3675
3676          --  In gnat internal mode, we consider all entities known
3677
3678          elsif GNAT_Mode then
3679             return True;
3680          end if;
3681
3682          --  Here we have an entity that is not from package Standard, and
3683          --  which comes from Source. See if it comes from an internal file.
3684
3685          Fname := Unit_File_Name (Get_Source_Unit (E));
3686
3687          --  Case of from internal file
3688
3689          if Is_Internal_File_Name (Fname) then
3690
3691             --  Private part entities in internal files are never considered
3692             --  to be known to the writer of normal application code.
3693
3694             if Is_Hidden (E) then
3695                return False;
3696             end if;
3697
3698             --  Entities from System packages other than System and
3699             --  System.Storage_Elements are not considered to be known.
3700             --  System.Auxxxx files are also considered known to the user.
3701
3702             --  Should refine this at some point to generally distinguish
3703             --  between known and unknown internal files ???
3704
3705             Get_Name_String (Fname);
3706
3707             return
3708               Name_Len < 2
3709                 or else
3710               Name_Buffer (1 .. 2) /= "s-"
3711                 or else
3712               Name_Buffer (3 .. 8) = "stoele"
3713                 or else
3714               Name_Buffer (3 .. 5) = "aux";
3715
3716          --  If not an internal file, then entity is definitely known,
3717          --  even if it is in a private part (the message generated will
3718          --  note that it is in a private part)
3719
3720          else
3721             return True;
3722          end if;
3723       end Known_But_Invisible;
3724
3725       -------------------
3726       -- Nvis_Messages --
3727       -------------------
3728
3729       procedure Nvis_Messages is
3730          Comp_Unit : Node_Id;
3731          Ent       : Entity_Id;
3732          Found     : Boolean := False;
3733          Hidden    : Boolean := False;
3734          Item      : Node_Id;
3735
3736       begin
3737          --  Ada 2005 (AI-262): Generate a precise error concerning the
3738          --  Beaujolais effect that was previously detected
3739
3740          if Nvis_Is_Private_Subprg then
3741
3742             pragma Assert (Nkind (E2) = N_Defining_Identifier
3743                             and then Ekind (E2) = E_Function
3744                             and then Scope (E2) = Standard_Standard
3745                             and then Has_Private_With (E2));
3746
3747             --  Find the sloc corresponding to the private with'ed unit
3748
3749             Comp_Unit := Cunit (Current_Sem_Unit);
3750             Error_Msg_Sloc := No_Location;
3751
3752             Item := First (Context_Items (Comp_Unit));
3753             while Present (Item) loop
3754                if Nkind (Item) = N_With_Clause
3755                  and then Private_Present (Item)
3756                  and then Entity (Name (Item)) = E2
3757                then
3758                   Error_Msg_Sloc := Sloc (Item);
3759                   exit;
3760                end if;
3761
3762                Next (Item);
3763             end loop;
3764
3765             pragma Assert (Error_Msg_Sloc /= No_Location);
3766
3767             Error_Msg_N ("(Ada 2005): hidden by private with clause #", N);
3768             return;
3769          end if;
3770
3771          Undefined (Nvis => True);
3772
3773          if Msg then
3774
3775             --  First loop does hidden declarations
3776
3777             Ent := Homonyms;
3778             while Present (Ent) loop
3779                if Is_Potentially_Use_Visible (Ent) then
3780                   if not Hidden then
3781                      Error_Msg_N -- CODEFIX
3782                        ("multiple use clauses cause hiding!", N);
3783                      Hidden := True;
3784                   end if;
3785
3786                   Error_Msg_Sloc := Sloc (Ent);
3787                   Error_Msg_N -- CODEFIX
3788                     ("hidden declaration#!", N);
3789                end if;
3790
3791                Ent := Homonym (Ent);
3792             end loop;
3793
3794             --  If we found hidden declarations, then that's enough, don't
3795             --  bother looking for non-visible declarations as well.
3796
3797             if Hidden then
3798                return;
3799             end if;
3800
3801             --  Second loop does non-directly visible declarations
3802
3803             Ent := Homonyms;
3804             while Present (Ent) loop
3805                if not Is_Potentially_Use_Visible (Ent) then
3806
3807                   --  Do not bother the user with unknown entities
3808
3809                   if not Known_But_Invisible (Ent) then
3810                      goto Continue;
3811                   end if;
3812
3813                   Error_Msg_Sloc := Sloc (Ent);
3814
3815                   --  Output message noting that there is a non-visible
3816                   --  declaration, distinguishing the private part case.
3817
3818                   if Is_Hidden (Ent) then
3819                      Error_Msg_N ("non-visible (private) declaration#!", N);
3820
3821                   --  If the entity is declared in a generic package, it
3822                   --  cannot be visible, so there is no point in adding it
3823                   --  to the list of candidates if another homograph from a
3824                   --  non-generic package has been seen.
3825
3826                   elsif Ekind (Scope (Ent)) = E_Generic_Package
3827                     and then Found
3828                   then
3829                      null;
3830
3831                   else
3832                      Error_Msg_N -- CODEFIX
3833                        ("non-visible declaration#!", N);
3834
3835                      if Ekind (Scope (Ent)) /= E_Generic_Package then
3836                         Found := True;
3837                      end if;
3838
3839                      if Is_Compilation_Unit (Ent)
3840                        and then
3841                          Nkind (Parent (Parent (N))) = N_Use_Package_Clause
3842                      then
3843                         Error_Msg_Qual_Level := 99;
3844                         Error_Msg_NE ("\\missing `WITH &;`", N, Ent);
3845                         Error_Msg_Qual_Level := 0;
3846                      end if;
3847                   end if;
3848
3849                   --  Set entity and its containing package as referenced. We
3850                   --  can't be sure of this, but this seems a better choice
3851                   --  to avoid unused entity messages.
3852
3853                   if Comes_From_Source (Ent) then
3854                      Set_Referenced (Ent);
3855                      Set_Referenced (Cunit_Entity (Get_Source_Unit (Ent)));
3856                   end if;
3857                end if;
3858
3859                <<Continue>>
3860                Ent := Homonym (Ent);
3861             end loop;
3862          end if;
3863       end Nvis_Messages;
3864
3865       ---------------
3866       -- Undefined --
3867       ---------------
3868
3869       procedure Undefined (Nvis : Boolean) is
3870          Emsg : Error_Msg_Id;
3871
3872       begin
3873          --  We should never find an undefined internal name. If we do, then
3874          --  see if we have previous errors. If so, ignore on the grounds that
3875          --  it is probably a cascaded message (e.g. a block label from a badly
3876          --  formed block). If no previous errors, then we have a real internal
3877          --  error of some kind so raise an exception.
3878
3879          if Is_Internal_Name (Chars (N)) then
3880             if Total_Errors_Detected /= 0 then
3881                return;
3882             else
3883                raise Program_Error;
3884             end if;
3885          end if;
3886
3887          --  A very specialized error check, if the undefined variable is
3888          --  a case tag, and the case type is an enumeration type, check
3889          --  for a possible misspelling, and if so, modify the identifier
3890
3891          --  Named aggregate should also be handled similarly ???
3892
3893          if Nkind (N) = N_Identifier
3894            and then Nkind (Parent (N)) = N_Case_Statement_Alternative
3895          then
3896             declare
3897                Case_Stm : constant Node_Id   := Parent (Parent (N));
3898                Case_Typ : constant Entity_Id := Etype (Expression (Case_Stm));
3899
3900                Lit : Node_Id;
3901
3902             begin
3903                if Is_Enumeration_Type (Case_Typ)
3904                  and then not Is_Standard_Character_Type (Case_Typ)
3905                then
3906                   Lit := First_Literal (Case_Typ);
3907                   Get_Name_String (Chars (Lit));
3908
3909                   if Chars (Lit) /= Chars (N)
3910                     and then Is_Bad_Spelling_Of (Chars (N), Chars (Lit)) then
3911                      Error_Msg_Node_2 := Lit;
3912                      Error_Msg_N
3913                        ("& is undefined, assume misspelling of &", N);
3914                      Rewrite (N, New_Occurrence_Of (Lit, Sloc (N)));
3915                      return;
3916                   end if;
3917
3918                   Lit := Next_Literal (Lit);
3919                end if;
3920             end;
3921          end if;
3922
3923          --  Normal processing
3924
3925          Set_Entity (N, Any_Id);
3926          Set_Etype  (N, Any_Type);
3927
3928          --  We use the table Urefs to keep track of entities for which we
3929          --  have issued errors for undefined references. Multiple errors
3930          --  for a single name are normally suppressed, however we modify
3931          --  the error message to alert the programmer to this effect.
3932
3933          for J in Urefs.First .. Urefs.Last loop
3934             if Chars (N) = Chars (Urefs.Table (J).Node) then
3935                if Urefs.Table (J).Err /= No_Error_Msg
3936                  and then Sloc (N) /= Urefs.Table (J).Loc
3937                then
3938                   Error_Msg_Node_1 := Urefs.Table (J).Node;
3939
3940                   if Urefs.Table (J).Nvis then
3941                      Change_Error_Text (Urefs.Table (J).Err,
3942                        "& is not visible (more references follow)");
3943                   else
3944                      Change_Error_Text (Urefs.Table (J).Err,
3945                        "& is undefined (more references follow)");
3946                   end if;
3947
3948                   Urefs.Table (J).Err := No_Error_Msg;
3949                end if;
3950
3951                --  Although we will set Msg False, and thus suppress the
3952                --  message, we also set Error_Posted True, to avoid any
3953                --  cascaded messages resulting from the undefined reference.
3954
3955                Msg := False;
3956                Set_Error_Posted (N, True);
3957                return;
3958             end if;
3959          end loop;
3960
3961          --  If entry not found, this is first undefined occurrence
3962
3963          if Nvis then
3964             Error_Msg_N ("& is not visible!", N);
3965             Emsg := Get_Msg_Id;
3966
3967          else
3968             Error_Msg_N ("& is undefined!", N);
3969             Emsg := Get_Msg_Id;
3970
3971             --  A very bizarre special check, if the undefined identifier
3972             --  is put or put_line, then add a special error message (since
3973             --  this is a very common error for beginners to make).
3974
3975             if Chars (N) = Name_Put or else Chars (N) = Name_Put_Line then
3976                Error_Msg_N
3977                  ("\\possible missing `WITH Ada.Text_'I'O; " &
3978                   "USE Ada.Text_'I'O`!", N);
3979
3980             --  Another special check if N is the prefix of a selected
3981             --  component which is a known unit, add message complaining
3982             --  about missing with for this unit.
3983
3984             elsif Nkind (Parent (N)) = N_Selected_Component
3985               and then N = Prefix (Parent (N))
3986               and then Is_Known_Unit (Parent (N))
3987             then
3988                Error_Msg_Node_2 := Selector_Name (Parent (N));
3989                Error_Msg_N ("\\missing `WITH &.&;`", Prefix (Parent (N)));
3990             end if;
3991
3992             --  Now check for possible misspellings
3993
3994             declare
3995                E      : Entity_Id;
3996                Ematch : Entity_Id := Empty;
3997
3998                Last_Name_Id : constant Name_Id :=
3999                                 Name_Id (Nat (First_Name_Id) +
4000                                            Name_Entries_Count - 1);
4001
4002             begin
4003                for Nam in First_Name_Id .. Last_Name_Id loop
4004                   E := Get_Name_Entity_Id (Nam);
4005
4006                   if Present (E)
4007                      and then (Is_Immediately_Visible (E)
4008                                  or else
4009                                Is_Potentially_Use_Visible (E))
4010                   then
4011                      if Is_Bad_Spelling_Of (Chars (N), Nam) then
4012                         Ematch := E;
4013                         exit;
4014                      end if;
4015                   end if;
4016                end loop;
4017
4018                if Present (Ematch) then
4019                   Error_Msg_NE -- CODEFIX
4020                     ("\possible misspelling of&", N, Ematch);
4021                end if;
4022             end;
4023          end if;
4024
4025          --  Make entry in undefined references table unless the full errors
4026          --  switch is set, in which case by refraining from generating the
4027          --  table entry, we guarantee that we get an error message for every
4028          --  undefined reference.
4029
4030          if not All_Errors_Mode then
4031             Urefs.Append (
4032               (Node => N,
4033                Err  => Emsg,
4034                Nvis => Nvis,
4035                Loc  => Sloc (N)));
4036          end if;
4037
4038          Msg := True;
4039       end Undefined;
4040
4041    --  Start of processing for Find_Direct_Name
4042
4043    begin
4044       --  If the entity pointer is already set, this is an internal node, or
4045       --  a node that is analyzed more than once, after a tree modification.
4046       --  In such a case there is no resolution to perform, just set the type.
4047
4048       if Present (Entity (N)) then
4049          if Is_Type (Entity (N)) then
4050             Set_Etype (N, Entity (N));
4051
4052          else
4053             declare
4054                Entyp : constant Entity_Id := Etype (Entity (N));
4055
4056             begin
4057                --  One special case here. If the Etype field is already set,
4058                --  and references the packed array type corresponding to the
4059                --  etype of the referenced entity, then leave it alone. This
4060                --  happens for trees generated from Exp_Pakd, where expressions
4061                --  can be deliberately "mis-typed" to the packed array type.
4062
4063                if Is_Array_Type (Entyp)
4064                  and then Is_Packed (Entyp)
4065                  and then Present (Etype (N))
4066                  and then Etype (N) = Packed_Array_Type (Entyp)
4067                then
4068                   null;
4069
4070                --  If not that special case, then just reset the Etype
4071
4072                else
4073                   Set_Etype (N, Etype (Entity (N)));
4074                end if;
4075             end;
4076          end if;
4077
4078          return;
4079       end if;
4080
4081       --  Here if Entity pointer was not set, we need full visibility analysis
4082       --  First we generate debugging output if the debug E flag is set.
4083
4084       if Debug_Flag_E then
4085          Write_Str ("Looking for ");
4086          Write_Name (Chars (N));
4087          Write_Eol;
4088       end if;
4089
4090       Homonyms := Current_Entity (N);
4091       Nvis_Entity := False;
4092
4093       E := Homonyms;
4094       while Present (E) loop
4095
4096          --  If entity is immediately visible or potentially use visible, then
4097          --  process the entity and we are done.
4098
4099          if Is_Immediately_Visible (E) then
4100             goto Immediately_Visible_Entity;
4101
4102          elsif Is_Potentially_Use_Visible (E) then
4103             goto Potentially_Use_Visible_Entity;
4104
4105          --  Note if a known but invisible entity encountered
4106
4107          elsif Known_But_Invisible (E) then
4108             Nvis_Entity := True;
4109          end if;
4110
4111          --  Move to next entity in chain and continue search
4112
4113          E := Homonym (E);
4114       end loop;
4115
4116       --  If no entries on homonym chain that were potentially visible,
4117       --  and no entities reasonably considered as non-visible, then
4118       --  we have a plain undefined reference, with no additional
4119       --  explanation required!
4120
4121       if not Nvis_Entity then
4122          Undefined (Nvis => False);
4123
4124       --  Otherwise there is at least one entry on the homonym chain that
4125       --  is reasonably considered as being known and non-visible.
4126
4127       else
4128          Nvis_Messages;
4129       end if;
4130
4131       return;
4132
4133       --  Processing for a potentially use visible entry found. We must search
4134       --  the rest of the homonym chain for two reasons. First, if there is a
4135       --  directly visible entry, then none of the potentially use-visible
4136       --  entities are directly visible (RM 8.4(10)). Second, we need to check
4137       --  for the case of multiple potentially use-visible entries hiding one
4138       --  another and as a result being non-directly visible (RM 8.4(11)).
4139
4140       <<Potentially_Use_Visible_Entity>> declare
4141          Only_One_Visible : Boolean := True;
4142          All_Overloadable : Boolean := Is_Overloadable (E);
4143
4144       begin
4145          E2 := Homonym (E);
4146          while Present (E2) loop
4147             if Is_Immediately_Visible (E2) then
4148
4149                --  If the use-visible entity comes from the actual for a
4150                --  formal package, it hides a directly visible entity from
4151                --  outside the instance.
4152
4153                if From_Actual_Package (E)
4154                  and then Scope_Depth (E2) < Scope_Depth (Inst)
4155                then
4156                   goto Found;
4157                else
4158                   E := E2;
4159                   goto Immediately_Visible_Entity;
4160                end if;
4161
4162             elsif Is_Potentially_Use_Visible (E2) then
4163                Only_One_Visible := False;
4164                All_Overloadable := All_Overloadable and Is_Overloadable (E2);
4165
4166             --  Ada 2005 (AI-262): Protect against a form of Beaujolais effect
4167             --  that can occur in private_with clauses. Example:
4168
4169             --    with A;
4170             --    private with B;              package A is
4171             --    package C is                   function B return Integer;
4172             --      use A;                     end A;
4173             --      V1 : Integer := B;
4174             --    private                      function B return Integer;
4175             --      V2 : Integer := B;
4176             --    end C;
4177
4178             --  V1 resolves to A.B, but V2 resolves to library unit B
4179
4180             elsif Ekind (E2) = E_Function
4181               and then Scope (E2) = Standard_Standard
4182               and then Has_Private_With (E2)
4183             then
4184                Only_One_Visible       := False;
4185                All_Overloadable       := False;
4186                Nvis_Is_Private_Subprg := True;
4187                exit;
4188             end if;
4189
4190             E2 := Homonym (E2);
4191          end loop;
4192
4193          --  On falling through this loop, we have checked that there are no
4194          --  immediately visible entities. Only_One_Visible is set if exactly
4195          --  one potentially use visible entity exists. All_Overloadable is
4196          --  set if all the potentially use visible entities are overloadable.
4197          --  The condition for legality is that either there is one potentially
4198          --  use visible entity, or if there is more than one, then all of them
4199          --  are overloadable.
4200
4201          if Only_One_Visible or All_Overloadable then
4202             goto Found;
4203
4204          --  If there is more than one potentially use-visible entity and at
4205          --  least one of them non-overloadable, we have an error (RM 8.4(11).
4206          --  Note that E points to the first such entity on the homonym list.
4207          --  Special case: if one of the entities is declared in an actual
4208          --  package, it was visible in the generic, and takes precedence over
4209          --  other entities that are potentially use-visible. Same if it is
4210          --  declared in a local instantiation of the current instance.
4211
4212          else
4213             if In_Instance then
4214
4215                --  Find current instance
4216
4217                Inst := Current_Scope;
4218                while Present (Inst)
4219                  and then Inst /= Standard_Standard
4220                loop
4221                   if Is_Generic_Instance (Inst) then
4222                      exit;
4223                   end if;
4224
4225                   Inst := Scope (Inst);
4226                end loop;
4227
4228                E2 := E;
4229                while Present (E2) loop
4230                   if From_Actual_Package (E2)
4231                     or else
4232                       (Is_Generic_Instance (Scope (E2))
4233                         and then Scope_Depth (Scope (E2)) > Scope_Depth (Inst))
4234                   then
4235                      E := E2;
4236                      goto Found;
4237                   end if;
4238
4239                   E2 := Homonym (E2);
4240                end loop;
4241
4242                Nvis_Messages;
4243                return;
4244
4245             elsif
4246               Is_Predefined_File_Name (Unit_File_Name (Current_Sem_Unit))
4247             then
4248                --  A use-clause in the body of a system file creates conflict
4249                --  with some entity in a user scope, while rtsfind is active.
4250                --  Keep only the entity coming from another predefined unit.
4251
4252                E2 := E;
4253                while Present (E2) loop
4254                   if Is_Predefined_File_Name
4255                     (Unit_File_Name (Get_Source_Unit (Sloc (E2))))
4256                   then
4257                      E := E2;
4258                      goto Found;
4259                   end if;
4260
4261                   E2 := Homonym (E2);
4262                end loop;
4263
4264                --  Entity must exist because predefined unit is correct
4265
4266                raise Program_Error;
4267
4268             else
4269                Nvis_Messages;
4270                return;
4271             end if;
4272          end if;
4273       end;
4274
4275       --  Come here with E set to the first immediately visible entity on
4276       --  the homonym chain. This is the one we want unless there is another
4277       --  immediately visible entity further on in the chain for an inner
4278       --  scope (RM 8.3(8)).
4279
4280       <<Immediately_Visible_Entity>> declare
4281          Level : Int;
4282          Scop  : Entity_Id;
4283
4284       begin
4285          --  Find scope level of initial entity. When compiling through
4286          --  Rtsfind, the previous context is not completely invisible, and
4287          --  an outer entity may appear on the chain, whose scope is below
4288          --  the entry for Standard that delimits the current scope stack.
4289          --  Indicate that the level for this spurious entry is outside of
4290          --  the current scope stack.
4291
4292          Level := Scope_Stack.Last;
4293          loop
4294             Scop := Scope_Stack.Table (Level).Entity;
4295             exit when Scop = Scope (E);
4296             Level := Level - 1;
4297             exit when Scop = Standard_Standard;
4298          end loop;
4299
4300          --  Now search remainder of homonym chain for more inner entry
4301          --  If the entity is Standard itself, it has no scope, and we
4302          --  compare it with the stack entry directly.
4303
4304          E2 := Homonym (E);
4305          while Present (E2) loop
4306             if Is_Immediately_Visible (E2) then
4307
4308                --  If a generic package contains a local declaration that
4309                --  has the same name as the generic, there may be a visibility
4310                --  conflict in an instance, where the local declaration must
4311                --  also hide the name of the corresponding package renaming.
4312                --  We check explicitly for a package declared by a renaming,
4313                --  whose renamed entity is an instance that is on the scope
4314                --  stack, and that contains a homonym in the same scope. Once
4315                --  we have found it, we know that the package renaming is not
4316                --  immediately visible, and that the identifier denotes the
4317                --  other entity (and its homonyms if overloaded).
4318
4319                if Scope (E) = Scope (E2)
4320                  and then Ekind (E) = E_Package
4321                  and then Present (Renamed_Object (E))
4322                  and then Is_Generic_Instance (Renamed_Object (E))
4323                  and then In_Open_Scopes (Renamed_Object (E))
4324                  and then Comes_From_Source (N)
4325                then
4326                   Set_Is_Immediately_Visible (E, False);
4327                   E := E2;
4328
4329                else
4330                   for J in Level + 1 .. Scope_Stack.Last loop
4331                      if Scope_Stack.Table (J).Entity = Scope (E2)
4332                        or else Scope_Stack.Table (J).Entity = E2
4333                      then
4334                         Level := J;
4335                         E := E2;
4336                         exit;
4337                      end if;
4338                   end loop;
4339                end if;
4340             end if;
4341
4342             E2 := Homonym (E2);
4343          end loop;
4344
4345          --  At the end of that loop, E is the innermost immediately
4346          --  visible entity, so we are all set.
4347       end;
4348
4349       --  Come here with entity found, and stored in E
4350
4351       <<Found>> begin
4352
4353          --  When distribution features are available (Get_PCS_Name /=
4354          --  Name_No_DSA), a remote access-to-subprogram type is converted
4355          --  into a record type holding whatever information is needed to
4356          --  perform a remote call on an RCI subprogram. In that case we
4357          --  rewrite any occurrence of the RAS type into the equivalent record
4358          --  type here. 'Access attribute references and RAS dereferences are
4359          --  then implemented using specific TSSs. However when distribution is
4360          --  not available (case of Get_PCS_Name = Name_No_DSA), we bypass the
4361          --  generation of these TSSs, and we must keep the RAS type in its
4362          --  original access-to-subprogram form (since all calls through a
4363          --  value of such type will be local anyway in the absence of a PCS).
4364
4365          if Comes_From_Source (N)
4366            and then Is_Remote_Access_To_Subprogram_Type (E)
4367            and then Expander_Active
4368            and then Get_PCS_Name /= Name_No_DSA
4369          then
4370             Rewrite (N,
4371               New_Occurrence_Of (Equivalent_Type (E), Sloc (N)));
4372             return;
4373          end if;
4374
4375          Set_Entity (N, E);
4376          --  Why no Style_Check here???
4377
4378          if Is_Type (E) then
4379             Set_Etype (N, E);
4380          else
4381             Set_Etype (N, Get_Full_View (Etype (E)));
4382          end if;
4383
4384          if Debug_Flag_E then
4385             Write_Str (" found  ");
4386             Write_Entity_Info (E, "      ");
4387          end if;
4388
4389          --  If the Ekind of the entity is Void, it means that all homonyms
4390          --  are hidden from all visibility (RM 8.3(5,14-20)). However, this
4391          --  test is skipped if the current scope is a record and the name is
4392          --  a pragma argument expression (case of Atomic and Volatile pragmas
4393          --  and possibly other similar pragmas added later, which are allowed
4394          --  to reference components in the current record).
4395
4396          if Ekind (E) = E_Void
4397            and then
4398              (not Is_Record_Type (Current_Scope)
4399                or else Nkind (Parent (N)) /= N_Pragma_Argument_Association)
4400          then
4401             Premature_Usage (N);
4402
4403          --  If the entity is overloadable, collect all interpretations of the
4404          --  name for subsequent overload resolution. We optimize a bit here to
4405          --  do this only if we have an overloadable entity that is not on its
4406          --  own on the homonym chain.
4407
4408          elsif Is_Overloadable (E)
4409            and then (Present (Homonym (E)) or else Current_Entity (N) /= E)
4410          then
4411             Collect_Interps (N);
4412
4413             --  If no homonyms were visible, the entity is unambiguous
4414
4415             if not Is_Overloaded (N) then
4416                if not Is_Actual_Parameter then
4417                   Generate_Reference (E, N);
4418                end if;
4419             end if;
4420
4421          --  Case of non-overloadable entity, set the entity providing that
4422          --  we do not have the case of a discriminant reference within a
4423          --  default expression. Such references are replaced with the
4424          --  corresponding discriminal, which is the formal corresponding to
4425          --  to the discriminant in the initialization procedure.
4426
4427          else
4428             --  Entity is unambiguous, indicate that it is referenced here
4429
4430             --  For a renaming of an object, always generate simple reference,
4431             --  we don't try to keep track of assignments in this case.
4432
4433             if Is_Object (E) and then Present (Renamed_Object (E)) then
4434                Generate_Reference (E, N);
4435
4436                --  If the renamed entity is a private protected component,
4437                --  reference the original component as well. This needs to be
4438                --  done because the private renamings are installed before any
4439                --  analysis has occurred. Reference to a private component will
4440                --  resolve to the renaming and the original component will be
4441                --  left unreferenced, hence the following.
4442
4443                if Is_Prival (E) then
4444                   Generate_Reference (Prival_Link (E), N);
4445                end if;
4446
4447             --  One odd case is that we do not want to set the Referenced flag
4448             --  if the entity is a label, and the identifier is the label in
4449             --  the source, since this is not a reference from the point of
4450             --  view of the user.
4451
4452             elsif Nkind (Parent (N)) = N_Label then
4453                declare
4454                   R : constant Boolean := Referenced (E);
4455
4456                begin
4457                   --  Generate reference unless this is an actual parameter
4458                   --  (see comment below)
4459
4460                   if Is_Actual_Parameter then
4461                      Generate_Reference (E, N);
4462                      Set_Referenced (E, R);
4463                   end if;
4464                end;
4465
4466             --  Normal case, not a label: generate reference
4467
4468             --  ??? It is too early to generate a reference here even if
4469             --    the entity is unambiguous, because the tree is not
4470             --    sufficiently typed at this point for Generate_Reference to
4471             --    determine whether this reference modifies the denoted object
4472             --    (because implicit dereferences cannot be identified prior to
4473             --    full type resolution).
4474             --
4475             --    The Is_Actual_Parameter routine takes care of one of these
4476             --    cases but there are others probably ???
4477
4478             else
4479                if not Is_Actual_Parameter then
4480                   Generate_Reference (E, N);
4481                end if;
4482
4483                Check_Nested_Access (E);
4484             end if;
4485
4486             --  Set Entity, with style check if need be. For a discriminant
4487             --  reference, replace by the corresponding discriminal, i.e. the
4488             --  parameter of the initialization procedure that corresponds to
4489             --  the discriminant. If this replacement is being performed, there
4490             --  is no style check to perform.
4491
4492             --  This replacement must not be done if we are currently
4493             --  processing a generic spec or body, because the discriminal
4494             --  has not been not generated in this case.
4495
4496             --  The replacement is also skipped if we are in special
4497             --  spec-expression mode. Why is this skipped in this case ???
4498
4499             if not In_Spec_Expression
4500               or else Ekind (E) /= E_Discriminant
4501               or else Inside_A_Generic
4502             then
4503                Set_Entity_With_Style_Check (N, E);
4504
4505             --  The replacement is not done either for a task discriminant that
4506             --  appears in a default expression of an entry parameter. See
4507             --  Expand_Discriminant in exp_ch2 for details on their handling.
4508
4509             elsif Is_Concurrent_Type (Scope (E)) then
4510                declare
4511                   P : Node_Id;
4512
4513                begin
4514                   P := Parent (N);
4515                   while Present (P)
4516                     and then not Nkind_In (P, N_Parameter_Specification,
4517                                               N_Component_Declaration)
4518                   loop
4519                      P := Parent (P);
4520                   end loop;
4521
4522                   if Present (P)
4523                      and then Nkind (P) = N_Parameter_Specification
4524                   then
4525                      null;
4526                   else
4527                      Set_Entity (N, Discriminal (E));
4528                   end if;
4529                end;
4530
4531             --  Otherwise, this is a discriminant in a context in which
4532             --  it is a reference to the corresponding parameter of the
4533             --  init proc for the enclosing type.
4534
4535             else
4536                Set_Entity (N, Discriminal (E));
4537             end if;
4538          end if;
4539       end;
4540    end Find_Direct_Name;
4541
4542    ------------------------
4543    -- Find_Expanded_Name --
4544    ------------------------
4545
4546    --  This routine searches the homonym chain of the entity until it finds
4547    --  an entity declared in the scope denoted by the prefix. If the entity
4548    --  is private, it may nevertheless be immediately visible, if we are in
4549    --  the scope of its declaration.
4550
4551    procedure Find_Expanded_Name (N : Node_Id) is
4552       Selector  : constant Node_Id := Selector_Name (N);
4553       Candidate : Entity_Id        := Empty;
4554       P_Name    : Entity_Id;
4555       O_Name    : Entity_Id;
4556       Id        : Entity_Id;
4557
4558    begin
4559       P_Name := Entity (Prefix (N));
4560       O_Name := P_Name;
4561
4562       --  If the prefix is a renamed package, look for the entity in the
4563       --  original package.
4564
4565       if Ekind (P_Name) = E_Package
4566         and then Present (Renamed_Object (P_Name))
4567       then
4568          P_Name := Renamed_Object (P_Name);
4569
4570          --  Rewrite node with entity field pointing to renamed object
4571
4572          Rewrite (Prefix (N), New_Copy (Prefix (N)));
4573          Set_Entity (Prefix (N), P_Name);
4574
4575       --  If the prefix is an object of a concurrent type, look for
4576       --  the entity in the associated task or protected type.
4577
4578       elsif Is_Concurrent_Type (Etype (P_Name)) then
4579          P_Name := Etype (P_Name);
4580       end if;
4581
4582       Id := Current_Entity (Selector);
4583
4584       declare
4585          Is_New_Candidate : Boolean;
4586
4587       begin
4588          while Present (Id) loop
4589             if Scope (Id) = P_Name then
4590                Candidate        := Id;
4591                Is_New_Candidate := True;
4592
4593             --  Ada 2005 (AI-217): Handle shadow entities associated with types
4594             --  declared in limited-withed nested packages. We don't need to
4595             --  handle E_Incomplete_Subtype entities because the entities in
4596             --  the limited view are always E_Incomplete_Type entities (see
4597             --  Build_Limited_Views). Regarding the expression used to evaluate
4598             --  the scope, it is important to note that the limited view also
4599             --  has shadow entities associated nested packages. For this reason
4600             --  the correct scope of the entity is the scope of the real entity
4601             --  The non-limited view may itself be incomplete, in which case
4602             --  get the full view if available.
4603
4604             elsif From_With_Type (Id)
4605               and then Is_Type (Id)
4606               and then Ekind (Id) = E_Incomplete_Type
4607               and then Present (Non_Limited_View (Id))
4608               and then Scope (Non_Limited_View (Id)) = P_Name
4609             then
4610                Candidate        := Get_Full_View (Non_Limited_View (Id));
4611                Is_New_Candidate := True;
4612
4613             else
4614                Is_New_Candidate := False;
4615             end if;
4616
4617             if Is_New_Candidate then
4618                if Is_Child_Unit (Id) then
4619                   exit when Is_Visible_Child_Unit (Id)
4620                     or else Is_Immediately_Visible (Id);
4621
4622                else
4623                   exit when not Is_Hidden (Id)
4624                     or else Is_Immediately_Visible (Id);
4625                end if;
4626             end if;
4627
4628             Id := Homonym (Id);
4629          end loop;
4630       end;
4631
4632       if No (Id)
4633         and then (Ekind (P_Name) = E_Procedure
4634                     or else
4635                   Ekind (P_Name) = E_Function)
4636         and then Is_Generic_Instance (P_Name)
4637       then
4638          --  Expanded name denotes entity in (instance of) generic subprogram.
4639          --  The entity may be in the subprogram instance, or may denote one of
4640          --  the formals, which is declared in the enclosing wrapper package.
4641
4642          P_Name := Scope (P_Name);
4643
4644          Id := Current_Entity (Selector);
4645          while Present (Id) loop
4646             exit when Scope (Id) = P_Name;
4647             Id := Homonym (Id);
4648          end loop;
4649       end if;
4650
4651       if No (Id) or else Chars (Id) /= Chars (Selector) then
4652          Set_Etype (N, Any_Type);
4653
4654          --  If we are looking for an entity defined in System, try to find it
4655          --  in the child package that may have been provided as an extension
4656          --  to System. The Extend_System pragma will have supplied the name of
4657          --  the extension, which may have to be loaded.
4658
4659          if Chars (P_Name) = Name_System
4660            and then Scope (P_Name) = Standard_Standard
4661            and then Present (System_Extend_Unit)
4662            and then Present_System_Aux (N)
4663          then
4664             Set_Entity (Prefix (N), System_Aux_Id);
4665             Find_Expanded_Name (N);
4666             return;
4667
4668          elsif Nkind (Selector) = N_Operator_Symbol
4669            and then Has_Implicit_Operator (N)
4670          then
4671             --  There is an implicit instance of the predefined operator in
4672             --  the given scope. The operator entity is defined in Standard.
4673             --  Has_Implicit_Operator makes the node into an Expanded_Name.
4674
4675             return;
4676
4677          elsif Nkind (Selector) = N_Character_Literal
4678            and then Has_Implicit_Character_Literal (N)
4679          then
4680             --  If there is no literal defined in the scope denoted by the
4681             --  prefix, the literal may belong to (a type derived from)
4682             --  Standard_Character, for which we have no explicit literals.
4683
4684             return;
4685
4686          else
4687             --  If the prefix is a single concurrent object, use its name in
4688             --  the error message, rather than that of the anonymous type.
4689
4690             if Is_Concurrent_Type (P_Name)
4691               and then Is_Internal_Name (Chars (P_Name))
4692             then
4693                Error_Msg_Node_2 := Entity (Prefix (N));
4694             else
4695                Error_Msg_Node_2 := P_Name;
4696             end if;
4697
4698             if P_Name = System_Aux_Id then
4699                P_Name := Scope (P_Name);
4700                Set_Entity (Prefix (N), P_Name);
4701             end if;
4702
4703             if Present (Candidate) then
4704
4705                --  If we know that the unit is a child unit we can give a more
4706                --  accurate error message.
4707
4708                if Is_Child_Unit (Candidate) then
4709
4710                   --  If the candidate is a private child unit and we are in
4711                   --  the visible part of a public unit, specialize the error
4712                   --  message. There might be a private with_clause for it,
4713                   --  but it is not currently active.
4714
4715                   if Is_Private_Descendant (Candidate)
4716                     and then Ekind (Current_Scope) = E_Package
4717                     and then not In_Private_Part (Current_Scope)
4718                     and then not Is_Private_Descendant (Current_Scope)
4719                   then
4720                      Error_Msg_N ("private child unit& is not visible here",
4721                                   Selector);
4722
4723                   --  Normal case where we have a missing with for a child unit
4724
4725                   else
4726                      Error_Msg_Qual_Level := 99;
4727                      Error_Msg_NE ("missing `WITH &;`", Selector, Candidate);
4728                      Error_Msg_Qual_Level := 0;
4729                   end if;
4730
4731                   --  Here we don't know that this is a child unit
4732
4733                else
4734                   Error_Msg_NE ("& is not a visible entity of&", N, Selector);
4735                end if;
4736
4737             else
4738                --  Within the instantiation of a child unit, the prefix may
4739                --  denote the parent instance, but the selector has the name
4740                --  of the original child. Find whether we are within the
4741                --  corresponding instance, and get the proper entity, which
4742                --  can only be an enclosing scope.
4743
4744                if O_Name /= P_Name
4745                  and then In_Open_Scopes (P_Name)
4746                  and then Is_Generic_Instance (P_Name)
4747                then
4748                   declare
4749                      S : Entity_Id := Current_Scope;
4750                      P : Entity_Id;
4751
4752                   begin
4753                      for J in reverse 0 .. Scope_Stack.Last loop
4754                         S := Scope_Stack.Table (J).Entity;
4755
4756                         exit when S = Standard_Standard;
4757
4758                         if Ekind (S) = E_Function
4759                           or else Ekind (S) = E_Package
4760                           or else Ekind (S) = E_Procedure
4761                         then
4762                            P := Generic_Parent (Specification
4763                                   (Unit_Declaration_Node (S)));
4764
4765                            if Present (P)
4766                              and then Chars (Scope (P)) = Chars (O_Name)
4767                              and then Chars (P) = Chars (Selector)
4768                            then
4769                               Id := S;
4770                               goto Found;
4771                            end if;
4772                         end if;
4773
4774                      end loop;
4775                   end;
4776                end if;
4777
4778                --  If this is a selection from Ada, System or Interfaces, then
4779                --  we assume a missing with for the corresponding package.
4780
4781                if Is_Known_Unit (N) then
4782                   if not Error_Posted (N) then
4783                      Error_Msg_Node_2 := Selector;
4784                      Error_Msg_N ("missing `WITH &.&;`", Prefix (N));
4785                   end if;
4786
4787                --  If this is a selection from a dummy package, then suppress
4788                --  the error message, of course the entity is missing if the
4789                --  package is missing!
4790
4791                elsif Sloc (Error_Msg_Node_2) = No_Location then
4792                   null;
4793
4794                --  Here we have the case of an undefined component
4795
4796                else
4797
4798                   --  The prefix may hide a homonym in the context that
4799                   --  declares the desired entity. This error can use a
4800                   --  specialized message.
4801
4802                   if In_Open_Scopes (P_Name)
4803                     and then Present (Homonym (P_Name))
4804                     and then Is_Compilation_Unit (Homonym (P_Name))
4805                     and then
4806                      (Is_Immediately_Visible (Homonym (P_Name))
4807                         or else Is_Visible_Child_Unit (Homonym (P_Name)))
4808                   then
4809                      declare
4810                         H : constant Entity_Id := Homonym (P_Name);
4811
4812                      begin
4813                         Id := First_Entity (H);
4814                         while Present (Id) loop
4815                            if Chars (Id) = Chars (Selector) then
4816                               Error_Msg_Qual_Level := 99;
4817                               Error_Msg_Name_1 := Chars (Selector);
4818                               Error_Msg_NE
4819                                 ("% not declared in&", N, P_Name);
4820                               Error_Msg_NE
4821                                 ("\use fully qualified name starting with"
4822                                   & " Standard to make& visible", N, H);
4823                               Error_Msg_Qual_Level := 0;
4824                               goto Done;
4825                            end if;
4826
4827                            Next_Entity (Id);
4828                         end loop;
4829
4830                         --  If not found,  standard error message.
4831
4832                         Error_Msg_NE ("& not declared in&", N, Selector);
4833
4834                         <<Done>> null;
4835                      end;
4836
4837                   else
4838                      Error_Msg_NE ("& not declared in&", N, Selector);
4839                   end if;
4840
4841                   --  Check for misspelling of some entity in prefix
4842
4843                   Id := First_Entity (P_Name);
4844                   while Present (Id) loop
4845                      if Is_Bad_Spelling_Of (Chars (Id), Chars (Selector))
4846                        and then not Is_Internal_Name (Chars (Id))
4847                      then
4848                         Error_Msg_NE -- CODEFIX
4849                           ("possible misspelling of&", Selector, Id);
4850                         exit;
4851                      end if;
4852
4853                      Next_Entity (Id);
4854                   end loop;
4855
4856                   --  Specialize the message if this may be an instantiation
4857                   --  of a child unit that was not mentioned in the context.
4858
4859                   if Nkind (Parent (N)) = N_Package_Instantiation
4860                     and then Is_Generic_Instance (Entity (Prefix (N)))
4861                     and then Is_Compilation_Unit
4862                                (Generic_Parent (Parent (Entity (Prefix (N)))))
4863                   then
4864                      Error_Msg_Node_2 := Selector;
4865                      Error_Msg_N ("\missing `WITH &.&;`", Prefix (N));
4866                   end if;
4867                end if;
4868             end if;
4869
4870             Id := Any_Id;
4871          end if;
4872       end if;
4873
4874       <<Found>>
4875       if Comes_From_Source (N)
4876         and then Is_Remote_Access_To_Subprogram_Type (Id)
4877         and then Present (Equivalent_Type (Id))
4878       then
4879          --  If we are not actually generating distribution code (i.e. the
4880          --  current PCS is the dummy non-distributed version), then the
4881          --  Equivalent_Type will be missing, and Id should be treated as
4882          --  a regular access-to-subprogram type.
4883
4884          Id := Equivalent_Type (Id);
4885          Set_Chars (Selector, Chars (Id));
4886       end if;
4887
4888       --  Ada 2005 (AI-50217): Check usage of entities in limited withed units
4889
4890       if Ekind (P_Name) = E_Package
4891         and then From_With_Type (P_Name)
4892       then
4893          if From_With_Type (Id)
4894            or else Is_Type (Id)
4895            or else Ekind (Id) = E_Package
4896          then
4897             null;
4898          else
4899             Error_Msg_N
4900               ("limited withed package can only be used to access "
4901                & "incomplete types",
4902                 N);
4903          end if;
4904       end if;
4905
4906       if Is_Task_Type (P_Name)
4907         and then ((Ekind (Id) = E_Entry
4908                      and then Nkind (Parent (N)) /= N_Attribute_Reference)
4909                    or else
4910                     (Ekind (Id) = E_Entry_Family
4911                       and then
4912                         Nkind (Parent (Parent (N))) /= N_Attribute_Reference))
4913       then
4914          --  It is an entry call after all, either to the current task (which
4915          --  will deadlock) or to an enclosing task.
4916
4917          Analyze_Selected_Component (N);
4918          return;
4919       end if;
4920
4921       Change_Selected_Component_To_Expanded_Name (N);
4922
4923       --  Do style check and generate reference, but skip both steps if this
4924       --  entity has homonyms, since we may not have the right homonym set yet.
4925       --  The proper homonym will be set during the resolve phase.
4926
4927       if Has_Homonym (Id) then
4928          Set_Entity (N, Id);
4929       else
4930          Set_Entity_With_Style_Check (N, Id);
4931          Generate_Reference (Id, N);
4932       end if;
4933
4934       if Is_Type (Id) then
4935          Set_Etype (N, Id);
4936       else
4937          Set_Etype (N, Get_Full_View (Etype (Id)));
4938       end if;
4939
4940       --  If the Ekind of the entity is Void, it means that all homonyms are
4941       --  hidden from all visibility (RM 8.3(5,14-20)).
4942
4943       if Ekind (Id) = E_Void then
4944          Premature_Usage (N);
4945
4946       elsif Is_Overloadable (Id)
4947         and then Present (Homonym (Id))
4948       then
4949          declare
4950             H : Entity_Id := Homonym (Id);
4951
4952          begin
4953             while Present (H) loop
4954                if Scope (H) = Scope (Id)
4955                  and then
4956                    (not Is_Hidden (H)
4957                       or else Is_Immediately_Visible (H))
4958                then
4959                   Collect_Interps (N);
4960                   exit;
4961                end if;
4962
4963                H := Homonym (H);
4964             end loop;
4965
4966             --  If an extension of System is present, collect possible explicit
4967             --  overloadings declared in the extension.
4968
4969             if Chars (P_Name) = Name_System
4970               and then Scope (P_Name) = Standard_Standard
4971               and then Present (System_Extend_Unit)
4972               and then Present_System_Aux (N)
4973             then
4974                H := Current_Entity (Id);
4975
4976                while Present (H) loop
4977                   if Scope (H) = System_Aux_Id then
4978                      Add_One_Interp (N, H, Etype (H));
4979                   end if;
4980
4981                   H := Homonym (H);
4982                end loop;
4983             end if;
4984          end;
4985       end if;
4986
4987       if Nkind (Selector_Name (N)) = N_Operator_Symbol
4988         and then Scope (Id) /= Standard_Standard
4989       then
4990          --  In addition to user-defined operators in the given scope, there
4991          --  may be an implicit instance of the predefined operator. The
4992          --  operator (defined in Standard) is found in Has_Implicit_Operator,
4993          --  and added to the interpretations. Procedure Add_One_Interp will
4994          --  determine which hides which.
4995
4996          if Has_Implicit_Operator (N) then
4997             null;
4998          end if;
4999       end if;
5000    end Find_Expanded_Name;
5001
5002    -------------------------
5003    -- Find_Renamed_Entity --
5004    -------------------------
5005
5006    function Find_Renamed_Entity
5007      (N         : Node_Id;
5008       Nam       : Node_Id;
5009       New_S     : Entity_Id;
5010       Is_Actual : Boolean := False) return Entity_Id
5011    is
5012       Ind   : Interp_Index;
5013       I1    : Interp_Index := 0; -- Suppress junk warnings
5014       It    : Interp;
5015       It1   : Interp;
5016       Old_S : Entity_Id;
5017       Inst  : Entity_Id;
5018
5019       function Enclosing_Instance return Entity_Id;
5020       --  If the renaming determines the entity for the default of a formal
5021       --  subprogram nested within another instance, choose the innermost
5022       --  candidate. This is because if the formal has a box, and we are within
5023       --  an enclosing instance where some candidate interpretations are local
5024       --  to this enclosing instance, we know that the default was properly
5025       --  resolved when analyzing the generic, so we prefer the local
5026       --  candidates to those that are external. This is not always the case
5027       --  but is a reasonable heuristic on the use of nested generics. The
5028       --  proper solution requires a full renaming model.
5029
5030       function Is_Visible_Operation (Op : Entity_Id) return Boolean;
5031       --  If the renamed entity is an implicit operator, check whether it is
5032       --  visible because its operand type is properly visible. This check
5033       --  applies to explicit renamed entities that appear in the source in a
5034       --  renaming declaration or a formal subprogram instance, but not to
5035       --  default generic actuals with a name.
5036
5037       function Report_Overload return Entity_Id;
5038       --  List possible interpretations, and specialize message in the
5039       --  case of a generic actual.
5040
5041       function Within (Inner, Outer : Entity_Id) return Boolean;
5042       --  Determine whether a candidate subprogram is defined within the
5043       --  enclosing instance. If yes, it has precedence over outer candidates.
5044
5045       ------------------------
5046       -- Enclosing_Instance --
5047       ------------------------
5048
5049       function Enclosing_Instance return Entity_Id is
5050          S : Entity_Id;
5051
5052       begin
5053          if not Is_Generic_Instance (Current_Scope)
5054            and then not Is_Actual
5055          then
5056             return Empty;
5057          end if;
5058
5059          S := Scope (Current_Scope);
5060          while S /= Standard_Standard loop
5061             if Is_Generic_Instance (S) then
5062                return S;
5063             end if;
5064
5065             S := Scope (S);
5066          end loop;
5067
5068          return Empty;
5069       end Enclosing_Instance;
5070
5071       --------------------------
5072       -- Is_Visible_Operation --
5073       --------------------------
5074
5075       function Is_Visible_Operation (Op : Entity_Id) return Boolean is
5076          Scop : Entity_Id;
5077          Typ  : Entity_Id;
5078          Btyp : Entity_Id;
5079
5080       begin
5081          if Ekind (Op) /= E_Operator
5082            or else Scope (Op) /= Standard_Standard
5083            or else (In_Instance
5084                       and then
5085                         (not Is_Actual
5086                            or else Present (Enclosing_Instance)))
5087          then
5088             return True;
5089
5090          else
5091             --  For a fixed point type operator, check the resulting type,
5092             --  because it may be a mixed mode integer * fixed operation.
5093
5094             if Present (Next_Formal (First_Formal (New_S)))
5095               and then Is_Fixed_Point_Type (Etype (New_S))
5096             then
5097                Typ := Etype (New_S);
5098             else
5099                Typ := Etype (First_Formal (New_S));
5100             end if;
5101
5102             Btyp := Base_Type (Typ);
5103
5104             if Nkind (Nam) /= N_Expanded_Name then
5105                return (In_Open_Scopes (Scope (Btyp))
5106                         or else Is_Potentially_Use_Visible (Btyp)
5107                         or else In_Use (Btyp)
5108                         or else In_Use (Scope (Btyp)));
5109
5110             else
5111                Scop := Entity (Prefix (Nam));
5112
5113                if Ekind (Scop) = E_Package
5114                  and then Present (Renamed_Object (Scop))
5115                then
5116                   Scop := Renamed_Object (Scop);
5117                end if;
5118
5119                --  Operator is visible if prefix of expanded name denotes
5120                --  scope of type, or else type is defined in System_Aux
5121                --  and the prefix denotes System.
5122
5123                return Scope (Btyp) = Scop
5124                  or else (Scope (Btyp) = System_Aux_Id
5125                            and then Scope (Scope (Btyp)) = Scop);
5126             end if;
5127          end if;
5128       end Is_Visible_Operation;
5129
5130       ------------
5131       -- Within --
5132       ------------
5133
5134       function Within (Inner, Outer : Entity_Id) return Boolean is
5135          Sc : Entity_Id;
5136
5137       begin
5138          Sc := Scope (Inner);
5139          while Sc /= Standard_Standard loop
5140             if Sc = Outer then
5141                return True;
5142             else
5143                Sc := Scope (Sc);
5144             end if;
5145          end loop;
5146
5147          return False;
5148       end Within;
5149
5150       ---------------------
5151       -- Report_Overload --
5152       ---------------------
5153
5154       function Report_Overload return Entity_Id is
5155       begin
5156          if Is_Actual then
5157             Error_Msg_NE
5158               ("ambiguous actual subprogram&, " &
5159                  "possible interpretations:", N, Nam);
5160          else
5161             Error_Msg_N
5162               ("ambiguous subprogram, " &
5163                  "possible interpretations:", N);
5164          end if;
5165
5166          List_Interps (Nam, N);
5167          return Old_S;
5168       end Report_Overload;
5169
5170    --  Start of processing for Find_Renamed_Entry
5171
5172    begin
5173       Old_S := Any_Id;
5174       Candidate_Renaming := Empty;
5175
5176       if not Is_Overloaded (Nam) then
5177          if Entity_Matches_Spec (Entity (Nam), New_S) then
5178             Candidate_Renaming := New_S;
5179
5180             if Is_Visible_Operation (Entity (Nam)) then
5181                Old_S := Entity (Nam);
5182             end if;
5183
5184          elsif
5185            Present (First_Formal (Entity (Nam)))
5186              and then Present (First_Formal (New_S))
5187              and then (Base_Type (Etype (First_Formal (Entity (Nam))))
5188                         = Base_Type (Etype (First_Formal (New_S))))
5189          then
5190             Candidate_Renaming := Entity (Nam);
5191          end if;
5192
5193       else
5194          Get_First_Interp (Nam, Ind, It);
5195          while Present (It.Nam) loop
5196             if Entity_Matches_Spec (It.Nam, New_S)
5197                and then Is_Visible_Operation (It.Nam)
5198             then
5199                if Old_S /= Any_Id then
5200
5201                   --  Note: The call to Disambiguate only happens if a
5202                   --  previous interpretation was found, in which case I1
5203                   --  has received a value.
5204
5205                   It1 := Disambiguate (Nam, I1, Ind, Etype (Old_S));
5206
5207                   if It1 = No_Interp then
5208                      Inst := Enclosing_Instance;
5209
5210                      if Present (Inst) then
5211                         if Within (It.Nam, Inst) then
5212                            return (It.Nam);
5213                         elsif Within (Old_S, Inst) then
5214                            return (Old_S);
5215                         else
5216                            return Report_Overload;
5217                         end if;
5218
5219                      else
5220                         return Report_Overload;
5221                      end if;
5222
5223                   else
5224                      Old_S := It1.Nam;
5225                      exit;
5226                   end if;
5227
5228                else
5229                   I1 := Ind;
5230                   Old_S := It.Nam;
5231                end if;
5232
5233             elsif
5234               Present (First_Formal (It.Nam))
5235                 and then Present (First_Formal (New_S))
5236                 and then  (Base_Type (Etype (First_Formal (It.Nam)))
5237                             = Base_Type (Etype (First_Formal (New_S))))
5238             then
5239                Candidate_Renaming := It.Nam;
5240             end if;
5241
5242             Get_Next_Interp (Ind, It);
5243          end loop;
5244
5245          Set_Entity (Nam, Old_S);
5246          Set_Is_Overloaded (Nam, False);
5247       end if;
5248
5249       return Old_S;
5250    end Find_Renamed_Entity;
5251
5252    -----------------------------
5253    -- Find_Selected_Component --
5254    -----------------------------
5255
5256    procedure Find_Selected_Component (N : Node_Id) is
5257       P : constant Node_Id := Prefix (N);
5258
5259       P_Name : Entity_Id;
5260       --  Entity denoted by prefix
5261
5262       P_Type : Entity_Id;
5263       --  and its type
5264
5265       Nam : Node_Id;
5266
5267    begin
5268       Analyze (P);
5269
5270       if Nkind (P) = N_Error then
5271          return;
5272
5273       --  If the selector already has an entity, the node has been constructed
5274       --  in the course of expansion, and is known to be valid. Do not verify
5275       --  that it is defined for the type (it may be a private component used
5276       --  in the expansion of record equality).
5277
5278       elsif Present (Entity (Selector_Name (N))) then
5279          if No (Etype (N))
5280            or else Etype (N) = Any_Type
5281          then
5282             declare
5283                Sel_Name : constant Node_Id   := Selector_Name (N);
5284                Selector : constant Entity_Id := Entity (Sel_Name);
5285                C_Etype  : Node_Id;
5286
5287             begin
5288                Set_Etype (Sel_Name, Etype (Selector));
5289
5290                if not Is_Entity_Name (P) then
5291                   Resolve (P);
5292                end if;
5293
5294                --  Build an actual subtype except for the first parameter
5295                --  of an init proc, where this actual subtype is by
5296                --  definition incorrect, since the object is uninitialized
5297                --  (and does not even have defined discriminants etc.)
5298
5299                if Is_Entity_Name (P)
5300                  and then Ekind (Entity (P)) = E_Function
5301                then
5302                   Nam := New_Copy (P);
5303
5304                   if Is_Overloaded (P) then
5305                      Save_Interps (P, Nam);
5306                   end if;
5307
5308                   Rewrite (P,
5309                     Make_Function_Call (Sloc (P), Name => Nam));
5310                   Analyze_Call (P);
5311                   Analyze_Selected_Component (N);
5312                   return;
5313
5314                elsif Ekind (Selector) = E_Component
5315                  and then (not Is_Entity_Name (P)
5316                             or else Chars (Entity (P)) /= Name_uInit)
5317                then
5318                   C_Etype :=
5319                     Build_Actual_Subtype_Of_Component (
5320                       Etype (Selector), N);
5321                else
5322                   C_Etype := Empty;
5323                end if;
5324
5325                if No (C_Etype) then
5326                   C_Etype := Etype (Selector);
5327                else
5328                   Insert_Action (N, C_Etype);
5329                   C_Etype := Defining_Identifier (C_Etype);
5330                end if;
5331
5332                Set_Etype (N, C_Etype);
5333             end;
5334
5335             --  If this is the name of an entry or protected operation, and
5336             --  the prefix is an access type, insert an explicit dereference,
5337             --  so that entry calls are treated uniformly.
5338
5339             if Is_Access_Type (Etype (P))
5340               and then Is_Concurrent_Type (Designated_Type (Etype (P)))
5341             then
5342                declare
5343                   New_P : constant Node_Id :=
5344                             Make_Explicit_Dereference (Sloc (P),
5345                               Prefix => Relocate_Node (P));
5346                begin
5347                   Rewrite (P, New_P);
5348                   Set_Etype (P, Designated_Type (Etype (Prefix (P))));
5349                end;
5350             end if;
5351
5352          --  If the selected component appears within a default expression
5353          --  and it has an actual subtype, the pre-analysis has not yet
5354          --  completed its analysis, because Insert_Actions is disabled in
5355          --  that context. Within the init proc of the enclosing type we
5356          --  must complete this analysis, if an actual subtype was created.
5357
5358          elsif Inside_Init_Proc then
5359             declare
5360                Typ  : constant Entity_Id := Etype (N);
5361                Decl : constant Node_Id   := Declaration_Node (Typ);
5362             begin
5363                if Nkind (Decl) = N_Subtype_Declaration
5364                  and then not Analyzed (Decl)
5365                  and then Is_List_Member (Decl)
5366                  and then No (Parent (Decl))
5367                then
5368                   Remove (Decl);
5369                   Insert_Action (N, Decl);
5370                end if;
5371             end;
5372          end if;
5373
5374          return;
5375
5376       elsif Is_Entity_Name (P) then
5377          P_Name := Entity (P);
5378
5379          --  The prefix may denote an enclosing type which is the completion
5380          --  of an incomplete type declaration.
5381
5382          if Is_Type (P_Name) then
5383             Set_Entity (P, Get_Full_View (P_Name));
5384             Set_Etype  (P, Entity (P));
5385             P_Name := Entity (P);
5386          end if;
5387
5388          P_Type := Base_Type (Etype (P));
5389
5390          if Debug_Flag_E then
5391             Write_Str ("Found prefix type to be ");
5392             Write_Entity_Info (P_Type, "      "); Write_Eol;
5393          end if;
5394
5395          --  First check for components of a record object (not the
5396          --  result of a call, which is handled below).
5397
5398          if Is_Appropriate_For_Record (P_Type)
5399            and then not Is_Overloadable (P_Name)
5400            and then not Is_Type (P_Name)
5401          then
5402             --  Selected component of record. Type checking will validate
5403             --  name of selector.
5404             --  ??? could we rewrite an implicit dereference into an explicit
5405             --  one here?
5406
5407             Analyze_Selected_Component (N);
5408
5409          elsif Is_Appropriate_For_Entry_Prefix (P_Type)
5410            and then not In_Open_Scopes (P_Name)
5411            and then (not Is_Concurrent_Type (Etype (P_Name))
5412                        or else not In_Open_Scopes (Etype (P_Name)))
5413          then
5414             --  Call to protected operation or entry. Type checking is
5415             --  needed on the prefix.
5416
5417             Analyze_Selected_Component (N);
5418
5419          elsif (In_Open_Scopes (P_Name)
5420                   and then Ekind (P_Name) /= E_Void
5421                   and then not Is_Overloadable (P_Name))
5422            or else (Is_Concurrent_Type (Etype (P_Name))
5423                       and then In_Open_Scopes (Etype (P_Name)))
5424          then
5425             --  Prefix denotes an enclosing loop, block, or task, i.e. an
5426             --  enclosing construct that is not a subprogram or accept.
5427
5428             Find_Expanded_Name (N);
5429
5430          elsif Ekind (P_Name) = E_Package then
5431             Find_Expanded_Name (N);
5432
5433          elsif Is_Overloadable (P_Name) then
5434
5435             --  The subprogram may be a renaming (of an enclosing scope) as
5436             --  in the case of the name of the generic within an instantiation.
5437
5438             if (Ekind (P_Name) = E_Procedure
5439                  or else Ekind (P_Name) = E_Function)
5440               and then Present (Alias (P_Name))
5441               and then Is_Generic_Instance (Alias (P_Name))
5442             then
5443                P_Name := Alias (P_Name);
5444             end if;
5445
5446             if Is_Overloaded (P) then
5447
5448                --  The prefix must resolve to a unique enclosing construct
5449
5450                declare
5451                   Found : Boolean := False;
5452                   Ind   : Interp_Index;
5453                   It    : Interp;
5454
5455                begin
5456                   Get_First_Interp (P, Ind, It);
5457                   while Present (It.Nam) loop
5458                      if In_Open_Scopes (It.Nam) then
5459                         if Found then
5460                            Error_Msg_N (
5461                               "prefix must be unique enclosing scope", N);
5462                            Set_Entity (N, Any_Id);
5463                            Set_Etype  (N, Any_Type);
5464                            return;
5465
5466                         else
5467                            Found := True;
5468                            P_Name := It.Nam;
5469                         end if;
5470                      end if;
5471
5472                      Get_Next_Interp (Ind, It);
5473                   end loop;
5474                end;
5475             end if;
5476
5477             if In_Open_Scopes (P_Name) then
5478                Set_Entity (P, P_Name);
5479                Set_Is_Overloaded (P, False);
5480                Find_Expanded_Name (N);
5481
5482             else
5483                --  If no interpretation as an expanded name is possible, it
5484                --  must be a selected component of a record returned by a
5485                --  function call. Reformat prefix as a function call, the rest
5486                --  is done by type resolution. If the prefix is procedure or
5487                --  entry, as is P.X; this is an error.
5488
5489                if Ekind (P_Name) /= E_Function
5490                  and then (not Is_Overloaded (P)
5491                              or else
5492                            Nkind (Parent (N)) = N_Procedure_Call_Statement)
5493                then
5494                   --  Prefix may mention a package that is hidden by a local
5495                   --  declaration: let the user know. Scan the full homonym
5496                   --  chain, the candidate package may be anywhere on it.
5497
5498                   if Present (Homonym (Current_Entity (P_Name))) then
5499
5500                      P_Name := Current_Entity (P_Name);
5501
5502                      while Present (P_Name) loop
5503                         exit when Ekind (P_Name) = E_Package;
5504                         P_Name := Homonym (P_Name);
5505                      end loop;
5506
5507                      if Present (P_Name) then
5508                         Error_Msg_Sloc := Sloc (Entity (Prefix (N)));
5509
5510                         Error_Msg_NE
5511                           ("package& is hidden by declaration#",
5512                             N, P_Name);
5513
5514                         Set_Entity (Prefix (N), P_Name);
5515                         Find_Expanded_Name (N);
5516                         return;
5517                      else
5518                         P_Name := Entity (Prefix (N));
5519                      end if;
5520                   end if;
5521
5522                   Error_Msg_NE
5523                     ("invalid prefix in selected component&", N, P_Name);
5524                   Change_Selected_Component_To_Expanded_Name (N);
5525                   Set_Entity (N, Any_Id);
5526                   Set_Etype (N, Any_Type);
5527
5528                else
5529                   Nam := New_Copy (P);
5530                   Save_Interps (P, Nam);
5531                   Rewrite (P,
5532                     Make_Function_Call (Sloc (P), Name => Nam));
5533                   Analyze_Call (P);
5534                   Analyze_Selected_Component (N);
5535                end if;
5536             end if;
5537
5538          --  Remaining cases generate various error messages
5539
5540          else
5541             --  Format node as expanded name, to avoid cascaded errors
5542
5543             Change_Selected_Component_To_Expanded_Name (N);
5544             Set_Entity  (N, Any_Id);
5545             Set_Etype   (N, Any_Type);
5546
5547             --  Issue error message, but avoid this if error issued already.
5548             --  Use identifier of prefix if one is available.
5549
5550             if P_Name = Any_Id  then
5551                null;
5552
5553             elsif Ekind (P_Name) = E_Void then
5554                Premature_Usage (P);
5555
5556             elsif Nkind (P) /= N_Attribute_Reference then
5557                Error_Msg_N (
5558                 "invalid prefix in selected component&", P);
5559
5560                if Is_Access_Type (P_Type)
5561                  and then Ekind (Designated_Type (P_Type)) = E_Incomplete_Type
5562                then
5563                   Error_Msg_N
5564                     ("\dereference must not be of an incomplete type " &
5565                        "(RM 3.10.1)", P);
5566                end if;
5567
5568             else
5569                Error_Msg_N (
5570                 "invalid prefix in selected component", P);
5571             end if;
5572          end if;
5573
5574       else
5575          --  If prefix is not the name of an entity, it must be an expression,
5576          --  whose type is appropriate for a record. This is determined by
5577          --  type resolution.
5578
5579          Analyze_Selected_Component (N);
5580       end if;
5581    end Find_Selected_Component;
5582
5583    ---------------
5584    -- Find_Type --
5585    ---------------
5586
5587    procedure Find_Type (N : Node_Id) is
5588       C      : Entity_Id;
5589       Typ    : Entity_Id;
5590       T      : Entity_Id;
5591       T_Name : Entity_Id;
5592
5593    begin
5594       if N = Error then
5595          return;
5596
5597       elsif Nkind (N) = N_Attribute_Reference then
5598
5599          --  Class attribute. This is not valid in Ada 83 mode, but we do not
5600          --  need to enforce that at this point, since the declaration of the
5601          --  tagged type in the prefix would have been flagged already.
5602
5603          if Attribute_Name (N) = Name_Class then
5604             Check_Restriction (No_Dispatch, N);
5605             Find_Type (Prefix (N));
5606
5607             --  Propagate error from bad prefix
5608
5609             if Etype (Prefix (N)) = Any_Type then
5610                Set_Entity (N, Any_Type);
5611                Set_Etype  (N, Any_Type);
5612                return;
5613             end if;
5614
5615             T := Base_Type (Entity (Prefix (N)));
5616
5617             --  Case where type is not known to be tagged. Its appearance in
5618             --  the prefix of the 'Class attribute indicates that the full view
5619             --  will be tagged.
5620
5621             if not Is_Tagged_Type (T) then
5622                if Ekind (T) = E_Incomplete_Type then
5623
5624                   --  It is legal to denote the class type of an incomplete
5625                   --  type. The full type will have to be tagged, of course.
5626                   --  In Ada 2005 this usage is declared obsolescent, so we
5627                   --  warn accordingly. This usage is only legal if the type
5628                   --  is completed in the current scope, and not for a limited
5629                   --  view of a type.
5630
5631                   if not Is_Tagged_Type (T)
5632                     and then Ada_Version >= Ada_05
5633                   then
5634                      if From_With_Type (T) then
5635                         Error_Msg_N
5636                           ("prefix of Class attribute must be tagged", N);
5637                         Set_Etype (N, Any_Type);
5638                         Set_Entity (N, Any_Type);
5639                         return;
5640
5641                   --  ??? This test is temporarily disabled (always False)
5642                   --  because it causes an unwanted warning on GNAT sources
5643                   --  (built with -gnatg, which includes Warn_On_Obsolescent_
5644                   --  Feature). Once this issue is cleared in the sources, it
5645                   --  can be enabled.
5646
5647                      elsif Warn_On_Obsolescent_Feature
5648                        and then False
5649                      then
5650                         Error_Msg_N
5651                           ("applying 'Class to an untagged incomplete type"
5652                            & " is an obsolescent feature  (RM J.11)", N);
5653                      end if;
5654                   end if;
5655
5656                   Set_Is_Tagged_Type (T);
5657                   Set_Primitive_Operations (T, New_Elmt_List);
5658                   Make_Class_Wide_Type (T);
5659                   Set_Entity (N, Class_Wide_Type (T));
5660                   Set_Etype  (N, Class_Wide_Type (T));
5661
5662                elsif Ekind (T) = E_Private_Type
5663                  and then not Is_Generic_Type (T)
5664                  and then In_Private_Part (Scope (T))
5665                then
5666                   --  The Class attribute can be applied to an untagged private
5667                   --  type fulfilled by a tagged type prior to the full type
5668                   --  declaration (but only within the parent package's private
5669                   --  part). Create the class-wide type now and check that the
5670                   --  full type is tagged later during its analysis. Note that
5671                   --  we do not mark the private type as tagged, unlike the
5672                   --  case of incomplete types, because the type must still
5673                   --  appear untagged to outside units.
5674
5675                   if No (Class_Wide_Type (T)) then
5676                      Make_Class_Wide_Type (T);
5677                   end if;
5678
5679                   Set_Entity (N, Class_Wide_Type (T));
5680                   Set_Etype  (N, Class_Wide_Type (T));
5681
5682                else
5683                   --  Should we introduce a type Any_Tagged and use Wrong_Type
5684                   --  here, it would be a bit more consistent???
5685
5686                   Error_Msg_NE
5687                     ("tagged type required, found}",
5688                      Prefix (N), First_Subtype (T));
5689                   Set_Entity (N, Any_Type);
5690                   return;
5691                end if;
5692
5693             --  Case of tagged type
5694
5695             else
5696                if Is_Concurrent_Type (T) then
5697                   if No (Corresponding_Record_Type (Entity (Prefix (N)))) then
5698
5699                      --  Previous error. Use current type, which at least
5700                      --  provides some operations.
5701
5702                      C := Entity (Prefix (N));
5703
5704                   else
5705                      C := Class_Wide_Type
5706                             (Corresponding_Record_Type (Entity (Prefix (N))));
5707                   end if;
5708
5709                else
5710                   C := Class_Wide_Type (Entity (Prefix (N)));
5711                end if;
5712
5713                Set_Entity_With_Style_Check (N, C);
5714                Generate_Reference (C, N);
5715                Set_Etype (N, C);
5716             end if;
5717
5718          --  Base attribute, not allowed in Ada 83
5719
5720          elsif Attribute_Name (N) = Name_Base then
5721             if Ada_Version = Ada_83 and then Comes_From_Source (N) then
5722                Error_Msg_N
5723                  ("(Ada 83) Base attribute not allowed in subtype mark", N);
5724
5725             else
5726                Find_Type (Prefix (N));
5727                Typ := Entity (Prefix (N));
5728
5729                if Ada_Version >= Ada_95
5730                  and then not Is_Scalar_Type (Typ)
5731                  and then not Is_Generic_Type (Typ)
5732                then
5733                   Error_Msg_N
5734                     ("prefix of Base attribute must be scalar type",
5735                       Prefix (N));
5736
5737                elsif Sloc (Typ) = Standard_Location
5738                  and then Base_Type (Typ) = Typ
5739                  and then Warn_On_Redundant_Constructs
5740                then
5741                   Error_Msg_NE
5742                     ("?redundant attribute, & is its own base type", N, Typ);
5743                end if;
5744
5745                T := Base_Type (Typ);
5746
5747                --  Rewrite attribute reference with type itself (see similar
5748                --  processing in Analyze_Attribute, case Base). Preserve
5749                --  prefix if present, for other legality checks.
5750
5751                if Nkind (Prefix (N)) = N_Expanded_Name then
5752                   Rewrite (N,
5753                      Make_Expanded_Name (Sloc (N),
5754                        Chars         => Chars (T),
5755                        Prefix        => New_Copy (Prefix (Prefix (N))),
5756                        Selector_Name => New_Reference_To (T, Sloc (N))));
5757
5758                else
5759                   Rewrite (N, New_Reference_To (T, Sloc (N)));
5760                end if;
5761
5762                Set_Entity (N, T);
5763                Set_Etype (N, T);
5764             end if;
5765
5766          elsif Attribute_Name (N) = Name_Stub_Type then
5767
5768             --  This is handled in Analyze_Attribute
5769
5770             Analyze (N);
5771
5772          --  All other attributes are invalid in a subtype mark
5773
5774          else
5775             Error_Msg_N ("invalid attribute in subtype mark", N);
5776          end if;
5777
5778       else
5779          Analyze (N);
5780
5781          if Is_Entity_Name (N) then
5782             T_Name := Entity (N);
5783          else
5784             Error_Msg_N ("subtype mark required in this context", N);
5785             Set_Etype (N, Any_Type);
5786             return;
5787          end if;
5788
5789          if T_Name  = Any_Id or else Etype (N) = Any_Type then
5790
5791             --  Undefined id. Make it into a valid type
5792
5793             Set_Entity (N, Any_Type);
5794
5795          elsif not Is_Type (T_Name)
5796            and then T_Name /= Standard_Void_Type
5797          then
5798             Error_Msg_Sloc := Sloc (T_Name);
5799             Error_Msg_N ("subtype mark required in this context", N);
5800             Error_Msg_NE ("\\found & declared#", N, T_Name);
5801             Set_Entity (N, Any_Type);
5802
5803          else
5804             --  If the type is an incomplete type created to handle
5805             --  anonymous access components of a record type, then the
5806             --  incomplete type is the visible entity and subsequent
5807             --  references will point to it. Mark the original full
5808             --  type as referenced, to prevent spurious warnings.
5809
5810             if Is_Incomplete_Type (T_Name)
5811               and then Present (Full_View (T_Name))
5812               and then not Comes_From_Source (T_Name)
5813             then
5814                Set_Referenced (Full_View (T_Name));
5815             end if;
5816
5817             T_Name := Get_Full_View (T_Name);
5818
5819             --  Ada 2005 (AI-251, AI-50217): Handle interfaces visible through
5820             --  limited-with clauses
5821
5822             if From_With_Type (T_Name)
5823               and then Ekind (T_Name) in Incomplete_Kind
5824               and then Present (Non_Limited_View (T_Name))
5825               and then Is_Interface (Non_Limited_View (T_Name))
5826             then
5827                T_Name := Non_Limited_View (T_Name);
5828             end if;
5829
5830             if In_Open_Scopes (T_Name) then
5831                if Ekind (Base_Type (T_Name)) = E_Task_Type then
5832
5833                   --  In Ada 2005, a task name can be used in an access
5834                   --  definition within its own body. It cannot be used
5835                   --  in the discriminant part of the task declaration,
5836                   --  nor anywhere else in the declaration because entries
5837                   --  cannot have access parameters.
5838
5839                   if Ada_Version >= Ada_05
5840                     and then Nkind (Parent (N)) = N_Access_Definition
5841                   then
5842                      Set_Entity (N, T_Name);
5843                      Set_Etype  (N, T_Name);
5844
5845                      if Has_Completion (T_Name) then
5846                         return;
5847
5848                      else
5849                         Error_Msg_N
5850                           ("task type cannot be used as type mark " &
5851                            "within its own declaration", N);
5852                      end if;
5853
5854                   else
5855                      Error_Msg_N
5856                        ("task type cannot be used as type mark " &
5857                         "within its own spec or body", N);
5858                   end if;
5859
5860                elsif Ekind (Base_Type (T_Name)) = E_Protected_Type then
5861
5862                   --  In Ada 2005, a protected name can be used in an access
5863                   --  definition within its own body.
5864
5865                   if Ada_Version >= Ada_05
5866                     and then Nkind (Parent (N)) = N_Access_Definition
5867                   then
5868                      Set_Entity (N, T_Name);
5869                      Set_Etype  (N, T_Name);
5870                      return;
5871
5872                   else
5873                      Error_Msg_N
5874                        ("protected type cannot be used as type mark " &
5875                         "within its own spec or body", N);
5876                   end if;
5877
5878                else
5879                   Error_Msg_N ("type declaration cannot refer to itself", N);
5880                end if;
5881
5882                Set_Etype (N, Any_Type);
5883                Set_Entity (N, Any_Type);
5884                Set_Error_Posted (T_Name);
5885                return;
5886             end if;
5887
5888             Set_Entity (N, T_Name);
5889             Set_Etype  (N, T_Name);
5890          end if;
5891       end if;
5892
5893       if Present (Etype (N)) and then Comes_From_Source (N) then
5894          if Is_Fixed_Point_Type (Etype (N)) then
5895             Check_Restriction (No_Fixed_Point, N);
5896          elsif Is_Floating_Point_Type (Etype (N)) then
5897             Check_Restriction (No_Floating_Point, N);
5898          end if;
5899       end if;
5900    end Find_Type;
5901
5902    ------------------------------------
5903    -- Has_Implicit_Character_Literal --
5904    ------------------------------------
5905
5906    function Has_Implicit_Character_Literal (N : Node_Id) return Boolean is
5907       Id      : Entity_Id;
5908       Found   : Boolean := False;
5909       P       : constant Entity_Id := Entity (Prefix (N));
5910       Priv_Id : Entity_Id := Empty;
5911
5912    begin
5913       if Ekind (P) = E_Package
5914         and then not In_Open_Scopes (P)
5915       then
5916          Priv_Id := First_Private_Entity (P);
5917       end if;
5918
5919       if P = Standard_Standard then
5920          Change_Selected_Component_To_Expanded_Name (N);
5921          Rewrite (N, Selector_Name (N));
5922          Analyze (N);
5923          Set_Etype (Original_Node (N), Standard_Character);
5924          return True;
5925       end if;
5926
5927       Id := First_Entity (P);
5928       while Present (Id)
5929         and then Id /= Priv_Id
5930       loop
5931          if Is_Standard_Character_Type (Id)
5932            and then Id = Base_Type (Id)
5933          then
5934             --  We replace the node with the literal itself, resolve as a
5935             --  character, and set the type correctly.
5936
5937             if not Found then
5938                Change_Selected_Component_To_Expanded_Name (N);
5939                Rewrite (N, Selector_Name (N));
5940                Analyze (N);
5941                Set_Etype (N, Id);
5942                Set_Etype (Original_Node (N), Id);
5943                Found := True;
5944
5945             else
5946                --  More than one type derived from Character in given scope.
5947                --  Collect all possible interpretations.
5948
5949                Add_One_Interp (N, Id, Id);
5950             end if;
5951          end if;
5952
5953          Next_Entity (Id);
5954       end loop;
5955
5956       return Found;
5957    end Has_Implicit_Character_Literal;
5958
5959    ----------------------
5960    -- Has_Private_With --
5961    ----------------------
5962
5963    function Has_Private_With (E : Entity_Id) return Boolean is
5964       Comp_Unit : constant Node_Id := Cunit (Current_Sem_Unit);
5965       Item      : Node_Id;
5966
5967    begin
5968       Item := First (Context_Items (Comp_Unit));
5969       while Present (Item) loop
5970          if Nkind (Item) = N_With_Clause
5971            and then Private_Present (Item)
5972            and then Entity (Name (Item)) = E
5973          then
5974             return True;
5975          end if;
5976
5977          Next (Item);
5978       end loop;
5979
5980       return False;
5981    end Has_Private_With;
5982
5983    ---------------------------
5984    -- Has_Implicit_Operator --
5985    ---------------------------
5986
5987    function Has_Implicit_Operator (N : Node_Id) return Boolean is
5988       Op_Id   : constant Name_Id   := Chars (Selector_Name (N));
5989       P       : constant Entity_Id := Entity (Prefix (N));
5990       Id      : Entity_Id;
5991       Priv_Id : Entity_Id := Empty;
5992
5993       procedure Add_Implicit_Operator
5994         (T       : Entity_Id;
5995          Op_Type : Entity_Id := Empty);
5996       --  Add implicit interpretation to node N, using the type for which a
5997       --  predefined operator exists. If the operator yields a boolean type,
5998       --  the Operand_Type is implicitly referenced by the operator, and a
5999       --  reference to it must be generated.
6000
6001       ---------------------------
6002       -- Add_Implicit_Operator --
6003       ---------------------------
6004
6005       procedure Add_Implicit_Operator
6006         (T       : Entity_Id;
6007          Op_Type : Entity_Id := Empty)
6008       is
6009          Predef_Op : Entity_Id;
6010
6011       begin
6012          Predef_Op := Current_Entity (Selector_Name (N));
6013
6014          while Present (Predef_Op)
6015            and then Scope (Predef_Op) /= Standard_Standard
6016          loop
6017             Predef_Op := Homonym (Predef_Op);
6018          end loop;
6019
6020          if Nkind (N) = N_Selected_Component then
6021             Change_Selected_Component_To_Expanded_Name (N);
6022          end if;
6023
6024          Add_One_Interp (N, Predef_Op, T);
6025
6026          --  For operators with unary and binary interpretations, add both
6027
6028          if Present (Homonym (Predef_Op)) then
6029             Add_One_Interp (N, Homonym (Predef_Op), T);
6030          end if;
6031
6032          --  The node is a reference to a predefined operator, and
6033          --  an implicit reference to the type of its operands.
6034
6035          if Present (Op_Type) then
6036             Generate_Operator_Reference (N, Op_Type);
6037          else
6038             Generate_Operator_Reference (N, T);
6039          end if;
6040       end Add_Implicit_Operator;
6041
6042    --  Start of processing for Has_Implicit_Operator
6043
6044    begin
6045       if Ekind (P) = E_Package
6046         and then not In_Open_Scopes (P)
6047       then
6048          Priv_Id := First_Private_Entity (P);
6049       end if;
6050
6051       Id := First_Entity (P);
6052
6053       case Op_Id is
6054
6055          --  Boolean operators: an implicit declaration exists if the scope
6056          --  contains a declaration for a derived Boolean type, or for an
6057          --  array of Boolean type.
6058
6059          when Name_Op_And | Name_Op_Not | Name_Op_Or  | Name_Op_Xor =>
6060             while Id  /= Priv_Id loop
6061                if Valid_Boolean_Arg (Id)
6062                  and then Id = Base_Type (Id)
6063                then
6064                   Add_Implicit_Operator (Id);
6065                   return True;
6066                end if;
6067
6068                Next_Entity (Id);
6069             end loop;
6070
6071          --  Equality: look for any non-limited type (result is Boolean)
6072
6073          when Name_Op_Eq | Name_Op_Ne =>
6074             while Id  /= Priv_Id loop
6075                if Is_Type (Id)
6076                  and then not Is_Limited_Type (Id)
6077                  and then Id = Base_Type (Id)
6078                then
6079                   Add_Implicit_Operator (Standard_Boolean, Id);
6080                   return True;
6081                end if;
6082
6083                Next_Entity (Id);
6084             end loop;
6085
6086          --  Comparison operators: scalar type, or array of scalar
6087
6088          when Name_Op_Lt | Name_Op_Le | Name_Op_Gt | Name_Op_Ge =>
6089             while Id  /= Priv_Id loop
6090                if (Is_Scalar_Type (Id)
6091                  or else (Is_Array_Type (Id)
6092                            and then Is_Scalar_Type (Component_Type (Id))))
6093                  and then Id = Base_Type (Id)
6094                then
6095                   Add_Implicit_Operator (Standard_Boolean, Id);
6096                   return True;
6097                end if;
6098
6099                Next_Entity (Id);
6100             end loop;
6101
6102          --  Arithmetic operators: any numeric type
6103
6104          when Name_Op_Abs      |
6105               Name_Op_Add      |
6106               Name_Op_Mod      |
6107               Name_Op_Rem      |
6108               Name_Op_Subtract |
6109               Name_Op_Multiply |
6110               Name_Op_Divide   |
6111               Name_Op_Expon    =>
6112             while Id  /= Priv_Id loop
6113                if Is_Numeric_Type (Id)
6114                  and then Id = Base_Type (Id)
6115                then
6116                   Add_Implicit_Operator (Id);
6117                   return True;
6118                end if;
6119
6120                Next_Entity (Id);
6121             end loop;
6122
6123          --  Concatenation: any one-dimensional array type
6124
6125          when Name_Op_Concat =>
6126             while Id  /= Priv_Id loop
6127                if Is_Array_Type (Id) and then Number_Dimensions (Id) = 1
6128                  and then Id = Base_Type (Id)
6129                then
6130                   Add_Implicit_Operator (Id);
6131                   return True;
6132                end if;
6133
6134                Next_Entity (Id);
6135             end loop;
6136
6137          --  What is the others condition here? Should we be using a
6138          --  subtype of Name_Id that would restrict to operators ???
6139
6140          when others => null;
6141       end case;
6142
6143       --  If we fall through, then we do not have an implicit operator
6144
6145       return False;
6146
6147    end Has_Implicit_Operator;
6148
6149    --------------------
6150    -- In_Open_Scopes --
6151    --------------------
6152
6153    function In_Open_Scopes (S : Entity_Id) return Boolean is
6154    begin
6155       --  Several scope stacks are maintained by Scope_Stack. The base of the
6156       --  currently active scope stack is denoted by the Is_Active_Stack_Base
6157       --  flag in the scope stack entry. Note that the scope stacks used to
6158       --  simply be delimited implicitly by the presence of Standard_Standard
6159       --  at their base, but there now are cases where this is not sufficient
6160       --  because Standard_Standard actually may appear in the middle of the
6161       --  active set of scopes.
6162
6163       for J in reverse 0 .. Scope_Stack.Last loop
6164          if Scope_Stack.Table (J).Entity = S then
6165             return True;
6166          end if;
6167
6168          --  Check Is_Active_Stack_Base to tell us when to stop, as there are
6169          --  cases where Standard_Standard appears in the middle of the active
6170          --  set of scopes. This affects the declaration and overriding of
6171          --  private inherited operations in instantiations of generic child
6172          --  units.
6173
6174          exit when Scope_Stack.Table (J).Is_Active_Stack_Base;
6175       end loop;
6176
6177       return False;
6178    end In_Open_Scopes;
6179
6180    -----------------------------
6181    -- Inherit_Renamed_Profile --
6182    -----------------------------
6183
6184    procedure Inherit_Renamed_Profile (New_S : Entity_Id; Old_S : Entity_Id) is
6185       New_F : Entity_Id;
6186       Old_F : Entity_Id;
6187       Old_T : Entity_Id;
6188       New_T : Entity_Id;
6189
6190    begin
6191       if Ekind (Old_S) = E_Operator then
6192          New_F := First_Formal (New_S);
6193
6194          while Present (New_F) loop
6195             Set_Etype (New_F, Base_Type (Etype (New_F)));
6196             Next_Formal (New_F);
6197          end loop;
6198
6199          Set_Etype (New_S, Base_Type (Etype (New_S)));
6200
6201       else
6202          New_F := First_Formal (New_S);
6203          Old_F := First_Formal (Old_S);
6204
6205          while Present (New_F) loop
6206             New_T := Etype (New_F);
6207             Old_T := Etype (Old_F);
6208
6209             --  If the new type is a renaming of the old one, as is the
6210             --  case for actuals in instances, retain its name, to simplify
6211             --  later disambiguation.
6212
6213             if Nkind (Parent (New_T)) = N_Subtype_Declaration
6214               and then Is_Entity_Name (Subtype_Indication (Parent (New_T)))
6215               and then Entity (Subtype_Indication (Parent (New_T))) = Old_T
6216             then
6217                null;
6218             else
6219                Set_Etype (New_F, Old_T);
6220             end if;
6221
6222             Next_Formal (New_F);
6223             Next_Formal (Old_F);
6224          end loop;
6225
6226          if Ekind (Old_S) = E_Function
6227            or else Ekind (Old_S) = E_Enumeration_Literal
6228          then
6229             Set_Etype (New_S, Etype (Old_S));
6230          end if;
6231       end if;
6232    end Inherit_Renamed_Profile;
6233
6234    ----------------
6235    -- Initialize --
6236    ----------------
6237
6238    procedure Initialize is
6239    begin
6240       Urefs.Init;
6241    end Initialize;
6242
6243    -------------------------
6244    -- Install_Use_Clauses --
6245    -------------------------
6246
6247    procedure Install_Use_Clauses
6248      (Clause             : Node_Id;
6249       Force_Installation : Boolean := False)
6250    is
6251       U  : Node_Id;
6252       P  : Node_Id;
6253       Id : Entity_Id;
6254
6255    begin
6256       U := Clause;
6257       while Present (U) loop
6258
6259          --  Case of USE package
6260
6261          if Nkind (U) = N_Use_Package_Clause then
6262             P := First (Names (U));
6263             while Present (P) loop
6264                Id := Entity (P);
6265
6266                if Ekind (Id) = E_Package then
6267                   if In_Use (Id) then
6268                      Note_Redundant_Use (P);
6269
6270                   elsif Present (Renamed_Object (Id))
6271                     and then In_Use (Renamed_Object (Id))
6272                   then
6273                      Note_Redundant_Use (P);
6274
6275                   elsif Force_Installation or else Applicable_Use (P) then
6276                      Use_One_Package (Id, U);
6277
6278                   end if;
6279                end if;
6280
6281                Next (P);
6282             end loop;
6283
6284          --  Case of USE TYPE
6285
6286          else
6287             P := First (Subtype_Marks (U));
6288             while Present (P) loop
6289                if not Is_Entity_Name (P)
6290                  or else No (Entity (P))
6291                then
6292                   null;
6293
6294                elsif Entity (P) /= Any_Type then
6295                   Use_One_Type (P);
6296                end if;
6297
6298                Next (P);
6299             end loop;
6300          end if;
6301
6302          Next_Use_Clause (U);
6303       end loop;
6304    end Install_Use_Clauses;
6305
6306    -------------------------------------
6307    -- Is_Appropriate_For_Entry_Prefix --
6308    -------------------------------------
6309
6310    function Is_Appropriate_For_Entry_Prefix (T : Entity_Id) return Boolean is
6311       P_Type : Entity_Id := T;
6312
6313    begin
6314       if Is_Access_Type (P_Type) then
6315          P_Type := Designated_Type (P_Type);
6316       end if;
6317
6318       return Is_Task_Type (P_Type) or else Is_Protected_Type (P_Type);
6319    end Is_Appropriate_For_Entry_Prefix;
6320
6321    -------------------------------
6322    -- Is_Appropriate_For_Record --
6323    -------------------------------
6324
6325    function Is_Appropriate_For_Record (T : Entity_Id) return Boolean is
6326
6327       function Has_Components (T1 : Entity_Id) return Boolean;
6328       --  Determine if given type has components (i.e. is either a record
6329       --  type or a type that has discriminants).
6330
6331       --------------------
6332       -- Has_Components --
6333       --------------------
6334
6335       function Has_Components (T1 : Entity_Id) return Boolean is
6336       begin
6337          return Is_Record_Type (T1)
6338            or else (Is_Private_Type (T1) and then Has_Discriminants (T1))
6339            or else (Is_Task_Type (T1) and then Has_Discriminants (T1))
6340            or else (Is_Incomplete_Type (T1)
6341                      and then From_With_Type (T1)
6342                      and then Present (Non_Limited_View (T1))
6343                      and then Is_Record_Type
6344                                 (Get_Full_View (Non_Limited_View (T1))));
6345       end Has_Components;
6346
6347    --  Start of processing for Is_Appropriate_For_Record
6348
6349    begin
6350       return
6351         Present (T)
6352           and then (Has_Components (T)
6353                      or else (Is_Access_Type (T)
6354                                and then Has_Components (Designated_Type (T))));
6355    end Is_Appropriate_For_Record;
6356
6357    ------------------------
6358    -- Note_Redundant_Use --
6359    ------------------------
6360
6361    procedure Note_Redundant_Use (Clause : Node_Id) is
6362       Pack_Name : constant Entity_Id := Entity (Clause);
6363       Cur_Use   : constant Node_Id   := Current_Use_Clause (Pack_Name);
6364       Decl      : constant Node_Id   := Parent (Clause);
6365
6366       Prev_Use   : Node_Id := Empty;
6367       Redundant  : Node_Id := Empty;
6368       --  The Use_Clause which is actually redundant. In the simplest case it
6369       --  is Pack itself, but when we compile a body we install its context
6370       --  before that of its spec, in which case it is the use_clause in the
6371       --  spec that will appear to be redundant, and we want the warning to be
6372       --  placed on the body. Similar complications appear when the redundancy
6373       --  is between a child unit and one of its ancestors.
6374
6375    begin
6376       Set_Redundant_Use (Clause, True);
6377
6378       if not Comes_From_Source (Clause)
6379         or else In_Instance
6380         or else not Warn_On_Redundant_Constructs
6381       then
6382          return;
6383       end if;
6384
6385       if not Is_Compilation_Unit (Current_Scope) then
6386
6387          --  If the use_clause is in an inner scope, it is made redundant by
6388          --  some clause in the current context, with one exception: If we're
6389          --  compiling a nested package body, and the use_clause comes from the
6390          --  corresponding spec, the clause is not necessarily fully redundant,
6391          --  so we should not warn. If a warning was warranted, it would have
6392          --  been given when the spec was processed.
6393
6394          if Nkind (Parent (Decl)) = N_Package_Specification then
6395             declare
6396                Package_Spec_Entity : constant Entity_Id :=
6397                                        Defining_Unit_Name (Parent (Decl));
6398             begin
6399                if In_Package_Body (Package_Spec_Entity) then
6400                   return;
6401                end if;
6402             end;
6403          end if;
6404
6405          Redundant := Clause;
6406          Prev_Use  := Cur_Use;
6407
6408       elsif Nkind (Unit (Cunit (Current_Sem_Unit))) = N_Package_Body then
6409          declare
6410             Cur_Unit : constant Unit_Number_Type := Get_Source_Unit (Cur_Use);
6411             New_Unit : constant Unit_Number_Type := Get_Source_Unit (Clause);
6412             Scop     : Entity_Id;
6413
6414          begin
6415             if Cur_Unit = New_Unit then
6416
6417                --  Redundant clause in same body
6418
6419                Redundant := Clause;
6420                Prev_Use  := Cur_Use;
6421
6422             elsif Cur_Unit = Current_Sem_Unit then
6423
6424                --  If the new clause is not in the current unit it has been
6425                --  analyzed first, and it makes the other one redundant.
6426                --  However, if the new clause appears in a subunit, Cur_Unit
6427                --  is still the parent, and in that case the redundant one
6428                --  is the one appearing in the subunit.
6429
6430                if Nkind (Unit (Cunit (New_Unit))) = N_Subunit then
6431                   Redundant := Clause;
6432                   Prev_Use  := Cur_Use;
6433
6434                --  Most common case: redundant clause in body,
6435                --  original clause in spec. Current scope is spec entity.
6436
6437                elsif
6438                  Current_Scope =
6439                    Defining_Entity (
6440                      Unit (Library_Unit (Cunit (Current_Sem_Unit))))
6441                then
6442                   Redundant := Cur_Use;
6443                   Prev_Use  := Clause;
6444
6445                else
6446                   --  The new clause may appear in an unrelated unit, when
6447                   --  the parents of a generic are being installed prior to
6448                   --  instantiation. In this case there must be no warning.
6449                   --  We detect this case by checking whether the current top
6450                   --  of the stack is related to the current compilation.
6451
6452                   Scop := Current_Scope;
6453                   while Present (Scop)
6454                     and then Scop /= Standard_Standard
6455                   loop
6456                      if Is_Compilation_Unit (Scop)
6457                        and then not Is_Child_Unit (Scop)
6458                      then
6459                         return;
6460
6461                      elsif Scop = Cunit_Entity (Current_Sem_Unit) then
6462                         exit;
6463                      end if;
6464
6465                      Scop := Scope (Scop);
6466                   end loop;
6467
6468                   Redundant := Cur_Use;
6469                   Prev_Use  := Clause;
6470                end if;
6471
6472             elsif New_Unit = Current_Sem_Unit then
6473                Redundant := Clause;
6474                Prev_Use  := Cur_Use;
6475
6476             else
6477                --  Neither is the current unit, so they appear in parent or
6478                --  sibling units. Warning will be emitted elsewhere.
6479
6480                return;
6481             end if;
6482          end;
6483
6484       elsif Nkind (Unit (Cunit (Current_Sem_Unit))) = N_Package_Declaration
6485         and then Present (Parent_Spec (Unit (Cunit (Current_Sem_Unit))))
6486       then
6487          --  Use_clause is in child unit of current unit, and the child unit
6488          --  appears in the context of the body of the parent, so it has been
6489          --  installed first, even though it is the redundant one. Depending on
6490          --  their placement in the context, the visible or the private parts
6491          --  of the two units, either might appear as redundant, but the
6492          --  message has to be on the current unit.
6493
6494          if Get_Source_Unit (Cur_Use) = Current_Sem_Unit then
6495             Redundant := Cur_Use;
6496             Prev_Use  := Clause;
6497          else
6498             Redundant := Clause;
6499             Prev_Use  := Cur_Use;
6500          end if;
6501
6502          --  If the new use clause appears in the private part of a parent unit
6503          --  it may appear to be redundant w.r.t. a use clause in a child unit,
6504          --  but the previous use clause was needed in the visible part of the
6505          --  child, and no warning should be emitted.
6506
6507          if Nkind (Parent (Decl)) = N_Package_Specification
6508            and then
6509              List_Containing (Decl) = Private_Declarations (Parent (Decl))
6510          then
6511             declare
6512                Par : constant Entity_Id := Defining_Entity (Parent (Decl));
6513                Spec : constant Node_Id  :=
6514                         Specification (Unit (Cunit (Current_Sem_Unit)));
6515
6516             begin
6517                if Is_Compilation_Unit (Par)
6518                  and then Par /= Cunit_Entity (Current_Sem_Unit)
6519                  and then Parent (Cur_Use) = Spec
6520                  and then
6521                    List_Containing (Cur_Use) = Visible_Declarations (Spec)
6522                then
6523                   return;
6524                end if;
6525             end;
6526          end if;
6527
6528       --  Finally, if the current use clause is in the context then
6529       --  the clause is redundant when it is nested within the unit.
6530
6531       elsif Nkind (Parent (Cur_Use)) = N_Compilation_Unit
6532         and then Nkind (Parent (Parent (Clause))) /= N_Compilation_Unit
6533         and then Get_Source_Unit (Cur_Use) = Get_Source_Unit (Clause)
6534       then
6535          Redundant := Clause;
6536          Prev_Use  := Cur_Use;
6537
6538       else
6539          null;
6540       end if;
6541
6542       if Present (Redundant) then
6543          Error_Msg_Sloc := Sloc (Prev_Use);
6544          Error_Msg_NE
6545            ("& is already use-visible through previous use clause #?",
6546             Redundant, Pack_Name);
6547       end if;
6548    end Note_Redundant_Use;
6549
6550    ---------------
6551    -- Pop_Scope --
6552    ---------------
6553
6554    procedure Pop_Scope is
6555       SST : Scope_Stack_Entry renames Scope_Stack.Table (Scope_Stack.Last);
6556
6557    begin
6558       if Debug_Flag_E then
6559          Write_Info;
6560       end if;
6561
6562       Scope_Suppress           := SST.Save_Scope_Suppress;
6563       Local_Suppress_Stack_Top := SST.Save_Local_Suppress_Stack_Top;
6564       Check_Policy_List        := SST.Save_Check_Policy_List;
6565
6566       if Debug_Flag_W then
6567          Write_Str ("--> exiting scope: ");
6568          Write_Name (Chars (Current_Scope));
6569          Write_Str (", Depth=");
6570          Write_Int (Int (Scope_Stack.Last));
6571          Write_Eol;
6572       end if;
6573
6574       End_Use_Clauses (SST.First_Use_Clause);
6575
6576       --  If the actions to be wrapped are still there they will get lost
6577       --  causing incomplete code to be generated. It is better to abort in
6578       --  this case (and we do the abort even with assertions off since the
6579       --  penalty is incorrect code generation)
6580
6581       if SST.Actions_To_Be_Wrapped_Before /= No_List
6582            or else
6583          SST.Actions_To_Be_Wrapped_After  /= No_List
6584       then
6585          return;
6586       end if;
6587
6588       --  Free last subprogram name if allocated, and pop scope
6589
6590       Free (SST.Last_Subprogram_Name);
6591       Scope_Stack.Decrement_Last;
6592    end Pop_Scope;
6593
6594    ---------------
6595    -- Push_Scope --
6596    ---------------
6597
6598    procedure Push_Scope (S : Entity_Id) is
6599       E : Entity_Id;
6600
6601    begin
6602       if Ekind (S) = E_Void then
6603          null;
6604
6605       --  Set scope depth if not a non-concurrent type, and we have not yet set
6606       --  the scope depth. This means that we have the first occurrence of the
6607       --  scope, and this is where the depth is set.
6608
6609       elsif (not Is_Type (S) or else Is_Concurrent_Type (S))
6610         and then not Scope_Depth_Set (S)
6611       then
6612          if S = Standard_Standard then
6613             Set_Scope_Depth_Value (S, Uint_0);
6614
6615          elsif Is_Child_Unit (S) then
6616             Set_Scope_Depth_Value (S, Uint_1);
6617
6618          elsif not Is_Record_Type (Current_Scope) then
6619             if Ekind (S) = E_Loop then
6620                Set_Scope_Depth_Value (S, Scope_Depth (Current_Scope));
6621             else
6622                Set_Scope_Depth_Value (S, Scope_Depth (Current_Scope) + 1);
6623             end if;
6624          end if;
6625       end if;
6626
6627       Scope_Stack.Increment_Last;
6628
6629       declare
6630          SST : Scope_Stack_Entry renames Scope_Stack.Table (Scope_Stack.Last);
6631
6632       begin
6633          SST.Entity                        := S;
6634          SST.Save_Scope_Suppress           := Scope_Suppress;
6635          SST.Save_Local_Suppress_Stack_Top := Local_Suppress_Stack_Top;
6636          SST.Save_Check_Policy_List        := Check_Policy_List;
6637
6638          if Scope_Stack.Last > Scope_Stack.First then
6639             SST.Component_Alignment_Default := Scope_Stack.Table
6640                                                  (Scope_Stack.Last - 1).
6641                                                    Component_Alignment_Default;
6642          end if;
6643
6644          SST.Last_Subprogram_Name           := null;
6645          SST.Is_Transient                   := False;
6646          SST.Node_To_Be_Wrapped             := Empty;
6647          SST.Pending_Freeze_Actions         := No_List;
6648          SST.Actions_To_Be_Wrapped_Before   := No_List;
6649          SST.Actions_To_Be_Wrapped_After    := No_List;
6650          SST.First_Use_Clause               := Empty;
6651          SST.Is_Active_Stack_Base           := False;
6652          SST.Previous_Visibility            := False;
6653       end;
6654
6655       if Debug_Flag_W then
6656          Write_Str ("--> new scope: ");
6657          Write_Name (Chars (Current_Scope));
6658          Write_Str (", Id=");
6659          Write_Int (Int (Current_Scope));
6660          Write_Str (", Depth=");
6661          Write_Int (Int (Scope_Stack.Last));
6662          Write_Eol;
6663       end if;
6664
6665       --  Deal with copying flags from the previous scope to this one. This is
6666       --  not necessary if either scope is standard, or if the new scope is a
6667       --  child unit.
6668
6669       if S /= Standard_Standard
6670         and then Scope (S) /= Standard_Standard
6671         and then not Is_Child_Unit (S)
6672       then
6673          E := Scope (S);
6674
6675          if Nkind (E) not in N_Entity then
6676             return;
6677          end if;
6678
6679          --  Copy categorization flags from Scope (S) to S, this is not done
6680          --  when Scope (S) is Standard_Standard since propagation is from
6681          --  library unit entity inwards. Copy other relevant attributes as
6682          --  well (Discard_Names in particular).
6683
6684          --  We only propagate inwards for library level entities,
6685          --  inner level subprograms do not inherit the categorization.
6686
6687          if Is_Library_Level_Entity (S) then
6688             Set_Is_Preelaborated  (S, Is_Preelaborated (E));
6689             Set_Is_Shared_Passive (S, Is_Shared_Passive (E));
6690             Set_Discard_Names     (S, Discard_Names (E));
6691             Set_Suppress_Value_Tracking_On_Call
6692                                   (S, Suppress_Value_Tracking_On_Call (E));
6693             Set_Categorization_From_Scope (E => S, Scop => E);
6694          end if;
6695       end if;
6696    end Push_Scope;
6697
6698    ---------------------
6699    -- Premature_Usage --
6700    ---------------------
6701
6702    procedure Premature_Usage (N : Node_Id) is
6703       Kind : constant Node_Kind := Nkind (Parent (Entity (N)));
6704       E    : Entity_Id := Entity (N);
6705
6706    begin
6707       --  Within an instance, the analysis of the actual for a formal object
6708       --  does not see the name of the object itself. This is significant only
6709       --  if the object is an aggregate, where its analysis does not do any
6710       --  name resolution on component associations. (see 4717-008). In such a
6711       --  case, look for the visible homonym on the chain.
6712
6713       if In_Instance
6714         and then Present (Homonym (E))
6715       then
6716          E := Homonym (E);
6717
6718          while Present (E)
6719            and then not In_Open_Scopes (Scope (E))
6720          loop
6721             E := Homonym (E);
6722          end loop;
6723
6724          if Present (E) then
6725             Set_Entity (N, E);
6726             Set_Etype (N, Etype (E));
6727             return;
6728          end if;
6729       end if;
6730
6731       if Kind  = N_Component_Declaration then
6732          Error_Msg_N
6733            ("component&! cannot be used before end of record declaration", N);
6734
6735       elsif Kind  = N_Parameter_Specification then
6736          Error_Msg_N
6737            ("formal parameter&! cannot be used before end of specification",
6738             N);
6739
6740       elsif Kind  = N_Discriminant_Specification then
6741          Error_Msg_N
6742            ("discriminant&! cannot be used before end of discriminant part",
6743             N);
6744
6745       elsif Kind  = N_Procedure_Specification
6746         or else Kind = N_Function_Specification
6747       then
6748          Error_Msg_N
6749            ("subprogram&! cannot be used before end of its declaration",
6750             N);
6751
6752       elsif Kind = N_Full_Type_Declaration then
6753          Error_Msg_N
6754            ("type& cannot be used before end of its declaration!", N);
6755
6756       else
6757          Error_Msg_N
6758            ("object& cannot be used before end of its declaration!", N);
6759       end if;
6760    end Premature_Usage;
6761
6762    ------------------------
6763    -- Present_System_Aux --
6764    ------------------------
6765
6766    function Present_System_Aux (N : Node_Id := Empty) return Boolean is
6767       Loc      : Source_Ptr;
6768       Aux_Name : Unit_Name_Type;
6769       Unum     : Unit_Number_Type;
6770       Withn    : Node_Id;
6771       With_Sys : Node_Id;
6772       The_Unit : Node_Id;
6773
6774       function Find_System (C_Unit : Node_Id) return Entity_Id;
6775       --  Scan context clause of compilation unit to find with_clause
6776       --  for System.
6777
6778       -----------------
6779       -- Find_System --
6780       -----------------
6781
6782       function Find_System (C_Unit : Node_Id) return Entity_Id is
6783          With_Clause : Node_Id;
6784
6785       begin
6786          With_Clause := First (Context_Items (C_Unit));
6787          while Present (With_Clause) loop
6788             if (Nkind (With_Clause) = N_With_Clause
6789               and then Chars (Name (With_Clause)) = Name_System)
6790               and then Comes_From_Source (With_Clause)
6791             then
6792                return With_Clause;
6793             end if;
6794
6795             Next (With_Clause);
6796          end loop;
6797
6798          return Empty;
6799       end Find_System;
6800
6801    --  Start of processing for Present_System_Aux
6802
6803    begin
6804       --  The child unit may have been loaded and analyzed already
6805
6806       if Present (System_Aux_Id) then
6807          return True;
6808
6809       --  If no previous pragma for System.Aux, nothing to load
6810
6811       elsif No (System_Extend_Unit) then
6812          return False;
6813
6814       --  Use the unit name given in the pragma to retrieve the unit.
6815       --  Verify that System itself appears in the context clause of the
6816       --  current compilation. If System is not present, an error will
6817       --  have been reported already.
6818
6819       else
6820          With_Sys := Find_System (Cunit (Current_Sem_Unit));
6821
6822          The_Unit := Unit (Cunit (Current_Sem_Unit));
6823
6824          if No (With_Sys)
6825            and then
6826              (Nkind (The_Unit) = N_Package_Body
6827                 or else (Nkind (The_Unit) = N_Subprogram_Body
6828                            and then
6829                              not Acts_As_Spec (Cunit (Current_Sem_Unit))))
6830          then
6831             With_Sys := Find_System (Library_Unit (Cunit (Current_Sem_Unit)));
6832          end if;
6833
6834          if No (With_Sys)
6835            and then Present (N)
6836          then
6837             --  If we are compiling a subunit, we need to examine its
6838             --  context as well (Current_Sem_Unit is the parent unit);
6839
6840             The_Unit := Parent (N);
6841             while Nkind (The_Unit) /= N_Compilation_Unit loop
6842                The_Unit := Parent (The_Unit);
6843             end loop;
6844
6845             if Nkind (Unit (The_Unit)) = N_Subunit then
6846                With_Sys := Find_System (The_Unit);
6847             end if;
6848          end if;
6849
6850          if No (With_Sys) then
6851             return False;
6852          end if;
6853
6854          Loc := Sloc (With_Sys);
6855          Get_Name_String (Chars (Expression (System_Extend_Unit)));
6856          Name_Buffer (8 .. Name_Len + 7) := Name_Buffer (1 .. Name_Len);
6857          Name_Buffer (1 .. 7) := "system.";
6858          Name_Buffer (Name_Len + 8) := '%';
6859          Name_Buffer (Name_Len + 9) := 's';
6860          Name_Len := Name_Len + 9;
6861          Aux_Name := Name_Find;
6862
6863          Unum :=
6864            Load_Unit
6865              (Load_Name  => Aux_Name,
6866               Required   => False,
6867               Subunit    => False,
6868               Error_Node => With_Sys);
6869
6870          if Unum /= No_Unit then
6871             Semantics (Cunit (Unum));
6872             System_Aux_Id :=
6873               Defining_Entity (Specification (Unit (Cunit (Unum))));
6874
6875             Withn :=
6876               Make_With_Clause (Loc,
6877                 Name =>
6878                   Make_Expanded_Name (Loc,
6879                     Chars  => Chars (System_Aux_Id),
6880                     Prefix => New_Reference_To (Scope (System_Aux_Id), Loc),
6881                     Selector_Name => New_Reference_To (System_Aux_Id, Loc)));
6882
6883             Set_Entity (Name (Withn), System_Aux_Id);
6884
6885             Set_Library_Unit       (Withn, Cunit (Unum));
6886             Set_Corresponding_Spec (Withn, System_Aux_Id);
6887             Set_First_Name         (Withn, True);
6888             Set_Implicit_With      (Withn, True);
6889
6890             Insert_After (With_Sys, Withn);
6891             Mark_Rewrite_Insertion (Withn);
6892             Set_Context_Installed (Withn);
6893
6894             return True;
6895
6896          --  Here if unit load failed
6897
6898          else
6899             Error_Msg_Name_1 := Name_System;
6900             Error_Msg_Name_2 := Chars (Expression (System_Extend_Unit));
6901             Error_Msg_N
6902               ("extension package `%.%` does not exist",
6903                Opt.System_Extend_Unit);
6904             return False;
6905          end if;
6906       end if;
6907    end Present_System_Aux;
6908
6909    -------------------------
6910    -- Restore_Scope_Stack --
6911    -------------------------
6912
6913    procedure Restore_Scope_Stack (Handle_Use : Boolean := True) is
6914       E         : Entity_Id;
6915       S         : Entity_Id;
6916       Comp_Unit : Node_Id;
6917       In_Child  : Boolean := False;
6918       Full_Vis  : Boolean := True;
6919       SS_Last   : constant Int := Scope_Stack.Last;
6920
6921    begin
6922       --  Restore visibility of previous scope stack, if any
6923
6924       for J in reverse 0 .. Scope_Stack.Last loop
6925          exit when  Scope_Stack.Table (J).Entity = Standard_Standard
6926             or else No (Scope_Stack.Table (J).Entity);
6927
6928          S := Scope_Stack.Table (J).Entity;
6929
6930          if not Is_Hidden_Open_Scope (S) then
6931
6932             --  If the parent scope is hidden, its entities are hidden as
6933             --  well, unless the entity is the instantiation currently
6934             --  being analyzed.
6935
6936             if not Is_Hidden_Open_Scope (Scope (S))
6937               or else not Analyzed (Parent (S))
6938               or else Scope (S) = Standard_Standard
6939             then
6940                Set_Is_Immediately_Visible (S, True);
6941             end if;
6942
6943             E := First_Entity (S);
6944             while Present (E) loop
6945                if Is_Child_Unit (E) then
6946                   if not From_With_Type (E) then
6947                      Set_Is_Immediately_Visible (E,
6948                        Is_Visible_Child_Unit (E) or else In_Open_Scopes (E));
6949
6950                   else
6951                      pragma Assert
6952                        (Nkind (Parent (E)) = N_Defining_Program_Unit_Name
6953                           and then
6954                         Nkind (Parent (Parent (E))) = N_Package_Specification);
6955                      Set_Is_Immediately_Visible (E,
6956                        Limited_View_Installed (Parent (Parent (E))));
6957                   end if;
6958                else
6959                   Set_Is_Immediately_Visible (E, True);
6960                end if;
6961
6962                Next_Entity (E);
6963
6964                if not Full_Vis
6965                  and then Is_Package_Or_Generic_Package (S)
6966                then
6967                   --  We are in the visible part of the package scope
6968
6969                   exit when E = First_Private_Entity (S);
6970                end if;
6971             end loop;
6972
6973             --  The visibility of child units (siblings of current compilation)
6974             --  must be restored in any case. Their declarations may appear
6975             --  after the private part of the parent.
6976
6977             if not Full_Vis then
6978                while Present (E) loop
6979                   if Is_Child_Unit (E) then
6980                      Set_Is_Immediately_Visible (E,
6981                        Is_Visible_Child_Unit (E) or else In_Open_Scopes (E));
6982                   end if;
6983
6984                   Next_Entity (E);
6985                end loop;
6986             end if;
6987          end if;
6988
6989          if Is_Child_Unit (S)
6990             and not In_Child     --  check only for current unit
6991          then
6992             In_Child := True;
6993
6994             --  Restore visibility of parents according to whether the child
6995             --  is private and whether we are in its visible part.
6996
6997             Comp_Unit := Parent (Unit_Declaration_Node (S));
6998
6999             if Nkind (Comp_Unit) = N_Compilation_Unit
7000               and then Private_Present (Comp_Unit)
7001             then
7002                Full_Vis := True;
7003
7004             elsif Is_Package_Or_Generic_Package (S)
7005               and then (In_Private_Part (S) or else In_Package_Body (S))
7006             then
7007                Full_Vis := True;
7008
7009             --  if S is the scope of some instance (which has already been
7010             --  seen on the stack) it does not affect the visibility of
7011             --  other scopes.
7012
7013             elsif Is_Hidden_Open_Scope (S) then
7014                null;
7015
7016             elsif (Ekind (S) = E_Procedure
7017                     or else Ekind (S) = E_Function)
7018               and then Has_Completion (S)
7019             then
7020                Full_Vis := True;
7021             else
7022                Full_Vis := False;
7023             end if;
7024          else
7025             Full_Vis := True;
7026          end if;
7027       end loop;
7028
7029       if SS_Last >= Scope_Stack.First
7030         and then Scope_Stack.Table (SS_Last).Entity /= Standard_Standard
7031         and then Handle_Use
7032       then
7033          Install_Use_Clauses (Scope_Stack.Table (SS_Last).First_Use_Clause);
7034       end if;
7035    end Restore_Scope_Stack;
7036
7037    ----------------------
7038    -- Save_Scope_Stack --
7039    ----------------------
7040
7041    procedure Save_Scope_Stack (Handle_Use : Boolean := True) is
7042       E       : Entity_Id;
7043       S       : Entity_Id;
7044       SS_Last : constant Int := Scope_Stack.Last;
7045
7046    begin
7047       if SS_Last >= Scope_Stack.First
7048         and then Scope_Stack.Table (SS_Last).Entity /= Standard_Standard
7049       then
7050          if Handle_Use then
7051             End_Use_Clauses (Scope_Stack.Table (SS_Last).First_Use_Clause);
7052          end if;
7053
7054          --  If the call is from within a compilation unit, as when called from
7055          --  Rtsfind, make current entries in scope stack invisible while we
7056          --  analyze the new unit.
7057
7058          for J in reverse 0 .. SS_Last loop
7059             exit when  Scope_Stack.Table (J).Entity = Standard_Standard
7060                or else No (Scope_Stack.Table (J).Entity);
7061
7062             S := Scope_Stack.Table (J).Entity;
7063             Set_Is_Immediately_Visible (S, False);
7064
7065             E := First_Entity (S);
7066             while Present (E) loop
7067                Set_Is_Immediately_Visible (E, False);
7068                Next_Entity (E);
7069             end loop;
7070          end loop;
7071
7072       end if;
7073    end Save_Scope_Stack;
7074
7075    -------------
7076    -- Set_Use --
7077    -------------
7078
7079    procedure Set_Use (L : List_Id) is
7080       Decl      : Node_Id;
7081       Pack_Name : Node_Id;
7082       Pack      : Entity_Id;
7083       Id        : Entity_Id;
7084
7085    begin
7086       if Present (L) then
7087          Decl := First (L);
7088          while Present (Decl) loop
7089             if Nkind (Decl) = N_Use_Package_Clause then
7090                Chain_Use_Clause (Decl);
7091
7092                Pack_Name := First (Names (Decl));
7093                while Present (Pack_Name) loop
7094                   Pack := Entity (Pack_Name);
7095
7096                   if Ekind (Pack) = E_Package
7097                     and then Applicable_Use (Pack_Name)
7098                   then
7099                      Use_One_Package (Pack, Decl);
7100                   end if;
7101
7102                   Next (Pack_Name);
7103                end loop;
7104
7105             elsif Nkind (Decl) = N_Use_Type_Clause  then
7106                Chain_Use_Clause (Decl);
7107
7108                Id := First (Subtype_Marks (Decl));
7109                while Present (Id) loop
7110                   if Entity (Id) /= Any_Type then
7111                      Use_One_Type (Id);
7112                   end if;
7113
7114                   Next (Id);
7115                end loop;
7116             end if;
7117
7118             Next (Decl);
7119          end loop;
7120       end if;
7121    end Set_Use;
7122
7123    ---------------------
7124    -- Use_One_Package --
7125    ---------------------
7126
7127    procedure Use_One_Package (P : Entity_Id; N : Node_Id) is
7128       Id               : Entity_Id;
7129       Prev             : Entity_Id;
7130       Current_Instance : Entity_Id := Empty;
7131       Real_P           : Entity_Id;
7132       Private_With_OK  : Boolean   := False;
7133
7134    begin
7135       if Ekind (P) /= E_Package then
7136          return;
7137       end if;
7138
7139       Set_In_Use (P);
7140       Set_Current_Use_Clause (P, N);
7141
7142       --  Ada 2005 (AI-50217): Check restriction
7143
7144       if From_With_Type (P) then
7145          Error_Msg_N ("limited withed package cannot appear in use clause", N);
7146       end if;
7147
7148       --  Find enclosing instance, if any
7149
7150       if In_Instance then
7151          Current_Instance := Current_Scope;
7152          while not Is_Generic_Instance (Current_Instance) loop
7153             Current_Instance := Scope (Current_Instance);
7154          end loop;
7155
7156          if No (Hidden_By_Use_Clause (N)) then
7157             Set_Hidden_By_Use_Clause (N, New_Elmt_List);
7158          end if;
7159       end if;
7160
7161       --  If unit is a package renaming, indicate that the renamed
7162       --  package is also in use (the flags on both entities must
7163       --  remain consistent, and a subsequent use of either of them
7164       --  should be recognized as redundant).
7165
7166       if Present (Renamed_Object (P)) then
7167          Set_In_Use (Renamed_Object (P));
7168          Set_Current_Use_Clause (Renamed_Object (P), N);
7169          Real_P := Renamed_Object (P);
7170       else
7171          Real_P := P;
7172       end if;
7173
7174       --  Ada 2005 (AI-262): Check the use_clause of a private withed package
7175       --  found in the private part of a package specification
7176
7177       if In_Private_Part (Current_Scope)
7178         and then Has_Private_With (P)
7179         and then Is_Child_Unit (Current_Scope)
7180         and then Is_Child_Unit (P)
7181         and then Is_Ancestor_Package (Scope (Current_Scope), P)
7182       then
7183          Private_With_OK := True;
7184       end if;
7185
7186       --  Loop through entities in one package making them potentially
7187       --  use-visible.
7188
7189       Id := First_Entity (P);
7190       while Present (Id)
7191         and then (Id /= First_Private_Entity (P)
7192                     or else Private_With_OK) -- Ada 2005 (AI-262)
7193       loop
7194          Prev := Current_Entity (Id);
7195          while Present (Prev) loop
7196             if Is_Immediately_Visible (Prev)
7197               and then (not Is_Overloadable (Prev)
7198                          or else not Is_Overloadable (Id)
7199                          or else (Type_Conformant (Id, Prev)))
7200             then
7201                if No (Current_Instance) then
7202
7203                   --  Potentially use-visible entity remains hidden
7204
7205                   goto Next_Usable_Entity;
7206
7207                --  A use clause within an instance hides outer global entities,
7208                --  which are not used to resolve local entities in the
7209                --  instance. Note that the predefined entities in Standard
7210                --  could not have been hidden in the generic by a use clause,
7211                --  and therefore remain visible. Other compilation units whose
7212                --  entities appear in Standard must be hidden in an instance.
7213
7214                --  To determine whether an entity is external to the instance
7215                --  we compare the scope depth of its scope with that of the
7216                --  current instance. However, a generic actual of a subprogram
7217                --  instance is declared in the wrapper package but will not be
7218                --  hidden by a use-visible entity. similarly, an entity that is
7219                --  declared in an enclosing instance will not be hidden by an
7220                --  an entity declared in a generic actual, which can only have
7221                --  been use-visible in the generic and will not have hidden the
7222                --  entity in the generic parent.
7223
7224                --  If Id is called Standard, the predefined package with the
7225                --  same name is in the homonym chain. It has to be ignored
7226                --  because it has no defined scope (being the only entity in
7227                --  the system with this mandated behavior).
7228
7229                elsif not Is_Hidden (Id)
7230                  and then Present (Scope (Prev))
7231                  and then not Is_Wrapper_Package (Scope (Prev))
7232                  and then Scope_Depth (Scope (Prev)) <
7233                           Scope_Depth (Current_Instance)
7234                  and then (Scope (Prev) /= Standard_Standard
7235                             or else Sloc (Prev) > Standard_Location)
7236                then
7237                   if In_Open_Scopes (Scope (Prev))
7238                     and then Is_Generic_Instance (Scope (Prev))
7239                     and then Present (Associated_Formal_Package (P))
7240                   then
7241                      null;
7242
7243                   else
7244                      Set_Is_Potentially_Use_Visible (Id);
7245                      Set_Is_Immediately_Visible (Prev, False);
7246                      Append_Elmt (Prev, Hidden_By_Use_Clause (N));
7247                   end if;
7248                end if;
7249
7250             --  A user-defined operator is not use-visible if the predefined
7251             --  operator for the type is immediately visible, which is the case
7252             --  if the type of the operand is in an open scope. This does not
7253             --  apply to user-defined operators that have operands of different
7254             --  types, because the predefined mixed mode operations (multiply
7255             --  and divide) apply to universal types and do not hide anything.
7256
7257             elsif Ekind (Prev) = E_Operator
7258               and then Operator_Matches_Spec (Prev, Id)
7259               and then In_Open_Scopes
7260                (Scope (Base_Type (Etype (First_Formal (Id)))))
7261               and then (No (Next_Formal (First_Formal (Id)))
7262                          or else Etype (First_Formal (Id))
7263                            = Etype (Next_Formal (First_Formal (Id)))
7264                          or else Chars (Prev) = Name_Op_Expon)
7265             then
7266                goto Next_Usable_Entity;
7267
7268             --  In an instance, two homonyms may become use_visible through the
7269             --  actuals of distinct formal packages. In the generic, only the
7270             --  current one would have been visible, so make the other one
7271             --  not use_visible.
7272
7273             elsif Present (Current_Instance)
7274               and then Is_Potentially_Use_Visible (Prev)
7275               and then not Is_Overloadable (Prev)
7276               and then Scope (Id) /= Scope (Prev)
7277               and then Used_As_Generic_Actual (Scope (Prev))
7278               and then Used_As_Generic_Actual (Scope (Id))
7279               and then List_Containing (Current_Use_Clause (Scope (Prev))) /=
7280                        List_Containing (Current_Use_Clause (Scope (Id)))
7281             then
7282                Set_Is_Potentially_Use_Visible (Prev, False);
7283                Append_Elmt (Prev, Hidden_By_Use_Clause (N));
7284             end if;
7285
7286             Prev := Homonym (Prev);
7287          end loop;
7288
7289          --  On exit, we know entity is not hidden, unless it is private
7290
7291          if not Is_Hidden (Id)
7292            and then ((not Is_Child_Unit (Id))
7293                        or else Is_Visible_Child_Unit (Id))
7294          then
7295             Set_Is_Potentially_Use_Visible (Id);
7296
7297             if Is_Private_Type (Id)
7298               and then Present (Full_View (Id))
7299             then
7300                Set_Is_Potentially_Use_Visible (Full_View (Id));
7301             end if;
7302          end if;
7303
7304          <<Next_Usable_Entity>>
7305             Next_Entity (Id);
7306       end loop;
7307
7308       --  Child units are also made use-visible by a use clause, but they may
7309       --  appear after all visible declarations in the parent entity list.
7310
7311       while Present (Id) loop
7312          if Is_Child_Unit (Id)
7313            and then Is_Visible_Child_Unit (Id)
7314          then
7315             Set_Is_Potentially_Use_Visible (Id);
7316          end if;
7317
7318          Next_Entity (Id);
7319       end loop;
7320
7321       if Chars (Real_P) = Name_System
7322         and then Scope (Real_P) = Standard_Standard
7323         and then Present_System_Aux (N)
7324       then
7325          Use_One_Package (System_Aux_Id, N);
7326       end if;
7327
7328    end Use_One_Package;
7329
7330    ------------------
7331    -- Use_One_Type --
7332    ------------------
7333
7334    procedure Use_One_Type (Id : Node_Id) is
7335       Elmt          : Elmt_Id;
7336       Is_Known_Used : Boolean;
7337       Op_List       : Elist_Id;
7338       T             : Entity_Id;
7339
7340       function Spec_Reloaded_For_Body return Boolean;
7341       --  Determine whether the compilation unit is a package body and the use
7342       --  type clause is in the spec of the same package. Even though the spec
7343       --  was analyzed first, its context is reloaded when analysing the body.
7344
7345       ----------------------------
7346       -- Spec_Reloaded_For_Body --
7347       ----------------------------
7348
7349       function Spec_Reloaded_For_Body return Boolean is
7350       begin
7351          if Nkind (Unit (Cunit (Current_Sem_Unit))) = N_Package_Body then
7352             declare
7353                Spec : constant Node_Id :=
7354                         Parent (List_Containing (Parent (Id)));
7355             begin
7356                return
7357                  Nkind (Spec) = N_Package_Specification
7358                    and then Corresponding_Body (Parent (Spec)) =
7359                               Cunit_Entity (Current_Sem_Unit);
7360             end;
7361          end if;
7362
7363          return False;
7364       end Spec_Reloaded_For_Body;
7365
7366    --  Start of processing for Use_One_Type;
7367
7368    begin
7369       --  It is the type determined by the subtype mark (8.4(8)) whose
7370       --  operations become potentially use-visible.
7371
7372       T := Base_Type (Entity (Id));
7373
7374       --  Either the type itself is used, the package where it is declared
7375       --  is in use or the entity is declared in the current package, thus
7376       --  use-visible.
7377
7378       Is_Known_Used :=
7379         In_Use (T)
7380           or else In_Use (Scope (T))
7381           or else Scope (T) = Current_Scope;
7382
7383       Set_Redundant_Use (Id,
7384         Is_Known_Used or else Is_Potentially_Use_Visible (T));
7385
7386       if Ekind (T) = E_Incomplete_Type then
7387          Error_Msg_N ("premature usage of incomplete type", Id);
7388
7389       elsif In_Open_Scopes (Scope (T)) then
7390          null;
7391
7392       --  A limited view cannot appear in a use_type clause. However, an access
7393       --  type whose designated type is limited has the flag but is not itself
7394       --  a limited view unless we only have a limited view of its enclosing
7395       --  package.
7396
7397       elsif From_With_Type (T)
7398         and then From_With_Type (Scope (T))
7399       then
7400          Error_Msg_N
7401            ("incomplete type from limited view "
7402              & "cannot appear in use clause", Id);
7403
7404       --  If the subtype mark designates a subtype in a different package,
7405       --  we have to check that the parent type is visible, otherwise the
7406       --  use type clause is a noop. Not clear how to do that???
7407
7408       elsif not Redundant_Use (Id) then
7409          Set_In_Use (T);
7410
7411          --  If T is tagged, primitive operators on class-wide operands
7412          --  are also available.
7413
7414          if Is_Tagged_Type (T) then
7415             Set_In_Use (Class_Wide_Type (T));
7416          end if;
7417
7418          Set_Current_Use_Clause (T, Parent (Id));
7419          Op_List := Collect_Primitive_Operations (T);
7420
7421          Elmt := First_Elmt (Op_List);
7422          while Present (Elmt) loop
7423             if (Nkind (Node (Elmt)) = N_Defining_Operator_Symbol
7424                  or else Chars (Node (Elmt)) in Any_Operator_Name)
7425               and then not Is_Hidden (Node (Elmt))
7426             then
7427                Set_Is_Potentially_Use_Visible (Node (Elmt));
7428             end if;
7429
7430             Next_Elmt (Elmt);
7431          end loop;
7432       end if;
7433
7434       --  If warning on redundant constructs, check for unnecessary WITH
7435
7436       if Warn_On_Redundant_Constructs
7437         and then Is_Known_Used
7438
7439          --                     with P;         with P; use P;
7440          --    package P is     package X is    package body X is
7441          --       type T ...       use P.T;
7442
7443          --  The compilation unit is the body of X. GNAT first compiles the
7444          --  spec of X, then proceeds to the body. At that point P is marked
7445          --  as use visible. The analysis then reinstalls the spec along with
7446          --  its context. The use clause P.T is now recognized as redundant,
7447          --  but in the wrong context. Do not emit a warning in such cases.
7448          --  Do not emit a warning either if we are in an instance, there is
7449          --  no redundancy between an outer use_clause and one that appears
7450          --  within the generic.
7451
7452         and then not Spec_Reloaded_For_Body
7453         and then not In_Instance
7454       then
7455          --  The type already has a use clause
7456
7457          if In_Use (T) then
7458
7459             --  Case where we know the current use clause for the type
7460
7461             if Present (Current_Use_Clause (T)) then
7462                Use_Clause_Known : declare
7463                   Clause1 : constant Node_Id := Parent (Id);
7464                   Clause2 : constant Node_Id := Current_Use_Clause (T);
7465                   Ent1    : Entity_Id;
7466                   Ent2    : Entity_Id;
7467                   Err_No  : Node_Id;
7468                   Unit1   : Node_Id;
7469                   Unit2   : Node_Id;
7470
7471                   function Entity_Of_Unit (U : Node_Id) return Entity_Id;
7472                   --  Return the appropriate entity for determining which unit
7473                   --  has a deeper scope: the defining entity for U, unless U
7474                   --  is a package instance, in which case we retrieve the
7475                   --  entity of the instance spec.
7476
7477                   --------------------
7478                   -- Entity_Of_Unit --
7479                   --------------------
7480
7481                   function Entity_Of_Unit (U : Node_Id) return Entity_Id is
7482                   begin
7483                      if Nkind (U) =  N_Package_Instantiation
7484                        and then Analyzed (U)
7485                      then
7486                         return Defining_Entity (Instance_Spec (U));
7487                      else
7488                         return Defining_Entity (U);
7489                      end if;
7490                   end Entity_Of_Unit;
7491
7492                --  Start of processing for Use_Clause_Known
7493
7494                begin
7495                   --  If both current use type clause and the use type clause
7496                   --  for the type are at the compilation unit level, one of
7497                   --  the units must be an ancestor of the other, and the
7498                   --  warning belongs on the descendant.
7499
7500                   if Nkind (Parent (Clause1)) = N_Compilation_Unit
7501                        and then
7502                      Nkind (Parent (Clause2)) = N_Compilation_Unit
7503                   then
7504
7505                      --  If the unit is a subprogram body that acts as spec,
7506                      --  the context clause is shared with the constructed
7507                      --  subprogram spec. Clearly there is no redundancy.
7508
7509                      if Clause1 = Clause2 then
7510                         return;
7511                      end if;
7512
7513                      Unit1 := Unit (Parent (Clause1));
7514                      Unit2 := Unit (Parent (Clause2));
7515
7516                      --  If both clauses are on same unit, or one is the body
7517                      --  of the other, or one of them is in a subunit, report
7518                      --  redundancy on the later one.
7519
7520                      if Unit1 = Unit2 then
7521                         Error_Msg_Sloc := Sloc (Current_Use_Clause (T));
7522                         Error_Msg_NE
7523                           ("& is already use-visible through previous "
7524                            & "use_type_clause #?", Clause1, T);
7525                         return;
7526
7527                      elsif Nkind (Unit1) = N_Subunit then
7528                         Error_Msg_Sloc := Sloc (Current_Use_Clause (T));
7529                         Error_Msg_NE
7530                           ("& is already use-visible through previous "
7531                            & "use_type_clause #?", Clause1, T);
7532                         return;
7533
7534                      elsif Nkind_In (Unit2, N_Package_Body, N_Subprogram_Body)
7535                        and then Nkind (Unit1) /= Nkind (Unit2)
7536                        and then Nkind (Unit1) /= N_Subunit
7537                      then
7538                         Error_Msg_Sloc := Sloc (Clause1);
7539                         Error_Msg_NE
7540                           ("& is already use-visible through previous "
7541                            & "use_type_clause #?", Current_Use_Clause (T), T);
7542                         return;
7543                      end if;
7544
7545                      --  There is a redundant use type clause in a child unit.
7546                      --  Determine which of the units is more deeply nested.
7547                      --  If a unit is a package instance, retrieve the entity
7548                      --  and its scope from the instance spec.
7549
7550                      Ent1 := Entity_Of_Unit (Unit1);
7551                      Ent2 := Entity_Of_Unit (Unit2);
7552
7553                      if Scope (Ent2) = Standard_Standard  then
7554                         Error_Msg_Sloc := Sloc (Current_Use_Clause (T));
7555                         Err_No := Clause1;
7556
7557                      elsif Scope (Ent1) = Standard_Standard then
7558                         Error_Msg_Sloc := Sloc (Id);
7559                         Err_No := Clause2;
7560
7561                      --  If both units are child units, we determine which one
7562                      --  is the descendant by the scope distance to the
7563                      --  ultimate parent unit.
7564
7565                      else
7566                         declare
7567                            S1, S2 : Entity_Id;
7568
7569                         begin
7570                            S1 := Scope (Ent1);
7571                            S2 := Scope (Ent2);
7572                            while S1 /= Standard_Standard
7573                                    and then
7574                                  S2 /= Standard_Standard
7575                            loop
7576                               S1 := Scope (S1);
7577                               S2 := Scope (S2);
7578                            end loop;
7579
7580                            if S1 = Standard_Standard then
7581                               Error_Msg_Sloc := Sloc (Id);
7582                               Err_No := Clause2;
7583                            else
7584                               Error_Msg_Sloc := Sloc (Current_Use_Clause (T));
7585                               Err_No := Clause1;
7586                            end if;
7587                         end;
7588                      end if;
7589
7590                      Error_Msg_NE
7591                        ("& is already use-visible through previous "
7592                         & "use_type_clause #?", Err_No, Id);
7593
7594                   --  Case where current use type clause and the use type
7595                   --  clause for the type are not both at the compilation unit
7596                   --  level. In this case we don't have location information.
7597
7598                   else
7599                      Error_Msg_NE
7600                        ("& is already use-visible through previous "
7601                         & "use type clause?", Id, T);
7602                   end if;
7603                end Use_Clause_Known;
7604
7605             --  Here if Current_Use_Clause is not set for T, another case
7606             --  where we do not have the location information available.
7607
7608             else
7609                Error_Msg_NE
7610                  ("& is already use-visible through previous "
7611                   & "use type clause?", Id, T);
7612             end if;
7613
7614          --  The package where T is declared is already used
7615
7616          elsif In_Use (Scope (T)) then
7617             Error_Msg_Sloc := Sloc (Current_Use_Clause (Scope (T)));
7618             Error_Msg_NE
7619               ("& is already use-visible through package use clause #?",
7620                Id, T);
7621
7622          --  The current scope is the package where T is declared
7623
7624          else
7625             Error_Msg_Node_2 := Scope (T);
7626             Error_Msg_NE
7627               ("& is already use-visible inside package &?", Id, T);
7628          end if;
7629       end if;
7630    end Use_One_Type;
7631
7632    ----------------
7633    -- Write_Info --
7634    ----------------
7635
7636    procedure Write_Info is
7637       Id : Entity_Id := First_Entity (Current_Scope);
7638
7639    begin
7640       --  No point in dumping standard entities
7641
7642       if Current_Scope = Standard_Standard then
7643          return;
7644       end if;
7645
7646       Write_Str ("========================================================");
7647       Write_Eol;
7648       Write_Str ("        Defined Entities in ");
7649       Write_Name (Chars (Current_Scope));
7650       Write_Eol;
7651       Write_Str ("========================================================");
7652       Write_Eol;
7653
7654       if No (Id) then
7655          Write_Str ("-- none --");
7656          Write_Eol;
7657
7658       else
7659          while Present (Id) loop
7660             Write_Entity_Info (Id, " ");
7661             Next_Entity (Id);
7662          end loop;
7663       end if;
7664
7665       if Scope (Current_Scope) = Standard_Standard then
7666
7667          --  Print information on the current unit itself
7668
7669          Write_Entity_Info (Current_Scope, " ");
7670       end if;
7671
7672       Write_Eol;
7673    end Write_Info;
7674
7675    -----------------
7676    -- Write_Scopes --
7677    -----------------
7678
7679    procedure Write_Scopes is
7680       S : Entity_Id;
7681    begin
7682       for J in reverse 1 .. Scope_Stack.Last loop
7683          S :=  Scope_Stack.Table (J).Entity;
7684          Write_Int (Int (S));
7685          Write_Str (" === ");
7686          Write_Name (Chars (S));
7687          Write_Eol;
7688       end loop;
7689    end Write_Scopes;
7690
7691 end Sem_Ch8;