OSDN Git Service

PR middle-end/46844
[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-visiblity 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
4569             --    the entity is unambiguous, because the tree is not
4570             --    sufficiently typed at this point for Generate_Reference to
4571             --    determine whether this reference modifies the denoted object
4572             --    (because implicit dereferences cannot be identified prior to
4573             --    full type resolution).
4574             --
4575             --    The Is_Actual_Parameter routine takes care of one of these
4576             --    cases but there are others probably ???
4577
4578             else
4579                if not Is_Actual_Parameter then
4580                   Generate_Reference (E, N);
4581                end if;
4582
4583                Check_Nested_Access (E);
4584             end if;
4585
4586             Set_Entity_Or_Discriminal (N, E);
4587          end if;
4588       end;
4589    end Find_Direct_Name;
4590
4591    ------------------------
4592    -- Find_Expanded_Name --
4593    ------------------------
4594
4595    --  This routine searches the homonym chain of the entity until it finds
4596    --  an entity declared in the scope denoted by the prefix. If the entity
4597    --  is private, it may nevertheless be immediately visible, if we are in
4598    --  the scope of its declaration.
4599
4600    procedure Find_Expanded_Name (N : Node_Id) is
4601       Selector  : constant Node_Id := Selector_Name (N);
4602       Candidate : Entity_Id        := Empty;
4603       P_Name    : Entity_Id;
4604       O_Name    : Entity_Id;
4605       Id        : Entity_Id;
4606
4607    begin
4608       P_Name := Entity (Prefix (N));
4609       O_Name := P_Name;
4610
4611       --  If the prefix is a renamed package, look for the entity in the
4612       --  original package.
4613
4614       if Ekind (P_Name) = E_Package
4615         and then Present (Renamed_Object (P_Name))
4616       then
4617          P_Name := Renamed_Object (P_Name);
4618
4619          --  Rewrite node with entity field pointing to renamed object
4620
4621          Rewrite (Prefix (N), New_Copy (Prefix (N)));
4622          Set_Entity (Prefix (N), P_Name);
4623
4624       --  If the prefix is an object of a concurrent type, look for
4625       --  the entity in the associated task or protected type.
4626
4627       elsif Is_Concurrent_Type (Etype (P_Name)) then
4628          P_Name := Etype (P_Name);
4629       end if;
4630
4631       Id := Current_Entity (Selector);
4632
4633       declare
4634          Is_New_Candidate : Boolean;
4635
4636       begin
4637          while Present (Id) loop
4638             if Scope (Id) = P_Name then
4639                Candidate        := Id;
4640                Is_New_Candidate := True;
4641
4642             --  Ada 2005 (AI-217): Handle shadow entities associated with types
4643             --  declared in limited-withed nested packages. We don't need to
4644             --  handle E_Incomplete_Subtype entities because the entities in
4645             --  the limited view are always E_Incomplete_Type entities (see
4646             --  Build_Limited_Views). Regarding the expression used to evaluate
4647             --  the scope, it is important to note that the limited view also
4648             --  has shadow entities associated nested packages. For this reason
4649             --  the correct scope of the entity is the scope of the real entity
4650             --  The non-limited view may itself be incomplete, in which case
4651             --  get the full view if available.
4652
4653             elsif From_With_Type (Id)
4654               and then Is_Type (Id)
4655               and then Ekind (Id) = E_Incomplete_Type
4656               and then Present (Non_Limited_View (Id))
4657               and then Scope (Non_Limited_View (Id)) = P_Name
4658             then
4659                Candidate        := Get_Full_View (Non_Limited_View (Id));
4660                Is_New_Candidate := True;
4661
4662             else
4663                Is_New_Candidate := False;
4664             end if;
4665
4666             if Is_New_Candidate then
4667                if Is_Child_Unit (Id) then
4668                   exit when Is_Visible_Child_Unit (Id)
4669                     or else Is_Immediately_Visible (Id);
4670
4671                else
4672                   exit when not Is_Hidden (Id)
4673                     or else Is_Immediately_Visible (Id);
4674                end if;
4675             end if;
4676
4677             Id := Homonym (Id);
4678          end loop;
4679       end;
4680
4681       if No (Id)
4682         and then (Ekind (P_Name) = E_Procedure
4683                     or else
4684                   Ekind (P_Name) = E_Function)
4685         and then Is_Generic_Instance (P_Name)
4686       then
4687          --  Expanded name denotes entity in (instance of) generic subprogram.
4688          --  The entity may be in the subprogram instance, or may denote one of
4689          --  the formals, which is declared in the enclosing wrapper package.
4690
4691          P_Name := Scope (P_Name);
4692
4693          Id := Current_Entity (Selector);
4694          while Present (Id) loop
4695             exit when Scope (Id) = P_Name;
4696             Id := Homonym (Id);
4697          end loop;
4698       end if;
4699
4700       if No (Id) or else Chars (Id) /= Chars (Selector) then
4701          Set_Etype (N, Any_Type);
4702
4703          --  If we are looking for an entity defined in System, try to find it
4704          --  in the child package that may have been provided as an extension
4705          --  to System. The Extend_System pragma will have supplied the name of
4706          --  the extension, which may have to be loaded.
4707
4708          if Chars (P_Name) = Name_System
4709            and then Scope (P_Name) = Standard_Standard
4710            and then Present (System_Extend_Unit)
4711            and then Present_System_Aux (N)
4712          then
4713             Set_Entity (Prefix (N), System_Aux_Id);
4714             Find_Expanded_Name (N);
4715             return;
4716
4717          elsif Nkind (Selector) = N_Operator_Symbol
4718            and then Has_Implicit_Operator (N)
4719          then
4720             --  There is an implicit instance of the predefined operator in
4721             --  the given scope. The operator entity is defined in Standard.
4722             --  Has_Implicit_Operator makes the node into an Expanded_Name.
4723
4724             return;
4725
4726          elsif Nkind (Selector) = N_Character_Literal
4727            and then Has_Implicit_Character_Literal (N)
4728          then
4729             --  If there is no literal defined in the scope denoted by the
4730             --  prefix, the literal may belong to (a type derived from)
4731             --  Standard_Character, for which we have no explicit literals.
4732
4733             return;
4734
4735          else
4736             --  If the prefix is a single concurrent object, use its name in
4737             --  the error message, rather than that of the anonymous type.
4738
4739             if Is_Concurrent_Type (P_Name)
4740               and then Is_Internal_Name (Chars (P_Name))
4741             then
4742                Error_Msg_Node_2 := Entity (Prefix (N));
4743             else
4744                Error_Msg_Node_2 := P_Name;
4745             end if;
4746
4747             if P_Name = System_Aux_Id then
4748                P_Name := Scope (P_Name);
4749                Set_Entity (Prefix (N), P_Name);
4750             end if;
4751
4752             if Present (Candidate) then
4753
4754                --  If we know that the unit is a child unit we can give a more
4755                --  accurate error message.
4756
4757                if Is_Child_Unit (Candidate) then
4758
4759                   --  If the candidate is a private child unit and we are in
4760                   --  the visible part of a public unit, specialize the error
4761                   --  message. There might be a private with_clause for it,
4762                   --  but it is not currently active.
4763
4764                   if Is_Private_Descendant (Candidate)
4765                     and then Ekind (Current_Scope) = E_Package
4766                     and then not In_Private_Part (Current_Scope)
4767                     and then not Is_Private_Descendant (Current_Scope)
4768                   then
4769                      Error_Msg_N ("private child unit& is not visible here",
4770                                   Selector);
4771
4772                   --  Normal case where we have a missing with for a child unit
4773
4774                   else
4775                      Error_Msg_Qual_Level := 99;
4776                      Error_Msg_NE -- CODEFIX
4777                        ("missing `WITH &;`", Selector, Candidate);
4778                      Error_Msg_Qual_Level := 0;
4779                   end if;
4780
4781                   --  Here we don't know that this is a child unit
4782
4783                else
4784                   Error_Msg_NE ("& is not a visible entity of&", N, Selector);
4785                end if;
4786
4787             else
4788                --  Within the instantiation of a child unit, the prefix may
4789                --  denote the parent instance, but the selector has the name
4790                --  of the original child. Find whether we are within the
4791                --  corresponding instance, and get the proper entity, which
4792                --  can only be an enclosing scope.
4793
4794                if O_Name /= P_Name
4795                  and then In_Open_Scopes (P_Name)
4796                  and then Is_Generic_Instance (P_Name)
4797                then
4798                   declare
4799                      S : Entity_Id := Current_Scope;
4800                      P : Entity_Id;
4801
4802                   begin
4803                      for J in reverse 0 .. Scope_Stack.Last loop
4804                         S := Scope_Stack.Table (J).Entity;
4805
4806                         exit when S = Standard_Standard;
4807
4808                         if Ekind_In (S, E_Function,
4809                                         E_Package,
4810                                         E_Procedure)
4811                         then
4812                            P := Generic_Parent (Specification
4813                                   (Unit_Declaration_Node (S)));
4814
4815                            if Present (P)
4816                              and then Chars (Scope (P)) = Chars (O_Name)
4817                              and then Chars (P) = Chars (Selector)
4818                            then
4819                               Id := S;
4820                               goto Found;
4821                            end if;
4822                         end if;
4823
4824                      end loop;
4825                   end;
4826                end if;
4827
4828                --  If this is a selection from Ada, System or Interfaces, then
4829                --  we assume a missing with for the corresponding package.
4830
4831                if Is_Known_Unit (N) then
4832                   if not Error_Posted (N) then
4833                      Error_Msg_Node_2 := Selector;
4834                      Error_Msg_N -- CODEFIX
4835                        ("missing `WITH &.&;`", Prefix (N));
4836                   end if;
4837
4838                --  If this is a selection from a dummy package, then suppress
4839                --  the error message, of course the entity is missing if the
4840                --  package is missing!
4841
4842                elsif Sloc (Error_Msg_Node_2) = No_Location then
4843                   null;
4844
4845                --  Here we have the case of an undefined component
4846
4847                else
4848
4849                   --  The prefix may hide a homonym in the context that
4850                   --  declares the desired entity. This error can use a
4851                   --  specialized message.
4852
4853                   if In_Open_Scopes (P_Name)
4854                     and then Present (Homonym (P_Name))
4855                     and then Is_Compilation_Unit (Homonym (P_Name))
4856                     and then
4857                      (Is_Immediately_Visible (Homonym (P_Name))
4858                         or else Is_Visible_Child_Unit (Homonym (P_Name)))
4859                   then
4860                      declare
4861                         H : constant Entity_Id := Homonym (P_Name);
4862
4863                      begin
4864                         Id := First_Entity (H);
4865                         while Present (Id) loop
4866                            if Chars (Id) = Chars (Selector) then
4867                               Error_Msg_Qual_Level := 99;
4868                               Error_Msg_Name_1 := Chars (Selector);
4869                               Error_Msg_NE
4870                                 ("% not declared in&", N, P_Name);
4871                               Error_Msg_NE
4872                                 ("\use fully qualified name starting with"
4873                                   & " Standard to make& visible", N, H);
4874                               Error_Msg_Qual_Level := 0;
4875                               goto Done;
4876                            end if;
4877
4878                            Next_Entity (Id);
4879                         end loop;
4880
4881                         --  If not found,  standard error message.
4882
4883                         Error_Msg_NE ("& not declared in&", N, Selector);
4884
4885                         <<Done>> null;
4886                      end;
4887
4888                   else
4889                      Error_Msg_NE ("& not declared in&", N, Selector);
4890                   end if;
4891
4892                   --  Check for misspelling of some entity in prefix
4893
4894                   Id := First_Entity (P_Name);
4895                   while Present (Id) loop
4896                      if Is_Bad_Spelling_Of (Chars (Id), Chars (Selector))
4897                        and then not Is_Internal_Name (Chars (Id))
4898                      then
4899                         Error_Msg_NE -- CODEFIX
4900                           ("possible misspelling of&", Selector, Id);
4901                         exit;
4902                      end if;
4903
4904                      Next_Entity (Id);
4905                   end loop;
4906
4907                   --  Specialize the message if this may be an instantiation
4908                   --  of a child unit that was not mentioned in the context.
4909
4910                   if Nkind (Parent (N)) = N_Package_Instantiation
4911                     and then Is_Generic_Instance (Entity (Prefix (N)))
4912                     and then Is_Compilation_Unit
4913                                (Generic_Parent (Parent (Entity (Prefix (N)))))
4914                   then
4915                      Error_Msg_Node_2 := Selector;
4916                      Error_Msg_N -- CODEFIX
4917                        ("\missing `WITH &.&;`", Prefix (N));
4918                   end if;
4919                end if;
4920             end if;
4921
4922             Id := Any_Id;
4923          end if;
4924       end if;
4925
4926       <<Found>>
4927       if Comes_From_Source (N)
4928         and then Is_Remote_Access_To_Subprogram_Type (Id)
4929         and then Present (Equivalent_Type (Id))
4930       then
4931          --  If we are not actually generating distribution code (i.e. the
4932          --  current PCS is the dummy non-distributed version), then the
4933          --  Equivalent_Type will be missing, and Id should be treated as
4934          --  a regular access-to-subprogram type.
4935
4936          Id := Equivalent_Type (Id);
4937          Set_Chars (Selector, Chars (Id));
4938       end if;
4939
4940       --  Ada 2005 (AI-50217): Check usage of entities in limited withed units
4941
4942       if Ekind (P_Name) = E_Package
4943         and then From_With_Type (P_Name)
4944       then
4945          if From_With_Type (Id)
4946            or else Is_Type (Id)
4947            or else Ekind (Id) = E_Package
4948          then
4949             null;
4950          else
4951             Error_Msg_N
4952               ("limited withed package can only be used to access "
4953                & "incomplete types",
4954                 N);
4955          end if;
4956       end if;
4957
4958       if Is_Task_Type (P_Name)
4959         and then ((Ekind (Id) = E_Entry
4960                      and then Nkind (Parent (N)) /= N_Attribute_Reference)
4961                    or else
4962                     (Ekind (Id) = E_Entry_Family
4963                       and then
4964                         Nkind (Parent (Parent (N))) /= N_Attribute_Reference))
4965       then
4966          --  It is an entry call after all, either to the current task (which
4967          --  will deadlock) or to an enclosing task.
4968
4969          Analyze_Selected_Component (N);
4970          return;
4971       end if;
4972
4973       Change_Selected_Component_To_Expanded_Name (N);
4974
4975       --  Do style check and generate reference, but skip both steps if this
4976       --  entity has homonyms, since we may not have the right homonym set yet.
4977       --  The proper homonym will be set during the resolve phase.
4978
4979       if Has_Homonym (Id) then
4980          Set_Entity (N, Id);
4981       else
4982          Set_Entity_Or_Discriminal (N, Id);
4983          Generate_Reference (Id, N);
4984       end if;
4985
4986       if Is_Type (Id) then
4987          Set_Etype (N, Id);
4988       else
4989          Set_Etype (N, Get_Full_View (Etype (Id)));
4990       end if;
4991
4992       --  Check for violation of No_Wide_Characters
4993
4994       Check_Wide_Character_Restriction (Id, N);
4995
4996       --  If the Ekind of the entity is Void, it means that all homonyms are
4997       --  hidden from all visibility (RM 8.3(5,14-20)).
4998
4999       if Ekind (Id) = E_Void then
5000          Premature_Usage (N);
5001
5002       elsif Is_Overloadable (Id)
5003         and then Present (Homonym (Id))
5004       then
5005          declare
5006             H : Entity_Id := Homonym (Id);
5007
5008          begin
5009             while Present (H) loop
5010                if Scope (H) = Scope (Id)
5011                  and then
5012                    (not Is_Hidden (H)
5013                       or else Is_Immediately_Visible (H))
5014                then
5015                   Collect_Interps (N);
5016                   exit;
5017                end if;
5018
5019                H := Homonym (H);
5020             end loop;
5021
5022             --  If an extension of System is present, collect possible explicit
5023             --  overloadings declared in the extension.
5024
5025             if Chars (P_Name) = Name_System
5026               and then Scope (P_Name) = Standard_Standard
5027               and then Present (System_Extend_Unit)
5028               and then Present_System_Aux (N)
5029             then
5030                H := Current_Entity (Id);
5031
5032                while Present (H) loop
5033                   if Scope (H) = System_Aux_Id then
5034                      Add_One_Interp (N, H, Etype (H));
5035                   end if;
5036
5037                   H := Homonym (H);
5038                end loop;
5039             end if;
5040          end;
5041       end if;
5042
5043       if Nkind (Selector_Name (N)) = N_Operator_Symbol
5044         and then Scope (Id) /= Standard_Standard
5045       then
5046          --  In addition to user-defined operators in the given scope, there
5047          --  may be an implicit instance of the predefined operator. The
5048          --  operator (defined in Standard) is found in Has_Implicit_Operator,
5049          --  and added to the interpretations. Procedure Add_One_Interp will
5050          --  determine which hides which.
5051
5052          if Has_Implicit_Operator (N) then
5053             null;
5054          end if;
5055       end if;
5056    end Find_Expanded_Name;
5057
5058    -------------------------
5059    -- Find_Renamed_Entity --
5060    -------------------------
5061
5062    function Find_Renamed_Entity
5063      (N         : Node_Id;
5064       Nam       : Node_Id;
5065       New_S     : Entity_Id;
5066       Is_Actual : Boolean := False) return Entity_Id
5067    is
5068       Ind   : Interp_Index;
5069       I1    : Interp_Index := 0; -- Suppress junk warnings
5070       It    : Interp;
5071       It1   : Interp;
5072       Old_S : Entity_Id;
5073       Inst  : Entity_Id;
5074
5075       function Enclosing_Instance return Entity_Id;
5076       --  If the renaming determines the entity for the default of a formal
5077       --  subprogram nested within another instance, choose the innermost
5078       --  candidate. This is because if the formal has a box, and we are within
5079       --  an enclosing instance where some candidate interpretations are local
5080       --  to this enclosing instance, we know that the default was properly
5081       --  resolved when analyzing the generic, so we prefer the local
5082       --  candidates to those that are external. This is not always the case
5083       --  but is a reasonable heuristic on the use of nested generics. The
5084       --  proper solution requires a full renaming model.
5085
5086       function Is_Visible_Operation (Op : Entity_Id) return Boolean;
5087       --  If the renamed entity is an implicit operator, check whether it is
5088       --  visible because its operand type is properly visible. This check
5089       --  applies to explicit renamed entities that appear in the source in a
5090       --  renaming declaration or a formal subprogram instance, but not to
5091       --  default generic actuals with a name.
5092
5093       function Report_Overload return Entity_Id;
5094       --  List possible interpretations, and specialize message in the
5095       --  case of a generic actual.
5096
5097       function Within (Inner, Outer : Entity_Id) return Boolean;
5098       --  Determine whether a candidate subprogram is defined within the
5099       --  enclosing instance. If yes, it has precedence over outer candidates.
5100
5101       ------------------------
5102       -- Enclosing_Instance --
5103       ------------------------
5104
5105       function Enclosing_Instance return Entity_Id is
5106          S : Entity_Id;
5107
5108       begin
5109          if not Is_Generic_Instance (Current_Scope)
5110            and then not Is_Actual
5111          then
5112             return Empty;
5113          end if;
5114
5115          S := Scope (Current_Scope);
5116          while S /= Standard_Standard loop
5117             if Is_Generic_Instance (S) then
5118                return S;
5119             end if;
5120
5121             S := Scope (S);
5122          end loop;
5123
5124          return Empty;
5125       end Enclosing_Instance;
5126
5127       --------------------------
5128       -- Is_Visible_Operation --
5129       --------------------------
5130
5131       function Is_Visible_Operation (Op : Entity_Id) return Boolean is
5132          Scop : Entity_Id;
5133          Typ  : Entity_Id;
5134          Btyp : Entity_Id;
5135
5136       begin
5137          if Ekind (Op) /= E_Operator
5138            or else Scope (Op) /= Standard_Standard
5139            or else (In_Instance
5140                       and then
5141                         (not Is_Actual
5142                            or else Present (Enclosing_Instance)))
5143          then
5144             return True;
5145
5146          else
5147             --  For a fixed point type operator, check the resulting type,
5148             --  because it may be a mixed mode integer * fixed operation.
5149
5150             if Present (Next_Formal (First_Formal (New_S)))
5151               and then Is_Fixed_Point_Type (Etype (New_S))
5152             then
5153                Typ := Etype (New_S);
5154             else
5155                Typ := Etype (First_Formal (New_S));
5156             end if;
5157
5158             Btyp := Base_Type (Typ);
5159
5160             if Nkind (Nam) /= N_Expanded_Name then
5161                return (In_Open_Scopes (Scope (Btyp))
5162                         or else Is_Potentially_Use_Visible (Btyp)
5163                         or else In_Use (Btyp)
5164                         or else In_Use (Scope (Btyp)));
5165
5166             else
5167                Scop := Entity (Prefix (Nam));
5168
5169                if Ekind (Scop) = E_Package
5170                  and then Present (Renamed_Object (Scop))
5171                then
5172                   Scop := Renamed_Object (Scop);
5173                end if;
5174
5175                --  Operator is visible if prefix of expanded name denotes
5176                --  scope of type, or else type is defined in System_Aux
5177                --  and the prefix denotes System.
5178
5179                return Scope (Btyp) = Scop
5180                  or else (Scope (Btyp) = System_Aux_Id
5181                            and then Scope (Scope (Btyp)) = Scop);
5182             end if;
5183          end if;
5184       end Is_Visible_Operation;
5185
5186       ------------
5187       -- Within --
5188       ------------
5189
5190       function Within (Inner, Outer : Entity_Id) return Boolean is
5191          Sc : Entity_Id;
5192
5193       begin
5194          Sc := Scope (Inner);
5195          while Sc /= Standard_Standard loop
5196             if Sc = Outer then
5197                return True;
5198             else
5199                Sc := Scope (Sc);
5200             end if;
5201          end loop;
5202
5203          return False;
5204       end Within;
5205
5206       ---------------------
5207       -- Report_Overload --
5208       ---------------------
5209
5210       function Report_Overload return Entity_Id is
5211       begin
5212          if Is_Actual then
5213             Error_Msg_NE -- CODEFIX
5214               ("ambiguous actual subprogram&, " &
5215                  "possible interpretations:", N, Nam);
5216          else
5217             Error_Msg_N -- CODEFIX
5218               ("ambiguous subprogram, " &
5219                  "possible interpretations:", N);
5220          end if;
5221
5222          List_Interps (Nam, N);
5223          return Old_S;
5224       end Report_Overload;
5225
5226    --  Start of processing for Find_Renamed_Entry
5227
5228    begin
5229       Old_S := Any_Id;
5230       Candidate_Renaming := Empty;
5231
5232       if not Is_Overloaded (Nam) then
5233          if Entity_Matches_Spec (Entity (Nam), New_S) then
5234             Candidate_Renaming := New_S;
5235
5236             if Is_Visible_Operation (Entity (Nam)) then
5237                Old_S := Entity (Nam);
5238             end if;
5239
5240          elsif
5241            Present (First_Formal (Entity (Nam)))
5242              and then Present (First_Formal (New_S))
5243              and then (Base_Type (Etype (First_Formal (Entity (Nam))))
5244                         = Base_Type (Etype (First_Formal (New_S))))
5245          then
5246             Candidate_Renaming := Entity (Nam);
5247          end if;
5248
5249       else
5250          Get_First_Interp (Nam, Ind, It);
5251          while Present (It.Nam) loop
5252             if Entity_Matches_Spec (It.Nam, New_S)
5253                and then Is_Visible_Operation (It.Nam)
5254             then
5255                if Old_S /= Any_Id then
5256
5257                   --  Note: The call to Disambiguate only happens if a
5258                   --  previous interpretation was found, in which case I1
5259                   --  has received a value.
5260
5261                   It1 := Disambiguate (Nam, I1, Ind, Etype (Old_S));
5262
5263                   if It1 = No_Interp then
5264                      Inst := Enclosing_Instance;
5265
5266                      if Present (Inst) then
5267                         if Within (It.Nam, Inst) then
5268                            return (It.Nam);
5269                         elsif Within (Old_S, Inst) then
5270                            return (Old_S);
5271                         else
5272                            return Report_Overload;
5273                         end if;
5274
5275                      else
5276                         return Report_Overload;
5277                      end if;
5278
5279                   else
5280                      Old_S := It1.Nam;
5281                      exit;
5282                   end if;
5283
5284                else
5285                   I1 := Ind;
5286                   Old_S := It.Nam;
5287                end if;
5288
5289             elsif
5290               Present (First_Formal (It.Nam))
5291                 and then Present (First_Formal (New_S))
5292                 and then  (Base_Type (Etype (First_Formal (It.Nam)))
5293                             = Base_Type (Etype (First_Formal (New_S))))
5294             then
5295                Candidate_Renaming := It.Nam;
5296             end if;
5297
5298             Get_Next_Interp (Ind, It);
5299          end loop;
5300
5301          Set_Entity (Nam, Old_S);
5302          Set_Is_Overloaded (Nam, False);
5303       end if;
5304
5305       return Old_S;
5306    end Find_Renamed_Entity;
5307
5308    -----------------------------
5309    -- Find_Selected_Component --
5310    -----------------------------
5311
5312    procedure Find_Selected_Component (N : Node_Id) is
5313       P : constant Node_Id := Prefix (N);
5314
5315       P_Name : Entity_Id;
5316       --  Entity denoted by prefix
5317
5318       P_Type : Entity_Id;
5319       --  and its type
5320
5321       Nam : Node_Id;
5322
5323    begin
5324       Analyze (P);
5325
5326       if Nkind (P) = N_Error then
5327          return;
5328
5329       --  If the selector already has an entity, the node has been constructed
5330       --  in the course of expansion, and is known to be valid. Do not verify
5331       --  that it is defined for the type (it may be a private component used
5332       --  in the expansion of record equality).
5333
5334       elsif Present (Entity (Selector_Name (N))) then
5335          if No (Etype (N))
5336            or else Etype (N) = Any_Type
5337          then
5338             declare
5339                Sel_Name : constant Node_Id   := Selector_Name (N);
5340                Selector : constant Entity_Id := Entity (Sel_Name);
5341                C_Etype  : Node_Id;
5342
5343             begin
5344                Set_Etype (Sel_Name, Etype (Selector));
5345
5346                if not Is_Entity_Name (P) then
5347                   Resolve (P);
5348                end if;
5349
5350                --  Build an actual subtype except for the first parameter
5351                --  of an init proc, where this actual subtype is by
5352                --  definition incorrect, since the object is uninitialized
5353                --  (and does not even have defined discriminants etc.)
5354
5355                if Is_Entity_Name (P)
5356                  and then Ekind (Entity (P)) = E_Function
5357                then
5358                   Nam := New_Copy (P);
5359
5360                   if Is_Overloaded (P) then
5361                      Save_Interps (P, Nam);
5362                   end if;
5363
5364                   Rewrite (P,
5365                     Make_Function_Call (Sloc (P), Name => Nam));
5366                   Analyze_Call (P);
5367                   Analyze_Selected_Component (N);
5368                   return;
5369
5370                elsif Ekind (Selector) = E_Component
5371                  and then (not Is_Entity_Name (P)
5372                             or else Chars (Entity (P)) /= Name_uInit)
5373                then
5374                   --  Do not build the subtype when referencing components of
5375                   --  dispatch table wrappers. Required to avoid generating
5376                   --  elaboration code with HI runtimes.
5377
5378                   if RTU_Loaded (Ada_Tags)
5379                     and then RTE_Available (RE_Dispatch_Table_Wrapper)
5380                     and then Scope (Selector) = RTE (RE_Dispatch_Table_Wrapper)
5381                   then
5382                      C_Etype := Empty;
5383
5384                   elsif RTU_Loaded (Ada_Tags)
5385                     and then RTE_Available (RE_No_Dispatch_Table_Wrapper)
5386                     and then Scope (Selector)
5387                                = RTE (RE_No_Dispatch_Table_Wrapper)
5388                   then
5389                      C_Etype := Empty;
5390
5391                   else
5392                      C_Etype :=
5393                        Build_Actual_Subtype_Of_Component (
5394                          Etype (Selector), N);
5395                   end if;
5396
5397                else
5398                   C_Etype := Empty;
5399                end if;
5400
5401                if No (C_Etype) then
5402                   C_Etype := Etype (Selector);
5403                else
5404                   Insert_Action (N, C_Etype);
5405                   C_Etype := Defining_Identifier (C_Etype);
5406                end if;
5407
5408                Set_Etype (N, C_Etype);
5409             end;
5410
5411             --  If this is the name of an entry or protected operation, and
5412             --  the prefix is an access type, insert an explicit dereference,
5413             --  so that entry calls are treated uniformly.
5414
5415             if Is_Access_Type (Etype (P))
5416               and then Is_Concurrent_Type (Designated_Type (Etype (P)))
5417             then
5418                declare
5419                   New_P : constant Node_Id :=
5420                             Make_Explicit_Dereference (Sloc (P),
5421                               Prefix => Relocate_Node (P));
5422                begin
5423                   Rewrite (P, New_P);
5424                   Set_Etype (P, Designated_Type (Etype (Prefix (P))));
5425                end;
5426             end if;
5427
5428          --  If the selected component appears within a default expression
5429          --  and it has an actual subtype, the pre-analysis has not yet
5430          --  completed its analysis, because Insert_Actions is disabled in
5431          --  that context. Within the init proc of the enclosing type we
5432          --  must complete this analysis, if an actual subtype was created.
5433
5434          elsif Inside_Init_Proc then
5435             declare
5436                Typ  : constant Entity_Id := Etype (N);
5437                Decl : constant Node_Id   := Declaration_Node (Typ);
5438             begin
5439                if Nkind (Decl) = N_Subtype_Declaration
5440                  and then not Analyzed (Decl)
5441                  and then Is_List_Member (Decl)
5442                  and then No (Parent (Decl))
5443                then
5444                   Remove (Decl);
5445                   Insert_Action (N, Decl);
5446                end if;
5447             end;
5448          end if;
5449
5450          return;
5451
5452       elsif Is_Entity_Name (P) then
5453          P_Name := Entity (P);
5454
5455          --  The prefix may denote an enclosing type which is the completion
5456          --  of an incomplete type declaration.
5457
5458          if Is_Type (P_Name) then
5459             Set_Entity (P, Get_Full_View (P_Name));
5460             Set_Etype  (P, Entity (P));
5461             P_Name := Entity (P);
5462          end if;
5463
5464          P_Type := Base_Type (Etype (P));
5465
5466          if Debug_Flag_E then
5467             Write_Str ("Found prefix type to be ");
5468             Write_Entity_Info (P_Type, "      "); Write_Eol;
5469          end if;
5470
5471          --  First check for components of a record object (not the
5472          --  result of a call, which is handled below).
5473
5474          if Is_Appropriate_For_Record (P_Type)
5475            and then not Is_Overloadable (P_Name)
5476            and then not Is_Type (P_Name)
5477          then
5478             --  Selected component of record. Type checking will validate
5479             --  name of selector.
5480             --  ??? could we rewrite an implicit dereference into an explicit
5481             --  one here?
5482
5483             Analyze_Selected_Component (N);
5484
5485          --  Reference to type name in predicate/invariant expression
5486
5487          elsif Is_Appropriate_For_Entry_Prefix (P_Type)
5488            and then not In_Open_Scopes (P_Name)
5489            and then (not Is_Concurrent_Type (Etype (P_Name))
5490                        or else not In_Open_Scopes (Etype (P_Name)))
5491          then
5492             --  Call to protected operation or entry. Type checking is
5493             --  needed on the prefix.
5494
5495             Analyze_Selected_Component (N);
5496
5497          elsif (In_Open_Scopes (P_Name)
5498                  and then Ekind (P_Name) /= E_Void
5499                  and then not Is_Overloadable (P_Name))
5500            or else (Is_Concurrent_Type (Etype (P_Name))
5501                      and then In_Open_Scopes (Etype (P_Name)))
5502          then
5503             --  Prefix denotes an enclosing loop, block, or task, i.e. an
5504             --  enclosing construct that is not a subprogram or accept.
5505
5506             Find_Expanded_Name (N);
5507
5508          elsif Ekind (P_Name) = E_Package then
5509             Find_Expanded_Name (N);
5510
5511          elsif Is_Overloadable (P_Name) then
5512
5513             --  The subprogram may be a renaming (of an enclosing scope) as
5514             --  in the case of the name of the generic within an instantiation.
5515
5516             if Ekind_In (P_Name, E_Procedure, E_Function)
5517               and then Present (Alias (P_Name))
5518               and then Is_Generic_Instance (Alias (P_Name))
5519             then
5520                P_Name := Alias (P_Name);
5521             end if;
5522
5523             if Is_Overloaded (P) then
5524
5525                --  The prefix must resolve to a unique enclosing construct
5526
5527                declare
5528                   Found : Boolean := False;
5529                   Ind   : Interp_Index;
5530                   It    : Interp;
5531
5532                begin
5533                   Get_First_Interp (P, Ind, It);
5534                   while Present (It.Nam) loop
5535                      if In_Open_Scopes (It.Nam) then
5536                         if Found then
5537                            Error_Msg_N (
5538                               "prefix must be unique enclosing scope", N);
5539                            Set_Entity (N, Any_Id);
5540                            Set_Etype  (N, Any_Type);
5541                            return;
5542
5543                         else
5544                            Found := True;
5545                            P_Name := It.Nam;
5546                         end if;
5547                      end if;
5548
5549                      Get_Next_Interp (Ind, It);
5550                   end loop;
5551                end;
5552             end if;
5553
5554             if In_Open_Scopes (P_Name) then
5555                Set_Entity (P, P_Name);
5556                Set_Is_Overloaded (P, False);
5557                Find_Expanded_Name (N);
5558
5559             else
5560                --  If no interpretation as an expanded name is possible, it
5561                --  must be a selected component of a record returned by a
5562                --  function call. Reformat prefix as a function call, the rest
5563                --  is done by type resolution. If the prefix is procedure or
5564                --  entry, as is P.X; this is an error.
5565
5566                if Ekind (P_Name) /= E_Function
5567                  and then (not Is_Overloaded (P)
5568                              or else
5569                            Nkind (Parent (N)) = N_Procedure_Call_Statement)
5570                then
5571                   --  Prefix may mention a package that is hidden by a local
5572                   --  declaration: let the user know. Scan the full homonym
5573                   --  chain, the candidate package may be anywhere on it.
5574
5575                   if Present (Homonym (Current_Entity (P_Name))) then
5576
5577                      P_Name := Current_Entity (P_Name);
5578
5579                      while Present (P_Name) loop
5580                         exit when Ekind (P_Name) = E_Package;
5581                         P_Name := Homonym (P_Name);
5582                      end loop;
5583
5584                      if Present (P_Name) then
5585                         Error_Msg_Sloc := Sloc (Entity (Prefix (N)));
5586
5587                         Error_Msg_NE
5588                           ("package& is hidden by declaration#",
5589                             N, P_Name);
5590
5591                         Set_Entity (Prefix (N), P_Name);
5592                         Find_Expanded_Name (N);
5593                         return;
5594                      else
5595                         P_Name := Entity (Prefix (N));
5596                      end if;
5597                   end if;
5598
5599                   Error_Msg_NE
5600                     ("invalid prefix in selected component&", N, P_Name);
5601                   Change_Selected_Component_To_Expanded_Name (N);
5602                   Set_Entity (N, Any_Id);
5603                   Set_Etype (N, Any_Type);
5604
5605                else
5606                   Nam := New_Copy (P);
5607                   Save_Interps (P, Nam);
5608                   Rewrite (P,
5609                     Make_Function_Call (Sloc (P), Name => Nam));
5610                   Analyze_Call (P);
5611                   Analyze_Selected_Component (N);
5612                end if;
5613             end if;
5614
5615          --  Remaining cases generate various error messages
5616
5617          else
5618             --  Format node as expanded name, to avoid cascaded errors
5619
5620             Change_Selected_Component_To_Expanded_Name (N);
5621             Set_Entity  (N, Any_Id);
5622             Set_Etype   (N, Any_Type);
5623
5624             --  Issue error message, but avoid this if error issued already.
5625             --  Use identifier of prefix if one is available.
5626
5627             if P_Name = Any_Id  then
5628                null;
5629
5630             elsif Ekind (P_Name) = E_Void then
5631                Premature_Usage (P);
5632
5633             elsif Nkind (P) /= N_Attribute_Reference then
5634                Error_Msg_N (
5635                 "invalid prefix in selected component&", P);
5636
5637                if Is_Access_Type (P_Type)
5638                  and then Ekind (Designated_Type (P_Type)) = E_Incomplete_Type
5639                then
5640                   Error_Msg_N
5641                     ("\dereference must not be of an incomplete type " &
5642                        "(RM 3.10.1)", P);
5643                end if;
5644
5645             else
5646                Error_Msg_N (
5647                 "invalid prefix in selected component", P);
5648             end if;
5649          end if;
5650
5651       else
5652          --  If prefix is not the name of an entity, it must be an expression,
5653          --  whose type is appropriate for a record. This is determined by
5654          --  type resolution.
5655
5656          Analyze_Selected_Component (N);
5657       end if;
5658    end Find_Selected_Component;
5659
5660    ---------------
5661    -- Find_Type --
5662    ---------------
5663
5664    procedure Find_Type (N : Node_Id) is
5665       C      : Entity_Id;
5666       Typ    : Entity_Id;
5667       T      : Entity_Id;
5668       T_Name : Entity_Id;
5669
5670    begin
5671       if N = Error then
5672          return;
5673
5674       elsif Nkind (N) = N_Attribute_Reference then
5675
5676          --  Class attribute. This is not valid in Ada 83 mode, but we do not
5677          --  need to enforce that at this point, since the declaration of the
5678          --  tagged type in the prefix would have been flagged already.
5679
5680          if Attribute_Name (N) = Name_Class then
5681             Check_Restriction (No_Dispatch, N);
5682             Find_Type (Prefix (N));
5683
5684             --  Propagate error from bad prefix
5685
5686             if Etype (Prefix (N)) = Any_Type then
5687                Set_Entity (N, Any_Type);
5688                Set_Etype  (N, Any_Type);
5689                return;
5690             end if;
5691
5692             T := Base_Type (Entity (Prefix (N)));
5693
5694             --  Case where type is not known to be tagged. Its appearance in
5695             --  the prefix of the 'Class attribute indicates that the full view
5696             --  will be tagged.
5697
5698             if not Is_Tagged_Type (T) then
5699                if Ekind (T) = E_Incomplete_Type then
5700
5701                   --  It is legal to denote the class type of an incomplete
5702                   --  type. The full type will have to be tagged, of course.
5703                   --  In Ada 2005 this usage is declared obsolescent, so we
5704                   --  warn accordingly. This usage is only legal if the type
5705                   --  is completed in the current scope, and not for a limited
5706                   --  view of a type.
5707
5708                   if not Is_Tagged_Type (T)
5709                     and then Ada_Version >= Ada_2005
5710                   then
5711                      if From_With_Type (T) then
5712                         Error_Msg_N
5713                           ("prefix of Class attribute must be tagged", N);
5714                         Set_Etype (N, Any_Type);
5715                         Set_Entity (N, Any_Type);
5716                         return;
5717
5718                   --  ??? This test is temporarily disabled (always False)
5719                   --  because it causes an unwanted warning on GNAT sources
5720                   --  (built with -gnatg, which includes Warn_On_Obsolescent_
5721                   --  Feature). Once this issue is cleared in the sources, it
5722                   --  can be enabled.
5723
5724                      elsif Warn_On_Obsolescent_Feature
5725                        and then False
5726                      then
5727                         Error_Msg_N
5728                           ("applying 'Class to an untagged incomplete type"
5729                            & " is an obsolescent feature  (RM J.11)", N);
5730                      end if;
5731                   end if;
5732
5733                   Set_Is_Tagged_Type (T);
5734                   Set_Direct_Primitive_Operations (T, New_Elmt_List);
5735                   Make_Class_Wide_Type (T);
5736                   Set_Entity (N, Class_Wide_Type (T));
5737                   Set_Etype  (N, Class_Wide_Type (T));
5738
5739                elsif Ekind (T) = E_Private_Type
5740                  and then not Is_Generic_Type (T)
5741                  and then In_Private_Part (Scope (T))
5742                then
5743                   --  The Class attribute can be applied to an untagged private
5744                   --  type fulfilled by a tagged type prior to the full type
5745                   --  declaration (but only within the parent package's private
5746                   --  part). Create the class-wide type now and check that the
5747                   --  full type is tagged later during its analysis. Note that
5748                   --  we do not mark the private type as tagged, unlike the
5749                   --  case of incomplete types, because the type must still
5750                   --  appear untagged to outside units.
5751
5752                   if No (Class_Wide_Type (T)) then
5753                      Make_Class_Wide_Type (T);
5754                   end if;
5755
5756                   Set_Entity (N, Class_Wide_Type (T));
5757                   Set_Etype  (N, Class_Wide_Type (T));
5758
5759                else
5760                   --  Should we introduce a type Any_Tagged and use Wrong_Type
5761                   --  here, it would be a bit more consistent???
5762
5763                   Error_Msg_NE
5764                     ("tagged type required, found}",
5765                      Prefix (N), First_Subtype (T));
5766                   Set_Entity (N, Any_Type);
5767                   return;
5768                end if;
5769
5770             --  Case of tagged type
5771
5772             else
5773                if Is_Concurrent_Type (T) then
5774                   if No (Corresponding_Record_Type (Entity (Prefix (N)))) then
5775
5776                      --  Previous error. Use current type, which at least
5777                      --  provides some operations.
5778
5779                      C := Entity (Prefix (N));
5780
5781                   else
5782                      C := Class_Wide_Type
5783                             (Corresponding_Record_Type (Entity (Prefix (N))));
5784                   end if;
5785
5786                else
5787                   C := Class_Wide_Type (Entity (Prefix (N)));
5788                end if;
5789
5790                Set_Entity_With_Style_Check (N, C);
5791                Generate_Reference (C, N);
5792                Set_Etype (N, C);
5793             end if;
5794
5795          --  Base attribute, not allowed in Ada 83
5796
5797          elsif Attribute_Name (N) = Name_Base then
5798             if Ada_Version = Ada_83 and then Comes_From_Source (N) then
5799                Error_Msg_N
5800                  ("(Ada 83) Base attribute not allowed in subtype mark", N);
5801
5802             else
5803                Find_Type (Prefix (N));
5804                Typ := Entity (Prefix (N));
5805
5806                if Ada_Version >= Ada_95
5807                  and then not Is_Scalar_Type (Typ)
5808                  and then not Is_Generic_Type (Typ)
5809                then
5810                   Error_Msg_N
5811                     ("prefix of Base attribute must be scalar type",
5812                       Prefix (N));
5813
5814                elsif Warn_On_Redundant_Constructs
5815                  and then Base_Type (Typ) = Typ
5816                then
5817                   Error_Msg_NE -- CODEFIX
5818                     ("?redundant attribute, & is its own base type", N, Typ);
5819                end if;
5820
5821                T := Base_Type (Typ);
5822
5823                --  Rewrite attribute reference with type itself (see similar
5824                --  processing in Analyze_Attribute, case Base). Preserve prefix
5825                --  if present, for other legality checks.
5826
5827                if Nkind (Prefix (N)) = N_Expanded_Name then
5828                   Rewrite (N,
5829                      Make_Expanded_Name (Sloc (N),
5830                        Chars         => Chars (T),
5831                        Prefix        => New_Copy (Prefix (Prefix (N))),
5832                        Selector_Name => New_Reference_To (T, Sloc (N))));
5833
5834                else
5835                   Rewrite (N, New_Reference_To (T, Sloc (N)));
5836                end if;
5837
5838                Set_Entity (N, T);
5839                Set_Etype (N, T);
5840             end if;
5841
5842          elsif Attribute_Name (N) = Name_Stub_Type then
5843
5844             --  This is handled in Analyze_Attribute
5845
5846             Analyze (N);
5847
5848          --  All other attributes are invalid in a subtype mark
5849
5850          else
5851             Error_Msg_N ("invalid attribute in subtype mark", N);
5852          end if;
5853
5854       else
5855          Analyze (N);
5856
5857          if Is_Entity_Name (N) then
5858             T_Name := Entity (N);
5859          else
5860             Error_Msg_N ("subtype mark required in this context", N);
5861             Set_Etype (N, Any_Type);
5862             return;
5863          end if;
5864
5865          if T_Name  = Any_Id or else Etype (N) = Any_Type then
5866
5867             --  Undefined id. Make it into a valid type
5868
5869             Set_Entity (N, Any_Type);
5870
5871          elsif not Is_Type (T_Name)
5872            and then T_Name /= Standard_Void_Type
5873          then
5874             Error_Msg_Sloc := Sloc (T_Name);
5875             Error_Msg_N ("subtype mark required in this context", N);
5876             Error_Msg_NE ("\\found & declared#", N, T_Name);
5877             Set_Entity (N, Any_Type);
5878
5879          else
5880             --  If the type is an incomplete type created to handle
5881             --  anonymous access components of a record type, then the
5882             --  incomplete type is the visible entity and subsequent
5883             --  references will point to it. Mark the original full
5884             --  type as referenced, to prevent spurious warnings.
5885
5886             if Is_Incomplete_Type (T_Name)
5887               and then Present (Full_View (T_Name))
5888               and then not Comes_From_Source (T_Name)
5889             then
5890                Set_Referenced (Full_View (T_Name));
5891             end if;
5892
5893             T_Name := Get_Full_View (T_Name);
5894
5895             --  Ada 2005 (AI-251, AI-50217): Handle interfaces visible through
5896             --  limited-with clauses
5897
5898             if From_With_Type (T_Name)
5899               and then Ekind (T_Name) in Incomplete_Kind
5900               and then Present (Non_Limited_View (T_Name))
5901               and then Is_Interface (Non_Limited_View (T_Name))
5902             then
5903                T_Name := Non_Limited_View (T_Name);
5904             end if;
5905
5906             if In_Open_Scopes (T_Name) then
5907                if Ekind (Base_Type (T_Name)) = E_Task_Type then
5908
5909                   --  In Ada 2005, a task name can be used in an access
5910                   --  definition within its own body. It cannot be used
5911                   --  in the discriminant part of the task declaration,
5912                   --  nor anywhere else in the declaration because entries
5913                   --  cannot have access parameters.
5914
5915                   if Ada_Version >= Ada_2005
5916                     and then Nkind (Parent (N)) = N_Access_Definition
5917                   then
5918                      Set_Entity (N, T_Name);
5919                      Set_Etype  (N, T_Name);
5920
5921                      if Has_Completion (T_Name) then
5922                         return;
5923
5924                      else
5925                         Error_Msg_N
5926                           ("task type cannot be used as type mark " &
5927                            "within its own declaration", N);
5928                      end if;
5929
5930                   else
5931                      Error_Msg_N
5932                        ("task type cannot be used as type mark " &
5933                         "within its own spec or body", N);
5934                   end if;
5935
5936                elsif Ekind (Base_Type (T_Name)) = E_Protected_Type then
5937
5938                   --  In Ada 2005, a protected name can be used in an access
5939                   --  definition within its own body.
5940
5941                   if Ada_Version >= Ada_2005
5942                     and then Nkind (Parent (N)) = N_Access_Definition
5943                   then
5944                      Set_Entity (N, T_Name);
5945                      Set_Etype  (N, T_Name);
5946                      return;
5947
5948                   else
5949                      Error_Msg_N
5950                        ("protected type cannot be used as type mark " &
5951                         "within its own spec or body", N);
5952                   end if;
5953
5954                else
5955                   Error_Msg_N ("type declaration cannot refer to itself", N);
5956                end if;
5957
5958                Set_Etype (N, Any_Type);
5959                Set_Entity (N, Any_Type);
5960                Set_Error_Posted (T_Name);
5961                return;
5962             end if;
5963
5964             Set_Entity (N, T_Name);
5965             Set_Etype  (N, T_Name);
5966          end if;
5967       end if;
5968
5969       if Present (Etype (N)) and then Comes_From_Source (N) then
5970          if Is_Fixed_Point_Type (Etype (N)) then
5971             Check_Restriction (No_Fixed_Point, N);
5972          elsif Is_Floating_Point_Type (Etype (N)) then
5973             Check_Restriction (No_Floating_Point, N);
5974          end if;
5975       end if;
5976    end Find_Type;
5977
5978    ------------------------------------
5979    -- Has_Implicit_Character_Literal --
5980    ------------------------------------
5981
5982    function Has_Implicit_Character_Literal (N : Node_Id) return Boolean is
5983       Id      : Entity_Id;
5984       Found   : Boolean := False;
5985       P       : constant Entity_Id := Entity (Prefix (N));
5986       Priv_Id : Entity_Id := Empty;
5987
5988    begin
5989       if Ekind (P) = E_Package
5990         and then not In_Open_Scopes (P)
5991       then
5992          Priv_Id := First_Private_Entity (P);
5993       end if;
5994
5995       if P = Standard_Standard then
5996          Change_Selected_Component_To_Expanded_Name (N);
5997          Rewrite (N, Selector_Name (N));
5998          Analyze (N);
5999          Set_Etype (Original_Node (N), Standard_Character);
6000          return True;
6001       end if;
6002
6003       Id := First_Entity (P);
6004       while Present (Id)
6005         and then Id /= Priv_Id
6006       loop
6007          if Is_Standard_Character_Type (Id) and then Is_Base_Type (Id) then
6008
6009             --  We replace the node with the literal itself, resolve as a
6010             --  character, and set the type correctly.
6011
6012             if not Found then
6013                Change_Selected_Component_To_Expanded_Name (N);
6014                Rewrite (N, Selector_Name (N));
6015                Analyze (N);
6016                Set_Etype (N, Id);
6017                Set_Etype (Original_Node (N), Id);
6018                Found := True;
6019
6020             else
6021                --  More than one type derived from Character in given scope.
6022                --  Collect all possible interpretations.
6023
6024                Add_One_Interp (N, Id, Id);
6025             end if;
6026          end if;
6027
6028          Next_Entity (Id);
6029       end loop;
6030
6031       return Found;
6032    end Has_Implicit_Character_Literal;
6033
6034    ----------------------
6035    -- Has_Private_With --
6036    ----------------------
6037
6038    function Has_Private_With (E : Entity_Id) return Boolean is
6039       Comp_Unit : constant Node_Id := Cunit (Current_Sem_Unit);
6040       Item      : Node_Id;
6041
6042    begin
6043       Item := First (Context_Items (Comp_Unit));
6044       while Present (Item) loop
6045          if Nkind (Item) = N_With_Clause
6046            and then Private_Present (Item)
6047            and then Entity (Name (Item)) = E
6048          then
6049             return True;
6050          end if;
6051
6052          Next (Item);
6053       end loop;
6054
6055       return False;
6056    end Has_Private_With;
6057
6058    ---------------------------
6059    -- Has_Implicit_Operator --
6060    ---------------------------
6061
6062    function Has_Implicit_Operator (N : Node_Id) return Boolean is
6063       Op_Id   : constant Name_Id   := Chars (Selector_Name (N));
6064       P       : constant Entity_Id := Entity (Prefix (N));
6065       Id      : Entity_Id;
6066       Priv_Id : Entity_Id := Empty;
6067
6068       procedure Add_Implicit_Operator
6069         (T       : Entity_Id;
6070          Op_Type : Entity_Id := Empty);
6071       --  Add implicit interpretation to node N, using the type for which a
6072       --  predefined operator exists. If the operator yields a boolean type,
6073       --  the Operand_Type is implicitly referenced by the operator, and a
6074       --  reference to it must be generated.
6075
6076       ---------------------------
6077       -- Add_Implicit_Operator --
6078       ---------------------------
6079
6080       procedure Add_Implicit_Operator
6081         (T       : Entity_Id;
6082          Op_Type : Entity_Id := Empty)
6083       is
6084          Predef_Op : Entity_Id;
6085
6086       begin
6087          Predef_Op := Current_Entity (Selector_Name (N));
6088
6089          while Present (Predef_Op)
6090            and then Scope (Predef_Op) /= Standard_Standard
6091          loop
6092             Predef_Op := Homonym (Predef_Op);
6093          end loop;
6094
6095          if Nkind (N) = N_Selected_Component then
6096             Change_Selected_Component_To_Expanded_Name (N);
6097          end if;
6098
6099          --  If the context is an unanalyzed function call, determine whether
6100          --  a binary or unary interpretation is required.
6101
6102          if Nkind (Parent (N)) = N_Indexed_Component then
6103             declare
6104                Is_Binary_Call : constant Boolean :=
6105                                   Present
6106                                     (Next (First (Expressions (Parent (N)))));
6107                Is_Binary_Op   : constant Boolean :=
6108                                   First_Entity
6109                                     (Predef_Op) /= Last_Entity (Predef_Op);
6110                Predef_Op2     : constant Entity_Id := Homonym (Predef_Op);
6111
6112             begin
6113                if Is_Binary_Call then
6114                   if Is_Binary_Op then
6115                      Add_One_Interp (N, Predef_Op, T);
6116                   else
6117                      Add_One_Interp (N, Predef_Op2, T);
6118                   end if;
6119
6120                else
6121                   if not Is_Binary_Op then
6122                      Add_One_Interp (N, Predef_Op, T);
6123                   else
6124                      Add_One_Interp (N, Predef_Op2, T);
6125                   end if;
6126                end if;
6127             end;
6128
6129          else
6130             Add_One_Interp (N, Predef_Op, T);
6131
6132             --  For operators with unary and binary interpretations, if
6133             --  context is not a call, add both
6134
6135             if Present (Homonym (Predef_Op)) then
6136                Add_One_Interp (N, Homonym (Predef_Op), T);
6137             end if;
6138          end if;
6139
6140          --  The node is a reference to a predefined operator, and
6141          --  an implicit reference to the type of its operands.
6142
6143          if Present (Op_Type) then
6144             Generate_Operator_Reference (N, Op_Type);
6145          else
6146             Generate_Operator_Reference (N, T);
6147          end if;
6148       end Add_Implicit_Operator;
6149
6150    --  Start of processing for Has_Implicit_Operator
6151
6152    begin
6153       if Ekind (P) = E_Package
6154         and then not In_Open_Scopes (P)
6155       then
6156          Priv_Id := First_Private_Entity (P);
6157       end if;
6158
6159       Id := First_Entity (P);
6160
6161       case Op_Id is
6162
6163          --  Boolean operators: an implicit declaration exists if the scope
6164          --  contains a declaration for a derived Boolean type, or for an
6165          --  array of Boolean type.
6166
6167          when Name_Op_And | Name_Op_Not | Name_Op_Or  | Name_Op_Xor =>
6168             while Id  /= Priv_Id loop
6169                if Valid_Boolean_Arg (Id) and then Is_Base_Type (Id) then
6170                   Add_Implicit_Operator (Id);
6171                   return True;
6172                end if;
6173
6174                Next_Entity (Id);
6175             end loop;
6176
6177          --  Equality: look for any non-limited type (result is Boolean)
6178
6179          when Name_Op_Eq | Name_Op_Ne =>
6180             while Id  /= Priv_Id loop
6181                if Is_Type (Id)
6182                  and then not Is_Limited_Type (Id)
6183                  and then Is_Base_Type (Id)
6184                then
6185                   Add_Implicit_Operator (Standard_Boolean, Id);
6186                   return True;
6187                end if;
6188
6189                Next_Entity (Id);
6190             end loop;
6191
6192          --  Comparison operators: scalar type, or array of scalar
6193
6194          when Name_Op_Lt | Name_Op_Le | Name_Op_Gt | Name_Op_Ge =>
6195             while Id  /= Priv_Id loop
6196                if (Is_Scalar_Type (Id)
6197                     or else (Is_Array_Type (Id)
6198                               and then Is_Scalar_Type (Component_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          --  Arithmetic operators: any numeric type
6209
6210          when Name_Op_Abs      |
6211               Name_Op_Add      |
6212               Name_Op_Mod      |
6213               Name_Op_Rem      |
6214               Name_Op_Subtract |
6215               Name_Op_Multiply |
6216               Name_Op_Divide   |
6217               Name_Op_Expon    =>
6218             while Id  /= Priv_Id loop
6219                if Is_Numeric_Type (Id) and then Is_Base_Type (Id) then
6220                   Add_Implicit_Operator (Id);
6221                   return True;
6222                end if;
6223
6224                Next_Entity (Id);
6225             end loop;
6226
6227          --  Concatenation: any one-dimensional array type
6228
6229          when Name_Op_Concat =>
6230             while Id  /= Priv_Id loop
6231                if Is_Array_Type (Id)
6232                  and then Number_Dimensions (Id) = 1
6233                  and then Is_Base_Type (Id)
6234                then
6235                   Add_Implicit_Operator (Id);
6236                   return True;
6237                end if;
6238
6239                Next_Entity (Id);
6240             end loop;
6241
6242          --  What is the others condition here? Should we be using a
6243          --  subtype of Name_Id that would restrict to operators ???
6244
6245          when others => null;
6246       end case;
6247
6248       --  If we fall through, then we do not have an implicit operator
6249
6250       return False;
6251
6252    end Has_Implicit_Operator;
6253
6254    --------------------
6255    -- In_Open_Scopes --
6256    --------------------
6257
6258    function In_Open_Scopes (S : Entity_Id) return Boolean is
6259    begin
6260       --  Several scope stacks are maintained by Scope_Stack. The base of the
6261       --  currently active scope stack is denoted by the Is_Active_Stack_Base
6262       --  flag in the scope stack entry. Note that the scope stacks used to
6263       --  simply be delimited implicitly by the presence of Standard_Standard
6264       --  at their base, but there now are cases where this is not sufficient
6265       --  because Standard_Standard actually may appear in the middle of the
6266       --  active set of scopes.
6267
6268       for J in reverse 0 .. Scope_Stack.Last loop
6269          if Scope_Stack.Table (J).Entity = S then
6270             return True;
6271          end if;
6272
6273          --  Check Is_Active_Stack_Base to tell us when to stop, as there are
6274          --  cases where Standard_Standard appears in the middle of the active
6275          --  set of scopes. This affects the declaration and overriding of
6276          --  private inherited operations in instantiations of generic child
6277          --  units.
6278
6279          exit when Scope_Stack.Table (J).Is_Active_Stack_Base;
6280       end loop;
6281
6282       return False;
6283    end In_Open_Scopes;
6284
6285    -----------------------------
6286    -- Inherit_Renamed_Profile --
6287    -----------------------------
6288
6289    procedure Inherit_Renamed_Profile (New_S : Entity_Id; Old_S : Entity_Id) is
6290       New_F : Entity_Id;
6291       Old_F : Entity_Id;
6292       Old_T : Entity_Id;
6293       New_T : Entity_Id;
6294
6295    begin
6296       if Ekind (Old_S) = E_Operator then
6297          New_F := First_Formal (New_S);
6298
6299          while Present (New_F) loop
6300             Set_Etype (New_F, Base_Type (Etype (New_F)));
6301             Next_Formal (New_F);
6302          end loop;
6303
6304          Set_Etype (New_S, Base_Type (Etype (New_S)));
6305
6306       else
6307          New_F := First_Formal (New_S);
6308          Old_F := First_Formal (Old_S);
6309
6310          while Present (New_F) loop
6311             New_T := Etype (New_F);
6312             Old_T := Etype (Old_F);
6313
6314             --  If the new type is a renaming of the old one, as is the
6315             --  case for actuals in instances, retain its name, to simplify
6316             --  later disambiguation.
6317
6318             if Nkind (Parent (New_T)) = N_Subtype_Declaration
6319               and then Is_Entity_Name (Subtype_Indication (Parent (New_T)))
6320               and then Entity (Subtype_Indication (Parent (New_T))) = Old_T
6321             then
6322                null;
6323             else
6324                Set_Etype (New_F, Old_T);
6325             end if;
6326
6327             Next_Formal (New_F);
6328             Next_Formal (Old_F);
6329          end loop;
6330
6331          if Ekind_In (Old_S, E_Function, E_Enumeration_Literal) then
6332             Set_Etype (New_S, Etype (Old_S));
6333          end if;
6334       end if;
6335    end Inherit_Renamed_Profile;
6336
6337    ----------------
6338    -- Initialize --
6339    ----------------
6340
6341    procedure Initialize is
6342    begin
6343       Urefs.Init;
6344    end Initialize;
6345
6346    -------------------------
6347    -- Install_Use_Clauses --
6348    -------------------------
6349
6350    procedure Install_Use_Clauses
6351      (Clause             : Node_Id;
6352       Force_Installation : Boolean := False)
6353    is
6354       U  : Node_Id;
6355       P  : Node_Id;
6356       Id : Entity_Id;
6357
6358    begin
6359       U := Clause;
6360       while Present (U) loop
6361
6362          --  Case of USE package
6363
6364          if Nkind (U) = N_Use_Package_Clause then
6365             P := First (Names (U));
6366             while Present (P) loop
6367                Id := Entity (P);
6368
6369                if Ekind (Id) = E_Package then
6370                   if In_Use (Id) then
6371                      Note_Redundant_Use (P);
6372
6373                   elsif Present (Renamed_Object (Id))
6374                     and then In_Use (Renamed_Object (Id))
6375                   then
6376                      Note_Redundant_Use (P);
6377
6378                   elsif Force_Installation or else Applicable_Use (P) then
6379                      Use_One_Package (Id, U);
6380
6381                   end if;
6382                end if;
6383
6384                Next (P);
6385             end loop;
6386
6387          --  Case of USE TYPE
6388
6389          else
6390             P := First (Subtype_Marks (U));
6391             while Present (P) loop
6392                if not Is_Entity_Name (P)
6393                  or else No (Entity (P))
6394                then
6395                   null;
6396
6397                elsif Entity (P) /= Any_Type then
6398                   Use_One_Type (P);
6399                end if;
6400
6401                Next (P);
6402             end loop;
6403          end if;
6404
6405          Next_Use_Clause (U);
6406       end loop;
6407    end Install_Use_Clauses;
6408
6409    -------------------------------------
6410    -- Is_Appropriate_For_Entry_Prefix --
6411    -------------------------------------
6412
6413    function Is_Appropriate_For_Entry_Prefix (T : Entity_Id) return Boolean is
6414       P_Type : Entity_Id := T;
6415
6416    begin
6417       if Is_Access_Type (P_Type) then
6418          P_Type := Designated_Type (P_Type);
6419       end if;
6420
6421       return Is_Task_Type (P_Type) or else Is_Protected_Type (P_Type);
6422    end Is_Appropriate_For_Entry_Prefix;
6423
6424    -------------------------------
6425    -- Is_Appropriate_For_Record --
6426    -------------------------------
6427
6428    function Is_Appropriate_For_Record (T : Entity_Id) return Boolean is
6429
6430       function Has_Components (T1 : Entity_Id) return Boolean;
6431       --  Determine if given type has components (i.e. is either a record
6432       --  type or a type that has discriminants).
6433
6434       --------------------
6435       -- Has_Components --
6436       --------------------
6437
6438       function Has_Components (T1 : Entity_Id) return Boolean is
6439       begin
6440          return Is_Record_Type (T1)
6441            or else (Is_Private_Type (T1) and then Has_Discriminants (T1))
6442            or else (Is_Task_Type (T1) and then Has_Discriminants (T1))
6443            or else (Is_Incomplete_Type (T1)
6444                      and then From_With_Type (T1)
6445                      and then Present (Non_Limited_View (T1))
6446                      and then Is_Record_Type
6447                                 (Get_Full_View (Non_Limited_View (T1))));
6448       end Has_Components;
6449
6450    --  Start of processing for Is_Appropriate_For_Record
6451
6452    begin
6453       return
6454         Present (T)
6455           and then (Has_Components (T)
6456                      or else (Is_Access_Type (T)
6457                                and then Has_Components (Designated_Type (T))));
6458    end Is_Appropriate_For_Record;
6459
6460    ------------------------
6461    -- Note_Redundant_Use --
6462    ------------------------
6463
6464    procedure Note_Redundant_Use (Clause : Node_Id) is
6465       Pack_Name : constant Entity_Id := Entity (Clause);
6466       Cur_Use   : constant Node_Id   := Current_Use_Clause (Pack_Name);
6467       Decl      : constant Node_Id   := Parent (Clause);
6468
6469       Prev_Use   : Node_Id := Empty;
6470       Redundant  : Node_Id := Empty;
6471       --  The Use_Clause which is actually redundant. In the simplest case it
6472       --  is Pack itself, but when we compile a body we install its context
6473       --  before that of its spec, in which case it is the use_clause in the
6474       --  spec that will appear to be redundant, and we want the warning to be
6475       --  placed on the body. Similar complications appear when the redundancy
6476       --  is between a child unit and one of its ancestors.
6477
6478    begin
6479       Set_Redundant_Use (Clause, True);
6480
6481       if not Comes_From_Source (Clause)
6482         or else In_Instance
6483         or else not Warn_On_Redundant_Constructs
6484       then
6485          return;
6486       end if;
6487
6488       if not Is_Compilation_Unit (Current_Scope) then
6489
6490          --  If the use_clause is in an inner scope, it is made redundant by
6491          --  some clause in the current context, with one exception: If we're
6492          --  compiling a nested package body, and the use_clause comes from the
6493          --  corresponding spec, the clause is not necessarily fully redundant,
6494          --  so we should not warn. If a warning was warranted, it would have
6495          --  been given when the spec was processed.
6496
6497          if Nkind (Parent (Decl)) = N_Package_Specification then
6498             declare
6499                Package_Spec_Entity : constant Entity_Id :=
6500                                        Defining_Unit_Name (Parent (Decl));
6501             begin
6502                if In_Package_Body (Package_Spec_Entity) then
6503                   return;
6504                end if;
6505             end;
6506          end if;
6507
6508          Redundant := Clause;
6509          Prev_Use  := Cur_Use;
6510
6511       elsif Nkind (Unit (Cunit (Current_Sem_Unit))) = N_Package_Body then
6512          declare
6513             Cur_Unit : constant Unit_Number_Type := Get_Source_Unit (Cur_Use);
6514             New_Unit : constant Unit_Number_Type := Get_Source_Unit (Clause);
6515             Scop     : Entity_Id;
6516
6517          begin
6518             if Cur_Unit = New_Unit then
6519
6520                --  Redundant clause in same body
6521
6522                Redundant := Clause;
6523                Prev_Use  := Cur_Use;
6524
6525             elsif Cur_Unit = Current_Sem_Unit then
6526
6527                --  If the new clause is not in the current unit it has been
6528                --  analyzed first, and it makes the other one redundant.
6529                --  However, if the new clause appears in a subunit, Cur_Unit
6530                --  is still the parent, and in that case the redundant one
6531                --  is the one appearing in the subunit.
6532
6533                if Nkind (Unit (Cunit (New_Unit))) = N_Subunit then
6534                   Redundant := Clause;
6535                   Prev_Use  := Cur_Use;
6536
6537                --  Most common case: redundant clause in body,
6538                --  original clause in spec. Current scope is spec entity.
6539
6540                elsif
6541                  Current_Scope =
6542                    Defining_Entity (
6543                      Unit (Library_Unit (Cunit (Current_Sem_Unit))))
6544                then
6545                   Redundant := Cur_Use;
6546                   Prev_Use  := Clause;
6547
6548                else
6549                   --  The new clause may appear in an unrelated unit, when
6550                   --  the parents of a generic are being installed prior to
6551                   --  instantiation. In this case there must be no warning.
6552                   --  We detect this case by checking whether the current top
6553                   --  of the stack is related to the current compilation.
6554
6555                   Scop := Current_Scope;
6556                   while Present (Scop)
6557                     and then Scop /= Standard_Standard
6558                   loop
6559                      if Is_Compilation_Unit (Scop)
6560                        and then not Is_Child_Unit (Scop)
6561                      then
6562                         return;
6563
6564                      elsif Scop = Cunit_Entity (Current_Sem_Unit) then
6565                         exit;
6566                      end if;
6567
6568                      Scop := Scope (Scop);
6569                   end loop;
6570
6571                   Redundant := Cur_Use;
6572                   Prev_Use  := Clause;
6573                end if;
6574
6575             elsif New_Unit = Current_Sem_Unit then
6576                Redundant := Clause;
6577                Prev_Use  := Cur_Use;
6578
6579             else
6580                --  Neither is the current unit, so they appear in parent or
6581                --  sibling units. Warning will be emitted elsewhere.
6582
6583                return;
6584             end if;
6585          end;
6586
6587       elsif Nkind (Unit (Cunit (Current_Sem_Unit))) = N_Package_Declaration
6588         and then Present (Parent_Spec (Unit (Cunit (Current_Sem_Unit))))
6589       then
6590          --  Use_clause is in child unit of current unit, and the child unit
6591          --  appears in the context of the body of the parent, so it has been
6592          --  installed first, even though it is the redundant one. Depending on
6593          --  their placement in the context, the visible or the private parts
6594          --  of the two units, either might appear as redundant, but the
6595          --  message has to be on the current unit.
6596
6597          if Get_Source_Unit (Cur_Use) = Current_Sem_Unit then
6598             Redundant := Cur_Use;
6599             Prev_Use  := Clause;
6600          else
6601             Redundant := Clause;
6602             Prev_Use  := Cur_Use;
6603          end if;
6604
6605          --  If the new use clause appears in the private part of a parent unit
6606          --  it may appear to be redundant w.r.t. a use clause in a child unit,
6607          --  but the previous use clause was needed in the visible part of the
6608          --  child, and no warning should be emitted.
6609
6610          if Nkind (Parent (Decl)) = N_Package_Specification
6611            and then
6612              List_Containing (Decl) = Private_Declarations (Parent (Decl))
6613          then
6614             declare
6615                Par : constant Entity_Id := Defining_Entity (Parent (Decl));
6616                Spec : constant Node_Id  :=
6617                         Specification (Unit (Cunit (Current_Sem_Unit)));
6618
6619             begin
6620                if Is_Compilation_Unit (Par)
6621                  and then Par /= Cunit_Entity (Current_Sem_Unit)
6622                  and then Parent (Cur_Use) = Spec
6623                  and then
6624                    List_Containing (Cur_Use) = Visible_Declarations (Spec)
6625                then
6626                   return;
6627                end if;
6628             end;
6629          end if;
6630
6631       --  Finally, if the current use clause is in the context then
6632       --  the clause is redundant when it is nested within the unit.
6633
6634       elsif Nkind (Parent (Cur_Use)) = N_Compilation_Unit
6635         and then Nkind (Parent (Parent (Clause))) /= N_Compilation_Unit
6636         and then Get_Source_Unit (Cur_Use) = Get_Source_Unit (Clause)
6637       then
6638          Redundant := Clause;
6639          Prev_Use  := Cur_Use;
6640
6641       else
6642          null;
6643       end if;
6644
6645       if Present (Redundant) then
6646          Error_Msg_Sloc := Sloc (Prev_Use);
6647          Error_Msg_NE -- CODEFIX
6648            ("& is already use-visible through previous use clause #?",
6649             Redundant, Pack_Name);
6650       end if;
6651    end Note_Redundant_Use;
6652
6653    ---------------
6654    -- Pop_Scope --
6655    ---------------
6656
6657    procedure Pop_Scope is
6658       SST : Scope_Stack_Entry renames Scope_Stack.Table (Scope_Stack.Last);
6659       S   : constant Entity_Id := SST.Entity;
6660
6661    begin
6662       if Debug_Flag_E then
6663          Write_Info;
6664       end if;
6665
6666       --  Set Default_Storage_Pool field of the library unit if necessary
6667
6668       if Ekind_In (S, E_Package, E_Generic_Package)
6669         and then
6670           Nkind (Parent (Unit_Declaration_Node (S))) = N_Compilation_Unit
6671       then
6672          declare
6673             Aux : constant Node_Id :=
6674                     Aux_Decls_Node (Parent (Unit_Declaration_Node (S)));
6675          begin
6676             if No (Default_Storage_Pool (Aux)) then
6677                Set_Default_Storage_Pool (Aux, Default_Pool);
6678             end if;
6679          end;
6680       end if;
6681
6682       Scope_Suppress           := SST.Save_Scope_Suppress;
6683       Local_Suppress_Stack_Top := SST.Save_Local_Suppress_Stack_Top;
6684       Check_Policy_List        := SST.Save_Check_Policy_List;
6685       Default_Pool             := SST.Save_Default_Storage_Pool;
6686
6687       if Debug_Flag_W then
6688          Write_Str ("<-- exiting scope: ");
6689          Write_Name (Chars (Current_Scope));
6690          Write_Str (", Depth=");
6691          Write_Int (Int (Scope_Stack.Last));
6692          Write_Eol;
6693       end if;
6694
6695       End_Use_Clauses (SST.First_Use_Clause);
6696
6697       --  If the actions to be wrapped are still there they will get lost
6698       --  causing incomplete code to be generated. It is better to abort in
6699       --  this case (and we do the abort even with assertions off since the
6700       --  penalty is incorrect code generation)
6701
6702       if SST.Actions_To_Be_Wrapped_Before /= No_List
6703            or else
6704          SST.Actions_To_Be_Wrapped_After  /= No_List
6705       then
6706          raise Program_Error;
6707       end if;
6708
6709       --  Free last subprogram name if allocated, and pop scope
6710
6711       Free (SST.Last_Subprogram_Name);
6712       Scope_Stack.Decrement_Last;
6713    end Pop_Scope;
6714
6715    ---------------
6716    -- Push_Scope --
6717    ---------------
6718
6719    procedure Push_Scope (S : Entity_Id) is
6720       E : constant Entity_Id := Scope (S);
6721
6722    begin
6723       if Ekind (S) = E_Void then
6724          null;
6725
6726       --  Set scope depth if not a non-concurrent type, and we have not yet set
6727       --  the scope depth. This means that we have the first occurrence of the
6728       --  scope, and this is where the depth is set.
6729
6730       elsif (not Is_Type (S) or else Is_Concurrent_Type (S))
6731         and then not Scope_Depth_Set (S)
6732       then
6733          if S = Standard_Standard then
6734             Set_Scope_Depth_Value (S, Uint_0);
6735
6736          elsif Is_Child_Unit (S) then
6737             Set_Scope_Depth_Value (S, Uint_1);
6738
6739          elsif not Is_Record_Type (Current_Scope) then
6740             if Ekind (S) = E_Loop then
6741                Set_Scope_Depth_Value (S, Scope_Depth (Current_Scope));
6742             else
6743                Set_Scope_Depth_Value (S, Scope_Depth (Current_Scope) + 1);
6744             end if;
6745          end if;
6746       end if;
6747
6748       Scope_Stack.Increment_Last;
6749
6750       declare
6751          SST : Scope_Stack_Entry renames Scope_Stack.Table (Scope_Stack.Last);
6752
6753       begin
6754          SST.Entity                        := S;
6755          SST.Save_Scope_Suppress           := Scope_Suppress;
6756          SST.Save_Local_Suppress_Stack_Top := Local_Suppress_Stack_Top;
6757          SST.Save_Check_Policy_List        := Check_Policy_List;
6758          SST.Save_Default_Storage_Pool     := Default_Pool;
6759
6760          if Scope_Stack.Last > Scope_Stack.First then
6761             SST.Component_Alignment_Default := Scope_Stack.Table
6762                                                  (Scope_Stack.Last - 1).
6763                                                    Component_Alignment_Default;
6764          end if;
6765
6766          SST.Last_Subprogram_Name           := null;
6767          SST.Is_Transient                   := False;
6768          SST.Node_To_Be_Wrapped             := Empty;
6769          SST.Pending_Freeze_Actions         := No_List;
6770          SST.Actions_To_Be_Wrapped_Before   := No_List;
6771          SST.Actions_To_Be_Wrapped_After    := No_List;
6772          SST.First_Use_Clause               := Empty;
6773          SST.Is_Active_Stack_Base           := False;
6774          SST.Previous_Visibility            := False;
6775       end;
6776
6777       if Debug_Flag_W then
6778          Write_Str ("--> new scope: ");
6779          Write_Name (Chars (Current_Scope));
6780          Write_Str (", Id=");
6781          Write_Int (Int (Current_Scope));
6782          Write_Str (", Depth=");
6783          Write_Int (Int (Scope_Stack.Last));
6784          Write_Eol;
6785       end if;
6786
6787       --  Deal with copying flags from the previous scope to this one. This is
6788       --  not necessary if either scope is standard, or if the new scope is a
6789       --  child unit.
6790
6791       if S /= Standard_Standard
6792         and then Scope (S) /= Standard_Standard
6793         and then not Is_Child_Unit (S)
6794       then
6795          if Nkind (E) not in N_Entity then
6796             return;
6797          end if;
6798
6799          --  Copy categorization flags from Scope (S) to S, this is not done
6800          --  when Scope (S) is Standard_Standard since propagation is from
6801          --  library unit entity inwards. Copy other relevant attributes as
6802          --  well (Discard_Names in particular).
6803
6804          --  We only propagate inwards for library level entities,
6805          --  inner level subprograms do not inherit the categorization.
6806
6807          if Is_Library_Level_Entity (S) then
6808             Set_Is_Preelaborated  (S, Is_Preelaborated (E));
6809             Set_Is_Shared_Passive (S, Is_Shared_Passive (E));
6810             Set_Discard_Names     (S, Discard_Names (E));
6811             Set_Suppress_Value_Tracking_On_Call
6812                                   (S, Suppress_Value_Tracking_On_Call (E));
6813             Set_Categorization_From_Scope (E => S, Scop => E);
6814          end if;
6815       end if;
6816
6817       if Is_Child_Unit (S)
6818         and then Present (E)
6819         and then Ekind_In (E, E_Package, E_Generic_Package)
6820         and then
6821           Nkind (Parent (Unit_Declaration_Node (E))) = N_Compilation_Unit
6822       then
6823          declare
6824             Aux : constant Node_Id :=
6825                     Aux_Decls_Node (Parent (Unit_Declaration_Node (E)));
6826          begin
6827             if Present (Default_Storage_Pool (Aux)) then
6828                Default_Pool := Default_Storage_Pool (Aux);
6829             end if;
6830          end;
6831       end if;
6832    end Push_Scope;
6833
6834    ---------------------
6835    -- Premature_Usage --
6836    ---------------------
6837
6838    procedure Premature_Usage (N : Node_Id) is
6839       Kind : constant Node_Kind := Nkind (Parent (Entity (N)));
6840       E    : Entity_Id := Entity (N);
6841
6842    begin
6843       --  Within an instance, the analysis of the actual for a formal object
6844       --  does not see the name of the object itself. This is significant only
6845       --  if the object is an aggregate, where its analysis does not do any
6846       --  name resolution on component associations. (see 4717-008). In such a
6847       --  case, look for the visible homonym on the chain.
6848
6849       if In_Instance
6850         and then Present (Homonym (E))
6851       then
6852          E := Homonym (E);
6853
6854          while Present (E)
6855            and then not In_Open_Scopes (Scope (E))
6856          loop
6857             E := Homonym (E);
6858          end loop;
6859
6860          if Present (E) then
6861             Set_Entity (N, E);
6862             Set_Etype (N, Etype (E));
6863             return;
6864          end if;
6865       end if;
6866
6867       if Kind  = N_Component_Declaration then
6868          Error_Msg_N
6869            ("component&! cannot be used before end of record declaration", N);
6870
6871       elsif Kind  = N_Parameter_Specification then
6872          Error_Msg_N
6873            ("formal parameter&! cannot be used before end of specification",
6874             N);
6875
6876       elsif Kind  = N_Discriminant_Specification then
6877          Error_Msg_N
6878            ("discriminant&! cannot be used before end of discriminant part",
6879             N);
6880
6881       elsif Kind  = N_Procedure_Specification
6882         or else Kind = N_Function_Specification
6883       then
6884          Error_Msg_N
6885            ("subprogram&! cannot be used before end of its declaration",
6886             N);
6887
6888       elsif Kind = N_Full_Type_Declaration then
6889          Error_Msg_N
6890            ("type& cannot be used before end of its declaration!", N);
6891
6892       else
6893          Error_Msg_N
6894            ("object& cannot be used before end of its declaration!", N);
6895       end if;
6896    end Premature_Usage;
6897
6898    ------------------------
6899    -- Present_System_Aux --
6900    ------------------------
6901
6902    function Present_System_Aux (N : Node_Id := Empty) return Boolean is
6903       Loc      : Source_Ptr;
6904       Aux_Name : Unit_Name_Type;
6905       Unum     : Unit_Number_Type;
6906       Withn    : Node_Id;
6907       With_Sys : Node_Id;
6908       The_Unit : Node_Id;
6909
6910       function Find_System (C_Unit : Node_Id) return Entity_Id;
6911       --  Scan context clause of compilation unit to find with_clause
6912       --  for System.
6913
6914       -----------------
6915       -- Find_System --
6916       -----------------
6917
6918       function Find_System (C_Unit : Node_Id) return Entity_Id is
6919          With_Clause : Node_Id;
6920
6921       begin
6922          With_Clause := First (Context_Items (C_Unit));
6923          while Present (With_Clause) loop
6924             if (Nkind (With_Clause) = N_With_Clause
6925               and then Chars (Name (With_Clause)) = Name_System)
6926               and then Comes_From_Source (With_Clause)
6927             then
6928                return With_Clause;
6929             end if;
6930
6931             Next (With_Clause);
6932          end loop;
6933
6934          return Empty;
6935       end Find_System;
6936
6937    --  Start of processing for Present_System_Aux
6938
6939    begin
6940       --  The child unit may have been loaded and analyzed already
6941
6942       if Present (System_Aux_Id) then
6943          return True;
6944
6945       --  If no previous pragma for System.Aux, nothing to load
6946
6947       elsif No (System_Extend_Unit) then
6948          return False;
6949
6950       --  Use the unit name given in the pragma to retrieve the unit.
6951       --  Verify that System itself appears in the context clause of the
6952       --  current compilation. If System is not present, an error will
6953       --  have been reported already.
6954
6955       else
6956          With_Sys := Find_System (Cunit (Current_Sem_Unit));
6957
6958          The_Unit := Unit (Cunit (Current_Sem_Unit));
6959
6960          if No (With_Sys)
6961            and then
6962              (Nkind (The_Unit) = N_Package_Body
6963                 or else (Nkind (The_Unit) = N_Subprogram_Body
6964                            and then
6965                              not Acts_As_Spec (Cunit (Current_Sem_Unit))))
6966          then
6967             With_Sys := Find_System (Library_Unit (Cunit (Current_Sem_Unit)));
6968          end if;
6969
6970          if No (With_Sys)
6971            and then Present (N)
6972          then
6973             --  If we are compiling a subunit, we need to examine its
6974             --  context as well (Current_Sem_Unit is the parent unit);
6975
6976             The_Unit := Parent (N);
6977             while Nkind (The_Unit) /= N_Compilation_Unit loop
6978                The_Unit := Parent (The_Unit);
6979             end loop;
6980
6981             if Nkind (Unit (The_Unit)) = N_Subunit then
6982                With_Sys := Find_System (The_Unit);
6983             end if;
6984          end if;
6985
6986          if No (With_Sys) then
6987             return False;
6988          end if;
6989
6990          Loc := Sloc (With_Sys);
6991          Get_Name_String (Chars (Expression (System_Extend_Unit)));
6992          Name_Buffer (8 .. Name_Len + 7) := Name_Buffer (1 .. Name_Len);
6993          Name_Buffer (1 .. 7) := "system.";
6994          Name_Buffer (Name_Len + 8) := '%';
6995          Name_Buffer (Name_Len + 9) := 's';
6996          Name_Len := Name_Len + 9;
6997          Aux_Name := Name_Find;
6998
6999          Unum :=
7000            Load_Unit
7001              (Load_Name  => Aux_Name,
7002               Required   => False,
7003               Subunit    => False,
7004               Error_Node => With_Sys);
7005
7006          if Unum /= No_Unit then
7007             Semantics (Cunit (Unum));
7008             System_Aux_Id :=
7009               Defining_Entity (Specification (Unit (Cunit (Unum))));
7010
7011             Withn :=
7012               Make_With_Clause (Loc,
7013                 Name =>
7014                   Make_Expanded_Name (Loc,
7015                     Chars  => Chars (System_Aux_Id),
7016                     Prefix => New_Reference_To (Scope (System_Aux_Id), Loc),
7017                     Selector_Name => New_Reference_To (System_Aux_Id, Loc)));
7018
7019             Set_Entity (Name (Withn), System_Aux_Id);
7020
7021             Set_Library_Unit       (Withn, Cunit (Unum));
7022             Set_Corresponding_Spec (Withn, System_Aux_Id);
7023             Set_First_Name         (Withn, True);
7024             Set_Implicit_With      (Withn, True);
7025
7026             Insert_After (With_Sys, Withn);
7027             Mark_Rewrite_Insertion (Withn);
7028             Set_Context_Installed (Withn);
7029
7030             return True;
7031
7032          --  Here if unit load failed
7033
7034          else
7035             Error_Msg_Name_1 := Name_System;
7036             Error_Msg_Name_2 := Chars (Expression (System_Extend_Unit));
7037             Error_Msg_N
7038               ("extension package `%.%` does not exist",
7039                Opt.System_Extend_Unit);
7040             return False;
7041          end if;
7042       end if;
7043    end Present_System_Aux;
7044
7045    -------------------------
7046    -- Restore_Scope_Stack --
7047    -------------------------
7048
7049    procedure Restore_Scope_Stack (Handle_Use : Boolean := True) is
7050       E         : Entity_Id;
7051       S         : Entity_Id;
7052       Comp_Unit : Node_Id;
7053       In_Child  : Boolean := False;
7054       Full_Vis  : Boolean := True;
7055       SS_Last   : constant Int := Scope_Stack.Last;
7056
7057    begin
7058       --  Restore visibility of previous scope stack, if any
7059
7060       for J in reverse 0 .. Scope_Stack.Last loop
7061          exit when  Scope_Stack.Table (J).Entity = Standard_Standard
7062             or else No (Scope_Stack.Table (J).Entity);
7063
7064          S := Scope_Stack.Table (J).Entity;
7065
7066          if not Is_Hidden_Open_Scope (S) then
7067
7068             --  If the parent scope is hidden, its entities are hidden as
7069             --  well, unless the entity is the instantiation currently
7070             --  being analyzed.
7071
7072             if not Is_Hidden_Open_Scope (Scope (S))
7073               or else not Analyzed (Parent (S))
7074               or else Scope (S) = Standard_Standard
7075             then
7076                Set_Is_Immediately_Visible (S, True);
7077             end if;
7078
7079             E := First_Entity (S);
7080             while Present (E) loop
7081                if Is_Child_Unit (E) then
7082                   if not From_With_Type (E) then
7083                      Set_Is_Immediately_Visible (E,
7084                        Is_Visible_Child_Unit (E) or else In_Open_Scopes (E));
7085
7086                   else
7087                      pragma Assert
7088                        (Nkind (Parent (E)) = N_Defining_Program_Unit_Name
7089                           and then
7090                         Nkind (Parent (Parent (E))) = N_Package_Specification);
7091                      Set_Is_Immediately_Visible (E,
7092                        Limited_View_Installed (Parent (Parent (E))));
7093                   end if;
7094                else
7095                   Set_Is_Immediately_Visible (E, True);
7096                end if;
7097
7098                Next_Entity (E);
7099
7100                if not Full_Vis
7101                  and then Is_Package_Or_Generic_Package (S)
7102                then
7103                   --  We are in the visible part of the package scope
7104
7105                   exit when E = First_Private_Entity (S);
7106                end if;
7107             end loop;
7108
7109             --  The visibility of child units (siblings of current compilation)
7110             --  must be restored in any case. Their declarations may appear
7111             --  after the private part of the parent.
7112
7113             if not Full_Vis then
7114                while Present (E) loop
7115                   if Is_Child_Unit (E) then
7116                      Set_Is_Immediately_Visible (E,
7117                        Is_Visible_Child_Unit (E) or else In_Open_Scopes (E));
7118                   end if;
7119
7120                   Next_Entity (E);
7121                end loop;
7122             end if;
7123          end if;
7124
7125          if Is_Child_Unit (S)
7126             and not In_Child     --  check only for current unit
7127          then
7128             In_Child := True;
7129
7130             --  Restore visibility of parents according to whether the child
7131             --  is private and whether we are in its visible part.
7132
7133             Comp_Unit := Parent (Unit_Declaration_Node (S));
7134
7135             if Nkind (Comp_Unit) = N_Compilation_Unit
7136               and then Private_Present (Comp_Unit)
7137             then
7138                Full_Vis := True;
7139
7140             elsif Is_Package_Or_Generic_Package (S)
7141               and then (In_Private_Part (S) or else In_Package_Body (S))
7142             then
7143                Full_Vis := True;
7144
7145             --  if S is the scope of some instance (which has already been
7146             --  seen on the stack) it does not affect the visibility of
7147             --  other scopes.
7148
7149             elsif Is_Hidden_Open_Scope (S) then
7150                null;
7151
7152             elsif (Ekind (S) = E_Procedure
7153                     or else Ekind (S) = E_Function)
7154               and then Has_Completion (S)
7155             then
7156                Full_Vis := True;
7157             else
7158                Full_Vis := False;
7159             end if;
7160          else
7161             Full_Vis := True;
7162          end if;
7163       end loop;
7164
7165       if SS_Last >= Scope_Stack.First
7166         and then Scope_Stack.Table (SS_Last).Entity /= Standard_Standard
7167         and then Handle_Use
7168       then
7169          Install_Use_Clauses (Scope_Stack.Table (SS_Last).First_Use_Clause);
7170       end if;
7171    end Restore_Scope_Stack;
7172
7173    ----------------------
7174    -- Save_Scope_Stack --
7175    ----------------------
7176
7177    procedure Save_Scope_Stack (Handle_Use : Boolean := True) is
7178       E       : Entity_Id;
7179       S       : Entity_Id;
7180       SS_Last : constant Int := Scope_Stack.Last;
7181
7182    begin
7183       if SS_Last >= Scope_Stack.First
7184         and then Scope_Stack.Table (SS_Last).Entity /= Standard_Standard
7185       then
7186          if Handle_Use then
7187             End_Use_Clauses (Scope_Stack.Table (SS_Last).First_Use_Clause);
7188          end if;
7189
7190          --  If the call is from within a compilation unit, as when called from
7191          --  Rtsfind, make current entries in scope stack invisible while we
7192          --  analyze the new unit.
7193
7194          for J in reverse 0 .. SS_Last loop
7195             exit when  Scope_Stack.Table (J).Entity = Standard_Standard
7196                or else No (Scope_Stack.Table (J).Entity);
7197
7198             S := Scope_Stack.Table (J).Entity;
7199             Set_Is_Immediately_Visible (S, False);
7200
7201             E := First_Entity (S);
7202             while Present (E) loop
7203                Set_Is_Immediately_Visible (E, False);
7204                Next_Entity (E);
7205             end loop;
7206          end loop;
7207
7208       end if;
7209    end Save_Scope_Stack;
7210
7211    -------------
7212    -- Set_Use --
7213    -------------
7214
7215    procedure Set_Use (L : List_Id) is
7216       Decl      : Node_Id;
7217       Pack_Name : Node_Id;
7218       Pack      : Entity_Id;
7219       Id        : Entity_Id;
7220
7221    begin
7222       if Present (L) then
7223          Decl := First (L);
7224          while Present (Decl) loop
7225             if Nkind (Decl) = N_Use_Package_Clause then
7226                Chain_Use_Clause (Decl);
7227
7228                Pack_Name := First (Names (Decl));
7229                while Present (Pack_Name) loop
7230                   Pack := Entity (Pack_Name);
7231
7232                   if Ekind (Pack) = E_Package
7233                     and then Applicable_Use (Pack_Name)
7234                   then
7235                      Use_One_Package (Pack, Decl);
7236                   end if;
7237
7238                   Next (Pack_Name);
7239                end loop;
7240
7241             elsif Nkind (Decl) = N_Use_Type_Clause  then
7242                Chain_Use_Clause (Decl);
7243
7244                Id := First (Subtype_Marks (Decl));
7245                while Present (Id) loop
7246                   if Entity (Id) /= Any_Type then
7247                      Use_One_Type (Id);
7248                   end if;
7249
7250                   Next (Id);
7251                end loop;
7252             end if;
7253
7254             Next (Decl);
7255          end loop;
7256       end if;
7257    end Set_Use;
7258
7259    ---------------------
7260    -- Use_One_Package --
7261    ---------------------
7262
7263    procedure Use_One_Package (P : Entity_Id; N : Node_Id) is
7264       Id               : Entity_Id;
7265       Prev             : Entity_Id;
7266       Current_Instance : Entity_Id := Empty;
7267       Real_P           : Entity_Id;
7268       Private_With_OK  : Boolean   := False;
7269
7270    begin
7271       if Ekind (P) /= E_Package then
7272          return;
7273       end if;
7274
7275       Set_In_Use (P);
7276       Set_Current_Use_Clause (P, N);
7277
7278       --  Ada 2005 (AI-50217): Check restriction
7279
7280       if From_With_Type (P) then
7281          Error_Msg_N ("limited withed package cannot appear in use clause", N);
7282       end if;
7283
7284       --  Find enclosing instance, if any
7285
7286       if In_Instance then
7287          Current_Instance := Current_Scope;
7288          while not Is_Generic_Instance (Current_Instance) loop
7289             Current_Instance := Scope (Current_Instance);
7290          end loop;
7291
7292          if No (Hidden_By_Use_Clause (N)) then
7293             Set_Hidden_By_Use_Clause (N, New_Elmt_List);
7294          end if;
7295       end if;
7296
7297       --  If unit is a package renaming, indicate that the renamed
7298       --  package is also in use (the flags on both entities must
7299       --  remain consistent, and a subsequent use of either of them
7300       --  should be recognized as redundant).
7301
7302       if Present (Renamed_Object (P)) then
7303          Set_In_Use (Renamed_Object (P));
7304          Set_Current_Use_Clause (Renamed_Object (P), N);
7305          Real_P := Renamed_Object (P);
7306       else
7307          Real_P := P;
7308       end if;
7309
7310       --  Ada 2005 (AI-262): Check the use_clause of a private withed package
7311       --  found in the private part of a package specification
7312
7313       if In_Private_Part (Current_Scope)
7314         and then Has_Private_With (P)
7315         and then Is_Child_Unit (Current_Scope)
7316         and then Is_Child_Unit (P)
7317         and then Is_Ancestor_Package (Scope (Current_Scope), P)
7318       then
7319          Private_With_OK := True;
7320       end if;
7321
7322       --  Loop through entities in one package making them potentially
7323       --  use-visible.
7324
7325       Id := First_Entity (P);
7326       while Present (Id)
7327         and then (Id /= First_Private_Entity (P)
7328                     or else Private_With_OK) -- Ada 2005 (AI-262)
7329       loop
7330          Prev := Current_Entity (Id);
7331          while Present (Prev) loop
7332             if Is_Immediately_Visible (Prev)
7333               and then (not Is_Overloadable (Prev)
7334                          or else not Is_Overloadable (Id)
7335                          or else (Type_Conformant (Id, Prev)))
7336             then
7337                if No (Current_Instance) then
7338
7339                   --  Potentially use-visible entity remains hidden
7340
7341                   goto Next_Usable_Entity;
7342
7343                --  A use clause within an instance hides outer global entities,
7344                --  which are not used to resolve local entities in the
7345                --  instance. Note that the predefined entities in Standard
7346                --  could not have been hidden in the generic by a use clause,
7347                --  and therefore remain visible. Other compilation units whose
7348                --  entities appear in Standard must be hidden in an instance.
7349
7350                --  To determine whether an entity is external to the instance
7351                --  we compare the scope depth of its scope with that of the
7352                --  current instance. However, a generic actual of a subprogram
7353                --  instance is declared in the wrapper package but will not be
7354                --  hidden by a use-visible entity. similarly, an entity that is
7355                --  declared in an enclosing instance will not be hidden by an
7356                --  an entity declared in a generic actual, which can only have
7357                --  been use-visible in the generic and will not have hidden the
7358                --  entity in the generic parent.
7359
7360                --  If Id is called Standard, the predefined package with the
7361                --  same name is in the homonym chain. It has to be ignored
7362                --  because it has no defined scope (being the only entity in
7363                --  the system with this mandated behavior).
7364
7365                elsif not Is_Hidden (Id)
7366                  and then Present (Scope (Prev))
7367                  and then not Is_Wrapper_Package (Scope (Prev))
7368                  and then Scope_Depth (Scope (Prev)) <
7369                           Scope_Depth (Current_Instance)
7370                  and then (Scope (Prev) /= Standard_Standard
7371                             or else Sloc (Prev) > Standard_Location)
7372                then
7373                   if In_Open_Scopes (Scope (Prev))
7374                     and then Is_Generic_Instance (Scope (Prev))
7375                     and then Present (Associated_Formal_Package (P))
7376                   then
7377                      null;
7378
7379                   else
7380                      Set_Is_Potentially_Use_Visible (Id);
7381                      Set_Is_Immediately_Visible (Prev, False);
7382                      Append_Elmt (Prev, Hidden_By_Use_Clause (N));
7383                   end if;
7384                end if;
7385
7386             --  A user-defined operator is not use-visible if the predefined
7387             --  operator for the type is immediately visible, which is the case
7388             --  if the type of the operand is in an open scope. This does not
7389             --  apply to user-defined operators that have operands of different
7390             --  types, because the predefined mixed mode operations (multiply
7391             --  and divide) apply to universal types and do not hide anything.
7392
7393             elsif Ekind (Prev) = E_Operator
7394               and then Operator_Matches_Spec (Prev, Id)
7395               and then In_Open_Scopes
7396                (Scope (Base_Type (Etype (First_Formal (Id)))))
7397               and then (No (Next_Formal (First_Formal (Id)))
7398                          or else Etype (First_Formal (Id))
7399                            = Etype (Next_Formal (First_Formal (Id)))
7400                          or else Chars (Prev) = Name_Op_Expon)
7401             then
7402                goto Next_Usable_Entity;
7403
7404             --  In an instance, two homonyms may become use_visible through the
7405             --  actuals of distinct formal packages. In the generic, only the
7406             --  current one would have been visible, so make the other one
7407             --  not use_visible.
7408
7409             elsif Present (Current_Instance)
7410               and then Is_Potentially_Use_Visible (Prev)
7411               and then not Is_Overloadable (Prev)
7412               and then Scope (Id) /= Scope (Prev)
7413               and then Used_As_Generic_Actual (Scope (Prev))
7414               and then Used_As_Generic_Actual (Scope (Id))
7415               and then not In_Same_List (Current_Use_Clause (Scope (Prev)),
7416                                          Current_Use_Clause (Scope (Id)))
7417             then
7418                Set_Is_Potentially_Use_Visible (Prev, False);
7419                Append_Elmt (Prev, Hidden_By_Use_Clause (N));
7420             end if;
7421
7422             Prev := Homonym (Prev);
7423          end loop;
7424
7425          --  On exit, we know entity is not hidden, unless it is private
7426
7427          if not Is_Hidden (Id)
7428            and then ((not Is_Child_Unit (Id))
7429                        or else Is_Visible_Child_Unit (Id))
7430          then
7431             Set_Is_Potentially_Use_Visible (Id);
7432
7433             if Is_Private_Type (Id)
7434               and then Present (Full_View (Id))
7435             then
7436                Set_Is_Potentially_Use_Visible (Full_View (Id));
7437             end if;
7438          end if;
7439
7440          <<Next_Usable_Entity>>
7441             Next_Entity (Id);
7442       end loop;
7443
7444       --  Child units are also made use-visible by a use clause, but they may
7445       --  appear after all visible declarations in the parent entity list.
7446
7447       while Present (Id) loop
7448          if Is_Child_Unit (Id)
7449            and then Is_Visible_Child_Unit (Id)
7450          then
7451             Set_Is_Potentially_Use_Visible (Id);
7452          end if;
7453
7454          Next_Entity (Id);
7455       end loop;
7456
7457       if Chars (Real_P) = Name_System
7458         and then Scope (Real_P) = Standard_Standard
7459         and then Present_System_Aux (N)
7460       then
7461          Use_One_Package (System_Aux_Id, N);
7462       end if;
7463
7464    end Use_One_Package;
7465
7466    ------------------
7467    -- Use_One_Type --
7468    ------------------
7469
7470    procedure Use_One_Type (Id : Node_Id) is
7471       Elmt          : Elmt_Id;
7472       Is_Known_Used : Boolean;
7473       Op_List       : Elist_Id;
7474       T             : Entity_Id;
7475
7476       function Spec_Reloaded_For_Body return Boolean;
7477       --  Determine whether the compilation unit is a package body and the use
7478       --  type clause is in the spec of the same package. Even though the spec
7479       --  was analyzed first, its context is reloaded when analysing the body.
7480
7481       ----------------------------
7482       -- Spec_Reloaded_For_Body --
7483       ----------------------------
7484
7485       function Spec_Reloaded_For_Body return Boolean is
7486       begin
7487          if Nkind (Unit (Cunit (Current_Sem_Unit))) = N_Package_Body then
7488             declare
7489                Spec : constant Node_Id :=
7490                         Parent (List_Containing (Parent (Id)));
7491             begin
7492                return
7493                  Nkind (Spec) = N_Package_Specification
7494                    and then Corresponding_Body (Parent (Spec)) =
7495                               Cunit_Entity (Current_Sem_Unit);
7496             end;
7497          end if;
7498
7499          return False;
7500       end Spec_Reloaded_For_Body;
7501
7502    --  Start of processing for Use_One_Type;
7503
7504    begin
7505       --  It is the type determined by the subtype mark (8.4(8)) whose
7506       --  operations become potentially use-visible.
7507
7508       T := Base_Type (Entity (Id));
7509
7510       --  Either the type itself is used, the package where it is declared
7511       --  is in use or the entity is declared in the current package, thus
7512       --  use-visible.
7513
7514       Is_Known_Used :=
7515         In_Use (T)
7516           or else In_Use (Scope (T))
7517           or else Scope (T) = Current_Scope;
7518
7519       Set_Redundant_Use (Id,
7520         Is_Known_Used or else Is_Potentially_Use_Visible (T));
7521
7522       if Ekind (T) = E_Incomplete_Type then
7523          Error_Msg_N ("premature usage of incomplete type", Id);
7524
7525       elsif In_Open_Scopes (Scope (T)) then
7526          null;
7527
7528       --  A limited view cannot appear in a use_type clause. However, an access
7529       --  type whose designated type is limited has the flag but is not itself
7530       --  a limited view unless we only have a limited view of its enclosing
7531       --  package.
7532
7533       elsif From_With_Type (T)
7534         and then From_With_Type (Scope (T))
7535       then
7536          Error_Msg_N
7537            ("incomplete type from limited view "
7538              & "cannot appear in use clause", Id);
7539
7540       --  If the subtype mark designates a subtype in a different package,
7541       --  we have to check that the parent type is visible, otherwise the
7542       --  use type clause is a noop. Not clear how to do that???
7543
7544       elsif not Redundant_Use (Id) then
7545          Set_In_Use (T);
7546
7547          --  If T is tagged, primitive operators on class-wide operands
7548          --  are also available.
7549
7550          if Is_Tagged_Type (T) then
7551             Set_In_Use (Class_Wide_Type (T));
7552          end if;
7553
7554          Set_Current_Use_Clause (T, Parent (Id));
7555          Op_List := Collect_Primitive_Operations (T);
7556
7557          Elmt := First_Elmt (Op_List);
7558          while Present (Elmt) loop
7559             if (Nkind (Node (Elmt)) = N_Defining_Operator_Symbol
7560                  or else Chars (Node (Elmt)) in Any_Operator_Name)
7561               and then not Is_Hidden (Node (Elmt))
7562             then
7563                Set_Is_Potentially_Use_Visible (Node (Elmt));
7564             end if;
7565
7566             Next_Elmt (Elmt);
7567          end loop;
7568       end if;
7569
7570       --  If warning on redundant constructs, check for unnecessary WITH
7571
7572       if Warn_On_Redundant_Constructs
7573         and then Is_Known_Used
7574
7575          --                     with P;         with P; use P;
7576          --    package P is     package X is    package body X is
7577          --       type T ...       use P.T;
7578
7579          --  The compilation unit is the body of X. GNAT first compiles the
7580          --  spec of X, then proceeds to the body. At that point P is marked
7581          --  as use visible. The analysis then reinstalls the spec along with
7582          --  its context. The use clause P.T is now recognized as redundant,
7583          --  but in the wrong context. Do not emit a warning in such cases.
7584          --  Do not emit a warning either if we are in an instance, there is
7585          --  no redundancy between an outer use_clause and one that appears
7586          --  within the generic.
7587
7588         and then not Spec_Reloaded_For_Body
7589         and then not In_Instance
7590       then
7591          --  The type already has a use clause
7592
7593          if In_Use (T) then
7594
7595             --  Case where we know the current use clause for the type
7596
7597             if Present (Current_Use_Clause (T)) then
7598                Use_Clause_Known : declare
7599                   Clause1 : constant Node_Id := Parent (Id);
7600                   Clause2 : constant Node_Id := Current_Use_Clause (T);
7601                   Ent1    : Entity_Id;
7602                   Ent2    : Entity_Id;
7603                   Err_No  : Node_Id;
7604                   Unit1   : Node_Id;
7605                   Unit2   : Node_Id;
7606
7607                   function Entity_Of_Unit (U : Node_Id) return Entity_Id;
7608                   --  Return the appropriate entity for determining which unit
7609                   --  has a deeper scope: the defining entity for U, unless U
7610                   --  is a package instance, in which case we retrieve the
7611                   --  entity of the instance spec.
7612
7613                   --------------------
7614                   -- Entity_Of_Unit --
7615                   --------------------
7616
7617                   function Entity_Of_Unit (U : Node_Id) return Entity_Id is
7618                   begin
7619                      if Nkind (U) =  N_Package_Instantiation
7620                        and then Analyzed (U)
7621                      then
7622                         return Defining_Entity (Instance_Spec (U));
7623                      else
7624                         return Defining_Entity (U);
7625                      end if;
7626                   end Entity_Of_Unit;
7627
7628                --  Start of processing for Use_Clause_Known
7629
7630                begin
7631                   --  If both current use type clause and the use type clause
7632                   --  for the type are at the compilation unit level, one of
7633                   --  the units must be an ancestor of the other, and the
7634                   --  warning belongs on the descendant.
7635
7636                   if Nkind (Parent (Clause1)) = N_Compilation_Unit
7637                        and then
7638                      Nkind (Parent (Clause2)) = N_Compilation_Unit
7639                   then
7640
7641                      --  If the unit is a subprogram body that acts as spec,
7642                      --  the context clause is shared with the constructed
7643                      --  subprogram spec. Clearly there is no redundancy.
7644
7645                      if Clause1 = Clause2 then
7646                         return;
7647                      end if;
7648
7649                      Unit1 := Unit (Parent (Clause1));
7650                      Unit2 := Unit (Parent (Clause2));
7651
7652                      --  If both clauses are on same unit, or one is the body
7653                      --  of the other, or one of them is in a subunit, report
7654                      --  redundancy on the later one.
7655
7656                      if Unit1 = Unit2 then
7657                         Error_Msg_Sloc := Sloc (Current_Use_Clause (T));
7658                         Error_Msg_NE -- CODEFIX
7659                           ("& is already use-visible through previous "
7660                            & "use_type_clause #?", Clause1, T);
7661                         return;
7662
7663                      elsif Nkind (Unit1) = N_Subunit then
7664                         Error_Msg_Sloc := Sloc (Current_Use_Clause (T));
7665                         Error_Msg_NE -- CODEFIX
7666                           ("& is already use-visible through previous "
7667                            & "use_type_clause #?", Clause1, T);
7668                         return;
7669
7670                      elsif Nkind_In (Unit2, N_Package_Body, N_Subprogram_Body)
7671                        and then Nkind (Unit1) /= Nkind (Unit2)
7672                        and then Nkind (Unit1) /= N_Subunit
7673                      then
7674                         Error_Msg_Sloc := Sloc (Clause1);
7675                         Error_Msg_NE -- CODEFIX
7676                           ("& is already use-visible through previous "
7677                            & "use_type_clause #?", Current_Use_Clause (T), T);
7678                         return;
7679                      end if;
7680
7681                      --  There is a redundant use type clause in a child unit.
7682                      --  Determine which of the units is more deeply nested.
7683                      --  If a unit is a package instance, retrieve the entity
7684                      --  and its scope from the instance spec.
7685
7686                      Ent1 := Entity_Of_Unit (Unit1);
7687                      Ent2 := Entity_Of_Unit (Unit2);
7688
7689                      if Scope (Ent2) = Standard_Standard  then
7690                         Error_Msg_Sloc := Sloc (Current_Use_Clause (T));
7691                         Err_No := Clause1;
7692
7693                      elsif Scope (Ent1) = Standard_Standard then
7694                         Error_Msg_Sloc := Sloc (Id);
7695                         Err_No := Clause2;
7696
7697                      --  If both units are child units, we determine which one
7698                      --  is the descendant by the scope distance to the
7699                      --  ultimate parent unit.
7700
7701                      else
7702                         declare
7703                            S1, S2 : Entity_Id;
7704
7705                         begin
7706                            S1 := Scope (Ent1);
7707                            S2 := Scope (Ent2);
7708                            while Present (S1)
7709                              and then Present (S2)
7710                              and then S1 /= Standard_Standard
7711                              and then S2 /= Standard_Standard
7712                            loop
7713                               S1 := Scope (S1);
7714                               S2 := Scope (S2);
7715                            end loop;
7716
7717                            if S1 = Standard_Standard then
7718                               Error_Msg_Sloc := Sloc (Id);
7719                               Err_No := Clause2;
7720                            else
7721                               Error_Msg_Sloc := Sloc (Current_Use_Clause (T));
7722                               Err_No := Clause1;
7723                            end if;
7724                         end;
7725                      end if;
7726
7727                      Error_Msg_NE -- CODEFIX
7728                        ("& is already use-visible through previous "
7729                         & "use_type_clause #?", Err_No, Id);
7730
7731                   --  Case where current use type clause and the use type
7732                   --  clause for the type are not both at the compilation unit
7733                   --  level. In this case we don't have location information.
7734
7735                   else
7736                      Error_Msg_NE -- CODEFIX
7737                        ("& is already use-visible through previous "
7738                         & "use type clause?", Id, T);
7739                   end if;
7740                end Use_Clause_Known;
7741
7742             --  Here if Current_Use_Clause is not set for T, another case
7743             --  where we do not have the location information available.
7744
7745             else
7746                Error_Msg_NE -- CODEFIX
7747                  ("& is already use-visible through previous "
7748                   & "use type clause?", Id, T);
7749             end if;
7750
7751          --  The package where T is declared is already used
7752
7753          elsif In_Use (Scope (T)) then
7754             Error_Msg_Sloc := Sloc (Current_Use_Clause (Scope (T)));
7755             Error_Msg_NE -- CODEFIX
7756               ("& is already use-visible through package use clause #?",
7757                Id, T);
7758
7759          --  The current scope is the package where T is declared
7760
7761          else
7762             Error_Msg_Node_2 := Scope (T);
7763             Error_Msg_NE -- CODEFIX
7764               ("& is already use-visible inside package &?", Id, T);
7765          end if;
7766       end if;
7767    end Use_One_Type;
7768
7769    ----------------
7770    -- Write_Info --
7771    ----------------
7772
7773    procedure Write_Info is
7774       Id : Entity_Id := First_Entity (Current_Scope);
7775
7776    begin
7777       --  No point in dumping standard entities
7778
7779       if Current_Scope = Standard_Standard then
7780          return;
7781       end if;
7782
7783       Write_Str ("========================================================");
7784       Write_Eol;
7785       Write_Str ("        Defined Entities in ");
7786       Write_Name (Chars (Current_Scope));
7787       Write_Eol;
7788       Write_Str ("========================================================");
7789       Write_Eol;
7790
7791       if No (Id) then
7792          Write_Str ("-- none --");
7793          Write_Eol;
7794
7795       else
7796          while Present (Id) loop
7797             Write_Entity_Info (Id, " ");
7798             Next_Entity (Id);
7799          end loop;
7800       end if;
7801
7802       if Scope (Current_Scope) = Standard_Standard then
7803
7804          --  Print information on the current unit itself
7805
7806          Write_Entity_Info (Current_Scope, " ");
7807       end if;
7808
7809       Write_Eol;
7810    end Write_Info;
7811
7812    --------
7813    -- ws --
7814    --------
7815
7816    procedure ws is
7817       S : Entity_Id;
7818    begin
7819       for J in reverse 1 .. Scope_Stack.Last loop
7820          S :=  Scope_Stack.Table (J).Entity;
7821          Write_Int (Int (S));
7822          Write_Str (" === ");
7823          Write_Name (Chars (S));
7824          Write_Eol;
7825       end loop;
7826    end ws;
7827
7828 end Sem_Ch8;