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