OSDN Git Service

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