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