OSDN Git Service

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