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