OSDN Git Service

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