OSDN Git Service

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