2014-11-18 Christophe Lyon <christophe.lyon@linaro.org>
[official-gcc.git] / gcc / ada / sem_ch12.adb
blobd77c1d5e13ead32506ca5328c573e75bb40e2b22
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S E M _ C H 1 2 --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2014, 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 ------------------------------------------------------------------------------
26 with Aspects; use Aspects;
27 with Atree; use Atree;
28 with Einfo; use Einfo;
29 with Elists; use Elists;
30 with Errout; use Errout;
31 with Expander; use Expander;
32 with Exp_Disp; use Exp_Disp;
33 with Exp_Util; use Exp_Util;
34 with Fname; use Fname;
35 with Fname.UF; use Fname.UF;
36 with Freeze; use Freeze;
37 with Itypes; use Itypes;
38 with Lib; use Lib;
39 with Lib.Load; use Lib.Load;
40 with Lib.Xref; use Lib.Xref;
41 with Nlists; use Nlists;
42 with Namet; use Namet;
43 with Nmake; use Nmake;
44 with Opt; use Opt;
45 with Rident; use Rident;
46 with Restrict; use Restrict;
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_Ch6; use Sem_Ch6;
53 with Sem_Ch7; use Sem_Ch7;
54 with Sem_Ch8; use Sem_Ch8;
55 with Sem_Ch10; use Sem_Ch10;
56 with Sem_Ch13; use Sem_Ch13;
57 with Sem_Dim; use Sem_Dim;
58 with Sem_Disp; use Sem_Disp;
59 with Sem_Elab; use Sem_Elab;
60 with Sem_Elim; use Sem_Elim;
61 with Sem_Eval; use Sem_Eval;
62 with Sem_Prag; use Sem_Prag;
63 with Sem_Res; use Sem_Res;
64 with Sem_Type; use Sem_Type;
65 with Sem_Util; use Sem_Util;
66 with Sem_Warn; use Sem_Warn;
67 with Stand; use Stand;
68 with Sinfo; use Sinfo;
69 with Sinfo.CN; use Sinfo.CN;
70 with Sinput; use Sinput;
71 with Sinput.L; use Sinput.L;
72 with Snames; use Snames;
73 with Stringt; use Stringt;
74 with Uname; use Uname;
75 with Table;
76 with Tbuild; use Tbuild;
77 with Uintp; use Uintp;
78 with Urealp; use Urealp;
79 with Warnsw; use Warnsw;
81 with GNAT.HTable;
83 package body Sem_Ch12 is
85 ----------------------------------------------------------
86 -- Implementation of Generic Analysis and Instantiation --
87 ----------------------------------------------------------
89 -- GNAT implements generics by macro expansion. No attempt is made to share
90 -- generic instantiations (for now). Analysis of a generic definition does
91 -- not perform any expansion action, but the expander must be called on the
92 -- tree for each instantiation, because the expansion may of course depend
93 -- on the generic actuals. All of this is best achieved as follows:
95 -- a) Semantic analysis of a generic unit is performed on a copy of the
96 -- tree for the generic unit. All tree modifications that follow analysis
97 -- do not affect the original tree. Links are kept between the original
98 -- tree and the copy, in order to recognize non-local references within
99 -- the generic, and propagate them to each instance (recall that name
100 -- resolution is done on the generic declaration: generics are not really
101 -- macros). This is summarized in the following diagram:
103 -- .-----------. .----------.
104 -- | semantic |<--------------| generic |
105 -- | copy | | unit |
106 -- | |==============>| |
107 -- |___________| global |__________|
108 -- references | | |
109 -- | | |
110 -- .-----|--|.
111 -- | .-----|---.
112 -- | | .----------.
113 -- | | | generic |
114 -- |__| | |
115 -- |__| instance |
116 -- |__________|
118 -- b) Each instantiation copies the original tree, and inserts into it a
119 -- series of declarations that describe the mapping between generic formals
120 -- and actuals. For example, a generic In OUT parameter is an object
121 -- renaming of the corresponding actual, etc. Generic IN parameters are
122 -- constant declarations.
124 -- c) In order to give the right visibility for these renamings, we use
125 -- a different scheme for package and subprogram instantiations. For
126 -- packages, the list of renamings is inserted into the package
127 -- specification, before the visible declarations of the package. The
128 -- renamings are analyzed before any of the text of the instance, and are
129 -- thus visible at the right place. Furthermore, outside of the instance,
130 -- the generic parameters are visible and denote their corresponding
131 -- actuals.
133 -- For subprograms, we create a container package to hold the renamings
134 -- and the subprogram instance itself. Analysis of the package makes the
135 -- renaming declarations visible to the subprogram. After analyzing the
136 -- package, the defining entity for the subprogram is touched-up so that
137 -- it appears declared in the current scope, and not inside the container
138 -- package.
140 -- If the instantiation is a compilation unit, the container package is
141 -- given the same name as the subprogram instance. This ensures that
142 -- the elaboration procedure called by the binder, using the compilation
143 -- unit name, calls in fact the elaboration procedure for the package.
145 -- Not surprisingly, private types complicate this approach. By saving in
146 -- the original generic object the non-local references, we guarantee that
147 -- the proper entities are referenced at the point of instantiation.
148 -- However, for private types, this by itself does not insure that the
149 -- proper VIEW of the entity is used (the full type may be visible at the
150 -- point of generic definition, but not at instantiation, or vice-versa).
151 -- In order to reference the proper view, we special-case any reference
152 -- to private types in the generic object, by saving both views, one in
153 -- the generic and one in the semantic copy. At time of instantiation, we
154 -- check whether the two views are consistent, and exchange declarations if
155 -- necessary, in order to restore the correct visibility. Similarly, if
156 -- the instance view is private when the generic view was not, we perform
157 -- the exchange. After completing the instantiation, we restore the
158 -- current visibility. The flag Has_Private_View marks identifiers in the
159 -- the generic unit that require checking.
161 -- Visibility within nested generic units requires special handling.
162 -- Consider the following scheme:
164 -- type Global is ... -- outside of generic unit.
165 -- generic ...
166 -- package Outer is
167 -- ...
168 -- type Semi_Global is ... -- global to inner.
170 -- generic ... -- 1
171 -- procedure inner (X1 : Global; X2 : Semi_Global);
173 -- procedure in2 is new inner (...); -- 4
174 -- end Outer;
176 -- package New_Outer is new Outer (...); -- 2
177 -- procedure New_Inner is new New_Outer.Inner (...); -- 3
179 -- The semantic analysis of Outer captures all occurrences of Global.
180 -- The semantic analysis of Inner (at 1) captures both occurrences of
181 -- Global and Semi_Global.
183 -- At point 2 (instantiation of Outer), we also produce a generic copy
184 -- of Inner, even though Inner is, at that point, not being instantiated.
185 -- (This is just part of the semantic analysis of New_Outer).
187 -- Critically, references to Global within Inner must be preserved, while
188 -- references to Semi_Global should not preserved, because they must now
189 -- resolve to an entity within New_Outer. To distinguish between these, we
190 -- use a global variable, Current_Instantiated_Parent, which is set when
191 -- performing a generic copy during instantiation (at 2). This variable is
192 -- used when performing a generic copy that is not an instantiation, but
193 -- that is nested within one, as the occurrence of 1 within 2. The analysis
194 -- of a nested generic only preserves references that are global to the
195 -- enclosing Current_Instantiated_Parent. We use the Scope_Depth value to
196 -- determine whether a reference is external to the given parent.
198 -- The instantiation at point 3 requires no special treatment. The method
199 -- works as well for further nestings of generic units, but of course the
200 -- variable Current_Instantiated_Parent must be stacked because nested
201 -- instantiations can occur, e.g. the occurrence of 4 within 2.
203 -- The instantiation of package and subprogram bodies is handled in a
204 -- similar manner, except that it is delayed until after semantic
205 -- analysis is complete. In this fashion complex cross-dependencies
206 -- between several package declarations and bodies containing generics
207 -- can be compiled which otherwise would diagnose spurious circularities.
209 -- For example, it is possible to compile two packages A and B that
210 -- have the following structure:
212 -- package A is package B is
213 -- generic ... generic ...
214 -- package G_A is package G_B is
216 -- with B; with A;
217 -- package body A is package body B is
218 -- package N_B is new G_B (..) package N_A is new G_A (..)
220 -- The table Pending_Instantiations in package Inline is used to keep
221 -- track of body instantiations that are delayed in this manner. Inline
222 -- handles the actual calls to do the body instantiations. This activity
223 -- is part of Inline, since the processing occurs at the same point, and
224 -- for essentially the same reason, as the handling of inlined routines.
226 ----------------------------------------------
227 -- Detection of Instantiation Circularities --
228 ----------------------------------------------
230 -- If we have a chain of instantiations that is circular, this is static
231 -- error which must be detected at compile time. The detection of these
232 -- circularities is carried out at the point that we insert a generic
233 -- instance spec or body. If there is a circularity, then the analysis of
234 -- the offending spec or body will eventually result in trying to load the
235 -- same unit again, and we detect this problem as we analyze the package
236 -- instantiation for the second time.
238 -- At least in some cases after we have detected the circularity, we get
239 -- into trouble if we try to keep going. The following flag is set if a
240 -- circularity is detected, and used to abandon compilation after the
241 -- messages have been posted.
243 Circularity_Detected : Boolean := False;
244 -- This should really be reset on encountering a new main unit, but in
245 -- practice we are not using multiple main units so it is not critical.
247 --------------------------------------------------
248 -- Formal packages and partial parameterization --
249 --------------------------------------------------
251 -- When compiling a generic, a formal package is a local instantiation. If
252 -- declared with a box, its generic formals are visible in the enclosing
253 -- generic. If declared with a partial list of actuals, those actuals that
254 -- are defaulted (covered by an Others clause, or given an explicit box
255 -- initialization) are also visible in the enclosing generic, while those
256 -- that have a corresponding actual are not.
258 -- In our source model of instantiation, the same visibility must be
259 -- present in the spec and body of an instance: the names of the formals
260 -- that are defaulted must be made visible within the instance, and made
261 -- invisible (hidden) after the instantiation is complete, so that they
262 -- are not accessible outside of the instance.
264 -- In a generic, a formal package is treated like a special instantiation.
265 -- Our Ada 95 compiler handled formals with and without box in different
266 -- ways. With partial parameterization, we use a single model for both.
267 -- We create a package declaration that consists of the specification of
268 -- the generic package, and a set of declarations that map the actuals
269 -- into local renamings, just as we do for bona fide instantiations. For
270 -- defaulted parameters and formals with a box, we copy directly the
271 -- declarations of the formal into this local package. The result is a
272 -- a package whose visible declarations may include generic formals. This
273 -- package is only used for type checking and visibility analysis, and
274 -- never reaches the back-end, so it can freely violate the placement
275 -- rules for generic formal declarations.
277 -- The list of declarations (renamings and copies of formals) is built
278 -- by Analyze_Associations, just as for regular instantiations.
280 -- At the point of instantiation, conformance checking must be applied only
281 -- to those parameters that were specified in the formal. We perform this
282 -- checking by creating another internal instantiation, this one including
283 -- only the renamings and the formals (the rest of the package spec is not
284 -- relevant to conformance checking). We can then traverse two lists: the
285 -- list of actuals in the instance that corresponds to the formal package,
286 -- and the list of actuals produced for this bogus instantiation. We apply
287 -- the conformance rules to those actuals that are not defaulted (i.e.
288 -- which still appear as generic formals.
290 -- When we compile an instance body we must make the right parameters
291 -- visible again. The predicate Is_Generic_Formal indicates which of the
292 -- formals should have its Is_Hidden flag reset.
294 -----------------------
295 -- Local subprograms --
296 -----------------------
298 procedure Abandon_Instantiation (N : Node_Id);
299 pragma No_Return (Abandon_Instantiation);
300 -- Posts an error message "instantiation abandoned" at the indicated node
301 -- and then raises the exception Instantiation_Error to do it.
303 procedure Analyze_Formal_Array_Type
304 (T : in out Entity_Id;
305 Def : Node_Id);
306 -- A formal array type is treated like an array type declaration, and
307 -- invokes Array_Type_Declaration (sem_ch3) whose first parameter is
308 -- in-out, because in the case of an anonymous type the entity is
309 -- actually created in the procedure.
311 -- The following procedures treat other kinds of formal parameters
313 procedure Analyze_Formal_Derived_Interface_Type
314 (N : Node_Id;
315 T : Entity_Id;
316 Def : Node_Id);
318 procedure Analyze_Formal_Derived_Type
319 (N : Node_Id;
320 T : Entity_Id;
321 Def : Node_Id);
323 procedure Analyze_Formal_Interface_Type
324 (N : Node_Id;
325 T : Entity_Id;
326 Def : Node_Id);
328 -- The following subprograms create abbreviated declarations for formal
329 -- scalar types. We introduce an anonymous base of the proper class for
330 -- each of them, and define the formals as constrained first subtypes of
331 -- their bases. The bounds are expressions that are non-static in the
332 -- generic.
334 procedure Analyze_Formal_Decimal_Fixed_Point_Type
335 (T : Entity_Id; Def : Node_Id);
336 procedure Analyze_Formal_Discrete_Type (T : Entity_Id; Def : Node_Id);
337 procedure Analyze_Formal_Floating_Type (T : Entity_Id; Def : Node_Id);
338 procedure Analyze_Formal_Signed_Integer_Type (T : Entity_Id; Def : Node_Id);
339 procedure Analyze_Formal_Modular_Type (T : Entity_Id; Def : Node_Id);
340 procedure Analyze_Formal_Ordinary_Fixed_Point_Type
341 (T : Entity_Id; Def : Node_Id);
343 procedure Analyze_Formal_Private_Type
344 (N : Node_Id;
345 T : Entity_Id;
346 Def : Node_Id);
347 -- Creates a new private type, which does not require completion
349 procedure Analyze_Formal_Incomplete_Type (T : Entity_Id; Def : Node_Id);
350 -- Ada 2012: Creates a new incomplete type whose actual does not freeze
352 procedure Analyze_Generic_Formal_Part (N : Node_Id);
353 -- Analyze generic formal part
355 procedure Analyze_Generic_Access_Type (T : Entity_Id; Def : Node_Id);
356 -- Create a new access type with the given designated type
358 function Analyze_Associations
359 (I_Node : Node_Id;
360 Formals : List_Id;
361 F_Copy : List_Id) return List_Id;
362 -- At instantiation time, build the list of associations between formals
363 -- and actuals. Each association becomes a renaming declaration for the
364 -- formal entity. F_Copy is the analyzed list of formals in the generic
365 -- copy. It is used to apply legality checks to the actuals. I_Node is the
366 -- instantiation node itself.
368 procedure Analyze_Subprogram_Instantiation
369 (N : Node_Id;
370 K : Entity_Kind);
372 procedure Build_Instance_Compilation_Unit_Nodes
373 (N : Node_Id;
374 Act_Body : Node_Id;
375 Act_Decl : Node_Id);
376 -- This procedure is used in the case where the generic instance of a
377 -- subprogram body or package body is a library unit. In this case, the
378 -- original library unit node for the generic instantiation must be
379 -- replaced by the resulting generic body, and a link made to a new
380 -- compilation unit node for the generic declaration. The argument N is
381 -- the original generic instantiation. Act_Body and Act_Decl are the body
382 -- and declaration of the instance (either package body and declaration
383 -- nodes or subprogram body and declaration nodes depending on the case).
384 -- On return, the node N has been rewritten with the actual body.
386 procedure Check_Access_Definition (N : Node_Id);
387 -- Subsidiary routine to null exclusion processing. Perform an assertion
388 -- check on Ada version and the presence of an access definition in N.
390 procedure Check_Formal_Packages (P_Id : Entity_Id);
391 -- Apply the following to all formal packages in generic associations
393 procedure Check_Formal_Package_Instance
394 (Formal_Pack : Entity_Id;
395 Actual_Pack : Entity_Id);
396 -- Verify that the actuals of the actual instance match the actuals of
397 -- the template for a formal package that is not declared with a box.
399 procedure Check_Forward_Instantiation (Decl : Node_Id);
400 -- If the generic is a local entity and the corresponding body has not
401 -- been seen yet, flag enclosing packages to indicate that it will be
402 -- elaborated after the generic body. Subprograms declared in the same
403 -- package cannot be inlined by the front-end because front-end inlining
404 -- requires a strict linear order of elaboration.
406 function Check_Hidden_Primitives (Assoc_List : List_Id) return Elist_Id;
407 -- Check if some association between formals and actuals requires to make
408 -- visible primitives of a tagged type, and make those primitives visible.
409 -- Return the list of primitives whose visibility is modified (to restore
410 -- their visibility later through Restore_Hidden_Primitives). If no
411 -- candidate is found then return No_Elist.
413 procedure Check_Hidden_Child_Unit
414 (N : Node_Id;
415 Gen_Unit : Entity_Id;
416 Act_Decl_Id : Entity_Id);
417 -- If the generic unit is an implicit child instance within a parent
418 -- instance, we need to make an explicit test that it is not hidden by
419 -- a child instance of the same name and parent.
421 procedure Check_Generic_Actuals
422 (Instance : Entity_Id;
423 Is_Formal_Box : Boolean);
424 -- Similar to previous one. Check the actuals in the instantiation,
425 -- whose views can change between the point of instantiation and the point
426 -- of instantiation of the body. In addition, mark the generic renamings
427 -- as generic actuals, so that they are not compatible with other actuals.
428 -- Recurse on an actual that is a formal package whose declaration has
429 -- a box.
431 function Contains_Instance_Of
432 (Inner : Entity_Id;
433 Outer : Entity_Id;
434 N : Node_Id) return Boolean;
435 -- Inner is instantiated within the generic Outer. Check whether Inner
436 -- directly or indirectly contains an instance of Outer or of one of its
437 -- parents, in the case of a subunit. Each generic unit holds a list of
438 -- the entities instantiated within (at any depth). This procedure
439 -- determines whether the set of such lists contains a cycle, i.e. an
440 -- illegal circular instantiation.
442 function Denotes_Formal_Package
443 (Pack : Entity_Id;
444 On_Exit : Boolean := False;
445 Instance : Entity_Id := Empty) return Boolean;
446 -- Returns True if E is a formal package of an enclosing generic, or
447 -- the actual for such a formal in an enclosing instantiation. If such
448 -- a package is used as a formal in an nested generic, or as an actual
449 -- in a nested instantiation, the visibility of ITS formals should not
450 -- be modified. When called from within Restore_Private_Views, the flag
451 -- On_Exit is true, to indicate that the search for a possible enclosing
452 -- instance should ignore the current one. In that case Instance denotes
453 -- the declaration for which this is an actual. This declaration may be
454 -- an instantiation in the source, or the internal instantiation that
455 -- corresponds to the actual for a formal package.
457 function Earlier (N1, N2 : Node_Id) return Boolean;
458 -- Yields True if N1 and N2 appear in the same compilation unit,
459 -- ignoring subunits, and if N1 is to the left of N2 in a left-to-right
460 -- traversal of the tree for the unit. Used to determine the placement
461 -- of freeze nodes for instance bodies that may depend on other instances.
463 function Find_Actual_Type
464 (Typ : Entity_Id;
465 Gen_Type : Entity_Id) return Entity_Id;
466 -- When validating the actual types of a child instance, check whether
467 -- the formal is a formal type of the parent unit, and retrieve the current
468 -- actual for it. Typ is the entity in the analyzed formal type declaration
469 -- (component or index type of an array type, or designated type of an
470 -- access formal) and Gen_Type is the enclosing analyzed formal array
471 -- or access type. The desired actual may be a formal of a parent, or may
472 -- be declared in a formal package of a parent. In both cases it is a
473 -- generic actual type because it appears within a visible instance.
474 -- Finally, it may be declared in a parent unit without being a formal
475 -- of that unit, in which case it must be retrieved by visibility.
476 -- Ambiguities may still arise if two homonyms are declared in two formal
477 -- packages, and the prefix of the formal type may be needed to resolve
478 -- the ambiguity in the instance ???
480 function In_Same_Declarative_Part
481 (F_Node : Node_Id;
482 Inst : Node_Id) return Boolean;
483 -- True if the instantiation Inst and the given freeze_node F_Node appear
484 -- within the same declarative part, ignoring subunits, but with no inter-
485 -- vening subprograms or concurrent units. Used to find the proper plave
486 -- for the freeze node of an instance, when the generic is declared in a
487 -- previous instance. If predicate is true, the freeze node of the instance
488 -- can be placed after the freeze node of the previous instance, Otherwise
489 -- it has to be placed at the end of the current declarative part.
491 function In_Main_Context (E : Entity_Id) return Boolean;
492 -- Check whether an instantiation is in the context of the main unit.
493 -- Used to determine whether its body should be elaborated to allow
494 -- front-end inlining.
496 procedure Set_Instance_Env
497 (Gen_Unit : Entity_Id;
498 Act_Unit : Entity_Id);
499 -- Save current instance on saved environment, to be used to determine
500 -- the global status of entities in nested instances. Part of Save_Env.
501 -- called after verifying that the generic unit is legal for the instance,
502 -- The procedure also examines whether the generic unit is a predefined
503 -- unit, in order to set configuration switches accordingly. As a result
504 -- the procedure must be called after analyzing and freezing the actuals.
506 procedure Set_Instance_Of (A : Entity_Id; B : Entity_Id);
507 -- Associate analyzed generic parameter with corresponding
508 -- instance. Used for semantic checks at instantiation time.
510 function Has_Been_Exchanged (E : Entity_Id) return Boolean;
511 -- Traverse the Exchanged_Views list to see if a type was private
512 -- and has already been flipped during this phase of instantiation.
514 procedure Hide_Current_Scope;
515 -- When instantiating a generic child unit, the parent context must be
516 -- present, but the instance and all entities that may be generated
517 -- must be inserted in the current scope. We leave the current scope
518 -- on the stack, but make its entities invisible to avoid visibility
519 -- problems. This is reversed at the end of the instantiation. This is
520 -- not done for the instantiation of the bodies, which only require the
521 -- instances of the generic parents to be in scope.
523 procedure Install_Body
524 (Act_Body : Node_Id;
525 N : Node_Id;
526 Gen_Body : Node_Id;
527 Gen_Decl : Node_Id);
528 -- If the instantiation happens textually before the body of the generic,
529 -- the instantiation of the body must be analyzed after the generic body,
530 -- and not at the point of instantiation. Such early instantiations can
531 -- happen if the generic and the instance appear in a package declaration
532 -- because the generic body can only appear in the corresponding package
533 -- body. Early instantiations can also appear if generic, instance and
534 -- body are all in the declarative part of a subprogram or entry. Entities
535 -- of packages that are early instantiations are delayed, and their freeze
536 -- node appears after the generic body.
538 procedure Insert_Freeze_Node_For_Instance
539 (N : Node_Id;
540 F_Node : Node_Id);
541 -- N denotes a package or a subprogram instantiation and F_Node is the
542 -- associated freeze node. Insert the freeze node before the first source
543 -- body which follows immediately after N. If no such body is found, the
544 -- freeze node is inserted at the end of the declarative region which
545 -- contains N.
547 procedure Freeze_Subprogram_Body
548 (Inst_Node : Node_Id;
549 Gen_Body : Node_Id;
550 Pack_Id : Entity_Id);
551 -- The generic body may appear textually after the instance, including
552 -- in the proper body of a stub, or within a different package instance.
553 -- Given that the instance can only be elaborated after the generic, we
554 -- place freeze_nodes for the instance and/or for packages that may enclose
555 -- the instance and the generic, so that the back-end can establish the
556 -- proper order of elaboration.
558 procedure Init_Env;
559 -- Establish environment for subsequent instantiation. Separated from
560 -- Save_Env because data-structures for visibility handling must be
561 -- initialized before call to Check_Generic_Child_Unit.
563 procedure Install_Formal_Packages (Par : Entity_Id);
564 -- Install the visible part of any formal of the parent that is a formal
565 -- package. Note that for the case of a formal package with a box, this
566 -- includes the formal part of the formal package (12.7(10/2)).
568 procedure Install_Parent (P : Entity_Id; In_Body : Boolean := False);
569 -- When compiling an instance of a child unit the parent (which is
570 -- itself an instance) is an enclosing scope that must be made
571 -- immediately visible. This procedure is also used to install the non-
572 -- generic parent of a generic child unit when compiling its body, so
573 -- that full views of types in the parent are made visible.
575 procedure Remove_Parent (In_Body : Boolean := False);
576 -- Reverse effect after instantiation of child is complete
578 procedure Install_Hidden_Primitives
579 (Prims_List : in out Elist_Id;
580 Gen_T : Entity_Id;
581 Act_T : Entity_Id);
582 -- Remove suffix 'P' from hidden primitives of Act_T to match the
583 -- visibility of primitives of Gen_T. The list of primitives to which
584 -- the suffix is removed is added to Prims_List to restore them later.
586 procedure Restore_Hidden_Primitives (Prims_List : in out Elist_Id);
587 -- Restore suffix 'P' to primitives of Prims_List and leave Prims_List
588 -- set to No_Elist.
590 procedure Inline_Instance_Body
591 (N : Node_Id;
592 Gen_Unit : Entity_Id;
593 Act_Decl : Node_Id);
594 -- If front-end inlining is requested, instantiate the package body,
595 -- and preserve the visibility of its compilation unit, to insure
596 -- that successive instantiations succeed.
598 -- The functions Instantiate_XXX perform various legality checks and build
599 -- the declarations for instantiated generic parameters. In all of these
600 -- Formal is the entity in the generic unit, Actual is the entity of
601 -- expression in the generic associations, and Analyzed_Formal is the
602 -- formal in the generic copy, which contains the semantic information to
603 -- be used to validate the actual.
605 function Instantiate_Object
606 (Formal : Node_Id;
607 Actual : Node_Id;
608 Analyzed_Formal : Node_Id) return List_Id;
610 function Instantiate_Type
611 (Formal : Node_Id;
612 Actual : Node_Id;
613 Analyzed_Formal : Node_Id;
614 Actual_Decls : List_Id) return List_Id;
616 function Instantiate_Formal_Subprogram
617 (Formal : Node_Id;
618 Actual : Node_Id;
619 Analyzed_Formal : Node_Id) return Node_Id;
621 function Instantiate_Formal_Package
622 (Formal : Node_Id;
623 Actual : Node_Id;
624 Analyzed_Formal : Node_Id) return List_Id;
625 -- If the formal package is declared with a box, special visibility rules
626 -- apply to its formals: they are in the visible part of the package. This
627 -- is true in the declarative region of the formal package, that is to say
628 -- in the enclosing generic or instantiation. For an instantiation, the
629 -- parameters of the formal package are made visible in an explicit step.
630 -- Furthermore, if the actual has a visible USE clause, these formals must
631 -- be made potentially use-visible as well. On exit from the enclosing
632 -- instantiation, the reverse must be done.
634 -- For a formal package declared without a box, there are conformance rules
635 -- that apply to the actuals in the generic declaration and the actuals of
636 -- the actual package in the enclosing instantiation. The simplest way to
637 -- apply these rules is to repeat the instantiation of the formal package
638 -- in the context of the enclosing instance, and compare the generic
639 -- associations of this instantiation with those of the actual package.
640 -- This internal instantiation only needs to contain the renamings of the
641 -- formals: the visible and private declarations themselves need not be
642 -- created.
644 -- In Ada 2005, the formal package may be only partially parameterized.
645 -- In that case the visibility step must make visible those actuals whose
646 -- corresponding formals were given with a box. A final complication
647 -- involves inherited operations from formal derived types, which must
648 -- be visible if the type is.
650 function Is_In_Main_Unit (N : Node_Id) return Boolean;
651 -- Test if given node is in the main unit
653 procedure Load_Parent_Of_Generic
654 (N : Node_Id;
655 Spec : Node_Id;
656 Body_Optional : Boolean := False);
657 -- If the generic appears in a separate non-generic library unit, load the
658 -- corresponding body to retrieve the body of the generic. N is the node
659 -- for the generic instantiation, Spec is the generic package declaration.
661 -- Body_Optional is a flag that indicates that the body is being loaded to
662 -- ensure that temporaries are generated consistently when there are other
663 -- instances in the current declarative part that precede the one being
664 -- loaded. In that case a missing body is acceptable.
666 procedure Inherit_Context (Gen_Decl : Node_Id; Inst : Node_Id);
667 -- Add the context clause of the unit containing a generic unit to a
668 -- compilation unit that is, or contains, an instantiation.
670 function Get_Associated_Node (N : Node_Id) return Node_Id;
671 -- In order to propagate semantic information back from the analyzed copy
672 -- to the original generic, we maintain links between selected nodes in the
673 -- generic and their corresponding copies. At the end of generic analysis,
674 -- the routine Save_Global_References traverses the generic tree, examines
675 -- the semantic information, and preserves the links to those nodes that
676 -- contain global information. At instantiation, the information from the
677 -- associated node is placed on the new copy, so that name resolution is
678 -- not repeated.
680 -- Three kinds of source nodes have associated nodes:
682 -- a) those that can reference (denote) entities, that is identifiers,
683 -- character literals, expanded_names, operator symbols, operators,
684 -- and attribute reference nodes. These nodes have an Entity field
685 -- and are the set of nodes that are in N_Has_Entity.
687 -- b) aggregates (N_Aggregate and N_Extension_Aggregate)
689 -- c) selected components (N_Selected_Component)
691 -- For the first class, the associated node preserves the entity if it is
692 -- global. If the generic contains nested instantiations, the associated
693 -- node itself has been recopied, and a chain of them must be followed.
695 -- For aggregates, the associated node allows retrieval of the type, which
696 -- may otherwise not appear in the generic. The view of this type may be
697 -- different between generic and instantiation, and the full view can be
698 -- installed before the instantiation is analyzed. For aggregates of type
699 -- extensions, the same view exchange may have to be performed for some of
700 -- the ancestor types, if their view is private at the point of
701 -- instantiation.
703 -- Nodes that are selected components in the parse tree may be rewritten
704 -- as expanded names after resolution, and must be treated as potential
705 -- entity holders, which is why they also have an Associated_Node.
707 -- Nodes that do not come from source, such as freeze nodes, do not appear
708 -- in the generic tree, and need not have an associated node.
710 -- The associated node is stored in the Associated_Node field. Note that
711 -- this field overlaps Entity, which is fine, because the whole point is
712 -- that we don't need or want the normal Entity field in this situation.
714 procedure Map_Formal_Package_Entities (Form : Entity_Id; Act : Entity_Id);
715 -- Within the generic part, entities in the formal package are
716 -- visible. To validate subsequent type declarations, indicate
717 -- the correspondence between the entities in the analyzed formal,
718 -- and the entities in the actual package. There are three packages
719 -- involved in the instantiation of a formal package: the parent
720 -- generic P1 which appears in the generic declaration, the fake
721 -- instantiation P2 which appears in the analyzed generic, and whose
722 -- visible entities may be used in subsequent formals, and the actual
723 -- P3 in the instance. To validate subsequent formals, me indicate
724 -- that the entities in P2 are mapped into those of P3. The mapping of
725 -- entities has to be done recursively for nested packages.
727 procedure Move_Freeze_Nodes
728 (Out_Of : Entity_Id;
729 After : Node_Id;
730 L : List_Id);
731 -- Freeze nodes can be generated in the analysis of a generic unit, but
732 -- will not be seen by the back-end. It is necessary to move those nodes
733 -- to the enclosing scope if they freeze an outer entity. We place them
734 -- at the end of the enclosing generic package, which is semantically
735 -- neutral.
737 procedure Preanalyze_Actuals (N : Node_Id);
738 -- Analyze actuals to perform name resolution. Full resolution is done
739 -- later, when the expected types are known, but names have to be captured
740 -- before installing parents of generics, that are not visible for the
741 -- actuals themselves.
743 function True_Parent (N : Node_Id) return Node_Id;
744 -- For a subunit, return parent of corresponding stub, else return
745 -- parent of node.
747 procedure Valid_Default_Attribute (Nam : Entity_Id; Def : Node_Id);
748 -- Verify that an attribute that appears as the default for a formal
749 -- subprogram is a function or procedure with the correct profile.
751 -------------------------------------------
752 -- Data Structures for Generic Renamings --
753 -------------------------------------------
755 -- The map Generic_Renamings associates generic entities with their
756 -- corresponding actuals. Currently used to validate type instances. It
757 -- will eventually be used for all generic parameters to eliminate the
758 -- need for overload resolution in the instance.
760 type Assoc_Ptr is new Int;
762 Assoc_Null : constant Assoc_Ptr := -1;
764 type Assoc is record
765 Gen_Id : Entity_Id;
766 Act_Id : Entity_Id;
767 Next_In_HTable : Assoc_Ptr;
768 end record;
770 package Generic_Renamings is new Table.Table
771 (Table_Component_Type => Assoc,
772 Table_Index_Type => Assoc_Ptr,
773 Table_Low_Bound => 0,
774 Table_Initial => 10,
775 Table_Increment => 100,
776 Table_Name => "Generic_Renamings");
778 -- Variable to hold enclosing instantiation. When the environment is
779 -- saved for a subprogram inlining, the corresponding Act_Id is empty.
781 Current_Instantiated_Parent : Assoc := (Empty, Empty, Assoc_Null);
783 -- Hash table for associations
785 HTable_Size : constant := 37;
786 type HTable_Range is range 0 .. HTable_Size - 1;
788 procedure Set_Next_Assoc (E : Assoc_Ptr; Next : Assoc_Ptr);
789 function Next_Assoc (E : Assoc_Ptr) return Assoc_Ptr;
790 function Get_Gen_Id (E : Assoc_Ptr) return Entity_Id;
791 function Hash (F : Entity_Id) return HTable_Range;
793 package Generic_Renamings_HTable is new GNAT.HTable.Static_HTable (
794 Header_Num => HTable_Range,
795 Element => Assoc,
796 Elmt_Ptr => Assoc_Ptr,
797 Null_Ptr => Assoc_Null,
798 Set_Next => Set_Next_Assoc,
799 Next => Next_Assoc,
800 Key => Entity_Id,
801 Get_Key => Get_Gen_Id,
802 Hash => Hash,
803 Equal => "=");
805 Exchanged_Views : Elist_Id;
806 -- This list holds the private views that have been exchanged during
807 -- instantiation to restore the visibility of the generic declaration.
808 -- (see comments above). After instantiation, the current visibility is
809 -- reestablished by means of a traversal of this list.
811 Hidden_Entities : Elist_Id;
812 -- This list holds the entities of the current scope that are removed
813 -- from immediate visibility when instantiating a child unit. Their
814 -- visibility is restored in Remove_Parent.
816 -- Because instantiations can be recursive, the following must be saved
817 -- on entry and restored on exit from an instantiation (spec or body).
818 -- This is done by the two procedures Save_Env and Restore_Env. For
819 -- package and subprogram instantiations (but not for the body instances)
820 -- the action of Save_Env is done in two steps: Init_Env is called before
821 -- Check_Generic_Child_Unit, because setting the parent instances requires
822 -- that the visibility data structures be properly initialized. Once the
823 -- generic is unit is validated, Set_Instance_Env completes Save_Env.
825 Parent_Unit_Visible : Boolean := False;
826 -- Parent_Unit_Visible is used when the generic is a child unit, and
827 -- indicates whether the ultimate parent of the generic is visible in the
828 -- instantiation environment. It is used to reset the visibility of the
829 -- parent at the end of the instantiation (see Remove_Parent).
831 Instance_Parent_Unit : Entity_Id := Empty;
832 -- This records the ultimate parent unit of an instance of a generic
833 -- child unit and is used in conjunction with Parent_Unit_Visible to
834 -- indicate the unit to which the Parent_Unit_Visible flag corresponds.
836 type Instance_Env is record
837 Instantiated_Parent : Assoc;
838 Exchanged_Views : Elist_Id;
839 Hidden_Entities : Elist_Id;
840 Current_Sem_Unit : Unit_Number_Type;
841 Parent_Unit_Visible : Boolean := False;
842 Instance_Parent_Unit : Entity_Id := Empty;
843 Switches : Config_Switches_Type;
844 end record;
846 package Instance_Envs is new Table.Table (
847 Table_Component_Type => Instance_Env,
848 Table_Index_Type => Int,
849 Table_Low_Bound => 0,
850 Table_Initial => 32,
851 Table_Increment => 100,
852 Table_Name => "Instance_Envs");
854 procedure Restore_Private_Views
855 (Pack_Id : Entity_Id;
856 Is_Package : Boolean := True);
857 -- Restore the private views of external types, and unmark the generic
858 -- renamings of actuals, so that they become compatible subtypes again.
859 -- For subprograms, Pack_Id is the package constructed to hold the
860 -- renamings.
862 procedure Switch_View (T : Entity_Id);
863 -- Switch the partial and full views of a type and its private
864 -- dependents (i.e. its subtypes and derived types).
866 ------------------------------------
867 -- Structures for Error Reporting --
868 ------------------------------------
870 Instantiation_Node : Node_Id;
871 -- Used by subprograms that validate instantiation of formal parameters
872 -- where there might be no actual on which to place the error message.
873 -- Also used to locate the instantiation node for generic subunits.
875 Instantiation_Error : exception;
876 -- When there is a semantic error in the generic parameter matching,
877 -- there is no point in continuing the instantiation, because the
878 -- number of cascaded errors is unpredictable. This exception aborts
879 -- the instantiation process altogether.
881 S_Adjustment : Sloc_Adjustment;
882 -- Offset created for each node in an instantiation, in order to keep
883 -- track of the source position of the instantiation in each of its nodes.
884 -- A subsequent semantic error or warning on a construct of the instance
885 -- points to both places: the original generic node, and the point of
886 -- instantiation. See Sinput and Sinput.L for additional details.
888 ------------------------------------------------------------
889 -- Data structure for keeping track when inside a Generic --
890 ------------------------------------------------------------
892 -- The following table is used to save values of the Inside_A_Generic
893 -- flag (see spec of Sem) when they are saved by Start_Generic.
895 package Generic_Flags is new Table.Table (
896 Table_Component_Type => Boolean,
897 Table_Index_Type => Int,
898 Table_Low_Bound => 0,
899 Table_Initial => 32,
900 Table_Increment => 200,
901 Table_Name => "Generic_Flags");
903 ---------------------------
904 -- Abandon_Instantiation --
905 ---------------------------
907 procedure Abandon_Instantiation (N : Node_Id) is
908 begin
909 Error_Msg_N ("\instantiation abandoned!", N);
910 raise Instantiation_Error;
911 end Abandon_Instantiation;
913 --------------------------
914 -- Analyze_Associations --
915 --------------------------
917 function Analyze_Associations
918 (I_Node : Node_Id;
919 Formals : List_Id;
920 F_Copy : List_Id) return List_Id
922 Actuals_To_Freeze : constant Elist_Id := New_Elmt_List;
923 Assoc : constant List_Id := New_List;
924 Default_Actuals : constant Elist_Id := New_Elmt_List;
925 Gen_Unit : constant Entity_Id :=
926 Defining_Entity (Parent (F_Copy));
928 Actuals : List_Id;
929 Actual : Node_Id;
930 Analyzed_Formal : Node_Id;
931 First_Named : Node_Id := Empty;
932 Formal : Node_Id;
933 Match : Node_Id;
934 Named : Node_Id;
935 Saved_Formal : Node_Id;
937 Default_Formals : constant List_Id := New_List;
938 -- If an Others_Choice is present, some of the formals may be defaulted.
939 -- To simplify the treatment of visibility in an instance, we introduce
940 -- individual defaults for each such formal. These defaults are
941 -- appended to the list of associations and replace the Others_Choice.
943 Found_Assoc : Node_Id;
944 -- Association for the current formal being match. Empty if there are
945 -- no remaining actuals, or if there is no named association with the
946 -- name of the formal.
948 Is_Named_Assoc : Boolean;
949 Num_Matched : Int := 0;
950 Num_Actuals : Int := 0;
952 Others_Present : Boolean := False;
953 Others_Choice : Node_Id := Empty;
954 -- In Ada 2005, indicates partial parameterization of a formal
955 -- package. As usual an other association must be last in the list.
957 function Build_Function_Wrapper
958 (Formal : Entity_Id;
959 Actual : Entity_Id := Empty) return Node_Id;
960 -- In GNATprove mode, create a wrapper function for actuals that are
961 -- functions with any number of formal parameters, in order to propagate
962 -- their contract to the renaming declarations generated for them.
963 -- If the actual is absent, the formal has a default, and the name of
964 -- the function is that of the formal.
966 function Build_Operator_Wrapper
967 (Formal : Entity_Id;
968 Actual : Entity_Id := Empty) return Node_Id;
969 -- In GNATprove mode, create a wrapper function for actuals that are
970 -- operators, in order to propagate their contract to the renaming
971 -- declarations generated for them. If the actual is absent, this is
972 -- a formal with a default, and the name of the operator is that of the
973 -- formal.
975 procedure Check_Overloaded_Formal_Subprogram (Formal : Entity_Id);
976 -- Apply RM 12.3 (9): if a formal subprogram is overloaded, the instance
977 -- cannot have a named association for it. AI05-0025 extends this rule
978 -- to formals of formal packages by AI05-0025, and it also applies to
979 -- box-initialized formals.
981 function Has_Fully_Defined_Profile (Subp : Entity_Id) return Boolean;
982 -- Determine whether the parameter types and the return type of Subp
983 -- are fully defined at the point of instantiation.
985 function Matching_Actual
986 (F : Entity_Id;
987 A_F : Entity_Id) return Node_Id;
988 -- Find actual that corresponds to a given a formal parameter. If the
989 -- actuals are positional, return the next one, if any. If the actuals
990 -- are named, scan the parameter associations to find the right one.
991 -- A_F is the corresponding entity in the analyzed generic,which is
992 -- placed on the selector name for ASIS use.
994 -- In Ada 2005, a named association may be given with a box, in which
995 -- case Matching_Actual sets Found_Assoc to the generic association,
996 -- but return Empty for the actual itself. In this case the code below
997 -- creates a corresponding declaration for the formal.
999 function Partial_Parameterization return Boolean;
1000 -- Ada 2005: if no match is found for a given formal, check if the
1001 -- association for it includes a box, or whether the associations
1002 -- include an Others clause.
1004 procedure Process_Default (F : Entity_Id);
1005 -- Add a copy of the declaration of generic formal F to the list of
1006 -- associations, and add an explicit box association for F if there
1007 -- is none yet, and the default comes from an Others_Choice.
1009 function Renames_Standard_Subprogram (Subp : Entity_Id) return Boolean;
1010 -- Determine whether Subp renames one of the subprograms defined in the
1011 -- generated package Standard.
1013 procedure Set_Analyzed_Formal;
1014 -- Find the node in the generic copy that corresponds to a given formal.
1015 -- The semantic information on this node is used to perform legality
1016 -- checks on the actuals. Because semantic analysis can introduce some
1017 -- anonymous entities or modify the declaration node itself, the
1018 -- correspondence between the two lists is not one-one. In addition to
1019 -- anonymous types, the presence a formal equality will introduce an
1020 -- implicit declaration for the corresponding inequality.
1022 ----------------------------
1023 -- Build_Function_Wrapper --
1024 ----------------------------
1026 function Build_Function_Wrapper
1027 (Formal : Entity_Id;
1028 Actual : Entity_Id := Empty) return Node_Id
1030 Loc : constant Source_Ptr := Sloc (I_Node);
1031 Actuals : List_Id;
1032 Decl : Node_Id;
1033 Func_Name : Node_Id;
1034 Func : Entity_Id;
1035 Parm_Type : Node_Id;
1036 Profile : List_Id := New_List;
1037 Spec : Node_Id;
1038 Act_F : Entity_Id;
1039 Form_F : Entity_Id;
1040 New_F : Entity_Id;
1042 begin
1043 -- If there is no actual, the formal has a default and is retrieved
1044 -- by name. Otherwise the wrapper encloses a call to the actual.
1046 if No (Actual) then
1047 Func_Name := Make_Identifier (Loc, Chars (Formal));
1048 else
1049 Func_Name := New_Occurrence_Of (Entity (Actual), Loc);
1050 end if;
1052 Func := Make_Defining_Identifier (Loc, Chars (Formal));
1053 Set_Ekind (Func, E_Function);
1054 Set_Is_Generic_Actual_Subprogram (Func);
1056 Actuals := New_List;
1057 Profile := New_List;
1059 if Present (Actual) then
1060 Act_F := First_Formal (Entity (Actual));
1061 else
1062 Act_F := Empty;
1063 end if;
1065 Form_F := First_Formal (Formal);
1066 while Present (Form_F) loop
1068 -- Create new formal for profile of wrapper, and add a reference
1069 -- to it in the list of actuals for the enclosing call. The name
1070 -- must be that of the formal in the formal subprogram, because
1071 -- calls to it in the generic body may use named associations.
1073 New_F := Make_Defining_Identifier (Loc, Chars (Form_F));
1075 if No (Actual) then
1077 -- If formal has a class-wide type rewrite as the corresponding
1078 -- attribute, because the class-wide type is not retrievable by
1079 -- visbility.
1081 if Is_Class_Wide_Type (Etype (Form_F)) then
1082 Parm_Type :=
1083 Make_Attribute_Reference (Loc,
1084 Attribute_Name => Name_Class,
1085 Prefix =>
1086 Make_Identifier (Loc, Chars (Etype (Etype (Form_F)))));
1088 else
1089 Parm_Type :=
1090 Make_Identifier (Loc, Chars (Etype (Etype (Form_F))));
1091 end if;
1093 -- If actual is present, use the type of its own formal
1095 else
1096 Parm_Type := New_Occurrence_Of (Etype (Act_F), Loc);
1097 end if;
1099 Append_To (Profile,
1100 Make_Parameter_Specification (Loc,
1101 Defining_Identifier => New_F,
1102 Parameter_Type => Parm_Type));
1104 Append_To (Actuals, New_Occurrence_Of (New_F, Loc));
1105 Next_Formal (Form_F);
1107 if Present (Act_F) then
1108 Next_Formal (Act_F);
1109 end if;
1110 end loop;
1112 Spec :=
1113 Make_Function_Specification (Loc,
1114 Defining_Unit_Name => Func,
1115 Parameter_Specifications => Profile,
1116 Result_Definition =>
1117 Make_Identifier (Loc, Chars (Etype (Formal))));
1119 Decl :=
1120 Make_Expression_Function (Loc,
1121 Specification => Spec,
1122 Expression =>
1123 Make_Function_Call (Loc,
1124 Name => Func_Name,
1125 Parameter_Associations => Actuals));
1127 return Decl;
1128 end Build_Function_Wrapper;
1130 ----------------------------
1131 -- Build_Operator_Wrapper --
1132 ----------------------------
1134 function Build_Operator_Wrapper
1135 (Formal : Entity_Id;
1136 Actual : Entity_Id := Empty) return Node_Id
1138 Loc : constant Source_Ptr := Sloc (I_Node);
1139 Typ : constant Entity_Id := Etype (Formal);
1140 Is_Binary : constant Boolean :=
1141 Present (Next_Formal (First_Formal (Formal)));
1143 Decl : Node_Id;
1144 Expr : Node_Id;
1145 F1, F2 : Entity_Id;
1146 Func : Entity_Id;
1147 Op_Name : Name_Id;
1148 Spec : Node_Id;
1149 L, R : Node_Id;
1151 begin
1152 if No (Actual) then
1153 Op_Name := Chars (Formal);
1154 else
1155 Op_Name := Chars (Actual);
1156 end if;
1158 -- Create entities for wrapper function and its formals
1160 F1 := Make_Temporary (Loc, 'A');
1161 F2 := Make_Temporary (Loc, 'B');
1162 L := New_Occurrence_Of (F1, Loc);
1163 R := New_Occurrence_Of (F2, Loc);
1165 Func := Make_Defining_Identifier (Loc, Chars (Formal));
1166 Set_Ekind (Func, E_Function);
1167 Set_Is_Generic_Actual_Subprogram (Func);
1169 Spec :=
1170 Make_Function_Specification (Loc,
1171 Defining_Unit_Name => Func,
1172 Parameter_Specifications => New_List (
1173 Make_Parameter_Specification (Loc,
1174 Defining_Identifier => F1,
1175 Parameter_Type =>
1176 Make_Identifier (Loc,
1177 Chars => Chars (Etype (First_Formal (Formal)))))),
1178 Result_Definition => Make_Identifier (Loc, Chars (Typ)));
1180 if Is_Binary then
1181 Append_To (Parameter_Specifications (Spec),
1182 Make_Parameter_Specification (Loc,
1183 Defining_Identifier => F2,
1184 Parameter_Type =>
1185 Make_Identifier (Loc,
1186 Chars (Etype (Next_Formal (First_Formal (Formal)))))));
1187 end if;
1189 -- Build expression as a function call, or as an operator node
1190 -- that corresponds to the name of the actual, starting with binary
1191 -- operators.
1193 if Present (Actual) and then Op_Name not in Any_Operator_Name then
1194 Expr :=
1195 Make_Function_Call (Loc,
1196 Name =>
1197 New_Occurrence_Of (Entity (Actual), Loc),
1198 Parameter_Associations => New_List (L));
1200 if Is_Binary then
1201 Append_To (Parameter_Associations (Expr), R);
1202 end if;
1204 -- Binary operators
1206 elsif Is_Binary then
1207 if Op_Name = Name_Op_And then
1208 Expr := Make_Op_And (Loc, Left_Opnd => L, Right_Opnd => R);
1209 elsif Op_Name = Name_Op_Or then
1210 Expr := Make_Op_Or (Loc, Left_Opnd => L, Right_Opnd => R);
1211 elsif Op_Name = Name_Op_Xor then
1212 Expr := Make_Op_Xor (Loc, Left_Opnd => L, Right_Opnd => R);
1213 elsif Op_Name = Name_Op_Eq then
1214 Expr := Make_Op_Eq (Loc, Left_Opnd => L, Right_Opnd => R);
1215 elsif Op_Name = Name_Op_Ne then
1216 Expr := Make_Op_Ne (Loc, Left_Opnd => L, Right_Opnd => R);
1217 elsif Op_Name = Name_Op_Le then
1218 Expr := Make_Op_Le (Loc, Left_Opnd => L, Right_Opnd => R);
1219 elsif Op_Name = Name_Op_Gt then
1220 Expr := Make_Op_Gt (Loc, Left_Opnd => L, Right_Opnd => R);
1221 elsif Op_Name = Name_Op_Ge then
1222 Expr := Make_Op_Ge (Loc, Left_Opnd => L, Right_Opnd => R);
1223 elsif Op_Name = Name_Op_Lt then
1224 Expr := Make_Op_Lt (Loc, Left_Opnd => L, Right_Opnd => R);
1225 elsif Op_Name = Name_Op_Add then
1226 Expr := Make_Op_Add (Loc, Left_Opnd => L, Right_Opnd => R);
1227 elsif Op_Name = Name_Op_Subtract then
1228 Expr := Make_Op_Subtract (Loc, Left_Opnd => L, Right_Opnd => R);
1229 elsif Op_Name = Name_Op_Concat then
1230 Expr := Make_Op_Concat (Loc, Left_Opnd => L, Right_Opnd => R);
1231 elsif Op_Name = Name_Op_Multiply then
1232 Expr := Make_Op_Multiply (Loc, Left_Opnd => L, Right_Opnd => R);
1233 elsif Op_Name = Name_Op_Divide then
1234 Expr := Make_Op_Divide (Loc, Left_Opnd => L, Right_Opnd => R);
1235 elsif Op_Name = Name_Op_Mod then
1236 Expr := Make_Op_Mod (Loc, Left_Opnd => L, Right_Opnd => R);
1237 elsif Op_Name = Name_Op_Rem then
1238 Expr := Make_Op_Rem (Loc, Left_Opnd => L, Right_Opnd => R);
1239 elsif Op_Name = Name_Op_Expon then
1240 Expr := Make_Op_Expon (Loc, Left_Opnd => L, Right_Opnd => R);
1241 end if;
1243 -- Unary operators
1245 else
1246 if Op_Name = Name_Op_Add then
1247 Expr := Make_Op_Plus (Loc, Right_Opnd => L);
1248 elsif Op_Name = Name_Op_Subtract then
1249 Expr := Make_Op_Minus (Loc, Right_Opnd => L);
1250 elsif Op_Name = Name_Op_Abs then
1251 Expr := Make_Op_Abs (Loc, Right_Opnd => L);
1252 elsif Op_Name = Name_Op_Not then
1253 Expr := Make_Op_Not (Loc, Right_Opnd => L);
1254 end if;
1255 end if;
1257 -- Propagate visible entity to operator node, either from a
1258 -- given actual or from a default.
1260 if Is_Entity_Name (Actual) and then Nkind (Expr) in N_Op then
1261 Set_Entity (Expr, Entity (Actual));
1262 end if;
1264 Decl :=
1265 Make_Expression_Function (Loc,
1266 Specification => Spec,
1267 Expression => Expr);
1269 return Decl;
1270 end Build_Operator_Wrapper;
1272 ----------------------------------------
1273 -- Check_Overloaded_Formal_Subprogram --
1274 ----------------------------------------
1276 procedure Check_Overloaded_Formal_Subprogram (Formal : Entity_Id) is
1277 Temp_Formal : Entity_Id;
1279 begin
1280 Temp_Formal := First (Formals);
1281 while Present (Temp_Formal) loop
1282 if Nkind (Temp_Formal) in N_Formal_Subprogram_Declaration
1283 and then Temp_Formal /= Formal
1284 and then
1285 Chars (Defining_Unit_Name (Specification (Formal))) =
1286 Chars (Defining_Unit_Name (Specification (Temp_Formal)))
1287 then
1288 if Present (Found_Assoc) then
1289 Error_Msg_N
1290 ("named association not allowed for overloaded formal",
1291 Found_Assoc);
1293 else
1294 Error_Msg_N
1295 ("named association not allowed for overloaded formal",
1296 Others_Choice);
1297 end if;
1299 Abandon_Instantiation (Instantiation_Node);
1300 end if;
1302 Next (Temp_Formal);
1303 end loop;
1304 end Check_Overloaded_Formal_Subprogram;
1306 -------------------------------
1307 -- Has_Fully_Defined_Profile --
1308 -------------------------------
1310 function Has_Fully_Defined_Profile (Subp : Entity_Id) return Boolean is
1311 function Is_Fully_Defined_Type (Typ : Entity_Id) return Boolean;
1312 -- Determine whethet type Typ is fully defined
1314 ---------------------------
1315 -- Is_Fully_Defined_Type --
1316 ---------------------------
1318 function Is_Fully_Defined_Type (Typ : Entity_Id) return Boolean is
1319 begin
1320 -- A private type without a full view is not fully defined
1322 if Is_Private_Type (Typ)
1323 and then No (Full_View (Typ))
1324 then
1325 return False;
1327 -- An incomplete type is never fully defined
1329 elsif Is_Incomplete_Type (Typ) then
1330 return False;
1332 -- All other types are fully defined
1334 else
1335 return True;
1336 end if;
1337 end Is_Fully_Defined_Type;
1339 -- Local declarations
1341 Param : Entity_Id;
1343 -- Start of processing for Has_Fully_Defined_Profile
1345 begin
1346 -- Check the parameters
1348 Param := First_Formal (Subp);
1349 while Present (Param) loop
1350 if not Is_Fully_Defined_Type (Etype (Param)) then
1351 return False;
1352 end if;
1354 Next_Formal (Param);
1355 end loop;
1357 -- Check the return type
1359 return Is_Fully_Defined_Type (Etype (Subp));
1360 end Has_Fully_Defined_Profile;
1362 ---------------------
1363 -- Matching_Actual --
1364 ---------------------
1366 function Matching_Actual
1367 (F : Entity_Id;
1368 A_F : Entity_Id) return Node_Id
1370 Prev : Node_Id;
1371 Act : Node_Id;
1373 begin
1374 Is_Named_Assoc := False;
1376 -- End of list of purely positional parameters
1378 if No (Actual) or else Nkind (Actual) = N_Others_Choice then
1379 Found_Assoc := Empty;
1380 Act := Empty;
1382 -- Case of positional parameter corresponding to current formal
1384 elsif No (Selector_Name (Actual)) then
1385 Found_Assoc := Actual;
1386 Act := Explicit_Generic_Actual_Parameter (Actual);
1387 Num_Matched := Num_Matched + 1;
1388 Next (Actual);
1390 -- Otherwise scan list of named actuals to find the one with the
1391 -- desired name. All remaining actuals have explicit names.
1393 else
1394 Is_Named_Assoc := True;
1395 Found_Assoc := Empty;
1396 Act := Empty;
1397 Prev := Empty;
1399 while Present (Actual) loop
1400 if Chars (Selector_Name (Actual)) = Chars (F) then
1401 Set_Entity (Selector_Name (Actual), A_F);
1402 Set_Etype (Selector_Name (Actual), Etype (A_F));
1403 Generate_Reference (A_F, Selector_Name (Actual));
1404 Found_Assoc := Actual;
1405 Act := Explicit_Generic_Actual_Parameter (Actual);
1406 Num_Matched := Num_Matched + 1;
1407 exit;
1408 end if;
1410 Prev := Actual;
1411 Next (Actual);
1412 end loop;
1414 -- Reset for subsequent searches. In most cases the named
1415 -- associations are in order. If they are not, we reorder them
1416 -- to avoid scanning twice the same actual. This is not just a
1417 -- question of efficiency: there may be multiple defaults with
1418 -- boxes that have the same name. In a nested instantiation we
1419 -- insert actuals for those defaults, and cannot rely on their
1420 -- names to disambiguate them.
1422 if Actual = First_Named then
1423 Next (First_Named);
1425 elsif Present (Actual) then
1426 Insert_Before (First_Named, Remove_Next (Prev));
1427 end if;
1429 Actual := First_Named;
1430 end if;
1432 if Is_Entity_Name (Act) and then Present (Entity (Act)) then
1433 Set_Used_As_Generic_Actual (Entity (Act));
1434 end if;
1436 return Act;
1437 end Matching_Actual;
1439 ------------------------------
1440 -- Partial_Parameterization --
1441 ------------------------------
1443 function Partial_Parameterization return Boolean is
1444 begin
1445 return Others_Present
1446 or else (Present (Found_Assoc) and then Box_Present (Found_Assoc));
1447 end Partial_Parameterization;
1449 ---------------------
1450 -- Process_Default --
1451 ---------------------
1453 procedure Process_Default (F : Entity_Id) is
1454 Loc : constant Source_Ptr := Sloc (I_Node);
1455 F_Id : constant Entity_Id := Defining_Entity (F);
1456 Decl : Node_Id;
1457 Default : Node_Id;
1458 Id : Entity_Id;
1460 begin
1461 -- Append copy of formal declaration to associations, and create new
1462 -- defining identifier for it.
1464 Decl := New_Copy_Tree (F);
1465 Id := Make_Defining_Identifier (Sloc (F_Id), Chars (F_Id));
1467 if Nkind (F) in N_Formal_Subprogram_Declaration then
1468 Set_Defining_Unit_Name (Specification (Decl), Id);
1470 else
1471 Set_Defining_Identifier (Decl, Id);
1472 end if;
1474 Append (Decl, Assoc);
1476 if No (Found_Assoc) then
1477 Default :=
1478 Make_Generic_Association (Loc,
1479 Selector_Name => New_Occurrence_Of (Id, Loc),
1480 Explicit_Generic_Actual_Parameter => Empty);
1481 Set_Box_Present (Default);
1482 Append (Default, Default_Formals);
1483 end if;
1484 end Process_Default;
1486 ---------------------------------
1487 -- Renames_Standard_Subprogram --
1488 ---------------------------------
1490 function Renames_Standard_Subprogram (Subp : Entity_Id) return Boolean is
1491 Id : Entity_Id;
1493 begin
1494 Id := Alias (Subp);
1495 while Present (Id) loop
1496 if Scope (Id) = Standard_Standard then
1497 return True;
1498 end if;
1500 Id := Alias (Id);
1501 end loop;
1503 return False;
1504 end Renames_Standard_Subprogram;
1506 -------------------------
1507 -- Set_Analyzed_Formal --
1508 -------------------------
1510 procedure Set_Analyzed_Formal is
1511 Kind : Node_Kind;
1513 begin
1514 while Present (Analyzed_Formal) loop
1515 Kind := Nkind (Analyzed_Formal);
1517 case Nkind (Formal) is
1519 when N_Formal_Subprogram_Declaration =>
1520 exit when Kind in N_Formal_Subprogram_Declaration
1521 and then
1522 Chars
1523 (Defining_Unit_Name (Specification (Formal))) =
1524 Chars
1525 (Defining_Unit_Name (Specification (Analyzed_Formal)));
1527 when N_Formal_Package_Declaration =>
1528 exit when Nkind_In (Kind, N_Formal_Package_Declaration,
1529 N_Generic_Package_Declaration,
1530 N_Package_Declaration);
1532 when N_Use_Package_Clause | N_Use_Type_Clause => exit;
1534 when others =>
1536 -- Skip freeze nodes, and nodes inserted to replace
1537 -- unrecognized pragmas.
1539 exit when
1540 Kind not in N_Formal_Subprogram_Declaration
1541 and then not Nkind_In (Kind, N_Subprogram_Declaration,
1542 N_Freeze_Entity,
1543 N_Null_Statement,
1544 N_Itype_Reference)
1545 and then Chars (Defining_Identifier (Formal)) =
1546 Chars (Defining_Identifier (Analyzed_Formal));
1547 end case;
1549 Next (Analyzed_Formal);
1550 end loop;
1551 end Set_Analyzed_Formal;
1553 -- Start of processing for Analyze_Associations
1555 begin
1556 Actuals := Generic_Associations (I_Node);
1558 if Present (Actuals) then
1560 -- Check for an Others choice, indicating a partial parameterization
1561 -- for a formal package.
1563 Actual := First (Actuals);
1564 while Present (Actual) loop
1565 if Nkind (Actual) = N_Others_Choice then
1566 Others_Present := True;
1567 Others_Choice := Actual;
1569 if Present (Next (Actual)) then
1570 Error_Msg_N ("others must be last association", Actual);
1571 end if;
1573 -- This subprogram is used both for formal packages and for
1574 -- instantiations. For the latter, associations must all be
1575 -- explicit.
1577 if Nkind (I_Node) /= N_Formal_Package_Declaration
1578 and then Comes_From_Source (I_Node)
1579 then
1580 Error_Msg_N
1581 ("others association not allowed in an instance",
1582 Actual);
1583 end if;
1585 -- In any case, nothing to do after the others association
1587 exit;
1589 elsif Box_Present (Actual)
1590 and then Comes_From_Source (I_Node)
1591 and then Nkind (I_Node) /= N_Formal_Package_Declaration
1592 then
1593 Error_Msg_N
1594 ("box association not allowed in an instance", Actual);
1595 end if;
1597 Next (Actual);
1598 end loop;
1600 -- If named associations are present, save first named association
1601 -- (it may of course be Empty) to facilitate subsequent name search.
1603 First_Named := First (Actuals);
1604 while Present (First_Named)
1605 and then Nkind (First_Named) /= N_Others_Choice
1606 and then No (Selector_Name (First_Named))
1607 loop
1608 Num_Actuals := Num_Actuals + 1;
1609 Next (First_Named);
1610 end loop;
1611 end if;
1613 Named := First_Named;
1614 while Present (Named) loop
1615 if Nkind (Named) /= N_Others_Choice
1616 and then No (Selector_Name (Named))
1617 then
1618 Error_Msg_N ("invalid positional actual after named one", Named);
1619 Abandon_Instantiation (Named);
1620 end if;
1622 -- A named association may lack an actual parameter, if it was
1623 -- introduced for a default subprogram that turns out to be local
1624 -- to the outer instantiation.
1626 if Nkind (Named) /= N_Others_Choice
1627 and then Present (Explicit_Generic_Actual_Parameter (Named))
1628 then
1629 Num_Actuals := Num_Actuals + 1;
1630 end if;
1632 Next (Named);
1633 end loop;
1635 if Present (Formals) then
1636 Formal := First_Non_Pragma (Formals);
1637 Analyzed_Formal := First_Non_Pragma (F_Copy);
1639 if Present (Actuals) then
1640 Actual := First (Actuals);
1642 -- All formals should have default values
1644 else
1645 Actual := Empty;
1646 end if;
1648 while Present (Formal) loop
1649 Set_Analyzed_Formal;
1650 Saved_Formal := Next_Non_Pragma (Formal);
1652 case Nkind (Formal) is
1653 when N_Formal_Object_Declaration =>
1654 Match :=
1655 Matching_Actual (
1656 Defining_Identifier (Formal),
1657 Defining_Identifier (Analyzed_Formal));
1659 if No (Match) and then Partial_Parameterization then
1660 Process_Default (Formal);
1661 else
1662 Append_List
1663 (Instantiate_Object (Formal, Match, Analyzed_Formal),
1664 Assoc);
1665 end if;
1667 -- If the object is a call to an expression function, this
1668 -- is a freezing point for it.
1670 if Is_Entity_Name (Match)
1671 and then Present (Entity (Match))
1672 and then Nkind
1673 (Original_Node (Unit_Declaration_Node (Entity (Match))))
1674 = N_Expression_Function
1675 then
1676 Append_Elmt (Entity (Match), Actuals_To_Freeze);
1677 end if;
1679 when N_Formal_Type_Declaration =>
1680 Match :=
1681 Matching_Actual (
1682 Defining_Identifier (Formal),
1683 Defining_Identifier (Analyzed_Formal));
1685 if No (Match) then
1686 if Partial_Parameterization then
1687 Process_Default (Formal);
1689 else
1690 Error_Msg_Sloc := Sloc (Gen_Unit);
1691 Error_Msg_NE
1692 ("missing actual&",
1693 Instantiation_Node,
1694 Defining_Identifier (Formal));
1695 Error_Msg_NE ("\in instantiation of & declared#",
1696 Instantiation_Node, Gen_Unit);
1697 Abandon_Instantiation (Instantiation_Node);
1698 end if;
1700 else
1701 Analyze (Match);
1702 Append_List
1703 (Instantiate_Type
1704 (Formal, Match, Analyzed_Formal, Assoc),
1705 Assoc);
1707 -- An instantiation is a freeze point for the actuals,
1708 -- unless this is a rewritten formal package, or the
1709 -- formal is an Ada 2012 formal incomplete type.
1711 if Nkind (I_Node) = N_Formal_Package_Declaration
1712 or else
1713 (Ada_Version >= Ada_2012
1714 and then
1715 Ekind (Defining_Identifier (Analyzed_Formal)) =
1716 E_Incomplete_Type)
1717 then
1718 null;
1720 else
1721 Append_Elmt (Entity (Match), Actuals_To_Freeze);
1722 end if;
1723 end if;
1725 -- A remote access-to-class-wide type is not a legal actual
1726 -- for a generic formal of an access type (E.2.2(17/2)).
1727 -- In GNAT an exception to this rule is introduced when
1728 -- the formal is marked as remote using implementation
1729 -- defined aspect/pragma Remote_Access_Type. In that case
1730 -- the actual must be remote as well.
1732 -- If the current instantiation is the construction of a
1733 -- local copy for a formal package the actuals may be
1734 -- defaulted, and there is no matching actual to check.
1736 if Nkind (Analyzed_Formal) = N_Formal_Type_Declaration
1737 and then
1738 Nkind (Formal_Type_Definition (Analyzed_Formal)) =
1739 N_Access_To_Object_Definition
1740 and then Present (Match)
1741 then
1742 declare
1743 Formal_Ent : constant Entity_Id :=
1744 Defining_Identifier (Analyzed_Formal);
1745 begin
1746 if Is_Remote_Access_To_Class_Wide_Type (Entity (Match))
1747 = Is_Remote_Types (Formal_Ent)
1748 then
1749 -- Remoteness of formal and actual match
1751 null;
1753 elsif Is_Remote_Types (Formal_Ent) then
1755 -- Remote formal, non-remote actual
1757 Error_Msg_NE
1758 ("actual for& must be remote", Match, Formal_Ent);
1760 else
1761 -- Non-remote formal, remote actual
1763 Error_Msg_NE
1764 ("actual for& may not be remote",
1765 Match, Formal_Ent);
1766 end if;
1767 end;
1768 end if;
1770 when N_Formal_Subprogram_Declaration =>
1771 Match :=
1772 Matching_Actual
1773 (Defining_Unit_Name (Specification (Formal)),
1774 Defining_Unit_Name (Specification (Analyzed_Formal)));
1776 -- If the formal subprogram has the same name as another
1777 -- formal subprogram of the generic, then a named
1778 -- association is illegal (12.3(9)). Exclude named
1779 -- associations that are generated for a nested instance.
1781 if Present (Match)
1782 and then Is_Named_Assoc
1783 and then Comes_From_Source (Found_Assoc)
1784 then
1785 Check_Overloaded_Formal_Subprogram (Formal);
1786 end if;
1788 -- If there is no corresponding actual, this may be case
1789 -- of partial parameterization, or else the formal has a
1790 -- default or a box.
1792 if No (Match) and then Partial_Parameterization then
1793 Process_Default (Formal);
1795 if Nkind (I_Node) = N_Formal_Package_Declaration then
1796 Check_Overloaded_Formal_Subprogram (Formal);
1797 end if;
1799 else
1800 if GNATprove_Mode
1801 and then Present
1802 (Containing_Package_With_Ext_Axioms
1803 (Defining_Entity (Analyzed_Formal)))
1804 and then Ekind (Defining_Entity (Analyzed_Formal)) =
1805 E_Function
1806 then
1807 -- If actual is an entity (function or operator),
1808 -- build wrapper for it.
1810 if Present (Match) then
1811 if Nkind (Match) = N_Operator_Symbol then
1813 -- If the name is a default, find its visible
1814 -- entity at the point of instantiation.
1816 if Is_Entity_Name (Match)
1817 and then No (Entity (Match))
1818 then
1819 Find_Direct_Name (Match);
1820 end if;
1822 Append_To
1823 (Assoc,
1824 Build_Operator_Wrapper
1825 (Defining_Entity (Analyzed_Formal), Match));
1827 else
1828 Append_To (Assoc,
1829 Build_Function_Wrapper
1830 (Defining_Entity (Analyzed_Formal), Match));
1831 end if;
1833 -- Ditto if formal is an operator with a default.
1835 elsif Box_Present (Formal)
1836 and then Nkind (Defining_Entity (Analyzed_Formal)) =
1837 N_Defining_Operator_Symbol
1838 then
1839 Append_To (Assoc,
1840 Build_Operator_Wrapper
1841 (Defining_Entity (Analyzed_Formal)));
1843 -- Otherwise create renaming declaration.
1845 else
1846 Append_To (Assoc,
1847 Build_Function_Wrapper
1848 (Defining_Entity (Analyzed_Formal)));
1849 end if;
1851 else
1852 Append_To (Assoc,
1853 Instantiate_Formal_Subprogram
1854 (Formal, Match, Analyzed_Formal));
1855 end if;
1857 -- An instantiation is a freeze point for the actuals,
1858 -- unless this is a rewritten formal package.
1860 if Nkind (I_Node) /= N_Formal_Package_Declaration
1861 and then Nkind (Match) = N_Identifier
1862 and then Is_Subprogram (Entity (Match))
1864 -- The actual subprogram may rename a routine defined
1865 -- in Standard. Avoid freezing such renamings because
1866 -- subprograms coming from Standard cannot be frozen.
1868 and then
1869 not Renames_Standard_Subprogram (Entity (Match))
1871 -- If the actual subprogram comes from a different
1872 -- unit, it is already frozen, either by a body in
1873 -- that unit or by the end of the declarative part
1874 -- of the unit. This check avoids the freezing of
1875 -- subprograms defined in Standard which are used
1876 -- as generic actuals.
1878 and then In_Same_Code_Unit (Entity (Match), I_Node)
1879 and then Has_Fully_Defined_Profile (Entity (Match))
1880 then
1881 -- Mark the subprogram as having a delayed freeze
1882 -- since this may be an out-of-order action.
1884 Set_Has_Delayed_Freeze (Entity (Match));
1885 Append_Elmt (Entity (Match), Actuals_To_Freeze);
1886 end if;
1887 end if;
1889 -- If this is a nested generic, preserve default for later
1890 -- instantiations.
1892 if No (Match) and then Box_Present (Formal) then
1893 Append_Elmt
1894 (Defining_Unit_Name (Specification (Last (Assoc))),
1895 Default_Actuals);
1896 end if;
1898 when N_Formal_Package_Declaration =>
1899 Match :=
1900 Matching_Actual (
1901 Defining_Identifier (Formal),
1902 Defining_Identifier (Original_Node (Analyzed_Formal)));
1904 if No (Match) then
1905 if Partial_Parameterization then
1906 Process_Default (Formal);
1908 else
1909 Error_Msg_Sloc := Sloc (Gen_Unit);
1910 Error_Msg_NE
1911 ("missing actual&",
1912 Instantiation_Node, Defining_Identifier (Formal));
1913 Error_Msg_NE ("\in instantiation of & declared#",
1914 Instantiation_Node, Gen_Unit);
1916 Abandon_Instantiation (Instantiation_Node);
1917 end if;
1919 else
1920 Analyze (Match);
1921 Append_List
1922 (Instantiate_Formal_Package
1923 (Formal, Match, Analyzed_Formal),
1924 Assoc);
1925 end if;
1927 -- For use type and use package appearing in the generic part,
1928 -- we have already copied them, so we can just move them where
1929 -- they belong (we mustn't recopy them since this would mess up
1930 -- the Sloc values).
1932 when N_Use_Package_Clause |
1933 N_Use_Type_Clause =>
1934 if Nkind (Original_Node (I_Node)) =
1935 N_Formal_Package_Declaration
1936 then
1937 Append (New_Copy_Tree (Formal), Assoc);
1938 else
1939 Remove (Formal);
1940 Append (Formal, Assoc);
1941 end if;
1943 when others =>
1944 raise Program_Error;
1946 end case;
1948 Formal := Saved_Formal;
1949 Next_Non_Pragma (Analyzed_Formal);
1950 end loop;
1952 if Num_Actuals > Num_Matched then
1953 Error_Msg_Sloc := Sloc (Gen_Unit);
1955 if Present (Selector_Name (Actual)) then
1956 Error_Msg_NE
1957 ("unmatched actual&",
1958 Actual, Selector_Name (Actual));
1959 Error_Msg_NE ("\in instantiation of& declared#",
1960 Actual, Gen_Unit);
1961 else
1962 Error_Msg_NE
1963 ("unmatched actual in instantiation of& declared#",
1964 Actual, Gen_Unit);
1965 end if;
1966 end if;
1968 elsif Present (Actuals) then
1969 Error_Msg_N
1970 ("too many actuals in generic instantiation", Instantiation_Node);
1971 end if;
1973 -- An instantiation freezes all generic actuals. The only exceptions
1974 -- to this are incomplete types and subprograms which are not fully
1975 -- defined at the point of instantiation.
1977 declare
1978 Elmt : Elmt_Id := First_Elmt (Actuals_To_Freeze);
1979 begin
1980 while Present (Elmt) loop
1981 Freeze_Before (I_Node, Node (Elmt));
1982 Next_Elmt (Elmt);
1983 end loop;
1984 end;
1986 -- If there are default subprograms, normalize the tree by adding
1987 -- explicit associations for them. This is required if the instance
1988 -- appears within a generic.
1990 declare
1991 Elmt : Elmt_Id;
1992 Subp : Entity_Id;
1993 New_D : Node_Id;
1995 begin
1996 Elmt := First_Elmt (Default_Actuals);
1997 while Present (Elmt) loop
1998 if No (Actuals) then
1999 Actuals := New_List;
2000 Set_Generic_Associations (I_Node, Actuals);
2001 end if;
2003 Subp := Node (Elmt);
2004 New_D :=
2005 Make_Generic_Association (Sloc (Subp),
2006 Selector_Name => New_Occurrence_Of (Subp, Sloc (Subp)),
2007 Explicit_Generic_Actual_Parameter =>
2008 New_Occurrence_Of (Subp, Sloc (Subp)));
2009 Mark_Rewrite_Insertion (New_D);
2010 Append_To (Actuals, New_D);
2011 Next_Elmt (Elmt);
2012 end loop;
2013 end;
2015 -- If this is a formal package, normalize the parameter list by adding
2016 -- explicit box associations for the formals that are covered by an
2017 -- Others_Choice.
2019 if not Is_Empty_List (Default_Formals) then
2020 Append_List (Default_Formals, Formals);
2021 end if;
2023 return Assoc;
2024 end Analyze_Associations;
2026 -------------------------------
2027 -- Analyze_Formal_Array_Type --
2028 -------------------------------
2030 procedure Analyze_Formal_Array_Type
2031 (T : in out Entity_Id;
2032 Def : Node_Id)
2034 DSS : Node_Id;
2036 begin
2037 -- Treated like a non-generic array declaration, with additional
2038 -- semantic checks.
2040 Enter_Name (T);
2042 if Nkind (Def) = N_Constrained_Array_Definition then
2043 DSS := First (Discrete_Subtype_Definitions (Def));
2044 while Present (DSS) loop
2045 if Nkind_In (DSS, N_Subtype_Indication,
2046 N_Range,
2047 N_Attribute_Reference)
2048 then
2049 Error_Msg_N ("only a subtype mark is allowed in a formal", DSS);
2050 end if;
2052 Next (DSS);
2053 end loop;
2054 end if;
2056 Array_Type_Declaration (T, Def);
2057 Set_Is_Generic_Type (Base_Type (T));
2059 if Ekind (Component_Type (T)) = E_Incomplete_Type
2060 and then No (Full_View (Component_Type (T)))
2061 then
2062 Error_Msg_N ("premature usage of incomplete type", Def);
2064 -- Check that range constraint is not allowed on the component type
2065 -- of a generic formal array type (AARM 12.5.3(3))
2067 elsif Is_Internal (Component_Type (T))
2068 and then Present (Subtype_Indication (Component_Definition (Def)))
2069 and then Nkind (Original_Node
2070 (Subtype_Indication (Component_Definition (Def)))) =
2071 N_Subtype_Indication
2072 then
2073 Error_Msg_N
2074 ("in a formal, a subtype indication can only be "
2075 & "a subtype mark (RM 12.5.3(3))",
2076 Subtype_Indication (Component_Definition (Def)));
2077 end if;
2079 end Analyze_Formal_Array_Type;
2081 ---------------------------------------------
2082 -- Analyze_Formal_Decimal_Fixed_Point_Type --
2083 ---------------------------------------------
2085 -- As for other generic types, we create a valid type representation with
2086 -- legal but arbitrary attributes, whose values are never considered
2087 -- static. For all scalar types we introduce an anonymous base type, with
2088 -- the same attributes. We choose the corresponding integer type to be
2089 -- Standard_Integer.
2090 -- Here and in other similar routines, the Sloc of the generated internal
2091 -- type must be the same as the sloc of the defining identifier of the
2092 -- formal type declaration, to provide proper source navigation.
2094 procedure Analyze_Formal_Decimal_Fixed_Point_Type
2095 (T : Entity_Id;
2096 Def : Node_Id)
2098 Loc : constant Source_Ptr := Sloc (Def);
2100 Base : constant Entity_Id :=
2101 New_Internal_Entity
2102 (E_Decimal_Fixed_Point_Type,
2103 Current_Scope,
2104 Sloc (Defining_Identifier (Parent (Def))), 'G');
2106 Int_Base : constant Entity_Id := Standard_Integer;
2107 Delta_Val : constant Ureal := Ureal_1;
2108 Digs_Val : constant Uint := Uint_6;
2110 function Make_Dummy_Bound return Node_Id;
2111 -- Return a properly typed universal real literal to use as a bound
2113 ----------------------
2114 -- Make_Dummy_Bound --
2115 ----------------------
2117 function Make_Dummy_Bound return Node_Id is
2118 Bound : constant Node_Id := Make_Real_Literal (Loc, Ureal_1);
2119 begin
2120 Set_Etype (Bound, Universal_Real);
2121 return Bound;
2122 end Make_Dummy_Bound;
2124 -- Start of processing for Analyze_Formal_Decimal_Fixed_Point_Type
2126 begin
2127 Enter_Name (T);
2129 Set_Etype (Base, Base);
2130 Set_Size_Info (Base, Int_Base);
2131 Set_RM_Size (Base, RM_Size (Int_Base));
2132 Set_First_Rep_Item (Base, First_Rep_Item (Int_Base));
2133 Set_Digits_Value (Base, Digs_Val);
2134 Set_Delta_Value (Base, Delta_Val);
2135 Set_Small_Value (Base, Delta_Val);
2136 Set_Scalar_Range (Base,
2137 Make_Range (Loc,
2138 Low_Bound => Make_Dummy_Bound,
2139 High_Bound => Make_Dummy_Bound));
2141 Set_Is_Generic_Type (Base);
2142 Set_Parent (Base, Parent (Def));
2144 Set_Ekind (T, E_Decimal_Fixed_Point_Subtype);
2145 Set_Etype (T, Base);
2146 Set_Size_Info (T, Int_Base);
2147 Set_RM_Size (T, RM_Size (Int_Base));
2148 Set_First_Rep_Item (T, First_Rep_Item (Int_Base));
2149 Set_Digits_Value (T, Digs_Val);
2150 Set_Delta_Value (T, Delta_Val);
2151 Set_Small_Value (T, Delta_Val);
2152 Set_Scalar_Range (T, Scalar_Range (Base));
2153 Set_Is_Constrained (T);
2155 Check_Restriction (No_Fixed_Point, Def);
2156 end Analyze_Formal_Decimal_Fixed_Point_Type;
2158 -------------------------------------------
2159 -- Analyze_Formal_Derived_Interface_Type --
2160 -------------------------------------------
2162 procedure Analyze_Formal_Derived_Interface_Type
2163 (N : Node_Id;
2164 T : Entity_Id;
2165 Def : Node_Id)
2167 Loc : constant Source_Ptr := Sloc (Def);
2169 begin
2170 -- Rewrite as a type declaration of a derived type. This ensures that
2171 -- the interface list and primitive operations are properly captured.
2173 Rewrite (N,
2174 Make_Full_Type_Declaration (Loc,
2175 Defining_Identifier => T,
2176 Type_Definition => Def));
2177 Analyze (N);
2178 Set_Is_Generic_Type (T);
2179 end Analyze_Formal_Derived_Interface_Type;
2181 ---------------------------------
2182 -- Analyze_Formal_Derived_Type --
2183 ---------------------------------
2185 procedure Analyze_Formal_Derived_Type
2186 (N : Node_Id;
2187 T : Entity_Id;
2188 Def : Node_Id)
2190 Loc : constant Source_Ptr := Sloc (Def);
2191 Unk_Disc : constant Boolean := Unknown_Discriminants_Present (N);
2192 New_N : Node_Id;
2194 begin
2195 Set_Is_Generic_Type (T);
2197 if Private_Present (Def) then
2198 New_N :=
2199 Make_Private_Extension_Declaration (Loc,
2200 Defining_Identifier => T,
2201 Discriminant_Specifications => Discriminant_Specifications (N),
2202 Unknown_Discriminants_Present => Unk_Disc,
2203 Subtype_Indication => Subtype_Mark (Def),
2204 Interface_List => Interface_List (Def));
2206 Set_Abstract_Present (New_N, Abstract_Present (Def));
2207 Set_Limited_Present (New_N, Limited_Present (Def));
2208 Set_Synchronized_Present (New_N, Synchronized_Present (Def));
2210 else
2211 New_N :=
2212 Make_Full_Type_Declaration (Loc,
2213 Defining_Identifier => T,
2214 Discriminant_Specifications =>
2215 Discriminant_Specifications (Parent (T)),
2216 Type_Definition =>
2217 Make_Derived_Type_Definition (Loc,
2218 Subtype_Indication => Subtype_Mark (Def)));
2220 Set_Abstract_Present
2221 (Type_Definition (New_N), Abstract_Present (Def));
2222 Set_Limited_Present
2223 (Type_Definition (New_N), Limited_Present (Def));
2224 end if;
2226 Rewrite (N, New_N);
2227 Analyze (N);
2229 if Unk_Disc then
2230 if not Is_Composite_Type (T) then
2231 Error_Msg_N
2232 ("unknown discriminants not allowed for elementary types", N);
2233 else
2234 Set_Has_Unknown_Discriminants (T);
2235 Set_Is_Constrained (T, False);
2236 end if;
2237 end if;
2239 -- If the parent type has a known size, so does the formal, which makes
2240 -- legal representation clauses that involve the formal.
2242 Set_Size_Known_At_Compile_Time
2243 (T, Size_Known_At_Compile_Time (Entity (Subtype_Mark (Def))));
2244 end Analyze_Formal_Derived_Type;
2246 ----------------------------------
2247 -- Analyze_Formal_Discrete_Type --
2248 ----------------------------------
2250 -- The operations defined for a discrete types are those of an enumeration
2251 -- type. The size is set to an arbitrary value, for use in analyzing the
2252 -- generic unit.
2254 procedure Analyze_Formal_Discrete_Type (T : Entity_Id; Def : Node_Id) is
2255 Loc : constant Source_Ptr := Sloc (Def);
2256 Lo : Node_Id;
2257 Hi : Node_Id;
2259 Base : constant Entity_Id :=
2260 New_Internal_Entity
2261 (E_Floating_Point_Type, Current_Scope,
2262 Sloc (Defining_Identifier (Parent (Def))), 'G');
2264 begin
2265 Enter_Name (T);
2266 Set_Ekind (T, E_Enumeration_Subtype);
2267 Set_Etype (T, Base);
2268 Init_Size (T, 8);
2269 Init_Alignment (T);
2270 Set_Is_Generic_Type (T);
2271 Set_Is_Constrained (T);
2273 -- For semantic analysis, the bounds of the type must be set to some
2274 -- non-static value. The simplest is to create attribute nodes for those
2275 -- bounds, that refer to the type itself. These bounds are never
2276 -- analyzed but serve as place-holders.
2278 Lo :=
2279 Make_Attribute_Reference (Loc,
2280 Attribute_Name => Name_First,
2281 Prefix => New_Occurrence_Of (T, Loc));
2282 Set_Etype (Lo, T);
2284 Hi :=
2285 Make_Attribute_Reference (Loc,
2286 Attribute_Name => Name_Last,
2287 Prefix => New_Occurrence_Of (T, Loc));
2288 Set_Etype (Hi, T);
2290 Set_Scalar_Range (T,
2291 Make_Range (Loc,
2292 Low_Bound => Lo,
2293 High_Bound => Hi));
2295 Set_Ekind (Base, E_Enumeration_Type);
2296 Set_Etype (Base, Base);
2297 Init_Size (Base, 8);
2298 Init_Alignment (Base);
2299 Set_Is_Generic_Type (Base);
2300 Set_Scalar_Range (Base, Scalar_Range (T));
2301 Set_Parent (Base, Parent (Def));
2302 end Analyze_Formal_Discrete_Type;
2304 ----------------------------------
2305 -- Analyze_Formal_Floating_Type --
2306 ---------------------------------
2308 procedure Analyze_Formal_Floating_Type (T : Entity_Id; Def : Node_Id) is
2309 Base : constant Entity_Id :=
2310 New_Internal_Entity
2311 (E_Floating_Point_Type, Current_Scope,
2312 Sloc (Defining_Identifier (Parent (Def))), 'G');
2314 begin
2315 -- The various semantic attributes are taken from the predefined type
2316 -- Float, just so that all of them are initialized. Their values are
2317 -- never used because no constant folding or expansion takes place in
2318 -- the generic itself.
2320 Enter_Name (T);
2321 Set_Ekind (T, E_Floating_Point_Subtype);
2322 Set_Etype (T, Base);
2323 Set_Size_Info (T, (Standard_Float));
2324 Set_RM_Size (T, RM_Size (Standard_Float));
2325 Set_Digits_Value (T, Digits_Value (Standard_Float));
2326 Set_Scalar_Range (T, Scalar_Range (Standard_Float));
2327 Set_Is_Constrained (T);
2329 Set_Is_Generic_Type (Base);
2330 Set_Etype (Base, Base);
2331 Set_Size_Info (Base, (Standard_Float));
2332 Set_RM_Size (Base, RM_Size (Standard_Float));
2333 Set_Digits_Value (Base, Digits_Value (Standard_Float));
2334 Set_Scalar_Range (Base, Scalar_Range (Standard_Float));
2335 Set_Parent (Base, Parent (Def));
2337 Check_Restriction (No_Floating_Point, Def);
2338 end Analyze_Formal_Floating_Type;
2340 -----------------------------------
2341 -- Analyze_Formal_Interface_Type;--
2342 -----------------------------------
2344 procedure Analyze_Formal_Interface_Type
2345 (N : Node_Id;
2346 T : Entity_Id;
2347 Def : Node_Id)
2349 Loc : constant Source_Ptr := Sloc (N);
2350 New_N : Node_Id;
2352 begin
2353 New_N :=
2354 Make_Full_Type_Declaration (Loc,
2355 Defining_Identifier => T,
2356 Type_Definition => Def);
2358 Rewrite (N, New_N);
2359 Analyze (N);
2360 Set_Is_Generic_Type (T);
2361 end Analyze_Formal_Interface_Type;
2363 ---------------------------------
2364 -- Analyze_Formal_Modular_Type --
2365 ---------------------------------
2367 procedure Analyze_Formal_Modular_Type (T : Entity_Id; Def : Node_Id) is
2368 begin
2369 -- Apart from their entity kind, generic modular types are treated like
2370 -- signed integer types, and have the same attributes.
2372 Analyze_Formal_Signed_Integer_Type (T, Def);
2373 Set_Ekind (T, E_Modular_Integer_Subtype);
2374 Set_Ekind (Etype (T), E_Modular_Integer_Type);
2376 end Analyze_Formal_Modular_Type;
2378 ---------------------------------------
2379 -- Analyze_Formal_Object_Declaration --
2380 ---------------------------------------
2382 procedure Analyze_Formal_Object_Declaration (N : Node_Id) is
2383 E : constant Node_Id := Default_Expression (N);
2384 Id : constant Node_Id := Defining_Identifier (N);
2385 K : Entity_Kind;
2386 T : Node_Id;
2388 begin
2389 Enter_Name (Id);
2391 -- Determine the mode of the formal object
2393 if Out_Present (N) then
2394 K := E_Generic_In_Out_Parameter;
2396 if not In_Present (N) then
2397 Error_Msg_N ("formal generic objects cannot have mode OUT", N);
2398 end if;
2400 else
2401 K := E_Generic_In_Parameter;
2402 end if;
2404 if Present (Subtype_Mark (N)) then
2405 Find_Type (Subtype_Mark (N));
2406 T := Entity (Subtype_Mark (N));
2408 -- Verify that there is no redundant null exclusion
2410 if Null_Exclusion_Present (N) then
2411 if not Is_Access_Type (T) then
2412 Error_Msg_N
2413 ("null exclusion can only apply to an access type", N);
2415 elsif Can_Never_Be_Null (T) then
2416 Error_Msg_NE
2417 ("`NOT NULL` not allowed (& already excludes null)",
2418 N, T);
2419 end if;
2420 end if;
2422 -- Ada 2005 (AI-423): Formal object with an access definition
2424 else
2425 Check_Access_Definition (N);
2426 T := Access_Definition
2427 (Related_Nod => N,
2428 N => Access_Definition (N));
2429 end if;
2431 if Ekind (T) = E_Incomplete_Type then
2432 declare
2433 Error_Node : Node_Id;
2435 begin
2436 if Present (Subtype_Mark (N)) then
2437 Error_Node := Subtype_Mark (N);
2438 else
2439 Check_Access_Definition (N);
2440 Error_Node := Access_Definition (N);
2441 end if;
2443 Error_Msg_N ("premature usage of incomplete type", Error_Node);
2444 end;
2445 end if;
2447 if K = E_Generic_In_Parameter then
2449 -- Ada 2005 (AI-287): Limited aggregates allowed in generic formals
2451 if Ada_Version < Ada_2005 and then Is_Limited_Type (T) then
2452 Error_Msg_N
2453 ("generic formal of mode IN must not be of limited type", N);
2454 Explain_Limited_Type (T, N);
2455 end if;
2457 if Is_Abstract_Type (T) then
2458 Error_Msg_N
2459 ("generic formal of mode IN must not be of abstract type", N);
2460 end if;
2462 if Present (E) then
2463 Preanalyze_Spec_Expression (E, T);
2465 if Is_Limited_Type (T) and then not OK_For_Limited_Init (T, E) then
2466 Error_Msg_N
2467 ("initialization not allowed for limited types", E);
2468 Explain_Limited_Type (T, E);
2469 end if;
2470 end if;
2472 Set_Ekind (Id, K);
2473 Set_Etype (Id, T);
2475 -- Case of generic IN OUT parameter
2477 else
2478 -- If the formal has an unconstrained type, construct its actual
2479 -- subtype, as is done for subprogram formals. In this fashion, all
2480 -- its uses can refer to specific bounds.
2482 Set_Ekind (Id, K);
2483 Set_Etype (Id, T);
2485 if (Is_Array_Type (T) and then not Is_Constrained (T))
2486 or else (Ekind (T) = E_Record_Type and then Has_Discriminants (T))
2487 then
2488 declare
2489 Non_Freezing_Ref : constant Node_Id :=
2490 New_Occurrence_Of (Id, Sloc (Id));
2491 Decl : Node_Id;
2493 begin
2494 -- Make sure the actual subtype doesn't generate bogus freezing
2496 Set_Must_Not_Freeze (Non_Freezing_Ref);
2497 Decl := Build_Actual_Subtype (T, Non_Freezing_Ref);
2498 Insert_Before_And_Analyze (N, Decl);
2499 Set_Actual_Subtype (Id, Defining_Identifier (Decl));
2500 end;
2501 else
2502 Set_Actual_Subtype (Id, T);
2503 end if;
2505 if Present (E) then
2506 Error_Msg_N
2507 ("initialization not allowed for `IN OUT` formals", N);
2508 end if;
2509 end if;
2511 if Has_Aspects (N) then
2512 Analyze_Aspect_Specifications (N, Id);
2513 end if;
2514 end Analyze_Formal_Object_Declaration;
2516 ----------------------------------------------
2517 -- Analyze_Formal_Ordinary_Fixed_Point_Type --
2518 ----------------------------------------------
2520 procedure Analyze_Formal_Ordinary_Fixed_Point_Type
2521 (T : Entity_Id;
2522 Def : Node_Id)
2524 Loc : constant Source_Ptr := Sloc (Def);
2525 Base : constant Entity_Id :=
2526 New_Internal_Entity
2527 (E_Ordinary_Fixed_Point_Type, Current_Scope,
2528 Sloc (Defining_Identifier (Parent (Def))), 'G');
2530 begin
2531 -- The semantic attributes are set for completeness only, their values
2532 -- will never be used, since all properties of the type are non-static.
2534 Enter_Name (T);
2535 Set_Ekind (T, E_Ordinary_Fixed_Point_Subtype);
2536 Set_Etype (T, Base);
2537 Set_Size_Info (T, Standard_Integer);
2538 Set_RM_Size (T, RM_Size (Standard_Integer));
2539 Set_Small_Value (T, Ureal_1);
2540 Set_Delta_Value (T, Ureal_1);
2541 Set_Scalar_Range (T,
2542 Make_Range (Loc,
2543 Low_Bound => Make_Real_Literal (Loc, Ureal_1),
2544 High_Bound => Make_Real_Literal (Loc, Ureal_1)));
2545 Set_Is_Constrained (T);
2547 Set_Is_Generic_Type (Base);
2548 Set_Etype (Base, Base);
2549 Set_Size_Info (Base, Standard_Integer);
2550 Set_RM_Size (Base, RM_Size (Standard_Integer));
2551 Set_Small_Value (Base, Ureal_1);
2552 Set_Delta_Value (Base, Ureal_1);
2553 Set_Scalar_Range (Base, Scalar_Range (T));
2554 Set_Parent (Base, Parent (Def));
2556 Check_Restriction (No_Fixed_Point, Def);
2557 end Analyze_Formal_Ordinary_Fixed_Point_Type;
2559 ----------------------------------------
2560 -- Analyze_Formal_Package_Declaration --
2561 ----------------------------------------
2563 procedure Analyze_Formal_Package_Declaration (N : Node_Id) is
2564 Loc : constant Source_Ptr := Sloc (N);
2565 Pack_Id : constant Entity_Id := Defining_Identifier (N);
2566 Formal : Entity_Id;
2567 Gen_Id : constant Node_Id := Name (N);
2568 Gen_Decl : Node_Id;
2569 Gen_Unit : Entity_Id;
2570 New_N : Node_Id;
2571 Parent_Installed : Boolean := False;
2572 Renaming : Node_Id;
2573 Parent_Instance : Entity_Id;
2574 Renaming_In_Par : Entity_Id;
2575 Associations : Boolean := True;
2577 Vis_Prims_List : Elist_Id := No_Elist;
2578 -- List of primitives made temporarily visible in the instantiation
2579 -- to match the visibility of the formal type
2581 function Build_Local_Package return Node_Id;
2582 -- The formal package is rewritten so that its parameters are replaced
2583 -- with corresponding declarations. For parameters with bona fide
2584 -- associations these declarations are created by Analyze_Associations
2585 -- as for a regular instantiation. For boxed parameters, we preserve
2586 -- the formal declarations and analyze them, in order to introduce
2587 -- entities of the right kind in the environment of the formal.
2589 -------------------------
2590 -- Build_Local_Package --
2591 -------------------------
2593 function Build_Local_Package return Node_Id is
2594 Decls : List_Id;
2595 Pack_Decl : Node_Id;
2597 begin
2598 -- Within the formal, the name of the generic package is a renaming
2599 -- of the formal (as for a regular instantiation).
2601 Pack_Decl :=
2602 Make_Package_Declaration (Loc,
2603 Specification =>
2604 Copy_Generic_Node
2605 (Specification (Original_Node (Gen_Decl)),
2606 Empty, Instantiating => True));
2608 Renaming := Make_Package_Renaming_Declaration (Loc,
2609 Defining_Unit_Name =>
2610 Make_Defining_Identifier (Loc, Chars (Gen_Unit)),
2611 Name => New_Occurrence_Of (Formal, Loc));
2613 if Nkind (Gen_Id) = N_Identifier
2614 and then Chars (Gen_Id) = Chars (Pack_Id)
2615 then
2616 Error_Msg_NE
2617 ("& is hidden within declaration of instance", Gen_Id, Gen_Unit);
2618 end if;
2620 -- If the formal is declared with a box, or with an others choice,
2621 -- create corresponding declarations for all entities in the formal
2622 -- part, so that names with the proper types are available in the
2623 -- specification of the formal package.
2625 -- On the other hand, if there are no associations, then all the
2626 -- formals must have defaults, and this will be checked by the
2627 -- call to Analyze_Associations.
2629 if Box_Present (N)
2630 or else Nkind (First (Generic_Associations (N))) = N_Others_Choice
2631 then
2632 declare
2633 Formal_Decl : Node_Id;
2635 begin
2636 -- TBA : for a formal package, need to recurse ???
2638 Decls := New_List;
2639 Formal_Decl :=
2640 First
2641 (Generic_Formal_Declarations (Original_Node (Gen_Decl)));
2642 while Present (Formal_Decl) loop
2643 Append_To
2644 (Decls, Copy_Generic_Node (Formal_Decl, Empty, True));
2645 Next (Formal_Decl);
2646 end loop;
2647 end;
2649 -- If generic associations are present, use Analyze_Associations to
2650 -- create the proper renaming declarations.
2652 else
2653 declare
2654 Act_Tree : constant Node_Id :=
2655 Copy_Generic_Node
2656 (Original_Node (Gen_Decl), Empty,
2657 Instantiating => True);
2659 begin
2660 Generic_Renamings.Set_Last (0);
2661 Generic_Renamings_HTable.Reset;
2662 Instantiation_Node := N;
2664 Decls :=
2665 Analyze_Associations
2666 (I_Node => Original_Node (N),
2667 Formals => Generic_Formal_Declarations (Act_Tree),
2668 F_Copy => Generic_Formal_Declarations (Gen_Decl));
2670 Vis_Prims_List := Check_Hidden_Primitives (Decls);
2671 end;
2672 end if;
2674 Append (Renaming, To => Decls);
2676 -- Add generated declarations ahead of local declarations in
2677 -- the package.
2679 if No (Visible_Declarations (Specification (Pack_Decl))) then
2680 Set_Visible_Declarations (Specification (Pack_Decl), Decls);
2681 else
2682 Insert_List_Before
2683 (First (Visible_Declarations (Specification (Pack_Decl))),
2684 Decls);
2685 end if;
2687 return Pack_Decl;
2688 end Build_Local_Package;
2690 -- Start of processing for Analyze_Formal_Package_Declaration
2692 begin
2693 Check_Text_IO_Special_Unit (Gen_Id);
2695 Init_Env;
2696 Check_Generic_Child_Unit (Gen_Id, Parent_Installed);
2697 Gen_Unit := Entity (Gen_Id);
2699 -- Check for a formal package that is a package renaming
2701 if Present (Renamed_Object (Gen_Unit)) then
2703 -- Indicate that unit is used, before replacing it with renamed
2704 -- entity for use below.
2706 if In_Extended_Main_Source_Unit (N) then
2707 Set_Is_Instantiated (Gen_Unit);
2708 Generate_Reference (Gen_Unit, N);
2709 end if;
2711 Gen_Unit := Renamed_Object (Gen_Unit);
2712 end if;
2714 if Ekind (Gen_Unit) /= E_Generic_Package then
2715 Error_Msg_N ("expect generic package name", Gen_Id);
2716 Restore_Env;
2717 goto Leave;
2719 elsif Gen_Unit = Current_Scope then
2720 Error_Msg_N
2721 ("generic package cannot be used as a formal package of itself",
2722 Gen_Id);
2723 Restore_Env;
2724 goto Leave;
2726 elsif In_Open_Scopes (Gen_Unit) then
2727 if Is_Compilation_Unit (Gen_Unit)
2728 and then Is_Child_Unit (Current_Scope)
2729 then
2730 -- Special-case the error when the formal is a parent, and
2731 -- continue analysis to minimize cascaded errors.
2733 Error_Msg_N
2734 ("generic parent cannot be used as formal package "
2735 & "of a child unit",
2736 Gen_Id);
2738 else
2739 Error_Msg_N
2740 ("generic package cannot be used as a formal package "
2741 & "within itself",
2742 Gen_Id);
2743 Restore_Env;
2744 goto Leave;
2745 end if;
2746 end if;
2748 -- Check that name of formal package does not hide name of generic,
2749 -- or its leading prefix. This check must be done separately because
2750 -- the name of the generic has already been analyzed.
2752 declare
2753 Gen_Name : Entity_Id;
2755 begin
2756 Gen_Name := Gen_Id;
2757 while Nkind (Gen_Name) = N_Expanded_Name loop
2758 Gen_Name := Prefix (Gen_Name);
2759 end loop;
2761 if Chars (Gen_Name) = Chars (Pack_Id) then
2762 Error_Msg_NE
2763 ("& is hidden within declaration of formal package",
2764 Gen_Id, Gen_Name);
2765 end if;
2766 end;
2768 if Box_Present (N)
2769 or else No (Generic_Associations (N))
2770 or else Nkind (First (Generic_Associations (N))) = N_Others_Choice
2771 then
2772 Associations := False;
2773 end if;
2775 -- If there are no generic associations, the generic parameters appear
2776 -- as local entities and are instantiated like them. We copy the generic
2777 -- package declaration as if it were an instantiation, and analyze it
2778 -- like a regular package, except that we treat the formals as
2779 -- additional visible components.
2781 Gen_Decl := Unit_Declaration_Node (Gen_Unit);
2783 if In_Extended_Main_Source_Unit (N) then
2784 Set_Is_Instantiated (Gen_Unit);
2785 Generate_Reference (Gen_Unit, N);
2786 end if;
2788 Formal := New_Copy (Pack_Id);
2789 Create_Instantiation_Source (N, Gen_Unit, False, S_Adjustment);
2791 begin
2792 -- Make local generic without formals. The formals will be replaced
2793 -- with internal declarations.
2795 New_N := Build_Local_Package;
2797 -- If there are errors in the parameter list, Analyze_Associations
2798 -- raises Instantiation_Error. Patch the declaration to prevent
2799 -- further exception propagation.
2801 exception
2802 when Instantiation_Error =>
2804 Enter_Name (Formal);
2805 Set_Ekind (Formal, E_Variable);
2806 Set_Etype (Formal, Any_Type);
2807 Restore_Hidden_Primitives (Vis_Prims_List);
2809 if Parent_Installed then
2810 Remove_Parent;
2811 end if;
2813 goto Leave;
2814 end;
2816 Rewrite (N, New_N);
2817 Set_Defining_Unit_Name (Specification (New_N), Formal);
2818 Set_Generic_Parent (Specification (N), Gen_Unit);
2819 Set_Instance_Env (Gen_Unit, Formal);
2820 Set_Is_Generic_Instance (Formal);
2822 Enter_Name (Formal);
2823 Set_Ekind (Formal, E_Package);
2824 Set_Etype (Formal, Standard_Void_Type);
2825 Set_Inner_Instances (Formal, New_Elmt_List);
2826 Push_Scope (Formal);
2828 if Is_Child_Unit (Gen_Unit)
2829 and then Parent_Installed
2830 then
2831 -- Similarly, we have to make the name of the formal visible in the
2832 -- parent instance, to resolve properly fully qualified names that
2833 -- may appear in the generic unit. The parent instance has been
2834 -- placed on the scope stack ahead of the current scope.
2836 Parent_Instance := Scope_Stack.Table (Scope_Stack.Last - 1).Entity;
2838 Renaming_In_Par :=
2839 Make_Defining_Identifier (Loc, Chars (Gen_Unit));
2840 Set_Ekind (Renaming_In_Par, E_Package);
2841 Set_Etype (Renaming_In_Par, Standard_Void_Type);
2842 Set_Scope (Renaming_In_Par, Parent_Instance);
2843 Set_Parent (Renaming_In_Par, Parent (Formal));
2844 Set_Renamed_Object (Renaming_In_Par, Formal);
2845 Append_Entity (Renaming_In_Par, Parent_Instance);
2846 end if;
2848 Analyze (Specification (N));
2850 -- The formals for which associations are provided are not visible
2851 -- outside of the formal package. The others are still declared by a
2852 -- formal parameter declaration.
2854 -- If there are no associations, the only local entity to hide is the
2855 -- generated package renaming itself.
2857 declare
2858 E : Entity_Id;
2860 begin
2861 E := First_Entity (Formal);
2862 while Present (E) loop
2863 if Associations
2864 and then not Is_Generic_Formal (E)
2865 then
2866 Set_Is_Hidden (E);
2867 end if;
2869 if Ekind (E) = E_Package
2870 and then Renamed_Entity (E) = Formal
2871 then
2872 Set_Is_Hidden (E);
2873 exit;
2874 end if;
2876 Next_Entity (E);
2877 end loop;
2878 end;
2880 End_Package_Scope (Formal);
2881 Restore_Hidden_Primitives (Vis_Prims_List);
2883 if Parent_Installed then
2884 Remove_Parent;
2885 end if;
2887 Restore_Env;
2889 -- Inside the generic unit, the formal package is a regular package, but
2890 -- no body is needed for it. Note that after instantiation, the defining
2891 -- unit name we need is in the new tree and not in the original (see
2892 -- Package_Instantiation). A generic formal package is an instance, and
2893 -- can be used as an actual for an inner instance.
2895 Set_Has_Completion (Formal, True);
2897 -- Add semantic information to the original defining identifier.
2898 -- for ASIS use.
2900 Set_Ekind (Pack_Id, E_Package);
2901 Set_Etype (Pack_Id, Standard_Void_Type);
2902 Set_Scope (Pack_Id, Scope (Formal));
2903 Set_Has_Completion (Pack_Id, True);
2905 <<Leave>>
2906 if Has_Aspects (N) then
2907 Analyze_Aspect_Specifications (N, Pack_Id);
2908 end if;
2909 end Analyze_Formal_Package_Declaration;
2911 ---------------------------------
2912 -- Analyze_Formal_Private_Type --
2913 ---------------------------------
2915 procedure Analyze_Formal_Private_Type
2916 (N : Node_Id;
2917 T : Entity_Id;
2918 Def : Node_Id)
2920 begin
2921 New_Private_Type (N, T, Def);
2923 -- Set the size to an arbitrary but legal value
2925 Set_Size_Info (T, Standard_Integer);
2926 Set_RM_Size (T, RM_Size (Standard_Integer));
2927 end Analyze_Formal_Private_Type;
2929 ------------------------------------
2930 -- Analyze_Formal_Incomplete_Type --
2931 ------------------------------------
2933 procedure Analyze_Formal_Incomplete_Type
2934 (T : Entity_Id;
2935 Def : Node_Id)
2937 begin
2938 Enter_Name (T);
2939 Set_Ekind (T, E_Incomplete_Type);
2940 Set_Etype (T, T);
2941 Set_Private_Dependents (T, New_Elmt_List);
2943 if Tagged_Present (Def) then
2944 Set_Is_Tagged_Type (T);
2945 Make_Class_Wide_Type (T);
2946 Set_Direct_Primitive_Operations (T, New_Elmt_List);
2947 end if;
2948 end Analyze_Formal_Incomplete_Type;
2950 ----------------------------------------
2951 -- Analyze_Formal_Signed_Integer_Type --
2952 ----------------------------------------
2954 procedure Analyze_Formal_Signed_Integer_Type
2955 (T : Entity_Id;
2956 Def : Node_Id)
2958 Base : constant Entity_Id :=
2959 New_Internal_Entity
2960 (E_Signed_Integer_Type,
2961 Current_Scope,
2962 Sloc (Defining_Identifier (Parent (Def))), 'G');
2964 begin
2965 Enter_Name (T);
2967 Set_Ekind (T, E_Signed_Integer_Subtype);
2968 Set_Etype (T, Base);
2969 Set_Size_Info (T, Standard_Integer);
2970 Set_RM_Size (T, RM_Size (Standard_Integer));
2971 Set_Scalar_Range (T, Scalar_Range (Standard_Integer));
2972 Set_Is_Constrained (T);
2974 Set_Is_Generic_Type (Base);
2975 Set_Size_Info (Base, Standard_Integer);
2976 Set_RM_Size (Base, RM_Size (Standard_Integer));
2977 Set_Etype (Base, Base);
2978 Set_Scalar_Range (Base, Scalar_Range (Standard_Integer));
2979 Set_Parent (Base, Parent (Def));
2980 end Analyze_Formal_Signed_Integer_Type;
2982 -------------------------------------------
2983 -- Analyze_Formal_Subprogram_Declaration --
2984 -------------------------------------------
2986 procedure Analyze_Formal_Subprogram_Declaration (N : Node_Id) is
2987 Spec : constant Node_Id := Specification (N);
2988 Def : constant Node_Id := Default_Name (N);
2989 Nam : constant Entity_Id := Defining_Unit_Name (Spec);
2990 Subp : Entity_Id;
2992 begin
2993 if Nam = Error then
2994 return;
2995 end if;
2997 if Nkind (Nam) = N_Defining_Program_Unit_Name then
2998 Error_Msg_N ("name of formal subprogram must be a direct name", Nam);
2999 goto Leave;
3000 end if;
3002 Analyze_Subprogram_Declaration (N);
3003 Set_Is_Formal_Subprogram (Nam);
3004 Set_Has_Completion (Nam);
3006 if Nkind (N) = N_Formal_Abstract_Subprogram_Declaration then
3007 Set_Is_Abstract_Subprogram (Nam);
3008 Set_Is_Dispatching_Operation (Nam);
3010 declare
3011 Ctrl_Type : constant Entity_Id := Find_Dispatching_Type (Nam);
3012 begin
3013 if No (Ctrl_Type) then
3014 Error_Msg_N
3015 ("abstract formal subprogram must have a controlling type",
3018 elsif Ada_Version >= Ada_2012
3019 and then Is_Incomplete_Type (Ctrl_Type)
3020 then
3021 Error_Msg_NE
3022 ("controlling type of abstract formal subprogram cannot " &
3023 "be incomplete type", N, Ctrl_Type);
3025 else
3026 Check_Controlling_Formals (Ctrl_Type, Nam);
3027 end if;
3028 end;
3029 end if;
3031 -- Default name is resolved at the point of instantiation
3033 if Box_Present (N) then
3034 null;
3036 -- Else default is bound at the point of generic declaration
3038 elsif Present (Def) then
3039 if Nkind (Def) = N_Operator_Symbol then
3040 Find_Direct_Name (Def);
3042 elsif Nkind (Def) /= N_Attribute_Reference then
3043 Analyze (Def);
3045 else
3046 -- For an attribute reference, analyze the prefix and verify
3047 -- that it has the proper profile for the subprogram.
3049 Analyze (Prefix (Def));
3050 Valid_Default_Attribute (Nam, Def);
3051 goto Leave;
3052 end if;
3054 -- Default name may be overloaded, in which case the interpretation
3055 -- with the correct profile must be selected, as for a renaming.
3056 -- If the definition is an indexed component, it must denote a
3057 -- member of an entry family. If it is a selected component, it
3058 -- can be a protected operation.
3060 if Etype (Def) = Any_Type then
3061 goto Leave;
3063 elsif Nkind (Def) = N_Selected_Component then
3064 if not Is_Overloadable (Entity (Selector_Name (Def))) then
3065 Error_Msg_N ("expect valid subprogram name as default", Def);
3066 end if;
3068 elsif Nkind (Def) = N_Indexed_Component then
3069 if Is_Entity_Name (Prefix (Def)) then
3070 if Ekind (Entity (Prefix (Def))) /= E_Entry_Family then
3071 Error_Msg_N ("expect valid subprogram name as default", Def);
3072 end if;
3074 elsif Nkind (Prefix (Def)) = N_Selected_Component then
3075 if Ekind (Entity (Selector_Name (Prefix (Def)))) /=
3076 E_Entry_Family
3077 then
3078 Error_Msg_N ("expect valid subprogram name as default", Def);
3079 end if;
3081 else
3082 Error_Msg_N ("expect valid subprogram name as default", Def);
3083 goto Leave;
3084 end if;
3086 elsif Nkind (Def) = N_Character_Literal then
3088 -- Needs some type checks: subprogram should be parameterless???
3090 Resolve (Def, (Etype (Nam)));
3092 elsif not Is_Entity_Name (Def)
3093 or else not Is_Overloadable (Entity (Def))
3094 then
3095 Error_Msg_N ("expect valid subprogram name as default", Def);
3096 goto Leave;
3098 elsif not Is_Overloaded (Def) then
3099 Subp := Entity (Def);
3101 if Subp = Nam then
3102 Error_Msg_N ("premature usage of formal subprogram", Def);
3104 elsif not Entity_Matches_Spec (Subp, Nam) then
3105 Error_Msg_N ("no visible entity matches specification", Def);
3106 end if;
3108 -- More than one interpretation, so disambiguate as for a renaming
3110 else
3111 declare
3112 I : Interp_Index;
3113 I1 : Interp_Index := 0;
3114 It : Interp;
3115 It1 : Interp;
3117 begin
3118 Subp := Any_Id;
3119 Get_First_Interp (Def, I, It);
3120 while Present (It.Nam) loop
3121 if Entity_Matches_Spec (It.Nam, Nam) then
3122 if Subp /= Any_Id then
3123 It1 := Disambiguate (Def, I1, I, Etype (Subp));
3125 if It1 = No_Interp then
3126 Error_Msg_N ("ambiguous default subprogram", Def);
3127 else
3128 Subp := It1.Nam;
3129 end if;
3131 exit;
3133 else
3134 I1 := I;
3135 Subp := It.Nam;
3136 end if;
3137 end if;
3139 Get_Next_Interp (I, It);
3140 end loop;
3141 end;
3143 if Subp /= Any_Id then
3145 -- Subprogram found, generate reference to it
3147 Set_Entity (Def, Subp);
3148 Generate_Reference (Subp, Def);
3150 if Subp = Nam then
3151 Error_Msg_N ("premature usage of formal subprogram", Def);
3153 elsif Ekind (Subp) /= E_Operator then
3154 Check_Mode_Conformant (Subp, Nam);
3155 end if;
3157 else
3158 Error_Msg_N ("no visible subprogram matches specification", N);
3159 end if;
3160 end if;
3161 end if;
3163 <<Leave>>
3164 if Has_Aspects (N) then
3165 Analyze_Aspect_Specifications (N, Nam);
3166 end if;
3168 end Analyze_Formal_Subprogram_Declaration;
3170 -------------------------------------
3171 -- Analyze_Formal_Type_Declaration --
3172 -------------------------------------
3174 procedure Analyze_Formal_Type_Declaration (N : Node_Id) is
3175 Def : constant Node_Id := Formal_Type_Definition (N);
3176 T : Entity_Id;
3178 begin
3179 T := Defining_Identifier (N);
3181 if Present (Discriminant_Specifications (N))
3182 and then Nkind (Def) /= N_Formal_Private_Type_Definition
3183 then
3184 Error_Msg_N
3185 ("discriminants not allowed for this formal type", T);
3186 end if;
3188 -- Enter the new name, and branch to specific routine
3190 case Nkind (Def) is
3191 when N_Formal_Private_Type_Definition =>
3192 Analyze_Formal_Private_Type (N, T, Def);
3194 when N_Formal_Derived_Type_Definition =>
3195 Analyze_Formal_Derived_Type (N, T, Def);
3197 when N_Formal_Incomplete_Type_Definition =>
3198 Analyze_Formal_Incomplete_Type (T, Def);
3200 when N_Formal_Discrete_Type_Definition =>
3201 Analyze_Formal_Discrete_Type (T, Def);
3203 when N_Formal_Signed_Integer_Type_Definition =>
3204 Analyze_Formal_Signed_Integer_Type (T, Def);
3206 when N_Formal_Modular_Type_Definition =>
3207 Analyze_Formal_Modular_Type (T, Def);
3209 when N_Formal_Floating_Point_Definition =>
3210 Analyze_Formal_Floating_Type (T, Def);
3212 when N_Formal_Ordinary_Fixed_Point_Definition =>
3213 Analyze_Formal_Ordinary_Fixed_Point_Type (T, Def);
3215 when N_Formal_Decimal_Fixed_Point_Definition =>
3216 Analyze_Formal_Decimal_Fixed_Point_Type (T, Def);
3218 when N_Array_Type_Definition =>
3219 Analyze_Formal_Array_Type (T, Def);
3221 when N_Access_To_Object_Definition |
3222 N_Access_Function_Definition |
3223 N_Access_Procedure_Definition =>
3224 Analyze_Generic_Access_Type (T, Def);
3226 -- Ada 2005: a interface declaration is encoded as an abstract
3227 -- record declaration or a abstract type derivation.
3229 when N_Record_Definition =>
3230 Analyze_Formal_Interface_Type (N, T, Def);
3232 when N_Derived_Type_Definition =>
3233 Analyze_Formal_Derived_Interface_Type (N, T, Def);
3235 when N_Error =>
3236 null;
3238 when others =>
3239 raise Program_Error;
3241 end case;
3243 Set_Is_Generic_Type (T);
3245 if Has_Aspects (N) then
3246 Analyze_Aspect_Specifications (N, T);
3247 end if;
3248 end Analyze_Formal_Type_Declaration;
3250 ------------------------------------
3251 -- Analyze_Function_Instantiation --
3252 ------------------------------------
3254 procedure Analyze_Function_Instantiation (N : Node_Id) is
3255 begin
3256 Analyze_Subprogram_Instantiation (N, E_Function);
3257 end Analyze_Function_Instantiation;
3259 ---------------------------------
3260 -- Analyze_Generic_Access_Type --
3261 ---------------------------------
3263 procedure Analyze_Generic_Access_Type (T : Entity_Id; Def : Node_Id) is
3264 begin
3265 Enter_Name (T);
3267 if Nkind (Def) = N_Access_To_Object_Definition then
3268 Access_Type_Declaration (T, Def);
3270 if Is_Incomplete_Or_Private_Type (Designated_Type (T))
3271 and then No (Full_View (Designated_Type (T)))
3272 and then not Is_Generic_Type (Designated_Type (T))
3273 then
3274 Error_Msg_N ("premature usage of incomplete type", Def);
3276 elsif not Is_Entity_Name (Subtype_Indication (Def)) then
3277 Error_Msg_N
3278 ("only a subtype mark is allowed in a formal", Def);
3279 end if;
3281 else
3282 Access_Subprogram_Declaration (T, Def);
3283 end if;
3284 end Analyze_Generic_Access_Type;
3286 ---------------------------------
3287 -- Analyze_Generic_Formal_Part --
3288 ---------------------------------
3290 procedure Analyze_Generic_Formal_Part (N : Node_Id) is
3291 Gen_Parm_Decl : Node_Id;
3293 begin
3294 -- The generic formals are processed in the scope of the generic unit,
3295 -- where they are immediately visible. The scope is installed by the
3296 -- caller.
3298 Gen_Parm_Decl := First (Generic_Formal_Declarations (N));
3300 while Present (Gen_Parm_Decl) loop
3301 Analyze (Gen_Parm_Decl);
3302 Next (Gen_Parm_Decl);
3303 end loop;
3305 Generate_Reference_To_Generic_Formals (Current_Scope);
3306 end Analyze_Generic_Formal_Part;
3308 ------------------------------------------
3309 -- Analyze_Generic_Package_Declaration --
3310 ------------------------------------------
3312 procedure Analyze_Generic_Package_Declaration (N : Node_Id) is
3313 Loc : constant Source_Ptr := Sloc (N);
3314 Id : Entity_Id;
3315 New_N : Node_Id;
3316 Save_Parent : Node_Id;
3317 Renaming : Node_Id;
3318 Decls : constant List_Id :=
3319 Visible_Declarations (Specification (N));
3320 Decl : Node_Id;
3322 begin
3323 Check_SPARK_05_Restriction ("generic is not allowed", N);
3325 -- We introduce a renaming of the enclosing package, to have a usable
3326 -- entity as the prefix of an expanded name for a local entity of the
3327 -- form Par.P.Q, where P is the generic package. This is because a local
3328 -- entity named P may hide it, so that the usual visibility rules in
3329 -- the instance will not resolve properly.
3331 Renaming :=
3332 Make_Package_Renaming_Declaration (Loc,
3333 Defining_Unit_Name =>
3334 Make_Defining_Identifier (Loc,
3335 Chars => New_External_Name (Chars (Defining_Entity (N)), "GH")),
3336 Name => Make_Identifier (Loc, Chars (Defining_Entity (N))));
3338 if Present (Decls) then
3339 Decl := First (Decls);
3340 while Present (Decl)
3341 and then Nkind (Decl) = N_Pragma
3342 loop
3343 Next (Decl);
3344 end loop;
3346 if Present (Decl) then
3347 Insert_Before (Decl, Renaming);
3348 else
3349 Append (Renaming, Visible_Declarations (Specification (N)));
3350 end if;
3352 else
3353 Set_Visible_Declarations (Specification (N), New_List (Renaming));
3354 end if;
3356 -- Create copy of generic unit, and save for instantiation. If the unit
3357 -- is a child unit, do not copy the specifications for the parent, which
3358 -- are not part of the generic tree.
3360 Save_Parent := Parent_Spec (N);
3361 Set_Parent_Spec (N, Empty);
3363 New_N := Copy_Generic_Node (N, Empty, Instantiating => False);
3364 Set_Parent_Spec (New_N, Save_Parent);
3365 Rewrite (N, New_N);
3367 -- Once the contents of the generic copy and the template are swapped,
3368 -- do the same for their respective aspect specifications.
3370 Exchange_Aspects (N, New_N);
3371 Id := Defining_Entity (N);
3372 Generate_Definition (Id);
3374 -- Expansion is not applied to generic units
3376 Start_Generic;
3378 Enter_Name (Id);
3379 Set_Ekind (Id, E_Generic_Package);
3380 Set_Etype (Id, Standard_Void_Type);
3381 Set_Contract (Id, Make_Contract (Sloc (Id)));
3383 -- A generic package declared within a Ghost scope is rendered Ghost
3384 -- (SPARK RM 6.9(2)).
3386 if Within_Ghost_Scope then
3387 Set_Is_Ghost_Entity (Id);
3388 end if;
3390 -- Analyze aspects now, so that generated pragmas appear in the
3391 -- declarations before building and analyzing the generic copy.
3393 if Has_Aspects (N) then
3394 Analyze_Aspect_Specifications (N, Id);
3395 end if;
3397 Push_Scope (Id);
3398 Enter_Generic_Scope (Id);
3399 Set_Inner_Instances (Id, New_Elmt_List);
3401 Set_Categorization_From_Pragmas (N);
3402 Set_Is_Pure (Id, Is_Pure (Current_Scope));
3404 -- Link the declaration of the generic homonym in the generic copy to
3405 -- the package it renames, so that it is always resolved properly.
3407 Set_Generic_Homonym (Id, Defining_Unit_Name (Renaming));
3408 Set_Entity (Associated_Node (Name (Renaming)), Id);
3410 -- For a library unit, we have reconstructed the entity for the unit,
3411 -- and must reset it in the library tables.
3413 if Nkind (Parent (N)) = N_Compilation_Unit then
3414 Set_Cunit_Entity (Current_Sem_Unit, Id);
3415 end if;
3417 Analyze_Generic_Formal_Part (N);
3419 -- After processing the generic formals, analysis proceeds as for a
3420 -- non-generic package.
3422 Analyze (Specification (N));
3424 Validate_Categorization_Dependency (N, Id);
3426 End_Generic;
3428 End_Package_Scope (Id);
3429 Exit_Generic_Scope (Id);
3431 if Nkind (Parent (N)) /= N_Compilation_Unit then
3432 Move_Freeze_Nodes (Id, N, Visible_Declarations (Specification (N)));
3433 Move_Freeze_Nodes (Id, N, Private_Declarations (Specification (N)));
3434 Move_Freeze_Nodes (Id, N, Generic_Formal_Declarations (N));
3436 else
3437 Set_Body_Required (Parent (N), Unit_Requires_Body (Id));
3438 Validate_RT_RAT_Component (N);
3440 -- If this is a spec without a body, check that generic parameters
3441 -- are referenced.
3443 if not Body_Required (Parent (N)) then
3444 Check_References (Id);
3445 end if;
3446 end if;
3448 -- If there is a specified storage pool in the context, create an
3449 -- aspect on the package declaration, so that it is used in any
3450 -- instance that does not override it.
3452 if Present (Default_Pool) then
3453 declare
3454 ASN : Node_Id;
3456 begin
3457 ASN :=
3458 Make_Aspect_Specification (Loc,
3459 Identifier => Make_Identifier (Loc, Name_Default_Storage_Pool),
3460 Expression => New_Copy (Default_Pool));
3462 if No (Aspect_Specifications (Specification (N))) then
3463 Set_Aspect_Specifications (Specification (N), New_List (ASN));
3464 else
3465 Append (ASN, Aspect_Specifications (Specification (N)));
3466 end if;
3467 end;
3468 end if;
3469 end Analyze_Generic_Package_Declaration;
3471 --------------------------------------------
3472 -- Analyze_Generic_Subprogram_Declaration --
3473 --------------------------------------------
3475 procedure Analyze_Generic_Subprogram_Declaration (N : Node_Id) is
3476 Spec : Node_Id;
3477 Id : Entity_Id;
3478 Formals : List_Id;
3479 New_N : Node_Id;
3480 Result_Type : Entity_Id;
3481 Save_Parent : Node_Id;
3482 Typ : Entity_Id;
3484 begin
3485 Check_SPARK_05_Restriction ("generic is not allowed", N);
3487 -- Create copy of generic unit, and save for instantiation. If the unit
3488 -- is a child unit, do not copy the specifications for the parent, which
3489 -- are not part of the generic tree.
3491 Save_Parent := Parent_Spec (N);
3492 Set_Parent_Spec (N, Empty);
3494 New_N := Copy_Generic_Node (N, Empty, Instantiating => False);
3495 Set_Parent_Spec (New_N, Save_Parent);
3496 Rewrite (N, New_N);
3498 -- Once the contents of the generic copy and the template are swapped,
3499 -- do the same for their respective aspect specifications.
3501 Exchange_Aspects (N, New_N);
3503 Spec := Specification (N);
3504 Id := Defining_Entity (Spec);
3505 Generate_Definition (Id);
3506 Set_Contract (Id, Make_Contract (Sloc (Id)));
3508 if Nkind (Id) = N_Defining_Operator_Symbol then
3509 Error_Msg_N
3510 ("operator symbol not allowed for generic subprogram", Id);
3511 end if;
3513 Start_Generic;
3515 Enter_Name (Id);
3516 Set_Scope_Depth_Value (Id, Scope_Depth (Current_Scope) + 1);
3518 -- Analyze the aspects of the generic copy to ensure that all generated
3519 -- pragmas (if any) perform their semantic effects.
3521 if Has_Aspects (N) then
3522 Analyze_Aspect_Specifications (N, Id);
3523 end if;
3525 Push_Scope (Id);
3526 Enter_Generic_Scope (Id);
3527 Set_Inner_Instances (Id, New_Elmt_List);
3528 Set_Is_Pure (Id, Is_Pure (Current_Scope));
3530 Analyze_Generic_Formal_Part (N);
3532 Formals := Parameter_Specifications (Spec);
3534 if Present (Formals) then
3535 Process_Formals (Formals, Spec);
3536 end if;
3538 if Nkind (Spec) = N_Function_Specification then
3539 Set_Ekind (Id, E_Generic_Function);
3541 if Nkind (Result_Definition (Spec)) = N_Access_Definition then
3542 Result_Type := Access_Definition (Spec, Result_Definition (Spec));
3543 Set_Etype (Id, Result_Type);
3545 -- Check restriction imposed by AI05-073: a generic function
3546 -- cannot return an abstract type or an access to such.
3548 -- This is a binding interpretation should it apply to earlier
3549 -- versions of Ada as well as Ada 2012???
3551 if Is_Abstract_Type (Designated_Type (Result_Type))
3552 and then Ada_Version >= Ada_2012
3553 then
3554 Error_Msg_N ("generic function cannot have an access result"
3555 & " that designates an abstract type", Spec);
3556 end if;
3558 else
3559 Find_Type (Result_Definition (Spec));
3560 Typ := Entity (Result_Definition (Spec));
3562 if Is_Abstract_Type (Typ)
3563 and then Ada_Version >= Ada_2012
3564 then
3565 Error_Msg_N
3566 ("generic function cannot have abstract result type", Spec);
3567 end if;
3569 -- If a null exclusion is imposed on the result type, then create
3570 -- a null-excluding itype (an access subtype) and use it as the
3571 -- function's Etype.
3573 if Is_Access_Type (Typ)
3574 and then Null_Exclusion_Present (Spec)
3575 then
3576 Set_Etype (Id,
3577 Create_Null_Excluding_Itype
3578 (T => Typ,
3579 Related_Nod => Spec,
3580 Scope_Id => Defining_Unit_Name (Spec)));
3581 else
3582 Set_Etype (Id, Typ);
3583 end if;
3584 end if;
3586 else
3587 Set_Ekind (Id, E_Generic_Procedure);
3588 Set_Etype (Id, Standard_Void_Type);
3589 end if;
3591 -- A generic subprogram declared within a Ghost scope is rendered Ghost
3592 -- (SPARK RM 6.9(2)).
3594 if Within_Ghost_Scope then
3595 Set_Is_Ghost_Entity (Id);
3596 end if;
3598 -- For a library unit, we have reconstructed the entity for the unit,
3599 -- and must reset it in the library tables. We also make sure that
3600 -- Body_Required is set properly in the original compilation unit node.
3602 if Nkind (Parent (N)) = N_Compilation_Unit then
3603 Set_Cunit_Entity (Current_Sem_Unit, Id);
3604 Set_Body_Required (Parent (N), Unit_Requires_Body (Id));
3605 end if;
3607 Set_Categorization_From_Pragmas (N);
3608 Validate_Categorization_Dependency (N, Id);
3610 Save_Global_References (Original_Node (N));
3612 -- For ASIS purposes, convert any postcondition, precondition pragmas
3613 -- into aspects, if N is not a compilation unit by itself, in order to
3614 -- enable the analysis of expressions inside the corresponding PPC
3615 -- pragmas.
3617 if ASIS_Mode and then Is_List_Member (N) then
3618 Make_Aspect_For_PPC_In_Gen_Sub_Decl (N);
3619 end if;
3621 End_Generic;
3622 End_Scope;
3623 Exit_Generic_Scope (Id);
3624 Generate_Reference_To_Formals (Id);
3626 List_Inherited_Pre_Post_Aspects (Id);
3627 end Analyze_Generic_Subprogram_Declaration;
3629 -----------------------------------
3630 -- Analyze_Package_Instantiation --
3631 -----------------------------------
3633 procedure Analyze_Package_Instantiation (N : Node_Id) is
3634 Loc : constant Source_Ptr := Sloc (N);
3635 Gen_Id : constant Node_Id := Name (N);
3637 Act_Decl : Node_Id;
3638 Act_Decl_Name : Node_Id;
3639 Act_Decl_Id : Entity_Id;
3640 Act_Spec : Node_Id;
3641 Act_Tree : Node_Id;
3643 Gen_Decl : Node_Id;
3644 Gen_Spec : Node_Id;
3645 Gen_Unit : Entity_Id;
3647 Is_Actual_Pack : constant Boolean :=
3648 Is_Internal (Defining_Entity (N));
3650 Env_Installed : Boolean := False;
3651 Parent_Installed : Boolean := False;
3652 Renaming_List : List_Id;
3653 Unit_Renaming : Node_Id;
3654 Needs_Body : Boolean;
3655 Inline_Now : Boolean := False;
3657 Save_IPSM : constant Boolean := Ignore_Pragma_SPARK_Mode;
3658 -- Save flag Ignore_Pragma_SPARK_Mode for restore on exit
3660 Save_SM : constant SPARK_Mode_Type := SPARK_Mode;
3661 Save_SMP : constant Node_Id := SPARK_Mode_Pragma;
3662 -- Save the SPARK_Mode-related data for restore on exit
3664 Save_Style_Check : constant Boolean := Style_Check;
3665 -- Save style check mode for restore on exit
3667 procedure Delay_Descriptors (E : Entity_Id);
3668 -- Delay generation of subprogram descriptors for given entity
3670 function Might_Inline_Subp return Boolean;
3671 -- If inlining is active and the generic contains inlined subprograms,
3672 -- we instantiate the body. This may cause superfluous instantiations,
3673 -- but it is simpler than detecting the need for the body at the point
3674 -- of inlining, when the context of the instance is not available.
3676 -----------------------
3677 -- Delay_Descriptors --
3678 -----------------------
3680 procedure Delay_Descriptors (E : Entity_Id) is
3681 begin
3682 if not Delay_Subprogram_Descriptors (E) then
3683 Set_Delay_Subprogram_Descriptors (E);
3684 Pending_Descriptor.Append (E);
3685 end if;
3686 end Delay_Descriptors;
3688 -----------------------
3689 -- Might_Inline_Subp --
3690 -----------------------
3692 function Might_Inline_Subp return Boolean is
3693 E : Entity_Id;
3695 begin
3696 if not Inline_Processing_Required then
3697 return False;
3699 else
3700 E := First_Entity (Gen_Unit);
3701 while Present (E) loop
3702 if Is_Subprogram (E) and then Is_Inlined (E) then
3703 return True;
3704 end if;
3706 Next_Entity (E);
3707 end loop;
3708 end if;
3710 return False;
3711 end Might_Inline_Subp;
3713 -- Local declarations
3715 Vis_Prims_List : Elist_Id := No_Elist;
3716 -- List of primitives made temporarily visible in the instantiation
3717 -- to match the visibility of the formal type
3719 -- Start of processing for Analyze_Package_Instantiation
3721 begin
3722 Check_SPARK_05_Restriction ("generic is not allowed", N);
3724 -- Very first thing: check for Text_IO sp[ecial unit in case we are
3725 -- instantiating one of the children of [[Wide_]Wide_]Text_IO.
3727 Check_Text_IO_Special_Unit (Name (N));
3729 -- Make node global for error reporting
3731 Instantiation_Node := N;
3733 -- Turn off style checking in instances. If the check is enabled on the
3734 -- generic unit, a warning in an instance would just be noise. If not
3735 -- enabled on the generic, then a warning in an instance is just wrong.
3737 Style_Check := False;
3739 -- Case of instantiation of a generic package
3741 if Nkind (N) = N_Package_Instantiation then
3742 Act_Decl_Id := New_Copy (Defining_Entity (N));
3743 Set_Comes_From_Source (Act_Decl_Id, True);
3745 if Nkind (Defining_Unit_Name (N)) = N_Defining_Program_Unit_Name then
3746 Act_Decl_Name :=
3747 Make_Defining_Program_Unit_Name (Loc,
3748 Name => New_Copy_Tree (Name (Defining_Unit_Name (N))),
3749 Defining_Identifier => Act_Decl_Id);
3750 else
3751 Act_Decl_Name := Act_Decl_Id;
3752 end if;
3754 -- Case of instantiation of a formal package
3756 else
3757 Act_Decl_Id := Defining_Identifier (N);
3758 Act_Decl_Name := Act_Decl_Id;
3759 end if;
3761 Generate_Definition (Act_Decl_Id);
3762 Preanalyze_Actuals (N);
3764 Init_Env;
3765 Env_Installed := True;
3767 -- Reset renaming map for formal types. The mapping is established
3768 -- when analyzing the generic associations, but some mappings are
3769 -- inherited from formal packages of parent units, and these are
3770 -- constructed when the parents are installed.
3772 Generic_Renamings.Set_Last (0);
3773 Generic_Renamings_HTable.Reset;
3775 Check_Generic_Child_Unit (Gen_Id, Parent_Installed);
3776 Gen_Unit := Entity (Gen_Id);
3778 -- Verify that it is the name of a generic package
3780 -- A visibility glitch: if the instance is a child unit and the generic
3781 -- is the generic unit of a parent instance (i.e. both the parent and
3782 -- the child units are instances of the same package) the name now
3783 -- denotes the renaming within the parent, not the intended generic
3784 -- unit. See if there is a homonym that is the desired generic. The
3785 -- renaming declaration must be visible inside the instance of the
3786 -- child, but not when analyzing the name in the instantiation itself.
3788 if Ekind (Gen_Unit) = E_Package
3789 and then Present (Renamed_Entity (Gen_Unit))
3790 and then In_Open_Scopes (Renamed_Entity (Gen_Unit))
3791 and then Is_Generic_Instance (Renamed_Entity (Gen_Unit))
3792 and then Present (Homonym (Gen_Unit))
3793 then
3794 Gen_Unit := Homonym (Gen_Unit);
3795 end if;
3797 if Etype (Gen_Unit) = Any_Type then
3798 Restore_Env;
3799 goto Leave;
3801 elsif Ekind (Gen_Unit) /= E_Generic_Package then
3803 -- Ada 2005 (AI-50217): Cannot use instance in limited with_clause
3805 if From_Limited_With (Gen_Unit) then
3806 Error_Msg_N
3807 ("cannot instantiate a limited withed package", Gen_Id);
3808 else
3809 Error_Msg_NE
3810 ("& is not the name of a generic package", Gen_Id, Gen_Unit);
3811 end if;
3813 Restore_Env;
3814 goto Leave;
3815 end if;
3817 if In_Extended_Main_Source_Unit (N) then
3818 Set_Is_Instantiated (Gen_Unit);
3819 Generate_Reference (Gen_Unit, N);
3821 if Present (Renamed_Object (Gen_Unit)) then
3822 Set_Is_Instantiated (Renamed_Object (Gen_Unit));
3823 Generate_Reference (Renamed_Object (Gen_Unit), N);
3824 end if;
3825 end if;
3827 if Nkind (Gen_Id) = N_Identifier
3828 and then Chars (Gen_Unit) = Chars (Defining_Entity (N))
3829 then
3830 Error_Msg_NE
3831 ("& is hidden within declaration of instance", Gen_Id, Gen_Unit);
3833 elsif Nkind (Gen_Id) = N_Expanded_Name
3834 and then Is_Child_Unit (Gen_Unit)
3835 and then Nkind (Prefix (Gen_Id)) = N_Identifier
3836 and then Chars (Act_Decl_Id) = Chars (Prefix (Gen_Id))
3837 then
3838 Error_Msg_N
3839 ("& is hidden within declaration of instance ", Prefix (Gen_Id));
3840 end if;
3842 Set_Entity (Gen_Id, Gen_Unit);
3844 -- If generic is a renaming, get original generic unit
3846 if Present (Renamed_Object (Gen_Unit))
3847 and then Ekind (Renamed_Object (Gen_Unit)) = E_Generic_Package
3848 then
3849 Gen_Unit := Renamed_Object (Gen_Unit);
3850 end if;
3852 -- Verify that there are no circular instantiations
3854 if In_Open_Scopes (Gen_Unit) then
3855 Error_Msg_NE ("instantiation of & within itself", N, Gen_Unit);
3856 Restore_Env;
3857 goto Leave;
3859 elsif Contains_Instance_Of (Gen_Unit, Current_Scope, Gen_Id) then
3860 Error_Msg_Node_2 := Current_Scope;
3861 Error_Msg_NE
3862 ("circular Instantiation: & instantiated in &!", N, Gen_Unit);
3863 Circularity_Detected := True;
3864 Restore_Env;
3865 goto Leave;
3867 else
3868 -- If the context of the instance is subject to SPARK_Mode "off",
3869 -- set the global flag which signals Analyze_Pragma to ignore all
3870 -- SPARK_Mode pragmas within the instance.
3872 if SPARK_Mode = Off then
3873 Ignore_Pragma_SPARK_Mode := True;
3874 end if;
3876 Gen_Decl := Unit_Declaration_Node (Gen_Unit);
3877 Gen_Spec := Specification (Gen_Decl);
3879 -- Initialize renamings map, for error checking, and the list that
3880 -- holds private entities whose views have changed between generic
3881 -- definition and instantiation. If this is the instance created to
3882 -- validate an actual package, the instantiation environment is that
3883 -- of the enclosing instance.
3885 Create_Instantiation_Source (N, Gen_Unit, False, S_Adjustment);
3887 -- Copy original generic tree, to produce text for instantiation
3889 Act_Tree :=
3890 Copy_Generic_Node
3891 (Original_Node (Gen_Decl), Empty, Instantiating => True);
3893 Act_Spec := Specification (Act_Tree);
3895 -- If this is the instance created to validate an actual package,
3896 -- only the formals matter, do not examine the package spec itself.
3898 if Is_Actual_Pack then
3899 Set_Visible_Declarations (Act_Spec, New_List);
3900 Set_Private_Declarations (Act_Spec, New_List);
3901 end if;
3903 Renaming_List :=
3904 Analyze_Associations
3905 (I_Node => N,
3906 Formals => Generic_Formal_Declarations (Act_Tree),
3907 F_Copy => Generic_Formal_Declarations (Gen_Decl));
3909 Vis_Prims_List := Check_Hidden_Primitives (Renaming_List);
3911 Set_Instance_Env (Gen_Unit, Act_Decl_Id);
3912 Set_Defining_Unit_Name (Act_Spec, Act_Decl_Name);
3913 Set_Is_Generic_Instance (Act_Decl_Id);
3914 Set_Generic_Parent (Act_Spec, Gen_Unit);
3916 -- References to the generic in its own declaration or its body are
3917 -- references to the instance. Add a renaming declaration for the
3918 -- generic unit itself. This declaration, as well as the renaming
3919 -- declarations for the generic formals, must remain private to the
3920 -- unit: the formals, because this is the language semantics, and
3921 -- the unit because its use is an artifact of the implementation.
3923 Unit_Renaming :=
3924 Make_Package_Renaming_Declaration (Loc,
3925 Defining_Unit_Name =>
3926 Make_Defining_Identifier (Loc, Chars (Gen_Unit)),
3927 Name => New_Occurrence_Of (Act_Decl_Id, Loc));
3929 Append (Unit_Renaming, Renaming_List);
3931 -- The renaming declarations are the first local declarations of the
3932 -- new unit.
3934 if Is_Non_Empty_List (Visible_Declarations (Act_Spec)) then
3935 Insert_List_Before
3936 (First (Visible_Declarations (Act_Spec)), Renaming_List);
3937 else
3938 Set_Visible_Declarations (Act_Spec, Renaming_List);
3939 end if;
3941 Act_Decl := Make_Package_Declaration (Loc, Specification => Act_Spec);
3943 -- Propagate the aspect specifications from the package declaration
3944 -- template to the instantiated version of the package declaration.
3946 if Has_Aspects (Act_Tree) then
3947 Set_Aspect_Specifications (Act_Decl,
3948 New_Copy_List_Tree (Aspect_Specifications (Act_Tree)));
3949 end if;
3951 -- The generic may have a generated Default_Storage_Pool aspect,
3952 -- set at the point of generic declaration. If the instance has
3953 -- that aspect, it overrides the one inherited from the generic.
3955 if Has_Aspects (Gen_Spec) then
3956 if No (Aspect_Specifications (N)) then
3957 Set_Aspect_Specifications (N,
3958 (New_Copy_List_Tree
3959 (Aspect_Specifications (Gen_Spec))));
3961 else
3962 declare
3963 ASN1, ASN2 : Node_Id;
3965 begin
3966 ASN1 := First (Aspect_Specifications (N));
3967 while Present (ASN1) loop
3968 if Chars (Identifier (ASN1))
3969 = Name_Default_Storage_Pool
3970 then
3971 -- If generic carries a default storage pool, remove
3972 -- it in favor of the instance one.
3974 ASN2 := First (Aspect_Specifications (Gen_Spec));
3975 while Present (ASN2) loop
3976 if Chars (Identifier (ASN2)) =
3977 Name_Default_Storage_Pool
3978 then
3979 Remove (ASN2);
3980 exit;
3981 end if;
3983 Next (ASN2);
3984 end loop;
3985 end if;
3987 Next (ASN1);
3988 end loop;
3990 Prepend_List_To (Aspect_Specifications (N),
3991 (New_Copy_List_Tree
3992 (Aspect_Specifications (Gen_Spec))));
3993 end;
3994 end if;
3995 end if;
3997 -- Save the instantiation node, for subsequent instantiation of the
3998 -- body, if there is one and we are generating code for the current
3999 -- unit. Mark unit as having a body (avoids premature error message).
4001 -- We instantiate the body if we are generating code, if we are
4002 -- generating cross-reference information, or if we are building
4003 -- trees for ASIS use or GNATprove use.
4005 declare
4006 Enclosing_Body_Present : Boolean := False;
4007 -- If the generic unit is not a compilation unit, then a body may
4008 -- be present in its parent even if none is required. We create a
4009 -- tentative pending instantiation for the body, which will be
4010 -- discarded if none is actually present.
4012 Scop : Entity_Id;
4014 begin
4015 if Scope (Gen_Unit) /= Standard_Standard
4016 and then not Is_Child_Unit (Gen_Unit)
4017 then
4018 Scop := Scope (Gen_Unit);
4020 while Present (Scop)
4021 and then Scop /= Standard_Standard
4022 loop
4023 if Unit_Requires_Body (Scop) then
4024 Enclosing_Body_Present := True;
4025 exit;
4027 elsif In_Open_Scopes (Scop)
4028 and then In_Package_Body (Scop)
4029 then
4030 Enclosing_Body_Present := True;
4031 exit;
4032 end if;
4034 exit when Is_Compilation_Unit (Scop);
4035 Scop := Scope (Scop);
4036 end loop;
4037 end if;
4039 -- If front-end inlining is enabled, and this is a unit for which
4040 -- code will be generated, we instantiate the body at once.
4042 -- This is done if the instance is not the main unit, and if the
4043 -- generic is not a child unit of another generic, to avoid scope
4044 -- problems and the reinstallation of parent instances.
4046 if Expander_Active
4047 and then (not Is_Child_Unit (Gen_Unit)
4048 or else not Is_Generic_Unit (Scope (Gen_Unit)))
4049 and then Might_Inline_Subp
4050 and then not Is_Actual_Pack
4051 then
4052 if not Back_End_Inlining
4053 and then Front_End_Inlining
4054 and then (Is_In_Main_Unit (N)
4055 or else In_Main_Context (Current_Scope))
4056 and then Nkind (Parent (N)) /= N_Compilation_Unit
4057 then
4058 Inline_Now := True;
4060 -- In configurable_run_time mode we force the inlining of
4061 -- predefined subprograms marked Inline_Always, to minimize
4062 -- the use of the run-time library.
4064 elsif Is_Predefined_File_Name
4065 (Unit_File_Name (Get_Source_Unit (Gen_Decl)))
4066 and then Configurable_Run_Time_Mode
4067 and then Nkind (Parent (N)) /= N_Compilation_Unit
4068 then
4069 Inline_Now := True;
4070 end if;
4072 -- If the current scope is itself an instance within a child
4073 -- unit, there will be duplications in the scope stack, and the
4074 -- unstacking mechanism in Inline_Instance_Body will fail.
4075 -- This loses some rare cases of optimization, and might be
4076 -- improved some day, if we can find a proper abstraction for
4077 -- "the complete compilation context" that can be saved and
4078 -- restored. ???
4080 if Is_Generic_Instance (Current_Scope) then
4081 declare
4082 Curr_Unit : constant Entity_Id :=
4083 Cunit_Entity (Current_Sem_Unit);
4084 begin
4085 if Curr_Unit /= Current_Scope
4086 and then Is_Child_Unit (Curr_Unit)
4087 then
4088 Inline_Now := False;
4089 end if;
4090 end;
4091 end if;
4092 end if;
4094 Needs_Body :=
4095 (Unit_Requires_Body (Gen_Unit)
4096 or else Enclosing_Body_Present
4097 or else Present (Corresponding_Body (Gen_Decl)))
4098 and then (Is_In_Main_Unit (N) or else Might_Inline_Subp)
4099 and then not Is_Actual_Pack
4100 and then not Inline_Now
4101 and then (Operating_Mode = Generate_Code
4103 -- Need comment for this check ???
4105 or else (Operating_Mode = Check_Semantics
4106 and then (ASIS_Mode or GNATprove_Mode)));
4108 -- If front_end_inlining is enabled, do not instantiate body if
4109 -- within a generic context.
4111 if (Front_End_Inlining and then not Expander_Active)
4112 or else Is_Generic_Unit (Cunit_Entity (Main_Unit))
4113 then
4114 Needs_Body := False;
4115 end if;
4117 -- If the current context is generic, and the package being
4118 -- instantiated is declared within a formal package, there is no
4119 -- body to instantiate until the enclosing generic is instantiated
4120 -- and there is an actual for the formal package. If the formal
4121 -- package has parameters, we build a regular package instance for
4122 -- it, that precedes the original formal package declaration.
4124 if In_Open_Scopes (Scope (Scope (Gen_Unit))) then
4125 declare
4126 Decl : constant Node_Id :=
4127 Original_Node
4128 (Unit_Declaration_Node (Scope (Gen_Unit)));
4129 begin
4130 if Nkind (Decl) = N_Formal_Package_Declaration
4131 or else (Nkind (Decl) = N_Package_Declaration
4132 and then Is_List_Member (Decl)
4133 and then Present (Next (Decl))
4134 and then
4135 Nkind (Next (Decl)) =
4136 N_Formal_Package_Declaration)
4137 then
4138 Needs_Body := False;
4139 end if;
4140 end;
4141 end if;
4142 end;
4144 -- For RCI unit calling stubs, we omit the instance body if the
4145 -- instance is the RCI library unit itself.
4147 -- However there is a special case for nested instances: in this case
4148 -- we do generate the instance body, as it might be required, e.g.
4149 -- because it provides stream attributes for some type used in the
4150 -- profile of a remote subprogram. This is consistent with 12.3(12),
4151 -- which indicates that the instance body occurs at the place of the
4152 -- instantiation, and thus is part of the RCI declaration, which is
4153 -- present on all client partitions (this is E.2.3(18)).
4155 -- Note that AI12-0002 may make it illegal at some point to have
4156 -- stream attributes defined in an RCI unit, in which case this
4157 -- special case will become unnecessary. In the meantime, there
4158 -- is known application code in production that depends on this
4159 -- being possible, so we definitely cannot eliminate the body in
4160 -- the case of nested instances for the time being.
4162 -- When we generate a nested instance body, calling stubs for any
4163 -- relevant subprogram will be be inserted immediately after the
4164 -- subprogram declarations, and will take precedence over the
4165 -- subsequent (original) body. (The stub and original body will be
4166 -- complete homographs, but this is permitted in an instance).
4167 -- (Could we do better and remove the original body???)
4169 if Distribution_Stub_Mode = Generate_Caller_Stub_Body
4170 and then Comes_From_Source (N)
4171 and then Nkind (Parent (N)) = N_Compilation_Unit
4172 then
4173 Needs_Body := False;
4174 end if;
4176 if Needs_Body then
4178 -- Here is a defence against a ludicrous number of instantiations
4179 -- caused by a circular set of instantiation attempts.
4181 if Pending_Instantiations.Last > Maximum_Instantiations then
4182 Error_Msg_Uint_1 := UI_From_Int (Maximum_Instantiations);
4183 Error_Msg_N ("too many instantiations, exceeds max of^", N);
4184 Error_Msg_N ("\limit can be changed using -gnateinn switch", N);
4185 raise Unrecoverable_Error;
4186 end if;
4188 -- Indicate that the enclosing scopes contain an instantiation,
4189 -- and that cleanup actions should be delayed until after the
4190 -- instance body is expanded.
4192 Check_Forward_Instantiation (Gen_Decl);
4193 if Nkind (N) = N_Package_Instantiation then
4194 declare
4195 Enclosing_Master : Entity_Id;
4197 begin
4198 -- Loop to search enclosing masters
4200 Enclosing_Master := Current_Scope;
4201 Scope_Loop : while Enclosing_Master /= Standard_Standard loop
4202 if Ekind (Enclosing_Master) = E_Package then
4203 if Is_Compilation_Unit (Enclosing_Master) then
4204 if In_Package_Body (Enclosing_Master) then
4205 Delay_Descriptors
4206 (Body_Entity (Enclosing_Master));
4207 else
4208 Delay_Descriptors
4209 (Enclosing_Master);
4210 end if;
4212 exit Scope_Loop;
4214 else
4215 Enclosing_Master := Scope (Enclosing_Master);
4216 end if;
4218 elsif Is_Generic_Unit (Enclosing_Master)
4219 or else Ekind (Enclosing_Master) = E_Void
4220 then
4221 -- Cleanup actions will eventually be performed on the
4222 -- enclosing subprogram or package instance, if any.
4223 -- Enclosing scope is void in the formal part of a
4224 -- generic subprogram.
4226 exit Scope_Loop;
4228 else
4229 if Ekind (Enclosing_Master) = E_Entry
4230 and then
4231 Ekind (Scope (Enclosing_Master)) = E_Protected_Type
4232 then
4233 if not Expander_Active then
4234 exit Scope_Loop;
4235 else
4236 Enclosing_Master :=
4237 Protected_Body_Subprogram (Enclosing_Master);
4238 end if;
4239 end if;
4241 Set_Delay_Cleanups (Enclosing_Master);
4243 while Ekind (Enclosing_Master) = E_Block loop
4244 Enclosing_Master := Scope (Enclosing_Master);
4245 end loop;
4247 if Is_Subprogram (Enclosing_Master) then
4248 Delay_Descriptors (Enclosing_Master);
4250 elsif Is_Task_Type (Enclosing_Master) then
4251 declare
4252 TBP : constant Node_Id :=
4253 Get_Task_Body_Procedure
4254 (Enclosing_Master);
4255 begin
4256 if Present (TBP) then
4257 Delay_Descriptors (TBP);
4258 Set_Delay_Cleanups (TBP);
4259 end if;
4260 end;
4261 end if;
4263 exit Scope_Loop;
4264 end if;
4265 end loop Scope_Loop;
4266 end;
4268 -- Make entry in table
4270 Pending_Instantiations.Append
4271 ((Inst_Node => N,
4272 Act_Decl => Act_Decl,
4273 Expander_Status => Expander_Active,
4274 Current_Sem_Unit => Current_Sem_Unit,
4275 Scope_Suppress => Scope_Suppress,
4276 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
4277 Version => Ada_Version,
4278 Version_Pragma => Ada_Version_Pragma,
4279 Warnings => Save_Warnings,
4280 SPARK_Mode => SPARK_Mode,
4281 SPARK_Mode_Pragma => SPARK_Mode_Pragma));
4282 end if;
4283 end if;
4285 Set_Categorization_From_Pragmas (Act_Decl);
4287 if Parent_Installed then
4288 Hide_Current_Scope;
4289 end if;
4291 Set_Instance_Spec (N, Act_Decl);
4293 -- If not a compilation unit, insert the package declaration before
4294 -- the original instantiation node.
4296 if Nkind (Parent (N)) /= N_Compilation_Unit then
4297 Mark_Rewrite_Insertion (Act_Decl);
4298 Insert_Before (N, Act_Decl);
4300 if Has_Aspects (N) then
4301 Analyze_Aspect_Specifications (N, Act_Decl_Id);
4303 -- The pragma created for a Default_Storage_Pool aspect must
4304 -- appear ahead of the declarations in the instance spec.
4305 -- Analysis has placed it after the instance node, so remove
4306 -- it and reinsert it properly now.
4308 declare
4309 ASN : constant Node_Id := First (Aspect_Specifications (N));
4310 A_Name : constant Name_Id := Chars (Identifier (ASN));
4311 Decl : Node_Id;
4313 begin
4314 if A_Name = Name_Default_Storage_Pool then
4315 if No (Visible_Declarations (Act_Spec)) then
4316 Set_Visible_Declarations (Act_Spec, New_List);
4317 end if;
4319 Decl := Next (N);
4320 while Present (Decl) loop
4321 if Nkind (Decl) = N_Pragma then
4322 Remove (Decl);
4323 Prepend (Decl, Visible_Declarations (Act_Spec));
4324 exit;
4325 end if;
4327 Next (Decl);
4328 end loop;
4329 end if;
4330 end;
4331 end if;
4333 Analyze (Act_Decl);
4335 -- For an instantiation that is a compilation unit, place
4336 -- declaration on current node so context is complete for analysis
4337 -- (including nested instantiations). If this is the main unit,
4338 -- the declaration eventually replaces the instantiation node.
4339 -- If the instance body is created later, it replaces the
4340 -- instance node, and the declaration is attached to it
4341 -- (see Build_Instance_Compilation_Unit_Nodes).
4343 else
4344 if Cunit_Entity (Current_Sem_Unit) = Defining_Entity (N) then
4346 -- The entity for the current unit is the newly created one,
4347 -- and all semantic information is attached to it.
4349 Set_Cunit_Entity (Current_Sem_Unit, Act_Decl_Id);
4351 -- If this is the main unit, replace the main entity as well
4353 if Current_Sem_Unit = Main_Unit then
4354 Main_Unit_Entity := Act_Decl_Id;
4355 end if;
4356 end if;
4358 Set_Unit (Parent (N), Act_Decl);
4359 Set_Parent_Spec (Act_Decl, Parent_Spec (N));
4360 Set_Package_Instantiation (Act_Decl_Id, N);
4362 -- Process aspect specifications of the instance node, if any, to
4363 -- take into account categorization pragmas before analyzing the
4364 -- instance.
4366 if Has_Aspects (N) then
4367 Analyze_Aspect_Specifications (N, Act_Decl_Id);
4368 end if;
4370 Analyze (Act_Decl);
4371 Set_Unit (Parent (N), N);
4372 Set_Body_Required (Parent (N), False);
4374 -- We never need elaboration checks on instantiations, since by
4375 -- definition, the body instantiation is elaborated at the same
4376 -- time as the spec instantiation.
4378 Set_Suppress_Elaboration_Warnings (Act_Decl_Id);
4379 Set_Kill_Elaboration_Checks (Act_Decl_Id);
4380 end if;
4382 Check_Elab_Instantiation (N);
4384 if ABE_Is_Certain (N) and then Needs_Body then
4385 Pending_Instantiations.Decrement_Last;
4386 end if;
4388 Check_Hidden_Child_Unit (N, Gen_Unit, Act_Decl_Id);
4390 Set_First_Private_Entity (Defining_Unit_Name (Unit_Renaming),
4391 First_Private_Entity (Act_Decl_Id));
4393 -- If the instantiation will receive a body, the unit will be
4394 -- transformed into a package body, and receive its own elaboration
4395 -- entity. Otherwise, the nature of the unit is now a package
4396 -- declaration.
4398 if Nkind (Parent (N)) = N_Compilation_Unit
4399 and then not Needs_Body
4400 then
4401 Rewrite (N, Act_Decl);
4402 end if;
4404 if Present (Corresponding_Body (Gen_Decl))
4405 or else Unit_Requires_Body (Gen_Unit)
4406 then
4407 Set_Has_Completion (Act_Decl_Id);
4408 end if;
4410 Check_Formal_Packages (Act_Decl_Id);
4412 Restore_Hidden_Primitives (Vis_Prims_List);
4413 Restore_Private_Views (Act_Decl_Id);
4415 Inherit_Context (Gen_Decl, N);
4417 if Parent_Installed then
4418 Remove_Parent;
4419 end if;
4421 Restore_Env;
4422 Env_Installed := False;
4423 end if;
4425 Validate_Categorization_Dependency (N, Act_Decl_Id);
4427 -- There used to be a check here to prevent instantiations in local
4428 -- contexts if the No_Local_Allocators restriction was active. This
4429 -- check was removed by a binding interpretation in AI-95-00130/07,
4430 -- but we retain the code for documentation purposes.
4432 -- if Ekind (Act_Decl_Id) /= E_Void
4433 -- and then not Is_Library_Level_Entity (Act_Decl_Id)
4434 -- then
4435 -- Check_Restriction (No_Local_Allocators, N);
4436 -- end if;
4438 if Inline_Now then
4439 Inline_Instance_Body (N, Gen_Unit, Act_Decl);
4440 end if;
4442 -- The following is a tree patch for ASIS: ASIS needs separate nodes to
4443 -- be used as defining identifiers for a formal package and for the
4444 -- corresponding expanded package.
4446 if Nkind (N) = N_Formal_Package_Declaration then
4447 Act_Decl_Id := New_Copy (Defining_Entity (N));
4448 Set_Comes_From_Source (Act_Decl_Id, True);
4449 Set_Is_Generic_Instance (Act_Decl_Id, False);
4450 Set_Defining_Identifier (N, Act_Decl_Id);
4451 end if;
4453 Ignore_Pragma_SPARK_Mode := Save_IPSM;
4454 SPARK_Mode := Save_SM;
4455 SPARK_Mode_Pragma := Save_SMP;
4456 Style_Check := Save_Style_Check;
4458 -- Check that if N is an instantiation of System.Dim_Float_IO or
4459 -- System.Dim_Integer_IO, the formal type has a dimension system.
4461 if Nkind (N) = N_Package_Instantiation
4462 and then Is_Dim_IO_Package_Instantiation (N)
4463 then
4464 declare
4465 Assoc : constant Node_Id := First (Generic_Associations (N));
4466 begin
4467 if not Has_Dimension_System
4468 (Etype (Explicit_Generic_Actual_Parameter (Assoc)))
4469 then
4470 Error_Msg_N ("type with a dimension system expected", Assoc);
4471 end if;
4472 end;
4473 end if;
4475 <<Leave>>
4476 if Has_Aspects (N) and then Nkind (Parent (N)) /= N_Compilation_Unit then
4477 Analyze_Aspect_Specifications (N, Act_Decl_Id);
4478 end if;
4480 exception
4481 when Instantiation_Error =>
4482 if Parent_Installed then
4483 Remove_Parent;
4484 end if;
4486 if Env_Installed then
4487 Restore_Env;
4488 end if;
4490 Ignore_Pragma_SPARK_Mode := Save_IPSM;
4491 SPARK_Mode := Save_SM;
4492 SPARK_Mode_Pragma := Save_SMP;
4493 Style_Check := Save_Style_Check;
4494 end Analyze_Package_Instantiation;
4496 --------------------------
4497 -- Inline_Instance_Body --
4498 --------------------------
4500 procedure Inline_Instance_Body
4501 (N : Node_Id;
4502 Gen_Unit : Entity_Id;
4503 Act_Decl : Node_Id)
4505 Curr_Comp : constant Node_Id := Cunit (Current_Sem_Unit);
4506 Curr_Unit : constant Entity_Id := Cunit_Entity (Current_Sem_Unit);
4507 Gen_Comp : constant Entity_Id :=
4508 Cunit_Entity (Get_Source_Unit (Gen_Unit));
4510 Save_SM : constant SPARK_Mode_Type := SPARK_Mode;
4511 Save_SMP : constant Node_Id := SPARK_Mode_Pragma;
4512 -- Save all SPARK_Mode-related attributes as removing enclosing scopes
4513 -- to provide a clean environment for analysis of the inlined body will
4514 -- eliminate any previously set SPARK_Mode.
4516 Scope_Stack_Depth : constant Int :=
4517 Scope_Stack.Last - Scope_Stack.First + 1;
4519 Use_Clauses : array (1 .. Scope_Stack_Depth) of Node_Id;
4520 Instances : array (1 .. Scope_Stack_Depth) of Entity_Id;
4521 Inner_Scopes : array (1 .. Scope_Stack_Depth) of Entity_Id;
4522 Curr_Scope : Entity_Id := Empty;
4523 List : Elist_Id;
4524 Num_Inner : Int := 0;
4525 Num_Scopes : Int := 0;
4526 N_Instances : Int := 0;
4527 Removed : Boolean := False;
4528 S : Entity_Id;
4529 Vis : Boolean;
4531 begin
4532 -- Case of generic unit defined in another unit. We must remove the
4533 -- complete context of the current unit to install that of the generic.
4535 if Gen_Comp /= Cunit_Entity (Current_Sem_Unit) then
4537 -- Add some comments for the following two loops ???
4539 S := Current_Scope;
4540 while Present (S) and then S /= Standard_Standard loop
4541 loop
4542 Num_Scopes := Num_Scopes + 1;
4544 Use_Clauses (Num_Scopes) :=
4545 (Scope_Stack.Table
4546 (Scope_Stack.Last - Num_Scopes + 1).
4547 First_Use_Clause);
4548 End_Use_Clauses (Use_Clauses (Num_Scopes));
4550 exit when Scope_Stack.Last - Num_Scopes + 1 = Scope_Stack.First
4551 or else Scope_Stack.Table
4552 (Scope_Stack.Last - Num_Scopes).Entity = Scope (S);
4553 end loop;
4555 exit when Is_Generic_Instance (S)
4556 and then (In_Package_Body (S)
4557 or else Ekind (S) = E_Procedure
4558 or else Ekind (S) = E_Function);
4559 S := Scope (S);
4560 end loop;
4562 Vis := Is_Immediately_Visible (Gen_Comp);
4564 -- Find and save all enclosing instances
4566 S := Current_Scope;
4568 while Present (S)
4569 and then S /= Standard_Standard
4570 loop
4571 if Is_Generic_Instance (S) then
4572 N_Instances := N_Instances + 1;
4573 Instances (N_Instances) := S;
4575 exit when In_Package_Body (S);
4576 end if;
4578 S := Scope (S);
4579 end loop;
4581 -- Remove context of current compilation unit, unless we are within a
4582 -- nested package instantiation, in which case the context has been
4583 -- removed previously.
4585 -- If current scope is the body of a child unit, remove context of
4586 -- spec as well. If an enclosing scope is an instance body, the
4587 -- context has already been removed, but the entities in the body
4588 -- must be made invisible as well.
4590 S := Current_Scope;
4592 while Present (S)
4593 and then S /= Standard_Standard
4594 loop
4595 if Is_Generic_Instance (S)
4596 and then (In_Package_Body (S)
4597 or else Ekind_In (S, E_Procedure, E_Function))
4598 then
4599 -- We still have to remove the entities of the enclosing
4600 -- instance from direct visibility.
4602 declare
4603 E : Entity_Id;
4604 begin
4605 E := First_Entity (S);
4606 while Present (E) loop
4607 Set_Is_Immediately_Visible (E, False);
4608 Next_Entity (E);
4609 end loop;
4610 end;
4612 exit;
4613 end if;
4615 if S = Curr_Unit
4616 or else (Ekind (Curr_Unit) = E_Package_Body
4617 and then S = Spec_Entity (Curr_Unit))
4618 or else (Ekind (Curr_Unit) = E_Subprogram_Body
4619 and then S =
4620 Corresponding_Spec
4621 (Unit_Declaration_Node (Curr_Unit)))
4622 then
4623 Removed := True;
4625 -- Remove entities in current scopes from visibility, so that
4626 -- instance body is compiled in a clean environment.
4628 List := Save_Scope_Stack (Handle_Use => False);
4630 if Is_Child_Unit (S) then
4632 -- Remove child unit from stack, as well as inner scopes.
4633 -- Removing the context of a child unit removes parent units
4634 -- as well.
4636 while Current_Scope /= S loop
4637 Num_Inner := Num_Inner + 1;
4638 Inner_Scopes (Num_Inner) := Current_Scope;
4639 Pop_Scope;
4640 end loop;
4642 Pop_Scope;
4643 Remove_Context (Curr_Comp);
4644 Curr_Scope := S;
4646 else
4647 Remove_Context (Curr_Comp);
4648 end if;
4650 if Ekind (Curr_Unit) = E_Package_Body then
4651 Remove_Context (Library_Unit (Curr_Comp));
4652 end if;
4653 end if;
4655 S := Scope (S);
4656 end loop;
4658 pragma Assert (Num_Inner < Num_Scopes);
4660 -- The inlined package body must be analyzed with the SPARK_Mode of
4661 -- the enclosing context, otherwise the body may cause bogus errors
4662 -- if a configuration SPARK_Mode pragma in in effect.
4664 Push_Scope (Standard_Standard);
4665 Scope_Stack.Table (Scope_Stack.Last).Is_Active_Stack_Base := True;
4666 Instantiate_Package_Body
4667 (Body_Info =>
4668 ((Inst_Node => N,
4669 Act_Decl => Act_Decl,
4670 Expander_Status => Expander_Active,
4671 Current_Sem_Unit => Current_Sem_Unit,
4672 Scope_Suppress => Scope_Suppress,
4673 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
4674 Version => Ada_Version,
4675 Version_Pragma => Ada_Version_Pragma,
4676 Warnings => Save_Warnings,
4677 SPARK_Mode => Save_SM,
4678 SPARK_Mode_Pragma => Save_SMP)),
4679 Inlined_Body => True);
4681 Pop_Scope;
4683 -- Restore context
4685 Set_Is_Immediately_Visible (Gen_Comp, Vis);
4687 -- Reset Generic_Instance flag so that use clauses can be installed
4688 -- in the proper order. (See Use_One_Package for effect of enclosing
4689 -- instances on processing of use clauses).
4691 for J in 1 .. N_Instances loop
4692 Set_Is_Generic_Instance (Instances (J), False);
4693 end loop;
4695 if Removed then
4696 Install_Context (Curr_Comp);
4698 if Present (Curr_Scope)
4699 and then Is_Child_Unit (Curr_Scope)
4700 then
4701 Push_Scope (Curr_Scope);
4702 Set_Is_Immediately_Visible (Curr_Scope);
4704 -- Finally, restore inner scopes as well
4706 for J in reverse 1 .. Num_Inner loop
4707 Push_Scope (Inner_Scopes (J));
4708 end loop;
4709 end if;
4711 Restore_Scope_Stack (List, Handle_Use => False);
4713 if Present (Curr_Scope)
4714 and then
4715 (In_Private_Part (Curr_Scope)
4716 or else In_Package_Body (Curr_Scope))
4717 then
4718 -- Install private declaration of ancestor units, which are
4719 -- currently available. Restore_Scope_Stack and Install_Context
4720 -- only install the visible part of parents.
4722 declare
4723 Par : Entity_Id;
4724 begin
4725 Par := Scope (Curr_Scope);
4726 while (Present (Par))
4727 and then Par /= Standard_Standard
4728 loop
4729 Install_Private_Declarations (Par);
4730 Par := Scope (Par);
4731 end loop;
4732 end;
4733 end if;
4734 end if;
4736 -- Restore use clauses. For a child unit, use clauses in the parents
4737 -- are restored when installing the context, so only those in inner
4738 -- scopes (and those local to the child unit itself) need to be
4739 -- installed explicitly.
4741 if Is_Child_Unit (Curr_Unit)
4742 and then Removed
4743 then
4744 for J in reverse 1 .. Num_Inner + 1 loop
4745 Scope_Stack.Table (Scope_Stack.Last - J + 1).First_Use_Clause :=
4746 Use_Clauses (J);
4747 Install_Use_Clauses (Use_Clauses (J));
4748 end loop;
4750 else
4751 for J in reverse 1 .. Num_Scopes loop
4752 Scope_Stack.Table (Scope_Stack.Last - J + 1).First_Use_Clause :=
4753 Use_Clauses (J);
4754 Install_Use_Clauses (Use_Clauses (J));
4755 end loop;
4756 end if;
4758 -- Restore status of instances. If one of them is a body, make its
4759 -- local entities visible again.
4761 declare
4762 E : Entity_Id;
4763 Inst : Entity_Id;
4765 begin
4766 for J in 1 .. N_Instances loop
4767 Inst := Instances (J);
4768 Set_Is_Generic_Instance (Inst, True);
4770 if In_Package_Body (Inst)
4771 or else Ekind_In (S, E_Procedure, E_Function)
4772 then
4773 E := First_Entity (Instances (J));
4774 while Present (E) loop
4775 Set_Is_Immediately_Visible (E);
4776 Next_Entity (E);
4777 end loop;
4778 end if;
4779 end loop;
4780 end;
4782 -- If generic unit is in current unit, current context is correct. Note
4783 -- that the context is guaranteed to carry the correct SPARK_Mode as no
4784 -- enclosing scopes were removed.
4786 else
4787 Instantiate_Package_Body
4788 (Body_Info =>
4789 ((Inst_Node => N,
4790 Act_Decl => Act_Decl,
4791 Expander_Status => Expander_Active,
4792 Current_Sem_Unit => Current_Sem_Unit,
4793 Scope_Suppress => Scope_Suppress,
4794 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
4795 Version => Ada_Version,
4796 Version_Pragma => Ada_Version_Pragma,
4797 Warnings => Save_Warnings,
4798 SPARK_Mode => SPARK_Mode,
4799 SPARK_Mode_Pragma => SPARK_Mode_Pragma)),
4800 Inlined_Body => True);
4801 end if;
4802 end Inline_Instance_Body;
4804 -------------------------------------
4805 -- Analyze_Procedure_Instantiation --
4806 -------------------------------------
4808 procedure Analyze_Procedure_Instantiation (N : Node_Id) is
4809 begin
4810 Analyze_Subprogram_Instantiation (N, E_Procedure);
4811 end Analyze_Procedure_Instantiation;
4813 -----------------------------------
4814 -- Need_Subprogram_Instance_Body --
4815 -----------------------------------
4817 function Need_Subprogram_Instance_Body
4818 (N : Node_Id;
4819 Subp : Entity_Id) return Boolean
4821 begin
4822 -- Must be inlined (or inlined renaming)
4824 if (Is_In_Main_Unit (N)
4825 or else Is_Inlined (Subp)
4826 or else Is_Inlined (Alias (Subp)))
4828 -- Must be generating code or analyzing code in ASIS/GNATprove mode
4830 and then (Operating_Mode = Generate_Code
4831 or else (Operating_Mode = Check_Semantics
4832 and then (ASIS_Mode or GNATprove_Mode)))
4834 -- The body is needed when generating code (full expansion), in ASIS
4835 -- mode for other tools, and in GNATprove mode (special expansion) for
4836 -- formal verification of the body itself.
4838 and then (Expander_Active or ASIS_Mode or GNATprove_Mode)
4840 -- No point in inlining if ABE is inevitable
4842 and then not ABE_Is_Certain (N)
4844 -- Or if subprogram is eliminated
4846 and then not Is_Eliminated (Subp)
4847 then
4848 Pending_Instantiations.Append
4849 ((Inst_Node => N,
4850 Act_Decl => Unit_Declaration_Node (Subp),
4851 Expander_Status => Expander_Active,
4852 Current_Sem_Unit => Current_Sem_Unit,
4853 Scope_Suppress => Scope_Suppress,
4854 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
4855 Version => Ada_Version,
4856 Version_Pragma => Ada_Version_Pragma,
4857 Warnings => Save_Warnings,
4858 SPARK_Mode => SPARK_Mode,
4859 SPARK_Mode_Pragma => SPARK_Mode_Pragma));
4860 return True;
4862 -- Here if not inlined, or we ignore the inlining
4864 else
4865 return False;
4866 end if;
4867 end Need_Subprogram_Instance_Body;
4869 --------------------------------------
4870 -- Analyze_Subprogram_Instantiation --
4871 --------------------------------------
4873 procedure Analyze_Subprogram_Instantiation
4874 (N : Node_Id;
4875 K : Entity_Kind)
4877 Loc : constant Source_Ptr := Sloc (N);
4878 Gen_Id : constant Node_Id := Name (N);
4880 Anon_Id : constant Entity_Id :=
4881 Make_Defining_Identifier (Sloc (Defining_Entity (N)),
4882 Chars => New_External_Name
4883 (Chars (Defining_Entity (N)), 'R'));
4885 Act_Decl_Id : Entity_Id;
4886 Act_Decl : Node_Id;
4887 Act_Spec : Node_Id;
4888 Act_Tree : Node_Id;
4890 Env_Installed : Boolean := False;
4891 Gen_Unit : Entity_Id;
4892 Gen_Decl : Node_Id;
4893 Pack_Id : Entity_Id;
4894 Parent_Installed : Boolean := False;
4895 Renaming_List : List_Id;
4897 procedure Analyze_Instance_And_Renamings;
4898 -- The instance must be analyzed in a context that includes the mappings
4899 -- of generic parameters into actuals. We create a package declaration
4900 -- for this purpose, and a subprogram with an internal name within the
4901 -- package. The subprogram instance is simply an alias for the internal
4902 -- subprogram, declared in the current scope.
4904 ------------------------------------
4905 -- Analyze_Instance_And_Renamings --
4906 ------------------------------------
4908 procedure Analyze_Instance_And_Renamings is
4909 Def_Ent : constant Entity_Id := Defining_Entity (N);
4910 Pack_Decl : Node_Id;
4912 begin
4913 if Nkind (Parent (N)) = N_Compilation_Unit then
4915 -- For the case of a compilation unit, the container package has
4916 -- the same name as the instantiation, to insure that the binder
4917 -- calls the elaboration procedure with the right name. Copy the
4918 -- entity of the instance, which may have compilation level flags
4919 -- (e.g. Is_Child_Unit) set.
4921 Pack_Id := New_Copy (Def_Ent);
4923 else
4924 -- Otherwise we use the name of the instantiation concatenated
4925 -- with its source position to ensure uniqueness if there are
4926 -- several instantiations with the same name.
4928 Pack_Id :=
4929 Make_Defining_Identifier (Loc,
4930 Chars => New_External_Name
4931 (Related_Id => Chars (Def_Ent),
4932 Suffix => "GP",
4933 Suffix_Index => Source_Offset (Sloc (Def_Ent))));
4934 end if;
4936 Pack_Decl := Make_Package_Declaration (Loc,
4937 Specification => Make_Package_Specification (Loc,
4938 Defining_Unit_Name => Pack_Id,
4939 Visible_Declarations => Renaming_List,
4940 End_Label => Empty));
4942 Set_Instance_Spec (N, Pack_Decl);
4943 Set_Is_Generic_Instance (Pack_Id);
4944 Set_Debug_Info_Needed (Pack_Id);
4946 -- Case of not a compilation unit
4948 if Nkind (Parent (N)) /= N_Compilation_Unit then
4949 Mark_Rewrite_Insertion (Pack_Decl);
4950 Insert_Before (N, Pack_Decl);
4951 Set_Has_Completion (Pack_Id);
4953 -- Case of an instantiation that is a compilation unit
4955 -- Place declaration on current node so context is complete for
4956 -- analysis (including nested instantiations), and for use in a
4957 -- context_clause (see Analyze_With_Clause).
4959 else
4960 Set_Unit (Parent (N), Pack_Decl);
4961 Set_Parent_Spec (Pack_Decl, Parent_Spec (N));
4962 end if;
4964 Analyze (Pack_Decl);
4965 Check_Formal_Packages (Pack_Id);
4966 Set_Is_Generic_Instance (Pack_Id, False);
4968 -- Why do we clear Is_Generic_Instance??? We set it 20 lines
4969 -- above???
4971 -- Body of the enclosing package is supplied when instantiating the
4972 -- subprogram body, after semantic analysis is completed.
4974 if Nkind (Parent (N)) = N_Compilation_Unit then
4976 -- Remove package itself from visibility, so it does not
4977 -- conflict with subprogram.
4979 Set_Name_Entity_Id (Chars (Pack_Id), Homonym (Pack_Id));
4981 -- Set name and scope of internal subprogram so that the proper
4982 -- external name will be generated. The proper scope is the scope
4983 -- of the wrapper package. We need to generate debugging info for
4984 -- the internal subprogram, so set flag accordingly.
4986 Set_Chars (Anon_Id, Chars (Defining_Entity (N)));
4987 Set_Scope (Anon_Id, Scope (Pack_Id));
4989 -- Mark wrapper package as referenced, to avoid spurious warnings
4990 -- if the instantiation appears in various with_ clauses of
4991 -- subunits of the main unit.
4993 Set_Referenced (Pack_Id);
4994 end if;
4996 Set_Is_Generic_Instance (Anon_Id);
4997 Set_Debug_Info_Needed (Anon_Id);
4998 Act_Decl_Id := New_Copy (Anon_Id);
5000 Set_Parent (Act_Decl_Id, Parent (Anon_Id));
5001 Set_Chars (Act_Decl_Id, Chars (Defining_Entity (N)));
5002 Set_Sloc (Act_Decl_Id, Sloc (Defining_Entity (N)));
5003 Set_Comes_From_Source (Act_Decl_Id, True);
5005 -- The signature may involve types that are not frozen yet, but the
5006 -- subprogram will be frozen at the point the wrapper package is
5007 -- frozen, so it does not need its own freeze node. In fact, if one
5008 -- is created, it might conflict with the freezing actions from the
5009 -- wrapper package.
5011 Set_Has_Delayed_Freeze (Anon_Id, False);
5013 -- If the instance is a child unit, mark the Id accordingly. Mark
5014 -- the anonymous entity as well, which is the real subprogram and
5015 -- which is used when the instance appears in a context clause.
5016 -- Similarly, propagate the Is_Eliminated flag to handle properly
5017 -- nested eliminated subprograms.
5019 Set_Is_Child_Unit (Act_Decl_Id, Is_Child_Unit (Defining_Entity (N)));
5020 Set_Is_Child_Unit (Anon_Id, Is_Child_Unit (Defining_Entity (N)));
5021 New_Overloaded_Entity (Act_Decl_Id);
5022 Check_Eliminated (Act_Decl_Id);
5023 Set_Is_Eliminated (Anon_Id, Is_Eliminated (Act_Decl_Id));
5025 -- In compilation unit case, kill elaboration checks on the
5026 -- instantiation, since they are never needed -- the body is
5027 -- instantiated at the same point as the spec.
5029 if Nkind (Parent (N)) = N_Compilation_Unit then
5030 Set_Suppress_Elaboration_Warnings (Act_Decl_Id);
5031 Set_Kill_Elaboration_Checks (Act_Decl_Id);
5032 Set_Is_Compilation_Unit (Anon_Id);
5034 Set_Cunit_Entity (Current_Sem_Unit, Pack_Id);
5035 end if;
5037 -- The instance is not a freezing point for the new subprogram
5039 Set_Is_Frozen (Act_Decl_Id, False);
5041 if Nkind (Defining_Entity (N)) = N_Defining_Operator_Symbol then
5042 Valid_Operator_Definition (Act_Decl_Id);
5043 end if;
5045 Set_Alias (Act_Decl_Id, Anon_Id);
5046 Set_Parent (Act_Decl_Id, Parent (Anon_Id));
5047 Set_Has_Completion (Act_Decl_Id);
5048 Set_Related_Instance (Pack_Id, Act_Decl_Id);
5050 if Nkind (Parent (N)) = N_Compilation_Unit then
5051 Set_Body_Required (Parent (N), False);
5052 end if;
5053 end Analyze_Instance_And_Renamings;
5055 -- Local variables
5057 Save_IPSM : constant Boolean := Ignore_Pragma_SPARK_Mode;
5058 -- Save flag Ignore_Pragma_SPARK_Mode for restore on exit
5060 Save_SM : constant SPARK_Mode_Type := SPARK_Mode;
5061 Save_SMP : constant Node_Id := SPARK_Mode_Pragma;
5062 -- Save the SPARK_Mode-related data for restore on exit
5064 Vis_Prims_List : Elist_Id := No_Elist;
5065 -- List of primitives made temporarily visible in the instantiation
5066 -- to match the visibility of the formal type
5068 -- Start of processing for Analyze_Subprogram_Instantiation
5070 begin
5071 Check_SPARK_05_Restriction ("generic is not allowed", N);
5073 -- Very first thing: check for special Text_IO unit in case we are
5074 -- instantiating one of the children of [[Wide_]Wide_]Text_IO. Of course
5075 -- such an instantiation is bogus (these are packages, not subprograms),
5076 -- but we get a better error message if we do this.
5078 Check_Text_IO_Special_Unit (Gen_Id);
5080 -- Make node global for error reporting
5082 Instantiation_Node := N;
5084 -- For package instantiations we turn off style checks, because they
5085 -- will have been emitted in the generic. For subprogram instantiations
5086 -- we want to apply at least the check on overriding indicators so we
5087 -- do not modify the style check status.
5089 -- The renaming declarations for the actuals do not come from source and
5090 -- will not generate spurious warnings.
5092 Preanalyze_Actuals (N);
5094 Init_Env;
5095 Env_Installed := True;
5096 Check_Generic_Child_Unit (Gen_Id, Parent_Installed);
5097 Gen_Unit := Entity (Gen_Id);
5099 Generate_Reference (Gen_Unit, Gen_Id);
5101 if Nkind (Gen_Id) = N_Identifier
5102 and then Chars (Gen_Unit) = Chars (Defining_Entity (N))
5103 then
5104 Error_Msg_NE
5105 ("& is hidden within declaration of instance", Gen_Id, Gen_Unit);
5106 end if;
5108 if Etype (Gen_Unit) = Any_Type then
5109 Restore_Env;
5110 return;
5111 end if;
5113 -- Verify that it is a generic subprogram of the right kind, and that
5114 -- it does not lead to a circular instantiation.
5116 if K = E_Procedure and then Ekind (Gen_Unit) /= E_Generic_Procedure then
5117 Error_Msg_NE
5118 ("& is not the name of a generic procedure", Gen_Id, Gen_Unit);
5120 elsif K = E_Function and then Ekind (Gen_Unit) /= E_Generic_Function then
5121 Error_Msg_NE
5122 ("& is not the name of a generic function", Gen_Id, Gen_Unit);
5124 elsif In_Open_Scopes (Gen_Unit) then
5125 Error_Msg_NE ("instantiation of & within itself", N, Gen_Unit);
5127 else
5128 -- If the context of the instance is subject to SPARK_Mode "off",
5129 -- set the global flag which signals Analyze_Pragma to ignore all
5130 -- SPARK_Mode pragmas within the instance.
5132 if SPARK_Mode = Off then
5133 Ignore_Pragma_SPARK_Mode := True;
5134 end if;
5136 Set_Entity (Gen_Id, Gen_Unit);
5137 Set_Is_Instantiated (Gen_Unit);
5139 if In_Extended_Main_Source_Unit (N) then
5140 Generate_Reference (Gen_Unit, N);
5141 end if;
5143 -- If renaming, get original unit
5145 if Present (Renamed_Object (Gen_Unit))
5146 and then Ekind_In (Renamed_Object (Gen_Unit), E_Generic_Procedure,
5147 E_Generic_Function)
5148 then
5149 Gen_Unit := Renamed_Object (Gen_Unit);
5150 Set_Is_Instantiated (Gen_Unit);
5151 Generate_Reference (Gen_Unit, N);
5152 end if;
5154 if Contains_Instance_Of (Gen_Unit, Current_Scope, Gen_Id) then
5155 Error_Msg_Node_2 := Current_Scope;
5156 Error_Msg_NE
5157 ("circular Instantiation: & instantiated in &!", N, Gen_Unit);
5158 Circularity_Detected := True;
5159 Restore_Hidden_Primitives (Vis_Prims_List);
5160 goto Leave;
5161 end if;
5163 Gen_Decl := Unit_Declaration_Node (Gen_Unit);
5165 -- Initialize renamings map, for error checking
5167 Generic_Renamings.Set_Last (0);
5168 Generic_Renamings_HTable.Reset;
5170 Create_Instantiation_Source (N, Gen_Unit, False, S_Adjustment);
5172 -- Copy original generic tree, to produce text for instantiation
5174 Act_Tree :=
5175 Copy_Generic_Node
5176 (Original_Node (Gen_Decl), Empty, Instantiating => True);
5178 -- Inherit overriding indicator from instance node
5180 Act_Spec := Specification (Act_Tree);
5181 Set_Must_Override (Act_Spec, Must_Override (N));
5182 Set_Must_Not_Override (Act_Spec, Must_Not_Override (N));
5184 Renaming_List :=
5185 Analyze_Associations
5186 (I_Node => N,
5187 Formals => Generic_Formal_Declarations (Act_Tree),
5188 F_Copy => Generic_Formal_Declarations (Gen_Decl));
5190 Vis_Prims_List := Check_Hidden_Primitives (Renaming_List);
5192 -- The subprogram itself cannot contain a nested instance, so the
5193 -- current parent is left empty.
5195 Set_Instance_Env (Gen_Unit, Empty);
5197 -- Build the subprogram declaration, which does not appear in the
5198 -- generic template, and give it a sloc consistent with that of the
5199 -- template.
5201 Set_Defining_Unit_Name (Act_Spec, Anon_Id);
5202 Set_Generic_Parent (Act_Spec, Gen_Unit);
5203 Act_Decl :=
5204 Make_Subprogram_Declaration (Sloc (Act_Spec),
5205 Specification => Act_Spec);
5207 -- The aspects have been copied previously, but they have to be
5208 -- linked explicitly to the new subprogram declaration. Explicit
5209 -- pre/postconditions on the instance are analyzed below, in a
5210 -- separate step.
5212 Move_Aspects (Act_Tree, To => Act_Decl);
5213 Set_Categorization_From_Pragmas (Act_Decl);
5215 if Parent_Installed then
5216 Hide_Current_Scope;
5217 end if;
5219 Append (Act_Decl, Renaming_List);
5220 Analyze_Instance_And_Renamings;
5222 -- If the generic is marked Import (Intrinsic), then so is the
5223 -- instance. This indicates that there is no body to instantiate. If
5224 -- generic is marked inline, so it the instance, and the anonymous
5225 -- subprogram it renames. If inlined, or else if inlining is enabled
5226 -- for the compilation, we generate the instance body even if it is
5227 -- not within the main unit.
5229 if Is_Intrinsic_Subprogram (Gen_Unit) then
5230 Set_Is_Intrinsic_Subprogram (Anon_Id);
5231 Set_Is_Intrinsic_Subprogram (Act_Decl_Id);
5233 if Chars (Gen_Unit) = Name_Unchecked_Conversion then
5234 Validate_Unchecked_Conversion (N, Act_Decl_Id);
5235 end if;
5236 end if;
5238 -- Inherit convention from generic unit. Intrinsic convention, as for
5239 -- an instance of unchecked conversion, is not inherited because an
5240 -- explicit Ada instance has been created.
5242 if Has_Convention_Pragma (Gen_Unit)
5243 and then Convention (Gen_Unit) /= Convention_Intrinsic
5244 then
5245 Set_Convention (Act_Decl_Id, Convention (Gen_Unit));
5246 Set_Is_Exported (Act_Decl_Id, Is_Exported (Gen_Unit));
5247 end if;
5249 Generate_Definition (Act_Decl_Id);
5250 -- Set_Contract (Anon_Id, Make_Contract (Sloc (Anon_Id)));
5251 -- ??? needed?
5252 Set_Contract (Act_Decl_Id, Make_Contract (Sloc (Act_Decl_Id)));
5254 -- Inherit all inlining-related flags which apply to the generic in
5255 -- the subprogram and its declaration.
5257 Set_Is_Inlined (Act_Decl_Id, Is_Inlined (Gen_Unit));
5258 Set_Is_Inlined (Anon_Id, Is_Inlined (Gen_Unit));
5260 Set_Has_Pragma_Inline (Act_Decl_Id, Has_Pragma_Inline (Gen_Unit));
5261 Set_Has_Pragma_Inline (Anon_Id, Has_Pragma_Inline (Gen_Unit));
5263 Set_Has_Pragma_Inline_Always
5264 (Act_Decl_Id, Has_Pragma_Inline_Always (Gen_Unit));
5265 Set_Has_Pragma_Inline_Always
5266 (Anon_Id, Has_Pragma_Inline_Always (Gen_Unit));
5268 if not Is_Intrinsic_Subprogram (Gen_Unit) then
5269 Check_Elab_Instantiation (N);
5270 end if;
5272 if Is_Dispatching_Operation (Act_Decl_Id)
5273 and then Ada_Version >= Ada_2005
5274 then
5275 declare
5276 Formal : Entity_Id;
5278 begin
5279 Formal := First_Formal (Act_Decl_Id);
5280 while Present (Formal) loop
5281 if Ekind (Etype (Formal)) = E_Anonymous_Access_Type
5282 and then Is_Controlling_Formal (Formal)
5283 and then not Can_Never_Be_Null (Formal)
5284 then
5285 Error_Msg_NE ("access parameter& is controlling,",
5286 N, Formal);
5287 Error_Msg_NE
5288 ("\corresponding parameter of & must be"
5289 & " explicitly null-excluding", N, Gen_Id);
5290 end if;
5292 Next_Formal (Formal);
5293 end loop;
5294 end;
5295 end if;
5297 Check_Hidden_Child_Unit (N, Gen_Unit, Act_Decl_Id);
5299 Validate_Categorization_Dependency (N, Act_Decl_Id);
5301 if not Is_Intrinsic_Subprogram (Act_Decl_Id) then
5302 Inherit_Context (Gen_Decl, N);
5304 Restore_Private_Views (Pack_Id, False);
5306 -- If the context requires a full instantiation, mark node for
5307 -- subsequent construction of the body.
5309 if Need_Subprogram_Instance_Body (N, Act_Decl_Id) then
5310 Check_Forward_Instantiation (Gen_Decl);
5312 -- The wrapper package is always delayed, because it does not
5313 -- constitute a freeze point, but to insure that the freeze
5314 -- node is placed properly, it is created directly when
5315 -- instantiating the body (otherwise the freeze node might
5316 -- appear to early for nested instantiations).
5318 elsif Nkind (Parent (N)) = N_Compilation_Unit then
5320 -- For ASIS purposes, indicate that the wrapper package has
5321 -- replaced the instantiation node.
5323 Rewrite (N, Unit (Parent (N)));
5324 Set_Unit (Parent (N), N);
5325 end if;
5327 elsif Nkind (Parent (N)) = N_Compilation_Unit then
5329 -- Replace instance node for library-level instantiations of
5330 -- intrinsic subprograms, for ASIS use.
5332 Rewrite (N, Unit (Parent (N)));
5333 Set_Unit (Parent (N), N);
5334 end if;
5336 if Parent_Installed then
5337 Remove_Parent;
5338 end if;
5340 Restore_Hidden_Primitives (Vis_Prims_List);
5341 Restore_Env;
5342 Env_Installed := False;
5343 Generic_Renamings.Set_Last (0);
5344 Generic_Renamings_HTable.Reset;
5346 Ignore_Pragma_SPARK_Mode := Save_IPSM;
5347 SPARK_Mode := Save_SM;
5348 SPARK_Mode_Pragma := Save_SMP;
5349 end if;
5351 <<Leave>>
5352 if Has_Aspects (N) then
5353 Analyze_Aspect_Specifications (N, Act_Decl_Id);
5354 end if;
5356 exception
5357 when Instantiation_Error =>
5358 if Parent_Installed then
5359 Remove_Parent;
5360 end if;
5362 if Env_Installed then
5363 Restore_Env;
5364 end if;
5366 Ignore_Pragma_SPARK_Mode := Save_IPSM;
5367 SPARK_Mode := Save_SM;
5368 SPARK_Mode_Pragma := Save_SMP;
5369 end Analyze_Subprogram_Instantiation;
5371 -------------------------
5372 -- Get_Associated_Node --
5373 -------------------------
5375 function Get_Associated_Node (N : Node_Id) return Node_Id is
5376 Assoc : Node_Id;
5378 begin
5379 Assoc := Associated_Node (N);
5381 if Nkind (Assoc) /= Nkind (N) then
5382 return Assoc;
5384 elsif Nkind_In (Assoc, N_Aggregate, N_Extension_Aggregate) then
5385 return Assoc;
5387 else
5388 -- If the node is part of an inner generic, it may itself have been
5389 -- remapped into a further generic copy. Associated_Node is otherwise
5390 -- used for the entity of the node, and will be of a different node
5391 -- kind, or else N has been rewritten as a literal or function call.
5393 while Present (Associated_Node (Assoc))
5394 and then Nkind (Associated_Node (Assoc)) = Nkind (Assoc)
5395 loop
5396 Assoc := Associated_Node (Assoc);
5397 end loop;
5399 -- Follow and additional link in case the final node was rewritten.
5400 -- This can only happen with nested generic units.
5402 if (Nkind (Assoc) = N_Identifier or else Nkind (Assoc) in N_Op)
5403 and then Present (Associated_Node (Assoc))
5404 and then (Nkind_In (Associated_Node (Assoc), N_Function_Call,
5405 N_Explicit_Dereference,
5406 N_Integer_Literal,
5407 N_Real_Literal,
5408 N_String_Literal))
5409 then
5410 Assoc := Associated_Node (Assoc);
5411 end if;
5413 -- An additional special case: an unconstrained type in an object
5414 -- declaration may have been rewritten as a local subtype constrained
5415 -- by the expression in the declaration. We need to recover the
5416 -- original entity which may be global.
5418 if Present (Original_Node (Assoc))
5419 and then Nkind (Parent (N)) = N_Object_Declaration
5420 then
5421 Assoc := Original_Node (Assoc);
5422 end if;
5424 return Assoc;
5425 end if;
5426 end Get_Associated_Node;
5428 -------------------------------------------
5429 -- Build_Instance_Compilation_Unit_Nodes --
5430 -------------------------------------------
5432 procedure Build_Instance_Compilation_Unit_Nodes
5433 (N : Node_Id;
5434 Act_Body : Node_Id;
5435 Act_Decl : Node_Id)
5437 Decl_Cunit : Node_Id;
5438 Body_Cunit : Node_Id;
5439 Citem : Node_Id;
5440 New_Main : constant Entity_Id := Defining_Entity (Act_Decl);
5441 Old_Main : constant Entity_Id := Cunit_Entity (Main_Unit);
5443 begin
5444 -- A new compilation unit node is built for the instance declaration
5446 Decl_Cunit :=
5447 Make_Compilation_Unit (Sloc (N),
5448 Context_Items => Empty_List,
5449 Unit => Act_Decl,
5450 Aux_Decls_Node => Make_Compilation_Unit_Aux (Sloc (N)));
5452 Set_Parent_Spec (Act_Decl, Parent_Spec (N));
5454 -- The new compilation unit is linked to its body, but both share the
5455 -- same file, so we do not set Body_Required on the new unit so as not
5456 -- to create a spurious dependency on a non-existent body in the ali.
5457 -- This simplifies CodePeer unit traversal.
5459 -- We use the original instantiation compilation unit as the resulting
5460 -- compilation unit of the instance, since this is the main unit.
5462 Rewrite (N, Act_Body);
5464 -- Propagate the aspect specifications from the package body template to
5465 -- the instantiated version of the package body.
5467 if Has_Aspects (Act_Body) then
5468 Set_Aspect_Specifications
5469 (N, New_Copy_List_Tree (Aspect_Specifications (Act_Body)));
5470 end if;
5472 Body_Cunit := Parent (N);
5474 -- The two compilation unit nodes are linked by the Library_Unit field
5476 Set_Library_Unit (Decl_Cunit, Body_Cunit);
5477 Set_Library_Unit (Body_Cunit, Decl_Cunit);
5479 -- Preserve the private nature of the package if needed
5481 Set_Private_Present (Decl_Cunit, Private_Present (Body_Cunit));
5483 -- If the instance is not the main unit, its context, categorization
5484 -- and elaboration entity are not relevant to the compilation.
5486 if Body_Cunit /= Cunit (Main_Unit) then
5487 Make_Instance_Unit (Body_Cunit, In_Main => False);
5488 return;
5489 end if;
5491 -- The context clause items on the instantiation, which are now attached
5492 -- to the body compilation unit (since the body overwrote the original
5493 -- instantiation node), semantically belong on the spec, so copy them
5494 -- there. It's harmless to leave them on the body as well. In fact one
5495 -- could argue that they belong in both places.
5497 Citem := First (Context_Items (Body_Cunit));
5498 while Present (Citem) loop
5499 Append (New_Copy (Citem), Context_Items (Decl_Cunit));
5500 Next (Citem);
5501 end loop;
5503 -- Propagate categorization flags on packages, so that they appear in
5504 -- the ali file for the spec of the unit.
5506 if Ekind (New_Main) = E_Package then
5507 Set_Is_Pure (Old_Main, Is_Pure (New_Main));
5508 Set_Is_Preelaborated (Old_Main, Is_Preelaborated (New_Main));
5509 Set_Is_Remote_Types (Old_Main, Is_Remote_Types (New_Main));
5510 Set_Is_Shared_Passive (Old_Main, Is_Shared_Passive (New_Main));
5511 Set_Is_Remote_Call_Interface
5512 (Old_Main, Is_Remote_Call_Interface (New_Main));
5513 end if;
5515 -- Make entry in Units table, so that binder can generate call to
5516 -- elaboration procedure for body, if any.
5518 Make_Instance_Unit (Body_Cunit, In_Main => True);
5519 Main_Unit_Entity := New_Main;
5520 Set_Cunit_Entity (Main_Unit, Main_Unit_Entity);
5522 -- Build elaboration entity, since the instance may certainly generate
5523 -- elaboration code requiring a flag for protection.
5525 Build_Elaboration_Entity (Decl_Cunit, New_Main);
5526 end Build_Instance_Compilation_Unit_Nodes;
5528 -----------------------------
5529 -- Check_Access_Definition --
5530 -----------------------------
5532 procedure Check_Access_Definition (N : Node_Id) is
5533 begin
5534 pragma Assert
5535 (Ada_Version >= Ada_2005 and then Present (Access_Definition (N)));
5536 null;
5537 end Check_Access_Definition;
5539 -----------------------------------
5540 -- Check_Formal_Package_Instance --
5541 -----------------------------------
5543 -- If the formal has specific parameters, they must match those of the
5544 -- actual. Both of them are instances, and the renaming declarations for
5545 -- their formal parameters appear in the same order in both. The analyzed
5546 -- formal has been analyzed in the context of the current instance.
5548 procedure Check_Formal_Package_Instance
5549 (Formal_Pack : Entity_Id;
5550 Actual_Pack : Entity_Id)
5552 E1 : Entity_Id := First_Entity (Actual_Pack);
5553 E2 : Entity_Id := First_Entity (Formal_Pack);
5555 Expr1 : Node_Id;
5556 Expr2 : Node_Id;
5558 procedure Check_Mismatch (B : Boolean);
5559 -- Common error routine for mismatch between the parameters of the
5560 -- actual instance and those of the formal package.
5562 function Same_Instantiated_Constant (E1, E2 : Entity_Id) return Boolean;
5563 -- The formal may come from a nested formal package, and the actual may
5564 -- have been constant-folded. To determine whether the two denote the
5565 -- same entity we may have to traverse several definitions to recover
5566 -- the ultimate entity that they refer to.
5568 function Same_Instantiated_Variable (E1, E2 : Entity_Id) return Boolean;
5569 -- Similarly, if the formal comes from a nested formal package, the
5570 -- actual may designate the formal through multiple renamings, which
5571 -- have to be followed to determine the original variable in question.
5573 --------------------
5574 -- Check_Mismatch --
5575 --------------------
5577 procedure Check_Mismatch (B : Boolean) is
5578 Kind : constant Node_Kind := Nkind (Parent (E2));
5580 begin
5581 if Kind = N_Formal_Type_Declaration then
5582 return;
5584 elsif Nkind_In (Kind, N_Formal_Object_Declaration,
5585 N_Formal_Package_Declaration)
5586 or else Kind in N_Formal_Subprogram_Declaration
5587 then
5588 null;
5590 elsif B then
5591 Error_Msg_NE
5592 ("actual for & in actual instance does not match formal",
5593 Parent (Actual_Pack), E1);
5594 end if;
5595 end Check_Mismatch;
5597 --------------------------------
5598 -- Same_Instantiated_Constant --
5599 --------------------------------
5601 function Same_Instantiated_Constant
5602 (E1, E2 : Entity_Id) return Boolean
5604 Ent : Entity_Id;
5606 begin
5607 Ent := E2;
5608 while Present (Ent) loop
5609 if E1 = Ent then
5610 return True;
5612 elsif Ekind (Ent) /= E_Constant then
5613 return False;
5615 elsif Is_Entity_Name (Constant_Value (Ent)) then
5616 if Entity (Constant_Value (Ent)) = E1 then
5617 return True;
5618 else
5619 Ent := Entity (Constant_Value (Ent));
5620 end if;
5622 -- The actual may be a constant that has been folded. Recover
5623 -- original name.
5625 elsif Is_Entity_Name (Original_Node (Constant_Value (Ent))) then
5626 Ent := Entity (Original_Node (Constant_Value (Ent)));
5627 else
5628 return False;
5629 end if;
5630 end loop;
5632 return False;
5633 end Same_Instantiated_Constant;
5635 --------------------------------
5636 -- Same_Instantiated_Variable --
5637 --------------------------------
5639 function Same_Instantiated_Variable
5640 (E1, E2 : Entity_Id) return Boolean
5642 function Original_Entity (E : Entity_Id) return Entity_Id;
5643 -- Follow chain of renamings to the ultimate ancestor
5645 ---------------------
5646 -- Original_Entity --
5647 ---------------------
5649 function Original_Entity (E : Entity_Id) return Entity_Id is
5650 Orig : Entity_Id;
5652 begin
5653 Orig := E;
5654 while Nkind (Parent (Orig)) = N_Object_Renaming_Declaration
5655 and then Present (Renamed_Object (Orig))
5656 and then Is_Entity_Name (Renamed_Object (Orig))
5657 loop
5658 Orig := Entity (Renamed_Object (Orig));
5659 end loop;
5661 return Orig;
5662 end Original_Entity;
5664 -- Start of processing for Same_Instantiated_Variable
5666 begin
5667 return Ekind (E1) = Ekind (E2)
5668 and then Original_Entity (E1) = Original_Entity (E2);
5669 end Same_Instantiated_Variable;
5671 -- Start of processing for Check_Formal_Package_Instance
5673 begin
5674 while Present (E1)
5675 and then Present (E2)
5676 loop
5677 exit when Ekind (E1) = E_Package
5678 and then Renamed_Entity (E1) = Renamed_Entity (Actual_Pack);
5680 -- If the formal is the renaming of the formal package, this
5681 -- is the end of its formal part, which may occur before the
5682 -- end of the formal part in the actual in the presence of
5683 -- defaulted parameters in the formal package.
5685 exit when Nkind (Parent (E2)) = N_Package_Renaming_Declaration
5686 and then Renamed_Entity (E2) = Scope (E2);
5688 -- The analysis of the actual may generate additional internal
5689 -- entities. If the formal is defaulted, there is no corresponding
5690 -- analysis and the internal entities must be skipped, until we
5691 -- find corresponding entities again.
5693 if Comes_From_Source (E2)
5694 and then not Comes_From_Source (E1)
5695 and then Chars (E1) /= Chars (E2)
5696 then
5697 while Present (E1)
5698 and then Chars (E1) /= Chars (E2)
5699 loop
5700 Next_Entity (E1);
5701 end loop;
5702 end if;
5704 if No (E1) then
5705 return;
5707 -- If the formal entity comes from a formal declaration, it was
5708 -- defaulted in the formal package, and no check is needed on it.
5710 elsif Nkind (Parent (E2)) = N_Formal_Object_Declaration then
5711 goto Next_E;
5713 -- Ditto for defaulted formal subprograms.
5715 elsif Is_Overloadable (E1)
5716 and then Nkind (Unit_Declaration_Node (E2)) in
5717 N_Formal_Subprogram_Declaration
5718 then
5719 goto Next_E;
5721 elsif Is_Type (E1) then
5723 -- Subtypes must statically match. E1, E2 are the local entities
5724 -- that are subtypes of the actuals. Itypes generated for other
5725 -- parameters need not be checked, the check will be performed
5726 -- on the parameters themselves.
5728 -- If E2 is a formal type declaration, it is a defaulted parameter
5729 -- and needs no checking.
5731 if not Is_Itype (E1)
5732 and then not Is_Itype (E2)
5733 then
5734 Check_Mismatch
5735 (not Is_Type (E2)
5736 or else Etype (E1) /= Etype (E2)
5737 or else not Subtypes_Statically_Match (E1, E2));
5738 end if;
5740 elsif Ekind (E1) = E_Constant then
5742 -- IN parameters must denote the same static value, or the same
5743 -- constant, or the literal null.
5745 Expr1 := Expression (Parent (E1));
5747 if Ekind (E2) /= E_Constant then
5748 Check_Mismatch (True);
5749 goto Next_E;
5750 else
5751 Expr2 := Expression (Parent (E2));
5752 end if;
5754 if Is_OK_Static_Expression (Expr1) then
5755 if not Is_OK_Static_Expression (Expr2) then
5756 Check_Mismatch (True);
5758 elsif Is_Discrete_Type (Etype (E1)) then
5759 declare
5760 V1 : constant Uint := Expr_Value (Expr1);
5761 V2 : constant Uint := Expr_Value (Expr2);
5762 begin
5763 Check_Mismatch (V1 /= V2);
5764 end;
5766 elsif Is_Real_Type (Etype (E1)) then
5767 declare
5768 V1 : constant Ureal := Expr_Value_R (Expr1);
5769 V2 : constant Ureal := Expr_Value_R (Expr2);
5770 begin
5771 Check_Mismatch (V1 /= V2);
5772 end;
5774 elsif Is_String_Type (Etype (E1))
5775 and then Nkind (Expr1) = N_String_Literal
5776 then
5777 if Nkind (Expr2) /= N_String_Literal then
5778 Check_Mismatch (True);
5779 else
5780 Check_Mismatch
5781 (not String_Equal (Strval (Expr1), Strval (Expr2)));
5782 end if;
5783 end if;
5785 elsif Is_Entity_Name (Expr1) then
5786 if Is_Entity_Name (Expr2) then
5787 if Entity (Expr1) = Entity (Expr2) then
5788 null;
5789 else
5790 Check_Mismatch
5791 (not Same_Instantiated_Constant
5792 (Entity (Expr1), Entity (Expr2)));
5793 end if;
5794 else
5795 Check_Mismatch (True);
5796 end if;
5798 elsif Is_Entity_Name (Original_Node (Expr1))
5799 and then Is_Entity_Name (Expr2)
5800 and then
5801 Same_Instantiated_Constant
5802 (Entity (Original_Node (Expr1)), Entity (Expr2))
5803 then
5804 null;
5806 elsif Nkind (Expr1) = N_Null then
5807 Check_Mismatch (Nkind (Expr1) /= N_Null);
5809 else
5810 Check_Mismatch (True);
5811 end if;
5813 elsif Ekind (E1) = E_Variable then
5814 Check_Mismatch (not Same_Instantiated_Variable (E1, E2));
5816 elsif Ekind (E1) = E_Package then
5817 Check_Mismatch
5818 (Ekind (E1) /= Ekind (E2)
5819 or else Renamed_Object (E1) /= Renamed_Object (E2));
5821 elsif Is_Overloadable (E1) then
5823 -- Verify that the actual subprograms match. Note that actuals
5824 -- that are attributes are rewritten as subprograms. If the
5825 -- subprogram in the formal package is defaulted, no check is
5826 -- needed. Note that this can only happen in Ada 2005 when the
5827 -- formal package can be partially parameterized.
5829 if Nkind (Unit_Declaration_Node (E1)) =
5830 N_Subprogram_Renaming_Declaration
5831 and then From_Default (Unit_Declaration_Node (E1))
5832 then
5833 null;
5835 -- If the formal package has an "others" box association that
5836 -- covers this formal, there is no need for a check either.
5838 elsif Nkind (Unit_Declaration_Node (E2)) in
5839 N_Formal_Subprogram_Declaration
5840 and then Box_Present (Unit_Declaration_Node (E2))
5841 then
5842 null;
5844 -- No check needed if subprogram is a defaulted null procedure
5846 elsif No (Alias (E2))
5847 and then Ekind (E2) = E_Procedure
5848 and then
5849 Null_Present (Specification (Unit_Declaration_Node (E2)))
5850 then
5851 null;
5853 -- Otherwise the actual in the formal and the actual in the
5854 -- instantiation of the formal must match, up to renamings.
5856 else
5857 Check_Mismatch
5858 (Ekind (E2) /= Ekind (E1) or else (Alias (E1)) /= Alias (E2));
5859 end if;
5861 else
5862 raise Program_Error;
5863 end if;
5865 <<Next_E>>
5866 Next_Entity (E1);
5867 Next_Entity (E2);
5868 end loop;
5869 end Check_Formal_Package_Instance;
5871 ---------------------------
5872 -- Check_Formal_Packages --
5873 ---------------------------
5875 procedure Check_Formal_Packages (P_Id : Entity_Id) is
5876 E : Entity_Id;
5877 Formal_P : Entity_Id;
5879 begin
5880 -- Iterate through the declarations in the instance, looking for package
5881 -- renaming declarations that denote instances of formal packages. Stop
5882 -- when we find the renaming of the current package itself. The
5883 -- declaration for a formal package without a box is followed by an
5884 -- internal entity that repeats the instantiation.
5886 E := First_Entity (P_Id);
5887 while Present (E) loop
5888 if Ekind (E) = E_Package then
5889 if Renamed_Object (E) = P_Id then
5890 exit;
5892 elsif Nkind (Parent (E)) /= N_Package_Renaming_Declaration then
5893 null;
5895 elsif not Box_Present (Parent (Associated_Formal_Package (E))) then
5896 Formal_P := Next_Entity (E);
5897 Check_Formal_Package_Instance (Formal_P, E);
5899 -- After checking, remove the internal validating package. It
5900 -- is only needed for semantic checks, and as it may contain
5901 -- generic formal declarations it should not reach gigi.
5903 Remove (Unit_Declaration_Node (Formal_P));
5904 end if;
5905 end if;
5907 Next_Entity (E);
5908 end loop;
5909 end Check_Formal_Packages;
5911 ---------------------------------
5912 -- Check_Forward_Instantiation --
5913 ---------------------------------
5915 procedure Check_Forward_Instantiation (Decl : Node_Id) is
5916 S : Entity_Id;
5917 Gen_Comp : Entity_Id := Cunit_Entity (Get_Source_Unit (Decl));
5919 begin
5920 -- The instantiation appears before the generic body if we are in the
5921 -- scope of the unit containing the generic, either in its spec or in
5922 -- the package body, and before the generic body.
5924 if Ekind (Gen_Comp) = E_Package_Body then
5925 Gen_Comp := Spec_Entity (Gen_Comp);
5926 end if;
5928 if In_Open_Scopes (Gen_Comp)
5929 and then No (Corresponding_Body (Decl))
5930 then
5931 S := Current_Scope;
5933 while Present (S)
5934 and then not Is_Compilation_Unit (S)
5935 and then not Is_Child_Unit (S)
5936 loop
5937 if Ekind (S) = E_Package then
5938 Set_Has_Forward_Instantiation (S);
5939 end if;
5941 S := Scope (S);
5942 end loop;
5943 end if;
5944 end Check_Forward_Instantiation;
5946 ---------------------------
5947 -- Check_Generic_Actuals --
5948 ---------------------------
5950 -- The visibility of the actuals may be different between the point of
5951 -- generic instantiation and the instantiation of the body.
5953 procedure Check_Generic_Actuals
5954 (Instance : Entity_Id;
5955 Is_Formal_Box : Boolean)
5957 E : Entity_Id;
5958 Astype : Entity_Id;
5960 function Denotes_Previous_Actual (Typ : Entity_Id) return Boolean;
5961 -- For a formal that is an array type, the component type is often a
5962 -- previous formal in the same unit. The privacy status of the component
5963 -- type will have been examined earlier in the traversal of the
5964 -- corresponding actuals, and this status should not be modified for
5965 -- the array (sub)type itself. However, if the base type of the array
5966 -- (sub)type is private, its full view must be restored in the body to
5967 -- be consistent with subsequent index subtypes, etc.
5969 -- To detect this case we have to rescan the list of formals, which is
5970 -- usually short enough to ignore the resulting inefficiency.
5972 -----------------------------
5973 -- Denotes_Previous_Actual --
5974 -----------------------------
5976 function Denotes_Previous_Actual (Typ : Entity_Id) return Boolean is
5977 Prev : Entity_Id;
5979 begin
5980 Prev := First_Entity (Instance);
5981 while Present (Prev) loop
5982 if Is_Type (Prev)
5983 and then Nkind (Parent (Prev)) = N_Subtype_Declaration
5984 and then Is_Entity_Name (Subtype_Indication (Parent (Prev)))
5985 and then Entity (Subtype_Indication (Parent (Prev))) = Typ
5986 then
5987 return True;
5989 elsif Prev = E then
5990 return False;
5992 else
5993 Next_Entity (Prev);
5994 end if;
5995 end loop;
5997 return False;
5998 end Denotes_Previous_Actual;
6000 -- Start of processing for Check_Generic_Actuals
6002 begin
6003 E := First_Entity (Instance);
6004 while Present (E) loop
6005 if Is_Type (E)
6006 and then Nkind (Parent (E)) = N_Subtype_Declaration
6007 and then Scope (Etype (E)) /= Instance
6008 and then Is_Entity_Name (Subtype_Indication (Parent (E)))
6009 then
6010 if Is_Array_Type (E)
6011 and then not Is_Private_Type (Etype (E))
6012 and then Denotes_Previous_Actual (Component_Type (E))
6013 then
6014 null;
6015 else
6016 Check_Private_View (Subtype_Indication (Parent (E)));
6017 end if;
6019 Set_Is_Generic_Actual_Type (E, True);
6020 Set_Is_Hidden (E, False);
6021 Set_Is_Potentially_Use_Visible (E,
6022 In_Use (Instance));
6024 -- We constructed the generic actual type as a subtype of the
6025 -- supplied type. This means that it normally would not inherit
6026 -- subtype specific attributes of the actual, which is wrong for
6027 -- the generic case.
6029 Astype := Ancestor_Subtype (E);
6031 if No (Astype) then
6033 -- This can happen when E is an itype that is the full view of
6034 -- a private type completed, e.g. with a constrained array. In
6035 -- that case, use the first subtype, which will carry size
6036 -- information. The base type itself is unconstrained and will
6037 -- not carry it.
6039 Astype := First_Subtype (E);
6040 end if;
6042 Set_Size_Info (E, (Astype));
6043 Set_RM_Size (E, RM_Size (Astype));
6044 Set_First_Rep_Item (E, First_Rep_Item (Astype));
6046 if Is_Discrete_Or_Fixed_Point_Type (E) then
6047 Set_RM_Size (E, RM_Size (Astype));
6049 -- In nested instances, the base type of an access actual may
6050 -- itself be private, and need to be exchanged.
6052 elsif Is_Access_Type (E)
6053 and then Is_Private_Type (Etype (E))
6054 then
6055 Check_Private_View
6056 (New_Occurrence_Of (Etype (E), Sloc (Instance)));
6057 end if;
6059 elsif Ekind (E) = E_Package then
6061 -- If this is the renaming for the current instance, we're done.
6062 -- Otherwise it is a formal package. If the corresponding formal
6063 -- was declared with a box, the (instantiations of the) generic
6064 -- formal part are also visible. Otherwise, ignore the entity
6065 -- created to validate the actuals.
6067 if Renamed_Object (E) = Instance then
6068 exit;
6070 elsif Nkind (Parent (E)) /= N_Package_Renaming_Declaration then
6071 null;
6073 -- The visibility of a formal of an enclosing generic is already
6074 -- correct.
6076 elsif Denotes_Formal_Package (E) then
6077 null;
6079 elsif Present (Associated_Formal_Package (E))
6080 and then not Is_Generic_Formal (E)
6081 then
6082 if Box_Present (Parent (Associated_Formal_Package (E))) then
6083 Check_Generic_Actuals (Renamed_Object (E), True);
6085 else
6086 Check_Generic_Actuals (Renamed_Object (E), False);
6087 end if;
6089 Set_Is_Hidden (E, False);
6090 end if;
6092 -- If this is a subprogram instance (in a wrapper package) the
6093 -- actual is fully visible.
6095 elsif Is_Wrapper_Package (Instance) then
6096 Set_Is_Hidden (E, False);
6098 -- If the formal package is declared with a box, or if the formal
6099 -- parameter is defaulted, it is visible in the body.
6101 elsif Is_Formal_Box or else Is_Visible_Formal (E) then
6102 Set_Is_Hidden (E, False);
6103 end if;
6105 if Ekind (E) = E_Constant then
6107 -- If the type of the actual is a private type declared in the
6108 -- enclosing scope of the generic unit, the body of the generic
6109 -- sees the full view of the type (because it has to appear in
6110 -- the corresponding package body). If the type is private now,
6111 -- exchange views to restore the proper visiblity in the instance.
6113 declare
6114 Typ : constant Entity_Id := Base_Type (Etype (E));
6115 -- The type of the actual
6117 Gen_Id : Entity_Id;
6118 -- The generic unit
6120 Parent_Scope : Entity_Id;
6121 -- The enclosing scope of the generic unit
6123 begin
6124 if Is_Wrapper_Package (Instance) then
6125 Gen_Id :=
6126 Generic_Parent
6127 (Specification
6128 (Unit_Declaration_Node
6129 (Related_Instance (Instance))));
6130 else
6131 Gen_Id :=
6132 Generic_Parent (Package_Specification (Instance));
6133 end if;
6135 Parent_Scope := Scope (Gen_Id);
6137 -- The exchange is only needed if the generic is defined
6138 -- within a package which is not a common ancestor of the
6139 -- scope of the instance, and is not already in scope.
6141 if Is_Private_Type (Typ)
6142 and then Scope (Typ) = Parent_Scope
6143 and then Scope (Instance) /= Parent_Scope
6144 and then Ekind (Parent_Scope) = E_Package
6145 and then not Is_Child_Unit (Gen_Id)
6146 then
6147 Switch_View (Typ);
6149 -- If the type of the entity is a subtype, it may also have
6150 -- to be made visible, together with the base type of its
6151 -- full view, after exchange.
6153 if Is_Private_Type (Etype (E)) then
6154 Switch_View (Etype (E));
6155 Switch_View (Base_Type (Etype (E)));
6156 end if;
6157 end if;
6158 end;
6159 end if;
6161 Next_Entity (E);
6162 end loop;
6163 end Check_Generic_Actuals;
6165 ------------------------------
6166 -- Check_Generic_Child_Unit --
6167 ------------------------------
6169 procedure Check_Generic_Child_Unit
6170 (Gen_Id : Node_Id;
6171 Parent_Installed : in out Boolean)
6173 Loc : constant Source_Ptr := Sloc (Gen_Id);
6174 Gen_Par : Entity_Id := Empty;
6175 E : Entity_Id;
6176 Inst_Par : Entity_Id;
6177 S : Node_Id;
6179 function Find_Generic_Child
6180 (Scop : Entity_Id;
6181 Id : Node_Id) return Entity_Id;
6182 -- Search generic parent for possible child unit with the given name
6184 function In_Enclosing_Instance return Boolean;
6185 -- Within an instance of the parent, the child unit may be denoted by
6186 -- a simple name, or an abbreviated expanded name. Examine enclosing
6187 -- scopes to locate a possible parent instantiation.
6189 ------------------------
6190 -- Find_Generic_Child --
6191 ------------------------
6193 function Find_Generic_Child
6194 (Scop : Entity_Id;
6195 Id : Node_Id) return Entity_Id
6197 E : Entity_Id;
6199 begin
6200 -- If entity of name is already set, instance has already been
6201 -- resolved, e.g. in an enclosing instantiation.
6203 if Present (Entity (Id)) then
6204 if Scope (Entity (Id)) = Scop then
6205 return Entity (Id);
6206 else
6207 return Empty;
6208 end if;
6210 else
6211 E := First_Entity (Scop);
6212 while Present (E) loop
6213 if Chars (E) = Chars (Id)
6214 and then Is_Child_Unit (E)
6215 then
6216 if Is_Child_Unit (E)
6217 and then not Is_Visible_Lib_Unit (E)
6218 then
6219 Error_Msg_NE
6220 ("generic child unit& is not visible", Gen_Id, E);
6221 end if;
6223 Set_Entity (Id, E);
6224 return E;
6225 end if;
6227 Next_Entity (E);
6228 end loop;
6230 return Empty;
6231 end if;
6232 end Find_Generic_Child;
6234 ---------------------------
6235 -- In_Enclosing_Instance --
6236 ---------------------------
6238 function In_Enclosing_Instance return Boolean is
6239 Enclosing_Instance : Node_Id;
6240 Instance_Decl : Node_Id;
6242 begin
6243 -- We do not inline any call that contains instantiations, except
6244 -- for instantiations of Unchecked_Conversion, so if we are within
6245 -- an inlined body the current instance does not require parents.
6247 if In_Inlined_Body then
6248 pragma Assert (Chars (Gen_Id) = Name_Unchecked_Conversion);
6249 return False;
6250 end if;
6252 -- Loop to check enclosing scopes
6254 Enclosing_Instance := Current_Scope;
6255 while Present (Enclosing_Instance) loop
6256 Instance_Decl := Unit_Declaration_Node (Enclosing_Instance);
6258 if Ekind (Enclosing_Instance) = E_Package
6259 and then Is_Generic_Instance (Enclosing_Instance)
6260 and then Present
6261 (Generic_Parent (Specification (Instance_Decl)))
6262 then
6263 -- Check whether the generic we are looking for is a child of
6264 -- this instance.
6266 E := Find_Generic_Child
6267 (Generic_Parent (Specification (Instance_Decl)), Gen_Id);
6268 exit when Present (E);
6270 else
6271 E := Empty;
6272 end if;
6274 Enclosing_Instance := Scope (Enclosing_Instance);
6275 end loop;
6277 if No (E) then
6279 -- Not a child unit
6281 Analyze (Gen_Id);
6282 return False;
6284 else
6285 Rewrite (Gen_Id,
6286 Make_Expanded_Name (Loc,
6287 Chars => Chars (E),
6288 Prefix => New_Occurrence_Of (Enclosing_Instance, Loc),
6289 Selector_Name => New_Occurrence_Of (E, Loc)));
6291 Set_Entity (Gen_Id, E);
6292 Set_Etype (Gen_Id, Etype (E));
6293 Parent_Installed := False; -- Already in scope.
6294 return True;
6295 end if;
6296 end In_Enclosing_Instance;
6298 -- Start of processing for Check_Generic_Child_Unit
6300 begin
6301 -- If the name of the generic is given by a selected component, it may
6302 -- be the name of a generic child unit, and the prefix is the name of an
6303 -- instance of the parent, in which case the child unit must be visible.
6304 -- If this instance is not in scope, it must be placed there and removed
6305 -- after instantiation, because what is being instantiated is not the
6306 -- original child, but the corresponding child present in the instance
6307 -- of the parent.
6309 -- If the child is instantiated within the parent, it can be given by
6310 -- a simple name. In this case the instance is already in scope, but
6311 -- the child generic must be recovered from the generic parent as well.
6313 if Nkind (Gen_Id) = N_Selected_Component then
6314 S := Selector_Name (Gen_Id);
6315 Analyze (Prefix (Gen_Id));
6316 Inst_Par := Entity (Prefix (Gen_Id));
6318 if Ekind (Inst_Par) = E_Package
6319 and then Present (Renamed_Object (Inst_Par))
6320 then
6321 Inst_Par := Renamed_Object (Inst_Par);
6322 end if;
6324 if Ekind (Inst_Par) = E_Package then
6325 if Nkind (Parent (Inst_Par)) = N_Package_Specification then
6326 Gen_Par := Generic_Parent (Parent (Inst_Par));
6328 elsif Nkind (Parent (Inst_Par)) = N_Defining_Program_Unit_Name
6329 and then
6330 Nkind (Parent (Parent (Inst_Par))) = N_Package_Specification
6331 then
6332 Gen_Par := Generic_Parent (Parent (Parent (Inst_Par)));
6333 end if;
6335 elsif Ekind (Inst_Par) = E_Generic_Package
6336 and then Nkind (Parent (Gen_Id)) = N_Formal_Package_Declaration
6337 then
6338 -- A formal package may be a real child package, and not the
6339 -- implicit instance within a parent. In this case the child is
6340 -- not visible and has to be retrieved explicitly as well.
6342 Gen_Par := Inst_Par;
6343 end if;
6345 if Present (Gen_Par) then
6347 -- The prefix denotes an instantiation. The entity itself may be a
6348 -- nested generic, or a child unit.
6350 E := Find_Generic_Child (Gen_Par, S);
6352 if Present (E) then
6353 Change_Selected_Component_To_Expanded_Name (Gen_Id);
6354 Set_Entity (Gen_Id, E);
6355 Set_Etype (Gen_Id, Etype (E));
6356 Set_Entity (S, E);
6357 Set_Etype (S, Etype (E));
6359 -- Indicate that this is a reference to the parent
6361 if In_Extended_Main_Source_Unit (Gen_Id) then
6362 Set_Is_Instantiated (Inst_Par);
6363 end if;
6365 -- A common mistake is to replicate the naming scheme of a
6366 -- hierarchy by instantiating a generic child directly, rather
6367 -- than the implicit child in a parent instance:
6369 -- generic .. package Gpar is ..
6370 -- generic .. package Gpar.Child is ..
6371 -- package Par is new Gpar ();
6373 -- with Gpar.Child;
6374 -- package Par.Child is new Gpar.Child ();
6375 -- rather than Par.Child
6377 -- In this case the instantiation is within Par, which is an
6378 -- instance, but Gpar does not denote Par because we are not IN
6379 -- the instance of Gpar, so this is illegal. The test below
6380 -- recognizes this particular case.
6382 if Is_Child_Unit (E)
6383 and then not Comes_From_Source (Entity (Prefix (Gen_Id)))
6384 and then (not In_Instance
6385 or else Nkind (Parent (Parent (Gen_Id))) =
6386 N_Compilation_Unit)
6387 then
6388 Error_Msg_N
6389 ("prefix of generic child unit must be instance of parent",
6390 Gen_Id);
6391 end if;
6393 if not In_Open_Scopes (Inst_Par)
6394 and then Nkind (Parent (Gen_Id)) not in
6395 N_Generic_Renaming_Declaration
6396 then
6397 Install_Parent (Inst_Par);
6398 Parent_Installed := True;
6400 elsif In_Open_Scopes (Inst_Par) then
6402 -- If the parent is already installed, install the actuals
6403 -- for its formal packages. This is necessary when the child
6404 -- instance is a child of the parent instance: in this case,
6405 -- the parent is placed on the scope stack but the formal
6406 -- packages are not made visible.
6408 Install_Formal_Packages (Inst_Par);
6409 end if;
6411 else
6412 -- If the generic parent does not contain an entity that
6413 -- corresponds to the selector, the instance doesn't either.
6414 -- Analyzing the node will yield the appropriate error message.
6415 -- If the entity is not a child unit, then it is an inner
6416 -- generic in the parent.
6418 Analyze (Gen_Id);
6419 end if;
6421 else
6422 Analyze (Gen_Id);
6424 if Is_Child_Unit (Entity (Gen_Id))
6425 and then
6426 Nkind (Parent (Gen_Id)) not in N_Generic_Renaming_Declaration
6427 and then not In_Open_Scopes (Inst_Par)
6428 then
6429 Install_Parent (Inst_Par);
6430 Parent_Installed := True;
6432 -- The generic unit may be the renaming of the implicit child
6433 -- present in an instance. In that case the parent instance is
6434 -- obtained from the name of the renamed entity.
6436 elsif Ekind (Entity (Gen_Id)) = E_Generic_Package
6437 and then Present (Renamed_Entity (Entity (Gen_Id)))
6438 and then Is_Child_Unit (Renamed_Entity (Entity (Gen_Id)))
6439 then
6440 declare
6441 Renamed_Package : constant Node_Id :=
6442 Name (Parent (Entity (Gen_Id)));
6443 begin
6444 if Nkind (Renamed_Package) = N_Expanded_Name then
6445 Inst_Par := Entity (Prefix (Renamed_Package));
6446 Install_Parent (Inst_Par);
6447 Parent_Installed := True;
6448 end if;
6449 end;
6450 end if;
6451 end if;
6453 elsif Nkind (Gen_Id) = N_Expanded_Name then
6455 -- Entity already present, analyze prefix, whose meaning may be
6456 -- an instance in the current context. If it is an instance of
6457 -- a relative within another, the proper parent may still have
6458 -- to be installed, if they are not of the same generation.
6460 Analyze (Prefix (Gen_Id));
6462 -- In the unlikely case that a local declaration hides the name
6463 -- of the parent package, locate it on the homonym chain. If the
6464 -- context is an instance of the parent, the renaming entity is
6465 -- flagged as such.
6467 Inst_Par := Entity (Prefix (Gen_Id));
6468 while Present (Inst_Par)
6469 and then not Is_Package_Or_Generic_Package (Inst_Par)
6470 loop
6471 Inst_Par := Homonym (Inst_Par);
6472 end loop;
6474 pragma Assert (Present (Inst_Par));
6475 Set_Entity (Prefix (Gen_Id), Inst_Par);
6477 if In_Enclosing_Instance then
6478 null;
6480 elsif Present (Entity (Gen_Id))
6481 and then Is_Child_Unit (Entity (Gen_Id))
6482 and then not In_Open_Scopes (Inst_Par)
6483 then
6484 Install_Parent (Inst_Par);
6485 Parent_Installed := True;
6486 end if;
6488 elsif In_Enclosing_Instance then
6490 -- The child unit is found in some enclosing scope
6492 null;
6494 else
6495 Analyze (Gen_Id);
6497 -- If this is the renaming of the implicit child in a parent
6498 -- instance, recover the parent name and install it.
6500 if Is_Entity_Name (Gen_Id) then
6501 E := Entity (Gen_Id);
6503 if Is_Generic_Unit (E)
6504 and then Nkind (Parent (E)) in N_Generic_Renaming_Declaration
6505 and then Is_Child_Unit (Renamed_Object (E))
6506 and then Is_Generic_Unit (Scope (Renamed_Object (E)))
6507 and then Nkind (Name (Parent (E))) = N_Expanded_Name
6508 then
6509 Rewrite (Gen_Id,
6510 New_Copy_Tree (Name (Parent (E))));
6511 Inst_Par := Entity (Prefix (Gen_Id));
6513 if not In_Open_Scopes (Inst_Par) then
6514 Install_Parent (Inst_Par);
6515 Parent_Installed := True;
6516 end if;
6518 -- If it is a child unit of a non-generic parent, it may be
6519 -- use-visible and given by a direct name. Install parent as
6520 -- for other cases.
6522 elsif Is_Generic_Unit (E)
6523 and then Is_Child_Unit (E)
6524 and then
6525 Nkind (Parent (Gen_Id)) not in N_Generic_Renaming_Declaration
6526 and then not Is_Generic_Unit (Scope (E))
6527 then
6528 if not In_Open_Scopes (Scope (E)) then
6529 Install_Parent (Scope (E));
6530 Parent_Installed := True;
6531 end if;
6532 end if;
6533 end if;
6534 end if;
6535 end Check_Generic_Child_Unit;
6537 -----------------------------
6538 -- Check_Hidden_Child_Unit --
6539 -----------------------------
6541 procedure Check_Hidden_Child_Unit
6542 (N : Node_Id;
6543 Gen_Unit : Entity_Id;
6544 Act_Decl_Id : Entity_Id)
6546 Gen_Id : constant Node_Id := Name (N);
6548 begin
6549 if Is_Child_Unit (Gen_Unit)
6550 and then Is_Child_Unit (Act_Decl_Id)
6551 and then Nkind (Gen_Id) = N_Expanded_Name
6552 and then Entity (Prefix (Gen_Id)) = Scope (Act_Decl_Id)
6553 and then Chars (Gen_Unit) = Chars (Act_Decl_Id)
6554 then
6555 Error_Msg_Node_2 := Scope (Act_Decl_Id);
6556 Error_Msg_NE
6557 ("generic unit & is implicitly declared in &",
6558 Defining_Unit_Name (N), Gen_Unit);
6559 Error_Msg_N ("\instance must have different name",
6560 Defining_Unit_Name (N));
6561 end if;
6562 end Check_Hidden_Child_Unit;
6564 ------------------------
6565 -- Check_Private_View --
6566 ------------------------
6568 procedure Check_Private_View (N : Node_Id) is
6569 T : constant Entity_Id := Etype (N);
6570 BT : Entity_Id;
6572 begin
6573 -- Exchange views if the type was not private in the generic but is
6574 -- private at the point of instantiation. Do not exchange views if
6575 -- the scope of the type is in scope. This can happen if both generic
6576 -- and instance are sibling units, or if type is defined in a parent.
6577 -- In this case the visibility of the type will be correct for all
6578 -- semantic checks.
6580 if Present (T) then
6581 BT := Base_Type (T);
6583 if Is_Private_Type (T)
6584 and then not Has_Private_View (N)
6585 and then Present (Full_View (T))
6586 and then not In_Open_Scopes (Scope (T))
6587 then
6588 -- In the generic, the full type was visible. Save the private
6589 -- entity, for subsequent exchange.
6591 Switch_View (T);
6593 elsif Has_Private_View (N)
6594 and then not Is_Private_Type (T)
6595 and then not Has_Been_Exchanged (T)
6596 and then Etype (Get_Associated_Node (N)) /= T
6597 then
6598 -- Only the private declaration was visible in the generic. If
6599 -- the type appears in a subtype declaration, the subtype in the
6600 -- instance must have a view compatible with that of its parent,
6601 -- which must be exchanged (see corresponding code in Restore_
6602 -- Private_Views). Otherwise, if the type is defined in a parent
6603 -- unit, leave full visibility within instance, which is safe.
6605 if In_Open_Scopes (Scope (Base_Type (T)))
6606 and then not Is_Private_Type (Base_Type (T))
6607 and then Comes_From_Source (Base_Type (T))
6608 then
6609 null;
6611 elsif Nkind (Parent (N)) = N_Subtype_Declaration
6612 or else not In_Private_Part (Scope (Base_Type (T)))
6613 then
6614 Prepend_Elmt (T, Exchanged_Views);
6615 Exchange_Declarations (Etype (Get_Associated_Node (N)));
6616 end if;
6618 -- For composite types with inconsistent representation exchange
6619 -- component types accordingly.
6621 elsif Is_Access_Type (T)
6622 and then Is_Private_Type (Designated_Type (T))
6623 and then not Has_Private_View (N)
6624 and then Present (Full_View (Designated_Type (T)))
6625 then
6626 Switch_View (Designated_Type (T));
6628 elsif Is_Array_Type (T) then
6629 if Is_Private_Type (Component_Type (T))
6630 and then not Has_Private_View (N)
6631 and then Present (Full_View (Component_Type (T)))
6632 then
6633 Switch_View (Component_Type (T));
6634 end if;
6636 -- The normal exchange mechanism relies on the setting of a
6637 -- flag on the reference in the generic. However, an additional
6638 -- mechanism is needed for types that are not explicitly
6639 -- mentioned in the generic, but may be needed in expanded code
6640 -- in the instance. This includes component types of arrays and
6641 -- designated types of access types. This processing must also
6642 -- include the index types of arrays which we take care of here.
6644 declare
6645 Indx : Node_Id;
6646 Typ : Entity_Id;
6648 begin
6649 Indx := First_Index (T);
6650 while Present (Indx) loop
6651 Typ := Base_Type (Etype (Indx));
6653 if Is_Private_Type (Typ)
6654 and then Present (Full_View (Typ))
6655 then
6656 Switch_View (Typ);
6657 end if;
6659 Next_Index (Indx);
6660 end loop;
6661 end;
6663 elsif Is_Private_Type (T)
6664 and then Present (Full_View (T))
6665 and then Is_Array_Type (Full_View (T))
6666 and then Is_Private_Type (Component_Type (Full_View (T)))
6667 then
6668 Switch_View (T);
6670 -- Finally, a non-private subtype may have a private base type, which
6671 -- must be exchanged for consistency. This can happen when a package
6672 -- body is instantiated, when the scope stack is empty but in fact
6673 -- the subtype and the base type are declared in an enclosing scope.
6675 -- Note that in this case we introduce an inconsistency in the view
6676 -- set, because we switch the base type BT, but there could be some
6677 -- private dependent subtypes of BT which remain unswitched. Such
6678 -- subtypes might need to be switched at a later point (see specific
6679 -- provision for that case in Switch_View).
6681 elsif not Is_Private_Type (T)
6682 and then not Has_Private_View (N)
6683 and then Is_Private_Type (BT)
6684 and then Present (Full_View (BT))
6685 and then not Is_Generic_Type (BT)
6686 and then not In_Open_Scopes (BT)
6687 then
6688 Prepend_Elmt (Full_View (BT), Exchanged_Views);
6689 Exchange_Declarations (BT);
6690 end if;
6691 end if;
6692 end Check_Private_View;
6694 -----------------------------
6695 -- Check_Hidden_Primitives --
6696 -----------------------------
6698 function Check_Hidden_Primitives (Assoc_List : List_Id) return Elist_Id is
6699 Actual : Node_Id;
6700 Gen_T : Entity_Id;
6701 Result : Elist_Id := No_Elist;
6703 begin
6704 if No (Assoc_List) then
6705 return No_Elist;
6706 end if;
6708 -- Traverse the list of associations between formals and actuals
6709 -- searching for renamings of tagged types
6711 Actual := First (Assoc_List);
6712 while Present (Actual) loop
6713 if Nkind (Actual) = N_Subtype_Declaration then
6714 Gen_T := Generic_Parent_Type (Actual);
6716 if Present (Gen_T)
6717 and then Is_Tagged_Type (Gen_T)
6718 then
6719 -- Traverse the list of primitives of the actual types
6720 -- searching for hidden primitives that are visible in the
6721 -- corresponding generic formal; leave them visible and
6722 -- append them to Result to restore their decoration later.
6724 Install_Hidden_Primitives
6725 (Prims_List => Result,
6726 Gen_T => Gen_T,
6727 Act_T => Entity (Subtype_Indication (Actual)));
6728 end if;
6729 end if;
6731 Next (Actual);
6732 end loop;
6734 return Result;
6735 end Check_Hidden_Primitives;
6737 --------------------------
6738 -- Contains_Instance_Of --
6739 --------------------------
6741 function Contains_Instance_Of
6742 (Inner : Entity_Id;
6743 Outer : Entity_Id;
6744 N : Node_Id) return Boolean
6746 Elmt : Elmt_Id;
6747 Scop : Entity_Id;
6749 begin
6750 Scop := Outer;
6752 -- Verify that there are no circular instantiations. We check whether
6753 -- the unit contains an instance of the current scope or some enclosing
6754 -- scope (in case one of the instances appears in a subunit). Longer
6755 -- circularities involving subunits might seem too pathological to
6756 -- consider, but they were not too pathological for the authors of
6757 -- DEC bc30vsq, so we loop over all enclosing scopes, and mark all
6758 -- enclosing generic scopes as containing an instance.
6760 loop
6761 -- Within a generic subprogram body, the scope is not generic, to
6762 -- allow for recursive subprograms. Use the declaration to determine
6763 -- whether this is a generic unit.
6765 if Ekind (Scop) = E_Generic_Package
6766 or else (Is_Subprogram (Scop)
6767 and then Nkind (Unit_Declaration_Node (Scop)) =
6768 N_Generic_Subprogram_Declaration)
6769 then
6770 Elmt := First_Elmt (Inner_Instances (Inner));
6772 while Present (Elmt) loop
6773 if Node (Elmt) = Scop then
6774 Error_Msg_Node_2 := Inner;
6775 Error_Msg_NE
6776 ("circular Instantiation: & instantiated within &!",
6777 N, Scop);
6778 return True;
6780 elsif Node (Elmt) = Inner then
6781 return True;
6783 elsif Contains_Instance_Of (Node (Elmt), Scop, N) then
6784 Error_Msg_Node_2 := Inner;
6785 Error_Msg_NE
6786 ("circular Instantiation: & instantiated within &!",
6787 N, Node (Elmt));
6788 return True;
6789 end if;
6791 Next_Elmt (Elmt);
6792 end loop;
6794 -- Indicate that Inner is being instantiated within Scop
6796 Append_Elmt (Inner, Inner_Instances (Scop));
6797 end if;
6799 if Scop = Standard_Standard then
6800 exit;
6801 else
6802 Scop := Scope (Scop);
6803 end if;
6804 end loop;
6806 return False;
6807 end Contains_Instance_Of;
6809 -----------------------
6810 -- Copy_Generic_Node --
6811 -----------------------
6813 function Copy_Generic_Node
6814 (N : Node_Id;
6815 Parent_Id : Node_Id;
6816 Instantiating : Boolean) return Node_Id
6818 Ent : Entity_Id;
6819 New_N : Node_Id;
6821 function Copy_Generic_Descendant (D : Union_Id) return Union_Id;
6822 -- Check the given value of one of the Fields referenced by the current
6823 -- node to determine whether to copy it recursively. The field may hold
6824 -- a Node_Id, a List_Id, or an Elist_Id, or a plain value (Sloc, Uint,
6825 -- Char) in which case it need not be copied.
6827 procedure Copy_Descendants;
6828 -- Common utility for various nodes
6830 function Copy_Generic_Elist (E : Elist_Id) return Elist_Id;
6831 -- Make copy of element list
6833 function Copy_Generic_List
6834 (L : List_Id;
6835 Parent_Id : Node_Id) return List_Id;
6836 -- Apply Copy_Node recursively to the members of a node list
6838 function In_Defining_Unit_Name (Nam : Node_Id) return Boolean;
6839 -- True if an identifier is part of the defining program unit name of
6840 -- a child unit. The entity of such an identifier must be kept (for
6841 -- ASIS use) even though as the name of an enclosing generic it would
6842 -- otherwise not be preserved in the generic tree.
6844 ----------------------
6845 -- Copy_Descendants --
6846 ----------------------
6848 procedure Copy_Descendants is
6850 use Atree.Unchecked_Access;
6851 -- This code section is part of the implementation of an untyped
6852 -- tree traversal, so it needs direct access to node fields.
6854 begin
6855 Set_Field1 (New_N, Copy_Generic_Descendant (Field1 (N)));
6856 Set_Field2 (New_N, Copy_Generic_Descendant (Field2 (N)));
6857 Set_Field3 (New_N, Copy_Generic_Descendant (Field3 (N)));
6858 Set_Field4 (New_N, Copy_Generic_Descendant (Field4 (N)));
6859 Set_Field5 (New_N, Copy_Generic_Descendant (Field5 (N)));
6860 end Copy_Descendants;
6862 -----------------------------
6863 -- Copy_Generic_Descendant --
6864 -----------------------------
6866 function Copy_Generic_Descendant (D : Union_Id) return Union_Id is
6867 begin
6868 if D = Union_Id (Empty) then
6869 return D;
6871 elsif D in Node_Range then
6872 return Union_Id
6873 (Copy_Generic_Node (Node_Id (D), New_N, Instantiating));
6875 elsif D in List_Range then
6876 return Union_Id (Copy_Generic_List (List_Id (D), New_N));
6878 elsif D in Elist_Range then
6879 return Union_Id (Copy_Generic_Elist (Elist_Id (D)));
6881 -- Nothing else is copyable (e.g. Uint values), return as is
6883 else
6884 return D;
6885 end if;
6886 end Copy_Generic_Descendant;
6888 ------------------------
6889 -- Copy_Generic_Elist --
6890 ------------------------
6892 function Copy_Generic_Elist (E : Elist_Id) return Elist_Id is
6893 M : Elmt_Id;
6894 L : Elist_Id;
6896 begin
6897 if Present (E) then
6898 L := New_Elmt_List;
6899 M := First_Elmt (E);
6900 while Present (M) loop
6901 Append_Elmt
6902 (Copy_Generic_Node (Node (M), Empty, Instantiating), L);
6903 Next_Elmt (M);
6904 end loop;
6906 return L;
6908 else
6909 return No_Elist;
6910 end if;
6911 end Copy_Generic_Elist;
6913 -----------------------
6914 -- Copy_Generic_List --
6915 -----------------------
6917 function Copy_Generic_List
6918 (L : List_Id;
6919 Parent_Id : Node_Id) return List_Id
6921 N : Node_Id;
6922 New_L : List_Id;
6924 begin
6925 if Present (L) then
6926 New_L := New_List;
6927 Set_Parent (New_L, Parent_Id);
6929 N := First (L);
6930 while Present (N) loop
6931 Append (Copy_Generic_Node (N, Empty, Instantiating), New_L);
6932 Next (N);
6933 end loop;
6935 return New_L;
6937 else
6938 return No_List;
6939 end if;
6940 end Copy_Generic_List;
6942 ---------------------------
6943 -- In_Defining_Unit_Name --
6944 ---------------------------
6946 function In_Defining_Unit_Name (Nam : Node_Id) return Boolean is
6947 begin
6948 return Present (Parent (Nam))
6949 and then (Nkind (Parent (Nam)) = N_Defining_Program_Unit_Name
6950 or else
6951 (Nkind (Parent (Nam)) = N_Expanded_Name
6952 and then In_Defining_Unit_Name (Parent (Nam))));
6953 end In_Defining_Unit_Name;
6955 -- Start of processing for Copy_Generic_Node
6957 begin
6958 if N = Empty then
6959 return N;
6960 end if;
6962 New_N := New_Copy (N);
6964 -- Copy aspects if present
6966 if Has_Aspects (N) then
6967 Set_Has_Aspects (New_N, False);
6968 Set_Aspect_Specifications
6969 (New_N, Copy_Generic_List (Aspect_Specifications (N), Parent_Id));
6970 end if;
6972 if Instantiating then
6973 Adjust_Instantiation_Sloc (New_N, S_Adjustment);
6974 end if;
6976 if not Is_List_Member (N) then
6977 Set_Parent (New_N, Parent_Id);
6978 end if;
6980 -- If defining identifier, then all fields have been copied already
6982 if Nkind (New_N) in N_Entity then
6983 null;
6985 -- Special casing for identifiers and other entity names and operators
6987 elsif Nkind_In (New_N, N_Identifier,
6988 N_Character_Literal,
6989 N_Expanded_Name,
6990 N_Operator_Symbol)
6991 or else Nkind (New_N) in N_Op
6992 then
6993 if not Instantiating then
6995 -- Link both nodes in order to assign subsequently the entity of
6996 -- the copy to the original node, in case this is a global
6997 -- reference.
6999 Set_Associated_Node (N, New_N);
7001 -- If we are within an instantiation, this is a nested generic
7002 -- that has already been analyzed at the point of definition.
7003 -- We must preserve references that were global to the enclosing
7004 -- parent at that point. Other occurrences, whether global or
7005 -- local to the current generic, must be resolved anew, so we
7006 -- reset the entity in the generic copy. A global reference has a
7007 -- smaller depth than the parent, or else the same depth in case
7008 -- both are distinct compilation units.
7010 -- A child unit is implicitly declared within the enclosing parent
7011 -- but is in fact global to it, and must be preserved.
7013 -- It is also possible for Current_Instantiated_Parent to be
7014 -- defined, and for this not to be a nested generic, namely if
7015 -- the unit is loaded through Rtsfind. In that case, the entity of
7016 -- New_N is only a link to the associated node, and not a defining
7017 -- occurrence.
7019 -- The entities for parent units in the defining_program_unit of a
7020 -- generic child unit are established when the context of the unit
7021 -- is first analyzed, before the generic copy is made. They are
7022 -- preserved in the copy for use in ASIS queries.
7024 Ent := Entity (New_N);
7026 if No (Current_Instantiated_Parent.Gen_Id) then
7027 if No (Ent)
7028 or else Nkind (Ent) /= N_Defining_Identifier
7029 or else not In_Defining_Unit_Name (N)
7030 then
7031 Set_Associated_Node (New_N, Empty);
7032 end if;
7034 elsif No (Ent)
7035 or else
7036 not Nkind_In (Ent, N_Defining_Identifier,
7037 N_Defining_Character_Literal,
7038 N_Defining_Operator_Symbol)
7039 or else No (Scope (Ent))
7040 or else
7041 (Scope (Ent) = Current_Instantiated_Parent.Gen_Id
7042 and then not Is_Child_Unit (Ent))
7043 or else
7044 (Scope_Depth (Scope (Ent)) >
7045 Scope_Depth (Current_Instantiated_Parent.Gen_Id)
7046 and then
7047 Get_Source_Unit (Ent) =
7048 Get_Source_Unit (Current_Instantiated_Parent.Gen_Id))
7049 then
7050 Set_Associated_Node (New_N, Empty);
7051 end if;
7053 -- Case of instantiating identifier or some other name or operator
7055 else
7056 -- If the associated node is still defined, the entity in it
7057 -- is global, and must be copied to the instance. If this copy
7058 -- is being made for a body to inline, it is applied to an
7059 -- instantiated tree, and the entity is already present and
7060 -- must be also preserved.
7062 declare
7063 Assoc : constant Node_Id := Get_Associated_Node (N);
7065 begin
7066 if Present (Assoc) then
7067 if Nkind (Assoc) = Nkind (N) then
7068 Set_Entity (New_N, Entity (Assoc));
7069 Check_Private_View (N);
7071 -- The name in the call may be a selected component if the
7072 -- call has not been analyzed yet, as may be the case for
7073 -- pre/post conditions in a generic unit.
7075 elsif Nkind (Assoc) = N_Function_Call
7076 and then Is_Entity_Name (Name (Assoc))
7077 then
7078 Set_Entity (New_N, Entity (Name (Assoc)));
7080 elsif Nkind_In (Assoc, N_Defining_Identifier,
7081 N_Defining_Character_Literal,
7082 N_Defining_Operator_Symbol)
7083 and then Expander_Active
7084 then
7085 -- Inlining case: we are copying a tree that contains
7086 -- global entities, which are preserved in the copy to be
7087 -- used for subsequent inlining.
7089 null;
7091 else
7092 Set_Entity (New_N, Empty);
7093 end if;
7094 end if;
7095 end;
7096 end if;
7098 -- For expanded name, we must copy the Prefix and Selector_Name
7100 if Nkind (N) = N_Expanded_Name then
7101 Set_Prefix
7102 (New_N, Copy_Generic_Node (Prefix (N), New_N, Instantiating));
7104 Set_Selector_Name (New_N,
7105 Copy_Generic_Node (Selector_Name (N), New_N, Instantiating));
7107 -- For operators, we must copy the right operand
7109 elsif Nkind (N) in N_Op then
7110 Set_Right_Opnd (New_N,
7111 Copy_Generic_Node (Right_Opnd (N), New_N, Instantiating));
7113 -- And for binary operators, the left operand as well
7115 if Nkind (N) in N_Binary_Op then
7116 Set_Left_Opnd (New_N,
7117 Copy_Generic_Node (Left_Opnd (N), New_N, Instantiating));
7118 end if;
7119 end if;
7121 -- Special casing for stubs
7123 elsif Nkind (N) in N_Body_Stub then
7125 -- In any case, we must copy the specification or defining
7126 -- identifier as appropriate.
7128 if Nkind (N) = N_Subprogram_Body_Stub then
7129 Set_Specification (New_N,
7130 Copy_Generic_Node (Specification (N), New_N, Instantiating));
7132 else
7133 Set_Defining_Identifier (New_N,
7134 Copy_Generic_Node
7135 (Defining_Identifier (N), New_N, Instantiating));
7136 end if;
7138 -- If we are not instantiating, then this is where we load and
7139 -- analyze subunits, i.e. at the point where the stub occurs. A
7140 -- more permissive system might defer this analysis to the point
7141 -- of instantiation, but this seems too complicated for now.
7143 if not Instantiating then
7144 declare
7145 Subunit_Name : constant Unit_Name_Type := Get_Unit_Name (N);
7146 Subunit : Node_Id;
7147 Unum : Unit_Number_Type;
7148 New_Body : Node_Id;
7150 begin
7151 -- Make sure that, if it is a subunit of the main unit that is
7152 -- preprocessed and if -gnateG is specified, the preprocessed
7153 -- file will be written.
7155 Lib.Analysing_Subunit_Of_Main :=
7156 Lib.In_Extended_Main_Source_Unit (N);
7157 Unum :=
7158 Load_Unit
7159 (Load_Name => Subunit_Name,
7160 Required => False,
7161 Subunit => True,
7162 Error_Node => N);
7163 Lib.Analysing_Subunit_Of_Main := False;
7165 -- If the proper body is not found, a warning message will be
7166 -- emitted when analyzing the stub, or later at the point of
7167 -- instantiation. Here we just leave the stub as is.
7169 if Unum = No_Unit then
7170 Subunits_Missing := True;
7171 goto Subunit_Not_Found;
7172 end if;
7174 Subunit := Cunit (Unum);
7176 if Nkind (Unit (Subunit)) /= N_Subunit then
7177 Error_Msg_N
7178 ("found child unit instead of expected SEPARATE subunit",
7179 Subunit);
7180 Error_Msg_Sloc := Sloc (N);
7181 Error_Msg_N ("\to complete stub #", Subunit);
7182 goto Subunit_Not_Found;
7183 end if;
7185 -- We must create a generic copy of the subunit, in order to
7186 -- perform semantic analysis on it, and we must replace the
7187 -- stub in the original generic unit with the subunit, in order
7188 -- to preserve non-local references within.
7190 -- Only the proper body needs to be copied. Library_Unit and
7191 -- context clause are simply inherited by the generic copy.
7192 -- Note that the copy (which may be recursive if there are
7193 -- nested subunits) must be done first, before attaching it to
7194 -- the enclosing generic.
7196 New_Body :=
7197 Copy_Generic_Node
7198 (Proper_Body (Unit (Subunit)),
7199 Empty, Instantiating => False);
7201 -- Now place the original proper body in the original generic
7202 -- unit. This is a body, not a compilation unit.
7204 Rewrite (N, Proper_Body (Unit (Subunit)));
7205 Set_Is_Compilation_Unit (Defining_Entity (N), False);
7206 Set_Was_Originally_Stub (N);
7208 -- Finally replace the body of the subunit with its copy, and
7209 -- make this new subunit into the library unit of the generic
7210 -- copy, which does not have stubs any longer.
7212 Set_Proper_Body (Unit (Subunit), New_Body);
7213 Set_Library_Unit (New_N, Subunit);
7214 Inherit_Context (Unit (Subunit), N);
7215 end;
7217 -- If we are instantiating, this must be an error case, since
7218 -- otherwise we would have replaced the stub node by the proper body
7219 -- that corresponds. So just ignore it in the copy (i.e. we have
7220 -- copied it, and that is good enough).
7222 else
7223 null;
7224 end if;
7226 <<Subunit_Not_Found>> null;
7228 -- If the node is a compilation unit, it is the subunit of a stub, which
7229 -- has been loaded already (see code below). In this case, the library
7230 -- unit field of N points to the parent unit (which is a compilation
7231 -- unit) and need not (and cannot) be copied.
7233 -- When the proper body of the stub is analyzed, the library_unit link
7234 -- is used to establish the proper context (see sem_ch10).
7236 -- The other fields of a compilation unit are copied as usual
7238 elsif Nkind (N) = N_Compilation_Unit then
7240 -- This code can only be executed when not instantiating, because in
7241 -- the copy made for an instantiation, the compilation unit node has
7242 -- disappeared at the point that a stub is replaced by its proper
7243 -- body.
7245 pragma Assert (not Instantiating);
7247 Set_Context_Items (New_N,
7248 Copy_Generic_List (Context_Items (N), New_N));
7250 Set_Unit (New_N,
7251 Copy_Generic_Node (Unit (N), New_N, False));
7253 Set_First_Inlined_Subprogram (New_N,
7254 Copy_Generic_Node
7255 (First_Inlined_Subprogram (N), New_N, False));
7257 Set_Aux_Decls_Node (New_N,
7258 Copy_Generic_Node (Aux_Decls_Node (N), New_N, False));
7260 -- For an assignment node, the assignment is known to be semantically
7261 -- legal if we are instantiating the template. This avoids incorrect
7262 -- diagnostics in generated code.
7264 elsif Nkind (N) = N_Assignment_Statement then
7266 -- Copy name and expression fields in usual manner
7268 Set_Name (New_N,
7269 Copy_Generic_Node (Name (N), New_N, Instantiating));
7271 Set_Expression (New_N,
7272 Copy_Generic_Node (Expression (N), New_N, Instantiating));
7274 if Instantiating then
7275 Set_Assignment_OK (Name (New_N), True);
7276 end if;
7278 elsif Nkind_In (N, N_Aggregate, N_Extension_Aggregate) then
7279 if not Instantiating then
7280 Set_Associated_Node (N, New_N);
7282 else
7283 if Present (Get_Associated_Node (N))
7284 and then Nkind (Get_Associated_Node (N)) = Nkind (N)
7285 then
7286 -- In the generic the aggregate has some composite type. If at
7287 -- the point of instantiation the type has a private view,
7288 -- install the full view (and that of its ancestors, if any).
7290 declare
7291 T : Entity_Id := (Etype (Get_Associated_Node (New_N)));
7292 Rt : Entity_Id;
7294 begin
7295 if Present (T)
7296 and then Is_Private_Type (T)
7297 then
7298 Switch_View (T);
7299 end if;
7301 if Present (T)
7302 and then Is_Tagged_Type (T)
7303 and then Is_Derived_Type (T)
7304 then
7305 Rt := Root_Type (T);
7307 loop
7308 T := Etype (T);
7310 if Is_Private_Type (T) then
7311 Switch_View (T);
7312 end if;
7314 exit when T = Rt;
7315 end loop;
7316 end if;
7317 end;
7318 end if;
7319 end if;
7321 -- Do not copy the associated node, which points to the generic copy
7322 -- of the aggregate.
7324 declare
7325 use Atree.Unchecked_Access;
7326 -- This code section is part of the implementation of an untyped
7327 -- tree traversal, so it needs direct access to node fields.
7329 begin
7330 Set_Field1 (New_N, Copy_Generic_Descendant (Field1 (N)));
7331 Set_Field2 (New_N, Copy_Generic_Descendant (Field2 (N)));
7332 Set_Field3 (New_N, Copy_Generic_Descendant (Field3 (N)));
7333 Set_Field5 (New_N, Copy_Generic_Descendant (Field5 (N)));
7334 end;
7336 -- Allocators do not have an identifier denoting the access type, so we
7337 -- must locate it through the expression to check whether the views are
7338 -- consistent.
7340 elsif Nkind (N) = N_Allocator
7341 and then Nkind (Expression (N)) = N_Qualified_Expression
7342 and then Is_Entity_Name (Subtype_Mark (Expression (N)))
7343 and then Instantiating
7344 then
7345 declare
7346 T : constant Node_Id :=
7347 Get_Associated_Node (Subtype_Mark (Expression (N)));
7348 Acc_T : Entity_Id;
7350 begin
7351 if Present (T) then
7353 -- Retrieve the allocator node in the generic copy
7355 Acc_T := Etype (Parent (Parent (T)));
7356 if Present (Acc_T)
7357 and then Is_Private_Type (Acc_T)
7358 then
7359 Switch_View (Acc_T);
7360 end if;
7361 end if;
7363 Copy_Descendants;
7364 end;
7366 -- For a proper body, we must catch the case of a proper body that
7367 -- replaces a stub. This represents the point at which a separate
7368 -- compilation unit, and hence template file, may be referenced, so we
7369 -- must make a new source instantiation entry for the template of the
7370 -- subunit, and ensure that all nodes in the subunit are adjusted using
7371 -- this new source instantiation entry.
7373 elsif Nkind (N) in N_Proper_Body then
7374 declare
7375 Save_Adjustment : constant Sloc_Adjustment := S_Adjustment;
7377 begin
7378 if Instantiating and then Was_Originally_Stub (N) then
7379 Create_Instantiation_Source
7380 (Instantiation_Node,
7381 Defining_Entity (N),
7382 False,
7383 S_Adjustment);
7384 end if;
7386 -- Now copy the fields of the proper body, using the new
7387 -- adjustment factor if one was needed as per test above.
7389 Copy_Descendants;
7391 -- Restore the original adjustment factor in case changed
7393 S_Adjustment := Save_Adjustment;
7394 end;
7396 -- Don't copy Ident or Comment pragmas, since the comment belongs to the
7397 -- generic unit, not to the instantiating unit.
7399 elsif Nkind (N) = N_Pragma and then Instantiating then
7400 declare
7401 Prag_Id : constant Pragma_Id := Get_Pragma_Id (N);
7402 begin
7403 if Prag_Id = Pragma_Ident or else Prag_Id = Pragma_Comment then
7404 New_N := Make_Null_Statement (Sloc (N));
7405 else
7406 Copy_Descendants;
7407 end if;
7408 end;
7410 elsif Nkind_In (N, N_Integer_Literal, N_Real_Literal) then
7412 -- No descendant fields need traversing
7414 null;
7416 elsif Nkind (N) = N_String_Literal
7417 and then Present (Etype (N))
7418 and then Instantiating
7419 then
7420 -- If the string is declared in an outer scope, the string_literal
7421 -- subtype created for it may have the wrong scope. We force the
7422 -- reanalysis of the constant to generate a new itype in the proper
7423 -- context.
7425 Set_Etype (New_N, Empty);
7426 Set_Analyzed (New_N, False);
7428 -- For the remaining nodes, copy their descendants recursively
7430 else
7431 Copy_Descendants;
7433 if Instantiating and then Nkind (N) = N_Subprogram_Body then
7434 Set_Generic_Parent (Specification (New_N), N);
7436 -- Should preserve Corresponding_Spec??? (12.3(14))
7437 end if;
7438 end if;
7440 return New_N;
7441 end Copy_Generic_Node;
7443 ----------------------------
7444 -- Denotes_Formal_Package --
7445 ----------------------------
7447 function Denotes_Formal_Package
7448 (Pack : Entity_Id;
7449 On_Exit : Boolean := False;
7450 Instance : Entity_Id := Empty) return Boolean
7452 Par : Entity_Id;
7453 Scop : constant Entity_Id := Scope (Pack);
7454 E : Entity_Id;
7456 function Is_Actual_Of_Previous_Formal (P : Entity_Id) return Boolean;
7457 -- The package in question may be an actual for a previous formal
7458 -- package P of the current instance, so examine its actuals as well.
7459 -- This must be recursive over other formal packages.
7461 ----------------------------------
7462 -- Is_Actual_Of_Previous_Formal --
7463 ----------------------------------
7465 function Is_Actual_Of_Previous_Formal (P : Entity_Id) return Boolean is
7466 E1 : Entity_Id;
7468 begin
7469 E1 := First_Entity (P);
7470 while Present (E1) and then E1 /= Instance loop
7471 if Ekind (E1) = E_Package
7472 and then Nkind (Parent (E1)) = N_Package_Renaming_Declaration
7473 then
7474 if Renamed_Object (E1) = Pack then
7475 return True;
7477 elsif E1 = P or else Renamed_Object (E1) = P then
7478 return False;
7480 elsif Is_Actual_Of_Previous_Formal (E1) then
7481 return True;
7482 end if;
7483 end if;
7485 Next_Entity (E1);
7486 end loop;
7488 return False;
7489 end Is_Actual_Of_Previous_Formal;
7491 -- Start of processing for Denotes_Formal_Package
7493 begin
7494 if On_Exit then
7495 Par :=
7496 Instance_Envs.Table
7497 (Instance_Envs.Last).Instantiated_Parent.Act_Id;
7498 else
7499 Par := Current_Instantiated_Parent.Act_Id;
7500 end if;
7502 if Ekind (Scop) = E_Generic_Package
7503 or else Nkind (Unit_Declaration_Node (Scop)) =
7504 N_Generic_Subprogram_Declaration
7505 then
7506 return True;
7508 elsif Nkind (Original_Node (Unit_Declaration_Node (Pack))) =
7509 N_Formal_Package_Declaration
7510 then
7511 return True;
7513 elsif No (Par) then
7514 return False;
7516 else
7517 -- Check whether this package is associated with a formal package of
7518 -- the enclosing instantiation. Iterate over the list of renamings.
7520 E := First_Entity (Par);
7521 while Present (E) loop
7522 if Ekind (E) /= E_Package
7523 or else Nkind (Parent (E)) /= N_Package_Renaming_Declaration
7524 then
7525 null;
7527 elsif Renamed_Object (E) = Par then
7528 return False;
7530 elsif Renamed_Object (E) = Pack then
7531 return True;
7533 elsif Is_Actual_Of_Previous_Formal (E) then
7534 return True;
7536 end if;
7538 Next_Entity (E);
7539 end loop;
7541 return False;
7542 end if;
7543 end Denotes_Formal_Package;
7545 -----------------
7546 -- End_Generic --
7547 -----------------
7549 procedure End_Generic is
7550 begin
7551 -- ??? More things could be factored out in this routine. Should
7552 -- probably be done at a later stage.
7554 Inside_A_Generic := Generic_Flags.Table (Generic_Flags.Last);
7555 Generic_Flags.Decrement_Last;
7557 Expander_Mode_Restore;
7558 end End_Generic;
7560 -------------
7561 -- Earlier --
7562 -------------
7564 function Earlier (N1, N2 : Node_Id) return Boolean is
7565 procedure Find_Depth (P : in out Node_Id; D : in out Integer);
7566 -- Find distance from given node to enclosing compilation unit
7568 ----------------
7569 -- Find_Depth --
7570 ----------------
7572 procedure Find_Depth (P : in out Node_Id; D : in out Integer) is
7573 begin
7574 while Present (P)
7575 and then Nkind (P) /= N_Compilation_Unit
7576 loop
7577 P := True_Parent (P);
7578 D := D + 1;
7579 end loop;
7580 end Find_Depth;
7582 -- Local declarations
7584 D1 : Integer := 0;
7585 D2 : Integer := 0;
7586 P1 : Node_Id := N1;
7587 P2 : Node_Id := N2;
7588 T1 : Source_Ptr;
7589 T2 : Source_Ptr;
7591 -- Start of processing for Earlier
7593 begin
7594 Find_Depth (P1, D1);
7595 Find_Depth (P2, D2);
7597 if P1 /= P2 then
7598 return False;
7599 else
7600 P1 := N1;
7601 P2 := N2;
7602 end if;
7604 while D1 > D2 loop
7605 P1 := True_Parent (P1);
7606 D1 := D1 - 1;
7607 end loop;
7609 while D2 > D1 loop
7610 P2 := True_Parent (P2);
7611 D2 := D2 - 1;
7612 end loop;
7614 -- At this point P1 and P2 are at the same distance from the root.
7615 -- We examine their parents until we find a common declarative list.
7616 -- If we reach the root, N1 and N2 do not descend from the same
7617 -- declarative list (e.g. one is nested in the declarative part and
7618 -- the other is in a block in the statement part) and the earlier
7619 -- one is already frozen.
7621 while not Is_List_Member (P1)
7622 or else not Is_List_Member (P2)
7623 or else List_Containing (P1) /= List_Containing (P2)
7624 loop
7625 P1 := True_Parent (P1);
7626 P2 := True_Parent (P2);
7628 if Nkind (Parent (P1)) = N_Subunit then
7629 P1 := Corresponding_Stub (Parent (P1));
7630 end if;
7632 if Nkind (Parent (P2)) = N_Subunit then
7633 P2 := Corresponding_Stub (Parent (P2));
7634 end if;
7636 if P1 = P2 then
7637 return False;
7638 end if;
7639 end loop;
7641 -- Expanded code usually shares the source location of the original
7642 -- construct it was generated for. This however may not necessarely
7643 -- reflect the true location of the code within the tree.
7645 -- Before comparing the slocs of the two nodes, make sure that we are
7646 -- working with correct source locations. Assume that P1 is to the left
7647 -- of P2. If either one does not come from source, traverse the common
7648 -- list heading towards the other node and locate the first source
7649 -- statement.
7651 -- P1 P2
7652 -- ----+===+===+--------------+===+===+----
7653 -- expanded code expanded code
7655 if not Comes_From_Source (P1) then
7656 while Present (P1) loop
7658 -- Neither P2 nor a source statement were located during the
7659 -- search. If we reach the end of the list, then P1 does not
7660 -- occur earlier than P2.
7662 -- ---->
7663 -- start --- P2 ----- P1 --- end
7665 if No (Next (P1)) then
7666 return False;
7668 -- We encounter P2 while going to the right of the list. This
7669 -- means that P1 does indeed appear earlier.
7671 -- ---->
7672 -- start --- P1 ===== P2 --- end
7673 -- expanded code in between
7675 elsif P1 = P2 then
7676 return True;
7678 -- No need to look any further since we have located a source
7679 -- statement.
7681 elsif Comes_From_Source (P1) then
7682 exit;
7683 end if;
7685 -- Keep going right
7687 Next (P1);
7688 end loop;
7689 end if;
7691 if not Comes_From_Source (P2) then
7692 while Present (P2) loop
7694 -- Neither P1 nor a source statement were located during the
7695 -- search. If we reach the start of the list, then P1 does not
7696 -- occur earlier than P2.
7698 -- <----
7699 -- start --- P2 --- P1 --- end
7701 if No (Prev (P2)) then
7702 return False;
7704 -- We encounter P1 while going to the left of the list. This
7705 -- means that P1 does indeed appear earlier.
7707 -- <----
7708 -- start --- P1 ===== P2 --- end
7709 -- expanded code in between
7711 elsif P2 = P1 then
7712 return True;
7714 -- No need to look any further since we have located a source
7715 -- statement.
7717 elsif Comes_From_Source (P2) then
7718 exit;
7719 end if;
7721 -- Keep going left
7723 Prev (P2);
7724 end loop;
7725 end if;
7727 -- At this point either both nodes came from source or we approximated
7728 -- their source locations through neighbouring source statements.
7730 T1 := Top_Level_Location (Sloc (P1));
7731 T2 := Top_Level_Location (Sloc (P2));
7733 -- When two nodes come from the same instance, they have identical top
7734 -- level locations. To determine proper relation within the tree, check
7735 -- their locations within the template.
7737 if T1 = T2 then
7738 return Sloc (P1) < Sloc (P2);
7740 -- The two nodes either come from unrelated instances or do not come
7741 -- from instantiated code at all.
7743 else
7744 return T1 < T2;
7745 end if;
7746 end Earlier;
7748 ----------------------
7749 -- Find_Actual_Type --
7750 ----------------------
7752 function Find_Actual_Type
7753 (Typ : Entity_Id;
7754 Gen_Type : Entity_Id) return Entity_Id
7756 Gen_Scope : constant Entity_Id := Scope (Gen_Type);
7757 T : Entity_Id;
7759 begin
7760 -- Special processing only applies to child units
7762 if not Is_Child_Unit (Gen_Scope) then
7763 return Get_Instance_Of (Typ);
7765 -- If designated or component type is itself a formal of the child unit,
7766 -- its instance is available.
7768 elsif Scope (Typ) = Gen_Scope then
7769 return Get_Instance_Of (Typ);
7771 -- If the array or access type is not declared in the parent unit,
7772 -- no special processing needed.
7774 elsif not Is_Generic_Type (Typ)
7775 and then Scope (Gen_Scope) /= Scope (Typ)
7776 then
7777 return Get_Instance_Of (Typ);
7779 -- Otherwise, retrieve designated or component type by visibility
7781 else
7782 T := Current_Entity (Typ);
7783 while Present (T) loop
7784 if In_Open_Scopes (Scope (T)) then
7785 return T;
7787 elsif Is_Generic_Actual_Type (T) then
7788 return T;
7789 end if;
7791 T := Homonym (T);
7792 end loop;
7794 return Typ;
7795 end if;
7796 end Find_Actual_Type;
7798 ----------------------------
7799 -- Freeze_Subprogram_Body --
7800 ----------------------------
7802 procedure Freeze_Subprogram_Body
7803 (Inst_Node : Node_Id;
7804 Gen_Body : Node_Id;
7805 Pack_Id : Entity_Id)
7807 Gen_Unit : constant Entity_Id := Get_Generic_Entity (Inst_Node);
7808 Par : constant Entity_Id := Scope (Gen_Unit);
7809 E_G_Id : Entity_Id;
7810 Enc_G : Entity_Id;
7811 Enc_I : Node_Id;
7812 F_Node : Node_Id;
7814 function Enclosing_Package_Body (N : Node_Id) return Node_Id;
7815 -- Find innermost package body that encloses the given node, and which
7816 -- is not a compilation unit. Freeze nodes for the instance, or for its
7817 -- enclosing body, may be inserted after the enclosing_body of the
7818 -- generic unit. Used to determine proper placement of freeze node for
7819 -- both package and subprogram instances.
7821 function Package_Freeze_Node (B : Node_Id) return Node_Id;
7822 -- Find entity for given package body, and locate or create a freeze
7823 -- node for it.
7825 ----------------------------
7826 -- Enclosing_Package_Body --
7827 ----------------------------
7829 function Enclosing_Package_Body (N : Node_Id) return Node_Id is
7830 P : Node_Id;
7832 begin
7833 P := Parent (N);
7834 while Present (P)
7835 and then Nkind (Parent (P)) /= N_Compilation_Unit
7836 loop
7837 if Nkind (P) = N_Package_Body then
7838 if Nkind (Parent (P)) = N_Subunit then
7839 return Corresponding_Stub (Parent (P));
7840 else
7841 return P;
7842 end if;
7843 end if;
7845 P := True_Parent (P);
7846 end loop;
7848 return Empty;
7849 end Enclosing_Package_Body;
7851 -------------------------
7852 -- Package_Freeze_Node --
7853 -------------------------
7855 function Package_Freeze_Node (B : Node_Id) return Node_Id is
7856 Id : Entity_Id;
7858 begin
7859 if Nkind (B) = N_Package_Body then
7860 Id := Corresponding_Spec (B);
7861 else pragma Assert (Nkind (B) = N_Package_Body_Stub);
7862 Id := Corresponding_Spec (Proper_Body (Unit (Library_Unit (B))));
7863 end if;
7865 Ensure_Freeze_Node (Id);
7866 return Freeze_Node (Id);
7867 end Package_Freeze_Node;
7869 -- Start of processing of Freeze_Subprogram_Body
7871 begin
7872 -- If the instance and the generic body appear within the same unit, and
7873 -- the instance precedes the generic, the freeze node for the instance
7874 -- must appear after that of the generic. If the generic is nested
7875 -- within another instance I2, then current instance must be frozen
7876 -- after I2. In both cases, the freeze nodes are those of enclosing
7877 -- packages. Otherwise, the freeze node is placed at the end of the
7878 -- current declarative part.
7880 Enc_G := Enclosing_Package_Body (Gen_Body);
7881 Enc_I := Enclosing_Package_Body (Inst_Node);
7882 Ensure_Freeze_Node (Pack_Id);
7883 F_Node := Freeze_Node (Pack_Id);
7885 if Is_Generic_Instance (Par)
7886 and then Present (Freeze_Node (Par))
7887 and then In_Same_Declarative_Part (Freeze_Node (Par), Inst_Node)
7888 then
7889 -- The parent was a premature instantiation. Insert freeze node at
7890 -- the end the current declarative part.
7892 if ABE_Is_Certain (Get_Package_Instantiation_Node (Par)) then
7893 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
7895 -- Handle the following case:
7897 -- package Parent_Inst is new ...
7898 -- Parent_Inst []
7900 -- procedure P ... -- this body freezes Parent_Inst
7902 -- package Inst is new ...
7904 -- In this particular scenario, the freeze node for Inst must be
7905 -- inserted in the same manner as that of Parent_Inst - before the
7906 -- next source body or at the end of the declarative list (body not
7907 -- available). If body P did not exist and Parent_Inst was frozen
7908 -- after Inst, either by a body following Inst or at the end of the
7909 -- declarative region, the freeze node for Inst must be inserted
7910 -- after that of Parent_Inst. This relation is established by
7911 -- comparing the Slocs of Parent_Inst freeze node and Inst.
7913 elsif List_Containing (Get_Package_Instantiation_Node (Par)) =
7914 List_Containing (Inst_Node)
7915 and then Sloc (Freeze_Node (Par)) < Sloc (Inst_Node)
7916 then
7917 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
7919 else
7920 Insert_After (Freeze_Node (Par), F_Node);
7921 end if;
7923 -- The body enclosing the instance should be frozen after the body that
7924 -- includes the generic, because the body of the instance may make
7925 -- references to entities therein. If the two are not in the same
7926 -- declarative part, or if the one enclosing the instance is frozen
7927 -- already, freeze the instance at the end of the current declarative
7928 -- part.
7930 elsif Is_Generic_Instance (Par)
7931 and then Present (Freeze_Node (Par))
7932 and then Present (Enc_I)
7933 then
7934 if In_Same_Declarative_Part (Freeze_Node (Par), Enc_I)
7935 or else
7936 (Nkind (Enc_I) = N_Package_Body
7937 and then
7938 In_Same_Declarative_Part (Freeze_Node (Par), Parent (Enc_I)))
7939 then
7940 -- The enclosing package may contain several instances. Rather
7941 -- than computing the earliest point at which to insert its freeze
7942 -- node, we place it at the end of the declarative part of the
7943 -- parent of the generic.
7945 Insert_Freeze_Node_For_Instance
7946 (Freeze_Node (Par), Package_Freeze_Node (Enc_I));
7947 end if;
7949 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
7951 elsif Present (Enc_G)
7952 and then Present (Enc_I)
7953 and then Enc_G /= Enc_I
7954 and then Earlier (Inst_Node, Gen_Body)
7955 then
7956 if Nkind (Enc_G) = N_Package_Body then
7957 E_G_Id := Corresponding_Spec (Enc_G);
7958 else pragma Assert (Nkind (Enc_G) = N_Package_Body_Stub);
7959 E_G_Id :=
7960 Corresponding_Spec (Proper_Body (Unit (Library_Unit (Enc_G))));
7961 end if;
7963 -- Freeze package that encloses instance, and place node after the
7964 -- package that encloses generic. If enclosing package is already
7965 -- frozen we have to assume it is at the proper place. This may be a
7966 -- potential ABE that requires dynamic checking. Do not add a freeze
7967 -- node if the package that encloses the generic is inside the body
7968 -- that encloses the instance, because the freeze node would be in
7969 -- the wrong scope. Additional contortions needed if the bodies are
7970 -- within a subunit.
7972 declare
7973 Enclosing_Body : Node_Id;
7975 begin
7976 if Nkind (Enc_I) = N_Package_Body_Stub then
7977 Enclosing_Body := Proper_Body (Unit (Library_Unit (Enc_I)));
7978 else
7979 Enclosing_Body := Enc_I;
7980 end if;
7982 if Parent (List_Containing (Enc_G)) /= Enclosing_Body then
7983 Insert_Freeze_Node_For_Instance
7984 (Enc_G, Package_Freeze_Node (Enc_I));
7985 end if;
7986 end;
7988 -- Freeze enclosing subunit before instance
7990 Ensure_Freeze_Node (E_G_Id);
7992 if not Is_List_Member (Freeze_Node (E_G_Id)) then
7993 Insert_After (Enc_G, Freeze_Node (E_G_Id));
7994 end if;
7996 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
7998 else
7999 -- If none of the above, insert freeze node at the end of the current
8000 -- declarative part.
8002 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8003 end if;
8004 end Freeze_Subprogram_Body;
8006 ----------------
8007 -- Get_Gen_Id --
8008 ----------------
8010 function Get_Gen_Id (E : Assoc_Ptr) return Entity_Id is
8011 begin
8012 return Generic_Renamings.Table (E).Gen_Id;
8013 end Get_Gen_Id;
8015 ---------------------
8016 -- Get_Instance_Of --
8017 ---------------------
8019 function Get_Instance_Of (A : Entity_Id) return Entity_Id is
8020 Res : constant Assoc_Ptr := Generic_Renamings_HTable.Get (A);
8022 begin
8023 if Res /= Assoc_Null then
8024 return Generic_Renamings.Table (Res).Act_Id;
8025 else
8026 -- On exit, entity is not instantiated: not a generic parameter, or
8027 -- else parameter of an inner generic unit.
8029 return A;
8030 end if;
8031 end Get_Instance_Of;
8033 ------------------------------------
8034 -- Get_Package_Instantiation_Node --
8035 ------------------------------------
8037 function Get_Package_Instantiation_Node (A : Entity_Id) return Node_Id is
8038 Decl : Node_Id := Unit_Declaration_Node (A);
8039 Inst : Node_Id;
8041 begin
8042 -- If the Package_Instantiation attribute has been set on the package
8043 -- entity, then use it directly when it (or its Original_Node) refers
8044 -- to an N_Package_Instantiation node. In principle it should be
8045 -- possible to have this field set in all cases, which should be
8046 -- investigated, and would allow this function to be significantly
8047 -- simplified. ???
8049 Inst := Package_Instantiation (A);
8051 if Present (Inst) then
8052 if Nkind (Inst) = N_Package_Instantiation then
8053 return Inst;
8055 elsif Nkind (Original_Node (Inst)) = N_Package_Instantiation then
8056 return Original_Node (Inst);
8057 end if;
8058 end if;
8060 -- If the instantiation is a compilation unit that does not need body
8061 -- then the instantiation node has been rewritten as a package
8062 -- declaration for the instance, and we return the original node.
8064 -- If it is a compilation unit and the instance node has not been
8065 -- rewritten, then it is still the unit of the compilation. Finally, if
8066 -- a body is present, this is a parent of the main unit whose body has
8067 -- been compiled for inlining purposes, and the instantiation node has
8068 -- been rewritten with the instance body.
8070 -- Otherwise the instantiation node appears after the declaration. If
8071 -- the entity is a formal package, the declaration may have been
8072 -- rewritten as a generic declaration (in the case of a formal with box)
8073 -- or left as a formal package declaration if it has actuals, and is
8074 -- found with a forward search.
8076 if Nkind (Parent (Decl)) = N_Compilation_Unit then
8077 if Nkind (Decl) = N_Package_Declaration
8078 and then Present (Corresponding_Body (Decl))
8079 then
8080 Decl := Unit_Declaration_Node (Corresponding_Body (Decl));
8081 end if;
8083 if Nkind (Original_Node (Decl)) = N_Package_Instantiation then
8084 return Original_Node (Decl);
8085 else
8086 return Unit (Parent (Decl));
8087 end if;
8089 elsif Nkind (Decl) = N_Package_Declaration
8090 and then Nkind (Original_Node (Decl)) = N_Formal_Package_Declaration
8091 then
8092 return Original_Node (Decl);
8094 else
8095 Inst := Next (Decl);
8096 while not Nkind_In (Inst, N_Package_Instantiation,
8097 N_Formal_Package_Declaration)
8098 loop
8099 Next (Inst);
8100 end loop;
8102 return Inst;
8103 end if;
8104 end Get_Package_Instantiation_Node;
8106 ------------------------
8107 -- Has_Been_Exchanged --
8108 ------------------------
8110 function Has_Been_Exchanged (E : Entity_Id) return Boolean is
8111 Next : Elmt_Id;
8113 begin
8114 Next := First_Elmt (Exchanged_Views);
8115 while Present (Next) loop
8116 if Full_View (Node (Next)) = E then
8117 return True;
8118 end if;
8120 Next_Elmt (Next);
8121 end loop;
8123 return False;
8124 end Has_Been_Exchanged;
8126 ----------
8127 -- Hash --
8128 ----------
8130 function Hash (F : Entity_Id) return HTable_Range is
8131 begin
8132 return HTable_Range (F mod HTable_Size);
8133 end Hash;
8135 ------------------------
8136 -- Hide_Current_Scope --
8137 ------------------------
8139 procedure Hide_Current_Scope is
8140 C : constant Entity_Id := Current_Scope;
8141 E : Entity_Id;
8143 begin
8144 Set_Is_Hidden_Open_Scope (C);
8146 E := First_Entity (C);
8147 while Present (E) loop
8148 if Is_Immediately_Visible (E) then
8149 Set_Is_Immediately_Visible (E, False);
8150 Append_Elmt (E, Hidden_Entities);
8151 end if;
8153 Next_Entity (E);
8154 end loop;
8156 -- Make the scope name invisible as well. This is necessary, but might
8157 -- conflict with calls to Rtsfind later on, in case the scope is a
8158 -- predefined one. There is no clean solution to this problem, so for
8159 -- now we depend on the user not redefining Standard itself in one of
8160 -- the parent units.
8162 if Is_Immediately_Visible (C) and then C /= Standard_Standard then
8163 Set_Is_Immediately_Visible (C, False);
8164 Append_Elmt (C, Hidden_Entities);
8165 end if;
8167 end Hide_Current_Scope;
8169 --------------
8170 -- Init_Env --
8171 --------------
8173 procedure Init_Env is
8174 Saved : Instance_Env;
8176 begin
8177 Saved.Instantiated_Parent := Current_Instantiated_Parent;
8178 Saved.Exchanged_Views := Exchanged_Views;
8179 Saved.Hidden_Entities := Hidden_Entities;
8180 Saved.Current_Sem_Unit := Current_Sem_Unit;
8181 Saved.Parent_Unit_Visible := Parent_Unit_Visible;
8182 Saved.Instance_Parent_Unit := Instance_Parent_Unit;
8184 -- Save configuration switches. These may be reset if the unit is a
8185 -- predefined unit, and the current mode is not Ada 2005.
8187 Save_Opt_Config_Switches (Saved.Switches);
8189 Instance_Envs.Append (Saved);
8191 Exchanged_Views := New_Elmt_List;
8192 Hidden_Entities := New_Elmt_List;
8194 -- Make dummy entry for Instantiated parent. If generic unit is legal,
8195 -- this is set properly in Set_Instance_Env.
8197 Current_Instantiated_Parent :=
8198 (Current_Scope, Current_Scope, Assoc_Null);
8199 end Init_Env;
8201 ------------------------------
8202 -- In_Same_Declarative_Part --
8203 ------------------------------
8205 function In_Same_Declarative_Part
8206 (F_Node : Node_Id;
8207 Inst : Node_Id) return Boolean
8209 Decls : constant Node_Id := Parent (F_Node);
8210 Nod : Node_Id := Parent (Inst);
8212 begin
8213 while Present (Nod) loop
8214 if Nod = Decls then
8215 return True;
8217 elsif Nkind_In (Nod, N_Subprogram_Body,
8218 N_Package_Body,
8219 N_Package_Declaration,
8220 N_Task_Body,
8221 N_Protected_Body,
8222 N_Block_Statement)
8223 then
8224 return False;
8226 elsif Nkind (Nod) = N_Subunit then
8227 Nod := Corresponding_Stub (Nod);
8229 elsif Nkind (Nod) = N_Compilation_Unit then
8230 return False;
8232 else
8233 Nod := Parent (Nod);
8234 end if;
8235 end loop;
8237 return False;
8238 end In_Same_Declarative_Part;
8240 ---------------------
8241 -- In_Main_Context --
8242 ---------------------
8244 function In_Main_Context (E : Entity_Id) return Boolean is
8245 Context : List_Id;
8246 Clause : Node_Id;
8247 Nam : Node_Id;
8249 begin
8250 if not Is_Compilation_Unit (E)
8251 or else Ekind (E) /= E_Package
8252 or else In_Private_Part (E)
8253 then
8254 return False;
8255 end if;
8257 Context := Context_Items (Cunit (Main_Unit));
8259 Clause := First (Context);
8260 while Present (Clause) loop
8261 if Nkind (Clause) = N_With_Clause then
8262 Nam := Name (Clause);
8264 -- If the current scope is part of the context of the main unit,
8265 -- analysis of the corresponding with_clause is not complete, and
8266 -- the entity is not set. We use the Chars field directly, which
8267 -- might produce false positives in rare cases, but guarantees
8268 -- that we produce all the instance bodies we will need.
8270 if (Is_Entity_Name (Nam) and then Chars (Nam) = Chars (E))
8271 or else (Nkind (Nam) = N_Selected_Component
8272 and then Chars (Selector_Name (Nam)) = Chars (E))
8273 then
8274 return True;
8275 end if;
8276 end if;
8278 Next (Clause);
8279 end loop;
8281 return False;
8282 end In_Main_Context;
8284 ---------------------
8285 -- Inherit_Context --
8286 ---------------------
8288 procedure Inherit_Context (Gen_Decl : Node_Id; Inst : Node_Id) is
8289 Current_Context : List_Id;
8290 Current_Unit : Node_Id;
8291 Item : Node_Id;
8292 New_I : Node_Id;
8294 Clause : Node_Id;
8295 OK : Boolean;
8296 Lib_Unit : Node_Id;
8298 begin
8299 if Nkind (Parent (Gen_Decl)) = N_Compilation_Unit then
8301 -- The inherited context is attached to the enclosing compilation
8302 -- unit. This is either the main unit, or the declaration for the
8303 -- main unit (in case the instantiation appears within the package
8304 -- declaration and the main unit is its body).
8306 Current_Unit := Parent (Inst);
8307 while Present (Current_Unit)
8308 and then Nkind (Current_Unit) /= N_Compilation_Unit
8309 loop
8310 Current_Unit := Parent (Current_Unit);
8311 end loop;
8313 Current_Context := Context_Items (Current_Unit);
8315 Item := First (Context_Items (Parent (Gen_Decl)));
8316 while Present (Item) loop
8317 if Nkind (Item) = N_With_Clause then
8318 Lib_Unit := Library_Unit (Item);
8320 -- Take care to prevent direct cyclic with's
8322 if Lib_Unit /= Current_Unit then
8324 -- Do not add a unit if it is already in the context
8326 Clause := First (Current_Context);
8327 OK := True;
8328 while Present (Clause) loop
8329 if Nkind (Clause) = N_With_Clause and then
8330 Library_Unit (Clause) = Lib_Unit
8331 then
8332 OK := False;
8333 exit;
8334 end if;
8336 Next (Clause);
8337 end loop;
8339 if OK then
8340 New_I := New_Copy (Item);
8341 Set_Implicit_With (New_I, True);
8342 Set_Implicit_With_From_Instantiation (New_I, True);
8343 Append (New_I, Current_Context);
8344 end if;
8345 end if;
8346 end if;
8348 Next (Item);
8349 end loop;
8350 end if;
8351 end Inherit_Context;
8353 ----------------
8354 -- Initialize --
8355 ----------------
8357 procedure Initialize is
8358 begin
8359 Generic_Renamings.Init;
8360 Instance_Envs.Init;
8361 Generic_Flags.Init;
8362 Generic_Renamings_HTable.Reset;
8363 Circularity_Detected := False;
8364 Exchanged_Views := No_Elist;
8365 Hidden_Entities := No_Elist;
8366 end Initialize;
8368 -------------------------------------
8369 -- Insert_Freeze_Node_For_Instance --
8370 -------------------------------------
8372 procedure Insert_Freeze_Node_For_Instance
8373 (N : Node_Id;
8374 F_Node : Node_Id)
8376 Decl : Node_Id;
8377 Decls : List_Id;
8378 Inst : Entity_Id;
8379 Par_N : Node_Id;
8381 function Enclosing_Body (N : Node_Id) return Node_Id;
8382 -- Find enclosing package or subprogram body, if any. Freeze node may
8383 -- be placed at end of current declarative list if previous instance
8384 -- and current one have different enclosing bodies.
8386 function Previous_Instance (Gen : Entity_Id) return Entity_Id;
8387 -- Find the local instance, if any, that declares the generic that is
8388 -- being instantiated. If present, the freeze node for this instance
8389 -- must follow the freeze node for the previous instance.
8391 --------------------
8392 -- Enclosing_Body --
8393 --------------------
8395 function Enclosing_Body (N : Node_Id) return Node_Id is
8396 P : Node_Id;
8398 begin
8399 P := Parent (N);
8400 while Present (P)
8401 and then Nkind (Parent (P)) /= N_Compilation_Unit
8402 loop
8403 if Nkind_In (P, N_Package_Body, N_Subprogram_Body) then
8404 if Nkind (Parent (P)) = N_Subunit then
8405 return Corresponding_Stub (Parent (P));
8406 else
8407 return P;
8408 end if;
8409 end if;
8411 P := True_Parent (P);
8412 end loop;
8414 return Empty;
8415 end Enclosing_Body;
8417 -----------------------
8418 -- Previous_Instance --
8419 -----------------------
8421 function Previous_Instance (Gen : Entity_Id) return Entity_Id is
8422 S : Entity_Id;
8424 begin
8425 S := Scope (Gen);
8426 while Present (S)
8427 and then S /= Standard_Standard
8428 loop
8429 if Is_Generic_Instance (S)
8430 and then In_Same_Source_Unit (S, N)
8431 then
8432 return S;
8433 end if;
8435 S := Scope (S);
8436 end loop;
8438 return Empty;
8439 end Previous_Instance;
8441 -- Start of processing for Insert_Freeze_Node_For_Instance
8443 begin
8444 if not Is_List_Member (F_Node) then
8445 Decl := N;
8446 Decls := List_Containing (N);
8447 Inst := Entity (F_Node);
8448 Par_N := Parent (Decls);
8450 -- When processing a subprogram instantiation, utilize the actual
8451 -- subprogram instantiation rather than its package wrapper as it
8452 -- carries all the context information.
8454 if Is_Wrapper_Package (Inst) then
8455 Inst := Related_Instance (Inst);
8456 end if;
8458 -- If this is a package instance, check whether the generic is
8459 -- declared in a previous instance and the current instance is
8460 -- not within the previous one.
8462 if Present (Generic_Parent (Parent (Inst)))
8463 and then Is_In_Main_Unit (N)
8464 then
8465 declare
8466 Enclosing_N : constant Node_Id := Enclosing_Body (N);
8467 Par_I : constant Entity_Id :=
8468 Previous_Instance
8469 (Generic_Parent (Parent (Inst)));
8470 Scop : Entity_Id;
8472 begin
8473 if Present (Par_I)
8474 and then Earlier (N, Freeze_Node (Par_I))
8475 then
8476 Scop := Scope (Inst);
8478 -- If the current instance is within the one that contains
8479 -- the generic, the freeze node for the current one must
8480 -- appear in the current declarative part. Ditto, if the
8481 -- current instance is within another package instance or
8482 -- within a body that does not enclose the current instance.
8483 -- In these three cases the freeze node of the previous
8484 -- instance is not relevant.
8486 while Present (Scop)
8487 and then Scop /= Standard_Standard
8488 loop
8489 exit when Scop = Par_I
8490 or else
8491 (Is_Generic_Instance (Scop)
8492 and then Scope_Depth (Scop) > Scope_Depth (Par_I));
8493 Scop := Scope (Scop);
8494 end loop;
8496 -- Previous instance encloses current instance
8498 if Scop = Par_I then
8499 null;
8501 -- If the next node is a source body we must freeze in
8502 -- the current scope as well.
8504 elsif Present (Next (N))
8505 and then Nkind_In (Next (N),
8506 N_Subprogram_Body, N_Package_Body)
8507 and then Comes_From_Source (Next (N))
8508 then
8509 null;
8511 -- Current instance is within an unrelated instance
8513 elsif Is_Generic_Instance (Scop) then
8514 null;
8516 -- Current instance is within an unrelated body
8518 elsif Present (Enclosing_N)
8519 and then Enclosing_N /= Enclosing_Body (Par_I)
8520 then
8521 null;
8523 else
8524 Insert_After (Freeze_Node (Par_I), F_Node);
8525 return;
8526 end if;
8527 end if;
8528 end;
8529 end if;
8531 -- When the instantiation occurs in a package declaration, append the
8532 -- freeze node to the private declarations (if any).
8534 if Nkind (Par_N) = N_Package_Specification
8535 and then Decls = Visible_Declarations (Par_N)
8536 and then Present (Private_Declarations (Par_N))
8537 and then not Is_Empty_List (Private_Declarations (Par_N))
8538 then
8539 Decls := Private_Declarations (Par_N);
8540 Decl := First (Decls);
8541 end if;
8543 -- Determine the proper freeze point of a package instantiation. We
8544 -- adhere to the general rule of a package or subprogram body causing
8545 -- freezing of anything before it in the same declarative region. In
8546 -- this case, the proper freeze point of a package instantiation is
8547 -- before the first source body which follows, or before a stub. This
8548 -- ensures that entities coming from the instance are already frozen
8549 -- and usable in source bodies.
8551 if Nkind (Par_N) /= N_Package_Declaration
8552 and then Ekind (Inst) = E_Package
8553 and then Is_Generic_Instance (Inst)
8554 and then
8555 not In_Same_Source_Unit (Generic_Parent (Parent (Inst)), Inst)
8556 then
8557 while Present (Decl) loop
8558 if (Nkind (Decl) in N_Unit_Body
8559 or else
8560 Nkind (Decl) in N_Body_Stub)
8561 and then Comes_From_Source (Decl)
8562 then
8563 Insert_Before (Decl, F_Node);
8564 return;
8565 end if;
8567 Next (Decl);
8568 end loop;
8569 end if;
8571 -- In a package declaration, or if no previous body, insert at end
8572 -- of list.
8574 Set_Sloc (F_Node, Sloc (Last (Decls)));
8575 Insert_After (Last (Decls), F_Node);
8576 end if;
8577 end Insert_Freeze_Node_For_Instance;
8579 ------------------
8580 -- Install_Body --
8581 ------------------
8583 procedure Install_Body
8584 (Act_Body : Node_Id;
8585 N : Node_Id;
8586 Gen_Body : Node_Id;
8587 Gen_Decl : Node_Id)
8589 Act_Id : constant Entity_Id := Corresponding_Spec (Act_Body);
8590 Act_Unit : constant Node_Id := Unit (Cunit (Get_Source_Unit (N)));
8591 Gen_Id : constant Entity_Id := Corresponding_Spec (Gen_Body);
8592 Par : constant Entity_Id := Scope (Gen_Id);
8593 Gen_Unit : constant Node_Id :=
8594 Unit (Cunit (Get_Source_Unit (Gen_Decl)));
8595 Orig_Body : Node_Id := Gen_Body;
8596 F_Node : Node_Id;
8597 Body_Unit : Node_Id;
8599 Must_Delay : Boolean;
8601 function In_Same_Enclosing_Subp return Boolean;
8602 -- Check whether instance and generic body are within same subprogram.
8604 function True_Sloc (N : Node_Id) return Source_Ptr;
8605 -- If the instance is nested inside a generic unit, the Sloc of the
8606 -- instance indicates the place of the original definition, not the
8607 -- point of the current enclosing instance. Pending a better usage of
8608 -- Slocs to indicate instantiation places, we determine the place of
8609 -- origin of a node by finding the maximum sloc of any ancestor node.
8610 -- Why is this not equivalent to Top_Level_Location ???
8612 ----------------------------
8613 -- In_Same_Enclosing_Subp --
8614 ----------------------------
8616 function In_Same_Enclosing_Subp return Boolean is
8617 Scop : Entity_Id;
8618 Subp : Entity_Id;
8620 begin
8621 Scop := Scope (Act_Id);
8622 while Scop /= Standard_Standard
8623 and then not Is_Overloadable (Scop)
8624 loop
8625 Scop := Scope (Scop);
8626 end loop;
8628 if Scop = Standard_Standard then
8629 return False;
8630 else
8631 Subp := Scop;
8632 end if;
8634 Scop := Scope (Gen_Id);
8635 while Scop /= Standard_Standard loop
8636 if Scop = Subp then
8637 return True;
8638 else
8639 Scop := Scope (Scop);
8640 end if;
8641 end loop;
8643 return False;
8644 end In_Same_Enclosing_Subp;
8646 ---------------
8647 -- True_Sloc --
8648 ---------------
8650 function True_Sloc (N : Node_Id) return Source_Ptr is
8651 Res : Source_Ptr;
8652 N1 : Node_Id;
8654 begin
8655 Res := Sloc (N);
8656 N1 := N;
8657 while Present (N1) and then N1 /= Act_Unit loop
8658 if Sloc (N1) > Res then
8659 Res := Sloc (N1);
8660 end if;
8662 N1 := Parent (N1);
8663 end loop;
8665 return Res;
8666 end True_Sloc;
8668 -- Start of processing for Install_Body
8670 begin
8671 -- If the body is a subunit, the freeze point is the corresponding stub
8672 -- in the current compilation, not the subunit itself.
8674 if Nkind (Parent (Gen_Body)) = N_Subunit then
8675 Orig_Body := Corresponding_Stub (Parent (Gen_Body));
8676 else
8677 Orig_Body := Gen_Body;
8678 end if;
8680 Body_Unit := Unit (Cunit (Get_Source_Unit (Orig_Body)));
8682 -- If the instantiation and the generic definition appear in the same
8683 -- package declaration, this is an early instantiation. If they appear
8684 -- in the same declarative part, it is an early instantiation only if
8685 -- the generic body appears textually later, and the generic body is
8686 -- also in the main unit.
8688 -- If instance is nested within a subprogram, and the generic body
8689 -- is not, the instance is delayed because the enclosing body is. If
8690 -- instance and body are within the same scope, or the same subprogram
8691 -- body, indicate explicitly that the instance is delayed.
8693 Must_Delay :=
8694 (Gen_Unit = Act_Unit
8695 and then (Nkind_In (Gen_Unit, N_Package_Declaration,
8696 N_Generic_Package_Declaration)
8697 or else (Gen_Unit = Body_Unit
8698 and then True_Sloc (N) < Sloc (Orig_Body)))
8699 and then Is_In_Main_Unit (Gen_Unit)
8700 and then (Scope (Act_Id) = Scope (Gen_Id)
8701 or else In_Same_Enclosing_Subp));
8703 -- If this is an early instantiation, the freeze node is placed after
8704 -- the generic body. Otherwise, if the generic appears in an instance,
8705 -- we cannot freeze the current instance until the outer one is frozen.
8706 -- This is only relevant if the current instance is nested within some
8707 -- inner scope not itself within the outer instance. If this scope is
8708 -- a package body in the same declarative part as the outer instance,
8709 -- then that body needs to be frozen after the outer instance. Finally,
8710 -- if no delay is needed, we place the freeze node at the end of the
8711 -- current declarative part.
8713 if Expander_Active then
8714 Ensure_Freeze_Node (Act_Id);
8715 F_Node := Freeze_Node (Act_Id);
8717 if Must_Delay then
8718 Insert_After (Orig_Body, F_Node);
8720 elsif Is_Generic_Instance (Par)
8721 and then Present (Freeze_Node (Par))
8722 and then Scope (Act_Id) /= Par
8723 then
8724 -- Freeze instance of inner generic after instance of enclosing
8725 -- generic.
8727 if In_Same_Declarative_Part (Freeze_Node (Par), N) then
8729 -- Handle the following case:
8731 -- package Parent_Inst is new ...
8732 -- Parent_Inst []
8734 -- procedure P ... -- this body freezes Parent_Inst
8736 -- package Inst is new ...
8738 -- In this particular scenario, the freeze node for Inst must
8739 -- be inserted in the same manner as that of Parent_Inst,
8740 -- before the next source body or at the end of the declarative
8741 -- list (body not available). If body P did not exist and
8742 -- Parent_Inst was frozen after Inst, either by a body
8743 -- following Inst or at the end of the declarative region,
8744 -- the freeze node for Inst must be inserted after that of
8745 -- Parent_Inst. This relation is established by comparing
8746 -- the Slocs of Parent_Inst freeze node and Inst.
8748 if List_Containing (Get_Package_Instantiation_Node (Par)) =
8749 List_Containing (N)
8750 and then Sloc (Freeze_Node (Par)) < Sloc (N)
8751 then
8752 Insert_Freeze_Node_For_Instance (N, F_Node);
8753 else
8754 Insert_After (Freeze_Node (Par), F_Node);
8755 end if;
8757 -- Freeze package enclosing instance of inner generic after
8758 -- instance of enclosing generic.
8760 elsif Nkind_In (Parent (N), N_Package_Body, N_Subprogram_Body)
8761 and then In_Same_Declarative_Part (Freeze_Node (Par), Parent (N))
8762 then
8763 declare
8764 Enclosing : Entity_Id;
8766 begin
8767 Enclosing := Corresponding_Spec (Parent (N));
8769 if No (Enclosing) then
8770 Enclosing := Defining_Entity (Parent (N));
8771 end if;
8773 Insert_Freeze_Node_For_Instance (N, F_Node);
8774 Ensure_Freeze_Node (Enclosing);
8776 if not Is_List_Member (Freeze_Node (Enclosing)) then
8778 -- The enclosing context is a subunit, insert the freeze
8779 -- node after the stub.
8781 if Nkind (Parent (Parent (N))) = N_Subunit then
8782 Insert_Freeze_Node_For_Instance
8783 (Corresponding_Stub (Parent (Parent (N))),
8784 Freeze_Node (Enclosing));
8786 -- The enclosing context is a package with a stub body
8787 -- which has already been replaced by the real body.
8788 -- Insert the freeze node after the actual body.
8790 elsif Ekind (Enclosing) = E_Package
8791 and then Present (Body_Entity (Enclosing))
8792 and then Was_Originally_Stub
8793 (Parent (Body_Entity (Enclosing)))
8794 then
8795 Insert_Freeze_Node_For_Instance
8796 (Parent (Body_Entity (Enclosing)),
8797 Freeze_Node (Enclosing));
8799 -- The parent instance has been frozen before the body of
8800 -- the enclosing package, insert the freeze node after
8801 -- the body.
8803 elsif List_Containing (Freeze_Node (Par)) =
8804 List_Containing (Parent (N))
8805 and then Sloc (Freeze_Node (Par)) < Sloc (Parent (N))
8806 then
8807 Insert_Freeze_Node_For_Instance
8808 (Parent (N), Freeze_Node (Enclosing));
8810 else
8811 Insert_After
8812 (Freeze_Node (Par), Freeze_Node (Enclosing));
8813 end if;
8814 end if;
8815 end;
8817 else
8818 Insert_Freeze_Node_For_Instance (N, F_Node);
8819 end if;
8821 else
8822 Insert_Freeze_Node_For_Instance (N, F_Node);
8823 end if;
8824 end if;
8826 Set_Is_Frozen (Act_Id);
8827 Insert_Before (N, Act_Body);
8828 Mark_Rewrite_Insertion (Act_Body);
8829 end Install_Body;
8831 -----------------------------
8832 -- Install_Formal_Packages --
8833 -----------------------------
8835 procedure Install_Formal_Packages (Par : Entity_Id) is
8836 E : Entity_Id;
8837 Gen : Entity_Id;
8838 Gen_E : Entity_Id := Empty;
8840 begin
8841 E := First_Entity (Par);
8843 -- If we are installing an instance parent, locate the formal packages
8844 -- of its generic parent.
8846 if Is_Generic_Instance (Par) then
8847 Gen := Generic_Parent (Package_Specification (Par));
8848 Gen_E := First_Entity (Gen);
8849 end if;
8851 while Present (E) loop
8852 if Ekind (E) = E_Package
8853 and then Nkind (Parent (E)) = N_Package_Renaming_Declaration
8854 then
8855 -- If this is the renaming for the parent instance, done
8857 if Renamed_Object (E) = Par then
8858 exit;
8860 -- The visibility of a formal of an enclosing generic is already
8861 -- correct.
8863 elsif Denotes_Formal_Package (E) then
8864 null;
8866 elsif Present (Associated_Formal_Package (E)) then
8867 Check_Generic_Actuals (Renamed_Object (E), True);
8868 Set_Is_Hidden (E, False);
8870 -- Find formal package in generic unit that corresponds to
8871 -- (instance of) formal package in instance.
8873 while Present (Gen_E) and then Chars (Gen_E) /= Chars (E) loop
8874 Next_Entity (Gen_E);
8875 end loop;
8877 if Present (Gen_E) then
8878 Map_Formal_Package_Entities (Gen_E, E);
8879 end if;
8880 end if;
8881 end if;
8883 Next_Entity (E);
8884 if Present (Gen_E) then
8885 Next_Entity (Gen_E);
8886 end if;
8887 end loop;
8888 end Install_Formal_Packages;
8890 --------------------
8891 -- Install_Parent --
8892 --------------------
8894 procedure Install_Parent (P : Entity_Id; In_Body : Boolean := False) is
8895 Ancestors : constant Elist_Id := New_Elmt_List;
8896 S : constant Entity_Id := Current_Scope;
8897 Inst_Par : Entity_Id;
8898 First_Par : Entity_Id;
8899 Inst_Node : Node_Id;
8900 Gen_Par : Entity_Id;
8901 First_Gen : Entity_Id;
8902 Elmt : Elmt_Id;
8904 procedure Install_Noninstance_Specs (Par : Entity_Id);
8905 -- Install the scopes of noninstance parent units ending with Par
8907 procedure Install_Spec (Par : Entity_Id);
8908 -- The child unit is within the declarative part of the parent, so the
8909 -- declarations within the parent are immediately visible.
8911 -------------------------------
8912 -- Install_Noninstance_Specs --
8913 -------------------------------
8915 procedure Install_Noninstance_Specs (Par : Entity_Id) is
8916 begin
8917 if Present (Par)
8918 and then Par /= Standard_Standard
8919 and then not In_Open_Scopes (Par)
8920 then
8921 Install_Noninstance_Specs (Scope (Par));
8922 Install_Spec (Par);
8923 end if;
8924 end Install_Noninstance_Specs;
8926 ------------------
8927 -- Install_Spec --
8928 ------------------
8930 procedure Install_Spec (Par : Entity_Id) is
8931 Spec : constant Node_Id := Package_Specification (Par);
8933 begin
8934 -- If this parent of the child instance is a top-level unit,
8935 -- then record the unit and its visibility for later resetting in
8936 -- Remove_Parent. We exclude units that are generic instances, as we
8937 -- only want to record this information for the ultimate top-level
8938 -- noninstance parent (is that always correct???).
8940 if Scope (Par) = Standard_Standard
8941 and then not Is_Generic_Instance (Par)
8942 then
8943 Parent_Unit_Visible := Is_Immediately_Visible (Par);
8944 Instance_Parent_Unit := Par;
8945 end if;
8947 -- Open the parent scope and make it and its declarations visible.
8948 -- If this point is not within a body, then only the visible
8949 -- declarations should be made visible, and installation of the
8950 -- private declarations is deferred until the appropriate point
8951 -- within analysis of the spec being instantiated (see the handling
8952 -- of parent visibility in Analyze_Package_Specification). This is
8953 -- relaxed in the case where the parent unit is Ada.Tags, to avoid
8954 -- private view problems that occur when compiling instantiations of
8955 -- a generic child of that package (Generic_Dispatching_Constructor).
8956 -- If the instance freezes a tagged type, inlinings of operations
8957 -- from Ada.Tags may need the full view of type Tag. If inlining took
8958 -- proper account of establishing visibility of inlined subprograms'
8959 -- parents then it should be possible to remove this
8960 -- special check. ???
8962 Push_Scope (Par);
8963 Set_Is_Immediately_Visible (Par);
8964 Install_Visible_Declarations (Par);
8965 Set_Use (Visible_Declarations (Spec));
8967 if In_Body or else Is_RTU (Par, Ada_Tags) then
8968 Install_Private_Declarations (Par);
8969 Set_Use (Private_Declarations (Spec));
8970 end if;
8971 end Install_Spec;
8973 -- Start of processing for Install_Parent
8975 begin
8976 -- We need to install the parent instance to compile the instantiation
8977 -- of the child, but the child instance must appear in the current
8978 -- scope. Given that we cannot place the parent above the current scope
8979 -- in the scope stack, we duplicate the current scope and unstack both
8980 -- after the instantiation is complete.
8982 -- If the parent is itself the instantiation of a child unit, we must
8983 -- also stack the instantiation of its parent, and so on. Each such
8984 -- ancestor is the prefix of the name in a prior instantiation.
8986 -- If this is a nested instance, the parent unit itself resolves to
8987 -- a renaming of the parent instance, whose declaration we need.
8989 -- Finally, the parent may be a generic (not an instance) when the
8990 -- child unit appears as a formal package.
8992 Inst_Par := P;
8994 if Present (Renamed_Entity (Inst_Par)) then
8995 Inst_Par := Renamed_Entity (Inst_Par);
8996 end if;
8998 First_Par := Inst_Par;
9000 Gen_Par := Generic_Parent (Package_Specification (Inst_Par));
9002 First_Gen := Gen_Par;
9004 while Present (Gen_Par)
9005 and then Is_Child_Unit (Gen_Par)
9006 loop
9007 -- Load grandparent instance as well
9009 Inst_Node := Get_Package_Instantiation_Node (Inst_Par);
9011 if Nkind (Name (Inst_Node)) = N_Expanded_Name then
9012 Inst_Par := Entity (Prefix (Name (Inst_Node)));
9014 if Present (Renamed_Entity (Inst_Par)) then
9015 Inst_Par := Renamed_Entity (Inst_Par);
9016 end if;
9018 Gen_Par := Generic_Parent (Package_Specification (Inst_Par));
9020 if Present (Gen_Par) then
9021 Prepend_Elmt (Inst_Par, Ancestors);
9023 else
9024 -- Parent is not the name of an instantiation
9026 Install_Noninstance_Specs (Inst_Par);
9027 exit;
9028 end if;
9030 else
9031 -- Previous error
9033 exit;
9034 end if;
9035 end loop;
9037 if Present (First_Gen) then
9038 Append_Elmt (First_Par, Ancestors);
9039 else
9040 Install_Noninstance_Specs (First_Par);
9041 end if;
9043 if not Is_Empty_Elmt_List (Ancestors) then
9044 Elmt := First_Elmt (Ancestors);
9045 while Present (Elmt) loop
9046 Install_Spec (Node (Elmt));
9047 Install_Formal_Packages (Node (Elmt));
9048 Next_Elmt (Elmt);
9049 end loop;
9050 end if;
9052 if not In_Body then
9053 Push_Scope (S);
9054 end if;
9055 end Install_Parent;
9057 -------------------------------
9058 -- Install_Hidden_Primitives --
9059 -------------------------------
9061 procedure Install_Hidden_Primitives
9062 (Prims_List : in out Elist_Id;
9063 Gen_T : Entity_Id;
9064 Act_T : Entity_Id)
9066 Elmt : Elmt_Id;
9067 List : Elist_Id := No_Elist;
9068 Prim_G_Elmt : Elmt_Id;
9069 Prim_A_Elmt : Elmt_Id;
9070 Prim_G : Node_Id;
9071 Prim_A : Node_Id;
9073 begin
9074 -- No action needed in case of serious errors because we cannot trust
9075 -- in the order of primitives
9077 if Serious_Errors_Detected > 0 then
9078 return;
9080 -- No action possible if we don't have available the list of primitive
9081 -- operations
9083 elsif No (Gen_T)
9084 or else not Is_Record_Type (Gen_T)
9085 or else not Is_Tagged_Type (Gen_T)
9086 or else not Is_Record_Type (Act_T)
9087 or else not Is_Tagged_Type (Act_T)
9088 then
9089 return;
9091 -- There is no need to handle interface types since their primitives
9092 -- cannot be hidden
9094 elsif Is_Interface (Gen_T) then
9095 return;
9096 end if;
9098 Prim_G_Elmt := First_Elmt (Primitive_Operations (Gen_T));
9100 if not Is_Class_Wide_Type (Act_T) then
9101 Prim_A_Elmt := First_Elmt (Primitive_Operations (Act_T));
9102 else
9103 Prim_A_Elmt := First_Elmt (Primitive_Operations (Root_Type (Act_T)));
9104 end if;
9106 loop
9107 -- Skip predefined primitives in the generic formal
9109 while Present (Prim_G_Elmt)
9110 and then Is_Predefined_Dispatching_Operation (Node (Prim_G_Elmt))
9111 loop
9112 Next_Elmt (Prim_G_Elmt);
9113 end loop;
9115 -- Skip predefined primitives in the generic actual
9117 while Present (Prim_A_Elmt)
9118 and then Is_Predefined_Dispatching_Operation (Node (Prim_A_Elmt))
9119 loop
9120 Next_Elmt (Prim_A_Elmt);
9121 end loop;
9123 exit when No (Prim_G_Elmt) or else No (Prim_A_Elmt);
9125 Prim_G := Node (Prim_G_Elmt);
9126 Prim_A := Node (Prim_A_Elmt);
9128 -- There is no need to handle interface primitives because their
9129 -- primitives are not hidden
9131 exit when Present (Interface_Alias (Prim_G));
9133 -- Here we install one hidden primitive
9135 if Chars (Prim_G) /= Chars (Prim_A)
9136 and then Has_Suffix (Prim_A, 'P')
9137 and then Remove_Suffix (Prim_A, 'P') = Chars (Prim_G)
9138 then
9139 Set_Chars (Prim_A, Chars (Prim_G));
9140 Append_New_Elmt (Prim_A, To => List);
9141 end if;
9143 Next_Elmt (Prim_A_Elmt);
9144 Next_Elmt (Prim_G_Elmt);
9145 end loop;
9147 -- Append the elements to the list of temporarily visible primitives
9148 -- avoiding duplicates.
9150 if Present (List) then
9151 if No (Prims_List) then
9152 Prims_List := New_Elmt_List;
9153 end if;
9155 Elmt := First_Elmt (List);
9156 while Present (Elmt) loop
9157 Append_Unique_Elmt (Node (Elmt), Prims_List);
9158 Next_Elmt (Elmt);
9159 end loop;
9160 end if;
9161 end Install_Hidden_Primitives;
9163 -------------------------------
9164 -- Restore_Hidden_Primitives --
9165 -------------------------------
9167 procedure Restore_Hidden_Primitives (Prims_List : in out Elist_Id) is
9168 Prim_Elmt : Elmt_Id;
9169 Prim : Node_Id;
9171 begin
9172 if Prims_List /= No_Elist then
9173 Prim_Elmt := First_Elmt (Prims_List);
9174 while Present (Prim_Elmt) loop
9175 Prim := Node (Prim_Elmt);
9176 Set_Chars (Prim, Add_Suffix (Prim, 'P'));
9177 Next_Elmt (Prim_Elmt);
9178 end loop;
9180 Prims_List := No_Elist;
9181 end if;
9182 end Restore_Hidden_Primitives;
9184 --------------------------------
9185 -- Instantiate_Formal_Package --
9186 --------------------------------
9188 function Instantiate_Formal_Package
9189 (Formal : Node_Id;
9190 Actual : Node_Id;
9191 Analyzed_Formal : Node_Id) return List_Id
9193 Loc : constant Source_Ptr := Sloc (Actual);
9194 Actual_Pack : Entity_Id;
9195 Formal_Pack : Entity_Id;
9196 Gen_Parent : Entity_Id;
9197 Decls : List_Id;
9198 Nod : Node_Id;
9199 Parent_Spec : Node_Id;
9201 procedure Find_Matching_Actual
9202 (F : Node_Id;
9203 Act : in out Entity_Id);
9204 -- We need to associate each formal entity in the formal package with
9205 -- the corresponding entity in the actual package. The actual package
9206 -- has been analyzed and possibly expanded, and as a result there is
9207 -- no one-to-one correspondence between the two lists (for example,
9208 -- the actual may include subtypes, itypes, and inherited primitive
9209 -- operations, interspersed among the renaming declarations for the
9210 -- actuals) . We retrieve the corresponding actual by name because each
9211 -- actual has the same name as the formal, and they do appear in the
9212 -- same order.
9214 function Get_Formal_Entity (N : Node_Id) return Entity_Id;
9215 -- Retrieve entity of defining entity of generic formal parameter.
9216 -- Only the declarations of formals need to be considered when
9217 -- linking them to actuals, but the declarative list may include
9218 -- internal entities generated during analysis, and those are ignored.
9220 procedure Match_Formal_Entity
9221 (Formal_Node : Node_Id;
9222 Formal_Ent : Entity_Id;
9223 Actual_Ent : Entity_Id);
9224 -- Associates the formal entity with the actual. In the case where
9225 -- Formal_Ent is a formal package, this procedure iterates through all
9226 -- of its formals and enters associations between the actuals occurring
9227 -- in the formal package's corresponding actual package (given by
9228 -- Actual_Ent) and the formal package's formal parameters. This
9229 -- procedure recurses if any of the parameters is itself a package.
9231 function Is_Instance_Of
9232 (Act_Spec : Entity_Id;
9233 Gen_Anc : Entity_Id) return Boolean;
9234 -- The actual can be an instantiation of a generic within another
9235 -- instance, in which case there is no direct link from it to the
9236 -- original generic ancestor. In that case, we recognize that the
9237 -- ultimate ancestor is the same by examining names and scopes.
9239 procedure Process_Nested_Formal (Formal : Entity_Id);
9240 -- If the current formal is declared with a box, its own formals are
9241 -- visible in the instance, as they were in the generic, and their
9242 -- Hidden flag must be reset. If some of these formals are themselves
9243 -- packages declared with a box, the processing must be recursive.
9245 --------------------------
9246 -- Find_Matching_Actual --
9247 --------------------------
9249 procedure Find_Matching_Actual
9250 (F : Node_Id;
9251 Act : in out Entity_Id)
9253 Formal_Ent : Entity_Id;
9255 begin
9256 case Nkind (Original_Node (F)) is
9257 when N_Formal_Object_Declaration |
9258 N_Formal_Type_Declaration =>
9259 Formal_Ent := Defining_Identifier (F);
9261 while Chars (Act) /= Chars (Formal_Ent) loop
9262 Next_Entity (Act);
9263 end loop;
9265 when N_Formal_Subprogram_Declaration |
9266 N_Formal_Package_Declaration |
9267 N_Package_Declaration |
9268 N_Generic_Package_Declaration =>
9269 Formal_Ent := Defining_Entity (F);
9271 while Chars (Act) /= Chars (Formal_Ent) loop
9272 Next_Entity (Act);
9273 end loop;
9275 when others =>
9276 raise Program_Error;
9277 end case;
9278 end Find_Matching_Actual;
9280 -------------------------
9281 -- Match_Formal_Entity --
9282 -------------------------
9284 procedure Match_Formal_Entity
9285 (Formal_Node : Node_Id;
9286 Formal_Ent : Entity_Id;
9287 Actual_Ent : Entity_Id)
9289 Act_Pkg : Entity_Id;
9291 begin
9292 Set_Instance_Of (Formal_Ent, Actual_Ent);
9294 if Ekind (Actual_Ent) = E_Package then
9296 -- Record associations for each parameter
9298 Act_Pkg := Actual_Ent;
9300 declare
9301 A_Ent : Entity_Id := First_Entity (Act_Pkg);
9302 F_Ent : Entity_Id;
9303 F_Node : Node_Id;
9305 Gen_Decl : Node_Id;
9306 Formals : List_Id;
9307 Actual : Entity_Id;
9309 begin
9310 -- Retrieve the actual given in the formal package declaration
9312 Actual := Entity (Name (Original_Node (Formal_Node)));
9314 -- The actual in the formal package declaration may be a
9315 -- renamed generic package, in which case we want to retrieve
9316 -- the original generic in order to traverse its formal part.
9318 if Present (Renamed_Entity (Actual)) then
9319 Gen_Decl := Unit_Declaration_Node (Renamed_Entity (Actual));
9320 else
9321 Gen_Decl := Unit_Declaration_Node (Actual);
9322 end if;
9324 Formals := Generic_Formal_Declarations (Gen_Decl);
9326 if Present (Formals) then
9327 F_Node := First_Non_Pragma (Formals);
9328 else
9329 F_Node := Empty;
9330 end if;
9332 while Present (A_Ent)
9333 and then Present (F_Node)
9334 and then A_Ent /= First_Private_Entity (Act_Pkg)
9335 loop
9336 F_Ent := Get_Formal_Entity (F_Node);
9338 if Present (F_Ent) then
9340 -- This is a formal of the original package. Record
9341 -- association and recurse.
9343 Find_Matching_Actual (F_Node, A_Ent);
9344 Match_Formal_Entity (F_Node, F_Ent, A_Ent);
9345 Next_Entity (A_Ent);
9346 end if;
9348 Next_Non_Pragma (F_Node);
9349 end loop;
9350 end;
9351 end if;
9352 end Match_Formal_Entity;
9354 -----------------------
9355 -- Get_Formal_Entity --
9356 -----------------------
9358 function Get_Formal_Entity (N : Node_Id) return Entity_Id is
9359 Kind : constant Node_Kind := Nkind (Original_Node (N));
9360 begin
9361 case Kind is
9362 when N_Formal_Object_Declaration =>
9363 return Defining_Identifier (N);
9365 when N_Formal_Type_Declaration =>
9366 return Defining_Identifier (N);
9368 when N_Formal_Subprogram_Declaration =>
9369 return Defining_Unit_Name (Specification (N));
9371 when N_Formal_Package_Declaration =>
9372 return Defining_Identifier (Original_Node (N));
9374 when N_Generic_Package_Declaration =>
9375 return Defining_Identifier (Original_Node (N));
9377 -- All other declarations are introduced by semantic analysis and
9378 -- have no match in the actual.
9380 when others =>
9381 return Empty;
9382 end case;
9383 end Get_Formal_Entity;
9385 --------------------
9386 -- Is_Instance_Of --
9387 --------------------
9389 function Is_Instance_Of
9390 (Act_Spec : Entity_Id;
9391 Gen_Anc : Entity_Id) return Boolean
9393 Gen_Par : constant Entity_Id := Generic_Parent (Act_Spec);
9395 begin
9396 if No (Gen_Par) then
9397 return False;
9399 -- Simplest case: the generic parent of the actual is the formal
9401 elsif Gen_Par = Gen_Anc then
9402 return True;
9404 elsif Chars (Gen_Par) /= Chars (Gen_Anc) then
9405 return False;
9407 -- The actual may be obtained through several instantiations. Its
9408 -- scope must itself be an instance of a generic declared in the
9409 -- same scope as the formal. Any other case is detected above.
9411 elsif not Is_Generic_Instance (Scope (Gen_Par)) then
9412 return False;
9414 else
9415 return Generic_Parent (Parent (Scope (Gen_Par))) = Scope (Gen_Anc);
9416 end if;
9417 end Is_Instance_Of;
9419 ---------------------------
9420 -- Process_Nested_Formal --
9421 ---------------------------
9423 procedure Process_Nested_Formal (Formal : Entity_Id) is
9424 Ent : Entity_Id;
9426 begin
9427 if Present (Associated_Formal_Package (Formal))
9428 and then Box_Present (Parent (Associated_Formal_Package (Formal)))
9429 then
9430 Ent := First_Entity (Formal);
9431 while Present (Ent) loop
9432 Set_Is_Hidden (Ent, False);
9433 Set_Is_Visible_Formal (Ent);
9434 Set_Is_Potentially_Use_Visible
9435 (Ent, Is_Potentially_Use_Visible (Formal));
9437 if Ekind (Ent) = E_Package then
9438 exit when Renamed_Entity (Ent) = Renamed_Entity (Formal);
9439 Process_Nested_Formal (Ent);
9440 end if;
9442 Next_Entity (Ent);
9443 end loop;
9444 end if;
9445 end Process_Nested_Formal;
9447 -- Start of processing for Instantiate_Formal_Package
9449 begin
9450 Analyze (Actual);
9452 if not Is_Entity_Name (Actual)
9453 or else Ekind (Entity (Actual)) /= E_Package
9454 then
9455 Error_Msg_N
9456 ("expect package instance to instantiate formal", Actual);
9457 Abandon_Instantiation (Actual);
9458 raise Program_Error;
9460 else
9461 Actual_Pack := Entity (Actual);
9462 Set_Is_Instantiated (Actual_Pack);
9464 -- The actual may be a renamed package, or an outer generic formal
9465 -- package whose instantiation is converted into a renaming.
9467 if Present (Renamed_Object (Actual_Pack)) then
9468 Actual_Pack := Renamed_Object (Actual_Pack);
9469 end if;
9471 if Nkind (Analyzed_Formal) = N_Formal_Package_Declaration then
9472 Gen_Parent := Get_Instance_Of (Entity (Name (Analyzed_Formal)));
9473 Formal_Pack := Defining_Identifier (Analyzed_Formal);
9474 else
9475 Gen_Parent :=
9476 Generic_Parent (Specification (Analyzed_Formal));
9477 Formal_Pack :=
9478 Defining_Unit_Name (Specification (Analyzed_Formal));
9479 end if;
9481 if Nkind (Parent (Actual_Pack)) = N_Defining_Program_Unit_Name then
9482 Parent_Spec := Package_Specification (Actual_Pack);
9483 else
9484 Parent_Spec := Parent (Actual_Pack);
9485 end if;
9487 if Gen_Parent = Any_Id then
9488 Error_Msg_N
9489 ("previous error in declaration of formal package", Actual);
9490 Abandon_Instantiation (Actual);
9492 elsif
9493 Is_Instance_Of (Parent_Spec, Get_Instance_Of (Gen_Parent))
9494 then
9495 null;
9497 else
9498 Error_Msg_NE
9499 ("actual parameter must be instance of&", Actual, Gen_Parent);
9500 Abandon_Instantiation (Actual);
9501 end if;
9503 Set_Instance_Of (Defining_Identifier (Formal), Actual_Pack);
9504 Map_Formal_Package_Entities (Formal_Pack, Actual_Pack);
9506 Nod :=
9507 Make_Package_Renaming_Declaration (Loc,
9508 Defining_Unit_Name => New_Copy (Defining_Identifier (Formal)),
9509 Name => New_Occurrence_Of (Actual_Pack, Loc));
9511 Set_Associated_Formal_Package (Defining_Unit_Name (Nod),
9512 Defining_Identifier (Formal));
9513 Decls := New_List (Nod);
9515 -- If the formal F has a box, then the generic declarations are
9516 -- visible in the generic G. In an instance of G, the corresponding
9517 -- entities in the actual for F (which are the actuals for the
9518 -- instantiation of the generic that F denotes) must also be made
9519 -- visible for analysis of the current instance. On exit from the
9520 -- current instance, those entities are made private again. If the
9521 -- actual is currently in use, these entities are also use-visible.
9523 -- The loop through the actual entities also steps through the formal
9524 -- entities and enters associations from formals to actuals into the
9525 -- renaming map. This is necessary to properly handle checking of
9526 -- actual parameter associations for later formals that depend on
9527 -- actuals declared in the formal package.
9529 -- In Ada 2005, partial parameterization requires that we make
9530 -- visible the actuals corresponding to formals that were defaulted
9531 -- in the formal package. There formals are identified because they
9532 -- remain formal generics within the formal package, rather than
9533 -- being renamings of the actuals supplied.
9535 declare
9536 Gen_Decl : constant Node_Id :=
9537 Unit_Declaration_Node (Gen_Parent);
9538 Formals : constant List_Id :=
9539 Generic_Formal_Declarations (Gen_Decl);
9541 Actual_Ent : Entity_Id;
9542 Actual_Of_Formal : Node_Id;
9543 Formal_Node : Node_Id;
9544 Formal_Ent : Entity_Id;
9546 begin
9547 if Present (Formals) then
9548 Formal_Node := First_Non_Pragma (Formals);
9549 else
9550 Formal_Node := Empty;
9551 end if;
9553 Actual_Ent := First_Entity (Actual_Pack);
9554 Actual_Of_Formal :=
9555 First (Visible_Declarations (Specification (Analyzed_Formal)));
9556 while Present (Actual_Ent)
9557 and then Actual_Ent /= First_Private_Entity (Actual_Pack)
9558 loop
9559 if Present (Formal_Node) then
9560 Formal_Ent := Get_Formal_Entity (Formal_Node);
9562 if Present (Formal_Ent) then
9563 Find_Matching_Actual (Formal_Node, Actual_Ent);
9564 Match_Formal_Entity
9565 (Formal_Node, Formal_Ent, Actual_Ent);
9567 -- We iterate at the same time over the actuals of the
9568 -- local package created for the formal, to determine
9569 -- which one of the formals of the original generic were
9570 -- defaulted in the formal. The corresponding actual
9571 -- entities are visible in the enclosing instance.
9573 if Box_Present (Formal)
9574 or else
9575 (Present (Actual_Of_Formal)
9576 and then
9577 Is_Generic_Formal
9578 (Get_Formal_Entity (Actual_Of_Formal)))
9579 then
9580 Set_Is_Hidden (Actual_Ent, False);
9581 Set_Is_Visible_Formal (Actual_Ent);
9582 Set_Is_Potentially_Use_Visible
9583 (Actual_Ent, In_Use (Actual_Pack));
9585 if Ekind (Actual_Ent) = E_Package then
9586 Process_Nested_Formal (Actual_Ent);
9587 end if;
9589 else
9590 Set_Is_Hidden (Actual_Ent);
9591 Set_Is_Potentially_Use_Visible (Actual_Ent, False);
9592 end if;
9593 end if;
9595 Next_Non_Pragma (Formal_Node);
9596 Next (Actual_Of_Formal);
9598 else
9599 -- No further formals to match, but the generic part may
9600 -- contain inherited operation that are not hidden in the
9601 -- enclosing instance.
9603 Next_Entity (Actual_Ent);
9604 end if;
9605 end loop;
9607 -- Inherited subprograms generated by formal derived types are
9608 -- also visible if the types are.
9610 Actual_Ent := First_Entity (Actual_Pack);
9611 while Present (Actual_Ent)
9612 and then Actual_Ent /= First_Private_Entity (Actual_Pack)
9613 loop
9614 if Is_Overloadable (Actual_Ent)
9615 and then
9616 Nkind (Parent (Actual_Ent)) = N_Subtype_Declaration
9617 and then
9618 not Is_Hidden (Defining_Identifier (Parent (Actual_Ent)))
9619 then
9620 Set_Is_Hidden (Actual_Ent, False);
9621 Set_Is_Potentially_Use_Visible
9622 (Actual_Ent, In_Use (Actual_Pack));
9623 end if;
9625 Next_Entity (Actual_Ent);
9626 end loop;
9627 end;
9629 -- If the formal is not declared with a box, reanalyze it as an
9630 -- abbreviated instantiation, to verify the matching rules of 12.7.
9631 -- The actual checks are performed after the generic associations
9632 -- have been analyzed, to guarantee the same visibility for this
9633 -- instantiation and for the actuals.
9635 -- In Ada 2005, the generic associations for the formal can include
9636 -- defaulted parameters. These are ignored during check. This
9637 -- internal instantiation is removed from the tree after conformance
9638 -- checking, because it contains formal declarations for those
9639 -- defaulted parameters, and those should not reach the back-end.
9641 if not Box_Present (Formal) then
9642 declare
9643 I_Pack : constant Entity_Id :=
9644 Make_Temporary (Sloc (Actual), 'P');
9646 begin
9647 Set_Is_Internal (I_Pack);
9649 Append_To (Decls,
9650 Make_Package_Instantiation (Sloc (Actual),
9651 Defining_Unit_Name => I_Pack,
9652 Name =>
9653 New_Occurrence_Of
9654 (Get_Instance_Of (Gen_Parent), Sloc (Actual)),
9655 Generic_Associations =>
9656 Generic_Associations (Formal)));
9657 end;
9658 end if;
9660 return Decls;
9661 end if;
9662 end Instantiate_Formal_Package;
9664 -----------------------------------
9665 -- Instantiate_Formal_Subprogram --
9666 -----------------------------------
9668 function Instantiate_Formal_Subprogram
9669 (Formal : Node_Id;
9670 Actual : Node_Id;
9671 Analyzed_Formal : Node_Id) return Node_Id
9673 Analyzed_S : constant Entity_Id :=
9674 Defining_Unit_Name (Specification (Analyzed_Formal));
9675 Formal_Sub : constant Entity_Id :=
9676 Defining_Unit_Name (Specification (Formal));
9678 function From_Parent_Scope (Subp : Entity_Id) return Boolean;
9679 -- If the generic is a child unit, the parent has been installed on the
9680 -- scope stack, but a default subprogram cannot resolve to something
9681 -- on the parent because that parent is not really part of the visible
9682 -- context (it is there to resolve explicit local entities). If the
9683 -- default has resolved in this way, we remove the entity from immediate
9684 -- visibility and analyze the node again to emit an error message or
9685 -- find another visible candidate.
9687 procedure Valid_Actual_Subprogram (Act : Node_Id);
9688 -- Perform legality check and raise exception on failure
9690 -----------------------
9691 -- From_Parent_Scope --
9692 -----------------------
9694 function From_Parent_Scope (Subp : Entity_Id) return Boolean is
9695 Gen_Scope : Node_Id;
9697 begin
9698 Gen_Scope := Scope (Analyzed_S);
9699 while Present (Gen_Scope) and then Is_Child_Unit (Gen_Scope) loop
9700 if Scope (Subp) = Scope (Gen_Scope) then
9701 return True;
9702 end if;
9704 Gen_Scope := Scope (Gen_Scope);
9705 end loop;
9707 return False;
9708 end From_Parent_Scope;
9710 -----------------------------
9711 -- Valid_Actual_Subprogram --
9712 -----------------------------
9714 procedure Valid_Actual_Subprogram (Act : Node_Id) is
9715 Act_E : Entity_Id;
9717 begin
9718 if Is_Entity_Name (Act) then
9719 Act_E := Entity (Act);
9721 elsif Nkind (Act) = N_Selected_Component
9722 and then Is_Entity_Name (Selector_Name (Act))
9723 then
9724 Act_E := Entity (Selector_Name (Act));
9726 else
9727 Act_E := Empty;
9728 end if;
9730 if (Present (Act_E) and then Is_Overloadable (Act_E))
9731 or else Nkind_In (Act, N_Attribute_Reference,
9732 N_Indexed_Component,
9733 N_Character_Literal,
9734 N_Explicit_Dereference)
9735 then
9736 return;
9737 end if;
9739 Error_Msg_NE
9740 ("expect subprogram or entry name in instantiation of&",
9741 Instantiation_Node, Formal_Sub);
9742 Abandon_Instantiation (Instantiation_Node);
9743 end Valid_Actual_Subprogram;
9745 -- Local variables
9747 Decl_Node : Node_Id;
9748 Loc : Source_Ptr;
9749 Nam : Node_Id;
9750 New_Spec : Node_Id;
9752 -- Start of processing for Instantiate_Formal_Subprogram
9754 begin
9755 New_Spec := New_Copy_Tree (Specification (Formal));
9757 -- The tree copy has created the proper instantiation sloc for the
9758 -- new specification. Use this location for all other constructed
9759 -- declarations.
9761 Loc := Sloc (Defining_Unit_Name (New_Spec));
9763 -- Create new entity for the actual (New_Copy_Tree does not), and
9764 -- indicate that it is an actual.
9766 Set_Defining_Unit_Name
9767 (New_Spec, Make_Defining_Identifier (Loc, Chars (Formal_Sub)));
9768 Set_Ekind (Defining_Unit_Name (New_Spec), Ekind (Analyzed_S));
9769 Set_Is_Generic_Actual_Subprogram (Defining_Unit_Name (New_Spec));
9771 -- Create new entities for the each of the formals in the specification
9772 -- of the renaming declaration built for the actual.
9774 if Present (Parameter_Specifications (New_Spec)) then
9775 declare
9776 F : Node_Id;
9777 F_Id : Entity_Id;
9779 begin
9780 F := First (Parameter_Specifications (New_Spec));
9781 while Present (F) loop
9782 F_Id := Defining_Identifier (F);
9784 Set_Defining_Identifier (F,
9785 Make_Defining_Identifier (Sloc (F_Id), Chars (F_Id)));
9786 Next (F);
9787 end loop;
9788 end;
9789 end if;
9791 -- Find entity of actual. If the actual is an attribute reference, it
9792 -- cannot be resolved here (its formal is missing) but is handled
9793 -- instead in Attribute_Renaming. If the actual is overloaded, it is
9794 -- fully resolved subsequently, when the renaming declaration for the
9795 -- formal is analyzed. If it is an explicit dereference, resolve the
9796 -- prefix but not the actual itself, to prevent interpretation as call.
9798 if Present (Actual) then
9799 Loc := Sloc (Actual);
9800 Set_Sloc (New_Spec, Loc);
9802 if Nkind (Actual) = N_Operator_Symbol then
9803 Find_Direct_Name (Actual);
9805 elsif Nkind (Actual) = N_Explicit_Dereference then
9806 Analyze (Prefix (Actual));
9808 elsif Nkind (Actual) /= N_Attribute_Reference then
9809 Analyze (Actual);
9810 end if;
9812 Valid_Actual_Subprogram (Actual);
9813 Nam := Actual;
9815 elsif Present (Default_Name (Formal)) then
9816 if not Nkind_In (Default_Name (Formal), N_Attribute_Reference,
9817 N_Selected_Component,
9818 N_Indexed_Component,
9819 N_Character_Literal)
9820 and then Present (Entity (Default_Name (Formal)))
9821 then
9822 Nam := New_Occurrence_Of (Entity (Default_Name (Formal)), Loc);
9823 else
9824 Nam := New_Copy (Default_Name (Formal));
9825 Set_Sloc (Nam, Loc);
9826 end if;
9828 elsif Box_Present (Formal) then
9830 -- Actual is resolved at the point of instantiation. Create an
9831 -- identifier or operator with the same name as the formal.
9833 if Nkind (Formal_Sub) = N_Defining_Operator_Symbol then
9834 Nam :=
9835 Make_Operator_Symbol (Loc,
9836 Chars => Chars (Formal_Sub),
9837 Strval => No_String);
9838 else
9839 Nam := Make_Identifier (Loc, Chars (Formal_Sub));
9840 end if;
9842 elsif Nkind (Specification (Formal)) = N_Procedure_Specification
9843 and then Null_Present (Specification (Formal))
9844 then
9845 -- Generate null body for procedure, for use in the instance
9847 Decl_Node :=
9848 Make_Subprogram_Body (Loc,
9849 Specification => New_Spec,
9850 Declarations => New_List,
9851 Handled_Statement_Sequence =>
9852 Make_Handled_Sequence_Of_Statements (Loc,
9853 Statements => New_List (Make_Null_Statement (Loc))));
9855 Set_Is_Intrinsic_Subprogram (Defining_Unit_Name (New_Spec));
9856 return Decl_Node;
9858 else
9859 Error_Msg_Sloc := Sloc (Scope (Analyzed_S));
9860 Error_Msg_NE
9861 ("missing actual&", Instantiation_Node, Formal_Sub);
9862 Error_Msg_NE
9863 ("\in instantiation of & declared#",
9864 Instantiation_Node, Scope (Analyzed_S));
9865 Abandon_Instantiation (Instantiation_Node);
9866 end if;
9868 Decl_Node :=
9869 Make_Subprogram_Renaming_Declaration (Loc,
9870 Specification => New_Spec,
9871 Name => Nam);
9873 -- If we do not have an actual and the formal specified <> then set to
9874 -- get proper default.
9876 if No (Actual) and then Box_Present (Formal) then
9877 Set_From_Default (Decl_Node);
9878 end if;
9880 -- Gather possible interpretations for the actual before analyzing the
9881 -- instance. If overloaded, it will be resolved when analyzing the
9882 -- renaming declaration.
9884 if Box_Present (Formal) and then No (Actual) then
9885 Analyze (Nam);
9887 if Is_Child_Unit (Scope (Analyzed_S))
9888 and then Present (Entity (Nam))
9889 then
9890 if not Is_Overloaded (Nam) then
9891 if From_Parent_Scope (Entity (Nam)) then
9892 Set_Is_Immediately_Visible (Entity (Nam), False);
9893 Set_Entity (Nam, Empty);
9894 Set_Etype (Nam, Empty);
9896 Analyze (Nam);
9897 Set_Is_Immediately_Visible (Entity (Nam));
9898 end if;
9900 else
9901 declare
9902 I : Interp_Index;
9903 It : Interp;
9905 begin
9906 Get_First_Interp (Nam, I, It);
9907 while Present (It.Nam) loop
9908 if From_Parent_Scope (It.Nam) then
9909 Remove_Interp (I);
9910 end if;
9912 Get_Next_Interp (I, It);
9913 end loop;
9914 end;
9915 end if;
9916 end if;
9917 end if;
9919 -- The generic instantiation freezes the actual. This can only be done
9920 -- once the actual is resolved, in the analysis of the renaming
9921 -- declaration. To make the formal subprogram entity available, we set
9922 -- Corresponding_Formal_Spec to point to the formal subprogram entity.
9923 -- This is also needed in Analyze_Subprogram_Renaming for the processing
9924 -- of formal abstract subprograms.
9926 Set_Corresponding_Formal_Spec (Decl_Node, Analyzed_S);
9928 -- We cannot analyze the renaming declaration, and thus find the actual,
9929 -- until all the actuals are assembled in the instance. For subsequent
9930 -- checks of other actuals, indicate the node that will hold the
9931 -- instance of this formal.
9933 Set_Instance_Of (Analyzed_S, Nam);
9935 if Nkind (Actual) = N_Selected_Component
9936 and then Is_Task_Type (Etype (Prefix (Actual)))
9937 and then not Is_Frozen (Etype (Prefix (Actual)))
9938 then
9939 -- The renaming declaration will create a body, which must appear
9940 -- outside of the instantiation, We move the renaming declaration
9941 -- out of the instance, and create an additional renaming inside,
9942 -- to prevent freezing anomalies.
9944 declare
9945 Anon_Id : constant Entity_Id := Make_Temporary (Loc, 'E');
9947 begin
9948 Set_Defining_Unit_Name (New_Spec, Anon_Id);
9949 Insert_Before (Instantiation_Node, Decl_Node);
9950 Analyze (Decl_Node);
9952 -- Now create renaming within the instance
9954 Decl_Node :=
9955 Make_Subprogram_Renaming_Declaration (Loc,
9956 Specification => New_Copy_Tree (New_Spec),
9957 Name => New_Occurrence_Of (Anon_Id, Loc));
9959 Set_Defining_Unit_Name (Specification (Decl_Node),
9960 Make_Defining_Identifier (Loc, Chars (Formal_Sub)));
9961 end;
9962 end if;
9964 return Decl_Node;
9965 end Instantiate_Formal_Subprogram;
9967 ------------------------
9968 -- Instantiate_Object --
9969 ------------------------
9971 function Instantiate_Object
9972 (Formal : Node_Id;
9973 Actual : Node_Id;
9974 Analyzed_Formal : Node_Id) return List_Id
9976 Gen_Obj : constant Entity_Id := Defining_Identifier (Formal);
9977 A_Gen_Obj : constant Entity_Id :=
9978 Defining_Identifier (Analyzed_Formal);
9979 Acc_Def : Node_Id := Empty;
9980 Act_Assoc : constant Node_Id := Parent (Actual);
9981 Actual_Decl : Node_Id := Empty;
9982 Decl_Node : Node_Id;
9983 Def : Node_Id;
9984 Ftyp : Entity_Id;
9985 List : constant List_Id := New_List;
9986 Loc : constant Source_Ptr := Sloc (Actual);
9987 Orig_Ftyp : constant Entity_Id := Etype (A_Gen_Obj);
9988 Subt_Decl : Node_Id := Empty;
9989 Subt_Mark : Node_Id := Empty;
9991 begin
9992 if Present (Subtype_Mark (Formal)) then
9993 Subt_Mark := Subtype_Mark (Formal);
9994 else
9995 Check_Access_Definition (Formal);
9996 Acc_Def := Access_Definition (Formal);
9997 end if;
9999 -- Sloc for error message on missing actual
10001 Error_Msg_Sloc := Sloc (Scope (A_Gen_Obj));
10003 if Get_Instance_Of (Gen_Obj) /= Gen_Obj then
10004 Error_Msg_N ("duplicate instantiation of generic parameter", Actual);
10005 end if;
10007 Set_Parent (List, Parent (Actual));
10009 -- OUT present
10011 if Out_Present (Formal) then
10013 -- An IN OUT generic actual must be a name. The instantiation is a
10014 -- renaming declaration. The actual is the name being renamed. We
10015 -- use the actual directly, rather than a copy, because it is not
10016 -- used further in the list of actuals, and because a copy or a use
10017 -- of relocate_node is incorrect if the instance is nested within a
10018 -- generic. In order to simplify ASIS searches, the Generic_Parent
10019 -- field links the declaration to the generic association.
10021 if No (Actual) then
10022 Error_Msg_NE
10023 ("missing actual&",
10024 Instantiation_Node, Gen_Obj);
10025 Error_Msg_NE
10026 ("\in instantiation of & declared#",
10027 Instantiation_Node, Scope (A_Gen_Obj));
10028 Abandon_Instantiation (Instantiation_Node);
10029 end if;
10031 if Present (Subt_Mark) then
10032 Decl_Node :=
10033 Make_Object_Renaming_Declaration (Loc,
10034 Defining_Identifier => New_Copy (Gen_Obj),
10035 Subtype_Mark => New_Copy_Tree (Subt_Mark),
10036 Name => Actual);
10038 else pragma Assert (Present (Acc_Def));
10039 Decl_Node :=
10040 Make_Object_Renaming_Declaration (Loc,
10041 Defining_Identifier => New_Copy (Gen_Obj),
10042 Access_Definition => New_Copy_Tree (Acc_Def),
10043 Name => Actual);
10044 end if;
10046 Set_Corresponding_Generic_Association (Decl_Node, Act_Assoc);
10048 -- The analysis of the actual may produce Insert_Action nodes, so
10049 -- the declaration must have a context in which to attach them.
10051 Append (Decl_Node, List);
10052 Analyze (Actual);
10054 -- Return if the analysis of the actual reported some error
10056 if Etype (Actual) = Any_Type then
10057 return List;
10058 end if;
10060 -- This check is performed here because Analyze_Object_Renaming will
10061 -- not check it when Comes_From_Source is False. Note though that the
10062 -- check for the actual being the name of an object will be performed
10063 -- in Analyze_Object_Renaming.
10065 if Is_Object_Reference (Actual)
10066 and then Is_Dependent_Component_Of_Mutable_Object (Actual)
10067 then
10068 Error_Msg_N
10069 ("illegal discriminant-dependent component for in out parameter",
10070 Actual);
10071 end if;
10073 -- The actual has to be resolved in order to check that it is a
10074 -- variable (due to cases such as F (1), where F returns access to
10075 -- an array, and for overloaded prefixes).
10077 Ftyp := Get_Instance_Of (Etype (A_Gen_Obj));
10079 -- If the type of the formal is not itself a formal, and the current
10080 -- unit is a child unit, the formal type must be declared in a
10081 -- parent, and must be retrieved by visibility.
10083 if Ftyp = Orig_Ftyp
10084 and then Is_Generic_Unit (Scope (Ftyp))
10085 and then Is_Child_Unit (Scope (A_Gen_Obj))
10086 then
10087 declare
10088 Temp : constant Node_Id :=
10089 New_Copy_Tree (Subtype_Mark (Analyzed_Formal));
10090 begin
10091 Set_Entity (Temp, Empty);
10092 Find_Type (Temp);
10093 Ftyp := Entity (Temp);
10094 end;
10095 end if;
10097 if Is_Private_Type (Ftyp)
10098 and then not Is_Private_Type (Etype (Actual))
10099 and then (Base_Type (Full_View (Ftyp)) = Base_Type (Etype (Actual))
10100 or else Base_Type (Etype (Actual)) = Ftyp)
10101 then
10102 -- If the actual has the type of the full view of the formal, or
10103 -- else a non-private subtype of the formal, then the visibility
10104 -- of the formal type has changed. Add to the actuals a subtype
10105 -- declaration that will force the exchange of views in the body
10106 -- of the instance as well.
10108 Subt_Decl :=
10109 Make_Subtype_Declaration (Loc,
10110 Defining_Identifier => Make_Temporary (Loc, 'P'),
10111 Subtype_Indication => New_Occurrence_Of (Ftyp, Loc));
10113 Prepend (Subt_Decl, List);
10115 Prepend_Elmt (Full_View (Ftyp), Exchanged_Views);
10116 Exchange_Declarations (Ftyp);
10117 end if;
10119 Resolve (Actual, Ftyp);
10121 if not Denotes_Variable (Actual) then
10122 Error_Msg_NE
10123 ("actual for& must be a variable", Actual, Gen_Obj);
10125 elsif Base_Type (Ftyp) /= Base_Type (Etype (Actual)) then
10127 -- Ada 2005 (AI-423): For a generic formal object of mode in out,
10128 -- the type of the actual shall resolve to a specific anonymous
10129 -- access type.
10131 if Ada_Version < Ada_2005
10132 or else Ekind (Base_Type (Ftyp)) /=
10133 E_Anonymous_Access_Type
10134 or else Ekind (Base_Type (Etype (Actual))) /=
10135 E_Anonymous_Access_Type
10136 then
10137 Error_Msg_NE
10138 ("type of actual does not match type of&", Actual, Gen_Obj);
10139 end if;
10140 end if;
10142 Note_Possible_Modification (Actual, Sure => True);
10144 -- Check for instantiation of atomic/volatile actual for
10145 -- non-atomic/volatile formal (RM C.6 (12)).
10147 if Is_Atomic_Object (Actual) and then not Is_Atomic (Orig_Ftyp) then
10148 Error_Msg_N
10149 ("cannot instantiate non-atomic formal object "
10150 & "with atomic actual", Actual);
10152 elsif Is_Volatile_Object (Actual) and then not Is_Volatile (Orig_Ftyp)
10153 then
10154 Error_Msg_N
10155 ("cannot instantiate non-volatile formal object "
10156 & "with volatile actual", Actual);
10157 end if;
10159 -- Formal in-parameter
10161 else
10162 -- The instantiation of a generic formal in-parameter is constant
10163 -- declaration. The actual is the expression for that declaration.
10165 if Present (Actual) then
10166 if Present (Subt_Mark) then
10167 Def := Subt_Mark;
10168 else pragma Assert (Present (Acc_Def));
10169 Def := Acc_Def;
10170 end if;
10172 Decl_Node :=
10173 Make_Object_Declaration (Loc,
10174 Defining_Identifier => New_Copy (Gen_Obj),
10175 Constant_Present => True,
10176 Null_Exclusion_Present => Null_Exclusion_Present (Formal),
10177 Object_Definition => New_Copy_Tree (Def),
10178 Expression => Actual);
10180 Set_Corresponding_Generic_Association (Decl_Node, Act_Assoc);
10182 -- A generic formal object of a tagged type is defined to be
10183 -- aliased so the new constant must also be treated as aliased.
10185 if Is_Tagged_Type (Etype (A_Gen_Obj)) then
10186 Set_Aliased_Present (Decl_Node);
10187 end if;
10189 Append (Decl_Node, List);
10191 -- No need to repeat (pre-)analysis of some expression nodes
10192 -- already handled in Preanalyze_Actuals.
10194 if Nkind (Actual) /= N_Allocator then
10195 Analyze (Actual);
10197 -- Return if the analysis of the actual reported some error
10199 if Etype (Actual) = Any_Type then
10200 return List;
10201 end if;
10202 end if;
10204 declare
10205 Formal_Type : constant Entity_Id := Etype (A_Gen_Obj);
10206 Typ : Entity_Id;
10208 begin
10209 Typ := Get_Instance_Of (Formal_Type);
10211 Freeze_Before (Instantiation_Node, Typ);
10213 -- If the actual is an aggregate, perform name resolution on
10214 -- its components (the analysis of an aggregate does not do it)
10215 -- to capture local names that may be hidden if the generic is
10216 -- a child unit.
10218 if Nkind (Actual) = N_Aggregate then
10219 Preanalyze_And_Resolve (Actual, Typ);
10220 end if;
10222 if Is_Limited_Type (Typ)
10223 and then not OK_For_Limited_Init (Typ, Actual)
10224 then
10225 Error_Msg_N
10226 ("initialization not allowed for limited types", Actual);
10227 Explain_Limited_Type (Typ, Actual);
10228 end if;
10229 end;
10231 elsif Present (Default_Expression (Formal)) then
10233 -- Use default to construct declaration
10235 if Present (Subt_Mark) then
10236 Def := Subt_Mark;
10237 else pragma Assert (Present (Acc_Def));
10238 Def := Acc_Def;
10239 end if;
10241 Decl_Node :=
10242 Make_Object_Declaration (Sloc (Formal),
10243 Defining_Identifier => New_Copy (Gen_Obj),
10244 Constant_Present => True,
10245 Null_Exclusion_Present => Null_Exclusion_Present (Formal),
10246 Object_Definition => New_Copy (Def),
10247 Expression => New_Copy_Tree
10248 (Default_Expression (Formal)));
10250 Append (Decl_Node, List);
10251 Set_Analyzed (Expression (Decl_Node), False);
10253 else
10254 Error_Msg_NE
10255 ("missing actual&",
10256 Instantiation_Node, Gen_Obj);
10257 Error_Msg_NE ("\in instantiation of & declared#",
10258 Instantiation_Node, Scope (A_Gen_Obj));
10260 if Is_Scalar_Type (Etype (A_Gen_Obj)) then
10262 -- Create dummy constant declaration so that instance can be
10263 -- analyzed, to minimize cascaded visibility errors.
10265 if Present (Subt_Mark) then
10266 Def := Subt_Mark;
10267 else pragma Assert (Present (Acc_Def));
10268 Def := Acc_Def;
10269 end if;
10271 Decl_Node :=
10272 Make_Object_Declaration (Loc,
10273 Defining_Identifier => New_Copy (Gen_Obj),
10274 Constant_Present => True,
10275 Null_Exclusion_Present => Null_Exclusion_Present (Formal),
10276 Object_Definition => New_Copy (Def),
10277 Expression =>
10278 Make_Attribute_Reference (Sloc (Gen_Obj),
10279 Attribute_Name => Name_First,
10280 Prefix => New_Copy (Def)));
10282 Append (Decl_Node, List);
10284 else
10285 Abandon_Instantiation (Instantiation_Node);
10286 end if;
10287 end if;
10288 end if;
10290 if Nkind (Actual) in N_Has_Entity then
10291 Actual_Decl := Parent (Entity (Actual));
10292 end if;
10294 -- Ada 2005 (AI-423): For a formal object declaration with a null
10295 -- exclusion or an access definition that has a null exclusion: If the
10296 -- actual matching the formal object declaration denotes a generic
10297 -- formal object of another generic unit G, and the instantiation
10298 -- containing the actual occurs within the body of G or within the body
10299 -- of a generic unit declared within the declarative region of G, then
10300 -- the declaration of the formal object of G must have a null exclusion.
10301 -- Otherwise, the subtype of the actual matching the formal object
10302 -- declaration shall exclude null.
10304 if Ada_Version >= Ada_2005
10305 and then Present (Actual_Decl)
10306 and then
10307 Nkind_In (Actual_Decl, N_Formal_Object_Declaration,
10308 N_Object_Declaration)
10309 and then Nkind (Analyzed_Formal) = N_Formal_Object_Declaration
10310 and then not Has_Null_Exclusion (Actual_Decl)
10311 and then Has_Null_Exclusion (Analyzed_Formal)
10312 then
10313 Error_Msg_Sloc := Sloc (Analyzed_Formal);
10314 Error_Msg_N
10315 ("actual must exclude null to match generic formal#", Actual);
10316 end if;
10318 -- An effectively volatile object cannot be used as an actual in
10319 -- a generic instance. The following check is only relevant when
10320 -- SPARK_Mode is on as it is not a standard Ada legality rule.
10322 if SPARK_Mode = On
10323 and then Present (Actual)
10324 and then Is_Effectively_Volatile_Object (Actual)
10325 then
10326 Error_Msg_N
10327 ("volatile object cannot act as actual in generic instantiation "
10328 & "(SPARK RM 7.1.3(8))", Actual);
10329 end if;
10331 return List;
10332 end Instantiate_Object;
10334 ------------------------------
10335 -- Instantiate_Package_Body --
10336 ------------------------------
10338 procedure Instantiate_Package_Body
10339 (Body_Info : Pending_Body_Info;
10340 Inlined_Body : Boolean := False;
10341 Body_Optional : Boolean := False)
10343 Act_Decl : constant Node_Id := Body_Info.Act_Decl;
10344 Inst_Node : constant Node_Id := Body_Info.Inst_Node;
10345 Loc : constant Source_Ptr := Sloc (Inst_Node);
10347 Gen_Id : constant Node_Id := Name (Inst_Node);
10348 Gen_Unit : constant Entity_Id := Get_Generic_Entity (Inst_Node);
10349 Gen_Decl : constant Node_Id := Unit_Declaration_Node (Gen_Unit);
10350 Act_Spec : constant Node_Id := Specification (Act_Decl);
10351 Act_Decl_Id : constant Entity_Id := Defining_Entity (Act_Spec);
10353 Act_Body_Name : Node_Id;
10354 Gen_Body : Node_Id;
10355 Gen_Body_Id : Node_Id;
10356 Act_Body : Node_Id;
10357 Act_Body_Id : Entity_Id;
10359 Parent_Installed : Boolean := False;
10360 Save_Style_Check : constant Boolean := Style_Check;
10362 Par_Ent : Entity_Id := Empty;
10363 Par_Vis : Boolean := False;
10365 Vis_Prims_List : Elist_Id := No_Elist;
10366 -- List of primitives made temporarily visible in the instantiation
10367 -- to match the visibility of the formal type
10369 procedure Check_Initialized_Types;
10370 -- In a generic package body, an entity of a generic private type may
10371 -- appear uninitialized. This is suspicious, unless the actual is a
10372 -- fully initialized type.
10374 -----------------------------
10375 -- Check_Initialized_Types --
10376 -----------------------------
10378 procedure Check_Initialized_Types is
10379 Decl : Node_Id;
10380 Formal : Entity_Id;
10381 Actual : Entity_Id;
10382 Uninit_Var : Entity_Id;
10384 begin
10385 Decl := First (Generic_Formal_Declarations (Gen_Decl));
10386 while Present (Decl) loop
10387 Uninit_Var := Empty;
10389 if Nkind (Decl) = N_Private_Extension_Declaration then
10390 Uninit_Var := Uninitialized_Variable (Decl);
10392 elsif Nkind (Decl) = N_Formal_Type_Declaration
10393 and then Nkind (Formal_Type_Definition (Decl)) =
10394 N_Formal_Private_Type_Definition
10395 then
10396 Uninit_Var :=
10397 Uninitialized_Variable (Formal_Type_Definition (Decl));
10398 end if;
10400 if Present (Uninit_Var) then
10401 Formal := Defining_Identifier (Decl);
10402 Actual := First_Entity (Act_Decl_Id);
10404 -- For each formal there is a subtype declaration that renames
10405 -- the actual and has the same name as the formal. Locate the
10406 -- formal for warning message about uninitialized variables
10407 -- in the generic, for which the actual type should be a fully
10408 -- initialized type.
10410 while Present (Actual) loop
10411 exit when Ekind (Actual) = E_Package
10412 and then Present (Renamed_Object (Actual));
10414 if Chars (Actual) = Chars (Formal)
10415 and then not Is_Scalar_Type (Actual)
10416 and then not Is_Fully_Initialized_Type (Actual)
10417 and then Warn_On_No_Value_Assigned
10418 then
10419 Error_Msg_Node_2 := Formal;
10420 Error_Msg_NE
10421 ("generic unit has uninitialized variable& of "
10422 & "formal private type &?v?", Actual, Uninit_Var);
10423 Error_Msg_NE
10424 ("actual type for& should be fully initialized type?v?",
10425 Actual, Formal);
10426 exit;
10427 end if;
10429 Next_Entity (Actual);
10430 end loop;
10431 end if;
10433 Next (Decl);
10434 end loop;
10435 end Check_Initialized_Types;
10437 -- Start of processing for Instantiate_Package_Body
10439 begin
10440 Gen_Body_Id := Corresponding_Body (Gen_Decl);
10442 -- The instance body may already have been processed, as the parent of
10443 -- another instance that is inlined (Load_Parent_Of_Generic).
10445 if Present (Corresponding_Body (Instance_Spec (Inst_Node))) then
10446 return;
10447 end if;
10449 Expander_Mode_Save_And_Set (Body_Info.Expander_Status);
10451 -- Re-establish the state of information on which checks are suppressed.
10452 -- This information was set in Body_Info at the point of instantiation,
10453 -- and now we restore it so that the instance is compiled using the
10454 -- check status at the instantiation (RM 11.5 (7.2/2), AI95-00224-01).
10456 Local_Suppress_Stack_Top := Body_Info.Local_Suppress_Stack_Top;
10457 Scope_Suppress := Body_Info.Scope_Suppress;
10458 Opt.Ada_Version := Body_Info.Version;
10459 Opt.Ada_Version_Pragma := Body_Info.Version_Pragma;
10460 Restore_Warnings (Body_Info.Warnings);
10461 Opt.SPARK_Mode := Body_Info.SPARK_Mode;
10462 Opt.SPARK_Mode_Pragma := Body_Info.SPARK_Mode_Pragma;
10464 if No (Gen_Body_Id) then
10466 -- Do not look for parent of generic body if none is required.
10467 -- This may happen when the routine is called as part of the
10468 -- Pending_Instantiations processing, when nested instances
10469 -- may precede the one generated from the main unit.
10471 if not Unit_Requires_Body (Defining_Entity (Gen_Decl))
10472 and then Body_Optional
10473 then
10474 return;
10475 else
10476 Load_Parent_Of_Generic
10477 (Inst_Node, Specification (Gen_Decl), Body_Optional);
10478 Gen_Body_Id := Corresponding_Body (Gen_Decl);
10479 end if;
10480 end if;
10482 -- Establish global variable for sloc adjustment and for error recovery
10484 Instantiation_Node := Inst_Node;
10486 if Present (Gen_Body_Id) then
10487 Save_Env (Gen_Unit, Act_Decl_Id);
10488 Style_Check := False;
10489 Current_Sem_Unit := Body_Info.Current_Sem_Unit;
10491 Gen_Body := Unit_Declaration_Node (Gen_Body_Id);
10493 Create_Instantiation_Source
10494 (Inst_Node, Gen_Body_Id, False, S_Adjustment);
10496 Act_Body :=
10497 Copy_Generic_Node
10498 (Original_Node (Gen_Body), Empty, Instantiating => True);
10500 -- Build new name (possibly qualified) for body declaration
10502 Act_Body_Id := New_Copy (Act_Decl_Id);
10504 -- Some attributes of spec entity are not inherited by body entity
10506 Set_Handler_Records (Act_Body_Id, No_List);
10508 if Nkind (Defining_Unit_Name (Act_Spec)) =
10509 N_Defining_Program_Unit_Name
10510 then
10511 Act_Body_Name :=
10512 Make_Defining_Program_Unit_Name (Loc,
10513 Name => New_Copy_Tree (Name (Defining_Unit_Name (Act_Spec))),
10514 Defining_Identifier => Act_Body_Id);
10515 else
10516 Act_Body_Name := Act_Body_Id;
10517 end if;
10519 Set_Defining_Unit_Name (Act_Body, Act_Body_Name);
10521 Set_Corresponding_Spec (Act_Body, Act_Decl_Id);
10522 Check_Generic_Actuals (Act_Decl_Id, False);
10523 Check_Initialized_Types;
10525 -- Install primitives hidden at the point of the instantiation but
10526 -- visible when processing the generic formals
10528 declare
10529 E : Entity_Id;
10531 begin
10532 E := First_Entity (Act_Decl_Id);
10533 while Present (E) loop
10534 if Is_Type (E)
10535 and then Is_Generic_Actual_Type (E)
10536 and then Is_Tagged_Type (E)
10537 then
10538 Install_Hidden_Primitives
10539 (Prims_List => Vis_Prims_List,
10540 Gen_T => Generic_Parent_Type (Parent (E)),
10541 Act_T => E);
10542 end if;
10544 Next_Entity (E);
10545 end loop;
10546 end;
10548 -- If it is a child unit, make the parent instance (which is an
10549 -- instance of the parent of the generic) visible. The parent
10550 -- instance is the prefix of the name of the generic unit.
10552 if Ekind (Scope (Gen_Unit)) = E_Generic_Package
10553 and then Nkind (Gen_Id) = N_Expanded_Name
10554 then
10555 Par_Ent := Entity (Prefix (Gen_Id));
10556 Par_Vis := Is_Immediately_Visible (Par_Ent);
10557 Install_Parent (Par_Ent, In_Body => True);
10558 Parent_Installed := True;
10560 elsif Is_Child_Unit (Gen_Unit) then
10561 Par_Ent := Scope (Gen_Unit);
10562 Par_Vis := Is_Immediately_Visible (Par_Ent);
10563 Install_Parent (Par_Ent, In_Body => True);
10564 Parent_Installed := True;
10565 end if;
10567 -- If the instantiation is a library unit, and this is the main unit,
10568 -- then build the resulting compilation unit nodes for the instance.
10569 -- If this is a compilation unit but it is not the main unit, then it
10570 -- is the body of a unit in the context, that is being compiled
10571 -- because it is encloses some inlined unit or another generic unit
10572 -- being instantiated. In that case, this body is not part of the
10573 -- current compilation, and is not attached to the tree, but its
10574 -- parent must be set for analysis.
10576 if Nkind (Parent (Inst_Node)) = N_Compilation_Unit then
10578 -- Replace instance node with body of instance, and create new
10579 -- node for corresponding instance declaration.
10581 Build_Instance_Compilation_Unit_Nodes
10582 (Inst_Node, Act_Body, Act_Decl);
10583 Analyze (Inst_Node);
10585 if Parent (Inst_Node) = Cunit (Main_Unit) then
10587 -- If the instance is a child unit itself, then set the scope
10588 -- of the expanded body to be the parent of the instantiation
10589 -- (ensuring that the fully qualified name will be generated
10590 -- for the elaboration subprogram).
10592 if Nkind (Defining_Unit_Name (Act_Spec)) =
10593 N_Defining_Program_Unit_Name
10594 then
10595 Set_Scope
10596 (Defining_Entity (Inst_Node), Scope (Act_Decl_Id));
10597 end if;
10598 end if;
10600 -- Case where instantiation is not a library unit
10602 else
10603 -- If this is an early instantiation, i.e. appears textually
10604 -- before the corresponding body and must be elaborated first,
10605 -- indicate that the body instance is to be delayed.
10607 Install_Body (Act_Body, Inst_Node, Gen_Body, Gen_Decl);
10609 -- Now analyze the body. We turn off all checks if this is an
10610 -- internal unit, since there is no reason to have checks on for
10611 -- any predefined run-time library code. All such code is designed
10612 -- to be compiled with checks off.
10614 -- Note that we do NOT apply this criterion to children of GNAT
10615 -- The latter units must suppress checks explicitly if needed.
10617 if Is_Predefined_File_Name
10618 (Unit_File_Name (Get_Source_Unit (Gen_Decl)))
10619 then
10620 Analyze (Act_Body, Suppress => All_Checks);
10621 else
10622 Analyze (Act_Body);
10623 end if;
10624 end if;
10626 Inherit_Context (Gen_Body, Inst_Node);
10628 -- Remove the parent instances if they have been placed on the scope
10629 -- stack to compile the body.
10631 if Parent_Installed then
10632 Remove_Parent (In_Body => True);
10634 -- Restore the previous visibility of the parent
10636 Set_Is_Immediately_Visible (Par_Ent, Par_Vis);
10637 end if;
10639 Restore_Hidden_Primitives (Vis_Prims_List);
10640 Restore_Private_Views (Act_Decl_Id);
10642 -- Remove the current unit from visibility if this is an instance
10643 -- that is not elaborated on the fly for inlining purposes.
10645 if not Inlined_Body then
10646 Set_Is_Immediately_Visible (Act_Decl_Id, False);
10647 end if;
10649 Restore_Env;
10650 Style_Check := Save_Style_Check;
10652 -- If we have no body, and the unit requires a body, then complain. This
10653 -- complaint is suppressed if we have detected other errors (since a
10654 -- common reason for missing the body is that it had errors).
10655 -- In CodePeer mode, a warning has been emitted already, no need for
10656 -- further messages.
10658 elsif Unit_Requires_Body (Gen_Unit)
10659 and then not Body_Optional
10660 then
10661 if CodePeer_Mode then
10662 null;
10664 elsif Serious_Errors_Detected = 0 then
10665 Error_Msg_NE
10666 ("cannot find body of generic package &", Inst_Node, Gen_Unit);
10668 -- Don't attempt to perform any cleanup actions if some other error
10669 -- was already detected, since this can cause blowups.
10671 else
10672 return;
10673 end if;
10675 -- Case of package that does not need a body
10677 else
10678 -- If the instantiation of the declaration is a library unit, rewrite
10679 -- the original package instantiation as a package declaration in the
10680 -- compilation unit node.
10682 if Nkind (Parent (Inst_Node)) = N_Compilation_Unit then
10683 Set_Parent_Spec (Act_Decl, Parent_Spec (Inst_Node));
10684 Rewrite (Inst_Node, Act_Decl);
10686 -- Generate elaboration entity, in case spec has elaboration code.
10687 -- This cannot be done when the instance is analyzed, because it
10688 -- is not known yet whether the body exists.
10690 Set_Elaboration_Entity_Required (Act_Decl_Id, False);
10691 Build_Elaboration_Entity (Parent (Inst_Node), Act_Decl_Id);
10693 -- If the instantiation is not a library unit, then append the
10694 -- declaration to the list of implicitly generated entities, unless
10695 -- it is already a list member which means that it was already
10696 -- processed
10698 elsif not Is_List_Member (Act_Decl) then
10699 Mark_Rewrite_Insertion (Act_Decl);
10700 Insert_Before (Inst_Node, Act_Decl);
10701 end if;
10702 end if;
10704 Expander_Mode_Restore;
10705 end Instantiate_Package_Body;
10707 ---------------------------------
10708 -- Instantiate_Subprogram_Body --
10709 ---------------------------------
10711 procedure Instantiate_Subprogram_Body
10712 (Body_Info : Pending_Body_Info;
10713 Body_Optional : Boolean := False)
10715 Act_Decl : constant Node_Id := Body_Info.Act_Decl;
10716 Inst_Node : constant Node_Id := Body_Info.Inst_Node;
10717 Loc : constant Source_Ptr := Sloc (Inst_Node);
10718 Gen_Id : constant Node_Id := Name (Inst_Node);
10719 Gen_Unit : constant Entity_Id := Get_Generic_Entity (Inst_Node);
10720 Gen_Decl : constant Node_Id := Unit_Declaration_Node (Gen_Unit);
10721 Anon_Id : constant Entity_Id :=
10722 Defining_Unit_Name (Specification (Act_Decl));
10723 Pack_Id : constant Entity_Id :=
10724 Defining_Unit_Name (Parent (Act_Decl));
10725 Decls : List_Id;
10726 Gen_Body : Node_Id;
10727 Gen_Body_Id : Node_Id;
10728 Act_Body : Node_Id;
10729 Pack_Body : Node_Id;
10730 Prev_Formal : Entity_Id;
10731 Ret_Expr : Node_Id;
10732 Unit_Renaming : Node_Id;
10734 Parent_Installed : Boolean := False;
10736 Saved_Style_Check : constant Boolean := Style_Check;
10737 Saved_Warnings : constant Warning_Record := Save_Warnings;
10739 Par_Ent : Entity_Id := Empty;
10740 Par_Vis : Boolean := False;
10742 begin
10743 Gen_Body_Id := Corresponding_Body (Gen_Decl);
10745 -- Subprogram body may have been created already because of an inline
10746 -- pragma, or because of multiple elaborations of the enclosing package
10747 -- when several instances of the subprogram appear in the main unit.
10749 if Present (Corresponding_Body (Act_Decl)) then
10750 return;
10751 end if;
10753 Expander_Mode_Save_And_Set (Body_Info.Expander_Status);
10755 -- Re-establish the state of information on which checks are suppressed.
10756 -- This information was set in Body_Info at the point of instantiation,
10757 -- and now we restore it so that the instance is compiled using the
10758 -- check status at the instantiation (RM 11.5 (7.2/2), AI95-00224-01).
10760 Local_Suppress_Stack_Top := Body_Info.Local_Suppress_Stack_Top;
10761 Scope_Suppress := Body_Info.Scope_Suppress;
10762 Opt.Ada_Version := Body_Info.Version;
10763 Opt.Ada_Version_Pragma := Body_Info.Version_Pragma;
10764 Restore_Warnings (Body_Info.Warnings);
10765 Opt.SPARK_Mode := Body_Info.SPARK_Mode;
10766 Opt.SPARK_Mode_Pragma := Body_Info.SPARK_Mode_Pragma;
10768 if No (Gen_Body_Id) then
10770 -- For imported generic subprogram, no body to compile, complete
10771 -- the spec entity appropriately.
10773 if Is_Imported (Gen_Unit) then
10774 Set_Is_Imported (Anon_Id);
10775 Set_First_Rep_Item (Anon_Id, First_Rep_Item (Gen_Unit));
10776 Set_Interface_Name (Anon_Id, Interface_Name (Gen_Unit));
10777 Set_Convention (Anon_Id, Convention (Gen_Unit));
10778 Set_Has_Completion (Anon_Id);
10779 return;
10781 -- For other cases, compile the body
10783 else
10784 Load_Parent_Of_Generic
10785 (Inst_Node, Specification (Gen_Decl), Body_Optional);
10786 Gen_Body_Id := Corresponding_Body (Gen_Decl);
10787 end if;
10788 end if;
10790 Instantiation_Node := Inst_Node;
10792 if Present (Gen_Body_Id) then
10793 Gen_Body := Unit_Declaration_Node (Gen_Body_Id);
10795 if Nkind (Gen_Body) = N_Subprogram_Body_Stub then
10797 -- Either body is not present, or context is non-expanding, as
10798 -- when compiling a subunit. Mark the instance as completed, and
10799 -- diagnose a missing body when needed.
10801 if Expander_Active
10802 and then Operating_Mode = Generate_Code
10803 then
10804 Error_Msg_N
10805 ("missing proper body for instantiation", Gen_Body);
10806 end if;
10808 Set_Has_Completion (Anon_Id);
10809 return;
10810 end if;
10812 Save_Env (Gen_Unit, Anon_Id);
10813 Style_Check := False;
10814 Current_Sem_Unit := Body_Info.Current_Sem_Unit;
10815 Create_Instantiation_Source
10816 (Inst_Node,
10817 Gen_Body_Id,
10818 False,
10819 S_Adjustment);
10821 Act_Body :=
10822 Copy_Generic_Node
10823 (Original_Node (Gen_Body), Empty, Instantiating => True);
10825 -- Create proper defining name for the body, to correspond to
10826 -- the one in the spec.
10828 Set_Defining_Unit_Name (Specification (Act_Body),
10829 Make_Defining_Identifier
10830 (Sloc (Defining_Entity (Inst_Node)), Chars (Anon_Id)));
10831 Set_Corresponding_Spec (Act_Body, Anon_Id);
10832 Set_Has_Completion (Anon_Id);
10833 Check_Generic_Actuals (Pack_Id, False);
10835 -- Generate a reference to link the visible subprogram instance to
10836 -- the generic body, which for navigation purposes is the only
10837 -- available source for the instance.
10839 Generate_Reference
10840 (Related_Instance (Pack_Id),
10841 Gen_Body_Id, 'b', Set_Ref => False, Force => True);
10843 -- If it is a child unit, make the parent instance (which is an
10844 -- instance of the parent of the generic) visible. The parent
10845 -- instance is the prefix of the name of the generic unit.
10847 if Ekind (Scope (Gen_Unit)) = E_Generic_Package
10848 and then Nkind (Gen_Id) = N_Expanded_Name
10849 then
10850 Par_Ent := Entity (Prefix (Gen_Id));
10851 Par_Vis := Is_Immediately_Visible (Par_Ent);
10852 Install_Parent (Par_Ent, In_Body => True);
10853 Parent_Installed := True;
10855 elsif Is_Child_Unit (Gen_Unit) then
10856 Par_Ent := Scope (Gen_Unit);
10857 Par_Vis := Is_Immediately_Visible (Par_Ent);
10858 Install_Parent (Par_Ent, In_Body => True);
10859 Parent_Installed := True;
10860 end if;
10862 -- Inside its body, a reference to the generic unit is a reference
10863 -- to the instance. The corresponding renaming is the first
10864 -- declaration in the body.
10866 Unit_Renaming :=
10867 Make_Subprogram_Renaming_Declaration (Loc,
10868 Specification =>
10869 Copy_Generic_Node (
10870 Specification (Original_Node (Gen_Body)),
10871 Empty,
10872 Instantiating => True),
10873 Name => New_Occurrence_Of (Anon_Id, Loc));
10875 -- If there is a formal subprogram with the same name as the unit
10876 -- itself, do not add this renaming declaration. This is a temporary
10877 -- fix for one ACVC test. ???
10879 Prev_Formal := First_Entity (Pack_Id);
10880 while Present (Prev_Formal) loop
10881 if Chars (Prev_Formal) = Chars (Gen_Unit)
10882 and then Is_Overloadable (Prev_Formal)
10883 then
10884 exit;
10885 end if;
10887 Next_Entity (Prev_Formal);
10888 end loop;
10890 if Present (Prev_Formal) then
10891 Decls := New_List (Act_Body);
10892 else
10893 Decls := New_List (Unit_Renaming, Act_Body);
10894 end if;
10896 -- The subprogram body is placed in the body of a dummy package body,
10897 -- whose spec contains the subprogram declaration as well as the
10898 -- renaming declarations for the generic parameters.
10900 Pack_Body := Make_Package_Body (Loc,
10901 Defining_Unit_Name => New_Copy (Pack_Id),
10902 Declarations => Decls);
10904 Set_Corresponding_Spec (Pack_Body, Pack_Id);
10906 -- If the instantiation is a library unit, then build resulting
10907 -- compilation unit nodes for the instance. The declaration of
10908 -- the enclosing package is the grandparent of the subprogram
10909 -- declaration. First replace the instantiation node as the unit
10910 -- of the corresponding compilation.
10912 if Nkind (Parent (Inst_Node)) = N_Compilation_Unit then
10913 if Parent (Inst_Node) = Cunit (Main_Unit) then
10914 Set_Unit (Parent (Inst_Node), Inst_Node);
10915 Build_Instance_Compilation_Unit_Nodes
10916 (Inst_Node, Pack_Body, Parent (Parent (Act_Decl)));
10917 Analyze (Inst_Node);
10918 else
10919 Set_Parent (Pack_Body, Parent (Inst_Node));
10920 Analyze (Pack_Body);
10921 end if;
10923 else
10924 Insert_Before (Inst_Node, Pack_Body);
10925 Mark_Rewrite_Insertion (Pack_Body);
10926 Analyze (Pack_Body);
10928 if Expander_Active then
10929 Freeze_Subprogram_Body (Inst_Node, Gen_Body, Pack_Id);
10930 end if;
10931 end if;
10933 Inherit_Context (Gen_Body, Inst_Node);
10935 Restore_Private_Views (Pack_Id, False);
10937 if Parent_Installed then
10938 Remove_Parent (In_Body => True);
10940 -- Restore the previous visibility of the parent
10942 Set_Is_Immediately_Visible (Par_Ent, Par_Vis);
10943 end if;
10945 Restore_Env;
10946 Style_Check := Saved_Style_Check;
10947 Restore_Warnings (Saved_Warnings);
10949 -- Body not found. Error was emitted already. If there were no previous
10950 -- errors, this may be an instance whose scope is a premature instance.
10951 -- In that case we must insure that the (legal) program does raise
10952 -- program error if executed. We generate a subprogram body for this
10953 -- purpose. See DEC ac30vso.
10955 -- Should not reference proprietary DEC tests in comments ???
10957 elsif Serious_Errors_Detected = 0
10958 and then Nkind (Parent (Inst_Node)) /= N_Compilation_Unit
10959 then
10960 if Body_Optional then
10961 return;
10963 elsif Ekind (Anon_Id) = E_Procedure then
10964 Act_Body :=
10965 Make_Subprogram_Body (Loc,
10966 Specification =>
10967 Make_Procedure_Specification (Loc,
10968 Defining_Unit_Name =>
10969 Make_Defining_Identifier (Loc, Chars (Anon_Id)),
10970 Parameter_Specifications =>
10971 New_Copy_List
10972 (Parameter_Specifications (Parent (Anon_Id)))),
10974 Declarations => Empty_List,
10975 Handled_Statement_Sequence =>
10976 Make_Handled_Sequence_Of_Statements (Loc,
10977 Statements =>
10978 New_List (
10979 Make_Raise_Program_Error (Loc,
10980 Reason =>
10981 PE_Access_Before_Elaboration))));
10983 else
10984 Ret_Expr :=
10985 Make_Raise_Program_Error (Loc,
10986 Reason => PE_Access_Before_Elaboration);
10988 Set_Etype (Ret_Expr, (Etype (Anon_Id)));
10989 Set_Analyzed (Ret_Expr);
10991 Act_Body :=
10992 Make_Subprogram_Body (Loc,
10993 Specification =>
10994 Make_Function_Specification (Loc,
10995 Defining_Unit_Name =>
10996 Make_Defining_Identifier (Loc, Chars (Anon_Id)),
10997 Parameter_Specifications =>
10998 New_Copy_List
10999 (Parameter_Specifications (Parent (Anon_Id))),
11000 Result_Definition =>
11001 New_Occurrence_Of (Etype (Anon_Id), Loc)),
11003 Declarations => Empty_List,
11004 Handled_Statement_Sequence =>
11005 Make_Handled_Sequence_Of_Statements (Loc,
11006 Statements =>
11007 New_List
11008 (Make_Simple_Return_Statement (Loc, Ret_Expr))));
11009 end if;
11011 Pack_Body := Make_Package_Body (Loc,
11012 Defining_Unit_Name => New_Copy (Pack_Id),
11013 Declarations => New_List (Act_Body));
11015 Insert_After (Inst_Node, Pack_Body);
11016 Set_Corresponding_Spec (Pack_Body, Pack_Id);
11017 Analyze (Pack_Body);
11018 end if;
11020 Expander_Mode_Restore;
11021 end Instantiate_Subprogram_Body;
11023 ----------------------
11024 -- Instantiate_Type --
11025 ----------------------
11027 function Instantiate_Type
11028 (Formal : Node_Id;
11029 Actual : Node_Id;
11030 Analyzed_Formal : Node_Id;
11031 Actual_Decls : List_Id) return List_Id
11033 Gen_T : constant Entity_Id := Defining_Identifier (Formal);
11034 A_Gen_T : constant Entity_Id :=
11035 Defining_Identifier (Analyzed_Formal);
11036 Ancestor : Entity_Id := Empty;
11037 Def : constant Node_Id := Formal_Type_Definition (Formal);
11038 Act_T : Entity_Id;
11039 Decl_Node : Node_Id;
11040 Decl_Nodes : List_Id;
11041 Loc : Source_Ptr;
11042 Subt : Entity_Id;
11044 procedure Diagnose_Predicated_Actual;
11045 -- There are a number of constructs in which a discrete type with
11046 -- predicates is illegal, e.g. as an index in an array type declaration.
11047 -- If a generic type is used is such a construct in a generic package
11048 -- declaration, it carries the flag No_Predicate_On_Actual. it is part
11049 -- of the generic contract that the actual cannot have predicates.
11051 procedure Validate_Array_Type_Instance;
11052 procedure Validate_Access_Subprogram_Instance;
11053 procedure Validate_Access_Type_Instance;
11054 procedure Validate_Derived_Type_Instance;
11055 procedure Validate_Derived_Interface_Type_Instance;
11056 procedure Validate_Discriminated_Formal_Type;
11057 procedure Validate_Interface_Type_Instance;
11058 procedure Validate_Private_Type_Instance;
11059 procedure Validate_Incomplete_Type_Instance;
11060 -- These procedures perform validation tests for the named case.
11061 -- Validate_Discriminated_Formal_Type is shared by formal private
11062 -- types and Ada 2012 formal incomplete types.
11064 function Subtypes_Match (Gen_T, Act_T : Entity_Id) return Boolean;
11065 -- Check that base types are the same and that the subtypes match
11066 -- statically. Used in several of the above.
11068 ---------------------------------
11069 -- Diagnose_Predicated_Actual --
11070 ---------------------------------
11072 procedure Diagnose_Predicated_Actual is
11073 begin
11074 if No_Predicate_On_Actual (A_Gen_T)
11075 and then Has_Predicates (Act_T)
11076 then
11077 Error_Msg_NE
11078 ("actual for& cannot be a type with predicate",
11079 Instantiation_Node, A_Gen_T);
11081 elsif No_Dynamic_Predicate_On_Actual (A_Gen_T)
11082 and then Has_Predicates (Act_T)
11083 and then not Has_Static_Predicate_Aspect (Act_T)
11084 then
11085 Error_Msg_NE
11086 ("actual for& cannot be a type with a dynamic predicate",
11087 Instantiation_Node, A_Gen_T);
11088 end if;
11089 end Diagnose_Predicated_Actual;
11091 --------------------
11092 -- Subtypes_Match --
11093 --------------------
11095 function Subtypes_Match (Gen_T, Act_T : Entity_Id) return Boolean is
11096 T : constant Entity_Id := Get_Instance_Of (Gen_T);
11098 begin
11099 -- Some detailed comments would be useful here ???
11101 return ((Base_Type (T) = Act_T
11102 or else Base_Type (T) = Base_Type (Act_T))
11103 and then Subtypes_Statically_Match (T, Act_T))
11105 or else (Is_Class_Wide_Type (Gen_T)
11106 and then Is_Class_Wide_Type (Act_T)
11107 and then Subtypes_Match
11108 (Get_Instance_Of (Root_Type (Gen_T)),
11109 Root_Type (Act_T)))
11111 or else
11112 (Ekind_In (Gen_T, E_Anonymous_Access_Subprogram_Type,
11113 E_Anonymous_Access_Type)
11114 and then Ekind (Act_T) = Ekind (Gen_T)
11115 and then Subtypes_Statically_Match
11116 (Designated_Type (Gen_T), Designated_Type (Act_T)));
11117 end Subtypes_Match;
11119 -----------------------------------------
11120 -- Validate_Access_Subprogram_Instance --
11121 -----------------------------------------
11123 procedure Validate_Access_Subprogram_Instance is
11124 begin
11125 if not Is_Access_Type (Act_T)
11126 or else Ekind (Designated_Type (Act_T)) /= E_Subprogram_Type
11127 then
11128 Error_Msg_NE
11129 ("expect access type in instantiation of &", Actual, Gen_T);
11130 Abandon_Instantiation (Actual);
11131 end if;
11133 -- According to AI05-288, actuals for access_to_subprograms must be
11134 -- subtype conformant with the generic formal. Previous to AI05-288
11135 -- only mode conformance was required.
11137 -- This is a binding interpretation that applies to previous versions
11138 -- of the language, no need to maintain previous weaker checks.
11140 Check_Subtype_Conformant
11141 (Designated_Type (Act_T),
11142 Designated_Type (A_Gen_T),
11143 Actual,
11144 Get_Inst => True);
11146 if Ekind (Base_Type (Act_T)) = E_Access_Protected_Subprogram_Type then
11147 if Ekind (A_Gen_T) = E_Access_Subprogram_Type then
11148 Error_Msg_NE
11149 ("protected access type not allowed for formal &",
11150 Actual, Gen_T);
11151 end if;
11153 elsif Ekind (A_Gen_T) = E_Access_Protected_Subprogram_Type then
11154 Error_Msg_NE
11155 ("expect protected access type for formal &",
11156 Actual, Gen_T);
11157 end if;
11158 end Validate_Access_Subprogram_Instance;
11160 -----------------------------------
11161 -- Validate_Access_Type_Instance --
11162 -----------------------------------
11164 procedure Validate_Access_Type_Instance is
11165 Desig_Type : constant Entity_Id :=
11166 Find_Actual_Type (Designated_Type (A_Gen_T), A_Gen_T);
11167 Desig_Act : Entity_Id;
11169 begin
11170 if not Is_Access_Type (Act_T) then
11171 Error_Msg_NE
11172 ("expect access type in instantiation of &", Actual, Gen_T);
11173 Abandon_Instantiation (Actual);
11174 end if;
11176 if Is_Access_Constant (A_Gen_T) then
11177 if not Is_Access_Constant (Act_T) then
11178 Error_Msg_N
11179 ("actual type must be access-to-constant type", Actual);
11180 Abandon_Instantiation (Actual);
11181 end if;
11182 else
11183 if Is_Access_Constant (Act_T) then
11184 Error_Msg_N
11185 ("actual type must be access-to-variable type", Actual);
11186 Abandon_Instantiation (Actual);
11188 elsif Ekind (A_Gen_T) = E_General_Access_Type
11189 and then Ekind (Base_Type (Act_T)) /= E_General_Access_Type
11190 then
11191 Error_Msg_N -- CODEFIX
11192 ("actual must be general access type!", Actual);
11193 Error_Msg_NE -- CODEFIX
11194 ("add ALL to }!", Actual, Act_T);
11195 Abandon_Instantiation (Actual);
11196 end if;
11197 end if;
11199 -- The designated subtypes, that is to say the subtypes introduced
11200 -- by an access type declaration (and not by a subtype declaration)
11201 -- must match.
11203 Desig_Act := Designated_Type (Base_Type (Act_T));
11205 -- The designated type may have been introduced through a limited_
11206 -- with clause, in which case retrieve the non-limited view. This
11207 -- applies to incomplete types as well as to class-wide types.
11209 if From_Limited_With (Desig_Act) then
11210 Desig_Act := Available_View (Desig_Act);
11211 end if;
11213 if not Subtypes_Match (Desig_Type, Desig_Act) then
11214 Error_Msg_NE
11215 ("designated type of actual does not match that of formal &",
11216 Actual, Gen_T);
11218 if not Predicates_Match (Desig_Type, Desig_Act) then
11219 Error_Msg_N ("\predicates do not match", Actual);
11220 end if;
11222 Abandon_Instantiation (Actual);
11224 elsif Is_Access_Type (Designated_Type (Act_T))
11225 and then Is_Constrained (Designated_Type (Designated_Type (Act_T)))
11227 Is_Constrained (Designated_Type (Desig_Type))
11228 then
11229 Error_Msg_NE
11230 ("designated type of actual does not match that of formal &",
11231 Actual, Gen_T);
11233 if not Predicates_Match (Desig_Type, Desig_Act) then
11234 Error_Msg_N ("\predicates do not match", Actual);
11235 end if;
11237 Abandon_Instantiation (Actual);
11238 end if;
11240 -- Ada 2005: null-exclusion indicators of the two types must agree
11242 if Can_Never_Be_Null (A_Gen_T) /= Can_Never_Be_Null (Act_T) then
11243 Error_Msg_NE
11244 ("non null exclusion of actual and formal & do not match",
11245 Actual, Gen_T);
11246 end if;
11247 end Validate_Access_Type_Instance;
11249 ----------------------------------
11250 -- Validate_Array_Type_Instance --
11251 ----------------------------------
11253 procedure Validate_Array_Type_Instance is
11254 I1 : Node_Id;
11255 I2 : Node_Id;
11256 T2 : Entity_Id;
11258 function Formal_Dimensions return Int;
11259 -- Count number of dimensions in array type formal
11261 -----------------------
11262 -- Formal_Dimensions --
11263 -----------------------
11265 function Formal_Dimensions return Int is
11266 Num : Int := 0;
11267 Index : Node_Id;
11269 begin
11270 if Nkind (Def) = N_Constrained_Array_Definition then
11271 Index := First (Discrete_Subtype_Definitions (Def));
11272 else
11273 Index := First (Subtype_Marks (Def));
11274 end if;
11276 while Present (Index) loop
11277 Num := Num + 1;
11278 Next_Index (Index);
11279 end loop;
11281 return Num;
11282 end Formal_Dimensions;
11284 -- Start of processing for Validate_Array_Type_Instance
11286 begin
11287 if not Is_Array_Type (Act_T) then
11288 Error_Msg_NE
11289 ("expect array type in instantiation of &", Actual, Gen_T);
11290 Abandon_Instantiation (Actual);
11292 elsif Nkind (Def) = N_Constrained_Array_Definition then
11293 if not (Is_Constrained (Act_T)) then
11294 Error_Msg_NE
11295 ("expect constrained array in instantiation of &",
11296 Actual, Gen_T);
11297 Abandon_Instantiation (Actual);
11298 end if;
11300 else
11301 if Is_Constrained (Act_T) then
11302 Error_Msg_NE
11303 ("expect unconstrained array in instantiation of &",
11304 Actual, Gen_T);
11305 Abandon_Instantiation (Actual);
11306 end if;
11307 end if;
11309 if Formal_Dimensions /= Number_Dimensions (Act_T) then
11310 Error_Msg_NE
11311 ("dimensions of actual do not match formal &", Actual, Gen_T);
11312 Abandon_Instantiation (Actual);
11313 end if;
11315 I1 := First_Index (A_Gen_T);
11316 I2 := First_Index (Act_T);
11317 for J in 1 .. Formal_Dimensions loop
11319 -- If the indexes of the actual were given by a subtype_mark,
11320 -- the index was transformed into a range attribute. Retrieve
11321 -- the original type mark for checking.
11323 if Is_Entity_Name (Original_Node (I2)) then
11324 T2 := Entity (Original_Node (I2));
11325 else
11326 T2 := Etype (I2);
11327 end if;
11329 if not Subtypes_Match
11330 (Find_Actual_Type (Etype (I1), A_Gen_T), T2)
11331 then
11332 Error_Msg_NE
11333 ("index types of actual do not match those of formal &",
11334 Actual, Gen_T);
11335 Abandon_Instantiation (Actual);
11336 end if;
11338 Next_Index (I1);
11339 Next_Index (I2);
11340 end loop;
11342 -- Check matching subtypes. Note that there are complex visibility
11343 -- issues when the generic is a child unit and some aspect of the
11344 -- generic type is declared in a parent unit of the generic. We do
11345 -- the test to handle this special case only after a direct check
11346 -- for static matching has failed. The case where both the component
11347 -- type and the array type are separate formals, and the component
11348 -- type is a private view may also require special checking in
11349 -- Subtypes_Match.
11351 if Subtypes_Match
11352 (Component_Type (A_Gen_T), Component_Type (Act_T))
11353 or else
11354 Subtypes_Match
11355 (Find_Actual_Type (Component_Type (A_Gen_T), A_Gen_T),
11356 Component_Type (Act_T))
11357 then
11358 null;
11359 else
11360 Error_Msg_NE
11361 ("component subtype of actual does not match that of formal &",
11362 Actual, Gen_T);
11363 Abandon_Instantiation (Actual);
11364 end if;
11366 if Has_Aliased_Components (A_Gen_T)
11367 and then not Has_Aliased_Components (Act_T)
11368 then
11369 Error_Msg_NE
11370 ("actual must have aliased components to match formal type &",
11371 Actual, Gen_T);
11372 end if;
11373 end Validate_Array_Type_Instance;
11375 -----------------------------------------------
11376 -- Validate_Derived_Interface_Type_Instance --
11377 -----------------------------------------------
11379 procedure Validate_Derived_Interface_Type_Instance is
11380 Par : constant Entity_Id := Entity (Subtype_Indication (Def));
11381 Elmt : Elmt_Id;
11383 begin
11384 -- First apply interface instance checks
11386 Validate_Interface_Type_Instance;
11388 -- Verify that immediate parent interface is an ancestor of
11389 -- the actual.
11391 if Present (Par)
11392 and then not Interface_Present_In_Ancestor (Act_T, Par)
11393 then
11394 Error_Msg_NE
11395 ("interface actual must include progenitor&", Actual, Par);
11396 end if;
11398 -- Now verify that the actual includes all other ancestors of
11399 -- the formal.
11401 Elmt := First_Elmt (Interfaces (A_Gen_T));
11402 while Present (Elmt) loop
11403 if not Interface_Present_In_Ancestor
11404 (Act_T, Get_Instance_Of (Node (Elmt)))
11405 then
11406 Error_Msg_NE
11407 ("interface actual must include progenitor&",
11408 Actual, Node (Elmt));
11409 end if;
11411 Next_Elmt (Elmt);
11412 end loop;
11413 end Validate_Derived_Interface_Type_Instance;
11415 ------------------------------------
11416 -- Validate_Derived_Type_Instance --
11417 ------------------------------------
11419 procedure Validate_Derived_Type_Instance is
11420 Actual_Discr : Entity_Id;
11421 Ancestor_Discr : Entity_Id;
11423 begin
11424 -- If the parent type in the generic declaration is itself a previous
11425 -- formal type, then it is local to the generic and absent from the
11426 -- analyzed generic definition. In that case the ancestor is the
11427 -- instance of the formal (which must have been instantiated
11428 -- previously), unless the ancestor is itself a formal derived type.
11429 -- In this latter case (which is the subject of Corrigendum 8652/0038
11430 -- (AI-202) the ancestor of the formals is the ancestor of its
11431 -- parent. Otherwise, the analyzed generic carries the parent type.
11432 -- If the parent type is defined in a previous formal package, then
11433 -- the scope of that formal package is that of the generic type
11434 -- itself, and it has already been mapped into the corresponding type
11435 -- in the actual package.
11437 -- Common case: parent type defined outside of the generic
11439 if Is_Entity_Name (Subtype_Mark (Def))
11440 and then Present (Entity (Subtype_Mark (Def)))
11441 then
11442 Ancestor := Get_Instance_Of (Entity (Subtype_Mark (Def)));
11444 -- Check whether parent is defined in a previous formal package
11446 elsif
11447 Scope (Scope (Base_Type (Etype (A_Gen_T)))) = Scope (A_Gen_T)
11448 then
11449 Ancestor :=
11450 Get_Instance_Of (Base_Type (Etype (A_Gen_T)));
11452 -- The type may be a local derivation, or a type extension of a
11453 -- previous formal, or of a formal of a parent package.
11455 elsif Is_Derived_Type (Get_Instance_Of (A_Gen_T))
11456 or else
11457 Ekind (Get_Instance_Of (A_Gen_T)) = E_Record_Type_With_Private
11458 then
11459 -- Check whether the parent is another derived formal type in the
11460 -- same generic unit.
11462 if Etype (A_Gen_T) /= A_Gen_T
11463 and then Is_Generic_Type (Etype (A_Gen_T))
11464 and then Scope (Etype (A_Gen_T)) = Scope (A_Gen_T)
11465 and then Etype (Etype (A_Gen_T)) /= Etype (A_Gen_T)
11466 then
11467 -- Locate ancestor of parent from the subtype declaration
11468 -- created for the actual.
11470 declare
11471 Decl : Node_Id;
11473 begin
11474 Decl := First (Actual_Decls);
11475 while Present (Decl) loop
11476 if Nkind (Decl) = N_Subtype_Declaration
11477 and then Chars (Defining_Identifier (Decl)) =
11478 Chars (Etype (A_Gen_T))
11479 then
11480 Ancestor := Generic_Parent_Type (Decl);
11481 exit;
11482 else
11483 Next (Decl);
11484 end if;
11485 end loop;
11486 end;
11488 pragma Assert (Present (Ancestor));
11490 -- The ancestor itself may be a previous formal that has been
11491 -- instantiated.
11493 Ancestor := Get_Instance_Of (Ancestor);
11495 else
11496 Ancestor :=
11497 Get_Instance_Of (Base_Type (Get_Instance_Of (A_Gen_T)));
11498 end if;
11500 -- An unusual case: the actual is a type declared in a parent unit,
11501 -- but is not a formal type so there is no instance_of for it.
11502 -- Retrieve it by analyzing the record extension.
11504 elsif Is_Child_Unit (Scope (A_Gen_T))
11505 and then In_Open_Scopes (Scope (Act_T))
11506 and then Is_Generic_Instance (Scope (Act_T))
11507 then
11508 Analyze (Subtype_Mark (Def));
11509 Ancestor := Entity (Subtype_Mark (Def));
11511 else
11512 Ancestor := Get_Instance_Of (Etype (Base_Type (A_Gen_T)));
11513 end if;
11515 -- If the formal derived type has pragma Preelaborable_Initialization
11516 -- then the actual type must have preelaborable initialization.
11518 if Known_To_Have_Preelab_Init (A_Gen_T)
11519 and then not Has_Preelaborable_Initialization (Act_T)
11520 then
11521 Error_Msg_NE
11522 ("actual for & must have preelaborable initialization",
11523 Actual, Gen_T);
11524 end if;
11526 -- Ada 2005 (AI-251)
11528 if Ada_Version >= Ada_2005 and then Is_Interface (Ancestor) then
11529 if not Interface_Present_In_Ancestor (Act_T, Ancestor) then
11530 Error_Msg_NE
11531 ("(Ada 2005) expected type implementing & in instantiation",
11532 Actual, Ancestor);
11533 end if;
11535 elsif not Is_Ancestor (Base_Type (Ancestor), Act_T) then
11536 Error_Msg_NE
11537 ("expect type derived from & in instantiation",
11538 Actual, First_Subtype (Ancestor));
11539 Abandon_Instantiation (Actual);
11540 end if;
11542 -- Ada 2005 (AI-443): Synchronized formal derived type checks. Note
11543 -- that the formal type declaration has been rewritten as a private
11544 -- extension.
11546 if Ada_Version >= Ada_2005
11547 and then Nkind (Parent (A_Gen_T)) = N_Private_Extension_Declaration
11548 and then Synchronized_Present (Parent (A_Gen_T))
11549 then
11550 -- The actual must be a synchronized tagged type
11552 if not Is_Tagged_Type (Act_T) then
11553 Error_Msg_N
11554 ("actual of synchronized type must be tagged", Actual);
11555 Abandon_Instantiation (Actual);
11557 elsif Nkind (Parent (Act_T)) = N_Full_Type_Declaration
11558 and then Nkind (Type_Definition (Parent (Act_T))) =
11559 N_Derived_Type_Definition
11560 and then not Synchronized_Present (Type_Definition
11561 (Parent (Act_T)))
11562 then
11563 Error_Msg_N
11564 ("actual of synchronized type must be synchronized", Actual);
11565 Abandon_Instantiation (Actual);
11566 end if;
11567 end if;
11569 -- Perform atomic/volatile checks (RM C.6(12)). Note that AI05-0218-1
11570 -- removes the second instance of the phrase "or allow pass by copy".
11572 if Is_Atomic (Act_T) and then not Is_Atomic (Ancestor) then
11573 Error_Msg_N
11574 ("cannot have atomic actual type for non-atomic formal type",
11575 Actual);
11577 elsif Is_Volatile (Act_T) and then not Is_Volatile (Ancestor) then
11578 Error_Msg_N
11579 ("cannot have volatile actual type for non-volatile formal type",
11580 Actual);
11581 end if;
11583 -- It should not be necessary to check for unknown discriminants on
11584 -- Formal, but for some reason Has_Unknown_Discriminants is false for
11585 -- A_Gen_T, so Is_Indefinite_Subtype incorrectly returns False. This
11586 -- needs fixing. ???
11588 if not Is_Indefinite_Subtype (A_Gen_T)
11589 and then not Unknown_Discriminants_Present (Formal)
11590 and then Is_Indefinite_Subtype (Act_T)
11591 then
11592 Error_Msg_N
11593 ("actual subtype must be constrained", Actual);
11594 Abandon_Instantiation (Actual);
11595 end if;
11597 if not Unknown_Discriminants_Present (Formal) then
11598 if Is_Constrained (Ancestor) then
11599 if not Is_Constrained (Act_T) then
11600 Error_Msg_N
11601 ("actual subtype must be constrained", Actual);
11602 Abandon_Instantiation (Actual);
11603 end if;
11605 -- Ancestor is unconstrained, Check if generic formal and actual
11606 -- agree on constrainedness. The check only applies to array types
11607 -- and discriminated types.
11609 elsif Is_Constrained (Act_T) then
11610 if Ekind (Ancestor) = E_Access_Type
11611 or else (not Is_Constrained (A_Gen_T)
11612 and then Is_Composite_Type (A_Gen_T))
11613 then
11614 Error_Msg_N ("actual subtype must be unconstrained", Actual);
11615 Abandon_Instantiation (Actual);
11616 end if;
11618 -- A class-wide type is only allowed if the formal has unknown
11619 -- discriminants.
11621 elsif Is_Class_Wide_Type (Act_T)
11622 and then not Has_Unknown_Discriminants (Ancestor)
11623 then
11624 Error_Msg_NE
11625 ("actual for & cannot be a class-wide type", Actual, Gen_T);
11626 Abandon_Instantiation (Actual);
11628 -- Otherwise, the formal and actual must have the same number
11629 -- of discriminants and each discriminant of the actual must
11630 -- correspond to a discriminant of the formal.
11632 elsif Has_Discriminants (Act_T)
11633 and then not Has_Unknown_Discriminants (Act_T)
11634 and then Has_Discriminants (Ancestor)
11635 then
11636 Actual_Discr := First_Discriminant (Act_T);
11637 Ancestor_Discr := First_Discriminant (Ancestor);
11638 while Present (Actual_Discr)
11639 and then Present (Ancestor_Discr)
11640 loop
11641 if Base_Type (Act_T) /= Base_Type (Ancestor) and then
11642 No (Corresponding_Discriminant (Actual_Discr))
11643 then
11644 Error_Msg_NE
11645 ("discriminant & does not correspond " &
11646 "to ancestor discriminant", Actual, Actual_Discr);
11647 Abandon_Instantiation (Actual);
11648 end if;
11650 Next_Discriminant (Actual_Discr);
11651 Next_Discriminant (Ancestor_Discr);
11652 end loop;
11654 if Present (Actual_Discr) or else Present (Ancestor_Discr) then
11655 Error_Msg_NE
11656 ("actual for & must have same number of discriminants",
11657 Actual, Gen_T);
11658 Abandon_Instantiation (Actual);
11659 end if;
11661 -- This case should be caught by the earlier check for
11662 -- constrainedness, but the check here is added for completeness.
11664 elsif Has_Discriminants (Act_T)
11665 and then not Has_Unknown_Discriminants (Act_T)
11666 then
11667 Error_Msg_NE
11668 ("actual for & must not have discriminants", Actual, Gen_T);
11669 Abandon_Instantiation (Actual);
11671 elsif Has_Discriminants (Ancestor) then
11672 Error_Msg_NE
11673 ("actual for & must have known discriminants", Actual, Gen_T);
11674 Abandon_Instantiation (Actual);
11675 end if;
11677 if not Subtypes_Statically_Compatible
11678 (Act_T, Ancestor, Formal_Derived_Matching => True)
11679 then
11680 Error_Msg_N
11681 ("constraint on actual is incompatible with formal", Actual);
11682 Abandon_Instantiation (Actual);
11683 end if;
11684 end if;
11686 -- If the formal and actual types are abstract, check that there
11687 -- are no abstract primitives of the actual type that correspond to
11688 -- nonabstract primitives of the formal type (second sentence of
11689 -- RM95-3.9.3(9)).
11691 if Is_Abstract_Type (A_Gen_T) and then Is_Abstract_Type (Act_T) then
11692 Check_Abstract_Primitives : declare
11693 Gen_Prims : constant Elist_Id :=
11694 Primitive_Operations (A_Gen_T);
11695 Gen_Elmt : Elmt_Id;
11696 Gen_Subp : Entity_Id;
11697 Anc_Subp : Entity_Id;
11698 Anc_Formal : Entity_Id;
11699 Anc_F_Type : Entity_Id;
11701 Act_Prims : constant Elist_Id := Primitive_Operations (Act_T);
11702 Act_Elmt : Elmt_Id;
11703 Act_Subp : Entity_Id;
11704 Act_Formal : Entity_Id;
11705 Act_F_Type : Entity_Id;
11707 Subprograms_Correspond : Boolean;
11709 function Is_Tagged_Ancestor (T1, T2 : Entity_Id) return Boolean;
11710 -- Returns true if T2 is derived directly or indirectly from
11711 -- T1, including derivations from interfaces. T1 and T2 are
11712 -- required to be specific tagged base types.
11714 ------------------------
11715 -- Is_Tagged_Ancestor --
11716 ------------------------
11718 function Is_Tagged_Ancestor (T1, T2 : Entity_Id) return Boolean
11720 Intfc_Elmt : Elmt_Id;
11722 begin
11723 -- The predicate is satisfied if the types are the same
11725 if T1 = T2 then
11726 return True;
11728 -- If we've reached the top of the derivation chain then
11729 -- we know that T1 is not an ancestor of T2.
11731 elsif Etype (T2) = T2 then
11732 return False;
11734 -- Proceed to check T2's immediate parent
11736 elsif Is_Ancestor (T1, Base_Type (Etype (T2))) then
11737 return True;
11739 -- Finally, check to see if T1 is an ancestor of any of T2's
11740 -- progenitors.
11742 else
11743 Intfc_Elmt := First_Elmt (Interfaces (T2));
11744 while Present (Intfc_Elmt) loop
11745 if Is_Ancestor (T1, Node (Intfc_Elmt)) then
11746 return True;
11747 end if;
11749 Next_Elmt (Intfc_Elmt);
11750 end loop;
11751 end if;
11753 return False;
11754 end Is_Tagged_Ancestor;
11756 -- Start of processing for Check_Abstract_Primitives
11758 begin
11759 -- Loop over all of the formal derived type's primitives
11761 Gen_Elmt := First_Elmt (Gen_Prims);
11762 while Present (Gen_Elmt) loop
11763 Gen_Subp := Node (Gen_Elmt);
11765 -- If the primitive of the formal is not abstract, then
11766 -- determine whether there is a corresponding primitive of
11767 -- the actual type that's abstract.
11769 if not Is_Abstract_Subprogram (Gen_Subp) then
11770 Act_Elmt := First_Elmt (Act_Prims);
11771 while Present (Act_Elmt) loop
11772 Act_Subp := Node (Act_Elmt);
11774 -- If we find an abstract primitive of the actual,
11775 -- then we need to test whether it corresponds to the
11776 -- subprogram from which the generic formal primitive
11777 -- is inherited.
11779 if Is_Abstract_Subprogram (Act_Subp) then
11780 Anc_Subp := Alias (Gen_Subp);
11782 -- Test whether we have a corresponding primitive
11783 -- by comparing names, kinds, formal types, and
11784 -- result types.
11786 if Chars (Anc_Subp) = Chars (Act_Subp)
11787 and then Ekind (Anc_Subp) = Ekind (Act_Subp)
11788 then
11789 Anc_Formal := First_Formal (Anc_Subp);
11790 Act_Formal := First_Formal (Act_Subp);
11791 while Present (Anc_Formal)
11792 and then Present (Act_Formal)
11793 loop
11794 Anc_F_Type := Etype (Anc_Formal);
11795 Act_F_Type := Etype (Act_Formal);
11797 if Ekind (Anc_F_Type)
11798 = E_Anonymous_Access_Type
11799 then
11800 Anc_F_Type := Designated_Type (Anc_F_Type);
11802 if Ekind (Act_F_Type)
11803 = E_Anonymous_Access_Type
11804 then
11805 Act_F_Type :=
11806 Designated_Type (Act_F_Type);
11807 else
11808 exit;
11809 end if;
11811 elsif
11812 Ekind (Act_F_Type) = E_Anonymous_Access_Type
11813 then
11814 exit;
11815 end if;
11817 Anc_F_Type := Base_Type (Anc_F_Type);
11818 Act_F_Type := Base_Type (Act_F_Type);
11820 -- If the formal is controlling, then the
11821 -- the type of the actual primitive's formal
11822 -- must be derived directly or indirectly
11823 -- from the type of the ancestor primitive's
11824 -- formal.
11826 if Is_Controlling_Formal (Anc_Formal) then
11827 if not Is_Tagged_Ancestor
11828 (Anc_F_Type, Act_F_Type)
11829 then
11830 exit;
11831 end if;
11833 -- Otherwise the types of the formals must
11834 -- be the same.
11836 elsif Anc_F_Type /= Act_F_Type then
11837 exit;
11838 end if;
11840 Next_Entity (Anc_Formal);
11841 Next_Entity (Act_Formal);
11842 end loop;
11844 -- If we traversed through all of the formals
11845 -- then so far the subprograms correspond, so
11846 -- now check that any result types correspond.
11848 if No (Anc_Formal) and then No (Act_Formal) then
11849 Subprograms_Correspond := True;
11851 if Ekind (Act_Subp) = E_Function then
11852 Anc_F_Type := Etype (Anc_Subp);
11853 Act_F_Type := Etype (Act_Subp);
11855 if Ekind (Anc_F_Type)
11856 = E_Anonymous_Access_Type
11857 then
11858 Anc_F_Type :=
11859 Designated_Type (Anc_F_Type);
11861 if Ekind (Act_F_Type)
11862 = E_Anonymous_Access_Type
11863 then
11864 Act_F_Type :=
11865 Designated_Type (Act_F_Type);
11866 else
11867 Subprograms_Correspond := False;
11868 end if;
11870 elsif
11871 Ekind (Act_F_Type)
11872 = E_Anonymous_Access_Type
11873 then
11874 Subprograms_Correspond := False;
11875 end if;
11877 Anc_F_Type := Base_Type (Anc_F_Type);
11878 Act_F_Type := Base_Type (Act_F_Type);
11880 -- Now either the result types must be
11881 -- the same or, if the result type is
11882 -- controlling, the result type of the
11883 -- actual primitive must descend from the
11884 -- result type of the ancestor primitive.
11886 if Subprograms_Correspond
11887 and then Anc_F_Type /= Act_F_Type
11888 and then
11889 Has_Controlling_Result (Anc_Subp)
11890 and then
11891 not Is_Tagged_Ancestor
11892 (Anc_F_Type, Act_F_Type)
11893 then
11894 Subprograms_Correspond := False;
11895 end if;
11896 end if;
11898 -- Found a matching subprogram belonging to
11899 -- formal ancestor type, so actual subprogram
11900 -- corresponds and this violates 3.9.3(9).
11902 if Subprograms_Correspond then
11903 Error_Msg_NE
11904 ("abstract subprogram & overrides " &
11905 "nonabstract subprogram of ancestor",
11906 Actual,
11907 Act_Subp);
11908 end if;
11909 end if;
11910 end if;
11911 end if;
11913 Next_Elmt (Act_Elmt);
11914 end loop;
11915 end if;
11917 Next_Elmt (Gen_Elmt);
11918 end loop;
11919 end Check_Abstract_Primitives;
11920 end if;
11922 -- Verify that limitedness matches. If parent is a limited
11923 -- interface then the generic formal is not unless declared
11924 -- explicitly so. If not declared limited, the actual cannot be
11925 -- limited (see AI05-0087).
11927 -- Even though this AI is a binding interpretation, we enable the
11928 -- check only in Ada 2012 mode, because this improper construct
11929 -- shows up in user code and in existing B-tests.
11931 if Is_Limited_Type (Act_T)
11932 and then not Is_Limited_Type (A_Gen_T)
11933 and then Ada_Version >= Ada_2012
11934 then
11935 if In_Instance then
11936 null;
11937 else
11938 Error_Msg_NE
11939 ("actual for non-limited & cannot be a limited type", Actual,
11940 Gen_T);
11941 Explain_Limited_Type (Act_T, Actual);
11942 Abandon_Instantiation (Actual);
11943 end if;
11944 end if;
11945 end Validate_Derived_Type_Instance;
11947 ----------------------------------------
11948 -- Validate_Discriminated_Formal_Type --
11949 ----------------------------------------
11951 procedure Validate_Discriminated_Formal_Type is
11952 Formal_Discr : Entity_Id;
11953 Actual_Discr : Entity_Id;
11954 Formal_Subt : Entity_Id;
11956 begin
11957 if Has_Discriminants (A_Gen_T) then
11958 if not Has_Discriminants (Act_T) then
11959 Error_Msg_NE
11960 ("actual for & must have discriminants", Actual, Gen_T);
11961 Abandon_Instantiation (Actual);
11963 elsif Is_Constrained (Act_T) then
11964 Error_Msg_NE
11965 ("actual for & must be unconstrained", Actual, Gen_T);
11966 Abandon_Instantiation (Actual);
11968 else
11969 Formal_Discr := First_Discriminant (A_Gen_T);
11970 Actual_Discr := First_Discriminant (Act_T);
11971 while Formal_Discr /= Empty loop
11972 if Actual_Discr = Empty then
11973 Error_Msg_NE
11974 ("discriminants on actual do not match formal",
11975 Actual, Gen_T);
11976 Abandon_Instantiation (Actual);
11977 end if;
11979 Formal_Subt := Get_Instance_Of (Etype (Formal_Discr));
11981 -- Access discriminants match if designated types do
11983 if Ekind (Base_Type (Formal_Subt)) = E_Anonymous_Access_Type
11984 and then (Ekind (Base_Type (Etype (Actual_Discr)))) =
11985 E_Anonymous_Access_Type
11986 and then
11987 Get_Instance_Of
11988 (Designated_Type (Base_Type (Formal_Subt))) =
11989 Designated_Type (Base_Type (Etype (Actual_Discr)))
11990 then
11991 null;
11993 elsif Base_Type (Formal_Subt) /=
11994 Base_Type (Etype (Actual_Discr))
11995 then
11996 Error_Msg_NE
11997 ("types of actual discriminants must match formal",
11998 Actual, Gen_T);
11999 Abandon_Instantiation (Actual);
12001 elsif not Subtypes_Statically_Match
12002 (Formal_Subt, Etype (Actual_Discr))
12003 and then Ada_Version >= Ada_95
12004 then
12005 Error_Msg_NE
12006 ("subtypes of actual discriminants must match formal",
12007 Actual, Gen_T);
12008 Abandon_Instantiation (Actual);
12009 end if;
12011 Next_Discriminant (Formal_Discr);
12012 Next_Discriminant (Actual_Discr);
12013 end loop;
12015 if Actual_Discr /= Empty then
12016 Error_Msg_NE
12017 ("discriminants on actual do not match formal",
12018 Actual, Gen_T);
12019 Abandon_Instantiation (Actual);
12020 end if;
12021 end if;
12022 end if;
12023 end Validate_Discriminated_Formal_Type;
12025 ---------------------------------------
12026 -- Validate_Incomplete_Type_Instance --
12027 ---------------------------------------
12029 procedure Validate_Incomplete_Type_Instance is
12030 begin
12031 if not Is_Tagged_Type (Act_T)
12032 and then Is_Tagged_Type (A_Gen_T)
12033 then
12034 Error_Msg_NE
12035 ("actual for & must be a tagged type", Actual, Gen_T);
12036 end if;
12038 Validate_Discriminated_Formal_Type;
12039 end Validate_Incomplete_Type_Instance;
12041 --------------------------------------
12042 -- Validate_Interface_Type_Instance --
12043 --------------------------------------
12045 procedure Validate_Interface_Type_Instance is
12046 begin
12047 if not Is_Interface (Act_T) then
12048 Error_Msg_NE
12049 ("actual for formal interface type must be an interface",
12050 Actual, Gen_T);
12052 elsif Is_Limited_Type (Act_T) /= Is_Limited_Type (A_Gen_T)
12053 or else Is_Task_Interface (A_Gen_T) /= Is_Task_Interface (Act_T)
12054 or else Is_Protected_Interface (A_Gen_T) /=
12055 Is_Protected_Interface (Act_T)
12056 or else Is_Synchronized_Interface (A_Gen_T) /=
12057 Is_Synchronized_Interface (Act_T)
12058 then
12059 Error_Msg_NE
12060 ("actual for interface& does not match (RM 12.5.5(4))",
12061 Actual, Gen_T);
12062 end if;
12063 end Validate_Interface_Type_Instance;
12065 ------------------------------------
12066 -- Validate_Private_Type_Instance --
12067 ------------------------------------
12069 procedure Validate_Private_Type_Instance is
12070 begin
12071 if Is_Limited_Type (Act_T)
12072 and then not Is_Limited_Type (A_Gen_T)
12073 then
12074 if In_Instance then
12075 null;
12076 else
12077 Error_Msg_NE
12078 ("actual for non-limited & cannot be a limited type", Actual,
12079 Gen_T);
12080 Explain_Limited_Type (Act_T, Actual);
12081 Abandon_Instantiation (Actual);
12082 end if;
12084 elsif Known_To_Have_Preelab_Init (A_Gen_T)
12085 and then not Has_Preelaborable_Initialization (Act_T)
12086 then
12087 Error_Msg_NE
12088 ("actual for & must have preelaborable initialization", Actual,
12089 Gen_T);
12091 elsif Is_Indefinite_Subtype (Act_T)
12092 and then not Is_Indefinite_Subtype (A_Gen_T)
12093 and then Ada_Version >= Ada_95
12094 then
12095 Error_Msg_NE
12096 ("actual for & must be a definite subtype", Actual, Gen_T);
12098 elsif not Is_Tagged_Type (Act_T)
12099 and then Is_Tagged_Type (A_Gen_T)
12100 then
12101 Error_Msg_NE
12102 ("actual for & must be a tagged type", Actual, Gen_T);
12103 end if;
12105 Validate_Discriminated_Formal_Type;
12106 Ancestor := Gen_T;
12107 end Validate_Private_Type_Instance;
12109 -- Start of processing for Instantiate_Type
12111 begin
12112 if Get_Instance_Of (A_Gen_T) /= A_Gen_T then
12113 Error_Msg_N ("duplicate instantiation of generic type", Actual);
12114 return New_List (Error);
12116 elsif not Is_Entity_Name (Actual)
12117 or else not Is_Type (Entity (Actual))
12118 then
12119 Error_Msg_NE
12120 ("expect valid subtype mark to instantiate &", Actual, Gen_T);
12121 Abandon_Instantiation (Actual);
12123 else
12124 Act_T := Entity (Actual);
12126 -- Ada 2005 (AI-216): An Unchecked_Union subtype shall only be passed
12127 -- as a generic actual parameter if the corresponding formal type
12128 -- does not have a known_discriminant_part, or is a formal derived
12129 -- type that is an Unchecked_Union type.
12131 if Is_Unchecked_Union (Base_Type (Act_T)) then
12132 if not Has_Discriminants (A_Gen_T)
12133 or else (Is_Derived_Type (A_Gen_T)
12134 and then Is_Unchecked_Union (A_Gen_T))
12135 then
12136 null;
12137 else
12138 Error_Msg_N ("unchecked union cannot be the actual for a "
12139 & "discriminated formal type", Act_T);
12141 end if;
12142 end if;
12144 -- Deal with fixed/floating restrictions
12146 if Is_Floating_Point_Type (Act_T) then
12147 Check_Restriction (No_Floating_Point, Actual);
12148 elsif Is_Fixed_Point_Type (Act_T) then
12149 Check_Restriction (No_Fixed_Point, Actual);
12150 end if;
12152 -- Deal with error of using incomplete type as generic actual.
12153 -- This includes limited views of a type, even if the non-limited
12154 -- view may be available.
12156 if Ekind (Act_T) = E_Incomplete_Type
12157 or else (Is_Class_Wide_Type (Act_T)
12158 and then Ekind (Root_Type (Act_T)) = E_Incomplete_Type)
12159 then
12160 -- If the formal is an incomplete type, the actual can be
12161 -- incomplete as well.
12163 if Ekind (A_Gen_T) = E_Incomplete_Type then
12164 null;
12166 elsif Is_Class_Wide_Type (Act_T)
12167 or else No (Full_View (Act_T))
12168 then
12169 Error_Msg_N ("premature use of incomplete type", Actual);
12170 Abandon_Instantiation (Actual);
12171 else
12172 Act_T := Full_View (Act_T);
12173 Set_Entity (Actual, Act_T);
12175 if Has_Private_Component (Act_T) then
12176 Error_Msg_N
12177 ("premature use of type with private component", Actual);
12178 end if;
12179 end if;
12181 -- Deal with error of premature use of private type as generic actual
12183 elsif Is_Private_Type (Act_T)
12184 and then Is_Private_Type (Base_Type (Act_T))
12185 and then not Is_Generic_Type (Act_T)
12186 and then not Is_Derived_Type (Act_T)
12187 and then No (Full_View (Root_Type (Act_T)))
12188 then
12189 -- If the formal is an incomplete type, the actual can be
12190 -- private or incomplete as well.
12192 if Ekind (A_Gen_T) = E_Incomplete_Type then
12193 null;
12194 else
12195 Error_Msg_N ("premature use of private type", Actual);
12196 end if;
12198 elsif Has_Private_Component (Act_T) then
12199 Error_Msg_N
12200 ("premature use of type with private component", Actual);
12201 end if;
12203 Set_Instance_Of (A_Gen_T, Act_T);
12205 -- If the type is generic, the class-wide type may also be used
12207 if Is_Tagged_Type (A_Gen_T)
12208 and then Is_Tagged_Type (Act_T)
12209 and then not Is_Class_Wide_Type (A_Gen_T)
12210 then
12211 Set_Instance_Of (Class_Wide_Type (A_Gen_T),
12212 Class_Wide_Type (Act_T));
12213 end if;
12215 if not Is_Abstract_Type (A_Gen_T)
12216 and then Is_Abstract_Type (Act_T)
12217 then
12218 Error_Msg_N
12219 ("actual of non-abstract formal cannot be abstract", Actual);
12220 end if;
12222 -- A generic scalar type is a first subtype for which we generate
12223 -- an anonymous base type. Indicate that the instance of this base
12224 -- is the base type of the actual.
12226 if Is_Scalar_Type (A_Gen_T) then
12227 Set_Instance_Of (Etype (A_Gen_T), Etype (Act_T));
12228 end if;
12229 end if;
12231 if Error_Posted (Act_T) then
12232 null;
12233 else
12234 case Nkind (Def) is
12235 when N_Formal_Private_Type_Definition =>
12236 Validate_Private_Type_Instance;
12238 when N_Formal_Incomplete_Type_Definition =>
12239 Validate_Incomplete_Type_Instance;
12241 when N_Formal_Derived_Type_Definition =>
12242 Validate_Derived_Type_Instance;
12244 when N_Formal_Discrete_Type_Definition =>
12245 if not Is_Discrete_Type (Act_T) then
12246 Error_Msg_NE
12247 ("expect discrete type in instantiation of&",
12248 Actual, Gen_T);
12249 Abandon_Instantiation (Actual);
12250 end if;
12252 Diagnose_Predicated_Actual;
12254 when N_Formal_Signed_Integer_Type_Definition =>
12255 if not Is_Signed_Integer_Type (Act_T) then
12256 Error_Msg_NE
12257 ("expect signed integer type in instantiation of&",
12258 Actual, Gen_T);
12259 Abandon_Instantiation (Actual);
12260 end if;
12262 Diagnose_Predicated_Actual;
12264 when N_Formal_Modular_Type_Definition =>
12265 if not Is_Modular_Integer_Type (Act_T) then
12266 Error_Msg_NE
12267 ("expect modular type in instantiation of &",
12268 Actual, Gen_T);
12269 Abandon_Instantiation (Actual);
12270 end if;
12272 Diagnose_Predicated_Actual;
12274 when N_Formal_Floating_Point_Definition =>
12275 if not Is_Floating_Point_Type (Act_T) then
12276 Error_Msg_NE
12277 ("expect float type in instantiation of &", Actual, Gen_T);
12278 Abandon_Instantiation (Actual);
12279 end if;
12281 when N_Formal_Ordinary_Fixed_Point_Definition =>
12282 if not Is_Ordinary_Fixed_Point_Type (Act_T) then
12283 Error_Msg_NE
12284 ("expect ordinary fixed point type in instantiation of &",
12285 Actual, Gen_T);
12286 Abandon_Instantiation (Actual);
12287 end if;
12289 when N_Formal_Decimal_Fixed_Point_Definition =>
12290 if not Is_Decimal_Fixed_Point_Type (Act_T) then
12291 Error_Msg_NE
12292 ("expect decimal type in instantiation of &",
12293 Actual, Gen_T);
12294 Abandon_Instantiation (Actual);
12295 end if;
12297 when N_Array_Type_Definition =>
12298 Validate_Array_Type_Instance;
12300 when N_Access_To_Object_Definition =>
12301 Validate_Access_Type_Instance;
12303 when N_Access_Function_Definition |
12304 N_Access_Procedure_Definition =>
12305 Validate_Access_Subprogram_Instance;
12307 when N_Record_Definition =>
12308 Validate_Interface_Type_Instance;
12310 when N_Derived_Type_Definition =>
12311 Validate_Derived_Interface_Type_Instance;
12313 when others =>
12314 raise Program_Error;
12316 end case;
12317 end if;
12319 Subt := New_Copy (Gen_T);
12321 -- Use adjusted sloc of subtype name as the location for other nodes in
12322 -- the subtype declaration.
12324 Loc := Sloc (Subt);
12326 Decl_Node :=
12327 Make_Subtype_Declaration (Loc,
12328 Defining_Identifier => Subt,
12329 Subtype_Indication => New_Occurrence_Of (Act_T, Loc));
12331 if Is_Private_Type (Act_T) then
12332 Set_Has_Private_View (Subtype_Indication (Decl_Node));
12334 elsif Is_Access_Type (Act_T)
12335 and then Is_Private_Type (Designated_Type (Act_T))
12336 then
12337 Set_Has_Private_View (Subtype_Indication (Decl_Node));
12338 end if;
12340 Decl_Nodes := New_List (Decl_Node);
12342 -- Flag actual derived types so their elaboration produces the
12343 -- appropriate renamings for the primitive operations of the ancestor.
12344 -- Flag actual for formal private types as well, to determine whether
12345 -- operations in the private part may override inherited operations.
12346 -- If the formal has an interface list, the ancestor is not the
12347 -- parent, but the analyzed formal that includes the interface
12348 -- operations of all its progenitors.
12350 -- Same treatment for formal private types, so we can check whether the
12351 -- type is tagged limited when validating derivations in the private
12352 -- part. (See AI05-096).
12354 if Nkind (Def) = N_Formal_Derived_Type_Definition then
12355 if Present (Interface_List (Def)) then
12356 Set_Generic_Parent_Type (Decl_Node, A_Gen_T);
12357 else
12358 Set_Generic_Parent_Type (Decl_Node, Ancestor);
12359 end if;
12361 elsif Nkind_In (Def,
12362 N_Formal_Private_Type_Definition,
12363 N_Formal_Incomplete_Type_Definition)
12364 then
12365 Set_Generic_Parent_Type (Decl_Node, A_Gen_T);
12366 end if;
12368 -- If the actual is a synchronized type that implements an interface,
12369 -- the primitive operations are attached to the corresponding record,
12370 -- and we have to treat it as an additional generic actual, so that its
12371 -- primitive operations become visible in the instance. The task or
12372 -- protected type itself does not carry primitive operations.
12374 if Is_Concurrent_Type (Act_T)
12375 and then Is_Tagged_Type (Act_T)
12376 and then Present (Corresponding_Record_Type (Act_T))
12377 and then Present (Ancestor)
12378 and then Is_Interface (Ancestor)
12379 then
12380 declare
12381 Corr_Rec : constant Entity_Id :=
12382 Corresponding_Record_Type (Act_T);
12383 New_Corr : Entity_Id;
12384 Corr_Decl : Node_Id;
12386 begin
12387 New_Corr := Make_Temporary (Loc, 'S');
12388 Corr_Decl :=
12389 Make_Subtype_Declaration (Loc,
12390 Defining_Identifier => New_Corr,
12391 Subtype_Indication =>
12392 New_Occurrence_Of (Corr_Rec, Loc));
12393 Append_To (Decl_Nodes, Corr_Decl);
12395 if Ekind (Act_T) = E_Task_Type then
12396 Set_Ekind (Subt, E_Task_Subtype);
12397 else
12398 Set_Ekind (Subt, E_Protected_Subtype);
12399 end if;
12401 Set_Corresponding_Record_Type (Subt, Corr_Rec);
12402 Set_Generic_Parent_Type (Corr_Decl, Ancestor);
12403 Set_Generic_Parent_Type (Decl_Node, Empty);
12404 end;
12405 end if;
12407 return Decl_Nodes;
12408 end Instantiate_Type;
12410 ---------------------
12411 -- Is_In_Main_Unit --
12412 ---------------------
12414 function Is_In_Main_Unit (N : Node_Id) return Boolean is
12415 Unum : constant Unit_Number_Type := Get_Source_Unit (N);
12416 Current_Unit : Node_Id;
12418 begin
12419 if Unum = Main_Unit then
12420 return True;
12422 -- If the current unit is a subunit then it is either the main unit or
12423 -- is being compiled as part of the main unit.
12425 elsif Nkind (N) = N_Compilation_Unit then
12426 return Nkind (Unit (N)) = N_Subunit;
12427 end if;
12429 Current_Unit := Parent (N);
12430 while Present (Current_Unit)
12431 and then Nkind (Current_Unit) /= N_Compilation_Unit
12432 loop
12433 Current_Unit := Parent (Current_Unit);
12434 end loop;
12436 -- The instantiation node is in the main unit, or else the current node
12437 -- (perhaps as the result of nested instantiations) is in the main unit,
12438 -- or in the declaration of the main unit, which in this last case must
12439 -- be a body.
12441 return Unum = Main_Unit
12442 or else Current_Unit = Cunit (Main_Unit)
12443 or else Current_Unit = Library_Unit (Cunit (Main_Unit))
12444 or else (Present (Library_Unit (Current_Unit))
12445 and then Is_In_Main_Unit (Library_Unit (Current_Unit)));
12446 end Is_In_Main_Unit;
12448 ----------------------------
12449 -- Load_Parent_Of_Generic --
12450 ----------------------------
12452 procedure Load_Parent_Of_Generic
12453 (N : Node_Id;
12454 Spec : Node_Id;
12455 Body_Optional : Boolean := False)
12457 Comp_Unit : constant Node_Id := Cunit (Get_Source_Unit (Spec));
12458 Saved_Style_Check : constant Boolean := Style_Check;
12459 Saved_Warnings : constant Warning_Record := Save_Warnings;
12460 True_Parent : Node_Id;
12461 Inst_Node : Node_Id;
12462 OK : Boolean;
12463 Previous_Instances : constant Elist_Id := New_Elmt_List;
12465 procedure Collect_Previous_Instances (Decls : List_Id);
12466 -- Collect all instantiations in the given list of declarations, that
12467 -- precede the generic that we need to load. If the bodies of these
12468 -- instantiations are available, we must analyze them, to ensure that
12469 -- the public symbols generated are the same when the unit is compiled
12470 -- to generate code, and when it is compiled in the context of a unit
12471 -- that needs a particular nested instance. This process is applied to
12472 -- both package and subprogram instances.
12474 --------------------------------
12475 -- Collect_Previous_Instances --
12476 --------------------------------
12478 procedure Collect_Previous_Instances (Decls : List_Id) is
12479 Decl : Node_Id;
12481 begin
12482 Decl := First (Decls);
12483 while Present (Decl) loop
12484 if Sloc (Decl) >= Sloc (Inst_Node) then
12485 return;
12487 -- If Decl is an instantiation, then record it as requiring
12488 -- instantiation of the corresponding body, except if it is an
12489 -- abbreviated instantiation generated internally for conformance
12490 -- checking purposes only for the case of a formal package
12491 -- declared without a box (see Instantiate_Formal_Package). Such
12492 -- an instantiation does not generate any code (the actual code
12493 -- comes from actual) and thus does not need to be analyzed here.
12494 -- If the instantiation appears with a generic package body it is
12495 -- not analyzed here either.
12497 elsif Nkind (Decl) = N_Package_Instantiation
12498 and then not Is_Internal (Defining_Entity (Decl))
12499 then
12500 Append_Elmt (Decl, Previous_Instances);
12502 -- For a subprogram instantiation, omit instantiations intrinsic
12503 -- operations (Unchecked_Conversions, etc.) that have no bodies.
12505 elsif Nkind_In (Decl, N_Function_Instantiation,
12506 N_Procedure_Instantiation)
12507 and then not Is_Intrinsic_Subprogram (Entity (Name (Decl)))
12508 then
12509 Append_Elmt (Decl, Previous_Instances);
12511 elsif Nkind (Decl) = N_Package_Declaration then
12512 Collect_Previous_Instances
12513 (Visible_Declarations (Specification (Decl)));
12514 Collect_Previous_Instances
12515 (Private_Declarations (Specification (Decl)));
12517 -- Previous non-generic bodies may contain instances as well
12519 elsif Nkind (Decl) = N_Package_Body
12520 and then Ekind (Corresponding_Spec (Decl)) /= E_Generic_Package
12521 then
12522 Collect_Previous_Instances (Declarations (Decl));
12524 elsif Nkind (Decl) = N_Subprogram_Body
12525 and then not Acts_As_Spec (Decl)
12526 and then not Is_Generic_Subprogram (Corresponding_Spec (Decl))
12527 then
12528 Collect_Previous_Instances (Declarations (Decl));
12529 end if;
12531 Next (Decl);
12532 end loop;
12533 end Collect_Previous_Instances;
12535 -- Start of processing for Load_Parent_Of_Generic
12537 begin
12538 if not In_Same_Source_Unit (N, Spec)
12539 or else Nkind (Unit (Comp_Unit)) = N_Package_Declaration
12540 or else (Nkind (Unit (Comp_Unit)) = N_Package_Body
12541 and then not Is_In_Main_Unit (Spec))
12542 then
12543 -- Find body of parent of spec, and analyze it. A special case arises
12544 -- when the parent is an instantiation, that is to say when we are
12545 -- currently instantiating a nested generic. In that case, there is
12546 -- no separate file for the body of the enclosing instance. Instead,
12547 -- the enclosing body must be instantiated as if it were a pending
12548 -- instantiation, in order to produce the body for the nested generic
12549 -- we require now. Note that in that case the generic may be defined
12550 -- in a package body, the instance defined in the same package body,
12551 -- and the original enclosing body may not be in the main unit.
12553 Inst_Node := Empty;
12555 True_Parent := Parent (Spec);
12556 while Present (True_Parent)
12557 and then Nkind (True_Parent) /= N_Compilation_Unit
12558 loop
12559 if Nkind (True_Parent) = N_Package_Declaration
12560 and then
12561 Nkind (Original_Node (True_Parent)) = N_Package_Instantiation
12562 then
12563 -- Parent is a compilation unit that is an instantiation.
12564 -- Instantiation node has been replaced with package decl.
12566 Inst_Node := Original_Node (True_Parent);
12567 exit;
12569 elsif Nkind (True_Parent) = N_Package_Declaration
12570 and then Present (Generic_Parent (Specification (True_Parent)))
12571 and then Nkind (Parent (True_Parent)) /= N_Compilation_Unit
12572 then
12573 -- Parent is an instantiation within another specification.
12574 -- Declaration for instance has been inserted before original
12575 -- instantiation node. A direct link would be preferable?
12577 Inst_Node := Next (True_Parent);
12578 while Present (Inst_Node)
12579 and then Nkind (Inst_Node) /= N_Package_Instantiation
12580 loop
12581 Next (Inst_Node);
12582 end loop;
12584 -- If the instance appears within a generic, and the generic
12585 -- unit is defined within a formal package of the enclosing
12586 -- generic, there is no generic body available, and none
12587 -- needed. A more precise test should be used ???
12589 if No (Inst_Node) then
12590 return;
12591 end if;
12593 exit;
12595 else
12596 True_Parent := Parent (True_Parent);
12597 end if;
12598 end loop;
12600 -- Case where we are currently instantiating a nested generic
12602 if Present (Inst_Node) then
12603 if Nkind (Parent (True_Parent)) = N_Compilation_Unit then
12605 -- Instantiation node and declaration of instantiated package
12606 -- were exchanged when only the declaration was needed.
12607 -- Restore instantiation node before proceeding with body.
12609 Set_Unit (Parent (True_Parent), Inst_Node);
12610 end if;
12612 -- Now complete instantiation of enclosing body, if it appears in
12613 -- some other unit. If it appears in the current unit, the body
12614 -- will have been instantiated already.
12616 if No (Corresponding_Body (Instance_Spec (Inst_Node))) then
12618 -- We need to determine the expander mode to instantiate the
12619 -- enclosing body. Because the generic body we need may use
12620 -- global entities declared in the enclosing package (including
12621 -- aggregates) it is in general necessary to compile this body
12622 -- with expansion enabled, except if we are within a generic
12623 -- package, in which case the usual generic rule applies.
12625 declare
12626 Exp_Status : Boolean := True;
12627 Scop : Entity_Id;
12629 begin
12630 -- Loop through scopes looking for generic package
12632 Scop := Scope (Defining_Entity (Instance_Spec (Inst_Node)));
12633 while Present (Scop)
12634 and then Scop /= Standard_Standard
12635 loop
12636 if Ekind (Scop) = E_Generic_Package then
12637 Exp_Status := False;
12638 exit;
12639 end if;
12641 Scop := Scope (Scop);
12642 end loop;
12644 -- Collect previous instantiations in the unit that contains
12645 -- the desired generic.
12647 if Nkind (Parent (True_Parent)) /= N_Compilation_Unit
12648 and then not Body_Optional
12649 then
12650 declare
12651 Decl : Elmt_Id;
12652 Info : Pending_Body_Info;
12653 Par : Node_Id;
12655 begin
12656 Par := Parent (Inst_Node);
12657 while Present (Par) loop
12658 exit when Nkind (Parent (Par)) = N_Compilation_Unit;
12659 Par := Parent (Par);
12660 end loop;
12662 pragma Assert (Present (Par));
12664 if Nkind (Par) = N_Package_Body then
12665 Collect_Previous_Instances (Declarations (Par));
12667 elsif Nkind (Par) = N_Package_Declaration then
12668 Collect_Previous_Instances
12669 (Visible_Declarations (Specification (Par)));
12670 Collect_Previous_Instances
12671 (Private_Declarations (Specification (Par)));
12673 else
12674 -- Enclosing unit is a subprogram body. In this
12675 -- case all instance bodies are processed in order
12676 -- and there is no need to collect them separately.
12678 null;
12679 end if;
12681 Decl := First_Elmt (Previous_Instances);
12682 while Present (Decl) loop
12683 Info :=
12684 (Inst_Node => Node (Decl),
12685 Act_Decl =>
12686 Instance_Spec (Node (Decl)),
12687 Expander_Status => Exp_Status,
12688 Current_Sem_Unit =>
12689 Get_Code_Unit (Sloc (Node (Decl))),
12690 Scope_Suppress => Scope_Suppress,
12691 Local_Suppress_Stack_Top =>
12692 Local_Suppress_Stack_Top,
12693 Version => Ada_Version,
12694 Version_Pragma => Ada_Version_Pragma,
12695 Warnings => Save_Warnings,
12696 SPARK_Mode => SPARK_Mode,
12697 SPARK_Mode_Pragma => SPARK_Mode_Pragma);
12699 -- Package instance
12702 Nkind (Node (Decl)) = N_Package_Instantiation
12703 then
12704 Instantiate_Package_Body
12705 (Info, Body_Optional => True);
12707 -- Subprogram instance
12709 else
12710 -- The instance_spec is the wrapper package,
12711 -- and the subprogram declaration is the last
12712 -- declaration in the wrapper.
12714 Info.Act_Decl :=
12715 Last
12716 (Visible_Declarations
12717 (Specification (Info.Act_Decl)));
12719 Instantiate_Subprogram_Body
12720 (Info, Body_Optional => True);
12721 end if;
12723 Next_Elmt (Decl);
12724 end loop;
12725 end;
12726 end if;
12728 Instantiate_Package_Body
12729 (Body_Info =>
12730 ((Inst_Node => Inst_Node,
12731 Act_Decl => True_Parent,
12732 Expander_Status => Exp_Status,
12733 Current_Sem_Unit => Get_Code_Unit
12734 (Sloc (Inst_Node)),
12735 Scope_Suppress => Scope_Suppress,
12736 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
12737 Version => Ada_Version,
12738 Version_Pragma => Ada_Version_Pragma,
12739 Warnings => Save_Warnings,
12740 SPARK_Mode => SPARK_Mode,
12741 SPARK_Mode_Pragma => SPARK_Mode_Pragma)),
12742 Body_Optional => Body_Optional);
12743 end;
12744 end if;
12746 -- Case where we are not instantiating a nested generic
12748 else
12749 Opt.Style_Check := False;
12750 Expander_Mode_Save_And_Set (True);
12751 Load_Needed_Body (Comp_Unit, OK);
12752 Opt.Style_Check := Saved_Style_Check;
12753 Restore_Warnings (Saved_Warnings);
12754 Expander_Mode_Restore;
12756 if not OK
12757 and then Unit_Requires_Body (Defining_Entity (Spec))
12758 and then not Body_Optional
12759 then
12760 declare
12761 Bname : constant Unit_Name_Type :=
12762 Get_Body_Name (Get_Unit_Name (Unit (Comp_Unit)));
12764 begin
12765 -- In CodePeer mode, the missing body may make the analysis
12766 -- incomplete, but we do not treat it as fatal.
12768 if CodePeer_Mode then
12769 return;
12771 else
12772 Error_Msg_Unit_1 := Bname;
12773 Error_Msg_N ("this instantiation requires$!", N);
12774 Error_Msg_File_1 :=
12775 Get_File_Name (Bname, Subunit => False);
12776 Error_Msg_N ("\but file{ was not found!", N);
12777 raise Unrecoverable_Error;
12778 end if;
12779 end;
12780 end if;
12781 end if;
12782 end if;
12784 -- If loading parent of the generic caused an instantiation circularity,
12785 -- we abandon compilation at this point, because otherwise in some cases
12786 -- we get into trouble with infinite recursions after this point.
12788 if Circularity_Detected then
12789 raise Unrecoverable_Error;
12790 end if;
12791 end Load_Parent_Of_Generic;
12793 ---------------------------------
12794 -- Map_Formal_Package_Entities --
12795 ---------------------------------
12797 procedure Map_Formal_Package_Entities (Form : Entity_Id; Act : Entity_Id) is
12798 E1 : Entity_Id;
12799 E2 : Entity_Id;
12801 begin
12802 Set_Instance_Of (Form, Act);
12804 -- Traverse formal and actual package to map the corresponding entities.
12805 -- We skip over internal entities that may be generated during semantic
12806 -- analysis, and find the matching entities by name, given that they
12807 -- must appear in the same order.
12809 E1 := First_Entity (Form);
12810 E2 := First_Entity (Act);
12811 while Present (E1) and then E1 /= First_Private_Entity (Form) loop
12812 -- Could this test be a single condition??? Seems like it could, and
12813 -- isn't FPE (Form) a constant anyway???
12815 if not Is_Internal (E1)
12816 and then Present (Parent (E1))
12817 and then not Is_Class_Wide_Type (E1)
12818 and then not Is_Internal_Name (Chars (E1))
12819 then
12820 while Present (E2) and then Chars (E2) /= Chars (E1) loop
12821 Next_Entity (E2);
12822 end loop;
12824 if No (E2) then
12825 exit;
12826 else
12827 Set_Instance_Of (E1, E2);
12829 if Is_Type (E1) and then Is_Tagged_Type (E2) then
12830 Set_Instance_Of (Class_Wide_Type (E1), Class_Wide_Type (E2));
12831 end if;
12833 if Is_Constrained (E1) then
12834 Set_Instance_Of (Base_Type (E1), Base_Type (E2));
12835 end if;
12837 if Ekind (E1) = E_Package and then No (Renamed_Object (E1)) then
12838 Map_Formal_Package_Entities (E1, E2);
12839 end if;
12840 end if;
12841 end if;
12843 Next_Entity (E1);
12844 end loop;
12845 end Map_Formal_Package_Entities;
12847 -----------------------
12848 -- Move_Freeze_Nodes --
12849 -----------------------
12851 procedure Move_Freeze_Nodes
12852 (Out_Of : Entity_Id;
12853 After : Node_Id;
12854 L : List_Id)
12856 Decl : Node_Id;
12857 Next_Decl : Node_Id;
12858 Next_Node : Node_Id := After;
12859 Spec : Node_Id;
12861 function Is_Outer_Type (T : Entity_Id) return Boolean;
12862 -- Check whether entity is declared in a scope external to that of the
12863 -- generic unit.
12865 -------------------
12866 -- Is_Outer_Type --
12867 -------------------
12869 function Is_Outer_Type (T : Entity_Id) return Boolean is
12870 Scop : Entity_Id := Scope (T);
12872 begin
12873 if Scope_Depth (Scop) < Scope_Depth (Out_Of) then
12874 return True;
12876 else
12877 while Scop /= Standard_Standard loop
12878 if Scop = Out_Of then
12879 return False;
12880 else
12881 Scop := Scope (Scop);
12882 end if;
12883 end loop;
12885 return True;
12886 end if;
12887 end Is_Outer_Type;
12889 -- Start of processing for Move_Freeze_Nodes
12891 begin
12892 if No (L) then
12893 return;
12894 end if;
12896 -- First remove the freeze nodes that may appear before all other
12897 -- declarations.
12899 Decl := First (L);
12900 while Present (Decl)
12901 and then Nkind (Decl) = N_Freeze_Entity
12902 and then Is_Outer_Type (Entity (Decl))
12903 loop
12904 Decl := Remove_Head (L);
12905 Insert_After (Next_Node, Decl);
12906 Set_Analyzed (Decl, False);
12907 Next_Node := Decl;
12908 Decl := First (L);
12909 end loop;
12911 -- Next scan the list of declarations and remove each freeze node that
12912 -- appears ahead of the current node.
12914 while Present (Decl) loop
12915 while Present (Next (Decl))
12916 and then Nkind (Next (Decl)) = N_Freeze_Entity
12917 and then Is_Outer_Type (Entity (Next (Decl)))
12918 loop
12919 Next_Decl := Remove_Next (Decl);
12920 Insert_After (Next_Node, Next_Decl);
12921 Set_Analyzed (Next_Decl, False);
12922 Next_Node := Next_Decl;
12923 end loop;
12925 -- If the declaration is a nested package or concurrent type, then
12926 -- recurse. Nested generic packages will have been processed from the
12927 -- inside out.
12929 case Nkind (Decl) is
12930 when N_Package_Declaration =>
12931 Spec := Specification (Decl);
12933 when N_Task_Type_Declaration =>
12934 Spec := Task_Definition (Decl);
12936 when N_Protected_Type_Declaration =>
12937 Spec := Protected_Definition (Decl);
12939 when others =>
12940 Spec := Empty;
12941 end case;
12943 if Present (Spec) then
12944 Move_Freeze_Nodes (Out_Of, Next_Node, Visible_Declarations (Spec));
12945 Move_Freeze_Nodes (Out_Of, Next_Node, Private_Declarations (Spec));
12946 end if;
12948 Next (Decl);
12949 end loop;
12950 end Move_Freeze_Nodes;
12952 ----------------
12953 -- Next_Assoc --
12954 ----------------
12956 function Next_Assoc (E : Assoc_Ptr) return Assoc_Ptr is
12957 begin
12958 return Generic_Renamings.Table (E).Next_In_HTable;
12959 end Next_Assoc;
12961 ------------------------
12962 -- Preanalyze_Actuals --
12963 ------------------------
12965 procedure Preanalyze_Actuals (N : Node_Id) is
12966 Assoc : Node_Id;
12967 Act : Node_Id;
12968 Errs : constant Int := Serious_Errors_Detected;
12970 Cur : Entity_Id := Empty;
12971 -- Current homograph of the instance name
12973 Vis : Boolean;
12974 -- Saved visibility status of the current homograph
12976 begin
12977 Assoc := First (Generic_Associations (N));
12979 -- If the instance is a child unit, its name may hide an outer homonym,
12980 -- so make it invisible to perform name resolution on the actuals.
12982 if Nkind (Defining_Unit_Name (N)) = N_Defining_Program_Unit_Name
12983 and then Present
12984 (Current_Entity (Defining_Identifier (Defining_Unit_Name (N))))
12985 then
12986 Cur := Current_Entity (Defining_Identifier (Defining_Unit_Name (N)));
12988 if Is_Compilation_Unit (Cur) then
12989 Vis := Is_Immediately_Visible (Cur);
12990 Set_Is_Immediately_Visible (Cur, False);
12991 else
12992 Cur := Empty;
12993 end if;
12994 end if;
12996 while Present (Assoc) loop
12997 if Nkind (Assoc) /= N_Others_Choice then
12998 Act := Explicit_Generic_Actual_Parameter (Assoc);
13000 -- Within a nested instantiation, a defaulted actual is an empty
13001 -- association, so nothing to analyze. If the subprogram actual
13002 -- is an attribute, analyze prefix only, because actual is not a
13003 -- complete attribute reference.
13005 -- If actual is an allocator, analyze expression only. The full
13006 -- analysis can generate code, and if instance is a compilation
13007 -- unit we have to wait until the package instance is installed
13008 -- to have a proper place to insert this code.
13010 -- String literals may be operators, but at this point we do not
13011 -- know whether the actual is a formal subprogram or a string.
13013 if No (Act) then
13014 null;
13016 elsif Nkind (Act) = N_Attribute_Reference then
13017 Analyze (Prefix (Act));
13019 elsif Nkind (Act) = N_Explicit_Dereference then
13020 Analyze (Prefix (Act));
13022 elsif Nkind (Act) = N_Allocator then
13023 declare
13024 Expr : constant Node_Id := Expression (Act);
13026 begin
13027 if Nkind (Expr) = N_Subtype_Indication then
13028 Analyze (Subtype_Mark (Expr));
13030 -- Analyze separately each discriminant constraint, when
13031 -- given with a named association.
13033 declare
13034 Constr : Node_Id;
13036 begin
13037 Constr := First (Constraints (Constraint (Expr)));
13038 while Present (Constr) loop
13039 if Nkind (Constr) = N_Discriminant_Association then
13040 Analyze (Expression (Constr));
13041 else
13042 Analyze (Constr);
13043 end if;
13045 Next (Constr);
13046 end loop;
13047 end;
13049 else
13050 Analyze (Expr);
13051 end if;
13052 end;
13054 elsif Nkind (Act) /= N_Operator_Symbol then
13055 Analyze (Act);
13056 end if;
13058 if Errs /= Serious_Errors_Detected then
13060 -- Do a minimal analysis of the generic, to prevent spurious
13061 -- warnings complaining about the generic being unreferenced,
13062 -- before abandoning the instantiation.
13064 Analyze (Name (N));
13066 if Is_Entity_Name (Name (N))
13067 and then Etype (Name (N)) /= Any_Type
13068 then
13069 Generate_Reference (Entity (Name (N)), Name (N));
13070 Set_Is_Instantiated (Entity (Name (N)));
13071 end if;
13073 if Present (Cur) then
13075 -- For the case of a child instance hiding an outer homonym,
13076 -- provide additional warning which might explain the error.
13078 Set_Is_Immediately_Visible (Cur, Vis);
13079 Error_Msg_NE ("& hides outer unit with the same name??",
13080 N, Defining_Unit_Name (N));
13081 end if;
13083 Abandon_Instantiation (Act);
13084 end if;
13085 end if;
13087 Next (Assoc);
13088 end loop;
13090 if Present (Cur) then
13091 Set_Is_Immediately_Visible (Cur, Vis);
13092 end if;
13093 end Preanalyze_Actuals;
13095 -------------------
13096 -- Remove_Parent --
13097 -------------------
13099 procedure Remove_Parent (In_Body : Boolean := False) is
13100 S : Entity_Id := Current_Scope;
13101 -- S is the scope containing the instantiation just completed. The scope
13102 -- stack contains the parent instances of the instantiation, followed by
13103 -- the original S.
13105 Cur_P : Entity_Id;
13106 E : Entity_Id;
13107 P : Entity_Id;
13108 Hidden : Elmt_Id;
13110 begin
13111 -- After child instantiation is complete, remove from scope stack the
13112 -- extra copy of the current scope, and then remove parent instances.
13114 if not In_Body then
13115 Pop_Scope;
13117 while Current_Scope /= S loop
13118 P := Current_Scope;
13119 End_Package_Scope (Current_Scope);
13121 if In_Open_Scopes (P) then
13122 E := First_Entity (P);
13123 while Present (E) loop
13124 Set_Is_Immediately_Visible (E, True);
13125 Next_Entity (E);
13126 end loop;
13128 -- If instantiation is declared in a block, it is the enclosing
13129 -- scope that might be a parent instance. Note that only one
13130 -- block can be involved, because the parent instances have
13131 -- been installed within it.
13133 if Ekind (P) = E_Block then
13134 Cur_P := Scope (P);
13135 else
13136 Cur_P := P;
13137 end if;
13139 if Is_Generic_Instance (Cur_P) and then P /= Current_Scope then
13140 -- We are within an instance of some sibling. Retain
13141 -- visibility of parent, for proper subsequent cleanup, and
13142 -- reinstall private declarations as well.
13144 Set_In_Private_Part (P);
13145 Install_Private_Declarations (P);
13146 end if;
13148 -- If the ultimate parent is a top-level unit recorded in
13149 -- Instance_Parent_Unit, then reset its visibility to what it was
13150 -- before instantiation. (It's not clear what the purpose is of
13151 -- testing whether Scope (P) is In_Open_Scopes, but that test was
13152 -- present before the ultimate parent test was added.???)
13154 elsif not In_Open_Scopes (Scope (P))
13155 or else (P = Instance_Parent_Unit
13156 and then not Parent_Unit_Visible)
13157 then
13158 Set_Is_Immediately_Visible (P, False);
13160 -- If the current scope is itself an instantiation of a generic
13161 -- nested within P, and we are in the private part of body of this
13162 -- instantiation, restore the full views of P, that were removed
13163 -- in End_Package_Scope above. This obscure case can occur when a
13164 -- subunit of a generic contains an instance of a child unit of
13165 -- its generic parent unit.
13167 elsif S = Current_Scope and then Is_Generic_Instance (S) then
13168 declare
13169 Par : constant Entity_Id :=
13170 Generic_Parent (Package_Specification (S));
13171 begin
13172 if Present (Par)
13173 and then P = Scope (Par)
13174 and then (In_Package_Body (S) or else In_Private_Part (S))
13175 then
13176 Set_In_Private_Part (P);
13177 Install_Private_Declarations (P);
13178 end if;
13179 end;
13180 end if;
13181 end loop;
13183 -- Reset visibility of entities in the enclosing scope
13185 Set_Is_Hidden_Open_Scope (Current_Scope, False);
13187 Hidden := First_Elmt (Hidden_Entities);
13188 while Present (Hidden) loop
13189 Set_Is_Immediately_Visible (Node (Hidden), True);
13190 Next_Elmt (Hidden);
13191 end loop;
13193 else
13194 -- Each body is analyzed separately, and there is no context that
13195 -- needs preserving from one body instance to the next, so remove all
13196 -- parent scopes that have been installed.
13198 while Present (S) loop
13199 End_Package_Scope (S);
13200 Set_Is_Immediately_Visible (S, False);
13201 S := Current_Scope;
13202 exit when S = Standard_Standard;
13203 end loop;
13204 end if;
13205 end Remove_Parent;
13207 -----------------
13208 -- Restore_Env --
13209 -----------------
13211 procedure Restore_Env is
13212 Saved : Instance_Env renames Instance_Envs.Table (Instance_Envs.Last);
13214 begin
13215 if No (Current_Instantiated_Parent.Act_Id) then
13216 -- Restore environment after subprogram inlining
13218 Restore_Private_Views (Empty);
13219 end if;
13221 Current_Instantiated_Parent := Saved.Instantiated_Parent;
13222 Exchanged_Views := Saved.Exchanged_Views;
13223 Hidden_Entities := Saved.Hidden_Entities;
13224 Current_Sem_Unit := Saved.Current_Sem_Unit;
13225 Parent_Unit_Visible := Saved.Parent_Unit_Visible;
13226 Instance_Parent_Unit := Saved.Instance_Parent_Unit;
13228 Restore_Opt_Config_Switches (Saved.Switches);
13230 Instance_Envs.Decrement_Last;
13231 end Restore_Env;
13233 ---------------------------
13234 -- Restore_Private_Views --
13235 ---------------------------
13237 procedure Restore_Private_Views
13238 (Pack_Id : Entity_Id;
13239 Is_Package : Boolean := True)
13241 M : Elmt_Id;
13242 E : Entity_Id;
13243 Typ : Entity_Id;
13244 Dep_Elmt : Elmt_Id;
13245 Dep_Typ : Node_Id;
13247 procedure Restore_Nested_Formal (Formal : Entity_Id);
13248 -- Hide the generic formals of formal packages declared with box which
13249 -- were reachable in the current instantiation.
13251 ---------------------------
13252 -- Restore_Nested_Formal --
13253 ---------------------------
13255 procedure Restore_Nested_Formal (Formal : Entity_Id) is
13256 Ent : Entity_Id;
13258 begin
13259 if Present (Renamed_Object (Formal))
13260 and then Denotes_Formal_Package (Renamed_Object (Formal), True)
13261 then
13262 return;
13264 elsif Present (Associated_Formal_Package (Formal)) then
13265 Ent := First_Entity (Formal);
13266 while Present (Ent) loop
13267 exit when Ekind (Ent) = E_Package
13268 and then Renamed_Entity (Ent) = Renamed_Entity (Formal);
13270 Set_Is_Hidden (Ent);
13271 Set_Is_Potentially_Use_Visible (Ent, False);
13273 -- If package, then recurse
13275 if Ekind (Ent) = E_Package then
13276 Restore_Nested_Formal (Ent);
13277 end if;
13279 Next_Entity (Ent);
13280 end loop;
13281 end if;
13282 end Restore_Nested_Formal;
13284 -- Start of processing for Restore_Private_Views
13286 begin
13287 M := First_Elmt (Exchanged_Views);
13288 while Present (M) loop
13289 Typ := Node (M);
13291 -- Subtypes of types whose views have been exchanged, and that are
13292 -- defined within the instance, were not on the Private_Dependents
13293 -- list on entry to the instance, so they have to be exchanged
13294 -- explicitly now, in order to remain consistent with the view of the
13295 -- parent type.
13297 if Ekind_In (Typ, E_Private_Type,
13298 E_Limited_Private_Type,
13299 E_Record_Type_With_Private)
13300 then
13301 Dep_Elmt := First_Elmt (Private_Dependents (Typ));
13302 while Present (Dep_Elmt) loop
13303 Dep_Typ := Node (Dep_Elmt);
13305 if Scope (Dep_Typ) = Pack_Id
13306 and then Present (Full_View (Dep_Typ))
13307 then
13308 Replace_Elmt (Dep_Elmt, Full_View (Dep_Typ));
13309 Exchange_Declarations (Dep_Typ);
13310 end if;
13312 Next_Elmt (Dep_Elmt);
13313 end loop;
13314 end if;
13316 Exchange_Declarations (Node (M));
13317 Next_Elmt (M);
13318 end loop;
13320 if No (Pack_Id) then
13321 return;
13322 end if;
13324 -- Make the generic formal parameters private, and make the formal types
13325 -- into subtypes of the actuals again.
13327 E := First_Entity (Pack_Id);
13328 while Present (E) loop
13329 Set_Is_Hidden (E, True);
13331 if Is_Type (E)
13332 and then Nkind (Parent (E)) = N_Subtype_Declaration
13333 then
13334 -- If the actual for E is itself a generic actual type from
13335 -- an enclosing instance, E is still a generic actual type
13336 -- outside of the current instance. This matter when resolving
13337 -- an overloaded call that may be ambiguous in the enclosing
13338 -- instance, when two of its actuals coincide.
13340 if Is_Entity_Name (Subtype_Indication (Parent (E)))
13341 and then Is_Generic_Actual_Type
13342 (Entity (Subtype_Indication (Parent (E))))
13343 then
13344 null;
13345 else
13346 Set_Is_Generic_Actual_Type (E, False);
13347 end if;
13349 -- An unusual case of aliasing: the actual may also be directly
13350 -- visible in the generic, and be private there, while it is fully
13351 -- visible in the context of the instance. The internal subtype
13352 -- is private in the instance but has full visibility like its
13353 -- parent in the enclosing scope. This enforces the invariant that
13354 -- the privacy status of all private dependents of a type coincide
13355 -- with that of the parent type. This can only happen when a
13356 -- generic child unit is instantiated within a sibling.
13358 if Is_Private_Type (E)
13359 and then not Is_Private_Type (Etype (E))
13360 then
13361 Exchange_Declarations (E);
13362 end if;
13364 elsif Ekind (E) = E_Package then
13366 -- The end of the renaming list is the renaming of the generic
13367 -- package itself. If the instance is a subprogram, all entities
13368 -- in the corresponding package are renamings. If this entity is
13369 -- a formal package, make its own formals private as well. The
13370 -- actual in this case is itself the renaming of an instantiation.
13371 -- If the entity is not a package renaming, it is the entity
13372 -- created to validate formal package actuals: ignore it.
13374 -- If the actual is itself a formal package for the enclosing
13375 -- generic, or the actual for such a formal package, it remains
13376 -- visible on exit from the instance, and therefore nothing needs
13377 -- to be done either, except to keep it accessible.
13379 if Is_Package and then Renamed_Object (E) = Pack_Id then
13380 exit;
13382 elsif Nkind (Parent (E)) /= N_Package_Renaming_Declaration then
13383 null;
13385 elsif
13386 Denotes_Formal_Package (Renamed_Object (E), True, Pack_Id)
13387 then
13388 Set_Is_Hidden (E, False);
13390 else
13391 declare
13392 Act_P : constant Entity_Id := Renamed_Object (E);
13393 Id : Entity_Id;
13395 begin
13396 Id := First_Entity (Act_P);
13397 while Present (Id)
13398 and then Id /= First_Private_Entity (Act_P)
13399 loop
13400 exit when Ekind (Id) = E_Package
13401 and then Renamed_Object (Id) = Act_P;
13403 Set_Is_Hidden (Id, True);
13404 Set_Is_Potentially_Use_Visible (Id, In_Use (Act_P));
13406 if Ekind (Id) = E_Package then
13407 Restore_Nested_Formal (Id);
13408 end if;
13410 Next_Entity (Id);
13411 end loop;
13412 end;
13413 end if;
13414 end if;
13416 Next_Entity (E);
13417 end loop;
13418 end Restore_Private_Views;
13420 --------------
13421 -- Save_Env --
13422 --------------
13424 procedure Save_Env
13425 (Gen_Unit : Entity_Id;
13426 Act_Unit : Entity_Id)
13428 begin
13429 Init_Env;
13430 Set_Instance_Env (Gen_Unit, Act_Unit);
13431 end Save_Env;
13433 ----------------------------
13434 -- Save_Global_References --
13435 ----------------------------
13437 procedure Save_Global_References (N : Node_Id) is
13438 Gen_Scope : Entity_Id;
13439 E : Entity_Id;
13440 N2 : Node_Id;
13442 function Is_Global (E : Entity_Id) return Boolean;
13443 -- Check whether entity is defined outside of generic unit. Examine the
13444 -- scope of an entity, and the scope of the scope, etc, until we find
13445 -- either Standard, in which case the entity is global, or the generic
13446 -- unit itself, which indicates that the entity is local. If the entity
13447 -- is the generic unit itself, as in the case of a recursive call, or
13448 -- the enclosing generic unit, if different from the current scope, then
13449 -- it is local as well, because it will be replaced at the point of
13450 -- instantiation. On the other hand, if it is a reference to a child
13451 -- unit of a common ancestor, which appears in an instantiation, it is
13452 -- global because it is used to denote a specific compilation unit at
13453 -- the time the instantiations will be analyzed.
13455 procedure Reset_Entity (N : Node_Id);
13456 -- Save semantic information on global entity so that it is not resolved
13457 -- again at instantiation time.
13459 procedure Save_Entity_Descendants (N : Node_Id);
13460 -- Apply Save_Global_References to the two syntactic descendants of
13461 -- non-terminal nodes that carry an Associated_Node and are processed
13462 -- through Reset_Entity. Once the global entity (if any) has been
13463 -- captured together with its type, only two syntactic descendants need
13464 -- to be traversed to complete the processing of the tree rooted at N.
13465 -- This applies to Selected_Components, Expanded_Names, and to Operator
13466 -- nodes. N can also be a character literal, identifier, or operator
13467 -- symbol node, but the call has no effect in these cases.
13469 procedure Save_Global_Defaults (N1, N2 : Node_Id);
13470 -- Default actuals in nested instances must be handled specially
13471 -- because there is no link to them from the original tree. When an
13472 -- actual subprogram is given by a default, we add an explicit generic
13473 -- association for it in the instantiation node. When we save the
13474 -- global references on the name of the instance, we recover the list
13475 -- of generic associations, and add an explicit one to the original
13476 -- generic tree, through which a global actual can be preserved.
13477 -- Similarly, if a child unit is instantiated within a sibling, in the
13478 -- context of the parent, we must preserve the identifier of the parent
13479 -- so that it can be properly resolved in a subsequent instantiation.
13481 procedure Save_Global_Descendant (D : Union_Id);
13482 -- Apply Save_Global_References recursively to the descendents of the
13483 -- current node.
13485 procedure Save_References (N : Node_Id);
13486 -- This is the recursive procedure that does the work, once the
13487 -- enclosing generic scope has been established.
13489 ---------------
13490 -- Is_Global --
13491 ---------------
13493 function Is_Global (E : Entity_Id) return Boolean is
13494 Se : Entity_Id;
13496 function Is_Instance_Node (Decl : Node_Id) return Boolean;
13497 -- Determine whether the parent node of a reference to a child unit
13498 -- denotes an instantiation or a formal package, in which case the
13499 -- reference to the child unit is global, even if it appears within
13500 -- the current scope (e.g. when the instance appears within the body
13501 -- of an ancestor).
13503 ----------------------
13504 -- Is_Instance_Node --
13505 ----------------------
13507 function Is_Instance_Node (Decl : Node_Id) return Boolean is
13508 begin
13509 return Nkind (Decl) in N_Generic_Instantiation
13510 or else
13511 Nkind (Original_Node (Decl)) = N_Formal_Package_Declaration;
13512 end Is_Instance_Node;
13514 -- Start of processing for Is_Global
13516 begin
13517 if E = Gen_Scope then
13518 return False;
13520 elsif E = Standard_Standard then
13521 return True;
13523 elsif Is_Child_Unit (E)
13524 and then (Is_Instance_Node (Parent (N2))
13525 or else (Nkind (Parent (N2)) = N_Expanded_Name
13526 and then N2 = Selector_Name (Parent (N2))
13527 and then
13528 Is_Instance_Node (Parent (Parent (N2)))))
13529 then
13530 return True;
13532 else
13533 Se := Scope (E);
13534 while Se /= Gen_Scope loop
13535 if Se = Standard_Standard then
13536 return True;
13537 else
13538 Se := Scope (Se);
13539 end if;
13540 end loop;
13542 return False;
13543 end if;
13544 end Is_Global;
13546 ------------------
13547 -- Reset_Entity --
13548 ------------------
13550 procedure Reset_Entity (N : Node_Id) is
13552 procedure Set_Global_Type (N : Node_Id; N2 : Node_Id);
13553 -- If the type of N2 is global to the generic unit, save the type in
13554 -- the generic node. Just as we perform name capture for explicit
13555 -- references within the generic, we must capture the global types
13556 -- of local entities because they may participate in resolution in
13557 -- the instance.
13559 function Top_Ancestor (E : Entity_Id) return Entity_Id;
13560 -- Find the ultimate ancestor of the current unit. If it is not a
13561 -- generic unit, then the name of the current unit in the prefix of
13562 -- an expanded name must be replaced with its generic homonym to
13563 -- ensure that it will be properly resolved in an instance.
13565 ---------------------
13566 -- Set_Global_Type --
13567 ---------------------
13569 procedure Set_Global_Type (N : Node_Id; N2 : Node_Id) is
13570 Typ : constant Entity_Id := Etype (N2);
13572 begin
13573 Set_Etype (N, Typ);
13575 if Entity (N) /= N2
13576 and then Has_Private_View (Entity (N))
13577 then
13578 -- If the entity of N is not the associated node, this is a
13579 -- nested generic and it has an associated node as well, whose
13580 -- type is already the full view (see below). Indicate that the
13581 -- original node has a private view.
13583 Set_Has_Private_View (N);
13584 end if;
13586 -- If not a private type, nothing else to do
13588 if not Is_Private_Type (Typ) then
13589 if Is_Array_Type (Typ)
13590 and then Is_Private_Type (Component_Type (Typ))
13591 then
13592 Set_Has_Private_View (N);
13593 end if;
13595 -- If it is a derivation of a private type in a context where no
13596 -- full view is needed, nothing to do either.
13598 elsif No (Full_View (Typ)) and then Typ /= Etype (Typ) then
13599 null;
13601 -- Otherwise mark the type for flipping and use the full view when
13602 -- available.
13604 else
13605 Set_Has_Private_View (N);
13607 if Present (Full_View (Typ)) then
13608 Set_Etype (N2, Full_View (Typ));
13609 end if;
13610 end if;
13611 end Set_Global_Type;
13613 ------------------
13614 -- Top_Ancestor --
13615 ------------------
13617 function Top_Ancestor (E : Entity_Id) return Entity_Id is
13618 Par : Entity_Id;
13620 begin
13621 Par := E;
13622 while Is_Child_Unit (Par) loop
13623 Par := Scope (Par);
13624 end loop;
13626 return Par;
13627 end Top_Ancestor;
13629 -- Start of processing for Reset_Entity
13631 begin
13632 N2 := Get_Associated_Node (N);
13633 E := Entity (N2);
13635 if Present (E) then
13637 -- If the node is an entry call to an entry in an enclosing task,
13638 -- it is rewritten as a selected component. No global entity to
13639 -- preserve in this case, since the expansion will be redone in
13640 -- the instance.
13642 if not Nkind_In (E, N_Defining_Identifier,
13643 N_Defining_Character_Literal,
13644 N_Defining_Operator_Symbol)
13645 then
13646 Set_Associated_Node (N, Empty);
13647 Set_Etype (N, Empty);
13648 return;
13649 end if;
13651 -- If the entity is an itype created as a subtype of an access
13652 -- type with a null exclusion restore source entity for proper
13653 -- visibility. The itype will be created anew in the instance.
13655 if Is_Itype (E)
13656 and then Ekind (E) = E_Access_Subtype
13657 and then Is_Entity_Name (N)
13658 and then Chars (Etype (E)) = Chars (N)
13659 then
13660 E := Etype (E);
13661 Set_Entity (N2, E);
13662 Set_Etype (N2, E);
13663 end if;
13665 if Is_Global (E) then
13667 -- If the entity is a package renaming that is the prefix of
13668 -- an expanded name, it has been rewritten as the renamed
13669 -- package, which is necessary semantically but complicates
13670 -- ASIS tree traversal, so we recover the original entity to
13671 -- expose the renaming. Take into account that the context may
13672 -- be a nested generic, that the original node may itself have
13673 -- an associated node that had better be an entity, and that
13674 -- the current node is still a selected component.
13676 if Ekind (E) = E_Package
13677 and then Nkind (N) = N_Selected_Component
13678 and then Nkind (Parent (N)) = N_Expanded_Name
13679 and then Present (Original_Node (N2))
13680 and then Is_Entity_Name (Original_Node (N2))
13681 and then Present (Entity (Original_Node (N2)))
13682 then
13683 if Is_Global (Entity (Original_Node (N2))) then
13684 N2 := Original_Node (N2);
13685 Set_Associated_Node (N, N2);
13686 Set_Global_Type (N, N2);
13688 else
13689 -- Renaming is local, and will be resolved in instance
13691 Set_Associated_Node (N, Empty);
13692 Set_Etype (N, Empty);
13693 end if;
13695 else
13696 Set_Global_Type (N, N2);
13697 end if;
13699 elsif Nkind (N) = N_Op_Concat
13700 and then Is_Generic_Type (Etype (N2))
13701 and then (Base_Type (Etype (Right_Opnd (N2))) = Etype (N2)
13702 or else
13703 Base_Type (Etype (Left_Opnd (N2))) = Etype (N2))
13704 and then Is_Intrinsic_Subprogram (E)
13705 then
13706 null;
13708 else
13709 -- Entity is local. Mark generic node as unresolved.
13710 -- Note that now it does not have an entity.
13712 Set_Associated_Node (N, Empty);
13713 Set_Etype (N, Empty);
13714 end if;
13716 if Nkind (Parent (N)) in N_Generic_Instantiation
13717 and then N = Name (Parent (N))
13718 then
13719 Save_Global_Defaults (Parent (N), Parent (N2));
13720 end if;
13722 elsif Nkind (Parent (N)) = N_Selected_Component
13723 and then Nkind (Parent (N2)) = N_Expanded_Name
13724 then
13725 if Is_Global (Entity (Parent (N2))) then
13726 Change_Selected_Component_To_Expanded_Name (Parent (N));
13727 Set_Associated_Node (Parent (N), Parent (N2));
13728 Set_Global_Type (Parent (N), Parent (N2));
13729 Save_Entity_Descendants (N);
13731 -- If this is a reference to the current generic entity, replace
13732 -- by the name of the generic homonym of the current package. This
13733 -- is because in an instantiation Par.P.Q will not resolve to the
13734 -- name of the instance, whose enclosing scope is not necessarily
13735 -- Par. We use the generic homonym rather that the name of the
13736 -- generic itself because it may be hidden by a local declaration.
13738 elsif In_Open_Scopes (Entity (Parent (N2)))
13739 and then not
13740 Is_Generic_Unit (Top_Ancestor (Entity (Prefix (Parent (N2)))))
13741 then
13742 if Ekind (Entity (Parent (N2))) = E_Generic_Package then
13743 Rewrite (Parent (N),
13744 Make_Identifier (Sloc (N),
13745 Chars =>
13746 Chars (Generic_Homonym (Entity (Parent (N2))))));
13747 else
13748 Rewrite (Parent (N),
13749 Make_Identifier (Sloc (N),
13750 Chars => Chars (Selector_Name (Parent (N2)))));
13751 end if;
13752 end if;
13754 if Nkind (Parent (Parent (N))) in N_Generic_Instantiation
13755 and then Parent (N) = Name (Parent (Parent (N)))
13756 then
13757 Save_Global_Defaults
13758 (Parent (Parent (N)), Parent (Parent ((N2))));
13759 end if;
13761 -- A selected component may denote a static constant that has been
13762 -- folded. If the static constant is global to the generic, capture
13763 -- its value. Otherwise the folding will happen in any instantiation.
13765 elsif Nkind (Parent (N)) = N_Selected_Component
13766 and then Nkind_In (Parent (N2), N_Integer_Literal, N_Real_Literal)
13767 then
13768 if Present (Entity (Original_Node (Parent (N2))))
13769 and then Is_Global (Entity (Original_Node (Parent (N2))))
13770 then
13771 Rewrite (Parent (N), New_Copy (Parent (N2)));
13772 Set_Analyzed (Parent (N), False);
13774 else
13775 null;
13776 end if;
13778 -- A selected component may be transformed into a parameterless
13779 -- function call. If the called entity is global, rewrite the node
13780 -- appropriately, i.e. as an extended name for the global entity.
13782 elsif Nkind (Parent (N)) = N_Selected_Component
13783 and then Nkind (Parent (N2)) = N_Function_Call
13784 and then N = Selector_Name (Parent (N))
13785 then
13786 if No (Parameter_Associations (Parent (N2))) then
13787 if Is_Global (Entity (Name (Parent (N2)))) then
13788 Change_Selected_Component_To_Expanded_Name (Parent (N));
13789 Set_Associated_Node (Parent (N), Name (Parent (N2)));
13790 Set_Global_Type (Parent (N), Name (Parent (N2)));
13791 Save_Entity_Descendants (N);
13793 else
13794 Set_Is_Prefixed_Call (Parent (N));
13795 Set_Associated_Node (N, Empty);
13796 Set_Etype (N, Empty);
13797 end if;
13799 -- In Ada 2005, X.F may be a call to a primitive operation,
13800 -- rewritten as F (X). This rewriting will be done again in an
13801 -- instance, so keep the original node. Global entities will be
13802 -- captured as for other constructs. Indicate that this must
13803 -- resolve as a call, to prevent accidental overloading in the
13804 -- instance, if both a component and a primitive operation appear
13805 -- as candidates.
13807 else
13808 Set_Is_Prefixed_Call (Parent (N));
13809 end if;
13811 -- Entity is local. Reset in generic unit, so that node is resolved
13812 -- anew at the point of instantiation.
13814 else
13815 Set_Associated_Node (N, Empty);
13816 Set_Etype (N, Empty);
13817 end if;
13818 end Reset_Entity;
13820 -----------------------------
13821 -- Save_Entity_Descendants --
13822 -----------------------------
13824 procedure Save_Entity_Descendants (N : Node_Id) is
13825 begin
13826 case Nkind (N) is
13827 when N_Binary_Op =>
13828 Save_Global_Descendant (Union_Id (Left_Opnd (N)));
13829 Save_Global_Descendant (Union_Id (Right_Opnd (N)));
13831 when N_Unary_Op =>
13832 Save_Global_Descendant (Union_Id (Right_Opnd (N)));
13834 when N_Expanded_Name | N_Selected_Component =>
13835 Save_Global_Descendant (Union_Id (Prefix (N)));
13836 Save_Global_Descendant (Union_Id (Selector_Name (N)));
13838 when N_Identifier | N_Character_Literal | N_Operator_Symbol =>
13839 null;
13841 when others =>
13842 raise Program_Error;
13843 end case;
13844 end Save_Entity_Descendants;
13846 --------------------------
13847 -- Save_Global_Defaults --
13848 --------------------------
13850 procedure Save_Global_Defaults (N1, N2 : Node_Id) is
13851 Loc : constant Source_Ptr := Sloc (N1);
13852 Assoc2 : constant List_Id := Generic_Associations (N2);
13853 Gen_Id : constant Entity_Id := Get_Generic_Entity (N2);
13854 Assoc1 : List_Id;
13855 Act1 : Node_Id;
13856 Act2 : Node_Id;
13857 Def : Node_Id;
13858 Ndec : Node_Id;
13859 Subp : Entity_Id;
13860 Actual : Entity_Id;
13862 begin
13863 Assoc1 := Generic_Associations (N1);
13865 if Present (Assoc1) then
13866 Act1 := First (Assoc1);
13867 else
13868 Act1 := Empty;
13869 Set_Generic_Associations (N1, New_List);
13870 Assoc1 := Generic_Associations (N1);
13871 end if;
13873 if Present (Assoc2) then
13874 Act2 := First (Assoc2);
13875 else
13876 return;
13877 end if;
13879 while Present (Act1) and then Present (Act2) loop
13880 Next (Act1);
13881 Next (Act2);
13882 end loop;
13884 -- Find the associations added for default subprograms
13886 if Present (Act2) then
13887 while Nkind (Act2) /= N_Generic_Association
13888 or else No (Entity (Selector_Name (Act2)))
13889 or else not Is_Overloadable (Entity (Selector_Name (Act2)))
13890 loop
13891 Next (Act2);
13892 end loop;
13894 -- Add a similar association if the default is global. The
13895 -- renaming declaration for the actual has been analyzed, and
13896 -- its alias is the program it renames. Link the actual in the
13897 -- original generic tree with the node in the analyzed tree.
13899 while Present (Act2) loop
13900 Subp := Entity (Selector_Name (Act2));
13901 Def := Explicit_Generic_Actual_Parameter (Act2);
13903 -- Following test is defence against rubbish errors
13905 if No (Alias (Subp)) then
13906 return;
13907 end if;
13909 -- Retrieve the resolved actual from the renaming declaration
13910 -- created for the instantiated formal.
13912 Actual := Entity (Name (Parent (Parent (Subp))));
13913 Set_Entity (Def, Actual);
13914 Set_Etype (Def, Etype (Actual));
13916 if Is_Global (Actual) then
13917 Ndec :=
13918 Make_Generic_Association (Loc,
13919 Selector_Name => New_Occurrence_Of (Subp, Loc),
13920 Explicit_Generic_Actual_Parameter =>
13921 New_Occurrence_Of (Actual, Loc));
13923 Set_Associated_Node
13924 (Explicit_Generic_Actual_Parameter (Ndec), Def);
13926 Append (Ndec, Assoc1);
13928 -- If there are other defaults, add a dummy association in case
13929 -- there are other defaulted formals with the same name.
13931 elsif Present (Next (Act2)) then
13932 Ndec :=
13933 Make_Generic_Association (Loc,
13934 Selector_Name => New_Occurrence_Of (Subp, Loc),
13935 Explicit_Generic_Actual_Parameter => Empty);
13937 Append (Ndec, Assoc1);
13938 end if;
13940 Next (Act2);
13941 end loop;
13942 end if;
13944 if Nkind (Name (N1)) = N_Identifier
13945 and then Is_Child_Unit (Gen_Id)
13946 and then Is_Global (Gen_Id)
13947 and then Is_Generic_Unit (Scope (Gen_Id))
13948 and then In_Open_Scopes (Scope (Gen_Id))
13949 then
13950 -- This is an instantiation of a child unit within a sibling, so
13951 -- that the generic parent is in scope. An eventual instance must
13952 -- occur within the scope of an instance of the parent. Make name
13953 -- in instance into an expanded name, to preserve the identifier
13954 -- of the parent, so it can be resolved subsequently.
13956 Rewrite (Name (N2),
13957 Make_Expanded_Name (Loc,
13958 Chars => Chars (Gen_Id),
13959 Prefix => New_Occurrence_Of (Scope (Gen_Id), Loc),
13960 Selector_Name => New_Occurrence_Of (Gen_Id, Loc)));
13961 Set_Entity (Name (N2), Gen_Id);
13963 Rewrite (Name (N1),
13964 Make_Expanded_Name (Loc,
13965 Chars => Chars (Gen_Id),
13966 Prefix => New_Occurrence_Of (Scope (Gen_Id), Loc),
13967 Selector_Name => New_Occurrence_Of (Gen_Id, Loc)));
13969 Set_Associated_Node (Name (N1), Name (N2));
13970 Set_Associated_Node (Prefix (Name (N1)), Empty);
13971 Set_Associated_Node
13972 (Selector_Name (Name (N1)), Selector_Name (Name (N2)));
13973 Set_Etype (Name (N1), Etype (Gen_Id));
13974 end if;
13976 end Save_Global_Defaults;
13978 ----------------------------
13979 -- Save_Global_Descendant --
13980 ----------------------------
13982 procedure Save_Global_Descendant (D : Union_Id) is
13983 N1 : Node_Id;
13985 begin
13986 if D in Node_Range then
13987 if D = Union_Id (Empty) then
13988 null;
13990 elsif Nkind (Node_Id (D)) /= N_Compilation_Unit then
13991 Save_References (Node_Id (D));
13992 end if;
13994 elsif D in List_Range then
13995 if D = Union_Id (No_List) or else Is_Empty_List (List_Id (D)) then
13996 null;
13998 else
13999 N1 := First (List_Id (D));
14000 while Present (N1) loop
14001 Save_References (N1);
14002 Next (N1);
14003 end loop;
14004 end if;
14006 -- Element list or other non-node field, nothing to do
14008 else
14009 null;
14010 end if;
14011 end Save_Global_Descendant;
14013 ---------------------
14014 -- Save_References --
14015 ---------------------
14017 -- This is the recursive procedure that does the work once the enclosing
14018 -- generic scope has been established. We have to treat specially a
14019 -- number of node rewritings that are required by semantic processing
14020 -- and which change the kind of nodes in the generic copy: typically
14021 -- constant-folding, replacing an operator node by a string literal, or
14022 -- a selected component by an expanded name. In each of those cases, the
14023 -- transformation is propagated to the generic unit.
14025 procedure Save_References (N : Node_Id) is
14026 Loc : constant Source_Ptr := Sloc (N);
14028 begin
14029 if N = Empty then
14030 null;
14032 elsif Nkind_In (N, N_Character_Literal, N_Operator_Symbol) then
14033 if Nkind (N) = Nkind (Get_Associated_Node (N)) then
14034 Reset_Entity (N);
14036 elsif Nkind (N) = N_Operator_Symbol
14037 and then Nkind (Get_Associated_Node (N)) = N_String_Literal
14038 then
14039 Change_Operator_Symbol_To_String_Literal (N);
14040 end if;
14042 elsif Nkind (N) in N_Op then
14043 if Nkind (N) = Nkind (Get_Associated_Node (N)) then
14044 if Nkind (N) = N_Op_Concat then
14045 Set_Is_Component_Left_Opnd (N,
14046 Is_Component_Left_Opnd (Get_Associated_Node (N)));
14048 Set_Is_Component_Right_Opnd (N,
14049 Is_Component_Right_Opnd (Get_Associated_Node (N)));
14050 end if;
14052 Reset_Entity (N);
14054 else
14055 -- Node may be transformed into call to a user-defined operator
14057 N2 := Get_Associated_Node (N);
14059 if Nkind (N2) = N_Function_Call then
14060 E := Entity (Name (N2));
14062 if Present (E)
14063 and then Is_Global (E)
14064 then
14065 Set_Etype (N, Etype (N2));
14066 else
14067 Set_Associated_Node (N, Empty);
14068 Set_Etype (N, Empty);
14069 end if;
14071 elsif Nkind_In (N2, N_Integer_Literal,
14072 N_Real_Literal,
14073 N_String_Literal)
14074 then
14075 if Present (Original_Node (N2))
14076 and then Nkind (Original_Node (N2)) = Nkind (N)
14077 then
14079 -- Operation was constant-folded. Whenever possible,
14080 -- recover semantic information from unfolded node,
14081 -- for ASIS use.
14083 Set_Associated_Node (N, Original_Node (N2));
14085 if Nkind (N) = N_Op_Concat then
14086 Set_Is_Component_Left_Opnd (N,
14087 Is_Component_Left_Opnd (Get_Associated_Node (N)));
14088 Set_Is_Component_Right_Opnd (N,
14089 Is_Component_Right_Opnd (Get_Associated_Node (N)));
14090 end if;
14092 Reset_Entity (N);
14094 else
14095 -- If original node is already modified, propagate
14096 -- constant-folding to template.
14098 Rewrite (N, New_Copy (N2));
14099 Set_Analyzed (N, False);
14100 end if;
14102 elsif Nkind (N2) = N_Identifier
14103 and then Ekind (Entity (N2)) = E_Enumeration_Literal
14104 then
14105 -- Same if call was folded into a literal, but in this case
14106 -- retain the entity to avoid spurious ambiguities if it is
14107 -- overloaded at the point of instantiation or inlining.
14109 Rewrite (N, New_Copy (N2));
14110 Set_Analyzed (N, False);
14111 end if;
14112 end if;
14114 -- Complete operands check if node has not been constant-folded
14116 if Nkind (N) in N_Op then
14117 Save_Entity_Descendants (N);
14118 end if;
14120 elsif Nkind (N) = N_Identifier then
14121 if Nkind (N) = Nkind (Get_Associated_Node (N)) then
14123 -- If this is a discriminant reference, always save it. It is
14124 -- used in the instance to find the corresponding discriminant
14125 -- positionally rather than by name.
14127 Set_Original_Discriminant
14128 (N, Original_Discriminant (Get_Associated_Node (N)));
14129 Reset_Entity (N);
14131 else
14132 N2 := Get_Associated_Node (N);
14134 if Nkind (N2) = N_Function_Call then
14135 E := Entity (Name (N2));
14137 -- Name resolves to a call to parameterless function. If
14138 -- original entity is global, mark node as resolved.
14140 if Present (E)
14141 and then Is_Global (E)
14142 then
14143 Set_Etype (N, Etype (N2));
14144 else
14145 Set_Associated_Node (N, Empty);
14146 Set_Etype (N, Empty);
14147 end if;
14149 elsif Nkind_In (N2, N_Integer_Literal, N_Real_Literal)
14150 and then Is_Entity_Name (Original_Node (N2))
14151 then
14152 -- Name resolves to named number that is constant-folded,
14153 -- We must preserve the original name for ASIS use, and
14154 -- undo the constant-folding, which will be repeated in
14155 -- each instance.
14157 Set_Associated_Node (N, Original_Node (N2));
14158 Reset_Entity (N);
14160 elsif Nkind (N2) = N_String_Literal then
14162 -- Name resolves to string literal. Perform the same
14163 -- replacement in generic.
14165 Rewrite (N, New_Copy (N2));
14167 elsif Nkind (N2) = N_Explicit_Dereference then
14169 -- An identifier is rewritten as a dereference if it is the
14170 -- prefix in an implicit dereference (call or attribute).
14171 -- The analysis of an instantiation will expand the node
14172 -- again, so we preserve the original tree but link it to
14173 -- the resolved entity in case it is global.
14175 if Is_Entity_Name (Prefix (N2))
14176 and then Present (Entity (Prefix (N2)))
14177 and then Is_Global (Entity (Prefix (N2)))
14178 then
14179 Set_Associated_Node (N, Prefix (N2));
14181 elsif Nkind (Prefix (N2)) = N_Function_Call
14182 and then Is_Global (Entity (Name (Prefix (N2))))
14183 then
14184 Rewrite (N,
14185 Make_Explicit_Dereference (Loc,
14186 Prefix => Make_Function_Call (Loc,
14187 Name =>
14188 New_Occurrence_Of (Entity (Name (Prefix (N2))),
14189 Loc))));
14191 else
14192 Set_Associated_Node (N, Empty);
14193 Set_Etype (N, Empty);
14194 end if;
14196 -- The subtype mark of a nominally unconstrained object is
14197 -- rewritten as a subtype indication using the bounds of the
14198 -- expression. Recover the original subtype mark.
14200 elsif Nkind (N2) = N_Subtype_Indication
14201 and then Is_Entity_Name (Original_Node (N2))
14202 then
14203 Set_Associated_Node (N, Original_Node (N2));
14204 Reset_Entity (N);
14206 else
14207 null;
14208 end if;
14209 end if;
14211 elsif Nkind (N) in N_Entity then
14212 null;
14214 else
14215 declare
14216 Qual : Node_Id := Empty;
14217 Typ : Entity_Id := Empty;
14218 Nam : Node_Id;
14220 use Atree.Unchecked_Access;
14221 -- This code section is part of implementing an untyped tree
14222 -- traversal, so it needs direct access to node fields.
14224 begin
14225 if Nkind_In (N, N_Aggregate, N_Extension_Aggregate) then
14226 N2 := Get_Associated_Node (N);
14228 if No (N2) then
14229 Typ := Empty;
14230 else
14231 Typ := Etype (N2);
14233 -- In an instance within a generic, use the name of the
14234 -- actual and not the original generic parameter. If the
14235 -- actual is global in the current generic it must be
14236 -- preserved for its instantiation.
14238 if Nkind (Parent (Typ)) = N_Subtype_Declaration
14239 and then
14240 Present (Generic_Parent_Type (Parent (Typ)))
14241 then
14242 Typ := Base_Type (Typ);
14243 Set_Etype (N2, Typ);
14244 end if;
14245 end if;
14247 if No (N2) or else No (Typ) or else not Is_Global (Typ) then
14248 Set_Associated_Node (N, Empty);
14250 -- If the aggregate is an actual in a call, it has been
14251 -- resolved in the current context, to some local type.
14252 -- The enclosing call may have been disambiguated by the
14253 -- aggregate, and this disambiguation might fail at
14254 -- instantiation time because the type to which the
14255 -- aggregate did resolve is not preserved. In order to
14256 -- preserve some of this information, we wrap the
14257 -- aggregate in a qualified expression, using the id of
14258 -- its type. For further disambiguation we qualify the
14259 -- type name with its scope (if visible) because both
14260 -- id's will have corresponding entities in an instance.
14261 -- This resolves most of the problems with missing type
14262 -- information on aggregates in instances.
14264 if Nkind (N2) = Nkind (N)
14265 and then Nkind (Parent (N2)) in N_Subprogram_Call
14266 and then Comes_From_Source (Typ)
14267 then
14268 if Is_Immediately_Visible (Scope (Typ)) then
14269 Nam := Make_Selected_Component (Loc,
14270 Prefix =>
14271 Make_Identifier (Loc, Chars (Scope (Typ))),
14272 Selector_Name =>
14273 Make_Identifier (Loc, Chars (Typ)));
14274 else
14275 Nam := Make_Identifier (Loc, Chars (Typ));
14276 end if;
14278 Qual :=
14279 Make_Qualified_Expression (Loc,
14280 Subtype_Mark => Nam,
14281 Expression => Relocate_Node (N));
14282 end if;
14283 end if;
14285 Save_Global_Descendant (Field1 (N));
14286 Save_Global_Descendant (Field2 (N));
14287 Save_Global_Descendant (Field3 (N));
14288 Save_Global_Descendant (Field5 (N));
14290 if Present (Qual) then
14291 Rewrite (N, Qual);
14292 end if;
14294 -- All other cases than aggregates
14296 else
14297 Save_Global_Descendant (Field1 (N));
14298 Save_Global_Descendant (Field2 (N));
14299 Save_Global_Descendant (Field3 (N));
14300 Save_Global_Descendant (Field4 (N));
14301 Save_Global_Descendant (Field5 (N));
14302 end if;
14303 end;
14304 end if;
14306 -- If a node has aspects, references within their expressions must
14307 -- be saved separately, given they are not directly in the tree.
14309 if Has_Aspects (N) then
14310 declare
14311 Aspect : Node_Id;
14313 begin
14314 Aspect := First (Aspect_Specifications (N));
14315 while Present (Aspect) loop
14316 if Present (Expression (Aspect)) then
14317 Save_Global_References (Expression (Aspect));
14318 end if;
14320 Next (Aspect);
14321 end loop;
14322 end;
14323 end if;
14324 end Save_References;
14326 -- Start of processing for Save_Global_References
14328 begin
14329 Gen_Scope := Current_Scope;
14331 -- If the generic unit is a child unit, references to entities in the
14332 -- parent are treated as local, because they will be resolved anew in
14333 -- the context of the instance of the parent.
14335 while Is_Child_Unit (Gen_Scope)
14336 and then Ekind (Scope (Gen_Scope)) = E_Generic_Package
14337 loop
14338 Gen_Scope := Scope (Gen_Scope);
14339 end loop;
14341 Save_References (N);
14342 end Save_Global_References;
14344 --------------------------------------
14345 -- Set_Copied_Sloc_For_Inlined_Body --
14346 --------------------------------------
14348 procedure Set_Copied_Sloc_For_Inlined_Body (N : Node_Id; E : Entity_Id) is
14349 begin
14350 Create_Instantiation_Source (N, E, True, S_Adjustment);
14351 end Set_Copied_Sloc_For_Inlined_Body;
14353 ---------------------
14354 -- Set_Instance_Of --
14355 ---------------------
14357 procedure Set_Instance_Of (A : Entity_Id; B : Entity_Id) is
14358 begin
14359 Generic_Renamings.Table (Generic_Renamings.Last) := (A, B, Assoc_Null);
14360 Generic_Renamings_HTable.Set (Generic_Renamings.Last);
14361 Generic_Renamings.Increment_Last;
14362 end Set_Instance_Of;
14364 --------------------
14365 -- Set_Next_Assoc --
14366 --------------------
14368 procedure Set_Next_Assoc (E : Assoc_Ptr; Next : Assoc_Ptr) is
14369 begin
14370 Generic_Renamings.Table (E).Next_In_HTable := Next;
14371 end Set_Next_Assoc;
14373 -------------------
14374 -- Start_Generic --
14375 -------------------
14377 procedure Start_Generic is
14378 begin
14379 -- ??? More things could be factored out in this routine.
14380 -- Should probably be done at a later stage.
14382 Generic_Flags.Append (Inside_A_Generic);
14383 Inside_A_Generic := True;
14385 Expander_Mode_Save_And_Set (False);
14386 end Start_Generic;
14388 ----------------------
14389 -- Set_Instance_Env --
14390 ----------------------
14392 procedure Set_Instance_Env
14393 (Gen_Unit : Entity_Id;
14394 Act_Unit : Entity_Id)
14396 Assertion_Status : constant Boolean := Assertions_Enabled;
14397 Save_SPARK_Mode : constant SPARK_Mode_Type := SPARK_Mode;
14398 Save_SPARK_Mode_Pragma : constant Node_Id := SPARK_Mode_Pragma;
14400 begin
14401 -- Regardless of the current mode, predefined units are analyzed in the
14402 -- most current Ada mode, and earlier version Ada checks do not apply
14403 -- to predefined units. Nothing needs to be done for non-internal units.
14404 -- These are always analyzed in the current mode.
14406 if Is_Internal_File_Name
14407 (Fname => Unit_File_Name (Get_Source_Unit (Gen_Unit)),
14408 Renamings_Included => True)
14409 then
14410 Set_Opt_Config_Switches (True, Current_Sem_Unit = Main_Unit);
14412 -- In Ada2012 we may want to enable assertions in an instance of a
14413 -- predefined unit, in which case we need to preserve the current
14414 -- setting for the Assertions_Enabled flag. This will become more
14415 -- critical when pre/postconditions are added to predefined units,
14416 -- as is already the case for some numeric libraries.
14418 if Ada_Version >= Ada_2012 then
14419 Assertions_Enabled := Assertion_Status;
14420 end if;
14422 -- SPARK_Mode for an instance is the one applicable at the point of
14423 -- instantiation.
14425 SPARK_Mode := Save_SPARK_Mode;
14426 SPARK_Mode_Pragma := Save_SPARK_Mode_Pragma;
14427 end if;
14429 Current_Instantiated_Parent :=
14430 (Gen_Id => Gen_Unit,
14431 Act_Id => Act_Unit,
14432 Next_In_HTable => Assoc_Null);
14433 end Set_Instance_Env;
14435 -----------------
14436 -- Switch_View --
14437 -----------------
14439 procedure Switch_View (T : Entity_Id) is
14440 BT : constant Entity_Id := Base_Type (T);
14441 Priv_Elmt : Elmt_Id := No_Elmt;
14442 Priv_Sub : Entity_Id;
14444 begin
14445 -- T may be private but its base type may have been exchanged through
14446 -- some other occurrence, in which case there is nothing to switch
14447 -- besides T itself. Note that a private dependent subtype of a private
14448 -- type might not have been switched even if the base type has been,
14449 -- because of the last branch of Check_Private_View (see comment there).
14451 if not Is_Private_Type (BT) then
14452 Prepend_Elmt (Full_View (T), Exchanged_Views);
14453 Exchange_Declarations (T);
14454 return;
14455 end if;
14457 Priv_Elmt := First_Elmt (Private_Dependents (BT));
14459 if Present (Full_View (BT)) then
14460 Prepend_Elmt (Full_View (BT), Exchanged_Views);
14461 Exchange_Declarations (BT);
14462 end if;
14464 while Present (Priv_Elmt) loop
14465 Priv_Sub := (Node (Priv_Elmt));
14467 -- We avoid flipping the subtype if the Etype of its full view is
14468 -- private because this would result in a malformed subtype. This
14469 -- occurs when the Etype of the subtype full view is the full view of
14470 -- the base type (and since the base types were just switched, the
14471 -- subtype is pointing to the wrong view). This is currently the case
14472 -- for tagged record types, access types (maybe more?) and needs to
14473 -- be resolved. ???
14475 if Present (Full_View (Priv_Sub))
14476 and then not Is_Private_Type (Etype (Full_View (Priv_Sub)))
14477 then
14478 Prepend_Elmt (Full_View (Priv_Sub), Exchanged_Views);
14479 Exchange_Declarations (Priv_Sub);
14480 end if;
14482 Next_Elmt (Priv_Elmt);
14483 end loop;
14484 end Switch_View;
14486 -----------------
14487 -- True_Parent --
14488 -----------------
14490 function True_Parent (N : Node_Id) return Node_Id is
14491 begin
14492 if Nkind (Parent (N)) = N_Subunit then
14493 return Parent (Corresponding_Stub (Parent (N)));
14494 else
14495 return Parent (N);
14496 end if;
14497 end True_Parent;
14499 -----------------------------
14500 -- Valid_Default_Attribute --
14501 -----------------------------
14503 procedure Valid_Default_Attribute (Nam : Entity_Id; Def : Node_Id) is
14504 Attr_Id : constant Attribute_Id :=
14505 Get_Attribute_Id (Attribute_Name (Def));
14506 T : constant Entity_Id := Entity (Prefix (Def));
14507 Is_Fun : constant Boolean := (Ekind (Nam) = E_Function);
14508 F : Entity_Id;
14509 Num_F : Int;
14510 OK : Boolean;
14512 begin
14513 if No (T) or else T = Any_Id then
14514 return;
14515 end if;
14517 Num_F := 0;
14518 F := First_Formal (Nam);
14519 while Present (F) loop
14520 Num_F := Num_F + 1;
14521 Next_Formal (F);
14522 end loop;
14524 case Attr_Id is
14525 when Attribute_Adjacent | Attribute_Ceiling | Attribute_Copy_Sign |
14526 Attribute_Floor | Attribute_Fraction | Attribute_Machine |
14527 Attribute_Model | Attribute_Remainder | Attribute_Rounding |
14528 Attribute_Unbiased_Rounding =>
14529 OK := Is_Fun
14530 and then Num_F = 1
14531 and then Is_Floating_Point_Type (T);
14533 when Attribute_Image | Attribute_Pred | Attribute_Succ |
14534 Attribute_Value | Attribute_Wide_Image |
14535 Attribute_Wide_Value =>
14536 OK := (Is_Fun and then Num_F = 1 and then Is_Scalar_Type (T));
14538 when Attribute_Max | Attribute_Min =>
14539 OK := (Is_Fun and then Num_F = 2 and then Is_Scalar_Type (T));
14541 when Attribute_Input =>
14542 OK := (Is_Fun and then Num_F = 1);
14544 when Attribute_Output | Attribute_Read | Attribute_Write =>
14545 OK := (not Is_Fun and then Num_F = 2);
14547 when others =>
14548 OK := False;
14549 end case;
14551 if not OK then
14552 Error_Msg_N ("attribute reference has wrong profile for subprogram",
14553 Def);
14554 end if;
14555 end Valid_Default_Attribute;
14557 end Sem_Ch12;