OSDN Git Service

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