1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2015, Free Software Foundation, Inc. --
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. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
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 Fname
; use Fname
;
34 with Fname
.UF
; use Fname
.UF
;
35 with Freeze
; use Freeze
;
36 with Ghost
; use Ghost
;
37 with Itypes
; use Itypes
;
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
;
45 with Rident
; use Rident
;
46 with Restrict
; use Restrict
;
47 with Rtsfind
; use Rtsfind
;
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_Res
; use Sem_Res
;
63 with Sem_Type
; use Sem_Type
;
64 with Sem_Util
; use Sem_Util
;
65 with Sem_Warn
; use Sem_Warn
;
66 with Stand
; use Stand
;
67 with Sinfo
; use Sinfo
;
68 with Sinfo
.CN
; use Sinfo
.CN
;
69 with Sinput
; use Sinput
;
70 with Sinput
.L
; use Sinput
.L
;
71 with Snames
; use Snames
;
72 with Stringt
; use Stringt
;
73 with Uname
; use Uname
;
75 with Tbuild
; use Tbuild
;
76 with Uintp
; use Uintp
;
77 with Urealp
; use Urealp
;
78 with Warnsw
; use Warnsw
;
82 package body Sem_Ch12
is
84 ----------------------------------------------------------
85 -- Implementation of Generic Analysis and Instantiation --
86 ----------------------------------------------------------
88 -- GNAT implements generics by macro expansion. No attempt is made to share
89 -- generic instantiations (for now). Analysis of a generic definition does
90 -- not perform any expansion action, but the expander must be called on the
91 -- tree for each instantiation, because the expansion may of course depend
92 -- on the generic actuals. All of this is best achieved as follows:
94 -- a) Semantic analysis of a generic unit is performed on a copy of the
95 -- tree for the generic unit. All tree modifications that follow analysis
96 -- do not affect the original tree. Links are kept between the original
97 -- tree and the copy, in order to recognize non-local references within
98 -- the generic, and propagate them to each instance (recall that name
99 -- resolution is done on the generic declaration: generics are not really
100 -- macros). This is summarized in the following diagram:
102 -- .-----------. .----------.
103 -- | semantic |<--------------| generic |
105 -- | |==============>| |
106 -- |___________| global |__________|
117 -- b) Each instantiation copies the original tree, and inserts into it a
118 -- series of declarations that describe the mapping between generic formals
119 -- and actuals. For example, a generic In OUT parameter is an object
120 -- renaming of the corresponding actual, etc. Generic IN parameters are
121 -- constant declarations.
123 -- c) In order to give the right visibility for these renamings, we use
124 -- a different scheme for package and subprogram instantiations. For
125 -- packages, the list of renamings is inserted into the package
126 -- specification, before the visible declarations of the package. The
127 -- renamings are analyzed before any of the text of the instance, and are
128 -- thus visible at the right place. Furthermore, outside of the instance,
129 -- the generic parameters are visible and denote their corresponding
132 -- For subprograms, we create a container package to hold the renamings
133 -- and the subprogram instance itself. Analysis of the package makes the
134 -- renaming declarations visible to the subprogram. After analyzing the
135 -- package, the defining entity for the subprogram is touched-up so that
136 -- it appears declared in the current scope, and not inside the container
139 -- If the instantiation is a compilation unit, the container package is
140 -- given the same name as the subprogram instance. This ensures that
141 -- the elaboration procedure called by the binder, using the compilation
142 -- unit name, calls in fact the elaboration procedure for the package.
144 -- Not surprisingly, private types complicate this approach. By saving in
145 -- the original generic object the non-local references, we guarantee that
146 -- the proper entities are referenced at the point of instantiation.
147 -- However, for private types, this by itself does not insure that the
148 -- proper VIEW of the entity is used (the full type may be visible at the
149 -- point of generic definition, but not at instantiation, or vice-versa).
150 -- In order to reference the proper view, we special-case any reference
151 -- to private types in the generic object, by saving both views, one in
152 -- the generic and one in the semantic copy. At time of instantiation, we
153 -- check whether the two views are consistent, and exchange declarations if
154 -- necessary, in order to restore the correct visibility. Similarly, if
155 -- the instance view is private when the generic view was not, we perform
156 -- the exchange. After completing the instantiation, we restore the
157 -- current visibility. The flag Has_Private_View marks identifiers in the
158 -- the generic unit that require checking.
160 -- Visibility within nested generic units requires special handling.
161 -- Consider the following scheme:
163 -- type Global is ... -- outside of generic unit.
167 -- type Semi_Global is ... -- global to inner.
170 -- procedure inner (X1 : Global; X2 : Semi_Global);
172 -- procedure in2 is new inner (...); -- 4
175 -- package New_Outer is new Outer (...); -- 2
176 -- procedure New_Inner is new New_Outer.Inner (...); -- 3
178 -- The semantic analysis of Outer captures all occurrences of Global.
179 -- The semantic analysis of Inner (at 1) captures both occurrences of
180 -- Global and Semi_Global.
182 -- At point 2 (instantiation of Outer), we also produce a generic copy
183 -- of Inner, even though Inner is, at that point, not being instantiated.
184 -- (This is just part of the semantic analysis of New_Outer).
186 -- Critically, references to Global within Inner must be preserved, while
187 -- references to Semi_Global should not preserved, because they must now
188 -- resolve to an entity within New_Outer. To distinguish between these, we
189 -- use a global variable, Current_Instantiated_Parent, which is set when
190 -- performing a generic copy during instantiation (at 2). This variable is
191 -- used when performing a generic copy that is not an instantiation, but
192 -- that is nested within one, as the occurrence of 1 within 2. The analysis
193 -- of a nested generic only preserves references that are global to the
194 -- enclosing Current_Instantiated_Parent. We use the Scope_Depth value to
195 -- determine whether a reference is external to the given parent.
197 -- The instantiation at point 3 requires no special treatment. The method
198 -- works as well for further nestings of generic units, but of course the
199 -- variable Current_Instantiated_Parent must be stacked because nested
200 -- instantiations can occur, e.g. the occurrence of 4 within 2.
202 -- The instantiation of package and subprogram bodies is handled in a
203 -- similar manner, except that it is delayed until after semantic
204 -- analysis is complete. In this fashion complex cross-dependencies
205 -- between several package declarations and bodies containing generics
206 -- can be compiled which otherwise would diagnose spurious circularities.
208 -- For example, it is possible to compile two packages A and B that
209 -- have the following structure:
211 -- package A is package B is
212 -- generic ... generic ...
213 -- package G_A is package G_B is
216 -- package body A is package body B is
217 -- package N_B is new G_B (..) package N_A is new G_A (..)
219 -- The table Pending_Instantiations in package Inline is used to keep
220 -- track of body instantiations that are delayed in this manner. Inline
221 -- handles the actual calls to do the body instantiations. This activity
222 -- is part of Inline, since the processing occurs at the same point, and
223 -- for essentially the same reason, as the handling of inlined routines.
225 ----------------------------------------------
226 -- Detection of Instantiation Circularities --
227 ----------------------------------------------
229 -- If we have a chain of instantiations that is circular, this is static
230 -- error which must be detected at compile time. The detection of these
231 -- circularities is carried out at the point that we insert a generic
232 -- instance spec or body. If there is a circularity, then the analysis of
233 -- the offending spec or body will eventually result in trying to load the
234 -- same unit again, and we detect this problem as we analyze the package
235 -- instantiation for the second time.
237 -- At least in some cases after we have detected the circularity, we get
238 -- into trouble if we try to keep going. The following flag is set if a
239 -- circularity is detected, and used to abandon compilation after the
240 -- messages have been posted.
242 Circularity_Detected
: Boolean := False;
243 -- This should really be reset on encountering a new main unit, but in
244 -- practice we are not using multiple main units so it is not critical.
246 --------------------------------------------------
247 -- Formal packages and partial parameterization --
248 --------------------------------------------------
250 -- When compiling a generic, a formal package is a local instantiation. If
251 -- declared with a box, its generic formals are visible in the enclosing
252 -- generic. If declared with a partial list of actuals, those actuals that
253 -- are defaulted (covered by an Others clause, or given an explicit box
254 -- initialization) are also visible in the enclosing generic, while those
255 -- that have a corresponding actual are not.
257 -- In our source model of instantiation, the same visibility must be
258 -- present in the spec and body of an instance: the names of the formals
259 -- that are defaulted must be made visible within the instance, and made
260 -- invisible (hidden) after the instantiation is complete, so that they
261 -- are not accessible outside of the instance.
263 -- In a generic, a formal package is treated like a special instantiation.
264 -- Our Ada 95 compiler handled formals with and without box in different
265 -- ways. With partial parameterization, we use a single model for both.
266 -- We create a package declaration that consists of the specification of
267 -- the generic package, and a set of declarations that map the actuals
268 -- into local renamings, just as we do for bona fide instantiations. For
269 -- defaulted parameters and formals with a box, we copy directly the
270 -- declarations of the formal into this local package. The result is a
271 -- a package whose visible declarations may include generic formals. This
272 -- package is only used for type checking and visibility analysis, and
273 -- never reaches the back-end, so it can freely violate the placement
274 -- rules for generic formal declarations.
276 -- The list of declarations (renamings and copies of formals) is built
277 -- by Analyze_Associations, just as for regular instantiations.
279 -- At the point of instantiation, conformance checking must be applied only
280 -- to those parameters that were specified in the formal. We perform this
281 -- checking by creating another internal instantiation, this one including
282 -- only the renamings and the formals (the rest of the package spec is not
283 -- relevant to conformance checking). We can then traverse two lists: the
284 -- list of actuals in the instance that corresponds to the formal package,
285 -- and the list of actuals produced for this bogus instantiation. We apply
286 -- the conformance rules to those actuals that are not defaulted (i.e.
287 -- which still appear as generic formals.
289 -- When we compile an instance body we must make the right parameters
290 -- visible again. The predicate Is_Generic_Formal indicates which of the
291 -- formals should have its Is_Hidden flag reset.
293 -----------------------
294 -- Local subprograms --
295 -----------------------
297 procedure Abandon_Instantiation
(N
: Node_Id
);
298 pragma No_Return
(Abandon_Instantiation
);
299 -- Posts an error message "instantiation abandoned" at the indicated node
300 -- and then raises the exception Instantiation_Error to do it.
302 procedure Analyze_Formal_Array_Type
303 (T
: in out Entity_Id
;
305 -- A formal array type is treated like an array type declaration, and
306 -- invokes Array_Type_Declaration (sem_ch3) whose first parameter is
307 -- in-out, because in the case of an anonymous type the entity is
308 -- actually created in the procedure.
310 -- The following procedures treat other kinds of formal parameters
312 procedure Analyze_Formal_Derived_Interface_Type
317 procedure Analyze_Formal_Derived_Type
322 procedure Analyze_Formal_Interface_Type
327 -- The following subprograms create abbreviated declarations for formal
328 -- scalar types. We introduce an anonymous base of the proper class for
329 -- each of them, and define the formals as constrained first subtypes of
330 -- their bases. The bounds are expressions that are non-static in the
333 procedure Analyze_Formal_Decimal_Fixed_Point_Type
334 (T
: Entity_Id
; Def
: Node_Id
);
335 procedure Analyze_Formal_Discrete_Type
(T
: Entity_Id
; Def
: Node_Id
);
336 procedure Analyze_Formal_Floating_Type
(T
: Entity_Id
; Def
: Node_Id
);
337 procedure Analyze_Formal_Signed_Integer_Type
(T
: Entity_Id
; Def
: Node_Id
);
338 procedure Analyze_Formal_Modular_Type
(T
: Entity_Id
; Def
: Node_Id
);
339 procedure Analyze_Formal_Ordinary_Fixed_Point_Type
340 (T
: Entity_Id
; Def
: Node_Id
);
342 procedure Analyze_Formal_Private_Type
346 -- Creates a new private type, which does not require completion
348 procedure Analyze_Formal_Incomplete_Type
(T
: Entity_Id
; Def
: Node_Id
);
349 -- Ada 2012: Creates a new incomplete type whose actual does not freeze
351 procedure Analyze_Generic_Formal_Part
(N
: Node_Id
);
352 -- Analyze generic formal part
354 procedure Analyze_Generic_Access_Type
(T
: Entity_Id
; Def
: Node_Id
);
355 -- Create a new access type with the given designated type
357 function Analyze_Associations
360 F_Copy
: List_Id
) return List_Id
;
361 -- At instantiation time, build the list of associations between formals
362 -- and actuals. Each association becomes a renaming declaration for the
363 -- formal entity. F_Copy is the analyzed list of formals in the generic
364 -- copy. It is used to apply legality checks to the actuals. I_Node is the
365 -- instantiation node itself.
367 procedure Analyze_Subprogram_Instantiation
371 procedure Build_Instance_Compilation_Unit_Nodes
375 -- This procedure is used in the case where the generic instance of a
376 -- subprogram body or package body is a library unit. In this case, the
377 -- original library unit node for the generic instantiation must be
378 -- replaced by the resulting generic body, and a link made to a new
379 -- compilation unit node for the generic declaration. The argument N is
380 -- the original generic instantiation. Act_Body and Act_Decl are the body
381 -- and declaration of the instance (either package body and declaration
382 -- nodes or subprogram body and declaration nodes depending on the case).
383 -- On return, the node N has been rewritten with the actual body.
385 procedure Check_Access_Definition
(N
: Node_Id
);
386 -- Subsidiary routine to null exclusion processing. Perform an assertion
387 -- check on Ada version and the presence of an access definition in N.
389 procedure Check_Formal_Packages
(P_Id
: Entity_Id
);
390 -- Apply the following to all formal packages in generic associations
392 procedure Check_Formal_Package_Instance
393 (Formal_Pack
: Entity_Id
;
394 Actual_Pack
: Entity_Id
);
395 -- Verify that the actuals of the actual instance match the actuals of
396 -- the template for a formal package that is not declared with a box.
398 procedure Check_Forward_Instantiation
(Decl
: Node_Id
);
399 -- If the generic is a local entity and the corresponding body has not
400 -- been seen yet, flag enclosing packages to indicate that it will be
401 -- elaborated after the generic body. Subprograms declared in the same
402 -- package cannot be inlined by the front-end because front-end inlining
403 -- requires a strict linear order of elaboration.
405 function Check_Hidden_Primitives
(Assoc_List
: List_Id
) return Elist_Id
;
406 -- Check if some association between formals and actuals requires to make
407 -- visible primitives of a tagged type, and make those primitives visible.
408 -- Return the list of primitives whose visibility is modified (to restore
409 -- their visibility later through Restore_Hidden_Primitives). If no
410 -- candidate is found then return No_Elist.
412 procedure Check_Hidden_Child_Unit
414 Gen_Unit
: Entity_Id
;
415 Act_Decl_Id
: Entity_Id
);
416 -- If the generic unit is an implicit child instance within a parent
417 -- instance, we need to make an explicit test that it is not hidden by
418 -- a child instance of the same name and parent.
420 procedure Check_Generic_Actuals
421 (Instance
: Entity_Id
;
422 Is_Formal_Box
: Boolean);
423 -- Similar to previous one. Check the actuals in the instantiation,
424 -- whose views can change between the point of instantiation and the point
425 -- of instantiation of the body. In addition, mark the generic renamings
426 -- as generic actuals, so that they are not compatible with other actuals.
427 -- Recurse on an actual that is a formal package whose declaration has
430 function Contains_Instance_Of
433 N
: Node_Id
) return Boolean;
434 -- Inner is instantiated within the generic Outer. Check whether Inner
435 -- directly or indirectly contains an instance of Outer or of one of its
436 -- parents, in the case of a subunit. Each generic unit holds a list of
437 -- the entities instantiated within (at any depth). This procedure
438 -- determines whether the set of such lists contains a cycle, i.e. an
439 -- illegal circular instantiation.
441 function Denotes_Formal_Package
443 On_Exit
: Boolean := False;
444 Instance
: Entity_Id
:= Empty
) return Boolean;
445 -- Returns True if E is a formal package of an enclosing generic, or
446 -- the actual for such a formal in an enclosing instantiation. If such
447 -- a package is used as a formal in an nested generic, or as an actual
448 -- in a nested instantiation, the visibility of ITS formals should not
449 -- be modified. When called from within Restore_Private_Views, the flag
450 -- On_Exit is true, to indicate that the search for a possible enclosing
451 -- instance should ignore the current one. In that case Instance denotes
452 -- the declaration for which this is an actual. This declaration may be
453 -- an instantiation in the source, or the internal instantiation that
454 -- corresponds to the actual for a formal package.
456 function Earlier
(N1
, N2
: Node_Id
) return Boolean;
457 -- Yields True if N1 and N2 appear in the same compilation unit,
458 -- ignoring subunits, and if N1 is to the left of N2 in a left-to-right
459 -- traversal of the tree for the unit. Used to determine the placement
460 -- of freeze nodes for instance bodies that may depend on other instances.
462 function Find_Actual_Type
464 Gen_Type
: Entity_Id
) return Entity_Id
;
465 -- When validating the actual types of a child instance, check whether
466 -- the formal is a formal type of the parent unit, and retrieve the current
467 -- actual for it. Typ is the entity in the analyzed formal type declaration
468 -- (component or index type of an array type, or designated type of an
469 -- access formal) and Gen_Type is the enclosing analyzed formal array
470 -- or access type. The desired actual may be a formal of a parent, or may
471 -- be declared in a formal package of a parent. In both cases it is a
472 -- generic actual type because it appears within a visible instance.
473 -- Finally, it may be declared in a parent unit without being a formal
474 -- of that unit, in which case it must be retrieved by visibility.
475 -- Ambiguities may still arise if two homonyms are declared in two formal
476 -- packages, and the prefix of the formal type may be needed to resolve
477 -- the ambiguity in the instance ???
479 function In_Same_Declarative_Part
481 Inst
: Node_Id
) return Boolean;
482 -- True if the instantiation Inst and the given freeze_node F_Node appear
483 -- within the same declarative part, ignoring subunits, but with no inter-
484 -- vening subprograms or concurrent units. Used to find the proper plave
485 -- for the freeze node of an instance, when the generic is declared in a
486 -- previous instance. If predicate is true, the freeze node of the instance
487 -- can be placed after the freeze node of the previous instance, Otherwise
488 -- it has to be placed at the end of the current declarative part.
490 function In_Main_Context
(E
: Entity_Id
) return Boolean;
491 -- Check whether an instantiation is in the context of the main unit.
492 -- Used to determine whether its body should be elaborated to allow
493 -- front-end inlining.
495 procedure Set_Instance_Env
496 (Gen_Unit
: Entity_Id
;
497 Act_Unit
: Entity_Id
);
498 -- Save current instance on saved environment, to be used to determine
499 -- the global status of entities in nested instances. Part of Save_Env.
500 -- called after verifying that the generic unit is legal for the instance,
501 -- The procedure also examines whether the generic unit is a predefined
502 -- unit, in order to set configuration switches accordingly. As a result
503 -- the procedure must be called after analyzing and freezing the actuals.
505 procedure Set_Instance_Of
(A
: Entity_Id
; B
: Entity_Id
);
506 -- Associate analyzed generic parameter with corresponding
507 -- instance. Used for semantic checks at instantiation time.
509 function Has_Been_Exchanged
(E
: Entity_Id
) return Boolean;
510 -- Traverse the Exchanged_Views list to see if a type was private
511 -- and has already been flipped during this phase of instantiation.
513 procedure Hide_Current_Scope
;
514 -- When instantiating a generic child unit, the parent context must be
515 -- present, but the instance and all entities that may be generated
516 -- must be inserted in the current scope. We leave the current scope
517 -- on the stack, but make its entities invisible to avoid visibility
518 -- problems. This is reversed at the end of the instantiation. This is
519 -- not done for the instantiation of the bodies, which only require the
520 -- instances of the generic parents to be in scope.
522 procedure Install_Body
527 -- If the instantiation happens textually before the body of the generic,
528 -- the instantiation of the body must be analyzed after the generic body,
529 -- and not at the point of instantiation. Such early instantiations can
530 -- happen if the generic and the instance appear in a package declaration
531 -- because the generic body can only appear in the corresponding package
532 -- body. Early instantiations can also appear if generic, instance and
533 -- body are all in the declarative part of a subprogram or entry. Entities
534 -- of packages that are early instantiations are delayed, and their freeze
535 -- node appears after the generic body.
537 procedure Insert_Freeze_Node_For_Instance
540 -- N denotes a package or a subprogram instantiation and F_Node is the
541 -- associated freeze node. Insert the freeze node before the first source
542 -- body which follows immediately after N. If no such body is found, the
543 -- freeze node is inserted at the end of the declarative region which
546 procedure Freeze_Subprogram_Body
547 (Inst_Node
: Node_Id
;
549 Pack_Id
: Entity_Id
);
550 -- The generic body may appear textually after the instance, including
551 -- in the proper body of a stub, or within a different package instance.
552 -- Given that the instance can only be elaborated after the generic, we
553 -- place freeze_nodes for the instance and/or for packages that may enclose
554 -- the instance and the generic, so that the back-end can establish the
555 -- proper order of elaboration.
558 -- Establish environment for subsequent instantiation. Separated from
559 -- Save_Env because data-structures for visibility handling must be
560 -- initialized before call to Check_Generic_Child_Unit.
562 procedure Install_Formal_Packages
(Par
: Entity_Id
);
563 -- Install the visible part of any formal of the parent that is a formal
564 -- package. Note that for the case of a formal package with a box, this
565 -- includes the formal part of the formal package (12.7(10/2)).
567 procedure Install_Parent
(P
: Entity_Id
; In_Body
: Boolean := False);
568 -- When compiling an instance of a child unit the parent (which is
569 -- itself an instance) is an enclosing scope that must be made
570 -- immediately visible. This procedure is also used to install the non-
571 -- generic parent of a generic child unit when compiling its body, so
572 -- that full views of types in the parent are made visible.
574 procedure Remove_Parent
(In_Body
: Boolean := False);
575 -- Reverse effect after instantiation of child is complete
577 procedure Install_Hidden_Primitives
578 (Prims_List
: in out Elist_Id
;
581 -- Remove suffix 'P' from hidden primitives of Act_T to match the
582 -- visibility of primitives of Gen_T. The list of primitives to which
583 -- the suffix is removed is added to Prims_List to restore them later.
585 procedure Restore_Hidden_Primitives
(Prims_List
: in out Elist_Id
);
586 -- Restore suffix 'P' to primitives of Prims_List and leave Prims_List
589 procedure Inline_Instance_Body
591 Gen_Unit
: Entity_Id
;
593 -- If front-end inlining is requested, instantiate the package body,
594 -- and preserve the visibility of its compilation unit, to insure
595 -- that successive instantiations succeed.
597 -- The functions Instantiate_XXX perform various legality checks and build
598 -- the declarations for instantiated generic parameters. In all of these
599 -- Formal is the entity in the generic unit, Actual is the entity of
600 -- expression in the generic associations, and Analyzed_Formal is the
601 -- formal in the generic copy, which contains the semantic information to
602 -- be used to validate the actual.
604 function Instantiate_Object
607 Analyzed_Formal
: Node_Id
) return List_Id
;
609 function Instantiate_Type
612 Analyzed_Formal
: Node_Id
;
613 Actual_Decls
: List_Id
) return List_Id
;
615 function Instantiate_Formal_Subprogram
618 Analyzed_Formal
: Node_Id
) return Node_Id
;
620 function Instantiate_Formal_Package
623 Analyzed_Formal
: Node_Id
) return List_Id
;
624 -- If the formal package is declared with a box, special visibility rules
625 -- apply to its formals: they are in the visible part of the package. This
626 -- is true in the declarative region of the formal package, that is to say
627 -- in the enclosing generic or instantiation. For an instantiation, the
628 -- parameters of the formal package are made visible in an explicit step.
629 -- Furthermore, if the actual has a visible USE clause, these formals must
630 -- be made potentially use-visible as well. On exit from the enclosing
631 -- instantiation, the reverse must be done.
633 -- For a formal package declared without a box, there are conformance rules
634 -- that apply to the actuals in the generic declaration and the actuals of
635 -- the actual package in the enclosing instantiation. The simplest way to
636 -- apply these rules is to repeat the instantiation of the formal package
637 -- in the context of the enclosing instance, and compare the generic
638 -- associations of this instantiation with those of the actual package.
639 -- This internal instantiation only needs to contain the renamings of the
640 -- formals: the visible and private declarations themselves need not be
643 -- In Ada 2005, the formal package may be only partially parameterized.
644 -- In that case the visibility step must make visible those actuals whose
645 -- corresponding formals were given with a box. A final complication
646 -- involves inherited operations from formal derived types, which must
647 -- be visible if the type is.
649 function Is_In_Main_Unit
(N
: Node_Id
) return Boolean;
650 -- Test if given node is in the main unit
652 procedure Load_Parent_Of_Generic
655 Body_Optional
: Boolean := False);
656 -- If the generic appears in a separate non-generic library unit, load the
657 -- corresponding body to retrieve the body of the generic. N is the node
658 -- for the generic instantiation, Spec is the generic package declaration.
660 -- Body_Optional is a flag that indicates that the body is being loaded to
661 -- ensure that temporaries are generated consistently when there are other
662 -- instances in the current declarative part that precede the one being
663 -- loaded. In that case a missing body is acceptable.
665 procedure Inherit_Context
(Gen_Decl
: Node_Id
; Inst
: Node_Id
);
666 -- Add the context clause of the unit containing a generic unit to a
667 -- compilation unit that is, or contains, an instantiation.
669 function Get_Associated_Node
(N
: Node_Id
) return Node_Id
;
670 -- In order to propagate semantic information back from the analyzed copy
671 -- to the original generic, we maintain links between selected nodes in the
672 -- generic and their corresponding copies. At the end of generic analysis,
673 -- the routine Save_Global_References traverses the generic tree, examines
674 -- the semantic information, and preserves the links to those nodes that
675 -- contain global information. At instantiation, the information from the
676 -- associated node is placed on the new copy, so that name resolution is
679 -- Three kinds of source nodes have associated nodes:
681 -- a) those that can reference (denote) entities, that is identifiers,
682 -- character literals, expanded_names, operator symbols, operators,
683 -- and attribute reference nodes. These nodes have an Entity field
684 -- and are the set of nodes that are in N_Has_Entity.
686 -- b) aggregates (N_Aggregate and N_Extension_Aggregate)
688 -- c) selected components (N_Selected_Component)
690 -- For the first class, the associated node preserves the entity if it is
691 -- global. If the generic contains nested instantiations, the associated
692 -- node itself has been recopied, and a chain of them must be followed.
694 -- For aggregates, the associated node allows retrieval of the type, which
695 -- may otherwise not appear in the generic. The view of this type may be
696 -- different between generic and instantiation, and the full view can be
697 -- installed before the instantiation is analyzed. For aggregates of type
698 -- extensions, the same view exchange may have to be performed for some of
699 -- the ancestor types, if their view is private at the point of
702 -- Nodes that are selected components in the parse tree may be rewritten
703 -- as expanded names after resolution, and must be treated as potential
704 -- entity holders, which is why they also have an Associated_Node.
706 -- Nodes that do not come from source, such as freeze nodes, do not appear
707 -- in the generic tree, and need not have an associated node.
709 -- The associated node is stored in the Associated_Node field. Note that
710 -- this field overlaps Entity, which is fine, because the whole point is
711 -- that we don't need or want the normal Entity field in this situation.
713 procedure Map_Formal_Package_Entities
(Form
: Entity_Id
; Act
: Entity_Id
);
714 -- Within the generic part, entities in the formal package are
715 -- visible. To validate subsequent type declarations, indicate
716 -- the correspondence between the entities in the analyzed formal,
717 -- and the entities in the actual package. There are three packages
718 -- involved in the instantiation of a formal package: the parent
719 -- generic P1 which appears in the generic declaration, the fake
720 -- instantiation P2 which appears in the analyzed generic, and whose
721 -- visible entities may be used in subsequent formals, and the actual
722 -- P3 in the instance. To validate subsequent formals, me indicate
723 -- that the entities in P2 are mapped into those of P3. The mapping of
724 -- entities has to be done recursively for nested packages.
726 procedure Move_Freeze_Nodes
730 -- Freeze nodes can be generated in the analysis of a generic unit, but
731 -- will not be seen by the back-end. It is necessary to move those nodes
732 -- to the enclosing scope if they freeze an outer entity. We place them
733 -- at the end of the enclosing generic package, which is semantically
736 procedure Preanalyze_Actuals
(N
: Node_Id
);
737 -- Analyze actuals to perform name resolution. Full resolution is done
738 -- later, when the expected types are known, but names have to be captured
739 -- before installing parents of generics, that are not visible for the
740 -- actuals themselves.
742 function True_Parent
(N
: Node_Id
) return Node_Id
;
743 -- For a subunit, return parent of corresponding stub, else return
746 procedure Valid_Default_Attribute
(Nam
: Entity_Id
; Def
: Node_Id
);
747 -- Verify that an attribute that appears as the default for a formal
748 -- subprogram is a function or procedure with the correct profile.
750 -------------------------------------------
751 -- Data Structures for Generic Renamings --
752 -------------------------------------------
754 -- The map Generic_Renamings associates generic entities with their
755 -- corresponding actuals. Currently used to validate type instances. It
756 -- will eventually be used for all generic parameters to eliminate the
757 -- need for overload resolution in the instance.
759 type Assoc_Ptr
is new Int
;
761 Assoc_Null
: constant Assoc_Ptr
:= -1;
766 Next_In_HTable
: Assoc_Ptr
;
769 package Generic_Renamings
is new Table
.Table
770 (Table_Component_Type
=> Assoc
,
771 Table_Index_Type
=> Assoc_Ptr
,
772 Table_Low_Bound
=> 0,
774 Table_Increment
=> 100,
775 Table_Name
=> "Generic_Renamings");
777 -- Variable to hold enclosing instantiation. When the environment is
778 -- saved for a subprogram inlining, the corresponding Act_Id is empty.
780 Current_Instantiated_Parent
: Assoc
:= (Empty
, Empty
, Assoc_Null
);
782 -- Hash table for associations
784 HTable_Size
: constant := 37;
785 type HTable_Range
is range 0 .. HTable_Size
- 1;
787 procedure Set_Next_Assoc
(E
: Assoc_Ptr
; Next
: Assoc_Ptr
);
788 function Next_Assoc
(E
: Assoc_Ptr
) return Assoc_Ptr
;
789 function Get_Gen_Id
(E
: Assoc_Ptr
) return Entity_Id
;
790 function Hash
(F
: Entity_Id
) return HTable_Range
;
792 package Generic_Renamings_HTable
is new GNAT
.HTable
.Static_HTable
(
793 Header_Num
=> HTable_Range
,
795 Elmt_Ptr
=> Assoc_Ptr
,
796 Null_Ptr
=> Assoc_Null
,
797 Set_Next
=> Set_Next_Assoc
,
800 Get_Key
=> Get_Gen_Id
,
804 Exchanged_Views
: Elist_Id
;
805 -- This list holds the private views that have been exchanged during
806 -- instantiation to restore the visibility of the generic declaration.
807 -- (see comments above). After instantiation, the current visibility is
808 -- reestablished by means of a traversal of this list.
810 Hidden_Entities
: Elist_Id
;
811 -- This list holds the entities of the current scope that are removed
812 -- from immediate visibility when instantiating a child unit. Their
813 -- visibility is restored in Remove_Parent.
815 -- Because instantiations can be recursive, the following must be saved
816 -- on entry and restored on exit from an instantiation (spec or body).
817 -- This is done by the two procedures Save_Env and Restore_Env. For
818 -- package and subprogram instantiations (but not for the body instances)
819 -- the action of Save_Env is done in two steps: Init_Env is called before
820 -- Check_Generic_Child_Unit, because setting the parent instances requires
821 -- that the visibility data structures be properly initialized. Once the
822 -- generic is unit is validated, Set_Instance_Env completes Save_Env.
824 Parent_Unit_Visible
: Boolean := False;
825 -- Parent_Unit_Visible is used when the generic is a child unit, and
826 -- indicates whether the ultimate parent of the generic is visible in the
827 -- instantiation environment. It is used to reset the visibility of the
828 -- parent at the end of the instantiation (see Remove_Parent).
830 Instance_Parent_Unit
: Entity_Id
:= Empty
;
831 -- This records the ultimate parent unit of an instance of a generic
832 -- child unit and is used in conjunction with Parent_Unit_Visible to
833 -- indicate the unit to which the Parent_Unit_Visible flag corresponds.
835 type Instance_Env
is record
836 Instantiated_Parent
: Assoc
;
837 Exchanged_Views
: Elist_Id
;
838 Hidden_Entities
: Elist_Id
;
839 Current_Sem_Unit
: Unit_Number_Type
;
840 Parent_Unit_Visible
: Boolean := False;
841 Instance_Parent_Unit
: Entity_Id
:= Empty
;
842 Switches
: Config_Switches_Type
;
845 package Instance_Envs
is new Table
.Table
(
846 Table_Component_Type
=> Instance_Env
,
847 Table_Index_Type
=> Int
,
848 Table_Low_Bound
=> 0,
850 Table_Increment
=> 100,
851 Table_Name
=> "Instance_Envs");
853 procedure Restore_Private_Views
854 (Pack_Id
: Entity_Id
;
855 Is_Package
: Boolean := True);
856 -- Restore the private views of external types, and unmark the generic
857 -- renamings of actuals, so that they become compatible subtypes again.
858 -- For subprograms, Pack_Id is the package constructed to hold the
861 procedure Switch_View
(T
: Entity_Id
);
862 -- Switch the partial and full views of a type and its private
863 -- dependents (i.e. its subtypes and derived types).
865 ------------------------------------
866 -- Structures for Error Reporting --
867 ------------------------------------
869 Instantiation_Node
: Node_Id
;
870 -- Used by subprograms that validate instantiation of formal parameters
871 -- where there might be no actual on which to place the error message.
872 -- Also used to locate the instantiation node for generic subunits.
874 Instantiation_Error
: exception;
875 -- When there is a semantic error in the generic parameter matching,
876 -- there is no point in continuing the instantiation, because the
877 -- number of cascaded errors is unpredictable. This exception aborts
878 -- the instantiation process altogether.
880 S_Adjustment
: Sloc_Adjustment
;
881 -- Offset created for each node in an instantiation, in order to keep
882 -- track of the source position of the instantiation in each of its nodes.
883 -- A subsequent semantic error or warning on a construct of the instance
884 -- points to both places: the original generic node, and the point of
885 -- instantiation. See Sinput and Sinput.L for additional details.
887 ------------------------------------------------------------
888 -- Data structure for keeping track when inside a Generic --
889 ------------------------------------------------------------
891 -- The following table is used to save values of the Inside_A_Generic
892 -- flag (see spec of Sem) when they are saved by Start_Generic.
894 package Generic_Flags
is new Table
.Table
(
895 Table_Component_Type
=> Boolean,
896 Table_Index_Type
=> Int
,
897 Table_Low_Bound
=> 0,
899 Table_Increment
=> 200,
900 Table_Name
=> "Generic_Flags");
902 ---------------------------
903 -- Abandon_Instantiation --
904 ---------------------------
906 procedure Abandon_Instantiation
(N
: Node_Id
) is
908 Error_Msg_N
("\instantiation abandoned!", N
);
909 raise Instantiation_Error
;
910 end Abandon_Instantiation
;
912 --------------------------
913 -- Analyze_Associations --
914 --------------------------
916 function Analyze_Associations
919 F_Copy
: List_Id
) return List_Id
921 Actuals_To_Freeze
: constant Elist_Id
:= New_Elmt_List
;
922 Assoc
: constant List_Id
:= New_List
;
923 Default_Actuals
: constant List_Id
:= New_List
;
924 Gen_Unit
: constant Entity_Id
:=
925 Defining_Entity
(Parent
(F_Copy
));
929 Analyzed_Formal
: Node_Id
;
930 First_Named
: Node_Id
:= Empty
;
934 Saved_Formal
: Node_Id
;
936 Default_Formals
: constant List_Id
:= New_List
;
937 -- If an Others_Choice is present, some of the formals may be defaulted.
938 -- To simplify the treatment of visibility in an instance, we introduce
939 -- individual defaults for each such formal. These defaults are
940 -- appended to the list of associations and replace the Others_Choice.
942 Found_Assoc
: Node_Id
;
943 -- Association for the current formal being match. Empty if there are
944 -- no remaining actuals, or if there is no named association with the
945 -- name of the formal.
947 Is_Named_Assoc
: Boolean;
948 Num_Matched
: Int
:= 0;
949 Num_Actuals
: Int
:= 0;
951 Others_Present
: Boolean := False;
952 Others_Choice
: Node_Id
:= Empty
;
953 -- In Ada 2005, indicates partial parameterization of a formal
954 -- package. As usual an other association must be last in the list.
956 procedure Check_Overloaded_Formal_Subprogram
(Formal
: Entity_Id
);
957 -- Apply RM 12.3 (9): if a formal subprogram is overloaded, the instance
958 -- cannot have a named association for it. AI05-0025 extends this rule
959 -- to formals of formal packages by AI05-0025, and it also applies to
960 -- box-initialized formals.
962 function Has_Fully_Defined_Profile
(Subp
: Entity_Id
) return Boolean;
963 -- Determine whether the parameter types and the return type of Subp
964 -- are fully defined at the point of instantiation.
966 function Matching_Actual
968 A_F
: Entity_Id
) return Node_Id
;
969 -- Find actual that corresponds to a given a formal parameter. If the
970 -- actuals are positional, return the next one, if any. If the actuals
971 -- are named, scan the parameter associations to find the right one.
972 -- A_F is the corresponding entity in the analyzed generic,which is
973 -- placed on the selector name for ASIS use.
975 -- In Ada 2005, a named association may be given with a box, in which
976 -- case Matching_Actual sets Found_Assoc to the generic association,
977 -- but return Empty for the actual itself. In this case the code below
978 -- creates a corresponding declaration for the formal.
980 function Partial_Parameterization
return Boolean;
981 -- Ada 2005: if no match is found for a given formal, check if the
982 -- association for it includes a box, or whether the associations
983 -- include an Others clause.
985 procedure Process_Default
(F
: Entity_Id
);
986 -- Add a copy of the declaration of generic formal F to the list of
987 -- associations, and add an explicit box association for F if there
988 -- is none yet, and the default comes from an Others_Choice.
990 function Renames_Standard_Subprogram
(Subp
: Entity_Id
) return Boolean;
991 -- Determine whether Subp renames one of the subprograms defined in the
992 -- generated package Standard.
994 procedure Set_Analyzed_Formal
;
995 -- Find the node in the generic copy that corresponds to a given formal.
996 -- The semantic information on this node is used to perform legality
997 -- checks on the actuals. Because semantic analysis can introduce some
998 -- anonymous entities or modify the declaration node itself, the
999 -- correspondence between the two lists is not one-one. In addition to
1000 -- anonymous types, the presence a formal equality will introduce an
1001 -- implicit declaration for the corresponding inequality.
1003 ----------------------------------------
1004 -- Check_Overloaded_Formal_Subprogram --
1005 ----------------------------------------
1007 procedure Check_Overloaded_Formal_Subprogram
(Formal
: Entity_Id
) is
1008 Temp_Formal
: Entity_Id
;
1011 Temp_Formal
:= First
(Formals
);
1012 while Present
(Temp_Formal
) loop
1013 if Nkind
(Temp_Formal
) in N_Formal_Subprogram_Declaration
1014 and then Temp_Formal
/= Formal
1016 Chars
(Defining_Unit_Name
(Specification
(Formal
))) =
1017 Chars
(Defining_Unit_Name
(Specification
(Temp_Formal
)))
1019 if Present
(Found_Assoc
) then
1021 ("named association not allowed for overloaded formal",
1026 ("named association not allowed for overloaded formal",
1030 Abandon_Instantiation
(Instantiation_Node
);
1035 end Check_Overloaded_Formal_Subprogram
;
1037 -------------------------------
1038 -- Has_Fully_Defined_Profile --
1039 -------------------------------
1041 function Has_Fully_Defined_Profile
(Subp
: Entity_Id
) return Boolean is
1042 function Is_Fully_Defined_Type
(Typ
: Entity_Id
) return Boolean;
1043 -- Determine whethet type Typ is fully defined
1045 ---------------------------
1046 -- Is_Fully_Defined_Type --
1047 ---------------------------
1049 function Is_Fully_Defined_Type
(Typ
: Entity_Id
) return Boolean is
1051 -- A private type without a full view is not fully defined
1053 if Is_Private_Type
(Typ
)
1054 and then No
(Full_View
(Typ
))
1058 -- An incomplete type is never fully defined
1060 elsif Is_Incomplete_Type
(Typ
) then
1063 -- All other types are fully defined
1068 end Is_Fully_Defined_Type
;
1070 -- Local declarations
1074 -- Start of processing for Has_Fully_Defined_Profile
1077 -- Check the parameters
1079 Param
:= First_Formal
(Subp
);
1080 while Present
(Param
) loop
1081 if not Is_Fully_Defined_Type
(Etype
(Param
)) then
1085 Next_Formal
(Param
);
1088 -- Check the return type
1090 return Is_Fully_Defined_Type
(Etype
(Subp
));
1091 end Has_Fully_Defined_Profile
;
1093 ---------------------
1094 -- Matching_Actual --
1095 ---------------------
1097 function Matching_Actual
1099 A_F
: Entity_Id
) return Node_Id
1105 Is_Named_Assoc
:= False;
1107 -- End of list of purely positional parameters
1109 if No
(Actual
) or else Nkind
(Actual
) = N_Others_Choice
then
1110 Found_Assoc
:= Empty
;
1113 -- Case of positional parameter corresponding to current formal
1115 elsif No
(Selector_Name
(Actual
)) then
1116 Found_Assoc
:= Actual
;
1117 Act
:= Explicit_Generic_Actual_Parameter
(Actual
);
1118 Num_Matched
:= Num_Matched
+ 1;
1121 -- Otherwise scan list of named actuals to find the one with the
1122 -- desired name. All remaining actuals have explicit names.
1125 Is_Named_Assoc
:= True;
1126 Found_Assoc
:= Empty
;
1130 while Present
(Actual
) loop
1131 if Chars
(Selector_Name
(Actual
)) = Chars
(F
) then
1132 Set_Entity
(Selector_Name
(Actual
), A_F
);
1133 Set_Etype
(Selector_Name
(Actual
), Etype
(A_F
));
1134 Generate_Reference
(A_F
, Selector_Name
(Actual
));
1135 Found_Assoc
:= Actual
;
1136 Act
:= Explicit_Generic_Actual_Parameter
(Actual
);
1137 Num_Matched
:= Num_Matched
+ 1;
1145 -- Reset for subsequent searches. In most cases the named
1146 -- associations are in order. If they are not, we reorder them
1147 -- to avoid scanning twice the same actual. This is not just a
1148 -- question of efficiency: there may be multiple defaults with
1149 -- boxes that have the same name. In a nested instantiation we
1150 -- insert actuals for those defaults, and cannot rely on their
1151 -- names to disambiguate them.
1153 if Actual
= First_Named
then
1156 elsif Present
(Actual
) then
1157 Insert_Before
(First_Named
, Remove_Next
(Prev
));
1160 Actual
:= First_Named
;
1163 if Is_Entity_Name
(Act
) and then Present
(Entity
(Act
)) then
1164 Set_Used_As_Generic_Actual
(Entity
(Act
));
1168 end Matching_Actual
;
1170 ------------------------------
1171 -- Partial_Parameterization --
1172 ------------------------------
1174 function Partial_Parameterization
return Boolean is
1176 return Others_Present
1177 or else (Present
(Found_Assoc
) and then Box_Present
(Found_Assoc
));
1178 end Partial_Parameterization
;
1180 ---------------------
1181 -- Process_Default --
1182 ---------------------
1184 procedure Process_Default
(F
: Entity_Id
) is
1185 Loc
: constant Source_Ptr
:= Sloc
(I_Node
);
1186 F_Id
: constant Entity_Id
:= Defining_Entity
(F
);
1192 -- Append copy of formal declaration to associations, and create new
1193 -- defining identifier for it.
1195 Decl
:= New_Copy_Tree
(F
);
1196 Id
:= Make_Defining_Identifier
(Sloc
(F_Id
), Chars
(F_Id
));
1198 if Nkind
(F
) in N_Formal_Subprogram_Declaration
then
1199 Set_Defining_Unit_Name
(Specification
(Decl
), Id
);
1202 Set_Defining_Identifier
(Decl
, Id
);
1205 Append
(Decl
, Assoc
);
1207 if No
(Found_Assoc
) then
1209 Make_Generic_Association
(Loc
,
1211 New_Occurrence_Of
(Id
, Loc
),
1212 Explicit_Generic_Actual_Parameter
=> Empty
);
1213 Set_Box_Present
(Default
);
1214 Append
(Default
, Default_Formals
);
1216 end Process_Default
;
1218 ---------------------------------
1219 -- Renames_Standard_Subprogram --
1220 ---------------------------------
1222 function Renames_Standard_Subprogram
(Subp
: Entity_Id
) return Boolean is
1227 while Present
(Id
) loop
1228 if Scope
(Id
) = Standard_Standard
then
1236 end Renames_Standard_Subprogram
;
1238 -------------------------
1239 -- Set_Analyzed_Formal --
1240 -------------------------
1242 procedure Set_Analyzed_Formal
is
1246 while Present
(Analyzed_Formal
) loop
1247 Kind
:= Nkind
(Analyzed_Formal
);
1249 case Nkind
(Formal
) is
1251 when N_Formal_Subprogram_Declaration
=>
1252 exit when Kind
in N_Formal_Subprogram_Declaration
1255 (Defining_Unit_Name
(Specification
(Formal
))) =
1257 (Defining_Unit_Name
(Specification
(Analyzed_Formal
)));
1259 when N_Formal_Package_Declaration
=>
1260 exit when Nkind_In
(Kind
, N_Formal_Package_Declaration
,
1261 N_Generic_Package_Declaration
,
1262 N_Package_Declaration
);
1264 when N_Use_Package_Clause | N_Use_Type_Clause
=> exit;
1268 -- Skip freeze nodes, and nodes inserted to replace
1269 -- unrecognized pragmas.
1272 Kind
not in N_Formal_Subprogram_Declaration
1273 and then not Nkind_In
(Kind
, N_Subprogram_Declaration
,
1277 and then Chars
(Defining_Identifier
(Formal
)) =
1278 Chars
(Defining_Identifier
(Analyzed_Formal
));
1281 Next
(Analyzed_Formal
);
1283 end Set_Analyzed_Formal
;
1285 -- Start of processing for Analyze_Associations
1288 Actuals
:= Generic_Associations
(I_Node
);
1290 if Present
(Actuals
) then
1292 -- Check for an Others choice, indicating a partial parameterization
1293 -- for a formal package.
1295 Actual
:= First
(Actuals
);
1296 while Present
(Actual
) loop
1297 if Nkind
(Actual
) = N_Others_Choice
then
1298 Others_Present
:= True;
1299 Others_Choice
:= Actual
;
1301 if Present
(Next
(Actual
)) then
1302 Error_Msg_N
("others must be last association", Actual
);
1305 -- This subprogram is used both for formal packages and for
1306 -- instantiations. For the latter, associations must all be
1309 if Nkind
(I_Node
) /= N_Formal_Package_Declaration
1310 and then Comes_From_Source
(I_Node
)
1313 ("others association not allowed in an instance",
1317 -- In any case, nothing to do after the others association
1321 elsif Box_Present
(Actual
)
1322 and then Comes_From_Source
(I_Node
)
1323 and then Nkind
(I_Node
) /= N_Formal_Package_Declaration
1326 ("box association not allowed in an instance", Actual
);
1332 -- If named associations are present, save first named association
1333 -- (it may of course be Empty) to facilitate subsequent name search.
1335 First_Named
:= First
(Actuals
);
1336 while Present
(First_Named
)
1337 and then Nkind
(First_Named
) /= N_Others_Choice
1338 and then No
(Selector_Name
(First_Named
))
1340 Num_Actuals
:= Num_Actuals
+ 1;
1345 Named
:= First_Named
;
1346 while Present
(Named
) loop
1347 if Nkind
(Named
) /= N_Others_Choice
1348 and then No
(Selector_Name
(Named
))
1350 Error_Msg_N
("invalid positional actual after named one", Named
);
1351 Abandon_Instantiation
(Named
);
1354 -- A named association may lack an actual parameter, if it was
1355 -- introduced for a default subprogram that turns out to be local
1356 -- to the outer instantiation.
1358 if Nkind
(Named
) /= N_Others_Choice
1359 and then Present
(Explicit_Generic_Actual_Parameter
(Named
))
1361 Num_Actuals
:= Num_Actuals
+ 1;
1367 if Present
(Formals
) then
1368 Formal
:= First_Non_Pragma
(Formals
);
1369 Analyzed_Formal
:= First_Non_Pragma
(F_Copy
);
1371 if Present
(Actuals
) then
1372 Actual
:= First
(Actuals
);
1374 -- All formals should have default values
1380 while Present
(Formal
) loop
1381 Set_Analyzed_Formal
;
1382 Saved_Formal
:= Next_Non_Pragma
(Formal
);
1384 case Nkind
(Formal
) is
1385 when N_Formal_Object_Declaration
=>
1388 (Defining_Identifier
(Formal
),
1389 Defining_Identifier
(Analyzed_Formal
));
1391 if No
(Match
) and then Partial_Parameterization
then
1392 Process_Default
(Formal
);
1396 (Instantiate_Object
(Formal
, Match
, Analyzed_Formal
),
1399 -- For a defaulted in_parameter, create an entry in the
1400 -- the list of defaulted actuals, for GNATProve use. Do
1401 -- not included these defaults for an instance nested
1402 -- within a generic, because the defaults are also used
1403 -- in the analysis of the enclosing generic, and only
1404 -- defaulted subprograms are relevant there.
1406 if No
(Match
) and then not Inside_A_Generic
then
1407 Append_To
(Default_Actuals
,
1408 Make_Generic_Association
(Sloc
(I_Node
),
1411 (Defining_Identifier
(Formal
), Sloc
(I_Node
)),
1412 Explicit_Generic_Actual_Parameter
=>
1413 New_Copy_Tree
(Default_Expression
(Formal
))));
1417 -- If the object is a call to an expression function, this
1418 -- is a freezing point for it.
1420 if Is_Entity_Name
(Match
)
1421 and then Present
(Entity
(Match
))
1423 (Original_Node
(Unit_Declaration_Node
(Entity
(Match
))))
1424 = N_Expression_Function
1426 Append_Elmt
(Entity
(Match
), Actuals_To_Freeze
);
1429 when N_Formal_Type_Declaration
=>
1432 (Defining_Identifier
(Formal
),
1433 Defining_Identifier
(Analyzed_Formal
));
1436 if Partial_Parameterization
then
1437 Process_Default
(Formal
);
1440 Error_Msg_Sloc
:= Sloc
(Gen_Unit
);
1443 Instantiation_Node
, Defining_Identifier
(Formal
));
1445 ("\in instantiation of & declared#",
1446 Instantiation_Node
, Gen_Unit
);
1447 Abandon_Instantiation
(Instantiation_Node
);
1454 (Formal
, Match
, Analyzed_Formal
, Assoc
),
1457 -- An instantiation is a freeze point for the actuals,
1458 -- unless this is a rewritten formal package, or the
1459 -- formal is an Ada 2012 formal incomplete type.
1461 if Nkind
(I_Node
) = N_Formal_Package_Declaration
1463 (Ada_Version
>= Ada_2012
1465 Ekind
(Defining_Identifier
(Analyzed_Formal
)) =
1471 Append_Elmt
(Entity
(Match
), Actuals_To_Freeze
);
1475 -- A remote access-to-class-wide type is not a legal actual
1476 -- for a generic formal of an access type (E.2.2(17/2)).
1477 -- In GNAT an exception to this rule is introduced when
1478 -- the formal is marked as remote using implementation
1479 -- defined aspect/pragma Remote_Access_Type. In that case
1480 -- the actual must be remote as well.
1482 -- If the current instantiation is the construction of a
1483 -- local copy for a formal package the actuals may be
1484 -- defaulted, and there is no matching actual to check.
1486 if Nkind
(Analyzed_Formal
) = N_Formal_Type_Declaration
1488 Nkind
(Formal_Type_Definition
(Analyzed_Formal
)) =
1489 N_Access_To_Object_Definition
1490 and then Present
(Match
)
1493 Formal_Ent
: constant Entity_Id
:=
1494 Defining_Identifier
(Analyzed_Formal
);
1496 if Is_Remote_Access_To_Class_Wide_Type
(Entity
(Match
))
1497 = Is_Remote_Types
(Formal_Ent
)
1499 -- Remoteness of formal and actual match
1503 elsif Is_Remote_Types
(Formal_Ent
) then
1505 -- Remote formal, non-remote actual
1508 ("actual for& must be remote", Match
, Formal_Ent
);
1511 -- Non-remote formal, remote actual
1514 ("actual for& may not be remote",
1520 when N_Formal_Subprogram_Declaration
=>
1523 (Defining_Unit_Name
(Specification
(Formal
)),
1524 Defining_Unit_Name
(Specification
(Analyzed_Formal
)));
1526 -- If the formal subprogram has the same name as another
1527 -- formal subprogram of the generic, then a named
1528 -- association is illegal (12.3(9)). Exclude named
1529 -- associations that are generated for a nested instance.
1532 and then Is_Named_Assoc
1533 and then Comes_From_Source
(Found_Assoc
)
1535 Check_Overloaded_Formal_Subprogram
(Formal
);
1538 -- If there is no corresponding actual, this may be case
1539 -- of partial parameterization, or else the formal has a
1540 -- default or a box.
1542 if No
(Match
) and then Partial_Parameterization
then
1543 Process_Default
(Formal
);
1545 if Nkind
(I_Node
) = N_Formal_Package_Declaration
then
1546 Check_Overloaded_Formal_Subprogram
(Formal
);
1551 Instantiate_Formal_Subprogram
1552 (Formal
, Match
, Analyzed_Formal
));
1554 -- An instantiation is a freeze point for the actuals,
1555 -- unless this is a rewritten formal package.
1557 if Nkind
(I_Node
) /= N_Formal_Package_Declaration
1558 and then Nkind
(Match
) = N_Identifier
1559 and then Is_Subprogram
(Entity
(Match
))
1561 -- The actual subprogram may rename a routine defined
1562 -- in Standard. Avoid freezing such renamings because
1563 -- subprograms coming from Standard cannot be frozen.
1566 not Renames_Standard_Subprogram
(Entity
(Match
))
1568 -- If the actual subprogram comes from a different
1569 -- unit, it is already frozen, either by a body in
1570 -- that unit or by the end of the declarative part
1571 -- of the unit. This check avoids the freezing of
1572 -- subprograms defined in Standard which are used
1573 -- as generic actuals.
1575 and then In_Same_Code_Unit
(Entity
(Match
), I_Node
)
1576 and then Has_Fully_Defined_Profile
(Entity
(Match
))
1578 -- Mark the subprogram as having a delayed freeze
1579 -- since this may be an out-of-order action.
1581 Set_Has_Delayed_Freeze
(Entity
(Match
));
1582 Append_Elmt
(Entity
(Match
), Actuals_To_Freeze
);
1586 -- If this is a nested generic, preserve default for later
1587 -- instantiations. We do this as well for GNATProve use,
1588 -- so that the list of generic associations is complete.
1590 if No
(Match
) and then Box_Present
(Formal
) then
1592 Subp
: constant Entity_Id
:=
1593 Defining_Unit_Name
(Specification
(Last
(Assoc
)));
1596 Append_To
(Default_Actuals
,
1597 Make_Generic_Association
(Sloc
(I_Node
),
1599 New_Occurrence_Of
(Subp
, Sloc
(I_Node
)),
1600 Explicit_Generic_Actual_Parameter
=>
1601 New_Occurrence_Of
(Subp
, Sloc
(I_Node
))));
1605 when N_Formal_Package_Declaration
=>
1608 (Defining_Identifier
(Formal
),
1609 Defining_Identifier
(Original_Node
(Analyzed_Formal
)));
1612 if Partial_Parameterization
then
1613 Process_Default
(Formal
);
1616 Error_Msg_Sloc
:= Sloc
(Gen_Unit
);
1619 Instantiation_Node
, Defining_Identifier
(Formal
));
1621 ("\in instantiation of & declared#",
1622 Instantiation_Node
, Gen_Unit
);
1624 Abandon_Instantiation
(Instantiation_Node
);
1630 (Instantiate_Formal_Package
1631 (Formal
, Match
, Analyzed_Formal
),
1635 -- For use type and use package appearing in the generic part,
1636 -- we have already copied them, so we can just move them where
1637 -- they belong (we mustn't recopy them since this would mess up
1638 -- the Sloc values).
1640 when N_Use_Package_Clause |
1641 N_Use_Type_Clause
=>
1642 if Nkind
(Original_Node
(I_Node
)) =
1643 N_Formal_Package_Declaration
1645 Append
(New_Copy_Tree
(Formal
), Assoc
);
1648 Append
(Formal
, Assoc
);
1652 raise Program_Error
;
1656 Formal
:= Saved_Formal
;
1657 Next_Non_Pragma
(Analyzed_Formal
);
1660 if Num_Actuals
> Num_Matched
then
1661 Error_Msg_Sloc
:= Sloc
(Gen_Unit
);
1663 if Present
(Selector_Name
(Actual
)) then
1665 ("unmatched actual &", Actual
, Selector_Name
(Actual
));
1667 ("\in instantiation of & declared#", Actual
, Gen_Unit
);
1670 ("unmatched actual in instantiation of & declared#",
1675 elsif Present
(Actuals
) then
1677 ("too many actuals in generic instantiation", Instantiation_Node
);
1680 -- An instantiation freezes all generic actuals. The only exceptions
1681 -- to this are incomplete types and subprograms which are not fully
1682 -- defined at the point of instantiation.
1685 Elmt
: Elmt_Id
:= First_Elmt
(Actuals_To_Freeze
);
1687 while Present
(Elmt
) loop
1688 Freeze_Before
(I_Node
, Node
(Elmt
));
1693 -- If there are default subprograms, normalize the tree by adding
1694 -- explicit associations for them. This is required if the instance
1695 -- appears within a generic.
1697 if not Is_Empty_List
(Default_Actuals
) then
1702 Default
:= First
(Default_Actuals
);
1703 while Present
(Default
) loop
1704 Mark_Rewrite_Insertion
(Default
);
1708 if No
(Actuals
) then
1709 Set_Generic_Associations
(I_Node
, Default_Actuals
);
1711 Append_List_To
(Actuals
, Default_Actuals
);
1716 -- If this is a formal package, normalize the parameter list by adding
1717 -- explicit box associations for the formals that are covered by an
1720 if not Is_Empty_List
(Default_Formals
) then
1721 Append_List
(Default_Formals
, Formals
);
1725 end Analyze_Associations
;
1727 -------------------------------
1728 -- Analyze_Formal_Array_Type --
1729 -------------------------------
1731 procedure Analyze_Formal_Array_Type
1732 (T
: in out Entity_Id
;
1738 -- Treated like a non-generic array declaration, with additional
1743 if Nkind
(Def
) = N_Constrained_Array_Definition
then
1744 DSS
:= First
(Discrete_Subtype_Definitions
(Def
));
1745 while Present
(DSS
) loop
1746 if Nkind_In
(DSS
, N_Subtype_Indication
,
1748 N_Attribute_Reference
)
1750 Error_Msg_N
("only a subtype mark is allowed in a formal", DSS
);
1757 Array_Type_Declaration
(T
, Def
);
1758 Set_Is_Generic_Type
(Base_Type
(T
));
1760 if Ekind
(Component_Type
(T
)) = E_Incomplete_Type
1761 and then No
(Full_View
(Component_Type
(T
)))
1763 Error_Msg_N
("premature usage of incomplete type", Def
);
1765 -- Check that range constraint is not allowed on the component type
1766 -- of a generic formal array type (AARM 12.5.3(3))
1768 elsif Is_Internal
(Component_Type
(T
))
1769 and then Present
(Subtype_Indication
(Component_Definition
(Def
)))
1770 and then Nkind
(Original_Node
1771 (Subtype_Indication
(Component_Definition
(Def
)))) =
1772 N_Subtype_Indication
1775 ("in a formal, a subtype indication can only be "
1776 & "a subtype mark (RM 12.5.3(3))",
1777 Subtype_Indication
(Component_Definition
(Def
)));
1780 end Analyze_Formal_Array_Type
;
1782 ---------------------------------------------
1783 -- Analyze_Formal_Decimal_Fixed_Point_Type --
1784 ---------------------------------------------
1786 -- As for other generic types, we create a valid type representation with
1787 -- legal but arbitrary attributes, whose values are never considered
1788 -- static. For all scalar types we introduce an anonymous base type, with
1789 -- the same attributes. We choose the corresponding integer type to be
1790 -- Standard_Integer.
1791 -- Here and in other similar routines, the Sloc of the generated internal
1792 -- type must be the same as the sloc of the defining identifier of the
1793 -- formal type declaration, to provide proper source navigation.
1795 procedure Analyze_Formal_Decimal_Fixed_Point_Type
1799 Loc
: constant Source_Ptr
:= Sloc
(Def
);
1801 Base
: constant Entity_Id
:=
1803 (E_Decimal_Fixed_Point_Type
,
1805 Sloc
(Defining_Identifier
(Parent
(Def
))), 'G');
1807 Int_Base
: constant Entity_Id
:= Standard_Integer
;
1808 Delta_Val
: constant Ureal
:= Ureal_1
;
1809 Digs_Val
: constant Uint
:= Uint_6
;
1811 function Make_Dummy_Bound
return Node_Id
;
1812 -- Return a properly typed universal real literal to use as a bound
1814 ----------------------
1815 -- Make_Dummy_Bound --
1816 ----------------------
1818 function Make_Dummy_Bound
return Node_Id
is
1819 Bound
: constant Node_Id
:= Make_Real_Literal
(Loc
, Ureal_1
);
1821 Set_Etype
(Bound
, Universal_Real
);
1823 end Make_Dummy_Bound
;
1825 -- Start of processing for Analyze_Formal_Decimal_Fixed_Point_Type
1830 Set_Etype
(Base
, Base
);
1831 Set_Size_Info
(Base
, Int_Base
);
1832 Set_RM_Size
(Base
, RM_Size
(Int_Base
));
1833 Set_First_Rep_Item
(Base
, First_Rep_Item
(Int_Base
));
1834 Set_Digits_Value
(Base
, Digs_Val
);
1835 Set_Delta_Value
(Base
, Delta_Val
);
1836 Set_Small_Value
(Base
, Delta_Val
);
1837 Set_Scalar_Range
(Base
,
1839 Low_Bound
=> Make_Dummy_Bound
,
1840 High_Bound
=> Make_Dummy_Bound
));
1842 Set_Is_Generic_Type
(Base
);
1843 Set_Parent
(Base
, Parent
(Def
));
1845 Set_Ekind
(T
, E_Decimal_Fixed_Point_Subtype
);
1846 Set_Etype
(T
, Base
);
1847 Set_Size_Info
(T
, Int_Base
);
1848 Set_RM_Size
(T
, RM_Size
(Int_Base
));
1849 Set_First_Rep_Item
(T
, First_Rep_Item
(Int_Base
));
1850 Set_Digits_Value
(T
, Digs_Val
);
1851 Set_Delta_Value
(T
, Delta_Val
);
1852 Set_Small_Value
(T
, Delta_Val
);
1853 Set_Scalar_Range
(T
, Scalar_Range
(Base
));
1854 Set_Is_Constrained
(T
);
1856 Check_Restriction
(No_Fixed_Point
, Def
);
1857 end Analyze_Formal_Decimal_Fixed_Point_Type
;
1859 -------------------------------------------
1860 -- Analyze_Formal_Derived_Interface_Type --
1861 -------------------------------------------
1863 procedure Analyze_Formal_Derived_Interface_Type
1868 Loc
: constant Source_Ptr
:= Sloc
(Def
);
1871 -- Rewrite as a type declaration of a derived type. This ensures that
1872 -- the interface list and primitive operations are properly captured.
1875 Make_Full_Type_Declaration
(Loc
,
1876 Defining_Identifier
=> T
,
1877 Type_Definition
=> Def
));
1879 Set_Is_Generic_Type
(T
);
1880 end Analyze_Formal_Derived_Interface_Type
;
1882 ---------------------------------
1883 -- Analyze_Formal_Derived_Type --
1884 ---------------------------------
1886 procedure Analyze_Formal_Derived_Type
1891 Loc
: constant Source_Ptr
:= Sloc
(Def
);
1892 Unk_Disc
: constant Boolean := Unknown_Discriminants_Present
(N
);
1896 Set_Is_Generic_Type
(T
);
1898 if Private_Present
(Def
) then
1900 Make_Private_Extension_Declaration
(Loc
,
1901 Defining_Identifier
=> T
,
1902 Discriminant_Specifications
=> Discriminant_Specifications
(N
),
1903 Unknown_Discriminants_Present
=> Unk_Disc
,
1904 Subtype_Indication
=> Subtype_Mark
(Def
),
1905 Interface_List
=> Interface_List
(Def
));
1907 Set_Abstract_Present
(New_N
, Abstract_Present
(Def
));
1908 Set_Limited_Present
(New_N
, Limited_Present
(Def
));
1909 Set_Synchronized_Present
(New_N
, Synchronized_Present
(Def
));
1913 Make_Full_Type_Declaration
(Loc
,
1914 Defining_Identifier
=> T
,
1915 Discriminant_Specifications
=>
1916 Discriminant_Specifications
(Parent
(T
)),
1918 Make_Derived_Type_Definition
(Loc
,
1919 Subtype_Indication
=> Subtype_Mark
(Def
)));
1921 Set_Abstract_Present
1922 (Type_Definition
(New_N
), Abstract_Present
(Def
));
1924 (Type_Definition
(New_N
), Limited_Present
(Def
));
1931 if not Is_Composite_Type
(T
) then
1933 ("unknown discriminants not allowed for elementary types", N
);
1935 Set_Has_Unknown_Discriminants
(T
);
1936 Set_Is_Constrained
(T
, False);
1940 -- If the parent type has a known size, so does the formal, which makes
1941 -- legal representation clauses that involve the formal.
1943 Set_Size_Known_At_Compile_Time
1944 (T
, Size_Known_At_Compile_Time
(Entity
(Subtype_Mark
(Def
))));
1945 end Analyze_Formal_Derived_Type
;
1947 ----------------------------------
1948 -- Analyze_Formal_Discrete_Type --
1949 ----------------------------------
1951 -- The operations defined for a discrete types are those of an enumeration
1952 -- type. The size is set to an arbitrary value, for use in analyzing the
1955 procedure Analyze_Formal_Discrete_Type
(T
: Entity_Id
; Def
: Node_Id
) is
1956 Loc
: constant Source_Ptr
:= Sloc
(Def
);
1960 Base
: constant Entity_Id
:=
1962 (E_Floating_Point_Type
, Current_Scope
,
1963 Sloc
(Defining_Identifier
(Parent
(Def
))), 'G');
1967 Set_Ekind
(T
, E_Enumeration_Subtype
);
1968 Set_Etype
(T
, Base
);
1971 Set_Is_Generic_Type
(T
);
1972 Set_Is_Constrained
(T
);
1974 -- For semantic analysis, the bounds of the type must be set to some
1975 -- non-static value. The simplest is to create attribute nodes for those
1976 -- bounds, that refer to the type itself. These bounds are never
1977 -- analyzed but serve as place-holders.
1980 Make_Attribute_Reference
(Loc
,
1981 Attribute_Name
=> Name_First
,
1982 Prefix
=> New_Occurrence_Of
(T
, Loc
));
1986 Make_Attribute_Reference
(Loc
,
1987 Attribute_Name
=> Name_Last
,
1988 Prefix
=> New_Occurrence_Of
(T
, Loc
));
1991 Set_Scalar_Range
(T
,
1996 Set_Ekind
(Base
, E_Enumeration_Type
);
1997 Set_Etype
(Base
, Base
);
1998 Init_Size
(Base
, 8);
1999 Init_Alignment
(Base
);
2000 Set_Is_Generic_Type
(Base
);
2001 Set_Scalar_Range
(Base
, Scalar_Range
(T
));
2002 Set_Parent
(Base
, Parent
(Def
));
2003 end Analyze_Formal_Discrete_Type
;
2005 ----------------------------------
2006 -- Analyze_Formal_Floating_Type --
2007 ---------------------------------
2009 procedure Analyze_Formal_Floating_Type
(T
: Entity_Id
; Def
: Node_Id
) is
2010 Base
: constant Entity_Id
:=
2012 (E_Floating_Point_Type
, Current_Scope
,
2013 Sloc
(Defining_Identifier
(Parent
(Def
))), 'G');
2016 -- The various semantic attributes are taken from the predefined type
2017 -- Float, just so that all of them are initialized. Their values are
2018 -- never used because no constant folding or expansion takes place in
2019 -- the generic itself.
2022 Set_Ekind
(T
, E_Floating_Point_Subtype
);
2023 Set_Etype
(T
, Base
);
2024 Set_Size_Info
(T
, (Standard_Float
));
2025 Set_RM_Size
(T
, RM_Size
(Standard_Float
));
2026 Set_Digits_Value
(T
, Digits_Value
(Standard_Float
));
2027 Set_Scalar_Range
(T
, Scalar_Range
(Standard_Float
));
2028 Set_Is_Constrained
(T
);
2030 Set_Is_Generic_Type
(Base
);
2031 Set_Etype
(Base
, Base
);
2032 Set_Size_Info
(Base
, (Standard_Float
));
2033 Set_RM_Size
(Base
, RM_Size
(Standard_Float
));
2034 Set_Digits_Value
(Base
, Digits_Value
(Standard_Float
));
2035 Set_Scalar_Range
(Base
, Scalar_Range
(Standard_Float
));
2036 Set_Parent
(Base
, Parent
(Def
));
2038 Check_Restriction
(No_Floating_Point
, Def
);
2039 end Analyze_Formal_Floating_Type
;
2041 -----------------------------------
2042 -- Analyze_Formal_Interface_Type;--
2043 -----------------------------------
2045 procedure Analyze_Formal_Interface_Type
2050 Loc
: constant Source_Ptr
:= Sloc
(N
);
2055 Make_Full_Type_Declaration
(Loc
,
2056 Defining_Identifier
=> T
,
2057 Type_Definition
=> Def
);
2061 Set_Is_Generic_Type
(T
);
2062 end Analyze_Formal_Interface_Type
;
2064 ---------------------------------
2065 -- Analyze_Formal_Modular_Type --
2066 ---------------------------------
2068 procedure Analyze_Formal_Modular_Type
(T
: Entity_Id
; Def
: Node_Id
) is
2070 -- Apart from their entity kind, generic modular types are treated like
2071 -- signed integer types, and have the same attributes.
2073 Analyze_Formal_Signed_Integer_Type
(T
, Def
);
2074 Set_Ekind
(T
, E_Modular_Integer_Subtype
);
2075 Set_Ekind
(Etype
(T
), E_Modular_Integer_Type
);
2077 end Analyze_Formal_Modular_Type
;
2079 ---------------------------------------
2080 -- Analyze_Formal_Object_Declaration --
2081 ---------------------------------------
2083 procedure Analyze_Formal_Object_Declaration
(N
: Node_Id
) is
2084 E
: constant Node_Id
:= Default_Expression
(N
);
2085 Id
: constant Node_Id
:= Defining_Identifier
(N
);
2092 -- Determine the mode of the formal object
2094 if Out_Present
(N
) then
2095 K
:= E_Generic_In_Out_Parameter
;
2097 if not In_Present
(N
) then
2098 Error_Msg_N
("formal generic objects cannot have mode OUT", N
);
2102 K
:= E_Generic_In_Parameter
;
2105 if Present
(Subtype_Mark
(N
)) then
2106 Find_Type
(Subtype_Mark
(N
));
2107 T
:= Entity
(Subtype_Mark
(N
));
2109 -- Verify that there is no redundant null exclusion
2111 if Null_Exclusion_Present
(N
) then
2112 if not Is_Access_Type
(T
) then
2114 ("null exclusion can only apply to an access type", N
);
2116 elsif Can_Never_Be_Null
(T
) then
2118 ("`NOT NULL` not allowed (& already excludes null)", N
, T
);
2122 -- Ada 2005 (AI-423): Formal object with an access definition
2125 Check_Access_Definition
(N
);
2126 T
:= Access_Definition
2128 N
=> Access_Definition
(N
));
2131 if Ekind
(T
) = E_Incomplete_Type
then
2133 Error_Node
: Node_Id
;
2136 if Present
(Subtype_Mark
(N
)) then
2137 Error_Node
:= Subtype_Mark
(N
);
2139 Check_Access_Definition
(N
);
2140 Error_Node
:= Access_Definition
(N
);
2143 Error_Msg_N
("premature usage of incomplete type", Error_Node
);
2147 if K
= E_Generic_In_Parameter
then
2149 -- Ada 2005 (AI-287): Limited aggregates allowed in generic formals
2151 if Ada_Version
< Ada_2005
and then Is_Limited_Type
(T
) then
2153 ("generic formal of mode IN must not be of limited type", N
);
2154 Explain_Limited_Type
(T
, N
);
2157 if Is_Abstract_Type
(T
) then
2159 ("generic formal of mode IN must not be of abstract type", N
);
2163 Preanalyze_Spec_Expression
(E
, T
);
2165 if Is_Limited_Type
(T
) and then not OK_For_Limited_Init
(T
, E
) then
2167 ("initialization not allowed for limited types", E
);
2168 Explain_Limited_Type
(T
, E
);
2175 -- Case of generic IN OUT parameter
2178 -- If the formal has an unconstrained type, construct its actual
2179 -- subtype, as is done for subprogram formals. In this fashion, all
2180 -- its uses can refer to specific bounds.
2185 if (Is_Array_Type
(T
) and then not Is_Constrained
(T
))
2186 or else (Ekind
(T
) = E_Record_Type
and then Has_Discriminants
(T
))
2189 Non_Freezing_Ref
: constant Node_Id
:=
2190 New_Occurrence_Of
(Id
, Sloc
(Id
));
2194 -- Make sure the actual subtype doesn't generate bogus freezing
2196 Set_Must_Not_Freeze
(Non_Freezing_Ref
);
2197 Decl
:= Build_Actual_Subtype
(T
, Non_Freezing_Ref
);
2198 Insert_Before_And_Analyze
(N
, Decl
);
2199 Set_Actual_Subtype
(Id
, Defining_Identifier
(Decl
));
2202 Set_Actual_Subtype
(Id
, T
);
2207 ("initialization not allowed for `IN OUT` formals", N
);
2211 if Has_Aspects
(N
) then
2212 Analyze_Aspect_Specifications
(N
, Id
);
2214 end Analyze_Formal_Object_Declaration
;
2216 ----------------------------------------------
2217 -- Analyze_Formal_Ordinary_Fixed_Point_Type --
2218 ----------------------------------------------
2220 procedure Analyze_Formal_Ordinary_Fixed_Point_Type
2224 Loc
: constant Source_Ptr
:= Sloc
(Def
);
2225 Base
: constant Entity_Id
:=
2227 (E_Ordinary_Fixed_Point_Type
, Current_Scope
,
2228 Sloc
(Defining_Identifier
(Parent
(Def
))), 'G');
2231 -- The semantic attributes are set for completeness only, their values
2232 -- will never be used, since all properties of the type are non-static.
2235 Set_Ekind
(T
, E_Ordinary_Fixed_Point_Subtype
);
2236 Set_Etype
(T
, Base
);
2237 Set_Size_Info
(T
, Standard_Integer
);
2238 Set_RM_Size
(T
, RM_Size
(Standard_Integer
));
2239 Set_Small_Value
(T
, Ureal_1
);
2240 Set_Delta_Value
(T
, Ureal_1
);
2241 Set_Scalar_Range
(T
,
2243 Low_Bound
=> Make_Real_Literal
(Loc
, Ureal_1
),
2244 High_Bound
=> Make_Real_Literal
(Loc
, Ureal_1
)));
2245 Set_Is_Constrained
(T
);
2247 Set_Is_Generic_Type
(Base
);
2248 Set_Etype
(Base
, Base
);
2249 Set_Size_Info
(Base
, Standard_Integer
);
2250 Set_RM_Size
(Base
, RM_Size
(Standard_Integer
));
2251 Set_Small_Value
(Base
, Ureal_1
);
2252 Set_Delta_Value
(Base
, Ureal_1
);
2253 Set_Scalar_Range
(Base
, Scalar_Range
(T
));
2254 Set_Parent
(Base
, Parent
(Def
));
2256 Check_Restriction
(No_Fixed_Point
, Def
);
2257 end Analyze_Formal_Ordinary_Fixed_Point_Type
;
2259 ----------------------------------------
2260 -- Analyze_Formal_Package_Declaration --
2261 ----------------------------------------
2263 procedure Analyze_Formal_Package_Declaration
(N
: Node_Id
) is
2264 Loc
: constant Source_Ptr
:= Sloc
(N
);
2265 Pack_Id
: constant Entity_Id
:= Defining_Identifier
(N
);
2267 Gen_Id
: constant Node_Id
:= Name
(N
);
2269 Gen_Unit
: Entity_Id
;
2271 Parent_Installed
: Boolean := False;
2273 Parent_Instance
: Entity_Id
;
2274 Renaming_In_Par
: Entity_Id
;
2275 Associations
: Boolean := True;
2277 Vis_Prims_List
: Elist_Id
:= No_Elist
;
2278 -- List of primitives made temporarily visible in the instantiation
2279 -- to match the visibility of the formal type
2281 function Build_Local_Package
return Node_Id
;
2282 -- The formal package is rewritten so that its parameters are replaced
2283 -- with corresponding declarations. For parameters with bona fide
2284 -- associations these declarations are created by Analyze_Associations
2285 -- as for a regular instantiation. For boxed parameters, we preserve
2286 -- the formal declarations and analyze them, in order to introduce
2287 -- entities of the right kind in the environment of the formal.
2289 -------------------------
2290 -- Build_Local_Package --
2291 -------------------------
2293 function Build_Local_Package
return Node_Id
is
2295 Pack_Decl
: Node_Id
;
2298 -- Within the formal, the name of the generic package is a renaming
2299 -- of the formal (as for a regular instantiation).
2302 Make_Package_Declaration
(Loc
,
2305 (Specification
(Original_Node
(Gen_Decl
)),
2306 Empty
, Instantiating
=> True));
2308 Renaming
:= Make_Package_Renaming_Declaration
(Loc
,
2309 Defining_Unit_Name
=>
2310 Make_Defining_Identifier
(Loc
, Chars
(Gen_Unit
)),
2311 Name
=> New_Occurrence_Of
(Formal
, Loc
));
2313 if Nkind
(Gen_Id
) = N_Identifier
2314 and then Chars
(Gen_Id
) = Chars
(Pack_Id
)
2317 ("& is hidden within declaration of instance", Gen_Id
, Gen_Unit
);
2320 -- If the formal is declared with a box, or with an others choice,
2321 -- create corresponding declarations for all entities in the formal
2322 -- part, so that names with the proper types are available in the
2323 -- specification of the formal package.
2325 -- On the other hand, if there are no associations, then all the
2326 -- formals must have defaults, and this will be checked by the
2327 -- call to Analyze_Associations.
2330 or else Nkind
(First
(Generic_Associations
(N
))) = N_Others_Choice
2333 Formal_Decl
: Node_Id
;
2336 -- TBA : for a formal package, need to recurse ???
2341 (Generic_Formal_Declarations
(Original_Node
(Gen_Decl
)));
2342 while Present
(Formal_Decl
) loop
2344 (Decls
, Copy_Generic_Node
(Formal_Decl
, Empty
, True));
2349 -- If generic associations are present, use Analyze_Associations to
2350 -- create the proper renaming declarations.
2354 Act_Tree
: constant Node_Id
:=
2356 (Original_Node
(Gen_Decl
), Empty
,
2357 Instantiating
=> True);
2360 Generic_Renamings
.Set_Last
(0);
2361 Generic_Renamings_HTable
.Reset
;
2362 Instantiation_Node
:= N
;
2365 Analyze_Associations
2366 (I_Node
=> Original_Node
(N
),
2367 Formals
=> Generic_Formal_Declarations
(Act_Tree
),
2368 F_Copy
=> Generic_Formal_Declarations
(Gen_Decl
));
2370 Vis_Prims_List
:= Check_Hidden_Primitives
(Decls
);
2374 Append
(Renaming
, To
=> Decls
);
2376 -- Add generated declarations ahead of local declarations in
2379 if No
(Visible_Declarations
(Specification
(Pack_Decl
))) then
2380 Set_Visible_Declarations
(Specification
(Pack_Decl
), Decls
);
2383 (First
(Visible_Declarations
(Specification
(Pack_Decl
))),
2388 end Build_Local_Package
;
2390 -- Start of processing for Analyze_Formal_Package_Declaration
2393 Check_Text_IO_Special_Unit
(Gen_Id
);
2396 Check_Generic_Child_Unit
(Gen_Id
, Parent_Installed
);
2397 Gen_Unit
:= Entity
(Gen_Id
);
2399 -- Check for a formal package that is a package renaming
2401 if Present
(Renamed_Object
(Gen_Unit
)) then
2403 -- Indicate that unit is used, before replacing it with renamed
2404 -- entity for use below.
2406 if In_Extended_Main_Source_Unit
(N
) then
2407 Set_Is_Instantiated
(Gen_Unit
);
2408 Generate_Reference
(Gen_Unit
, N
);
2411 Gen_Unit
:= Renamed_Object
(Gen_Unit
);
2414 if Ekind
(Gen_Unit
) /= E_Generic_Package
then
2415 Error_Msg_N
("expect generic package name", Gen_Id
);
2419 elsif Gen_Unit
= Current_Scope
then
2421 ("generic package cannot be used as a formal package of itself",
2426 elsif In_Open_Scopes
(Gen_Unit
) then
2427 if Is_Compilation_Unit
(Gen_Unit
)
2428 and then Is_Child_Unit
(Current_Scope
)
2430 -- Special-case the error when the formal is a parent, and
2431 -- continue analysis to minimize cascaded errors.
2434 ("generic parent cannot be used as formal package "
2435 & "of a child unit", Gen_Id
);
2439 ("generic package cannot be used as a formal package "
2440 & "within itself", Gen_Id
);
2446 -- Check that name of formal package does not hide name of generic,
2447 -- or its leading prefix. This check must be done separately because
2448 -- the name of the generic has already been analyzed.
2451 Gen_Name
: Entity_Id
;
2455 while Nkind
(Gen_Name
) = N_Expanded_Name
loop
2456 Gen_Name
:= Prefix
(Gen_Name
);
2459 if Chars
(Gen_Name
) = Chars
(Pack_Id
) then
2461 ("& is hidden within declaration of formal package",
2467 or else No
(Generic_Associations
(N
))
2468 or else Nkind
(First
(Generic_Associations
(N
))) = N_Others_Choice
2470 Associations
:= False;
2473 -- If there are no generic associations, the generic parameters appear
2474 -- as local entities and are instantiated like them. We copy the generic
2475 -- package declaration as if it were an instantiation, and analyze it
2476 -- like a regular package, except that we treat the formals as
2477 -- additional visible components.
2479 Gen_Decl
:= Unit_Declaration_Node
(Gen_Unit
);
2481 if In_Extended_Main_Source_Unit
(N
) then
2482 Set_Is_Instantiated
(Gen_Unit
);
2483 Generate_Reference
(Gen_Unit
, N
);
2486 Formal
:= New_Copy
(Pack_Id
);
2487 Create_Instantiation_Source
(N
, Gen_Unit
, False, S_Adjustment
);
2490 -- Make local generic without formals. The formals will be replaced
2491 -- with internal declarations.
2493 New_N
:= Build_Local_Package
;
2495 -- If there are errors in the parameter list, Analyze_Associations
2496 -- raises Instantiation_Error. Patch the declaration to prevent
2497 -- further exception propagation.
2500 when Instantiation_Error
=>
2502 Enter_Name
(Formal
);
2503 Set_Ekind
(Formal
, E_Variable
);
2504 Set_Etype
(Formal
, Any_Type
);
2505 Restore_Hidden_Primitives
(Vis_Prims_List
);
2507 if Parent_Installed
then
2515 Set_Defining_Unit_Name
(Specification
(New_N
), Formal
);
2516 Set_Generic_Parent
(Specification
(N
), Gen_Unit
);
2517 Set_Instance_Env
(Gen_Unit
, Formal
);
2518 Set_Is_Generic_Instance
(Formal
);
2520 Enter_Name
(Formal
);
2521 Set_Ekind
(Formal
, E_Package
);
2522 Set_Etype
(Formal
, Standard_Void_Type
);
2523 Set_Inner_Instances
(Formal
, New_Elmt_List
);
2524 Push_Scope
(Formal
);
2526 if Is_Child_Unit
(Gen_Unit
) and then Parent_Installed
then
2528 -- Similarly, we have to make the name of the formal visible in the
2529 -- parent instance, to resolve properly fully qualified names that
2530 -- may appear in the generic unit. The parent instance has been
2531 -- placed on the scope stack ahead of the current scope.
2533 Parent_Instance
:= Scope_Stack
.Table
(Scope_Stack
.Last
- 1).Entity
;
2536 Make_Defining_Identifier
(Loc
, Chars
(Gen_Unit
));
2537 Set_Ekind
(Renaming_In_Par
, E_Package
);
2538 Set_Etype
(Renaming_In_Par
, Standard_Void_Type
);
2539 Set_Scope
(Renaming_In_Par
, Parent_Instance
);
2540 Set_Parent
(Renaming_In_Par
, Parent
(Formal
));
2541 Set_Renamed_Object
(Renaming_In_Par
, Formal
);
2542 Append_Entity
(Renaming_In_Par
, Parent_Instance
);
2545 Analyze
(Specification
(N
));
2547 -- The formals for which associations are provided are not visible
2548 -- outside of the formal package. The others are still declared by a
2549 -- formal parameter declaration.
2551 -- If there are no associations, the only local entity to hide is the
2552 -- generated package renaming itself.
2558 E
:= First_Entity
(Formal
);
2559 while Present
(E
) loop
2560 if Associations
and then not Is_Generic_Formal
(E
) then
2564 if Ekind
(E
) = E_Package
and then Renamed_Entity
(E
) = Formal
then
2573 End_Package_Scope
(Formal
);
2574 Restore_Hidden_Primitives
(Vis_Prims_List
);
2576 if Parent_Installed
then
2582 -- Inside the generic unit, the formal package is a regular package, but
2583 -- no body is needed for it. Note that after instantiation, the defining
2584 -- unit name we need is in the new tree and not in the original (see
2585 -- Package_Instantiation). A generic formal package is an instance, and
2586 -- can be used as an actual for an inner instance.
2588 Set_Has_Completion
(Formal
, True);
2590 -- Add semantic information to the original defining identifier.
2593 Set_Ekind
(Pack_Id
, E_Package
);
2594 Set_Etype
(Pack_Id
, Standard_Void_Type
);
2595 Set_Scope
(Pack_Id
, Scope
(Formal
));
2596 Set_Has_Completion
(Pack_Id
, True);
2599 if Has_Aspects
(N
) then
2600 Analyze_Aspect_Specifications
(N
, Pack_Id
);
2602 end Analyze_Formal_Package_Declaration
;
2604 ---------------------------------
2605 -- Analyze_Formal_Private_Type --
2606 ---------------------------------
2608 procedure Analyze_Formal_Private_Type
2614 New_Private_Type
(N
, T
, Def
);
2616 -- Set the size to an arbitrary but legal value
2618 Set_Size_Info
(T
, Standard_Integer
);
2619 Set_RM_Size
(T
, RM_Size
(Standard_Integer
));
2620 end Analyze_Formal_Private_Type
;
2622 ------------------------------------
2623 -- Analyze_Formal_Incomplete_Type --
2624 ------------------------------------
2626 procedure Analyze_Formal_Incomplete_Type
2632 Set_Ekind
(T
, E_Incomplete_Type
);
2634 Set_Private_Dependents
(T
, New_Elmt_List
);
2636 if Tagged_Present
(Def
) then
2637 Set_Is_Tagged_Type
(T
);
2638 Make_Class_Wide_Type
(T
);
2639 Set_Direct_Primitive_Operations
(T
, New_Elmt_List
);
2641 end Analyze_Formal_Incomplete_Type
;
2643 ----------------------------------------
2644 -- Analyze_Formal_Signed_Integer_Type --
2645 ----------------------------------------
2647 procedure Analyze_Formal_Signed_Integer_Type
2651 Base
: constant Entity_Id
:=
2653 (E_Signed_Integer_Type
,
2655 Sloc
(Defining_Identifier
(Parent
(Def
))), 'G');
2660 Set_Ekind
(T
, E_Signed_Integer_Subtype
);
2661 Set_Etype
(T
, Base
);
2662 Set_Size_Info
(T
, Standard_Integer
);
2663 Set_RM_Size
(T
, RM_Size
(Standard_Integer
));
2664 Set_Scalar_Range
(T
, Scalar_Range
(Standard_Integer
));
2665 Set_Is_Constrained
(T
);
2667 Set_Is_Generic_Type
(Base
);
2668 Set_Size_Info
(Base
, Standard_Integer
);
2669 Set_RM_Size
(Base
, RM_Size
(Standard_Integer
));
2670 Set_Etype
(Base
, Base
);
2671 Set_Scalar_Range
(Base
, Scalar_Range
(Standard_Integer
));
2672 Set_Parent
(Base
, Parent
(Def
));
2673 end Analyze_Formal_Signed_Integer_Type
;
2675 -------------------------------------------
2676 -- Analyze_Formal_Subprogram_Declaration --
2677 -------------------------------------------
2679 procedure Analyze_Formal_Subprogram_Declaration
(N
: Node_Id
) is
2680 Spec
: constant Node_Id
:= Specification
(N
);
2681 Def
: constant Node_Id
:= Default_Name
(N
);
2682 Nam
: constant Entity_Id
:= Defining_Unit_Name
(Spec
);
2690 if Nkind
(Nam
) = N_Defining_Program_Unit_Name
then
2691 Error_Msg_N
("name of formal subprogram must be a direct name", Nam
);
2695 Analyze_Subprogram_Declaration
(N
);
2696 Set_Is_Formal_Subprogram
(Nam
);
2697 Set_Has_Completion
(Nam
);
2699 if Nkind
(N
) = N_Formal_Abstract_Subprogram_Declaration
then
2700 Set_Is_Abstract_Subprogram
(Nam
);
2701 Set_Is_Dispatching_Operation
(Nam
);
2704 Ctrl_Type
: constant Entity_Id
:= Find_Dispatching_Type
(Nam
);
2706 if No
(Ctrl_Type
) then
2708 ("abstract formal subprogram must have a controlling type",
2711 elsif Ada_Version
>= Ada_2012
2712 and then Is_Incomplete_Type
(Ctrl_Type
)
2715 ("controlling type of abstract formal subprogram cannot "
2716 & "be incomplete type", N
, Ctrl_Type
);
2719 Check_Controlling_Formals
(Ctrl_Type
, Nam
);
2724 -- Default name is resolved at the point of instantiation
2726 if Box_Present
(N
) then
2729 -- Else default is bound at the point of generic declaration
2731 elsif Present
(Def
) then
2732 if Nkind
(Def
) = N_Operator_Symbol
then
2733 Find_Direct_Name
(Def
);
2735 elsif Nkind
(Def
) /= N_Attribute_Reference
then
2739 -- For an attribute reference, analyze the prefix and verify
2740 -- that it has the proper profile for the subprogram.
2742 Analyze
(Prefix
(Def
));
2743 Valid_Default_Attribute
(Nam
, Def
);
2747 -- Default name may be overloaded, in which case the interpretation
2748 -- with the correct profile must be selected, as for a renaming.
2749 -- If the definition is an indexed component, it must denote a
2750 -- member of an entry family. If it is a selected component, it
2751 -- can be a protected operation.
2753 if Etype
(Def
) = Any_Type
then
2756 elsif Nkind
(Def
) = N_Selected_Component
then
2757 if not Is_Overloadable
(Entity
(Selector_Name
(Def
))) then
2758 Error_Msg_N
("expect valid subprogram name as default", Def
);
2761 elsif Nkind
(Def
) = N_Indexed_Component
then
2762 if Is_Entity_Name
(Prefix
(Def
)) then
2763 if Ekind
(Entity
(Prefix
(Def
))) /= E_Entry_Family
then
2764 Error_Msg_N
("expect valid subprogram name as default", Def
);
2767 elsif Nkind
(Prefix
(Def
)) = N_Selected_Component
then
2768 if Ekind
(Entity
(Selector_Name
(Prefix
(Def
)))) /=
2771 Error_Msg_N
("expect valid subprogram name as default", Def
);
2775 Error_Msg_N
("expect valid subprogram name as default", Def
);
2779 elsif Nkind
(Def
) = N_Character_Literal
then
2781 -- Needs some type checks: subprogram should be parameterless???
2783 Resolve
(Def
, (Etype
(Nam
)));
2785 elsif not Is_Entity_Name
(Def
)
2786 or else not Is_Overloadable
(Entity
(Def
))
2788 Error_Msg_N
("expect valid subprogram name as default", Def
);
2791 elsif not Is_Overloaded
(Def
) then
2792 Subp
:= Entity
(Def
);
2795 Error_Msg_N
("premature usage of formal subprogram", Def
);
2797 elsif not Entity_Matches_Spec
(Subp
, Nam
) then
2798 Error_Msg_N
("no visible entity matches specification", Def
);
2801 -- More than one interpretation, so disambiguate as for a renaming
2806 I1
: Interp_Index
:= 0;
2812 Get_First_Interp
(Def
, I
, It
);
2813 while Present
(It
.Nam
) loop
2814 if Entity_Matches_Spec
(It
.Nam
, Nam
) then
2815 if Subp
/= Any_Id
then
2816 It1
:= Disambiguate
(Def
, I1
, I
, Etype
(Subp
));
2818 if It1
= No_Interp
then
2819 Error_Msg_N
("ambiguous default subprogram", Def
);
2832 Get_Next_Interp
(I
, It
);
2836 if Subp
/= Any_Id
then
2838 -- Subprogram found, generate reference to it
2840 Set_Entity
(Def
, Subp
);
2841 Generate_Reference
(Subp
, Def
);
2844 Error_Msg_N
("premature usage of formal subprogram", Def
);
2846 elsif Ekind
(Subp
) /= E_Operator
then
2847 Check_Mode_Conformant
(Subp
, Nam
);
2851 Error_Msg_N
("no visible subprogram matches specification", N
);
2857 if Has_Aspects
(N
) then
2858 Analyze_Aspect_Specifications
(N
, Nam
);
2861 end Analyze_Formal_Subprogram_Declaration
;
2863 -------------------------------------
2864 -- Analyze_Formal_Type_Declaration --
2865 -------------------------------------
2867 procedure Analyze_Formal_Type_Declaration
(N
: Node_Id
) is
2868 Def
: constant Node_Id
:= Formal_Type_Definition
(N
);
2872 T
:= Defining_Identifier
(N
);
2874 if Present
(Discriminant_Specifications
(N
))
2875 and then Nkind
(Def
) /= N_Formal_Private_Type_Definition
2878 ("discriminants not allowed for this formal type", T
);
2881 -- Enter the new name, and branch to specific routine
2884 when N_Formal_Private_Type_Definition
=>
2885 Analyze_Formal_Private_Type
(N
, T
, Def
);
2887 when N_Formal_Derived_Type_Definition
=>
2888 Analyze_Formal_Derived_Type
(N
, T
, Def
);
2890 when N_Formal_Incomplete_Type_Definition
=>
2891 Analyze_Formal_Incomplete_Type
(T
, Def
);
2893 when N_Formal_Discrete_Type_Definition
=>
2894 Analyze_Formal_Discrete_Type
(T
, Def
);
2896 when N_Formal_Signed_Integer_Type_Definition
=>
2897 Analyze_Formal_Signed_Integer_Type
(T
, Def
);
2899 when N_Formal_Modular_Type_Definition
=>
2900 Analyze_Formal_Modular_Type
(T
, Def
);
2902 when N_Formal_Floating_Point_Definition
=>
2903 Analyze_Formal_Floating_Type
(T
, Def
);
2905 when N_Formal_Ordinary_Fixed_Point_Definition
=>
2906 Analyze_Formal_Ordinary_Fixed_Point_Type
(T
, Def
);
2908 when N_Formal_Decimal_Fixed_Point_Definition
=>
2909 Analyze_Formal_Decimal_Fixed_Point_Type
(T
, Def
);
2911 when N_Array_Type_Definition
=>
2912 Analyze_Formal_Array_Type
(T
, Def
);
2914 when N_Access_To_Object_Definition |
2915 N_Access_Function_Definition |
2916 N_Access_Procedure_Definition
=>
2917 Analyze_Generic_Access_Type
(T
, Def
);
2919 -- Ada 2005: a interface declaration is encoded as an abstract
2920 -- record declaration or a abstract type derivation.
2922 when N_Record_Definition
=>
2923 Analyze_Formal_Interface_Type
(N
, T
, Def
);
2925 when N_Derived_Type_Definition
=>
2926 Analyze_Formal_Derived_Interface_Type
(N
, T
, Def
);
2932 raise Program_Error
;
2936 Set_Is_Generic_Type
(T
);
2938 if Has_Aspects
(N
) then
2939 Analyze_Aspect_Specifications
(N
, T
);
2941 end Analyze_Formal_Type_Declaration
;
2943 ------------------------------------
2944 -- Analyze_Function_Instantiation --
2945 ------------------------------------
2947 procedure Analyze_Function_Instantiation
(N
: Node_Id
) is
2949 Analyze_Subprogram_Instantiation
(N
, E_Function
);
2950 end Analyze_Function_Instantiation
;
2952 ---------------------------------
2953 -- Analyze_Generic_Access_Type --
2954 ---------------------------------
2956 procedure Analyze_Generic_Access_Type
(T
: Entity_Id
; Def
: Node_Id
) is
2960 if Nkind
(Def
) = N_Access_To_Object_Definition
then
2961 Access_Type_Declaration
(T
, Def
);
2963 if Is_Incomplete_Or_Private_Type
(Designated_Type
(T
))
2964 and then No
(Full_View
(Designated_Type
(T
)))
2965 and then not Is_Generic_Type
(Designated_Type
(T
))
2967 Error_Msg_N
("premature usage of incomplete type", Def
);
2969 elsif not Is_Entity_Name
(Subtype_Indication
(Def
)) then
2971 ("only a subtype mark is allowed in a formal", Def
);
2975 Access_Subprogram_Declaration
(T
, Def
);
2977 end Analyze_Generic_Access_Type
;
2979 ---------------------------------
2980 -- Analyze_Generic_Formal_Part --
2981 ---------------------------------
2983 procedure Analyze_Generic_Formal_Part
(N
: Node_Id
) is
2984 Gen_Parm_Decl
: Node_Id
;
2987 -- The generic formals are processed in the scope of the generic unit,
2988 -- where they are immediately visible. The scope is installed by the
2991 Gen_Parm_Decl
:= First
(Generic_Formal_Declarations
(N
));
2992 while Present
(Gen_Parm_Decl
) loop
2993 Analyze
(Gen_Parm_Decl
);
2994 Next
(Gen_Parm_Decl
);
2997 Generate_Reference_To_Generic_Formals
(Current_Scope
);
2998 end Analyze_Generic_Formal_Part
;
3000 ------------------------------------------
3001 -- Analyze_Generic_Package_Declaration --
3002 ------------------------------------------
3004 procedure Analyze_Generic_Package_Declaration
(N
: Node_Id
) is
3005 Loc
: constant Source_Ptr
:= Sloc
(N
);
3008 Save_Parent
: Node_Id
;
3010 Decls
: constant List_Id
:=
3011 Visible_Declarations
(Specification
(N
));
3015 -- The generic package declaration may be subject to pragma Ghost with
3016 -- policy Ignore. Set the mode now to ensure that any nodes generated
3017 -- during analysis and expansion are properly flagged as ignored Ghost.
3020 Check_SPARK_05_Restriction
("generic is not allowed", N
);
3022 -- We introduce a renaming of the enclosing package, to have a usable
3023 -- entity as the prefix of an expanded name for a local entity of the
3024 -- form Par.P.Q, where P is the generic package. This is because a local
3025 -- entity named P may hide it, so that the usual visibility rules in
3026 -- the instance will not resolve properly.
3029 Make_Package_Renaming_Declaration
(Loc
,
3030 Defining_Unit_Name
=>
3031 Make_Defining_Identifier
(Loc
,
3032 Chars
=> New_External_Name
(Chars
(Defining_Entity
(N
)), "GH")),
3034 Make_Identifier
(Loc
, Chars
(Defining_Entity
(N
))));
3036 if Present
(Decls
) then
3037 Decl
:= First
(Decls
);
3038 while Present
(Decl
) and then Nkind
(Decl
) = N_Pragma
loop
3042 if Present
(Decl
) then
3043 Insert_Before
(Decl
, Renaming
);
3045 Append
(Renaming
, Visible_Declarations
(Specification
(N
)));
3049 Set_Visible_Declarations
(Specification
(N
), New_List
(Renaming
));
3052 -- Create copy of generic unit, and save for instantiation. If the unit
3053 -- is a child unit, do not copy the specifications for the parent, which
3054 -- are not part of the generic tree.
3056 Save_Parent
:= Parent_Spec
(N
);
3057 Set_Parent_Spec
(N
, Empty
);
3059 New_N
:= Copy_Generic_Node
(N
, Empty
, Instantiating
=> False);
3060 Set_Parent_Spec
(New_N
, Save_Parent
);
3063 -- Once the contents of the generic copy and the template are swapped,
3064 -- do the same for their respective aspect specifications.
3066 Exchange_Aspects
(N
, New_N
);
3067 Id
:= Defining_Entity
(N
);
3068 Generate_Definition
(Id
);
3070 -- Expansion is not applied to generic units
3075 Set_Ekind
(Id
, E_Generic_Package
);
3076 Set_Etype
(Id
, Standard_Void_Type
);
3078 -- A generic package declared within a Ghost region is rendered Ghost
3079 -- (SPARK RM 6.9(2)).
3081 if Ghost_Mode
> None
then
3082 Set_Is_Ghost_Entity
(Id
);
3085 -- Analyze aspects now, so that generated pragmas appear in the
3086 -- declarations before building and analyzing the generic copy.
3088 if Has_Aspects
(N
) then
3089 Analyze_Aspect_Specifications
(N
, Id
);
3093 Enter_Generic_Scope
(Id
);
3094 Set_Inner_Instances
(Id
, New_Elmt_List
);
3096 Set_Categorization_From_Pragmas
(N
);
3097 Set_Is_Pure
(Id
, Is_Pure
(Current_Scope
));
3099 -- Link the declaration of the generic homonym in the generic copy to
3100 -- the package it renames, so that it is always resolved properly.
3102 Set_Generic_Homonym
(Id
, Defining_Unit_Name
(Renaming
));
3103 Set_Entity
(Associated_Node
(Name
(Renaming
)), Id
);
3105 -- For a library unit, we have reconstructed the entity for the unit,
3106 -- and must reset it in the library tables.
3108 if Nkind
(Parent
(N
)) = N_Compilation_Unit
then
3109 Set_Cunit_Entity
(Current_Sem_Unit
, Id
);
3112 Analyze_Generic_Formal_Part
(N
);
3114 -- After processing the generic formals, analysis proceeds as for a
3115 -- non-generic package.
3117 Analyze
(Specification
(N
));
3119 Validate_Categorization_Dependency
(N
, Id
);
3123 End_Package_Scope
(Id
);
3124 Exit_Generic_Scope
(Id
);
3126 if Nkind
(Parent
(N
)) /= N_Compilation_Unit
then
3127 Move_Freeze_Nodes
(Id
, N
, Visible_Declarations
(Specification
(N
)));
3128 Move_Freeze_Nodes
(Id
, N
, Private_Declarations
(Specification
(N
)));
3129 Move_Freeze_Nodes
(Id
, N
, Generic_Formal_Declarations
(N
));
3132 Set_Body_Required
(Parent
(N
), Unit_Requires_Body
(Id
));
3133 Validate_RT_RAT_Component
(N
);
3135 -- If this is a spec without a body, check that generic parameters
3138 if not Body_Required
(Parent
(N
)) then
3139 Check_References
(Id
);
3143 -- If there is a specified storage pool in the context, create an
3144 -- aspect on the package declaration, so that it is used in any
3145 -- instance that does not override it.
3147 if Present
(Default_Pool
) then
3153 Make_Aspect_Specification
(Loc
,
3154 Identifier
=> Make_Identifier
(Loc
, Name_Default_Storage_Pool
),
3155 Expression
=> New_Copy
(Default_Pool
));
3157 if No
(Aspect_Specifications
(Specification
(N
))) then
3158 Set_Aspect_Specifications
(Specification
(N
), New_List
(ASN
));
3160 Append
(ASN
, Aspect_Specifications
(Specification
(N
)));
3164 end Analyze_Generic_Package_Declaration
;
3166 --------------------------------------------
3167 -- Analyze_Generic_Subprogram_Declaration --
3168 --------------------------------------------
3170 procedure Analyze_Generic_Subprogram_Declaration
(N
: Node_Id
) is
3174 Result_Type
: Entity_Id
;
3175 Save_Parent
: Node_Id
;
3180 -- The generic subprogram declaration may be subject to pragma Ghost
3181 -- with policy Ignore. Set the mode now to ensure that any nodes
3182 -- generated during analysis and expansion are properly flagged as
3186 Check_SPARK_05_Restriction
("generic is not allowed", N
);
3188 -- Create copy of generic unit, and save for instantiation. If the unit
3189 -- is a child unit, do not copy the specifications for the parent, which
3190 -- are not part of the generic tree.
3192 Save_Parent
:= Parent_Spec
(N
);
3193 Set_Parent_Spec
(N
, Empty
);
3195 New_N
:= Copy_Generic_Node
(N
, Empty
, Instantiating
=> False);
3196 Set_Parent_Spec
(New_N
, Save_Parent
);
3199 -- Once the contents of the generic copy and the template are swapped,
3200 -- do the same for their respective aspect specifications.
3202 Exchange_Aspects
(N
, New_N
);
3204 Spec
:= Specification
(N
);
3205 Id
:= Defining_Entity
(Spec
);
3206 Generate_Definition
(Id
);
3208 if Nkind
(Id
) = N_Defining_Operator_Symbol
then
3210 ("operator symbol not allowed for generic subprogram", Id
);
3216 Set_Scope_Depth_Value
(Id
, Scope_Depth
(Current_Scope
) + 1);
3218 -- Analyze the aspects of the generic copy to ensure that all generated
3219 -- pragmas (if any) perform their semantic effects.
3221 if Has_Aspects
(N
) then
3222 Analyze_Aspect_Specifications
(N
, Id
);
3226 Enter_Generic_Scope
(Id
);
3227 Set_Inner_Instances
(Id
, New_Elmt_List
);
3228 Set_Is_Pure
(Id
, Is_Pure
(Current_Scope
));
3230 Analyze_Generic_Formal_Part
(N
);
3232 Formals
:= Parameter_Specifications
(Spec
);
3234 if Present
(Formals
) then
3235 Process_Formals
(Formals
, Spec
);
3238 if Nkind
(Spec
) = N_Function_Specification
then
3239 Set_Ekind
(Id
, E_Generic_Function
);
3241 if Nkind
(Result_Definition
(Spec
)) = N_Access_Definition
then
3242 Result_Type
:= Access_Definition
(Spec
, Result_Definition
(Spec
));
3243 Set_Etype
(Id
, Result_Type
);
3245 -- Check restriction imposed by AI05-073: a generic function
3246 -- cannot return an abstract type or an access to such.
3248 -- This is a binding interpretation should it apply to earlier
3249 -- versions of Ada as well as Ada 2012???
3251 if Is_Abstract_Type
(Designated_Type
(Result_Type
))
3252 and then Ada_Version
>= Ada_2012
3255 ("generic function cannot have an access result "
3256 & "that designates an abstract type", Spec
);
3260 Find_Type
(Result_Definition
(Spec
));
3261 Typ
:= Entity
(Result_Definition
(Spec
));
3263 if Is_Abstract_Type
(Typ
)
3264 and then Ada_Version
>= Ada_2012
3267 ("generic function cannot have abstract result type", Spec
);
3270 -- If a null exclusion is imposed on the result type, then create
3271 -- a null-excluding itype (an access subtype) and use it as the
3272 -- function's Etype.
3274 if Is_Access_Type
(Typ
)
3275 and then Null_Exclusion_Present
(Spec
)
3278 Create_Null_Excluding_Itype
3280 Related_Nod
=> Spec
,
3281 Scope_Id
=> Defining_Unit_Name
(Spec
)));
3283 Set_Etype
(Id
, Typ
);
3288 Set_Ekind
(Id
, E_Generic_Procedure
);
3289 Set_Etype
(Id
, Standard_Void_Type
);
3292 -- A generic subprogram declared within a Ghost region is rendered Ghost
3293 -- (SPARK RM 6.9(2)).
3295 if Ghost_Mode
> None
then
3296 Set_Is_Ghost_Entity
(Id
);
3299 -- For a library unit, we have reconstructed the entity for the unit,
3300 -- and must reset it in the library tables. We also make sure that
3301 -- Body_Required is set properly in the original compilation unit node.
3303 if Nkind
(Parent
(N
)) = N_Compilation_Unit
then
3304 Set_Cunit_Entity
(Current_Sem_Unit
, Id
);
3305 Set_Body_Required
(Parent
(N
), Unit_Requires_Body
(Id
));
3308 Set_Categorization_From_Pragmas
(N
);
3309 Validate_Categorization_Dependency
(N
, Id
);
3311 -- Capture all global references that occur within the profile of the
3312 -- generic subprogram. Aspects are not part of this processing because
3313 -- they must be delayed. If processed now, Save_Global_References will
3314 -- destroy the Associated_Node links and prevent the capture of global
3315 -- references when the contract of the generic subprogram is analyzed.
3317 Save_Global_References
(Original_Node
(N
));
3321 Exit_Generic_Scope
(Id
);
3322 Generate_Reference_To_Formals
(Id
);
3324 List_Inherited_Pre_Post_Aspects
(Id
);
3325 end Analyze_Generic_Subprogram_Declaration
;
3327 -----------------------------------
3328 -- Analyze_Package_Instantiation --
3329 -----------------------------------
3331 procedure Analyze_Package_Instantiation
(N
: Node_Id
) is
3332 Loc
: constant Source_Ptr
:= Sloc
(N
);
3333 Gen_Id
: constant Node_Id
:= Name
(N
);
3336 Act_Decl_Name
: Node_Id
;
3337 Act_Decl_Id
: Entity_Id
;
3343 Gen_Unit
: Entity_Id
;
3345 Is_Actual_Pack
: constant Boolean :=
3346 Is_Internal
(Defining_Entity
(N
));
3348 Env_Installed
: Boolean := False;
3349 Parent_Installed
: Boolean := False;
3350 Renaming_List
: List_Id
;
3351 Unit_Renaming
: Node_Id
;
3352 Needs_Body
: Boolean;
3353 Inline_Now
: Boolean := False;
3354 Has_Inline_Always
: Boolean := False;
3356 Save_IPSM
: constant Boolean := Ignore_Pragma_SPARK_Mode
;
3357 -- Save flag Ignore_Pragma_SPARK_Mode for restore on exit
3359 Save_SM
: constant SPARK_Mode_Type
:= SPARK_Mode
;
3360 Save_SMP
: constant Node_Id
:= SPARK_Mode_Pragma
;
3361 -- Save the SPARK_Mode-related data for restore on exit
3363 Save_Style_Check
: constant Boolean := Style_Check
;
3364 -- Save style check mode for restore on exit
3366 procedure Delay_Descriptors
(E
: Entity_Id
);
3367 -- Delay generation of subprogram descriptors for given entity
3369 function Might_Inline_Subp
return Boolean;
3370 -- If inlining is active and the generic contains inlined subprograms,
3371 -- we instantiate the body. This may cause superfluous instantiations,
3372 -- but it is simpler than detecting the need for the body at the point
3373 -- of inlining, when the context of the instance is not available.
3375 -----------------------
3376 -- Delay_Descriptors --
3377 -----------------------
3379 procedure Delay_Descriptors
(E
: Entity_Id
) is
3381 if not Delay_Subprogram_Descriptors
(E
) then
3382 Set_Delay_Subprogram_Descriptors
(E
);
3383 Pending_Descriptor
.Append
(E
);
3385 end Delay_Descriptors
;
3387 -----------------------
3388 -- Might_Inline_Subp --
3389 -----------------------
3391 function Might_Inline_Subp
return Boolean is
3395 if not Inline_Processing_Required
then
3399 E
:= First_Entity
(Gen_Unit
);
3400 while Present
(E
) loop
3401 if Is_Subprogram
(E
) and then Is_Inlined
(E
) then
3402 -- Remember if there are any subprograms with Inline_Always
3404 if Has_Pragma_Inline_Always
(E
) then
3405 Has_Inline_Always
:= True;
3416 end Might_Inline_Subp
;
3418 -- Local declarations
3420 Vis_Prims_List
: Elist_Id
:= No_Elist
;
3421 -- List of primitives made temporarily visible in the instantiation
3422 -- to match the visibility of the formal type
3424 -- Start of processing for Analyze_Package_Instantiation
3427 Check_SPARK_05_Restriction
("generic is not allowed", N
);
3429 -- Very first thing: check for Text_IO sp[ecial unit in case we are
3430 -- instantiating one of the children of [[Wide_]Wide_]Text_IO.
3432 Check_Text_IO_Special_Unit
(Name
(N
));
3434 -- Make node global for error reporting
3436 Instantiation_Node
:= N
;
3438 -- Turn off style checking in instances. If the check is enabled on the
3439 -- generic unit, a warning in an instance would just be noise. If not
3440 -- enabled on the generic, then a warning in an instance is just wrong.
3442 Style_Check
:= False;
3444 -- Case of instantiation of a generic package
3446 if Nkind
(N
) = N_Package_Instantiation
then
3447 Act_Decl_Id
:= New_Copy
(Defining_Entity
(N
));
3448 Set_Comes_From_Source
(Act_Decl_Id
, True);
3450 if Nkind
(Defining_Unit_Name
(N
)) = N_Defining_Program_Unit_Name
then
3452 Make_Defining_Program_Unit_Name
(Loc
,
3454 New_Copy_Tree
(Name
(Defining_Unit_Name
(N
))),
3455 Defining_Identifier
=> Act_Decl_Id
);
3457 Act_Decl_Name
:= Act_Decl_Id
;
3460 -- Case of instantiation of a formal package
3463 Act_Decl_Id
:= Defining_Identifier
(N
);
3464 Act_Decl_Name
:= Act_Decl_Id
;
3467 Generate_Definition
(Act_Decl_Id
);
3468 Preanalyze_Actuals
(N
);
3471 Env_Installed
:= True;
3473 -- Reset renaming map for formal types. The mapping is established
3474 -- when analyzing the generic associations, but some mappings are
3475 -- inherited from formal packages of parent units, and these are
3476 -- constructed when the parents are installed.
3478 Generic_Renamings
.Set_Last
(0);
3479 Generic_Renamings_HTable
.Reset
;
3481 Check_Generic_Child_Unit
(Gen_Id
, Parent_Installed
);
3482 Gen_Unit
:= Entity
(Gen_Id
);
3484 -- Verify that it is the name of a generic package
3486 -- A visibility glitch: if the instance is a child unit and the generic
3487 -- is the generic unit of a parent instance (i.e. both the parent and
3488 -- the child units are instances of the same package) the name now
3489 -- denotes the renaming within the parent, not the intended generic
3490 -- unit. See if there is a homonym that is the desired generic. The
3491 -- renaming declaration must be visible inside the instance of the
3492 -- child, but not when analyzing the name in the instantiation itself.
3494 if Ekind
(Gen_Unit
) = E_Package
3495 and then Present
(Renamed_Entity
(Gen_Unit
))
3496 and then In_Open_Scopes
(Renamed_Entity
(Gen_Unit
))
3497 and then Is_Generic_Instance
(Renamed_Entity
(Gen_Unit
))
3498 and then Present
(Homonym
(Gen_Unit
))
3500 Gen_Unit
:= Homonym
(Gen_Unit
);
3503 if Etype
(Gen_Unit
) = Any_Type
then
3507 elsif Ekind
(Gen_Unit
) /= E_Generic_Package
then
3509 -- Ada 2005 (AI-50217): Cannot use instance in limited with_clause
3511 if From_Limited_With
(Gen_Unit
) then
3513 ("cannot instantiate a limited withed package", Gen_Id
);
3516 ("& is not the name of a generic package", Gen_Id
, Gen_Unit
);
3523 if In_Extended_Main_Source_Unit
(N
) then
3524 Set_Is_Instantiated
(Gen_Unit
);
3525 Generate_Reference
(Gen_Unit
, N
);
3527 if Present
(Renamed_Object
(Gen_Unit
)) then
3528 Set_Is_Instantiated
(Renamed_Object
(Gen_Unit
));
3529 Generate_Reference
(Renamed_Object
(Gen_Unit
), N
);
3533 if Nkind
(Gen_Id
) = N_Identifier
3534 and then Chars
(Gen_Unit
) = Chars
(Defining_Entity
(N
))
3537 ("& is hidden within declaration of instance", Gen_Id
, Gen_Unit
);
3539 elsif Nkind
(Gen_Id
) = N_Expanded_Name
3540 and then Is_Child_Unit
(Gen_Unit
)
3541 and then Nkind
(Prefix
(Gen_Id
)) = N_Identifier
3542 and then Chars
(Act_Decl_Id
) = Chars
(Prefix
(Gen_Id
))
3545 ("& is hidden within declaration of instance ", Prefix
(Gen_Id
));
3548 Set_Entity
(Gen_Id
, Gen_Unit
);
3550 -- If generic is a renaming, get original generic unit
3552 if Present
(Renamed_Object
(Gen_Unit
))
3553 and then Ekind
(Renamed_Object
(Gen_Unit
)) = E_Generic_Package
3555 Gen_Unit
:= Renamed_Object
(Gen_Unit
);
3558 -- Verify that there are no circular instantiations
3560 if In_Open_Scopes
(Gen_Unit
) then
3561 Error_Msg_NE
("instantiation of & within itself", N
, Gen_Unit
);
3565 elsif Contains_Instance_Of
(Gen_Unit
, Current_Scope
, Gen_Id
) then
3566 Error_Msg_Node_2
:= Current_Scope
;
3568 ("circular Instantiation: & instantiated in &!", N
, Gen_Unit
);
3569 Circularity_Detected
:= True;
3574 -- If the context of the instance is subject to SPARK_Mode "off",
3575 -- set the global flag which signals Analyze_Pragma to ignore all
3576 -- SPARK_Mode pragmas within the instance.
3578 if SPARK_Mode
= Off
then
3579 Ignore_Pragma_SPARK_Mode
:= True;
3582 Gen_Decl
:= Unit_Declaration_Node
(Gen_Unit
);
3583 Gen_Spec
:= Specification
(Gen_Decl
);
3585 -- Initialize renamings map, for error checking, and the list that
3586 -- holds private entities whose views have changed between generic
3587 -- definition and instantiation. If this is the instance created to
3588 -- validate an actual package, the instantiation environment is that
3589 -- of the enclosing instance.
3591 Create_Instantiation_Source
(N
, Gen_Unit
, False, S_Adjustment
);
3593 -- Copy original generic tree, to produce text for instantiation
3597 (Original_Node
(Gen_Decl
), Empty
, Instantiating
=> True);
3599 Act_Spec
:= Specification
(Act_Tree
);
3601 -- If this is the instance created to validate an actual package,
3602 -- only the formals matter, do not examine the package spec itself.
3604 if Is_Actual_Pack
then
3605 Set_Visible_Declarations
(Act_Spec
, New_List
);
3606 Set_Private_Declarations
(Act_Spec
, New_List
);
3610 Analyze_Associations
3612 Formals
=> Generic_Formal_Declarations
(Act_Tree
),
3613 F_Copy
=> Generic_Formal_Declarations
(Gen_Decl
));
3615 Vis_Prims_List
:= Check_Hidden_Primitives
(Renaming_List
);
3617 Set_Instance_Env
(Gen_Unit
, Act_Decl_Id
);
3618 Set_Defining_Unit_Name
(Act_Spec
, Act_Decl_Name
);
3619 Set_Is_Generic_Instance
(Act_Decl_Id
);
3620 Set_Generic_Parent
(Act_Spec
, Gen_Unit
);
3622 -- References to the generic in its own declaration or its body are
3623 -- references to the instance. Add a renaming declaration for the
3624 -- generic unit itself. This declaration, as well as the renaming
3625 -- declarations for the generic formals, must remain private to the
3626 -- unit: the formals, because this is the language semantics, and
3627 -- the unit because its use is an artifact of the implementation.
3630 Make_Package_Renaming_Declaration
(Loc
,
3631 Defining_Unit_Name
=>
3632 Make_Defining_Identifier
(Loc
, Chars
(Gen_Unit
)),
3633 Name
=> New_Occurrence_Of
(Act_Decl_Id
, Loc
));
3635 Append
(Unit_Renaming
, Renaming_List
);
3637 -- The renaming declarations are the first local declarations of the
3640 if Is_Non_Empty_List
(Visible_Declarations
(Act_Spec
)) then
3642 (First
(Visible_Declarations
(Act_Spec
)), Renaming_List
);
3644 Set_Visible_Declarations
(Act_Spec
, Renaming_List
);
3647 Act_Decl
:= Make_Package_Declaration
(Loc
, Specification
=> Act_Spec
);
3649 -- Propagate the aspect specifications from the package declaration
3650 -- template to the instantiated version of the package declaration.
3652 if Has_Aspects
(Act_Tree
) then
3653 Set_Aspect_Specifications
(Act_Decl
,
3654 New_Copy_List_Tree
(Aspect_Specifications
(Act_Tree
)));
3657 -- The generic may have a generated Default_Storage_Pool aspect,
3658 -- set at the point of generic declaration. If the instance has
3659 -- that aspect, it overrides the one inherited from the generic.
3661 if Has_Aspects
(Gen_Spec
) then
3662 if No
(Aspect_Specifications
(N
)) then
3663 Set_Aspect_Specifications
(N
,
3665 (Aspect_Specifications
(Gen_Spec
))));
3669 ASN1
, ASN2
: Node_Id
;
3672 ASN1
:= First
(Aspect_Specifications
(N
));
3673 while Present
(ASN1
) loop
3674 if Chars
(Identifier
(ASN1
)) = Name_Default_Storage_Pool
3676 -- If generic carries a default storage pool, remove
3677 -- it in favor of the instance one.
3679 ASN2
:= First
(Aspect_Specifications
(Gen_Spec
));
3680 while Present
(ASN2
) loop
3681 if Chars
(Identifier
(ASN2
)) =
3682 Name_Default_Storage_Pool
3695 Prepend_List_To
(Aspect_Specifications
(N
),
3697 (Aspect_Specifications
(Gen_Spec
))));
3702 -- Save the instantiation node, for subsequent instantiation of the
3703 -- body, if there is one and we are generating code for the current
3704 -- unit. Mark unit as having a body (avoids premature error message).
3706 -- We instantiate the body if we are generating code, if we are
3707 -- generating cross-reference information, or if we are building
3708 -- trees for ASIS use or GNATprove use.
3711 Enclosing_Body_Present
: Boolean := False;
3712 -- If the generic unit is not a compilation unit, then a body may
3713 -- be present in its parent even if none is required. We create a
3714 -- tentative pending instantiation for the body, which will be
3715 -- discarded if none is actually present.
3720 if Scope
(Gen_Unit
) /= Standard_Standard
3721 and then not Is_Child_Unit
(Gen_Unit
)
3723 Scop
:= Scope
(Gen_Unit
);
3724 while Present
(Scop
) and then Scop
/= Standard_Standard
loop
3725 if Unit_Requires_Body
(Scop
) then
3726 Enclosing_Body_Present
:= True;
3729 elsif In_Open_Scopes
(Scop
)
3730 and then In_Package_Body
(Scop
)
3732 Enclosing_Body_Present
:= True;
3736 exit when Is_Compilation_Unit
(Scop
);
3737 Scop
:= Scope
(Scop
);
3741 -- If front-end inlining is enabled or there are any subprograms
3742 -- marked with Inline_Always, and this is a unit for which code
3743 -- will be generated, we instantiate the body at once.
3745 -- This is done if the instance is not the main unit, and if the
3746 -- generic is not a child unit of another generic, to avoid scope
3747 -- problems and the reinstallation of parent instances.
3750 and then (not Is_Child_Unit
(Gen_Unit
)
3751 or else not Is_Generic_Unit
(Scope
(Gen_Unit
)))
3752 and then Might_Inline_Subp
3753 and then not Is_Actual_Pack
3755 if not Back_End_Inlining
3756 and then (Front_End_Inlining
or else Has_Inline_Always
)
3757 and then (Is_In_Main_Unit
(N
)
3758 or else In_Main_Context
(Current_Scope
))
3759 and then Nkind
(Parent
(N
)) /= N_Compilation_Unit
3763 -- In configurable_run_time mode we force the inlining of
3764 -- predefined subprograms marked Inline_Always, to minimize
3765 -- the use of the run-time library.
3767 elsif Is_Predefined_File_Name
3768 (Unit_File_Name
(Get_Source_Unit
(Gen_Decl
)))
3769 and then Configurable_Run_Time_Mode
3770 and then Nkind
(Parent
(N
)) /= N_Compilation_Unit
3775 -- If the current scope is itself an instance within a child
3776 -- unit, there will be duplications in the scope stack, and the
3777 -- unstacking mechanism in Inline_Instance_Body will fail.
3778 -- This loses some rare cases of optimization, and might be
3779 -- improved some day, if we can find a proper abstraction for
3780 -- "the complete compilation context" that can be saved and
3783 if Is_Generic_Instance
(Current_Scope
) then
3785 Curr_Unit
: constant Entity_Id
:=
3786 Cunit_Entity
(Current_Sem_Unit
);
3788 if Curr_Unit
/= Current_Scope
3789 and then Is_Child_Unit
(Curr_Unit
)
3791 Inline_Now
:= False;
3798 (Unit_Requires_Body
(Gen_Unit
)
3799 or else Enclosing_Body_Present
3800 or else Present
(Corresponding_Body
(Gen_Decl
)))
3801 and then (Is_In_Main_Unit
(N
) or else Might_Inline_Subp
)
3802 and then not Is_Actual_Pack
3803 and then not Inline_Now
3804 and then (Operating_Mode
= Generate_Code
3806 -- Need comment for this check ???
3808 or else (Operating_Mode
= Check_Semantics
3809 and then (ASIS_Mode
or GNATprove_Mode
)));
3811 -- If front-end inlining is enabled or there are any subprograms
3812 -- marked with Inline_Always, do not instantiate body when within
3813 -- a generic context.
3815 if ((Front_End_Inlining
or else Has_Inline_Always
)
3816 and then not Expander_Active
)
3817 or else Is_Generic_Unit
(Cunit_Entity
(Main_Unit
))
3819 Needs_Body
:= False;
3822 -- If the current context is generic, and the package being
3823 -- instantiated is declared within a formal package, there is no
3824 -- body to instantiate until the enclosing generic is instantiated
3825 -- and there is an actual for the formal package. If the formal
3826 -- package has parameters, we build a regular package instance for
3827 -- it, that precedes the original formal package declaration.
3829 if In_Open_Scopes
(Scope
(Scope
(Gen_Unit
))) then
3831 Decl
: constant Node_Id
:=
3833 (Unit_Declaration_Node
(Scope
(Gen_Unit
)));
3835 if Nkind
(Decl
) = N_Formal_Package_Declaration
3836 or else (Nkind
(Decl
) = N_Package_Declaration
3837 and then Is_List_Member
(Decl
)
3838 and then Present
(Next
(Decl
))
3840 Nkind
(Next
(Decl
)) =
3841 N_Formal_Package_Declaration
)
3843 Needs_Body
:= False;
3849 -- For RCI unit calling stubs, we omit the instance body if the
3850 -- instance is the RCI library unit itself.
3852 -- However there is a special case for nested instances: in this case
3853 -- we do generate the instance body, as it might be required, e.g.
3854 -- because it provides stream attributes for some type used in the
3855 -- profile of a remote subprogram. This is consistent with 12.3(12),
3856 -- which indicates that the instance body occurs at the place of the
3857 -- instantiation, and thus is part of the RCI declaration, which is
3858 -- present on all client partitions (this is E.2.3(18)).
3860 -- Note that AI12-0002 may make it illegal at some point to have
3861 -- stream attributes defined in an RCI unit, in which case this
3862 -- special case will become unnecessary. In the meantime, there
3863 -- is known application code in production that depends on this
3864 -- being possible, so we definitely cannot eliminate the body in
3865 -- the case of nested instances for the time being.
3867 -- When we generate a nested instance body, calling stubs for any
3868 -- relevant subprogram will be be inserted immediately after the
3869 -- subprogram declarations, and will take precedence over the
3870 -- subsequent (original) body. (The stub and original body will be
3871 -- complete homographs, but this is permitted in an instance).
3872 -- (Could we do better and remove the original body???)
3874 if Distribution_Stub_Mode
= Generate_Caller_Stub_Body
3875 and then Comes_From_Source
(N
)
3876 and then Nkind
(Parent
(N
)) = N_Compilation_Unit
3878 Needs_Body
:= False;
3883 -- Here is a defence against a ludicrous number of instantiations
3884 -- caused by a circular set of instantiation attempts.
3886 if Pending_Instantiations
.Last
> Maximum_Instantiations
then
3887 Error_Msg_Uint_1
:= UI_From_Int
(Maximum_Instantiations
);
3888 Error_Msg_N
("too many instantiations, exceeds max of^", N
);
3889 Error_Msg_N
("\limit can be changed using -gnateinn switch", N
);
3890 raise Unrecoverable_Error
;
3893 -- Indicate that the enclosing scopes contain an instantiation,
3894 -- and that cleanup actions should be delayed until after the
3895 -- instance body is expanded.
3897 Check_Forward_Instantiation
(Gen_Decl
);
3898 if Nkind
(N
) = N_Package_Instantiation
then
3900 Enclosing_Master
: Entity_Id
;
3903 -- Loop to search enclosing masters
3905 Enclosing_Master
:= Current_Scope
;
3906 Scope_Loop
: while Enclosing_Master
/= Standard_Standard
loop
3907 if Ekind
(Enclosing_Master
) = E_Package
then
3908 if Is_Compilation_Unit
(Enclosing_Master
) then
3909 if In_Package_Body
(Enclosing_Master
) then
3911 (Body_Entity
(Enclosing_Master
));
3920 Enclosing_Master
:= Scope
(Enclosing_Master
);
3923 elsif Is_Generic_Unit
(Enclosing_Master
)
3924 or else Ekind
(Enclosing_Master
) = E_Void
3926 -- Cleanup actions will eventually be performed on the
3927 -- enclosing subprogram or package instance, if any.
3928 -- Enclosing scope is void in the formal part of a
3929 -- generic subprogram.
3934 if Ekind
(Enclosing_Master
) = E_Entry
3936 Ekind
(Scope
(Enclosing_Master
)) = E_Protected_Type
3938 if not Expander_Active
then
3942 Protected_Body_Subprogram
(Enclosing_Master
);
3946 Set_Delay_Cleanups
(Enclosing_Master
);
3948 while Ekind
(Enclosing_Master
) = E_Block
loop
3949 Enclosing_Master
:= Scope
(Enclosing_Master
);
3952 if Is_Subprogram
(Enclosing_Master
) then
3953 Delay_Descriptors
(Enclosing_Master
);
3955 elsif Is_Task_Type
(Enclosing_Master
) then
3957 TBP
: constant Node_Id
:=
3958 Get_Task_Body_Procedure
3961 if Present
(TBP
) then
3962 Delay_Descriptors
(TBP
);
3963 Set_Delay_Cleanups
(TBP
);
3970 end loop Scope_Loop
;
3973 -- Make entry in table
3975 Pending_Instantiations
.Append
3977 Act_Decl
=> Act_Decl
,
3978 Expander_Status
=> Expander_Active
,
3979 Current_Sem_Unit
=> Current_Sem_Unit
,
3980 Scope_Suppress
=> Scope_Suppress
,
3981 Local_Suppress_Stack_Top
=> Local_Suppress_Stack_Top
,
3982 Version
=> Ada_Version
,
3983 Version_Pragma
=> Ada_Version_Pragma
,
3984 Warnings
=> Save_Warnings
,
3985 SPARK_Mode
=> SPARK_Mode
,
3986 SPARK_Mode_Pragma
=> SPARK_Mode_Pragma
));
3990 Set_Categorization_From_Pragmas
(Act_Decl
);
3992 if Parent_Installed
then
3996 Set_Instance_Spec
(N
, Act_Decl
);
3998 -- If not a compilation unit, insert the package declaration before
3999 -- the original instantiation node.
4001 if Nkind
(Parent
(N
)) /= N_Compilation_Unit
then
4002 Mark_Rewrite_Insertion
(Act_Decl
);
4003 Insert_Before
(N
, Act_Decl
);
4005 if Has_Aspects
(N
) then
4006 Analyze_Aspect_Specifications
(N
, Act_Decl_Id
);
4008 -- The pragma created for a Default_Storage_Pool aspect must
4009 -- appear ahead of the declarations in the instance spec.
4010 -- Analysis has placed it after the instance node, so remove
4011 -- it and reinsert it properly now.
4014 ASN
: constant Node_Id
:= First
(Aspect_Specifications
(N
));
4015 A_Name
: constant Name_Id
:= Chars
(Identifier
(ASN
));
4019 if A_Name
= Name_Default_Storage_Pool
then
4020 if No
(Visible_Declarations
(Act_Spec
)) then
4021 Set_Visible_Declarations
(Act_Spec
, New_List
);
4025 while Present
(Decl
) loop
4026 if Nkind
(Decl
) = N_Pragma
then
4028 Prepend
(Decl
, Visible_Declarations
(Act_Spec
));
4040 -- For an instantiation that is a compilation unit, place
4041 -- declaration on current node so context is complete for analysis
4042 -- (including nested instantiations). If this is the main unit,
4043 -- the declaration eventually replaces the instantiation node.
4044 -- If the instance body is created later, it replaces the
4045 -- instance node, and the declaration is attached to it
4046 -- (see Build_Instance_Compilation_Unit_Nodes).
4049 if Cunit_Entity
(Current_Sem_Unit
) = Defining_Entity
(N
) then
4051 -- The entity for the current unit is the newly created one,
4052 -- and all semantic information is attached to it.
4054 Set_Cunit_Entity
(Current_Sem_Unit
, Act_Decl_Id
);
4056 -- If this is the main unit, replace the main entity as well
4058 if Current_Sem_Unit
= Main_Unit
then
4059 Main_Unit_Entity
:= Act_Decl_Id
;
4063 Set_Unit
(Parent
(N
), Act_Decl
);
4064 Set_Parent_Spec
(Act_Decl
, Parent_Spec
(N
));
4065 Set_Package_Instantiation
(Act_Decl_Id
, N
);
4067 -- Process aspect specifications of the instance node, if any, to
4068 -- take into account categorization pragmas before analyzing the
4071 if Has_Aspects
(N
) then
4072 Analyze_Aspect_Specifications
(N
, Act_Decl_Id
);
4076 Set_Unit
(Parent
(N
), N
);
4077 Set_Body_Required
(Parent
(N
), False);
4079 -- We never need elaboration checks on instantiations, since by
4080 -- definition, the body instantiation is elaborated at the same
4081 -- time as the spec instantiation.
4083 Set_Suppress_Elaboration_Warnings
(Act_Decl_Id
);
4084 Set_Kill_Elaboration_Checks
(Act_Decl_Id
);
4087 Check_Elab_Instantiation
(N
);
4089 if ABE_Is_Certain
(N
) and then Needs_Body
then
4090 Pending_Instantiations
.Decrement_Last
;
4093 Check_Hidden_Child_Unit
(N
, Gen_Unit
, Act_Decl_Id
);
4095 Set_First_Private_Entity
(Defining_Unit_Name
(Unit_Renaming
),
4096 First_Private_Entity
(Act_Decl_Id
));
4098 -- If the instantiation will receive a body, the unit will be
4099 -- transformed into a package body, and receive its own elaboration
4100 -- entity. Otherwise, the nature of the unit is now a package
4103 if Nkind
(Parent
(N
)) = N_Compilation_Unit
4104 and then not Needs_Body
4106 Rewrite
(N
, Act_Decl
);
4109 if Present
(Corresponding_Body
(Gen_Decl
))
4110 or else Unit_Requires_Body
(Gen_Unit
)
4112 Set_Has_Completion
(Act_Decl_Id
);
4115 Check_Formal_Packages
(Act_Decl_Id
);
4117 Restore_Hidden_Primitives
(Vis_Prims_List
);
4118 Restore_Private_Views
(Act_Decl_Id
);
4120 Inherit_Context
(Gen_Decl
, N
);
4122 if Parent_Installed
then
4127 Env_Installed
:= False;
4130 Validate_Categorization_Dependency
(N
, Act_Decl_Id
);
4132 -- There used to be a check here to prevent instantiations in local
4133 -- contexts if the No_Local_Allocators restriction was active. This
4134 -- check was removed by a binding interpretation in AI-95-00130/07,
4135 -- but we retain the code for documentation purposes.
4137 -- if Ekind (Act_Decl_Id) /= E_Void
4138 -- and then not Is_Library_Level_Entity (Act_Decl_Id)
4140 -- Check_Restriction (No_Local_Allocators, N);
4144 Inline_Instance_Body
(N
, Gen_Unit
, Act_Decl
);
4147 -- The following is a tree patch for ASIS: ASIS needs separate nodes to
4148 -- be used as defining identifiers for a formal package and for the
4149 -- corresponding expanded package.
4151 if Nkind
(N
) = N_Formal_Package_Declaration
then
4152 Act_Decl_Id
:= New_Copy
(Defining_Entity
(N
));
4153 Set_Comes_From_Source
(Act_Decl_Id
, True);
4154 Set_Is_Generic_Instance
(Act_Decl_Id
, False);
4155 Set_Defining_Identifier
(N
, Act_Decl_Id
);
4158 Ignore_Pragma_SPARK_Mode
:= Save_IPSM
;
4159 SPARK_Mode
:= Save_SM
;
4160 SPARK_Mode_Pragma
:= Save_SMP
;
4161 Style_Check
:= Save_Style_Check
;
4163 if SPARK_Mode
= On
then
4164 Dynamic_Elaboration_Checks
:= False;
4167 -- Check that if N is an instantiation of System.Dim_Float_IO or
4168 -- System.Dim_Integer_IO, the formal type has a dimension system.
4170 if Nkind
(N
) = N_Package_Instantiation
4171 and then Is_Dim_IO_Package_Instantiation
(N
)
4174 Assoc
: constant Node_Id
:= First
(Generic_Associations
(N
));
4176 if not Has_Dimension_System
4177 (Etype
(Explicit_Generic_Actual_Parameter
(Assoc
)))
4179 Error_Msg_N
("type with a dimension system expected", Assoc
);
4185 if Has_Aspects
(N
) and then Nkind
(Parent
(N
)) /= N_Compilation_Unit
then
4186 Analyze_Aspect_Specifications
(N
, Act_Decl_Id
);
4190 when Instantiation_Error
=>
4191 if Parent_Installed
then
4195 if Env_Installed
then
4199 Ignore_Pragma_SPARK_Mode
:= Save_IPSM
;
4200 SPARK_Mode
:= Save_SM
;
4201 SPARK_Mode_Pragma
:= Save_SMP
;
4202 Style_Check
:= Save_Style_Check
;
4204 if SPARK_Mode
= On
then
4205 Dynamic_Elaboration_Checks
:= False;
4207 end Analyze_Package_Instantiation
;
4209 --------------------------
4210 -- Inline_Instance_Body --
4211 --------------------------
4213 procedure Inline_Instance_Body
4215 Gen_Unit
: Entity_Id
;
4218 Curr_Comp
: constant Node_Id
:= Cunit
(Current_Sem_Unit
);
4219 Curr_Unit
: constant Entity_Id
:= Cunit_Entity
(Current_Sem_Unit
);
4220 Gen_Comp
: constant Entity_Id
:=
4221 Cunit_Entity
(Get_Source_Unit
(Gen_Unit
));
4223 Save_SM
: constant SPARK_Mode_Type
:= SPARK_Mode
;
4224 Save_SMP
: constant Node_Id
:= SPARK_Mode_Pragma
;
4225 -- Save all SPARK_Mode-related attributes as removing enclosing scopes
4226 -- to provide a clean environment for analysis of the inlined body will
4227 -- eliminate any previously set SPARK_Mode.
4229 Scope_Stack_Depth
: constant Int
:=
4230 Scope_Stack
.Last
- Scope_Stack
.First
+ 1;
4232 Use_Clauses
: array (1 .. Scope_Stack_Depth
) of Node_Id
;
4233 Instances
: array (1 .. Scope_Stack_Depth
) of Entity_Id
;
4234 Inner_Scopes
: array (1 .. Scope_Stack_Depth
) of Entity_Id
;
4235 Curr_Scope
: Entity_Id
:= Empty
;
4237 Num_Inner
: Int
:= 0;
4238 Num_Scopes
: Int
:= 0;
4239 N_Instances
: Int
:= 0;
4240 Removed
: Boolean := False;
4245 -- Case of generic unit defined in another unit. We must remove the
4246 -- complete context of the current unit to install that of the generic.
4248 if Gen_Comp
/= Cunit_Entity
(Current_Sem_Unit
) then
4250 -- Add some comments for the following two loops ???
4253 while Present
(S
) and then S
/= Standard_Standard
loop
4255 Num_Scopes
:= Num_Scopes
+ 1;
4257 Use_Clauses
(Num_Scopes
) :=
4259 (Scope_Stack
.Last
- Num_Scopes
+ 1).
4261 End_Use_Clauses
(Use_Clauses
(Num_Scopes
));
4263 exit when Scope_Stack
.Last
- Num_Scopes
+ 1 = Scope_Stack
.First
4264 or else Scope_Stack
.Table
4265 (Scope_Stack
.Last
- Num_Scopes
).Entity
= Scope
(S
);
4268 exit when Is_Generic_Instance
(S
)
4269 and then (In_Package_Body
(S
)
4270 or else Ekind
(S
) = E_Procedure
4271 or else Ekind
(S
) = E_Function
);
4275 Vis
:= Is_Immediately_Visible
(Gen_Comp
);
4277 -- Find and save all enclosing instances
4282 and then S
/= Standard_Standard
4284 if Is_Generic_Instance
(S
) then
4285 N_Instances
:= N_Instances
+ 1;
4286 Instances
(N_Instances
) := S
;
4288 exit when In_Package_Body
(S
);
4294 -- Remove context of current compilation unit, unless we are within a
4295 -- nested package instantiation, in which case the context has been
4296 -- removed previously.
4298 -- If current scope is the body of a child unit, remove context of
4299 -- spec as well. If an enclosing scope is an instance body, the
4300 -- context has already been removed, but the entities in the body
4301 -- must be made invisible as well.
4304 while Present
(S
) and then S
/= Standard_Standard
loop
4305 if Is_Generic_Instance
(S
)
4306 and then (In_Package_Body
(S
)
4307 or else Ekind_In
(S
, E_Procedure
, E_Function
))
4309 -- We still have to remove the entities of the enclosing
4310 -- instance from direct visibility.
4315 E
:= First_Entity
(S
);
4316 while Present
(E
) loop
4317 Set_Is_Immediately_Visible
(E
, False);
4326 or else (Ekind
(Curr_Unit
) = E_Package_Body
4327 and then S
= Spec_Entity
(Curr_Unit
))
4328 or else (Ekind
(Curr_Unit
) = E_Subprogram_Body
4329 and then S
= Corresponding_Spec
4330 (Unit_Declaration_Node
(Curr_Unit
)))
4334 -- Remove entities in current scopes from visibility, so that
4335 -- instance body is compiled in a clean environment.
4337 List
:= Save_Scope_Stack
(Handle_Use
=> False);
4339 if Is_Child_Unit
(S
) then
4341 -- Remove child unit from stack, as well as inner scopes.
4342 -- Removing the context of a child unit removes parent units
4345 while Current_Scope
/= S
loop
4346 Num_Inner
:= Num_Inner
+ 1;
4347 Inner_Scopes
(Num_Inner
) := Current_Scope
;
4352 Remove_Context
(Curr_Comp
);
4356 Remove_Context
(Curr_Comp
);
4359 if Ekind
(Curr_Unit
) = E_Package_Body
then
4360 Remove_Context
(Library_Unit
(Curr_Comp
));
4367 pragma Assert
(Num_Inner
< Num_Scopes
);
4369 -- The inlined package body must be analyzed with the SPARK_Mode of
4370 -- the enclosing context, otherwise the body may cause bogus errors
4371 -- if a configuration SPARK_Mode pragma in in effect.
4373 Push_Scope
(Standard_Standard
);
4374 Scope_Stack
.Table
(Scope_Stack
.Last
).Is_Active_Stack_Base
:= True;
4375 Instantiate_Package_Body
4378 Act_Decl
=> Act_Decl
,
4379 Expander_Status
=> Expander_Active
,
4380 Current_Sem_Unit
=> Current_Sem_Unit
,
4381 Scope_Suppress
=> Scope_Suppress
,
4382 Local_Suppress_Stack_Top
=> Local_Suppress_Stack_Top
,
4383 Version
=> Ada_Version
,
4384 Version_Pragma
=> Ada_Version_Pragma
,
4385 Warnings
=> Save_Warnings
,
4386 SPARK_Mode
=> Save_SM
,
4387 SPARK_Mode_Pragma
=> Save_SMP
)),
4388 Inlined_Body
=> True);
4394 Set_Is_Immediately_Visible
(Gen_Comp
, Vis
);
4396 -- Reset Generic_Instance flag so that use clauses can be installed
4397 -- in the proper order. (See Use_One_Package for effect of enclosing
4398 -- instances on processing of use clauses).
4400 for J
in 1 .. N_Instances
loop
4401 Set_Is_Generic_Instance
(Instances
(J
), False);
4405 Install_Context
(Curr_Comp
);
4407 if Present
(Curr_Scope
)
4408 and then Is_Child_Unit
(Curr_Scope
)
4410 Push_Scope
(Curr_Scope
);
4411 Set_Is_Immediately_Visible
(Curr_Scope
);
4413 -- Finally, restore inner scopes as well
4415 for J
in reverse 1 .. Num_Inner
loop
4416 Push_Scope
(Inner_Scopes
(J
));
4420 Restore_Scope_Stack
(List
, Handle_Use
=> False);
4422 if Present
(Curr_Scope
)
4424 (In_Private_Part
(Curr_Scope
)
4425 or else In_Package_Body
(Curr_Scope
))
4427 -- Install private declaration of ancestor units, which are
4428 -- currently available. Restore_Scope_Stack and Install_Context
4429 -- only install the visible part of parents.
4434 Par
:= Scope
(Curr_Scope
);
4435 while (Present
(Par
)) and then Par
/= Standard_Standard
loop
4436 Install_Private_Declarations
(Par
);
4443 -- Restore use clauses. For a child unit, use clauses in the parents
4444 -- are restored when installing the context, so only those in inner
4445 -- scopes (and those local to the child unit itself) need to be
4446 -- installed explicitly.
4448 if Is_Child_Unit
(Curr_Unit
) and then Removed
then
4449 for J
in reverse 1 .. Num_Inner
+ 1 loop
4450 Scope_Stack
.Table
(Scope_Stack
.Last
- J
+ 1).First_Use_Clause
:=
4452 Install_Use_Clauses
(Use_Clauses
(J
));
4456 for J
in reverse 1 .. Num_Scopes
loop
4457 Scope_Stack
.Table
(Scope_Stack
.Last
- J
+ 1).First_Use_Clause
:=
4459 Install_Use_Clauses
(Use_Clauses
(J
));
4463 -- Restore status of instances. If one of them is a body, make its
4464 -- local entities visible again.
4471 for J
in 1 .. N_Instances
loop
4472 Inst
:= Instances
(J
);
4473 Set_Is_Generic_Instance
(Inst
, True);
4475 if In_Package_Body
(Inst
)
4476 or else Ekind_In
(S
, E_Procedure
, E_Function
)
4478 E
:= First_Entity
(Instances
(J
));
4479 while Present
(E
) loop
4480 Set_Is_Immediately_Visible
(E
);
4487 -- If generic unit is in current unit, current context is correct. Note
4488 -- that the context is guaranteed to carry the correct SPARK_Mode as no
4489 -- enclosing scopes were removed.
4492 Instantiate_Package_Body
4495 Act_Decl
=> Act_Decl
,
4496 Expander_Status
=> Expander_Active
,
4497 Current_Sem_Unit
=> Current_Sem_Unit
,
4498 Scope_Suppress
=> Scope_Suppress
,
4499 Local_Suppress_Stack_Top
=> Local_Suppress_Stack_Top
,
4500 Version
=> Ada_Version
,
4501 Version_Pragma
=> Ada_Version_Pragma
,
4502 Warnings
=> Save_Warnings
,
4503 SPARK_Mode
=> SPARK_Mode
,
4504 SPARK_Mode_Pragma
=> SPARK_Mode_Pragma
)),
4505 Inlined_Body
=> True);
4507 end Inline_Instance_Body
;
4509 -------------------------------------
4510 -- Analyze_Procedure_Instantiation --
4511 -------------------------------------
4513 procedure Analyze_Procedure_Instantiation
(N
: Node_Id
) is
4515 Analyze_Subprogram_Instantiation
(N
, E_Procedure
);
4516 end Analyze_Procedure_Instantiation
;
4518 -----------------------------------
4519 -- Need_Subprogram_Instance_Body --
4520 -----------------------------------
4522 function Need_Subprogram_Instance_Body
4524 Subp
: Entity_Id
) return Boolean
4527 -- Must be inlined (or inlined renaming)
4529 if (Is_In_Main_Unit
(N
)
4530 or else Is_Inlined
(Subp
)
4531 or else Is_Inlined
(Alias
(Subp
)))
4533 -- Must be generating code or analyzing code in ASIS/GNATprove mode
4535 and then (Operating_Mode
= Generate_Code
4536 or else (Operating_Mode
= Check_Semantics
4537 and then (ASIS_Mode
or GNATprove_Mode
)))
4539 -- The body is needed when generating code (full expansion), in ASIS
4540 -- mode for other tools, and in GNATprove mode (special expansion) for
4541 -- formal verification of the body itself.
4543 and then (Expander_Active
or ASIS_Mode
or GNATprove_Mode
)
4545 -- No point in inlining if ABE is inevitable
4547 and then not ABE_Is_Certain
(N
)
4549 -- Or if subprogram is eliminated
4551 and then not Is_Eliminated
(Subp
)
4553 Pending_Instantiations
.Append
4555 Act_Decl
=> Unit_Declaration_Node
(Subp
),
4556 Expander_Status
=> Expander_Active
,
4557 Current_Sem_Unit
=> Current_Sem_Unit
,
4558 Scope_Suppress
=> Scope_Suppress
,
4559 Local_Suppress_Stack_Top
=> Local_Suppress_Stack_Top
,
4560 Version
=> Ada_Version
,
4561 Version_Pragma
=> Ada_Version_Pragma
,
4562 Warnings
=> Save_Warnings
,
4563 SPARK_Mode
=> SPARK_Mode
,
4564 SPARK_Mode_Pragma
=> SPARK_Mode_Pragma
));
4567 -- Here if not inlined, or we ignore the inlining
4572 end Need_Subprogram_Instance_Body
;
4574 --------------------------------------
4575 -- Analyze_Subprogram_Instantiation --
4576 --------------------------------------
4578 procedure Analyze_Subprogram_Instantiation
4582 Loc
: constant Source_Ptr
:= Sloc
(N
);
4583 Gen_Id
: constant Node_Id
:= Name
(N
);
4585 Anon_Id
: constant Entity_Id
:=
4586 Make_Defining_Identifier
(Sloc
(Defining_Entity
(N
)),
4587 Chars
=> New_External_Name
4588 (Chars
(Defining_Entity
(N
)), 'R'));
4590 Act_Decl_Id
: Entity_Id
;
4595 Env_Installed
: Boolean := False;
4596 Gen_Unit
: Entity_Id
;
4598 Pack_Id
: Entity_Id
;
4599 Parent_Installed
: Boolean := False;
4601 Renaming_List
: List_Id
;
4602 -- The list of declarations that link formals and actuals of the
4603 -- instance. These are subtype declarations for formal types, and
4604 -- renaming declarations for other formals. The subprogram declaration
4605 -- for the instance is then appended to the list, and the last item on
4606 -- the list is the renaming declaration for the instance.
4608 procedure Analyze_Instance_And_Renamings
;
4609 -- The instance must be analyzed in a context that includes the mappings
4610 -- of generic parameters into actuals. We create a package declaration
4611 -- for this purpose, and a subprogram with an internal name within the
4612 -- package. The subprogram instance is simply an alias for the internal
4613 -- subprogram, declared in the current scope.
4615 procedure Build_Subprogram_Renaming
;
4616 -- If the subprogram is recursive, there are occurrences of the name of
4617 -- the generic within the body, which must resolve to the current
4618 -- instance. We add a renaming declaration after the declaration, which
4619 -- is available in the instance body, as well as in the analysis of
4620 -- aspects that appear in the generic. This renaming declaration is
4621 -- inserted after the instance declaration which it renames.
4623 procedure Instantiate_Contract
(Subp_Id
: Entity_Id
);
4624 -- Instantiate all source pragmas found in the contract of subprogram
4625 -- Subp_Id. The instantiated pragmas are added to list Renaming_List.
4627 ------------------------------------
4628 -- Analyze_Instance_And_Renamings --
4629 ------------------------------------
4631 procedure Analyze_Instance_And_Renamings
is
4632 Def_Ent
: constant Entity_Id
:= Defining_Entity
(N
);
4633 Pack_Decl
: Node_Id
;
4636 if Nkind
(Parent
(N
)) = N_Compilation_Unit
then
4638 -- For the case of a compilation unit, the container package has
4639 -- the same name as the instantiation, to insure that the binder
4640 -- calls the elaboration procedure with the right name. Copy the
4641 -- entity of the instance, which may have compilation level flags
4642 -- (e.g. Is_Child_Unit) set.
4644 Pack_Id
:= New_Copy
(Def_Ent
);
4647 -- Otherwise we use the name of the instantiation concatenated
4648 -- with its source position to ensure uniqueness if there are
4649 -- several instantiations with the same name.
4652 Make_Defining_Identifier
(Loc
,
4653 Chars
=> New_External_Name
4654 (Related_Id
=> Chars
(Def_Ent
),
4656 Suffix_Index
=> Source_Offset
(Sloc
(Def_Ent
))));
4660 Make_Package_Declaration
(Loc
,
4661 Specification
=> Make_Package_Specification
(Loc
,
4662 Defining_Unit_Name
=> Pack_Id
,
4663 Visible_Declarations
=> Renaming_List
,
4664 End_Label
=> Empty
));
4666 Set_Instance_Spec
(N
, Pack_Decl
);
4667 Set_Is_Generic_Instance
(Pack_Id
);
4668 Set_Debug_Info_Needed
(Pack_Id
);
4670 -- Case of not a compilation unit
4672 if Nkind
(Parent
(N
)) /= N_Compilation_Unit
then
4673 Mark_Rewrite_Insertion
(Pack_Decl
);
4674 Insert_Before
(N
, Pack_Decl
);
4675 Set_Has_Completion
(Pack_Id
);
4677 -- Case of an instantiation that is a compilation unit
4679 -- Place declaration on current node so context is complete for
4680 -- analysis (including nested instantiations), and for use in a
4681 -- context_clause (see Analyze_With_Clause).
4684 Set_Unit
(Parent
(N
), Pack_Decl
);
4685 Set_Parent_Spec
(Pack_Decl
, Parent_Spec
(N
));
4688 Analyze
(Pack_Decl
);
4689 Check_Formal_Packages
(Pack_Id
);
4690 Set_Is_Generic_Instance
(Pack_Id
, False);
4692 -- Why do we clear Is_Generic_Instance??? We set it 20 lines
4695 -- Body of the enclosing package is supplied when instantiating the
4696 -- subprogram body, after semantic analysis is completed.
4698 if Nkind
(Parent
(N
)) = N_Compilation_Unit
then
4700 -- Remove package itself from visibility, so it does not
4701 -- conflict with subprogram.
4703 Set_Name_Entity_Id
(Chars
(Pack_Id
), Homonym
(Pack_Id
));
4705 -- Set name and scope of internal subprogram so that the proper
4706 -- external name will be generated. The proper scope is the scope
4707 -- of the wrapper package. We need to generate debugging info for
4708 -- the internal subprogram, so set flag accordingly.
4710 Set_Chars
(Anon_Id
, Chars
(Defining_Entity
(N
)));
4711 Set_Scope
(Anon_Id
, Scope
(Pack_Id
));
4713 -- Mark wrapper package as referenced, to avoid spurious warnings
4714 -- if the instantiation appears in various with_ clauses of
4715 -- subunits of the main unit.
4717 Set_Referenced
(Pack_Id
);
4720 Set_Is_Generic_Instance
(Anon_Id
);
4721 Set_Debug_Info_Needed
(Anon_Id
);
4722 Act_Decl_Id
:= New_Copy
(Anon_Id
);
4724 Set_Parent
(Act_Decl_Id
, Parent
(Anon_Id
));
4725 Set_Chars
(Act_Decl_Id
, Chars
(Defining_Entity
(N
)));
4726 Set_Sloc
(Act_Decl_Id
, Sloc
(Defining_Entity
(N
)));
4728 -- Subprogram instance comes from source only if generic does
4730 Set_Comes_From_Source
(Act_Decl_Id
, Comes_From_Source
(Gen_Unit
));
4732 -- The signature may involve types that are not frozen yet, but the
4733 -- subprogram will be frozen at the point the wrapper package is
4734 -- frozen, so it does not need its own freeze node. In fact, if one
4735 -- is created, it might conflict with the freezing actions from the
4738 Set_Has_Delayed_Freeze
(Anon_Id
, False);
4740 -- If the instance is a child unit, mark the Id accordingly. Mark
4741 -- the anonymous entity as well, which is the real subprogram and
4742 -- which is used when the instance appears in a context clause.
4743 -- Similarly, propagate the Is_Eliminated flag to handle properly
4744 -- nested eliminated subprograms.
4746 Set_Is_Child_Unit
(Act_Decl_Id
, Is_Child_Unit
(Defining_Entity
(N
)));
4747 Set_Is_Child_Unit
(Anon_Id
, Is_Child_Unit
(Defining_Entity
(N
)));
4748 New_Overloaded_Entity
(Act_Decl_Id
);
4749 Check_Eliminated
(Act_Decl_Id
);
4750 Set_Is_Eliminated
(Anon_Id
, Is_Eliminated
(Act_Decl_Id
));
4752 -- In compilation unit case, kill elaboration checks on the
4753 -- instantiation, since they are never needed -- the body is
4754 -- instantiated at the same point as the spec.
4756 if Nkind
(Parent
(N
)) = N_Compilation_Unit
then
4757 Set_Suppress_Elaboration_Warnings
(Act_Decl_Id
);
4758 Set_Kill_Elaboration_Checks
(Act_Decl_Id
);
4759 Set_Is_Compilation_Unit
(Anon_Id
);
4761 Set_Cunit_Entity
(Current_Sem_Unit
, Pack_Id
);
4764 -- The instance is not a freezing point for the new subprogram
4766 Set_Is_Frozen
(Act_Decl_Id
, False);
4768 if Nkind
(Defining_Entity
(N
)) = N_Defining_Operator_Symbol
then
4769 Valid_Operator_Definition
(Act_Decl_Id
);
4772 Set_Alias
(Act_Decl_Id
, Anon_Id
);
4773 Set_Parent
(Act_Decl_Id
, Parent
(Anon_Id
));
4774 Set_Has_Completion
(Act_Decl_Id
);
4775 Set_Related_Instance
(Pack_Id
, Act_Decl_Id
);
4777 if Nkind
(Parent
(N
)) = N_Compilation_Unit
then
4778 Set_Body_Required
(Parent
(N
), False);
4780 end Analyze_Instance_And_Renamings
;
4782 -------------------------------
4783 -- Build_Subprogram_Renaming --
4784 -------------------------------
4786 procedure Build_Subprogram_Renaming
is
4787 Renaming_Decl
: Node_Id
;
4788 Unit_Renaming
: Node_Id
;
4792 Make_Subprogram_Renaming_Declaration
(Loc
,
4795 (Specification
(Original_Node
(Gen_Decl
)),
4797 Instantiating
=> True),
4798 Name
=> New_Occurrence_Of
(Anon_Id
, Loc
));
4800 -- The generic may be a a child unit. The renaming needs an
4801 -- identifier with the proper name.
4803 Set_Defining_Unit_Name
(Specification
(Unit_Renaming
),
4804 Make_Defining_Identifier
(Loc
, Chars
(Gen_Unit
)));
4806 -- If there is a formal subprogram with the same name as the unit
4807 -- itself, do not add this renaming declaration, to prevent
4808 -- ambiguities when there is a call with that name in the body.
4809 -- This is a partial and ugly fix for one ACATS test. ???
4811 Renaming_Decl
:= First
(Renaming_List
);
4812 while Present
(Renaming_Decl
) loop
4813 if Nkind
(Renaming_Decl
) = N_Subprogram_Renaming_Declaration
4815 Chars
(Defining_Entity
(Renaming_Decl
)) = Chars
(Gen_Unit
)
4820 Next
(Renaming_Decl
);
4823 if No
(Renaming_Decl
) then
4824 Append
(Unit_Renaming
, Renaming_List
);
4826 end Build_Subprogram_Renaming
;
4828 --------------------------
4829 -- Instantiate_Contract --
4830 --------------------------
4832 procedure Instantiate_Contract
(Subp_Id
: Entity_Id
) is
4833 procedure Instantiate_Pragmas
(First_Prag
: Node_Id
);
4834 -- Instantiate all contract-related source pragmas found in the list
4835 -- starting with pragma First_Prag. Each instantiated pragma is added
4836 -- to list Renaming_List.
4838 -------------------------
4839 -- Instantiate_Pragmas --
4840 -------------------------
4842 procedure Instantiate_Pragmas
(First_Prag
: Node_Id
) is
4843 Inst_Prag
: Node_Id
;
4848 while Present
(Prag
) loop
4849 if Comes_From_Source
(Prag
)
4850 and then Nam_In
(Pragma_Name
(Prag
), Name_Contract_Cases
,
4852 Name_Extensions_Visible
,
4860 (Original_Node
(Prag
), Empty
, Instantiating
=> True);
4862 Set_Analyzed
(Inst_Prag
, False);
4863 Append_To
(Renaming_List
, Inst_Prag
);
4866 Prag
:= Next_Pragma
(Prag
);
4868 end Instantiate_Pragmas
;
4872 Items
: constant Node_Id
:= Contract
(Subp_Id
);
4874 -- Start of processing for Instantiate_Contract
4877 if Present
(Items
) then
4878 Instantiate_Pragmas
(Pre_Post_Conditions
(Items
));
4879 Instantiate_Pragmas
(Contract_Test_Cases
(Items
));
4880 Instantiate_Pragmas
(Classifications
(Items
));
4882 end Instantiate_Contract
;
4886 Save_IPSM
: constant Boolean := Ignore_Pragma_SPARK_Mode
;
4887 -- Save flag Ignore_Pragma_SPARK_Mode for restore on exit
4889 Save_SM
: constant SPARK_Mode_Type
:= SPARK_Mode
;
4890 Save_SMP
: constant Node_Id
:= SPARK_Mode_Pragma
;
4891 -- Save the SPARK_Mode-related data for restore on exit
4893 Vis_Prims_List
: Elist_Id
:= No_Elist
;
4894 -- List of primitives made temporarily visible in the instantiation
4895 -- to match the visibility of the formal type
4897 -- Start of processing for Analyze_Subprogram_Instantiation
4900 Check_SPARK_05_Restriction
("generic is not allowed", N
);
4902 -- Very first thing: check for special Text_IO unit in case we are
4903 -- instantiating one of the children of [[Wide_]Wide_]Text_IO. Of course
4904 -- such an instantiation is bogus (these are packages, not subprograms),
4905 -- but we get a better error message if we do this.
4907 Check_Text_IO_Special_Unit
(Gen_Id
);
4909 -- Make node global for error reporting
4911 Instantiation_Node
:= N
;
4913 -- For package instantiations we turn off style checks, because they
4914 -- will have been emitted in the generic. For subprogram instantiations
4915 -- we want to apply at least the check on overriding indicators so we
4916 -- do not modify the style check status.
4918 -- The renaming declarations for the actuals do not come from source and
4919 -- will not generate spurious warnings.
4921 Preanalyze_Actuals
(N
);
4924 Env_Installed
:= True;
4925 Check_Generic_Child_Unit
(Gen_Id
, Parent_Installed
);
4926 Gen_Unit
:= Entity
(Gen_Id
);
4928 Generate_Reference
(Gen_Unit
, Gen_Id
);
4930 if Nkind
(Gen_Id
) = N_Identifier
4931 and then Chars
(Gen_Unit
) = Chars
(Defining_Entity
(N
))
4934 ("& is hidden within declaration of instance", Gen_Id
, Gen_Unit
);
4937 if Etype
(Gen_Unit
) = Any_Type
then
4942 -- Verify that it is a generic subprogram of the right kind, and that
4943 -- it does not lead to a circular instantiation.
4945 if K
= E_Procedure
and then Ekind
(Gen_Unit
) /= E_Generic_Procedure
then
4947 ("& is not the name of a generic procedure", Gen_Id
, Gen_Unit
);
4949 elsif K
= E_Function
and then Ekind
(Gen_Unit
) /= E_Generic_Function
then
4951 ("& is not the name of a generic function", Gen_Id
, Gen_Unit
);
4953 elsif In_Open_Scopes
(Gen_Unit
) then
4954 Error_Msg_NE
("instantiation of & within itself", N
, Gen_Unit
);
4957 -- If the context of the instance is subject to SPARK_Mode "off",
4958 -- set the global flag which signals Analyze_Pragma to ignore all
4959 -- SPARK_Mode pragmas within the instance.
4961 if SPARK_Mode
= Off
then
4962 Ignore_Pragma_SPARK_Mode
:= True;
4965 Set_Entity
(Gen_Id
, Gen_Unit
);
4966 Set_Is_Instantiated
(Gen_Unit
);
4968 if In_Extended_Main_Source_Unit
(N
) then
4969 Generate_Reference
(Gen_Unit
, N
);
4972 -- If renaming, get original unit
4974 if Present
(Renamed_Object
(Gen_Unit
))
4975 and then Ekind_In
(Renamed_Object
(Gen_Unit
), E_Generic_Procedure
,
4978 Gen_Unit
:= Renamed_Object
(Gen_Unit
);
4979 Set_Is_Instantiated
(Gen_Unit
);
4980 Generate_Reference
(Gen_Unit
, N
);
4983 if Contains_Instance_Of
(Gen_Unit
, Current_Scope
, Gen_Id
) then
4984 Error_Msg_Node_2
:= Current_Scope
;
4986 ("circular Instantiation: & instantiated in &!", N
, Gen_Unit
);
4987 Circularity_Detected
:= True;
4988 Restore_Hidden_Primitives
(Vis_Prims_List
);
4992 Gen_Decl
:= Unit_Declaration_Node
(Gen_Unit
);
4994 -- Initialize renamings map, for error checking
4996 Generic_Renamings
.Set_Last
(0);
4997 Generic_Renamings_HTable
.Reset
;
4999 Create_Instantiation_Source
(N
, Gen_Unit
, False, S_Adjustment
);
5001 -- Copy original generic tree, to produce text for instantiation
5005 (Original_Node
(Gen_Decl
), Empty
, Instantiating
=> True);
5007 -- Inherit overriding indicator from instance node
5009 Act_Spec
:= Specification
(Act_Tree
);
5010 Set_Must_Override
(Act_Spec
, Must_Override
(N
));
5011 Set_Must_Not_Override
(Act_Spec
, Must_Not_Override
(N
));
5014 Analyze_Associations
5016 Formals
=> Generic_Formal_Declarations
(Act_Tree
),
5017 F_Copy
=> Generic_Formal_Declarations
(Gen_Decl
));
5019 Vis_Prims_List
:= Check_Hidden_Primitives
(Renaming_List
);
5021 -- The subprogram itself cannot contain a nested instance, so the
5022 -- current parent is left empty.
5024 Set_Instance_Env
(Gen_Unit
, Empty
);
5026 -- Build the subprogram declaration, which does not appear in the
5027 -- generic template, and give it a sloc consistent with that of the
5030 Set_Defining_Unit_Name
(Act_Spec
, Anon_Id
);
5031 Set_Generic_Parent
(Act_Spec
, Gen_Unit
);
5033 Make_Subprogram_Declaration
(Sloc
(Act_Spec
),
5034 Specification
=> Act_Spec
);
5036 -- The aspects have been copied previously, but they have to be
5037 -- linked explicitly to the new subprogram declaration. Explicit
5038 -- pre/postconditions on the instance are analyzed below, in a
5041 Move_Aspects
(Act_Tree
, To
=> Act_Decl
);
5042 Set_Categorization_From_Pragmas
(Act_Decl
);
5044 if Parent_Installed
then
5048 Append
(Act_Decl
, Renaming_List
);
5049 Instantiate_Contract
(Gen_Unit
);
5050 Build_Subprogram_Renaming
;
5052 Analyze_Instance_And_Renamings
;
5054 -- If the generic is marked Import (Intrinsic), then so is the
5055 -- instance. This indicates that there is no body to instantiate. If
5056 -- generic is marked inline, so it the instance, and the anonymous
5057 -- subprogram it renames. If inlined, or else if inlining is enabled
5058 -- for the compilation, we generate the instance body even if it is
5059 -- not within the main unit.
5061 if Is_Intrinsic_Subprogram
(Gen_Unit
) then
5062 Set_Is_Intrinsic_Subprogram
(Anon_Id
);
5063 Set_Is_Intrinsic_Subprogram
(Act_Decl_Id
);
5065 if Chars
(Gen_Unit
) = Name_Unchecked_Conversion
then
5066 Validate_Unchecked_Conversion
(N
, Act_Decl_Id
);
5070 -- Inherit convention from generic unit. Intrinsic convention, as for
5071 -- an instance of unchecked conversion, is not inherited because an
5072 -- explicit Ada instance has been created.
5074 if Has_Convention_Pragma
(Gen_Unit
)
5075 and then Convention
(Gen_Unit
) /= Convention_Intrinsic
5077 Set_Convention
(Act_Decl_Id
, Convention
(Gen_Unit
));
5078 Set_Is_Exported
(Act_Decl_Id
, Is_Exported
(Gen_Unit
));
5081 Generate_Definition
(Act_Decl_Id
);
5083 -- Inherit all inlining-related flags which apply to the generic in
5084 -- the subprogram and its declaration.
5086 Set_Is_Inlined
(Act_Decl_Id
, Is_Inlined
(Gen_Unit
));
5087 Set_Is_Inlined
(Anon_Id
, Is_Inlined
(Gen_Unit
));
5089 Set_Has_Pragma_Inline
(Act_Decl_Id
, Has_Pragma_Inline
(Gen_Unit
));
5090 Set_Has_Pragma_Inline
(Anon_Id
, Has_Pragma_Inline
(Gen_Unit
));
5092 Set_Has_Pragma_Inline_Always
5093 (Act_Decl_Id
, Has_Pragma_Inline_Always
(Gen_Unit
));
5094 Set_Has_Pragma_Inline_Always
5095 (Anon_Id
, Has_Pragma_Inline_Always
(Gen_Unit
));
5097 if not Is_Intrinsic_Subprogram
(Gen_Unit
) then
5098 Check_Elab_Instantiation
(N
);
5101 if Is_Dispatching_Operation
(Act_Decl_Id
)
5102 and then Ada_Version
>= Ada_2005
5108 Formal
:= First_Formal
(Act_Decl_Id
);
5109 while Present
(Formal
) loop
5110 if Ekind
(Etype
(Formal
)) = E_Anonymous_Access_Type
5111 and then Is_Controlling_Formal
(Formal
)
5112 and then not Can_Never_Be_Null
(Formal
)
5115 ("access parameter& is controlling,", N
, Formal
);
5117 ("\corresponding parameter of & must be "
5118 & "explicitly null-excluding", N
, Gen_Id
);
5121 Next_Formal
(Formal
);
5126 Check_Hidden_Child_Unit
(N
, Gen_Unit
, Act_Decl_Id
);
5128 Validate_Categorization_Dependency
(N
, Act_Decl_Id
);
5130 if not Is_Intrinsic_Subprogram
(Act_Decl_Id
) then
5131 Inherit_Context
(Gen_Decl
, N
);
5133 Restore_Private_Views
(Pack_Id
, False);
5135 -- If the context requires a full instantiation, mark node for
5136 -- subsequent construction of the body.
5138 if Need_Subprogram_Instance_Body
(N
, Act_Decl_Id
) then
5139 Check_Forward_Instantiation
(Gen_Decl
);
5141 -- The wrapper package is always delayed, because it does not
5142 -- constitute a freeze point, but to insure that the freeze
5143 -- node is placed properly, it is created directly when
5144 -- instantiating the body (otherwise the freeze node might
5145 -- appear to early for nested instantiations).
5147 elsif Nkind
(Parent
(N
)) = N_Compilation_Unit
then
5149 -- For ASIS purposes, indicate that the wrapper package has
5150 -- replaced the instantiation node.
5152 Rewrite
(N
, Unit
(Parent
(N
)));
5153 Set_Unit
(Parent
(N
), N
);
5156 elsif Nkind
(Parent
(N
)) = N_Compilation_Unit
then
5158 -- Replace instance node for library-level instantiations of
5159 -- intrinsic subprograms, for ASIS use.
5161 Rewrite
(N
, Unit
(Parent
(N
)));
5162 Set_Unit
(Parent
(N
), N
);
5165 if Parent_Installed
then
5169 Restore_Hidden_Primitives
(Vis_Prims_List
);
5171 Env_Installed
:= False;
5172 Generic_Renamings
.Set_Last
(0);
5173 Generic_Renamings_HTable
.Reset
;
5175 Ignore_Pragma_SPARK_Mode
:= Save_IPSM
;
5176 SPARK_Mode
:= Save_SM
;
5177 SPARK_Mode_Pragma
:= Save_SMP
;
5179 if SPARK_Mode
= On
then
5180 Dynamic_Elaboration_Checks
:= False;
5186 if Has_Aspects
(N
) then
5187 Analyze_Aspect_Specifications
(N
, Act_Decl_Id
);
5191 when Instantiation_Error
=>
5192 if Parent_Installed
then
5196 if Env_Installed
then
5200 Ignore_Pragma_SPARK_Mode
:= Save_IPSM
;
5201 SPARK_Mode
:= Save_SM
;
5202 SPARK_Mode_Pragma
:= Save_SMP
;
5204 if SPARK_Mode
= On
then
5205 Dynamic_Elaboration_Checks
:= False;
5207 end Analyze_Subprogram_Instantiation
;
5209 -------------------------
5210 -- Get_Associated_Node --
5211 -------------------------
5213 function Get_Associated_Node
(N
: Node_Id
) return Node_Id
is
5217 Assoc
:= Associated_Node
(N
);
5219 if Nkind
(Assoc
) /= Nkind
(N
) then
5222 elsif Nkind_In
(Assoc
, N_Aggregate
, N_Extension_Aggregate
) then
5226 -- If the node is part of an inner generic, it may itself have been
5227 -- remapped into a further generic copy. Associated_Node is otherwise
5228 -- used for the entity of the node, and will be of a different node
5229 -- kind, or else N has been rewritten as a literal or function call.
5231 while Present
(Associated_Node
(Assoc
))
5232 and then Nkind
(Associated_Node
(Assoc
)) = Nkind
(Assoc
)
5234 Assoc
:= Associated_Node
(Assoc
);
5237 -- Follow and additional link in case the final node was rewritten.
5238 -- This can only happen with nested generic units.
5240 if (Nkind
(Assoc
) = N_Identifier
or else Nkind
(Assoc
) in N_Op
)
5241 and then Present
(Associated_Node
(Assoc
))
5242 and then (Nkind_In
(Associated_Node
(Assoc
), N_Function_Call
,
5243 N_Explicit_Dereference
,
5248 Assoc
:= Associated_Node
(Assoc
);
5251 -- An additional special case: an unconstrained type in an object
5252 -- declaration may have been rewritten as a local subtype constrained
5253 -- by the expression in the declaration. We need to recover the
5254 -- original entity which may be global.
5256 if Present
(Original_Node
(Assoc
))
5257 and then Nkind
(Parent
(N
)) = N_Object_Declaration
5259 Assoc
:= Original_Node
(Assoc
);
5264 end Get_Associated_Node
;
5266 ----------------------------
5267 -- Build_Function_Wrapper --
5268 ----------------------------
5270 function Build_Function_Wrapper
5271 (Formal_Subp
: Entity_Id
;
5272 Actual_Subp
: Entity_Id
) return Node_Id
5274 Loc
: constant Source_Ptr
:= Sloc
(Current_Scope
);
5275 Ret_Type
: constant Entity_Id
:= Get_Instance_Of
(Etype
(Formal_Subp
));
5278 Func_Name
: Node_Id
;
5280 Parm_Type
: Node_Id
;
5281 Profile
: List_Id
:= New_List
;
5288 Func_Name
:= New_Occurrence_Of
(Actual_Subp
, Loc
);
5290 Func
:= Make_Defining_Identifier
(Loc
, Chars
(Formal_Subp
));
5291 Set_Ekind
(Func
, E_Function
);
5292 Set_Is_Generic_Actual_Subprogram
(Func
);
5294 Actuals
:= New_List
;
5295 Profile
:= New_List
;
5297 Act_F
:= First_Formal
(Actual_Subp
);
5298 Form_F
:= First_Formal
(Formal_Subp
);
5299 while Present
(Form_F
) loop
5301 -- Create new formal for profile of wrapper, and add a reference
5302 -- to it in the list of actuals for the enclosing call. The name
5303 -- must be that of the formal in the formal subprogram, because
5304 -- calls to it in the generic body may use named associations.
5306 New_F
:= Make_Defining_Identifier
(Loc
, Chars
(Form_F
));
5309 New_Occurrence_Of
(Get_Instance_Of
(Etype
(Form_F
)), Loc
);
5312 Make_Parameter_Specification
(Loc
,
5313 Defining_Identifier
=> New_F
,
5314 Parameter_Type
=> Parm_Type
));
5316 Append_To
(Actuals
, New_Occurrence_Of
(New_F
, Loc
));
5317 Next_Formal
(Form_F
);
5319 if Present
(Act_F
) then
5320 Next_Formal
(Act_F
);
5325 Make_Function_Specification
(Loc
,
5326 Defining_Unit_Name
=> Func
,
5327 Parameter_Specifications
=> Profile
,
5328 Result_Definition
=> New_Occurrence_Of
(Ret_Type
, Loc
));
5331 Make_Expression_Function
(Loc
,
5332 Specification
=> Spec
,
5334 Make_Function_Call
(Loc
,
5336 Parameter_Associations
=> Actuals
));
5339 end Build_Function_Wrapper
;
5341 ----------------------------
5342 -- Build_Operator_Wrapper --
5343 ----------------------------
5345 function Build_Operator_Wrapper
5346 (Formal_Subp
: Entity_Id
;
5347 Actual_Subp
: Entity_Id
) return Node_Id
5349 Loc
: constant Source_Ptr
:= Sloc
(Current_Scope
);
5350 Ret_Type
: constant Entity_Id
:=
5351 Get_Instance_Of
(Etype
(Formal_Subp
));
5352 Op_Type
: constant Entity_Id
:=
5353 Get_Instance_Of
(Etype
(First_Formal
(Formal_Subp
)));
5354 Is_Binary
: constant Boolean :=
5355 Present
(Next_Formal
(First_Formal
(Formal_Subp
)));
5366 Op_Name
:= Chars
(Actual_Subp
);
5368 -- Create entities for wrapper function and its formals
5370 F1
:= Make_Temporary
(Loc
, 'A');
5371 F2
:= Make_Temporary
(Loc
, 'B');
5372 L
:= New_Occurrence_Of
(F1
, Loc
);
5373 R
:= New_Occurrence_Of
(F2
, Loc
);
5375 Func
:= Make_Defining_Identifier
(Loc
, Chars
(Formal_Subp
));
5376 Set_Ekind
(Func
, E_Function
);
5377 Set_Is_Generic_Actual_Subprogram
(Func
);
5380 Make_Function_Specification
(Loc
,
5381 Defining_Unit_Name
=> Func
,
5382 Parameter_Specifications
=> New_List
(
5383 Make_Parameter_Specification
(Loc
,
5384 Defining_Identifier
=> F1
,
5385 Parameter_Type
=> New_Occurrence_Of
(Op_Type
, Loc
))),
5386 Result_Definition
=> New_Occurrence_Of
(Ret_Type
, Loc
));
5389 Append_To
(Parameter_Specifications
(Spec
),
5390 Make_Parameter_Specification
(Loc
,
5391 Defining_Identifier
=> F2
,
5392 Parameter_Type
=> New_Occurrence_Of
(Op_Type
, Loc
)));
5395 -- Build expression as a function call, or as an operator node
5396 -- that corresponds to the name of the actual, starting with
5397 -- binary operators.
5399 if Op_Name
not in Any_Operator_Name
then
5401 Make_Function_Call
(Loc
,
5403 New_Occurrence_Of
(Actual_Subp
, Loc
),
5404 Parameter_Associations
=> New_List
(L
));
5407 Append_To
(Parameter_Associations
(Expr
), R
);
5412 elsif Is_Binary
then
5413 if Op_Name
= Name_Op_And
then
5414 Expr
:= Make_Op_And
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
5415 elsif Op_Name
= Name_Op_Or
then
5416 Expr
:= Make_Op_Or
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
5417 elsif Op_Name
= Name_Op_Xor
then
5418 Expr
:= Make_Op_Xor
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
5419 elsif Op_Name
= Name_Op_Eq
then
5420 Expr
:= Make_Op_Eq
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
5421 elsif Op_Name
= Name_Op_Ne
then
5422 Expr
:= Make_Op_Ne
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
5423 elsif Op_Name
= Name_Op_Le
then
5424 Expr
:= Make_Op_Le
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
5425 elsif Op_Name
= Name_Op_Gt
then
5426 Expr
:= Make_Op_Gt
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
5427 elsif Op_Name
= Name_Op_Ge
then
5428 Expr
:= Make_Op_Ge
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
5429 elsif Op_Name
= Name_Op_Lt
then
5430 Expr
:= Make_Op_Lt
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
5431 elsif Op_Name
= Name_Op_Add
then
5432 Expr
:= Make_Op_Add
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
5433 elsif Op_Name
= Name_Op_Subtract
then
5434 Expr
:= Make_Op_Subtract
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
5435 elsif Op_Name
= Name_Op_Concat
then
5436 Expr
:= Make_Op_Concat
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
5437 elsif Op_Name
= Name_Op_Multiply
then
5438 Expr
:= Make_Op_Multiply
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
5439 elsif Op_Name
= Name_Op_Divide
then
5440 Expr
:= Make_Op_Divide
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
5441 elsif Op_Name
= Name_Op_Mod
then
5442 Expr
:= Make_Op_Mod
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
5443 elsif Op_Name
= Name_Op_Rem
then
5444 Expr
:= Make_Op_Rem
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
5445 elsif Op_Name
= Name_Op_Expon
then
5446 Expr
:= Make_Op_Expon
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
5452 if Op_Name
= Name_Op_Add
then
5453 Expr
:= Make_Op_Plus
(Loc
, Right_Opnd
=> L
);
5454 elsif Op_Name
= Name_Op_Subtract
then
5455 Expr
:= Make_Op_Minus
(Loc
, Right_Opnd
=> L
);
5456 elsif Op_Name
= Name_Op_Abs
then
5457 Expr
:= Make_Op_Abs
(Loc
, Right_Opnd
=> L
);
5458 elsif Op_Name
= Name_Op_Not
then
5459 Expr
:= Make_Op_Not
(Loc
, Right_Opnd
=> L
);
5464 Make_Expression_Function
(Loc
,
5465 Specification
=> Spec
,
5466 Expression
=> Expr
);
5469 end Build_Operator_Wrapper
;
5471 -------------------------------------------
5472 -- Build_Instance_Compilation_Unit_Nodes --
5473 -------------------------------------------
5475 procedure Build_Instance_Compilation_Unit_Nodes
5480 Decl_Cunit
: Node_Id
;
5481 Body_Cunit
: Node_Id
;
5483 New_Main
: constant Entity_Id
:= Defining_Entity
(Act_Decl
);
5484 Old_Main
: constant Entity_Id
:= Cunit_Entity
(Main_Unit
);
5487 -- A new compilation unit node is built for the instance declaration
5490 Make_Compilation_Unit
(Sloc
(N
),
5491 Context_Items
=> Empty_List
,
5493 Aux_Decls_Node
=> Make_Compilation_Unit_Aux
(Sloc
(N
)));
5495 Set_Parent_Spec
(Act_Decl
, Parent_Spec
(N
));
5497 -- The new compilation unit is linked to its body, but both share the
5498 -- same file, so we do not set Body_Required on the new unit so as not
5499 -- to create a spurious dependency on a non-existent body in the ali.
5500 -- This simplifies CodePeer unit traversal.
5502 -- We use the original instantiation compilation unit as the resulting
5503 -- compilation unit of the instance, since this is the main unit.
5505 Rewrite
(N
, Act_Body
);
5507 -- Propagate the aspect specifications from the package body template to
5508 -- the instantiated version of the package body.
5510 if Has_Aspects
(Act_Body
) then
5511 Set_Aspect_Specifications
5512 (N
, New_Copy_List_Tree
(Aspect_Specifications
(Act_Body
)));
5515 Body_Cunit
:= Parent
(N
);
5517 -- The two compilation unit nodes are linked by the Library_Unit field
5519 Set_Library_Unit
(Decl_Cunit
, Body_Cunit
);
5520 Set_Library_Unit
(Body_Cunit
, Decl_Cunit
);
5522 -- Preserve the private nature of the package if needed
5524 Set_Private_Present
(Decl_Cunit
, Private_Present
(Body_Cunit
));
5526 -- If the instance is not the main unit, its context, categorization
5527 -- and elaboration entity are not relevant to the compilation.
5529 if Body_Cunit
/= Cunit
(Main_Unit
) then
5530 Make_Instance_Unit
(Body_Cunit
, In_Main
=> False);
5534 -- The context clause items on the instantiation, which are now attached
5535 -- to the body compilation unit (since the body overwrote the original
5536 -- instantiation node), semantically belong on the spec, so copy them
5537 -- there. It's harmless to leave them on the body as well. In fact one
5538 -- could argue that they belong in both places.
5540 Citem
:= First
(Context_Items
(Body_Cunit
));
5541 while Present
(Citem
) loop
5542 Append
(New_Copy
(Citem
), Context_Items
(Decl_Cunit
));
5546 -- Propagate categorization flags on packages, so that they appear in
5547 -- the ali file for the spec of the unit.
5549 if Ekind
(New_Main
) = E_Package
then
5550 Set_Is_Pure
(Old_Main
, Is_Pure
(New_Main
));
5551 Set_Is_Preelaborated
(Old_Main
, Is_Preelaborated
(New_Main
));
5552 Set_Is_Remote_Types
(Old_Main
, Is_Remote_Types
(New_Main
));
5553 Set_Is_Shared_Passive
(Old_Main
, Is_Shared_Passive
(New_Main
));
5554 Set_Is_Remote_Call_Interface
5555 (Old_Main
, Is_Remote_Call_Interface
(New_Main
));
5558 -- Make entry in Units table, so that binder can generate call to
5559 -- elaboration procedure for body, if any.
5561 Make_Instance_Unit
(Body_Cunit
, In_Main
=> True);
5562 Main_Unit_Entity
:= New_Main
;
5563 Set_Cunit_Entity
(Main_Unit
, Main_Unit_Entity
);
5565 -- Build elaboration entity, since the instance may certainly generate
5566 -- elaboration code requiring a flag for protection.
5568 Build_Elaboration_Entity
(Decl_Cunit
, New_Main
);
5569 end Build_Instance_Compilation_Unit_Nodes
;
5571 -----------------------------
5572 -- Check_Access_Definition --
5573 -----------------------------
5575 procedure Check_Access_Definition
(N
: Node_Id
) is
5578 (Ada_Version
>= Ada_2005
and then Present
(Access_Definition
(N
)));
5580 end Check_Access_Definition
;
5582 -----------------------------------
5583 -- Check_Formal_Package_Instance --
5584 -----------------------------------
5586 -- If the formal has specific parameters, they must match those of the
5587 -- actual. Both of them are instances, and the renaming declarations for
5588 -- their formal parameters appear in the same order in both. The analyzed
5589 -- formal has been analyzed in the context of the current instance.
5591 procedure Check_Formal_Package_Instance
5592 (Formal_Pack
: Entity_Id
;
5593 Actual_Pack
: Entity_Id
)
5595 E1
: Entity_Id
:= First_Entity
(Actual_Pack
);
5596 E2
: Entity_Id
:= First_Entity
(Formal_Pack
);
5601 procedure Check_Mismatch
(B
: Boolean);
5602 -- Common error routine for mismatch between the parameters of the
5603 -- actual instance and those of the formal package.
5605 function Same_Instantiated_Constant
(E1
, E2
: Entity_Id
) return Boolean;
5606 -- The formal may come from a nested formal package, and the actual may
5607 -- have been constant-folded. To determine whether the two denote the
5608 -- same entity we may have to traverse several definitions to recover
5609 -- the ultimate entity that they refer to.
5611 function Same_Instantiated_Variable
(E1
, E2
: Entity_Id
) return Boolean;
5612 -- Similarly, if the formal comes from a nested formal package, the
5613 -- actual may designate the formal through multiple renamings, which
5614 -- have to be followed to determine the original variable in question.
5616 --------------------
5617 -- Check_Mismatch --
5618 --------------------
5620 procedure Check_Mismatch
(B
: Boolean) is
5621 Kind
: constant Node_Kind
:= Nkind
(Parent
(E2
));
5624 if Kind
= N_Formal_Type_Declaration
then
5627 elsif Nkind_In
(Kind
, N_Formal_Object_Declaration
,
5628 N_Formal_Package_Declaration
)
5629 or else Kind
in N_Formal_Subprogram_Declaration
5633 -- Ada 2012: If both formal and actual are incomplete types they
5636 elsif Is_Incomplete_Type
(E1
) and then Is_Incomplete_Type
(E2
) then
5641 ("actual for & in actual instance does not match formal",
5642 Parent
(Actual_Pack
), E1
);
5646 --------------------------------
5647 -- Same_Instantiated_Constant --
5648 --------------------------------
5650 function Same_Instantiated_Constant
5651 (E1
, E2
: Entity_Id
) return Boolean
5657 while Present
(Ent
) loop
5661 elsif Ekind
(Ent
) /= E_Constant
then
5664 elsif Is_Entity_Name
(Constant_Value
(Ent
)) then
5665 if Entity
(Constant_Value
(Ent
)) = E1
then
5668 Ent
:= Entity
(Constant_Value
(Ent
));
5671 -- The actual may be a constant that has been folded. Recover
5674 elsif Is_Entity_Name
(Original_Node
(Constant_Value
(Ent
))) then
5675 Ent
:= Entity
(Original_Node
(Constant_Value
(Ent
)));
5683 end Same_Instantiated_Constant
;
5685 --------------------------------
5686 -- Same_Instantiated_Variable --
5687 --------------------------------
5689 function Same_Instantiated_Variable
5690 (E1
, E2
: Entity_Id
) return Boolean
5692 function Original_Entity
(E
: Entity_Id
) return Entity_Id
;
5693 -- Follow chain of renamings to the ultimate ancestor
5695 ---------------------
5696 -- Original_Entity --
5697 ---------------------
5699 function Original_Entity
(E
: Entity_Id
) return Entity_Id
is
5704 while Nkind
(Parent
(Orig
)) = N_Object_Renaming_Declaration
5705 and then Present
(Renamed_Object
(Orig
))
5706 and then Is_Entity_Name
(Renamed_Object
(Orig
))
5708 Orig
:= Entity
(Renamed_Object
(Orig
));
5712 end Original_Entity
;
5714 -- Start of processing for Same_Instantiated_Variable
5717 return Ekind
(E1
) = Ekind
(E2
)
5718 and then Original_Entity
(E1
) = Original_Entity
(E2
);
5719 end Same_Instantiated_Variable
;
5721 -- Start of processing for Check_Formal_Package_Instance
5724 while Present
(E1
) and then Present
(E2
) loop
5725 exit when Ekind
(E1
) = E_Package
5726 and then Renamed_Entity
(E1
) = Renamed_Entity
(Actual_Pack
);
5728 -- If the formal is the renaming of the formal package, this
5729 -- is the end of its formal part, which may occur before the
5730 -- end of the formal part in the actual in the presence of
5731 -- defaulted parameters in the formal package.
5733 exit when Nkind
(Parent
(E2
)) = N_Package_Renaming_Declaration
5734 and then Renamed_Entity
(E2
) = Scope
(E2
);
5736 -- The analysis of the actual may generate additional internal
5737 -- entities. If the formal is defaulted, there is no corresponding
5738 -- analysis and the internal entities must be skipped, until we
5739 -- find corresponding entities again.
5741 if Comes_From_Source
(E2
)
5742 and then not Comes_From_Source
(E1
)
5743 and then Chars
(E1
) /= Chars
(E2
)
5745 while Present
(E1
) and then Chars
(E1
) /= Chars
(E2
) loop
5753 -- If the formal entity comes from a formal declaration, it was
5754 -- defaulted in the formal package, and no check is needed on it.
5756 elsif Nkind
(Parent
(E2
)) = N_Formal_Object_Declaration
then
5759 -- Ditto for defaulted formal subprograms.
5761 elsif Is_Overloadable
(E1
)
5762 and then Nkind
(Unit_Declaration_Node
(E2
)) in
5763 N_Formal_Subprogram_Declaration
5767 elsif Is_Type
(E1
) then
5769 -- Subtypes must statically match. E1, E2 are the local entities
5770 -- that are subtypes of the actuals. Itypes generated for other
5771 -- parameters need not be checked, the check will be performed
5772 -- on the parameters themselves.
5774 -- If E2 is a formal type declaration, it is a defaulted parameter
5775 -- and needs no checking.
5777 if not Is_Itype
(E1
) and then not Is_Itype
(E2
) then
5780 or else Etype
(E1
) /= Etype
(E2
)
5781 or else not Subtypes_Statically_Match
(E1
, E2
));
5784 elsif Ekind
(E1
) = E_Constant
then
5786 -- IN parameters must denote the same static value, or the same
5787 -- constant, or the literal null.
5789 Expr1
:= Expression
(Parent
(E1
));
5791 if Ekind
(E2
) /= E_Constant
then
5792 Check_Mismatch
(True);
5795 Expr2
:= Expression
(Parent
(E2
));
5798 if Is_OK_Static_Expression
(Expr1
) then
5799 if not Is_OK_Static_Expression
(Expr2
) then
5800 Check_Mismatch
(True);
5802 elsif Is_Discrete_Type
(Etype
(E1
)) then
5804 V1
: constant Uint
:= Expr_Value
(Expr1
);
5805 V2
: constant Uint
:= Expr_Value
(Expr2
);
5807 Check_Mismatch
(V1
/= V2
);
5810 elsif Is_Real_Type
(Etype
(E1
)) then
5812 V1
: constant Ureal
:= Expr_Value_R
(Expr1
);
5813 V2
: constant Ureal
:= Expr_Value_R
(Expr2
);
5815 Check_Mismatch
(V1
/= V2
);
5818 elsif Is_String_Type
(Etype
(E1
))
5819 and then Nkind
(Expr1
) = N_String_Literal
5821 if Nkind
(Expr2
) /= N_String_Literal
then
5822 Check_Mismatch
(True);
5825 (not String_Equal
(Strval
(Expr1
), Strval
(Expr2
)));
5829 elsif Is_Entity_Name
(Expr1
) then
5830 if Is_Entity_Name
(Expr2
) then
5831 if Entity
(Expr1
) = Entity
(Expr2
) then
5835 (not Same_Instantiated_Constant
5836 (Entity
(Expr1
), Entity
(Expr2
)));
5840 Check_Mismatch
(True);
5843 elsif Is_Entity_Name
(Original_Node
(Expr1
))
5844 and then Is_Entity_Name
(Expr2
)
5845 and then Same_Instantiated_Constant
5846 (Entity
(Original_Node
(Expr1
)), Entity
(Expr2
))
5850 elsif Nkind
(Expr1
) = N_Null
then
5851 Check_Mismatch
(Nkind
(Expr1
) /= N_Null
);
5854 Check_Mismatch
(True);
5857 elsif Ekind
(E1
) = E_Variable
then
5858 Check_Mismatch
(not Same_Instantiated_Variable
(E1
, E2
));
5860 elsif Ekind
(E1
) = E_Package
then
5862 (Ekind
(E1
) /= Ekind
(E2
)
5863 or else Renamed_Object
(E1
) /= Renamed_Object
(E2
));
5865 elsif Is_Overloadable
(E1
) then
5867 -- Verify that the actual subprograms match. Note that actuals
5868 -- that are attributes are rewritten as subprograms. If the
5869 -- subprogram in the formal package is defaulted, no check is
5870 -- needed. Note that this can only happen in Ada 2005 when the
5871 -- formal package can be partially parameterized.
5873 if Nkind
(Unit_Declaration_Node
(E1
)) =
5874 N_Subprogram_Renaming_Declaration
5875 and then From_Default
(Unit_Declaration_Node
(E1
))
5879 -- If the formal package has an "others" box association that
5880 -- covers this formal, there is no need for a check either.
5882 elsif Nkind
(Unit_Declaration_Node
(E2
)) in
5883 N_Formal_Subprogram_Declaration
5884 and then Box_Present
(Unit_Declaration_Node
(E2
))
5888 -- No check needed if subprogram is a defaulted null procedure
5890 elsif No
(Alias
(E2
))
5891 and then Ekind
(E2
) = E_Procedure
5893 Null_Present
(Specification
(Unit_Declaration_Node
(E2
)))
5897 -- Otherwise the actual in the formal and the actual in the
5898 -- instantiation of the formal must match, up to renamings.
5902 (Ekind
(E2
) /= Ekind
(E1
) or else (Alias
(E1
)) /= Alias
(E2
));
5906 raise Program_Error
;
5913 end Check_Formal_Package_Instance
;
5915 ---------------------------
5916 -- Check_Formal_Packages --
5917 ---------------------------
5919 procedure Check_Formal_Packages
(P_Id
: Entity_Id
) is
5921 Formal_P
: Entity_Id
;
5924 -- Iterate through the declarations in the instance, looking for package
5925 -- renaming declarations that denote instances of formal packages. Stop
5926 -- when we find the renaming of the current package itself. The
5927 -- declaration for a formal package without a box is followed by an
5928 -- internal entity that repeats the instantiation.
5930 E
:= First_Entity
(P_Id
);
5931 while Present
(E
) loop
5932 if Ekind
(E
) = E_Package
then
5933 if Renamed_Object
(E
) = P_Id
then
5936 elsif Nkind
(Parent
(E
)) /= N_Package_Renaming_Declaration
then
5939 elsif not Box_Present
(Parent
(Associated_Formal_Package
(E
))) then
5940 Formal_P
:= Next_Entity
(E
);
5941 Check_Formal_Package_Instance
(Formal_P
, E
);
5943 -- After checking, remove the internal validating package. It
5944 -- is only needed for semantic checks, and as it may contain
5945 -- generic formal declarations it should not reach gigi.
5947 Remove
(Unit_Declaration_Node
(Formal_P
));
5953 end Check_Formal_Packages
;
5955 ---------------------------------
5956 -- Check_Forward_Instantiation --
5957 ---------------------------------
5959 procedure Check_Forward_Instantiation
(Decl
: Node_Id
) is
5961 Gen_Comp
: Entity_Id
:= Cunit_Entity
(Get_Source_Unit
(Decl
));
5964 -- The instantiation appears before the generic body if we are in the
5965 -- scope of the unit containing the generic, either in its spec or in
5966 -- the package body, and before the generic body.
5968 if Ekind
(Gen_Comp
) = E_Package_Body
then
5969 Gen_Comp
:= Spec_Entity
(Gen_Comp
);
5972 if In_Open_Scopes
(Gen_Comp
)
5973 and then No
(Corresponding_Body
(Decl
))
5978 and then not Is_Compilation_Unit
(S
)
5979 and then not Is_Child_Unit
(S
)
5981 if Ekind
(S
) = E_Package
then
5982 Set_Has_Forward_Instantiation
(S
);
5988 end Check_Forward_Instantiation
;
5990 ---------------------------
5991 -- Check_Generic_Actuals --
5992 ---------------------------
5994 -- The visibility of the actuals may be different between the point of
5995 -- generic instantiation and the instantiation of the body.
5997 procedure Check_Generic_Actuals
5998 (Instance
: Entity_Id
;
5999 Is_Formal_Box
: Boolean)
6004 function Denotes_Previous_Actual
(Typ
: Entity_Id
) return Boolean;
6005 -- For a formal that is an array type, the component type is often a
6006 -- previous formal in the same unit. The privacy status of the component
6007 -- type will have been examined earlier in the traversal of the
6008 -- corresponding actuals, and this status should not be modified for
6009 -- the array (sub)type itself. However, if the base type of the array
6010 -- (sub)type is private, its full view must be restored in the body to
6011 -- be consistent with subsequent index subtypes, etc.
6013 -- To detect this case we have to rescan the list of formals, which is
6014 -- usually short enough to ignore the resulting inefficiency.
6016 -----------------------------
6017 -- Denotes_Previous_Actual --
6018 -----------------------------
6020 function Denotes_Previous_Actual
(Typ
: Entity_Id
) return Boolean is
6024 Prev
:= First_Entity
(Instance
);
6025 while Present
(Prev
) loop
6027 and then Nkind
(Parent
(Prev
)) = N_Subtype_Declaration
6028 and then Is_Entity_Name
(Subtype_Indication
(Parent
(Prev
)))
6029 and then Entity
(Subtype_Indication
(Parent
(Prev
))) = Typ
6042 end Denotes_Previous_Actual
;
6044 -- Start of processing for Check_Generic_Actuals
6047 E
:= First_Entity
(Instance
);
6048 while Present
(E
) loop
6050 and then Nkind
(Parent
(E
)) = N_Subtype_Declaration
6051 and then Scope
(Etype
(E
)) /= Instance
6052 and then Is_Entity_Name
(Subtype_Indication
(Parent
(E
)))
6054 if Is_Array_Type
(E
)
6055 and then not Is_Private_Type
(Etype
(E
))
6056 and then Denotes_Previous_Actual
(Component_Type
(E
))
6060 Check_Private_View
(Subtype_Indication
(Parent
(E
)));
6063 Set_Is_Generic_Actual_Type
(E
, True);
6064 Set_Is_Hidden
(E
, False);
6065 Set_Is_Potentially_Use_Visible
(E
,
6068 -- We constructed the generic actual type as a subtype of the
6069 -- supplied type. This means that it normally would not inherit
6070 -- subtype specific attributes of the actual, which is wrong for
6071 -- the generic case.
6073 Astype
:= Ancestor_Subtype
(E
);
6077 -- This can happen when E is an itype that is the full view of
6078 -- a private type completed, e.g. with a constrained array. In
6079 -- that case, use the first subtype, which will carry size
6080 -- information. The base type itself is unconstrained and will
6083 Astype
:= First_Subtype
(E
);
6086 Set_Size_Info
(E
, (Astype
));
6087 Set_RM_Size
(E
, RM_Size
(Astype
));
6088 Set_First_Rep_Item
(E
, First_Rep_Item
(Astype
));
6090 if Is_Discrete_Or_Fixed_Point_Type
(E
) then
6091 Set_RM_Size
(E
, RM_Size
(Astype
));
6093 -- In nested instances, the base type of an access actual may
6094 -- itself be private, and need to be exchanged.
6096 elsif Is_Access_Type
(E
)
6097 and then Is_Private_Type
(Etype
(E
))
6100 (New_Occurrence_Of
(Etype
(E
), Sloc
(Instance
)));
6103 elsif Ekind
(E
) = E_Package
then
6105 -- If this is the renaming for the current instance, we're done.
6106 -- Otherwise it is a formal package. If the corresponding formal
6107 -- was declared with a box, the (instantiations of the) generic
6108 -- formal part are also visible. Otherwise, ignore the entity
6109 -- created to validate the actuals.
6111 if Renamed_Object
(E
) = Instance
then
6114 elsif Nkind
(Parent
(E
)) /= N_Package_Renaming_Declaration
then
6117 -- The visibility of a formal of an enclosing generic is already
6120 elsif Denotes_Formal_Package
(E
) then
6123 elsif Present
(Associated_Formal_Package
(E
))
6124 and then not Is_Generic_Formal
(E
)
6126 if Box_Present
(Parent
(Associated_Formal_Package
(E
))) then
6127 Check_Generic_Actuals
(Renamed_Object
(E
), True);
6130 Check_Generic_Actuals
(Renamed_Object
(E
), False);
6133 Set_Is_Hidden
(E
, False);
6136 -- If this is a subprogram instance (in a wrapper package) the
6137 -- actual is fully visible.
6139 elsif Is_Wrapper_Package
(Instance
) then
6140 Set_Is_Hidden
(E
, False);
6142 -- If the formal package is declared with a box, or if the formal
6143 -- parameter is defaulted, it is visible in the body.
6145 elsif Is_Formal_Box
or else Is_Visible_Formal
(E
) then
6146 Set_Is_Hidden
(E
, False);
6149 if Ekind
(E
) = E_Constant
then
6151 -- If the type of the actual is a private type declared in the
6152 -- enclosing scope of the generic unit, the body of the generic
6153 -- sees the full view of the type (because it has to appear in
6154 -- the corresponding package body). If the type is private now,
6155 -- exchange views to restore the proper visiblity in the instance.
6158 Typ
: constant Entity_Id
:= Base_Type
(Etype
(E
));
6159 -- The type of the actual
6164 Parent_Scope
: Entity_Id
;
6165 -- The enclosing scope of the generic unit
6168 if Is_Wrapper_Package
(Instance
) then
6172 (Unit_Declaration_Node
6173 (Related_Instance
(Instance
))));
6176 Generic_Parent
(Package_Specification
(Instance
));
6179 Parent_Scope
:= Scope
(Gen_Id
);
6181 -- The exchange is only needed if the generic is defined
6182 -- within a package which is not a common ancestor of the
6183 -- scope of the instance, and is not already in scope.
6185 if Is_Private_Type
(Typ
)
6186 and then Scope
(Typ
) = Parent_Scope
6187 and then Scope
(Instance
) /= Parent_Scope
6188 and then Ekind
(Parent_Scope
) = E_Package
6189 and then not Is_Child_Unit
(Gen_Id
)
6193 -- If the type of the entity is a subtype, it may also have
6194 -- to be made visible, together with the base type of its
6195 -- full view, after exchange.
6197 if Is_Private_Type
(Etype
(E
)) then
6198 Switch_View
(Etype
(E
));
6199 Switch_View
(Base_Type
(Etype
(E
)));
6207 end Check_Generic_Actuals
;
6209 ------------------------------
6210 -- Check_Generic_Child_Unit --
6211 ------------------------------
6213 procedure Check_Generic_Child_Unit
6215 Parent_Installed
: in out Boolean)
6217 Loc
: constant Source_Ptr
:= Sloc
(Gen_Id
);
6218 Gen_Par
: Entity_Id
:= Empty
;
6220 Inst_Par
: Entity_Id
;
6223 function Find_Generic_Child
6225 Id
: Node_Id
) return Entity_Id
;
6226 -- Search generic parent for possible child unit with the given name
6228 function In_Enclosing_Instance
return Boolean;
6229 -- Within an instance of the parent, the child unit may be denoted by
6230 -- a simple name, or an abbreviated expanded name. Examine enclosing
6231 -- scopes to locate a possible parent instantiation.
6233 ------------------------
6234 -- Find_Generic_Child --
6235 ------------------------
6237 function Find_Generic_Child
6239 Id
: Node_Id
) return Entity_Id
6244 -- If entity of name is already set, instance has already been
6245 -- resolved, e.g. in an enclosing instantiation.
6247 if Present
(Entity
(Id
)) then
6248 if Scope
(Entity
(Id
)) = Scop
then
6255 E
:= First_Entity
(Scop
);
6256 while Present
(E
) loop
6257 if Chars
(E
) = Chars
(Id
)
6258 and then Is_Child_Unit
(E
)
6260 if Is_Child_Unit
(E
)
6261 and then not Is_Visible_Lib_Unit
(E
)
6264 ("generic child unit& is not visible", Gen_Id
, E
);
6276 end Find_Generic_Child
;
6278 ---------------------------
6279 -- In_Enclosing_Instance --
6280 ---------------------------
6282 function In_Enclosing_Instance
return Boolean is
6283 Enclosing_Instance
: Node_Id
;
6284 Instance_Decl
: Node_Id
;
6287 -- We do not inline any call that contains instantiations, except
6288 -- for instantiations of Unchecked_Conversion, so if we are within
6289 -- an inlined body the current instance does not require parents.
6291 if In_Inlined_Body
then
6292 pragma Assert
(Chars
(Gen_Id
) = Name_Unchecked_Conversion
);
6296 -- Loop to check enclosing scopes
6298 Enclosing_Instance
:= Current_Scope
;
6299 while Present
(Enclosing_Instance
) loop
6300 Instance_Decl
:= Unit_Declaration_Node
(Enclosing_Instance
);
6302 if Ekind
(Enclosing_Instance
) = E_Package
6303 and then Is_Generic_Instance
(Enclosing_Instance
)
6305 (Generic_Parent
(Specification
(Instance_Decl
)))
6307 -- Check whether the generic we are looking for is a child of
6310 E
:= Find_Generic_Child
6311 (Generic_Parent
(Specification
(Instance_Decl
)), Gen_Id
);
6312 exit when Present
(E
);
6318 Enclosing_Instance
:= Scope
(Enclosing_Instance
);
6330 Make_Expanded_Name
(Loc
,
6332 Prefix
=> New_Occurrence_Of
(Enclosing_Instance
, Loc
),
6333 Selector_Name
=> New_Occurrence_Of
(E
, Loc
)));
6335 Set_Entity
(Gen_Id
, E
);
6336 Set_Etype
(Gen_Id
, Etype
(E
));
6337 Parent_Installed
:= False; -- Already in scope.
6340 end In_Enclosing_Instance
;
6342 -- Start of processing for Check_Generic_Child_Unit
6345 -- If the name of the generic is given by a selected component, it may
6346 -- be the name of a generic child unit, and the prefix is the name of an
6347 -- instance of the parent, in which case the child unit must be visible.
6348 -- If this instance is not in scope, it must be placed there and removed
6349 -- after instantiation, because what is being instantiated is not the
6350 -- original child, but the corresponding child present in the instance
6353 -- If the child is instantiated within the parent, it can be given by
6354 -- a simple name. In this case the instance is already in scope, but
6355 -- the child generic must be recovered from the generic parent as well.
6357 if Nkind
(Gen_Id
) = N_Selected_Component
then
6358 S
:= Selector_Name
(Gen_Id
);
6359 Analyze
(Prefix
(Gen_Id
));
6360 Inst_Par
:= Entity
(Prefix
(Gen_Id
));
6362 if Ekind
(Inst_Par
) = E_Package
6363 and then Present
(Renamed_Object
(Inst_Par
))
6365 Inst_Par
:= Renamed_Object
(Inst_Par
);
6368 if Ekind
(Inst_Par
) = E_Package
then
6369 if Nkind
(Parent
(Inst_Par
)) = N_Package_Specification
then
6370 Gen_Par
:= Generic_Parent
(Parent
(Inst_Par
));
6372 elsif Nkind
(Parent
(Inst_Par
)) = N_Defining_Program_Unit_Name
6374 Nkind
(Parent
(Parent
(Inst_Par
))) = N_Package_Specification
6376 Gen_Par
:= Generic_Parent
(Parent
(Parent
(Inst_Par
)));
6379 elsif Ekind
(Inst_Par
) = E_Generic_Package
6380 and then Nkind
(Parent
(Gen_Id
)) = N_Formal_Package_Declaration
6382 -- A formal package may be a real child package, and not the
6383 -- implicit instance within a parent. In this case the child is
6384 -- not visible and has to be retrieved explicitly as well.
6386 Gen_Par
:= Inst_Par
;
6389 if Present
(Gen_Par
) then
6391 -- The prefix denotes an instantiation. The entity itself may be a
6392 -- nested generic, or a child unit.
6394 E
:= Find_Generic_Child
(Gen_Par
, S
);
6397 Change_Selected_Component_To_Expanded_Name
(Gen_Id
);
6398 Set_Entity
(Gen_Id
, E
);
6399 Set_Etype
(Gen_Id
, Etype
(E
));
6401 Set_Etype
(S
, Etype
(E
));
6403 -- Indicate that this is a reference to the parent
6405 if In_Extended_Main_Source_Unit
(Gen_Id
) then
6406 Set_Is_Instantiated
(Inst_Par
);
6409 -- A common mistake is to replicate the naming scheme of a
6410 -- hierarchy by instantiating a generic child directly, rather
6411 -- than the implicit child in a parent instance:
6413 -- generic .. package Gpar is ..
6414 -- generic .. package Gpar.Child is ..
6415 -- package Par is new Gpar ();
6418 -- package Par.Child is new Gpar.Child ();
6419 -- rather than Par.Child
6421 -- In this case the instantiation is within Par, which is an
6422 -- instance, but Gpar does not denote Par because we are not IN
6423 -- the instance of Gpar, so this is illegal. The test below
6424 -- recognizes this particular case.
6426 if Is_Child_Unit
(E
)
6427 and then not Comes_From_Source
(Entity
(Prefix
(Gen_Id
)))
6428 and then (not In_Instance
6429 or else Nkind
(Parent
(Parent
(Gen_Id
))) =
6433 ("prefix of generic child unit must be instance of parent",
6437 if not In_Open_Scopes
(Inst_Par
)
6438 and then Nkind
(Parent
(Gen_Id
)) not in
6439 N_Generic_Renaming_Declaration
6441 Install_Parent
(Inst_Par
);
6442 Parent_Installed
:= True;
6444 elsif In_Open_Scopes
(Inst_Par
) then
6446 -- If the parent is already installed, install the actuals
6447 -- for its formal packages. This is necessary when the child
6448 -- instance is a child of the parent instance: in this case,
6449 -- the parent is placed on the scope stack but the formal
6450 -- packages are not made visible.
6452 Install_Formal_Packages
(Inst_Par
);
6456 -- If the generic parent does not contain an entity that
6457 -- corresponds to the selector, the instance doesn't either.
6458 -- Analyzing the node will yield the appropriate error message.
6459 -- If the entity is not a child unit, then it is an inner
6460 -- generic in the parent.
6468 if Is_Child_Unit
(Entity
(Gen_Id
))
6470 Nkind
(Parent
(Gen_Id
)) not in N_Generic_Renaming_Declaration
6471 and then not In_Open_Scopes
(Inst_Par
)
6473 Install_Parent
(Inst_Par
);
6474 Parent_Installed
:= True;
6476 -- The generic unit may be the renaming of the implicit child
6477 -- present in an instance. In that case the parent instance is
6478 -- obtained from the name of the renamed entity.
6480 elsif Ekind
(Entity
(Gen_Id
)) = E_Generic_Package
6481 and then Present
(Renamed_Entity
(Entity
(Gen_Id
)))
6482 and then Is_Child_Unit
(Renamed_Entity
(Entity
(Gen_Id
)))
6485 Renamed_Package
: constant Node_Id
:=
6486 Name
(Parent
(Entity
(Gen_Id
)));
6488 if Nkind
(Renamed_Package
) = N_Expanded_Name
then
6489 Inst_Par
:= Entity
(Prefix
(Renamed_Package
));
6490 Install_Parent
(Inst_Par
);
6491 Parent_Installed
:= True;
6497 elsif Nkind
(Gen_Id
) = N_Expanded_Name
then
6499 -- Entity already present, analyze prefix, whose meaning may be
6500 -- an instance in the current context. If it is an instance of
6501 -- a relative within another, the proper parent may still have
6502 -- to be installed, if they are not of the same generation.
6504 Analyze
(Prefix
(Gen_Id
));
6506 -- In the unlikely case that a local declaration hides the name
6507 -- of the parent package, locate it on the homonym chain. If the
6508 -- context is an instance of the parent, the renaming entity is
6511 Inst_Par
:= Entity
(Prefix
(Gen_Id
));
6512 while Present
(Inst_Par
)
6513 and then not Is_Package_Or_Generic_Package
(Inst_Par
)
6515 Inst_Par
:= Homonym
(Inst_Par
);
6518 pragma Assert
(Present
(Inst_Par
));
6519 Set_Entity
(Prefix
(Gen_Id
), Inst_Par
);
6521 if In_Enclosing_Instance
then
6524 elsif Present
(Entity
(Gen_Id
))
6525 and then Is_Child_Unit
(Entity
(Gen_Id
))
6526 and then not In_Open_Scopes
(Inst_Par
)
6528 Install_Parent
(Inst_Par
);
6529 Parent_Installed
:= True;
6532 elsif In_Enclosing_Instance
then
6534 -- The child unit is found in some enclosing scope
6541 -- If this is the renaming of the implicit child in a parent
6542 -- instance, recover the parent name and install it.
6544 if Is_Entity_Name
(Gen_Id
) then
6545 E
:= Entity
(Gen_Id
);
6547 if Is_Generic_Unit
(E
)
6548 and then Nkind
(Parent
(E
)) in N_Generic_Renaming_Declaration
6549 and then Is_Child_Unit
(Renamed_Object
(E
))
6550 and then Is_Generic_Unit
(Scope
(Renamed_Object
(E
)))
6551 and then Nkind
(Name
(Parent
(E
))) = N_Expanded_Name
6553 Rewrite
(Gen_Id
, New_Copy_Tree
(Name
(Parent
(E
))));
6554 Inst_Par
:= Entity
(Prefix
(Gen_Id
));
6556 if not In_Open_Scopes
(Inst_Par
) then
6557 Install_Parent
(Inst_Par
);
6558 Parent_Installed
:= True;
6561 -- If it is a child unit of a non-generic parent, it may be
6562 -- use-visible and given by a direct name. Install parent as
6565 elsif Is_Generic_Unit
(E
)
6566 and then Is_Child_Unit
(E
)
6568 Nkind
(Parent
(Gen_Id
)) not in N_Generic_Renaming_Declaration
6569 and then not Is_Generic_Unit
(Scope
(E
))
6571 if not In_Open_Scopes
(Scope
(E
)) then
6572 Install_Parent
(Scope
(E
));
6573 Parent_Installed
:= True;
6578 end Check_Generic_Child_Unit
;
6580 -----------------------------
6581 -- Check_Hidden_Child_Unit --
6582 -----------------------------
6584 procedure Check_Hidden_Child_Unit
6586 Gen_Unit
: Entity_Id
;
6587 Act_Decl_Id
: Entity_Id
)
6589 Gen_Id
: constant Node_Id
:= Name
(N
);
6592 if Is_Child_Unit
(Gen_Unit
)
6593 and then Is_Child_Unit
(Act_Decl_Id
)
6594 and then Nkind
(Gen_Id
) = N_Expanded_Name
6595 and then Entity
(Prefix
(Gen_Id
)) = Scope
(Act_Decl_Id
)
6596 and then Chars
(Gen_Unit
) = Chars
(Act_Decl_Id
)
6598 Error_Msg_Node_2
:= Scope
(Act_Decl_Id
);
6600 ("generic unit & is implicitly declared in &",
6601 Defining_Unit_Name
(N
), Gen_Unit
);
6602 Error_Msg_N
("\instance must have different name",
6603 Defining_Unit_Name
(N
));
6605 end Check_Hidden_Child_Unit
;
6607 ------------------------
6608 -- Check_Private_View --
6609 ------------------------
6611 procedure Check_Private_View
(N
: Node_Id
) is
6612 T
: constant Entity_Id
:= Etype
(N
);
6616 -- Exchange views if the type was not private in the generic but is
6617 -- private at the point of instantiation. Do not exchange views if
6618 -- the scope of the type is in scope. This can happen if both generic
6619 -- and instance are sibling units, or if type is defined in a parent.
6620 -- In this case the visibility of the type will be correct for all
6624 BT
:= Base_Type
(T
);
6626 if Is_Private_Type
(T
)
6627 and then not Has_Private_View
(N
)
6628 and then Present
(Full_View
(T
))
6629 and then not In_Open_Scopes
(Scope
(T
))
6631 -- In the generic, the full type was visible. Save the private
6632 -- entity, for subsequent exchange.
6636 elsif Has_Private_View
(N
)
6637 and then not Is_Private_Type
(T
)
6638 and then not Has_Been_Exchanged
(T
)
6639 and then Etype
(Get_Associated_Node
(N
)) /= T
6641 -- Only the private declaration was visible in the generic. If
6642 -- the type appears in a subtype declaration, the subtype in the
6643 -- instance must have a view compatible with that of its parent,
6644 -- which must be exchanged (see corresponding code in Restore_
6645 -- Private_Views). Otherwise, if the type is defined in a parent
6646 -- unit, leave full visibility within instance, which is safe.
6648 if In_Open_Scopes
(Scope
(Base_Type
(T
)))
6649 and then not Is_Private_Type
(Base_Type
(T
))
6650 and then Comes_From_Source
(Base_Type
(T
))
6654 elsif Nkind
(Parent
(N
)) = N_Subtype_Declaration
6655 or else not In_Private_Part
(Scope
(Base_Type
(T
)))
6657 Prepend_Elmt
(T
, Exchanged_Views
);
6658 Exchange_Declarations
(Etype
(Get_Associated_Node
(N
)));
6661 -- For composite types with inconsistent representation exchange
6662 -- component types accordingly.
6664 elsif Is_Access_Type
(T
)
6665 and then Is_Private_Type
(Designated_Type
(T
))
6666 and then not Has_Private_View
(N
)
6667 and then Present
(Full_View
(Designated_Type
(T
)))
6669 Switch_View
(Designated_Type
(T
));
6671 elsif Is_Array_Type
(T
) then
6672 if Is_Private_Type
(Component_Type
(T
))
6673 and then not Has_Private_View
(N
)
6674 and then Present
(Full_View
(Component_Type
(T
)))
6676 Switch_View
(Component_Type
(T
));
6679 -- The normal exchange mechanism relies on the setting of a
6680 -- flag on the reference in the generic. However, an additional
6681 -- mechanism is needed for types that are not explicitly
6682 -- mentioned in the generic, but may be needed in expanded code
6683 -- in the instance. This includes component types of arrays and
6684 -- designated types of access types. This processing must also
6685 -- include the index types of arrays which we take care of here.
6692 Indx
:= First_Index
(T
);
6693 while Present
(Indx
) loop
6694 Typ
:= Base_Type
(Etype
(Indx
));
6696 if Is_Private_Type
(Typ
)
6697 and then Present
(Full_View
(Typ
))
6706 elsif Is_Private_Type
(T
)
6707 and then Present
(Full_View
(T
))
6708 and then Is_Array_Type
(Full_View
(T
))
6709 and then Is_Private_Type
(Component_Type
(Full_View
(T
)))
6713 -- Finally, a non-private subtype may have a private base type, which
6714 -- must be exchanged for consistency. This can happen when a package
6715 -- body is instantiated, when the scope stack is empty but in fact
6716 -- the subtype and the base type are declared in an enclosing scope.
6718 -- Note that in this case we introduce an inconsistency in the view
6719 -- set, because we switch the base type BT, but there could be some
6720 -- private dependent subtypes of BT which remain unswitched. Such
6721 -- subtypes might need to be switched at a later point (see specific
6722 -- provision for that case in Switch_View).
6724 elsif not Is_Private_Type
(T
)
6725 and then not Has_Private_View
(N
)
6726 and then Is_Private_Type
(BT
)
6727 and then Present
(Full_View
(BT
))
6728 and then not Is_Generic_Type
(BT
)
6729 and then not In_Open_Scopes
(BT
)
6731 Prepend_Elmt
(Full_View
(BT
), Exchanged_Views
);
6732 Exchange_Declarations
(BT
);
6735 end Check_Private_View
;
6737 -----------------------------
6738 -- Check_Hidden_Primitives --
6739 -----------------------------
6741 function Check_Hidden_Primitives
(Assoc_List
: List_Id
) return Elist_Id
is
6744 Result
: Elist_Id
:= No_Elist
;
6747 if No
(Assoc_List
) then
6751 -- Traverse the list of associations between formals and actuals
6752 -- searching for renamings of tagged types
6754 Actual
:= First
(Assoc_List
);
6755 while Present
(Actual
) loop
6756 if Nkind
(Actual
) = N_Subtype_Declaration
then
6757 Gen_T
:= Generic_Parent_Type
(Actual
);
6759 if Present
(Gen_T
) and then Is_Tagged_Type
(Gen_T
) then
6761 -- Traverse the list of primitives of the actual types
6762 -- searching for hidden primitives that are visible in the
6763 -- corresponding generic formal; leave them visible and
6764 -- append them to Result to restore their decoration later.
6766 Install_Hidden_Primitives
6767 (Prims_List
=> Result
,
6769 Act_T
=> Entity
(Subtype_Indication
(Actual
)));
6777 end Check_Hidden_Primitives
;
6779 --------------------------
6780 -- Contains_Instance_Of --
6781 --------------------------
6783 function Contains_Instance_Of
6786 N
: Node_Id
) return Boolean
6794 -- Verify that there are no circular instantiations. We check whether
6795 -- the unit contains an instance of the current scope or some enclosing
6796 -- scope (in case one of the instances appears in a subunit). Longer
6797 -- circularities involving subunits might seem too pathological to
6798 -- consider, but they were not too pathological for the authors of
6799 -- DEC bc30vsq, so we loop over all enclosing scopes, and mark all
6800 -- enclosing generic scopes as containing an instance.
6803 -- Within a generic subprogram body, the scope is not generic, to
6804 -- allow for recursive subprograms. Use the declaration to determine
6805 -- whether this is a generic unit.
6807 if Ekind
(Scop
) = E_Generic_Package
6808 or else (Is_Subprogram
(Scop
)
6809 and then Nkind
(Unit_Declaration_Node
(Scop
)) =
6810 N_Generic_Subprogram_Declaration
)
6812 Elmt
:= First_Elmt
(Inner_Instances
(Inner
));
6814 while Present
(Elmt
) loop
6815 if Node
(Elmt
) = Scop
then
6816 Error_Msg_Node_2
:= Inner
;
6818 ("circular Instantiation: & instantiated within &!",
6822 elsif Node
(Elmt
) = Inner
then
6825 elsif Contains_Instance_Of
(Node
(Elmt
), Scop
, N
) then
6826 Error_Msg_Node_2
:= Inner
;
6828 ("circular Instantiation: & instantiated within &!",
6836 -- Indicate that Inner is being instantiated within Scop
6838 Append_Elmt
(Inner
, Inner_Instances
(Scop
));
6841 if Scop
= Standard_Standard
then
6844 Scop
:= Scope
(Scop
);
6849 end Contains_Instance_Of
;
6851 -----------------------
6852 -- Copy_Generic_Node --
6853 -----------------------
6855 function Copy_Generic_Node
6857 Parent_Id
: Node_Id
;
6858 Instantiating
: Boolean) return Node_Id
6863 function Copy_Generic_Descendant
(D
: Union_Id
) return Union_Id
;
6864 -- Check the given value of one of the Fields referenced by the current
6865 -- node to determine whether to copy it recursively. The field may hold
6866 -- a Node_Id, a List_Id, or an Elist_Id, or a plain value (Sloc, Uint,
6867 -- Char) in which case it need not be copied.
6869 procedure Copy_Descendants
;
6870 -- Common utility for various nodes
6872 function Copy_Generic_Elist
(E
: Elist_Id
) return Elist_Id
;
6873 -- Make copy of element list
6875 function Copy_Generic_List
6877 Parent_Id
: Node_Id
) return List_Id
;
6878 -- Apply Copy_Node recursively to the members of a node list
6880 function In_Defining_Unit_Name
(Nam
: Node_Id
) return Boolean;
6881 -- True if an identifier is part of the defining program unit name of
6882 -- a child unit. The entity of such an identifier must be kept (for
6883 -- ASIS use) even though as the name of an enclosing generic it would
6884 -- otherwise not be preserved in the generic tree.
6886 ----------------------
6887 -- Copy_Descendants --
6888 ----------------------
6890 procedure Copy_Descendants
is
6892 use Atree
.Unchecked_Access
;
6893 -- This code section is part of the implementation of an untyped
6894 -- tree traversal, so it needs direct access to node fields.
6897 Set_Field1
(New_N
, Copy_Generic_Descendant
(Field1
(N
)));
6898 Set_Field2
(New_N
, Copy_Generic_Descendant
(Field2
(N
)));
6899 Set_Field3
(New_N
, Copy_Generic_Descendant
(Field3
(N
)));
6900 Set_Field4
(New_N
, Copy_Generic_Descendant
(Field4
(N
)));
6901 Set_Field5
(New_N
, Copy_Generic_Descendant
(Field5
(N
)));
6902 end Copy_Descendants
;
6904 -----------------------------
6905 -- Copy_Generic_Descendant --
6906 -----------------------------
6908 function Copy_Generic_Descendant
(D
: Union_Id
) return Union_Id
is
6910 if D
= Union_Id
(Empty
) then
6913 elsif D
in Node_Range
then
6915 (Copy_Generic_Node
(Node_Id
(D
), New_N
, Instantiating
));
6917 elsif D
in List_Range
then
6918 return Union_Id
(Copy_Generic_List
(List_Id
(D
), New_N
));
6920 elsif D
in Elist_Range
then
6921 return Union_Id
(Copy_Generic_Elist
(Elist_Id
(D
)));
6923 -- Nothing else is copyable (e.g. Uint values), return as is
6928 end Copy_Generic_Descendant
;
6930 ------------------------
6931 -- Copy_Generic_Elist --
6932 ------------------------
6934 function Copy_Generic_Elist
(E
: Elist_Id
) return Elist_Id
is
6941 M
:= First_Elmt
(E
);
6942 while Present
(M
) loop
6944 (Copy_Generic_Node
(Node
(M
), Empty
, Instantiating
), L
);
6953 end Copy_Generic_Elist
;
6955 -----------------------
6956 -- Copy_Generic_List --
6957 -----------------------
6959 function Copy_Generic_List
6961 Parent_Id
: Node_Id
) return List_Id
6969 Set_Parent
(New_L
, Parent_Id
);
6972 while Present
(N
) loop
6973 Append
(Copy_Generic_Node
(N
, Empty
, Instantiating
), New_L
);
6982 end Copy_Generic_List
;
6984 ---------------------------
6985 -- In_Defining_Unit_Name --
6986 ---------------------------
6988 function In_Defining_Unit_Name
(Nam
: Node_Id
) return Boolean is
6990 return Present
(Parent
(Nam
))
6991 and then (Nkind
(Parent
(Nam
)) = N_Defining_Program_Unit_Name
6993 (Nkind
(Parent
(Nam
)) = N_Expanded_Name
6994 and then In_Defining_Unit_Name
(Parent
(Nam
))));
6995 end In_Defining_Unit_Name
;
6997 -- Start of processing for Copy_Generic_Node
7004 New_N
:= New_Copy
(N
);
7006 -- Copy aspects if present
7008 if Has_Aspects
(N
) then
7009 Set_Has_Aspects
(New_N
, False);
7010 Set_Aspect_Specifications
7011 (New_N
, Copy_Generic_List
(Aspect_Specifications
(N
), Parent_Id
));
7014 if Instantiating
then
7015 Adjust_Instantiation_Sloc
(New_N
, S_Adjustment
);
7018 if not Is_List_Member
(N
) then
7019 Set_Parent
(New_N
, Parent_Id
);
7022 -- If defining identifier, then all fields have been copied already
7024 if Nkind
(New_N
) in N_Entity
then
7027 -- Special casing for identifiers and other entity names and operators
7029 elsif Nkind_In
(New_N
, N_Identifier
,
7030 N_Character_Literal
,
7033 or else Nkind
(New_N
) in N_Op
7035 if not Instantiating
then
7037 -- Link both nodes in order to assign subsequently the entity of
7038 -- the copy to the original node, in case this is a global
7041 Set_Associated_Node
(N
, New_N
);
7043 -- If we are within an instantiation, this is a nested generic
7044 -- that has already been analyzed at the point of definition.
7045 -- We must preserve references that were global to the enclosing
7046 -- parent at that point. Other occurrences, whether global or
7047 -- local to the current generic, must be resolved anew, so we
7048 -- reset the entity in the generic copy. A global reference has a
7049 -- smaller depth than the parent, or else the same depth in case
7050 -- both are distinct compilation units.
7052 -- A child unit is implicitly declared within the enclosing parent
7053 -- but is in fact global to it, and must be preserved.
7055 -- It is also possible for Current_Instantiated_Parent to be
7056 -- defined, and for this not to be a nested generic, namely if
7057 -- the unit is loaded through Rtsfind. In that case, the entity of
7058 -- New_N is only a link to the associated node, and not a defining
7061 -- The entities for parent units in the defining_program_unit of a
7062 -- generic child unit are established when the context of the unit
7063 -- is first analyzed, before the generic copy is made. They are
7064 -- preserved in the copy for use in ASIS queries.
7066 Ent
:= Entity
(New_N
);
7068 if No
(Current_Instantiated_Parent
.Gen_Id
) then
7070 or else Nkind
(Ent
) /= N_Defining_Identifier
7071 or else not In_Defining_Unit_Name
(N
)
7073 Set_Associated_Node
(New_N
, Empty
);
7078 not Nkind_In
(Ent
, N_Defining_Identifier
,
7079 N_Defining_Character_Literal
,
7080 N_Defining_Operator_Symbol
)
7081 or else No
(Scope
(Ent
))
7083 (Scope
(Ent
) = Current_Instantiated_Parent
.Gen_Id
7084 and then not Is_Child_Unit
(Ent
))
7086 (Scope_Depth
(Scope
(Ent
)) >
7087 Scope_Depth
(Current_Instantiated_Parent
.Gen_Id
)
7089 Get_Source_Unit
(Ent
) =
7090 Get_Source_Unit
(Current_Instantiated_Parent
.Gen_Id
))
7092 Set_Associated_Node
(New_N
, Empty
);
7095 -- Case of instantiating identifier or some other name or operator
7098 -- If the associated node is still defined, the entity in it
7099 -- is global, and must be copied to the instance. If this copy
7100 -- is being made for a body to inline, it is applied to an
7101 -- instantiated tree, and the entity is already present and
7102 -- must be also preserved.
7105 Assoc
: constant Node_Id
:= Get_Associated_Node
(N
);
7108 if Present
(Assoc
) then
7109 if Nkind
(Assoc
) = Nkind
(N
) then
7110 Set_Entity
(New_N
, Entity
(Assoc
));
7111 Check_Private_View
(N
);
7113 -- The name in the call may be a selected component if the
7114 -- call has not been analyzed yet, as may be the case for
7115 -- pre/post conditions in a generic unit.
7117 elsif Nkind
(Assoc
) = N_Function_Call
7118 and then Is_Entity_Name
(Name
(Assoc
))
7120 Set_Entity
(New_N
, Entity
(Name
(Assoc
)));
7122 elsif Nkind_In
(Assoc
, N_Defining_Identifier
,
7123 N_Defining_Character_Literal
,
7124 N_Defining_Operator_Symbol
)
7125 and then Expander_Active
7127 -- Inlining case: we are copying a tree that contains
7128 -- global entities, which are preserved in the copy to be
7129 -- used for subsequent inlining.
7134 Set_Entity
(New_N
, Empty
);
7140 -- For expanded name, we must copy the Prefix and Selector_Name
7142 if Nkind
(N
) = N_Expanded_Name
then
7144 (New_N
, Copy_Generic_Node
(Prefix
(N
), New_N
, Instantiating
));
7146 Set_Selector_Name
(New_N
,
7147 Copy_Generic_Node
(Selector_Name
(N
), New_N
, Instantiating
));
7149 -- For operators, we must copy the right operand
7151 elsif Nkind
(N
) in N_Op
then
7152 Set_Right_Opnd
(New_N
,
7153 Copy_Generic_Node
(Right_Opnd
(N
), New_N
, Instantiating
));
7155 -- And for binary operators, the left operand as well
7157 if Nkind
(N
) in N_Binary_Op
then
7158 Set_Left_Opnd
(New_N
,
7159 Copy_Generic_Node
(Left_Opnd
(N
), New_N
, Instantiating
));
7163 -- Special casing for stubs
7165 elsif Nkind
(N
) in N_Body_Stub
then
7167 -- In any case, we must copy the specification or defining
7168 -- identifier as appropriate.
7170 if Nkind
(N
) = N_Subprogram_Body_Stub
then
7171 Set_Specification
(New_N
,
7172 Copy_Generic_Node
(Specification
(N
), New_N
, Instantiating
));
7175 Set_Defining_Identifier
(New_N
,
7177 (Defining_Identifier
(N
), New_N
, Instantiating
));
7180 -- If we are not instantiating, then this is where we load and
7181 -- analyze subunits, i.e. at the point where the stub occurs. A
7182 -- more permissive system might defer this analysis to the point
7183 -- of instantiation, but this seems too complicated for now.
7185 if not Instantiating
then
7187 Subunit_Name
: constant Unit_Name_Type
:= Get_Unit_Name
(N
);
7189 Unum
: Unit_Number_Type
;
7193 -- Make sure that, if it is a subunit of the main unit that is
7194 -- preprocessed and if -gnateG is specified, the preprocessed
7195 -- file will be written.
7197 Lib
.Analysing_Subunit_Of_Main
:=
7198 Lib
.In_Extended_Main_Source_Unit
(N
);
7201 (Load_Name
=> Subunit_Name
,
7205 Lib
.Analysing_Subunit_Of_Main
:= False;
7207 -- If the proper body is not found, a warning message will be
7208 -- emitted when analyzing the stub, or later at the point of
7209 -- instantiation. Here we just leave the stub as is.
7211 if Unum
= No_Unit
then
7212 Subunits_Missing
:= True;
7213 goto Subunit_Not_Found
;
7216 Subunit
:= Cunit
(Unum
);
7218 if Nkind
(Unit
(Subunit
)) /= N_Subunit
then
7220 ("found child unit instead of expected SEPARATE subunit",
7222 Error_Msg_Sloc
:= Sloc
(N
);
7223 Error_Msg_N
("\to complete stub #", Subunit
);
7224 goto Subunit_Not_Found
;
7227 -- We must create a generic copy of the subunit, in order to
7228 -- perform semantic analysis on it, and we must replace the
7229 -- stub in the original generic unit with the subunit, in order
7230 -- to preserve non-local references within.
7232 -- Only the proper body needs to be copied. Library_Unit and
7233 -- context clause are simply inherited by the generic copy.
7234 -- Note that the copy (which may be recursive if there are
7235 -- nested subunits) must be done first, before attaching it to
7236 -- the enclosing generic.
7240 (Proper_Body
(Unit
(Subunit
)),
7241 Empty
, Instantiating
=> False);
7243 -- Now place the original proper body in the original generic
7244 -- unit. This is a body, not a compilation unit.
7246 Rewrite
(N
, Proper_Body
(Unit
(Subunit
)));
7247 Set_Is_Compilation_Unit
(Defining_Entity
(N
), False);
7248 Set_Was_Originally_Stub
(N
);
7250 -- Finally replace the body of the subunit with its copy, and
7251 -- make this new subunit into the library unit of the generic
7252 -- copy, which does not have stubs any longer.
7254 Set_Proper_Body
(Unit
(Subunit
), New_Body
);
7255 Set_Library_Unit
(New_N
, Subunit
);
7256 Inherit_Context
(Unit
(Subunit
), N
);
7259 -- If we are instantiating, this must be an error case, since
7260 -- otherwise we would have replaced the stub node by the proper body
7261 -- that corresponds. So just ignore it in the copy (i.e. we have
7262 -- copied it, and that is good enough).
7268 <<Subunit_Not_Found
>> null;
7270 -- If the node is a compilation unit, it is the subunit of a stub, which
7271 -- has been loaded already (see code below). In this case, the library
7272 -- unit field of N points to the parent unit (which is a compilation
7273 -- unit) and need not (and cannot) be copied.
7275 -- When the proper body of the stub is analyzed, the library_unit link
7276 -- is used to establish the proper context (see sem_ch10).
7278 -- The other fields of a compilation unit are copied as usual
7280 elsif Nkind
(N
) = N_Compilation_Unit
then
7282 -- This code can only be executed when not instantiating, because in
7283 -- the copy made for an instantiation, the compilation unit node has
7284 -- disappeared at the point that a stub is replaced by its proper
7287 pragma Assert
(not Instantiating
);
7289 Set_Context_Items
(New_N
,
7290 Copy_Generic_List
(Context_Items
(N
), New_N
));
7293 Copy_Generic_Node
(Unit
(N
), New_N
, False));
7295 Set_First_Inlined_Subprogram
(New_N
,
7297 (First_Inlined_Subprogram
(N
), New_N
, False));
7299 Set_Aux_Decls_Node
(New_N
,
7300 Copy_Generic_Node
(Aux_Decls_Node
(N
), New_N
, False));
7302 -- For an assignment node, the assignment is known to be semantically
7303 -- legal if we are instantiating the template. This avoids incorrect
7304 -- diagnostics in generated code.
7306 elsif Nkind
(N
) = N_Assignment_Statement
then
7308 -- Copy name and expression fields in usual manner
7311 Copy_Generic_Node
(Name
(N
), New_N
, Instantiating
));
7313 Set_Expression
(New_N
,
7314 Copy_Generic_Node
(Expression
(N
), New_N
, Instantiating
));
7316 if Instantiating
then
7317 Set_Assignment_OK
(Name
(New_N
), True);
7320 elsif Nkind_In
(N
, N_Aggregate
, N_Extension_Aggregate
) then
7321 if not Instantiating
then
7322 Set_Associated_Node
(N
, New_N
);
7325 if Present
(Get_Associated_Node
(N
))
7326 and then Nkind
(Get_Associated_Node
(N
)) = Nkind
(N
)
7328 -- In the generic the aggregate has some composite type. If at
7329 -- the point of instantiation the type has a private view,
7330 -- install the full view (and that of its ancestors, if any).
7333 T
: Entity_Id
:= (Etype
(Get_Associated_Node
(New_N
)));
7337 if Present
(T
) and then Is_Private_Type
(T
) then
7342 and then Is_Tagged_Type
(T
)
7343 and then Is_Derived_Type
(T
)
7345 Rt
:= Root_Type
(T
);
7350 if Is_Private_Type
(T
) then
7361 -- Do not copy the associated node, which points to the generic copy
7362 -- of the aggregate.
7365 use Atree
.Unchecked_Access
;
7366 -- This code section is part of the implementation of an untyped
7367 -- tree traversal, so it needs direct access to node fields.
7370 Set_Field1
(New_N
, Copy_Generic_Descendant
(Field1
(N
)));
7371 Set_Field2
(New_N
, Copy_Generic_Descendant
(Field2
(N
)));
7372 Set_Field3
(New_N
, Copy_Generic_Descendant
(Field3
(N
)));
7373 Set_Field5
(New_N
, Copy_Generic_Descendant
(Field5
(N
)));
7376 -- Allocators do not have an identifier denoting the access type, so we
7377 -- must locate it through the expression to check whether the views are
7380 elsif Nkind
(N
) = N_Allocator
7381 and then Nkind
(Expression
(N
)) = N_Qualified_Expression
7382 and then Is_Entity_Name
(Subtype_Mark
(Expression
(N
)))
7383 and then Instantiating
7386 T
: constant Node_Id
:=
7387 Get_Associated_Node
(Subtype_Mark
(Expression
(N
)));
7393 -- Retrieve the allocator node in the generic copy
7395 Acc_T
:= Etype
(Parent
(Parent
(T
)));
7397 if Present
(Acc_T
) and then Is_Private_Type
(Acc_T
) then
7398 Switch_View
(Acc_T
);
7405 -- For a proper body, we must catch the case of a proper body that
7406 -- replaces a stub. This represents the point at which a separate
7407 -- compilation unit, and hence template file, may be referenced, so we
7408 -- must make a new source instantiation entry for the template of the
7409 -- subunit, and ensure that all nodes in the subunit are adjusted using
7410 -- this new source instantiation entry.
7412 elsif Nkind
(N
) in N_Proper_Body
then
7414 Save_Adjustment
: constant Sloc_Adjustment
:= S_Adjustment
;
7417 if Instantiating
and then Was_Originally_Stub
(N
) then
7418 Create_Instantiation_Source
7419 (Instantiation_Node
,
7420 Defining_Entity
(N
),
7425 -- Now copy the fields of the proper body, using the new
7426 -- adjustment factor if one was needed as per test above.
7430 -- Restore the original adjustment factor in case changed
7432 S_Adjustment
:= Save_Adjustment
;
7435 -- Don't copy Ident or Comment pragmas, since the comment belongs to the
7436 -- generic unit, not to the instantiating unit.
7438 elsif Nkind
(N
) = N_Pragma
and then Instantiating
then
7440 Prag_Id
: constant Pragma_Id
:= Get_Pragma_Id
(N
);
7442 if Prag_Id
= Pragma_Ident
or else Prag_Id
= Pragma_Comment
then
7443 New_N
:= Make_Null_Statement
(Sloc
(N
));
7449 elsif Nkind_In
(N
, N_Integer_Literal
, N_Real_Literal
) then
7451 -- No descendant fields need traversing
7455 elsif Nkind
(N
) = N_String_Literal
7456 and then Present
(Etype
(N
))
7457 and then Instantiating
7459 -- If the string is declared in an outer scope, the string_literal
7460 -- subtype created for it may have the wrong scope. Force reanalysis
7461 -- of the constant to generate a new itype in the proper context.
7463 Set_Etype
(New_N
, Empty
);
7464 Set_Analyzed
(New_N
, False);
7466 -- For the remaining nodes, copy their descendants recursively
7471 if Instantiating
and then Nkind
(N
) = N_Subprogram_Body
then
7472 Set_Generic_Parent
(Specification
(New_N
), N
);
7474 -- Should preserve Corresponding_Spec??? (12.3(14))
7479 end Copy_Generic_Node
;
7481 ----------------------------
7482 -- Denotes_Formal_Package --
7483 ----------------------------
7485 function Denotes_Formal_Package
7487 On_Exit
: Boolean := False;
7488 Instance
: Entity_Id
:= Empty
) return Boolean
7491 Scop
: constant Entity_Id
:= Scope
(Pack
);
7494 function Is_Actual_Of_Previous_Formal
(P
: Entity_Id
) return Boolean;
7495 -- The package in question may be an actual for a previous formal
7496 -- package P of the current instance, so examine its actuals as well.
7497 -- This must be recursive over other formal packages.
7499 ----------------------------------
7500 -- Is_Actual_Of_Previous_Formal --
7501 ----------------------------------
7503 function Is_Actual_Of_Previous_Formal
(P
: Entity_Id
) return Boolean is
7507 E1
:= First_Entity
(P
);
7508 while Present
(E1
) and then E1
/= Instance
loop
7509 if Ekind
(E1
) = E_Package
7510 and then Nkind
(Parent
(E1
)) = N_Package_Renaming_Declaration
7512 if Renamed_Object
(E1
) = Pack
then
7515 elsif E1
= P
or else Renamed_Object
(E1
) = P
then
7518 elsif Is_Actual_Of_Previous_Formal
(E1
) then
7527 end Is_Actual_Of_Previous_Formal
;
7529 -- Start of processing for Denotes_Formal_Package
7535 (Instance_Envs
.Last
).Instantiated_Parent
.Act_Id
;
7537 Par
:= Current_Instantiated_Parent
.Act_Id
;
7540 if Ekind
(Scop
) = E_Generic_Package
7541 or else Nkind
(Unit_Declaration_Node
(Scop
)) =
7542 N_Generic_Subprogram_Declaration
7546 elsif Nkind
(Original_Node
(Unit_Declaration_Node
(Pack
))) =
7547 N_Formal_Package_Declaration
7555 -- Check whether this package is associated with a formal package of
7556 -- the enclosing instantiation. Iterate over the list of renamings.
7558 E
:= First_Entity
(Par
);
7559 while Present
(E
) loop
7560 if Ekind
(E
) /= E_Package
7561 or else Nkind
(Parent
(E
)) /= N_Package_Renaming_Declaration
7565 elsif Renamed_Object
(E
) = Par
then
7568 elsif Renamed_Object
(E
) = Pack
then
7571 elsif Is_Actual_Of_Previous_Formal
(E
) then
7581 end Denotes_Formal_Package
;
7587 procedure End_Generic
is
7589 -- ??? More things could be factored out in this routine. Should
7590 -- probably be done at a later stage.
7592 Inside_A_Generic
:= Generic_Flags
.Table
(Generic_Flags
.Last
);
7593 Generic_Flags
.Decrement_Last
;
7595 Expander_Mode_Restore
;
7602 function Earlier
(N1
, N2
: Node_Id
) return Boolean is
7603 procedure Find_Depth
(P
: in out Node_Id
; D
: in out Integer);
7604 -- Find distance from given node to enclosing compilation unit
7610 procedure Find_Depth
(P
: in out Node_Id
; D
: in out Integer) is
7613 and then Nkind
(P
) /= N_Compilation_Unit
7615 P
:= True_Parent
(P
);
7620 -- Local declarations
7629 -- Start of processing for Earlier
7632 Find_Depth
(P1
, D1
);
7633 Find_Depth
(P2
, D2
);
7643 P1
:= True_Parent
(P1
);
7648 P2
:= True_Parent
(P2
);
7652 -- At this point P1 and P2 are at the same distance from the root.
7653 -- We examine their parents until we find a common declarative list.
7654 -- If we reach the root, N1 and N2 do not descend from the same
7655 -- declarative list (e.g. one is nested in the declarative part and
7656 -- the other is in a block in the statement part) and the earlier
7657 -- one is already frozen.
7659 while not Is_List_Member
(P1
)
7660 or else not Is_List_Member
(P2
)
7661 or else List_Containing
(P1
) /= List_Containing
(P2
)
7663 P1
:= True_Parent
(P1
);
7664 P2
:= True_Parent
(P2
);
7666 if Nkind
(Parent
(P1
)) = N_Subunit
then
7667 P1
:= Corresponding_Stub
(Parent
(P1
));
7670 if Nkind
(Parent
(P2
)) = N_Subunit
then
7671 P2
:= Corresponding_Stub
(Parent
(P2
));
7679 -- Expanded code usually shares the source location of the original
7680 -- construct it was generated for. This however may not necessarely
7681 -- reflect the true location of the code within the tree.
7683 -- Before comparing the slocs of the two nodes, make sure that we are
7684 -- working with correct source locations. Assume that P1 is to the left
7685 -- of P2. If either one does not come from source, traverse the common
7686 -- list heading towards the other node and locate the first source
7690 -- ----+===+===+--------------+===+===+----
7691 -- expanded code expanded code
7693 if not Comes_From_Source
(P1
) then
7694 while Present
(P1
) loop
7696 -- Neither P2 nor a source statement were located during the
7697 -- search. If we reach the end of the list, then P1 does not
7698 -- occur earlier than P2.
7701 -- start --- P2 ----- P1 --- end
7703 if No
(Next
(P1
)) then
7706 -- We encounter P2 while going to the right of the list. This
7707 -- means that P1 does indeed appear earlier.
7710 -- start --- P1 ===== P2 --- end
7711 -- expanded code in between
7716 -- No need to look any further since we have located a source
7719 elsif Comes_From_Source
(P1
) then
7729 if not Comes_From_Source
(P2
) then
7730 while Present
(P2
) loop
7732 -- Neither P1 nor a source statement were located during the
7733 -- search. If we reach the start of the list, then P1 does not
7734 -- occur earlier than P2.
7737 -- start --- P2 --- P1 --- end
7739 if No
(Prev
(P2
)) then
7742 -- We encounter P1 while going to the left of the list. This
7743 -- means that P1 does indeed appear earlier.
7746 -- start --- P1 ===== P2 --- end
7747 -- expanded code in between
7752 -- No need to look any further since we have located a source
7755 elsif Comes_From_Source
(P2
) then
7765 -- At this point either both nodes came from source or we approximated
7766 -- their source locations through neighbouring source statements.
7768 T1
:= Top_Level_Location
(Sloc
(P1
));
7769 T2
:= Top_Level_Location
(Sloc
(P2
));
7771 -- When two nodes come from the same instance, they have identical top
7772 -- level locations. To determine proper relation within the tree, check
7773 -- their locations within the template.
7776 return Sloc
(P1
) < Sloc
(P2
);
7778 -- The two nodes either come from unrelated instances or do not come
7779 -- from instantiated code at all.
7786 ----------------------
7787 -- Find_Actual_Type --
7788 ----------------------
7790 function Find_Actual_Type
7792 Gen_Type
: Entity_Id
) return Entity_Id
7794 Gen_Scope
: constant Entity_Id
:= Scope
(Gen_Type
);
7798 -- Special processing only applies to child units
7800 if not Is_Child_Unit
(Gen_Scope
) then
7801 return Get_Instance_Of
(Typ
);
7803 -- If designated or component type is itself a formal of the child unit,
7804 -- its instance is available.
7806 elsif Scope
(Typ
) = Gen_Scope
then
7807 return Get_Instance_Of
(Typ
);
7809 -- If the array or access type is not declared in the parent unit,
7810 -- no special processing needed.
7812 elsif not Is_Generic_Type
(Typ
)
7813 and then Scope
(Gen_Scope
) /= Scope
(Typ
)
7815 return Get_Instance_Of
(Typ
);
7817 -- Otherwise, retrieve designated or component type by visibility
7820 T
:= Current_Entity
(Typ
);
7821 while Present
(T
) loop
7822 if In_Open_Scopes
(Scope
(T
)) then
7824 elsif Is_Generic_Actual_Type
(T
) then
7833 end Find_Actual_Type
;
7835 ----------------------------
7836 -- Freeze_Subprogram_Body --
7837 ----------------------------
7839 procedure Freeze_Subprogram_Body
7840 (Inst_Node
: Node_Id
;
7842 Pack_Id
: Entity_Id
)
7844 Gen_Unit
: constant Entity_Id
:= Get_Generic_Entity
(Inst_Node
);
7845 Par
: constant Entity_Id
:= Scope
(Gen_Unit
);
7851 function Enclosing_Package_Body
(N
: Node_Id
) return Node_Id
;
7852 -- Find innermost package body that encloses the given node, and which
7853 -- is not a compilation unit. Freeze nodes for the instance, or for its
7854 -- enclosing body, may be inserted after the enclosing_body of the
7855 -- generic unit. Used to determine proper placement of freeze node for
7856 -- both package and subprogram instances.
7858 function Package_Freeze_Node
(B
: Node_Id
) return Node_Id
;
7859 -- Find entity for given package body, and locate or create a freeze
7862 ----------------------------
7863 -- Enclosing_Package_Body --
7864 ----------------------------
7866 function Enclosing_Package_Body
(N
: Node_Id
) return Node_Id
is
7872 and then Nkind
(Parent
(P
)) /= N_Compilation_Unit
7874 if Nkind
(P
) = N_Package_Body
then
7875 if Nkind
(Parent
(P
)) = N_Subunit
then
7876 return Corresponding_Stub
(Parent
(P
));
7882 P
:= True_Parent
(P
);
7886 end Enclosing_Package_Body
;
7888 -------------------------
7889 -- Package_Freeze_Node --
7890 -------------------------
7892 function Package_Freeze_Node
(B
: Node_Id
) return Node_Id
is
7896 if Nkind
(B
) = N_Package_Body
then
7897 Id
:= Corresponding_Spec
(B
);
7898 else pragma Assert
(Nkind
(B
) = N_Package_Body_Stub
);
7899 Id
:= Corresponding_Spec
(Proper_Body
(Unit
(Library_Unit
(B
))));
7902 Ensure_Freeze_Node
(Id
);
7903 return Freeze_Node
(Id
);
7904 end Package_Freeze_Node
;
7906 -- Start of processing of Freeze_Subprogram_Body
7909 -- If the instance and the generic body appear within the same unit, and
7910 -- the instance precedes the generic, the freeze node for the instance
7911 -- must appear after that of the generic. If the generic is nested
7912 -- within another instance I2, then current instance must be frozen
7913 -- after I2. In both cases, the freeze nodes are those of enclosing
7914 -- packages. Otherwise, the freeze node is placed at the end of the
7915 -- current declarative part.
7917 Enc_G
:= Enclosing_Package_Body
(Gen_Body
);
7918 Enc_I
:= Enclosing_Package_Body
(Inst_Node
);
7919 Ensure_Freeze_Node
(Pack_Id
);
7920 F_Node
:= Freeze_Node
(Pack_Id
);
7922 if Is_Generic_Instance
(Par
)
7923 and then Present
(Freeze_Node
(Par
))
7924 and then In_Same_Declarative_Part
(Freeze_Node
(Par
), Inst_Node
)
7926 -- The parent was a premature instantiation. Insert freeze node at
7927 -- the end the current declarative part.
7929 if ABE_Is_Certain
(Get_Package_Instantiation_Node
(Par
)) then
7930 Insert_Freeze_Node_For_Instance
(Inst_Node
, F_Node
);
7932 -- Handle the following case:
7934 -- package Parent_Inst is new ...
7937 -- procedure P ... -- this body freezes Parent_Inst
7939 -- package Inst is new ...
7941 -- In this particular scenario, the freeze node for Inst must be
7942 -- inserted in the same manner as that of Parent_Inst - before the
7943 -- next source body or at the end of the declarative list (body not
7944 -- available). If body P did not exist and Parent_Inst was frozen
7945 -- after Inst, either by a body following Inst or at the end of the
7946 -- declarative region, the freeze node for Inst must be inserted
7947 -- after that of Parent_Inst. This relation is established by
7948 -- comparing the Slocs of Parent_Inst freeze node and Inst.
7950 elsif List_Containing
(Get_Package_Instantiation_Node
(Par
)) =
7951 List_Containing
(Inst_Node
)
7952 and then Sloc
(Freeze_Node
(Par
)) < Sloc
(Inst_Node
)
7954 Insert_Freeze_Node_For_Instance
(Inst_Node
, F_Node
);
7957 Insert_After
(Freeze_Node
(Par
), F_Node
);
7960 -- The body enclosing the instance should be frozen after the body that
7961 -- includes the generic, because the body of the instance may make
7962 -- references to entities therein. If the two are not in the same
7963 -- declarative part, or if the one enclosing the instance is frozen
7964 -- already, freeze the instance at the end of the current declarative
7967 elsif Is_Generic_Instance
(Par
)
7968 and then Present
(Freeze_Node
(Par
))
7969 and then Present
(Enc_I
)
7971 if In_Same_Declarative_Part
(Freeze_Node
(Par
), Enc_I
)
7973 (Nkind
(Enc_I
) = N_Package_Body
7975 In_Same_Declarative_Part
(Freeze_Node
(Par
), Parent
(Enc_I
)))
7977 -- The enclosing package may contain several instances. Rather
7978 -- than computing the earliest point at which to insert its freeze
7979 -- node, we place it at the end of the declarative part of the
7980 -- parent of the generic.
7982 Insert_Freeze_Node_For_Instance
7983 (Freeze_Node
(Par
), Package_Freeze_Node
(Enc_I
));
7986 Insert_Freeze_Node_For_Instance
(Inst_Node
, F_Node
);
7988 elsif Present
(Enc_G
)
7989 and then Present
(Enc_I
)
7990 and then Enc_G
/= Enc_I
7991 and then Earlier
(Inst_Node
, Gen_Body
)
7993 if Nkind
(Enc_G
) = N_Package_Body
then
7995 Corresponding_Spec
(Enc_G
);
7996 else pragma Assert
(Nkind
(Enc_G
) = N_Package_Body_Stub
);
7998 Corresponding_Spec
(Proper_Body
(Unit
(Library_Unit
(Enc_G
))));
8001 -- Freeze package that encloses instance, and place node after the
8002 -- package that encloses generic. If enclosing package is already
8003 -- frozen we have to assume it is at the proper place. This may be a
8004 -- potential ABE that requires dynamic checking. Do not add a freeze
8005 -- node if the package that encloses the generic is inside the body
8006 -- that encloses the instance, because the freeze node would be in
8007 -- the wrong scope. Additional contortions needed if the bodies are
8008 -- within a subunit.
8011 Enclosing_Body
: Node_Id
;
8014 if Nkind
(Enc_I
) = N_Package_Body_Stub
then
8015 Enclosing_Body
:= Proper_Body
(Unit
(Library_Unit
(Enc_I
)));
8017 Enclosing_Body
:= Enc_I
;
8020 if Parent
(List_Containing
(Enc_G
)) /= Enclosing_Body
then
8021 Insert_Freeze_Node_For_Instance
8022 (Enc_G
, Package_Freeze_Node
(Enc_I
));
8026 -- Freeze enclosing subunit before instance
8028 Ensure_Freeze_Node
(E_G_Id
);
8030 if not Is_List_Member
(Freeze_Node
(E_G_Id
)) then
8031 Insert_After
(Enc_G
, Freeze_Node
(E_G_Id
));
8034 Insert_Freeze_Node_For_Instance
(Inst_Node
, F_Node
);
8037 -- If none of the above, insert freeze node at the end of the current
8038 -- declarative part.
8040 Insert_Freeze_Node_For_Instance
(Inst_Node
, F_Node
);
8042 end Freeze_Subprogram_Body
;
8048 function Get_Gen_Id
(E
: Assoc_Ptr
) return Entity_Id
is
8050 return Generic_Renamings
.Table
(E
).Gen_Id
;
8053 ---------------------
8054 -- Get_Instance_Of --
8055 ---------------------
8057 function Get_Instance_Of
(A
: Entity_Id
) return Entity_Id
is
8058 Res
: constant Assoc_Ptr
:= Generic_Renamings_HTable
.Get
(A
);
8061 if Res
/= Assoc_Null
then
8062 return Generic_Renamings
.Table
(Res
).Act_Id
;
8065 -- On exit, entity is not instantiated: not a generic parameter, or
8066 -- else parameter of an inner generic unit.
8070 end Get_Instance_Of
;
8072 ------------------------------------
8073 -- Get_Package_Instantiation_Node --
8074 ------------------------------------
8076 function Get_Package_Instantiation_Node
(A
: Entity_Id
) return Node_Id
is
8077 Decl
: Node_Id
:= Unit_Declaration_Node
(A
);
8081 -- If the Package_Instantiation attribute has been set on the package
8082 -- entity, then use it directly when it (or its Original_Node) refers
8083 -- to an N_Package_Instantiation node. In principle it should be
8084 -- possible to have this field set in all cases, which should be
8085 -- investigated, and would allow this function to be significantly
8088 Inst
:= Package_Instantiation
(A
);
8090 if Present
(Inst
) then
8091 if Nkind
(Inst
) = N_Package_Instantiation
then
8094 elsif Nkind
(Original_Node
(Inst
)) = N_Package_Instantiation
then
8095 return Original_Node
(Inst
);
8099 -- If the instantiation is a compilation unit that does not need body
8100 -- then the instantiation node has been rewritten as a package
8101 -- declaration for the instance, and we return the original node.
8103 -- If it is a compilation unit and the instance node has not been
8104 -- rewritten, then it is still the unit of the compilation. Finally, if
8105 -- a body is present, this is a parent of the main unit whose body has
8106 -- been compiled for inlining purposes, and the instantiation node has
8107 -- been rewritten with the instance body.
8109 -- Otherwise the instantiation node appears after the declaration. If
8110 -- the entity is a formal package, the declaration may have been
8111 -- rewritten as a generic declaration (in the case of a formal with box)
8112 -- or left as a formal package declaration if it has actuals, and is
8113 -- found with a forward search.
8115 if Nkind
(Parent
(Decl
)) = N_Compilation_Unit
then
8116 if Nkind
(Decl
) = N_Package_Declaration
8117 and then Present
(Corresponding_Body
(Decl
))
8119 Decl
:= Unit_Declaration_Node
(Corresponding_Body
(Decl
));
8122 if Nkind
(Original_Node
(Decl
)) = N_Package_Instantiation
then
8123 return Original_Node
(Decl
);
8125 return Unit
(Parent
(Decl
));
8128 elsif Nkind
(Decl
) = N_Package_Declaration
8129 and then Nkind
(Original_Node
(Decl
)) = N_Formal_Package_Declaration
8131 return Original_Node
(Decl
);
8134 Inst
:= Next
(Decl
);
8135 while not Nkind_In
(Inst
, N_Package_Instantiation
,
8136 N_Formal_Package_Declaration
)
8143 end Get_Package_Instantiation_Node
;
8145 ------------------------
8146 -- Has_Been_Exchanged --
8147 ------------------------
8149 function Has_Been_Exchanged
(E
: Entity_Id
) return Boolean is
8153 Next
:= First_Elmt
(Exchanged_Views
);
8154 while Present
(Next
) loop
8155 if Full_View
(Node
(Next
)) = E
then
8163 end Has_Been_Exchanged
;
8169 function Hash
(F
: Entity_Id
) return HTable_Range
is
8171 return HTable_Range
(F
mod HTable_Size
);
8174 ------------------------
8175 -- Hide_Current_Scope --
8176 ------------------------
8178 procedure Hide_Current_Scope
is
8179 C
: constant Entity_Id
:= Current_Scope
;
8183 Set_Is_Hidden_Open_Scope
(C
);
8185 E
:= First_Entity
(C
);
8186 while Present
(E
) loop
8187 if Is_Immediately_Visible
(E
) then
8188 Set_Is_Immediately_Visible
(E
, False);
8189 Append_Elmt
(E
, Hidden_Entities
);
8195 -- Make the scope name invisible as well. This is necessary, but might
8196 -- conflict with calls to Rtsfind later on, in case the scope is a
8197 -- predefined one. There is no clean solution to this problem, so for
8198 -- now we depend on the user not redefining Standard itself in one of
8199 -- the parent units.
8201 if Is_Immediately_Visible
(C
) and then C
/= Standard_Standard
then
8202 Set_Is_Immediately_Visible
(C
, False);
8203 Append_Elmt
(C
, Hidden_Entities
);
8206 end Hide_Current_Scope
;
8212 procedure Init_Env
is
8213 Saved
: Instance_Env
;
8216 Saved
.Instantiated_Parent
:= Current_Instantiated_Parent
;
8217 Saved
.Exchanged_Views
:= Exchanged_Views
;
8218 Saved
.Hidden_Entities
:= Hidden_Entities
;
8219 Saved
.Current_Sem_Unit
:= Current_Sem_Unit
;
8220 Saved
.Parent_Unit_Visible
:= Parent_Unit_Visible
;
8221 Saved
.Instance_Parent_Unit
:= Instance_Parent_Unit
;
8223 -- Save configuration switches. These may be reset if the unit is a
8224 -- predefined unit, and the current mode is not Ada 2005.
8226 Save_Opt_Config_Switches
(Saved
.Switches
);
8228 Instance_Envs
.Append
(Saved
);
8230 Exchanged_Views
:= New_Elmt_List
;
8231 Hidden_Entities
:= New_Elmt_List
;
8233 -- Make dummy entry for Instantiated parent. If generic unit is legal,
8234 -- this is set properly in Set_Instance_Env.
8236 Current_Instantiated_Parent
:=
8237 (Current_Scope
, Current_Scope
, Assoc_Null
);
8240 ------------------------------
8241 -- In_Same_Declarative_Part --
8242 ------------------------------
8244 function In_Same_Declarative_Part
8246 Inst
: Node_Id
) return Boolean
8248 Decls
: constant Node_Id
:= Parent
(F_Node
);
8252 Nod
:= Parent
(Inst
);
8253 while Present
(Nod
) loop
8257 elsif Nkind_In
(Nod
, N_Subprogram_Body
,
8259 N_Package_Declaration
,
8266 elsif Nkind
(Nod
) = N_Subunit
then
8267 Nod
:= Corresponding_Stub
(Nod
);
8269 elsif Nkind
(Nod
) = N_Compilation_Unit
then
8273 Nod
:= Parent
(Nod
);
8278 end In_Same_Declarative_Part
;
8280 ---------------------
8281 -- In_Main_Context --
8282 ---------------------
8284 function In_Main_Context
(E
: Entity_Id
) return Boolean is
8290 if not Is_Compilation_Unit
(E
)
8291 or else Ekind
(E
) /= E_Package
8292 or else In_Private_Part
(E
)
8297 Context
:= Context_Items
(Cunit
(Main_Unit
));
8299 Clause
:= First
(Context
);
8300 while Present
(Clause
) loop
8301 if Nkind
(Clause
) = N_With_Clause
then
8302 Nam
:= Name
(Clause
);
8304 -- If the current scope is part of the context of the main unit,
8305 -- analysis of the corresponding with_clause is not complete, and
8306 -- the entity is not set. We use the Chars field directly, which
8307 -- might produce false positives in rare cases, but guarantees
8308 -- that we produce all the instance bodies we will need.
8310 if (Is_Entity_Name
(Nam
) and then Chars
(Nam
) = Chars
(E
))
8311 or else (Nkind
(Nam
) = N_Selected_Component
8312 and then Chars
(Selector_Name
(Nam
)) = Chars
(E
))
8322 end In_Main_Context
;
8324 ---------------------
8325 -- Inherit_Context --
8326 ---------------------
8328 procedure Inherit_Context
(Gen_Decl
: Node_Id
; Inst
: Node_Id
) is
8329 Current_Context
: List_Id
;
8330 Current_Unit
: Node_Id
;
8339 if Nkind
(Parent
(Gen_Decl
)) = N_Compilation_Unit
then
8341 -- The inherited context is attached to the enclosing compilation
8342 -- unit. This is either the main unit, or the declaration for the
8343 -- main unit (in case the instantiation appears within the package
8344 -- declaration and the main unit is its body).
8346 Current_Unit
:= Parent
(Inst
);
8347 while Present
(Current_Unit
)
8348 and then Nkind
(Current_Unit
) /= N_Compilation_Unit
8350 Current_Unit
:= Parent
(Current_Unit
);
8353 Current_Context
:= Context_Items
(Current_Unit
);
8355 Item
:= First
(Context_Items
(Parent
(Gen_Decl
)));
8356 while Present
(Item
) loop
8357 if Nkind
(Item
) = N_With_Clause
then
8358 Lib_Unit
:= Library_Unit
(Item
);
8360 -- Take care to prevent direct cyclic with's
8362 if Lib_Unit
/= Current_Unit
then
8364 -- Do not add a unit if it is already in the context
8366 Clause
:= First
(Current_Context
);
8368 while Present
(Clause
) loop
8369 if Nkind
(Clause
) = N_With_Clause
and then
8370 Library_Unit
(Clause
) = Lib_Unit
8380 New_I
:= New_Copy
(Item
);
8381 Set_Implicit_With
(New_I
, True);
8382 Set_Implicit_With_From_Instantiation
(New_I
, True);
8383 Append
(New_I
, Current_Context
);
8391 end Inherit_Context
;
8397 procedure Initialize
is
8399 Generic_Renamings
.Init
;
8402 Generic_Renamings_HTable
.Reset
;
8403 Circularity_Detected
:= False;
8404 Exchanged_Views
:= No_Elist
;
8405 Hidden_Entities
:= No_Elist
;
8408 -------------------------------------
8409 -- Insert_Freeze_Node_For_Instance --
8410 -------------------------------------
8412 procedure Insert_Freeze_Node_For_Instance
8421 function Enclosing_Body
(N
: Node_Id
) return Node_Id
;
8422 -- Find enclosing package or subprogram body, if any. Freeze node may
8423 -- be placed at end of current declarative list if previous instance
8424 -- and current one have different enclosing bodies.
8426 function Previous_Instance
(Gen
: Entity_Id
) return Entity_Id
;
8427 -- Find the local instance, if any, that declares the generic that is
8428 -- being instantiated. If present, the freeze node for this instance
8429 -- must follow the freeze node for the previous instance.
8431 --------------------
8432 -- Enclosing_Body --
8433 --------------------
8435 function Enclosing_Body
(N
: Node_Id
) return Node_Id
is
8441 and then Nkind
(Parent
(P
)) /= N_Compilation_Unit
8443 if Nkind_In
(P
, N_Package_Body
, N_Subprogram_Body
) then
8444 if Nkind
(Parent
(P
)) = N_Subunit
then
8445 return Corresponding_Stub
(Parent
(P
));
8451 P
:= True_Parent
(P
);
8457 -----------------------
8458 -- Previous_Instance --
8459 -----------------------
8461 function Previous_Instance
(Gen
: Entity_Id
) return Entity_Id
is
8466 while Present
(S
) and then S
/= Standard_Standard
loop
8467 if Is_Generic_Instance
(S
)
8468 and then In_Same_Source_Unit
(S
, N
)
8477 end Previous_Instance
;
8479 -- Start of processing for Insert_Freeze_Node_For_Instance
8482 if not Is_List_Member
(F_Node
) then
8484 Decls
:= List_Containing
(N
);
8485 Inst
:= Entity
(F_Node
);
8486 Par_N
:= Parent
(Decls
);
8488 -- When processing a subprogram instantiation, utilize the actual
8489 -- subprogram instantiation rather than its package wrapper as it
8490 -- carries all the context information.
8492 if Is_Wrapper_Package
(Inst
) then
8493 Inst
:= Related_Instance
(Inst
);
8496 -- If this is a package instance, check whether the generic is
8497 -- declared in a previous instance and the current instance is
8498 -- not within the previous one.
8500 if Present
(Generic_Parent
(Parent
(Inst
)))
8501 and then Is_In_Main_Unit
(N
)
8504 Enclosing_N
: constant Node_Id
:= Enclosing_Body
(N
);
8505 Par_I
: constant Entity_Id
:=
8507 (Generic_Parent
(Parent
(Inst
)));
8512 and then Earlier
(N
, Freeze_Node
(Par_I
))
8514 Scop
:= Scope
(Inst
);
8516 -- If the current instance is within the one that contains
8517 -- the generic, the freeze node for the current one must
8518 -- appear in the current declarative part. Ditto, if the
8519 -- current instance is within another package instance or
8520 -- within a body that does not enclose the current instance.
8521 -- In these three cases the freeze node of the previous
8522 -- instance is not relevant.
8524 while Present
(Scop
) and then Scop
/= Standard_Standard
loop
8525 exit when Scop
= Par_I
8527 (Is_Generic_Instance
(Scop
)
8528 and then Scope_Depth
(Scop
) > Scope_Depth
(Par_I
));
8529 Scop
:= Scope
(Scop
);
8532 -- Previous instance encloses current instance
8534 if Scop
= Par_I
then
8537 -- If the next node is a source body we must freeze in
8538 -- the current scope as well.
8540 elsif Present
(Next
(N
))
8541 and then Nkind_In
(Next
(N
), N_Subprogram_Body
,
8543 and then Comes_From_Source
(Next
(N
))
8547 -- Current instance is within an unrelated instance
8549 elsif Is_Generic_Instance
(Scop
) then
8552 -- Current instance is within an unrelated body
8554 elsif Present
(Enclosing_N
)
8555 and then Enclosing_N
/= Enclosing_Body
(Par_I
)
8560 Insert_After
(Freeze_Node
(Par_I
), F_Node
);
8567 -- When the instantiation occurs in a package declaration, append the
8568 -- freeze node to the private declarations (if any).
8570 if Nkind
(Par_N
) = N_Package_Specification
8571 and then Decls
= Visible_Declarations
(Par_N
)
8572 and then Present
(Private_Declarations
(Par_N
))
8573 and then not Is_Empty_List
(Private_Declarations
(Par_N
))
8575 Decls
:= Private_Declarations
(Par_N
);
8576 Decl
:= First
(Decls
);
8579 -- Determine the proper freeze point of a package instantiation. We
8580 -- adhere to the general rule of a package or subprogram body causing
8581 -- freezing of anything before it in the same declarative region. In
8582 -- this case, the proper freeze point of a package instantiation is
8583 -- before the first source body which follows, or before a stub. This
8584 -- ensures that entities coming from the instance are already frozen
8585 -- and usable in source bodies.
8587 if Nkind
(Par_N
) /= N_Package_Declaration
8588 and then Ekind
(Inst
) = E_Package
8589 and then Is_Generic_Instance
(Inst
)
8591 not In_Same_Source_Unit
(Generic_Parent
(Parent
(Inst
)), Inst
)
8593 while Present
(Decl
) loop
8594 if (Nkind
(Decl
) in N_Unit_Body
8596 Nkind
(Decl
) in N_Body_Stub
)
8597 and then Comes_From_Source
(Decl
)
8599 Insert_Before
(Decl
, F_Node
);
8607 -- In a package declaration, or if no previous body, insert at end
8610 Set_Sloc
(F_Node
, Sloc
(Last
(Decls
)));
8611 Insert_After
(Last
(Decls
), F_Node
);
8613 end Insert_Freeze_Node_For_Instance
;
8619 procedure Install_Body
8620 (Act_Body
: Node_Id
;
8625 Act_Id
: constant Entity_Id
:= Corresponding_Spec
(Act_Body
);
8626 Act_Unit
: constant Node_Id
:= Unit
(Cunit
(Get_Source_Unit
(N
)));
8627 Gen_Id
: constant Entity_Id
:= Corresponding_Spec
(Gen_Body
);
8628 Par
: constant Entity_Id
:= Scope
(Gen_Id
);
8629 Gen_Unit
: constant Node_Id
:=
8630 Unit
(Cunit
(Get_Source_Unit
(Gen_Decl
)));
8631 Orig_Body
: Node_Id
:= Gen_Body
;
8633 Body_Unit
: Node_Id
;
8635 Must_Delay
: Boolean;
8637 function In_Same_Enclosing_Subp
return Boolean;
8638 -- Check whether instance and generic body are within same subprogram.
8640 function True_Sloc
(N
: Node_Id
) return Source_Ptr
;
8641 -- If the instance is nested inside a generic unit, the Sloc of the
8642 -- instance indicates the place of the original definition, not the
8643 -- point of the current enclosing instance. Pending a better usage of
8644 -- Slocs to indicate instantiation places, we determine the place of
8645 -- origin of a node by finding the maximum sloc of any ancestor node.
8646 -- Why is this not equivalent to Top_Level_Location ???
8648 ----------------------------
8649 -- In_Same_Enclosing_Subp --
8650 ----------------------------
8652 function In_Same_Enclosing_Subp
return Boolean is
8657 Scop
:= Scope
(Act_Id
);
8658 while Scop
/= Standard_Standard
8659 and then not Is_Overloadable
(Scop
)
8661 Scop
:= Scope
(Scop
);
8664 if Scop
= Standard_Standard
then
8670 Scop
:= Scope
(Gen_Id
);
8671 while Scop
/= Standard_Standard
loop
8675 Scop
:= Scope
(Scop
);
8680 end In_Same_Enclosing_Subp
;
8686 function True_Sloc
(N
: Node_Id
) return Source_Ptr
is
8693 while Present
(N1
) and then N1
/= Act_Unit
loop
8694 if Sloc
(N1
) > Res
then
8704 -- Start of processing for Install_Body
8707 -- If the body is a subunit, the freeze point is the corresponding stub
8708 -- in the current compilation, not the subunit itself.
8710 if Nkind
(Parent
(Gen_Body
)) = N_Subunit
then
8711 Orig_Body
:= Corresponding_Stub
(Parent
(Gen_Body
));
8713 Orig_Body
:= Gen_Body
;
8716 Body_Unit
:= Unit
(Cunit
(Get_Source_Unit
(Orig_Body
)));
8718 -- If the instantiation and the generic definition appear in the same
8719 -- package declaration, this is an early instantiation. If they appear
8720 -- in the same declarative part, it is an early instantiation only if
8721 -- the generic body appears textually later, and the generic body is
8722 -- also in the main unit.
8724 -- If instance is nested within a subprogram, and the generic body
8725 -- is not, the instance is delayed because the enclosing body is. If
8726 -- instance and body are within the same scope, or the same subprogram
8727 -- body, indicate explicitly that the instance is delayed.
8730 (Gen_Unit
= Act_Unit
8731 and then (Nkind_In
(Gen_Unit
, N_Package_Declaration
,
8732 N_Generic_Package_Declaration
)
8733 or else (Gen_Unit
= Body_Unit
8734 and then True_Sloc
(N
) < Sloc
(Orig_Body
)))
8735 and then Is_In_Main_Unit
(Gen_Unit
)
8736 and then (Scope
(Act_Id
) = Scope
(Gen_Id
)
8737 or else In_Same_Enclosing_Subp
));
8739 -- If this is an early instantiation, the freeze node is placed after
8740 -- the generic body. Otherwise, if the generic appears in an instance,
8741 -- we cannot freeze the current instance until the outer one is frozen.
8742 -- This is only relevant if the current instance is nested within some
8743 -- inner scope not itself within the outer instance. If this scope is
8744 -- a package body in the same declarative part as the outer instance,
8745 -- then that body needs to be frozen after the outer instance. Finally,
8746 -- if no delay is needed, we place the freeze node at the end of the
8747 -- current declarative part.
8749 if Expander_Active
then
8750 Ensure_Freeze_Node
(Act_Id
);
8751 F_Node
:= Freeze_Node
(Act_Id
);
8754 Insert_After
(Orig_Body
, F_Node
);
8756 elsif Is_Generic_Instance
(Par
)
8757 and then Present
(Freeze_Node
(Par
))
8758 and then Scope
(Act_Id
) /= Par
8760 -- Freeze instance of inner generic after instance of enclosing
8763 if In_Same_Declarative_Part
(Freeze_Node
(Par
), N
) then
8765 -- Handle the following case:
8767 -- package Parent_Inst is new ...
8770 -- procedure P ... -- this body freezes Parent_Inst
8772 -- package Inst is new ...
8774 -- In this particular scenario, the freeze node for Inst must
8775 -- be inserted in the same manner as that of Parent_Inst,
8776 -- before the next source body or at the end of the declarative
8777 -- list (body not available). If body P did not exist and
8778 -- Parent_Inst was frozen after Inst, either by a body
8779 -- following Inst or at the end of the declarative region,
8780 -- the freeze node for Inst must be inserted after that of
8781 -- Parent_Inst. This relation is established by comparing
8782 -- the Slocs of Parent_Inst freeze node and Inst.
8784 if List_Containing
(Get_Package_Instantiation_Node
(Par
)) =
8786 and then Sloc
(Freeze_Node
(Par
)) < Sloc
(N
)
8788 Insert_Freeze_Node_For_Instance
(N
, F_Node
);
8790 Insert_After
(Freeze_Node
(Par
), F_Node
);
8793 -- Freeze package enclosing instance of inner generic after
8794 -- instance of enclosing generic.
8796 elsif Nkind_In
(Parent
(N
), N_Package_Body
, N_Subprogram_Body
)
8797 and then In_Same_Declarative_Part
(Freeze_Node
(Par
), Parent
(N
))
8800 Enclosing
: Entity_Id
;
8803 Enclosing
:= Corresponding_Spec
(Parent
(N
));
8805 if No
(Enclosing
) then
8806 Enclosing
:= Defining_Entity
(Parent
(N
));
8809 Insert_Freeze_Node_For_Instance
(N
, F_Node
);
8810 Ensure_Freeze_Node
(Enclosing
);
8812 if not Is_List_Member
(Freeze_Node
(Enclosing
)) then
8814 -- The enclosing context is a subunit, insert the freeze
8815 -- node after the stub.
8817 if Nkind
(Parent
(Parent
(N
))) = N_Subunit
then
8818 Insert_Freeze_Node_For_Instance
8819 (Corresponding_Stub
(Parent
(Parent
(N
))),
8820 Freeze_Node
(Enclosing
));
8822 -- The enclosing context is a package with a stub body
8823 -- which has already been replaced by the real body.
8824 -- Insert the freeze node after the actual body.
8826 elsif Ekind
(Enclosing
) = E_Package
8827 and then Present
(Body_Entity
(Enclosing
))
8828 and then Was_Originally_Stub
8829 (Parent
(Body_Entity
(Enclosing
)))
8831 Insert_Freeze_Node_For_Instance
8832 (Parent
(Body_Entity
(Enclosing
)),
8833 Freeze_Node
(Enclosing
));
8835 -- The parent instance has been frozen before the body of
8836 -- the enclosing package, insert the freeze node after
8839 elsif List_Containing
(Freeze_Node
(Par
)) =
8840 List_Containing
(Parent
(N
))
8841 and then Sloc
(Freeze_Node
(Par
)) < Sloc
(Parent
(N
))
8843 Insert_Freeze_Node_For_Instance
8844 (Parent
(N
), Freeze_Node
(Enclosing
));
8848 (Freeze_Node
(Par
), Freeze_Node
(Enclosing
));
8854 Insert_Freeze_Node_For_Instance
(N
, F_Node
);
8858 Insert_Freeze_Node_For_Instance
(N
, F_Node
);
8862 Set_Is_Frozen
(Act_Id
);
8863 Insert_Before
(N
, Act_Body
);
8864 Mark_Rewrite_Insertion
(Act_Body
);
8867 -----------------------------
8868 -- Install_Formal_Packages --
8869 -----------------------------
8871 procedure Install_Formal_Packages
(Par
: Entity_Id
) is
8874 Gen_E
: Entity_Id
:= Empty
;
8877 E
:= First_Entity
(Par
);
8879 -- If we are installing an instance parent, locate the formal packages
8880 -- of its generic parent.
8882 if Is_Generic_Instance
(Par
) then
8883 Gen
:= Generic_Parent
(Package_Specification
(Par
));
8884 Gen_E
:= First_Entity
(Gen
);
8887 while Present
(E
) loop
8888 if Ekind
(E
) = E_Package
8889 and then Nkind
(Parent
(E
)) = N_Package_Renaming_Declaration
8891 -- If this is the renaming for the parent instance, done
8893 if Renamed_Object
(E
) = Par
then
8896 -- The visibility of a formal of an enclosing generic is already
8899 elsif Denotes_Formal_Package
(E
) then
8902 elsif Present
(Associated_Formal_Package
(E
)) then
8903 Check_Generic_Actuals
(Renamed_Object
(E
), True);
8904 Set_Is_Hidden
(E
, False);
8906 -- Find formal package in generic unit that corresponds to
8907 -- (instance of) formal package in instance.
8909 while Present
(Gen_E
) and then Chars
(Gen_E
) /= Chars
(E
) loop
8910 Next_Entity
(Gen_E
);
8913 if Present
(Gen_E
) then
8914 Map_Formal_Package_Entities
(Gen_E
, E
);
8921 if Present
(Gen_E
) then
8922 Next_Entity
(Gen_E
);
8925 end Install_Formal_Packages
;
8927 --------------------
8928 -- Install_Parent --
8929 --------------------
8931 procedure Install_Parent
(P
: Entity_Id
; In_Body
: Boolean := False) is
8932 Ancestors
: constant Elist_Id
:= New_Elmt_List
;
8933 S
: constant Entity_Id
:= Current_Scope
;
8934 Inst_Par
: Entity_Id
;
8935 First_Par
: Entity_Id
;
8936 Inst_Node
: Node_Id
;
8937 Gen_Par
: Entity_Id
;
8938 First_Gen
: Entity_Id
;
8941 procedure Install_Noninstance_Specs
(Par
: Entity_Id
);
8942 -- Install the scopes of noninstance parent units ending with Par
8944 procedure Install_Spec
(Par
: Entity_Id
);
8945 -- The child unit is within the declarative part of the parent, so the
8946 -- declarations within the parent are immediately visible.
8948 -------------------------------
8949 -- Install_Noninstance_Specs --
8950 -------------------------------
8952 procedure Install_Noninstance_Specs
(Par
: Entity_Id
) is
8955 and then Par
/= Standard_Standard
8956 and then not In_Open_Scopes
(Par
)
8958 Install_Noninstance_Specs
(Scope
(Par
));
8961 end Install_Noninstance_Specs
;
8967 procedure Install_Spec
(Par
: Entity_Id
) is
8968 Spec
: constant Node_Id
:= Package_Specification
(Par
);
8971 -- If this parent of the child instance is a top-level unit,
8972 -- then record the unit and its visibility for later resetting in
8973 -- Remove_Parent. We exclude units that are generic instances, as we
8974 -- only want to record this information for the ultimate top-level
8975 -- noninstance parent (is that always correct???).
8977 if Scope
(Par
) = Standard_Standard
8978 and then not Is_Generic_Instance
(Par
)
8980 Parent_Unit_Visible
:= Is_Immediately_Visible
(Par
);
8981 Instance_Parent_Unit
:= Par
;
8984 -- Open the parent scope and make it and its declarations visible.
8985 -- If this point is not within a body, then only the visible
8986 -- declarations should be made visible, and installation of the
8987 -- private declarations is deferred until the appropriate point
8988 -- within analysis of the spec being instantiated (see the handling
8989 -- of parent visibility in Analyze_Package_Specification). This is
8990 -- relaxed in the case where the parent unit is Ada.Tags, to avoid
8991 -- private view problems that occur when compiling instantiations of
8992 -- a generic child of that package (Generic_Dispatching_Constructor).
8993 -- If the instance freezes a tagged type, inlinings of operations
8994 -- from Ada.Tags may need the full view of type Tag. If inlining took
8995 -- proper account of establishing visibility of inlined subprograms'
8996 -- parents then it should be possible to remove this
8997 -- special check. ???
9000 Set_Is_Immediately_Visible
(Par
);
9001 Install_Visible_Declarations
(Par
);
9002 Set_Use
(Visible_Declarations
(Spec
));
9004 if In_Body
or else Is_RTU
(Par
, Ada_Tags
) then
9005 Install_Private_Declarations
(Par
);
9006 Set_Use
(Private_Declarations
(Spec
));
9010 -- Start of processing for Install_Parent
9013 -- We need to install the parent instance to compile the instantiation
9014 -- of the child, but the child instance must appear in the current
9015 -- scope. Given that we cannot place the parent above the current scope
9016 -- in the scope stack, we duplicate the current scope and unstack both
9017 -- after the instantiation is complete.
9019 -- If the parent is itself the instantiation of a child unit, we must
9020 -- also stack the instantiation of its parent, and so on. Each such
9021 -- ancestor is the prefix of the name in a prior instantiation.
9023 -- If this is a nested instance, the parent unit itself resolves to
9024 -- a renaming of the parent instance, whose declaration we need.
9026 -- Finally, the parent may be a generic (not an instance) when the
9027 -- child unit appears as a formal package.
9031 if Present
(Renamed_Entity
(Inst_Par
)) then
9032 Inst_Par
:= Renamed_Entity
(Inst_Par
);
9035 First_Par
:= Inst_Par
;
9037 Gen_Par
:= Generic_Parent
(Package_Specification
(Inst_Par
));
9039 First_Gen
:= Gen_Par
;
9041 while Present
(Gen_Par
) and then Is_Child_Unit
(Gen_Par
) loop
9043 -- Load grandparent instance as well
9045 Inst_Node
:= Get_Package_Instantiation_Node
(Inst_Par
);
9047 if Nkind
(Name
(Inst_Node
)) = N_Expanded_Name
then
9048 Inst_Par
:= Entity
(Prefix
(Name
(Inst_Node
)));
9050 if Present
(Renamed_Entity
(Inst_Par
)) then
9051 Inst_Par
:= Renamed_Entity
(Inst_Par
);
9054 Gen_Par
:= Generic_Parent
(Package_Specification
(Inst_Par
));
9056 if Present
(Gen_Par
) then
9057 Prepend_Elmt
(Inst_Par
, Ancestors
);
9060 -- Parent is not the name of an instantiation
9062 Install_Noninstance_Specs
(Inst_Par
);
9073 if Present
(First_Gen
) then
9074 Append_Elmt
(First_Par
, Ancestors
);
9076 Install_Noninstance_Specs
(First_Par
);
9079 if not Is_Empty_Elmt_List
(Ancestors
) then
9080 Elmt
:= First_Elmt
(Ancestors
);
9081 while Present
(Elmt
) loop
9082 Install_Spec
(Node
(Elmt
));
9083 Install_Formal_Packages
(Node
(Elmt
));
9093 -------------------------------
9094 -- Install_Hidden_Primitives --
9095 -------------------------------
9097 procedure Install_Hidden_Primitives
9098 (Prims_List
: in out Elist_Id
;
9103 List
: Elist_Id
:= No_Elist
;
9104 Prim_G_Elmt
: Elmt_Id
;
9105 Prim_A_Elmt
: Elmt_Id
;
9110 -- No action needed in case of serious errors because we cannot trust
9111 -- in the order of primitives
9113 if Serious_Errors_Detected
> 0 then
9116 -- No action possible if we don't have available the list of primitive
9120 or else not Is_Record_Type
(Gen_T
)
9121 or else not Is_Tagged_Type
(Gen_T
)
9122 or else not Is_Record_Type
(Act_T
)
9123 or else not Is_Tagged_Type
(Act_T
)
9127 -- There is no need to handle interface types since their primitives
9130 elsif Is_Interface
(Gen_T
) then
9134 Prim_G_Elmt
:= First_Elmt
(Primitive_Operations
(Gen_T
));
9136 if not Is_Class_Wide_Type
(Act_T
) then
9137 Prim_A_Elmt
:= First_Elmt
(Primitive_Operations
(Act_T
));
9139 Prim_A_Elmt
:= First_Elmt
(Primitive_Operations
(Root_Type
(Act_T
)));
9143 -- Skip predefined primitives in the generic formal
9145 while Present
(Prim_G_Elmt
)
9146 and then Is_Predefined_Dispatching_Operation
(Node
(Prim_G_Elmt
))
9148 Next_Elmt
(Prim_G_Elmt
);
9151 -- Skip predefined primitives in the generic actual
9153 while Present
(Prim_A_Elmt
)
9154 and then Is_Predefined_Dispatching_Operation
(Node
(Prim_A_Elmt
))
9156 Next_Elmt
(Prim_A_Elmt
);
9159 exit when No
(Prim_G_Elmt
) or else No
(Prim_A_Elmt
);
9161 Prim_G
:= Node
(Prim_G_Elmt
);
9162 Prim_A
:= Node
(Prim_A_Elmt
);
9164 -- There is no need to handle interface primitives because their
9165 -- primitives are not hidden
9167 exit when Present
(Interface_Alias
(Prim_G
));
9169 -- Here we install one hidden primitive
9171 if Chars
(Prim_G
) /= Chars
(Prim_A
)
9172 and then Has_Suffix
(Prim_A
, 'P')
9173 and then Remove_Suffix
(Prim_A
, 'P') = Chars
(Prim_G
)
9175 Set_Chars
(Prim_A
, Chars
(Prim_G
));
9176 Append_New_Elmt
(Prim_A
, To
=> List
);
9179 Next_Elmt
(Prim_A_Elmt
);
9180 Next_Elmt
(Prim_G_Elmt
);
9183 -- Append the elements to the list of temporarily visible primitives
9184 -- avoiding duplicates.
9186 if Present
(List
) then
9187 if No
(Prims_List
) then
9188 Prims_List
:= New_Elmt_List
;
9191 Elmt
:= First_Elmt
(List
);
9192 while Present
(Elmt
) loop
9193 Append_Unique_Elmt
(Node
(Elmt
), Prims_List
);
9197 end Install_Hidden_Primitives
;
9199 -------------------------------
9200 -- Restore_Hidden_Primitives --
9201 -------------------------------
9203 procedure Restore_Hidden_Primitives
(Prims_List
: in out Elist_Id
) is
9204 Prim_Elmt
: Elmt_Id
;
9208 if Prims_List
/= No_Elist
then
9209 Prim_Elmt
:= First_Elmt
(Prims_List
);
9210 while Present
(Prim_Elmt
) loop
9211 Prim
:= Node
(Prim_Elmt
);
9212 Set_Chars
(Prim
, Add_Suffix
(Prim
, 'P'));
9213 Next_Elmt
(Prim_Elmt
);
9216 Prims_List
:= No_Elist
;
9218 end Restore_Hidden_Primitives
;
9220 --------------------------------
9221 -- Instantiate_Formal_Package --
9222 --------------------------------
9224 function Instantiate_Formal_Package
9227 Analyzed_Formal
: Node_Id
) return List_Id
9229 Loc
: constant Source_Ptr
:= Sloc
(Actual
);
9230 Actual_Pack
: Entity_Id
;
9231 Formal_Pack
: Entity_Id
;
9232 Gen_Parent
: Entity_Id
;
9235 Parent_Spec
: Node_Id
;
9237 procedure Find_Matching_Actual
9239 Act
: in out Entity_Id
);
9240 -- We need to associate each formal entity in the formal package with
9241 -- the corresponding entity in the actual package. The actual package
9242 -- has been analyzed and possibly expanded, and as a result there is
9243 -- no one-to-one correspondence between the two lists (for example,
9244 -- the actual may include subtypes, itypes, and inherited primitive
9245 -- operations, interspersed among the renaming declarations for the
9246 -- actuals) . We retrieve the corresponding actual by name because each
9247 -- actual has the same name as the formal, and they do appear in the
9250 function Get_Formal_Entity
(N
: Node_Id
) return Entity_Id
;
9251 -- Retrieve entity of defining entity of generic formal parameter.
9252 -- Only the declarations of formals need to be considered when
9253 -- linking them to actuals, but the declarative list may include
9254 -- internal entities generated during analysis, and those are ignored.
9256 procedure Match_Formal_Entity
9257 (Formal_Node
: Node_Id
;
9258 Formal_Ent
: Entity_Id
;
9259 Actual_Ent
: Entity_Id
);
9260 -- Associates the formal entity with the actual. In the case where
9261 -- Formal_Ent is a formal package, this procedure iterates through all
9262 -- of its formals and enters associations between the actuals occurring
9263 -- in the formal package's corresponding actual package (given by
9264 -- Actual_Ent) and the formal package's formal parameters. This
9265 -- procedure recurses if any of the parameters is itself a package.
9267 function Is_Instance_Of
9268 (Act_Spec
: Entity_Id
;
9269 Gen_Anc
: Entity_Id
) return Boolean;
9270 -- The actual can be an instantiation of a generic within another
9271 -- instance, in which case there is no direct link from it to the
9272 -- original generic ancestor. In that case, we recognize that the
9273 -- ultimate ancestor is the same by examining names and scopes.
9275 procedure Process_Nested_Formal
(Formal
: Entity_Id
);
9276 -- If the current formal is declared with a box, its own formals are
9277 -- visible in the instance, as they were in the generic, and their
9278 -- Hidden flag must be reset. If some of these formals are themselves
9279 -- packages declared with a box, the processing must be recursive.
9281 --------------------------
9282 -- Find_Matching_Actual --
9283 --------------------------
9285 procedure Find_Matching_Actual
9287 Act
: in out Entity_Id
)
9289 Formal_Ent
: Entity_Id
;
9292 case Nkind
(Original_Node
(F
)) is
9293 when N_Formal_Object_Declaration |
9294 N_Formal_Type_Declaration
=>
9295 Formal_Ent
:= Defining_Identifier
(F
);
9297 while Chars
(Act
) /= Chars
(Formal_Ent
) loop
9301 when N_Formal_Subprogram_Declaration |
9302 N_Formal_Package_Declaration |
9303 N_Package_Declaration |
9304 N_Generic_Package_Declaration
=>
9305 Formal_Ent
:= Defining_Entity
(F
);
9307 while Chars
(Act
) /= Chars
(Formal_Ent
) loop
9312 raise Program_Error
;
9314 end Find_Matching_Actual
;
9316 -------------------------
9317 -- Match_Formal_Entity --
9318 -------------------------
9320 procedure Match_Formal_Entity
9321 (Formal_Node
: Node_Id
;
9322 Formal_Ent
: Entity_Id
;
9323 Actual_Ent
: Entity_Id
)
9325 Act_Pkg
: Entity_Id
;
9328 Set_Instance_Of
(Formal_Ent
, Actual_Ent
);
9330 if Ekind
(Actual_Ent
) = E_Package
then
9332 -- Record associations for each parameter
9334 Act_Pkg
:= Actual_Ent
;
9337 A_Ent
: Entity_Id
:= First_Entity
(Act_Pkg
);
9346 -- Retrieve the actual given in the formal package declaration
9348 Actual
:= Entity
(Name
(Original_Node
(Formal_Node
)));
9350 -- The actual in the formal package declaration may be a
9351 -- renamed generic package, in which case we want to retrieve
9352 -- the original generic in order to traverse its formal part.
9354 if Present
(Renamed_Entity
(Actual
)) then
9355 Gen_Decl
:= Unit_Declaration_Node
(Renamed_Entity
(Actual
));
9357 Gen_Decl
:= Unit_Declaration_Node
(Actual
);
9360 Formals
:= Generic_Formal_Declarations
(Gen_Decl
);
9362 if Present
(Formals
) then
9363 F_Node
:= First_Non_Pragma
(Formals
);
9368 while Present
(A_Ent
)
9369 and then Present
(F_Node
)
9370 and then A_Ent
/= First_Private_Entity
(Act_Pkg
)
9372 F_Ent
:= Get_Formal_Entity
(F_Node
);
9374 if Present
(F_Ent
) then
9376 -- This is a formal of the original package. Record
9377 -- association and recurse.
9379 Find_Matching_Actual
(F_Node
, A_Ent
);
9380 Match_Formal_Entity
(F_Node
, F_Ent
, A_Ent
);
9381 Next_Entity
(A_Ent
);
9384 Next_Non_Pragma
(F_Node
);
9388 end Match_Formal_Entity
;
9390 -----------------------
9391 -- Get_Formal_Entity --
9392 -----------------------
9394 function Get_Formal_Entity
(N
: Node_Id
) return Entity_Id
is
9395 Kind
: constant Node_Kind
:= Nkind
(Original_Node
(N
));
9398 when N_Formal_Object_Declaration
=>
9399 return Defining_Identifier
(N
);
9401 when N_Formal_Type_Declaration
=>
9402 return Defining_Identifier
(N
);
9404 when N_Formal_Subprogram_Declaration
=>
9405 return Defining_Unit_Name
(Specification
(N
));
9407 when N_Formal_Package_Declaration
=>
9408 return Defining_Identifier
(Original_Node
(N
));
9410 when N_Generic_Package_Declaration
=>
9411 return Defining_Identifier
(Original_Node
(N
));
9413 -- All other declarations are introduced by semantic analysis and
9414 -- have no match in the actual.
9419 end Get_Formal_Entity
;
9421 --------------------
9422 -- Is_Instance_Of --
9423 --------------------
9425 function Is_Instance_Of
9426 (Act_Spec
: Entity_Id
;
9427 Gen_Anc
: Entity_Id
) return Boolean
9429 Gen_Par
: constant Entity_Id
:= Generic_Parent
(Act_Spec
);
9432 if No
(Gen_Par
) then
9435 -- Simplest case: the generic parent of the actual is the formal
9437 elsif Gen_Par
= Gen_Anc
then
9440 elsif Chars
(Gen_Par
) /= Chars
(Gen_Anc
) then
9443 -- The actual may be obtained through several instantiations. Its
9444 -- scope must itself be an instance of a generic declared in the
9445 -- same scope as the formal. Any other case is detected above.
9447 elsif not Is_Generic_Instance
(Scope
(Gen_Par
)) then
9451 return Generic_Parent
(Parent
(Scope
(Gen_Par
))) = Scope
(Gen_Anc
);
9455 ---------------------------
9456 -- Process_Nested_Formal --
9457 ---------------------------
9459 procedure Process_Nested_Formal
(Formal
: Entity_Id
) is
9463 if Present
(Associated_Formal_Package
(Formal
))
9464 and then Box_Present
(Parent
(Associated_Formal_Package
(Formal
)))
9466 Ent
:= First_Entity
(Formal
);
9467 while Present
(Ent
) loop
9468 Set_Is_Hidden
(Ent
, False);
9469 Set_Is_Visible_Formal
(Ent
);
9470 Set_Is_Potentially_Use_Visible
9471 (Ent
, Is_Potentially_Use_Visible
(Formal
));
9473 if Ekind
(Ent
) = E_Package
then
9474 exit when Renamed_Entity
(Ent
) = Renamed_Entity
(Formal
);
9475 Process_Nested_Formal
(Ent
);
9481 end Process_Nested_Formal
;
9483 -- Start of processing for Instantiate_Formal_Package
9488 if not Is_Entity_Name
(Actual
)
9489 or else Ekind
(Entity
(Actual
)) /= E_Package
9492 ("expect package instance to instantiate formal", Actual
);
9493 Abandon_Instantiation
(Actual
);
9494 raise Program_Error
;
9497 Actual_Pack
:= Entity
(Actual
);
9498 Set_Is_Instantiated
(Actual_Pack
);
9500 -- The actual may be a renamed package, or an outer generic formal
9501 -- package whose instantiation is converted into a renaming.
9503 if Present
(Renamed_Object
(Actual_Pack
)) then
9504 Actual_Pack
:= Renamed_Object
(Actual_Pack
);
9507 if Nkind
(Analyzed_Formal
) = N_Formal_Package_Declaration
then
9508 Gen_Parent
:= Get_Instance_Of
(Entity
(Name
(Analyzed_Formal
)));
9509 Formal_Pack
:= Defining_Identifier
(Analyzed_Formal
);
9512 Generic_Parent
(Specification
(Analyzed_Formal
));
9514 Defining_Unit_Name
(Specification
(Analyzed_Formal
));
9517 if Nkind
(Parent
(Actual_Pack
)) = N_Defining_Program_Unit_Name
then
9518 Parent_Spec
:= Package_Specification
(Actual_Pack
);
9520 Parent_Spec
:= Parent
(Actual_Pack
);
9523 if Gen_Parent
= Any_Id
then
9525 ("previous error in declaration of formal package", Actual
);
9526 Abandon_Instantiation
(Actual
);
9529 Is_Instance_Of
(Parent_Spec
, Get_Instance_Of
(Gen_Parent
))
9535 ("actual parameter must be instance of&", Actual
, Gen_Parent
);
9536 Abandon_Instantiation
(Actual
);
9539 Set_Instance_Of
(Defining_Identifier
(Formal
), Actual_Pack
);
9540 Map_Formal_Package_Entities
(Formal_Pack
, Actual_Pack
);
9543 Make_Package_Renaming_Declaration
(Loc
,
9544 Defining_Unit_Name
=> New_Copy
(Defining_Identifier
(Formal
)),
9545 Name
=> New_Occurrence_Of
(Actual_Pack
, Loc
));
9547 Set_Associated_Formal_Package
9548 (Defining_Unit_Name
(Nod
), Defining_Identifier
(Formal
));
9549 Decls
:= New_List
(Nod
);
9551 -- If the formal F has a box, then the generic declarations are
9552 -- visible in the generic G. In an instance of G, the corresponding
9553 -- entities in the actual for F (which are the actuals for the
9554 -- instantiation of the generic that F denotes) must also be made
9555 -- visible for analysis of the current instance. On exit from the
9556 -- current instance, those entities are made private again. If the
9557 -- actual is currently in use, these entities are also use-visible.
9559 -- The loop through the actual entities also steps through the formal
9560 -- entities and enters associations from formals to actuals into the
9561 -- renaming map. This is necessary to properly handle checking of
9562 -- actual parameter associations for later formals that depend on
9563 -- actuals declared in the formal package.
9565 -- In Ada 2005, partial parameterization requires that we make
9566 -- visible the actuals corresponding to formals that were defaulted
9567 -- in the formal package. There formals are identified because they
9568 -- remain formal generics within the formal package, rather than
9569 -- being renamings of the actuals supplied.
9572 Gen_Decl
: constant Node_Id
:=
9573 Unit_Declaration_Node
(Gen_Parent
);
9574 Formals
: constant List_Id
:=
9575 Generic_Formal_Declarations
(Gen_Decl
);
9577 Actual_Ent
: Entity_Id
;
9578 Actual_Of_Formal
: Node_Id
;
9579 Formal_Node
: Node_Id
;
9580 Formal_Ent
: Entity_Id
;
9583 if Present
(Formals
) then
9584 Formal_Node
:= First_Non_Pragma
(Formals
);
9586 Formal_Node
:= Empty
;
9589 Actual_Ent
:= First_Entity
(Actual_Pack
);
9591 First
(Visible_Declarations
(Specification
(Analyzed_Formal
)));
9592 while Present
(Actual_Ent
)
9593 and then Actual_Ent
/= First_Private_Entity
(Actual_Pack
)
9595 if Present
(Formal_Node
) then
9596 Formal_Ent
:= Get_Formal_Entity
(Formal_Node
);
9598 if Present
(Formal_Ent
) then
9599 Find_Matching_Actual
(Formal_Node
, Actual_Ent
);
9600 Match_Formal_Entity
(Formal_Node
, Formal_Ent
, Actual_Ent
);
9602 -- We iterate at the same time over the actuals of the
9603 -- local package created for the formal, to determine
9604 -- which one of the formals of the original generic were
9605 -- defaulted in the formal. The corresponding actual
9606 -- entities are visible in the enclosing instance.
9608 if Box_Present
(Formal
)
9610 (Present
(Actual_Of_Formal
)
9613 (Get_Formal_Entity
(Actual_Of_Formal
)))
9615 Set_Is_Hidden
(Actual_Ent
, False);
9616 Set_Is_Visible_Formal
(Actual_Ent
);
9617 Set_Is_Potentially_Use_Visible
9618 (Actual_Ent
, In_Use
(Actual_Pack
));
9620 if Ekind
(Actual_Ent
) = E_Package
then
9621 Process_Nested_Formal
(Actual_Ent
);
9625 Set_Is_Hidden
(Actual_Ent
);
9626 Set_Is_Potentially_Use_Visible
(Actual_Ent
, False);
9630 Next_Non_Pragma
(Formal_Node
);
9631 Next
(Actual_Of_Formal
);
9634 -- No further formals to match, but the generic part may
9635 -- contain inherited operation that are not hidden in the
9636 -- enclosing instance.
9638 Next_Entity
(Actual_Ent
);
9642 -- Inherited subprograms generated by formal derived types are
9643 -- also visible if the types are.
9645 Actual_Ent
:= First_Entity
(Actual_Pack
);
9646 while Present
(Actual_Ent
)
9647 and then Actual_Ent
/= First_Private_Entity
(Actual_Pack
)
9649 if Is_Overloadable
(Actual_Ent
)
9651 Nkind
(Parent
(Actual_Ent
)) = N_Subtype_Declaration
9653 not Is_Hidden
(Defining_Identifier
(Parent
(Actual_Ent
)))
9655 Set_Is_Hidden
(Actual_Ent
, False);
9656 Set_Is_Potentially_Use_Visible
9657 (Actual_Ent
, In_Use
(Actual_Pack
));
9660 Next_Entity
(Actual_Ent
);
9664 -- If the formal is not declared with a box, reanalyze it as an
9665 -- abbreviated instantiation, to verify the matching rules of 12.7.
9666 -- The actual checks are performed after the generic associations
9667 -- have been analyzed, to guarantee the same visibility for this
9668 -- instantiation and for the actuals.
9670 -- In Ada 2005, the generic associations for the formal can include
9671 -- defaulted parameters. These are ignored during check. This
9672 -- internal instantiation is removed from the tree after conformance
9673 -- checking, because it contains formal declarations for those
9674 -- defaulted parameters, and those should not reach the back-end.
9676 if not Box_Present
(Formal
) then
9678 I_Pack
: constant Entity_Id
:=
9679 Make_Temporary
(Sloc
(Actual
), 'P');
9682 Set_Is_Internal
(I_Pack
);
9685 Make_Package_Instantiation
(Sloc
(Actual
),
9686 Defining_Unit_Name
=> I_Pack
,
9689 (Get_Instance_Of
(Gen_Parent
), Sloc
(Actual
)),
9690 Generic_Associations
=> Generic_Associations
(Formal
)));
9696 end Instantiate_Formal_Package
;
9698 -----------------------------------
9699 -- Instantiate_Formal_Subprogram --
9700 -----------------------------------
9702 function Instantiate_Formal_Subprogram
9705 Analyzed_Formal
: Node_Id
) return Node_Id
9707 Analyzed_S
: constant Entity_Id
:=
9708 Defining_Unit_Name
(Specification
(Analyzed_Formal
));
9709 Formal_Sub
: constant Entity_Id
:=
9710 Defining_Unit_Name
(Specification
(Formal
));
9712 function From_Parent_Scope
(Subp
: Entity_Id
) return Boolean;
9713 -- If the generic is a child unit, the parent has been installed on the
9714 -- scope stack, but a default subprogram cannot resolve to something
9715 -- on the parent because that parent is not really part of the visible
9716 -- context (it is there to resolve explicit local entities). If the
9717 -- default has resolved in this way, we remove the entity from immediate
9718 -- visibility and analyze the node again to emit an error message or
9719 -- find another visible candidate.
9721 procedure Valid_Actual_Subprogram
(Act
: Node_Id
);
9722 -- Perform legality check and raise exception on failure
9724 -----------------------
9725 -- From_Parent_Scope --
9726 -----------------------
9728 function From_Parent_Scope
(Subp
: Entity_Id
) return Boolean is
9729 Gen_Scope
: Node_Id
;
9732 Gen_Scope
:= Scope
(Analyzed_S
);
9733 while Present
(Gen_Scope
) and then Is_Child_Unit
(Gen_Scope
) loop
9734 if Scope
(Subp
) = Scope
(Gen_Scope
) then
9738 Gen_Scope
:= Scope
(Gen_Scope
);
9742 end From_Parent_Scope
;
9744 -----------------------------
9745 -- Valid_Actual_Subprogram --
9746 -----------------------------
9748 procedure Valid_Actual_Subprogram
(Act
: Node_Id
) is
9752 if Is_Entity_Name
(Act
) then
9753 Act_E
:= Entity
(Act
);
9755 elsif Nkind
(Act
) = N_Selected_Component
9756 and then Is_Entity_Name
(Selector_Name
(Act
))
9758 Act_E
:= Entity
(Selector_Name
(Act
));
9764 if (Present
(Act_E
) and then Is_Overloadable
(Act_E
))
9765 or else Nkind_In
(Act
, N_Attribute_Reference
,
9766 N_Indexed_Component
,
9767 N_Character_Literal
,
9768 N_Explicit_Dereference
)
9774 ("expect subprogram or entry name in instantiation of &",
9775 Instantiation_Node
, Formal_Sub
);
9776 Abandon_Instantiation
(Instantiation_Node
);
9777 end Valid_Actual_Subprogram
;
9781 Decl_Node
: Node_Id
;
9785 New_Subp
: Entity_Id
;
9787 -- Start of processing for Instantiate_Formal_Subprogram
9790 New_Spec
:= New_Copy_Tree
(Specification
(Formal
));
9792 -- The tree copy has created the proper instantiation sloc for the
9793 -- new specification. Use this location for all other constructed
9796 Loc
:= Sloc
(Defining_Unit_Name
(New_Spec
));
9798 -- Create new entity for the actual (New_Copy_Tree does not), and
9799 -- indicate that it is an actual.
9801 New_Subp
:= Make_Defining_Identifier
(Loc
, Chars
(Formal_Sub
));
9802 Set_Ekind
(New_Subp
, Ekind
(Analyzed_S
));
9803 Set_Is_Generic_Actual_Subprogram
(New_Subp
);
9804 Set_Defining_Unit_Name
(New_Spec
, New_Subp
);
9806 -- Create new entities for the each of the formals in the specification
9807 -- of the renaming declaration built for the actual.
9809 if Present
(Parameter_Specifications
(New_Spec
)) then
9815 F
:= First
(Parameter_Specifications
(New_Spec
));
9816 while Present
(F
) loop
9817 F_Id
:= Defining_Identifier
(F
);
9819 Set_Defining_Identifier
(F
,
9820 Make_Defining_Identifier
(Sloc
(F_Id
), Chars
(F_Id
)));
9826 -- Find entity of actual. If the actual is an attribute reference, it
9827 -- cannot be resolved here (its formal is missing) but is handled
9828 -- instead in Attribute_Renaming. If the actual is overloaded, it is
9829 -- fully resolved subsequently, when the renaming declaration for the
9830 -- formal is analyzed. If it is an explicit dereference, resolve the
9831 -- prefix but not the actual itself, to prevent interpretation as call.
9833 if Present
(Actual
) then
9834 Loc
:= Sloc
(Actual
);
9835 Set_Sloc
(New_Spec
, Loc
);
9837 if Nkind
(Actual
) = N_Operator_Symbol
then
9838 Find_Direct_Name
(Actual
);
9840 elsif Nkind
(Actual
) = N_Explicit_Dereference
then
9841 Analyze
(Prefix
(Actual
));
9843 elsif Nkind
(Actual
) /= N_Attribute_Reference
then
9847 Valid_Actual_Subprogram
(Actual
);
9850 elsif Present
(Default_Name
(Formal
)) then
9851 if not Nkind_In
(Default_Name
(Formal
), N_Attribute_Reference
,
9852 N_Selected_Component
,
9853 N_Indexed_Component
,
9854 N_Character_Literal
)
9855 and then Present
(Entity
(Default_Name
(Formal
)))
9857 Nam
:= New_Occurrence_Of
(Entity
(Default_Name
(Formal
)), Loc
);
9859 Nam
:= New_Copy
(Default_Name
(Formal
));
9860 Set_Sloc
(Nam
, Loc
);
9863 elsif Box_Present
(Formal
) then
9865 -- Actual is resolved at the point of instantiation. Create an
9866 -- identifier or operator with the same name as the formal.
9868 if Nkind
(Formal_Sub
) = N_Defining_Operator_Symbol
then
9870 Make_Operator_Symbol
(Loc
,
9871 Chars
=> Chars
(Formal_Sub
),
9872 Strval
=> No_String
);
9874 Nam
:= Make_Identifier
(Loc
, Chars
(Formal_Sub
));
9877 elsif Nkind
(Specification
(Formal
)) = N_Procedure_Specification
9878 and then Null_Present
(Specification
(Formal
))
9880 -- Generate null body for procedure, for use in the instance
9883 Make_Subprogram_Body
(Loc
,
9884 Specification
=> New_Spec
,
9885 Declarations
=> New_List
,
9886 Handled_Statement_Sequence
=>
9887 Make_Handled_Sequence_Of_Statements
(Loc
,
9888 Statements
=> New_List
(Make_Null_Statement
(Loc
))));
9890 Set_Is_Intrinsic_Subprogram
(Defining_Unit_Name
(New_Spec
));
9894 Error_Msg_Sloc
:= Sloc
(Scope
(Analyzed_S
));
9896 ("missing actual&", Instantiation_Node
, Formal_Sub
);
9898 ("\in instantiation of & declared#",
9899 Instantiation_Node
, Scope
(Analyzed_S
));
9900 Abandon_Instantiation
(Instantiation_Node
);
9904 Make_Subprogram_Renaming_Declaration
(Loc
,
9905 Specification
=> New_Spec
,
9908 -- If we do not have an actual and the formal specified <> then set to
9909 -- get proper default.
9911 if No
(Actual
) and then Box_Present
(Formal
) then
9912 Set_From_Default
(Decl_Node
);
9915 -- Gather possible interpretations for the actual before analyzing the
9916 -- instance. If overloaded, it will be resolved when analyzing the
9917 -- renaming declaration.
9919 if Box_Present
(Formal
) and then No
(Actual
) then
9922 if Is_Child_Unit
(Scope
(Analyzed_S
))
9923 and then Present
(Entity
(Nam
))
9925 if not Is_Overloaded
(Nam
) then
9926 if From_Parent_Scope
(Entity
(Nam
)) then
9927 Set_Is_Immediately_Visible
(Entity
(Nam
), False);
9928 Set_Entity
(Nam
, Empty
);
9929 Set_Etype
(Nam
, Empty
);
9932 Set_Is_Immediately_Visible
(Entity
(Nam
));
9941 Get_First_Interp
(Nam
, I
, It
);
9942 while Present
(It
.Nam
) loop
9943 if From_Parent_Scope
(It
.Nam
) then
9947 Get_Next_Interp
(I
, It
);
9954 -- The generic instantiation freezes the actual. This can only be done
9955 -- once the actual is resolved, in the analysis of the renaming
9956 -- declaration. To make the formal subprogram entity available, we set
9957 -- Corresponding_Formal_Spec to point to the formal subprogram entity.
9958 -- This is also needed in Analyze_Subprogram_Renaming for the processing
9959 -- of formal abstract subprograms.
9961 Set_Corresponding_Formal_Spec
(Decl_Node
, Analyzed_S
);
9963 -- We cannot analyze the renaming declaration, and thus find the actual,
9964 -- until all the actuals are assembled in the instance. For subsequent
9965 -- checks of other actuals, indicate the node that will hold the
9966 -- instance of this formal.
9968 Set_Instance_Of
(Analyzed_S
, Nam
);
9970 if Nkind
(Actual
) = N_Selected_Component
9971 and then Is_Task_Type
(Etype
(Prefix
(Actual
)))
9972 and then not Is_Frozen
(Etype
(Prefix
(Actual
)))
9974 -- The renaming declaration will create a body, which must appear
9975 -- outside of the instantiation, We move the renaming declaration
9976 -- out of the instance, and create an additional renaming inside,
9977 -- to prevent freezing anomalies.
9980 Anon_Id
: constant Entity_Id
:= Make_Temporary
(Loc
, 'E');
9983 Set_Defining_Unit_Name
(New_Spec
, Anon_Id
);
9984 Insert_Before
(Instantiation_Node
, Decl_Node
);
9985 Analyze
(Decl_Node
);
9987 -- Now create renaming within the instance
9990 Make_Subprogram_Renaming_Declaration
(Loc
,
9991 Specification
=> New_Copy_Tree
(New_Spec
),
9992 Name
=> New_Occurrence_Of
(Anon_Id
, Loc
));
9994 Set_Defining_Unit_Name
(Specification
(Decl_Node
),
9995 Make_Defining_Identifier
(Loc
, Chars
(Formal_Sub
)));
10000 end Instantiate_Formal_Subprogram
;
10002 ------------------------
10003 -- Instantiate_Object --
10004 ------------------------
10006 function Instantiate_Object
10009 Analyzed_Formal
: Node_Id
) return List_Id
10011 Gen_Obj
: constant Entity_Id
:= Defining_Identifier
(Formal
);
10012 A_Gen_Obj
: constant Entity_Id
:=
10013 Defining_Identifier
(Analyzed_Formal
);
10014 Acc_Def
: Node_Id
:= Empty
;
10015 Act_Assoc
: constant Node_Id
:= Parent
(Actual
);
10016 Actual_Decl
: Node_Id
:= Empty
;
10017 Decl_Node
: Node_Id
;
10020 List
: constant List_Id
:= New_List
;
10021 Loc
: constant Source_Ptr
:= Sloc
(Actual
);
10022 Orig_Ftyp
: constant Entity_Id
:= Etype
(A_Gen_Obj
);
10023 Subt_Decl
: Node_Id
:= Empty
;
10024 Subt_Mark
: Node_Id
:= Empty
;
10026 function Copy_Access_Def
return Node_Id
;
10027 -- If formal is an anonymous access, copy access definition of formal
10028 -- for generated object declaration.
10030 ---------------------
10031 -- Copy_Access_Def --
10032 ---------------------
10034 function Copy_Access_Def
return Node_Id
is
10036 Def
:= New_Copy_Tree
(Acc_Def
);
10038 -- In addition, if formal is an access to subprogram we need to
10039 -- generate new formals for the signature of the default, so that
10040 -- the tree is properly formatted for ASIS use.
10042 if Present
(Access_To_Subprogram_Definition
(Acc_Def
)) then
10044 Par_Spec
: Node_Id
;
10047 First
(Parameter_Specifications
10048 (Access_To_Subprogram_Definition
(Def
)));
10049 while Present
(Par_Spec
) loop
10050 Set_Defining_Identifier
(Par_Spec
,
10051 Make_Defining_Identifier
(Sloc
(Acc_Def
),
10052 Chars
=> Chars
(Defining_Identifier
(Par_Spec
))));
10059 end Copy_Access_Def
;
10061 -- Start of processing for Instantiate_Object
10064 -- Formal may be an anonymous access
10066 if Present
(Subtype_Mark
(Formal
)) then
10067 Subt_Mark
:= Subtype_Mark
(Formal
);
10069 Check_Access_Definition
(Formal
);
10070 Acc_Def
:= Access_Definition
(Formal
);
10073 -- Sloc for error message on missing actual
10075 Error_Msg_Sloc
:= Sloc
(Scope
(A_Gen_Obj
));
10077 if Get_Instance_Of
(Gen_Obj
) /= Gen_Obj
then
10078 Error_Msg_N
("duplicate instantiation of generic parameter", Actual
);
10081 Set_Parent
(List
, Parent
(Actual
));
10085 if Out_Present
(Formal
) then
10087 -- An IN OUT generic actual must be a name. The instantiation is a
10088 -- renaming declaration. The actual is the name being renamed. We
10089 -- use the actual directly, rather than a copy, because it is not
10090 -- used further in the list of actuals, and because a copy or a use
10091 -- of relocate_node is incorrect if the instance is nested within a
10092 -- generic. In order to simplify ASIS searches, the Generic_Parent
10093 -- field links the declaration to the generic association.
10095 if No
(Actual
) then
10097 ("missing actual &",
10098 Instantiation_Node
, Gen_Obj
);
10100 ("\in instantiation of & declared#",
10101 Instantiation_Node
, Scope
(A_Gen_Obj
));
10102 Abandon_Instantiation
(Instantiation_Node
);
10105 if Present
(Subt_Mark
) then
10107 Make_Object_Renaming_Declaration
(Loc
,
10108 Defining_Identifier
=> New_Copy
(Gen_Obj
),
10109 Subtype_Mark
=> New_Copy_Tree
(Subt_Mark
),
10112 else pragma Assert
(Present
(Acc_Def
));
10114 Make_Object_Renaming_Declaration
(Loc
,
10115 Defining_Identifier
=> New_Copy
(Gen_Obj
),
10116 Access_Definition
=> New_Copy_Tree
(Acc_Def
),
10120 Set_Corresponding_Generic_Association
(Decl_Node
, Act_Assoc
);
10122 -- The analysis of the actual may produce Insert_Action nodes, so
10123 -- the declaration must have a context in which to attach them.
10125 Append
(Decl_Node
, List
);
10128 -- Return if the analysis of the actual reported some error
10130 if Etype
(Actual
) = Any_Type
then
10134 -- This check is performed here because Analyze_Object_Renaming will
10135 -- not check it when Comes_From_Source is False. Note though that the
10136 -- check for the actual being the name of an object will be performed
10137 -- in Analyze_Object_Renaming.
10139 if Is_Object_Reference
(Actual
)
10140 and then Is_Dependent_Component_Of_Mutable_Object
(Actual
)
10143 ("illegal discriminant-dependent component for in out parameter",
10147 -- The actual has to be resolved in order to check that it is a
10148 -- variable (due to cases such as F (1), where F returns access to
10149 -- an array, and for overloaded prefixes).
10151 Ftyp
:= Get_Instance_Of
(Etype
(A_Gen_Obj
));
10153 -- If the type of the formal is not itself a formal, and the current
10154 -- unit is a child unit, the formal type must be declared in a
10155 -- parent, and must be retrieved by visibility.
10157 if Ftyp
= Orig_Ftyp
10158 and then Is_Generic_Unit
(Scope
(Ftyp
))
10159 and then Is_Child_Unit
(Scope
(A_Gen_Obj
))
10162 Temp
: constant Node_Id
:=
10163 New_Copy_Tree
(Subtype_Mark
(Analyzed_Formal
));
10165 Set_Entity
(Temp
, Empty
);
10167 Ftyp
:= Entity
(Temp
);
10171 if Is_Private_Type
(Ftyp
)
10172 and then not Is_Private_Type
(Etype
(Actual
))
10173 and then (Base_Type
(Full_View
(Ftyp
)) = Base_Type
(Etype
(Actual
))
10174 or else Base_Type
(Etype
(Actual
)) = Ftyp
)
10176 -- If the actual has the type of the full view of the formal, or
10177 -- else a non-private subtype of the formal, then the visibility
10178 -- of the formal type has changed. Add to the actuals a subtype
10179 -- declaration that will force the exchange of views in the body
10180 -- of the instance as well.
10183 Make_Subtype_Declaration
(Loc
,
10184 Defining_Identifier
=> Make_Temporary
(Loc
, 'P'),
10185 Subtype_Indication
=> New_Occurrence_Of
(Ftyp
, Loc
));
10187 Prepend
(Subt_Decl
, List
);
10189 Prepend_Elmt
(Full_View
(Ftyp
), Exchanged_Views
);
10190 Exchange_Declarations
(Ftyp
);
10193 Resolve
(Actual
, Ftyp
);
10195 if not Denotes_Variable
(Actual
) then
10196 Error_Msg_NE
("actual for& must be a variable", Actual
, Gen_Obj
);
10198 elsif Base_Type
(Ftyp
) /= Base_Type
(Etype
(Actual
)) then
10200 -- Ada 2005 (AI-423): For a generic formal object of mode in out,
10201 -- the type of the actual shall resolve to a specific anonymous
10204 if Ada_Version
< Ada_2005
10205 or else Ekind
(Base_Type
(Ftyp
)) /=
10206 E_Anonymous_Access_Type
10207 or else Ekind
(Base_Type
(Etype
(Actual
))) /=
10208 E_Anonymous_Access_Type
10211 ("type of actual does not match type of&", Actual
, Gen_Obj
);
10215 Note_Possible_Modification
(Actual
, Sure
=> True);
10217 -- Check for instantiation of atomic/volatile actual for
10218 -- non-atomic/volatile formal (RM C.6 (12)).
10220 if Is_Atomic_Object
(Actual
) and then not Is_Atomic
(Orig_Ftyp
) then
10222 ("cannot instantiate non-atomic formal object "
10223 & "with atomic actual", Actual
);
10225 elsif Is_Volatile_Object
(Actual
) and then not Is_Volatile
(Orig_Ftyp
)
10228 ("cannot instantiate non-volatile formal object "
10229 & "with volatile actual", Actual
);
10232 -- Formal in-parameter
10235 -- The instantiation of a generic formal in-parameter is constant
10236 -- declaration. The actual is the expression for that declaration.
10237 -- Its type is a full copy of the type of the formal. This may be
10238 -- an access to subprogram, for which we need to generate entities
10239 -- for the formals in the new signature.
10241 if Present
(Actual
) then
10242 if Present
(Subt_Mark
) then
10243 Def
:= New_Copy_Tree
(Subt_Mark
);
10244 else pragma Assert
(Present
(Acc_Def
));
10245 Def
:= Copy_Access_Def
;
10249 Make_Object_Declaration
(Loc
,
10250 Defining_Identifier
=> New_Copy
(Gen_Obj
),
10251 Constant_Present
=> True,
10252 Null_Exclusion_Present
=> Null_Exclusion_Present
(Formal
),
10253 Object_Definition
=> Def
,
10254 Expression
=> Actual
);
10256 Set_Corresponding_Generic_Association
(Decl_Node
, Act_Assoc
);
10258 -- A generic formal object of a tagged type is defined to be
10259 -- aliased so the new constant must also be treated as aliased.
10261 if Is_Tagged_Type
(Etype
(A_Gen_Obj
)) then
10262 Set_Aliased_Present
(Decl_Node
);
10265 Append
(Decl_Node
, List
);
10267 -- No need to repeat (pre-)analysis of some expression nodes
10268 -- already handled in Preanalyze_Actuals.
10270 if Nkind
(Actual
) /= N_Allocator
then
10273 -- Return if the analysis of the actual reported some error
10275 if Etype
(Actual
) = Any_Type
then
10281 Formal_Type
: constant Entity_Id
:= Etype
(A_Gen_Obj
);
10285 Typ
:= Get_Instance_Of
(Formal_Type
);
10287 -- If the actual appears in the current or an enclosing scope,
10288 -- use its type directly. This is relevant if it has an actual
10289 -- subtype that is distinct from its nominal one. This cannot
10290 -- be done in general because the type of the actual may
10291 -- depend on other actuals, and only be fully determined when
10292 -- the enclosing instance is analyzed.
10294 if Present
(Etype
(Actual
))
10295 and then Is_Constr_Subt_For_U_Nominal
(Etype
(Actual
))
10297 Freeze_Before
(Instantiation_Node
, Etype
(Actual
));
10299 Freeze_Before
(Instantiation_Node
, Typ
);
10302 -- If the actual is an aggregate, perform name resolution on
10303 -- its components (the analysis of an aggregate does not do it)
10304 -- to capture local names that may be hidden if the generic is
10307 if Nkind
(Actual
) = N_Aggregate
then
10308 Preanalyze_And_Resolve
(Actual
, Typ
);
10311 if Is_Limited_Type
(Typ
)
10312 and then not OK_For_Limited_Init
(Typ
, Actual
)
10315 ("initialization not allowed for limited types", Actual
);
10316 Explain_Limited_Type
(Typ
, Actual
);
10320 elsif Present
(Default_Expression
(Formal
)) then
10322 -- Use default to construct declaration
10324 if Present
(Subt_Mark
) then
10325 Def
:= New_Copy
(Subt_Mark
);
10326 else pragma Assert
(Present
(Acc_Def
));
10327 Def
:= Copy_Access_Def
;
10331 Make_Object_Declaration
(Sloc
(Formal
),
10332 Defining_Identifier
=> New_Copy
(Gen_Obj
),
10333 Constant_Present
=> True,
10334 Null_Exclusion_Present
=> Null_Exclusion_Present
(Formal
),
10335 Object_Definition
=> Def
,
10336 Expression
=> New_Copy_Tree
10337 (Default_Expression
(Formal
)));
10339 Append
(Decl_Node
, List
);
10340 Set_Analyzed
(Expression
(Decl_Node
), False);
10343 Error_Msg_NE
("missing actual&", Instantiation_Node
, Gen_Obj
);
10344 Error_Msg_NE
("\in instantiation of & declared#",
10345 Instantiation_Node
, Scope
(A_Gen_Obj
));
10347 if Is_Scalar_Type
(Etype
(A_Gen_Obj
)) then
10349 -- Create dummy constant declaration so that instance can be
10350 -- analyzed, to minimize cascaded visibility errors.
10352 if Present
(Subt_Mark
) then
10354 else pragma Assert
(Present
(Acc_Def
));
10359 Make_Object_Declaration
(Loc
,
10360 Defining_Identifier
=> New_Copy
(Gen_Obj
),
10361 Constant_Present
=> True,
10362 Null_Exclusion_Present
=> Null_Exclusion_Present
(Formal
),
10363 Object_Definition
=> New_Copy
(Def
),
10365 Make_Attribute_Reference
(Sloc
(Gen_Obj
),
10366 Attribute_Name
=> Name_First
,
10367 Prefix
=> New_Copy
(Def
)));
10369 Append
(Decl_Node
, List
);
10372 Abandon_Instantiation
(Instantiation_Node
);
10377 if Nkind
(Actual
) in N_Has_Entity
then
10378 Actual_Decl
:= Parent
(Entity
(Actual
));
10381 -- Ada 2005 (AI-423): For a formal object declaration with a null
10382 -- exclusion or an access definition that has a null exclusion: If the
10383 -- actual matching the formal object declaration denotes a generic
10384 -- formal object of another generic unit G, and the instantiation
10385 -- containing the actual occurs within the body of G or within the body
10386 -- of a generic unit declared within the declarative region of G, then
10387 -- the declaration of the formal object of G must have a null exclusion.
10388 -- Otherwise, the subtype of the actual matching the formal object
10389 -- declaration shall exclude null.
10391 if Ada_Version
>= Ada_2005
10392 and then Present
(Actual_Decl
)
10393 and then Nkind_In
(Actual_Decl
, N_Formal_Object_Declaration
,
10394 N_Object_Declaration
)
10395 and then Nkind
(Analyzed_Formal
) = N_Formal_Object_Declaration
10396 and then not Has_Null_Exclusion
(Actual_Decl
)
10397 and then Has_Null_Exclusion
(Analyzed_Formal
)
10399 Error_Msg_Sloc
:= Sloc
(Analyzed_Formal
);
10401 ("actual must exclude null to match generic formal#", Actual
);
10404 -- An effectively volatile object cannot be used as an actual in
10405 -- a generic instance. The following check is only relevant when
10406 -- SPARK_Mode is on as it is not a standard Ada legality rule.
10409 and then Present
(Actual
)
10410 and then Is_Effectively_Volatile_Object
(Actual
)
10413 ("volatile object cannot act as actual in generic instantiation "
10414 & "(SPARK RM 7.1.3(8))", Actual
);
10418 end Instantiate_Object
;
10420 ------------------------------
10421 -- Instantiate_Package_Body --
10422 ------------------------------
10424 procedure Instantiate_Package_Body
10425 (Body_Info
: Pending_Body_Info
;
10426 Inlined_Body
: Boolean := False;
10427 Body_Optional
: Boolean := False)
10429 Act_Decl
: constant Node_Id
:= Body_Info
.Act_Decl
;
10430 Inst_Node
: constant Node_Id
:= Body_Info
.Inst_Node
;
10431 Loc
: constant Source_Ptr
:= Sloc
(Inst_Node
);
10433 Gen_Id
: constant Node_Id
:= Name
(Inst_Node
);
10434 Gen_Unit
: constant Entity_Id
:= Get_Generic_Entity
(Inst_Node
);
10435 Gen_Decl
: constant Node_Id
:= Unit_Declaration_Node
(Gen_Unit
);
10436 Act_Spec
: constant Node_Id
:= Specification
(Act_Decl
);
10437 Act_Decl_Id
: constant Entity_Id
:= Defining_Entity
(Act_Spec
);
10439 Act_Body_Name
: Node_Id
;
10440 Gen_Body
: Node_Id
;
10441 Gen_Body_Id
: Node_Id
;
10442 Act_Body
: Node_Id
;
10443 Act_Body_Id
: Entity_Id
;
10445 Parent_Installed
: Boolean := False;
10446 Save_Style_Check
: constant Boolean := Style_Check
;
10448 Par_Ent
: Entity_Id
:= Empty
;
10449 Par_Vis
: Boolean := False;
10451 Vis_Prims_List
: Elist_Id
:= No_Elist
;
10452 -- List of primitives made temporarily visible in the instantiation
10453 -- to match the visibility of the formal type
10455 procedure Check_Initialized_Types
;
10456 -- In a generic package body, an entity of a generic private type may
10457 -- appear uninitialized. This is suspicious, unless the actual is a
10458 -- fully initialized type.
10460 -----------------------------
10461 -- Check_Initialized_Types --
10462 -----------------------------
10464 procedure Check_Initialized_Types
is
10466 Formal
: Entity_Id
;
10467 Actual
: Entity_Id
;
10468 Uninit_Var
: Entity_Id
;
10471 Decl
:= First
(Generic_Formal_Declarations
(Gen_Decl
));
10472 while Present
(Decl
) loop
10473 Uninit_Var
:= Empty
;
10475 if Nkind
(Decl
) = N_Private_Extension_Declaration
then
10476 Uninit_Var
:= Uninitialized_Variable
(Decl
);
10478 elsif Nkind
(Decl
) = N_Formal_Type_Declaration
10479 and then Nkind
(Formal_Type_Definition
(Decl
)) =
10480 N_Formal_Private_Type_Definition
10483 Uninitialized_Variable
(Formal_Type_Definition
(Decl
));
10486 if Present
(Uninit_Var
) then
10487 Formal
:= Defining_Identifier
(Decl
);
10488 Actual
:= First_Entity
(Act_Decl_Id
);
10490 -- For each formal there is a subtype declaration that renames
10491 -- the actual and has the same name as the formal. Locate the
10492 -- formal for warning message about uninitialized variables
10493 -- in the generic, for which the actual type should be a fully
10494 -- initialized type.
10496 while Present
(Actual
) loop
10497 exit when Ekind
(Actual
) = E_Package
10498 and then Present
(Renamed_Object
(Actual
));
10500 if Chars
(Actual
) = Chars
(Formal
)
10501 and then not Is_Scalar_Type
(Actual
)
10502 and then not Is_Fully_Initialized_Type
(Actual
)
10503 and then Warn_On_No_Value_Assigned
10505 Error_Msg_Node_2
:= Formal
;
10507 ("generic unit has uninitialized variable& of "
10508 & "formal private type &?v?", Actual
, Uninit_Var
);
10510 ("actual type for& should be fully initialized type?v?",
10515 Next_Entity
(Actual
);
10521 end Check_Initialized_Types
;
10523 -- Start of processing for Instantiate_Package_Body
10526 Gen_Body_Id
:= Corresponding_Body
(Gen_Decl
);
10528 -- The instance body may already have been processed, as the parent of
10529 -- another instance that is inlined (Load_Parent_Of_Generic).
10531 if Present
(Corresponding_Body
(Instance_Spec
(Inst_Node
))) then
10535 Expander_Mode_Save_And_Set
(Body_Info
.Expander_Status
);
10537 -- Re-establish the state of information on which checks are suppressed.
10538 -- This information was set in Body_Info at the point of instantiation,
10539 -- and now we restore it so that the instance is compiled using the
10540 -- check status at the instantiation (RM 11.5 (7.2/2), AI95-00224-01).
10542 Local_Suppress_Stack_Top
:= Body_Info
.Local_Suppress_Stack_Top
;
10543 Scope_Suppress
:= Body_Info
.Scope_Suppress
;
10544 Opt
.Ada_Version
:= Body_Info
.Version
;
10545 Opt
.Ada_Version_Pragma
:= Body_Info
.Version_Pragma
;
10546 Restore_Warnings
(Body_Info
.Warnings
);
10547 Opt
.SPARK_Mode
:= Body_Info
.SPARK_Mode
;
10548 Opt
.SPARK_Mode_Pragma
:= Body_Info
.SPARK_Mode_Pragma
;
10550 if No
(Gen_Body_Id
) then
10552 -- Do not look for parent of generic body if none is required.
10553 -- This may happen when the routine is called as part of the
10554 -- Pending_Instantiations processing, when nested instances
10555 -- may precede the one generated from the main unit.
10557 if not Unit_Requires_Body
(Defining_Entity
(Gen_Decl
))
10558 and then Body_Optional
10562 Load_Parent_Of_Generic
10563 (Inst_Node
, Specification
(Gen_Decl
), Body_Optional
);
10564 Gen_Body_Id
:= Corresponding_Body
(Gen_Decl
);
10568 -- Establish global variable for sloc adjustment and for error recovery
10570 Instantiation_Node
:= Inst_Node
;
10572 if Present
(Gen_Body_Id
) then
10573 Save_Env
(Gen_Unit
, Act_Decl_Id
);
10574 Style_Check
:= False;
10575 Current_Sem_Unit
:= Body_Info
.Current_Sem_Unit
;
10577 Gen_Body
:= Unit_Declaration_Node
(Gen_Body_Id
);
10579 Create_Instantiation_Source
10580 (Inst_Node
, Gen_Body_Id
, False, S_Adjustment
);
10584 (Original_Node
(Gen_Body
), Empty
, Instantiating
=> True);
10586 -- Build new name (possibly qualified) for body declaration
10588 Act_Body_Id
:= New_Copy
(Act_Decl_Id
);
10590 -- Some attributes of spec entity are not inherited by body entity
10592 Set_Handler_Records
(Act_Body_Id
, No_List
);
10594 if Nkind
(Defining_Unit_Name
(Act_Spec
)) =
10595 N_Defining_Program_Unit_Name
10598 Make_Defining_Program_Unit_Name
(Loc
,
10599 Name
=> New_Copy_Tree
(Name
(Defining_Unit_Name
(Act_Spec
))),
10600 Defining_Identifier
=> Act_Body_Id
);
10602 Act_Body_Name
:= Act_Body_Id
;
10605 Set_Defining_Unit_Name
(Act_Body
, Act_Body_Name
);
10607 Set_Corresponding_Spec
(Act_Body
, Act_Decl_Id
);
10608 Check_Generic_Actuals
(Act_Decl_Id
, False);
10609 Check_Initialized_Types
;
10611 -- Install primitives hidden at the point of the instantiation but
10612 -- visible when processing the generic formals
10618 E
:= First_Entity
(Act_Decl_Id
);
10619 while Present
(E
) loop
10621 and then Is_Generic_Actual_Type
(E
)
10622 and then Is_Tagged_Type
(E
)
10624 Install_Hidden_Primitives
10625 (Prims_List
=> Vis_Prims_List
,
10626 Gen_T
=> Generic_Parent_Type
(Parent
(E
)),
10634 -- If it is a child unit, make the parent instance (which is an
10635 -- instance of the parent of the generic) visible. The parent
10636 -- instance is the prefix of the name of the generic unit.
10638 if Ekind
(Scope
(Gen_Unit
)) = E_Generic_Package
10639 and then Nkind
(Gen_Id
) = N_Expanded_Name
10641 Par_Ent
:= Entity
(Prefix
(Gen_Id
));
10642 Par_Vis
:= Is_Immediately_Visible
(Par_Ent
);
10643 Install_Parent
(Par_Ent
, In_Body
=> True);
10644 Parent_Installed
:= True;
10646 elsif Is_Child_Unit
(Gen_Unit
) then
10647 Par_Ent
:= Scope
(Gen_Unit
);
10648 Par_Vis
:= Is_Immediately_Visible
(Par_Ent
);
10649 Install_Parent
(Par_Ent
, In_Body
=> True);
10650 Parent_Installed
:= True;
10653 -- If the instantiation is a library unit, and this is the main unit,
10654 -- then build the resulting compilation unit nodes for the instance.
10655 -- If this is a compilation unit but it is not the main unit, then it
10656 -- is the body of a unit in the context, that is being compiled
10657 -- because it is encloses some inlined unit or another generic unit
10658 -- being instantiated. In that case, this body is not part of the
10659 -- current compilation, and is not attached to the tree, but its
10660 -- parent must be set for analysis.
10662 if Nkind
(Parent
(Inst_Node
)) = N_Compilation_Unit
then
10664 -- Replace instance node with body of instance, and create new
10665 -- node for corresponding instance declaration.
10667 Build_Instance_Compilation_Unit_Nodes
10668 (Inst_Node
, Act_Body
, Act_Decl
);
10669 Analyze
(Inst_Node
);
10671 if Parent
(Inst_Node
) = Cunit
(Main_Unit
) then
10673 -- If the instance is a child unit itself, then set the scope
10674 -- of the expanded body to be the parent of the instantiation
10675 -- (ensuring that the fully qualified name will be generated
10676 -- for the elaboration subprogram).
10678 if Nkind
(Defining_Unit_Name
(Act_Spec
)) =
10679 N_Defining_Program_Unit_Name
10681 Set_Scope
(Defining_Entity
(Inst_Node
), Scope
(Act_Decl_Id
));
10685 -- Case where instantiation is not a library unit
10688 -- If this is an early instantiation, i.e. appears textually
10689 -- before the corresponding body and must be elaborated first,
10690 -- indicate that the body instance is to be delayed.
10692 Install_Body
(Act_Body
, Inst_Node
, Gen_Body
, Gen_Decl
);
10694 -- Now analyze the body. We turn off all checks if this is an
10695 -- internal unit, since there is no reason to have checks on for
10696 -- any predefined run-time library code. All such code is designed
10697 -- to be compiled with checks off.
10699 -- Note that we do NOT apply this criterion to children of GNAT
10700 -- The latter units must suppress checks explicitly if needed.
10702 if Is_Predefined_File_Name
10703 (Unit_File_Name
(Get_Source_Unit
(Gen_Decl
)))
10705 Analyze
(Act_Body
, Suppress
=> All_Checks
);
10707 Analyze
(Act_Body
);
10711 Inherit_Context
(Gen_Body
, Inst_Node
);
10713 -- Remove the parent instances if they have been placed on the scope
10714 -- stack to compile the body.
10716 if Parent_Installed
then
10717 Remove_Parent
(In_Body
=> True);
10719 -- Restore the previous visibility of the parent
10721 Set_Is_Immediately_Visible
(Par_Ent
, Par_Vis
);
10724 Restore_Hidden_Primitives
(Vis_Prims_List
);
10725 Restore_Private_Views
(Act_Decl_Id
);
10727 -- Remove the current unit from visibility if this is an instance
10728 -- that is not elaborated on the fly for inlining purposes.
10730 if not Inlined_Body
then
10731 Set_Is_Immediately_Visible
(Act_Decl_Id
, False);
10735 Style_Check
:= Save_Style_Check
;
10737 -- If we have no body, and the unit requires a body, then complain. This
10738 -- complaint is suppressed if we have detected other errors (since a
10739 -- common reason for missing the body is that it had errors).
10740 -- In CodePeer mode, a warning has been emitted already, no need for
10741 -- further messages.
10743 elsif Unit_Requires_Body
(Gen_Unit
)
10744 and then not Body_Optional
10746 if CodePeer_Mode
then
10749 elsif Serious_Errors_Detected
= 0 then
10751 ("cannot find body of generic package &", Inst_Node
, Gen_Unit
);
10753 -- Don't attempt to perform any cleanup actions if some other error
10754 -- was already detected, since this can cause blowups.
10760 -- Case of package that does not need a body
10763 -- If the instantiation of the declaration is a library unit, rewrite
10764 -- the original package instantiation as a package declaration in the
10765 -- compilation unit node.
10767 if Nkind
(Parent
(Inst_Node
)) = N_Compilation_Unit
then
10768 Set_Parent_Spec
(Act_Decl
, Parent_Spec
(Inst_Node
));
10769 Rewrite
(Inst_Node
, Act_Decl
);
10771 -- Generate elaboration entity, in case spec has elaboration code.
10772 -- This cannot be done when the instance is analyzed, because it
10773 -- is not known yet whether the body exists.
10775 Set_Elaboration_Entity_Required
(Act_Decl_Id
, False);
10776 Build_Elaboration_Entity
(Parent
(Inst_Node
), Act_Decl_Id
);
10778 -- If the instantiation is not a library unit, then append the
10779 -- declaration to the list of implicitly generated entities, unless
10780 -- it is already a list member which means that it was already
10783 elsif not Is_List_Member
(Act_Decl
) then
10784 Mark_Rewrite_Insertion
(Act_Decl
);
10785 Insert_Before
(Inst_Node
, Act_Decl
);
10789 Expander_Mode_Restore
;
10790 end Instantiate_Package_Body
;
10792 ---------------------------------
10793 -- Instantiate_Subprogram_Body --
10794 ---------------------------------
10796 procedure Instantiate_Subprogram_Body
10797 (Body_Info
: Pending_Body_Info
;
10798 Body_Optional
: Boolean := False)
10800 Act_Decl
: constant Node_Id
:= Body_Info
.Act_Decl
;
10801 Inst_Node
: constant Node_Id
:= Body_Info
.Inst_Node
;
10802 Loc
: constant Source_Ptr
:= Sloc
(Inst_Node
);
10803 Gen_Id
: constant Node_Id
:= Name
(Inst_Node
);
10804 Gen_Unit
: constant Entity_Id
:= Get_Generic_Entity
(Inst_Node
);
10805 Gen_Decl
: constant Node_Id
:= Unit_Declaration_Node
(Gen_Unit
);
10806 Anon_Id
: constant Entity_Id
:=
10807 Defining_Unit_Name
(Specification
(Act_Decl
));
10808 Pack_Id
: constant Entity_Id
:=
10809 Defining_Unit_Name
(Parent
(Act_Decl
));
10811 Saved_Style_Check
: constant Boolean := Style_Check
;
10812 Saved_Warnings
: constant Warning_Record
:= Save_Warnings
;
10814 Act_Body
: Node_Id
;
10815 Gen_Body
: Node_Id
;
10816 Gen_Body_Id
: Node_Id
;
10817 Pack_Body
: Node_Id
;
10818 Par_Ent
: Entity_Id
:= Empty
;
10819 Par_Vis
: Boolean := False;
10820 Ret_Expr
: Node_Id
;
10822 Parent_Installed
: Boolean := False;
10825 Gen_Body_Id
:= Corresponding_Body
(Gen_Decl
);
10827 -- Subprogram body may have been created already because of an inline
10828 -- pragma, or because of multiple elaborations of the enclosing package
10829 -- when several instances of the subprogram appear in the main unit.
10831 if Present
(Corresponding_Body
(Act_Decl
)) then
10835 Expander_Mode_Save_And_Set
(Body_Info
.Expander_Status
);
10837 -- Re-establish the state of information on which checks are suppressed.
10838 -- This information was set in Body_Info at the point of instantiation,
10839 -- and now we restore it so that the instance is compiled using the
10840 -- check status at the instantiation (RM 11.5 (7.2/2), AI95-00224-01).
10842 Local_Suppress_Stack_Top
:= Body_Info
.Local_Suppress_Stack_Top
;
10843 Scope_Suppress
:= Body_Info
.Scope_Suppress
;
10844 Opt
.Ada_Version
:= Body_Info
.Version
;
10845 Opt
.Ada_Version_Pragma
:= Body_Info
.Version_Pragma
;
10846 Restore_Warnings
(Body_Info
.Warnings
);
10847 Opt
.SPARK_Mode
:= Body_Info
.SPARK_Mode
;
10848 Opt
.SPARK_Mode_Pragma
:= Body_Info
.SPARK_Mode_Pragma
;
10850 if No
(Gen_Body_Id
) then
10852 -- For imported generic subprogram, no body to compile, complete
10853 -- the spec entity appropriately.
10855 if Is_Imported
(Gen_Unit
) then
10856 Set_Is_Imported
(Anon_Id
);
10857 Set_First_Rep_Item
(Anon_Id
, First_Rep_Item
(Gen_Unit
));
10858 Set_Interface_Name
(Anon_Id
, Interface_Name
(Gen_Unit
));
10859 Set_Convention
(Anon_Id
, Convention
(Gen_Unit
));
10860 Set_Has_Completion
(Anon_Id
);
10863 -- For other cases, compile the body
10866 Load_Parent_Of_Generic
10867 (Inst_Node
, Specification
(Gen_Decl
), Body_Optional
);
10868 Gen_Body_Id
:= Corresponding_Body
(Gen_Decl
);
10872 Instantiation_Node
:= Inst_Node
;
10874 if Present
(Gen_Body_Id
) then
10875 Gen_Body
:= Unit_Declaration_Node
(Gen_Body_Id
);
10877 if Nkind
(Gen_Body
) = N_Subprogram_Body_Stub
then
10879 -- Either body is not present, or context is non-expanding, as
10880 -- when compiling a subunit. Mark the instance as completed, and
10881 -- diagnose a missing body when needed.
10884 and then Operating_Mode
= Generate_Code
10887 ("missing proper body for instantiation", Gen_Body
);
10890 Set_Has_Completion
(Anon_Id
);
10894 Save_Env
(Gen_Unit
, Anon_Id
);
10895 Style_Check
:= False;
10896 Current_Sem_Unit
:= Body_Info
.Current_Sem_Unit
;
10897 Create_Instantiation_Source
10905 (Original_Node
(Gen_Body
), Empty
, Instantiating
=> True);
10907 -- Create proper defining name for the body, to correspond to
10908 -- the one in the spec.
10910 Set_Defining_Unit_Name
(Specification
(Act_Body
),
10911 Make_Defining_Identifier
10912 (Sloc
(Defining_Entity
(Inst_Node
)), Chars
(Anon_Id
)));
10913 Set_Corresponding_Spec
(Act_Body
, Anon_Id
);
10914 Set_Has_Completion
(Anon_Id
);
10915 Check_Generic_Actuals
(Pack_Id
, False);
10917 -- Generate a reference to link the visible subprogram instance to
10918 -- the generic body, which for navigation purposes is the only
10919 -- available source for the instance.
10922 (Related_Instance
(Pack_Id
),
10923 Gen_Body_Id
, 'b', Set_Ref
=> False, Force
=> True);
10925 -- If it is a child unit, make the parent instance (which is an
10926 -- instance of the parent of the generic) visible. The parent
10927 -- instance is the prefix of the name of the generic unit.
10929 if Ekind
(Scope
(Gen_Unit
)) = E_Generic_Package
10930 and then Nkind
(Gen_Id
) = N_Expanded_Name
10932 Par_Ent
:= Entity
(Prefix
(Gen_Id
));
10933 Par_Vis
:= Is_Immediately_Visible
(Par_Ent
);
10934 Install_Parent
(Par_Ent
, In_Body
=> True);
10935 Parent_Installed
:= True;
10937 elsif Is_Child_Unit
(Gen_Unit
) then
10938 Par_Ent
:= Scope
(Gen_Unit
);
10939 Par_Vis
:= Is_Immediately_Visible
(Par_Ent
);
10940 Install_Parent
(Par_Ent
, In_Body
=> True);
10941 Parent_Installed
:= True;
10944 -- Subprogram body is placed in the body of wrapper package,
10945 -- whose spec contains the subprogram declaration as well as
10946 -- the renaming declarations for the generic parameters.
10949 Make_Package_Body
(Loc
,
10950 Defining_Unit_Name
=> New_Copy
(Pack_Id
),
10951 Declarations
=> New_List
(Act_Body
));
10953 Set_Corresponding_Spec
(Pack_Body
, Pack_Id
);
10955 -- If the instantiation is a library unit, then build resulting
10956 -- compilation unit nodes for the instance. The declaration of
10957 -- the enclosing package is the grandparent of the subprogram
10958 -- declaration. First replace the instantiation node as the unit
10959 -- of the corresponding compilation.
10961 if Nkind
(Parent
(Inst_Node
)) = N_Compilation_Unit
then
10962 if Parent
(Inst_Node
) = Cunit
(Main_Unit
) then
10963 Set_Unit
(Parent
(Inst_Node
), Inst_Node
);
10964 Build_Instance_Compilation_Unit_Nodes
10965 (Inst_Node
, Pack_Body
, Parent
(Parent
(Act_Decl
)));
10966 Analyze
(Inst_Node
);
10968 Set_Parent
(Pack_Body
, Parent
(Inst_Node
));
10969 Analyze
(Pack_Body
);
10973 Insert_Before
(Inst_Node
, Pack_Body
);
10974 Mark_Rewrite_Insertion
(Pack_Body
);
10975 Analyze
(Pack_Body
);
10977 if Expander_Active
then
10978 Freeze_Subprogram_Body
(Inst_Node
, Gen_Body
, Pack_Id
);
10982 Inherit_Context
(Gen_Body
, Inst_Node
);
10984 Restore_Private_Views
(Pack_Id
, False);
10986 if Parent_Installed
then
10987 Remove_Parent
(In_Body
=> True);
10989 -- Restore the previous visibility of the parent
10991 Set_Is_Immediately_Visible
(Par_Ent
, Par_Vis
);
10995 Style_Check
:= Saved_Style_Check
;
10996 Restore_Warnings
(Saved_Warnings
);
10998 -- Body not found. Error was emitted already. If there were no previous
10999 -- errors, this may be an instance whose scope is a premature instance.
11000 -- In that case we must insure that the (legal) program does raise
11001 -- program error if executed. We generate a subprogram body for this
11002 -- purpose. See DEC ac30vso.
11004 -- Should not reference proprietary DEC tests in comments ???
11006 elsif Serious_Errors_Detected
= 0
11007 and then Nkind
(Parent
(Inst_Node
)) /= N_Compilation_Unit
11009 if Body_Optional
then
11012 elsif Ekind
(Anon_Id
) = E_Procedure
then
11014 Make_Subprogram_Body
(Loc
,
11016 Make_Procedure_Specification
(Loc
,
11017 Defining_Unit_Name
=>
11018 Make_Defining_Identifier
(Loc
, Chars
(Anon_Id
)),
11019 Parameter_Specifications
=>
11021 (Parameter_Specifications
(Parent
(Anon_Id
)))),
11023 Declarations
=> Empty_List
,
11024 Handled_Statement_Sequence
=>
11025 Make_Handled_Sequence_Of_Statements
(Loc
,
11028 Make_Raise_Program_Error
(Loc
,
11030 PE_Access_Before_Elaboration
))));
11034 Make_Raise_Program_Error
(Loc
,
11035 Reason
=> PE_Access_Before_Elaboration
);
11037 Set_Etype
(Ret_Expr
, (Etype
(Anon_Id
)));
11038 Set_Analyzed
(Ret_Expr
);
11041 Make_Subprogram_Body
(Loc
,
11043 Make_Function_Specification
(Loc
,
11044 Defining_Unit_Name
=>
11045 Make_Defining_Identifier
(Loc
, Chars
(Anon_Id
)),
11046 Parameter_Specifications
=>
11048 (Parameter_Specifications
(Parent
(Anon_Id
))),
11049 Result_Definition
=>
11050 New_Occurrence_Of
(Etype
(Anon_Id
), Loc
)),
11052 Declarations
=> Empty_List
,
11053 Handled_Statement_Sequence
=>
11054 Make_Handled_Sequence_Of_Statements
(Loc
,
11057 (Make_Simple_Return_Statement
(Loc
, Ret_Expr
))));
11060 Pack_Body
:= Make_Package_Body
(Loc
,
11061 Defining_Unit_Name
=> New_Copy
(Pack_Id
),
11062 Declarations
=> New_List
(Act_Body
));
11064 Insert_After
(Inst_Node
, Pack_Body
);
11065 Set_Corresponding_Spec
(Pack_Body
, Pack_Id
);
11066 Analyze
(Pack_Body
);
11069 Expander_Mode_Restore
;
11070 end Instantiate_Subprogram_Body
;
11072 ----------------------
11073 -- Instantiate_Type --
11074 ----------------------
11076 function Instantiate_Type
11079 Analyzed_Formal
: Node_Id
;
11080 Actual_Decls
: List_Id
) return List_Id
11082 Gen_T
: constant Entity_Id
:= Defining_Identifier
(Formal
);
11083 A_Gen_T
: constant Entity_Id
:=
11084 Defining_Identifier
(Analyzed_Formal
);
11085 Ancestor
: Entity_Id
:= Empty
;
11086 Def
: constant Node_Id
:= Formal_Type_Definition
(Formal
);
11088 Decl_Node
: Node_Id
;
11089 Decl_Nodes
: List_Id
;
11093 procedure Diagnose_Predicated_Actual
;
11094 -- There are a number of constructs in which a discrete type with
11095 -- predicates is illegal, e.g. as an index in an array type declaration.
11096 -- If a generic type is used is such a construct in a generic package
11097 -- declaration, it carries the flag No_Predicate_On_Actual. it is part
11098 -- of the generic contract that the actual cannot have predicates.
11100 procedure Validate_Array_Type_Instance
;
11101 procedure Validate_Access_Subprogram_Instance
;
11102 procedure Validate_Access_Type_Instance
;
11103 procedure Validate_Derived_Type_Instance
;
11104 procedure Validate_Derived_Interface_Type_Instance
;
11105 procedure Validate_Discriminated_Formal_Type
;
11106 procedure Validate_Interface_Type_Instance
;
11107 procedure Validate_Private_Type_Instance
;
11108 procedure Validate_Incomplete_Type_Instance
;
11109 -- These procedures perform validation tests for the named case.
11110 -- Validate_Discriminated_Formal_Type is shared by formal private
11111 -- types and Ada 2012 formal incomplete types.
11113 function Subtypes_Match
(Gen_T
, Act_T
: Entity_Id
) return Boolean;
11114 -- Check that base types are the same and that the subtypes match
11115 -- statically. Used in several of the above.
11117 ---------------------------------
11118 -- Diagnose_Predicated_Actual --
11119 ---------------------------------
11121 procedure Diagnose_Predicated_Actual
is
11123 if No_Predicate_On_Actual
(A_Gen_T
)
11124 and then Has_Predicates
(Act_T
)
11127 ("actual for& cannot be a type with predicate",
11128 Instantiation_Node
, A_Gen_T
);
11130 elsif No_Dynamic_Predicate_On_Actual
(A_Gen_T
)
11131 and then Has_Predicates
(Act_T
)
11132 and then not Has_Static_Predicate_Aspect
(Act_T
)
11135 ("actual for& cannot be a type with a dynamic predicate",
11136 Instantiation_Node
, A_Gen_T
);
11138 end Diagnose_Predicated_Actual
;
11140 --------------------
11141 -- Subtypes_Match --
11142 --------------------
11144 function Subtypes_Match
(Gen_T
, Act_T
: Entity_Id
) return Boolean is
11145 T
: constant Entity_Id
:= Get_Instance_Of
(Gen_T
);
11148 -- Some detailed comments would be useful here ???
11150 return ((Base_Type
(T
) = Act_T
11151 or else Base_Type
(T
) = Base_Type
(Act_T
))
11152 and then Subtypes_Statically_Match
(T
, Act_T
))
11154 or else (Is_Class_Wide_Type
(Gen_T
)
11155 and then Is_Class_Wide_Type
(Act_T
)
11156 and then Subtypes_Match
11157 (Get_Instance_Of
(Root_Type
(Gen_T
)),
11158 Root_Type
(Act_T
)))
11161 (Ekind_In
(Gen_T
, E_Anonymous_Access_Subprogram_Type
,
11162 E_Anonymous_Access_Type
)
11163 and then Ekind
(Act_T
) = Ekind
(Gen_T
)
11164 and then Subtypes_Statically_Match
11165 (Designated_Type
(Gen_T
), Designated_Type
(Act_T
)));
11166 end Subtypes_Match
;
11168 -----------------------------------------
11169 -- Validate_Access_Subprogram_Instance --
11170 -----------------------------------------
11172 procedure Validate_Access_Subprogram_Instance
is
11174 if not Is_Access_Type
(Act_T
)
11175 or else Ekind
(Designated_Type
(Act_T
)) /= E_Subprogram_Type
11178 ("expect access type in instantiation of &", Actual
, Gen_T
);
11179 Abandon_Instantiation
(Actual
);
11182 -- According to AI05-288, actuals for access_to_subprograms must be
11183 -- subtype conformant with the generic formal. Previous to AI05-288
11184 -- only mode conformance was required.
11186 -- This is a binding interpretation that applies to previous versions
11187 -- of the language, no need to maintain previous weaker checks.
11189 Check_Subtype_Conformant
11190 (Designated_Type
(Act_T
),
11191 Designated_Type
(A_Gen_T
),
11195 if Ekind
(Base_Type
(Act_T
)) = E_Access_Protected_Subprogram_Type
then
11196 if Ekind
(A_Gen_T
) = E_Access_Subprogram_Type
then
11198 ("protected access type not allowed for formal &",
11202 elsif Ekind
(A_Gen_T
) = E_Access_Protected_Subprogram_Type
then
11204 ("expect protected access type for formal &",
11207 end Validate_Access_Subprogram_Instance
;
11209 -----------------------------------
11210 -- Validate_Access_Type_Instance --
11211 -----------------------------------
11213 procedure Validate_Access_Type_Instance
is
11214 Desig_Type
: constant Entity_Id
:=
11215 Find_Actual_Type
(Designated_Type
(A_Gen_T
), A_Gen_T
);
11216 Desig_Act
: Entity_Id
;
11219 if not Is_Access_Type
(Act_T
) then
11221 ("expect access type in instantiation of &", Actual
, Gen_T
);
11222 Abandon_Instantiation
(Actual
);
11225 if Is_Access_Constant
(A_Gen_T
) then
11226 if not Is_Access_Constant
(Act_T
) then
11228 ("actual type must be access-to-constant type", Actual
);
11229 Abandon_Instantiation
(Actual
);
11232 if Is_Access_Constant
(Act_T
) then
11234 ("actual type must be access-to-variable type", Actual
);
11235 Abandon_Instantiation
(Actual
);
11237 elsif Ekind
(A_Gen_T
) = E_General_Access_Type
11238 and then Ekind
(Base_Type
(Act_T
)) /= E_General_Access_Type
11240 Error_Msg_N
-- CODEFIX
11241 ("actual must be general access type!", Actual
);
11242 Error_Msg_NE
-- CODEFIX
11243 ("add ALL to }!", Actual
, Act_T
);
11244 Abandon_Instantiation
(Actual
);
11248 -- The designated subtypes, that is to say the subtypes introduced
11249 -- by an access type declaration (and not by a subtype declaration)
11252 Desig_Act
:= Designated_Type
(Base_Type
(Act_T
));
11254 -- The designated type may have been introduced through a limited_
11255 -- with clause, in which case retrieve the non-limited view. This
11256 -- applies to incomplete types as well as to class-wide types.
11258 if From_Limited_With
(Desig_Act
) then
11259 Desig_Act
:= Available_View
(Desig_Act
);
11262 if not Subtypes_Match
(Desig_Type
, Desig_Act
) then
11264 ("designated type of actual does not match that of formal &",
11267 if not Predicates_Match
(Desig_Type
, Desig_Act
) then
11268 Error_Msg_N
("\predicates do not match", Actual
);
11271 Abandon_Instantiation
(Actual
);
11273 elsif Is_Access_Type
(Designated_Type
(Act_T
))
11274 and then Is_Constrained
(Designated_Type
(Designated_Type
(Act_T
)))
11276 Is_Constrained
(Designated_Type
(Desig_Type
))
11279 ("designated type of actual does not match that of formal &",
11282 if not Predicates_Match
(Desig_Type
, Desig_Act
) then
11283 Error_Msg_N
("\predicates do not match", Actual
);
11286 Abandon_Instantiation
(Actual
);
11289 -- Ada 2005: null-exclusion indicators of the two types must agree
11291 if Can_Never_Be_Null
(A_Gen_T
) /= Can_Never_Be_Null
(Act_T
) then
11293 ("non null exclusion of actual and formal & do not match",
11296 end Validate_Access_Type_Instance
;
11298 ----------------------------------
11299 -- Validate_Array_Type_Instance --
11300 ----------------------------------
11302 procedure Validate_Array_Type_Instance
is
11307 function Formal_Dimensions
return Int
;
11308 -- Count number of dimensions in array type formal
11310 -----------------------
11311 -- Formal_Dimensions --
11312 -----------------------
11314 function Formal_Dimensions
return Int
is
11319 if Nkind
(Def
) = N_Constrained_Array_Definition
then
11320 Index
:= First
(Discrete_Subtype_Definitions
(Def
));
11322 Index
:= First
(Subtype_Marks
(Def
));
11325 while Present
(Index
) loop
11327 Next_Index
(Index
);
11331 end Formal_Dimensions
;
11333 -- Start of processing for Validate_Array_Type_Instance
11336 if not Is_Array_Type
(Act_T
) then
11338 ("expect array type in instantiation of &", Actual
, Gen_T
);
11339 Abandon_Instantiation
(Actual
);
11341 elsif Nkind
(Def
) = N_Constrained_Array_Definition
then
11342 if not (Is_Constrained
(Act_T
)) then
11344 ("expect constrained array in instantiation of &",
11346 Abandon_Instantiation
(Actual
);
11350 if Is_Constrained
(Act_T
) then
11352 ("expect unconstrained array in instantiation of &",
11354 Abandon_Instantiation
(Actual
);
11358 if Formal_Dimensions
/= Number_Dimensions
(Act_T
) then
11360 ("dimensions of actual do not match formal &", Actual
, Gen_T
);
11361 Abandon_Instantiation
(Actual
);
11364 I1
:= First_Index
(A_Gen_T
);
11365 I2
:= First_Index
(Act_T
);
11366 for J
in 1 .. Formal_Dimensions
loop
11368 -- If the indexes of the actual were given by a subtype_mark,
11369 -- the index was transformed into a range attribute. Retrieve
11370 -- the original type mark for checking.
11372 if Is_Entity_Name
(Original_Node
(I2
)) then
11373 T2
:= Entity
(Original_Node
(I2
));
11378 if not Subtypes_Match
11379 (Find_Actual_Type
(Etype
(I1
), A_Gen_T
), T2
)
11382 ("index types of actual do not match those of formal &",
11384 Abandon_Instantiation
(Actual
);
11391 -- Check matching subtypes. Note that there are complex visibility
11392 -- issues when the generic is a child unit and some aspect of the
11393 -- generic type is declared in a parent unit of the generic. We do
11394 -- the test to handle this special case only after a direct check
11395 -- for static matching has failed. The case where both the component
11396 -- type and the array type are separate formals, and the component
11397 -- type is a private view may also require special checking in
11401 (Component_Type
(A_Gen_T
), Component_Type
(Act_T
))
11404 (Find_Actual_Type
(Component_Type
(A_Gen_T
), A_Gen_T
),
11405 Component_Type
(Act_T
))
11410 ("component subtype of actual does not match that of formal &",
11412 Abandon_Instantiation
(Actual
);
11415 if Has_Aliased_Components
(A_Gen_T
)
11416 and then not Has_Aliased_Components
(Act_T
)
11419 ("actual must have aliased components to match formal type &",
11422 end Validate_Array_Type_Instance
;
11424 -----------------------------------------------
11425 -- Validate_Derived_Interface_Type_Instance --
11426 -----------------------------------------------
11428 procedure Validate_Derived_Interface_Type_Instance
is
11429 Par
: constant Entity_Id
:= Entity
(Subtype_Indication
(Def
));
11433 -- First apply interface instance checks
11435 Validate_Interface_Type_Instance
;
11437 -- Verify that immediate parent interface is an ancestor of
11441 and then not Interface_Present_In_Ancestor
(Act_T
, Par
)
11444 ("interface actual must include progenitor&", Actual
, Par
);
11447 -- Now verify that the actual includes all other ancestors of
11450 Elmt
:= First_Elmt
(Interfaces
(A_Gen_T
));
11451 while Present
(Elmt
) loop
11452 if not Interface_Present_In_Ancestor
11453 (Act_T
, Get_Instance_Of
(Node
(Elmt
)))
11456 ("interface actual must include progenitor&",
11457 Actual
, Node
(Elmt
));
11462 end Validate_Derived_Interface_Type_Instance
;
11464 ------------------------------------
11465 -- Validate_Derived_Type_Instance --
11466 ------------------------------------
11468 procedure Validate_Derived_Type_Instance
is
11469 Actual_Discr
: Entity_Id
;
11470 Ancestor_Discr
: Entity_Id
;
11473 -- If the parent type in the generic declaration is itself a previous
11474 -- formal type, then it is local to the generic and absent from the
11475 -- analyzed generic definition. In that case the ancestor is the
11476 -- instance of the formal (which must have been instantiated
11477 -- previously), unless the ancestor is itself a formal derived type.
11478 -- In this latter case (which is the subject of Corrigendum 8652/0038
11479 -- (AI-202) the ancestor of the formals is the ancestor of its
11480 -- parent. Otherwise, the analyzed generic carries the parent type.
11481 -- If the parent type is defined in a previous formal package, then
11482 -- the scope of that formal package is that of the generic type
11483 -- itself, and it has already been mapped into the corresponding type
11484 -- in the actual package.
11486 -- Common case: parent type defined outside of the generic
11488 if Is_Entity_Name
(Subtype_Mark
(Def
))
11489 and then Present
(Entity
(Subtype_Mark
(Def
)))
11491 Ancestor
:= Get_Instance_Of
(Entity
(Subtype_Mark
(Def
)));
11493 -- Check whether parent is defined in a previous formal package
11496 Scope
(Scope
(Base_Type
(Etype
(A_Gen_T
)))) = Scope
(A_Gen_T
)
11499 Get_Instance_Of
(Base_Type
(Etype
(A_Gen_T
)));
11501 -- The type may be a local derivation, or a type extension of a
11502 -- previous formal, or of a formal of a parent package.
11504 elsif Is_Derived_Type
(Get_Instance_Of
(A_Gen_T
))
11506 Ekind
(Get_Instance_Of
(A_Gen_T
)) = E_Record_Type_With_Private
11508 -- Check whether the parent is another derived formal type in the
11509 -- same generic unit.
11511 if Etype
(A_Gen_T
) /= A_Gen_T
11512 and then Is_Generic_Type
(Etype
(A_Gen_T
))
11513 and then Scope
(Etype
(A_Gen_T
)) = Scope
(A_Gen_T
)
11514 and then Etype
(Etype
(A_Gen_T
)) /= Etype
(A_Gen_T
)
11516 -- Locate ancestor of parent from the subtype declaration
11517 -- created for the actual.
11523 Decl
:= First
(Actual_Decls
);
11524 while Present
(Decl
) loop
11525 if Nkind
(Decl
) = N_Subtype_Declaration
11526 and then Chars
(Defining_Identifier
(Decl
)) =
11527 Chars
(Etype
(A_Gen_T
))
11529 Ancestor
:= Generic_Parent_Type
(Decl
);
11537 pragma Assert
(Present
(Ancestor
));
11539 -- The ancestor itself may be a previous formal that has been
11542 Ancestor
:= Get_Instance_Of
(Ancestor
);
11546 Get_Instance_Of
(Base_Type
(Get_Instance_Of
(A_Gen_T
)));
11549 -- An unusual case: the actual is a type declared in a parent unit,
11550 -- but is not a formal type so there is no instance_of for it.
11551 -- Retrieve it by analyzing the record extension.
11553 elsif Is_Child_Unit
(Scope
(A_Gen_T
))
11554 and then In_Open_Scopes
(Scope
(Act_T
))
11555 and then Is_Generic_Instance
(Scope
(Act_T
))
11557 Analyze
(Subtype_Mark
(Def
));
11558 Ancestor
:= Entity
(Subtype_Mark
(Def
));
11561 Ancestor
:= Get_Instance_Of
(Etype
(Base_Type
(A_Gen_T
)));
11564 -- If the formal derived type has pragma Preelaborable_Initialization
11565 -- then the actual type must have preelaborable initialization.
11567 if Known_To_Have_Preelab_Init
(A_Gen_T
)
11568 and then not Has_Preelaborable_Initialization
(Act_T
)
11571 ("actual for & must have preelaborable initialization",
11575 -- Ada 2005 (AI-251)
11577 if Ada_Version
>= Ada_2005
and then Is_Interface
(Ancestor
) then
11578 if not Interface_Present_In_Ancestor
(Act_T
, Ancestor
) then
11580 ("(Ada 2005) expected type implementing & in instantiation",
11584 elsif not Is_Ancestor
(Base_Type
(Ancestor
), Act_T
) then
11586 ("expect type derived from & in instantiation",
11587 Actual
, First_Subtype
(Ancestor
));
11588 Abandon_Instantiation
(Actual
);
11591 -- Ada 2005 (AI-443): Synchronized formal derived type checks. Note
11592 -- that the formal type declaration has been rewritten as a private
11595 if Ada_Version
>= Ada_2005
11596 and then Nkind
(Parent
(A_Gen_T
)) = N_Private_Extension_Declaration
11597 and then Synchronized_Present
(Parent
(A_Gen_T
))
11599 -- The actual must be a synchronized tagged type
11601 if not Is_Tagged_Type
(Act_T
) then
11603 ("actual of synchronized type must be tagged", Actual
);
11604 Abandon_Instantiation
(Actual
);
11606 elsif Nkind
(Parent
(Act_T
)) = N_Full_Type_Declaration
11607 and then Nkind
(Type_Definition
(Parent
(Act_T
))) =
11608 N_Derived_Type_Definition
11609 and then not Synchronized_Present
11610 (Type_Definition
(Parent
(Act_T
)))
11613 ("actual of synchronized type must be synchronized", Actual
);
11614 Abandon_Instantiation
(Actual
);
11618 -- Perform atomic/volatile checks (RM C.6(12)). Note that AI05-0218-1
11619 -- removes the second instance of the phrase "or allow pass by copy".
11621 if Is_Atomic
(Act_T
) and then not Is_Atomic
(Ancestor
) then
11623 ("cannot have atomic actual type for non-atomic formal type",
11626 elsif Is_Volatile
(Act_T
) and then not Is_Volatile
(Ancestor
) then
11628 ("cannot have volatile actual type for non-volatile formal type",
11632 -- It should not be necessary to check for unknown discriminants on
11633 -- Formal, but for some reason Has_Unknown_Discriminants is false for
11634 -- A_Gen_T, so Is_Indefinite_Subtype incorrectly returns False. This
11635 -- needs fixing. ???
11637 if not Is_Indefinite_Subtype
(A_Gen_T
)
11638 and then not Unknown_Discriminants_Present
(Formal
)
11639 and then Is_Indefinite_Subtype
(Act_T
)
11641 Error_Msg_N
("actual subtype must be constrained", Actual
);
11642 Abandon_Instantiation
(Actual
);
11645 if not Unknown_Discriminants_Present
(Formal
) then
11646 if Is_Constrained
(Ancestor
) then
11647 if not Is_Constrained
(Act_T
) then
11648 Error_Msg_N
("actual subtype must be constrained", Actual
);
11649 Abandon_Instantiation
(Actual
);
11652 -- Ancestor is unconstrained, Check if generic formal and actual
11653 -- agree on constrainedness. The check only applies to array types
11654 -- and discriminated types.
11656 elsif Is_Constrained
(Act_T
) then
11657 if Ekind
(Ancestor
) = E_Access_Type
11658 or else (not Is_Constrained
(A_Gen_T
)
11659 and then Is_Composite_Type
(A_Gen_T
))
11661 Error_Msg_N
("actual subtype must be unconstrained", Actual
);
11662 Abandon_Instantiation
(Actual
);
11665 -- A class-wide type is only allowed if the formal has unknown
11668 elsif Is_Class_Wide_Type
(Act_T
)
11669 and then not Has_Unknown_Discriminants
(Ancestor
)
11672 ("actual for & cannot be a class-wide type", Actual
, Gen_T
);
11673 Abandon_Instantiation
(Actual
);
11675 -- Otherwise, the formal and actual must have the same number
11676 -- of discriminants and each discriminant of the actual must
11677 -- correspond to a discriminant of the formal.
11679 elsif Has_Discriminants
(Act_T
)
11680 and then not Has_Unknown_Discriminants
(Act_T
)
11681 and then Has_Discriminants
(Ancestor
)
11683 Actual_Discr
:= First_Discriminant
(Act_T
);
11684 Ancestor_Discr
:= First_Discriminant
(Ancestor
);
11685 while Present
(Actual_Discr
)
11686 and then Present
(Ancestor_Discr
)
11688 if Base_Type
(Act_T
) /= Base_Type
(Ancestor
) and then
11689 No
(Corresponding_Discriminant
(Actual_Discr
))
11692 ("discriminant & does not correspond "
11693 & "to ancestor discriminant", Actual
, Actual_Discr
);
11694 Abandon_Instantiation
(Actual
);
11697 Next_Discriminant
(Actual_Discr
);
11698 Next_Discriminant
(Ancestor_Discr
);
11701 if Present
(Actual_Discr
) or else Present
(Ancestor_Discr
) then
11703 ("actual for & must have same number of discriminants",
11705 Abandon_Instantiation
(Actual
);
11708 -- This case should be caught by the earlier check for
11709 -- constrainedness, but the check here is added for completeness.
11711 elsif Has_Discriminants
(Act_T
)
11712 and then not Has_Unknown_Discriminants
(Act_T
)
11715 ("actual for & must not have discriminants", Actual
, Gen_T
);
11716 Abandon_Instantiation
(Actual
);
11718 elsif Has_Discriminants
(Ancestor
) then
11720 ("actual for & must have known discriminants", Actual
, Gen_T
);
11721 Abandon_Instantiation
(Actual
);
11724 if not Subtypes_Statically_Compatible
11725 (Act_T
, Ancestor
, Formal_Derived_Matching
=> True)
11728 ("constraint on actual is incompatible with formal", Actual
);
11729 Abandon_Instantiation
(Actual
);
11733 -- If the formal and actual types are abstract, check that there
11734 -- are no abstract primitives of the actual type that correspond to
11735 -- nonabstract primitives of the formal type (second sentence of
11738 if Is_Abstract_Type
(A_Gen_T
) and then Is_Abstract_Type
(Act_T
) then
11739 Check_Abstract_Primitives
: declare
11740 Gen_Prims
: constant Elist_Id
:=
11741 Primitive_Operations
(A_Gen_T
);
11742 Gen_Elmt
: Elmt_Id
;
11743 Gen_Subp
: Entity_Id
;
11744 Anc_Subp
: Entity_Id
;
11745 Anc_Formal
: Entity_Id
;
11746 Anc_F_Type
: Entity_Id
;
11748 Act_Prims
: constant Elist_Id
:= Primitive_Operations
(Act_T
);
11749 Act_Elmt
: Elmt_Id
;
11750 Act_Subp
: Entity_Id
;
11751 Act_Formal
: Entity_Id
;
11752 Act_F_Type
: Entity_Id
;
11754 Subprograms_Correspond
: Boolean;
11756 function Is_Tagged_Ancestor
(T1
, T2
: Entity_Id
) return Boolean;
11757 -- Returns true if T2 is derived directly or indirectly from
11758 -- T1, including derivations from interfaces. T1 and T2 are
11759 -- required to be specific tagged base types.
11761 ------------------------
11762 -- Is_Tagged_Ancestor --
11763 ------------------------
11765 function Is_Tagged_Ancestor
(T1
, T2
: Entity_Id
) return Boolean
11767 Intfc_Elmt
: Elmt_Id
;
11770 -- The predicate is satisfied if the types are the same
11775 -- If we've reached the top of the derivation chain then
11776 -- we know that T1 is not an ancestor of T2.
11778 elsif Etype
(T2
) = T2
then
11781 -- Proceed to check T2's immediate parent
11783 elsif Is_Ancestor
(T1
, Base_Type
(Etype
(T2
))) then
11786 -- Finally, check to see if T1 is an ancestor of any of T2's
11790 Intfc_Elmt
:= First_Elmt
(Interfaces
(T2
));
11791 while Present
(Intfc_Elmt
) loop
11792 if Is_Ancestor
(T1
, Node
(Intfc_Elmt
)) then
11796 Next_Elmt
(Intfc_Elmt
);
11801 end Is_Tagged_Ancestor
;
11803 -- Start of processing for Check_Abstract_Primitives
11806 -- Loop over all of the formal derived type's primitives
11808 Gen_Elmt
:= First_Elmt
(Gen_Prims
);
11809 while Present
(Gen_Elmt
) loop
11810 Gen_Subp
:= Node
(Gen_Elmt
);
11812 -- If the primitive of the formal is not abstract, then
11813 -- determine whether there is a corresponding primitive of
11814 -- the actual type that's abstract.
11816 if not Is_Abstract_Subprogram
(Gen_Subp
) then
11817 Act_Elmt
:= First_Elmt
(Act_Prims
);
11818 while Present
(Act_Elmt
) loop
11819 Act_Subp
:= Node
(Act_Elmt
);
11821 -- If we find an abstract primitive of the actual,
11822 -- then we need to test whether it corresponds to the
11823 -- subprogram from which the generic formal primitive
11826 if Is_Abstract_Subprogram
(Act_Subp
) then
11827 Anc_Subp
:= Alias
(Gen_Subp
);
11829 -- Test whether we have a corresponding primitive
11830 -- by comparing names, kinds, formal types, and
11833 if Chars
(Anc_Subp
) = Chars
(Act_Subp
)
11834 and then Ekind
(Anc_Subp
) = Ekind
(Act_Subp
)
11836 Anc_Formal
:= First_Formal
(Anc_Subp
);
11837 Act_Formal
:= First_Formal
(Act_Subp
);
11838 while Present
(Anc_Formal
)
11839 and then Present
(Act_Formal
)
11841 Anc_F_Type
:= Etype
(Anc_Formal
);
11842 Act_F_Type
:= Etype
(Act_Formal
);
11844 if Ekind
(Anc_F_Type
) =
11845 E_Anonymous_Access_Type
11847 Anc_F_Type
:= Designated_Type
(Anc_F_Type
);
11849 if Ekind
(Act_F_Type
) =
11850 E_Anonymous_Access_Type
11853 Designated_Type
(Act_F_Type
);
11859 Ekind
(Act_F_Type
) = E_Anonymous_Access_Type
11864 Anc_F_Type
:= Base_Type
(Anc_F_Type
);
11865 Act_F_Type
:= Base_Type
(Act_F_Type
);
11867 -- If the formal is controlling, then the
11868 -- the type of the actual primitive's formal
11869 -- must be derived directly or indirectly
11870 -- from the type of the ancestor primitive's
11873 if Is_Controlling_Formal
(Anc_Formal
) then
11874 if not Is_Tagged_Ancestor
11875 (Anc_F_Type
, Act_F_Type
)
11880 -- Otherwise the types of the formals must
11883 elsif Anc_F_Type
/= Act_F_Type
then
11887 Next_Entity
(Anc_Formal
);
11888 Next_Entity
(Act_Formal
);
11891 -- If we traversed through all of the formals
11892 -- then so far the subprograms correspond, so
11893 -- now check that any result types correspond.
11895 if No
(Anc_Formal
) and then No
(Act_Formal
) then
11896 Subprograms_Correspond
:= True;
11898 if Ekind
(Act_Subp
) = E_Function
then
11899 Anc_F_Type
:= Etype
(Anc_Subp
);
11900 Act_F_Type
:= Etype
(Act_Subp
);
11902 if Ekind
(Anc_F_Type
) =
11903 E_Anonymous_Access_Type
11906 Designated_Type
(Anc_F_Type
);
11908 if Ekind
(Act_F_Type
) =
11909 E_Anonymous_Access_Type
11912 Designated_Type
(Act_F_Type
);
11914 Subprograms_Correspond
:= False;
11919 = E_Anonymous_Access_Type
11921 Subprograms_Correspond
:= False;
11924 Anc_F_Type
:= Base_Type
(Anc_F_Type
);
11925 Act_F_Type
:= Base_Type
(Act_F_Type
);
11927 -- Now either the result types must be
11928 -- the same or, if the result type is
11929 -- controlling, the result type of the
11930 -- actual primitive must descend from the
11931 -- result type of the ancestor primitive.
11933 if Subprograms_Correspond
11934 and then Anc_F_Type
/= Act_F_Type
11936 Has_Controlling_Result
(Anc_Subp
)
11937 and then not Is_Tagged_Ancestor
11938 (Anc_F_Type
, Act_F_Type
)
11940 Subprograms_Correspond
:= False;
11944 -- Found a matching subprogram belonging to
11945 -- formal ancestor type, so actual subprogram
11946 -- corresponds and this violates 3.9.3(9).
11948 if Subprograms_Correspond
then
11950 ("abstract subprogram & overrides "
11951 & "nonabstract subprogram of ancestor",
11958 Next_Elmt
(Act_Elmt
);
11962 Next_Elmt
(Gen_Elmt
);
11964 end Check_Abstract_Primitives
;
11967 -- Verify that limitedness matches. If parent is a limited
11968 -- interface then the generic formal is not unless declared
11969 -- explicitly so. If not declared limited, the actual cannot be
11970 -- limited (see AI05-0087).
11972 -- Even though this AI is a binding interpretation, we enable the
11973 -- check only in Ada 2012 mode, because this improper construct
11974 -- shows up in user code and in existing B-tests.
11976 if Is_Limited_Type
(Act_T
)
11977 and then not Is_Limited_Type
(A_Gen_T
)
11978 and then Ada_Version
>= Ada_2012
11980 if In_Instance
then
11984 ("actual for non-limited & cannot be a limited type",
11986 Explain_Limited_Type
(Act_T
, Actual
);
11987 Abandon_Instantiation
(Actual
);
11990 end Validate_Derived_Type_Instance
;
11992 ----------------------------------------
11993 -- Validate_Discriminated_Formal_Type --
11994 ----------------------------------------
11996 procedure Validate_Discriminated_Formal_Type
is
11997 Formal_Discr
: Entity_Id
;
11998 Actual_Discr
: Entity_Id
;
11999 Formal_Subt
: Entity_Id
;
12002 if Has_Discriminants
(A_Gen_T
) then
12003 if not Has_Discriminants
(Act_T
) then
12005 ("actual for & must have discriminants", Actual
, Gen_T
);
12006 Abandon_Instantiation
(Actual
);
12008 elsif Is_Constrained
(Act_T
) then
12010 ("actual for & must be unconstrained", Actual
, Gen_T
);
12011 Abandon_Instantiation
(Actual
);
12014 Formal_Discr
:= First_Discriminant
(A_Gen_T
);
12015 Actual_Discr
:= First_Discriminant
(Act_T
);
12016 while Formal_Discr
/= Empty
loop
12017 if Actual_Discr
= Empty
then
12019 ("discriminants on actual do not match formal",
12021 Abandon_Instantiation
(Actual
);
12024 Formal_Subt
:= Get_Instance_Of
(Etype
(Formal_Discr
));
12026 -- Access discriminants match if designated types do
12028 if Ekind
(Base_Type
(Formal_Subt
)) = E_Anonymous_Access_Type
12029 and then (Ekind
(Base_Type
(Etype
(Actual_Discr
)))) =
12030 E_Anonymous_Access_Type
12033 (Designated_Type
(Base_Type
(Formal_Subt
))) =
12034 Designated_Type
(Base_Type
(Etype
(Actual_Discr
)))
12038 elsif Base_Type
(Formal_Subt
) /=
12039 Base_Type
(Etype
(Actual_Discr
))
12042 ("types of actual discriminants must match formal",
12044 Abandon_Instantiation
(Actual
);
12046 elsif not Subtypes_Statically_Match
12047 (Formal_Subt
, Etype
(Actual_Discr
))
12048 and then Ada_Version
>= Ada_95
12051 ("subtypes of actual discriminants must match formal",
12053 Abandon_Instantiation
(Actual
);
12056 Next_Discriminant
(Formal_Discr
);
12057 Next_Discriminant
(Actual_Discr
);
12060 if Actual_Discr
/= Empty
then
12062 ("discriminants on actual do not match formal",
12064 Abandon_Instantiation
(Actual
);
12068 end Validate_Discriminated_Formal_Type
;
12070 ---------------------------------------
12071 -- Validate_Incomplete_Type_Instance --
12072 ---------------------------------------
12074 procedure Validate_Incomplete_Type_Instance
is
12076 if not Is_Tagged_Type
(Act_T
)
12077 and then Is_Tagged_Type
(A_Gen_T
)
12080 ("actual for & must be a tagged type", Actual
, Gen_T
);
12083 Validate_Discriminated_Formal_Type
;
12084 end Validate_Incomplete_Type_Instance
;
12086 --------------------------------------
12087 -- Validate_Interface_Type_Instance --
12088 --------------------------------------
12090 procedure Validate_Interface_Type_Instance
is
12092 if not Is_Interface
(Act_T
) then
12094 ("actual for formal interface type must be an interface",
12097 elsif Is_Limited_Type
(Act_T
) /= Is_Limited_Type
(A_Gen_T
)
12098 or else Is_Task_Interface
(A_Gen_T
) /= Is_Task_Interface
(Act_T
)
12099 or else Is_Protected_Interface
(A_Gen_T
) /=
12100 Is_Protected_Interface
(Act_T
)
12101 or else Is_Synchronized_Interface
(A_Gen_T
) /=
12102 Is_Synchronized_Interface
(Act_T
)
12105 ("actual for interface& does not match (RM 12.5.5(4))",
12108 end Validate_Interface_Type_Instance
;
12110 ------------------------------------
12111 -- Validate_Private_Type_Instance --
12112 ------------------------------------
12114 procedure Validate_Private_Type_Instance
is
12116 if Is_Limited_Type
(Act_T
)
12117 and then not Is_Limited_Type
(A_Gen_T
)
12119 if In_Instance
then
12123 ("actual for non-limited & cannot be a limited type", Actual
,
12125 Explain_Limited_Type
(Act_T
, Actual
);
12126 Abandon_Instantiation
(Actual
);
12129 elsif Known_To_Have_Preelab_Init
(A_Gen_T
)
12130 and then not Has_Preelaborable_Initialization
(Act_T
)
12133 ("actual for & must have preelaborable initialization", Actual
,
12136 elsif Is_Indefinite_Subtype
(Act_T
)
12137 and then not Is_Indefinite_Subtype
(A_Gen_T
)
12138 and then Ada_Version
>= Ada_95
12141 ("actual for & must be a definite subtype", Actual
, Gen_T
);
12143 elsif not Is_Tagged_Type
(Act_T
)
12144 and then Is_Tagged_Type
(A_Gen_T
)
12147 ("actual for & must be a tagged type", Actual
, Gen_T
);
12150 Validate_Discriminated_Formal_Type
;
12152 end Validate_Private_Type_Instance
;
12154 -- Start of processing for Instantiate_Type
12157 if Get_Instance_Of
(A_Gen_T
) /= A_Gen_T
then
12158 Error_Msg_N
("duplicate instantiation of generic type", Actual
);
12159 return New_List
(Error
);
12161 elsif not Is_Entity_Name
(Actual
)
12162 or else not Is_Type
(Entity
(Actual
))
12165 ("expect valid subtype mark to instantiate &", Actual
, Gen_T
);
12166 Abandon_Instantiation
(Actual
);
12169 Act_T
:= Entity
(Actual
);
12171 -- Ada 2005 (AI-216): An Unchecked_Union subtype shall only be passed
12172 -- as a generic actual parameter if the corresponding formal type
12173 -- does not have a known_discriminant_part, or is a formal derived
12174 -- type that is an Unchecked_Union type.
12176 if Is_Unchecked_Union
(Base_Type
(Act_T
)) then
12177 if not Has_Discriminants
(A_Gen_T
)
12178 or else (Is_Derived_Type
(A_Gen_T
)
12179 and then Is_Unchecked_Union
(A_Gen_T
))
12183 Error_Msg_N
("unchecked union cannot be the actual for a "
12184 & "discriminated formal type", Act_T
);
12189 -- Deal with fixed/floating restrictions
12191 if Is_Floating_Point_Type
(Act_T
) then
12192 Check_Restriction
(No_Floating_Point
, Actual
);
12193 elsif Is_Fixed_Point_Type
(Act_T
) then
12194 Check_Restriction
(No_Fixed_Point
, Actual
);
12197 -- Deal with error of using incomplete type as generic actual.
12198 -- This includes limited views of a type, even if the non-limited
12199 -- view may be available.
12201 if Ekind
(Act_T
) = E_Incomplete_Type
12202 or else (Is_Class_Wide_Type
(Act_T
)
12203 and then Ekind
(Root_Type
(Act_T
)) = E_Incomplete_Type
)
12205 -- If the formal is an incomplete type, the actual can be
12206 -- incomplete as well.
12208 if Ekind
(A_Gen_T
) = E_Incomplete_Type
then
12211 elsif Is_Class_Wide_Type
(Act_T
)
12212 or else No
(Full_View
(Act_T
))
12214 Error_Msg_N
("premature use of incomplete type", Actual
);
12215 Abandon_Instantiation
(Actual
);
12217 Act_T
:= Full_View
(Act_T
);
12218 Set_Entity
(Actual
, Act_T
);
12220 if Has_Private_Component
(Act_T
) then
12222 ("premature use of type with private component", Actual
);
12226 -- Deal with error of premature use of private type as generic actual
12228 elsif Is_Private_Type
(Act_T
)
12229 and then Is_Private_Type
(Base_Type
(Act_T
))
12230 and then not Is_Generic_Type
(Act_T
)
12231 and then not Is_Derived_Type
(Act_T
)
12232 and then No
(Full_View
(Root_Type
(Act_T
)))
12234 -- If the formal is an incomplete type, the actual can be
12235 -- private or incomplete as well.
12237 if Ekind
(A_Gen_T
) = E_Incomplete_Type
then
12240 Error_Msg_N
("premature use of private type", Actual
);
12243 elsif Has_Private_Component
(Act_T
) then
12245 ("premature use of type with private component", Actual
);
12248 Set_Instance_Of
(A_Gen_T
, Act_T
);
12250 -- If the type is generic, the class-wide type may also be used
12252 if Is_Tagged_Type
(A_Gen_T
)
12253 and then Is_Tagged_Type
(Act_T
)
12254 and then not Is_Class_Wide_Type
(A_Gen_T
)
12256 Set_Instance_Of
(Class_Wide_Type
(A_Gen_T
),
12257 Class_Wide_Type
(Act_T
));
12260 if not Is_Abstract_Type
(A_Gen_T
)
12261 and then Is_Abstract_Type
(Act_T
)
12264 ("actual of non-abstract formal cannot be abstract", Actual
);
12267 -- A generic scalar type is a first subtype for which we generate
12268 -- an anonymous base type. Indicate that the instance of this base
12269 -- is the base type of the actual.
12271 if Is_Scalar_Type
(A_Gen_T
) then
12272 Set_Instance_Of
(Etype
(A_Gen_T
), Etype
(Act_T
));
12276 if Error_Posted
(Act_T
) then
12279 case Nkind
(Def
) is
12280 when N_Formal_Private_Type_Definition
=>
12281 Validate_Private_Type_Instance
;
12283 when N_Formal_Incomplete_Type_Definition
=>
12284 Validate_Incomplete_Type_Instance
;
12286 when N_Formal_Derived_Type_Definition
=>
12287 Validate_Derived_Type_Instance
;
12289 when N_Formal_Discrete_Type_Definition
=>
12290 if not Is_Discrete_Type
(Act_T
) then
12292 ("expect discrete type in instantiation of&",
12294 Abandon_Instantiation
(Actual
);
12297 Diagnose_Predicated_Actual
;
12299 when N_Formal_Signed_Integer_Type_Definition
=>
12300 if not Is_Signed_Integer_Type
(Act_T
) then
12302 ("expect signed integer type in instantiation of&",
12304 Abandon_Instantiation
(Actual
);
12307 Diagnose_Predicated_Actual
;
12309 when N_Formal_Modular_Type_Definition
=>
12310 if not Is_Modular_Integer_Type
(Act_T
) then
12312 ("expect modular type in instantiation of &",
12314 Abandon_Instantiation
(Actual
);
12317 Diagnose_Predicated_Actual
;
12319 when N_Formal_Floating_Point_Definition
=>
12320 if not Is_Floating_Point_Type
(Act_T
) then
12322 ("expect float type in instantiation of &", Actual
, Gen_T
);
12323 Abandon_Instantiation
(Actual
);
12326 when N_Formal_Ordinary_Fixed_Point_Definition
=>
12327 if not Is_Ordinary_Fixed_Point_Type
(Act_T
) then
12329 ("expect ordinary fixed point type in instantiation of &",
12331 Abandon_Instantiation
(Actual
);
12334 when N_Formal_Decimal_Fixed_Point_Definition
=>
12335 if not Is_Decimal_Fixed_Point_Type
(Act_T
) then
12337 ("expect decimal type in instantiation of &",
12339 Abandon_Instantiation
(Actual
);
12342 when N_Array_Type_Definition
=>
12343 Validate_Array_Type_Instance
;
12345 when N_Access_To_Object_Definition
=>
12346 Validate_Access_Type_Instance
;
12348 when N_Access_Function_Definition |
12349 N_Access_Procedure_Definition
=>
12350 Validate_Access_Subprogram_Instance
;
12352 when N_Record_Definition
=>
12353 Validate_Interface_Type_Instance
;
12355 when N_Derived_Type_Definition
=>
12356 Validate_Derived_Interface_Type_Instance
;
12359 raise Program_Error
;
12364 Subt
:= New_Copy
(Gen_T
);
12366 -- Use adjusted sloc of subtype name as the location for other nodes in
12367 -- the subtype declaration.
12369 Loc
:= Sloc
(Subt
);
12372 Make_Subtype_Declaration
(Loc
,
12373 Defining_Identifier
=> Subt
,
12374 Subtype_Indication
=> New_Occurrence_Of
(Act_T
, Loc
));
12376 if Is_Private_Type
(Act_T
) then
12377 Set_Has_Private_View
(Subtype_Indication
(Decl_Node
));
12379 elsif Is_Access_Type
(Act_T
)
12380 and then Is_Private_Type
(Designated_Type
(Act_T
))
12382 Set_Has_Private_View
(Subtype_Indication
(Decl_Node
));
12385 -- In Ada 2012 the actual may be a limited view. Indicate that
12386 -- the local subtype must be treated as such.
12388 if From_Limited_With
(Act_T
) then
12389 Set_Ekind
(Subt
, E_Incomplete_Subtype
);
12390 Set_From_Limited_With
(Subt
);
12393 Decl_Nodes
:= New_List
(Decl_Node
);
12395 -- Flag actual derived types so their elaboration produces the
12396 -- appropriate renamings for the primitive operations of the ancestor.
12397 -- Flag actual for formal private types as well, to determine whether
12398 -- operations in the private part may override inherited operations.
12399 -- If the formal has an interface list, the ancestor is not the
12400 -- parent, but the analyzed formal that includes the interface
12401 -- operations of all its progenitors.
12403 -- Same treatment for formal private types, so we can check whether the
12404 -- type is tagged limited when validating derivations in the private
12405 -- part. (See AI05-096).
12407 if Nkind
(Def
) = N_Formal_Derived_Type_Definition
then
12408 if Present
(Interface_List
(Def
)) then
12409 Set_Generic_Parent_Type
(Decl_Node
, A_Gen_T
);
12411 Set_Generic_Parent_Type
(Decl_Node
, Ancestor
);
12414 elsif Nkind_In
(Def
, N_Formal_Private_Type_Definition
,
12415 N_Formal_Incomplete_Type_Definition
)
12417 Set_Generic_Parent_Type
(Decl_Node
, A_Gen_T
);
12420 -- If the actual is a synchronized type that implements an interface,
12421 -- the primitive operations are attached to the corresponding record,
12422 -- and we have to treat it as an additional generic actual, so that its
12423 -- primitive operations become visible in the instance. The task or
12424 -- protected type itself does not carry primitive operations.
12426 if Is_Concurrent_Type
(Act_T
)
12427 and then Is_Tagged_Type
(Act_T
)
12428 and then Present
(Corresponding_Record_Type
(Act_T
))
12429 and then Present
(Ancestor
)
12430 and then Is_Interface
(Ancestor
)
12433 Corr_Rec
: constant Entity_Id
:=
12434 Corresponding_Record_Type
(Act_T
);
12435 New_Corr
: Entity_Id
;
12436 Corr_Decl
: Node_Id
;
12439 New_Corr
:= Make_Temporary
(Loc
, 'S');
12441 Make_Subtype_Declaration
(Loc
,
12442 Defining_Identifier
=> New_Corr
,
12443 Subtype_Indication
=>
12444 New_Occurrence_Of
(Corr_Rec
, Loc
));
12445 Append_To
(Decl_Nodes
, Corr_Decl
);
12447 if Ekind
(Act_T
) = E_Task_Type
then
12448 Set_Ekind
(Subt
, E_Task_Subtype
);
12450 Set_Ekind
(Subt
, E_Protected_Subtype
);
12453 Set_Corresponding_Record_Type
(Subt
, Corr_Rec
);
12454 Set_Generic_Parent_Type
(Corr_Decl
, Ancestor
);
12455 Set_Generic_Parent_Type
(Decl_Node
, Empty
);
12460 end Instantiate_Type
;
12462 ---------------------
12463 -- Is_In_Main_Unit --
12464 ---------------------
12466 function Is_In_Main_Unit
(N
: Node_Id
) return Boolean is
12467 Unum
: constant Unit_Number_Type
:= Get_Source_Unit
(N
);
12468 Current_Unit
: Node_Id
;
12471 if Unum
= Main_Unit
then
12474 -- If the current unit is a subunit then it is either the main unit or
12475 -- is being compiled as part of the main unit.
12477 elsif Nkind
(N
) = N_Compilation_Unit
then
12478 return Nkind
(Unit
(N
)) = N_Subunit
;
12481 Current_Unit
:= Parent
(N
);
12482 while Present
(Current_Unit
)
12483 and then Nkind
(Current_Unit
) /= N_Compilation_Unit
12485 Current_Unit
:= Parent
(Current_Unit
);
12488 -- The instantiation node is in the main unit, or else the current node
12489 -- (perhaps as the result of nested instantiations) is in the main unit,
12490 -- or in the declaration of the main unit, which in this last case must
12493 return Unum
= Main_Unit
12494 or else Current_Unit
= Cunit
(Main_Unit
)
12495 or else Current_Unit
= Library_Unit
(Cunit
(Main_Unit
))
12496 or else (Present
(Library_Unit
(Current_Unit
))
12497 and then Is_In_Main_Unit
(Library_Unit
(Current_Unit
)));
12498 end Is_In_Main_Unit
;
12500 ----------------------------
12501 -- Load_Parent_Of_Generic --
12502 ----------------------------
12504 procedure Load_Parent_Of_Generic
12507 Body_Optional
: Boolean := False)
12509 Comp_Unit
: constant Node_Id
:= Cunit
(Get_Source_Unit
(Spec
));
12510 Saved_Style_Check
: constant Boolean := Style_Check
;
12511 Saved_Warnings
: constant Warning_Record
:= Save_Warnings
;
12512 True_Parent
: Node_Id
;
12513 Inst_Node
: Node_Id
;
12515 Previous_Instances
: constant Elist_Id
:= New_Elmt_List
;
12517 procedure Collect_Previous_Instances
(Decls
: List_Id
);
12518 -- Collect all instantiations in the given list of declarations, that
12519 -- precede the generic that we need to load. If the bodies of these
12520 -- instantiations are available, we must analyze them, to ensure that
12521 -- the public symbols generated are the same when the unit is compiled
12522 -- to generate code, and when it is compiled in the context of a unit
12523 -- that needs a particular nested instance. This process is applied to
12524 -- both package and subprogram instances.
12526 --------------------------------
12527 -- Collect_Previous_Instances --
12528 --------------------------------
12530 procedure Collect_Previous_Instances
(Decls
: List_Id
) is
12534 Decl
:= First
(Decls
);
12535 while Present
(Decl
) loop
12536 if Sloc
(Decl
) >= Sloc
(Inst_Node
) then
12539 -- If Decl is an instantiation, then record it as requiring
12540 -- instantiation of the corresponding body, except if it is an
12541 -- abbreviated instantiation generated internally for conformance
12542 -- checking purposes only for the case of a formal package
12543 -- declared without a box (see Instantiate_Formal_Package). Such
12544 -- an instantiation does not generate any code (the actual code
12545 -- comes from actual) and thus does not need to be analyzed here.
12546 -- If the instantiation appears with a generic package body it is
12547 -- not analyzed here either.
12549 elsif Nkind
(Decl
) = N_Package_Instantiation
12550 and then not Is_Internal
(Defining_Entity
(Decl
))
12552 Append_Elmt
(Decl
, Previous_Instances
);
12554 -- For a subprogram instantiation, omit instantiations intrinsic
12555 -- operations (Unchecked_Conversions, etc.) that have no bodies.
12557 elsif Nkind_In
(Decl
, N_Function_Instantiation
,
12558 N_Procedure_Instantiation
)
12559 and then not Is_Intrinsic_Subprogram
(Entity
(Name
(Decl
)))
12561 Append_Elmt
(Decl
, Previous_Instances
);
12563 elsif Nkind
(Decl
) = N_Package_Declaration
then
12564 Collect_Previous_Instances
12565 (Visible_Declarations
(Specification
(Decl
)));
12566 Collect_Previous_Instances
12567 (Private_Declarations
(Specification
(Decl
)));
12569 -- Previous non-generic bodies may contain instances as well
12571 elsif Nkind
(Decl
) = N_Package_Body
12572 and then Ekind
(Corresponding_Spec
(Decl
)) /= E_Generic_Package
12574 Collect_Previous_Instances
(Declarations
(Decl
));
12576 elsif Nkind
(Decl
) = N_Subprogram_Body
12577 and then not Acts_As_Spec
(Decl
)
12578 and then not Is_Generic_Subprogram
(Corresponding_Spec
(Decl
))
12580 Collect_Previous_Instances
(Declarations
(Decl
));
12585 end Collect_Previous_Instances
;
12587 -- Start of processing for Load_Parent_Of_Generic
12590 if not In_Same_Source_Unit
(N
, Spec
)
12591 or else Nkind
(Unit
(Comp_Unit
)) = N_Package_Declaration
12592 or else (Nkind
(Unit
(Comp_Unit
)) = N_Package_Body
12593 and then not Is_In_Main_Unit
(Spec
))
12595 -- Find body of parent of spec, and analyze it. A special case arises
12596 -- when the parent is an instantiation, that is to say when we are
12597 -- currently instantiating a nested generic. In that case, there is
12598 -- no separate file for the body of the enclosing instance. Instead,
12599 -- the enclosing body must be instantiated as if it were a pending
12600 -- instantiation, in order to produce the body for the nested generic
12601 -- we require now. Note that in that case the generic may be defined
12602 -- in a package body, the instance defined in the same package body,
12603 -- and the original enclosing body may not be in the main unit.
12605 Inst_Node
:= Empty
;
12607 True_Parent
:= Parent
(Spec
);
12608 while Present
(True_Parent
)
12609 and then Nkind
(True_Parent
) /= N_Compilation_Unit
12611 if Nkind
(True_Parent
) = N_Package_Declaration
12613 Nkind
(Original_Node
(True_Parent
)) = N_Package_Instantiation
12615 -- Parent is a compilation unit that is an instantiation.
12616 -- Instantiation node has been replaced with package decl.
12618 Inst_Node
:= Original_Node
(True_Parent
);
12621 elsif Nkind
(True_Parent
) = N_Package_Declaration
12622 and then Present
(Generic_Parent
(Specification
(True_Parent
)))
12623 and then Nkind
(Parent
(True_Parent
)) /= N_Compilation_Unit
12625 -- Parent is an instantiation within another specification.
12626 -- Declaration for instance has been inserted before original
12627 -- instantiation node. A direct link would be preferable?
12629 Inst_Node
:= Next
(True_Parent
);
12630 while Present
(Inst_Node
)
12631 and then Nkind
(Inst_Node
) /= N_Package_Instantiation
12636 -- If the instance appears within a generic, and the generic
12637 -- unit is defined within a formal package of the enclosing
12638 -- generic, there is no generic body available, and none
12639 -- needed. A more precise test should be used ???
12641 if No
(Inst_Node
) then
12648 True_Parent
:= Parent
(True_Parent
);
12652 -- Case where we are currently instantiating a nested generic
12654 if Present
(Inst_Node
) then
12655 if Nkind
(Parent
(True_Parent
)) = N_Compilation_Unit
then
12657 -- Instantiation node and declaration of instantiated package
12658 -- were exchanged when only the declaration was needed.
12659 -- Restore instantiation node before proceeding with body.
12661 Set_Unit
(Parent
(True_Parent
), Inst_Node
);
12664 -- Now complete instantiation of enclosing body, if it appears in
12665 -- some other unit. If it appears in the current unit, the body
12666 -- will have been instantiated already.
12668 if No
(Corresponding_Body
(Instance_Spec
(Inst_Node
))) then
12670 -- We need to determine the expander mode to instantiate the
12671 -- enclosing body. Because the generic body we need may use
12672 -- global entities declared in the enclosing package (including
12673 -- aggregates) it is in general necessary to compile this body
12674 -- with expansion enabled, except if we are within a generic
12675 -- package, in which case the usual generic rule applies.
12678 Exp_Status
: Boolean := True;
12682 -- Loop through scopes looking for generic package
12684 Scop
:= Scope
(Defining_Entity
(Instance_Spec
(Inst_Node
)));
12685 while Present
(Scop
)
12686 and then Scop
/= Standard_Standard
12688 if Ekind
(Scop
) = E_Generic_Package
then
12689 Exp_Status
:= False;
12693 Scop
:= Scope
(Scop
);
12696 -- Collect previous instantiations in the unit that contains
12697 -- the desired generic.
12699 if Nkind
(Parent
(True_Parent
)) /= N_Compilation_Unit
12700 and then not Body_Optional
12704 Info
: Pending_Body_Info
;
12708 Par
:= Parent
(Inst_Node
);
12709 while Present
(Par
) loop
12710 exit when Nkind
(Parent
(Par
)) = N_Compilation_Unit
;
12711 Par
:= Parent
(Par
);
12714 pragma Assert
(Present
(Par
));
12716 if Nkind
(Par
) = N_Package_Body
then
12717 Collect_Previous_Instances
(Declarations
(Par
));
12719 elsif Nkind
(Par
) = N_Package_Declaration
then
12720 Collect_Previous_Instances
12721 (Visible_Declarations
(Specification
(Par
)));
12722 Collect_Previous_Instances
12723 (Private_Declarations
(Specification
(Par
)));
12726 -- Enclosing unit is a subprogram body. In this
12727 -- case all instance bodies are processed in order
12728 -- and there is no need to collect them separately.
12733 Decl
:= First_Elmt
(Previous_Instances
);
12734 while Present
(Decl
) loop
12736 (Inst_Node
=> Node
(Decl
),
12738 Instance_Spec
(Node
(Decl
)),
12739 Expander_Status
=> Exp_Status
,
12740 Current_Sem_Unit
=>
12741 Get_Code_Unit
(Sloc
(Node
(Decl
))),
12742 Scope_Suppress
=> Scope_Suppress
,
12743 Local_Suppress_Stack_Top
=>
12744 Local_Suppress_Stack_Top
,
12745 Version
=> Ada_Version
,
12746 Version_Pragma
=> Ada_Version_Pragma
,
12747 Warnings
=> Save_Warnings
,
12748 SPARK_Mode
=> SPARK_Mode
,
12749 SPARK_Mode_Pragma
=> SPARK_Mode_Pragma
);
12751 -- Package instance
12754 Nkind
(Node
(Decl
)) = N_Package_Instantiation
12756 Instantiate_Package_Body
12757 (Info
, Body_Optional
=> True);
12759 -- Subprogram instance
12762 -- The instance_spec is in the wrapper package,
12763 -- usually followed by its local renaming
12764 -- declaration. See Build_Subprogram_Renaming
12769 (Last
(Visible_Declarations
12770 (Specification
(Info
.Act_Decl
))));
12773 N_Subprogram_Renaming_Declaration
12775 Decl
:= Prev
(Decl
);
12778 Info
.Act_Decl
:= Decl
;
12781 Instantiate_Subprogram_Body
12782 (Info
, Body_Optional
=> True);
12790 Instantiate_Package_Body
12792 ((Inst_Node
=> Inst_Node
,
12793 Act_Decl
=> True_Parent
,
12794 Expander_Status
=> Exp_Status
,
12795 Current_Sem_Unit
=> Get_Code_Unit
12796 (Sloc
(Inst_Node
)),
12797 Scope_Suppress
=> Scope_Suppress
,
12798 Local_Suppress_Stack_Top
=> Local_Suppress_Stack_Top
,
12799 Version
=> Ada_Version
,
12800 Version_Pragma
=> Ada_Version_Pragma
,
12801 Warnings
=> Save_Warnings
,
12802 SPARK_Mode
=> SPARK_Mode
,
12803 SPARK_Mode_Pragma
=> SPARK_Mode_Pragma
)),
12804 Body_Optional
=> Body_Optional
);
12808 -- Case where we are not instantiating a nested generic
12811 Opt
.Style_Check
:= False;
12812 Expander_Mode_Save_And_Set
(True);
12813 Load_Needed_Body
(Comp_Unit
, OK
);
12814 Opt
.Style_Check
:= Saved_Style_Check
;
12815 Restore_Warnings
(Saved_Warnings
);
12816 Expander_Mode_Restore
;
12819 and then Unit_Requires_Body
(Defining_Entity
(Spec
))
12820 and then not Body_Optional
12823 Bname
: constant Unit_Name_Type
:=
12824 Get_Body_Name
(Get_Unit_Name
(Unit
(Comp_Unit
)));
12827 -- In CodePeer mode, the missing body may make the analysis
12828 -- incomplete, but we do not treat it as fatal.
12830 if CodePeer_Mode
then
12834 Error_Msg_Unit_1
:= Bname
;
12835 Error_Msg_N
("this instantiation requires$!", N
);
12836 Error_Msg_File_1
:=
12837 Get_File_Name
(Bname
, Subunit
=> False);
12838 Error_Msg_N
("\but file{ was not found!", N
);
12839 raise Unrecoverable_Error
;
12846 -- If loading parent of the generic caused an instantiation circularity,
12847 -- we abandon compilation at this point, because otherwise in some cases
12848 -- we get into trouble with infinite recursions after this point.
12850 if Circularity_Detected
then
12851 raise Unrecoverable_Error
;
12853 end Load_Parent_Of_Generic
;
12855 ---------------------------------
12856 -- Map_Formal_Package_Entities --
12857 ---------------------------------
12859 procedure Map_Formal_Package_Entities
(Form
: Entity_Id
; Act
: Entity_Id
) is
12864 Set_Instance_Of
(Form
, Act
);
12866 -- Traverse formal and actual package to map the corresponding entities.
12867 -- We skip over internal entities that may be generated during semantic
12868 -- analysis, and find the matching entities by name, given that they
12869 -- must appear in the same order.
12871 E1
:= First_Entity
(Form
);
12872 E2
:= First_Entity
(Act
);
12873 while Present
(E1
) and then E1
/= First_Private_Entity
(Form
) loop
12874 -- Could this test be a single condition??? Seems like it could, and
12875 -- isn't FPE (Form) a constant anyway???
12877 if not Is_Internal
(E1
)
12878 and then Present
(Parent
(E1
))
12879 and then not Is_Class_Wide_Type
(E1
)
12880 and then not Is_Internal_Name
(Chars
(E1
))
12882 while Present
(E2
) and then Chars
(E2
) /= Chars
(E1
) loop
12889 Set_Instance_Of
(E1
, E2
);
12891 if Is_Type
(E1
) and then Is_Tagged_Type
(E2
) then
12892 Set_Instance_Of
(Class_Wide_Type
(E1
), Class_Wide_Type
(E2
));
12895 if Is_Constrained
(E1
) then
12896 Set_Instance_Of
(Base_Type
(E1
), Base_Type
(E2
));
12899 if Ekind
(E1
) = E_Package
and then No
(Renamed_Object
(E1
)) then
12900 Map_Formal_Package_Entities
(E1
, E2
);
12907 end Map_Formal_Package_Entities
;
12909 -----------------------
12910 -- Move_Freeze_Nodes --
12911 -----------------------
12913 procedure Move_Freeze_Nodes
12914 (Out_Of
: Entity_Id
;
12919 Next_Decl
: Node_Id
;
12920 Next_Node
: Node_Id
:= After
;
12923 function Is_Outer_Type
(T
: Entity_Id
) return Boolean;
12924 -- Check whether entity is declared in a scope external to that of the
12927 -------------------
12928 -- Is_Outer_Type --
12929 -------------------
12931 function Is_Outer_Type
(T
: Entity_Id
) return Boolean is
12932 Scop
: Entity_Id
:= Scope
(T
);
12935 if Scope_Depth
(Scop
) < Scope_Depth
(Out_Of
) then
12939 while Scop
/= Standard_Standard
loop
12940 if Scop
= Out_Of
then
12943 Scop
:= Scope
(Scop
);
12951 -- Start of processing for Move_Freeze_Nodes
12958 -- First remove the freeze nodes that may appear before all other
12962 while Present
(Decl
)
12963 and then Nkind
(Decl
) = N_Freeze_Entity
12964 and then Is_Outer_Type
(Entity
(Decl
))
12966 Decl
:= Remove_Head
(L
);
12967 Insert_After
(Next_Node
, Decl
);
12968 Set_Analyzed
(Decl
, False);
12973 -- Next scan the list of declarations and remove each freeze node that
12974 -- appears ahead of the current node.
12976 while Present
(Decl
) loop
12977 while Present
(Next
(Decl
))
12978 and then Nkind
(Next
(Decl
)) = N_Freeze_Entity
12979 and then Is_Outer_Type
(Entity
(Next
(Decl
)))
12981 Next_Decl
:= Remove_Next
(Decl
);
12982 Insert_After
(Next_Node
, Next_Decl
);
12983 Set_Analyzed
(Next_Decl
, False);
12984 Next_Node
:= Next_Decl
;
12987 -- If the declaration is a nested package or concurrent type, then
12988 -- recurse. Nested generic packages will have been processed from the
12991 case Nkind
(Decl
) is
12992 when N_Package_Declaration
=>
12993 Spec
:= Specification
(Decl
);
12995 when N_Task_Type_Declaration
=>
12996 Spec
:= Task_Definition
(Decl
);
12998 when N_Protected_Type_Declaration
=>
12999 Spec
:= Protected_Definition
(Decl
);
13005 if Present
(Spec
) then
13006 Move_Freeze_Nodes
(Out_Of
, Next_Node
, Visible_Declarations
(Spec
));
13007 Move_Freeze_Nodes
(Out_Of
, Next_Node
, Private_Declarations
(Spec
));
13012 end Move_Freeze_Nodes
;
13018 function Next_Assoc
(E
: Assoc_Ptr
) return Assoc_Ptr
is
13020 return Generic_Renamings
.Table
(E
).Next_In_HTable
;
13023 ------------------------
13024 -- Preanalyze_Actuals --
13025 ------------------------
13027 procedure Preanalyze_Actuals
(N
: Node_Id
) is
13030 Errs
: constant Int
:= Serious_Errors_Detected
;
13032 Cur
: Entity_Id
:= Empty
;
13033 -- Current homograph of the instance name
13036 -- Saved visibility status of the current homograph
13039 Assoc
:= First
(Generic_Associations
(N
));
13041 -- If the instance is a child unit, its name may hide an outer homonym,
13042 -- so make it invisible to perform name resolution on the actuals.
13044 if Nkind
(Defining_Unit_Name
(N
)) = N_Defining_Program_Unit_Name
13046 (Current_Entity
(Defining_Identifier
(Defining_Unit_Name
(N
))))
13048 Cur
:= Current_Entity
(Defining_Identifier
(Defining_Unit_Name
(N
)));
13050 if Is_Compilation_Unit
(Cur
) then
13051 Vis
:= Is_Immediately_Visible
(Cur
);
13052 Set_Is_Immediately_Visible
(Cur
, False);
13058 while Present
(Assoc
) loop
13059 if Nkind
(Assoc
) /= N_Others_Choice
then
13060 Act
:= Explicit_Generic_Actual_Parameter
(Assoc
);
13062 -- Within a nested instantiation, a defaulted actual is an empty
13063 -- association, so nothing to analyze. If the subprogram actual
13064 -- is an attribute, analyze prefix only, because actual is not a
13065 -- complete attribute reference.
13067 -- If actual is an allocator, analyze expression only. The full
13068 -- analysis can generate code, and if instance is a compilation
13069 -- unit we have to wait until the package instance is installed
13070 -- to have a proper place to insert this code.
13072 -- String literals may be operators, but at this point we do not
13073 -- know whether the actual is a formal subprogram or a string.
13078 elsif Nkind
(Act
) = N_Attribute_Reference
then
13079 Analyze
(Prefix
(Act
));
13081 elsif Nkind
(Act
) = N_Explicit_Dereference
then
13082 Analyze
(Prefix
(Act
));
13084 elsif Nkind
(Act
) = N_Allocator
then
13086 Expr
: constant Node_Id
:= Expression
(Act
);
13089 if Nkind
(Expr
) = N_Subtype_Indication
then
13090 Analyze
(Subtype_Mark
(Expr
));
13092 -- Analyze separately each discriminant constraint, when
13093 -- given with a named association.
13099 Constr
:= First
(Constraints
(Constraint
(Expr
)));
13100 while Present
(Constr
) loop
13101 if Nkind
(Constr
) = N_Discriminant_Association
then
13102 Analyze
(Expression
(Constr
));
13116 elsif Nkind
(Act
) /= N_Operator_Symbol
then
13120 if Errs
/= Serious_Errors_Detected
then
13122 -- Do a minimal analysis of the generic, to prevent spurious
13123 -- warnings complaining about the generic being unreferenced,
13124 -- before abandoning the instantiation.
13126 Analyze
(Name
(N
));
13128 if Is_Entity_Name
(Name
(N
))
13129 and then Etype
(Name
(N
)) /= Any_Type
13131 Generate_Reference
(Entity
(Name
(N
)), Name
(N
));
13132 Set_Is_Instantiated
(Entity
(Name
(N
)));
13135 if Present
(Cur
) then
13137 -- For the case of a child instance hiding an outer homonym,
13138 -- provide additional warning which might explain the error.
13140 Set_Is_Immediately_Visible
(Cur
, Vis
);
13142 ("& hides outer unit with the same name??",
13143 N
, Defining_Unit_Name
(N
));
13146 Abandon_Instantiation
(Act
);
13153 if Present
(Cur
) then
13154 Set_Is_Immediately_Visible
(Cur
, Vis
);
13156 end Preanalyze_Actuals
;
13158 -------------------
13159 -- Remove_Parent --
13160 -------------------
13162 procedure Remove_Parent
(In_Body
: Boolean := False) is
13163 S
: Entity_Id
:= Current_Scope
;
13164 -- S is the scope containing the instantiation just completed. The scope
13165 -- stack contains the parent instances of the instantiation, followed by
13174 -- After child instantiation is complete, remove from scope stack the
13175 -- extra copy of the current scope, and then remove parent instances.
13177 if not In_Body
then
13180 while Current_Scope
/= S
loop
13181 P
:= Current_Scope
;
13182 End_Package_Scope
(Current_Scope
);
13184 if In_Open_Scopes
(P
) then
13185 E
:= First_Entity
(P
);
13186 while Present
(E
) loop
13187 Set_Is_Immediately_Visible
(E
, True);
13191 -- If instantiation is declared in a block, it is the enclosing
13192 -- scope that might be a parent instance. Note that only one
13193 -- block can be involved, because the parent instances have
13194 -- been installed within it.
13196 if Ekind
(P
) = E_Block
then
13197 Cur_P
:= Scope
(P
);
13202 if Is_Generic_Instance
(Cur_P
) and then P
/= Current_Scope
then
13203 -- We are within an instance of some sibling. Retain
13204 -- visibility of parent, for proper subsequent cleanup, and
13205 -- reinstall private declarations as well.
13207 Set_In_Private_Part
(P
);
13208 Install_Private_Declarations
(P
);
13211 -- If the ultimate parent is a top-level unit recorded in
13212 -- Instance_Parent_Unit, then reset its visibility to what it was
13213 -- before instantiation. (It's not clear what the purpose is of
13214 -- testing whether Scope (P) is In_Open_Scopes, but that test was
13215 -- present before the ultimate parent test was added.???)
13217 elsif not In_Open_Scopes
(Scope
(P
))
13218 or else (P
= Instance_Parent_Unit
13219 and then not Parent_Unit_Visible
)
13221 Set_Is_Immediately_Visible
(P
, False);
13223 -- If the current scope is itself an instantiation of a generic
13224 -- nested within P, and we are in the private part of body of this
13225 -- instantiation, restore the full views of P, that were removed
13226 -- in End_Package_Scope above. This obscure case can occur when a
13227 -- subunit of a generic contains an instance of a child unit of
13228 -- its generic parent unit.
13230 elsif S
= Current_Scope
and then Is_Generic_Instance
(S
) then
13232 Par
: constant Entity_Id
:=
13233 Generic_Parent
(Package_Specification
(S
));
13236 and then P
= Scope
(Par
)
13237 and then (In_Package_Body
(S
) or else In_Private_Part
(S
))
13239 Set_In_Private_Part
(P
);
13240 Install_Private_Declarations
(P
);
13246 -- Reset visibility of entities in the enclosing scope
13248 Set_Is_Hidden_Open_Scope
(Current_Scope
, False);
13250 Hidden
:= First_Elmt
(Hidden_Entities
);
13251 while Present
(Hidden
) loop
13252 Set_Is_Immediately_Visible
(Node
(Hidden
), True);
13253 Next_Elmt
(Hidden
);
13257 -- Each body is analyzed separately, and there is no context that
13258 -- needs preserving from one body instance to the next, so remove all
13259 -- parent scopes that have been installed.
13261 while Present
(S
) loop
13262 End_Package_Scope
(S
);
13263 Set_Is_Immediately_Visible
(S
, False);
13264 S
:= Current_Scope
;
13265 exit when S
= Standard_Standard
;
13274 procedure Restore_Env
is
13275 Saved
: Instance_Env
renames Instance_Envs
.Table
(Instance_Envs
.Last
);
13278 if No
(Current_Instantiated_Parent
.Act_Id
) then
13279 -- Restore environment after subprogram inlining
13281 Restore_Private_Views
(Empty
);
13284 Current_Instantiated_Parent
:= Saved
.Instantiated_Parent
;
13285 Exchanged_Views
:= Saved
.Exchanged_Views
;
13286 Hidden_Entities
:= Saved
.Hidden_Entities
;
13287 Current_Sem_Unit
:= Saved
.Current_Sem_Unit
;
13288 Parent_Unit_Visible
:= Saved
.Parent_Unit_Visible
;
13289 Instance_Parent_Unit
:= Saved
.Instance_Parent_Unit
;
13291 Restore_Opt_Config_Switches
(Saved
.Switches
);
13293 Instance_Envs
.Decrement_Last
;
13296 ---------------------------
13297 -- Restore_Private_Views --
13298 ---------------------------
13300 procedure Restore_Private_Views
13301 (Pack_Id
: Entity_Id
;
13302 Is_Package
: Boolean := True)
13307 Dep_Elmt
: Elmt_Id
;
13310 procedure Restore_Nested_Formal
(Formal
: Entity_Id
);
13311 -- Hide the generic formals of formal packages declared with box which
13312 -- were reachable in the current instantiation.
13314 ---------------------------
13315 -- Restore_Nested_Formal --
13316 ---------------------------
13318 procedure Restore_Nested_Formal
(Formal
: Entity_Id
) is
13322 if Present
(Renamed_Object
(Formal
))
13323 and then Denotes_Formal_Package
(Renamed_Object
(Formal
), True)
13327 elsif Present
(Associated_Formal_Package
(Formal
)) then
13328 Ent
:= First_Entity
(Formal
);
13329 while Present
(Ent
) loop
13330 exit when Ekind
(Ent
) = E_Package
13331 and then Renamed_Entity
(Ent
) = Renamed_Entity
(Formal
);
13333 Set_Is_Hidden
(Ent
);
13334 Set_Is_Potentially_Use_Visible
(Ent
, False);
13336 -- If package, then recurse
13338 if Ekind
(Ent
) = E_Package
then
13339 Restore_Nested_Formal
(Ent
);
13345 end Restore_Nested_Formal
;
13347 -- Start of processing for Restore_Private_Views
13350 M
:= First_Elmt
(Exchanged_Views
);
13351 while Present
(M
) loop
13354 -- Subtypes of types whose views have been exchanged, and that are
13355 -- defined within the instance, were not on the Private_Dependents
13356 -- list on entry to the instance, so they have to be exchanged
13357 -- explicitly now, in order to remain consistent with the view of the
13360 if Ekind_In
(Typ
, E_Private_Type
,
13361 E_Limited_Private_Type
,
13362 E_Record_Type_With_Private
)
13364 Dep_Elmt
:= First_Elmt
(Private_Dependents
(Typ
));
13365 while Present
(Dep_Elmt
) loop
13366 Dep_Typ
:= Node
(Dep_Elmt
);
13368 if Scope
(Dep_Typ
) = Pack_Id
13369 and then Present
(Full_View
(Dep_Typ
))
13371 Replace_Elmt
(Dep_Elmt
, Full_View
(Dep_Typ
));
13372 Exchange_Declarations
(Dep_Typ
);
13375 Next_Elmt
(Dep_Elmt
);
13379 Exchange_Declarations
(Node
(M
));
13383 if No
(Pack_Id
) then
13387 -- Make the generic formal parameters private, and make the formal types
13388 -- into subtypes of the actuals again.
13390 E
:= First_Entity
(Pack_Id
);
13391 while Present
(E
) loop
13392 Set_Is_Hidden
(E
, True);
13395 and then Nkind
(Parent
(E
)) = N_Subtype_Declaration
13397 -- If the actual for E is itself a generic actual type from
13398 -- an enclosing instance, E is still a generic actual type
13399 -- outside of the current instance. This matter when resolving
13400 -- an overloaded call that may be ambiguous in the enclosing
13401 -- instance, when two of its actuals coincide.
13403 if Is_Entity_Name
(Subtype_Indication
(Parent
(E
)))
13404 and then Is_Generic_Actual_Type
13405 (Entity
(Subtype_Indication
(Parent
(E
))))
13409 Set_Is_Generic_Actual_Type
(E
, False);
13412 -- An unusual case of aliasing: the actual may also be directly
13413 -- visible in the generic, and be private there, while it is fully
13414 -- visible in the context of the instance. The internal subtype
13415 -- is private in the instance but has full visibility like its
13416 -- parent in the enclosing scope. This enforces the invariant that
13417 -- the privacy status of all private dependents of a type coincide
13418 -- with that of the parent type. This can only happen when a
13419 -- generic child unit is instantiated within a sibling.
13421 if Is_Private_Type
(E
)
13422 and then not Is_Private_Type
(Etype
(E
))
13424 Exchange_Declarations
(E
);
13427 elsif Ekind
(E
) = E_Package
then
13429 -- The end of the renaming list is the renaming of the generic
13430 -- package itself. If the instance is a subprogram, all entities
13431 -- in the corresponding package are renamings. If this entity is
13432 -- a formal package, make its own formals private as well. The
13433 -- actual in this case is itself the renaming of an instantiation.
13434 -- If the entity is not a package renaming, it is the entity
13435 -- created to validate formal package actuals: ignore it.
13437 -- If the actual is itself a formal package for the enclosing
13438 -- generic, or the actual for such a formal package, it remains
13439 -- visible on exit from the instance, and therefore nothing needs
13440 -- to be done either, except to keep it accessible.
13442 if Is_Package
and then Renamed_Object
(E
) = Pack_Id
then
13445 elsif Nkind
(Parent
(E
)) /= N_Package_Renaming_Declaration
then
13449 Denotes_Formal_Package
(Renamed_Object
(E
), True, Pack_Id
)
13451 Set_Is_Hidden
(E
, False);
13455 Act_P
: constant Entity_Id
:= Renamed_Object
(E
);
13459 Id
:= First_Entity
(Act_P
);
13461 and then Id
/= First_Private_Entity
(Act_P
)
13463 exit when Ekind
(Id
) = E_Package
13464 and then Renamed_Object
(Id
) = Act_P
;
13466 Set_Is_Hidden
(Id
, True);
13467 Set_Is_Potentially_Use_Visible
(Id
, In_Use
(Act_P
));
13469 if Ekind
(Id
) = E_Package
then
13470 Restore_Nested_Formal
(Id
);
13481 end Restore_Private_Views
;
13488 (Gen_Unit
: Entity_Id
;
13489 Act_Unit
: Entity_Id
)
13493 Set_Instance_Env
(Gen_Unit
, Act_Unit
);
13496 ----------------------------
13497 -- Save_Global_References --
13498 ----------------------------
13500 procedure Save_Global_References
(N
: Node_Id
) is
13501 Gen_Scope
: Entity_Id
;
13505 function Is_Global
(E
: Entity_Id
) return Boolean;
13506 -- Check whether entity is defined outside of generic unit. Examine the
13507 -- scope of an entity, and the scope of the scope, etc, until we find
13508 -- either Standard, in which case the entity is global, or the generic
13509 -- unit itself, which indicates that the entity is local. If the entity
13510 -- is the generic unit itself, as in the case of a recursive call, or
13511 -- the enclosing generic unit, if different from the current scope, then
13512 -- it is local as well, because it will be replaced at the point of
13513 -- instantiation. On the other hand, if it is a reference to a child
13514 -- unit of a common ancestor, which appears in an instantiation, it is
13515 -- global because it is used to denote a specific compilation unit at
13516 -- the time the instantiations will be analyzed.
13518 procedure Reset_Entity
(N
: Node_Id
);
13519 -- Save semantic information on global entity so that it is not resolved
13520 -- again at instantiation time.
13522 procedure Save_Entity_Descendants
(N
: Node_Id
);
13523 -- Apply Save_Global_References to the two syntactic descendants of
13524 -- non-terminal nodes that carry an Associated_Node and are processed
13525 -- through Reset_Entity. Once the global entity (if any) has been
13526 -- captured together with its type, only two syntactic descendants need
13527 -- to be traversed to complete the processing of the tree rooted at N.
13528 -- This applies to Selected_Components, Expanded_Names, and to Operator
13529 -- nodes. N can also be a character literal, identifier, or operator
13530 -- symbol node, but the call has no effect in these cases.
13532 procedure Save_Global_Defaults
(N1
, N2
: Node_Id
);
13533 -- Default actuals in nested instances must be handled specially
13534 -- because there is no link to them from the original tree. When an
13535 -- actual subprogram is given by a default, we add an explicit generic
13536 -- association for it in the instantiation node. When we save the
13537 -- global references on the name of the instance, we recover the list
13538 -- of generic associations, and add an explicit one to the original
13539 -- generic tree, through which a global actual can be preserved.
13540 -- Similarly, if a child unit is instantiated within a sibling, in the
13541 -- context of the parent, we must preserve the identifier of the parent
13542 -- so that it can be properly resolved in a subsequent instantiation.
13544 procedure Save_Global_Descendant
(D
: Union_Id
);
13545 -- Apply Save_Global_References recursively to the descendents of the
13548 procedure Save_References
(N
: Node_Id
);
13549 -- This is the recursive procedure that does the work, once the
13550 -- enclosing generic scope has been established.
13556 function Is_Global
(E
: Entity_Id
) return Boolean is
13559 function Is_Instance_Node
(Decl
: Node_Id
) return Boolean;
13560 -- Determine whether the parent node of a reference to a child unit
13561 -- denotes an instantiation or a formal package, in which case the
13562 -- reference to the child unit is global, even if it appears within
13563 -- the current scope (e.g. when the instance appears within the body
13564 -- of an ancestor).
13566 ----------------------
13567 -- Is_Instance_Node --
13568 ----------------------
13570 function Is_Instance_Node
(Decl
: Node_Id
) return Boolean is
13572 return Nkind
(Decl
) in N_Generic_Instantiation
13574 Nkind
(Original_Node
(Decl
)) = N_Formal_Package_Declaration
;
13575 end Is_Instance_Node
;
13577 -- Start of processing for Is_Global
13580 if E
= Gen_Scope
then
13583 elsif E
= Standard_Standard
then
13586 elsif Is_Child_Unit
(E
)
13587 and then (Is_Instance_Node
(Parent
(N2
))
13588 or else (Nkind
(Parent
(N2
)) = N_Expanded_Name
13589 and then N2
= Selector_Name
(Parent
(N2
))
13591 Is_Instance_Node
(Parent
(Parent
(N2
)))))
13597 while Se
/= Gen_Scope
loop
13598 if Se
= Standard_Standard
then
13613 procedure Reset_Entity
(N
: Node_Id
) is
13615 procedure Set_Global_Type
(N
: Node_Id
; N2
: Node_Id
);
13616 -- If the type of N2 is global to the generic unit, save the type in
13617 -- the generic node. Just as we perform name capture for explicit
13618 -- references within the generic, we must capture the global types
13619 -- of local entities because they may participate in resolution in
13622 function Top_Ancestor
(E
: Entity_Id
) return Entity_Id
;
13623 -- Find the ultimate ancestor of the current unit. If it is not a
13624 -- generic unit, then the name of the current unit in the prefix of
13625 -- an expanded name must be replaced with its generic homonym to
13626 -- ensure that it will be properly resolved in an instance.
13628 ---------------------
13629 -- Set_Global_Type --
13630 ---------------------
13632 procedure Set_Global_Type
(N
: Node_Id
; N2
: Node_Id
) is
13633 Typ
: constant Entity_Id
:= Etype
(N2
);
13636 Set_Etype
(N
, Typ
);
13638 if Entity
(N
) /= N2
13639 and then Has_Private_View
(Entity
(N
))
13641 -- If the entity of N is not the associated node, this is a
13642 -- nested generic and it has an associated node as well, whose
13643 -- type is already the full view (see below). Indicate that the
13644 -- original node has a private view.
13646 Set_Has_Private_View
(N
);
13649 -- If not a private type, nothing else to do
13651 if not Is_Private_Type
(Typ
) then
13652 if Is_Array_Type
(Typ
)
13653 and then Is_Private_Type
(Component_Type
(Typ
))
13655 Set_Has_Private_View
(N
);
13658 -- If it is a derivation of a private type in a context where no
13659 -- full view is needed, nothing to do either.
13661 elsif No
(Full_View
(Typ
)) and then Typ
/= Etype
(Typ
) then
13664 -- Otherwise mark the type for flipping and use the full view when
13668 Set_Has_Private_View
(N
);
13670 if Present
(Full_View
(Typ
)) then
13671 Set_Etype
(N2
, Full_View
(Typ
));
13674 end Set_Global_Type
;
13680 function Top_Ancestor
(E
: Entity_Id
) return Entity_Id
is
13685 while Is_Child_Unit
(Par
) loop
13686 Par
:= Scope
(Par
);
13692 -- Start of processing for Reset_Entity
13695 N2
:= Get_Associated_Node
(N
);
13698 if Present
(E
) then
13700 -- If the node is an entry call to an entry in an enclosing task,
13701 -- it is rewritten as a selected component. No global entity to
13702 -- preserve in this case, since the expansion will be redone in
13705 if not Nkind_In
(E
, N_Defining_Identifier
,
13706 N_Defining_Character_Literal
,
13707 N_Defining_Operator_Symbol
)
13709 Set_Associated_Node
(N
, Empty
);
13710 Set_Etype
(N
, Empty
);
13714 -- If the entity is an itype created as a subtype of an access
13715 -- type with a null exclusion restore source entity for proper
13716 -- visibility. The itype will be created anew in the instance.
13719 and then Ekind
(E
) = E_Access_Subtype
13720 and then Is_Entity_Name
(N
)
13721 and then Chars
(Etype
(E
)) = Chars
(N
)
13724 Set_Entity
(N2
, E
);
13728 if Is_Global
(E
) then
13730 -- If the entity is a package renaming that is the prefix of
13731 -- an expanded name, it has been rewritten as the renamed
13732 -- package, which is necessary semantically but complicates
13733 -- ASIS tree traversal, so we recover the original entity to
13734 -- expose the renaming. Take into account that the context may
13735 -- be a nested generic, that the original node may itself have
13736 -- an associated node that had better be an entity, and that
13737 -- the current node is still a selected component.
13739 if Ekind
(E
) = E_Package
13740 and then Nkind
(N
) = N_Selected_Component
13741 and then Nkind
(Parent
(N
)) = N_Expanded_Name
13742 and then Present
(Original_Node
(N2
))
13743 and then Is_Entity_Name
(Original_Node
(N2
))
13744 and then Present
(Entity
(Original_Node
(N2
)))
13746 if Is_Global
(Entity
(Original_Node
(N2
))) then
13747 N2
:= Original_Node
(N2
);
13748 Set_Associated_Node
(N
, N2
);
13749 Set_Global_Type
(N
, N2
);
13752 -- Renaming is local, and will be resolved in instance
13754 Set_Associated_Node
(N
, Empty
);
13755 Set_Etype
(N
, Empty
);
13759 Set_Global_Type
(N
, N2
);
13762 elsif Nkind
(N
) = N_Op_Concat
13763 and then Is_Generic_Type
(Etype
(N2
))
13764 and then (Base_Type
(Etype
(Right_Opnd
(N2
))) = Etype
(N2
)
13766 Base_Type
(Etype
(Left_Opnd
(N2
))) = Etype
(N2
))
13767 and then Is_Intrinsic_Subprogram
(E
)
13772 -- Entity is local. Mark generic node as unresolved.
13773 -- Note that now it does not have an entity.
13775 Set_Associated_Node
(N
, Empty
);
13776 Set_Etype
(N
, Empty
);
13779 if Nkind
(Parent
(N
)) in N_Generic_Instantiation
13780 and then N
= Name
(Parent
(N
))
13782 Save_Global_Defaults
(Parent
(N
), Parent
(N2
));
13785 elsif Nkind
(Parent
(N
)) = N_Selected_Component
13786 and then Nkind
(Parent
(N2
)) = N_Expanded_Name
13788 if Is_Global
(Entity
(Parent
(N2
))) then
13789 Change_Selected_Component_To_Expanded_Name
(Parent
(N
));
13790 Set_Associated_Node
(Parent
(N
), Parent
(N2
));
13791 Set_Global_Type
(Parent
(N
), Parent
(N2
));
13792 Save_Entity_Descendants
(N
);
13794 -- If this is a reference to the current generic entity, replace
13795 -- by the name of the generic homonym of the current package. This
13796 -- is because in an instantiation Par.P.Q will not resolve to the
13797 -- name of the instance, whose enclosing scope is not necessarily
13798 -- Par. We use the generic homonym rather that the name of the
13799 -- generic itself because it may be hidden by a local declaration.
13801 elsif In_Open_Scopes
(Entity
(Parent
(N2
)))
13803 Is_Generic_Unit
(Top_Ancestor
(Entity
(Prefix
(Parent
(N2
)))))
13805 if Ekind
(Entity
(Parent
(N2
))) = E_Generic_Package
then
13806 Rewrite
(Parent
(N
),
13807 Make_Identifier
(Sloc
(N
),
13809 Chars
(Generic_Homonym
(Entity
(Parent
(N2
))))));
13811 Rewrite
(Parent
(N
),
13812 Make_Identifier
(Sloc
(N
),
13813 Chars
=> Chars
(Selector_Name
(Parent
(N2
)))));
13817 if Nkind
(Parent
(Parent
(N
))) in N_Generic_Instantiation
13818 and then Parent
(N
) = Name
(Parent
(Parent
(N
)))
13820 Save_Global_Defaults
13821 (Parent
(Parent
(N
)), Parent
(Parent
((N2
))));
13824 -- A selected component may denote a static constant that has been
13825 -- folded. If the static constant is global to the generic, capture
13826 -- its value. Otherwise the folding will happen in any instantiation.
13828 elsif Nkind
(Parent
(N
)) = N_Selected_Component
13829 and then Nkind_In
(Parent
(N2
), N_Integer_Literal
, N_Real_Literal
)
13831 if Present
(Entity
(Original_Node
(Parent
(N2
))))
13832 and then Is_Global
(Entity
(Original_Node
(Parent
(N2
))))
13834 Rewrite
(Parent
(N
), New_Copy
(Parent
(N2
)));
13835 Set_Analyzed
(Parent
(N
), False);
13841 -- A selected component may be transformed into a parameterless
13842 -- function call. If the called entity is global, rewrite the node
13843 -- appropriately, i.e. as an extended name for the global entity.
13845 elsif Nkind
(Parent
(N
)) = N_Selected_Component
13846 and then Nkind
(Parent
(N2
)) = N_Function_Call
13847 and then N
= Selector_Name
(Parent
(N
))
13849 if No
(Parameter_Associations
(Parent
(N2
))) then
13850 if Is_Global
(Entity
(Name
(Parent
(N2
)))) then
13851 Change_Selected_Component_To_Expanded_Name
(Parent
(N
));
13852 Set_Associated_Node
(Parent
(N
), Name
(Parent
(N2
)));
13853 Set_Global_Type
(Parent
(N
), Name
(Parent
(N2
)));
13854 Save_Entity_Descendants
(N
);
13857 Set_Is_Prefixed_Call
(Parent
(N
));
13858 Set_Associated_Node
(N
, Empty
);
13859 Set_Etype
(N
, Empty
);
13862 -- In Ada 2005, X.F may be a call to a primitive operation,
13863 -- rewritten as F (X). This rewriting will be done again in an
13864 -- instance, so keep the original node. Global entities will be
13865 -- captured as for other constructs. Indicate that this must
13866 -- resolve as a call, to prevent accidental overloading in the
13867 -- instance, if both a component and a primitive operation appear
13871 Set_Is_Prefixed_Call
(Parent
(N
));
13874 -- Entity is local. Reset in generic unit, so that node is resolved
13875 -- anew at the point of instantiation.
13878 Set_Associated_Node
(N
, Empty
);
13879 Set_Etype
(N
, Empty
);
13883 -----------------------------
13884 -- Save_Entity_Descendants --
13885 -----------------------------
13887 procedure Save_Entity_Descendants
(N
: Node_Id
) is
13890 when N_Binary_Op
=>
13891 Save_Global_Descendant
(Union_Id
(Left_Opnd
(N
)));
13892 Save_Global_Descendant
(Union_Id
(Right_Opnd
(N
)));
13895 Save_Global_Descendant
(Union_Id
(Right_Opnd
(N
)));
13897 when N_Expanded_Name | N_Selected_Component
=>
13898 Save_Global_Descendant
(Union_Id
(Prefix
(N
)));
13899 Save_Global_Descendant
(Union_Id
(Selector_Name
(N
)));
13901 when N_Identifier | N_Character_Literal | N_Operator_Symbol
=>
13905 raise Program_Error
;
13907 end Save_Entity_Descendants
;
13909 --------------------------
13910 -- Save_Global_Defaults --
13911 --------------------------
13913 procedure Save_Global_Defaults
(N1
, N2
: Node_Id
) is
13914 Loc
: constant Source_Ptr
:= Sloc
(N1
);
13915 Assoc2
: constant List_Id
:= Generic_Associations
(N2
);
13916 Gen_Id
: constant Entity_Id
:= Get_Generic_Entity
(N2
);
13923 Actual
: Entity_Id
;
13926 Assoc1
:= Generic_Associations
(N1
);
13928 if Present
(Assoc1
) then
13929 Act1
:= First
(Assoc1
);
13932 Set_Generic_Associations
(N1
, New_List
);
13933 Assoc1
:= Generic_Associations
(N1
);
13936 if Present
(Assoc2
) then
13937 Act2
:= First
(Assoc2
);
13942 while Present
(Act1
) and then Present
(Act2
) loop
13947 -- Find the associations added for default subprograms
13949 if Present
(Act2
) then
13950 while Nkind
(Act2
) /= N_Generic_Association
13951 or else No
(Entity
(Selector_Name
(Act2
)))
13952 or else not Is_Overloadable
(Entity
(Selector_Name
(Act2
)))
13957 -- Add a similar association if the default is global. The
13958 -- renaming declaration for the actual has been analyzed, and
13959 -- its alias is the program it renames. Link the actual in the
13960 -- original generic tree with the node in the analyzed tree.
13962 while Present
(Act2
) loop
13963 Subp
:= Entity
(Selector_Name
(Act2
));
13964 Def
:= Explicit_Generic_Actual_Parameter
(Act2
);
13966 -- Following test is defence against rubbish errors
13968 if No
(Alias
(Subp
)) then
13972 -- Retrieve the resolved actual from the renaming declaration
13973 -- created for the instantiated formal.
13975 Actual
:= Entity
(Name
(Parent
(Parent
(Subp
))));
13976 Set_Entity
(Def
, Actual
);
13977 Set_Etype
(Def
, Etype
(Actual
));
13979 if Is_Global
(Actual
) then
13981 Make_Generic_Association
(Loc
,
13982 Selector_Name
=> New_Occurrence_Of
(Subp
, Loc
),
13983 Explicit_Generic_Actual_Parameter
=>
13984 New_Occurrence_Of
(Actual
, Loc
));
13986 Set_Associated_Node
13987 (Explicit_Generic_Actual_Parameter
(Ndec
), Def
);
13989 Append
(Ndec
, Assoc1
);
13991 -- If there are other defaults, add a dummy association in case
13992 -- there are other defaulted formals with the same name.
13994 elsif Present
(Next
(Act2
)) then
13996 Make_Generic_Association
(Loc
,
13997 Selector_Name
=> New_Occurrence_Of
(Subp
, Loc
),
13998 Explicit_Generic_Actual_Parameter
=> Empty
);
14000 Append
(Ndec
, Assoc1
);
14007 if Nkind
(Name
(N1
)) = N_Identifier
14008 and then Is_Child_Unit
(Gen_Id
)
14009 and then Is_Global
(Gen_Id
)
14010 and then Is_Generic_Unit
(Scope
(Gen_Id
))
14011 and then In_Open_Scopes
(Scope
(Gen_Id
))
14013 -- This is an instantiation of a child unit within a sibling, so
14014 -- that the generic parent is in scope. An eventual instance must
14015 -- occur within the scope of an instance of the parent. Make name
14016 -- in instance into an expanded name, to preserve the identifier
14017 -- of the parent, so it can be resolved subsequently.
14019 Rewrite
(Name
(N2
),
14020 Make_Expanded_Name
(Loc
,
14021 Chars
=> Chars
(Gen_Id
),
14022 Prefix
=> New_Occurrence_Of
(Scope
(Gen_Id
), Loc
),
14023 Selector_Name
=> New_Occurrence_Of
(Gen_Id
, Loc
)));
14024 Set_Entity
(Name
(N2
), Gen_Id
);
14026 Rewrite
(Name
(N1
),
14027 Make_Expanded_Name
(Loc
,
14028 Chars
=> Chars
(Gen_Id
),
14029 Prefix
=> New_Occurrence_Of
(Scope
(Gen_Id
), Loc
),
14030 Selector_Name
=> New_Occurrence_Of
(Gen_Id
, Loc
)));
14032 Set_Associated_Node
(Name
(N1
), Name
(N2
));
14033 Set_Associated_Node
(Prefix
(Name
(N1
)), Empty
);
14034 Set_Associated_Node
14035 (Selector_Name
(Name
(N1
)), Selector_Name
(Name
(N2
)));
14036 Set_Etype
(Name
(N1
), Etype
(Gen_Id
));
14039 end Save_Global_Defaults
;
14041 ----------------------------
14042 -- Save_Global_Descendant --
14043 ----------------------------
14045 procedure Save_Global_Descendant
(D
: Union_Id
) is
14049 if D
in Node_Range
then
14050 if D
= Union_Id
(Empty
) then
14053 elsif Nkind
(Node_Id
(D
)) /= N_Compilation_Unit
then
14054 Save_References
(Node_Id
(D
));
14057 elsif D
in List_Range
then
14058 if D
= Union_Id
(No_List
) or else Is_Empty_List
(List_Id
(D
)) then
14062 N1
:= First
(List_Id
(D
));
14063 while Present
(N1
) loop
14064 Save_References
(N1
);
14069 -- Element list or other non-node field, nothing to do
14074 end Save_Global_Descendant
;
14076 ---------------------
14077 -- Save_References --
14078 ---------------------
14080 -- This is the recursive procedure that does the work once the enclosing
14081 -- generic scope has been established. We have to treat specially a
14082 -- number of node rewritings that are required by semantic processing
14083 -- and which change the kind of nodes in the generic copy: typically
14084 -- constant-folding, replacing an operator node by a string literal, or
14085 -- a selected component by an expanded name. In each of those cases, the
14086 -- transformation is propagated to the generic unit.
14088 procedure Save_References
(N
: Node_Id
) is
14089 Loc
: constant Source_Ptr
:= Sloc
(N
);
14095 elsif Nkind_In
(N
, N_Character_Literal
, N_Operator_Symbol
) then
14096 if Nkind
(N
) = Nkind
(Get_Associated_Node
(N
)) then
14099 elsif Nkind
(N
) = N_Operator_Symbol
14100 and then Nkind
(Get_Associated_Node
(N
)) = N_String_Literal
14102 Change_Operator_Symbol_To_String_Literal
(N
);
14105 elsif Nkind
(N
) in N_Op
then
14106 if Nkind
(N
) = Nkind
(Get_Associated_Node
(N
)) then
14107 if Nkind
(N
) = N_Op_Concat
then
14108 Set_Is_Component_Left_Opnd
(N
,
14109 Is_Component_Left_Opnd
(Get_Associated_Node
(N
)));
14111 Set_Is_Component_Right_Opnd
(N
,
14112 Is_Component_Right_Opnd
(Get_Associated_Node
(N
)));
14118 -- Node may be transformed into call to a user-defined operator
14120 N2
:= Get_Associated_Node
(N
);
14122 if Nkind
(N2
) = N_Function_Call
then
14123 E
:= Entity
(Name
(N2
));
14126 and then Is_Global
(E
)
14128 Set_Etype
(N
, Etype
(N2
));
14130 Set_Associated_Node
(N
, Empty
);
14131 Set_Etype
(N
, Empty
);
14134 elsif Nkind_In
(N2
, N_Integer_Literal
,
14138 if Present
(Original_Node
(N2
))
14139 and then Nkind
(Original_Node
(N2
)) = Nkind
(N
)
14142 -- Operation was constant-folded. Whenever possible,
14143 -- recover semantic information from unfolded node,
14146 Set_Associated_Node
(N
, Original_Node
(N2
));
14148 if Nkind
(N
) = N_Op_Concat
then
14149 Set_Is_Component_Left_Opnd
(N
,
14150 Is_Component_Left_Opnd
(Get_Associated_Node
(N
)));
14151 Set_Is_Component_Right_Opnd
(N
,
14152 Is_Component_Right_Opnd
(Get_Associated_Node
(N
)));
14158 -- If original node is already modified, propagate
14159 -- constant-folding to template.
14161 Rewrite
(N
, New_Copy
(N2
));
14162 Set_Analyzed
(N
, False);
14165 elsif Nkind
(N2
) = N_Identifier
14166 and then Ekind
(Entity
(N2
)) = E_Enumeration_Literal
14168 -- Same if call was folded into a literal, but in this case
14169 -- retain the entity to avoid spurious ambiguities if it is
14170 -- overloaded at the point of instantiation or inlining.
14172 Rewrite
(N
, New_Copy
(N2
));
14173 Set_Analyzed
(N
, False);
14177 -- Complete operands check if node has not been constant-folded
14179 if Nkind
(N
) in N_Op
then
14180 Save_Entity_Descendants
(N
);
14183 elsif Nkind
(N
) = N_Identifier
then
14184 if Nkind
(N
) = Nkind
(Get_Associated_Node
(N
)) then
14186 -- If this is a discriminant reference, always save it. It is
14187 -- used in the instance to find the corresponding discriminant
14188 -- positionally rather than by name.
14190 Set_Original_Discriminant
14191 (N
, Original_Discriminant
(Get_Associated_Node
(N
)));
14195 N2
:= Get_Associated_Node
(N
);
14197 if Nkind
(N2
) = N_Function_Call
then
14198 E
:= Entity
(Name
(N2
));
14200 -- Name resolves to a call to parameterless function. If
14201 -- original entity is global, mark node as resolved.
14204 and then Is_Global
(E
)
14206 Set_Etype
(N
, Etype
(N2
));
14208 Set_Associated_Node
(N
, Empty
);
14209 Set_Etype
(N
, Empty
);
14212 elsif Nkind_In
(N2
, N_Integer_Literal
, N_Real_Literal
)
14213 and then Is_Entity_Name
(Original_Node
(N2
))
14215 -- Name resolves to named number that is constant-folded,
14216 -- We must preserve the original name for ASIS use, and
14217 -- undo the constant-folding, which will be repeated in
14220 Set_Associated_Node
(N
, Original_Node
(N2
));
14223 elsif Nkind
(N2
) = N_String_Literal
then
14225 -- Name resolves to string literal. Perform the same
14226 -- replacement in generic.
14228 Rewrite
(N
, New_Copy
(N2
));
14230 elsif Nkind
(N2
) = N_Explicit_Dereference
then
14232 -- An identifier is rewritten as a dereference if it is the
14233 -- prefix in an implicit dereference (call or attribute).
14234 -- The analysis of an instantiation will expand the node
14235 -- again, so we preserve the original tree but link it to
14236 -- the resolved entity in case it is global.
14238 if Is_Entity_Name
(Prefix
(N2
))
14239 and then Present
(Entity
(Prefix
(N2
)))
14240 and then Is_Global
(Entity
(Prefix
(N2
)))
14242 Set_Associated_Node
(N
, Prefix
(N2
));
14244 elsif Nkind
(Prefix
(N2
)) = N_Function_Call
14245 and then Is_Global
(Entity
(Name
(Prefix
(N2
))))
14248 Make_Explicit_Dereference
(Loc
,
14249 Prefix
=> Make_Function_Call
(Loc
,
14252 (Entity
(Name
(Prefix
(N2
))), Loc
))));
14255 Set_Associated_Node
(N
, Empty
);
14256 Set_Etype
(N
, Empty
);
14259 -- The subtype mark of a nominally unconstrained object is
14260 -- rewritten as a subtype indication using the bounds of the
14261 -- expression. Recover the original subtype mark.
14263 elsif Nkind
(N2
) = N_Subtype_Indication
14264 and then Is_Entity_Name
(Original_Node
(N2
))
14266 Set_Associated_Node
(N
, Original_Node
(N2
));
14274 elsif Nkind
(N
) in N_Entity
then
14279 Qual
: Node_Id
:= Empty
;
14280 Typ
: Entity_Id
:= Empty
;
14283 use Atree
.Unchecked_Access
;
14284 -- This code section is part of implementing an untyped tree
14285 -- traversal, so it needs direct access to node fields.
14288 if Nkind_In
(N
, N_Aggregate
, N_Extension_Aggregate
) then
14289 N2
:= Get_Associated_Node
(N
);
14297 -- In an instance within a generic, use the name of the
14298 -- actual and not the original generic parameter. If the
14299 -- actual is global in the current generic it must be
14300 -- preserved for its instantiation.
14302 if Nkind
(Parent
(Typ
)) = N_Subtype_Declaration
14304 Present
(Generic_Parent_Type
(Parent
(Typ
)))
14306 Typ
:= Base_Type
(Typ
);
14307 Set_Etype
(N2
, Typ
);
14311 if No
(N2
) or else No
(Typ
) or else not Is_Global
(Typ
) then
14312 Set_Associated_Node
(N
, Empty
);
14314 -- If the aggregate is an actual in a call, it has been
14315 -- resolved in the current context, to some local type.
14316 -- The enclosing call may have been disambiguated by the
14317 -- aggregate, and this disambiguation might fail at
14318 -- instantiation time because the type to which the
14319 -- aggregate did resolve is not preserved. In order to
14320 -- preserve some of this information, we wrap the
14321 -- aggregate in a qualified expression, using the id of
14322 -- its type. For further disambiguation we qualify the
14323 -- type name with its scope (if visible) because both
14324 -- id's will have corresponding entities in an instance.
14325 -- This resolves most of the problems with missing type
14326 -- information on aggregates in instances.
14328 if Nkind
(N2
) = Nkind
(N
)
14329 and then Nkind
(Parent
(N2
)) in N_Subprogram_Call
14330 and then Comes_From_Source
(Typ
)
14332 if Is_Immediately_Visible
(Scope
(Typ
)) then
14334 Make_Selected_Component
(Loc
,
14336 Make_Identifier
(Loc
, Chars
(Scope
(Typ
))),
14338 Make_Identifier
(Loc
, Chars
(Typ
)));
14340 Nam
:= Make_Identifier
(Loc
, Chars
(Typ
));
14344 Make_Qualified_Expression
(Loc
,
14345 Subtype_Mark
=> Nam
,
14346 Expression
=> Relocate_Node
(N
));
14350 Save_Global_Descendant
(Field1
(N
));
14351 Save_Global_Descendant
(Field2
(N
));
14352 Save_Global_Descendant
(Field3
(N
));
14353 Save_Global_Descendant
(Field5
(N
));
14355 if Present
(Qual
) then
14359 -- All other cases than aggregates
14362 Save_Global_Descendant
(Field1
(N
));
14363 Save_Global_Descendant
(Field2
(N
));
14364 Save_Global_Descendant
(Field3
(N
));
14365 Save_Global_Descendant
(Field4
(N
));
14366 Save_Global_Descendant
(Field5
(N
));
14371 -- Save all global references found within the aspects of the related
14372 -- node. This is not done for generic subprograms because the aspects
14373 -- must be delayed and analyzed at the end of the declarative part.
14374 -- Only then can global references be saved. This action is performed
14375 -- by the analysis of the generic subprogram contract.
14377 if Nkind
(N
) /= N_Generic_Subprogram_Declaration
then
14378 Save_Global_References_In_Aspects
(N
);
14380 end Save_References
;
14382 -- Start of processing for Save_Global_References
14385 Gen_Scope
:= Current_Scope
;
14387 -- If the generic unit is a child unit, references to entities in the
14388 -- parent are treated as local, because they will be resolved anew in
14389 -- the context of the instance of the parent.
14391 while Is_Child_Unit
(Gen_Scope
)
14392 and then Ekind
(Scope
(Gen_Scope
)) = E_Generic_Package
14394 Gen_Scope
:= Scope
(Gen_Scope
);
14397 Save_References
(N
);
14398 end Save_Global_References
;
14400 ---------------------------------------
14401 -- Save_Global_References_In_Aspects --
14402 ---------------------------------------
14404 procedure Save_Global_References_In_Aspects
(N
: Node_Id
) is
14409 if Permits_Aspect_Specifications
(N
) and then Has_Aspects
(N
) then
14410 Asp
:= First
(Aspect_Specifications
(N
));
14411 while Present
(Asp
) loop
14412 Expr
:= Expression
(Asp
);
14414 if Present
(Expr
) then
14415 Save_Global_References
(Expr
);
14421 end Save_Global_References_In_Aspects
;
14423 --------------------------------------
14424 -- Set_Copied_Sloc_For_Inlined_Body --
14425 --------------------------------------
14427 procedure Set_Copied_Sloc_For_Inlined_Body
(N
: Node_Id
; E
: Entity_Id
) is
14429 Create_Instantiation_Source
(N
, E
, True, S_Adjustment
);
14430 end Set_Copied_Sloc_For_Inlined_Body
;
14432 ---------------------
14433 -- Set_Instance_Of --
14434 ---------------------
14436 procedure Set_Instance_Of
(A
: Entity_Id
; B
: Entity_Id
) is
14438 Generic_Renamings
.Table
(Generic_Renamings
.Last
) := (A
, B
, Assoc_Null
);
14439 Generic_Renamings_HTable
.Set
(Generic_Renamings
.Last
);
14440 Generic_Renamings
.Increment_Last
;
14441 end Set_Instance_Of
;
14443 --------------------
14444 -- Set_Next_Assoc --
14445 --------------------
14447 procedure Set_Next_Assoc
(E
: Assoc_Ptr
; Next
: Assoc_Ptr
) is
14449 Generic_Renamings
.Table
(E
).Next_In_HTable
:= Next
;
14450 end Set_Next_Assoc
;
14452 -------------------
14453 -- Start_Generic --
14454 -------------------
14456 procedure Start_Generic
is
14458 -- ??? More things could be factored out in this routine.
14459 -- Should probably be done at a later stage.
14461 Generic_Flags
.Append
(Inside_A_Generic
);
14462 Inside_A_Generic
:= True;
14464 Expander_Mode_Save_And_Set
(False);
14467 ----------------------
14468 -- Set_Instance_Env --
14469 ----------------------
14471 procedure Set_Instance_Env
14472 (Gen_Unit
: Entity_Id
;
14473 Act_Unit
: Entity_Id
)
14475 Assertion_Status
: constant Boolean := Assertions_Enabled
;
14476 Save_SPARK_Mode
: constant SPARK_Mode_Type
:= SPARK_Mode
;
14477 Save_SPARK_Mode_Pragma
: constant Node_Id
:= SPARK_Mode_Pragma
;
14480 -- Regardless of the current mode, predefined units are analyzed in the
14481 -- most current Ada mode, and earlier version Ada checks do not apply
14482 -- to predefined units. Nothing needs to be done for non-internal units.
14483 -- These are always analyzed in the current mode.
14485 if Is_Internal_File_Name
14486 (Fname
=> Unit_File_Name
(Get_Source_Unit
(Gen_Unit
)),
14487 Renamings_Included
=> True)
14489 Set_Opt_Config_Switches
(True, Current_Sem_Unit
= Main_Unit
);
14491 -- In Ada2012 we may want to enable assertions in an instance of a
14492 -- predefined unit, in which case we need to preserve the current
14493 -- setting for the Assertions_Enabled flag. This will become more
14494 -- critical when pre/postconditions are added to predefined units,
14495 -- as is already the case for some numeric libraries.
14497 if Ada_Version
>= Ada_2012
then
14498 Assertions_Enabled
:= Assertion_Status
;
14501 -- SPARK_Mode for an instance is the one applicable at the point of
14504 SPARK_Mode
:= Save_SPARK_Mode
;
14505 SPARK_Mode_Pragma
:= Save_SPARK_Mode_Pragma
;
14507 -- Make sure dynamic elaboration checks are off in SPARK Mode
14509 if SPARK_Mode
= On
then
14510 Dynamic_Elaboration_Checks
:= False;
14514 Current_Instantiated_Parent
:=
14515 (Gen_Id
=> Gen_Unit
,
14516 Act_Id
=> Act_Unit
,
14517 Next_In_HTable
=> Assoc_Null
);
14518 end Set_Instance_Env
;
14524 procedure Switch_View
(T
: Entity_Id
) is
14525 BT
: constant Entity_Id
:= Base_Type
(T
);
14526 Priv_Elmt
: Elmt_Id
:= No_Elmt
;
14527 Priv_Sub
: Entity_Id
;
14530 -- T may be private but its base type may have been exchanged through
14531 -- some other occurrence, in which case there is nothing to switch
14532 -- besides T itself. Note that a private dependent subtype of a private
14533 -- type might not have been switched even if the base type has been,
14534 -- because of the last branch of Check_Private_View (see comment there).
14536 if not Is_Private_Type
(BT
) then
14537 Prepend_Elmt
(Full_View
(T
), Exchanged_Views
);
14538 Exchange_Declarations
(T
);
14542 Priv_Elmt
:= First_Elmt
(Private_Dependents
(BT
));
14544 if Present
(Full_View
(BT
)) then
14545 Prepend_Elmt
(Full_View
(BT
), Exchanged_Views
);
14546 Exchange_Declarations
(BT
);
14549 while Present
(Priv_Elmt
) loop
14550 Priv_Sub
:= (Node
(Priv_Elmt
));
14552 -- We avoid flipping the subtype if the Etype of its full view is
14553 -- private because this would result in a malformed subtype. This
14554 -- occurs when the Etype of the subtype full view is the full view of
14555 -- the base type (and since the base types were just switched, the
14556 -- subtype is pointing to the wrong view). This is currently the case
14557 -- for tagged record types, access types (maybe more?) and needs to
14558 -- be resolved. ???
14560 if Present
(Full_View
(Priv_Sub
))
14561 and then not Is_Private_Type
(Etype
(Full_View
(Priv_Sub
)))
14563 Prepend_Elmt
(Full_View
(Priv_Sub
), Exchanged_Views
);
14564 Exchange_Declarations
(Priv_Sub
);
14567 Next_Elmt
(Priv_Elmt
);
14575 function True_Parent
(N
: Node_Id
) return Node_Id
is
14577 if Nkind
(Parent
(N
)) = N_Subunit
then
14578 return Parent
(Corresponding_Stub
(Parent
(N
)));
14584 -----------------------------
14585 -- Valid_Default_Attribute --
14586 -----------------------------
14588 procedure Valid_Default_Attribute
(Nam
: Entity_Id
; Def
: Node_Id
) is
14589 Attr_Id
: constant Attribute_Id
:=
14590 Get_Attribute_Id
(Attribute_Name
(Def
));
14591 T
: constant Entity_Id
:= Entity
(Prefix
(Def
));
14592 Is_Fun
: constant Boolean := (Ekind
(Nam
) = E_Function
);
14598 if No
(T
) or else T
= Any_Id
then
14603 F
:= First_Formal
(Nam
);
14604 while Present
(F
) loop
14605 Num_F
:= Num_F
+ 1;
14610 when Attribute_Adjacent | Attribute_Ceiling | Attribute_Copy_Sign |
14611 Attribute_Floor | Attribute_Fraction | Attribute_Machine |
14612 Attribute_Model | Attribute_Remainder | Attribute_Rounding |
14613 Attribute_Unbiased_Rounding
=>
14616 and then Is_Floating_Point_Type
(T
);
14618 when Attribute_Image | Attribute_Pred | Attribute_Succ |
14619 Attribute_Value | Attribute_Wide_Image |
14620 Attribute_Wide_Value
=>
14621 OK
:= (Is_Fun
and then Num_F
= 1 and then Is_Scalar_Type
(T
));
14623 when Attribute_Max | Attribute_Min
=>
14624 OK
:= (Is_Fun
and then Num_F
= 2 and then Is_Scalar_Type
(T
));
14626 when Attribute_Input
=>
14627 OK
:= (Is_Fun
and then Num_F
= 1);
14629 when Attribute_Output | Attribute_Read | Attribute_Write
=>
14630 OK
:= (not Is_Fun
and then Num_F
= 2);
14638 ("attribute reference has wrong profile for subprogram", Def
);
14640 end Valid_Default_Attribute
;