OSDN Git Service

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