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