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