OSDN Git Service

gcc/ada/
[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 Input and Output stream functions
1725
1726          if Nkind (Unit_Declaration_Node (Rename_Spec)) =
1727                                      N_Abstract_Subprogram_Declaration
1728          then
1729             --  Input and Output stream functions are abstract if the object
1730             --  type is abstract. However, these functions may receive explicit
1731             --  declarations in representation clauses, making the attribute
1732             --  subprograms usable  as defaults in subsequent type extensions.
1733             --  In this case we rewrite the declaration to make the subprogram
1734             --  non-abstract. We remove the previous declaration, and insert
1735             --  the new one at the point of the renaming, to prevent premature
1736             --  access to unfrozen types. The new declaration reuses the
1737             --  specification of the previous one, and must not be analyzed.
1738
1739             pragma Assert (Is_TSS (Rename_Spec, TSS_Stream_Output)
1740                            or else Is_TSS (Rename_Spec, TSS_Stream_Input));
1741
1742             declare
1743                Old_Decl : constant Node_Id :=
1744                             Unit_Declaration_Node (Rename_Spec);
1745                New_Decl : constant Node_Id :=
1746                             Make_Subprogram_Declaration (Sloc (N),
1747                               Specification =>
1748                                 Relocate_Node (Specification (Old_Decl)));
1749             begin
1750                Remove (Old_Decl);
1751                Insert_After (N, New_Decl);
1752                Set_Is_Abstract_Subprogram (Rename_Spec, False);
1753                Set_Analyzed (New_Decl);
1754             end;
1755          end if;
1756
1757          Set_Corresponding_Body (Unit_Declaration_Node (Rename_Spec), New_S);
1758
1759          if Ada_Version = Ada_83 and then Comes_From_Source (N) then
1760             Error_Msg_N ("(Ada 83) renaming cannot serve as a body", N);
1761          end if;
1762
1763          Set_Convention (New_S, Convention (Rename_Spec));
1764          Check_Fully_Conformant (New_S, Rename_Spec);
1765          Set_Public_Status (New_S);
1766
1767          --  The specification does not introduce new formals, but only
1768          --  repeats the formals of the original subprogram declaration.
1769          --  For cross-reference purposes, and for refactoring tools, we
1770          --  treat the formals of the renaming declaration as body formals.
1771
1772          Reference_Body_Formals (Rename_Spec, New_S);
1773
1774          --  Indicate that the entity in the declaration functions like the
1775          --  corresponding body, and is not a new entity. The body will be
1776          --  constructed later at the freeze point, so indicate that the
1777          --  completion has not been seen yet.
1778
1779          Set_Ekind (New_S, E_Subprogram_Body);
1780          New_S := Rename_Spec;
1781          Set_Has_Completion (Rename_Spec, False);
1782
1783          --  Ada 2005: check overriding indicator
1784
1785          if Must_Override (Specification (N))
1786            and then not Is_Overriding_Operation (Rename_Spec)
1787          then
1788             Error_Msg_NE ("subprogram& is not overriding", N, Rename_Spec);
1789
1790          elsif Must_Not_Override (Specification (N))
1791            and then Is_Overriding_Operation (Rename_Spec)
1792          then
1793             Error_Msg_NE
1794               ("subprogram& overrides inherited operation", N, Rename_Spec);
1795          end if;
1796
1797       --  Normal subprogram renaming (not renaming as body)
1798
1799       else
1800          Generate_Definition (New_S);
1801          New_Overloaded_Entity (New_S);
1802
1803          if Is_Entity_Name (Nam)
1804            and then Is_Intrinsic_Subprogram (Entity (Nam))
1805          then
1806             null;
1807          else
1808             Check_Delayed_Subprogram (New_S);
1809          end if;
1810       end if;
1811
1812       --  There is no need for elaboration checks on the new entity, which may
1813       --  be called before the next freezing point where the body will appear.
1814       --  Elaboration checks refer to the real entity, not the one created by
1815       --  the renaming declaration.
1816
1817       Set_Kill_Elaboration_Checks (New_S, True);
1818
1819       if Etype (Nam) = Any_Type then
1820          Set_Has_Completion (New_S);
1821          return;
1822
1823       elsif Nkind (Nam) = N_Selected_Component then
1824
1825          --  A prefix of the form  A.B can designate an entry of task A, a
1826          --  protected operation of protected object A, or finally a primitive
1827          --  operation of object A. In the later case, A is an object of some
1828          --  tagged type, or an access type that denotes one such. To further
1829          --  distinguish these cases, note that the scope of a task entry or
1830          --  protected operation is type of the prefix.
1831
1832          --  The prefix could be an overloaded function call that returns both
1833          --  kinds of operations. This overloading pathology is left to the
1834          --  dedicated reader ???
1835
1836          declare
1837             T : constant Entity_Id := Etype (Prefix (Nam));
1838
1839          begin
1840             if Present (T)
1841               and then
1842                 (Is_Tagged_Type (T)
1843                   or else
1844                     (Is_Access_Type (T)
1845                       and then
1846                         Is_Tagged_Type (Designated_Type (T))))
1847               and then Scope (Entity (Selector_Name (Nam))) /= T
1848             then
1849                Analyze_Renamed_Primitive_Operation
1850                  (N, New_S, Present (Rename_Spec));
1851                return;
1852
1853             else
1854                --  Renamed entity is an entry or protected operation. For those
1855                --  cases an explicit body is built (at the point of freezing of
1856                --  this entity) that contains a call to the renamed entity.
1857
1858                --  This is not allowed for renaming as body if the renamed
1859                --  spec is already frozen (see RM 8.5.4(5) for details).
1860
1861                if Present (Rename_Spec)
1862                  and then Is_Frozen (Rename_Spec)
1863                then
1864                   Error_Msg_N
1865                     ("renaming-as-body cannot rename entry as subprogram", N);
1866                   Error_Msg_NE
1867                     ("\since & is already frozen (RM 8.5.4(5))",
1868                      N, Rename_Spec);
1869                else
1870                   Analyze_Renamed_Entry (N, New_S, Present (Rename_Spec));
1871                end if;
1872
1873                return;
1874             end if;
1875          end;
1876
1877       elsif Nkind (Nam) = N_Explicit_Dereference then
1878
1879          --  Renamed entity is designated by access_to_subprogram expression.
1880          --  Must build body to encapsulate call, as in the entry case.
1881
1882          Analyze_Renamed_Dereference (N, New_S, Present (Rename_Spec));
1883          return;
1884
1885       elsif Nkind (Nam) = N_Indexed_Component then
1886          Analyze_Renamed_Family_Member (N, New_S, Present (Rename_Spec));
1887          return;
1888
1889       elsif Nkind (Nam) = N_Character_Literal then
1890          Analyze_Renamed_Character (N, New_S, Present (Rename_Spec));
1891          return;
1892
1893       elsif (not Is_Entity_Name (Nam)
1894               and then Nkind (Nam) /= N_Operator_Symbol)
1895         or else not Is_Overloadable (Entity (Nam))
1896       then
1897          Error_Msg_N ("expect valid subprogram name in renaming", N);
1898          return;
1899       end if;
1900
1901       --  Find the renamed entity that matches the given specification. Disable
1902       --  Ada_83 because there is no requirement of full conformance between
1903       --  renamed entity and new entity, even though the same circuit is used.
1904
1905       --  This is a bit of a kludge, which introduces a really irregular use of
1906       --  Ada_Version[_Explicit]. Would be nice to find cleaner way to do this
1907       --  ???
1908
1909       Ada_Version := Ada_Version_Type'Max (Ada_Version, Ada_95);
1910       Ada_Version_Explicit := Ada_Version;
1911
1912       if No (Old_S) then
1913          Old_S := Find_Renamed_Entity (N, Name (N), New_S, Is_Actual);
1914
1915          --  When the renamed subprogram is overloaded and used as an actual
1916          --  of a generic, its entity is set to the first available homonym.
1917          --  We must first disambiguate the name, then set the proper entity.
1918
1919          if Is_Actual
1920            and then Is_Overloaded (Nam)
1921          then
1922             Set_Entity (Nam, Old_S);
1923          end if;
1924       end if;
1925
1926       --  Most common case: subprogram renames subprogram. No body is generated
1927       --  in this case, so we must indicate the declaration is complete as is.
1928
1929       if No (Rename_Spec) then
1930          Set_Has_Completion   (New_S);
1931          Set_Is_Pure          (New_S, Is_Pure          (Entity (Nam)));
1932          Set_Is_Preelaborated (New_S, Is_Preelaborated (Entity (Nam)));
1933
1934          --  Ada 2005 (AI-423): Check the consistency of null exclusions
1935          --  between a subprogram and its correct renaming.
1936
1937          --  Note: the Any_Id check is a guard that prevents compiler crashes
1938          --  when performing a null exclusion check between a renaming and a
1939          --  renamed subprogram that has been found to be illegal.
1940
1941          if Ada_Version >= Ada_05
1942            and then Entity (Nam) /= Any_Id
1943          then
1944             Check_Null_Exclusion
1945               (Ren => New_S,
1946                Sub => Entity (Nam));
1947          end if;
1948
1949          --  Enforce the Ada 2005 rule that the renamed entity cannot require
1950          --  overriding. The flag Requires_Overriding is set very selectively
1951          --  and misses some other illegal cases. The additional conditions
1952          --  checked below are sufficient but not necessary ???
1953
1954          --  The rule does not apply to the renaming generated for an actual
1955          --  subprogram in an instance.
1956
1957          if Is_Actual then
1958             null;
1959
1960          --  Guard against previous errors, and omit renamings of predefined
1961          --  operators.
1962
1963          elsif Ekind (Old_S) /= E_Function
1964            and then Ekind (Old_S) /= E_Procedure
1965          then
1966             null;
1967
1968          elsif Requires_Overriding (Old_S)
1969            or else
1970               (Is_Abstract_Subprogram (Old_S)
1971                  and then Present (Find_Dispatching_Type (Old_S))
1972                  and then
1973                    not Is_Abstract_Type (Find_Dispatching_Type (Old_S)))
1974          then
1975             Error_Msg_N
1976               ("renamed entity cannot be "
1977                & "subprogram that requires overriding (RM 8.5.4 (5.1))", N);
1978          end if;
1979       end if;
1980
1981       if Old_S /= Any_Id then
1982          if Is_Actual
1983            and then From_Default (N)
1984          then
1985             --  This is an implicit reference to the default actual
1986
1987             Generate_Reference (Old_S, Nam, Typ => 'i', Force => True);
1988          else
1989             Generate_Reference (Old_S, Nam);
1990          end if;
1991
1992          --  For a renaming-as-body, require subtype conformance, but if the
1993          --  declaration being completed has not been frozen, then inherit the
1994          --  convention of the renamed subprogram prior to checking conformance
1995          --  (unless the renaming has an explicit convention established; the
1996          --  rule stated in the RM doesn't seem to address this ???).
1997
1998          if Present (Rename_Spec) then
1999             Generate_Reference (Rename_Spec, Defining_Entity (Spec), 'b');
2000             Style.Check_Identifier (Defining_Entity (Spec), Rename_Spec);
2001
2002             if not Is_Frozen (Rename_Spec) then
2003                if not Has_Convention_Pragma (Rename_Spec) then
2004                   Set_Convention (New_S, Convention (Old_S));
2005                end if;
2006
2007                if Ekind (Old_S) /= E_Operator then
2008                   Check_Mode_Conformant (New_S, Old_S, Spec);
2009                end if;
2010
2011                if Original_Subprogram (Old_S) = Rename_Spec then
2012                   Error_Msg_N ("unfrozen subprogram cannot rename itself ", N);
2013                end if;
2014             else
2015                Check_Subtype_Conformant (New_S, Old_S, Spec);
2016             end if;
2017
2018             Check_Frozen_Renaming (N, Rename_Spec);
2019
2020             --  Check explicitly that renamed entity is not intrinsic, because
2021             --  in in a generic the renamed body is not built. In this case,
2022             --  the renaming_as_body is a completion.
2023
2024             if Inside_A_Generic then
2025                if Is_Frozen (Rename_Spec)
2026                  and then Is_Intrinsic_Subprogram (Old_S)
2027                then
2028                   Error_Msg_N
2029                     ("subprogram in renaming_as_body cannot be intrinsic",
2030                        Name (N));
2031                end if;
2032
2033                Set_Has_Completion (Rename_Spec);
2034             end if;
2035
2036          elsif Ekind (Old_S) /= E_Operator then
2037             Check_Mode_Conformant (New_S, Old_S);
2038
2039             if Is_Actual
2040               and then Error_Posted (New_S)
2041             then
2042                Error_Msg_NE ("invalid actual subprogram: & #!", N, Old_S);
2043             end if;
2044          end if;
2045
2046          if No (Rename_Spec) then
2047
2048             --  The parameter profile of the new entity is that of the renamed
2049             --  entity: the subtypes given in the specification are irrelevant.
2050
2051             Inherit_Renamed_Profile (New_S, Old_S);
2052
2053             --  A call to the subprogram is transformed into a call to the
2054             --  renamed entity. This is transitive if the renamed entity is
2055             --  itself a renaming.
2056
2057             if Present (Alias (Old_S)) then
2058                Set_Alias (New_S, Alias (Old_S));
2059             else
2060                Set_Alias (New_S, Old_S);
2061             end if;
2062
2063             --  Note that we do not set Is_Intrinsic_Subprogram if we have a
2064             --  renaming as body, since the entity in this case is not an
2065             --  intrinsic (it calls an intrinsic, but we have a real body for
2066             --  this call, and it is in this body that the required intrinsic
2067             --  processing will take place).
2068
2069             --  Also, if this is a renaming of inequality, the renamed operator
2070             --  is intrinsic, but what matters is the corresponding equality
2071             --  operator, which may be user-defined.
2072
2073             Set_Is_Intrinsic_Subprogram
2074               (New_S,
2075                 Is_Intrinsic_Subprogram (Old_S)
2076                   and then
2077                     (Chars (Old_S) /= Name_Op_Ne
2078                        or else Ekind (Old_S) = E_Operator
2079                        or else
2080                          Is_Intrinsic_Subprogram
2081                             (Corresponding_Equality (Old_S))));
2082
2083             if Ekind (Alias (New_S)) = E_Operator then
2084                Set_Has_Delayed_Freeze (New_S, False);
2085             end if;
2086
2087             --  If the renaming corresponds to an association for an abstract
2088             --  formal subprogram, then various attributes must be set to
2089             --  indicate that the renaming is an abstract dispatching operation
2090             --  with a controlling type.
2091
2092             if Is_Actual and then Is_Abstract_Subprogram (Formal_Spec) then
2093
2094                --  Mark the renaming as abstract here, so Find_Dispatching_Type
2095                --  see it as corresponding to a generic association for a
2096                --  formal abstract subprogram
2097
2098                Set_Is_Abstract_Subprogram (New_S);
2099
2100                declare
2101                   New_S_Ctrl_Type : constant Entity_Id :=
2102                                       Find_Dispatching_Type (New_S);
2103                   Old_S_Ctrl_Type : constant Entity_Id :=
2104                                       Find_Dispatching_Type (Old_S);
2105
2106                begin
2107                   if Old_S_Ctrl_Type /= New_S_Ctrl_Type then
2108                      Error_Msg_NE
2109                        ("actual must be dispatching subprogram for type&",
2110                         Nam, New_S_Ctrl_Type);
2111
2112                   else
2113                      Set_Is_Dispatching_Operation (New_S);
2114                      Check_Controlling_Formals (New_S_Ctrl_Type, New_S);
2115
2116                      --  If the actual in the formal subprogram is itself a
2117                      --  formal abstract subprogram association, there's no
2118                      --  dispatch table component or position to inherit.
2119
2120                      if Present (DTC_Entity (Old_S)) then
2121                         Set_DTC_Entity  (New_S, DTC_Entity (Old_S));
2122                         Set_DT_Position (New_S, DT_Position (Old_S));
2123                      end if;
2124                   end if;
2125                end;
2126             end if;
2127          end if;
2128
2129          if not Is_Actual
2130            and then (Old_S = New_S
2131                       or else (Nkind (Nam) /= N_Expanded_Name
2132                         and then  Chars (Old_S) = Chars (New_S)))
2133          then
2134             Error_Msg_N ("subprogram cannot rename itself", N);
2135          end if;
2136
2137          Set_Convention (New_S, Convention (Old_S));
2138
2139          if Is_Abstract_Subprogram (Old_S) then
2140             if Present (Rename_Spec) then
2141                Error_Msg_N
2142                  ("a renaming-as-body cannot rename an abstract subprogram",
2143                   N);
2144                Set_Has_Completion (Rename_Spec);
2145             else
2146                Set_Is_Abstract_Subprogram (New_S);
2147             end if;
2148          end if;
2149
2150          Check_Library_Unit_Renaming (N, Old_S);
2151
2152          --  Pathological case: procedure renames entry in the scope of its
2153          --  task. Entry is given by simple name, but body must be built for
2154          --  procedure. Of course if called it will deadlock.
2155
2156          if Ekind (Old_S) = E_Entry then
2157             Set_Has_Completion (New_S, False);
2158             Set_Alias (New_S, Empty);
2159          end if;
2160
2161          if Is_Actual then
2162             Freeze_Before (N, Old_S);
2163             Set_Has_Delayed_Freeze (New_S, False);
2164             Freeze_Before (N, New_S);
2165
2166             --  An abstract subprogram is only allowed as an actual in the case
2167             --  where the formal subprogram is also abstract.
2168
2169             if (Ekind (Old_S) = E_Procedure or else Ekind (Old_S) = E_Function)
2170               and then Is_Abstract_Subprogram (Old_S)
2171               and then not Is_Abstract_Subprogram (Formal_Spec)
2172             then
2173                Error_Msg_N
2174                  ("abstract subprogram not allowed as generic actual", Nam);
2175             end if;
2176          end if;
2177
2178       else
2179          --  A common error is to assume that implicit operators for types are
2180          --  defined in Standard, or in the scope of a subtype. In those cases
2181          --  where the renamed entity is given with an expanded name, it is
2182          --  worth mentioning that operators for the type are not declared in
2183          --  the scope given by the prefix.
2184
2185          if Nkind (Nam) = N_Expanded_Name
2186            and then Nkind (Selector_Name (Nam)) = N_Operator_Symbol
2187            and then Scope (Entity (Nam)) = Standard_Standard
2188          then
2189             declare
2190                T : constant Entity_Id :=
2191                      Base_Type (Etype (First_Formal (New_S)));
2192             begin
2193                Error_Msg_Node_2 := Prefix (Nam);
2194                Error_Msg_NE
2195                  ("operator for type& is not declared in&", Prefix (Nam), T);
2196             end;
2197
2198          else
2199             Error_Msg_NE
2200               ("no visible subprogram matches the specification for&",
2201                 Spec, New_S);
2202          end if;
2203
2204          if Present (Candidate_Renaming) then
2205             declare
2206                F1 : Entity_Id;
2207                F2 : Entity_Id;
2208
2209             begin
2210                F1 := First_Formal (Candidate_Renaming);
2211                F2 := First_Formal (New_S);
2212
2213                while Present (F1) and then Present (F2) loop
2214                   Next_Formal (F1);
2215                   Next_Formal (F2);
2216                end loop;
2217
2218                if Present (F1) and then Present (Default_Value (F1)) then
2219                   if Present (Next_Formal (F1)) then
2220                      Error_Msg_NE
2221                        ("\missing specification for &" &
2222                           " and other formals with defaults", Spec, F1);
2223                   else
2224                      Error_Msg_NE
2225                     ("\missing specification for &", Spec, F1);
2226                   end if;
2227                end if;
2228             end;
2229          end if;
2230       end if;
2231
2232       --  Ada 2005 AI 404: if the new subprogram is dispatching, verify that
2233       --  controlling access parameters are known non-null for the renamed
2234       --  subprogram. Test also applies to a subprogram instantiation that
2235       --  is dispatching. Test is skipped if some previous error was detected
2236       --  that set Old_S to Any_Id.
2237
2238       if Ada_Version >= Ada_05
2239         and then Old_S /= Any_Id
2240         and then not Is_Dispatching_Operation (Old_S)
2241         and then Is_Dispatching_Operation (New_S)
2242       then
2243          declare
2244             Old_F : Entity_Id;
2245             New_F : Entity_Id;
2246
2247          begin
2248             Old_F := First_Formal (Old_S);
2249             New_F := First_Formal (New_S);
2250             while Present (Old_F) loop
2251                if Ekind (Etype (Old_F)) = E_Anonymous_Access_Type
2252                  and then Is_Controlling_Formal (New_F)
2253                  and then not Can_Never_Be_Null (Old_F)
2254                then
2255                   Error_Msg_N ("access parameter is controlling,", New_F);
2256                   Error_Msg_NE
2257                     ("\corresponding parameter of& "
2258                      & "must be explicitly null excluding", New_F, Old_S);
2259                end if;
2260
2261                Next_Formal (Old_F);
2262                Next_Formal (New_F);
2263             end loop;
2264          end;
2265       end if;
2266
2267       --  A useful warning, suggested by Ada Bug Finder (Ada-Europe 2005)
2268
2269       if Comes_From_Source (N)
2270         and then Present (Old_S)
2271         and then Nkind (Old_S) = N_Defining_Operator_Symbol
2272         and then Nkind (New_S) = N_Defining_Operator_Symbol
2273         and then Chars (Old_S) /= Chars (New_S)
2274       then
2275          Error_Msg_NE
2276            ("?& is being renamed as a different operator",
2277              New_S, Old_S);
2278       end if;
2279
2280       --  Another warning or some utility: if the new subprogram as the same
2281       --  name as the old one, the old one is not hidden by an outer homograph,
2282       --  the new one is not a public symbol, and the old one is otherwise
2283       --  directly visible, the renaming is superfluous.
2284
2285       if Chars (Old_S) = Chars (New_S)
2286         and then Comes_From_Source (N)
2287         and then Scope (Old_S) /= Standard_Standard
2288         and then Warn_On_Redundant_Constructs
2289         and then
2290           (Is_Immediately_Visible (Old_S)
2291             or else Is_Potentially_Use_Visible (Old_S))
2292         and then Is_Overloadable (Current_Scope)
2293         and then Chars (Current_Scope) /= Chars (Old_S)
2294       then
2295          Error_Msg_N
2296           ("?redundant renaming, entity is directly visible", Name (N));
2297       end if;
2298
2299       Ada_Version := Save_AV;
2300       Ada_Version_Explicit := Save_AV_Exp;
2301    end Analyze_Subprogram_Renaming;
2302
2303    -------------------------
2304    -- Analyze_Use_Package --
2305    -------------------------
2306
2307    --  Resolve the package names in the use clause, and make all the visible
2308    --  entities defined in the package potentially use-visible. If the package
2309    --  is already in use from a previous use clause, its visible entities are
2310    --  already use-visible. In that case, mark the occurrence as a redundant
2311    --  use. If the package is an open scope, i.e. if the use clause occurs
2312    --  within the package itself, ignore it.
2313
2314    procedure Analyze_Use_Package (N : Node_Id) is
2315       Pack_Name : Node_Id;
2316       Pack      : Entity_Id;
2317
2318    --  Start of processing for Analyze_Use_Package
2319
2320    begin
2321       Set_Hidden_By_Use_Clause (N, No_Elist);
2322
2323       --  Use clause is not allowed in a spec of a predefined package
2324       --  declaration except that packages whose file name starts a-n are OK
2325       --  (these are children of Ada.Numerics, and such packages are never
2326       --  loaded by Rtsfind).
2327
2328       if Is_Predefined_File_Name (Unit_File_Name (Current_Sem_Unit))
2329         and then Name_Buffer (1 .. 3) /= "a-n"
2330         and then
2331           Nkind (Unit (Cunit (Current_Sem_Unit))) = N_Package_Declaration
2332       then
2333          Error_Msg_N ("use clause not allowed in predefined spec", N);
2334       end if;
2335
2336       --  Chain clause to list of use clauses in current scope
2337
2338       if Nkind (Parent (N)) /= N_Compilation_Unit then
2339          Chain_Use_Clause (N);
2340       end if;
2341
2342       --  Loop through package names to identify referenced packages
2343
2344       Pack_Name := First (Names (N));
2345       while Present (Pack_Name) loop
2346          Analyze (Pack_Name);
2347
2348          if Nkind (Parent (N)) = N_Compilation_Unit
2349            and then Nkind (Pack_Name) = N_Expanded_Name
2350          then
2351             declare
2352                Pref : Node_Id;
2353
2354             begin
2355                Pref := Prefix (Pack_Name);
2356                while Nkind (Pref) = N_Expanded_Name loop
2357                   Pref := Prefix (Pref);
2358                end loop;
2359
2360                if Entity (Pref) = Standard_Standard then
2361                   Error_Msg_N
2362                    ("predefined package Standard cannot appear"
2363                      & " in a context clause", Pref);
2364                end if;
2365             end;
2366          end if;
2367
2368          Next (Pack_Name);
2369       end loop;
2370
2371       --  Loop through package names to mark all entities as potentially
2372       --  use visible.
2373
2374       Pack_Name := First (Names (N));
2375       while Present (Pack_Name) loop
2376          if Is_Entity_Name (Pack_Name) then
2377             Pack := Entity (Pack_Name);
2378
2379             if Ekind (Pack) /= E_Package
2380               and then Etype (Pack) /= Any_Type
2381             then
2382                if Ekind (Pack) = E_Generic_Package then
2383                   Error_Msg_N
2384                    ("a generic package is not allowed in a use clause",
2385                       Pack_Name);
2386                else
2387                   Error_Msg_N ("& is not a usable package", Pack_Name);
2388                end if;
2389
2390             else
2391                if Nkind (Parent (N)) = N_Compilation_Unit then
2392                   Check_In_Previous_With_Clause (N, Pack_Name);
2393                end if;
2394
2395                if Applicable_Use (Pack_Name) then
2396                   Use_One_Package (Pack, N);
2397                end if;
2398             end if;
2399          end if;
2400
2401          Next (Pack_Name);
2402       end loop;
2403    end Analyze_Use_Package;
2404
2405    ----------------------
2406    -- Analyze_Use_Type --
2407    ----------------------
2408
2409    procedure Analyze_Use_Type (N : Node_Id) is
2410       E  : Entity_Id;
2411       Id : Entity_Id;
2412
2413    begin
2414       Set_Hidden_By_Use_Clause (N, No_Elist);
2415
2416       --  Chain clause to list of use clauses in current scope
2417
2418       if Nkind (Parent (N)) /= N_Compilation_Unit then
2419          Chain_Use_Clause (N);
2420       end if;
2421
2422       Id := First (Subtype_Marks (N));
2423       while Present (Id) loop
2424          Find_Type (Id);
2425          E := Entity (Id);
2426
2427          if E /= Any_Type then
2428             Use_One_Type (Id);
2429
2430             if Nkind (Parent (N)) = N_Compilation_Unit then
2431                if Nkind (Id) = N_Identifier then
2432                   Error_Msg_N ("type is not directly visible", Id);
2433
2434                elsif Is_Child_Unit (Scope (E))
2435                  and then Scope (E) /= System_Aux_Id
2436                then
2437                   Check_In_Previous_With_Clause (N, Prefix (Id));
2438                end if;
2439             end if;
2440          end if;
2441
2442          Next (Id);
2443       end loop;
2444    end Analyze_Use_Type;
2445
2446    --------------------
2447    -- Applicable_Use --
2448    --------------------
2449
2450    function Applicable_Use (Pack_Name : Node_Id) return Boolean is
2451       Pack : constant Entity_Id := Entity (Pack_Name);
2452
2453    begin
2454       if In_Open_Scopes (Pack) then
2455          if Warn_On_Redundant_Constructs
2456            and then Pack = Current_Scope
2457          then
2458             Error_Msg_NE
2459               ("& is already use-visible within itself?", Pack_Name, Pack);
2460          end if;
2461
2462          return False;
2463
2464       elsif In_Use (Pack) then
2465          Note_Redundant_Use (Pack_Name);
2466          return False;
2467
2468       elsif Present (Renamed_Object (Pack))
2469         and then In_Use (Renamed_Object (Pack))
2470       then
2471          Note_Redundant_Use (Pack_Name);
2472          return False;
2473
2474       else
2475          return True;
2476       end if;
2477    end Applicable_Use;
2478
2479    ------------------------
2480    -- Attribute_Renaming --
2481    ------------------------
2482
2483    procedure Attribute_Renaming (N : Node_Id) is
2484       Loc        : constant Source_Ptr := Sloc (N);
2485       Nam        : constant Node_Id    := Name (N);
2486       Spec       : constant Node_Id    := Specification (N);
2487       New_S      : constant Entity_Id  := Defining_Unit_Name (Spec);
2488       Aname      : constant Name_Id    := Attribute_Name (Nam);
2489
2490       Form_Num   : Nat      := 0;
2491       Expr_List  : List_Id  := No_List;
2492
2493       Attr_Node  : Node_Id;
2494       Body_Node  : Node_Id;
2495       Param_Spec : Node_Id;
2496
2497    begin
2498       Generate_Definition (New_S);
2499
2500       --  This procedure is called in the context of subprogram renaming,
2501       --  and thus the attribute must be one that is a subprogram. All of
2502       --  those have at least one formal parameter, with the singular
2503       --  exception of AST_Entry (which is a real oddity, it is odd that
2504       --  this can be renamed at all!)
2505
2506       if not Is_Non_Empty_List (Parameter_Specifications (Spec)) then
2507          if Aname /= Name_AST_Entry then
2508             Error_Msg_N
2509               ("subprogram renaming an attribute must have formals", N);
2510             return;
2511          end if;
2512
2513       else
2514          Param_Spec := First (Parameter_Specifications (Spec));
2515          while Present (Param_Spec) loop
2516             Form_Num := Form_Num + 1;
2517
2518             if Nkind (Parameter_Type (Param_Spec)) /= N_Access_Definition then
2519                Find_Type (Parameter_Type (Param_Spec));
2520
2521                --  The profile of the new entity denotes the base type (s) of
2522                --  the types given in the specification. For access parameters
2523                --  there are no subtypes involved.
2524
2525                Rewrite (Parameter_Type (Param_Spec),
2526                 New_Reference_To
2527                   (Base_Type (Entity (Parameter_Type (Param_Spec))), Loc));
2528             end if;
2529
2530             if No (Expr_List) then
2531                Expr_List := New_List;
2532             end if;
2533
2534             Append_To (Expr_List,
2535               Make_Identifier (Loc,
2536                 Chars => Chars (Defining_Identifier (Param_Spec))));
2537
2538             --  The expressions in the attribute reference are not freeze
2539             --   points. Neither is the attribute as a whole, see below.
2540
2541             Set_Must_Not_Freeze (Last (Expr_List));
2542             Next (Param_Spec);
2543          end loop;
2544       end if;
2545
2546       --  Immediate error if too many formals. Other mismatches in numbers
2547       --  of number of types of parameters are detected when we analyze the
2548       --  body of the subprogram that we construct.
2549
2550       if Form_Num > 2 then
2551          Error_Msg_N ("too many formals for attribute", N);
2552
2553       --  Error if the attribute reference has expressions that look
2554       --  like formal parameters.
2555
2556       elsif Present (Expressions (Nam)) then
2557          Error_Msg_N ("illegal expressions in attribute reference", Nam);
2558
2559       elsif
2560         Aname = Name_Compose      or else
2561         Aname = Name_Exponent     or else
2562         Aname = Name_Leading_Part or else
2563         Aname = Name_Pos          or else
2564         Aname = Name_Round        or else
2565         Aname = Name_Scaling      or else
2566         Aname = Name_Val
2567       then
2568          if Nkind (N) = N_Subprogram_Renaming_Declaration
2569            and then Present (Corresponding_Formal_Spec (N))
2570          then
2571             Error_Msg_N
2572               ("generic actual cannot be attribute involving universal type",
2573                Nam);
2574          else
2575             Error_Msg_N
2576               ("attribute involving a universal type cannot be renamed",
2577                Nam);
2578          end if;
2579       end if;
2580
2581       --  AST_Entry is an odd case. It doesn't really make much sense to
2582       --  allow it to be renamed, but that's the DEC rule, so we have to
2583       --  do it right. The point is that the AST_Entry call should be made
2584       --  now, and what the function will return is the returned value.
2585
2586       --  Note that there is no Expr_List in this case anyway
2587
2588       if Aname = Name_AST_Entry then
2589          declare
2590             Ent  : Entity_Id;
2591             Decl : Node_Id;
2592
2593          begin
2594             Ent := Make_Defining_Identifier (Loc, New_Internal_Name ('R'));
2595
2596             Decl :=
2597               Make_Object_Declaration (Loc,
2598                 Defining_Identifier => Ent,
2599                 Object_Definition =>
2600                   New_Occurrence_Of (RTE (RE_AST_Handler), Loc),
2601                 Expression => Nam,
2602                 Constant_Present => True);
2603
2604             Set_Assignment_OK (Decl, True);
2605             Insert_Action (N, Decl);
2606             Attr_Node := Make_Identifier (Loc, Chars (Ent));
2607          end;
2608
2609       --  For all other attributes, we rewrite the attribute node to have
2610       --  a list of expressions corresponding to the subprogram formals.
2611       --  A renaming declaration is not a freeze point, and the analysis of
2612       --  the attribute reference should not freeze the type of the prefix.
2613
2614       else
2615          Attr_Node :=
2616            Make_Attribute_Reference (Loc,
2617              Prefix         => Prefix (Nam),
2618              Attribute_Name => Aname,
2619              Expressions    => Expr_List);
2620
2621          Set_Must_Not_Freeze (Attr_Node);
2622          Set_Must_Not_Freeze (Prefix (Nam));
2623       end if;
2624
2625       --  Case of renaming a function
2626
2627       if Nkind (Spec) = N_Function_Specification then
2628          if Is_Procedure_Attribute_Name (Aname) then
2629             Error_Msg_N ("attribute can only be renamed as procedure", Nam);
2630             return;
2631          end if;
2632
2633          Find_Type (Result_Definition (Spec));
2634          Rewrite (Result_Definition (Spec),
2635              New_Reference_To (
2636                Base_Type (Entity (Result_Definition (Spec))), Loc));
2637
2638          Body_Node :=
2639            Make_Subprogram_Body (Loc,
2640              Specification => Spec,
2641              Declarations => New_List,
2642              Handled_Statement_Sequence =>
2643                Make_Handled_Sequence_Of_Statements (Loc,
2644                    Statements => New_List (
2645                      Make_Simple_Return_Statement (Loc,
2646                        Expression => Attr_Node))));
2647
2648       --  Case of renaming a procedure
2649
2650       else
2651          if not Is_Procedure_Attribute_Name (Aname) then
2652             Error_Msg_N ("attribute can only be renamed as function", Nam);
2653             return;
2654          end if;
2655
2656          Body_Node :=
2657            Make_Subprogram_Body (Loc,
2658              Specification => Spec,
2659              Declarations => New_List,
2660              Handled_Statement_Sequence =>
2661                Make_Handled_Sequence_Of_Statements (Loc,
2662                    Statements => New_List (Attr_Node)));
2663       end if;
2664
2665       --  In case of tagged types we add the body of the generated function to
2666       --  the freezing actions of the type (because in the general case such
2667       --  type is still not frozen). We exclude from this processing generic
2668       --  formal subprograms found in instantiations and AST_Entry renamings.
2669
2670       if not Present (Corresponding_Formal_Spec (N))
2671         and then Etype (Nam) /= RTE (RE_AST_Handler)
2672       then
2673          declare
2674             P : constant Entity_Id := Prefix (Nam);
2675
2676          begin
2677             Find_Type (P);
2678
2679             if Is_Tagged_Type (Etype (P)) then
2680                Ensure_Freeze_Node (Etype (P));
2681                Append_Freeze_Action (Etype (P), Body_Node);
2682             else
2683                Rewrite (N, Body_Node);
2684                Analyze (N);
2685                Set_Etype (New_S, Base_Type (Etype (New_S)));
2686             end if;
2687          end;
2688
2689       --  Generic formal subprograms or AST_Handler renaming
2690
2691       else
2692          Rewrite (N, Body_Node);
2693          Analyze (N);
2694          Set_Etype (New_S, Base_Type (Etype (New_S)));
2695       end if;
2696
2697       if Is_Compilation_Unit (New_S) then
2698          Error_Msg_N
2699            ("a library unit can only rename another library unit", N);
2700       end if;
2701
2702       --  We suppress elaboration warnings for the resulting entity, since
2703       --  clearly they are not needed, and more particularly, in the case
2704       --  of a generic formal subprogram, the resulting entity can appear
2705       --  after the instantiation itself, and thus look like a bogus case
2706       --  of access before elaboration.
2707
2708       Set_Suppress_Elaboration_Warnings (New_S);
2709
2710    end Attribute_Renaming;
2711
2712    ----------------------
2713    -- Chain_Use_Clause --
2714    ----------------------
2715
2716    procedure Chain_Use_Clause (N : Node_Id) is
2717       Pack : Entity_Id;
2718       Level : Int := Scope_Stack.Last;
2719
2720    begin
2721       if not Is_Compilation_Unit (Current_Scope)
2722         or else not Is_Child_Unit (Current_Scope)
2723       then
2724          null;   --  Common case
2725
2726       elsif Defining_Entity (Parent (N)) = Current_Scope then
2727          null;   --  Common case for compilation unit
2728
2729       else
2730          --  If declaration appears in some other scope, it must be in some
2731          --  parent unit when compiling a child.
2732
2733          Pack := Defining_Entity (Parent (N));
2734          if not In_Open_Scopes (Pack) then
2735             null;  --  default as well
2736
2737          else
2738             --  Find entry for parent unit in scope stack
2739
2740             while Scope_Stack.Table (Level).Entity /= Pack loop
2741                Level := Level - 1;
2742             end loop;
2743          end if;
2744       end if;
2745
2746       Set_Next_Use_Clause (N,
2747         Scope_Stack.Table (Level).First_Use_Clause);
2748       Scope_Stack.Table (Level).First_Use_Clause := N;
2749    end Chain_Use_Clause;
2750
2751    ---------------------------
2752    -- Check_Frozen_Renaming --
2753    ---------------------------
2754
2755    procedure Check_Frozen_Renaming (N : Node_Id; Subp : Entity_Id) is
2756       B_Node : Node_Id;
2757       Old_S  : Entity_Id;
2758
2759    begin
2760       if Is_Frozen (Subp)
2761         and then not Has_Completion (Subp)
2762       then
2763          B_Node :=
2764            Build_Renamed_Body
2765              (Parent (Declaration_Node (Subp)), Defining_Entity (N));
2766
2767          if Is_Entity_Name (Name (N)) then
2768             Old_S := Entity (Name (N));
2769
2770             if not Is_Frozen (Old_S)
2771               and then Operating_Mode /= Check_Semantics
2772             then
2773                Append_Freeze_Action (Old_S, B_Node);
2774             else
2775                Insert_After (N, B_Node);
2776                Analyze (B_Node);
2777             end if;
2778
2779             if Is_Intrinsic_Subprogram (Old_S)
2780               and then not In_Instance
2781             then
2782                Error_Msg_N
2783                  ("subprogram used in renaming_as_body cannot be intrinsic",
2784                     Name (N));
2785             end if;
2786
2787          else
2788             Insert_After (N, B_Node);
2789             Analyze (B_Node);
2790          end if;
2791       end if;
2792    end Check_Frozen_Renaming;
2793
2794    -----------------------------------
2795    -- Check_In_Previous_With_Clause --
2796    -----------------------------------
2797
2798    procedure Check_In_Previous_With_Clause
2799      (N   : Node_Id;
2800       Nam : Entity_Id)
2801    is
2802       Pack : constant Entity_Id := Entity (Original_Node (Nam));
2803       Item : Node_Id;
2804       Par  : Node_Id;
2805
2806    begin
2807       Item := First (Context_Items (Parent (N)));
2808
2809       while Present (Item)
2810         and then Item /= N
2811       loop
2812          if Nkind (Item) = N_With_Clause
2813
2814             --  Protect the frontend against previous critical errors
2815
2816            and then Nkind (Name (Item)) /= N_Selected_Component
2817            and then Entity (Name (Item)) = Pack
2818          then
2819             Par := Nam;
2820
2821             --  Find root library unit in with_clause
2822
2823             while Nkind (Par) = N_Expanded_Name loop
2824                Par := Prefix (Par);
2825             end loop;
2826
2827             if Is_Child_Unit (Entity (Original_Node (Par))) then
2828                Error_Msg_NE
2829                  ("& is not directly visible", Par, Entity (Par));
2830             else
2831                return;
2832             end if;
2833          end if;
2834
2835          Next (Item);
2836       end loop;
2837
2838       --  On exit, package is not mentioned in a previous with_clause.
2839       --  Check if its prefix is.
2840
2841       if Nkind (Nam) = N_Expanded_Name then
2842          Check_In_Previous_With_Clause (N, Prefix (Nam));
2843
2844       elsif Pack /= Any_Id then
2845          Error_Msg_NE ("& is not visible", Nam, Pack);
2846       end if;
2847    end Check_In_Previous_With_Clause;
2848
2849    ---------------------------------
2850    -- Check_Library_Unit_Renaming --
2851    ---------------------------------
2852
2853    procedure Check_Library_Unit_Renaming (N : Node_Id; Old_E : Entity_Id) is
2854       New_E : Entity_Id;
2855
2856    begin
2857       if Nkind (Parent (N)) /= N_Compilation_Unit then
2858          return;
2859
2860       --  Check for library unit. Note that we used to check for the scope
2861       --  being Standard here, but that was wrong for Standard itself.
2862
2863       elsif not Is_Compilation_Unit (Old_E)
2864         and then not Is_Child_Unit (Old_E)
2865       then
2866          Error_Msg_N ("renamed unit must be a library unit", Name (N));
2867
2868       --  Entities defined in Standard (operators and boolean literals) cannot
2869       --  be renamed as library units.
2870
2871       elsif Scope (Old_E) = Standard_Standard
2872         and then Sloc (Old_E) = Standard_Location
2873       then
2874          Error_Msg_N ("renamed unit must be a library unit", Name (N));
2875
2876       elsif Present (Parent_Spec (N))
2877         and then Nkind (Unit (Parent_Spec (N))) = N_Generic_Package_Declaration
2878         and then not Is_Child_Unit (Old_E)
2879       then
2880          Error_Msg_N
2881            ("renamed unit must be a child unit of generic parent", Name (N));
2882
2883       elsif Nkind (N) in N_Generic_Renaming_Declaration
2884          and then  Nkind (Name (N)) = N_Expanded_Name
2885          and then Is_Generic_Instance (Entity (Prefix (Name (N))))
2886          and then Is_Generic_Unit (Old_E)
2887       then
2888          Error_Msg_N
2889            ("renamed generic unit must be a library unit", Name (N));
2890
2891       elsif Ekind (Old_E) = E_Package
2892         or else Ekind (Old_E) = E_Generic_Package
2893       then
2894          --  Inherit categorization flags
2895
2896          New_E := Defining_Entity (N);
2897          Set_Is_Pure                  (New_E, Is_Pure           (Old_E));
2898          Set_Is_Preelaborated         (New_E, Is_Preelaborated  (Old_E));
2899          Set_Is_Remote_Call_Interface (New_E,
2900                                        Is_Remote_Call_Interface (Old_E));
2901          Set_Is_Remote_Types          (New_E, Is_Remote_Types   (Old_E));
2902          Set_Is_Shared_Passive        (New_E, Is_Shared_Passive (Old_E));
2903       end if;
2904    end Check_Library_Unit_Renaming;
2905
2906    ---------------
2907    -- End_Scope --
2908    ---------------
2909
2910    procedure End_Scope is
2911       Id    : Entity_Id;
2912       Prev  : Entity_Id;
2913       Outer : Entity_Id;
2914
2915    begin
2916       Id := First_Entity (Current_Scope);
2917       while Present (Id) loop
2918          --  An entity in the current scope is not necessarily the first one
2919          --  on its homonym chain. Find its predecessor if any,
2920          --  If it is an internal entity, it will not be in the visibility
2921          --  chain altogether,  and there is nothing to unchain.
2922
2923          if Id /= Current_Entity (Id) then
2924             Prev := Current_Entity (Id);
2925             while Present (Prev)
2926               and then Present (Homonym (Prev))
2927               and then Homonym (Prev) /= Id
2928             loop
2929                Prev := Homonym (Prev);
2930             end loop;
2931
2932             --  Skip to end of loop if Id is not in the visibility chain
2933
2934             if No (Prev) or else Homonym (Prev) /= Id then
2935                goto Next_Ent;
2936             end if;
2937
2938          else
2939             Prev := Empty;
2940          end if;
2941
2942          Set_Is_Immediately_Visible (Id, False);
2943
2944          Outer := Homonym (Id);
2945          while Present (Outer) and then Scope (Outer) = Current_Scope loop
2946             Outer := Homonym (Outer);
2947          end loop;
2948
2949          --  Reset homonym link of other entities, but do not modify link
2950          --  between entities in current scope, so that the back-end can have
2951          --  a proper count of local overloadings.
2952
2953          if No (Prev) then
2954             Set_Name_Entity_Id (Chars (Id), Outer);
2955
2956          elsif Scope (Prev) /= Scope (Id) then
2957             Set_Homonym (Prev,  Outer);
2958          end if;
2959
2960          <<Next_Ent>>
2961             Next_Entity (Id);
2962       end loop;
2963
2964       --  If the scope generated freeze actions, place them before the
2965       --  current declaration and analyze them. Type declarations and
2966       --  the bodies of initialization procedures can generate such nodes.
2967       --  We follow the parent chain until we reach a list node, which is
2968       --  the enclosing list of declarations. If the list appears within
2969       --  a protected definition, move freeze nodes outside the protected
2970       --  type altogether.
2971
2972       if Present
2973          (Scope_Stack.Table (Scope_Stack.Last).Pending_Freeze_Actions)
2974       then
2975          declare
2976             Decl : Node_Id;
2977             L    : constant List_Id := Scope_Stack.Table
2978                     (Scope_Stack.Last).Pending_Freeze_Actions;
2979
2980          begin
2981             if Is_Itype (Current_Scope) then
2982                Decl := Associated_Node_For_Itype (Current_Scope);
2983             else
2984                Decl := Parent (Current_Scope);
2985             end if;
2986
2987             Pop_Scope;
2988
2989             while not (Is_List_Member (Decl))
2990               or else Nkind_In (Parent (Decl), N_Protected_Definition,
2991                                                N_Task_Definition)
2992             loop
2993                Decl := Parent (Decl);
2994             end loop;
2995
2996             Insert_List_Before_And_Analyze (Decl, L);
2997          end;
2998
2999       else
3000          Pop_Scope;
3001       end if;
3002
3003    end End_Scope;
3004
3005    ---------------------
3006    -- End_Use_Clauses --
3007    ---------------------
3008
3009    procedure End_Use_Clauses (Clause : Node_Id) is
3010       U   : Node_Id;
3011
3012    begin
3013       --  Remove Use_Type clauses first, because they affect the
3014       --  visibility of operators in subsequent used packages.
3015
3016       U := Clause;
3017       while Present (U) loop
3018          if Nkind (U) = N_Use_Type_Clause then
3019             End_Use_Type (U);
3020          end if;
3021
3022          Next_Use_Clause (U);
3023       end loop;
3024
3025       U := Clause;
3026       while Present (U) loop
3027          if Nkind (U) = N_Use_Package_Clause then
3028             End_Use_Package (U);
3029          end if;
3030
3031          Next_Use_Clause (U);
3032       end loop;
3033    end End_Use_Clauses;
3034
3035    ---------------------
3036    -- End_Use_Package --
3037    ---------------------
3038
3039    procedure End_Use_Package (N : Node_Id) is
3040       Pack_Name : Node_Id;
3041       Pack      : Entity_Id;
3042       Id        : Entity_Id;
3043       Elmt      : Elmt_Id;
3044
3045       function Is_Primitive_Operator
3046         (Op : Entity_Id;
3047          F  : Entity_Id) return Boolean;
3048       --  Check whether Op is a primitive operator of a use-visible type
3049
3050       ---------------------------
3051       -- Is_Primitive_Operator --
3052       ---------------------------
3053
3054       function Is_Primitive_Operator
3055         (Op : Entity_Id;
3056          F  : Entity_Id) return Boolean
3057       is
3058          T : constant Entity_Id := Etype (F);
3059       begin
3060          return In_Use (T)
3061            and then Scope (T) = Scope (Op);
3062       end Is_Primitive_Operator;
3063
3064    --  Start of processing for End_Use_Package
3065
3066    begin
3067       Pack_Name := First (Names (N));
3068       while Present (Pack_Name) loop
3069          Pack := Entity (Pack_Name);
3070
3071          if Ekind (Pack) = E_Package then
3072             if In_Open_Scopes (Pack) then
3073                null;
3074
3075             elsif not Redundant_Use (Pack_Name) then
3076                Set_In_Use (Pack, False);
3077                Set_Current_Use_Clause (Pack, Empty);
3078
3079                Id := First_Entity (Pack);
3080                while Present (Id) loop
3081
3082                   --  Preserve use-visibility of operators that are primitive
3083                   --  operators of a type that is use-visible through an active
3084                   --  use_type clause.
3085
3086                   if Nkind (Id) = N_Defining_Operator_Symbol
3087                        and then
3088                          (Is_Primitive_Operator (Id, First_Formal (Id))
3089                             or else
3090                           (Present (Next_Formal (First_Formal (Id)))
3091                              and then
3092                                Is_Primitive_Operator
3093                                  (Id, Next_Formal (First_Formal (Id)))))
3094                   then
3095                      null;
3096
3097                   else
3098                      Set_Is_Potentially_Use_Visible (Id, False);
3099                   end if;
3100
3101                   if Is_Private_Type (Id)
3102                     and then Present (Full_View (Id))
3103                   then
3104                      Set_Is_Potentially_Use_Visible (Full_View (Id), False);
3105                   end if;
3106
3107                   Next_Entity (Id);
3108                end loop;
3109
3110                if Present (Renamed_Object (Pack)) then
3111                   Set_In_Use (Renamed_Object (Pack), False);
3112                   Set_Current_Use_Clause (Renamed_Object (Pack), Empty);
3113                end if;
3114
3115                if Chars (Pack) = Name_System
3116                  and then Scope (Pack) = Standard_Standard
3117                  and then Present_System_Aux
3118                then
3119                   Id := First_Entity (System_Aux_Id);
3120                   while Present (Id) loop
3121                      Set_Is_Potentially_Use_Visible (Id, False);
3122
3123                      if Is_Private_Type (Id)
3124                        and then Present (Full_View (Id))
3125                      then
3126                         Set_Is_Potentially_Use_Visible (Full_View (Id), False);
3127                      end if;
3128
3129                      Next_Entity (Id);
3130                   end loop;
3131
3132                   Set_In_Use (System_Aux_Id, False);
3133                end if;
3134
3135             else
3136                Set_Redundant_Use (Pack_Name, False);
3137             end if;
3138          end if;
3139
3140          Next (Pack_Name);
3141       end loop;
3142
3143       if Present (Hidden_By_Use_Clause (N)) then
3144          Elmt := First_Elmt (Hidden_By_Use_Clause (N));
3145          while Present (Elmt) loop
3146             Set_Is_Immediately_Visible (Node (Elmt));
3147             Next_Elmt (Elmt);
3148          end loop;
3149
3150          Set_Hidden_By_Use_Clause (N, No_Elist);
3151       end if;
3152    end End_Use_Package;
3153
3154    ------------------
3155    -- End_Use_Type --
3156    ------------------
3157
3158    procedure End_Use_Type (N : Node_Id) is
3159       Id      : Entity_Id;
3160       Op_List : Elist_Id;
3161       Elmt    : Elmt_Id;
3162       T       : Entity_Id;
3163
3164    begin
3165       Id := First (Subtype_Marks (N));
3166       while Present (Id) loop
3167
3168          --  A call to rtsfind may occur while analyzing a use_type clause,
3169          --  in which case the type marks are not resolved yet, and there is
3170          --  nothing to remove.
3171
3172          if not Is_Entity_Name (Id)
3173            or else No (Entity (Id))
3174          then
3175             goto Continue;
3176          end if;
3177
3178          T := Entity (Id);
3179
3180          if T = Any_Type
3181            or else From_With_Type (T)
3182          then
3183             null;
3184
3185          --  Note that the use_Type clause may mention a subtype of the type
3186          --  whose primitive operations have been made visible. Here as
3187          --  elsewhere, it is the base type that matters for visibility.
3188
3189          elsif In_Open_Scopes (Scope (Base_Type (T))) then
3190             null;
3191
3192          elsif not Redundant_Use (Id) then
3193             Set_In_Use (T, False);
3194             Set_In_Use (Base_Type (T), False);
3195             Set_Current_Use_Clause (T, Empty);
3196             Set_Current_Use_Clause (Base_Type (T), Empty);
3197             Op_List := Collect_Primitive_Operations (T);
3198
3199             Elmt := First_Elmt (Op_List);
3200             while Present (Elmt) loop
3201                if Nkind (Node (Elmt)) = N_Defining_Operator_Symbol then
3202                   Set_Is_Potentially_Use_Visible (Node (Elmt), False);
3203                end if;
3204
3205                Next_Elmt (Elmt);
3206             end loop;
3207          end if;
3208
3209          <<Continue>>
3210          Next (Id);
3211       end loop;
3212    end End_Use_Type;
3213
3214    ----------------------
3215    -- Find_Direct_Name --
3216    ----------------------
3217
3218    procedure Find_Direct_Name (N : Node_Id) is
3219       E    : Entity_Id;
3220       E2   : Entity_Id;
3221       Msg  : Boolean;
3222
3223       Inst : Entity_Id := Empty;
3224       --  Enclosing instance, if any
3225
3226       Homonyms : Entity_Id;
3227       --  Saves start of homonym chain
3228
3229       Nvis_Entity : Boolean;
3230       --  Set True to indicate that at there is at least one entity on the
3231       --  homonym chain which, while not visible, is visible enough from the
3232       --  user point of view to warrant an error message of "not visible"
3233       --  rather than undefined.
3234
3235       Nvis_Is_Private_Subprg : Boolean := False;
3236       --  Ada 2005 (AI-262): Set True to indicate that a form of Beaujolais
3237       --  effect concerning library subprograms has been detected. Used to
3238       --  generate the precise error message.
3239
3240       function From_Actual_Package (E : Entity_Id) return Boolean;
3241       --  Returns true if the entity is declared in a package that is
3242       --  an actual for a formal package of the current instance. Such an
3243       --  entity requires special handling because it may be use-visible
3244       --  but hides directly visible entities defined outside the instance.
3245
3246       function Is_Actual_Parameter return Boolean;
3247       --  This function checks if the node N is an identifier that is an actual
3248       --  parameter of a procedure call. If so it returns True, otherwise it
3249       --  return False. The reason for this check is that at this stage we do
3250       --  not know what procedure is being called if the procedure might be
3251       --  overloaded, so it is premature to go setting referenced flags or
3252       --  making calls to Generate_Reference. We will wait till Resolve_Actuals
3253       --  for that processing
3254
3255       function Known_But_Invisible (E : Entity_Id) return Boolean;
3256       --  This function determines whether the entity E (which is not
3257       --  visible) can reasonably be considered to be known to the writer
3258       --  of the reference. This is a heuristic test, used only for the
3259       --  purposes of figuring out whether we prefer to complain that an
3260       --  entity is undefined or invisible (and identify the declaration
3261       --  of the invisible entity in the latter case). The point here is
3262       --  that we don't want to complain that something is invisible and
3263       --  then point to something entirely mysterious to the writer.
3264
3265       procedure Nvis_Messages;
3266       --  Called if there are no visible entries for N, but there is at least
3267       --  one non-directly visible, or hidden declaration. This procedure
3268       --  outputs an appropriate set of error messages.
3269
3270       procedure Undefined (Nvis : Boolean);
3271       --  This function is called if the current node has no corresponding
3272       --  visible entity or entities. The value set in Msg indicates whether
3273       --  an error message was generated (multiple error messages for the
3274       --  same variable are generally suppressed, see body for details).
3275       --  Msg is True if an error message was generated, False if not. This
3276       --  value is used by the caller to determine whether or not to output
3277       --  additional messages where appropriate. The parameter is set False
3278       --  to get the message "X is undefined", and True to get the message
3279       --  "X is not visible".
3280
3281       -------------------------
3282       -- From_Actual_Package --
3283       -------------------------
3284
3285       function From_Actual_Package (E : Entity_Id) return Boolean is
3286          Scop : constant Entity_Id := Scope (E);
3287          Act  : Entity_Id;
3288
3289       begin
3290          if not In_Instance then
3291             return False;
3292          else
3293             Inst := Current_Scope;
3294             while Present (Inst)
3295               and then Ekind (Inst) /= E_Package
3296               and then not Is_Generic_Instance (Inst)
3297             loop
3298                Inst := Scope (Inst);
3299             end loop;
3300
3301             if No (Inst) then
3302                return False;
3303             end if;
3304
3305             Act := First_Entity (Inst);
3306             while Present (Act) loop
3307                if Ekind (Act) = E_Package then
3308
3309                   --  Check for end of actuals list
3310
3311                   if Renamed_Object (Act) = Inst then
3312                      return False;
3313
3314                   elsif Present (Associated_Formal_Package (Act))
3315                     and then Renamed_Object (Act) = Scop
3316                   then
3317                      --  Entity comes from (instance of) formal package
3318
3319                      return True;
3320
3321                   else
3322                      Next_Entity (Act);
3323                   end if;
3324
3325                else
3326                   Next_Entity (Act);
3327                end if;
3328             end loop;
3329
3330             return False;
3331          end if;
3332       end From_Actual_Package;
3333
3334       -------------------------
3335       -- Is_Actual_Parameter --
3336       -------------------------
3337
3338       function Is_Actual_Parameter return Boolean is
3339       begin
3340          return
3341            Nkind (N) = N_Identifier
3342              and then
3343                (Nkind (Parent (N)) = N_Procedure_Call_Statement
3344                   or else
3345                     (Nkind (Parent (N)) = N_Parameter_Association
3346                        and then N = Explicit_Actual_Parameter (Parent (N))
3347                        and then Nkind (Parent (Parent (N))) =
3348                                           N_Procedure_Call_Statement));
3349       end Is_Actual_Parameter;
3350
3351       -------------------------
3352       -- Known_But_Invisible --
3353       -------------------------
3354
3355       function Known_But_Invisible (E : Entity_Id) return Boolean is
3356          Fname : File_Name_Type;
3357
3358       begin
3359          --  Entities in Standard are always considered to be known
3360
3361          if Sloc (E) <= Standard_Location then
3362             return True;
3363
3364          --  An entity that does not come from source is always considered
3365          --  to be unknown, since it is an artifact of code expansion.
3366
3367          elsif not Comes_From_Source (E) then
3368             return False;
3369
3370          --  In gnat internal mode, we consider all entities known
3371
3372          elsif GNAT_Mode then
3373             return True;
3374          end if;
3375
3376          --  Here we have an entity that is not from package Standard, and
3377          --  which comes from Source. See if it comes from an internal file.
3378
3379          Fname := Unit_File_Name (Get_Source_Unit (E));
3380
3381          --  Case of from internal file
3382
3383          if Is_Internal_File_Name (Fname) then
3384
3385             --  Private part entities in internal files are never considered
3386             --  to be known to the writer of normal application code.
3387
3388             if Is_Hidden (E) then
3389                return False;
3390             end if;
3391
3392             --  Entities from System packages other than System and
3393             --  System.Storage_Elements are not considered to be known.
3394             --  System.Auxxxx files are also considered known to the user.
3395
3396             --  Should refine this at some point to generally distinguish
3397             --  between known and unknown internal files ???
3398
3399             Get_Name_String (Fname);
3400
3401             return
3402               Name_Len < 2
3403                 or else
3404               Name_Buffer (1 .. 2) /= "s-"
3405                 or else
3406               Name_Buffer (3 .. 8) = "stoele"
3407                 or else
3408               Name_Buffer (3 .. 5) = "aux";
3409
3410          --  If not an internal file, then entity is definitely known,
3411          --  even if it is in a private part (the message generated will
3412          --  note that it is in a private part)
3413
3414          else
3415             return True;
3416          end if;
3417       end Known_But_Invisible;
3418
3419       -------------------
3420       -- Nvis_Messages --
3421       -------------------
3422
3423       procedure Nvis_Messages is
3424          Comp_Unit : Node_Id;
3425          Ent       : Entity_Id;
3426          Hidden    : Boolean := False;
3427          Item      : Node_Id;
3428
3429       begin
3430          --  Ada 2005 (AI-262): Generate a precise error concerning the
3431          --  Beaujolais effect that was previously detected
3432
3433          if Nvis_Is_Private_Subprg then
3434
3435             pragma Assert (Nkind (E2) = N_Defining_Identifier
3436                             and then Ekind (E2) = E_Function
3437                             and then Scope (E2) = Standard_Standard
3438                             and then Has_Private_With (E2));
3439
3440             --  Find the sloc corresponding to the private with'ed unit
3441
3442             Comp_Unit := Cunit (Current_Sem_Unit);
3443             Error_Msg_Sloc := No_Location;
3444
3445             Item := First (Context_Items (Comp_Unit));
3446             while Present (Item) loop
3447                if Nkind (Item) = N_With_Clause
3448                  and then Private_Present (Item)
3449                  and then Entity (Name (Item)) = E2
3450                then
3451                   Error_Msg_Sloc := Sloc (Item);
3452                   exit;
3453                end if;
3454
3455                Next (Item);
3456             end loop;
3457
3458             pragma Assert (Error_Msg_Sloc /= No_Location);
3459
3460             Error_Msg_N ("(Ada 2005): hidden by private with clause #", N);
3461             return;
3462          end if;
3463
3464          Undefined (Nvis => True);
3465
3466          if Msg then
3467
3468             --  First loop does hidden declarations
3469
3470             Ent := Homonyms;
3471             while Present (Ent) loop
3472                if Is_Potentially_Use_Visible (Ent) then
3473                   if not Hidden then
3474                      Error_Msg_N ("multiple use clauses cause hiding!", N);
3475                      Hidden := True;
3476                   end if;
3477
3478                   Error_Msg_Sloc := Sloc (Ent);
3479                   Error_Msg_N ("hidden declaration#!", N);
3480                end if;
3481
3482                Ent := Homonym (Ent);
3483             end loop;
3484
3485             --  If we found hidden declarations, then that's enough, don't
3486             --  bother looking for non-visible declarations as well.
3487
3488             if Hidden then
3489                return;
3490             end if;
3491
3492             --  Second loop does non-directly visible declarations
3493
3494             Ent := Homonyms;
3495             while Present (Ent) loop
3496                if not Is_Potentially_Use_Visible (Ent) then
3497
3498                   --  Do not bother the user with unknown entities
3499
3500                   if not Known_But_Invisible (Ent) then
3501                      goto Continue;
3502                   end if;
3503
3504                   Error_Msg_Sloc := Sloc (Ent);
3505
3506                   --  Output message noting that there is a non-visible
3507                   --  declaration, distinguishing the private part case.
3508
3509                   if Is_Hidden (Ent) then
3510                      Error_Msg_N ("non-visible (private) declaration#!", N);
3511                   else
3512                      Error_Msg_N ("non-visible declaration#!", N);
3513
3514                      if Is_Compilation_Unit (Ent)
3515                        and then
3516                          Nkind (Parent (Parent (N))) = N_Use_Package_Clause
3517                      then
3518                         Error_Msg_Qual_Level := 99;
3519                         Error_Msg_NE ("\\missing `WITH &;`", N, Ent);
3520                         Error_Msg_Qual_Level := 0;
3521                      end if;
3522                   end if;
3523
3524                   --  Set entity and its containing package as referenced. We
3525                   --  can't be sure of this, but this seems a better choice
3526                   --  to avoid unused entity messages.
3527
3528                   if Comes_From_Source (Ent) then
3529                      Set_Referenced (Ent);
3530                      Set_Referenced (Cunit_Entity (Get_Source_Unit (Ent)));
3531                   end if;
3532                end if;
3533
3534                <<Continue>>
3535                Ent := Homonym (Ent);
3536             end loop;
3537          end if;
3538       end Nvis_Messages;
3539
3540       ---------------
3541       -- Undefined --
3542       ---------------
3543
3544       procedure Undefined (Nvis : Boolean) is
3545          Emsg : Error_Msg_Id;
3546
3547       begin
3548          --  We should never find an undefined internal name. If we do, then
3549          --  see if we have previous errors. If so, ignore on the grounds that
3550          --  it is probably a cascaded message (e.g. a block label from a badly
3551          --  formed block). If no previous errors, then we have a real internal
3552          --  error of some kind so raise an exception.
3553
3554          if Is_Internal_Name (Chars (N)) then
3555             if Total_Errors_Detected /= 0 then
3556                return;
3557             else
3558                raise Program_Error;
3559             end if;
3560          end if;
3561
3562          --  A very specialized error check, if the undefined variable is
3563          --  a case tag, and the case type is an enumeration type, check
3564          --  for a possible misspelling, and if so, modify the identifier
3565
3566          --  Named aggregate should also be handled similarly ???
3567
3568          if Nkind (N) = N_Identifier
3569            and then Nkind (Parent (N)) = N_Case_Statement_Alternative
3570          then
3571             declare
3572                Case_Stm : constant Node_Id   := Parent (Parent (N));
3573                Case_Typ : constant Entity_Id := Etype (Expression (Case_Stm));
3574
3575                Lit : Node_Id;
3576
3577             begin
3578                if Is_Enumeration_Type (Case_Typ)
3579                  and then not Is_Standard_Character_Type (Case_Typ)
3580                then
3581                   Lit := First_Literal (Case_Typ);
3582                   Get_Name_String (Chars (Lit));
3583
3584                   if Chars (Lit) /= Chars (N)
3585                     and then Is_Bad_Spelling_Of (Chars (N), Chars (Lit)) then
3586                      Error_Msg_Node_2 := Lit;
3587                      Error_Msg_N
3588                        ("& is undefined, assume misspelling of &", N);
3589                      Rewrite (N, New_Occurrence_Of (Lit, Sloc (N)));
3590                      return;
3591                   end if;
3592
3593                   Lit := Next_Literal (Lit);
3594                end if;
3595             end;
3596          end if;
3597
3598          --  Normal processing
3599
3600          Set_Entity (N, Any_Id);
3601          Set_Etype  (N, Any_Type);
3602
3603          --  We use the table Urefs to keep track of entities for which we
3604          --  have issued errors for undefined references. Multiple errors
3605          --  for a single name are normally suppressed, however we modify
3606          --  the error message to alert the programmer to this effect.
3607
3608          for J in Urefs.First .. Urefs.Last loop
3609             if Chars (N) = Chars (Urefs.Table (J).Node) then
3610                if Urefs.Table (J).Err /= No_Error_Msg
3611                  and then Sloc (N) /= Urefs.Table (J).Loc
3612                then
3613                   Error_Msg_Node_1 := Urefs.Table (J).Node;
3614
3615                   if Urefs.Table (J).Nvis then
3616                      Change_Error_Text (Urefs.Table (J).Err,
3617                        "& is not visible (more references follow)");
3618                   else
3619                      Change_Error_Text (Urefs.Table (J).Err,
3620                        "& is undefined (more references follow)");
3621                   end if;
3622
3623                   Urefs.Table (J).Err := No_Error_Msg;
3624                end if;
3625
3626                --  Although we will set Msg False, and thus suppress the
3627                --  message, we also set Error_Posted True, to avoid any
3628                --  cascaded messages resulting from the undefined reference.
3629
3630                Msg := False;
3631                Set_Error_Posted (N, True);
3632                return;
3633             end if;
3634          end loop;
3635
3636          --  If entry not found, this is first undefined occurrence
3637
3638          if Nvis then
3639             Error_Msg_N ("& is not visible!", N);
3640             Emsg := Get_Msg_Id;
3641
3642          else
3643             Error_Msg_N ("& is undefined!", N);
3644             Emsg := Get_Msg_Id;
3645
3646             --  A very bizarre special check, if the undefined identifier
3647             --  is put or put_line, then add a special error message (since
3648             --  this is a very common error for beginners to make).
3649
3650             if Chars (N) = Name_Put or else Chars (N) = Name_Put_Line then
3651                Error_Msg_N
3652                  ("\\possible missing `WITH Ada.Text_'I'O; " &
3653                   "USE Ada.Text_'I'O`!", N);
3654
3655             --  Another special check if N is the prefix of a selected
3656             --  component which is a known unit, add message complaining
3657             --  about missing with for this unit.
3658
3659             elsif Nkind (Parent (N)) = N_Selected_Component
3660               and then N = Prefix (Parent (N))
3661               and then Is_Known_Unit (Parent (N))
3662             then
3663                Error_Msg_Node_2 := Selector_Name (Parent (N));
3664                Error_Msg_N ("\\missing `WITH &.&;`", Prefix (Parent (N)));
3665             end if;
3666
3667             --  Now check for possible misspellings
3668
3669             declare
3670                E      : Entity_Id;
3671                Ematch : Entity_Id := Empty;
3672
3673                Last_Name_Id : constant Name_Id :=
3674                                 Name_Id (Nat (First_Name_Id) +
3675                                            Name_Entries_Count - 1);
3676
3677             begin
3678                for Nam in First_Name_Id .. Last_Name_Id loop
3679                   E := Get_Name_Entity_Id (Nam);
3680
3681                   if Present (E)
3682                      and then (Is_Immediately_Visible (E)
3683                                  or else
3684                                Is_Potentially_Use_Visible (E))
3685                   then
3686                      if Is_Bad_Spelling_Of (Chars (N), Nam) then
3687                         Ematch := E;
3688                         exit;
3689                      end if;
3690                   end if;
3691                end loop;
3692
3693                if Present (Ematch) then
3694                   Error_Msg_NE ("\possible misspelling of&", N, Ematch);
3695                end if;
3696             end;
3697          end if;
3698
3699          --  Make entry in undefined references table unless the full errors
3700          --  switch is set, in which case by refraining from generating the
3701          --  table entry, we guarantee that we get an error message for every
3702          --  undefined reference.
3703
3704          if not All_Errors_Mode then
3705             Urefs.Append (
3706               (Node => N,
3707                Err  => Emsg,
3708                Nvis => Nvis,
3709                Loc  => Sloc (N)));
3710          end if;
3711
3712          Msg := True;
3713       end Undefined;
3714
3715    --  Start of processing for Find_Direct_Name
3716
3717    begin
3718       --  If the entity pointer is already set, this is an internal node, or
3719       --  a node that is analyzed more than once, after a tree modification.
3720       --  In such a case there is no resolution to perform, just set the type.
3721
3722       if Present (Entity (N)) then
3723          if Is_Type (Entity (N)) then
3724             Set_Etype (N, Entity (N));
3725
3726          else
3727             declare
3728                Entyp : constant Entity_Id := Etype (Entity (N));
3729
3730             begin
3731                --  One special case here. If the Etype field is already set,
3732                --  and references the packed array type corresponding to the
3733                --  etype of the referenced entity, then leave it alone. This
3734                --  happens for trees generated from Exp_Pakd, where expressions
3735                --  can be deliberately "mis-typed" to the packed array type.
3736
3737                if Is_Array_Type (Entyp)
3738                  and then Is_Packed (Entyp)
3739                  and then Present (Etype (N))
3740                  and then Etype (N) = Packed_Array_Type (Entyp)
3741                then
3742                   null;
3743
3744                --  If not that special case, then just reset the Etype
3745
3746                else
3747                   Set_Etype (N, Etype (Entity (N)));
3748                end if;
3749             end;
3750          end if;
3751
3752          return;
3753       end if;
3754
3755       --  Here if Entity pointer was not set, we need full visibility analysis
3756       --  First we generate debugging output if the debug E flag is set.
3757
3758       if Debug_Flag_E then
3759          Write_Str ("Looking for ");
3760          Write_Name (Chars (N));
3761          Write_Eol;
3762       end if;
3763
3764       Homonyms := Current_Entity (N);
3765       Nvis_Entity := False;
3766
3767       E := Homonyms;
3768       while Present (E) loop
3769
3770          --  If entity is immediately visible or potentially use
3771          --  visible, then process the entity and we are done.
3772
3773          if Is_Immediately_Visible (E) then
3774             goto Immediately_Visible_Entity;
3775
3776          elsif Is_Potentially_Use_Visible (E) then
3777             goto Potentially_Use_Visible_Entity;
3778
3779          --  Note if a known but invisible entity encountered
3780
3781          elsif Known_But_Invisible (E) then
3782             Nvis_Entity := True;
3783          end if;
3784
3785          --  Move to next entity in chain and continue search
3786
3787          E := Homonym (E);
3788       end loop;
3789
3790       --  If no entries on homonym chain that were potentially visible,
3791       --  and no entities reasonably considered as non-visible, then
3792       --  we have a plain undefined reference, with no additional
3793       --  explanation required!
3794
3795       if not Nvis_Entity then
3796          Undefined (Nvis => False);
3797
3798       --  Otherwise there is at least one entry on the homonym chain that
3799       --  is reasonably considered as being known and non-visible.
3800
3801       else
3802          Nvis_Messages;
3803       end if;
3804
3805       return;
3806
3807       --  Processing for a potentially use visible entry found. We must search
3808       --  the rest of the homonym chain for two reasons. First, if there is a
3809       --  directly visible entry, then none of the potentially use-visible
3810       --  entities are directly visible (RM 8.4(10)). Second, we need to check
3811       --  for the case of multiple potentially use-visible entries hiding one
3812       --  another and as a result being non-directly visible (RM 8.4(11)).
3813
3814       <<Potentially_Use_Visible_Entity>> declare
3815          Only_One_Visible : Boolean := True;
3816          All_Overloadable : Boolean := Is_Overloadable (E);
3817
3818       begin
3819          E2 := Homonym (E);
3820          while Present (E2) loop
3821             if Is_Immediately_Visible (E2) then
3822
3823                --  If the use-visible entity comes from the actual for a
3824                --  formal package, it hides a directly visible entity from
3825                --  outside the instance.
3826
3827                if From_Actual_Package (E)
3828                  and then Scope_Depth (E2) < Scope_Depth (Inst)
3829                then
3830                   goto Found;
3831                else
3832                   E := E2;
3833                   goto Immediately_Visible_Entity;
3834                end if;
3835
3836             elsif Is_Potentially_Use_Visible (E2) then
3837                Only_One_Visible := False;
3838                All_Overloadable := All_Overloadable and Is_Overloadable (E2);
3839
3840             --  Ada 2005 (AI-262): Protect against a form of Beujolais effect
3841             --  that can occur in private_with clauses. Example:
3842
3843             --    with A;
3844             --    private with B;              package A is
3845             --    package C is                   function B return Integer;
3846             --      use A;                     end A;
3847             --      V1 : Integer := B;
3848             --    private                      function B return Integer;
3849             --      V2 : Integer := B;
3850             --    end C;
3851
3852             --  V1 resolves to A.B, but V2 resolves to library unit B
3853
3854             elsif Ekind (E2) = E_Function
3855               and then Scope (E2) = Standard_Standard
3856               and then Has_Private_With (E2)
3857             then
3858                Only_One_Visible       := False;
3859                All_Overloadable       := False;
3860                Nvis_Is_Private_Subprg := True;
3861                exit;
3862             end if;
3863
3864             E2 := Homonym (E2);
3865          end loop;
3866
3867          --  On falling through this loop, we have checked that there are no
3868          --  immediately visible entities. Only_One_Visible is set if exactly
3869          --  one potentially use visible entity exists. All_Overloadable is
3870          --  set if all the potentially use visible entities are overloadable.
3871          --  The condition for legality is that either there is one potentially
3872          --  use visible entity, or if there is more than one, then all of them
3873          --  are overloadable.
3874
3875          if Only_One_Visible or All_Overloadable then
3876             goto Found;
3877
3878          --  If there is more than one potentially use-visible entity and at
3879          --  least one of them non-overloadable, we have an error (RM 8.4(11).
3880          --  Note that E points to the first such entity on the homonym list.
3881          --  Special case: if one of the entities is declared in an actual
3882          --  package, it was visible in the generic, and takes precedence over
3883          --  other entities that are potentially use-visible. Same if it is
3884          --  declared in a local instantiation of the current instance.
3885
3886          else
3887             if In_Instance then
3888
3889                --  Find current instance
3890
3891                Inst := Current_Scope;
3892                while Present (Inst)
3893                  and then Inst /= Standard_Standard
3894                loop
3895                   if Is_Generic_Instance (Inst) then
3896                      exit;
3897                   end if;
3898
3899                   Inst := Scope (Inst);
3900                end loop;
3901
3902                E2 := E;
3903                while Present (E2) loop
3904                   if From_Actual_Package (E2)
3905                     or else
3906                       (Is_Generic_Instance (Scope (E2))
3907                         and then Scope_Depth (Scope (E2)) > Scope_Depth (Inst))
3908                   then
3909                      E := E2;
3910                      goto Found;
3911                   end if;
3912
3913                   E2 := Homonym (E2);
3914                end loop;
3915
3916                Nvis_Messages;
3917                return;
3918
3919             elsif
3920               Is_Predefined_File_Name (Unit_File_Name (Current_Sem_Unit))
3921             then
3922                --  A use-clause in the body of a system file creates conflict
3923                --  with some entity in a user scope, while rtsfind is active.
3924                --  Keep only the entity coming from another predefined unit.
3925
3926                E2 := E;
3927                while Present (E2) loop
3928                   if Is_Predefined_File_Name
3929                     (Unit_File_Name (Get_Source_Unit (Sloc (E2))))
3930                   then
3931                      E := E2;
3932                      goto Found;
3933                   end if;
3934
3935                   E2 := Homonym (E2);
3936                end loop;
3937
3938                --  Entity must exist because predefined unit is correct
3939
3940                raise Program_Error;
3941
3942             else
3943                Nvis_Messages;
3944                return;
3945             end if;
3946          end if;
3947       end;
3948
3949       --  Come here with E set to the first immediately visible entity on
3950       --  the homonym chain. This is the one we want unless there is another
3951       --  immediately visible entity further on in the chain for a more
3952       --  inner scope (RM 8.3(8)).
3953
3954       <<Immediately_Visible_Entity>> declare
3955          Level : Int;
3956          Scop  : Entity_Id;
3957
3958       begin
3959          --  Find scope level of initial entity. When compiling  through
3960          --  Rtsfind, the previous context is not completely invisible, and
3961          --  an outer entity may appear on the chain, whose scope is below
3962          --  the entry for Standard that delimits the current scope stack.
3963          --  Indicate that the level for this spurious entry is outside of
3964          --  the current scope stack.
3965
3966          Level := Scope_Stack.Last;
3967          loop
3968             Scop := Scope_Stack.Table (Level).Entity;
3969             exit when Scop = Scope (E);
3970             Level := Level - 1;
3971             exit when Scop = Standard_Standard;
3972          end loop;
3973
3974          --  Now search remainder of homonym chain for more inner entry
3975          --  If the entity is Standard itself, it has no scope, and we
3976          --  compare it with the stack entry directly.
3977
3978          E2 := Homonym (E);
3979          while Present (E2) loop
3980             if Is_Immediately_Visible (E2) then
3981
3982                --  If a generic package contains a local declaration that
3983                --  has the same name as the generic, there may be a visibility
3984                --  conflict in an instance, where the local declaration must
3985                --  also hide the name of the corresponding package renaming.
3986                --  We check explicitly for a package declared by a renaming,
3987                --  whose renamed entity is an instance that is on the scope
3988                --  stack, and that contains a homonym in the same scope. Once
3989                --  we have found it, we know that the package renaming is not
3990                --  immediately visible, and that the identifier denotes the
3991                --  other entity (and its homonyms if overloaded).
3992
3993                if Scope (E) = Scope (E2)
3994                  and then Ekind (E) = E_Package
3995                  and then Present (Renamed_Object (E))
3996                  and then Is_Generic_Instance (Renamed_Object (E))
3997                  and then In_Open_Scopes (Renamed_Object (E))
3998                  and then Comes_From_Source (N)
3999                then
4000                   Set_Is_Immediately_Visible (E, False);
4001                   E := E2;
4002
4003                else
4004                   for J in Level + 1 .. Scope_Stack.Last loop
4005                      if Scope_Stack.Table (J).Entity = Scope (E2)
4006                        or else Scope_Stack.Table (J).Entity = E2
4007                      then
4008                         Level := J;
4009                         E := E2;
4010                         exit;
4011                      end if;
4012                   end loop;
4013                end if;
4014             end if;
4015
4016             E2 := Homonym (E2);
4017          end loop;
4018
4019          --  At the end of that loop, E is the innermost immediately
4020          --  visible entity, so we are all set.
4021       end;
4022
4023       --  Come here with entity found, and stored in E
4024
4025       <<Found>> begin
4026
4027          --  When distribution features are available (Get_PCS_Name /=
4028          --  Name_No_DSA), a remote access-to-subprogram type is converted
4029          --  into a record type holding whatever information is needed to
4030          --  perform a remote call on an RCI subprogram. In that case we
4031          --  rewrite any occurrence of the RAS type into the equivalent record
4032          --  type here. 'Access attribute references and RAS dereferences are
4033          --  then implemented using specific TSSs. However when distribution is
4034          --  not available (case of Get_PCS_Name = Name_No_DSA), we bypass the
4035          --  generation of these TSSs, and we must keep the RAS type in its
4036          --  original access-to-subprogram form (since all calls through a
4037          --  value of such type will be local anyway in the absence of a PCS).
4038
4039          if Comes_From_Source (N)
4040            and then Is_Remote_Access_To_Subprogram_Type (E)
4041            and then Expander_Active
4042            and then Get_PCS_Name /= Name_No_DSA
4043          then
4044             Rewrite (N,
4045               New_Occurrence_Of (Equivalent_Type (E), Sloc (N)));
4046             return;
4047          end if;
4048
4049          Set_Entity (N, E);
4050          --  Why no Style_Check here???
4051
4052          if Is_Type (E) then
4053             Set_Etype (N, E);
4054          else
4055             Set_Etype (N, Get_Full_View (Etype (E)));
4056          end if;
4057
4058          if Debug_Flag_E then
4059             Write_Str (" found  ");
4060             Write_Entity_Info (E, "      ");
4061          end if;
4062
4063          --  If the Ekind of the entity is Void, it means that all homonyms
4064          --  are hidden from all visibility (RM 8.3(5,14-20)). However, this
4065          --  test is skipped if the current scope is a record and the name is
4066          --  a pragma argument expression (case of Atomic and Volatile pragmas
4067          --  and possibly other similar pragmas added later, which are allowed
4068          --  to reference components in the current record).
4069
4070          if Ekind (E) = E_Void
4071            and then
4072              (not Is_Record_Type (Current_Scope)
4073                or else Nkind (Parent (N)) /= N_Pragma_Argument_Association)
4074          then
4075             Premature_Usage (N);
4076
4077          --  If the entity is overloadable, collect all interpretations of the
4078          --  name for subsequent overload resolution. We optimize a bit here to
4079          --  do this only if we have an overloadable entity that is not on its
4080          --  own on the homonym chain.
4081
4082          elsif Is_Overloadable (E)
4083            and then (Present (Homonym (E)) or else Current_Entity (N) /= E)
4084          then
4085             Collect_Interps (N);
4086
4087             --  If no homonyms were visible, the entity is unambiguous
4088
4089             if not Is_Overloaded (N) then
4090                if not Is_Actual_Parameter then
4091                   Generate_Reference (E, N);
4092                end if;
4093             end if;
4094
4095          --  Case of non-overloadable entity, set the entity providing that
4096          --  we do not have the case of a discriminant reference within a
4097          --  default expression. Such references are replaced with the
4098          --  corresponding discriminal, which is the formal corresponding to
4099          --  to the discriminant in the initialization procedure.
4100
4101          else
4102             --  Entity is unambiguous, indicate that it is referenced here
4103
4104             --  For a renaming of an object, always generate simple reference,
4105             --  we don't try to keep track of assignments in this case.
4106
4107             if Is_Object (E) and then Present (Renamed_Object (E)) then
4108                Generate_Reference (E, N);
4109
4110                --  If the renamed entity is a private protected component,
4111                --  reference the original component as well. This needs to be
4112                --  done because the private renamings are installed before any
4113                --  analysis has occured. Reference to a private component will
4114                --  resolve to the renaming and the original component will be
4115                --  left unreferenced, hence the following.
4116
4117                if Is_Prival (E) then
4118                   Generate_Reference (Prival_Link (E), N);
4119                end if;
4120
4121             --  One odd case is that we do not want to set the Referenced flag
4122             --  if the entity is a label, and the identifier is the label in
4123             --  the source, since this is not a reference from the point of
4124             --  view of the user.
4125
4126             elsif Nkind (Parent (N)) = N_Label then
4127                declare
4128                   R : constant Boolean := Referenced (E);
4129
4130                begin
4131                   --  Generate reference unless this is an actual parameter
4132                   --  (see comment below)
4133
4134                   if Is_Actual_Parameter then
4135                      Generate_Reference (E, N);
4136                      Set_Referenced (E, R);
4137                   end if;
4138                end;
4139
4140             --  Normal case, not a label: generate reference
4141
4142             --  ??? It is too early to generate a reference here even if
4143             --    the entity is unambiguous, because the tree is not
4144             --    sufficiently typed at this point for Generate_Reference to
4145             --    determine whether this reference modifies the denoted object
4146             --    (because implicit dereferences cannot be identified prior to
4147             --    full type resolution).
4148             --
4149             --    The Is_Actual_Parameter routine takes care of one of these
4150             --    cases but there are others probably ???
4151
4152             else
4153                if not Is_Actual_Parameter then
4154                   Generate_Reference (E, N);
4155                end if;
4156
4157                Check_Nested_Access (E);
4158             end if;
4159
4160             --  Set Entity, with style check if need be. For a discriminant
4161             --  reference, replace by the corresponding discriminal, i.e. the
4162             --  parameter of the initialization procedure that corresponds to
4163             --  the discriminant. If this replacement is being performed, there
4164             --  is no style check to perform.
4165
4166             --  This replacement must not be done if we are currently
4167             --  processing a generic spec or body, because the discriminal
4168             --  has not been not generated in this case.
4169
4170             --  The replacement is also skipped if we are in special
4171             --  spec-expression mode. Why is this skipped in this case ???
4172
4173             if not In_Spec_Expression
4174               or else Ekind (E) /= E_Discriminant
4175               or else Inside_A_Generic
4176             then
4177                Set_Entity_With_Style_Check (N, E);
4178
4179             --  The replacement is not done either for a task discriminant that
4180             --  appears in a default expression of an entry parameter. See
4181             --  Expand_Discriminant in exp_ch2 for details on their handling.
4182
4183             elsif Is_Concurrent_Type (Scope (E)) then
4184                declare
4185                   P : Node_Id;
4186
4187                begin
4188                   P := Parent (N);
4189                   while Present (P)
4190                     and then not Nkind_In (P, N_Parameter_Specification,
4191                                               N_Component_Declaration)
4192                   loop
4193                      P := Parent (P);
4194                   end loop;
4195
4196                   if Present (P)
4197                      and then Nkind (P) = N_Parameter_Specification
4198                   then
4199                      null;
4200                   else
4201                      Set_Entity (N, Discriminal (E));
4202                   end if;
4203                end;
4204
4205             --  Otherwise, this is a discriminant in a context in which
4206             --  it is a reference to the corresponding parameter of the
4207             --  init proc for the enclosing type.
4208
4209             else
4210                Set_Entity (N, Discriminal (E));
4211             end if;
4212          end if;
4213       end;
4214    end Find_Direct_Name;
4215
4216    ------------------------
4217    -- Find_Expanded_Name --
4218    ------------------------
4219
4220    --  This routine searches the homonym chain of the entity until it finds
4221    --  an entity declared in the scope denoted by the prefix. If the entity
4222    --  is private, it may nevertheless be immediately visible, if we are in
4223    --  the scope of its declaration.
4224
4225    procedure Find_Expanded_Name (N : Node_Id) is
4226       Selector  : constant Node_Id := Selector_Name (N);
4227       Candidate : Entity_Id        := Empty;
4228       P_Name    : Entity_Id;
4229       O_Name    : Entity_Id;
4230       Id        : Entity_Id;
4231
4232    begin
4233       P_Name := Entity (Prefix (N));
4234       O_Name := P_Name;
4235
4236       --  If the prefix is a renamed package, look for the entity
4237       --  in the original package.
4238
4239       if Ekind (P_Name) = E_Package
4240         and then Present (Renamed_Object (P_Name))
4241       then
4242          P_Name := Renamed_Object (P_Name);
4243
4244          --  Rewrite node with entity field pointing to renamed object
4245
4246          Rewrite (Prefix (N), New_Copy (Prefix (N)));
4247          Set_Entity (Prefix (N), P_Name);
4248
4249       --  If the prefix is an object of a concurrent type, look for
4250       --  the entity in the associated task or protected type.
4251
4252       elsif Is_Concurrent_Type (Etype (P_Name)) then
4253          P_Name := Etype (P_Name);
4254       end if;
4255
4256       Id := Current_Entity (Selector);
4257
4258       declare
4259          Is_New_Candidate : Boolean;
4260
4261       begin
4262          while Present (Id) loop
4263             if Scope (Id) = P_Name then
4264                Candidate        := Id;
4265                Is_New_Candidate := True;
4266
4267             --  Ada 2005 (AI-217): Handle shadow entities associated with types
4268             --  declared in limited-withed nested packages. We don't need to
4269             --  handle E_Incomplete_Subtype entities because the entities in
4270             --  the limited view are always E_Incomplete_Type entities (see
4271             --  Build_Limited_Views). Regarding the expression used to evaluate
4272             --  the scope, it is important to note that the limited view also
4273             --  has shadow entities associated nested packages. For this reason
4274             --  the correct scope of the entity is the scope of the real entity
4275             --  The non-limited view may itself be incomplete, in which case
4276             --  get the full view if available.
4277
4278             elsif From_With_Type (Id)
4279               and then Is_Type (Id)
4280               and then Ekind (Id) = E_Incomplete_Type
4281               and then Present (Non_Limited_View (Id))
4282               and then Scope (Non_Limited_View (Id)) = P_Name
4283             then
4284                Candidate        := Get_Full_View (Non_Limited_View (Id));
4285                Is_New_Candidate := True;
4286
4287             else
4288                Is_New_Candidate := False;
4289             end if;
4290
4291             if Is_New_Candidate then
4292                if Is_Child_Unit (Id) then
4293                   exit when Is_Visible_Child_Unit (Id)
4294                     or else Is_Immediately_Visible (Id);
4295
4296                else
4297                   exit when not Is_Hidden (Id)
4298                     or else Is_Immediately_Visible (Id);
4299                end if;
4300             end if;
4301
4302             Id := Homonym (Id);
4303          end loop;
4304       end;
4305
4306       if No (Id)
4307         and then (Ekind (P_Name) = E_Procedure
4308                     or else
4309                   Ekind (P_Name) = E_Function)
4310         and then Is_Generic_Instance (P_Name)
4311       then
4312          --  Expanded name denotes entity in (instance of) generic subprogram.
4313          --  The entity may be in the subprogram instance, or may denote one of
4314          --  the formals, which is declared in the enclosing wrapper package.
4315
4316          P_Name := Scope (P_Name);
4317
4318          Id := Current_Entity (Selector);
4319          while Present (Id) loop
4320             exit when Scope (Id) = P_Name;
4321             Id := Homonym (Id);
4322          end loop;
4323       end if;
4324
4325       if No (Id) or else Chars (Id) /= Chars (Selector) then
4326          Set_Etype (N, Any_Type);
4327
4328          --  If we are looking for an entity defined in System, try to
4329          --  find it in the child package that may have been provided as
4330          --  an extension to System. The Extend_System pragma will have
4331          --  supplied the name of the extension, which may have to be loaded.
4332
4333          if Chars (P_Name) = Name_System
4334            and then Scope (P_Name) = Standard_Standard
4335            and then Present (System_Extend_Unit)
4336            and then Present_System_Aux (N)
4337          then
4338             Set_Entity (Prefix (N), System_Aux_Id);
4339             Find_Expanded_Name (N);
4340             return;
4341
4342          elsif Nkind (Selector) = N_Operator_Symbol
4343            and then Has_Implicit_Operator (N)
4344          then
4345             --  There is an implicit instance of the predefined operator in
4346             --  the given scope. The operator entity is defined in Standard.
4347             --  Has_Implicit_Operator makes the node into an Expanded_Name.
4348
4349             return;
4350
4351          elsif Nkind (Selector) = N_Character_Literal
4352            and then Has_Implicit_Character_Literal (N)
4353          then
4354             --  If there is no literal defined in the scope denoted by the
4355             --  prefix, the literal may belong to (a type derived from)
4356             --  Standard_Character, for which we have no explicit literals.
4357
4358             return;
4359
4360          else
4361             --  If the prefix is a single concurrent object, use its
4362             --  name in  the error message, rather than that of the
4363             --  anonymous type.
4364
4365             if Is_Concurrent_Type (P_Name)
4366               and then Is_Internal_Name (Chars (P_Name))
4367             then
4368                Error_Msg_Node_2 := Entity (Prefix (N));
4369             else
4370                Error_Msg_Node_2 := P_Name;
4371             end if;
4372
4373             if P_Name = System_Aux_Id then
4374                P_Name := Scope (P_Name);
4375                Set_Entity (Prefix (N), P_Name);
4376             end if;
4377
4378             if Present (Candidate) then
4379
4380                --  If we know that the unit is a child unit we can give a more
4381                --  accurate error message.
4382
4383                if Is_Child_Unit (Candidate) then
4384
4385                   --  If the candidate is a private child unit and we are in
4386                   --  the visible part of a public unit, specialize the error
4387                   --  message. There might be a private with_clause for it,
4388                   --  but it is not currently active.
4389
4390                   if Is_Private_Descendant (Candidate)
4391                     and then Ekind (Current_Scope) = E_Package
4392                     and then not In_Private_Part (Current_Scope)
4393                     and then not Is_Private_Descendant (Current_Scope)
4394                   then
4395                      Error_Msg_N ("private child unit& is not visible here",
4396                                   Selector);
4397
4398                   --  Normal case where we have a missing with for a child unit
4399
4400                   else
4401                      Error_Msg_Qual_Level := 99;
4402                      Error_Msg_NE ("missing `WITH &;`", Selector, Candidate);
4403                      Error_Msg_Qual_Level := 0;
4404                   end if;
4405
4406                   --  Here we don't know that this is a child unit
4407
4408                else
4409                   Error_Msg_NE ("& is not a visible entity of&", N, Selector);
4410                end if;
4411
4412             else
4413                --  Within the instantiation of a child unit, the prefix may
4414                --  denote the parent instance, but the selector has the name
4415                --  of the original child. Find whether we are within the
4416                --  corresponding instance, and get the proper entity, which
4417                --  can only be an enclosing scope.
4418
4419                if O_Name /= P_Name
4420                  and then In_Open_Scopes (P_Name)
4421                  and then Is_Generic_Instance (P_Name)
4422                then
4423                   declare
4424                      S : Entity_Id := Current_Scope;
4425                      P : Entity_Id;
4426
4427                   begin
4428                      for J in reverse 0 .. Scope_Stack.Last loop
4429                         S := Scope_Stack.Table (J).Entity;
4430
4431                         exit when S = Standard_Standard;
4432
4433                         if Ekind (S) = E_Function
4434                           or else Ekind (S) = E_Package
4435                           or else Ekind (S) = E_Procedure
4436                         then
4437                            P := Generic_Parent (Specification
4438                                   (Unit_Declaration_Node (S)));
4439
4440                            if Present (P)
4441                              and then Chars (Scope (P)) = Chars (O_Name)
4442                              and then Chars (P) = Chars (Selector)
4443                            then
4444                               Id := S;
4445                               goto Found;
4446                            end if;
4447                         end if;
4448
4449                      end loop;
4450                   end;
4451                end if;
4452
4453                --  If this is a selection from Ada, System or Interfaces, then
4454                --  we assume a missing with for the corresponding package.
4455
4456                if Is_Known_Unit (N) then
4457                   if not Error_Posted (N) then
4458                      Error_Msg_Node_2 := Selector;
4459                      Error_Msg_N ("missing `WITH &.&;`", Prefix (N));
4460                   end if;
4461
4462                --  If this is a selection from a dummy package, then suppress
4463                --  the error message, of course the entity is missing if the
4464                --  package is missing!
4465
4466                elsif Sloc (Error_Msg_Node_2) = No_Location then
4467                   null;
4468
4469                --  Here we have the case of an undefined component
4470
4471                else
4472                   Error_Msg_NE ("& not declared in&", N, Selector);
4473
4474                   --  Check for misspelling of some entity in prefix
4475
4476                   Id := First_Entity (P_Name);
4477                   while Present (Id) loop
4478                      if Is_Bad_Spelling_Of (Chars (Id), Chars (Selector))
4479                        and then not Is_Internal_Name (Chars (Id))
4480                      then
4481                         Error_Msg_NE
4482                           ("possible misspelling of&", Selector, Id);
4483                         exit;
4484                      end if;
4485
4486                      Next_Entity (Id);
4487                   end loop;
4488
4489                   --  Specialize the message if this may be an instantiation
4490                   --  of a child unit that was not mentioned in the context.
4491
4492                   if Nkind (Parent (N)) = N_Package_Instantiation
4493                     and then Is_Generic_Instance (Entity (Prefix (N)))
4494                     and then Is_Compilation_Unit
4495                                (Generic_Parent (Parent (Entity (Prefix (N)))))
4496                   then
4497                      Error_Msg_Node_2 := Selector;
4498                      Error_Msg_N ("\missing `WITH &.&;`", Prefix (N));
4499                   end if;
4500                end if;
4501             end if;
4502
4503             Id := Any_Id;
4504          end if;
4505       end if;
4506
4507       <<Found>>
4508       if Comes_From_Source (N)
4509         and then Is_Remote_Access_To_Subprogram_Type (Id)
4510         and then Present (Equivalent_Type (Id))
4511       then
4512          --  If we are not actually generating distribution code (i.e. the
4513          --  current PCS is the dummy non-distributed version), then the
4514          --  Equivalent_Type will be missing, and Id should be treated as
4515          --  a regular access-to-subprogram type.
4516
4517          Id := Equivalent_Type (Id);
4518          Set_Chars (Selector, Chars (Id));
4519       end if;
4520
4521       --  Ada 2005 (AI-50217): Check usage of entities in limited withed units
4522
4523       if Ekind (P_Name) = E_Package
4524         and then From_With_Type (P_Name)
4525       then
4526          if From_With_Type (Id)
4527            or else Is_Type (Id)
4528            or else Ekind (Id) = E_Package
4529          then
4530             null;
4531          else
4532             Error_Msg_N
4533               ("limited withed package can only be used to access "
4534                & "incomplete types",
4535                 N);
4536          end if;
4537       end if;
4538
4539       if Is_Task_Type (P_Name)
4540         and then ((Ekind (Id) = E_Entry
4541                      and then Nkind (Parent (N)) /= N_Attribute_Reference)
4542                    or else
4543                     (Ekind (Id) = E_Entry_Family
4544                       and then
4545                         Nkind (Parent (Parent (N))) /= N_Attribute_Reference))
4546       then
4547          --  It is an entry call after all, either to the current task (which
4548          --  will deadlock) or to an enclosing task.
4549
4550          Analyze_Selected_Component (N);
4551          return;
4552       end if;
4553
4554       Change_Selected_Component_To_Expanded_Name (N);
4555
4556       --  Do style check and generate reference, but skip both steps if this
4557       --  entity has homonyms, since we may not have the right homonym set yet.
4558       --  The proper homonym will be set during the resolve phase.
4559
4560       if Has_Homonym (Id) then
4561          Set_Entity (N, Id);
4562       else
4563          Set_Entity_With_Style_Check (N, Id);
4564          Generate_Reference (Id, N);
4565       end if;
4566
4567       if Is_Type (Id) then
4568          Set_Etype (N, Id);
4569       else
4570          Set_Etype (N, Get_Full_View (Etype (Id)));
4571       end if;
4572
4573       --  If the Ekind of the entity is Void, it means that all homonyms are
4574       --  hidden from all visibility (RM 8.3(5,14-20)).
4575
4576       if Ekind (Id) = E_Void then
4577          Premature_Usage (N);
4578
4579       elsif Is_Overloadable (Id)
4580         and then Present (Homonym (Id))
4581       then
4582          declare
4583             H : Entity_Id := Homonym (Id);
4584
4585          begin
4586             while Present (H) loop
4587                if Scope (H) = Scope (Id)
4588                  and then
4589                    (not Is_Hidden (H)
4590                       or else Is_Immediately_Visible (H))
4591                then
4592                   Collect_Interps (N);
4593                   exit;
4594                end if;
4595
4596                H := Homonym (H);
4597             end loop;
4598
4599             --  If an extension of System is present, collect possible explicit
4600             --  overloadings declared in the extension.
4601
4602             if Chars (P_Name) = Name_System
4603               and then Scope (P_Name) = Standard_Standard
4604               and then Present (System_Extend_Unit)
4605               and then Present_System_Aux (N)
4606             then
4607                H := Current_Entity (Id);
4608
4609                while Present (H) loop
4610                   if Scope (H) = System_Aux_Id then
4611                      Add_One_Interp (N, H, Etype (H));
4612                   end if;
4613
4614                   H := Homonym (H);
4615                end loop;
4616             end if;
4617          end;
4618       end if;
4619
4620       if Nkind (Selector_Name (N)) = N_Operator_Symbol
4621         and then Scope (Id) /= Standard_Standard
4622       then
4623          --  In addition to user-defined operators in the given scope, there
4624          --  may be an implicit instance of the predefined operator. The
4625          --  operator (defined in Standard) is found in Has_Implicit_Operator,
4626          --  and added to the interpretations. Procedure Add_One_Interp will
4627          --  determine which hides which.
4628
4629          if Has_Implicit_Operator (N) then
4630             null;
4631          end if;
4632       end if;
4633    end Find_Expanded_Name;
4634
4635    -------------------------
4636    -- Find_Renamed_Entity --
4637    -------------------------
4638
4639    function Find_Renamed_Entity
4640      (N         : Node_Id;
4641       Nam       : Node_Id;
4642       New_S     : Entity_Id;
4643       Is_Actual : Boolean := False) return Entity_Id
4644    is
4645       Ind   : Interp_Index;
4646       I1    : Interp_Index := 0; -- Suppress junk warnings
4647       It    : Interp;
4648       It1   : Interp;
4649       Old_S : Entity_Id;
4650       Inst  : Entity_Id;
4651
4652       function Enclosing_Instance return Entity_Id;
4653       --  If the renaming determines the entity for the default of a formal
4654       --  subprogram nested within another instance, choose the innermost
4655       --  candidate. This is because if the formal has a box, and we are within
4656       --  an enclosing instance where some candidate interpretations are local
4657       --  to this enclosing instance, we know that the default was properly
4658       --  resolved when analyzing the generic, so we prefer the local
4659       --  candidates to those that are external. This is not always the case
4660       --  but is a reasonable heuristic on the use of nested generics. The
4661       --  proper solution requires a full renaming model.
4662
4663       function Is_Visible_Operation (Op : Entity_Id) return Boolean;
4664       --  If the renamed entity is an implicit operator, check whether it is
4665       --  visible because its operand type is properly visible. This check
4666       --  applies to explicit renamed entities that appear in the source in a
4667       --  renaming declaration or a formal subprogram instance, but not to
4668       --  default generic actuals with a name.
4669
4670       function Report_Overload return Entity_Id;
4671       --  List possible interpretations, and specialize message in the
4672       --  case of a generic actual.
4673
4674       function Within (Inner, Outer : Entity_Id) return Boolean;
4675       --  Determine whether a candidate subprogram is defined within the
4676       --  enclosing instance. If yes, it has precedence over outer candidates.
4677
4678       ------------------------
4679       -- Enclosing_Instance --
4680       ------------------------
4681
4682       function Enclosing_Instance return Entity_Id is
4683          S : Entity_Id;
4684
4685       begin
4686          if not Is_Generic_Instance (Current_Scope)
4687            and then not Is_Actual
4688          then
4689             return Empty;
4690          end if;
4691
4692          S := Scope (Current_Scope);
4693          while S /= Standard_Standard loop
4694             if Is_Generic_Instance (S) then
4695                return S;
4696             end if;
4697
4698             S := Scope (S);
4699          end loop;
4700
4701          return Empty;
4702       end Enclosing_Instance;
4703
4704       --------------------------
4705       -- Is_Visible_Operation --
4706       --------------------------
4707
4708       function Is_Visible_Operation (Op : Entity_Id) return Boolean is
4709          Scop : Entity_Id;
4710          Typ  : Entity_Id;
4711          Btyp : Entity_Id;
4712
4713       begin
4714          if Ekind (Op) /= E_Operator
4715            or else Scope (Op) /= Standard_Standard
4716            or else (In_Instance
4717                       and then
4718                         (not Is_Actual
4719                            or else Present (Enclosing_Instance)))
4720          then
4721             return True;
4722
4723          else
4724             --  For a fixed point type operator, check the resulting type,
4725             --  because it may be a mixed mode integer * fixed operation.
4726
4727             if Present (Next_Formal (First_Formal (New_S)))
4728               and then Is_Fixed_Point_Type (Etype (New_S))
4729             then
4730                Typ := Etype (New_S);
4731             else
4732                Typ := Etype (First_Formal (New_S));
4733             end if;
4734
4735             Btyp := Base_Type (Typ);
4736
4737             if Nkind (Nam) /= N_Expanded_Name then
4738                return (In_Open_Scopes (Scope (Btyp))
4739                         or else Is_Potentially_Use_Visible (Btyp)
4740                         or else In_Use (Btyp)
4741                         or else In_Use (Scope (Btyp)));
4742
4743             else
4744                Scop := Entity (Prefix (Nam));
4745
4746                if Ekind (Scop) = E_Package
4747                  and then Present (Renamed_Object (Scop))
4748                then
4749                   Scop := Renamed_Object (Scop);
4750                end if;
4751
4752                --  Operator is visible if prefix of expanded name denotes
4753                --  scope of type, or else type type is defined in System_Aux
4754                --  and the prefix denotes System.
4755
4756                return Scope (Btyp) = Scop
4757                  or else (Scope (Btyp) = System_Aux_Id
4758                            and then Scope (Scope (Btyp)) = Scop);
4759             end if;
4760          end if;
4761       end Is_Visible_Operation;
4762
4763       ------------
4764       -- Within --
4765       ------------
4766
4767       function Within (Inner, Outer : Entity_Id) return Boolean is
4768          Sc : Entity_Id;
4769
4770       begin
4771          Sc := Scope (Inner);
4772          while Sc /= Standard_Standard loop
4773             if Sc = Outer then
4774                return True;
4775             else
4776                Sc := Scope (Sc);
4777             end if;
4778          end loop;
4779
4780          return False;
4781       end Within;
4782
4783       ---------------------
4784       -- Report_Overload --
4785       ---------------------
4786
4787       function Report_Overload return Entity_Id is
4788       begin
4789          if Is_Actual then
4790             Error_Msg_NE
4791               ("ambiguous actual subprogram&, " &
4792                  "possible interpretations:", N, Nam);
4793          else
4794             Error_Msg_N
4795               ("ambiguous subprogram, " &
4796                  "possible interpretations:", N);
4797          end if;
4798
4799          List_Interps (Nam, N);
4800          return Old_S;
4801       end Report_Overload;
4802
4803    --  Start of processing for Find_Renamed_Entry
4804
4805    begin
4806       Old_S := Any_Id;
4807       Candidate_Renaming := Empty;
4808
4809       if not Is_Overloaded (Nam) then
4810          if Entity_Matches_Spec (Entity (Nam), New_S)
4811            and then Is_Visible_Operation (Entity (Nam))
4812          then
4813             Old_S := Entity (Nam);
4814
4815          elsif
4816            Present (First_Formal (Entity (Nam)))
4817              and then Present (First_Formal (New_S))
4818              and then (Base_Type (Etype (First_Formal (Entity (Nam))))
4819                         = Base_Type (Etype (First_Formal (New_S))))
4820          then
4821             Candidate_Renaming := Entity (Nam);
4822          end if;
4823
4824       else
4825          Get_First_Interp (Nam, Ind, It);
4826          while Present (It.Nam) loop
4827             if Entity_Matches_Spec (It.Nam, New_S)
4828                and then Is_Visible_Operation (It.Nam)
4829             then
4830                if Old_S /= Any_Id then
4831
4832                   --  Note: The call to Disambiguate only happens if a
4833                   --  previous interpretation was found, in which case I1
4834                   --  has received a value.
4835
4836                   It1 := Disambiguate (Nam, I1, Ind, Etype (Old_S));
4837
4838                   if It1 = No_Interp then
4839                      Inst := Enclosing_Instance;
4840
4841                      if Present (Inst) then
4842                         if Within (It.Nam, Inst) then
4843                            return (It.Nam);
4844                         elsif Within (Old_S, Inst) then
4845                            return (Old_S);
4846                         else
4847                            return Report_Overload;
4848                         end if;
4849
4850                      else
4851                         return Report_Overload;
4852                      end if;
4853
4854                   else
4855                      Old_S := It1.Nam;
4856                      exit;
4857                   end if;
4858
4859                else
4860                   I1 := Ind;
4861                   Old_S := It.Nam;
4862                end if;
4863
4864             elsif
4865               Present (First_Formal (It.Nam))
4866                 and then Present (First_Formal (New_S))
4867                 and then  (Base_Type (Etype (First_Formal (It.Nam)))
4868                             = Base_Type (Etype (First_Formal (New_S))))
4869             then
4870                Candidate_Renaming := It.Nam;
4871             end if;
4872
4873             Get_Next_Interp (Ind, It);
4874          end loop;
4875
4876          Set_Entity (Nam, Old_S);
4877          Set_Is_Overloaded (Nam, False);
4878       end if;
4879
4880       return Old_S;
4881    end Find_Renamed_Entity;
4882
4883    -----------------------------
4884    -- Find_Selected_Component --
4885    -----------------------------
4886
4887    procedure Find_Selected_Component (N : Node_Id) is
4888       P : constant Node_Id := Prefix (N);
4889
4890       P_Name : Entity_Id;
4891       --  Entity denoted by prefix
4892
4893       P_Type : Entity_Id;
4894       --  and its type
4895
4896       Nam : Node_Id;
4897
4898    begin
4899       Analyze (P);
4900
4901       if Nkind (P) = N_Error then
4902          return;
4903
4904       --  If the selector already has an entity, the node has been constructed
4905       --  in the course of expansion, and is known to be valid. Do not verify
4906       --  that it is defined for the type (it may be a private component used
4907       --  in the expansion of record equality).
4908
4909       elsif Present (Entity (Selector_Name (N))) then
4910
4911          if No (Etype (N))
4912            or else Etype (N) = Any_Type
4913          then
4914             declare
4915                Sel_Name : constant Node_Id   := Selector_Name (N);
4916                Selector : constant Entity_Id := Entity (Sel_Name);
4917                C_Etype  : Node_Id;
4918
4919             begin
4920                Set_Etype (Sel_Name, Etype (Selector));
4921
4922                if not Is_Entity_Name (P) then
4923                   Resolve (P);
4924                end if;
4925
4926                --  Build an actual subtype except for the first parameter
4927                --  of an init proc, where this actual subtype is by
4928                --  definition incorrect, since the object is uninitialized
4929                --  (and does not even have defined discriminants etc.)
4930
4931                if Is_Entity_Name (P)
4932                  and then Ekind (Entity (P)) = E_Function
4933                then
4934                   Nam := New_Copy (P);
4935
4936                   if Is_Overloaded (P) then
4937                      Save_Interps (P, Nam);
4938                   end if;
4939
4940                   Rewrite (P,
4941                     Make_Function_Call (Sloc (P), Name => Nam));
4942                   Analyze_Call (P);
4943                   Analyze_Selected_Component (N);
4944                   return;
4945
4946                elsif Ekind (Selector) = E_Component
4947                  and then (not Is_Entity_Name (P)
4948                             or else Chars (Entity (P)) /= Name_uInit)
4949                then
4950                   C_Etype :=
4951                     Build_Actual_Subtype_Of_Component (
4952                       Etype (Selector), N);
4953                else
4954                   C_Etype := Empty;
4955                end if;
4956
4957                if No (C_Etype) then
4958                   C_Etype := Etype (Selector);
4959                else
4960                   Insert_Action (N, C_Etype);
4961                   C_Etype := Defining_Identifier (C_Etype);
4962                end if;
4963
4964                Set_Etype (N, C_Etype);
4965             end;
4966
4967             --  If this is the name of an entry or protected operation, and
4968             --  the prefix is an access type, insert an explicit dereference,
4969             --  so that entry calls are treated uniformly.
4970
4971             if Is_Access_Type (Etype (P))
4972               and then Is_Concurrent_Type (Designated_Type (Etype (P)))
4973             then
4974                declare
4975                   New_P : constant Node_Id :=
4976                             Make_Explicit_Dereference (Sloc (P),
4977                               Prefix => Relocate_Node (P));
4978                begin
4979                   Rewrite (P, New_P);
4980                   Set_Etype (P, Designated_Type (Etype (Prefix (P))));
4981                end;
4982             end if;
4983
4984          --  If the selected component appears within a default expression
4985          --  and it has an actual subtype, the pre-analysis has not yet
4986          --  completed its analysis, because Insert_Actions is disabled in
4987          --  that context. Within the init proc of the enclosing type we
4988          --  must complete this analysis, if an actual subtype was created.
4989
4990          elsif Inside_Init_Proc then
4991             declare
4992                Typ  : constant Entity_Id := Etype (N);
4993                Decl : constant Node_Id   := Declaration_Node (Typ);
4994             begin
4995                if Nkind (Decl) = N_Subtype_Declaration
4996                  and then not Analyzed (Decl)
4997                  and then Is_List_Member (Decl)
4998                  and then No (Parent (Decl))
4999                then
5000                   Remove (Decl);
5001                   Insert_Action (N, Decl);
5002                end if;
5003             end;
5004          end if;
5005
5006          return;
5007
5008       elsif Is_Entity_Name (P) then
5009          P_Name := Entity (P);
5010
5011          --  The prefix may denote an enclosing type which is the completion
5012          --  of an incomplete type declaration.
5013
5014          if Is_Type (P_Name) then
5015             Set_Entity (P, Get_Full_View (P_Name));
5016             Set_Etype  (P, Entity (P));
5017             P_Name := Entity (P);
5018          end if;
5019
5020          P_Type := Base_Type (Etype (P));
5021
5022          if Debug_Flag_E then
5023             Write_Str ("Found prefix type to be ");
5024             Write_Entity_Info (P_Type, "      "); Write_Eol;
5025          end if;
5026
5027          --  First check for components of a record object (not the
5028          --  result of a call, which is handled below).
5029
5030          if Is_Appropriate_For_Record (P_Type)
5031            and then not Is_Overloadable (P_Name)
5032            and then not Is_Type (P_Name)
5033          then
5034             --  Selected component of record. Type checking will validate
5035             --  name of selector.
5036             --  ??? could we rewrite an implicit dereference into an explicit
5037             --  one here?
5038
5039             Analyze_Selected_Component (N);
5040
5041          elsif Is_Appropriate_For_Entry_Prefix (P_Type)
5042            and then not In_Open_Scopes (P_Name)
5043            and then (not Is_Concurrent_Type (Etype (P_Name))
5044                        or else not In_Open_Scopes (Etype (P_Name)))
5045          then
5046             --  Call to protected operation or entry. Type checking is
5047             --  needed on the prefix.
5048
5049             Analyze_Selected_Component (N);
5050
5051          elsif (In_Open_Scopes (P_Name)
5052                   and then Ekind (P_Name) /= E_Void
5053                   and then not Is_Overloadable (P_Name))
5054            or else (Is_Concurrent_Type (Etype (P_Name))
5055                       and then In_Open_Scopes (Etype (P_Name)))
5056          then
5057             --  Prefix denotes an enclosing loop, block, or task, i.e. an
5058             --  enclosing construct that is not a subprogram or accept.
5059
5060             Find_Expanded_Name (N);
5061
5062          elsif Ekind (P_Name) = E_Package then
5063             Find_Expanded_Name (N);
5064
5065          elsif Is_Overloadable (P_Name) then
5066
5067             --  The subprogram may be a renaming (of an enclosing scope) as
5068             --  in the case of the name of the generic within an instantiation.
5069
5070             if (Ekind (P_Name) = E_Procedure
5071                  or else Ekind (P_Name) = E_Function)
5072               and then Present (Alias (P_Name))
5073               and then Is_Generic_Instance (Alias (P_Name))
5074             then
5075                P_Name := Alias (P_Name);
5076             end if;
5077
5078             if Is_Overloaded (P) then
5079
5080                --  The prefix must resolve to a unique enclosing construct
5081
5082                declare
5083                   Found : Boolean := False;
5084                   Ind   : Interp_Index;
5085                   It    : Interp;
5086
5087                begin
5088                   Get_First_Interp (P, Ind, It);
5089                   while Present (It.Nam) loop
5090                      if In_Open_Scopes (It.Nam) then
5091                         if Found then
5092                            Error_Msg_N (
5093                               "prefix must be unique enclosing scope", N);
5094                            Set_Entity (N, Any_Id);
5095                            Set_Etype  (N, Any_Type);
5096                            return;
5097
5098                         else
5099                            Found := True;
5100                            P_Name := It.Nam;
5101                         end if;
5102                      end if;
5103
5104                      Get_Next_Interp (Ind, It);
5105                   end loop;
5106                end;
5107             end if;
5108
5109             if In_Open_Scopes (P_Name) then
5110                Set_Entity (P, P_Name);
5111                Set_Is_Overloaded (P, False);
5112                Find_Expanded_Name (N);
5113
5114             else
5115                --  If no interpretation as an expanded name is possible, it
5116                --  must be a selected component of a record returned by a
5117                --  function call. Reformat prefix as a function call, the rest
5118                --  is done by type resolution. If the prefix is procedure or
5119                --  entry, as is P.X; this is an error.
5120
5121                if Ekind (P_Name) /= E_Function
5122                  and then (not Is_Overloaded (P)
5123                              or else
5124                            Nkind (Parent (N)) = N_Procedure_Call_Statement)
5125                then
5126                   --  Prefix may mention a package that is hidden by a local
5127                   --  declaration: let the user know. Scan the full homonym
5128                   --  chain, the candidate package may be anywhere on it.
5129
5130                   if Present (Homonym (Current_Entity (P_Name))) then
5131
5132                      P_Name := Current_Entity (P_Name);
5133
5134                      while Present (P_Name) loop
5135                         exit when Ekind (P_Name) = E_Package;
5136                         P_Name := Homonym (P_Name);
5137                      end loop;
5138
5139                      if Present (P_Name) then
5140                         Error_Msg_Sloc := Sloc (Entity (Prefix (N)));
5141
5142                         Error_Msg_NE
5143                           ("package& is hidden by declaration#",
5144                             N, P_Name);
5145
5146                         Set_Entity (Prefix (N), P_Name);
5147                         Find_Expanded_Name (N);
5148                         return;
5149                      else
5150                         P_Name := Entity (Prefix (N));
5151                      end if;
5152                   end if;
5153
5154                   Error_Msg_NE
5155                     ("invalid prefix in selected component&", N, P_Name);
5156                   Change_Selected_Component_To_Expanded_Name (N);
5157                   Set_Entity (N, Any_Id);
5158                   Set_Etype (N, Any_Type);
5159
5160                else
5161                   Nam := New_Copy (P);
5162                   Save_Interps (P, Nam);
5163                   Rewrite (P,
5164                     Make_Function_Call (Sloc (P), Name => Nam));
5165                   Analyze_Call (P);
5166                   Analyze_Selected_Component (N);
5167                end if;
5168             end if;
5169
5170          --  Remaining cases generate various error messages
5171
5172          else
5173             --  Format node as expanded name, to avoid cascaded errors
5174
5175             Change_Selected_Component_To_Expanded_Name (N);
5176             Set_Entity  (N, Any_Id);
5177             Set_Etype   (N, Any_Type);
5178
5179             --  Issue error message, but avoid this if error issued already.
5180             --  Use identifier of prefix if one is available.
5181
5182             if P_Name = Any_Id  then
5183                null;
5184
5185             elsif Ekind (P_Name) = E_Void then
5186                Premature_Usage (P);
5187
5188             elsif Nkind (P) /= N_Attribute_Reference then
5189                Error_Msg_N (
5190                 "invalid prefix in selected component&", P);
5191
5192                if Is_Access_Type (P_Type)
5193                  and then Ekind (Designated_Type (P_Type)) = E_Incomplete_Type
5194                then
5195                   Error_Msg_N
5196                     ("\dereference must not be of an incomplete type " &
5197                        "(RM 3.10.1)", P);
5198                end if;
5199
5200             else
5201                Error_Msg_N (
5202                 "invalid prefix in selected component", P);
5203             end if;
5204          end if;
5205
5206       else
5207          --  If prefix is not the name of an entity, it must be an expression,
5208          --  whose type is appropriate for a record. This is determined by
5209          --  type resolution.
5210
5211          Analyze_Selected_Component (N);
5212       end if;
5213    end Find_Selected_Component;
5214
5215    ---------------
5216    -- Find_Type --
5217    ---------------
5218
5219    procedure Find_Type (N : Node_Id) is
5220       C      : Entity_Id;
5221       Typ    : Entity_Id;
5222       T      : Entity_Id;
5223       T_Name : Entity_Id;
5224
5225    begin
5226       if N = Error then
5227          return;
5228
5229       elsif Nkind (N) = N_Attribute_Reference then
5230
5231          --  Class attribute. This is not valid in Ada 83 mode, but we do not
5232          --  need to enforce that at this point, since the declaration of the
5233          --  tagged type in the prefix would have been flagged already.
5234
5235          if Attribute_Name (N) = Name_Class then
5236             Check_Restriction (No_Dispatch, N);
5237             Find_Type (Prefix (N));
5238
5239             --  Propagate error from bad prefix
5240
5241             if Etype (Prefix (N)) = Any_Type then
5242                Set_Entity (N, Any_Type);
5243                Set_Etype  (N, Any_Type);
5244                return;
5245             end if;
5246
5247             T := Base_Type (Entity (Prefix (N)));
5248
5249             --  Case where type is not known to be tagged. Its appearance in
5250             --  the prefix of the 'Class attribute indicates that the full view
5251             --  will be tagged.
5252
5253             if not Is_Tagged_Type (T) then
5254                if Ekind (T) = E_Incomplete_Type then
5255
5256                   --  It is legal to denote the class type of an incomplete
5257                   --  type. The full type will have to be tagged, of course.
5258                   --  In Ada 2005 this usage is declared obsolescent, so we
5259                   --  warn accordingly.
5260
5261                   --  ??? This test is temporarily disabled (always False)
5262                   --  because it causes an unwanted warning on GNAT sources
5263                   --  (built with -gnatg, which includes Warn_On_Obsolescent_
5264                   --  Feature). Once this issue is cleared in the sources, it
5265                   --  can be enabled.
5266
5267                   if not Is_Tagged_Type (T)
5268                     and then Ada_Version >= Ada_05
5269                     and then Warn_On_Obsolescent_Feature
5270                     and then False
5271                   then
5272                      Error_Msg_N
5273                        ("applying 'Class to an untagged incomplete type"
5274                          & " is an obsolescent feature  (RM J.11)", N);
5275                   end if;
5276
5277                   Set_Is_Tagged_Type (T);
5278                   Set_Primitive_Operations (T, New_Elmt_List);
5279                   Make_Class_Wide_Type (T);
5280                   Set_Entity (N, Class_Wide_Type (T));
5281                   Set_Etype  (N, Class_Wide_Type (T));
5282
5283                elsif Ekind (T) = E_Private_Type
5284                  and then not Is_Generic_Type (T)
5285                  and then In_Private_Part (Scope (T))
5286                then
5287                   --  The Class attribute can be applied to an untagged private
5288                   --  type fulfilled by a tagged type prior to the full type
5289                   --  declaration (but only within the parent package's private
5290                   --  part). Create the class-wide type now and check that the
5291                   --  full type is tagged later during its analysis. Note that
5292                   --  we do not mark the private type as tagged, unlike the
5293                   --  case of incomplete types, because the type must still
5294                   --  appear untagged to outside units.
5295
5296                   if No (Class_Wide_Type (T)) then
5297                      Make_Class_Wide_Type (T);
5298                   end if;
5299
5300                   Set_Entity (N, Class_Wide_Type (T));
5301                   Set_Etype  (N, Class_Wide_Type (T));
5302
5303                else
5304                   --  Should we introduce a type Any_Tagged and use Wrong_Type
5305                   --  here, it would be a bit more consistent???
5306
5307                   Error_Msg_NE
5308                     ("tagged type required, found}",
5309                      Prefix (N), First_Subtype (T));
5310                   Set_Entity (N, Any_Type);
5311                   return;
5312                end if;
5313
5314             --  Case of tagged type
5315
5316             else
5317                if Is_Concurrent_Type (T) then
5318                   if No (Corresponding_Record_Type (Entity (Prefix (N)))) then
5319
5320                      --  Previous error. Use current type, which at least
5321                      --  provides some operations.
5322
5323                      C := Entity (Prefix (N));
5324
5325                   else
5326                      C := Class_Wide_Type
5327                             (Corresponding_Record_Type (Entity (Prefix (N))));
5328                   end if;
5329
5330                else
5331                   C := Class_Wide_Type (Entity (Prefix (N)));
5332                end if;
5333
5334                Set_Entity_With_Style_Check (N, C);
5335                Generate_Reference (C, N);
5336                Set_Etype (N, C);
5337             end if;
5338
5339          --  Base attribute, not allowed in Ada 83
5340
5341          elsif Attribute_Name (N) = Name_Base then
5342             if Ada_Version = Ada_83 and then Comes_From_Source (N) then
5343                Error_Msg_N
5344                  ("(Ada 83) Base attribute not allowed in subtype mark", N);
5345
5346             else
5347                Find_Type (Prefix (N));
5348                Typ := Entity (Prefix (N));
5349
5350                if Ada_Version >= Ada_95
5351                  and then not Is_Scalar_Type (Typ)
5352                  and then not Is_Generic_Type (Typ)
5353                then
5354                   Error_Msg_N
5355                     ("prefix of Base attribute must be scalar type",
5356                       Prefix (N));
5357
5358                elsif Sloc (Typ) = Standard_Location
5359                  and then Base_Type (Typ) = Typ
5360                  and then Warn_On_Redundant_Constructs
5361                then
5362                   Error_Msg_NE
5363                     ("?redundant attribute, & is its own base type", N, Typ);
5364                end if;
5365
5366                T := Base_Type (Typ);
5367
5368                --  Rewrite attribute reference with type itself (see similar
5369                --  processing in Analyze_Attribute, case Base). Preserve
5370                --  prefix if present, for other legality checks.
5371
5372                if Nkind (Prefix (N)) = N_Expanded_Name then
5373                   Rewrite (N,
5374                      Make_Expanded_Name (Sloc (N),
5375                        Chars         => Chars (T),
5376                        Prefix        => New_Copy (Prefix (Prefix (N))),
5377                        Selector_Name => New_Reference_To (T, Sloc (N))));
5378
5379                else
5380                   Rewrite (N, New_Reference_To (T, Sloc (N)));
5381                end if;
5382
5383                Set_Entity (N, T);
5384                Set_Etype (N, T);
5385             end if;
5386
5387          elsif Attribute_Name (N) = Name_Stub_Type then
5388
5389             --  This is handled in Analyze_Attribute
5390
5391             Analyze (N);
5392
5393          --  All other attributes are invalid in a subtype mark
5394
5395          else
5396             Error_Msg_N ("invalid attribute in subtype mark", N);
5397          end if;
5398
5399       else
5400          Analyze (N);
5401
5402          if Is_Entity_Name (N) then
5403             T_Name := Entity (N);
5404          else
5405             Error_Msg_N ("subtype mark required in this context", N);
5406             Set_Etype (N, Any_Type);
5407             return;
5408          end if;
5409
5410          if T_Name  = Any_Id or else Etype (N) = Any_Type then
5411
5412             --  Undefined id. Make it into a valid type
5413
5414             Set_Entity (N, Any_Type);
5415
5416          elsif not Is_Type (T_Name)
5417            and then T_Name /= Standard_Void_Type
5418          then
5419             Error_Msg_Sloc := Sloc (T_Name);
5420             Error_Msg_N ("subtype mark required in this context", N);
5421             Error_Msg_NE ("\\found & declared#", N, T_Name);
5422             Set_Entity (N, Any_Type);
5423
5424          else
5425             --  If the type is an incomplete type created to handle
5426             --  anonymous access components of a record type, then the
5427             --  incomplete type is the visible entity and subsequent
5428             --  references will point to it. Mark the original full
5429             --  type as referenced, to prevent spurious warnings.
5430
5431             if Is_Incomplete_Type (T_Name)
5432               and then Present (Full_View (T_Name))
5433               and then not Comes_From_Source (T_Name)
5434             then
5435                Set_Referenced (Full_View (T_Name));
5436             end if;
5437
5438             T_Name := Get_Full_View (T_Name);
5439
5440             --  Ada 2005 (AI-251, AI-50217): Handle interfaces visible through
5441             --  limited-with clauses
5442
5443             if From_With_Type (T_Name)
5444               and then Ekind (T_Name) in Incomplete_Kind
5445               and then Present (Non_Limited_View (T_Name))
5446               and then Is_Interface (Non_Limited_View (T_Name))
5447             then
5448                T_Name := Non_Limited_View (T_Name);
5449             end if;
5450
5451             if In_Open_Scopes (T_Name) then
5452                if Ekind (Base_Type (T_Name)) = E_Task_Type then
5453
5454                   --  In Ada 2005, a task name can be used in an access
5455                   --  definition within its own body.
5456
5457                   if Ada_Version >= Ada_05
5458                     and then Nkind (Parent (N)) = N_Access_Definition
5459                   then
5460                      Set_Entity (N, T_Name);
5461                      Set_Etype  (N, T_Name);
5462                      return;
5463
5464                   else
5465                      Error_Msg_N
5466                        ("task type cannot be used as type mark " &
5467                         "within its own spec or body", N);
5468                   end if;
5469
5470                elsif Ekind (Base_Type (T_Name)) = E_Protected_Type then
5471
5472                   --  In Ada 2005, a protected name can be used in an access
5473                   --  definition within its own body.
5474
5475                   if Ada_Version >= Ada_05
5476                     and then Nkind (Parent (N)) = N_Access_Definition
5477                   then
5478                      Set_Entity (N, T_Name);
5479                      Set_Etype  (N, T_Name);
5480                      return;
5481
5482                   else
5483                      Error_Msg_N
5484                        ("protected type cannot be used as type mark " &
5485                         "within its own spec or body", N);
5486                   end if;
5487
5488                else
5489                   Error_Msg_N ("type declaration cannot refer to itself", N);
5490                end if;
5491
5492                Set_Etype (N, Any_Type);
5493                Set_Entity (N, Any_Type);
5494                Set_Error_Posted (T_Name);
5495                return;
5496             end if;
5497
5498             Set_Entity (N, T_Name);
5499             Set_Etype  (N, T_Name);
5500          end if;
5501       end if;
5502
5503       if Present (Etype (N)) and then Comes_From_Source (N) then
5504          if Is_Fixed_Point_Type (Etype (N)) then
5505             Check_Restriction (No_Fixed_Point, N);
5506          elsif Is_Floating_Point_Type (Etype (N)) then
5507             Check_Restriction (No_Floating_Point, N);
5508          end if;
5509       end if;
5510    end Find_Type;
5511
5512    ------------------------------------
5513    -- Has_Implicit_Character_Literal --
5514    ------------------------------------
5515
5516    function Has_Implicit_Character_Literal (N : Node_Id) return Boolean is
5517       Id      : Entity_Id;
5518       Found   : Boolean := False;
5519       P       : constant Entity_Id := Entity (Prefix (N));
5520       Priv_Id : Entity_Id := Empty;
5521
5522    begin
5523       if Ekind (P) = E_Package
5524         and then not In_Open_Scopes (P)
5525       then
5526          Priv_Id := First_Private_Entity (P);
5527       end if;
5528
5529       if P = Standard_Standard then
5530          Change_Selected_Component_To_Expanded_Name (N);
5531          Rewrite (N, Selector_Name (N));
5532          Analyze (N);
5533          Set_Etype (Original_Node (N), Standard_Character);
5534          return True;
5535       end if;
5536
5537       Id := First_Entity (P);
5538       while Present (Id)
5539         and then Id /= Priv_Id
5540       loop
5541          if Is_Standard_Character_Type (Id)
5542            and then Id = Base_Type (Id)
5543          then
5544             --  We replace the node with the literal itself, resolve as a
5545             --  character, and set the type correctly.
5546
5547             if not Found then
5548                Change_Selected_Component_To_Expanded_Name (N);
5549                Rewrite (N, Selector_Name (N));
5550                Analyze (N);
5551                Set_Etype (N, Id);
5552                Set_Etype (Original_Node (N), Id);
5553                Found := True;
5554
5555             else
5556                --  More than one type derived from Character in given scope.
5557                --  Collect all possible interpretations.
5558
5559                Add_One_Interp (N, Id, Id);
5560             end if;
5561          end if;
5562
5563          Next_Entity (Id);
5564       end loop;
5565
5566       return Found;
5567    end Has_Implicit_Character_Literal;
5568
5569    ----------------------
5570    -- Has_Private_With --
5571    ----------------------
5572
5573    function Has_Private_With (E : Entity_Id) return Boolean is
5574       Comp_Unit : constant Node_Id := Cunit (Current_Sem_Unit);
5575       Item      : Node_Id;
5576
5577    begin
5578       Item := First (Context_Items (Comp_Unit));
5579       while Present (Item) loop
5580          if Nkind (Item) = N_With_Clause
5581            and then Private_Present (Item)
5582            and then Entity (Name (Item)) = E
5583          then
5584             return True;
5585          end if;
5586
5587          Next (Item);
5588       end loop;
5589
5590       return False;
5591    end Has_Private_With;
5592
5593    ---------------------------
5594    -- Has_Implicit_Operator --
5595    ---------------------------
5596
5597    function Has_Implicit_Operator (N : Node_Id) return Boolean is
5598       Op_Id   : constant Name_Id   := Chars (Selector_Name (N));
5599       P       : constant Entity_Id := Entity (Prefix (N));
5600       Id      : Entity_Id;
5601       Priv_Id : Entity_Id := Empty;
5602
5603       procedure Add_Implicit_Operator
5604         (T       : Entity_Id;
5605          Op_Type : Entity_Id := Empty);
5606       --  Add implicit interpretation to node N, using the type for which a
5607       --  predefined operator exists. If the operator yields a boolean type,
5608       --  the Operand_Type is implicitly referenced by the operator, and a
5609       --  reference to it must be generated.
5610
5611       ---------------------------
5612       -- Add_Implicit_Operator --
5613       ---------------------------
5614
5615       procedure Add_Implicit_Operator
5616         (T       : Entity_Id;
5617          Op_Type : Entity_Id := Empty)
5618       is
5619          Predef_Op : Entity_Id;
5620
5621       begin
5622          Predef_Op := Current_Entity (Selector_Name (N));
5623
5624          while Present (Predef_Op)
5625            and then Scope (Predef_Op) /= Standard_Standard
5626          loop
5627             Predef_Op := Homonym (Predef_Op);
5628          end loop;
5629
5630          if Nkind (N) = N_Selected_Component then
5631             Change_Selected_Component_To_Expanded_Name (N);
5632          end if;
5633
5634          Add_One_Interp (N, Predef_Op, T);
5635
5636          --  For operators with unary and binary interpretations, add both
5637
5638          if Present (Homonym (Predef_Op)) then
5639             Add_One_Interp (N, Homonym (Predef_Op), T);
5640          end if;
5641
5642          --  The node is a reference to a predefined operator, and
5643          --  an implicit reference to the type of its operands.
5644
5645          if Present (Op_Type) then
5646             Generate_Operator_Reference (N, Op_Type);
5647          else
5648             Generate_Operator_Reference (N, T);
5649          end if;
5650       end Add_Implicit_Operator;
5651
5652    --  Start of processing for Has_Implicit_Operator
5653
5654    begin
5655       if Ekind (P) = E_Package
5656         and then not In_Open_Scopes (P)
5657       then
5658          Priv_Id := First_Private_Entity (P);
5659       end if;
5660
5661       Id := First_Entity (P);
5662
5663       case Op_Id is
5664
5665          --  Boolean operators: an implicit declaration exists if the scope
5666          --  contains a declaration for a derived Boolean type, or for an
5667          --  array of Boolean type.
5668
5669          when Name_Op_And | Name_Op_Not | Name_Op_Or  | Name_Op_Xor =>
5670             while Id  /= Priv_Id loop
5671                if Valid_Boolean_Arg (Id)
5672                  and then Id = Base_Type (Id)
5673                then
5674                   Add_Implicit_Operator (Id);
5675                   return True;
5676                end if;
5677
5678                Next_Entity (Id);
5679             end loop;
5680
5681          --  Equality: look for any non-limited type (result is Boolean)
5682
5683          when Name_Op_Eq | Name_Op_Ne =>
5684             while Id  /= Priv_Id loop
5685                if Is_Type (Id)
5686                  and then not Is_Limited_Type (Id)
5687                  and then Id = Base_Type (Id)
5688                then
5689                   Add_Implicit_Operator (Standard_Boolean, Id);
5690                   return True;
5691                end if;
5692
5693                Next_Entity (Id);
5694             end loop;
5695
5696          --  Comparison operators: scalar type, or array of scalar
5697
5698          when Name_Op_Lt | Name_Op_Le | Name_Op_Gt | Name_Op_Ge =>
5699             while Id  /= Priv_Id loop
5700                if (Is_Scalar_Type (Id)
5701                  or else (Is_Array_Type (Id)
5702                            and then Is_Scalar_Type (Component_Type (Id))))
5703                  and then Id = Base_Type (Id)
5704                then
5705                   Add_Implicit_Operator (Standard_Boolean, Id);
5706                   return True;
5707                end if;
5708
5709                Next_Entity (Id);
5710             end loop;
5711
5712          --  Arithmetic operators: any numeric type
5713
5714          when Name_Op_Abs      |
5715               Name_Op_Add      |
5716               Name_Op_Mod      |
5717               Name_Op_Rem      |
5718               Name_Op_Subtract |
5719               Name_Op_Multiply |
5720               Name_Op_Divide   |
5721               Name_Op_Expon    =>
5722             while Id  /= Priv_Id loop
5723                if Is_Numeric_Type (Id)
5724                  and then Id = Base_Type (Id)
5725                then
5726                   Add_Implicit_Operator (Id);
5727                   return True;
5728                end if;
5729
5730                Next_Entity (Id);
5731             end loop;
5732
5733          --  Concatenation: any one-dimensional array type
5734
5735          when Name_Op_Concat =>
5736             while Id  /= Priv_Id loop
5737                if Is_Array_Type (Id) and then Number_Dimensions (Id) = 1
5738                  and then Id = Base_Type (Id)
5739                then
5740                   Add_Implicit_Operator (Id);
5741                   return True;
5742                end if;
5743
5744                Next_Entity (Id);
5745             end loop;
5746
5747          --  What is the others condition here? Should we be using a
5748          --  subtype of Name_Id that would restrict to operators ???
5749
5750          when others => null;
5751       end case;
5752
5753       --  If we fall through, then we do not have an implicit operator
5754
5755       return False;
5756
5757    end Has_Implicit_Operator;
5758
5759    --------------------
5760    -- In_Open_Scopes --
5761    --------------------
5762
5763    function In_Open_Scopes (S : Entity_Id) return Boolean is
5764    begin
5765       --  Several scope stacks are maintained by Scope_Stack. The base of the
5766       --  currently active scope stack is denoted by the Is_Active_Stack_Base
5767       --  flag in the scope stack entry. Note that the scope stacks used to
5768       --  simply be delimited implicitly by the presence of Standard_Standard
5769       --  at their base, but there now are cases where this is not sufficient
5770       --  because Standard_Standard actually may appear in the middle of the
5771       --  active set of scopes.
5772
5773       for J in reverse 0 .. Scope_Stack.Last loop
5774          if Scope_Stack.Table (J).Entity = S then
5775             return True;
5776          end if;
5777
5778          --  Check Is_Active_Stack_Base to tell us when to stop, as there are
5779          --  cases where Standard_Standard appears in the middle of the active
5780          --  set of scopes. This affects the declaration and overriding of
5781          --  private inherited operations in instantiations of generic child
5782          --  units.
5783
5784          exit when Scope_Stack.Table (J).Is_Active_Stack_Base;
5785       end loop;
5786
5787       return False;
5788    end In_Open_Scopes;
5789
5790    -----------------------------
5791    -- Inherit_Renamed_Profile --
5792    -----------------------------
5793
5794    procedure Inherit_Renamed_Profile (New_S : Entity_Id; Old_S : Entity_Id) is
5795       New_F : Entity_Id;
5796       Old_F : Entity_Id;
5797       Old_T : Entity_Id;
5798       New_T : Entity_Id;
5799
5800    begin
5801       if Ekind (Old_S) = E_Operator then
5802          New_F := First_Formal (New_S);
5803
5804          while Present (New_F) loop
5805             Set_Etype (New_F, Base_Type (Etype (New_F)));
5806             Next_Formal (New_F);
5807          end loop;
5808
5809          Set_Etype (New_S, Base_Type (Etype (New_S)));
5810
5811       else
5812          New_F := First_Formal (New_S);
5813          Old_F := First_Formal (Old_S);
5814
5815          while Present (New_F) loop
5816             New_T := Etype (New_F);
5817             Old_T := Etype (Old_F);
5818
5819             --  If the new type is a renaming of the old one, as is the
5820             --  case for actuals in instances, retain its name, to simplify
5821             --  later disambiguation.
5822
5823             if Nkind (Parent (New_T)) = N_Subtype_Declaration
5824               and then Is_Entity_Name (Subtype_Indication (Parent (New_T)))
5825               and then Entity (Subtype_Indication (Parent (New_T))) = Old_T
5826             then
5827                null;
5828             else
5829                Set_Etype (New_F, Old_T);
5830             end if;
5831
5832             Next_Formal (New_F);
5833             Next_Formal (Old_F);
5834          end loop;
5835
5836          if Ekind (Old_S) = E_Function
5837            or else Ekind (Old_S) = E_Enumeration_Literal
5838          then
5839             Set_Etype (New_S, Etype (Old_S));
5840          end if;
5841       end if;
5842    end Inherit_Renamed_Profile;
5843
5844    ----------------
5845    -- Initialize --
5846    ----------------
5847
5848    procedure Initialize is
5849    begin
5850       Urefs.Init;
5851    end Initialize;
5852
5853    -------------------------
5854    -- Install_Use_Clauses --
5855    -------------------------
5856
5857    procedure Install_Use_Clauses
5858      (Clause             : Node_Id;
5859       Force_Installation : Boolean := False)
5860    is
5861       U  : Node_Id;
5862       P  : Node_Id;
5863       Id : Entity_Id;
5864
5865    begin
5866       U := Clause;
5867       while Present (U) loop
5868
5869          --  Case of USE package
5870
5871          if Nkind (U) = N_Use_Package_Clause then
5872             P := First (Names (U));
5873             while Present (P) loop
5874                Id := Entity (P);
5875
5876                if Ekind (Id) = E_Package then
5877                   if In_Use (Id) then
5878                      Note_Redundant_Use (P);
5879
5880                   elsif Present (Renamed_Object (Id))
5881                     and then In_Use (Renamed_Object (Id))
5882                   then
5883                      Note_Redundant_Use (P);
5884
5885                   elsif Force_Installation or else Applicable_Use (P) then
5886                      Use_One_Package (Id, U);
5887
5888                   end if;
5889                end if;
5890
5891                Next (P);
5892             end loop;
5893
5894          --  Case of USE TYPE
5895
5896          else
5897             P := First (Subtype_Marks (U));
5898             while Present (P) loop
5899                if not Is_Entity_Name (P)
5900                  or else No (Entity (P))
5901                then
5902                   null;
5903
5904                elsif Entity (P) /= Any_Type then
5905                   Use_One_Type (P);
5906                end if;
5907
5908                Next (P);
5909             end loop;
5910          end if;
5911
5912          Next_Use_Clause (U);
5913       end loop;
5914    end Install_Use_Clauses;
5915
5916    -------------------------------------
5917    -- Is_Appropriate_For_Entry_Prefix --
5918    -------------------------------------
5919
5920    function Is_Appropriate_For_Entry_Prefix (T : Entity_Id) return Boolean is
5921       P_Type : Entity_Id := T;
5922
5923    begin
5924       if Is_Access_Type (P_Type) then
5925          P_Type := Designated_Type (P_Type);
5926       end if;
5927
5928       return Is_Task_Type (P_Type) or else Is_Protected_Type (P_Type);
5929    end Is_Appropriate_For_Entry_Prefix;
5930
5931    -------------------------------
5932    -- Is_Appropriate_For_Record --
5933    -------------------------------
5934
5935    function Is_Appropriate_For_Record (T : Entity_Id) return Boolean is
5936
5937       function Has_Components (T1 : Entity_Id) return Boolean;
5938       --  Determine if given type has components (i.e. is either a record
5939       --  type or a type that has discriminants).
5940
5941       --------------------
5942       -- Has_Components --
5943       --------------------
5944
5945       function Has_Components (T1 : Entity_Id) return Boolean is
5946       begin
5947          return Is_Record_Type (T1)
5948            or else (Is_Private_Type (T1) and then Has_Discriminants (T1))
5949            or else (Is_Task_Type (T1) and then Has_Discriminants (T1))
5950            or else (Is_Incomplete_Type (T1)
5951                      and then From_With_Type (T1)
5952                      and then Present (Non_Limited_View (T1))
5953                      and then Is_Record_Type
5954                                 (Get_Full_View (Non_Limited_View (T1))));
5955       end Has_Components;
5956
5957    --  Start of processing for Is_Appropriate_For_Record
5958
5959    begin
5960       return
5961         Present (T)
5962           and then (Has_Components (T)
5963                      or else (Is_Access_Type (T)
5964                                and then Has_Components (Designated_Type (T))));
5965    end Is_Appropriate_For_Record;
5966
5967    ------------------------
5968    -- Note_Redundant_Use --
5969    ------------------------
5970
5971    procedure Note_Redundant_Use (Clause : Node_Id) is
5972       Pack_Name : constant Entity_Id := Entity (Clause);
5973       Cur_Use   : constant Node_Id   := Current_Use_Clause (Pack_Name);
5974       Decl      : constant Node_Id   := Parent (Clause);
5975
5976       Prev_Use   : Node_Id := Empty;
5977       Redundant  : Node_Id := Empty;
5978       --  The Use_Clause which is actually redundant. In the simplest case
5979       --  it is Pack itself, but when we compile a body we install its
5980       --  context before that of its spec, in which case it is the use_clause
5981       --  in the spec that will appear to be redundant, and we want the
5982       --  warning to be placed on the body. Similar complications appear when
5983       --  the redundancy is between a child unit and one of its ancestors.
5984
5985    begin
5986       Set_Redundant_Use (Clause, True);
5987
5988       if not Comes_From_Source (Clause)
5989         or else In_Instance
5990         or else not Warn_On_Redundant_Constructs
5991       then
5992          return;
5993       end if;
5994
5995       if not Is_Compilation_Unit (Current_Scope) then
5996
5997          --  If the use_clause is in an inner scope, it is made redundant
5998          --  by some clause in the current context, with one exception:
5999          --  If we're compiling a nested package body, and the use_clause
6000          --  comes from the corresponding spec, the clause is not necessarily
6001          --  fully redundant, so we should not warn.  If a warning was
6002          --  warranted, it would have been given when the spec was processed.
6003
6004          if Nkind (Parent (Decl)) = N_Package_Specification then
6005             declare
6006                Package_Spec_Entity : constant Entity_Id :=
6007                                        Defining_Unit_Name (Parent (Decl));
6008             begin
6009                if In_Package_Body (Package_Spec_Entity) then
6010                   return;
6011                end if;
6012             end;
6013          end if;
6014
6015          Redundant := Clause;
6016          Prev_Use  := Cur_Use;
6017
6018       elsif Nkind (Unit (Cunit (Current_Sem_Unit))) = N_Package_Body then
6019          declare
6020             Cur_Unit : constant Unit_Number_Type := Get_Source_Unit (Cur_Use);
6021             New_Unit : constant Unit_Number_Type := Get_Source_Unit (Clause);
6022             Scop     : Entity_Id;
6023
6024          begin
6025             if Cur_Unit = New_Unit then
6026
6027                --  Redundant clause in same body
6028
6029                Redundant := Clause;
6030                Prev_Use  := Cur_Use;
6031
6032             elsif Cur_Unit = Current_Sem_Unit then
6033
6034                --  If the new clause is not in the current unit it has been
6035                --  analyzed first, and it makes the other one redundant.
6036                --  However, if the new clause appears in a subunit, Cur_Unit
6037                --  is still the parent, and in that case the redundant one
6038                --  is the one appearing in the subunit.
6039
6040                if Nkind (Unit (Cunit (New_Unit))) = N_Subunit then
6041                   Redundant := Clause;
6042                   Prev_Use  := Cur_Use;
6043
6044                --  Most common case: redundant clause in body,
6045                --  original clause in spec. Current scope is spec entity.
6046
6047                elsif
6048                  Current_Scope =
6049                    Defining_Entity (
6050                      Unit (Library_Unit (Cunit (Current_Sem_Unit))))
6051                then
6052                   Redundant := Cur_Use;
6053                   Prev_Use  := Clause;
6054
6055                else
6056                   --  The new clause may appear in an unrelated unit, when
6057                   --  the parents of a generic are being installed prior to
6058                   --  instantiation. In this case there must be no warning.
6059                   --  We detect this case by checking whether the current top
6060                   --  of the stack is related to the current compilation.
6061
6062                   Scop := Current_Scope;
6063                   while Present (Scop)
6064                     and then Scop /= Standard_Standard
6065                   loop
6066                      if Is_Compilation_Unit (Scop)
6067                        and then not Is_Child_Unit (Scop)
6068                      then
6069                         return;
6070
6071                      elsif Scop = Cunit_Entity (Current_Sem_Unit) then
6072                         exit;
6073                      end if;
6074
6075                      Scop := Scope (Scop);
6076                   end loop;
6077
6078                   Redundant := Cur_Use;
6079                   Prev_Use  := Clause;
6080                end if;
6081
6082             elsif New_Unit = Current_Sem_Unit then
6083                Redundant := Clause;
6084                Prev_Use  := Cur_Use;
6085
6086             else
6087                --  Neither is the current unit, so they appear in parent or
6088                --  sibling units. Warning will be emitted elsewhere.
6089
6090                return;
6091             end if;
6092          end;
6093
6094       elsif Nkind (Unit (Cunit (Current_Sem_Unit))) = N_Package_Declaration
6095         and then Present (Parent_Spec (Unit (Cunit (Current_Sem_Unit))))
6096       then
6097          --  Use_clause is in child unit of current unit, and the child
6098          --  unit appears in the context of the body of the parent, so it
6099          --  has been installed first, even though it is the redundant one.
6100          --  Depending on their placement in the context, the visible or the
6101          --  private parts of the two units, either might appear as redundant,
6102          --  but the message has to be on the current unit.
6103
6104          if Get_Source_Unit (Cur_Use) = Current_Sem_Unit then
6105             Redundant := Cur_Use;
6106             Prev_Use  := Clause;
6107          else
6108             Redundant := Clause;
6109             Prev_Use  := Cur_Use;
6110          end if;
6111
6112          --  If the new use clause appears in the private part of a parent unit
6113          --  it may appear to be redundant w.r.t. a use clause in a child unit,
6114          --  but the previous use clause was needed in the visible part of the
6115          --  child, and no warning should be emitted.
6116
6117          if Nkind (Parent (Decl)) = N_Package_Specification
6118            and then
6119              List_Containing (Decl) = Private_Declarations (Parent (Decl))
6120          then
6121             declare
6122                Par : constant Entity_Id := Defining_Entity (Parent (Decl));
6123                Spec : constant Node_Id  :=
6124                         Specification (Unit (Cunit (Current_Sem_Unit)));
6125
6126             begin
6127                if Is_Compilation_Unit (Par)
6128                  and then Par /= Cunit_Entity (Current_Sem_Unit)
6129                  and then Parent (Cur_Use) = Spec
6130                  and then
6131                    List_Containing (Cur_Use) = Visible_Declarations (Spec)
6132                then
6133                   return;
6134                end if;
6135             end;
6136          end if;
6137
6138       else
6139          null;
6140       end if;
6141
6142       if Present (Redundant) then
6143          Error_Msg_Sloc := Sloc (Prev_Use);
6144          Error_Msg_NE
6145            ("& is already use-visible through previous use clause #?",
6146             Redundant, Pack_Name);
6147       end if;
6148    end Note_Redundant_Use;
6149
6150    ---------------
6151    -- Pop_Scope --
6152    ---------------
6153
6154    procedure Pop_Scope is
6155       SST : Scope_Stack_Entry renames Scope_Stack.Table (Scope_Stack.Last);
6156
6157    begin
6158       if Debug_Flag_E then
6159          Write_Info;
6160       end if;
6161
6162       Scope_Suppress           := SST.Save_Scope_Suppress;
6163       Local_Suppress_Stack_Top := SST.Save_Local_Suppress_Stack_Top;
6164       Check_Policy_List        := SST.Save_Check_Policy_List;
6165
6166       if Debug_Flag_W then
6167          Write_Str ("--> exiting scope: ");
6168          Write_Name (Chars (Current_Scope));
6169          Write_Str (", Depth=");
6170          Write_Int (Int (Scope_Stack.Last));
6171          Write_Eol;
6172       end if;
6173
6174       End_Use_Clauses (SST.First_Use_Clause);
6175
6176       --  If the actions to be wrapped are still there they will get lost
6177       --  causing incomplete code to be generated. It is better to abort in
6178       --  this case (and we do the abort even with assertions off since the
6179       --  penalty is incorrect code generation)
6180
6181       if SST.Actions_To_Be_Wrapped_Before /= No_List
6182            or else
6183          SST.Actions_To_Be_Wrapped_After  /= No_List
6184       then
6185          return;
6186       end if;
6187
6188       --  Free last subprogram name if allocated, and pop scope
6189
6190       Free (SST.Last_Subprogram_Name);
6191       Scope_Stack.Decrement_Last;
6192    end Pop_Scope;
6193
6194    ---------------
6195    -- Push_Scope --
6196    ---------------
6197
6198    procedure Push_Scope (S : Entity_Id) is
6199       E : Entity_Id;
6200
6201    begin
6202       if Ekind (S) = E_Void then
6203          null;
6204
6205       --  Set scope depth if not a non-concurrent type, and we have not
6206       --  yet set the scope depth. This means that we have the first
6207       --  occurrence of the scope, and this is where the depth is set.
6208
6209       elsif (not Is_Type (S) or else Is_Concurrent_Type (S))
6210         and then not Scope_Depth_Set (S)
6211       then
6212          if S = Standard_Standard then
6213             Set_Scope_Depth_Value (S, Uint_0);
6214
6215          elsif Is_Child_Unit (S) then
6216             Set_Scope_Depth_Value (S, Uint_1);
6217
6218          elsif not Is_Record_Type (Current_Scope) then
6219             if Ekind (S) = E_Loop then
6220                Set_Scope_Depth_Value (S, Scope_Depth (Current_Scope));
6221             else
6222                Set_Scope_Depth_Value (S, Scope_Depth (Current_Scope) + 1);
6223             end if;
6224          end if;
6225       end if;
6226
6227       Scope_Stack.Increment_Last;
6228
6229       declare
6230          SST : Scope_Stack_Entry renames Scope_Stack.Table (Scope_Stack.Last);
6231
6232       begin
6233          SST.Entity                        := S;
6234          SST.Save_Scope_Suppress           := Scope_Suppress;
6235          SST.Save_Local_Suppress_Stack_Top := Local_Suppress_Stack_Top;
6236          SST.Save_Check_Policy_List        := Check_Policy_List;
6237
6238          if Scope_Stack.Last > Scope_Stack.First then
6239             SST.Component_Alignment_Default := Scope_Stack.Table
6240                                                  (Scope_Stack.Last - 1).
6241                                                    Component_Alignment_Default;
6242          end if;
6243
6244          SST.Last_Subprogram_Name           := null;
6245          SST.Is_Transient                   := False;
6246          SST.Node_To_Be_Wrapped             := Empty;
6247          SST.Pending_Freeze_Actions         := No_List;
6248          SST.Actions_To_Be_Wrapped_Before   := No_List;
6249          SST.Actions_To_Be_Wrapped_After    := No_List;
6250          SST.First_Use_Clause               := Empty;
6251          SST.Is_Active_Stack_Base           := False;
6252          SST.Previous_Visibility            := False;
6253       end;
6254
6255       if Debug_Flag_W then
6256          Write_Str ("--> new scope: ");
6257          Write_Name (Chars (Current_Scope));
6258          Write_Str (", Id=");
6259          Write_Int (Int (Current_Scope));
6260          Write_Str (", Depth=");
6261          Write_Int (Int (Scope_Stack.Last));
6262          Write_Eol;
6263       end if;
6264
6265       --  Deal with copying flags from the previous scope to this one. This
6266       --  is not necessary if either scope is standard, or if the new scope
6267       --  is a child unit.
6268
6269       if S /= Standard_Standard
6270         and then Scope (S) /= Standard_Standard
6271         and then not Is_Child_Unit (S)
6272       then
6273          E := Scope (S);
6274
6275          if Nkind (E) not in N_Entity then
6276             return;
6277          end if;
6278
6279          --  Copy categorization flags from Scope (S) to S, this is not done
6280          --  when Scope (S) is Standard_Standard since propagation is from
6281          --  library unit entity inwards. Copy other relevant attributes as
6282          --  well (Discard_Names in particular).
6283
6284          --  We only propagate inwards for library level entities,
6285          --  inner level subprograms do not inherit the categorization.
6286
6287          if Is_Library_Level_Entity (S) then
6288             Set_Is_Preelaborated  (S, Is_Preelaborated (E));
6289             Set_Is_Shared_Passive (S, Is_Shared_Passive (E));
6290             Set_Discard_Names     (S, Discard_Names (E));
6291             Set_Suppress_Value_Tracking_On_Call
6292                                   (S, Suppress_Value_Tracking_On_Call (E));
6293             Set_Categorization_From_Scope (E => S, Scop => E);
6294          end if;
6295       end if;
6296    end Push_Scope;
6297
6298    ---------------------
6299    -- Premature_Usage --
6300    ---------------------
6301
6302    procedure Premature_Usage (N : Node_Id) is
6303       Kind : constant Node_Kind := Nkind (Parent (Entity (N)));
6304       E    : Entity_Id := Entity (N);
6305
6306    begin
6307       --  Within an instance, the analysis of the actual for a formal object
6308       --  does not see the name of the object itself. This is significant only
6309       --  if the object is an aggregate, where its analysis does not do any
6310       --  name resolution on component associations. (see 4717-008). In such a
6311       --  case, look for the visible homonym on the chain.
6312
6313       if In_Instance
6314         and then Present (Homonym (E))
6315       then
6316          E := Homonym (E);
6317
6318          while Present (E)
6319            and then not In_Open_Scopes (Scope (E))
6320          loop
6321             E := Homonym (E);
6322          end loop;
6323
6324          if Present (E) then
6325             Set_Entity (N, E);
6326             Set_Etype (N, Etype (E));
6327             return;
6328          end if;
6329       end if;
6330
6331       if Kind  = N_Component_Declaration then
6332          Error_Msg_N
6333            ("component&! cannot be used before end of record declaration", N);
6334
6335       elsif Kind  = N_Parameter_Specification then
6336          Error_Msg_N
6337            ("formal parameter&! cannot be used before end of specification",
6338             N);
6339
6340       elsif Kind  = N_Discriminant_Specification then
6341          Error_Msg_N
6342            ("discriminant&! cannot be used before end of discriminant part",
6343             N);
6344
6345       elsif Kind  = N_Procedure_Specification
6346         or else Kind = N_Function_Specification
6347       then
6348          Error_Msg_N
6349            ("subprogram&! cannot be used before end of its declaration",
6350             N);
6351
6352       elsif Kind = N_Full_Type_Declaration then
6353          Error_Msg_N
6354            ("type& cannot be used before end of its declaration!", N);
6355
6356       else
6357          Error_Msg_N
6358            ("object& cannot be used before end of its declaration!", N);
6359       end if;
6360    end Premature_Usage;
6361
6362    ------------------------
6363    -- Present_System_Aux --
6364    ------------------------
6365
6366    function Present_System_Aux (N : Node_Id := Empty) return Boolean is
6367       Loc      : Source_Ptr;
6368       Aux_Name : Unit_Name_Type;
6369       Unum     : Unit_Number_Type;
6370       Withn    : Node_Id;
6371       With_Sys : Node_Id;
6372       The_Unit : Node_Id;
6373
6374       function Find_System (C_Unit : Node_Id) return Entity_Id;
6375       --  Scan context clause of compilation unit to find with_clause
6376       --  for System.
6377
6378       -----------------
6379       -- Find_System --
6380       -----------------
6381
6382       function Find_System (C_Unit : Node_Id) return Entity_Id is
6383          With_Clause : Node_Id;
6384
6385       begin
6386          With_Clause := First (Context_Items (C_Unit));
6387          while Present (With_Clause) loop
6388             if (Nkind (With_Clause) = N_With_Clause
6389               and then Chars (Name (With_Clause)) = Name_System)
6390               and then Comes_From_Source (With_Clause)
6391             then
6392                return With_Clause;
6393             end if;
6394
6395             Next (With_Clause);
6396          end loop;
6397
6398          return Empty;
6399       end Find_System;
6400
6401    --  Start of processing for Present_System_Aux
6402
6403    begin
6404       --  The child unit may have been loaded and analyzed already
6405
6406       if Present (System_Aux_Id) then
6407          return True;
6408
6409       --  If no previous pragma for System.Aux, nothing to load
6410
6411       elsif No (System_Extend_Unit) then
6412          return False;
6413
6414       --  Use the unit name given in the pragma to retrieve the unit.
6415       --  Verify that System itself appears in the context clause of the
6416       --  current compilation. If System is not present, an error will
6417       --  have been reported already.
6418
6419       else
6420          With_Sys := Find_System (Cunit (Current_Sem_Unit));
6421
6422          The_Unit := Unit (Cunit (Current_Sem_Unit));
6423
6424          if No (With_Sys)
6425            and then
6426              (Nkind (The_Unit) = N_Package_Body
6427                 or else (Nkind (The_Unit) = N_Subprogram_Body
6428                            and then
6429                              not Acts_As_Spec (Cunit (Current_Sem_Unit))))
6430          then
6431             With_Sys := Find_System (Library_Unit (Cunit (Current_Sem_Unit)));
6432          end if;
6433
6434          if No (With_Sys)
6435            and then Present (N)
6436          then
6437             --  If we are compiling a subunit, we need to examine its
6438             --  context as well (Current_Sem_Unit is the parent unit);
6439
6440             The_Unit := Parent (N);
6441             while Nkind (The_Unit) /= N_Compilation_Unit loop
6442                The_Unit := Parent (The_Unit);
6443             end loop;
6444
6445             if Nkind (Unit (The_Unit)) = N_Subunit then
6446                With_Sys := Find_System (The_Unit);
6447             end if;
6448          end if;
6449
6450          if No (With_Sys) then
6451             return False;
6452          end if;
6453
6454          Loc := Sloc (With_Sys);
6455          Get_Name_String (Chars (Expression (System_Extend_Unit)));
6456          Name_Buffer (8 .. Name_Len + 7) := Name_Buffer (1 .. Name_Len);
6457          Name_Buffer (1 .. 7) := "system.";
6458          Name_Buffer (Name_Len + 8) := '%';
6459          Name_Buffer (Name_Len + 9) := 's';
6460          Name_Len := Name_Len + 9;
6461          Aux_Name := Name_Find;
6462
6463          Unum :=
6464            Load_Unit
6465              (Load_Name  => Aux_Name,
6466               Required   => False,
6467               Subunit    => False,
6468               Error_Node => With_Sys);
6469
6470          if Unum /= No_Unit then
6471             Semantics (Cunit (Unum));
6472             System_Aux_Id :=
6473               Defining_Entity (Specification (Unit (Cunit (Unum))));
6474
6475             Withn :=
6476               Make_With_Clause (Loc,
6477                 Name =>
6478                   Make_Expanded_Name (Loc,
6479                     Chars  => Chars (System_Aux_Id),
6480                     Prefix => New_Reference_To (Scope (System_Aux_Id), Loc),
6481                     Selector_Name => New_Reference_To (System_Aux_Id, Loc)));
6482
6483             Set_Entity (Name (Withn), System_Aux_Id);
6484
6485             Set_Library_Unit       (Withn, Cunit (Unum));
6486             Set_Corresponding_Spec (Withn, System_Aux_Id);
6487             Set_First_Name         (Withn, True);
6488             Set_Implicit_With      (Withn, True);
6489
6490             Insert_After (With_Sys, Withn);
6491             Mark_Rewrite_Insertion (Withn);
6492             Set_Context_Installed (Withn);
6493
6494             return True;
6495
6496          --  Here if unit load failed
6497
6498          else
6499             Error_Msg_Name_1 := Name_System;
6500             Error_Msg_Name_2 := Chars (Expression (System_Extend_Unit));
6501             Error_Msg_N
6502               ("extension package `%.%` does not exist",
6503                Opt.System_Extend_Unit);
6504             return False;
6505          end if;
6506       end if;
6507    end Present_System_Aux;
6508
6509    -------------------------
6510    -- Restore_Scope_Stack --
6511    -------------------------
6512
6513    procedure Restore_Scope_Stack (Handle_Use : Boolean := True) is
6514       E         : Entity_Id;
6515       S         : Entity_Id;
6516       Comp_Unit : Node_Id;
6517       In_Child  : Boolean := False;
6518       Full_Vis  : Boolean := True;
6519       SS_Last   : constant Int := Scope_Stack.Last;
6520
6521    begin
6522       --  Restore visibility of previous scope stack, if any
6523
6524       for J in reverse 0 .. Scope_Stack.Last loop
6525          exit when  Scope_Stack.Table (J).Entity = Standard_Standard
6526             or else No (Scope_Stack.Table (J).Entity);
6527
6528          S := Scope_Stack.Table (J).Entity;
6529
6530          if not Is_Hidden_Open_Scope (S) then
6531
6532             --  If the parent scope is hidden, its entities are hidden as
6533             --  well, unless the entity is the instantiation currently
6534             --  being analyzed.
6535
6536             if not Is_Hidden_Open_Scope (Scope (S))
6537               or else not Analyzed (Parent (S))
6538               or else Scope (S) = Standard_Standard
6539             then
6540                Set_Is_Immediately_Visible (S, True);
6541             end if;
6542
6543             E := First_Entity (S);
6544             while Present (E) loop
6545                if Is_Child_Unit (E) then
6546                   Set_Is_Immediately_Visible (E,
6547                     Is_Visible_Child_Unit (E) or else In_Open_Scopes (E));
6548                else
6549                   Set_Is_Immediately_Visible (E, True);
6550                end if;
6551
6552                Next_Entity (E);
6553
6554                if not Full_Vis then
6555                   exit when E = First_Private_Entity (S);
6556                end if;
6557             end loop;
6558
6559             --  The visibility of child units (siblings of current compilation)
6560             --  must be restored in any case. Their declarations may appear
6561             --  after the private part of the parent.
6562
6563             if not Full_Vis then
6564                while Present (E) loop
6565                   if Is_Child_Unit (E) then
6566                      Set_Is_Immediately_Visible (E,
6567                        Is_Visible_Child_Unit (E) or else In_Open_Scopes (E));
6568                   end if;
6569
6570                   Next_Entity (E);
6571                end loop;
6572             end if;
6573          end if;
6574
6575          if Is_Child_Unit (S)
6576             and not In_Child     --  check only for current unit
6577          then
6578             In_Child := True;
6579
6580             --  Restore visibility of parents according to whether the child
6581             --  is private and whether we are in its visible part.
6582
6583             Comp_Unit := Parent (Unit_Declaration_Node (S));
6584
6585             if Nkind (Comp_Unit) = N_Compilation_Unit
6586               and then Private_Present (Comp_Unit)
6587             then
6588                Full_Vis := True;
6589
6590             elsif (Ekind (S) = E_Package
6591                     or else Ekind (S) = E_Generic_Package)
6592               and then (In_Private_Part (S)
6593                          or else In_Package_Body (S))
6594             then
6595                Full_Vis := True;
6596
6597             --  if S is the scope of some instance (which has already been
6598             --  seen on the stack) it does not affect the visibility of
6599             --  other scopes.
6600
6601             elsif Is_Hidden_Open_Scope (S) then
6602                null;
6603
6604             elsif (Ekind (S) = E_Procedure
6605                     or else Ekind (S) = E_Function)
6606               and then Has_Completion (S)
6607             then
6608                Full_Vis := True;
6609             else
6610                Full_Vis := False;
6611             end if;
6612          else
6613             Full_Vis := True;
6614          end if;
6615       end loop;
6616
6617       if SS_Last >= Scope_Stack.First
6618         and then Scope_Stack.Table (SS_Last).Entity /= Standard_Standard
6619         and then Handle_Use
6620       then
6621          Install_Use_Clauses (Scope_Stack.Table (SS_Last).First_Use_Clause);
6622       end if;
6623    end Restore_Scope_Stack;
6624
6625    ----------------------
6626    -- Save_Scope_Stack --
6627    ----------------------
6628
6629    procedure Save_Scope_Stack (Handle_Use : Boolean := True) is
6630       E       : Entity_Id;
6631       S       : Entity_Id;
6632       SS_Last : constant Int := Scope_Stack.Last;
6633
6634    begin
6635       if SS_Last >= Scope_Stack.First
6636         and then Scope_Stack.Table (SS_Last).Entity /= Standard_Standard
6637       then
6638          if Handle_Use then
6639             End_Use_Clauses (Scope_Stack.Table (SS_Last).First_Use_Clause);
6640          end if;
6641
6642          --  If the call is from within a compilation unit, as when called from
6643          --  Rtsfind, make current entries in scope stack invisible while we
6644          --  analyze the new unit.
6645
6646          for J in reverse 0 .. SS_Last loop
6647             exit when  Scope_Stack.Table (J).Entity = Standard_Standard
6648                or else No (Scope_Stack.Table (J).Entity);
6649
6650             S := Scope_Stack.Table (J).Entity;
6651             Set_Is_Immediately_Visible (S, False);
6652
6653             E := First_Entity (S);
6654             while Present (E) loop
6655                Set_Is_Immediately_Visible (E, False);
6656                Next_Entity (E);
6657             end loop;
6658          end loop;
6659
6660       end if;
6661    end Save_Scope_Stack;
6662
6663    -------------
6664    -- Set_Use --
6665    -------------
6666
6667    procedure Set_Use (L : List_Id) is
6668       Decl      : Node_Id;
6669       Pack_Name : Node_Id;
6670       Pack      : Entity_Id;
6671       Id        : Entity_Id;
6672
6673    begin
6674       if Present (L) then
6675          Decl := First (L);
6676          while Present (Decl) loop
6677             if Nkind (Decl) = N_Use_Package_Clause then
6678                Chain_Use_Clause (Decl);
6679
6680                Pack_Name := First (Names (Decl));
6681                while Present (Pack_Name) loop
6682                   Pack := Entity (Pack_Name);
6683
6684                   if Ekind (Pack) = E_Package
6685                     and then Applicable_Use (Pack_Name)
6686                   then
6687                      Use_One_Package (Pack, Decl);
6688                   end if;
6689
6690                   Next (Pack_Name);
6691                end loop;
6692
6693             elsif Nkind (Decl) = N_Use_Type_Clause  then
6694                Chain_Use_Clause (Decl);
6695
6696                Id := First (Subtype_Marks (Decl));
6697                while Present (Id) loop
6698                   if Entity (Id) /= Any_Type then
6699                      Use_One_Type (Id);
6700                   end if;
6701
6702                   Next (Id);
6703                end loop;
6704             end if;
6705
6706             Next (Decl);
6707          end loop;
6708       end if;
6709    end Set_Use;
6710
6711    ---------------------
6712    -- Use_One_Package --
6713    ---------------------
6714
6715    procedure Use_One_Package (P : Entity_Id; N : Node_Id) is
6716       Id               : Entity_Id;
6717       Prev             : Entity_Id;
6718       Current_Instance : Entity_Id := Empty;
6719       Real_P           : Entity_Id;
6720       Private_With_OK  : Boolean   := False;
6721
6722    begin
6723       if Ekind (P) /= E_Package then
6724          return;
6725       end if;
6726
6727       Set_In_Use (P);
6728       Set_Current_Use_Clause (P, N);
6729
6730       --  Ada 2005 (AI-50217): Check restriction
6731
6732       if From_With_Type (P) then
6733          Error_Msg_N ("limited withed package cannot appear in use clause", N);
6734       end if;
6735
6736       --  Find enclosing instance, if any
6737
6738       if In_Instance then
6739          Current_Instance := Current_Scope;
6740          while not Is_Generic_Instance (Current_Instance) loop
6741             Current_Instance := Scope (Current_Instance);
6742          end loop;
6743
6744          if No (Hidden_By_Use_Clause (N)) then
6745             Set_Hidden_By_Use_Clause (N, New_Elmt_List);
6746          end if;
6747       end if;
6748
6749       --  If unit is a package renaming, indicate that the renamed
6750       --  package is also in use (the flags on both entities must
6751       --  remain consistent, and a subsequent use of either of them
6752       --  should be recognized as redundant).
6753
6754       if Present (Renamed_Object (P)) then
6755          Set_In_Use (Renamed_Object (P));
6756          Set_Current_Use_Clause (Renamed_Object (P), N);
6757          Real_P := Renamed_Object (P);
6758       else
6759          Real_P := P;
6760       end if;
6761
6762       --  Ada 2005 (AI-262): Check the use_clause of a private withed package
6763       --  found in the private part of a package specification
6764
6765       if In_Private_Part (Current_Scope)
6766         and then Has_Private_With (P)
6767         and then Is_Child_Unit (Current_Scope)
6768         and then Is_Child_Unit (P)
6769         and then Is_Ancestor_Package (Scope (Current_Scope), P)
6770       then
6771          Private_With_OK := True;
6772       end if;
6773
6774       --  Loop through entities in one package making them potentially
6775       --  use-visible.
6776
6777       Id := First_Entity (P);
6778       while Present (Id)
6779         and then (Id /= First_Private_Entity (P)
6780                     or else Private_With_OK) -- Ada 2005 (AI-262)
6781       loop
6782          Prev := Current_Entity (Id);
6783          while Present (Prev) loop
6784             if Is_Immediately_Visible (Prev)
6785               and then (not Is_Overloadable (Prev)
6786                          or else not Is_Overloadable (Id)
6787                          or else (Type_Conformant (Id, Prev)))
6788             then
6789                if No (Current_Instance) then
6790
6791                   --  Potentially use-visible entity remains hidden
6792
6793                   goto Next_Usable_Entity;
6794
6795                --  A use clause within an instance hides outer global entities,
6796                --  which are not used to resolve local entities in the
6797                --  instance. Note that the predefined entities in Standard
6798                --  could not have been hidden in the generic by a use clause,
6799                --  and therefore remain visible. Other compilation units whose
6800                --  entities appear in Standard must be hidden in an instance.
6801
6802                --  To determine whether an entity is external to the instance
6803                --  we compare the scope depth of its scope with that of the
6804                --  current instance. However, a generic actual of a subprogram
6805                --  instance is declared in the wrapper package but will not be
6806                --  hidden by a use-visible entity.
6807
6808                --  If Id is called Standard, the predefined package with the
6809                --  same name is in the homonym chain. It has to be ignored
6810                --  because it has no defined scope (being the only entity in
6811                --  the system with this mandated behavior).
6812
6813                elsif not Is_Hidden (Id)
6814                  and then Present (Scope (Prev))
6815                  and then not Is_Wrapper_Package (Scope (Prev))
6816                  and then Scope_Depth (Scope (Prev)) <
6817                           Scope_Depth (Current_Instance)
6818                  and then (Scope (Prev) /= Standard_Standard
6819                             or else Sloc (Prev) > Standard_Location)
6820                then
6821                   Set_Is_Potentially_Use_Visible (Id);
6822                   Set_Is_Immediately_Visible (Prev, False);
6823                   Append_Elmt (Prev, Hidden_By_Use_Clause (N));
6824                end if;
6825
6826             --  A user-defined operator is not use-visible if the predefined
6827             --  operator for the type is immediately visible, which is the case
6828             --  if the type of the operand is in an open scope. This does not
6829             --  apply to user-defined operators that have operands of different
6830             --  types, because the predefined mixed mode operations (multiply
6831             --  and divide) apply to universal types and do not hide anything.
6832
6833             elsif Ekind (Prev) = E_Operator
6834               and then Operator_Matches_Spec (Prev, Id)
6835               and then In_Open_Scopes
6836                (Scope (Base_Type (Etype (First_Formal (Id)))))
6837               and then (No (Next_Formal (First_Formal (Id)))
6838                          or else Etype (First_Formal (Id))
6839                            = Etype (Next_Formal (First_Formal (Id)))
6840                          or else Chars (Prev) = Name_Op_Expon)
6841             then
6842                goto Next_Usable_Entity;
6843             end if;
6844
6845             Prev := Homonym (Prev);
6846          end loop;
6847
6848          --  On exit, we know entity is not hidden, unless it is private
6849
6850          if not Is_Hidden (Id)
6851            and then ((not Is_Child_Unit (Id))
6852                        or else Is_Visible_Child_Unit (Id))
6853          then
6854             Set_Is_Potentially_Use_Visible (Id);
6855
6856             if Is_Private_Type (Id)
6857               and then Present (Full_View (Id))
6858             then
6859                Set_Is_Potentially_Use_Visible (Full_View (Id));
6860             end if;
6861          end if;
6862
6863          <<Next_Usable_Entity>>
6864             Next_Entity (Id);
6865       end loop;
6866
6867       --  Child units are also made use-visible by a use clause, but they may
6868       --  appear after all visible declarations in the parent entity list.
6869
6870       while Present (Id) loop
6871          if Is_Child_Unit (Id)
6872            and then Is_Visible_Child_Unit (Id)
6873          then
6874             Set_Is_Potentially_Use_Visible (Id);
6875          end if;
6876
6877          Next_Entity (Id);
6878       end loop;
6879
6880       if Chars (Real_P) = Name_System
6881         and then Scope (Real_P) = Standard_Standard
6882         and then Present_System_Aux (N)
6883       then
6884          Use_One_Package (System_Aux_Id, N);
6885       end if;
6886
6887    end Use_One_Package;
6888
6889    ------------------
6890    -- Use_One_Type --
6891    ------------------
6892
6893    procedure Use_One_Type (Id : Node_Id) is
6894       Elmt          : Elmt_Id;
6895       Is_Known_Used : Boolean;
6896       Op_List       : Elist_Id;
6897       T             : Entity_Id;
6898
6899       function Spec_Reloaded_For_Body return Boolean;
6900       --  Determine whether the compilation unit is a package body and the use
6901       --  type clause is in the spec of the same package. Even though the spec
6902       --  was analyzed first, its context is reloaded when analysing the body.
6903
6904       ----------------------------
6905       -- Spec_Reloaded_For_Body --
6906       ----------------------------
6907
6908       function Spec_Reloaded_For_Body return Boolean is
6909       begin
6910          if Nkind (Unit (Cunit (Current_Sem_Unit))) = N_Package_Body then
6911             declare
6912                Spec : constant Node_Id :=
6913                         Parent (List_Containing (Parent (Id)));
6914             begin
6915                return
6916                  Nkind (Spec) = N_Package_Specification
6917                    and then Corresponding_Body (Parent (Spec)) =
6918                               Cunit_Entity (Current_Sem_Unit);
6919             end;
6920          end if;
6921
6922          return False;
6923       end Spec_Reloaded_For_Body;
6924
6925    --  Start of processing for Use_One_Type;
6926
6927    begin
6928       --  It is the type determined by the subtype mark (8.4(8)) whose
6929       --  operations become potentially use-visible.
6930
6931       T := Base_Type (Entity (Id));
6932
6933       --  Either the type itself is used, the package where it is declared
6934       --  is in use or the entity is declared in the current package, thus
6935       --  use-visible.
6936
6937       Is_Known_Used :=
6938         In_Use (T)
6939           or else In_Use (Scope (T))
6940           or else Scope (T) = Current_Scope;
6941
6942       Set_Redundant_Use (Id,
6943         Is_Known_Used or else Is_Potentially_Use_Visible (T));
6944
6945       if In_Open_Scopes (Scope (T)) then
6946          null;
6947
6948       --  A limited view cannot appear in a use_type clause. However, an
6949       --  access type whose designated type is limited has the flag but
6950       --  is not itself a limited view unless we only have a limited view
6951       --  of its enclosing package.
6952
6953       elsif From_With_Type (T)
6954         and then From_With_Type (Scope (T))
6955       then
6956          Error_Msg_N
6957            ("incomplete type from limited view "
6958              & "cannot appear in use clause", Id);
6959
6960       --  If the subtype mark designates a subtype in a different package,
6961       --  we have to check that the parent type is visible, otherwise the
6962       --  use type clause is a noop. Not clear how to do that???
6963
6964       elsif not Redundant_Use (Id) then
6965          Set_In_Use (T);
6966          Set_Current_Use_Clause (T, Parent (Id));
6967          Op_List := Collect_Primitive_Operations (T);
6968
6969          Elmt := First_Elmt (Op_List);
6970          while Present (Elmt) loop
6971             if (Nkind (Node (Elmt)) = N_Defining_Operator_Symbol
6972                  or else Chars (Node (Elmt)) in Any_Operator_Name)
6973               and then not Is_Hidden (Node (Elmt))
6974             then
6975                Set_Is_Potentially_Use_Visible (Node (Elmt));
6976             end if;
6977
6978             Next_Elmt (Elmt);
6979          end loop;
6980       end if;
6981
6982       --  If warning on redundant constructs, check for unnecessary WITH
6983
6984       if Warn_On_Redundant_Constructs
6985         and then Is_Known_Used
6986
6987          --                     with P;         with P; use P;
6988          --    package P is     package X is    package body X is
6989          --       type T ...       use P.T;
6990
6991          --  The compilation unit is the body of X. GNAT first compiles the
6992          --  spec of X, then proceeds to the body. At that point P is marked
6993          --  as use visible. The analysis then reinstalls the spec along with
6994          --  its context. The use clause P.T is now recognized as redundant,
6995          --  but in the wrong context. Do not emit a warning in such cases.
6996
6997         and then not Spec_Reloaded_For_Body
6998       then
6999          --  The type already has a use clause
7000
7001          if In_Use (T) then
7002             if Present (Current_Use_Clause (T)) then
7003                declare
7004                   Clause1 : constant Node_Id := Parent (Id);
7005                   Clause2 : constant Node_Id := Current_Use_Clause (T);
7006                   Err_No  : Node_Id;
7007                   Unit1   : Node_Id;
7008                   Unit2   : Node_Id;
7009
7010                begin
7011                   if Nkind (Parent (Clause1)) = N_Compilation_Unit
7012                     and then Nkind (Parent (Clause2)) = N_Compilation_Unit
7013                   then
7014                      --  There is a redundant use type clause in a child unit.
7015                      --  Determine which of the units is more deeply nested.
7016
7017                      Unit1 := Defining_Entity (Unit (Parent (Clause1)));
7018                      Unit2 := Defining_Entity (Unit (Parent (Clause2)));
7019
7020                      if Scope (Unit2) = Standard_Standard  then
7021                         Error_Msg_Sloc := Sloc (Current_Use_Clause (T));
7022                         Err_No := Clause1;
7023
7024                      elsif Scope (Unit1) = Standard_Standard then
7025                         Error_Msg_Sloc := Sloc (Id);
7026                         Err_No := Clause2;
7027
7028                      else
7029                         --  Determine which is the descendant unit
7030
7031                         declare
7032                            S1, S2 : Entity_Id;
7033
7034                         begin
7035                            S1 := Scope (Unit1);
7036                            S2 := Scope (Unit2);
7037                            while S1 /= Standard_Standard
7038                              and then S2 /= Standard_Standard
7039                            loop
7040                               S1 := Scope (S1);
7041                               S2 := Scope (S2);
7042                            end loop;
7043
7044                            if S1 = Standard_Standard then
7045                               Error_Msg_Sloc := Sloc (Id);
7046                               Err_No := Clause2;
7047                            else
7048                               Error_Msg_Sloc := Sloc (Current_Use_Clause (T));
7049                               Err_No := Clause1;
7050                            end if;
7051                         end;
7052                      end if;
7053
7054                      Error_Msg_NE
7055                        ("& is already use-visible through previous "
7056                         & "use_type_clause #?", Err_No, Id);
7057                   else
7058                      Error_Msg_NE
7059                        ("& is already use-visible through previous use type "
7060                         & "clause?", Id, Id);
7061                   end if;
7062                end;
7063             else
7064                Error_Msg_NE
7065                  ("& is already use-visible through previous use type "
7066                   & "clause?", Id, Id);
7067             end if;
7068
7069          --  The package where T is declared is already used
7070
7071          elsif In_Use (Scope (T)) then
7072             Error_Msg_Sloc := Sloc (Current_Use_Clause (Scope (T)));
7073             Error_Msg_NE
7074               ("& is already use-visible through package use clause #?",
7075                Id, Id);
7076
7077          --  The current scope is the package where T is declared
7078
7079          else
7080             Error_Msg_Node_2 := Scope (T);
7081             Error_Msg_NE
7082               ("& is already use-visible inside package &?", Id, Id);
7083          end if;
7084       end if;
7085    end Use_One_Type;
7086
7087    ----------------
7088    -- Write_Info --
7089    ----------------
7090
7091    procedure Write_Info is
7092       Id : Entity_Id := First_Entity (Current_Scope);
7093
7094    begin
7095       --  No point in dumping standard entities
7096
7097       if Current_Scope = Standard_Standard then
7098          return;
7099       end if;
7100
7101       Write_Str ("========================================================");
7102       Write_Eol;
7103       Write_Str ("        Defined Entities in ");
7104       Write_Name (Chars (Current_Scope));
7105       Write_Eol;
7106       Write_Str ("========================================================");
7107       Write_Eol;
7108
7109       if No (Id) then
7110          Write_Str ("-- none --");
7111          Write_Eol;
7112
7113       else
7114          while Present (Id) loop
7115             Write_Entity_Info (Id, " ");
7116             Next_Entity (Id);
7117          end loop;
7118       end if;
7119
7120       if Scope (Current_Scope) = Standard_Standard then
7121
7122          --  Print information on the current unit itself
7123
7124          Write_Entity_Info (Current_Scope, " ");
7125       end if;
7126
7127       Write_Eol;
7128    end Write_Info;
7129
7130    -----------------
7131    -- Write_Scopes --
7132    -----------------
7133
7134    procedure Write_Scopes is
7135       S : Entity_Id;
7136    begin
7137       for J in reverse 1 .. Scope_Stack.Last loop
7138          S :=  Scope_Stack.Table (J).Entity;
7139          Write_Int (Int (S));
7140          Write_Str (" === ");
7141          Write_Name (Chars (S));
7142          Write_Eol;
7143       end loop;
7144    end Write_Scopes;
7145
7146 end Sem_Ch8;