1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2014, 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 Exp_Util
; use Exp_Util
;
34 with Fname
; use Fname
;
35 with Fname
.UF
; use Fname
.UF
;
36 with Freeze
; use Freeze
;
37 with Itypes
; use Itypes
;
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_Prag
; use Sem_Prag
;
63 with Sem_Res
; use Sem_Res
;
64 with Sem_Type
; use Sem_Type
;
65 with Sem_Util
; use Sem_Util
;
66 with Sem_Warn
; use Sem_Warn
;
67 with Stand
; use Stand
;
68 with Sinfo
; use Sinfo
;
69 with Sinfo
.CN
; use Sinfo
.CN
;
70 with Sinput
; use Sinput
;
71 with Sinput
.L
; use Sinput
.L
;
72 with Snames
; use Snames
;
73 with Stringt
; use Stringt
;
74 with Uname
; use Uname
;
76 with Tbuild
; use Tbuild
;
77 with Uintp
; use Uintp
;
78 with Urealp
; use Urealp
;
79 with Warnsw
; use Warnsw
;
83 package body Sem_Ch12
is
85 ----------------------------------------------------------
86 -- Implementation of Generic Analysis and Instantiation --
87 ----------------------------------------------------------
89 -- GNAT implements generics by macro expansion. No attempt is made to share
90 -- generic instantiations (for now). Analysis of a generic definition does
91 -- not perform any expansion action, but the expander must be called on the
92 -- tree for each instantiation, because the expansion may of course depend
93 -- on the generic actuals. All of this is best achieved as follows:
95 -- a) Semantic analysis of a generic unit is performed on a copy of the
96 -- tree for the generic unit. All tree modifications that follow analysis
97 -- do not affect the original tree. Links are kept between the original
98 -- tree and the copy, in order to recognize non-local references within
99 -- the generic, and propagate them to each instance (recall that name
100 -- resolution is done on the generic declaration: generics are not really
101 -- macros). This is summarized in the following diagram:
103 -- .-----------. .----------.
104 -- | semantic |<--------------| generic |
106 -- | |==============>| |
107 -- |___________| global |__________|
118 -- b) Each instantiation copies the original tree, and inserts into it a
119 -- series of declarations that describe the mapping between generic formals
120 -- and actuals. For example, a generic In OUT parameter is an object
121 -- renaming of the corresponding actual, etc. Generic IN parameters are
122 -- constant declarations.
124 -- c) In order to give the right visibility for these renamings, we use
125 -- a different scheme for package and subprogram instantiations. For
126 -- packages, the list of renamings is inserted into the package
127 -- specification, before the visible declarations of the package. The
128 -- renamings are analyzed before any of the text of the instance, and are
129 -- thus visible at the right place. Furthermore, outside of the instance,
130 -- the generic parameters are visible and denote their corresponding
133 -- For subprograms, we create a container package to hold the renamings
134 -- and the subprogram instance itself. Analysis of the package makes the
135 -- renaming declarations visible to the subprogram. After analyzing the
136 -- package, the defining entity for the subprogram is touched-up so that
137 -- it appears declared in the current scope, and not inside the container
140 -- If the instantiation is a compilation unit, the container package is
141 -- given the same name as the subprogram instance. This ensures that
142 -- the elaboration procedure called by the binder, using the compilation
143 -- unit name, calls in fact the elaboration procedure for the package.
145 -- Not surprisingly, private types complicate this approach. By saving in
146 -- the original generic object the non-local references, we guarantee that
147 -- the proper entities are referenced at the point of instantiation.
148 -- However, for private types, this by itself does not insure that the
149 -- proper VIEW of the entity is used (the full type may be visible at the
150 -- point of generic definition, but not at instantiation, or vice-versa).
151 -- In order to reference the proper view, we special-case any reference
152 -- to private types in the generic object, by saving both views, one in
153 -- the generic and one in the semantic copy. At time of instantiation, we
154 -- check whether the two views are consistent, and exchange declarations if
155 -- necessary, in order to restore the correct visibility. Similarly, if
156 -- the instance view is private when the generic view was not, we perform
157 -- the exchange. After completing the instantiation, we restore the
158 -- current visibility. The flag Has_Private_View marks identifiers in the
159 -- the generic unit that require checking.
161 -- Visibility within nested generic units requires special handling.
162 -- Consider the following scheme:
164 -- type Global is ... -- outside of generic unit.
168 -- type Semi_Global is ... -- global to inner.
171 -- procedure inner (X1 : Global; X2 : Semi_Global);
173 -- procedure in2 is new inner (...); -- 4
176 -- package New_Outer is new Outer (...); -- 2
177 -- procedure New_Inner is new New_Outer.Inner (...); -- 3
179 -- The semantic analysis of Outer captures all occurrences of Global.
180 -- The semantic analysis of Inner (at 1) captures both occurrences of
181 -- Global and Semi_Global.
183 -- At point 2 (instantiation of Outer), we also produce a generic copy
184 -- of Inner, even though Inner is, at that point, not being instantiated.
185 -- (This is just part of the semantic analysis of New_Outer).
187 -- Critically, references to Global within Inner must be preserved, while
188 -- references to Semi_Global should not preserved, because they must now
189 -- resolve to an entity within New_Outer. To distinguish between these, we
190 -- use a global variable, Current_Instantiated_Parent, which is set when
191 -- performing a generic copy during instantiation (at 2). This variable is
192 -- used when performing a generic copy that is not an instantiation, but
193 -- that is nested within one, as the occurrence of 1 within 2. The analysis
194 -- of a nested generic only preserves references that are global to the
195 -- enclosing Current_Instantiated_Parent. We use the Scope_Depth value to
196 -- determine whether a reference is external to the given parent.
198 -- The instantiation at point 3 requires no special treatment. The method
199 -- works as well for further nestings of generic units, but of course the
200 -- variable Current_Instantiated_Parent must be stacked because nested
201 -- instantiations can occur, e.g. the occurrence of 4 within 2.
203 -- The instantiation of package and subprogram bodies is handled in a
204 -- similar manner, except that it is delayed until after semantic
205 -- analysis is complete. In this fashion complex cross-dependencies
206 -- between several package declarations and bodies containing generics
207 -- can be compiled which otherwise would diagnose spurious circularities.
209 -- For example, it is possible to compile two packages A and B that
210 -- have the following structure:
212 -- package A is package B is
213 -- generic ... generic ...
214 -- package G_A is package G_B is
217 -- package body A is package body B is
218 -- package N_B is new G_B (..) package N_A is new G_A (..)
220 -- The table Pending_Instantiations in package Inline is used to keep
221 -- track of body instantiations that are delayed in this manner. Inline
222 -- handles the actual calls to do the body instantiations. This activity
223 -- is part of Inline, since the processing occurs at the same point, and
224 -- for essentially the same reason, as the handling of inlined routines.
226 ----------------------------------------------
227 -- Detection of Instantiation Circularities --
228 ----------------------------------------------
230 -- If we have a chain of instantiations that is circular, this is static
231 -- error which must be detected at compile time. The detection of these
232 -- circularities is carried out at the point that we insert a generic
233 -- instance spec or body. If there is a circularity, then the analysis of
234 -- the offending spec or body will eventually result in trying to load the
235 -- same unit again, and we detect this problem as we analyze the package
236 -- instantiation for the second time.
238 -- At least in some cases after we have detected the circularity, we get
239 -- into trouble if we try to keep going. The following flag is set if a
240 -- circularity is detected, and used to abandon compilation after the
241 -- messages have been posted.
243 Circularity_Detected
: Boolean := False;
244 -- This should really be reset on encountering a new main unit, but in
245 -- practice we are not using multiple main units so it is not critical.
247 --------------------------------------------------
248 -- Formal packages and partial parameterization --
249 --------------------------------------------------
251 -- When compiling a generic, a formal package is a local instantiation. If
252 -- declared with a box, its generic formals are visible in the enclosing
253 -- generic. If declared with a partial list of actuals, those actuals that
254 -- are defaulted (covered by an Others clause, or given an explicit box
255 -- initialization) are also visible in the enclosing generic, while those
256 -- that have a corresponding actual are not.
258 -- In our source model of instantiation, the same visibility must be
259 -- present in the spec and body of an instance: the names of the formals
260 -- that are defaulted must be made visible within the instance, and made
261 -- invisible (hidden) after the instantiation is complete, so that they
262 -- are not accessible outside of the instance.
264 -- In a generic, a formal package is treated like a special instantiation.
265 -- Our Ada 95 compiler handled formals with and without box in different
266 -- ways. With partial parameterization, we use a single model for both.
267 -- We create a package declaration that consists of the specification of
268 -- the generic package, and a set of declarations that map the actuals
269 -- into local renamings, just as we do for bona fide instantiations. For
270 -- defaulted parameters and formals with a box, we copy directly the
271 -- declarations of the formal into this local package. The result is a
272 -- a package whose visible declarations may include generic formals. This
273 -- package is only used for type checking and visibility analysis, and
274 -- never reaches the back-end, so it can freely violate the placement
275 -- rules for generic formal declarations.
277 -- The list of declarations (renamings and copies of formals) is built
278 -- by Analyze_Associations, just as for regular instantiations.
280 -- At the point of instantiation, conformance checking must be applied only
281 -- to those parameters that were specified in the formal. We perform this
282 -- checking by creating another internal instantiation, this one including
283 -- only the renamings and the formals (the rest of the package spec is not
284 -- relevant to conformance checking). We can then traverse two lists: the
285 -- list of actuals in the instance that corresponds to the formal package,
286 -- and the list of actuals produced for this bogus instantiation. We apply
287 -- the conformance rules to those actuals that are not defaulted (i.e.
288 -- which still appear as generic formals.
290 -- When we compile an instance body we must make the right parameters
291 -- visible again. The predicate Is_Generic_Formal indicates which of the
292 -- formals should have its Is_Hidden flag reset.
294 -----------------------
295 -- Local subprograms --
296 -----------------------
298 procedure Abandon_Instantiation
(N
: Node_Id
);
299 pragma No_Return
(Abandon_Instantiation
);
300 -- Posts an error message "instantiation abandoned" at the indicated node
301 -- and then raises the exception Instantiation_Error to do it.
303 procedure Analyze_Formal_Array_Type
304 (T
: in out Entity_Id
;
306 -- A formal array type is treated like an array type declaration, and
307 -- invokes Array_Type_Declaration (sem_ch3) whose first parameter is
308 -- in-out, because in the case of an anonymous type the entity is
309 -- actually created in the procedure.
311 -- The following procedures treat other kinds of formal parameters
313 procedure Analyze_Formal_Derived_Interface_Type
318 procedure Analyze_Formal_Derived_Type
323 procedure Analyze_Formal_Interface_Type
328 -- The following subprograms create abbreviated declarations for formal
329 -- scalar types. We introduce an anonymous base of the proper class for
330 -- each of them, and define the formals as constrained first subtypes of
331 -- their bases. The bounds are expressions that are non-static in the
334 procedure Analyze_Formal_Decimal_Fixed_Point_Type
335 (T
: Entity_Id
; Def
: Node_Id
);
336 procedure Analyze_Formal_Discrete_Type
(T
: Entity_Id
; Def
: Node_Id
);
337 procedure Analyze_Formal_Floating_Type
(T
: Entity_Id
; Def
: Node_Id
);
338 procedure Analyze_Formal_Signed_Integer_Type
(T
: Entity_Id
; Def
: Node_Id
);
339 procedure Analyze_Formal_Modular_Type
(T
: Entity_Id
; Def
: Node_Id
);
340 procedure Analyze_Formal_Ordinary_Fixed_Point_Type
341 (T
: Entity_Id
; Def
: Node_Id
);
343 procedure Analyze_Formal_Private_Type
347 -- Creates a new private type, which does not require completion
349 procedure Analyze_Formal_Incomplete_Type
(T
: Entity_Id
; Def
: Node_Id
);
350 -- Ada 2012: Creates a new incomplete type whose actual does not freeze
352 procedure Analyze_Generic_Formal_Part
(N
: Node_Id
);
353 -- Analyze generic formal part
355 procedure Analyze_Generic_Access_Type
(T
: Entity_Id
; Def
: Node_Id
);
356 -- Create a new access type with the given designated type
358 function Analyze_Associations
361 F_Copy
: List_Id
) return List_Id
;
362 -- At instantiation time, build the list of associations between formals
363 -- and actuals. Each association becomes a renaming declaration for the
364 -- formal entity. F_Copy is the analyzed list of formals in the generic
365 -- copy. It is used to apply legality checks to the actuals. I_Node is the
366 -- instantiation node itself.
368 procedure Analyze_Subprogram_Instantiation
372 procedure Build_Instance_Compilation_Unit_Nodes
376 -- This procedure is used in the case where the generic instance of a
377 -- subprogram body or package body is a library unit. In this case, the
378 -- original library unit node for the generic instantiation must be
379 -- replaced by the resulting generic body, and a link made to a new
380 -- compilation unit node for the generic declaration. The argument N is
381 -- the original generic instantiation. Act_Body and Act_Decl are the body
382 -- and declaration of the instance (either package body and declaration
383 -- nodes or subprogram body and declaration nodes depending on the case).
384 -- On return, the node N has been rewritten with the actual body.
386 procedure Check_Access_Definition
(N
: Node_Id
);
387 -- Subsidiary routine to null exclusion processing. Perform an assertion
388 -- check on Ada version and the presence of an access definition in N.
390 procedure Check_Formal_Packages
(P_Id
: Entity_Id
);
391 -- Apply the following to all formal packages in generic associations
393 procedure Check_Formal_Package_Instance
394 (Formal_Pack
: Entity_Id
;
395 Actual_Pack
: Entity_Id
);
396 -- Verify that the actuals of the actual instance match the actuals of
397 -- the template for a formal package that is not declared with a box.
399 procedure Check_Forward_Instantiation
(Decl
: Node_Id
);
400 -- If the generic is a local entity and the corresponding body has not
401 -- been seen yet, flag enclosing packages to indicate that it will be
402 -- elaborated after the generic body. Subprograms declared in the same
403 -- package cannot be inlined by the front-end because front-end inlining
404 -- requires a strict linear order of elaboration.
406 function Check_Hidden_Primitives
(Assoc_List
: List_Id
) return Elist_Id
;
407 -- Check if some association between formals and actuals requires to make
408 -- visible primitives of a tagged type, and make those primitives visible.
409 -- Return the list of primitives whose visibility is modified (to restore
410 -- their visibility later through Restore_Hidden_Primitives). If no
411 -- candidate is found then return No_Elist.
413 procedure Check_Hidden_Child_Unit
415 Gen_Unit
: Entity_Id
;
416 Act_Decl_Id
: Entity_Id
);
417 -- If the generic unit is an implicit child instance within a parent
418 -- instance, we need to make an explicit test that it is not hidden by
419 -- a child instance of the same name and parent.
421 procedure Check_Generic_Actuals
422 (Instance
: Entity_Id
;
423 Is_Formal_Box
: Boolean);
424 -- Similar to previous one. Check the actuals in the instantiation,
425 -- whose views can change between the point of instantiation and the point
426 -- of instantiation of the body. In addition, mark the generic renamings
427 -- as generic actuals, so that they are not compatible with other actuals.
428 -- Recurse on an actual that is a formal package whose declaration has
431 function Contains_Instance_Of
434 N
: Node_Id
) return Boolean;
435 -- Inner is instantiated within the generic Outer. Check whether Inner
436 -- directly or indirectly contains an instance of Outer or of one of its
437 -- parents, in the case of a subunit. Each generic unit holds a list of
438 -- the entities instantiated within (at any depth). This procedure
439 -- determines whether the set of such lists contains a cycle, i.e. an
440 -- illegal circular instantiation.
442 function Denotes_Formal_Package
444 On_Exit
: Boolean := False;
445 Instance
: Entity_Id
:= Empty
) return Boolean;
446 -- Returns True if E is a formal package of an enclosing generic, or
447 -- the actual for such a formal in an enclosing instantiation. If such
448 -- a package is used as a formal in an nested generic, or as an actual
449 -- in a nested instantiation, the visibility of ITS formals should not
450 -- be modified. When called from within Restore_Private_Views, the flag
451 -- On_Exit is true, to indicate that the search for a possible enclosing
452 -- instance should ignore the current one. In that case Instance denotes
453 -- the declaration for which this is an actual. This declaration may be
454 -- an instantiation in the source, or the internal instantiation that
455 -- corresponds to the actual for a formal package.
457 function Earlier
(N1
, N2
: Node_Id
) return Boolean;
458 -- Yields True if N1 and N2 appear in the same compilation unit,
459 -- ignoring subunits, and if N1 is to the left of N2 in a left-to-right
460 -- traversal of the tree for the unit. Used to determine the placement
461 -- of freeze nodes for instance bodies that may depend on other instances.
463 function Find_Actual_Type
465 Gen_Type
: Entity_Id
) return Entity_Id
;
466 -- When validating the actual types of a child instance, check whether
467 -- the formal is a formal type of the parent unit, and retrieve the current
468 -- actual for it. Typ is the entity in the analyzed formal type declaration
469 -- (component or index type of an array type, or designated type of an
470 -- access formal) and Gen_Type is the enclosing analyzed formal array
471 -- or access type. The desired actual may be a formal of a parent, or may
472 -- be declared in a formal package of a parent. In both cases it is a
473 -- generic actual type because it appears within a visible instance.
474 -- Finally, it may be declared in a parent unit without being a formal
475 -- of that unit, in which case it must be retrieved by visibility.
476 -- Ambiguities may still arise if two homonyms are declared in two formal
477 -- packages, and the prefix of the formal type may be needed to resolve
478 -- the ambiguity in the instance ???
480 function In_Same_Declarative_Part
482 Inst
: Node_Id
) return Boolean;
483 -- True if the instantiation Inst and the given freeze_node F_Node appear
484 -- within the same declarative part, ignoring subunits, but with no inter-
485 -- vening subprograms or concurrent units. Used to find the proper plave
486 -- for the freeze node of an instance, when the generic is declared in a
487 -- previous instance. If predicate is true, the freeze node of the instance
488 -- can be placed after the freeze node of the previous instance, Otherwise
489 -- it has to be placed at the end of the current declarative part.
491 function In_Main_Context
(E
: Entity_Id
) return Boolean;
492 -- Check whether an instantiation is in the context of the main unit.
493 -- Used to determine whether its body should be elaborated to allow
494 -- front-end inlining.
496 procedure Set_Instance_Env
497 (Gen_Unit
: Entity_Id
;
498 Act_Unit
: Entity_Id
);
499 -- Save current instance on saved environment, to be used to determine
500 -- the global status of entities in nested instances. Part of Save_Env.
501 -- called after verifying that the generic unit is legal for the instance,
502 -- The procedure also examines whether the generic unit is a predefined
503 -- unit, in order to set configuration switches accordingly. As a result
504 -- the procedure must be called after analyzing and freezing the actuals.
506 procedure Set_Instance_Of
(A
: Entity_Id
; B
: Entity_Id
);
507 -- Associate analyzed generic parameter with corresponding
508 -- instance. Used for semantic checks at instantiation time.
510 function Has_Been_Exchanged
(E
: Entity_Id
) return Boolean;
511 -- Traverse the Exchanged_Views list to see if a type was private
512 -- and has already been flipped during this phase of instantiation.
514 procedure Hide_Current_Scope
;
515 -- When instantiating a generic child unit, the parent context must be
516 -- present, but the instance and all entities that may be generated
517 -- must be inserted in the current scope. We leave the current scope
518 -- on the stack, but make its entities invisible to avoid visibility
519 -- problems. This is reversed at the end of the instantiation. This is
520 -- not done for the instantiation of the bodies, which only require the
521 -- instances of the generic parents to be in scope.
523 procedure Install_Body
528 -- If the instantiation happens textually before the body of the generic,
529 -- the instantiation of the body must be analyzed after the generic body,
530 -- and not at the point of instantiation. Such early instantiations can
531 -- happen if the generic and the instance appear in a package declaration
532 -- because the generic body can only appear in the corresponding package
533 -- body. Early instantiations can also appear if generic, instance and
534 -- body are all in the declarative part of a subprogram or entry. Entities
535 -- of packages that are early instantiations are delayed, and their freeze
536 -- node appears after the generic body.
538 procedure Insert_Freeze_Node_For_Instance
541 -- N denotes a package or a subprogram instantiation and F_Node is the
542 -- associated freeze node. Insert the freeze node before the first source
543 -- body which follows immediately after N. If no such body is found, the
544 -- freeze node is inserted at the end of the declarative region which
547 procedure Freeze_Subprogram_Body
548 (Inst_Node
: Node_Id
;
550 Pack_Id
: Entity_Id
);
551 -- The generic body may appear textually after the instance, including
552 -- in the proper body of a stub, or within a different package instance.
553 -- Given that the instance can only be elaborated after the generic, we
554 -- place freeze_nodes for the instance and/or for packages that may enclose
555 -- the instance and the generic, so that the back-end can establish the
556 -- proper order of elaboration.
559 -- Establish environment for subsequent instantiation. Separated from
560 -- Save_Env because data-structures for visibility handling must be
561 -- initialized before call to Check_Generic_Child_Unit.
563 procedure Install_Formal_Packages
(Par
: Entity_Id
);
564 -- Install the visible part of any formal of the parent that is a formal
565 -- package. Note that for the case of a formal package with a box, this
566 -- includes the formal part of the formal package (12.7(10/2)).
568 procedure Install_Parent
(P
: Entity_Id
; In_Body
: Boolean := False);
569 -- When compiling an instance of a child unit the parent (which is
570 -- itself an instance) is an enclosing scope that must be made
571 -- immediately visible. This procedure is also used to install the non-
572 -- generic parent of a generic child unit when compiling its body, so
573 -- that full views of types in the parent are made visible.
575 procedure Remove_Parent
(In_Body
: Boolean := False);
576 -- Reverse effect after instantiation of child is complete
578 procedure Install_Hidden_Primitives
579 (Prims_List
: in out Elist_Id
;
582 -- Remove suffix 'P' from hidden primitives of Act_T to match the
583 -- visibility of primitives of Gen_T. The list of primitives to which
584 -- the suffix is removed is added to Prims_List to restore them later.
586 procedure Restore_Hidden_Primitives
(Prims_List
: in out Elist_Id
);
587 -- Restore suffix 'P' to primitives of Prims_List and leave Prims_List
590 procedure Inline_Instance_Body
592 Gen_Unit
: Entity_Id
;
594 -- If front-end inlining is requested, instantiate the package body,
595 -- and preserve the visibility of its compilation unit, to insure
596 -- that successive instantiations succeed.
598 -- The functions Instantiate_XXX perform various legality checks and build
599 -- the declarations for instantiated generic parameters. In all of these
600 -- Formal is the entity in the generic unit, Actual is the entity of
601 -- expression in the generic associations, and Analyzed_Formal is the
602 -- formal in the generic copy, which contains the semantic information to
603 -- be used to validate the actual.
605 function Instantiate_Object
608 Analyzed_Formal
: Node_Id
) return List_Id
;
610 function Instantiate_Type
613 Analyzed_Formal
: Node_Id
;
614 Actual_Decls
: List_Id
) return List_Id
;
616 function Instantiate_Formal_Subprogram
619 Analyzed_Formal
: Node_Id
) return Node_Id
;
621 function Instantiate_Formal_Package
624 Analyzed_Formal
: Node_Id
) return List_Id
;
625 -- If the formal package is declared with a box, special visibility rules
626 -- apply to its formals: they are in the visible part of the package. This
627 -- is true in the declarative region of the formal package, that is to say
628 -- in the enclosing generic or instantiation. For an instantiation, the
629 -- parameters of the formal package are made visible in an explicit step.
630 -- Furthermore, if the actual has a visible USE clause, these formals must
631 -- be made potentially use-visible as well. On exit from the enclosing
632 -- instantiation, the reverse must be done.
634 -- For a formal package declared without a box, there are conformance rules
635 -- that apply to the actuals in the generic declaration and the actuals of
636 -- the actual package in the enclosing instantiation. The simplest way to
637 -- apply these rules is to repeat the instantiation of the formal package
638 -- in the context of the enclosing instance, and compare the generic
639 -- associations of this instantiation with those of the actual package.
640 -- This internal instantiation only needs to contain the renamings of the
641 -- formals: the visible and private declarations themselves need not be
644 -- In Ada 2005, the formal package may be only partially parameterized.
645 -- In that case the visibility step must make visible those actuals whose
646 -- corresponding formals were given with a box. A final complication
647 -- involves inherited operations from formal derived types, which must
648 -- be visible if the type is.
650 function Is_In_Main_Unit
(N
: Node_Id
) return Boolean;
651 -- Test if given node is in the main unit
653 procedure Load_Parent_Of_Generic
656 Body_Optional
: Boolean := False);
657 -- If the generic appears in a separate non-generic library unit, load the
658 -- corresponding body to retrieve the body of the generic. N is the node
659 -- for the generic instantiation, Spec is the generic package declaration.
661 -- Body_Optional is a flag that indicates that the body is being loaded to
662 -- ensure that temporaries are generated consistently when there are other
663 -- instances in the current declarative part that precede the one being
664 -- loaded. In that case a missing body is acceptable.
666 procedure Inherit_Context
(Gen_Decl
: Node_Id
; Inst
: Node_Id
);
667 -- Add the context clause of the unit containing a generic unit to a
668 -- compilation unit that is, or contains, an instantiation.
670 function Get_Associated_Node
(N
: Node_Id
) return Node_Id
;
671 -- In order to propagate semantic information back from the analyzed copy
672 -- to the original generic, we maintain links between selected nodes in the
673 -- generic and their corresponding copies. At the end of generic analysis,
674 -- the routine Save_Global_References traverses the generic tree, examines
675 -- the semantic information, and preserves the links to those nodes that
676 -- contain global information. At instantiation, the information from the
677 -- associated node is placed on the new copy, so that name resolution is
680 -- Three kinds of source nodes have associated nodes:
682 -- a) those that can reference (denote) entities, that is identifiers,
683 -- character literals, expanded_names, operator symbols, operators,
684 -- and attribute reference nodes. These nodes have an Entity field
685 -- and are the set of nodes that are in N_Has_Entity.
687 -- b) aggregates (N_Aggregate and N_Extension_Aggregate)
689 -- c) selected components (N_Selected_Component)
691 -- For the first class, the associated node preserves the entity if it is
692 -- global. If the generic contains nested instantiations, the associated
693 -- node itself has been recopied, and a chain of them must be followed.
695 -- For aggregates, the associated node allows retrieval of the type, which
696 -- may otherwise not appear in the generic. The view of this type may be
697 -- different between generic and instantiation, and the full view can be
698 -- installed before the instantiation is analyzed. For aggregates of type
699 -- extensions, the same view exchange may have to be performed for some of
700 -- the ancestor types, if their view is private at the point of
703 -- Nodes that are selected components in the parse tree may be rewritten
704 -- as expanded names after resolution, and must be treated as potential
705 -- entity holders, which is why they also have an Associated_Node.
707 -- Nodes that do not come from source, such as freeze nodes, do not appear
708 -- in the generic tree, and need not have an associated node.
710 -- The associated node is stored in the Associated_Node field. Note that
711 -- this field overlaps Entity, which is fine, because the whole point is
712 -- that we don't need or want the normal Entity field in this situation.
714 procedure Map_Formal_Package_Entities
(Form
: Entity_Id
; Act
: Entity_Id
);
715 -- Within the generic part, entities in the formal package are
716 -- visible. To validate subsequent type declarations, indicate
717 -- the correspondence between the entities in the analyzed formal,
718 -- and the entities in the actual package. There are three packages
719 -- involved in the instantiation of a formal package: the parent
720 -- generic P1 which appears in the generic declaration, the fake
721 -- instantiation P2 which appears in the analyzed generic, and whose
722 -- visible entities may be used in subsequent formals, and the actual
723 -- P3 in the instance. To validate subsequent formals, me indicate
724 -- that the entities in P2 are mapped into those of P3. The mapping of
725 -- entities has to be done recursively for nested packages.
727 procedure Move_Freeze_Nodes
731 -- Freeze nodes can be generated in the analysis of a generic unit, but
732 -- will not be seen by the back-end. It is necessary to move those nodes
733 -- to the enclosing scope if they freeze an outer entity. We place them
734 -- at the end of the enclosing generic package, which is semantically
737 procedure Preanalyze_Actuals
(N
: Node_Id
);
738 -- Analyze actuals to perform name resolution. Full resolution is done
739 -- later, when the expected types are known, but names have to be captured
740 -- before installing parents of generics, that are not visible for the
741 -- actuals themselves.
743 function True_Parent
(N
: Node_Id
) return Node_Id
;
744 -- For a subunit, return parent of corresponding stub, else return
747 procedure Valid_Default_Attribute
(Nam
: Entity_Id
; Def
: Node_Id
);
748 -- Verify that an attribute that appears as the default for a formal
749 -- subprogram is a function or procedure with the correct profile.
751 -------------------------------------------
752 -- Data Structures for Generic Renamings --
753 -------------------------------------------
755 -- The map Generic_Renamings associates generic entities with their
756 -- corresponding actuals. Currently used to validate type instances. It
757 -- will eventually be used for all generic parameters to eliminate the
758 -- need for overload resolution in the instance.
760 type Assoc_Ptr
is new Int
;
762 Assoc_Null
: constant Assoc_Ptr
:= -1;
767 Next_In_HTable
: Assoc_Ptr
;
770 package Generic_Renamings
is new Table
.Table
771 (Table_Component_Type
=> Assoc
,
772 Table_Index_Type
=> Assoc_Ptr
,
773 Table_Low_Bound
=> 0,
775 Table_Increment
=> 100,
776 Table_Name
=> "Generic_Renamings");
778 -- Variable to hold enclosing instantiation. When the environment is
779 -- saved for a subprogram inlining, the corresponding Act_Id is empty.
781 Current_Instantiated_Parent
: Assoc
:= (Empty
, Empty
, Assoc_Null
);
783 -- Hash table for associations
785 HTable_Size
: constant := 37;
786 type HTable_Range
is range 0 .. HTable_Size
- 1;
788 procedure Set_Next_Assoc
(E
: Assoc_Ptr
; Next
: Assoc_Ptr
);
789 function Next_Assoc
(E
: Assoc_Ptr
) return Assoc_Ptr
;
790 function Get_Gen_Id
(E
: Assoc_Ptr
) return Entity_Id
;
791 function Hash
(F
: Entity_Id
) return HTable_Range
;
793 package Generic_Renamings_HTable
is new GNAT
.HTable
.Static_HTable
(
794 Header_Num
=> HTable_Range
,
796 Elmt_Ptr
=> Assoc_Ptr
,
797 Null_Ptr
=> Assoc_Null
,
798 Set_Next
=> Set_Next_Assoc
,
801 Get_Key
=> Get_Gen_Id
,
805 Exchanged_Views
: Elist_Id
;
806 -- This list holds the private views that have been exchanged during
807 -- instantiation to restore the visibility of the generic declaration.
808 -- (see comments above). After instantiation, the current visibility is
809 -- reestablished by means of a traversal of this list.
811 Hidden_Entities
: Elist_Id
;
812 -- This list holds the entities of the current scope that are removed
813 -- from immediate visibility when instantiating a child unit. Their
814 -- visibility is restored in Remove_Parent.
816 -- Because instantiations can be recursive, the following must be saved
817 -- on entry and restored on exit from an instantiation (spec or body).
818 -- This is done by the two procedures Save_Env and Restore_Env. For
819 -- package and subprogram instantiations (but not for the body instances)
820 -- the action of Save_Env is done in two steps: Init_Env is called before
821 -- Check_Generic_Child_Unit, because setting the parent instances requires
822 -- that the visibility data structures be properly initialized. Once the
823 -- generic is unit is validated, Set_Instance_Env completes Save_Env.
825 Parent_Unit_Visible
: Boolean := False;
826 -- Parent_Unit_Visible is used when the generic is a child unit, and
827 -- indicates whether the ultimate parent of the generic is visible in the
828 -- instantiation environment. It is used to reset the visibility of the
829 -- parent at the end of the instantiation (see Remove_Parent).
831 Instance_Parent_Unit
: Entity_Id
:= Empty
;
832 -- This records the ultimate parent unit of an instance of a generic
833 -- child unit and is used in conjunction with Parent_Unit_Visible to
834 -- indicate the unit to which the Parent_Unit_Visible flag corresponds.
836 type Instance_Env
is record
837 Instantiated_Parent
: Assoc
;
838 Exchanged_Views
: Elist_Id
;
839 Hidden_Entities
: Elist_Id
;
840 Current_Sem_Unit
: Unit_Number_Type
;
841 Parent_Unit_Visible
: Boolean := False;
842 Instance_Parent_Unit
: Entity_Id
:= Empty
;
843 Switches
: Config_Switches_Type
;
846 package Instance_Envs
is new Table
.Table
(
847 Table_Component_Type
=> Instance_Env
,
848 Table_Index_Type
=> Int
,
849 Table_Low_Bound
=> 0,
851 Table_Increment
=> 100,
852 Table_Name
=> "Instance_Envs");
854 procedure Restore_Private_Views
855 (Pack_Id
: Entity_Id
;
856 Is_Package
: Boolean := True);
857 -- Restore the private views of external types, and unmark the generic
858 -- renamings of actuals, so that they become compatible subtypes again.
859 -- For subprograms, Pack_Id is the package constructed to hold the
862 procedure Switch_View
(T
: Entity_Id
);
863 -- Switch the partial and full views of a type and its private
864 -- dependents (i.e. its subtypes and derived types).
866 ------------------------------------
867 -- Structures for Error Reporting --
868 ------------------------------------
870 Instantiation_Node
: Node_Id
;
871 -- Used by subprograms that validate instantiation of formal parameters
872 -- where there might be no actual on which to place the error message.
873 -- Also used to locate the instantiation node for generic subunits.
875 Instantiation_Error
: exception;
876 -- When there is a semantic error in the generic parameter matching,
877 -- there is no point in continuing the instantiation, because the
878 -- number of cascaded errors is unpredictable. This exception aborts
879 -- the instantiation process altogether.
881 S_Adjustment
: Sloc_Adjustment
;
882 -- Offset created for each node in an instantiation, in order to keep
883 -- track of the source position of the instantiation in each of its nodes.
884 -- A subsequent semantic error or warning on a construct of the instance
885 -- points to both places: the original generic node, and the point of
886 -- instantiation. See Sinput and Sinput.L for additional details.
888 ------------------------------------------------------------
889 -- Data structure for keeping track when inside a Generic --
890 ------------------------------------------------------------
892 -- The following table is used to save values of the Inside_A_Generic
893 -- flag (see spec of Sem) when they are saved by Start_Generic.
895 package Generic_Flags
is new Table
.Table
(
896 Table_Component_Type
=> Boolean,
897 Table_Index_Type
=> Int
,
898 Table_Low_Bound
=> 0,
900 Table_Increment
=> 200,
901 Table_Name
=> "Generic_Flags");
903 ---------------------------
904 -- Abandon_Instantiation --
905 ---------------------------
907 procedure Abandon_Instantiation
(N
: Node_Id
) is
909 Error_Msg_N
("\instantiation abandoned!", N
);
910 raise Instantiation_Error
;
911 end Abandon_Instantiation
;
913 --------------------------
914 -- Analyze_Associations --
915 --------------------------
917 function Analyze_Associations
920 F_Copy
: List_Id
) return List_Id
922 Actuals_To_Freeze
: constant Elist_Id
:= New_Elmt_List
;
923 Assoc
: constant List_Id
:= New_List
;
924 Default_Actuals
: constant Elist_Id
:= New_Elmt_List
;
925 Gen_Unit
: constant Entity_Id
:=
926 Defining_Entity
(Parent
(F_Copy
));
930 Analyzed_Formal
: Node_Id
;
931 First_Named
: Node_Id
:= Empty
;
935 Saved_Formal
: Node_Id
;
937 Default_Formals
: constant List_Id
:= New_List
;
938 -- If an Others_Choice is present, some of the formals may be defaulted.
939 -- To simplify the treatment of visibility in an instance, we introduce
940 -- individual defaults for each such formal. These defaults are
941 -- appended to the list of associations and replace the Others_Choice.
943 Found_Assoc
: Node_Id
;
944 -- Association for the current formal being match. Empty if there are
945 -- no remaining actuals, or if there is no named association with the
946 -- name of the formal.
948 Is_Named_Assoc
: Boolean;
949 Num_Matched
: Int
:= 0;
950 Num_Actuals
: Int
:= 0;
952 Others_Present
: Boolean := False;
953 Others_Choice
: Node_Id
:= Empty
;
954 -- In Ada 2005, indicates partial parameterization of a formal
955 -- package. As usual an other association must be last in the list.
957 function Build_Function_Wrapper
959 Actual
: Entity_Id
:= Empty
) return Node_Id
;
960 -- In GNATprove mode, create a wrapper function for actuals that are
961 -- functions with any number of formal parameters, in order to propagate
962 -- their contract to the renaming declarations generated for them.
963 -- If the actual is absent, the formal has a default, and the name of
964 -- the function is that of the formal.
966 function Build_Operator_Wrapper
968 Actual
: Entity_Id
:= Empty
) return Node_Id
;
969 -- In GNATprove mode, create a wrapper function for actuals that are
970 -- operators, in order to propagate their contract to the renaming
971 -- declarations generated for them. If the actual is absent, this is
972 -- a formal with a default, and the name of the operator is that of the
975 procedure Check_Overloaded_Formal_Subprogram
(Formal
: Entity_Id
);
976 -- Apply RM 12.3 (9): if a formal subprogram is overloaded, the instance
977 -- cannot have a named association for it. AI05-0025 extends this rule
978 -- to formals of formal packages by AI05-0025, and it also applies to
979 -- box-initialized formals.
981 function Has_Fully_Defined_Profile
(Subp
: Entity_Id
) return Boolean;
982 -- Determine whether the parameter types and the return type of Subp
983 -- are fully defined at the point of instantiation.
985 function Matching_Actual
987 A_F
: Entity_Id
) return Node_Id
;
988 -- Find actual that corresponds to a given a formal parameter. If the
989 -- actuals are positional, return the next one, if any. If the actuals
990 -- are named, scan the parameter associations to find the right one.
991 -- A_F is the corresponding entity in the analyzed generic,which is
992 -- placed on the selector name for ASIS use.
994 -- In Ada 2005, a named association may be given with a box, in which
995 -- case Matching_Actual sets Found_Assoc to the generic association,
996 -- but return Empty for the actual itself. In this case the code below
997 -- creates a corresponding declaration for the formal.
999 function Partial_Parameterization
return Boolean;
1000 -- Ada 2005: if no match is found for a given formal, check if the
1001 -- association for it includes a box, or whether the associations
1002 -- include an Others clause.
1004 procedure Process_Default
(F
: Entity_Id
);
1005 -- Add a copy of the declaration of generic formal F to the list of
1006 -- associations, and add an explicit box association for F if there
1007 -- is none yet, and the default comes from an Others_Choice.
1009 function Renames_Standard_Subprogram
(Subp
: Entity_Id
) return Boolean;
1010 -- Determine whether Subp renames one of the subprograms defined in the
1011 -- generated package Standard.
1013 procedure Set_Analyzed_Formal
;
1014 -- Find the node in the generic copy that corresponds to a given formal.
1015 -- The semantic information on this node is used to perform legality
1016 -- checks on the actuals. Because semantic analysis can introduce some
1017 -- anonymous entities or modify the declaration node itself, the
1018 -- correspondence between the two lists is not one-one. In addition to
1019 -- anonymous types, the presence a formal equality will introduce an
1020 -- implicit declaration for the corresponding inequality.
1022 ----------------------------
1023 -- Build_Function_Wrapper --
1024 ----------------------------
1026 function Build_Function_Wrapper
1027 (Formal
: Entity_Id
;
1028 Actual
: Entity_Id
:= Empty
) return Node_Id
1030 Loc
: constant Source_Ptr
:= Sloc
(I_Node
);
1033 Func_Name
: Node_Id
;
1035 Parm_Type
: Node_Id
;
1036 Profile
: List_Id
:= New_List
;
1043 -- If there is no actual, the formal has a default and is retrieved
1044 -- by name. Otherwise the wrapper encloses a call to the actual.
1047 Func_Name
:= Make_Identifier
(Loc
, Chars
(Formal
));
1049 Func_Name
:= New_Occurrence_Of
(Entity
(Actual
), Loc
);
1052 Func
:= Make_Defining_Identifier
(Loc
, Chars
(Formal
));
1053 Set_Ekind
(Func
, E_Function
);
1054 Set_Is_Generic_Actual_Subprogram
(Func
);
1056 Actuals
:= New_List
;
1057 Profile
:= New_List
;
1059 if Present
(Actual
) then
1060 Act_F
:= First_Formal
(Entity
(Actual
));
1065 Form_F
:= First_Formal
(Formal
);
1066 while Present
(Form_F
) loop
1068 -- Create new formal for profile of wrapper, and add a reference
1069 -- to it in the list of actuals for the enclosing call. The name
1070 -- must be that of the formal in the formal subprogram, because
1071 -- calls to it in the generic body may use named associations.
1073 New_F
:= Make_Defining_Identifier
(Loc
, Chars
(Form_F
));
1077 -- If formal has a class-wide type rewrite as the corresponding
1078 -- attribute, because the class-wide type is not retrievable by
1081 if Is_Class_Wide_Type
(Etype
(Form_F
)) then
1083 Make_Attribute_Reference
(Loc
,
1084 Attribute_Name
=> Name_Class
,
1086 Make_Identifier
(Loc
, Chars
(Etype
(Etype
(Form_F
)))));
1090 Make_Identifier
(Loc
, Chars
(Etype
(Etype
(Form_F
))));
1093 -- If actual is present, use the type of its own formal
1096 Parm_Type
:= New_Occurrence_Of
(Etype
(Act_F
), Loc
);
1100 Make_Parameter_Specification
(Loc
,
1101 Defining_Identifier
=> New_F
,
1102 Parameter_Type
=> Parm_Type
));
1104 Append_To
(Actuals
, New_Occurrence_Of
(New_F
, Loc
));
1105 Next_Formal
(Form_F
);
1107 if Present
(Act_F
) then
1108 Next_Formal
(Act_F
);
1113 Make_Function_Specification
(Loc
,
1114 Defining_Unit_Name
=> Func
,
1115 Parameter_Specifications
=> Profile
,
1116 Result_Definition
=>
1117 Make_Identifier
(Loc
, Chars
(Etype
(Formal
))));
1120 Make_Expression_Function
(Loc
,
1121 Specification
=> Spec
,
1123 Make_Function_Call
(Loc
,
1125 Parameter_Associations
=> Actuals
));
1128 end Build_Function_Wrapper
;
1130 ----------------------------
1131 -- Build_Operator_Wrapper --
1132 ----------------------------
1134 function Build_Operator_Wrapper
1135 (Formal
: Entity_Id
;
1136 Actual
: Entity_Id
:= Empty
) return Node_Id
1138 Loc
: constant Source_Ptr
:= Sloc
(I_Node
);
1139 Typ
: constant Entity_Id
:= Etype
(Formal
);
1140 Is_Binary
: constant Boolean :=
1141 Present
(Next_Formal
(First_Formal
(Formal
)));
1153 Op_Name
:= Chars
(Formal
);
1155 Op_Name
:= Chars
(Actual
);
1158 -- Create entities for wrapper function and its formals
1160 F1
:= Make_Temporary
(Loc
, 'A');
1161 F2
:= Make_Temporary
(Loc
, 'B');
1162 L
:= New_Occurrence_Of
(F1
, Loc
);
1163 R
:= New_Occurrence_Of
(F2
, Loc
);
1165 Func
:= Make_Defining_Identifier
(Loc
, Chars
(Formal
));
1166 Set_Ekind
(Func
, E_Function
);
1167 Set_Is_Generic_Actual_Subprogram
(Func
);
1170 Make_Function_Specification
(Loc
,
1171 Defining_Unit_Name
=> Func
,
1172 Parameter_Specifications
=> New_List
(
1173 Make_Parameter_Specification
(Loc
,
1174 Defining_Identifier
=> F1
,
1176 Make_Identifier
(Loc
,
1177 Chars
=> Chars
(Etype
(First_Formal
(Formal
)))))),
1178 Result_Definition
=> Make_Identifier
(Loc
, Chars
(Typ
)));
1181 Append_To
(Parameter_Specifications
(Spec
),
1182 Make_Parameter_Specification
(Loc
,
1183 Defining_Identifier
=> F2
,
1185 Make_Identifier
(Loc
,
1186 Chars
(Etype
(Next_Formal
(First_Formal
(Formal
)))))));
1189 -- Build expression as a function call, or as an operator node
1190 -- that corresponds to the name of the actual, starting with binary
1193 if Present
(Actual
) and then Op_Name
not in Any_Operator_Name
then
1195 Make_Function_Call
(Loc
,
1197 New_Occurrence_Of
(Entity
(Actual
), Loc
),
1198 Parameter_Associations
=> New_List
(L
));
1201 Append_To
(Parameter_Associations
(Expr
), R
);
1206 elsif Is_Binary
then
1207 if Op_Name
= Name_Op_And
then
1208 Expr
:= Make_Op_And
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
1209 elsif Op_Name
= Name_Op_Or
then
1210 Expr
:= Make_Op_Or
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
1211 elsif Op_Name
= Name_Op_Xor
then
1212 Expr
:= Make_Op_Xor
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
1213 elsif Op_Name
= Name_Op_Eq
then
1214 Expr
:= Make_Op_Eq
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
1215 elsif Op_Name
= Name_Op_Ne
then
1216 Expr
:= Make_Op_Ne
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
1217 elsif Op_Name
= Name_Op_Le
then
1218 Expr
:= Make_Op_Le
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
1219 elsif Op_Name
= Name_Op_Gt
then
1220 Expr
:= Make_Op_Gt
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
1221 elsif Op_Name
= Name_Op_Ge
then
1222 Expr
:= Make_Op_Ge
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
1223 elsif Op_Name
= Name_Op_Lt
then
1224 Expr
:= Make_Op_Lt
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
1225 elsif Op_Name
= Name_Op_Add
then
1226 Expr
:= Make_Op_Add
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
1227 elsif Op_Name
= Name_Op_Subtract
then
1228 Expr
:= Make_Op_Subtract
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
1229 elsif Op_Name
= Name_Op_Concat
then
1230 Expr
:= Make_Op_Concat
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
1231 elsif Op_Name
= Name_Op_Multiply
then
1232 Expr
:= Make_Op_Multiply
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
1233 elsif Op_Name
= Name_Op_Divide
then
1234 Expr
:= Make_Op_Divide
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
1235 elsif Op_Name
= Name_Op_Mod
then
1236 Expr
:= Make_Op_Mod
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
1237 elsif Op_Name
= Name_Op_Rem
then
1238 Expr
:= Make_Op_Rem
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
1239 elsif Op_Name
= Name_Op_Expon
then
1240 Expr
:= Make_Op_Expon
(Loc
, Left_Opnd
=> L
, Right_Opnd
=> R
);
1246 if Op_Name
= Name_Op_Add
then
1247 Expr
:= Make_Op_Plus
(Loc
, Right_Opnd
=> L
);
1248 elsif Op_Name
= Name_Op_Subtract
then
1249 Expr
:= Make_Op_Minus
(Loc
, Right_Opnd
=> L
);
1250 elsif Op_Name
= Name_Op_Abs
then
1251 Expr
:= Make_Op_Abs
(Loc
, Right_Opnd
=> L
);
1252 elsif Op_Name
= Name_Op_Not
then
1253 Expr
:= Make_Op_Not
(Loc
, Right_Opnd
=> L
);
1257 -- Propagate visible entity to operator node, either from a
1258 -- given actual or from a default.
1260 if Is_Entity_Name
(Actual
) and then Nkind
(Expr
) in N_Op
then
1261 Set_Entity
(Expr
, Entity
(Actual
));
1265 Make_Expression_Function
(Loc
,
1266 Specification
=> Spec
,
1267 Expression
=> Expr
);
1270 end Build_Operator_Wrapper
;
1272 ----------------------------------------
1273 -- Check_Overloaded_Formal_Subprogram --
1274 ----------------------------------------
1276 procedure Check_Overloaded_Formal_Subprogram
(Formal
: Entity_Id
) is
1277 Temp_Formal
: Entity_Id
;
1280 Temp_Formal
:= First
(Formals
);
1281 while Present
(Temp_Formal
) loop
1282 if Nkind
(Temp_Formal
) in N_Formal_Subprogram_Declaration
1283 and then Temp_Formal
/= Formal
1285 Chars
(Defining_Unit_Name
(Specification
(Formal
))) =
1286 Chars
(Defining_Unit_Name
(Specification
(Temp_Formal
)))
1288 if Present
(Found_Assoc
) then
1290 ("named association not allowed for overloaded formal",
1295 ("named association not allowed for overloaded formal",
1299 Abandon_Instantiation
(Instantiation_Node
);
1304 end Check_Overloaded_Formal_Subprogram
;
1306 -------------------------------
1307 -- Has_Fully_Defined_Profile --
1308 -------------------------------
1310 function Has_Fully_Defined_Profile
(Subp
: Entity_Id
) return Boolean is
1311 function Is_Fully_Defined_Type
(Typ
: Entity_Id
) return Boolean;
1312 -- Determine whethet type Typ is fully defined
1314 ---------------------------
1315 -- Is_Fully_Defined_Type --
1316 ---------------------------
1318 function Is_Fully_Defined_Type
(Typ
: Entity_Id
) return Boolean is
1320 -- A private type without a full view is not fully defined
1322 if Is_Private_Type
(Typ
)
1323 and then No
(Full_View
(Typ
))
1327 -- An incomplete type is never fully defined
1329 elsif Is_Incomplete_Type
(Typ
) then
1332 -- All other types are fully defined
1337 end Is_Fully_Defined_Type
;
1339 -- Local declarations
1343 -- Start of processing for Has_Fully_Defined_Profile
1346 -- Check the parameters
1348 Param
:= First_Formal
(Subp
);
1349 while Present
(Param
) loop
1350 if not Is_Fully_Defined_Type
(Etype
(Param
)) then
1354 Next_Formal
(Param
);
1357 -- Check the return type
1359 return Is_Fully_Defined_Type
(Etype
(Subp
));
1360 end Has_Fully_Defined_Profile
;
1362 ---------------------
1363 -- Matching_Actual --
1364 ---------------------
1366 function Matching_Actual
1368 A_F
: Entity_Id
) return Node_Id
1374 Is_Named_Assoc
:= False;
1376 -- End of list of purely positional parameters
1378 if No
(Actual
) or else Nkind
(Actual
) = N_Others_Choice
then
1379 Found_Assoc
:= Empty
;
1382 -- Case of positional parameter corresponding to current formal
1384 elsif No
(Selector_Name
(Actual
)) then
1385 Found_Assoc
:= Actual
;
1386 Act
:= Explicit_Generic_Actual_Parameter
(Actual
);
1387 Num_Matched
:= Num_Matched
+ 1;
1390 -- Otherwise scan list of named actuals to find the one with the
1391 -- desired name. All remaining actuals have explicit names.
1394 Is_Named_Assoc
:= True;
1395 Found_Assoc
:= Empty
;
1399 while Present
(Actual
) loop
1400 if Chars
(Selector_Name
(Actual
)) = Chars
(F
) then
1401 Set_Entity
(Selector_Name
(Actual
), A_F
);
1402 Set_Etype
(Selector_Name
(Actual
), Etype
(A_F
));
1403 Generate_Reference
(A_F
, Selector_Name
(Actual
));
1404 Found_Assoc
:= Actual
;
1405 Act
:= Explicit_Generic_Actual_Parameter
(Actual
);
1406 Num_Matched
:= Num_Matched
+ 1;
1414 -- Reset for subsequent searches. In most cases the named
1415 -- associations are in order. If they are not, we reorder them
1416 -- to avoid scanning twice the same actual. This is not just a
1417 -- question of efficiency: there may be multiple defaults with
1418 -- boxes that have the same name. In a nested instantiation we
1419 -- insert actuals for those defaults, and cannot rely on their
1420 -- names to disambiguate them.
1422 if Actual
= First_Named
then
1425 elsif Present
(Actual
) then
1426 Insert_Before
(First_Named
, Remove_Next
(Prev
));
1429 Actual
:= First_Named
;
1432 if Is_Entity_Name
(Act
) and then Present
(Entity
(Act
)) then
1433 Set_Used_As_Generic_Actual
(Entity
(Act
));
1437 end Matching_Actual
;
1439 ------------------------------
1440 -- Partial_Parameterization --
1441 ------------------------------
1443 function Partial_Parameterization
return Boolean is
1445 return Others_Present
1446 or else (Present
(Found_Assoc
) and then Box_Present
(Found_Assoc
));
1447 end Partial_Parameterization
;
1449 ---------------------
1450 -- Process_Default --
1451 ---------------------
1453 procedure Process_Default
(F
: Entity_Id
) is
1454 Loc
: constant Source_Ptr
:= Sloc
(I_Node
);
1455 F_Id
: constant Entity_Id
:= Defining_Entity
(F
);
1461 -- Append copy of formal declaration to associations, and create new
1462 -- defining identifier for it.
1464 Decl
:= New_Copy_Tree
(F
);
1465 Id
:= Make_Defining_Identifier
(Sloc
(F_Id
), Chars
(F_Id
));
1467 if Nkind
(F
) in N_Formal_Subprogram_Declaration
then
1468 Set_Defining_Unit_Name
(Specification
(Decl
), Id
);
1471 Set_Defining_Identifier
(Decl
, Id
);
1474 Append
(Decl
, Assoc
);
1476 if No
(Found_Assoc
) then
1478 Make_Generic_Association
(Loc
,
1479 Selector_Name
=> New_Occurrence_Of
(Id
, Loc
),
1480 Explicit_Generic_Actual_Parameter
=> Empty
);
1481 Set_Box_Present
(Default
);
1482 Append
(Default
, Default_Formals
);
1484 end Process_Default
;
1486 ---------------------------------
1487 -- Renames_Standard_Subprogram --
1488 ---------------------------------
1490 function Renames_Standard_Subprogram
(Subp
: Entity_Id
) return Boolean is
1495 while Present
(Id
) loop
1496 if Scope
(Id
) = Standard_Standard
then
1504 end Renames_Standard_Subprogram
;
1506 -------------------------
1507 -- Set_Analyzed_Formal --
1508 -------------------------
1510 procedure Set_Analyzed_Formal
is
1514 while Present
(Analyzed_Formal
) loop
1515 Kind
:= Nkind
(Analyzed_Formal
);
1517 case Nkind
(Formal
) is
1519 when N_Formal_Subprogram_Declaration
=>
1520 exit when Kind
in N_Formal_Subprogram_Declaration
1523 (Defining_Unit_Name
(Specification
(Formal
))) =
1525 (Defining_Unit_Name
(Specification
(Analyzed_Formal
)));
1527 when N_Formal_Package_Declaration
=>
1528 exit when Nkind_In
(Kind
, N_Formal_Package_Declaration
,
1529 N_Generic_Package_Declaration
,
1530 N_Package_Declaration
);
1532 when N_Use_Package_Clause | N_Use_Type_Clause
=> exit;
1536 -- Skip freeze nodes, and nodes inserted to replace
1537 -- unrecognized pragmas.
1540 Kind
not in N_Formal_Subprogram_Declaration
1541 and then not Nkind_In
(Kind
, N_Subprogram_Declaration
,
1545 and then Chars
(Defining_Identifier
(Formal
)) =
1546 Chars
(Defining_Identifier
(Analyzed_Formal
));
1549 Next
(Analyzed_Formal
);
1551 end Set_Analyzed_Formal
;
1553 -- Start of processing for Analyze_Associations
1556 Actuals
:= Generic_Associations
(I_Node
);
1558 if Present
(Actuals
) then
1560 -- Check for an Others choice, indicating a partial parameterization
1561 -- for a formal package.
1563 Actual
:= First
(Actuals
);
1564 while Present
(Actual
) loop
1565 if Nkind
(Actual
) = N_Others_Choice
then
1566 Others_Present
:= True;
1567 Others_Choice
:= Actual
;
1569 if Present
(Next
(Actual
)) then
1570 Error_Msg_N
("others must be last association", Actual
);
1573 -- This subprogram is used both for formal packages and for
1574 -- instantiations. For the latter, associations must all be
1577 if Nkind
(I_Node
) /= N_Formal_Package_Declaration
1578 and then Comes_From_Source
(I_Node
)
1581 ("others association not allowed in an instance",
1585 -- In any case, nothing to do after the others association
1589 elsif Box_Present
(Actual
)
1590 and then Comes_From_Source
(I_Node
)
1591 and then Nkind
(I_Node
) /= N_Formal_Package_Declaration
1594 ("box association not allowed in an instance", Actual
);
1600 -- If named associations are present, save first named association
1601 -- (it may of course be Empty) to facilitate subsequent name search.
1603 First_Named
:= First
(Actuals
);
1604 while Present
(First_Named
)
1605 and then Nkind
(First_Named
) /= N_Others_Choice
1606 and then No
(Selector_Name
(First_Named
))
1608 Num_Actuals
:= Num_Actuals
+ 1;
1613 Named
:= First_Named
;
1614 while Present
(Named
) loop
1615 if Nkind
(Named
) /= N_Others_Choice
1616 and then No
(Selector_Name
(Named
))
1618 Error_Msg_N
("invalid positional actual after named one", Named
);
1619 Abandon_Instantiation
(Named
);
1622 -- A named association may lack an actual parameter, if it was
1623 -- introduced for a default subprogram that turns out to be local
1624 -- to the outer instantiation.
1626 if Nkind
(Named
) /= N_Others_Choice
1627 and then Present
(Explicit_Generic_Actual_Parameter
(Named
))
1629 Num_Actuals
:= Num_Actuals
+ 1;
1635 if Present
(Formals
) then
1636 Formal
:= First_Non_Pragma
(Formals
);
1637 Analyzed_Formal
:= First_Non_Pragma
(F_Copy
);
1639 if Present
(Actuals
) then
1640 Actual
:= First
(Actuals
);
1642 -- All formals should have default values
1648 while Present
(Formal
) loop
1649 Set_Analyzed_Formal
;
1650 Saved_Formal
:= Next_Non_Pragma
(Formal
);
1652 case Nkind
(Formal
) is
1653 when N_Formal_Object_Declaration
=>
1656 Defining_Identifier
(Formal
),
1657 Defining_Identifier
(Analyzed_Formal
));
1659 if No
(Match
) and then Partial_Parameterization
then
1660 Process_Default
(Formal
);
1663 (Instantiate_Object
(Formal
, Match
, Analyzed_Formal
),
1667 -- If the object is a call to an expression function, this
1668 -- is a freezing point for it.
1670 if Is_Entity_Name
(Match
)
1671 and then Present
(Entity
(Match
))
1673 (Original_Node
(Unit_Declaration_Node
(Entity
(Match
))))
1674 = N_Expression_Function
1676 Append_Elmt
(Entity
(Match
), Actuals_To_Freeze
);
1679 when N_Formal_Type_Declaration
=>
1682 Defining_Identifier
(Formal
),
1683 Defining_Identifier
(Analyzed_Formal
));
1686 if Partial_Parameterization
then
1687 Process_Default
(Formal
);
1690 Error_Msg_Sloc
:= Sloc
(Gen_Unit
);
1694 Defining_Identifier
(Formal
));
1695 Error_Msg_NE
("\in instantiation of & declared#",
1696 Instantiation_Node
, Gen_Unit
);
1697 Abandon_Instantiation
(Instantiation_Node
);
1704 (Formal
, Match
, Analyzed_Formal
, Assoc
),
1707 -- An instantiation is a freeze point for the actuals,
1708 -- unless this is a rewritten formal package, or the
1709 -- formal is an Ada 2012 formal incomplete type.
1711 if Nkind
(I_Node
) = N_Formal_Package_Declaration
1713 (Ada_Version
>= Ada_2012
1715 Ekind
(Defining_Identifier
(Analyzed_Formal
)) =
1721 Append_Elmt
(Entity
(Match
), Actuals_To_Freeze
);
1725 -- A remote access-to-class-wide type is not a legal actual
1726 -- for a generic formal of an access type (E.2.2(17/2)).
1727 -- In GNAT an exception to this rule is introduced when
1728 -- the formal is marked as remote using implementation
1729 -- defined aspect/pragma Remote_Access_Type. In that case
1730 -- the actual must be remote as well.
1732 -- If the current instantiation is the construction of a
1733 -- local copy for a formal package the actuals may be
1734 -- defaulted, and there is no matching actual to check.
1736 if Nkind
(Analyzed_Formal
) = N_Formal_Type_Declaration
1738 Nkind
(Formal_Type_Definition
(Analyzed_Formal
)) =
1739 N_Access_To_Object_Definition
1740 and then Present
(Match
)
1743 Formal_Ent
: constant Entity_Id
:=
1744 Defining_Identifier
(Analyzed_Formal
);
1746 if Is_Remote_Access_To_Class_Wide_Type
(Entity
(Match
))
1747 = Is_Remote_Types
(Formal_Ent
)
1749 -- Remoteness of formal and actual match
1753 elsif Is_Remote_Types
(Formal_Ent
) then
1755 -- Remote formal, non-remote actual
1758 ("actual for& must be remote", Match
, Formal_Ent
);
1761 -- Non-remote formal, remote actual
1764 ("actual for& may not be remote",
1770 when N_Formal_Subprogram_Declaration
=>
1773 (Defining_Unit_Name
(Specification
(Formal
)),
1774 Defining_Unit_Name
(Specification
(Analyzed_Formal
)));
1776 -- If the formal subprogram has the same name as another
1777 -- formal subprogram of the generic, then a named
1778 -- association is illegal (12.3(9)). Exclude named
1779 -- associations that are generated for a nested instance.
1782 and then Is_Named_Assoc
1783 and then Comes_From_Source
(Found_Assoc
)
1785 Check_Overloaded_Formal_Subprogram
(Formal
);
1788 -- If there is no corresponding actual, this may be case
1789 -- of partial parameterization, or else the formal has a
1790 -- default or a box.
1792 if No
(Match
) and then Partial_Parameterization
then
1793 Process_Default
(Formal
);
1795 if Nkind
(I_Node
) = N_Formal_Package_Declaration
then
1796 Check_Overloaded_Formal_Subprogram
(Formal
);
1802 (Containing_Package_With_Ext_Axioms
1803 (Defining_Entity
(Analyzed_Formal
)))
1804 and then Ekind
(Defining_Entity
(Analyzed_Formal
)) =
1807 -- If actual is an entity (function or operator),
1808 -- build wrapper for it.
1810 if Present
(Match
) then
1811 if Nkind
(Match
) = N_Operator_Symbol
then
1813 -- If the name is a default, find its visible
1814 -- entity at the point of instantiation.
1816 if Is_Entity_Name
(Match
)
1817 and then No
(Entity
(Match
))
1819 Find_Direct_Name
(Match
);
1824 Build_Operator_Wrapper
1825 (Defining_Entity
(Analyzed_Formal
), Match
));
1829 Build_Function_Wrapper
1830 (Defining_Entity
(Analyzed_Formal
), Match
));
1833 -- Ditto if formal is an operator with a default.
1835 elsif Box_Present
(Formal
)
1836 and then Nkind
(Defining_Entity
(Analyzed_Formal
)) =
1837 N_Defining_Operator_Symbol
1840 Build_Operator_Wrapper
1841 (Defining_Entity
(Analyzed_Formal
)));
1843 -- Otherwise create renaming declaration.
1847 Build_Function_Wrapper
1848 (Defining_Entity
(Analyzed_Formal
)));
1853 Instantiate_Formal_Subprogram
1854 (Formal
, Match
, Analyzed_Formal
));
1857 -- An instantiation is a freeze point for the actuals,
1858 -- unless this is a rewritten formal package.
1860 if Nkind
(I_Node
) /= N_Formal_Package_Declaration
1861 and then Nkind
(Match
) = N_Identifier
1862 and then Is_Subprogram
(Entity
(Match
))
1864 -- The actual subprogram may rename a routine defined
1865 -- in Standard. Avoid freezing such renamings because
1866 -- subprograms coming from Standard cannot be frozen.
1869 not Renames_Standard_Subprogram
(Entity
(Match
))
1871 -- If the actual subprogram comes from a different
1872 -- unit, it is already frozen, either by a body in
1873 -- that unit or by the end of the declarative part
1874 -- of the unit. This check avoids the freezing of
1875 -- subprograms defined in Standard which are used
1876 -- as generic actuals.
1878 and then In_Same_Code_Unit
(Entity
(Match
), I_Node
)
1879 and then Has_Fully_Defined_Profile
(Entity
(Match
))
1881 -- Mark the subprogram as having a delayed freeze
1882 -- since this may be an out-of-order action.
1884 Set_Has_Delayed_Freeze
(Entity
(Match
));
1885 Append_Elmt
(Entity
(Match
), Actuals_To_Freeze
);
1889 -- If this is a nested generic, preserve default for later
1892 if No
(Match
) and then Box_Present
(Formal
) then
1894 (Defining_Unit_Name
(Specification
(Last
(Assoc
))),
1898 when N_Formal_Package_Declaration
=>
1901 Defining_Identifier
(Formal
),
1902 Defining_Identifier
(Original_Node
(Analyzed_Formal
)));
1905 if Partial_Parameterization
then
1906 Process_Default
(Formal
);
1909 Error_Msg_Sloc
:= Sloc
(Gen_Unit
);
1912 Instantiation_Node
, Defining_Identifier
(Formal
));
1913 Error_Msg_NE
("\in instantiation of & declared#",
1914 Instantiation_Node
, Gen_Unit
);
1916 Abandon_Instantiation
(Instantiation_Node
);
1922 (Instantiate_Formal_Package
1923 (Formal
, Match
, Analyzed_Formal
),
1927 -- For use type and use package appearing in the generic part,
1928 -- we have already copied them, so we can just move them where
1929 -- they belong (we mustn't recopy them since this would mess up
1930 -- the Sloc values).
1932 when N_Use_Package_Clause |
1933 N_Use_Type_Clause
=>
1934 if Nkind
(Original_Node
(I_Node
)) =
1935 N_Formal_Package_Declaration
1937 Append
(New_Copy_Tree
(Formal
), Assoc
);
1940 Append
(Formal
, Assoc
);
1944 raise Program_Error
;
1948 Formal
:= Saved_Formal
;
1949 Next_Non_Pragma
(Analyzed_Formal
);
1952 if Num_Actuals
> Num_Matched
then
1953 Error_Msg_Sloc
:= Sloc
(Gen_Unit
);
1955 if Present
(Selector_Name
(Actual
)) then
1957 ("unmatched actual&",
1958 Actual
, Selector_Name
(Actual
));
1959 Error_Msg_NE
("\in instantiation of& declared#",
1963 ("unmatched actual in instantiation of& declared#",
1968 elsif Present
(Actuals
) then
1970 ("too many actuals in generic instantiation", Instantiation_Node
);
1973 -- An instantiation freezes all generic actuals. The only exceptions
1974 -- to this are incomplete types and subprograms which are not fully
1975 -- defined at the point of instantiation.
1978 Elmt
: Elmt_Id
:= First_Elmt
(Actuals_To_Freeze
);
1980 while Present
(Elmt
) loop
1981 Freeze_Before
(I_Node
, Node
(Elmt
));
1986 -- If there are default subprograms, normalize the tree by adding
1987 -- explicit associations for them. This is required if the instance
1988 -- appears within a generic.
1996 Elmt
:= First_Elmt
(Default_Actuals
);
1997 while Present
(Elmt
) loop
1998 if No
(Actuals
) then
1999 Actuals
:= New_List
;
2000 Set_Generic_Associations
(I_Node
, Actuals
);
2003 Subp
:= Node
(Elmt
);
2005 Make_Generic_Association
(Sloc
(Subp
),
2006 Selector_Name
=> New_Occurrence_Of
(Subp
, Sloc
(Subp
)),
2007 Explicit_Generic_Actual_Parameter
=>
2008 New_Occurrence_Of
(Subp
, Sloc
(Subp
)));
2009 Mark_Rewrite_Insertion
(New_D
);
2010 Append_To
(Actuals
, New_D
);
2015 -- If this is a formal package, normalize the parameter list by adding
2016 -- explicit box associations for the formals that are covered by an
2019 if not Is_Empty_List
(Default_Formals
) then
2020 Append_List
(Default_Formals
, Formals
);
2024 end Analyze_Associations
;
2026 -------------------------------
2027 -- Analyze_Formal_Array_Type --
2028 -------------------------------
2030 procedure Analyze_Formal_Array_Type
2031 (T
: in out Entity_Id
;
2037 -- Treated like a non-generic array declaration, with additional
2042 if Nkind
(Def
) = N_Constrained_Array_Definition
then
2043 DSS
:= First
(Discrete_Subtype_Definitions
(Def
));
2044 while Present
(DSS
) loop
2045 if Nkind_In
(DSS
, N_Subtype_Indication
,
2047 N_Attribute_Reference
)
2049 Error_Msg_N
("only a subtype mark is allowed in a formal", DSS
);
2056 Array_Type_Declaration
(T
, Def
);
2057 Set_Is_Generic_Type
(Base_Type
(T
));
2059 if Ekind
(Component_Type
(T
)) = E_Incomplete_Type
2060 and then No
(Full_View
(Component_Type
(T
)))
2062 Error_Msg_N
("premature usage of incomplete type", Def
);
2064 -- Check that range constraint is not allowed on the component type
2065 -- of a generic formal array type (AARM 12.5.3(3))
2067 elsif Is_Internal
(Component_Type
(T
))
2068 and then Present
(Subtype_Indication
(Component_Definition
(Def
)))
2069 and then Nkind
(Original_Node
2070 (Subtype_Indication
(Component_Definition
(Def
)))) =
2071 N_Subtype_Indication
2074 ("in a formal, a subtype indication can only be "
2075 & "a subtype mark (RM 12.5.3(3))",
2076 Subtype_Indication
(Component_Definition
(Def
)));
2079 end Analyze_Formal_Array_Type
;
2081 ---------------------------------------------
2082 -- Analyze_Formal_Decimal_Fixed_Point_Type --
2083 ---------------------------------------------
2085 -- As for other generic types, we create a valid type representation with
2086 -- legal but arbitrary attributes, whose values are never considered
2087 -- static. For all scalar types we introduce an anonymous base type, with
2088 -- the same attributes. We choose the corresponding integer type to be
2089 -- Standard_Integer.
2090 -- Here and in other similar routines, the Sloc of the generated internal
2091 -- type must be the same as the sloc of the defining identifier of the
2092 -- formal type declaration, to provide proper source navigation.
2094 procedure Analyze_Formal_Decimal_Fixed_Point_Type
2098 Loc
: constant Source_Ptr
:= Sloc
(Def
);
2100 Base
: constant Entity_Id
:=
2102 (E_Decimal_Fixed_Point_Type
,
2104 Sloc
(Defining_Identifier
(Parent
(Def
))), 'G');
2106 Int_Base
: constant Entity_Id
:= Standard_Integer
;
2107 Delta_Val
: constant Ureal
:= Ureal_1
;
2108 Digs_Val
: constant Uint
:= Uint_6
;
2110 function Make_Dummy_Bound
return Node_Id
;
2111 -- Return a properly typed universal real literal to use as a bound
2113 ----------------------
2114 -- Make_Dummy_Bound --
2115 ----------------------
2117 function Make_Dummy_Bound
return Node_Id
is
2118 Bound
: constant Node_Id
:= Make_Real_Literal
(Loc
, Ureal_1
);
2120 Set_Etype
(Bound
, Universal_Real
);
2122 end Make_Dummy_Bound
;
2124 -- Start of processing for Analyze_Formal_Decimal_Fixed_Point_Type
2129 Set_Etype
(Base
, Base
);
2130 Set_Size_Info
(Base
, Int_Base
);
2131 Set_RM_Size
(Base
, RM_Size
(Int_Base
));
2132 Set_First_Rep_Item
(Base
, First_Rep_Item
(Int_Base
));
2133 Set_Digits_Value
(Base
, Digs_Val
);
2134 Set_Delta_Value
(Base
, Delta_Val
);
2135 Set_Small_Value
(Base
, Delta_Val
);
2136 Set_Scalar_Range
(Base
,
2138 Low_Bound
=> Make_Dummy_Bound
,
2139 High_Bound
=> Make_Dummy_Bound
));
2141 Set_Is_Generic_Type
(Base
);
2142 Set_Parent
(Base
, Parent
(Def
));
2144 Set_Ekind
(T
, E_Decimal_Fixed_Point_Subtype
);
2145 Set_Etype
(T
, Base
);
2146 Set_Size_Info
(T
, Int_Base
);
2147 Set_RM_Size
(T
, RM_Size
(Int_Base
));
2148 Set_First_Rep_Item
(T
, First_Rep_Item
(Int_Base
));
2149 Set_Digits_Value
(T
, Digs_Val
);
2150 Set_Delta_Value
(T
, Delta_Val
);
2151 Set_Small_Value
(T
, Delta_Val
);
2152 Set_Scalar_Range
(T
, Scalar_Range
(Base
));
2153 Set_Is_Constrained
(T
);
2155 Check_Restriction
(No_Fixed_Point
, Def
);
2156 end Analyze_Formal_Decimal_Fixed_Point_Type
;
2158 -------------------------------------------
2159 -- Analyze_Formal_Derived_Interface_Type --
2160 -------------------------------------------
2162 procedure Analyze_Formal_Derived_Interface_Type
2167 Loc
: constant Source_Ptr
:= Sloc
(Def
);
2170 -- Rewrite as a type declaration of a derived type. This ensures that
2171 -- the interface list and primitive operations are properly captured.
2174 Make_Full_Type_Declaration
(Loc
,
2175 Defining_Identifier
=> T
,
2176 Type_Definition
=> Def
));
2178 Set_Is_Generic_Type
(T
);
2179 end Analyze_Formal_Derived_Interface_Type
;
2181 ---------------------------------
2182 -- Analyze_Formal_Derived_Type --
2183 ---------------------------------
2185 procedure Analyze_Formal_Derived_Type
2190 Loc
: constant Source_Ptr
:= Sloc
(Def
);
2191 Unk_Disc
: constant Boolean := Unknown_Discriminants_Present
(N
);
2195 Set_Is_Generic_Type
(T
);
2197 if Private_Present
(Def
) then
2199 Make_Private_Extension_Declaration
(Loc
,
2200 Defining_Identifier
=> T
,
2201 Discriminant_Specifications
=> Discriminant_Specifications
(N
),
2202 Unknown_Discriminants_Present
=> Unk_Disc
,
2203 Subtype_Indication
=> Subtype_Mark
(Def
),
2204 Interface_List
=> Interface_List
(Def
));
2206 Set_Abstract_Present
(New_N
, Abstract_Present
(Def
));
2207 Set_Limited_Present
(New_N
, Limited_Present
(Def
));
2208 Set_Synchronized_Present
(New_N
, Synchronized_Present
(Def
));
2212 Make_Full_Type_Declaration
(Loc
,
2213 Defining_Identifier
=> T
,
2214 Discriminant_Specifications
=>
2215 Discriminant_Specifications
(Parent
(T
)),
2217 Make_Derived_Type_Definition
(Loc
,
2218 Subtype_Indication
=> Subtype_Mark
(Def
)));
2220 Set_Abstract_Present
2221 (Type_Definition
(New_N
), Abstract_Present
(Def
));
2223 (Type_Definition
(New_N
), Limited_Present
(Def
));
2230 if not Is_Composite_Type
(T
) then
2232 ("unknown discriminants not allowed for elementary types", N
);
2234 Set_Has_Unknown_Discriminants
(T
);
2235 Set_Is_Constrained
(T
, False);
2239 -- If the parent type has a known size, so does the formal, which makes
2240 -- legal representation clauses that involve the formal.
2242 Set_Size_Known_At_Compile_Time
2243 (T
, Size_Known_At_Compile_Time
(Entity
(Subtype_Mark
(Def
))));
2244 end Analyze_Formal_Derived_Type
;
2246 ----------------------------------
2247 -- Analyze_Formal_Discrete_Type --
2248 ----------------------------------
2250 -- The operations defined for a discrete types are those of an enumeration
2251 -- type. The size is set to an arbitrary value, for use in analyzing the
2254 procedure Analyze_Formal_Discrete_Type
(T
: Entity_Id
; Def
: Node_Id
) is
2255 Loc
: constant Source_Ptr
:= Sloc
(Def
);
2259 Base
: constant Entity_Id
:=
2261 (E_Floating_Point_Type
, Current_Scope
,
2262 Sloc
(Defining_Identifier
(Parent
(Def
))), 'G');
2266 Set_Ekind
(T
, E_Enumeration_Subtype
);
2267 Set_Etype
(T
, Base
);
2270 Set_Is_Generic_Type
(T
);
2271 Set_Is_Constrained
(T
);
2273 -- For semantic analysis, the bounds of the type must be set to some
2274 -- non-static value. The simplest is to create attribute nodes for those
2275 -- bounds, that refer to the type itself. These bounds are never
2276 -- analyzed but serve as place-holders.
2279 Make_Attribute_Reference
(Loc
,
2280 Attribute_Name
=> Name_First
,
2281 Prefix
=> New_Occurrence_Of
(T
, Loc
));
2285 Make_Attribute_Reference
(Loc
,
2286 Attribute_Name
=> Name_Last
,
2287 Prefix
=> New_Occurrence_Of
(T
, Loc
));
2290 Set_Scalar_Range
(T
,
2295 Set_Ekind
(Base
, E_Enumeration_Type
);
2296 Set_Etype
(Base
, Base
);
2297 Init_Size
(Base
, 8);
2298 Init_Alignment
(Base
);
2299 Set_Is_Generic_Type
(Base
);
2300 Set_Scalar_Range
(Base
, Scalar_Range
(T
));
2301 Set_Parent
(Base
, Parent
(Def
));
2302 end Analyze_Formal_Discrete_Type
;
2304 ----------------------------------
2305 -- Analyze_Formal_Floating_Type --
2306 ---------------------------------
2308 procedure Analyze_Formal_Floating_Type
(T
: Entity_Id
; Def
: Node_Id
) is
2309 Base
: constant Entity_Id
:=
2311 (E_Floating_Point_Type
, Current_Scope
,
2312 Sloc
(Defining_Identifier
(Parent
(Def
))), 'G');
2315 -- The various semantic attributes are taken from the predefined type
2316 -- Float, just so that all of them are initialized. Their values are
2317 -- never used because no constant folding or expansion takes place in
2318 -- the generic itself.
2321 Set_Ekind
(T
, E_Floating_Point_Subtype
);
2322 Set_Etype
(T
, Base
);
2323 Set_Size_Info
(T
, (Standard_Float
));
2324 Set_RM_Size
(T
, RM_Size
(Standard_Float
));
2325 Set_Digits_Value
(T
, Digits_Value
(Standard_Float
));
2326 Set_Scalar_Range
(T
, Scalar_Range
(Standard_Float
));
2327 Set_Is_Constrained
(T
);
2329 Set_Is_Generic_Type
(Base
);
2330 Set_Etype
(Base
, Base
);
2331 Set_Size_Info
(Base
, (Standard_Float
));
2332 Set_RM_Size
(Base
, RM_Size
(Standard_Float
));
2333 Set_Digits_Value
(Base
, Digits_Value
(Standard_Float
));
2334 Set_Scalar_Range
(Base
, Scalar_Range
(Standard_Float
));
2335 Set_Parent
(Base
, Parent
(Def
));
2337 Check_Restriction
(No_Floating_Point
, Def
);
2338 end Analyze_Formal_Floating_Type
;
2340 -----------------------------------
2341 -- Analyze_Formal_Interface_Type;--
2342 -----------------------------------
2344 procedure Analyze_Formal_Interface_Type
2349 Loc
: constant Source_Ptr
:= Sloc
(N
);
2354 Make_Full_Type_Declaration
(Loc
,
2355 Defining_Identifier
=> T
,
2356 Type_Definition
=> Def
);
2360 Set_Is_Generic_Type
(T
);
2361 end Analyze_Formal_Interface_Type
;
2363 ---------------------------------
2364 -- Analyze_Formal_Modular_Type --
2365 ---------------------------------
2367 procedure Analyze_Formal_Modular_Type
(T
: Entity_Id
; Def
: Node_Id
) is
2369 -- Apart from their entity kind, generic modular types are treated like
2370 -- signed integer types, and have the same attributes.
2372 Analyze_Formal_Signed_Integer_Type
(T
, Def
);
2373 Set_Ekind
(T
, E_Modular_Integer_Subtype
);
2374 Set_Ekind
(Etype
(T
), E_Modular_Integer_Type
);
2376 end Analyze_Formal_Modular_Type
;
2378 ---------------------------------------
2379 -- Analyze_Formal_Object_Declaration --
2380 ---------------------------------------
2382 procedure Analyze_Formal_Object_Declaration
(N
: Node_Id
) is
2383 E
: constant Node_Id
:= Default_Expression
(N
);
2384 Id
: constant Node_Id
:= Defining_Identifier
(N
);
2391 -- Determine the mode of the formal object
2393 if Out_Present
(N
) then
2394 K
:= E_Generic_In_Out_Parameter
;
2396 if not In_Present
(N
) then
2397 Error_Msg_N
("formal generic objects cannot have mode OUT", N
);
2401 K
:= E_Generic_In_Parameter
;
2404 if Present
(Subtype_Mark
(N
)) then
2405 Find_Type
(Subtype_Mark
(N
));
2406 T
:= Entity
(Subtype_Mark
(N
));
2408 -- Verify that there is no redundant null exclusion
2410 if Null_Exclusion_Present
(N
) then
2411 if not Is_Access_Type
(T
) then
2413 ("null exclusion can only apply to an access type", N
);
2415 elsif Can_Never_Be_Null
(T
) then
2417 ("`NOT NULL` not allowed (& already excludes null)",
2422 -- Ada 2005 (AI-423): Formal object with an access definition
2425 Check_Access_Definition
(N
);
2426 T
:= Access_Definition
2428 N
=> Access_Definition
(N
));
2431 if Ekind
(T
) = E_Incomplete_Type
then
2433 Error_Node
: Node_Id
;
2436 if Present
(Subtype_Mark
(N
)) then
2437 Error_Node
:= Subtype_Mark
(N
);
2439 Check_Access_Definition
(N
);
2440 Error_Node
:= Access_Definition
(N
);
2443 Error_Msg_N
("premature usage of incomplete type", Error_Node
);
2447 if K
= E_Generic_In_Parameter
then
2449 -- Ada 2005 (AI-287): Limited aggregates allowed in generic formals
2451 if Ada_Version
< Ada_2005
and then Is_Limited_Type
(T
) then
2453 ("generic formal of mode IN must not be of limited type", N
);
2454 Explain_Limited_Type
(T
, N
);
2457 if Is_Abstract_Type
(T
) then
2459 ("generic formal of mode IN must not be of abstract type", N
);
2463 Preanalyze_Spec_Expression
(E
, T
);
2465 if Is_Limited_Type
(T
) and then not OK_For_Limited_Init
(T
, E
) then
2467 ("initialization not allowed for limited types", E
);
2468 Explain_Limited_Type
(T
, E
);
2475 -- Case of generic IN OUT parameter
2478 -- If the formal has an unconstrained type, construct its actual
2479 -- subtype, as is done for subprogram formals. In this fashion, all
2480 -- its uses can refer to specific bounds.
2485 if (Is_Array_Type
(T
) and then not Is_Constrained
(T
))
2486 or else (Ekind
(T
) = E_Record_Type
and then Has_Discriminants
(T
))
2489 Non_Freezing_Ref
: constant Node_Id
:=
2490 New_Occurrence_Of
(Id
, Sloc
(Id
));
2494 -- Make sure the actual subtype doesn't generate bogus freezing
2496 Set_Must_Not_Freeze
(Non_Freezing_Ref
);
2497 Decl
:= Build_Actual_Subtype
(T
, Non_Freezing_Ref
);
2498 Insert_Before_And_Analyze
(N
, Decl
);
2499 Set_Actual_Subtype
(Id
, Defining_Identifier
(Decl
));
2502 Set_Actual_Subtype
(Id
, T
);
2507 ("initialization not allowed for `IN OUT` formals", N
);
2511 if Has_Aspects
(N
) then
2512 Analyze_Aspect_Specifications
(N
, Id
);
2514 end Analyze_Formal_Object_Declaration
;
2516 ----------------------------------------------
2517 -- Analyze_Formal_Ordinary_Fixed_Point_Type --
2518 ----------------------------------------------
2520 procedure Analyze_Formal_Ordinary_Fixed_Point_Type
2524 Loc
: constant Source_Ptr
:= Sloc
(Def
);
2525 Base
: constant Entity_Id
:=
2527 (E_Ordinary_Fixed_Point_Type
, Current_Scope
,
2528 Sloc
(Defining_Identifier
(Parent
(Def
))), 'G');
2531 -- The semantic attributes are set for completeness only, their values
2532 -- will never be used, since all properties of the type are non-static.
2535 Set_Ekind
(T
, E_Ordinary_Fixed_Point_Subtype
);
2536 Set_Etype
(T
, Base
);
2537 Set_Size_Info
(T
, Standard_Integer
);
2538 Set_RM_Size
(T
, RM_Size
(Standard_Integer
));
2539 Set_Small_Value
(T
, Ureal_1
);
2540 Set_Delta_Value
(T
, Ureal_1
);
2541 Set_Scalar_Range
(T
,
2543 Low_Bound
=> Make_Real_Literal
(Loc
, Ureal_1
),
2544 High_Bound
=> Make_Real_Literal
(Loc
, Ureal_1
)));
2545 Set_Is_Constrained
(T
);
2547 Set_Is_Generic_Type
(Base
);
2548 Set_Etype
(Base
, Base
);
2549 Set_Size_Info
(Base
, Standard_Integer
);
2550 Set_RM_Size
(Base
, RM_Size
(Standard_Integer
));
2551 Set_Small_Value
(Base
, Ureal_1
);
2552 Set_Delta_Value
(Base
, Ureal_1
);
2553 Set_Scalar_Range
(Base
, Scalar_Range
(T
));
2554 Set_Parent
(Base
, Parent
(Def
));
2556 Check_Restriction
(No_Fixed_Point
, Def
);
2557 end Analyze_Formal_Ordinary_Fixed_Point_Type
;
2559 ----------------------------------------
2560 -- Analyze_Formal_Package_Declaration --
2561 ----------------------------------------
2563 procedure Analyze_Formal_Package_Declaration
(N
: Node_Id
) is
2564 Loc
: constant Source_Ptr
:= Sloc
(N
);
2565 Pack_Id
: constant Entity_Id
:= Defining_Identifier
(N
);
2567 Gen_Id
: constant Node_Id
:= Name
(N
);
2569 Gen_Unit
: Entity_Id
;
2571 Parent_Installed
: Boolean := False;
2573 Parent_Instance
: Entity_Id
;
2574 Renaming_In_Par
: Entity_Id
;
2575 Associations
: Boolean := True;
2577 Vis_Prims_List
: Elist_Id
:= No_Elist
;
2578 -- List of primitives made temporarily visible in the instantiation
2579 -- to match the visibility of the formal type
2581 function Build_Local_Package
return Node_Id
;
2582 -- The formal package is rewritten so that its parameters are replaced
2583 -- with corresponding declarations. For parameters with bona fide
2584 -- associations these declarations are created by Analyze_Associations
2585 -- as for a regular instantiation. For boxed parameters, we preserve
2586 -- the formal declarations and analyze them, in order to introduce
2587 -- entities of the right kind in the environment of the formal.
2589 -------------------------
2590 -- Build_Local_Package --
2591 -------------------------
2593 function Build_Local_Package
return Node_Id
is
2595 Pack_Decl
: Node_Id
;
2598 -- Within the formal, the name of the generic package is a renaming
2599 -- of the formal (as for a regular instantiation).
2602 Make_Package_Declaration
(Loc
,
2605 (Specification
(Original_Node
(Gen_Decl
)),
2606 Empty
, Instantiating
=> True));
2608 Renaming
:= Make_Package_Renaming_Declaration
(Loc
,
2609 Defining_Unit_Name
=>
2610 Make_Defining_Identifier
(Loc
, Chars
(Gen_Unit
)),
2611 Name
=> New_Occurrence_Of
(Formal
, Loc
));
2613 if Nkind
(Gen_Id
) = N_Identifier
2614 and then Chars
(Gen_Id
) = Chars
(Pack_Id
)
2617 ("& is hidden within declaration of instance", Gen_Id
, Gen_Unit
);
2620 -- If the formal is declared with a box, or with an others choice,
2621 -- create corresponding declarations for all entities in the formal
2622 -- part, so that names with the proper types are available in the
2623 -- specification of the formal package.
2625 -- On the other hand, if there are no associations, then all the
2626 -- formals must have defaults, and this will be checked by the
2627 -- call to Analyze_Associations.
2630 or else Nkind
(First
(Generic_Associations
(N
))) = N_Others_Choice
2633 Formal_Decl
: Node_Id
;
2636 -- TBA : for a formal package, need to recurse ???
2641 (Generic_Formal_Declarations
(Original_Node
(Gen_Decl
)));
2642 while Present
(Formal_Decl
) loop
2644 (Decls
, Copy_Generic_Node
(Formal_Decl
, Empty
, True));
2649 -- If generic associations are present, use Analyze_Associations to
2650 -- create the proper renaming declarations.
2654 Act_Tree
: constant Node_Id
:=
2656 (Original_Node
(Gen_Decl
), Empty
,
2657 Instantiating
=> True);
2660 Generic_Renamings
.Set_Last
(0);
2661 Generic_Renamings_HTable
.Reset
;
2662 Instantiation_Node
:= N
;
2665 Analyze_Associations
2666 (I_Node
=> Original_Node
(N
),
2667 Formals
=> Generic_Formal_Declarations
(Act_Tree
),
2668 F_Copy
=> Generic_Formal_Declarations
(Gen_Decl
));
2670 Vis_Prims_List
:= Check_Hidden_Primitives
(Decls
);
2674 Append
(Renaming
, To
=> Decls
);
2676 -- Add generated declarations ahead of local declarations in
2679 if No
(Visible_Declarations
(Specification
(Pack_Decl
))) then
2680 Set_Visible_Declarations
(Specification
(Pack_Decl
), Decls
);
2683 (First
(Visible_Declarations
(Specification
(Pack_Decl
))),
2688 end Build_Local_Package
;
2690 -- Start of processing for Analyze_Formal_Package_Declaration
2693 Check_Text_IO_Special_Unit
(Gen_Id
);
2696 Check_Generic_Child_Unit
(Gen_Id
, Parent_Installed
);
2697 Gen_Unit
:= Entity
(Gen_Id
);
2699 -- Check for a formal package that is a package renaming
2701 if Present
(Renamed_Object
(Gen_Unit
)) then
2703 -- Indicate that unit is used, before replacing it with renamed
2704 -- entity for use below.
2706 if In_Extended_Main_Source_Unit
(N
) then
2707 Set_Is_Instantiated
(Gen_Unit
);
2708 Generate_Reference
(Gen_Unit
, N
);
2711 Gen_Unit
:= Renamed_Object
(Gen_Unit
);
2714 if Ekind
(Gen_Unit
) /= E_Generic_Package
then
2715 Error_Msg_N
("expect generic package name", Gen_Id
);
2719 elsif Gen_Unit
= Current_Scope
then
2721 ("generic package cannot be used as a formal package of itself",
2726 elsif In_Open_Scopes
(Gen_Unit
) then
2727 if Is_Compilation_Unit
(Gen_Unit
)
2728 and then Is_Child_Unit
(Current_Scope
)
2730 -- Special-case the error when the formal is a parent, and
2731 -- continue analysis to minimize cascaded errors.
2734 ("generic parent cannot be used as formal package "
2735 & "of a child unit",
2740 ("generic package cannot be used as a formal package "
2748 -- Check that name of formal package does not hide name of generic,
2749 -- or its leading prefix. This check must be done separately because
2750 -- the name of the generic has already been analyzed.
2753 Gen_Name
: Entity_Id
;
2757 while Nkind
(Gen_Name
) = N_Expanded_Name
loop
2758 Gen_Name
:= Prefix
(Gen_Name
);
2761 if Chars
(Gen_Name
) = Chars
(Pack_Id
) then
2763 ("& is hidden within declaration of formal package",
2769 or else No
(Generic_Associations
(N
))
2770 or else Nkind
(First
(Generic_Associations
(N
))) = N_Others_Choice
2772 Associations
:= False;
2775 -- If there are no generic associations, the generic parameters appear
2776 -- as local entities and are instantiated like them. We copy the generic
2777 -- package declaration as if it were an instantiation, and analyze it
2778 -- like a regular package, except that we treat the formals as
2779 -- additional visible components.
2781 Gen_Decl
:= Unit_Declaration_Node
(Gen_Unit
);
2783 if In_Extended_Main_Source_Unit
(N
) then
2784 Set_Is_Instantiated
(Gen_Unit
);
2785 Generate_Reference
(Gen_Unit
, N
);
2788 Formal
:= New_Copy
(Pack_Id
);
2789 Create_Instantiation_Source
(N
, Gen_Unit
, False, S_Adjustment
);
2792 -- Make local generic without formals. The formals will be replaced
2793 -- with internal declarations.
2795 New_N
:= Build_Local_Package
;
2797 -- If there are errors in the parameter list, Analyze_Associations
2798 -- raises Instantiation_Error. Patch the declaration to prevent
2799 -- further exception propagation.
2802 when Instantiation_Error
=>
2804 Enter_Name
(Formal
);
2805 Set_Ekind
(Formal
, E_Variable
);
2806 Set_Etype
(Formal
, Any_Type
);
2807 Restore_Hidden_Primitives
(Vis_Prims_List
);
2809 if Parent_Installed
then
2817 Set_Defining_Unit_Name
(Specification
(New_N
), Formal
);
2818 Set_Generic_Parent
(Specification
(N
), Gen_Unit
);
2819 Set_Instance_Env
(Gen_Unit
, Formal
);
2820 Set_Is_Generic_Instance
(Formal
);
2822 Enter_Name
(Formal
);
2823 Set_Ekind
(Formal
, E_Package
);
2824 Set_Etype
(Formal
, Standard_Void_Type
);
2825 Set_Inner_Instances
(Formal
, New_Elmt_List
);
2826 Push_Scope
(Formal
);
2828 if Is_Child_Unit
(Gen_Unit
)
2829 and then Parent_Installed
2831 -- Similarly, we have to make the name of the formal visible in the
2832 -- parent instance, to resolve properly fully qualified names that
2833 -- may appear in the generic unit. The parent instance has been
2834 -- placed on the scope stack ahead of the current scope.
2836 Parent_Instance
:= Scope_Stack
.Table
(Scope_Stack
.Last
- 1).Entity
;
2839 Make_Defining_Identifier
(Loc
, Chars
(Gen_Unit
));
2840 Set_Ekind
(Renaming_In_Par
, E_Package
);
2841 Set_Etype
(Renaming_In_Par
, Standard_Void_Type
);
2842 Set_Scope
(Renaming_In_Par
, Parent_Instance
);
2843 Set_Parent
(Renaming_In_Par
, Parent
(Formal
));
2844 Set_Renamed_Object
(Renaming_In_Par
, Formal
);
2845 Append_Entity
(Renaming_In_Par
, Parent_Instance
);
2848 Analyze
(Specification
(N
));
2850 -- The formals for which associations are provided are not visible
2851 -- outside of the formal package. The others are still declared by a
2852 -- formal parameter declaration.
2854 -- If there are no associations, the only local entity to hide is the
2855 -- generated package renaming itself.
2861 E
:= First_Entity
(Formal
);
2862 while Present
(E
) loop
2864 and then not Is_Generic_Formal
(E
)
2869 if Ekind
(E
) = E_Package
2870 and then Renamed_Entity
(E
) = Formal
2880 End_Package_Scope
(Formal
);
2881 Restore_Hidden_Primitives
(Vis_Prims_List
);
2883 if Parent_Installed
then
2889 -- Inside the generic unit, the formal package is a regular package, but
2890 -- no body is needed for it. Note that after instantiation, the defining
2891 -- unit name we need is in the new tree and not in the original (see
2892 -- Package_Instantiation). A generic formal package is an instance, and
2893 -- can be used as an actual for an inner instance.
2895 Set_Has_Completion
(Formal
, True);
2897 -- Add semantic information to the original defining identifier.
2900 Set_Ekind
(Pack_Id
, E_Package
);
2901 Set_Etype
(Pack_Id
, Standard_Void_Type
);
2902 Set_Scope
(Pack_Id
, Scope
(Formal
));
2903 Set_Has_Completion
(Pack_Id
, True);
2906 if Has_Aspects
(N
) then
2907 Analyze_Aspect_Specifications
(N
, Pack_Id
);
2909 end Analyze_Formal_Package_Declaration
;
2911 ---------------------------------
2912 -- Analyze_Formal_Private_Type --
2913 ---------------------------------
2915 procedure Analyze_Formal_Private_Type
2921 New_Private_Type
(N
, T
, Def
);
2923 -- Set the size to an arbitrary but legal value
2925 Set_Size_Info
(T
, Standard_Integer
);
2926 Set_RM_Size
(T
, RM_Size
(Standard_Integer
));
2927 end Analyze_Formal_Private_Type
;
2929 ------------------------------------
2930 -- Analyze_Formal_Incomplete_Type --
2931 ------------------------------------
2933 procedure Analyze_Formal_Incomplete_Type
2939 Set_Ekind
(T
, E_Incomplete_Type
);
2941 Set_Private_Dependents
(T
, New_Elmt_List
);
2943 if Tagged_Present
(Def
) then
2944 Set_Is_Tagged_Type
(T
);
2945 Make_Class_Wide_Type
(T
);
2946 Set_Direct_Primitive_Operations
(T
, New_Elmt_List
);
2948 end Analyze_Formal_Incomplete_Type
;
2950 ----------------------------------------
2951 -- Analyze_Formal_Signed_Integer_Type --
2952 ----------------------------------------
2954 procedure Analyze_Formal_Signed_Integer_Type
2958 Base
: constant Entity_Id
:=
2960 (E_Signed_Integer_Type
,
2962 Sloc
(Defining_Identifier
(Parent
(Def
))), 'G');
2967 Set_Ekind
(T
, E_Signed_Integer_Subtype
);
2968 Set_Etype
(T
, Base
);
2969 Set_Size_Info
(T
, Standard_Integer
);
2970 Set_RM_Size
(T
, RM_Size
(Standard_Integer
));
2971 Set_Scalar_Range
(T
, Scalar_Range
(Standard_Integer
));
2972 Set_Is_Constrained
(T
);
2974 Set_Is_Generic_Type
(Base
);
2975 Set_Size_Info
(Base
, Standard_Integer
);
2976 Set_RM_Size
(Base
, RM_Size
(Standard_Integer
));
2977 Set_Etype
(Base
, Base
);
2978 Set_Scalar_Range
(Base
, Scalar_Range
(Standard_Integer
));
2979 Set_Parent
(Base
, Parent
(Def
));
2980 end Analyze_Formal_Signed_Integer_Type
;
2982 -------------------------------------------
2983 -- Analyze_Formal_Subprogram_Declaration --
2984 -------------------------------------------
2986 procedure Analyze_Formal_Subprogram_Declaration
(N
: Node_Id
) is
2987 Spec
: constant Node_Id
:= Specification
(N
);
2988 Def
: constant Node_Id
:= Default_Name
(N
);
2989 Nam
: constant Entity_Id
:= Defining_Unit_Name
(Spec
);
2997 if Nkind
(Nam
) = N_Defining_Program_Unit_Name
then
2998 Error_Msg_N
("name of formal subprogram must be a direct name", Nam
);
3002 Analyze_Subprogram_Declaration
(N
);
3003 Set_Is_Formal_Subprogram
(Nam
);
3004 Set_Has_Completion
(Nam
);
3006 if Nkind
(N
) = N_Formal_Abstract_Subprogram_Declaration
then
3007 Set_Is_Abstract_Subprogram
(Nam
);
3008 Set_Is_Dispatching_Operation
(Nam
);
3011 Ctrl_Type
: constant Entity_Id
:= Find_Dispatching_Type
(Nam
);
3013 if No
(Ctrl_Type
) then
3015 ("abstract formal subprogram must have a controlling type",
3018 elsif Ada_Version
>= Ada_2012
3019 and then Is_Incomplete_Type
(Ctrl_Type
)
3022 ("controlling type of abstract formal subprogram cannot " &
3023 "be incomplete type", N
, Ctrl_Type
);
3026 Check_Controlling_Formals
(Ctrl_Type
, Nam
);
3031 -- Default name is resolved at the point of instantiation
3033 if Box_Present
(N
) then
3036 -- Else default is bound at the point of generic declaration
3038 elsif Present
(Def
) then
3039 if Nkind
(Def
) = N_Operator_Symbol
then
3040 Find_Direct_Name
(Def
);
3042 elsif Nkind
(Def
) /= N_Attribute_Reference
then
3046 -- For an attribute reference, analyze the prefix and verify
3047 -- that it has the proper profile for the subprogram.
3049 Analyze
(Prefix
(Def
));
3050 Valid_Default_Attribute
(Nam
, Def
);
3054 -- Default name may be overloaded, in which case the interpretation
3055 -- with the correct profile must be selected, as for a renaming.
3056 -- If the definition is an indexed component, it must denote a
3057 -- member of an entry family. If it is a selected component, it
3058 -- can be a protected operation.
3060 if Etype
(Def
) = Any_Type
then
3063 elsif Nkind
(Def
) = N_Selected_Component
then
3064 if not Is_Overloadable
(Entity
(Selector_Name
(Def
))) then
3065 Error_Msg_N
("expect valid subprogram name as default", Def
);
3068 elsif Nkind
(Def
) = N_Indexed_Component
then
3069 if Is_Entity_Name
(Prefix
(Def
)) then
3070 if Ekind
(Entity
(Prefix
(Def
))) /= E_Entry_Family
then
3071 Error_Msg_N
("expect valid subprogram name as default", Def
);
3074 elsif Nkind
(Prefix
(Def
)) = N_Selected_Component
then
3075 if Ekind
(Entity
(Selector_Name
(Prefix
(Def
)))) /=
3078 Error_Msg_N
("expect valid subprogram name as default", Def
);
3082 Error_Msg_N
("expect valid subprogram name as default", Def
);
3086 elsif Nkind
(Def
) = N_Character_Literal
then
3088 -- Needs some type checks: subprogram should be parameterless???
3090 Resolve
(Def
, (Etype
(Nam
)));
3092 elsif not Is_Entity_Name
(Def
)
3093 or else not Is_Overloadable
(Entity
(Def
))
3095 Error_Msg_N
("expect valid subprogram name as default", Def
);
3098 elsif not Is_Overloaded
(Def
) then
3099 Subp
:= Entity
(Def
);
3102 Error_Msg_N
("premature usage of formal subprogram", Def
);
3104 elsif not Entity_Matches_Spec
(Subp
, Nam
) then
3105 Error_Msg_N
("no visible entity matches specification", Def
);
3108 -- More than one interpretation, so disambiguate as for a renaming
3113 I1
: Interp_Index
:= 0;
3119 Get_First_Interp
(Def
, I
, It
);
3120 while Present
(It
.Nam
) loop
3121 if Entity_Matches_Spec
(It
.Nam
, Nam
) then
3122 if Subp
/= Any_Id
then
3123 It1
:= Disambiguate
(Def
, I1
, I
, Etype
(Subp
));
3125 if It1
= No_Interp
then
3126 Error_Msg_N
("ambiguous default subprogram", Def
);
3139 Get_Next_Interp
(I
, It
);
3143 if Subp
/= Any_Id
then
3145 -- Subprogram found, generate reference to it
3147 Set_Entity
(Def
, Subp
);
3148 Generate_Reference
(Subp
, Def
);
3151 Error_Msg_N
("premature usage of formal subprogram", Def
);
3153 elsif Ekind
(Subp
) /= E_Operator
then
3154 Check_Mode_Conformant
(Subp
, Nam
);
3158 Error_Msg_N
("no visible subprogram matches specification", N
);
3164 if Has_Aspects
(N
) then
3165 Analyze_Aspect_Specifications
(N
, Nam
);
3168 end Analyze_Formal_Subprogram_Declaration
;
3170 -------------------------------------
3171 -- Analyze_Formal_Type_Declaration --
3172 -------------------------------------
3174 procedure Analyze_Formal_Type_Declaration
(N
: Node_Id
) is
3175 Def
: constant Node_Id
:= Formal_Type_Definition
(N
);
3179 T
:= Defining_Identifier
(N
);
3181 if Present
(Discriminant_Specifications
(N
))
3182 and then Nkind
(Def
) /= N_Formal_Private_Type_Definition
3185 ("discriminants not allowed for this formal type", T
);
3188 -- Enter the new name, and branch to specific routine
3191 when N_Formal_Private_Type_Definition
=>
3192 Analyze_Formal_Private_Type
(N
, T
, Def
);
3194 when N_Formal_Derived_Type_Definition
=>
3195 Analyze_Formal_Derived_Type
(N
, T
, Def
);
3197 when N_Formal_Incomplete_Type_Definition
=>
3198 Analyze_Formal_Incomplete_Type
(T
, Def
);
3200 when N_Formal_Discrete_Type_Definition
=>
3201 Analyze_Formal_Discrete_Type
(T
, Def
);
3203 when N_Formal_Signed_Integer_Type_Definition
=>
3204 Analyze_Formal_Signed_Integer_Type
(T
, Def
);
3206 when N_Formal_Modular_Type_Definition
=>
3207 Analyze_Formal_Modular_Type
(T
, Def
);
3209 when N_Formal_Floating_Point_Definition
=>
3210 Analyze_Formal_Floating_Type
(T
, Def
);
3212 when N_Formal_Ordinary_Fixed_Point_Definition
=>
3213 Analyze_Formal_Ordinary_Fixed_Point_Type
(T
, Def
);
3215 when N_Formal_Decimal_Fixed_Point_Definition
=>
3216 Analyze_Formal_Decimal_Fixed_Point_Type
(T
, Def
);
3218 when N_Array_Type_Definition
=>
3219 Analyze_Formal_Array_Type
(T
, Def
);
3221 when N_Access_To_Object_Definition |
3222 N_Access_Function_Definition |
3223 N_Access_Procedure_Definition
=>
3224 Analyze_Generic_Access_Type
(T
, Def
);
3226 -- Ada 2005: a interface declaration is encoded as an abstract
3227 -- record declaration or a abstract type derivation.
3229 when N_Record_Definition
=>
3230 Analyze_Formal_Interface_Type
(N
, T
, Def
);
3232 when N_Derived_Type_Definition
=>
3233 Analyze_Formal_Derived_Interface_Type
(N
, T
, Def
);
3239 raise Program_Error
;
3243 Set_Is_Generic_Type
(T
);
3245 if Has_Aspects
(N
) then
3246 Analyze_Aspect_Specifications
(N
, T
);
3248 end Analyze_Formal_Type_Declaration
;
3250 ------------------------------------
3251 -- Analyze_Function_Instantiation --
3252 ------------------------------------
3254 procedure Analyze_Function_Instantiation
(N
: Node_Id
) is
3256 Analyze_Subprogram_Instantiation
(N
, E_Function
);
3257 end Analyze_Function_Instantiation
;
3259 ---------------------------------
3260 -- Analyze_Generic_Access_Type --
3261 ---------------------------------
3263 procedure Analyze_Generic_Access_Type
(T
: Entity_Id
; Def
: Node_Id
) is
3267 if Nkind
(Def
) = N_Access_To_Object_Definition
then
3268 Access_Type_Declaration
(T
, Def
);
3270 if Is_Incomplete_Or_Private_Type
(Designated_Type
(T
))
3271 and then No
(Full_View
(Designated_Type
(T
)))
3272 and then not Is_Generic_Type
(Designated_Type
(T
))
3274 Error_Msg_N
("premature usage of incomplete type", Def
);
3276 elsif not Is_Entity_Name
(Subtype_Indication
(Def
)) then
3278 ("only a subtype mark is allowed in a formal", Def
);
3282 Access_Subprogram_Declaration
(T
, Def
);
3284 end Analyze_Generic_Access_Type
;
3286 ---------------------------------
3287 -- Analyze_Generic_Formal_Part --
3288 ---------------------------------
3290 procedure Analyze_Generic_Formal_Part
(N
: Node_Id
) is
3291 Gen_Parm_Decl
: Node_Id
;
3294 -- The generic formals are processed in the scope of the generic unit,
3295 -- where they are immediately visible. The scope is installed by the
3298 Gen_Parm_Decl
:= First
(Generic_Formal_Declarations
(N
));
3300 while Present
(Gen_Parm_Decl
) loop
3301 Analyze
(Gen_Parm_Decl
);
3302 Next
(Gen_Parm_Decl
);
3305 Generate_Reference_To_Generic_Formals
(Current_Scope
);
3306 end Analyze_Generic_Formal_Part
;
3308 ------------------------------------------
3309 -- Analyze_Generic_Package_Declaration --
3310 ------------------------------------------
3312 procedure Analyze_Generic_Package_Declaration
(N
: Node_Id
) is
3313 Loc
: constant Source_Ptr
:= Sloc
(N
);
3316 Save_Parent
: Node_Id
;
3318 Decls
: constant List_Id
:=
3319 Visible_Declarations
(Specification
(N
));
3323 Check_SPARK_05_Restriction
("generic is not allowed", N
);
3325 -- We introduce a renaming of the enclosing package, to have a usable
3326 -- entity as the prefix of an expanded name for a local entity of the
3327 -- form Par.P.Q, where P is the generic package. This is because a local
3328 -- entity named P may hide it, so that the usual visibility rules in
3329 -- the instance will not resolve properly.
3332 Make_Package_Renaming_Declaration
(Loc
,
3333 Defining_Unit_Name
=>
3334 Make_Defining_Identifier
(Loc
,
3335 Chars
=> New_External_Name
(Chars
(Defining_Entity
(N
)), "GH")),
3336 Name
=> Make_Identifier
(Loc
, Chars
(Defining_Entity
(N
))));
3338 if Present
(Decls
) then
3339 Decl
:= First
(Decls
);
3340 while Present
(Decl
)
3341 and then Nkind
(Decl
) = N_Pragma
3346 if Present
(Decl
) then
3347 Insert_Before
(Decl
, Renaming
);
3349 Append
(Renaming
, Visible_Declarations
(Specification
(N
)));
3353 Set_Visible_Declarations
(Specification
(N
), New_List
(Renaming
));
3356 -- Create copy of generic unit, and save for instantiation. If the unit
3357 -- is a child unit, do not copy the specifications for the parent, which
3358 -- are not part of the generic tree.
3360 Save_Parent
:= Parent_Spec
(N
);
3361 Set_Parent_Spec
(N
, Empty
);
3363 New_N
:= Copy_Generic_Node
(N
, Empty
, Instantiating
=> False);
3364 Set_Parent_Spec
(New_N
, Save_Parent
);
3367 -- Once the contents of the generic copy and the template are swapped,
3368 -- do the same for their respective aspect specifications.
3370 Exchange_Aspects
(N
, New_N
);
3371 Id
:= Defining_Entity
(N
);
3372 Generate_Definition
(Id
);
3374 -- Expansion is not applied to generic units
3379 Set_Ekind
(Id
, E_Generic_Package
);
3380 Set_Etype
(Id
, Standard_Void_Type
);
3381 Set_Contract
(Id
, Make_Contract
(Sloc
(Id
)));
3383 -- A generic package declared within a Ghost scope is rendered Ghost
3384 -- (SPARK RM 6.9(2)).
3386 if Within_Ghost_Scope
then
3387 Set_Is_Ghost_Entity
(Id
);
3390 -- Analyze aspects now, so that generated pragmas appear in the
3391 -- declarations before building and analyzing the generic copy.
3393 if Has_Aspects
(N
) then
3394 Analyze_Aspect_Specifications
(N
, Id
);
3398 Enter_Generic_Scope
(Id
);
3399 Set_Inner_Instances
(Id
, New_Elmt_List
);
3401 Set_Categorization_From_Pragmas
(N
);
3402 Set_Is_Pure
(Id
, Is_Pure
(Current_Scope
));
3404 -- Link the declaration of the generic homonym in the generic copy to
3405 -- the package it renames, so that it is always resolved properly.
3407 Set_Generic_Homonym
(Id
, Defining_Unit_Name
(Renaming
));
3408 Set_Entity
(Associated_Node
(Name
(Renaming
)), Id
);
3410 -- For a library unit, we have reconstructed the entity for the unit,
3411 -- and must reset it in the library tables.
3413 if Nkind
(Parent
(N
)) = N_Compilation_Unit
then
3414 Set_Cunit_Entity
(Current_Sem_Unit
, Id
);
3417 Analyze_Generic_Formal_Part
(N
);
3419 -- After processing the generic formals, analysis proceeds as for a
3420 -- non-generic package.
3422 Analyze
(Specification
(N
));
3424 Validate_Categorization_Dependency
(N
, Id
);
3428 End_Package_Scope
(Id
);
3429 Exit_Generic_Scope
(Id
);
3431 if Nkind
(Parent
(N
)) /= N_Compilation_Unit
then
3432 Move_Freeze_Nodes
(Id
, N
, Visible_Declarations
(Specification
(N
)));
3433 Move_Freeze_Nodes
(Id
, N
, Private_Declarations
(Specification
(N
)));
3434 Move_Freeze_Nodes
(Id
, N
, Generic_Formal_Declarations
(N
));
3437 Set_Body_Required
(Parent
(N
), Unit_Requires_Body
(Id
));
3438 Validate_RT_RAT_Component
(N
);
3440 -- If this is a spec without a body, check that generic parameters
3443 if not Body_Required
(Parent
(N
)) then
3444 Check_References
(Id
);
3448 -- If there is a specified storage pool in the context, create an
3449 -- aspect on the package declaration, so that it is used in any
3450 -- instance that does not override it.
3452 if Present
(Default_Pool
) then
3458 Make_Aspect_Specification
(Loc
,
3459 Identifier
=> Make_Identifier
(Loc
, Name_Default_Storage_Pool
),
3460 Expression
=> New_Copy
(Default_Pool
));
3462 if No
(Aspect_Specifications
(Specification
(N
))) then
3463 Set_Aspect_Specifications
(Specification
(N
), New_List
(ASN
));
3465 Append
(ASN
, Aspect_Specifications
(Specification
(N
)));
3469 end Analyze_Generic_Package_Declaration
;
3471 --------------------------------------------
3472 -- Analyze_Generic_Subprogram_Declaration --
3473 --------------------------------------------
3475 procedure Analyze_Generic_Subprogram_Declaration
(N
: Node_Id
) is
3480 Result_Type
: Entity_Id
;
3481 Save_Parent
: Node_Id
;
3485 Check_SPARK_05_Restriction
("generic is not allowed", N
);
3487 -- Create copy of generic unit, and save for instantiation. If the unit
3488 -- is a child unit, do not copy the specifications for the parent, which
3489 -- are not part of the generic tree.
3491 Save_Parent
:= Parent_Spec
(N
);
3492 Set_Parent_Spec
(N
, Empty
);
3494 New_N
:= Copy_Generic_Node
(N
, Empty
, Instantiating
=> False);
3495 Set_Parent_Spec
(New_N
, Save_Parent
);
3498 -- Once the contents of the generic copy and the template are swapped,
3499 -- do the same for their respective aspect specifications.
3501 Exchange_Aspects
(N
, New_N
);
3503 Spec
:= Specification
(N
);
3504 Id
:= Defining_Entity
(Spec
);
3505 Generate_Definition
(Id
);
3506 Set_Contract
(Id
, Make_Contract
(Sloc
(Id
)));
3508 if Nkind
(Id
) = N_Defining_Operator_Symbol
then
3510 ("operator symbol not allowed for generic subprogram", Id
);
3516 Set_Scope_Depth_Value
(Id
, Scope_Depth
(Current_Scope
) + 1);
3518 -- Analyze the aspects of the generic copy to ensure that all generated
3519 -- pragmas (if any) perform their semantic effects.
3521 if Has_Aspects
(N
) then
3522 Analyze_Aspect_Specifications
(N
, Id
);
3526 Enter_Generic_Scope
(Id
);
3527 Set_Inner_Instances
(Id
, New_Elmt_List
);
3528 Set_Is_Pure
(Id
, Is_Pure
(Current_Scope
));
3530 Analyze_Generic_Formal_Part
(N
);
3532 Formals
:= Parameter_Specifications
(Spec
);
3534 if Present
(Formals
) then
3535 Process_Formals
(Formals
, Spec
);
3538 if Nkind
(Spec
) = N_Function_Specification
then
3539 Set_Ekind
(Id
, E_Generic_Function
);
3541 if Nkind
(Result_Definition
(Spec
)) = N_Access_Definition
then
3542 Result_Type
:= Access_Definition
(Spec
, Result_Definition
(Spec
));
3543 Set_Etype
(Id
, Result_Type
);
3545 -- Check restriction imposed by AI05-073: a generic function
3546 -- cannot return an abstract type or an access to such.
3548 -- This is a binding interpretation should it apply to earlier
3549 -- versions of Ada as well as Ada 2012???
3551 if Is_Abstract_Type
(Designated_Type
(Result_Type
))
3552 and then Ada_Version
>= Ada_2012
3554 Error_Msg_N
("generic function cannot have an access result"
3555 & " that designates an abstract type", Spec
);
3559 Find_Type
(Result_Definition
(Spec
));
3560 Typ
:= Entity
(Result_Definition
(Spec
));
3562 if Is_Abstract_Type
(Typ
)
3563 and then Ada_Version
>= Ada_2012
3566 ("generic function cannot have abstract result type", Spec
);
3569 -- If a null exclusion is imposed on the result type, then create
3570 -- a null-excluding itype (an access subtype) and use it as the
3571 -- function's Etype.
3573 if Is_Access_Type
(Typ
)
3574 and then Null_Exclusion_Present
(Spec
)
3577 Create_Null_Excluding_Itype
3579 Related_Nod
=> Spec
,
3580 Scope_Id
=> Defining_Unit_Name
(Spec
)));
3582 Set_Etype
(Id
, Typ
);
3587 Set_Ekind
(Id
, E_Generic_Procedure
);
3588 Set_Etype
(Id
, Standard_Void_Type
);
3591 -- A generic subprogram declared within a Ghost scope is rendered Ghost
3592 -- (SPARK RM 6.9(2)).
3594 if Within_Ghost_Scope
then
3595 Set_Is_Ghost_Entity
(Id
);
3598 -- For a library unit, we have reconstructed the entity for the unit,
3599 -- and must reset it in the library tables. We also make sure that
3600 -- Body_Required is set properly in the original compilation unit node.
3602 if Nkind
(Parent
(N
)) = N_Compilation_Unit
then
3603 Set_Cunit_Entity
(Current_Sem_Unit
, Id
);
3604 Set_Body_Required
(Parent
(N
), Unit_Requires_Body
(Id
));
3607 Set_Categorization_From_Pragmas
(N
);
3608 Validate_Categorization_Dependency
(N
, Id
);
3610 Save_Global_References
(Original_Node
(N
));
3612 -- For ASIS purposes, convert any postcondition, precondition pragmas
3613 -- into aspects, if N is not a compilation unit by itself, in order to
3614 -- enable the analysis of expressions inside the corresponding PPC
3617 if ASIS_Mode
and then Is_List_Member
(N
) then
3618 Make_Aspect_For_PPC_In_Gen_Sub_Decl
(N
);
3623 Exit_Generic_Scope
(Id
);
3624 Generate_Reference_To_Formals
(Id
);
3626 List_Inherited_Pre_Post_Aspects
(Id
);
3627 end Analyze_Generic_Subprogram_Declaration
;
3629 -----------------------------------
3630 -- Analyze_Package_Instantiation --
3631 -----------------------------------
3633 procedure Analyze_Package_Instantiation
(N
: Node_Id
) is
3634 Loc
: constant Source_Ptr
:= Sloc
(N
);
3635 Gen_Id
: constant Node_Id
:= Name
(N
);
3638 Act_Decl_Name
: Node_Id
;
3639 Act_Decl_Id
: Entity_Id
;
3645 Gen_Unit
: Entity_Id
;
3647 Is_Actual_Pack
: constant Boolean :=
3648 Is_Internal
(Defining_Entity
(N
));
3650 Env_Installed
: Boolean := False;
3651 Parent_Installed
: Boolean := False;
3652 Renaming_List
: List_Id
;
3653 Unit_Renaming
: Node_Id
;
3654 Needs_Body
: Boolean;
3655 Inline_Now
: Boolean := False;
3657 Save_IPSM
: constant Boolean := Ignore_Pragma_SPARK_Mode
;
3658 -- Save flag Ignore_Pragma_SPARK_Mode for restore on exit
3660 Save_SM
: constant SPARK_Mode_Type
:= SPARK_Mode
;
3661 Save_SMP
: constant Node_Id
:= SPARK_Mode_Pragma
;
3662 -- Save the SPARK_Mode-related data for restore on exit
3664 Save_Style_Check
: constant Boolean := Style_Check
;
3665 -- Save style check mode for restore on exit
3667 procedure Delay_Descriptors
(E
: Entity_Id
);
3668 -- Delay generation of subprogram descriptors for given entity
3670 function Might_Inline_Subp
return Boolean;
3671 -- If inlining is active and the generic contains inlined subprograms,
3672 -- we instantiate the body. This may cause superfluous instantiations,
3673 -- but it is simpler than detecting the need for the body at the point
3674 -- of inlining, when the context of the instance is not available.
3676 -----------------------
3677 -- Delay_Descriptors --
3678 -----------------------
3680 procedure Delay_Descriptors
(E
: Entity_Id
) is
3682 if not Delay_Subprogram_Descriptors
(E
) then
3683 Set_Delay_Subprogram_Descriptors
(E
);
3684 Pending_Descriptor
.Append
(E
);
3686 end Delay_Descriptors
;
3688 -----------------------
3689 -- Might_Inline_Subp --
3690 -----------------------
3692 function Might_Inline_Subp
return Boolean is
3696 if not Inline_Processing_Required
then
3700 E
:= First_Entity
(Gen_Unit
);
3701 while Present
(E
) loop
3702 if Is_Subprogram
(E
) and then Is_Inlined
(E
) then
3711 end Might_Inline_Subp
;
3713 -- Local declarations
3715 Vis_Prims_List
: Elist_Id
:= No_Elist
;
3716 -- List of primitives made temporarily visible in the instantiation
3717 -- to match the visibility of the formal type
3719 -- Start of processing for Analyze_Package_Instantiation
3722 Check_SPARK_05_Restriction
("generic is not allowed", N
);
3724 -- Very first thing: check for Text_IO sp[ecial unit in case we are
3725 -- instantiating one of the children of [[Wide_]Wide_]Text_IO.
3727 Check_Text_IO_Special_Unit
(Name
(N
));
3729 -- Make node global for error reporting
3731 Instantiation_Node
:= N
;
3733 -- Turn off style checking in instances. If the check is enabled on the
3734 -- generic unit, a warning in an instance would just be noise. If not
3735 -- enabled on the generic, then a warning in an instance is just wrong.
3737 Style_Check
:= False;
3739 -- Case of instantiation of a generic package
3741 if Nkind
(N
) = N_Package_Instantiation
then
3742 Act_Decl_Id
:= New_Copy
(Defining_Entity
(N
));
3743 Set_Comes_From_Source
(Act_Decl_Id
, True);
3745 if Nkind
(Defining_Unit_Name
(N
)) = N_Defining_Program_Unit_Name
then
3747 Make_Defining_Program_Unit_Name
(Loc
,
3748 Name
=> New_Copy_Tree
(Name
(Defining_Unit_Name
(N
))),
3749 Defining_Identifier
=> Act_Decl_Id
);
3751 Act_Decl_Name
:= Act_Decl_Id
;
3754 -- Case of instantiation of a formal package
3757 Act_Decl_Id
:= Defining_Identifier
(N
);
3758 Act_Decl_Name
:= Act_Decl_Id
;
3761 Generate_Definition
(Act_Decl_Id
);
3762 Preanalyze_Actuals
(N
);
3765 Env_Installed
:= True;
3767 -- Reset renaming map for formal types. The mapping is established
3768 -- when analyzing the generic associations, but some mappings are
3769 -- inherited from formal packages of parent units, and these are
3770 -- constructed when the parents are installed.
3772 Generic_Renamings
.Set_Last
(0);
3773 Generic_Renamings_HTable
.Reset
;
3775 Check_Generic_Child_Unit
(Gen_Id
, Parent_Installed
);
3776 Gen_Unit
:= Entity
(Gen_Id
);
3778 -- Verify that it is the name of a generic package
3780 -- A visibility glitch: if the instance is a child unit and the generic
3781 -- is the generic unit of a parent instance (i.e. both the parent and
3782 -- the child units are instances of the same package) the name now
3783 -- denotes the renaming within the parent, not the intended generic
3784 -- unit. See if there is a homonym that is the desired generic. The
3785 -- renaming declaration must be visible inside the instance of the
3786 -- child, but not when analyzing the name in the instantiation itself.
3788 if Ekind
(Gen_Unit
) = E_Package
3789 and then Present
(Renamed_Entity
(Gen_Unit
))
3790 and then In_Open_Scopes
(Renamed_Entity
(Gen_Unit
))
3791 and then Is_Generic_Instance
(Renamed_Entity
(Gen_Unit
))
3792 and then Present
(Homonym
(Gen_Unit
))
3794 Gen_Unit
:= Homonym
(Gen_Unit
);
3797 if Etype
(Gen_Unit
) = Any_Type
then
3801 elsif Ekind
(Gen_Unit
) /= E_Generic_Package
then
3803 -- Ada 2005 (AI-50217): Cannot use instance in limited with_clause
3805 if From_Limited_With
(Gen_Unit
) then
3807 ("cannot instantiate a limited withed package", Gen_Id
);
3810 ("& is not the name of a generic package", Gen_Id
, Gen_Unit
);
3817 if In_Extended_Main_Source_Unit
(N
) then
3818 Set_Is_Instantiated
(Gen_Unit
);
3819 Generate_Reference
(Gen_Unit
, N
);
3821 if Present
(Renamed_Object
(Gen_Unit
)) then
3822 Set_Is_Instantiated
(Renamed_Object
(Gen_Unit
));
3823 Generate_Reference
(Renamed_Object
(Gen_Unit
), N
);
3827 if Nkind
(Gen_Id
) = N_Identifier
3828 and then Chars
(Gen_Unit
) = Chars
(Defining_Entity
(N
))
3831 ("& is hidden within declaration of instance", Gen_Id
, Gen_Unit
);
3833 elsif Nkind
(Gen_Id
) = N_Expanded_Name
3834 and then Is_Child_Unit
(Gen_Unit
)
3835 and then Nkind
(Prefix
(Gen_Id
)) = N_Identifier
3836 and then Chars
(Act_Decl_Id
) = Chars
(Prefix
(Gen_Id
))
3839 ("& is hidden within declaration of instance ", Prefix
(Gen_Id
));
3842 Set_Entity
(Gen_Id
, Gen_Unit
);
3844 -- If generic is a renaming, get original generic unit
3846 if Present
(Renamed_Object
(Gen_Unit
))
3847 and then Ekind
(Renamed_Object
(Gen_Unit
)) = E_Generic_Package
3849 Gen_Unit
:= Renamed_Object
(Gen_Unit
);
3852 -- Verify that there are no circular instantiations
3854 if In_Open_Scopes
(Gen_Unit
) then
3855 Error_Msg_NE
("instantiation of & within itself", N
, Gen_Unit
);
3859 elsif Contains_Instance_Of
(Gen_Unit
, Current_Scope
, Gen_Id
) then
3860 Error_Msg_Node_2
:= Current_Scope
;
3862 ("circular Instantiation: & instantiated in &!", N
, Gen_Unit
);
3863 Circularity_Detected
:= True;
3868 -- If the context of the instance is subject to SPARK_Mode "off",
3869 -- set the global flag which signals Analyze_Pragma to ignore all
3870 -- SPARK_Mode pragmas within the instance.
3872 if SPARK_Mode
= Off
then
3873 Ignore_Pragma_SPARK_Mode
:= True;
3876 Gen_Decl
:= Unit_Declaration_Node
(Gen_Unit
);
3877 Gen_Spec
:= Specification
(Gen_Decl
);
3879 -- Initialize renamings map, for error checking, and the list that
3880 -- holds private entities whose views have changed between generic
3881 -- definition and instantiation. If this is the instance created to
3882 -- validate an actual package, the instantiation environment is that
3883 -- of the enclosing instance.
3885 Create_Instantiation_Source
(N
, Gen_Unit
, False, S_Adjustment
);
3887 -- Copy original generic tree, to produce text for instantiation
3891 (Original_Node
(Gen_Decl
), Empty
, Instantiating
=> True);
3893 Act_Spec
:= Specification
(Act_Tree
);
3895 -- If this is the instance created to validate an actual package,
3896 -- only the formals matter, do not examine the package spec itself.
3898 if Is_Actual_Pack
then
3899 Set_Visible_Declarations
(Act_Spec
, New_List
);
3900 Set_Private_Declarations
(Act_Spec
, New_List
);
3904 Analyze_Associations
3906 Formals
=> Generic_Formal_Declarations
(Act_Tree
),
3907 F_Copy
=> Generic_Formal_Declarations
(Gen_Decl
));
3909 Vis_Prims_List
:= Check_Hidden_Primitives
(Renaming_List
);
3911 Set_Instance_Env
(Gen_Unit
, Act_Decl_Id
);
3912 Set_Defining_Unit_Name
(Act_Spec
, Act_Decl_Name
);
3913 Set_Is_Generic_Instance
(Act_Decl_Id
);
3914 Set_Generic_Parent
(Act_Spec
, Gen_Unit
);
3916 -- References to the generic in its own declaration or its body are
3917 -- references to the instance. Add a renaming declaration for the
3918 -- generic unit itself. This declaration, as well as the renaming
3919 -- declarations for the generic formals, must remain private to the
3920 -- unit: the formals, because this is the language semantics, and
3921 -- the unit because its use is an artifact of the implementation.
3924 Make_Package_Renaming_Declaration
(Loc
,
3925 Defining_Unit_Name
=>
3926 Make_Defining_Identifier
(Loc
, Chars
(Gen_Unit
)),
3927 Name
=> New_Occurrence_Of
(Act_Decl_Id
, Loc
));
3929 Append
(Unit_Renaming
, Renaming_List
);
3931 -- The renaming declarations are the first local declarations of the
3934 if Is_Non_Empty_List
(Visible_Declarations
(Act_Spec
)) then
3936 (First
(Visible_Declarations
(Act_Spec
)), Renaming_List
);
3938 Set_Visible_Declarations
(Act_Spec
, Renaming_List
);
3941 Act_Decl
:= Make_Package_Declaration
(Loc
, Specification
=> Act_Spec
);
3943 -- Propagate the aspect specifications from the package declaration
3944 -- template to the instantiated version of the package declaration.
3946 if Has_Aspects
(Act_Tree
) then
3947 Set_Aspect_Specifications
(Act_Decl
,
3948 New_Copy_List_Tree
(Aspect_Specifications
(Act_Tree
)));
3951 -- The generic may have a generated Default_Storage_Pool aspect,
3952 -- set at the point of generic declaration. If the instance has
3953 -- that aspect, it overrides the one inherited from the generic.
3955 if Has_Aspects
(Gen_Spec
) then
3956 if No
(Aspect_Specifications
(N
)) then
3957 Set_Aspect_Specifications
(N
,
3959 (Aspect_Specifications
(Gen_Spec
))));
3963 ASN1
, ASN2
: Node_Id
;
3966 ASN1
:= First
(Aspect_Specifications
(N
));
3967 while Present
(ASN1
) loop
3968 if Chars
(Identifier
(ASN1
))
3969 = Name_Default_Storage_Pool
3971 -- If generic carries a default storage pool, remove
3972 -- it in favor of the instance one.
3974 ASN2
:= First
(Aspect_Specifications
(Gen_Spec
));
3975 while Present
(ASN2
) loop
3976 if Chars
(Identifier
(ASN2
)) =
3977 Name_Default_Storage_Pool
3990 Prepend_List_To
(Aspect_Specifications
(N
),
3992 (Aspect_Specifications
(Gen_Spec
))));
3997 -- Save the instantiation node, for subsequent instantiation of the
3998 -- body, if there is one and we are generating code for the current
3999 -- unit. Mark unit as having a body (avoids premature error message).
4001 -- We instantiate the body if we are generating code, if we are
4002 -- generating cross-reference information, or if we are building
4003 -- trees for ASIS use or GNATprove use.
4006 Enclosing_Body_Present
: Boolean := False;
4007 -- If the generic unit is not a compilation unit, then a body may
4008 -- be present in its parent even if none is required. We create a
4009 -- tentative pending instantiation for the body, which will be
4010 -- discarded if none is actually present.
4015 if Scope
(Gen_Unit
) /= Standard_Standard
4016 and then not Is_Child_Unit
(Gen_Unit
)
4018 Scop
:= Scope
(Gen_Unit
);
4020 while Present
(Scop
)
4021 and then Scop
/= Standard_Standard
4023 if Unit_Requires_Body
(Scop
) then
4024 Enclosing_Body_Present
:= True;
4027 elsif In_Open_Scopes
(Scop
)
4028 and then In_Package_Body
(Scop
)
4030 Enclosing_Body_Present
:= True;
4034 exit when Is_Compilation_Unit
(Scop
);
4035 Scop
:= Scope
(Scop
);
4039 -- If front-end inlining is enabled, and this is a unit for which
4040 -- code will be generated, we instantiate the body at once.
4042 -- This is done if the instance is not the main unit, and if the
4043 -- generic is not a child unit of another generic, to avoid scope
4044 -- problems and the reinstallation of parent instances.
4047 and then (not Is_Child_Unit
(Gen_Unit
)
4048 or else not Is_Generic_Unit
(Scope
(Gen_Unit
)))
4049 and then Might_Inline_Subp
4050 and then not Is_Actual_Pack
4052 if not Back_End_Inlining
4053 and then Front_End_Inlining
4054 and then (Is_In_Main_Unit
(N
)
4055 or else In_Main_Context
(Current_Scope
))
4056 and then Nkind
(Parent
(N
)) /= N_Compilation_Unit
4060 -- In configurable_run_time mode we force the inlining of
4061 -- predefined subprograms marked Inline_Always, to minimize
4062 -- the use of the run-time library.
4064 elsif Is_Predefined_File_Name
4065 (Unit_File_Name
(Get_Source_Unit
(Gen_Decl
)))
4066 and then Configurable_Run_Time_Mode
4067 and then Nkind
(Parent
(N
)) /= N_Compilation_Unit
4072 -- If the current scope is itself an instance within a child
4073 -- unit, there will be duplications in the scope stack, and the
4074 -- unstacking mechanism in Inline_Instance_Body will fail.
4075 -- This loses some rare cases of optimization, and might be
4076 -- improved some day, if we can find a proper abstraction for
4077 -- "the complete compilation context" that can be saved and
4080 if Is_Generic_Instance
(Current_Scope
) then
4082 Curr_Unit
: constant Entity_Id
:=
4083 Cunit_Entity
(Current_Sem_Unit
);
4085 if Curr_Unit
/= Current_Scope
4086 and then Is_Child_Unit
(Curr_Unit
)
4088 Inline_Now
:= False;
4095 (Unit_Requires_Body
(Gen_Unit
)
4096 or else Enclosing_Body_Present
4097 or else Present
(Corresponding_Body
(Gen_Decl
)))
4098 and then (Is_In_Main_Unit
(N
) or else Might_Inline_Subp
)
4099 and then not Is_Actual_Pack
4100 and then not Inline_Now
4101 and then (Operating_Mode
= Generate_Code
4103 -- Need comment for this check ???
4105 or else (Operating_Mode
= Check_Semantics
4106 and then (ASIS_Mode
or GNATprove_Mode
)));
4108 -- If front_end_inlining is enabled, do not instantiate body if
4109 -- within a generic context.
4111 if (Front_End_Inlining
and then not Expander_Active
)
4112 or else Is_Generic_Unit
(Cunit_Entity
(Main_Unit
))
4114 Needs_Body
:= False;
4117 -- If the current context is generic, and the package being
4118 -- instantiated is declared within a formal package, there is no
4119 -- body to instantiate until the enclosing generic is instantiated
4120 -- and there is an actual for the formal package. If the formal
4121 -- package has parameters, we build a regular package instance for
4122 -- it, that precedes the original formal package declaration.
4124 if In_Open_Scopes
(Scope
(Scope
(Gen_Unit
))) then
4126 Decl
: constant Node_Id
:=
4128 (Unit_Declaration_Node
(Scope
(Gen_Unit
)));
4130 if Nkind
(Decl
) = N_Formal_Package_Declaration
4131 or else (Nkind
(Decl
) = N_Package_Declaration
4132 and then Is_List_Member
(Decl
)
4133 and then Present
(Next
(Decl
))
4135 Nkind
(Next
(Decl
)) =
4136 N_Formal_Package_Declaration
)
4138 Needs_Body
:= False;
4144 -- For RCI unit calling stubs, we omit the instance body if the
4145 -- instance is the RCI library unit itself.
4147 -- However there is a special case for nested instances: in this case
4148 -- we do generate the instance body, as it might be required, e.g.
4149 -- because it provides stream attributes for some type used in the
4150 -- profile of a remote subprogram. This is consistent with 12.3(12),
4151 -- which indicates that the instance body occurs at the place of the
4152 -- instantiation, and thus is part of the RCI declaration, which is
4153 -- present on all client partitions (this is E.2.3(18)).
4155 -- Note that AI12-0002 may make it illegal at some point to have
4156 -- stream attributes defined in an RCI unit, in which case this
4157 -- special case will become unnecessary. In the meantime, there
4158 -- is known application code in production that depends on this
4159 -- being possible, so we definitely cannot eliminate the body in
4160 -- the case of nested instances for the time being.
4162 -- When we generate a nested instance body, calling stubs for any
4163 -- relevant subprogram will be be inserted immediately after the
4164 -- subprogram declarations, and will take precedence over the
4165 -- subsequent (original) body. (The stub and original body will be
4166 -- complete homographs, but this is permitted in an instance).
4167 -- (Could we do better and remove the original body???)
4169 if Distribution_Stub_Mode
= Generate_Caller_Stub_Body
4170 and then Comes_From_Source
(N
)
4171 and then Nkind
(Parent
(N
)) = N_Compilation_Unit
4173 Needs_Body
:= False;
4178 -- Here is a defence against a ludicrous number of instantiations
4179 -- caused by a circular set of instantiation attempts.
4181 if Pending_Instantiations
.Last
> Maximum_Instantiations
then
4182 Error_Msg_Uint_1
:= UI_From_Int
(Maximum_Instantiations
);
4183 Error_Msg_N
("too many instantiations, exceeds max of^", N
);
4184 Error_Msg_N
("\limit can be changed using -gnateinn switch", N
);
4185 raise Unrecoverable_Error
;
4188 -- Indicate that the enclosing scopes contain an instantiation,
4189 -- and that cleanup actions should be delayed until after the
4190 -- instance body is expanded.
4192 Check_Forward_Instantiation
(Gen_Decl
);
4193 if Nkind
(N
) = N_Package_Instantiation
then
4195 Enclosing_Master
: Entity_Id
;
4198 -- Loop to search enclosing masters
4200 Enclosing_Master
:= Current_Scope
;
4201 Scope_Loop
: while Enclosing_Master
/= Standard_Standard
loop
4202 if Ekind
(Enclosing_Master
) = E_Package
then
4203 if Is_Compilation_Unit
(Enclosing_Master
) then
4204 if In_Package_Body
(Enclosing_Master
) then
4206 (Body_Entity
(Enclosing_Master
));
4215 Enclosing_Master
:= Scope
(Enclosing_Master
);
4218 elsif Is_Generic_Unit
(Enclosing_Master
)
4219 or else Ekind
(Enclosing_Master
) = E_Void
4221 -- Cleanup actions will eventually be performed on the
4222 -- enclosing subprogram or package instance, if any.
4223 -- Enclosing scope is void in the formal part of a
4224 -- generic subprogram.
4229 if Ekind
(Enclosing_Master
) = E_Entry
4231 Ekind
(Scope
(Enclosing_Master
)) = E_Protected_Type
4233 if not Expander_Active
then
4237 Protected_Body_Subprogram
(Enclosing_Master
);
4241 Set_Delay_Cleanups
(Enclosing_Master
);
4243 while Ekind
(Enclosing_Master
) = E_Block
loop
4244 Enclosing_Master
:= Scope
(Enclosing_Master
);
4247 if Is_Subprogram
(Enclosing_Master
) then
4248 Delay_Descriptors
(Enclosing_Master
);
4250 elsif Is_Task_Type
(Enclosing_Master
) then
4252 TBP
: constant Node_Id
:=
4253 Get_Task_Body_Procedure
4256 if Present
(TBP
) then
4257 Delay_Descriptors
(TBP
);
4258 Set_Delay_Cleanups
(TBP
);
4265 end loop Scope_Loop
;
4268 -- Make entry in table
4270 Pending_Instantiations
.Append
4272 Act_Decl
=> Act_Decl
,
4273 Expander_Status
=> Expander_Active
,
4274 Current_Sem_Unit
=> Current_Sem_Unit
,
4275 Scope_Suppress
=> Scope_Suppress
,
4276 Local_Suppress_Stack_Top
=> Local_Suppress_Stack_Top
,
4277 Version
=> Ada_Version
,
4278 Version_Pragma
=> Ada_Version_Pragma
,
4279 Warnings
=> Save_Warnings
,
4280 SPARK_Mode
=> SPARK_Mode
,
4281 SPARK_Mode_Pragma
=> SPARK_Mode_Pragma
));
4285 Set_Categorization_From_Pragmas
(Act_Decl
);
4287 if Parent_Installed
then
4291 Set_Instance_Spec
(N
, Act_Decl
);
4293 -- If not a compilation unit, insert the package declaration before
4294 -- the original instantiation node.
4296 if Nkind
(Parent
(N
)) /= N_Compilation_Unit
then
4297 Mark_Rewrite_Insertion
(Act_Decl
);
4298 Insert_Before
(N
, Act_Decl
);
4300 if Has_Aspects
(N
) then
4301 Analyze_Aspect_Specifications
(N
, Act_Decl_Id
);
4303 -- The pragma created for a Default_Storage_Pool aspect must
4304 -- appear ahead of the declarations in the instance spec.
4305 -- Analysis has placed it after the instance node, so remove
4306 -- it and reinsert it properly now.
4309 ASN
: constant Node_Id
:= First
(Aspect_Specifications
(N
));
4310 A_Name
: constant Name_Id
:= Chars
(Identifier
(ASN
));
4314 if A_Name
= Name_Default_Storage_Pool
then
4315 if No
(Visible_Declarations
(Act_Spec
)) then
4316 Set_Visible_Declarations
(Act_Spec
, New_List
);
4320 while Present
(Decl
) loop
4321 if Nkind
(Decl
) = N_Pragma
then
4323 Prepend
(Decl
, Visible_Declarations
(Act_Spec
));
4335 -- For an instantiation that is a compilation unit, place
4336 -- declaration on current node so context is complete for analysis
4337 -- (including nested instantiations). If this is the main unit,
4338 -- the declaration eventually replaces the instantiation node.
4339 -- If the instance body is created later, it replaces the
4340 -- instance node, and the declaration is attached to it
4341 -- (see Build_Instance_Compilation_Unit_Nodes).
4344 if Cunit_Entity
(Current_Sem_Unit
) = Defining_Entity
(N
) then
4346 -- The entity for the current unit is the newly created one,
4347 -- and all semantic information is attached to it.
4349 Set_Cunit_Entity
(Current_Sem_Unit
, Act_Decl_Id
);
4351 -- If this is the main unit, replace the main entity as well
4353 if Current_Sem_Unit
= Main_Unit
then
4354 Main_Unit_Entity
:= Act_Decl_Id
;
4358 Set_Unit
(Parent
(N
), Act_Decl
);
4359 Set_Parent_Spec
(Act_Decl
, Parent_Spec
(N
));
4360 Set_Package_Instantiation
(Act_Decl_Id
, N
);
4362 -- Process aspect specifications of the instance node, if any, to
4363 -- take into account categorization pragmas before analyzing the
4366 if Has_Aspects
(N
) then
4367 Analyze_Aspect_Specifications
(N
, Act_Decl_Id
);
4371 Set_Unit
(Parent
(N
), N
);
4372 Set_Body_Required
(Parent
(N
), False);
4374 -- We never need elaboration checks on instantiations, since by
4375 -- definition, the body instantiation is elaborated at the same
4376 -- time as the spec instantiation.
4378 Set_Suppress_Elaboration_Warnings
(Act_Decl_Id
);
4379 Set_Kill_Elaboration_Checks
(Act_Decl_Id
);
4382 Check_Elab_Instantiation
(N
);
4384 if ABE_Is_Certain
(N
) and then Needs_Body
then
4385 Pending_Instantiations
.Decrement_Last
;
4388 Check_Hidden_Child_Unit
(N
, Gen_Unit
, Act_Decl_Id
);
4390 Set_First_Private_Entity
(Defining_Unit_Name
(Unit_Renaming
),
4391 First_Private_Entity
(Act_Decl_Id
));
4393 -- If the instantiation will receive a body, the unit will be
4394 -- transformed into a package body, and receive its own elaboration
4395 -- entity. Otherwise, the nature of the unit is now a package
4398 if Nkind
(Parent
(N
)) = N_Compilation_Unit
4399 and then not Needs_Body
4401 Rewrite
(N
, Act_Decl
);
4404 if Present
(Corresponding_Body
(Gen_Decl
))
4405 or else Unit_Requires_Body
(Gen_Unit
)
4407 Set_Has_Completion
(Act_Decl_Id
);
4410 Check_Formal_Packages
(Act_Decl_Id
);
4412 Restore_Hidden_Primitives
(Vis_Prims_List
);
4413 Restore_Private_Views
(Act_Decl_Id
);
4415 Inherit_Context
(Gen_Decl
, N
);
4417 if Parent_Installed
then
4422 Env_Installed
:= False;
4425 Validate_Categorization_Dependency
(N
, Act_Decl_Id
);
4427 -- There used to be a check here to prevent instantiations in local
4428 -- contexts if the No_Local_Allocators restriction was active. This
4429 -- check was removed by a binding interpretation in AI-95-00130/07,
4430 -- but we retain the code for documentation purposes.
4432 -- if Ekind (Act_Decl_Id) /= E_Void
4433 -- and then not Is_Library_Level_Entity (Act_Decl_Id)
4435 -- Check_Restriction (No_Local_Allocators, N);
4439 Inline_Instance_Body
(N
, Gen_Unit
, Act_Decl
);
4442 -- The following is a tree patch for ASIS: ASIS needs separate nodes to
4443 -- be used as defining identifiers for a formal package and for the
4444 -- corresponding expanded package.
4446 if Nkind
(N
) = N_Formal_Package_Declaration
then
4447 Act_Decl_Id
:= New_Copy
(Defining_Entity
(N
));
4448 Set_Comes_From_Source
(Act_Decl_Id
, True);
4449 Set_Is_Generic_Instance
(Act_Decl_Id
, False);
4450 Set_Defining_Identifier
(N
, Act_Decl_Id
);
4453 Ignore_Pragma_SPARK_Mode
:= Save_IPSM
;
4454 SPARK_Mode
:= Save_SM
;
4455 SPARK_Mode_Pragma
:= Save_SMP
;
4456 Style_Check
:= Save_Style_Check
;
4458 -- Check that if N is an instantiation of System.Dim_Float_IO or
4459 -- System.Dim_Integer_IO, the formal type has a dimension system.
4461 if Nkind
(N
) = N_Package_Instantiation
4462 and then Is_Dim_IO_Package_Instantiation
(N
)
4465 Assoc
: constant Node_Id
:= First
(Generic_Associations
(N
));
4467 if not Has_Dimension_System
4468 (Etype
(Explicit_Generic_Actual_Parameter
(Assoc
)))
4470 Error_Msg_N
("type with a dimension system expected", Assoc
);
4476 if Has_Aspects
(N
) and then Nkind
(Parent
(N
)) /= N_Compilation_Unit
then
4477 Analyze_Aspect_Specifications
(N
, Act_Decl_Id
);
4481 when Instantiation_Error
=>
4482 if Parent_Installed
then
4486 if Env_Installed
then
4490 Ignore_Pragma_SPARK_Mode
:= Save_IPSM
;
4491 SPARK_Mode
:= Save_SM
;
4492 SPARK_Mode_Pragma
:= Save_SMP
;
4493 Style_Check
:= Save_Style_Check
;
4494 end Analyze_Package_Instantiation
;
4496 --------------------------
4497 -- Inline_Instance_Body --
4498 --------------------------
4500 procedure Inline_Instance_Body
4502 Gen_Unit
: Entity_Id
;
4505 Curr_Comp
: constant Node_Id
:= Cunit
(Current_Sem_Unit
);
4506 Curr_Unit
: constant Entity_Id
:= Cunit_Entity
(Current_Sem_Unit
);
4507 Gen_Comp
: constant Entity_Id
:=
4508 Cunit_Entity
(Get_Source_Unit
(Gen_Unit
));
4510 Save_SM
: constant SPARK_Mode_Type
:= SPARK_Mode
;
4511 Save_SMP
: constant Node_Id
:= SPARK_Mode_Pragma
;
4512 -- Save all SPARK_Mode-related attributes as removing enclosing scopes
4513 -- to provide a clean environment for analysis of the inlined body will
4514 -- eliminate any previously set SPARK_Mode.
4516 Scope_Stack_Depth
: constant Int
:=
4517 Scope_Stack
.Last
- Scope_Stack
.First
+ 1;
4519 Use_Clauses
: array (1 .. Scope_Stack_Depth
) of Node_Id
;
4520 Instances
: array (1 .. Scope_Stack_Depth
) of Entity_Id
;
4521 Inner_Scopes
: array (1 .. Scope_Stack_Depth
) of Entity_Id
;
4522 Curr_Scope
: Entity_Id
:= Empty
;
4524 Num_Inner
: Int
:= 0;
4525 Num_Scopes
: Int
:= 0;
4526 N_Instances
: Int
:= 0;
4527 Removed
: Boolean := False;
4532 -- Case of generic unit defined in another unit. We must remove the
4533 -- complete context of the current unit to install that of the generic.
4535 if Gen_Comp
/= Cunit_Entity
(Current_Sem_Unit
) then
4537 -- Add some comments for the following two loops ???
4540 while Present
(S
) and then S
/= Standard_Standard
loop
4542 Num_Scopes
:= Num_Scopes
+ 1;
4544 Use_Clauses
(Num_Scopes
) :=
4546 (Scope_Stack
.Last
- Num_Scopes
+ 1).
4548 End_Use_Clauses
(Use_Clauses
(Num_Scopes
));
4550 exit when Scope_Stack
.Last
- Num_Scopes
+ 1 = Scope_Stack
.First
4551 or else Scope_Stack
.Table
4552 (Scope_Stack
.Last
- Num_Scopes
).Entity
= Scope
(S
);
4555 exit when Is_Generic_Instance
(S
)
4556 and then (In_Package_Body
(S
)
4557 or else Ekind
(S
) = E_Procedure
4558 or else Ekind
(S
) = E_Function
);
4562 Vis
:= Is_Immediately_Visible
(Gen_Comp
);
4564 -- Find and save all enclosing instances
4569 and then S
/= Standard_Standard
4571 if Is_Generic_Instance
(S
) then
4572 N_Instances
:= N_Instances
+ 1;
4573 Instances
(N_Instances
) := S
;
4575 exit when In_Package_Body
(S
);
4581 -- Remove context of current compilation unit, unless we are within a
4582 -- nested package instantiation, in which case the context has been
4583 -- removed previously.
4585 -- If current scope is the body of a child unit, remove context of
4586 -- spec as well. If an enclosing scope is an instance body, the
4587 -- context has already been removed, but the entities in the body
4588 -- must be made invisible as well.
4593 and then S
/= Standard_Standard
4595 if Is_Generic_Instance
(S
)
4596 and then (In_Package_Body
(S
)
4597 or else Ekind_In
(S
, E_Procedure
, E_Function
))
4599 -- We still have to remove the entities of the enclosing
4600 -- instance from direct visibility.
4605 E
:= First_Entity
(S
);
4606 while Present
(E
) loop
4607 Set_Is_Immediately_Visible
(E
, False);
4616 or else (Ekind
(Curr_Unit
) = E_Package_Body
4617 and then S
= Spec_Entity
(Curr_Unit
))
4618 or else (Ekind
(Curr_Unit
) = E_Subprogram_Body
4621 (Unit_Declaration_Node
(Curr_Unit
)))
4625 -- Remove entities in current scopes from visibility, so that
4626 -- instance body is compiled in a clean environment.
4628 List
:= Save_Scope_Stack
(Handle_Use
=> False);
4630 if Is_Child_Unit
(S
) then
4632 -- Remove child unit from stack, as well as inner scopes.
4633 -- Removing the context of a child unit removes parent units
4636 while Current_Scope
/= S
loop
4637 Num_Inner
:= Num_Inner
+ 1;
4638 Inner_Scopes
(Num_Inner
) := Current_Scope
;
4643 Remove_Context
(Curr_Comp
);
4647 Remove_Context
(Curr_Comp
);
4650 if Ekind
(Curr_Unit
) = E_Package_Body
then
4651 Remove_Context
(Library_Unit
(Curr_Comp
));
4658 pragma Assert
(Num_Inner
< Num_Scopes
);
4660 -- The inlined package body must be analyzed with the SPARK_Mode of
4661 -- the enclosing context, otherwise the body may cause bogus errors
4662 -- if a configuration SPARK_Mode pragma in in effect.
4664 Push_Scope
(Standard_Standard
);
4665 Scope_Stack
.Table
(Scope_Stack
.Last
).Is_Active_Stack_Base
:= True;
4666 Instantiate_Package_Body
4669 Act_Decl
=> Act_Decl
,
4670 Expander_Status
=> Expander_Active
,
4671 Current_Sem_Unit
=> Current_Sem_Unit
,
4672 Scope_Suppress
=> Scope_Suppress
,
4673 Local_Suppress_Stack_Top
=> Local_Suppress_Stack_Top
,
4674 Version
=> Ada_Version
,
4675 Version_Pragma
=> Ada_Version_Pragma
,
4676 Warnings
=> Save_Warnings
,
4677 SPARK_Mode
=> Save_SM
,
4678 SPARK_Mode_Pragma
=> Save_SMP
)),
4679 Inlined_Body
=> True);
4685 Set_Is_Immediately_Visible
(Gen_Comp
, Vis
);
4687 -- Reset Generic_Instance flag so that use clauses can be installed
4688 -- in the proper order. (See Use_One_Package for effect of enclosing
4689 -- instances on processing of use clauses).
4691 for J
in 1 .. N_Instances
loop
4692 Set_Is_Generic_Instance
(Instances
(J
), False);
4696 Install_Context
(Curr_Comp
);
4698 if Present
(Curr_Scope
)
4699 and then Is_Child_Unit
(Curr_Scope
)
4701 Push_Scope
(Curr_Scope
);
4702 Set_Is_Immediately_Visible
(Curr_Scope
);
4704 -- Finally, restore inner scopes as well
4706 for J
in reverse 1 .. Num_Inner
loop
4707 Push_Scope
(Inner_Scopes
(J
));
4711 Restore_Scope_Stack
(List
, Handle_Use
=> False);
4713 if Present
(Curr_Scope
)
4715 (In_Private_Part
(Curr_Scope
)
4716 or else In_Package_Body
(Curr_Scope
))
4718 -- Install private declaration of ancestor units, which are
4719 -- currently available. Restore_Scope_Stack and Install_Context
4720 -- only install the visible part of parents.
4725 Par
:= Scope
(Curr_Scope
);
4726 while (Present
(Par
))
4727 and then Par
/= Standard_Standard
4729 Install_Private_Declarations
(Par
);
4736 -- Restore use clauses. For a child unit, use clauses in the parents
4737 -- are restored when installing the context, so only those in inner
4738 -- scopes (and those local to the child unit itself) need to be
4739 -- installed explicitly.
4741 if Is_Child_Unit
(Curr_Unit
)
4744 for J
in reverse 1 .. Num_Inner
+ 1 loop
4745 Scope_Stack
.Table
(Scope_Stack
.Last
- J
+ 1).First_Use_Clause
:=
4747 Install_Use_Clauses
(Use_Clauses
(J
));
4751 for J
in reverse 1 .. Num_Scopes
loop
4752 Scope_Stack
.Table
(Scope_Stack
.Last
- J
+ 1).First_Use_Clause
:=
4754 Install_Use_Clauses
(Use_Clauses
(J
));
4758 -- Restore status of instances. If one of them is a body, make its
4759 -- local entities visible again.
4766 for J
in 1 .. N_Instances
loop
4767 Inst
:= Instances
(J
);
4768 Set_Is_Generic_Instance
(Inst
, True);
4770 if In_Package_Body
(Inst
)
4771 or else Ekind_In
(S
, E_Procedure
, E_Function
)
4773 E
:= First_Entity
(Instances
(J
));
4774 while Present
(E
) loop
4775 Set_Is_Immediately_Visible
(E
);
4782 -- If generic unit is in current unit, current context is correct. Note
4783 -- that the context is guaranteed to carry the correct SPARK_Mode as no
4784 -- enclosing scopes were removed.
4787 Instantiate_Package_Body
4790 Act_Decl
=> Act_Decl
,
4791 Expander_Status
=> Expander_Active
,
4792 Current_Sem_Unit
=> Current_Sem_Unit
,
4793 Scope_Suppress
=> Scope_Suppress
,
4794 Local_Suppress_Stack_Top
=> Local_Suppress_Stack_Top
,
4795 Version
=> Ada_Version
,
4796 Version_Pragma
=> Ada_Version_Pragma
,
4797 Warnings
=> Save_Warnings
,
4798 SPARK_Mode
=> SPARK_Mode
,
4799 SPARK_Mode_Pragma
=> SPARK_Mode_Pragma
)),
4800 Inlined_Body
=> True);
4802 end Inline_Instance_Body
;
4804 -------------------------------------
4805 -- Analyze_Procedure_Instantiation --
4806 -------------------------------------
4808 procedure Analyze_Procedure_Instantiation
(N
: Node_Id
) is
4810 Analyze_Subprogram_Instantiation
(N
, E_Procedure
);
4811 end Analyze_Procedure_Instantiation
;
4813 -----------------------------------
4814 -- Need_Subprogram_Instance_Body --
4815 -----------------------------------
4817 function Need_Subprogram_Instance_Body
4819 Subp
: Entity_Id
) return Boolean
4822 -- Must be inlined (or inlined renaming)
4824 if (Is_In_Main_Unit
(N
)
4825 or else Is_Inlined
(Subp
)
4826 or else Is_Inlined
(Alias
(Subp
)))
4828 -- Must be generating code or analyzing code in ASIS/GNATprove mode
4830 and then (Operating_Mode
= Generate_Code
4831 or else (Operating_Mode
= Check_Semantics
4832 and then (ASIS_Mode
or GNATprove_Mode
)))
4834 -- The body is needed when generating code (full expansion), in ASIS
4835 -- mode for other tools, and in GNATprove mode (special expansion) for
4836 -- formal verification of the body itself.
4838 and then (Expander_Active
or ASIS_Mode
or GNATprove_Mode
)
4840 -- No point in inlining if ABE is inevitable
4842 and then not ABE_Is_Certain
(N
)
4844 -- Or if subprogram is eliminated
4846 and then not Is_Eliminated
(Subp
)
4848 Pending_Instantiations
.Append
4850 Act_Decl
=> Unit_Declaration_Node
(Subp
),
4851 Expander_Status
=> Expander_Active
,
4852 Current_Sem_Unit
=> Current_Sem_Unit
,
4853 Scope_Suppress
=> Scope_Suppress
,
4854 Local_Suppress_Stack_Top
=> Local_Suppress_Stack_Top
,
4855 Version
=> Ada_Version
,
4856 Version_Pragma
=> Ada_Version_Pragma
,
4857 Warnings
=> Save_Warnings
,
4858 SPARK_Mode
=> SPARK_Mode
,
4859 SPARK_Mode_Pragma
=> SPARK_Mode_Pragma
));
4862 -- Here if not inlined, or we ignore the inlining
4867 end Need_Subprogram_Instance_Body
;
4869 --------------------------------------
4870 -- Analyze_Subprogram_Instantiation --
4871 --------------------------------------
4873 procedure Analyze_Subprogram_Instantiation
4877 Loc
: constant Source_Ptr
:= Sloc
(N
);
4878 Gen_Id
: constant Node_Id
:= Name
(N
);
4880 Anon_Id
: constant Entity_Id
:=
4881 Make_Defining_Identifier
(Sloc
(Defining_Entity
(N
)),
4882 Chars
=> New_External_Name
4883 (Chars
(Defining_Entity
(N
)), 'R'));
4885 Act_Decl_Id
: Entity_Id
;
4890 Env_Installed
: Boolean := False;
4891 Gen_Unit
: Entity_Id
;
4893 Pack_Id
: Entity_Id
;
4894 Parent_Installed
: Boolean := False;
4895 Renaming_List
: List_Id
;
4897 procedure Analyze_Instance_And_Renamings
;
4898 -- The instance must be analyzed in a context that includes the mappings
4899 -- of generic parameters into actuals. We create a package declaration
4900 -- for this purpose, and a subprogram with an internal name within the
4901 -- package. The subprogram instance is simply an alias for the internal
4902 -- subprogram, declared in the current scope.
4904 ------------------------------------
4905 -- Analyze_Instance_And_Renamings --
4906 ------------------------------------
4908 procedure Analyze_Instance_And_Renamings
is
4909 Def_Ent
: constant Entity_Id
:= Defining_Entity
(N
);
4910 Pack_Decl
: Node_Id
;
4913 if Nkind
(Parent
(N
)) = N_Compilation_Unit
then
4915 -- For the case of a compilation unit, the container package has
4916 -- the same name as the instantiation, to insure that the binder
4917 -- calls the elaboration procedure with the right name. Copy the
4918 -- entity of the instance, which may have compilation level flags
4919 -- (e.g. Is_Child_Unit) set.
4921 Pack_Id
:= New_Copy
(Def_Ent
);
4924 -- Otherwise we use the name of the instantiation concatenated
4925 -- with its source position to ensure uniqueness if there are
4926 -- several instantiations with the same name.
4929 Make_Defining_Identifier
(Loc
,
4930 Chars
=> New_External_Name
4931 (Related_Id
=> Chars
(Def_Ent
),
4933 Suffix_Index
=> Source_Offset
(Sloc
(Def_Ent
))));
4936 Pack_Decl
:= Make_Package_Declaration
(Loc
,
4937 Specification
=> Make_Package_Specification
(Loc
,
4938 Defining_Unit_Name
=> Pack_Id
,
4939 Visible_Declarations
=> Renaming_List
,
4940 End_Label
=> Empty
));
4942 Set_Instance_Spec
(N
, Pack_Decl
);
4943 Set_Is_Generic_Instance
(Pack_Id
);
4944 Set_Debug_Info_Needed
(Pack_Id
);
4946 -- Case of not a compilation unit
4948 if Nkind
(Parent
(N
)) /= N_Compilation_Unit
then
4949 Mark_Rewrite_Insertion
(Pack_Decl
);
4950 Insert_Before
(N
, Pack_Decl
);
4951 Set_Has_Completion
(Pack_Id
);
4953 -- Case of an instantiation that is a compilation unit
4955 -- Place declaration on current node so context is complete for
4956 -- analysis (including nested instantiations), and for use in a
4957 -- context_clause (see Analyze_With_Clause).
4960 Set_Unit
(Parent
(N
), Pack_Decl
);
4961 Set_Parent_Spec
(Pack_Decl
, Parent_Spec
(N
));
4964 Analyze
(Pack_Decl
);
4965 Check_Formal_Packages
(Pack_Id
);
4966 Set_Is_Generic_Instance
(Pack_Id
, False);
4968 -- Why do we clear Is_Generic_Instance??? We set it 20 lines
4971 -- Body of the enclosing package is supplied when instantiating the
4972 -- subprogram body, after semantic analysis is completed.
4974 if Nkind
(Parent
(N
)) = N_Compilation_Unit
then
4976 -- Remove package itself from visibility, so it does not
4977 -- conflict with subprogram.
4979 Set_Name_Entity_Id
(Chars
(Pack_Id
), Homonym
(Pack_Id
));
4981 -- Set name and scope of internal subprogram so that the proper
4982 -- external name will be generated. The proper scope is the scope
4983 -- of the wrapper package. We need to generate debugging info for
4984 -- the internal subprogram, so set flag accordingly.
4986 Set_Chars
(Anon_Id
, Chars
(Defining_Entity
(N
)));
4987 Set_Scope
(Anon_Id
, Scope
(Pack_Id
));
4989 -- Mark wrapper package as referenced, to avoid spurious warnings
4990 -- if the instantiation appears in various with_ clauses of
4991 -- subunits of the main unit.
4993 Set_Referenced
(Pack_Id
);
4996 Set_Is_Generic_Instance
(Anon_Id
);
4997 Set_Debug_Info_Needed
(Anon_Id
);
4998 Act_Decl_Id
:= New_Copy
(Anon_Id
);
5000 Set_Parent
(Act_Decl_Id
, Parent
(Anon_Id
));
5001 Set_Chars
(Act_Decl_Id
, Chars
(Defining_Entity
(N
)));
5002 Set_Sloc
(Act_Decl_Id
, Sloc
(Defining_Entity
(N
)));
5003 Set_Comes_From_Source
(Act_Decl_Id
, True);
5005 -- The signature may involve types that are not frozen yet, but the
5006 -- subprogram will be frozen at the point the wrapper package is
5007 -- frozen, so it does not need its own freeze node. In fact, if one
5008 -- is created, it might conflict with the freezing actions from the
5011 Set_Has_Delayed_Freeze
(Anon_Id
, False);
5013 -- If the instance is a child unit, mark the Id accordingly. Mark
5014 -- the anonymous entity as well, which is the real subprogram and
5015 -- which is used when the instance appears in a context clause.
5016 -- Similarly, propagate the Is_Eliminated flag to handle properly
5017 -- nested eliminated subprograms.
5019 Set_Is_Child_Unit
(Act_Decl_Id
, Is_Child_Unit
(Defining_Entity
(N
)));
5020 Set_Is_Child_Unit
(Anon_Id
, Is_Child_Unit
(Defining_Entity
(N
)));
5021 New_Overloaded_Entity
(Act_Decl_Id
);
5022 Check_Eliminated
(Act_Decl_Id
);
5023 Set_Is_Eliminated
(Anon_Id
, Is_Eliminated
(Act_Decl_Id
));
5025 -- In compilation unit case, kill elaboration checks on the
5026 -- instantiation, since they are never needed -- the body is
5027 -- instantiated at the same point as the spec.
5029 if Nkind
(Parent
(N
)) = N_Compilation_Unit
then
5030 Set_Suppress_Elaboration_Warnings
(Act_Decl_Id
);
5031 Set_Kill_Elaboration_Checks
(Act_Decl_Id
);
5032 Set_Is_Compilation_Unit
(Anon_Id
);
5034 Set_Cunit_Entity
(Current_Sem_Unit
, Pack_Id
);
5037 -- The instance is not a freezing point for the new subprogram
5039 Set_Is_Frozen
(Act_Decl_Id
, False);
5041 if Nkind
(Defining_Entity
(N
)) = N_Defining_Operator_Symbol
then
5042 Valid_Operator_Definition
(Act_Decl_Id
);
5045 Set_Alias
(Act_Decl_Id
, Anon_Id
);
5046 Set_Parent
(Act_Decl_Id
, Parent
(Anon_Id
));
5047 Set_Has_Completion
(Act_Decl_Id
);
5048 Set_Related_Instance
(Pack_Id
, Act_Decl_Id
);
5050 if Nkind
(Parent
(N
)) = N_Compilation_Unit
then
5051 Set_Body_Required
(Parent
(N
), False);
5053 end Analyze_Instance_And_Renamings
;
5057 Save_IPSM
: constant Boolean := Ignore_Pragma_SPARK_Mode
;
5058 -- Save flag Ignore_Pragma_SPARK_Mode for restore on exit
5060 Save_SM
: constant SPARK_Mode_Type
:= SPARK_Mode
;
5061 Save_SMP
: constant Node_Id
:= SPARK_Mode_Pragma
;
5062 -- Save the SPARK_Mode-related data for restore on exit
5064 Vis_Prims_List
: Elist_Id
:= No_Elist
;
5065 -- List of primitives made temporarily visible in the instantiation
5066 -- to match the visibility of the formal type
5068 -- Start of processing for Analyze_Subprogram_Instantiation
5071 Check_SPARK_05_Restriction
("generic is not allowed", N
);
5073 -- Very first thing: check for special Text_IO unit in case we are
5074 -- instantiating one of the children of [[Wide_]Wide_]Text_IO. Of course
5075 -- such an instantiation is bogus (these are packages, not subprograms),
5076 -- but we get a better error message if we do this.
5078 Check_Text_IO_Special_Unit
(Gen_Id
);
5080 -- Make node global for error reporting
5082 Instantiation_Node
:= N
;
5084 -- For package instantiations we turn off style checks, because they
5085 -- will have been emitted in the generic. For subprogram instantiations
5086 -- we want to apply at least the check on overriding indicators so we
5087 -- do not modify the style check status.
5089 -- The renaming declarations for the actuals do not come from source and
5090 -- will not generate spurious warnings.
5092 Preanalyze_Actuals
(N
);
5095 Env_Installed
:= True;
5096 Check_Generic_Child_Unit
(Gen_Id
, Parent_Installed
);
5097 Gen_Unit
:= Entity
(Gen_Id
);
5099 Generate_Reference
(Gen_Unit
, Gen_Id
);
5101 if Nkind
(Gen_Id
) = N_Identifier
5102 and then Chars
(Gen_Unit
) = Chars
(Defining_Entity
(N
))
5105 ("& is hidden within declaration of instance", Gen_Id
, Gen_Unit
);
5108 if Etype
(Gen_Unit
) = Any_Type
then
5113 -- Verify that it is a generic subprogram of the right kind, and that
5114 -- it does not lead to a circular instantiation.
5116 if K
= E_Procedure
and then Ekind
(Gen_Unit
) /= E_Generic_Procedure
then
5118 ("& is not the name of a generic procedure", Gen_Id
, Gen_Unit
);
5120 elsif K
= E_Function
and then Ekind
(Gen_Unit
) /= E_Generic_Function
then
5122 ("& is not the name of a generic function", Gen_Id
, Gen_Unit
);
5124 elsif In_Open_Scopes
(Gen_Unit
) then
5125 Error_Msg_NE
("instantiation of & within itself", N
, Gen_Unit
);
5128 -- If the context of the instance is subject to SPARK_Mode "off",
5129 -- set the global flag which signals Analyze_Pragma to ignore all
5130 -- SPARK_Mode pragmas within the instance.
5132 if SPARK_Mode
= Off
then
5133 Ignore_Pragma_SPARK_Mode
:= True;
5136 Set_Entity
(Gen_Id
, Gen_Unit
);
5137 Set_Is_Instantiated
(Gen_Unit
);
5139 if In_Extended_Main_Source_Unit
(N
) then
5140 Generate_Reference
(Gen_Unit
, N
);
5143 -- If renaming, get original unit
5145 if Present
(Renamed_Object
(Gen_Unit
))
5146 and then Ekind_In
(Renamed_Object
(Gen_Unit
), E_Generic_Procedure
,
5149 Gen_Unit
:= Renamed_Object
(Gen_Unit
);
5150 Set_Is_Instantiated
(Gen_Unit
);
5151 Generate_Reference
(Gen_Unit
, N
);
5154 if Contains_Instance_Of
(Gen_Unit
, Current_Scope
, Gen_Id
) then
5155 Error_Msg_Node_2
:= Current_Scope
;
5157 ("circular Instantiation: & instantiated in &!", N
, Gen_Unit
);
5158 Circularity_Detected
:= True;
5159 Restore_Hidden_Primitives
(Vis_Prims_List
);
5163 Gen_Decl
:= Unit_Declaration_Node
(Gen_Unit
);
5165 -- Initialize renamings map, for error checking
5167 Generic_Renamings
.Set_Last
(0);
5168 Generic_Renamings_HTable
.Reset
;
5170 Create_Instantiation_Source
(N
, Gen_Unit
, False, S_Adjustment
);
5172 -- Copy original generic tree, to produce text for instantiation
5176 (Original_Node
(Gen_Decl
), Empty
, Instantiating
=> True);
5178 -- Inherit overriding indicator from instance node
5180 Act_Spec
:= Specification
(Act_Tree
);
5181 Set_Must_Override
(Act_Spec
, Must_Override
(N
));
5182 Set_Must_Not_Override
(Act_Spec
, Must_Not_Override
(N
));
5185 Analyze_Associations
5187 Formals
=> Generic_Formal_Declarations
(Act_Tree
),
5188 F_Copy
=> Generic_Formal_Declarations
(Gen_Decl
));
5190 Vis_Prims_List
:= Check_Hidden_Primitives
(Renaming_List
);
5192 -- The subprogram itself cannot contain a nested instance, so the
5193 -- current parent is left empty.
5195 Set_Instance_Env
(Gen_Unit
, Empty
);
5197 -- Build the subprogram declaration, which does not appear in the
5198 -- generic template, and give it a sloc consistent with that of the
5201 Set_Defining_Unit_Name
(Act_Spec
, Anon_Id
);
5202 Set_Generic_Parent
(Act_Spec
, Gen_Unit
);
5204 Make_Subprogram_Declaration
(Sloc
(Act_Spec
),
5205 Specification
=> Act_Spec
);
5207 -- The aspects have been copied previously, but they have to be
5208 -- linked explicitly to the new subprogram declaration. Explicit
5209 -- pre/postconditions on the instance are analyzed below, in a
5212 Move_Aspects
(Act_Tree
, To
=> Act_Decl
);
5213 Set_Categorization_From_Pragmas
(Act_Decl
);
5215 if Parent_Installed
then
5219 Append
(Act_Decl
, Renaming_List
);
5220 Analyze_Instance_And_Renamings
;
5222 -- If the generic is marked Import (Intrinsic), then so is the
5223 -- instance. This indicates that there is no body to instantiate. If
5224 -- generic is marked inline, so it the instance, and the anonymous
5225 -- subprogram it renames. If inlined, or else if inlining is enabled
5226 -- for the compilation, we generate the instance body even if it is
5227 -- not within the main unit.
5229 if Is_Intrinsic_Subprogram
(Gen_Unit
) then
5230 Set_Is_Intrinsic_Subprogram
(Anon_Id
);
5231 Set_Is_Intrinsic_Subprogram
(Act_Decl_Id
);
5233 if Chars
(Gen_Unit
) = Name_Unchecked_Conversion
then
5234 Validate_Unchecked_Conversion
(N
, Act_Decl_Id
);
5238 -- Inherit convention from generic unit. Intrinsic convention, as for
5239 -- an instance of unchecked conversion, is not inherited because an
5240 -- explicit Ada instance has been created.
5242 if Has_Convention_Pragma
(Gen_Unit
)
5243 and then Convention
(Gen_Unit
) /= Convention_Intrinsic
5245 Set_Convention
(Act_Decl_Id
, Convention
(Gen_Unit
));
5246 Set_Is_Exported
(Act_Decl_Id
, Is_Exported
(Gen_Unit
));
5249 Generate_Definition
(Act_Decl_Id
);
5250 -- Set_Contract (Anon_Id, Make_Contract (Sloc (Anon_Id)));
5252 Set_Contract
(Act_Decl_Id
, Make_Contract
(Sloc
(Act_Decl_Id
)));
5254 -- Inherit all inlining-related flags which apply to the generic in
5255 -- the subprogram and its declaration.
5257 Set_Is_Inlined
(Act_Decl_Id
, Is_Inlined
(Gen_Unit
));
5258 Set_Is_Inlined
(Anon_Id
, Is_Inlined
(Gen_Unit
));
5260 Set_Has_Pragma_Inline
(Act_Decl_Id
, Has_Pragma_Inline
(Gen_Unit
));
5261 Set_Has_Pragma_Inline
(Anon_Id
, Has_Pragma_Inline
(Gen_Unit
));
5263 Set_Has_Pragma_Inline_Always
5264 (Act_Decl_Id
, Has_Pragma_Inline_Always
(Gen_Unit
));
5265 Set_Has_Pragma_Inline_Always
5266 (Anon_Id
, Has_Pragma_Inline_Always
(Gen_Unit
));
5268 if not Is_Intrinsic_Subprogram
(Gen_Unit
) then
5269 Check_Elab_Instantiation
(N
);
5272 if Is_Dispatching_Operation
(Act_Decl_Id
)
5273 and then Ada_Version
>= Ada_2005
5279 Formal
:= First_Formal
(Act_Decl_Id
);
5280 while Present
(Formal
) loop
5281 if Ekind
(Etype
(Formal
)) = E_Anonymous_Access_Type
5282 and then Is_Controlling_Formal
(Formal
)
5283 and then not Can_Never_Be_Null
(Formal
)
5285 Error_Msg_NE
("access parameter& is controlling,",
5288 ("\corresponding parameter of & must be"
5289 & " explicitly null-excluding", N
, Gen_Id
);
5292 Next_Formal
(Formal
);
5297 Check_Hidden_Child_Unit
(N
, Gen_Unit
, Act_Decl_Id
);
5299 Validate_Categorization_Dependency
(N
, Act_Decl_Id
);
5301 if not Is_Intrinsic_Subprogram
(Act_Decl_Id
) then
5302 Inherit_Context
(Gen_Decl
, N
);
5304 Restore_Private_Views
(Pack_Id
, False);
5306 -- If the context requires a full instantiation, mark node for
5307 -- subsequent construction of the body.
5309 if Need_Subprogram_Instance_Body
(N
, Act_Decl_Id
) then
5310 Check_Forward_Instantiation
(Gen_Decl
);
5312 -- The wrapper package is always delayed, because it does not
5313 -- constitute a freeze point, but to insure that the freeze
5314 -- node is placed properly, it is created directly when
5315 -- instantiating the body (otherwise the freeze node might
5316 -- appear to early for nested instantiations).
5318 elsif Nkind
(Parent
(N
)) = N_Compilation_Unit
then
5320 -- For ASIS purposes, indicate that the wrapper package has
5321 -- replaced the instantiation node.
5323 Rewrite
(N
, Unit
(Parent
(N
)));
5324 Set_Unit
(Parent
(N
), N
);
5327 elsif Nkind
(Parent
(N
)) = N_Compilation_Unit
then
5329 -- Replace instance node for library-level instantiations of
5330 -- intrinsic subprograms, for ASIS use.
5332 Rewrite
(N
, Unit
(Parent
(N
)));
5333 Set_Unit
(Parent
(N
), N
);
5336 if Parent_Installed
then
5340 Restore_Hidden_Primitives
(Vis_Prims_List
);
5342 Env_Installed
:= False;
5343 Generic_Renamings
.Set_Last
(0);
5344 Generic_Renamings_HTable
.Reset
;
5346 Ignore_Pragma_SPARK_Mode
:= Save_IPSM
;
5347 SPARK_Mode
:= Save_SM
;
5348 SPARK_Mode_Pragma
:= Save_SMP
;
5352 if Has_Aspects
(N
) then
5353 Analyze_Aspect_Specifications
(N
, Act_Decl_Id
);
5357 when Instantiation_Error
=>
5358 if Parent_Installed
then
5362 if Env_Installed
then
5366 Ignore_Pragma_SPARK_Mode
:= Save_IPSM
;
5367 SPARK_Mode
:= Save_SM
;
5368 SPARK_Mode_Pragma
:= Save_SMP
;
5369 end Analyze_Subprogram_Instantiation
;
5371 -------------------------
5372 -- Get_Associated_Node --
5373 -------------------------
5375 function Get_Associated_Node
(N
: Node_Id
) return Node_Id
is
5379 Assoc
:= Associated_Node
(N
);
5381 if Nkind
(Assoc
) /= Nkind
(N
) then
5384 elsif Nkind_In
(Assoc
, N_Aggregate
, N_Extension_Aggregate
) then
5388 -- If the node is part of an inner generic, it may itself have been
5389 -- remapped into a further generic copy. Associated_Node is otherwise
5390 -- used for the entity of the node, and will be of a different node
5391 -- kind, or else N has been rewritten as a literal or function call.
5393 while Present
(Associated_Node
(Assoc
))
5394 and then Nkind
(Associated_Node
(Assoc
)) = Nkind
(Assoc
)
5396 Assoc
:= Associated_Node
(Assoc
);
5399 -- Follow and additional link in case the final node was rewritten.
5400 -- This can only happen with nested generic units.
5402 if (Nkind
(Assoc
) = N_Identifier
or else Nkind
(Assoc
) in N_Op
)
5403 and then Present
(Associated_Node
(Assoc
))
5404 and then (Nkind_In
(Associated_Node
(Assoc
), N_Function_Call
,
5405 N_Explicit_Dereference
,
5410 Assoc
:= Associated_Node
(Assoc
);
5413 -- An additional special case: an unconstrained type in an object
5414 -- declaration may have been rewritten as a local subtype constrained
5415 -- by the expression in the declaration. We need to recover the
5416 -- original entity which may be global.
5418 if Present
(Original_Node
(Assoc
))
5419 and then Nkind
(Parent
(N
)) = N_Object_Declaration
5421 Assoc
:= Original_Node
(Assoc
);
5426 end Get_Associated_Node
;
5428 -------------------------------------------
5429 -- Build_Instance_Compilation_Unit_Nodes --
5430 -------------------------------------------
5432 procedure Build_Instance_Compilation_Unit_Nodes
5437 Decl_Cunit
: Node_Id
;
5438 Body_Cunit
: Node_Id
;
5440 New_Main
: constant Entity_Id
:= Defining_Entity
(Act_Decl
);
5441 Old_Main
: constant Entity_Id
:= Cunit_Entity
(Main_Unit
);
5444 -- A new compilation unit node is built for the instance declaration
5447 Make_Compilation_Unit
(Sloc
(N
),
5448 Context_Items
=> Empty_List
,
5450 Aux_Decls_Node
=> Make_Compilation_Unit_Aux
(Sloc
(N
)));
5452 Set_Parent_Spec
(Act_Decl
, Parent_Spec
(N
));
5454 -- The new compilation unit is linked to its body, but both share the
5455 -- same file, so we do not set Body_Required on the new unit so as not
5456 -- to create a spurious dependency on a non-existent body in the ali.
5457 -- This simplifies CodePeer unit traversal.
5459 -- We use the original instantiation compilation unit as the resulting
5460 -- compilation unit of the instance, since this is the main unit.
5462 Rewrite
(N
, Act_Body
);
5464 -- Propagate the aspect specifications from the package body template to
5465 -- the instantiated version of the package body.
5467 if Has_Aspects
(Act_Body
) then
5468 Set_Aspect_Specifications
5469 (N
, New_Copy_List_Tree
(Aspect_Specifications
(Act_Body
)));
5472 Body_Cunit
:= Parent
(N
);
5474 -- The two compilation unit nodes are linked by the Library_Unit field
5476 Set_Library_Unit
(Decl_Cunit
, Body_Cunit
);
5477 Set_Library_Unit
(Body_Cunit
, Decl_Cunit
);
5479 -- Preserve the private nature of the package if needed
5481 Set_Private_Present
(Decl_Cunit
, Private_Present
(Body_Cunit
));
5483 -- If the instance is not the main unit, its context, categorization
5484 -- and elaboration entity are not relevant to the compilation.
5486 if Body_Cunit
/= Cunit
(Main_Unit
) then
5487 Make_Instance_Unit
(Body_Cunit
, In_Main
=> False);
5491 -- The context clause items on the instantiation, which are now attached
5492 -- to the body compilation unit (since the body overwrote the original
5493 -- instantiation node), semantically belong on the spec, so copy them
5494 -- there. It's harmless to leave them on the body as well. In fact one
5495 -- could argue that they belong in both places.
5497 Citem
:= First
(Context_Items
(Body_Cunit
));
5498 while Present
(Citem
) loop
5499 Append
(New_Copy
(Citem
), Context_Items
(Decl_Cunit
));
5503 -- Propagate categorization flags on packages, so that they appear in
5504 -- the ali file for the spec of the unit.
5506 if Ekind
(New_Main
) = E_Package
then
5507 Set_Is_Pure
(Old_Main
, Is_Pure
(New_Main
));
5508 Set_Is_Preelaborated
(Old_Main
, Is_Preelaborated
(New_Main
));
5509 Set_Is_Remote_Types
(Old_Main
, Is_Remote_Types
(New_Main
));
5510 Set_Is_Shared_Passive
(Old_Main
, Is_Shared_Passive
(New_Main
));
5511 Set_Is_Remote_Call_Interface
5512 (Old_Main
, Is_Remote_Call_Interface
(New_Main
));
5515 -- Make entry in Units table, so that binder can generate call to
5516 -- elaboration procedure for body, if any.
5518 Make_Instance_Unit
(Body_Cunit
, In_Main
=> True);
5519 Main_Unit_Entity
:= New_Main
;
5520 Set_Cunit_Entity
(Main_Unit
, Main_Unit_Entity
);
5522 -- Build elaboration entity, since the instance may certainly generate
5523 -- elaboration code requiring a flag for protection.
5525 Build_Elaboration_Entity
(Decl_Cunit
, New_Main
);
5526 end Build_Instance_Compilation_Unit_Nodes
;
5528 -----------------------------
5529 -- Check_Access_Definition --
5530 -----------------------------
5532 procedure Check_Access_Definition
(N
: Node_Id
) is
5535 (Ada_Version
>= Ada_2005
and then Present
(Access_Definition
(N
)));
5537 end Check_Access_Definition
;
5539 -----------------------------------
5540 -- Check_Formal_Package_Instance --
5541 -----------------------------------
5543 -- If the formal has specific parameters, they must match those of the
5544 -- actual. Both of them are instances, and the renaming declarations for
5545 -- their formal parameters appear in the same order in both. The analyzed
5546 -- formal has been analyzed in the context of the current instance.
5548 procedure Check_Formal_Package_Instance
5549 (Formal_Pack
: Entity_Id
;
5550 Actual_Pack
: Entity_Id
)
5552 E1
: Entity_Id
:= First_Entity
(Actual_Pack
);
5553 E2
: Entity_Id
:= First_Entity
(Formal_Pack
);
5558 procedure Check_Mismatch
(B
: Boolean);
5559 -- Common error routine for mismatch between the parameters of the
5560 -- actual instance and those of the formal package.
5562 function Same_Instantiated_Constant
(E1
, E2
: Entity_Id
) return Boolean;
5563 -- The formal may come from a nested formal package, and the actual may
5564 -- have been constant-folded. To determine whether the two denote the
5565 -- same entity we may have to traverse several definitions to recover
5566 -- the ultimate entity that they refer to.
5568 function Same_Instantiated_Variable
(E1
, E2
: Entity_Id
) return Boolean;
5569 -- Similarly, if the formal comes from a nested formal package, the
5570 -- actual may designate the formal through multiple renamings, which
5571 -- have to be followed to determine the original variable in question.
5573 --------------------
5574 -- Check_Mismatch --
5575 --------------------
5577 procedure Check_Mismatch
(B
: Boolean) is
5578 Kind
: constant Node_Kind
:= Nkind
(Parent
(E2
));
5581 if Kind
= N_Formal_Type_Declaration
then
5584 elsif Nkind_In
(Kind
, N_Formal_Object_Declaration
,
5585 N_Formal_Package_Declaration
)
5586 or else Kind
in N_Formal_Subprogram_Declaration
5592 ("actual for & in actual instance does not match formal",
5593 Parent
(Actual_Pack
), E1
);
5597 --------------------------------
5598 -- Same_Instantiated_Constant --
5599 --------------------------------
5601 function Same_Instantiated_Constant
5602 (E1
, E2
: Entity_Id
) return Boolean
5608 while Present
(Ent
) loop
5612 elsif Ekind
(Ent
) /= E_Constant
then
5615 elsif Is_Entity_Name
(Constant_Value
(Ent
)) then
5616 if Entity
(Constant_Value
(Ent
)) = E1
then
5619 Ent
:= Entity
(Constant_Value
(Ent
));
5622 -- The actual may be a constant that has been folded. Recover
5625 elsif Is_Entity_Name
(Original_Node
(Constant_Value
(Ent
))) then
5626 Ent
:= Entity
(Original_Node
(Constant_Value
(Ent
)));
5633 end Same_Instantiated_Constant
;
5635 --------------------------------
5636 -- Same_Instantiated_Variable --
5637 --------------------------------
5639 function Same_Instantiated_Variable
5640 (E1
, E2
: Entity_Id
) return Boolean
5642 function Original_Entity
(E
: Entity_Id
) return Entity_Id
;
5643 -- Follow chain of renamings to the ultimate ancestor
5645 ---------------------
5646 -- Original_Entity --
5647 ---------------------
5649 function Original_Entity
(E
: Entity_Id
) return Entity_Id
is
5654 while Nkind
(Parent
(Orig
)) = N_Object_Renaming_Declaration
5655 and then Present
(Renamed_Object
(Orig
))
5656 and then Is_Entity_Name
(Renamed_Object
(Orig
))
5658 Orig
:= Entity
(Renamed_Object
(Orig
));
5662 end Original_Entity
;
5664 -- Start of processing for Same_Instantiated_Variable
5667 return Ekind
(E1
) = Ekind
(E2
)
5668 and then Original_Entity
(E1
) = Original_Entity
(E2
);
5669 end Same_Instantiated_Variable
;
5671 -- Start of processing for Check_Formal_Package_Instance
5675 and then Present
(E2
)
5677 exit when Ekind
(E1
) = E_Package
5678 and then Renamed_Entity
(E1
) = Renamed_Entity
(Actual_Pack
);
5680 -- If the formal is the renaming of the formal package, this
5681 -- is the end of its formal part, which may occur before the
5682 -- end of the formal part in the actual in the presence of
5683 -- defaulted parameters in the formal package.
5685 exit when Nkind
(Parent
(E2
)) = N_Package_Renaming_Declaration
5686 and then Renamed_Entity
(E2
) = Scope
(E2
);
5688 -- The analysis of the actual may generate additional internal
5689 -- entities. If the formal is defaulted, there is no corresponding
5690 -- analysis and the internal entities must be skipped, until we
5691 -- find corresponding entities again.
5693 if Comes_From_Source
(E2
)
5694 and then not Comes_From_Source
(E1
)
5695 and then Chars
(E1
) /= Chars
(E2
)
5698 and then Chars
(E1
) /= Chars
(E2
)
5707 -- If the formal entity comes from a formal declaration, it was
5708 -- defaulted in the formal package, and no check is needed on it.
5710 elsif Nkind
(Parent
(E2
)) = N_Formal_Object_Declaration
then
5713 -- Ditto for defaulted formal subprograms.
5715 elsif Is_Overloadable
(E1
)
5716 and then Nkind
(Unit_Declaration_Node
(E2
)) in
5717 N_Formal_Subprogram_Declaration
5721 elsif Is_Type
(E1
) then
5723 -- Subtypes must statically match. E1, E2 are the local entities
5724 -- that are subtypes of the actuals. Itypes generated for other
5725 -- parameters need not be checked, the check will be performed
5726 -- on the parameters themselves.
5728 -- If E2 is a formal type declaration, it is a defaulted parameter
5729 -- and needs no checking.
5731 if not Is_Itype
(E1
)
5732 and then not Is_Itype
(E2
)
5736 or else Etype
(E1
) /= Etype
(E2
)
5737 or else not Subtypes_Statically_Match
(E1
, E2
));
5740 elsif Ekind
(E1
) = E_Constant
then
5742 -- IN parameters must denote the same static value, or the same
5743 -- constant, or the literal null.
5745 Expr1
:= Expression
(Parent
(E1
));
5747 if Ekind
(E2
) /= E_Constant
then
5748 Check_Mismatch
(True);
5751 Expr2
:= Expression
(Parent
(E2
));
5754 if Is_OK_Static_Expression
(Expr1
) then
5755 if not Is_OK_Static_Expression
(Expr2
) then
5756 Check_Mismatch
(True);
5758 elsif Is_Discrete_Type
(Etype
(E1
)) then
5760 V1
: constant Uint
:= Expr_Value
(Expr1
);
5761 V2
: constant Uint
:= Expr_Value
(Expr2
);
5763 Check_Mismatch
(V1
/= V2
);
5766 elsif Is_Real_Type
(Etype
(E1
)) then
5768 V1
: constant Ureal
:= Expr_Value_R
(Expr1
);
5769 V2
: constant Ureal
:= Expr_Value_R
(Expr2
);
5771 Check_Mismatch
(V1
/= V2
);
5774 elsif Is_String_Type
(Etype
(E1
))
5775 and then Nkind
(Expr1
) = N_String_Literal
5777 if Nkind
(Expr2
) /= N_String_Literal
then
5778 Check_Mismatch
(True);
5781 (not String_Equal
(Strval
(Expr1
), Strval
(Expr2
)));
5785 elsif Is_Entity_Name
(Expr1
) then
5786 if Is_Entity_Name
(Expr2
) then
5787 if Entity
(Expr1
) = Entity
(Expr2
) then
5791 (not Same_Instantiated_Constant
5792 (Entity
(Expr1
), Entity
(Expr2
)));
5795 Check_Mismatch
(True);
5798 elsif Is_Entity_Name
(Original_Node
(Expr1
))
5799 and then Is_Entity_Name
(Expr2
)
5801 Same_Instantiated_Constant
5802 (Entity
(Original_Node
(Expr1
)), Entity
(Expr2
))
5806 elsif Nkind
(Expr1
) = N_Null
then
5807 Check_Mismatch
(Nkind
(Expr1
) /= N_Null
);
5810 Check_Mismatch
(True);
5813 elsif Ekind
(E1
) = E_Variable
then
5814 Check_Mismatch
(not Same_Instantiated_Variable
(E1
, E2
));
5816 elsif Ekind
(E1
) = E_Package
then
5818 (Ekind
(E1
) /= Ekind
(E2
)
5819 or else Renamed_Object
(E1
) /= Renamed_Object
(E2
));
5821 elsif Is_Overloadable
(E1
) then
5823 -- Verify that the actual subprograms match. Note that actuals
5824 -- that are attributes are rewritten as subprograms. If the
5825 -- subprogram in the formal package is defaulted, no check is
5826 -- needed. Note that this can only happen in Ada 2005 when the
5827 -- formal package can be partially parameterized.
5829 if Nkind
(Unit_Declaration_Node
(E1
)) =
5830 N_Subprogram_Renaming_Declaration
5831 and then From_Default
(Unit_Declaration_Node
(E1
))
5835 -- If the formal package has an "others" box association that
5836 -- covers this formal, there is no need for a check either.
5838 elsif Nkind
(Unit_Declaration_Node
(E2
)) in
5839 N_Formal_Subprogram_Declaration
5840 and then Box_Present
(Unit_Declaration_Node
(E2
))
5844 -- No check needed if subprogram is a defaulted null procedure
5846 elsif No
(Alias
(E2
))
5847 and then Ekind
(E2
) = E_Procedure
5849 Null_Present
(Specification
(Unit_Declaration_Node
(E2
)))
5853 -- Otherwise the actual in the formal and the actual in the
5854 -- instantiation of the formal must match, up to renamings.
5858 (Ekind
(E2
) /= Ekind
(E1
) or else (Alias
(E1
)) /= Alias
(E2
));
5862 raise Program_Error
;
5869 end Check_Formal_Package_Instance
;
5871 ---------------------------
5872 -- Check_Formal_Packages --
5873 ---------------------------
5875 procedure Check_Formal_Packages
(P_Id
: Entity_Id
) is
5877 Formal_P
: Entity_Id
;
5880 -- Iterate through the declarations in the instance, looking for package
5881 -- renaming declarations that denote instances of formal packages. Stop
5882 -- when we find the renaming of the current package itself. The
5883 -- declaration for a formal package without a box is followed by an
5884 -- internal entity that repeats the instantiation.
5886 E
:= First_Entity
(P_Id
);
5887 while Present
(E
) loop
5888 if Ekind
(E
) = E_Package
then
5889 if Renamed_Object
(E
) = P_Id
then
5892 elsif Nkind
(Parent
(E
)) /= N_Package_Renaming_Declaration
then
5895 elsif not Box_Present
(Parent
(Associated_Formal_Package
(E
))) then
5896 Formal_P
:= Next_Entity
(E
);
5897 Check_Formal_Package_Instance
(Formal_P
, E
);
5899 -- After checking, remove the internal validating package. It
5900 -- is only needed for semantic checks, and as it may contain
5901 -- generic formal declarations it should not reach gigi.
5903 Remove
(Unit_Declaration_Node
(Formal_P
));
5909 end Check_Formal_Packages
;
5911 ---------------------------------
5912 -- Check_Forward_Instantiation --
5913 ---------------------------------
5915 procedure Check_Forward_Instantiation
(Decl
: Node_Id
) is
5917 Gen_Comp
: Entity_Id
:= Cunit_Entity
(Get_Source_Unit
(Decl
));
5920 -- The instantiation appears before the generic body if we are in the
5921 -- scope of the unit containing the generic, either in its spec or in
5922 -- the package body, and before the generic body.
5924 if Ekind
(Gen_Comp
) = E_Package_Body
then
5925 Gen_Comp
:= Spec_Entity
(Gen_Comp
);
5928 if In_Open_Scopes
(Gen_Comp
)
5929 and then No
(Corresponding_Body
(Decl
))
5934 and then not Is_Compilation_Unit
(S
)
5935 and then not Is_Child_Unit
(S
)
5937 if Ekind
(S
) = E_Package
then
5938 Set_Has_Forward_Instantiation
(S
);
5944 end Check_Forward_Instantiation
;
5946 ---------------------------
5947 -- Check_Generic_Actuals --
5948 ---------------------------
5950 -- The visibility of the actuals may be different between the point of
5951 -- generic instantiation and the instantiation of the body.
5953 procedure Check_Generic_Actuals
5954 (Instance
: Entity_Id
;
5955 Is_Formal_Box
: Boolean)
5960 function Denotes_Previous_Actual
(Typ
: Entity_Id
) return Boolean;
5961 -- For a formal that is an array type, the component type is often a
5962 -- previous formal in the same unit. The privacy status of the component
5963 -- type will have been examined earlier in the traversal of the
5964 -- corresponding actuals, and this status should not be modified for
5965 -- the array (sub)type itself. However, if the base type of the array
5966 -- (sub)type is private, its full view must be restored in the body to
5967 -- be consistent with subsequent index subtypes, etc.
5969 -- To detect this case we have to rescan the list of formals, which is
5970 -- usually short enough to ignore the resulting inefficiency.
5972 -----------------------------
5973 -- Denotes_Previous_Actual --
5974 -----------------------------
5976 function Denotes_Previous_Actual
(Typ
: Entity_Id
) return Boolean is
5980 Prev
:= First_Entity
(Instance
);
5981 while Present
(Prev
) loop
5983 and then Nkind
(Parent
(Prev
)) = N_Subtype_Declaration
5984 and then Is_Entity_Name
(Subtype_Indication
(Parent
(Prev
)))
5985 and then Entity
(Subtype_Indication
(Parent
(Prev
))) = Typ
5998 end Denotes_Previous_Actual
;
6000 -- Start of processing for Check_Generic_Actuals
6003 E
:= First_Entity
(Instance
);
6004 while Present
(E
) loop
6006 and then Nkind
(Parent
(E
)) = N_Subtype_Declaration
6007 and then Scope
(Etype
(E
)) /= Instance
6008 and then Is_Entity_Name
(Subtype_Indication
(Parent
(E
)))
6010 if Is_Array_Type
(E
)
6011 and then not Is_Private_Type
(Etype
(E
))
6012 and then Denotes_Previous_Actual
(Component_Type
(E
))
6016 Check_Private_View
(Subtype_Indication
(Parent
(E
)));
6019 Set_Is_Generic_Actual_Type
(E
, True);
6020 Set_Is_Hidden
(E
, False);
6021 Set_Is_Potentially_Use_Visible
(E
,
6024 -- We constructed the generic actual type as a subtype of the
6025 -- supplied type. This means that it normally would not inherit
6026 -- subtype specific attributes of the actual, which is wrong for
6027 -- the generic case.
6029 Astype
:= Ancestor_Subtype
(E
);
6033 -- This can happen when E is an itype that is the full view of
6034 -- a private type completed, e.g. with a constrained array. In
6035 -- that case, use the first subtype, which will carry size
6036 -- information. The base type itself is unconstrained and will
6039 Astype
:= First_Subtype
(E
);
6042 Set_Size_Info
(E
, (Astype
));
6043 Set_RM_Size
(E
, RM_Size
(Astype
));
6044 Set_First_Rep_Item
(E
, First_Rep_Item
(Astype
));
6046 if Is_Discrete_Or_Fixed_Point_Type
(E
) then
6047 Set_RM_Size
(E
, RM_Size
(Astype
));
6049 -- In nested instances, the base type of an access actual may
6050 -- itself be private, and need to be exchanged.
6052 elsif Is_Access_Type
(E
)
6053 and then Is_Private_Type
(Etype
(E
))
6056 (New_Occurrence_Of
(Etype
(E
), Sloc
(Instance
)));
6059 elsif Ekind
(E
) = E_Package
then
6061 -- If this is the renaming for the current instance, we're done.
6062 -- Otherwise it is a formal package. If the corresponding formal
6063 -- was declared with a box, the (instantiations of the) generic
6064 -- formal part are also visible. Otherwise, ignore the entity
6065 -- created to validate the actuals.
6067 if Renamed_Object
(E
) = Instance
then
6070 elsif Nkind
(Parent
(E
)) /= N_Package_Renaming_Declaration
then
6073 -- The visibility of a formal of an enclosing generic is already
6076 elsif Denotes_Formal_Package
(E
) then
6079 elsif Present
(Associated_Formal_Package
(E
))
6080 and then not Is_Generic_Formal
(E
)
6082 if Box_Present
(Parent
(Associated_Formal_Package
(E
))) then
6083 Check_Generic_Actuals
(Renamed_Object
(E
), True);
6086 Check_Generic_Actuals
(Renamed_Object
(E
), False);
6089 Set_Is_Hidden
(E
, False);
6092 -- If this is a subprogram instance (in a wrapper package) the
6093 -- actual is fully visible.
6095 elsif Is_Wrapper_Package
(Instance
) then
6096 Set_Is_Hidden
(E
, False);
6098 -- If the formal package is declared with a box, or if the formal
6099 -- parameter is defaulted, it is visible in the body.
6101 elsif Is_Formal_Box
or else Is_Visible_Formal
(E
) then
6102 Set_Is_Hidden
(E
, False);
6105 if Ekind
(E
) = E_Constant
then
6107 -- If the type of the actual is a private type declared in the
6108 -- enclosing scope of the generic unit, the body of the generic
6109 -- sees the full view of the type (because it has to appear in
6110 -- the corresponding package body). If the type is private now,
6111 -- exchange views to restore the proper visiblity in the instance.
6114 Typ
: constant Entity_Id
:= Base_Type
(Etype
(E
));
6115 -- The type of the actual
6120 Parent_Scope
: Entity_Id
;
6121 -- The enclosing scope of the generic unit
6124 if Is_Wrapper_Package
(Instance
) then
6128 (Unit_Declaration_Node
6129 (Related_Instance
(Instance
))));
6132 Generic_Parent
(Package_Specification
(Instance
));
6135 Parent_Scope
:= Scope
(Gen_Id
);
6137 -- The exchange is only needed if the generic is defined
6138 -- within a package which is not a common ancestor of the
6139 -- scope of the instance, and is not already in scope.
6141 if Is_Private_Type
(Typ
)
6142 and then Scope
(Typ
) = Parent_Scope
6143 and then Scope
(Instance
) /= Parent_Scope
6144 and then Ekind
(Parent_Scope
) = E_Package
6145 and then not Is_Child_Unit
(Gen_Id
)
6149 -- If the type of the entity is a subtype, it may also have
6150 -- to be made visible, together with the base type of its
6151 -- full view, after exchange.
6153 if Is_Private_Type
(Etype
(E
)) then
6154 Switch_View
(Etype
(E
));
6155 Switch_View
(Base_Type
(Etype
(E
)));
6163 end Check_Generic_Actuals
;
6165 ------------------------------
6166 -- Check_Generic_Child_Unit --
6167 ------------------------------
6169 procedure Check_Generic_Child_Unit
6171 Parent_Installed
: in out Boolean)
6173 Loc
: constant Source_Ptr
:= Sloc
(Gen_Id
);
6174 Gen_Par
: Entity_Id
:= Empty
;
6176 Inst_Par
: Entity_Id
;
6179 function Find_Generic_Child
6181 Id
: Node_Id
) return Entity_Id
;
6182 -- Search generic parent for possible child unit with the given name
6184 function In_Enclosing_Instance
return Boolean;
6185 -- Within an instance of the parent, the child unit may be denoted by
6186 -- a simple name, or an abbreviated expanded name. Examine enclosing
6187 -- scopes to locate a possible parent instantiation.
6189 ------------------------
6190 -- Find_Generic_Child --
6191 ------------------------
6193 function Find_Generic_Child
6195 Id
: Node_Id
) return Entity_Id
6200 -- If entity of name is already set, instance has already been
6201 -- resolved, e.g. in an enclosing instantiation.
6203 if Present
(Entity
(Id
)) then
6204 if Scope
(Entity
(Id
)) = Scop
then
6211 E
:= First_Entity
(Scop
);
6212 while Present
(E
) loop
6213 if Chars
(E
) = Chars
(Id
)
6214 and then Is_Child_Unit
(E
)
6216 if Is_Child_Unit
(E
)
6217 and then not Is_Visible_Lib_Unit
(E
)
6220 ("generic child unit& is not visible", Gen_Id
, E
);
6232 end Find_Generic_Child
;
6234 ---------------------------
6235 -- In_Enclosing_Instance --
6236 ---------------------------
6238 function In_Enclosing_Instance
return Boolean is
6239 Enclosing_Instance
: Node_Id
;
6240 Instance_Decl
: Node_Id
;
6243 -- We do not inline any call that contains instantiations, except
6244 -- for instantiations of Unchecked_Conversion, so if we are within
6245 -- an inlined body the current instance does not require parents.
6247 if In_Inlined_Body
then
6248 pragma Assert
(Chars
(Gen_Id
) = Name_Unchecked_Conversion
);
6252 -- Loop to check enclosing scopes
6254 Enclosing_Instance
:= Current_Scope
;
6255 while Present
(Enclosing_Instance
) loop
6256 Instance_Decl
:= Unit_Declaration_Node
(Enclosing_Instance
);
6258 if Ekind
(Enclosing_Instance
) = E_Package
6259 and then Is_Generic_Instance
(Enclosing_Instance
)
6261 (Generic_Parent
(Specification
(Instance_Decl
)))
6263 -- Check whether the generic we are looking for is a child of
6266 E
:= Find_Generic_Child
6267 (Generic_Parent
(Specification
(Instance_Decl
)), Gen_Id
);
6268 exit when Present
(E
);
6274 Enclosing_Instance
:= Scope
(Enclosing_Instance
);
6286 Make_Expanded_Name
(Loc
,
6288 Prefix
=> New_Occurrence_Of
(Enclosing_Instance
, Loc
),
6289 Selector_Name
=> New_Occurrence_Of
(E
, Loc
)));
6291 Set_Entity
(Gen_Id
, E
);
6292 Set_Etype
(Gen_Id
, Etype
(E
));
6293 Parent_Installed
:= False; -- Already in scope.
6296 end In_Enclosing_Instance
;
6298 -- Start of processing for Check_Generic_Child_Unit
6301 -- If the name of the generic is given by a selected component, it may
6302 -- be the name of a generic child unit, and the prefix is the name of an
6303 -- instance of the parent, in which case the child unit must be visible.
6304 -- If this instance is not in scope, it must be placed there and removed
6305 -- after instantiation, because what is being instantiated is not the
6306 -- original child, but the corresponding child present in the instance
6309 -- If the child is instantiated within the parent, it can be given by
6310 -- a simple name. In this case the instance is already in scope, but
6311 -- the child generic must be recovered from the generic parent as well.
6313 if Nkind
(Gen_Id
) = N_Selected_Component
then
6314 S
:= Selector_Name
(Gen_Id
);
6315 Analyze
(Prefix
(Gen_Id
));
6316 Inst_Par
:= Entity
(Prefix
(Gen_Id
));
6318 if Ekind
(Inst_Par
) = E_Package
6319 and then Present
(Renamed_Object
(Inst_Par
))
6321 Inst_Par
:= Renamed_Object
(Inst_Par
);
6324 if Ekind
(Inst_Par
) = E_Package
then
6325 if Nkind
(Parent
(Inst_Par
)) = N_Package_Specification
then
6326 Gen_Par
:= Generic_Parent
(Parent
(Inst_Par
));
6328 elsif Nkind
(Parent
(Inst_Par
)) = N_Defining_Program_Unit_Name
6330 Nkind
(Parent
(Parent
(Inst_Par
))) = N_Package_Specification
6332 Gen_Par
:= Generic_Parent
(Parent
(Parent
(Inst_Par
)));
6335 elsif Ekind
(Inst_Par
) = E_Generic_Package
6336 and then Nkind
(Parent
(Gen_Id
)) = N_Formal_Package_Declaration
6338 -- A formal package may be a real child package, and not the
6339 -- implicit instance within a parent. In this case the child is
6340 -- not visible and has to be retrieved explicitly as well.
6342 Gen_Par
:= Inst_Par
;
6345 if Present
(Gen_Par
) then
6347 -- The prefix denotes an instantiation. The entity itself may be a
6348 -- nested generic, or a child unit.
6350 E
:= Find_Generic_Child
(Gen_Par
, S
);
6353 Change_Selected_Component_To_Expanded_Name
(Gen_Id
);
6354 Set_Entity
(Gen_Id
, E
);
6355 Set_Etype
(Gen_Id
, Etype
(E
));
6357 Set_Etype
(S
, Etype
(E
));
6359 -- Indicate that this is a reference to the parent
6361 if In_Extended_Main_Source_Unit
(Gen_Id
) then
6362 Set_Is_Instantiated
(Inst_Par
);
6365 -- A common mistake is to replicate the naming scheme of a
6366 -- hierarchy by instantiating a generic child directly, rather
6367 -- than the implicit child in a parent instance:
6369 -- generic .. package Gpar is ..
6370 -- generic .. package Gpar.Child is ..
6371 -- package Par is new Gpar ();
6374 -- package Par.Child is new Gpar.Child ();
6375 -- rather than Par.Child
6377 -- In this case the instantiation is within Par, which is an
6378 -- instance, but Gpar does not denote Par because we are not IN
6379 -- the instance of Gpar, so this is illegal. The test below
6380 -- recognizes this particular case.
6382 if Is_Child_Unit
(E
)
6383 and then not Comes_From_Source
(Entity
(Prefix
(Gen_Id
)))
6384 and then (not In_Instance
6385 or else Nkind
(Parent
(Parent
(Gen_Id
))) =
6389 ("prefix of generic child unit must be instance of parent",
6393 if not In_Open_Scopes
(Inst_Par
)
6394 and then Nkind
(Parent
(Gen_Id
)) not in
6395 N_Generic_Renaming_Declaration
6397 Install_Parent
(Inst_Par
);
6398 Parent_Installed
:= True;
6400 elsif In_Open_Scopes
(Inst_Par
) then
6402 -- If the parent is already installed, install the actuals
6403 -- for its formal packages. This is necessary when the child
6404 -- instance is a child of the parent instance: in this case,
6405 -- the parent is placed on the scope stack but the formal
6406 -- packages are not made visible.
6408 Install_Formal_Packages
(Inst_Par
);
6412 -- If the generic parent does not contain an entity that
6413 -- corresponds to the selector, the instance doesn't either.
6414 -- Analyzing the node will yield the appropriate error message.
6415 -- If the entity is not a child unit, then it is an inner
6416 -- generic in the parent.
6424 if Is_Child_Unit
(Entity
(Gen_Id
))
6426 Nkind
(Parent
(Gen_Id
)) not in N_Generic_Renaming_Declaration
6427 and then not In_Open_Scopes
(Inst_Par
)
6429 Install_Parent
(Inst_Par
);
6430 Parent_Installed
:= True;
6432 -- The generic unit may be the renaming of the implicit child
6433 -- present in an instance. In that case the parent instance is
6434 -- obtained from the name of the renamed entity.
6436 elsif Ekind
(Entity
(Gen_Id
)) = E_Generic_Package
6437 and then Present
(Renamed_Entity
(Entity
(Gen_Id
)))
6438 and then Is_Child_Unit
(Renamed_Entity
(Entity
(Gen_Id
)))
6441 Renamed_Package
: constant Node_Id
:=
6442 Name
(Parent
(Entity
(Gen_Id
)));
6444 if Nkind
(Renamed_Package
) = N_Expanded_Name
then
6445 Inst_Par
:= Entity
(Prefix
(Renamed_Package
));
6446 Install_Parent
(Inst_Par
);
6447 Parent_Installed
:= True;
6453 elsif Nkind
(Gen_Id
) = N_Expanded_Name
then
6455 -- Entity already present, analyze prefix, whose meaning may be
6456 -- an instance in the current context. If it is an instance of
6457 -- a relative within another, the proper parent may still have
6458 -- to be installed, if they are not of the same generation.
6460 Analyze
(Prefix
(Gen_Id
));
6462 -- In the unlikely case that a local declaration hides the name
6463 -- of the parent package, locate it on the homonym chain. If the
6464 -- context is an instance of the parent, the renaming entity is
6467 Inst_Par
:= Entity
(Prefix
(Gen_Id
));
6468 while Present
(Inst_Par
)
6469 and then not Is_Package_Or_Generic_Package
(Inst_Par
)
6471 Inst_Par
:= Homonym
(Inst_Par
);
6474 pragma Assert
(Present
(Inst_Par
));
6475 Set_Entity
(Prefix
(Gen_Id
), Inst_Par
);
6477 if In_Enclosing_Instance
then
6480 elsif Present
(Entity
(Gen_Id
))
6481 and then Is_Child_Unit
(Entity
(Gen_Id
))
6482 and then not In_Open_Scopes
(Inst_Par
)
6484 Install_Parent
(Inst_Par
);
6485 Parent_Installed
:= True;
6488 elsif In_Enclosing_Instance
then
6490 -- The child unit is found in some enclosing scope
6497 -- If this is the renaming of the implicit child in a parent
6498 -- instance, recover the parent name and install it.
6500 if Is_Entity_Name
(Gen_Id
) then
6501 E
:= Entity
(Gen_Id
);
6503 if Is_Generic_Unit
(E
)
6504 and then Nkind
(Parent
(E
)) in N_Generic_Renaming_Declaration
6505 and then Is_Child_Unit
(Renamed_Object
(E
))
6506 and then Is_Generic_Unit
(Scope
(Renamed_Object
(E
)))
6507 and then Nkind
(Name
(Parent
(E
))) = N_Expanded_Name
6510 New_Copy_Tree
(Name
(Parent
(E
))));
6511 Inst_Par
:= Entity
(Prefix
(Gen_Id
));
6513 if not In_Open_Scopes
(Inst_Par
) then
6514 Install_Parent
(Inst_Par
);
6515 Parent_Installed
:= True;
6518 -- If it is a child unit of a non-generic parent, it may be
6519 -- use-visible and given by a direct name. Install parent as
6522 elsif Is_Generic_Unit
(E
)
6523 and then Is_Child_Unit
(E
)
6525 Nkind
(Parent
(Gen_Id
)) not in N_Generic_Renaming_Declaration
6526 and then not Is_Generic_Unit
(Scope
(E
))
6528 if not In_Open_Scopes
(Scope
(E
)) then
6529 Install_Parent
(Scope
(E
));
6530 Parent_Installed
:= True;
6535 end Check_Generic_Child_Unit
;
6537 -----------------------------
6538 -- Check_Hidden_Child_Unit --
6539 -----------------------------
6541 procedure Check_Hidden_Child_Unit
6543 Gen_Unit
: Entity_Id
;
6544 Act_Decl_Id
: Entity_Id
)
6546 Gen_Id
: constant Node_Id
:= Name
(N
);
6549 if Is_Child_Unit
(Gen_Unit
)
6550 and then Is_Child_Unit
(Act_Decl_Id
)
6551 and then Nkind
(Gen_Id
) = N_Expanded_Name
6552 and then Entity
(Prefix
(Gen_Id
)) = Scope
(Act_Decl_Id
)
6553 and then Chars
(Gen_Unit
) = Chars
(Act_Decl_Id
)
6555 Error_Msg_Node_2
:= Scope
(Act_Decl_Id
);
6557 ("generic unit & is implicitly declared in &",
6558 Defining_Unit_Name
(N
), Gen_Unit
);
6559 Error_Msg_N
("\instance must have different name",
6560 Defining_Unit_Name
(N
));
6562 end Check_Hidden_Child_Unit
;
6564 ------------------------
6565 -- Check_Private_View --
6566 ------------------------
6568 procedure Check_Private_View
(N
: Node_Id
) is
6569 T
: constant Entity_Id
:= Etype
(N
);
6573 -- Exchange views if the type was not private in the generic but is
6574 -- private at the point of instantiation. Do not exchange views if
6575 -- the scope of the type is in scope. This can happen if both generic
6576 -- and instance are sibling units, or if type is defined in a parent.
6577 -- In this case the visibility of the type will be correct for all
6581 BT
:= Base_Type
(T
);
6583 if Is_Private_Type
(T
)
6584 and then not Has_Private_View
(N
)
6585 and then Present
(Full_View
(T
))
6586 and then not In_Open_Scopes
(Scope
(T
))
6588 -- In the generic, the full type was visible. Save the private
6589 -- entity, for subsequent exchange.
6593 elsif Has_Private_View
(N
)
6594 and then not Is_Private_Type
(T
)
6595 and then not Has_Been_Exchanged
(T
)
6596 and then Etype
(Get_Associated_Node
(N
)) /= T
6598 -- Only the private declaration was visible in the generic. If
6599 -- the type appears in a subtype declaration, the subtype in the
6600 -- instance must have a view compatible with that of its parent,
6601 -- which must be exchanged (see corresponding code in Restore_
6602 -- Private_Views). Otherwise, if the type is defined in a parent
6603 -- unit, leave full visibility within instance, which is safe.
6605 if In_Open_Scopes
(Scope
(Base_Type
(T
)))
6606 and then not Is_Private_Type
(Base_Type
(T
))
6607 and then Comes_From_Source
(Base_Type
(T
))
6611 elsif Nkind
(Parent
(N
)) = N_Subtype_Declaration
6612 or else not In_Private_Part
(Scope
(Base_Type
(T
)))
6614 Prepend_Elmt
(T
, Exchanged_Views
);
6615 Exchange_Declarations
(Etype
(Get_Associated_Node
(N
)));
6618 -- For composite types with inconsistent representation exchange
6619 -- component types accordingly.
6621 elsif Is_Access_Type
(T
)
6622 and then Is_Private_Type
(Designated_Type
(T
))
6623 and then not Has_Private_View
(N
)
6624 and then Present
(Full_View
(Designated_Type
(T
)))
6626 Switch_View
(Designated_Type
(T
));
6628 elsif Is_Array_Type
(T
) then
6629 if Is_Private_Type
(Component_Type
(T
))
6630 and then not Has_Private_View
(N
)
6631 and then Present
(Full_View
(Component_Type
(T
)))
6633 Switch_View
(Component_Type
(T
));
6636 -- The normal exchange mechanism relies on the setting of a
6637 -- flag on the reference in the generic. However, an additional
6638 -- mechanism is needed for types that are not explicitly
6639 -- mentioned in the generic, but may be needed in expanded code
6640 -- in the instance. This includes component types of arrays and
6641 -- designated types of access types. This processing must also
6642 -- include the index types of arrays which we take care of here.
6649 Indx
:= First_Index
(T
);
6650 while Present
(Indx
) loop
6651 Typ
:= Base_Type
(Etype
(Indx
));
6653 if Is_Private_Type
(Typ
)
6654 and then Present
(Full_View
(Typ
))
6663 elsif Is_Private_Type
(T
)
6664 and then Present
(Full_View
(T
))
6665 and then Is_Array_Type
(Full_View
(T
))
6666 and then Is_Private_Type
(Component_Type
(Full_View
(T
)))
6670 -- Finally, a non-private subtype may have a private base type, which
6671 -- must be exchanged for consistency. This can happen when a package
6672 -- body is instantiated, when the scope stack is empty but in fact
6673 -- the subtype and the base type are declared in an enclosing scope.
6675 -- Note that in this case we introduce an inconsistency in the view
6676 -- set, because we switch the base type BT, but there could be some
6677 -- private dependent subtypes of BT which remain unswitched. Such
6678 -- subtypes might need to be switched at a later point (see specific
6679 -- provision for that case in Switch_View).
6681 elsif not Is_Private_Type
(T
)
6682 and then not Has_Private_View
(N
)
6683 and then Is_Private_Type
(BT
)
6684 and then Present
(Full_View
(BT
))
6685 and then not Is_Generic_Type
(BT
)
6686 and then not In_Open_Scopes
(BT
)
6688 Prepend_Elmt
(Full_View
(BT
), Exchanged_Views
);
6689 Exchange_Declarations
(BT
);
6692 end Check_Private_View
;
6694 -----------------------------
6695 -- Check_Hidden_Primitives --
6696 -----------------------------
6698 function Check_Hidden_Primitives
(Assoc_List
: List_Id
) return Elist_Id
is
6701 Result
: Elist_Id
:= No_Elist
;
6704 if No
(Assoc_List
) then
6708 -- Traverse the list of associations between formals and actuals
6709 -- searching for renamings of tagged types
6711 Actual
:= First
(Assoc_List
);
6712 while Present
(Actual
) loop
6713 if Nkind
(Actual
) = N_Subtype_Declaration
then
6714 Gen_T
:= Generic_Parent_Type
(Actual
);
6717 and then Is_Tagged_Type
(Gen_T
)
6719 -- Traverse the list of primitives of the actual types
6720 -- searching for hidden primitives that are visible in the
6721 -- corresponding generic formal; leave them visible and
6722 -- append them to Result to restore their decoration later.
6724 Install_Hidden_Primitives
6725 (Prims_List
=> Result
,
6727 Act_T
=> Entity
(Subtype_Indication
(Actual
)));
6735 end Check_Hidden_Primitives
;
6737 --------------------------
6738 -- Contains_Instance_Of --
6739 --------------------------
6741 function Contains_Instance_Of
6744 N
: Node_Id
) return Boolean
6752 -- Verify that there are no circular instantiations. We check whether
6753 -- the unit contains an instance of the current scope or some enclosing
6754 -- scope (in case one of the instances appears in a subunit). Longer
6755 -- circularities involving subunits might seem too pathological to
6756 -- consider, but they were not too pathological for the authors of
6757 -- DEC bc30vsq, so we loop over all enclosing scopes, and mark all
6758 -- enclosing generic scopes as containing an instance.
6761 -- Within a generic subprogram body, the scope is not generic, to
6762 -- allow for recursive subprograms. Use the declaration to determine
6763 -- whether this is a generic unit.
6765 if Ekind
(Scop
) = E_Generic_Package
6766 or else (Is_Subprogram
(Scop
)
6767 and then Nkind
(Unit_Declaration_Node
(Scop
)) =
6768 N_Generic_Subprogram_Declaration
)
6770 Elmt
:= First_Elmt
(Inner_Instances
(Inner
));
6772 while Present
(Elmt
) loop
6773 if Node
(Elmt
) = Scop
then
6774 Error_Msg_Node_2
:= Inner
;
6776 ("circular Instantiation: & instantiated within &!",
6780 elsif Node
(Elmt
) = Inner
then
6783 elsif Contains_Instance_Of
(Node
(Elmt
), Scop
, N
) then
6784 Error_Msg_Node_2
:= Inner
;
6786 ("circular Instantiation: & instantiated within &!",
6794 -- Indicate that Inner is being instantiated within Scop
6796 Append_Elmt
(Inner
, Inner_Instances
(Scop
));
6799 if Scop
= Standard_Standard
then
6802 Scop
:= Scope
(Scop
);
6807 end Contains_Instance_Of
;
6809 -----------------------
6810 -- Copy_Generic_Node --
6811 -----------------------
6813 function Copy_Generic_Node
6815 Parent_Id
: Node_Id
;
6816 Instantiating
: Boolean) return Node_Id
6821 function Copy_Generic_Descendant
(D
: Union_Id
) return Union_Id
;
6822 -- Check the given value of one of the Fields referenced by the current
6823 -- node to determine whether to copy it recursively. The field may hold
6824 -- a Node_Id, a List_Id, or an Elist_Id, or a plain value (Sloc, Uint,
6825 -- Char) in which case it need not be copied.
6827 procedure Copy_Descendants
;
6828 -- Common utility for various nodes
6830 function Copy_Generic_Elist
(E
: Elist_Id
) return Elist_Id
;
6831 -- Make copy of element list
6833 function Copy_Generic_List
6835 Parent_Id
: Node_Id
) return List_Id
;
6836 -- Apply Copy_Node recursively to the members of a node list
6838 function In_Defining_Unit_Name
(Nam
: Node_Id
) return Boolean;
6839 -- True if an identifier is part of the defining program unit name of
6840 -- a child unit. The entity of such an identifier must be kept (for
6841 -- ASIS use) even though as the name of an enclosing generic it would
6842 -- otherwise not be preserved in the generic tree.
6844 ----------------------
6845 -- Copy_Descendants --
6846 ----------------------
6848 procedure Copy_Descendants
is
6850 use Atree
.Unchecked_Access
;
6851 -- This code section is part of the implementation of an untyped
6852 -- tree traversal, so it needs direct access to node fields.
6855 Set_Field1
(New_N
, Copy_Generic_Descendant
(Field1
(N
)));
6856 Set_Field2
(New_N
, Copy_Generic_Descendant
(Field2
(N
)));
6857 Set_Field3
(New_N
, Copy_Generic_Descendant
(Field3
(N
)));
6858 Set_Field4
(New_N
, Copy_Generic_Descendant
(Field4
(N
)));
6859 Set_Field5
(New_N
, Copy_Generic_Descendant
(Field5
(N
)));
6860 end Copy_Descendants
;
6862 -----------------------------
6863 -- Copy_Generic_Descendant --
6864 -----------------------------
6866 function Copy_Generic_Descendant
(D
: Union_Id
) return Union_Id
is
6868 if D
= Union_Id
(Empty
) then
6871 elsif D
in Node_Range
then
6873 (Copy_Generic_Node
(Node_Id
(D
), New_N
, Instantiating
));
6875 elsif D
in List_Range
then
6876 return Union_Id
(Copy_Generic_List
(List_Id
(D
), New_N
));
6878 elsif D
in Elist_Range
then
6879 return Union_Id
(Copy_Generic_Elist
(Elist_Id
(D
)));
6881 -- Nothing else is copyable (e.g. Uint values), return as is
6886 end Copy_Generic_Descendant
;
6888 ------------------------
6889 -- Copy_Generic_Elist --
6890 ------------------------
6892 function Copy_Generic_Elist
(E
: Elist_Id
) return Elist_Id
is
6899 M
:= First_Elmt
(E
);
6900 while Present
(M
) loop
6902 (Copy_Generic_Node
(Node
(M
), Empty
, Instantiating
), L
);
6911 end Copy_Generic_Elist
;
6913 -----------------------
6914 -- Copy_Generic_List --
6915 -----------------------
6917 function Copy_Generic_List
6919 Parent_Id
: Node_Id
) return List_Id
6927 Set_Parent
(New_L
, Parent_Id
);
6930 while Present
(N
) loop
6931 Append
(Copy_Generic_Node
(N
, Empty
, Instantiating
), New_L
);
6940 end Copy_Generic_List
;
6942 ---------------------------
6943 -- In_Defining_Unit_Name --
6944 ---------------------------
6946 function In_Defining_Unit_Name
(Nam
: Node_Id
) return Boolean is
6948 return Present
(Parent
(Nam
))
6949 and then (Nkind
(Parent
(Nam
)) = N_Defining_Program_Unit_Name
6951 (Nkind
(Parent
(Nam
)) = N_Expanded_Name
6952 and then In_Defining_Unit_Name
(Parent
(Nam
))));
6953 end In_Defining_Unit_Name
;
6955 -- Start of processing for Copy_Generic_Node
6962 New_N
:= New_Copy
(N
);
6964 -- Copy aspects if present
6966 if Has_Aspects
(N
) then
6967 Set_Has_Aspects
(New_N
, False);
6968 Set_Aspect_Specifications
6969 (New_N
, Copy_Generic_List
(Aspect_Specifications
(N
), Parent_Id
));
6972 if Instantiating
then
6973 Adjust_Instantiation_Sloc
(New_N
, S_Adjustment
);
6976 if not Is_List_Member
(N
) then
6977 Set_Parent
(New_N
, Parent_Id
);
6980 -- If defining identifier, then all fields have been copied already
6982 if Nkind
(New_N
) in N_Entity
then
6985 -- Special casing for identifiers and other entity names and operators
6987 elsif Nkind_In
(New_N
, N_Identifier
,
6988 N_Character_Literal
,
6991 or else Nkind
(New_N
) in N_Op
6993 if not Instantiating
then
6995 -- Link both nodes in order to assign subsequently the entity of
6996 -- the copy to the original node, in case this is a global
6999 Set_Associated_Node
(N
, New_N
);
7001 -- If we are within an instantiation, this is a nested generic
7002 -- that has already been analyzed at the point of definition.
7003 -- We must preserve references that were global to the enclosing
7004 -- parent at that point. Other occurrences, whether global or
7005 -- local to the current generic, must be resolved anew, so we
7006 -- reset the entity in the generic copy. A global reference has a
7007 -- smaller depth than the parent, or else the same depth in case
7008 -- both are distinct compilation units.
7010 -- A child unit is implicitly declared within the enclosing parent
7011 -- but is in fact global to it, and must be preserved.
7013 -- It is also possible for Current_Instantiated_Parent to be
7014 -- defined, and for this not to be a nested generic, namely if
7015 -- the unit is loaded through Rtsfind. In that case, the entity of
7016 -- New_N is only a link to the associated node, and not a defining
7019 -- The entities for parent units in the defining_program_unit of a
7020 -- generic child unit are established when the context of the unit
7021 -- is first analyzed, before the generic copy is made. They are
7022 -- preserved in the copy for use in ASIS queries.
7024 Ent
:= Entity
(New_N
);
7026 if No
(Current_Instantiated_Parent
.Gen_Id
) then
7028 or else Nkind
(Ent
) /= N_Defining_Identifier
7029 or else not In_Defining_Unit_Name
(N
)
7031 Set_Associated_Node
(New_N
, Empty
);
7036 not Nkind_In
(Ent
, N_Defining_Identifier
,
7037 N_Defining_Character_Literal
,
7038 N_Defining_Operator_Symbol
)
7039 or else No
(Scope
(Ent
))
7041 (Scope
(Ent
) = Current_Instantiated_Parent
.Gen_Id
7042 and then not Is_Child_Unit
(Ent
))
7044 (Scope_Depth
(Scope
(Ent
)) >
7045 Scope_Depth
(Current_Instantiated_Parent
.Gen_Id
)
7047 Get_Source_Unit
(Ent
) =
7048 Get_Source_Unit
(Current_Instantiated_Parent
.Gen_Id
))
7050 Set_Associated_Node
(New_N
, Empty
);
7053 -- Case of instantiating identifier or some other name or operator
7056 -- If the associated node is still defined, the entity in it
7057 -- is global, and must be copied to the instance. If this copy
7058 -- is being made for a body to inline, it is applied to an
7059 -- instantiated tree, and the entity is already present and
7060 -- must be also preserved.
7063 Assoc
: constant Node_Id
:= Get_Associated_Node
(N
);
7066 if Present
(Assoc
) then
7067 if Nkind
(Assoc
) = Nkind
(N
) then
7068 Set_Entity
(New_N
, Entity
(Assoc
));
7069 Check_Private_View
(N
);
7071 -- The name in the call may be a selected component if the
7072 -- call has not been analyzed yet, as may be the case for
7073 -- pre/post conditions in a generic unit.
7075 elsif Nkind
(Assoc
) = N_Function_Call
7076 and then Is_Entity_Name
(Name
(Assoc
))
7078 Set_Entity
(New_N
, Entity
(Name
(Assoc
)));
7080 elsif Nkind_In
(Assoc
, N_Defining_Identifier
,
7081 N_Defining_Character_Literal
,
7082 N_Defining_Operator_Symbol
)
7083 and then Expander_Active
7085 -- Inlining case: we are copying a tree that contains
7086 -- global entities, which are preserved in the copy to be
7087 -- used for subsequent inlining.
7092 Set_Entity
(New_N
, Empty
);
7098 -- For expanded name, we must copy the Prefix and Selector_Name
7100 if Nkind
(N
) = N_Expanded_Name
then
7102 (New_N
, Copy_Generic_Node
(Prefix
(N
), New_N
, Instantiating
));
7104 Set_Selector_Name
(New_N
,
7105 Copy_Generic_Node
(Selector_Name
(N
), New_N
, Instantiating
));
7107 -- For operators, we must copy the right operand
7109 elsif Nkind
(N
) in N_Op
then
7110 Set_Right_Opnd
(New_N
,
7111 Copy_Generic_Node
(Right_Opnd
(N
), New_N
, Instantiating
));
7113 -- And for binary operators, the left operand as well
7115 if Nkind
(N
) in N_Binary_Op
then
7116 Set_Left_Opnd
(New_N
,
7117 Copy_Generic_Node
(Left_Opnd
(N
), New_N
, Instantiating
));
7121 -- Special casing for stubs
7123 elsif Nkind
(N
) in N_Body_Stub
then
7125 -- In any case, we must copy the specification or defining
7126 -- identifier as appropriate.
7128 if Nkind
(N
) = N_Subprogram_Body_Stub
then
7129 Set_Specification
(New_N
,
7130 Copy_Generic_Node
(Specification
(N
), New_N
, Instantiating
));
7133 Set_Defining_Identifier
(New_N
,
7135 (Defining_Identifier
(N
), New_N
, Instantiating
));
7138 -- If we are not instantiating, then this is where we load and
7139 -- analyze subunits, i.e. at the point where the stub occurs. A
7140 -- more permissive system might defer this analysis to the point
7141 -- of instantiation, but this seems too complicated for now.
7143 if not Instantiating
then
7145 Subunit_Name
: constant Unit_Name_Type
:= Get_Unit_Name
(N
);
7147 Unum
: Unit_Number_Type
;
7151 -- Make sure that, if it is a subunit of the main unit that is
7152 -- preprocessed and if -gnateG is specified, the preprocessed
7153 -- file will be written.
7155 Lib
.Analysing_Subunit_Of_Main
:=
7156 Lib
.In_Extended_Main_Source_Unit
(N
);
7159 (Load_Name
=> Subunit_Name
,
7163 Lib
.Analysing_Subunit_Of_Main
:= False;
7165 -- If the proper body is not found, a warning message will be
7166 -- emitted when analyzing the stub, or later at the point of
7167 -- instantiation. Here we just leave the stub as is.
7169 if Unum
= No_Unit
then
7170 Subunits_Missing
:= True;
7171 goto Subunit_Not_Found
;
7174 Subunit
:= Cunit
(Unum
);
7176 if Nkind
(Unit
(Subunit
)) /= N_Subunit
then
7178 ("found child unit instead of expected SEPARATE subunit",
7180 Error_Msg_Sloc
:= Sloc
(N
);
7181 Error_Msg_N
("\to complete stub #", Subunit
);
7182 goto Subunit_Not_Found
;
7185 -- We must create a generic copy of the subunit, in order to
7186 -- perform semantic analysis on it, and we must replace the
7187 -- stub in the original generic unit with the subunit, in order
7188 -- to preserve non-local references within.
7190 -- Only the proper body needs to be copied. Library_Unit and
7191 -- context clause are simply inherited by the generic copy.
7192 -- Note that the copy (which may be recursive if there are
7193 -- nested subunits) must be done first, before attaching it to
7194 -- the enclosing generic.
7198 (Proper_Body
(Unit
(Subunit
)),
7199 Empty
, Instantiating
=> False);
7201 -- Now place the original proper body in the original generic
7202 -- unit. This is a body, not a compilation unit.
7204 Rewrite
(N
, Proper_Body
(Unit
(Subunit
)));
7205 Set_Is_Compilation_Unit
(Defining_Entity
(N
), False);
7206 Set_Was_Originally_Stub
(N
);
7208 -- Finally replace the body of the subunit with its copy, and
7209 -- make this new subunit into the library unit of the generic
7210 -- copy, which does not have stubs any longer.
7212 Set_Proper_Body
(Unit
(Subunit
), New_Body
);
7213 Set_Library_Unit
(New_N
, Subunit
);
7214 Inherit_Context
(Unit
(Subunit
), N
);
7217 -- If we are instantiating, this must be an error case, since
7218 -- otherwise we would have replaced the stub node by the proper body
7219 -- that corresponds. So just ignore it in the copy (i.e. we have
7220 -- copied it, and that is good enough).
7226 <<Subunit_Not_Found
>> null;
7228 -- If the node is a compilation unit, it is the subunit of a stub, which
7229 -- has been loaded already (see code below). In this case, the library
7230 -- unit field of N points to the parent unit (which is a compilation
7231 -- unit) and need not (and cannot) be copied.
7233 -- When the proper body of the stub is analyzed, the library_unit link
7234 -- is used to establish the proper context (see sem_ch10).
7236 -- The other fields of a compilation unit are copied as usual
7238 elsif Nkind
(N
) = N_Compilation_Unit
then
7240 -- This code can only be executed when not instantiating, because in
7241 -- the copy made for an instantiation, the compilation unit node has
7242 -- disappeared at the point that a stub is replaced by its proper
7245 pragma Assert
(not Instantiating
);
7247 Set_Context_Items
(New_N
,
7248 Copy_Generic_List
(Context_Items
(N
), New_N
));
7251 Copy_Generic_Node
(Unit
(N
), New_N
, False));
7253 Set_First_Inlined_Subprogram
(New_N
,
7255 (First_Inlined_Subprogram
(N
), New_N
, False));
7257 Set_Aux_Decls_Node
(New_N
,
7258 Copy_Generic_Node
(Aux_Decls_Node
(N
), New_N
, False));
7260 -- For an assignment node, the assignment is known to be semantically
7261 -- legal if we are instantiating the template. This avoids incorrect
7262 -- diagnostics in generated code.
7264 elsif Nkind
(N
) = N_Assignment_Statement
then
7266 -- Copy name and expression fields in usual manner
7269 Copy_Generic_Node
(Name
(N
), New_N
, Instantiating
));
7271 Set_Expression
(New_N
,
7272 Copy_Generic_Node
(Expression
(N
), New_N
, Instantiating
));
7274 if Instantiating
then
7275 Set_Assignment_OK
(Name
(New_N
), True);
7278 elsif Nkind_In
(N
, N_Aggregate
, N_Extension_Aggregate
) then
7279 if not Instantiating
then
7280 Set_Associated_Node
(N
, New_N
);
7283 if Present
(Get_Associated_Node
(N
))
7284 and then Nkind
(Get_Associated_Node
(N
)) = Nkind
(N
)
7286 -- In the generic the aggregate has some composite type. If at
7287 -- the point of instantiation the type has a private view,
7288 -- install the full view (and that of its ancestors, if any).
7291 T
: Entity_Id
:= (Etype
(Get_Associated_Node
(New_N
)));
7296 and then Is_Private_Type
(T
)
7302 and then Is_Tagged_Type
(T
)
7303 and then Is_Derived_Type
(T
)
7305 Rt
:= Root_Type
(T
);
7310 if Is_Private_Type
(T
) then
7321 -- Do not copy the associated node, which points to the generic copy
7322 -- of the aggregate.
7325 use Atree
.Unchecked_Access
;
7326 -- This code section is part of the implementation of an untyped
7327 -- tree traversal, so it needs direct access to node fields.
7330 Set_Field1
(New_N
, Copy_Generic_Descendant
(Field1
(N
)));
7331 Set_Field2
(New_N
, Copy_Generic_Descendant
(Field2
(N
)));
7332 Set_Field3
(New_N
, Copy_Generic_Descendant
(Field3
(N
)));
7333 Set_Field5
(New_N
, Copy_Generic_Descendant
(Field5
(N
)));
7336 -- Allocators do not have an identifier denoting the access type, so we
7337 -- must locate it through the expression to check whether the views are
7340 elsif Nkind
(N
) = N_Allocator
7341 and then Nkind
(Expression
(N
)) = N_Qualified_Expression
7342 and then Is_Entity_Name
(Subtype_Mark
(Expression
(N
)))
7343 and then Instantiating
7346 T
: constant Node_Id
:=
7347 Get_Associated_Node
(Subtype_Mark
(Expression
(N
)));
7353 -- Retrieve the allocator node in the generic copy
7355 Acc_T
:= Etype
(Parent
(Parent
(T
)));
7357 and then Is_Private_Type
(Acc_T
)
7359 Switch_View
(Acc_T
);
7366 -- For a proper body, we must catch the case of a proper body that
7367 -- replaces a stub. This represents the point at which a separate
7368 -- compilation unit, and hence template file, may be referenced, so we
7369 -- must make a new source instantiation entry for the template of the
7370 -- subunit, and ensure that all nodes in the subunit are adjusted using
7371 -- this new source instantiation entry.
7373 elsif Nkind
(N
) in N_Proper_Body
then
7375 Save_Adjustment
: constant Sloc_Adjustment
:= S_Adjustment
;
7378 if Instantiating
and then Was_Originally_Stub
(N
) then
7379 Create_Instantiation_Source
7380 (Instantiation_Node
,
7381 Defining_Entity
(N
),
7386 -- Now copy the fields of the proper body, using the new
7387 -- adjustment factor if one was needed as per test above.
7391 -- Restore the original adjustment factor in case changed
7393 S_Adjustment
:= Save_Adjustment
;
7396 -- Don't copy Ident or Comment pragmas, since the comment belongs to the
7397 -- generic unit, not to the instantiating unit.
7399 elsif Nkind
(N
) = N_Pragma
and then Instantiating
then
7401 Prag_Id
: constant Pragma_Id
:= Get_Pragma_Id
(N
);
7403 if Prag_Id
= Pragma_Ident
or else Prag_Id
= Pragma_Comment
then
7404 New_N
:= Make_Null_Statement
(Sloc
(N
));
7410 elsif Nkind_In
(N
, N_Integer_Literal
, N_Real_Literal
) then
7412 -- No descendant fields need traversing
7416 elsif Nkind
(N
) = N_String_Literal
7417 and then Present
(Etype
(N
))
7418 and then Instantiating
7420 -- If the string is declared in an outer scope, the string_literal
7421 -- subtype created for it may have the wrong scope. We force the
7422 -- reanalysis of the constant to generate a new itype in the proper
7425 Set_Etype
(New_N
, Empty
);
7426 Set_Analyzed
(New_N
, False);
7428 -- For the remaining nodes, copy their descendants recursively
7433 if Instantiating
and then Nkind
(N
) = N_Subprogram_Body
then
7434 Set_Generic_Parent
(Specification
(New_N
), N
);
7436 -- Should preserve Corresponding_Spec??? (12.3(14))
7441 end Copy_Generic_Node
;
7443 ----------------------------
7444 -- Denotes_Formal_Package --
7445 ----------------------------
7447 function Denotes_Formal_Package
7449 On_Exit
: Boolean := False;
7450 Instance
: Entity_Id
:= Empty
) return Boolean
7453 Scop
: constant Entity_Id
:= Scope
(Pack
);
7456 function Is_Actual_Of_Previous_Formal
(P
: Entity_Id
) return Boolean;
7457 -- The package in question may be an actual for a previous formal
7458 -- package P of the current instance, so examine its actuals as well.
7459 -- This must be recursive over other formal packages.
7461 ----------------------------------
7462 -- Is_Actual_Of_Previous_Formal --
7463 ----------------------------------
7465 function Is_Actual_Of_Previous_Formal
(P
: Entity_Id
) return Boolean is
7469 E1
:= First_Entity
(P
);
7470 while Present
(E1
) and then E1
/= Instance
loop
7471 if Ekind
(E1
) = E_Package
7472 and then Nkind
(Parent
(E1
)) = N_Package_Renaming_Declaration
7474 if Renamed_Object
(E1
) = Pack
then
7477 elsif E1
= P
or else Renamed_Object
(E1
) = P
then
7480 elsif Is_Actual_Of_Previous_Formal
(E1
) then
7489 end Is_Actual_Of_Previous_Formal
;
7491 -- Start of processing for Denotes_Formal_Package
7497 (Instance_Envs
.Last
).Instantiated_Parent
.Act_Id
;
7499 Par
:= Current_Instantiated_Parent
.Act_Id
;
7502 if Ekind
(Scop
) = E_Generic_Package
7503 or else Nkind
(Unit_Declaration_Node
(Scop
)) =
7504 N_Generic_Subprogram_Declaration
7508 elsif Nkind
(Original_Node
(Unit_Declaration_Node
(Pack
))) =
7509 N_Formal_Package_Declaration
7517 -- Check whether this package is associated with a formal package of
7518 -- the enclosing instantiation. Iterate over the list of renamings.
7520 E
:= First_Entity
(Par
);
7521 while Present
(E
) loop
7522 if Ekind
(E
) /= E_Package
7523 or else Nkind
(Parent
(E
)) /= N_Package_Renaming_Declaration
7527 elsif Renamed_Object
(E
) = Par
then
7530 elsif Renamed_Object
(E
) = Pack
then
7533 elsif Is_Actual_Of_Previous_Formal
(E
) then
7543 end Denotes_Formal_Package
;
7549 procedure End_Generic
is
7551 -- ??? More things could be factored out in this routine. Should
7552 -- probably be done at a later stage.
7554 Inside_A_Generic
:= Generic_Flags
.Table
(Generic_Flags
.Last
);
7555 Generic_Flags
.Decrement_Last
;
7557 Expander_Mode_Restore
;
7564 function Earlier
(N1
, N2
: Node_Id
) return Boolean is
7565 procedure Find_Depth
(P
: in out Node_Id
; D
: in out Integer);
7566 -- Find distance from given node to enclosing compilation unit
7572 procedure Find_Depth
(P
: in out Node_Id
; D
: in out Integer) is
7575 and then Nkind
(P
) /= N_Compilation_Unit
7577 P
:= True_Parent
(P
);
7582 -- Local declarations
7591 -- Start of processing for Earlier
7594 Find_Depth
(P1
, D1
);
7595 Find_Depth
(P2
, D2
);
7605 P1
:= True_Parent
(P1
);
7610 P2
:= True_Parent
(P2
);
7614 -- At this point P1 and P2 are at the same distance from the root.
7615 -- We examine their parents until we find a common declarative list.
7616 -- If we reach the root, N1 and N2 do not descend from the same
7617 -- declarative list (e.g. one is nested in the declarative part and
7618 -- the other is in a block in the statement part) and the earlier
7619 -- one is already frozen.
7621 while not Is_List_Member
(P1
)
7622 or else not Is_List_Member
(P2
)
7623 or else List_Containing
(P1
) /= List_Containing
(P2
)
7625 P1
:= True_Parent
(P1
);
7626 P2
:= True_Parent
(P2
);
7628 if Nkind
(Parent
(P1
)) = N_Subunit
then
7629 P1
:= Corresponding_Stub
(Parent
(P1
));
7632 if Nkind
(Parent
(P2
)) = N_Subunit
then
7633 P2
:= Corresponding_Stub
(Parent
(P2
));
7641 -- Expanded code usually shares the source location of the original
7642 -- construct it was generated for. This however may not necessarely
7643 -- reflect the true location of the code within the tree.
7645 -- Before comparing the slocs of the two nodes, make sure that we are
7646 -- working with correct source locations. Assume that P1 is to the left
7647 -- of P2. If either one does not come from source, traverse the common
7648 -- list heading towards the other node and locate the first source
7652 -- ----+===+===+--------------+===+===+----
7653 -- expanded code expanded code
7655 if not Comes_From_Source
(P1
) then
7656 while Present
(P1
) loop
7658 -- Neither P2 nor a source statement were located during the
7659 -- search. If we reach the end of the list, then P1 does not
7660 -- occur earlier than P2.
7663 -- start --- P2 ----- P1 --- end
7665 if No
(Next
(P1
)) then
7668 -- We encounter P2 while going to the right of the list. This
7669 -- means that P1 does indeed appear earlier.
7672 -- start --- P1 ===== P2 --- end
7673 -- expanded code in between
7678 -- No need to look any further since we have located a source
7681 elsif Comes_From_Source
(P1
) then
7691 if not Comes_From_Source
(P2
) then
7692 while Present
(P2
) loop
7694 -- Neither P1 nor a source statement were located during the
7695 -- search. If we reach the start of the list, then P1 does not
7696 -- occur earlier than P2.
7699 -- start --- P2 --- P1 --- end
7701 if No
(Prev
(P2
)) then
7704 -- We encounter P1 while going to the left of the list. This
7705 -- means that P1 does indeed appear earlier.
7708 -- start --- P1 ===== P2 --- end
7709 -- expanded code in between
7714 -- No need to look any further since we have located a source
7717 elsif Comes_From_Source
(P2
) then
7727 -- At this point either both nodes came from source or we approximated
7728 -- their source locations through neighbouring source statements.
7730 T1
:= Top_Level_Location
(Sloc
(P1
));
7731 T2
:= Top_Level_Location
(Sloc
(P2
));
7733 -- When two nodes come from the same instance, they have identical top
7734 -- level locations. To determine proper relation within the tree, check
7735 -- their locations within the template.
7738 return Sloc
(P1
) < Sloc
(P2
);
7740 -- The two nodes either come from unrelated instances or do not come
7741 -- from instantiated code at all.
7748 ----------------------
7749 -- Find_Actual_Type --
7750 ----------------------
7752 function Find_Actual_Type
7754 Gen_Type
: Entity_Id
) return Entity_Id
7756 Gen_Scope
: constant Entity_Id
:= Scope
(Gen_Type
);
7760 -- Special processing only applies to child units
7762 if not Is_Child_Unit
(Gen_Scope
) then
7763 return Get_Instance_Of
(Typ
);
7765 -- If designated or component type is itself a formal of the child unit,
7766 -- its instance is available.
7768 elsif Scope
(Typ
) = Gen_Scope
then
7769 return Get_Instance_Of
(Typ
);
7771 -- If the array or access type is not declared in the parent unit,
7772 -- no special processing needed.
7774 elsif not Is_Generic_Type
(Typ
)
7775 and then Scope
(Gen_Scope
) /= Scope
(Typ
)
7777 return Get_Instance_Of
(Typ
);
7779 -- Otherwise, retrieve designated or component type by visibility
7782 T
:= Current_Entity
(Typ
);
7783 while Present
(T
) loop
7784 if In_Open_Scopes
(Scope
(T
)) then
7787 elsif Is_Generic_Actual_Type
(T
) then
7796 end Find_Actual_Type
;
7798 ----------------------------
7799 -- Freeze_Subprogram_Body --
7800 ----------------------------
7802 procedure Freeze_Subprogram_Body
7803 (Inst_Node
: Node_Id
;
7805 Pack_Id
: Entity_Id
)
7807 Gen_Unit
: constant Entity_Id
:= Get_Generic_Entity
(Inst_Node
);
7808 Par
: constant Entity_Id
:= Scope
(Gen_Unit
);
7814 function Enclosing_Package_Body
(N
: Node_Id
) return Node_Id
;
7815 -- Find innermost package body that encloses the given node, and which
7816 -- is not a compilation unit. Freeze nodes for the instance, or for its
7817 -- enclosing body, may be inserted after the enclosing_body of the
7818 -- generic unit. Used to determine proper placement of freeze node for
7819 -- both package and subprogram instances.
7821 function Package_Freeze_Node
(B
: Node_Id
) return Node_Id
;
7822 -- Find entity for given package body, and locate or create a freeze
7825 ----------------------------
7826 -- Enclosing_Package_Body --
7827 ----------------------------
7829 function Enclosing_Package_Body
(N
: Node_Id
) return Node_Id
is
7835 and then Nkind
(Parent
(P
)) /= N_Compilation_Unit
7837 if Nkind
(P
) = N_Package_Body
then
7838 if Nkind
(Parent
(P
)) = N_Subunit
then
7839 return Corresponding_Stub
(Parent
(P
));
7845 P
:= True_Parent
(P
);
7849 end Enclosing_Package_Body
;
7851 -------------------------
7852 -- Package_Freeze_Node --
7853 -------------------------
7855 function Package_Freeze_Node
(B
: Node_Id
) return Node_Id
is
7859 if Nkind
(B
) = N_Package_Body
then
7860 Id
:= Corresponding_Spec
(B
);
7861 else pragma Assert
(Nkind
(B
) = N_Package_Body_Stub
);
7862 Id
:= Corresponding_Spec
(Proper_Body
(Unit
(Library_Unit
(B
))));
7865 Ensure_Freeze_Node
(Id
);
7866 return Freeze_Node
(Id
);
7867 end Package_Freeze_Node
;
7869 -- Start of processing of Freeze_Subprogram_Body
7872 -- If the instance and the generic body appear within the same unit, and
7873 -- the instance precedes the generic, the freeze node for the instance
7874 -- must appear after that of the generic. If the generic is nested
7875 -- within another instance I2, then current instance must be frozen
7876 -- after I2. In both cases, the freeze nodes are those of enclosing
7877 -- packages. Otherwise, the freeze node is placed at the end of the
7878 -- current declarative part.
7880 Enc_G
:= Enclosing_Package_Body
(Gen_Body
);
7881 Enc_I
:= Enclosing_Package_Body
(Inst_Node
);
7882 Ensure_Freeze_Node
(Pack_Id
);
7883 F_Node
:= Freeze_Node
(Pack_Id
);
7885 if Is_Generic_Instance
(Par
)
7886 and then Present
(Freeze_Node
(Par
))
7887 and then In_Same_Declarative_Part
(Freeze_Node
(Par
), Inst_Node
)
7889 -- The parent was a premature instantiation. Insert freeze node at
7890 -- the end the current declarative part.
7892 if ABE_Is_Certain
(Get_Package_Instantiation_Node
(Par
)) then
7893 Insert_Freeze_Node_For_Instance
(Inst_Node
, F_Node
);
7895 -- Handle the following case:
7897 -- package Parent_Inst is new ...
7900 -- procedure P ... -- this body freezes Parent_Inst
7902 -- package Inst is new ...
7904 -- In this particular scenario, the freeze node for Inst must be
7905 -- inserted in the same manner as that of Parent_Inst - before the
7906 -- next source body or at the end of the declarative list (body not
7907 -- available). If body P did not exist and Parent_Inst was frozen
7908 -- after Inst, either by a body following Inst or at the end of the
7909 -- declarative region, the freeze node for Inst must be inserted
7910 -- after that of Parent_Inst. This relation is established by
7911 -- comparing the Slocs of Parent_Inst freeze node and Inst.
7913 elsif List_Containing
(Get_Package_Instantiation_Node
(Par
)) =
7914 List_Containing
(Inst_Node
)
7915 and then Sloc
(Freeze_Node
(Par
)) < Sloc
(Inst_Node
)
7917 Insert_Freeze_Node_For_Instance
(Inst_Node
, F_Node
);
7920 Insert_After
(Freeze_Node
(Par
), F_Node
);
7923 -- The body enclosing the instance should be frozen after the body that
7924 -- includes the generic, because the body of the instance may make
7925 -- references to entities therein. If the two are not in the same
7926 -- declarative part, or if the one enclosing the instance is frozen
7927 -- already, freeze the instance at the end of the current declarative
7930 elsif Is_Generic_Instance
(Par
)
7931 and then Present
(Freeze_Node
(Par
))
7932 and then Present
(Enc_I
)
7934 if In_Same_Declarative_Part
(Freeze_Node
(Par
), Enc_I
)
7936 (Nkind
(Enc_I
) = N_Package_Body
7938 In_Same_Declarative_Part
(Freeze_Node
(Par
), Parent
(Enc_I
)))
7940 -- The enclosing package may contain several instances. Rather
7941 -- than computing the earliest point at which to insert its freeze
7942 -- node, we place it at the end of the declarative part of the
7943 -- parent of the generic.
7945 Insert_Freeze_Node_For_Instance
7946 (Freeze_Node
(Par
), Package_Freeze_Node
(Enc_I
));
7949 Insert_Freeze_Node_For_Instance
(Inst_Node
, F_Node
);
7951 elsif Present
(Enc_G
)
7952 and then Present
(Enc_I
)
7953 and then Enc_G
/= Enc_I
7954 and then Earlier
(Inst_Node
, Gen_Body
)
7956 if Nkind
(Enc_G
) = N_Package_Body
then
7957 E_G_Id
:= Corresponding_Spec
(Enc_G
);
7958 else pragma Assert
(Nkind
(Enc_G
) = N_Package_Body_Stub
);
7960 Corresponding_Spec
(Proper_Body
(Unit
(Library_Unit
(Enc_G
))));
7963 -- Freeze package that encloses instance, and place node after the
7964 -- package that encloses generic. If enclosing package is already
7965 -- frozen we have to assume it is at the proper place. This may be a
7966 -- potential ABE that requires dynamic checking. Do not add a freeze
7967 -- node if the package that encloses the generic is inside the body
7968 -- that encloses the instance, because the freeze node would be in
7969 -- the wrong scope. Additional contortions needed if the bodies are
7970 -- within a subunit.
7973 Enclosing_Body
: Node_Id
;
7976 if Nkind
(Enc_I
) = N_Package_Body_Stub
then
7977 Enclosing_Body
:= Proper_Body
(Unit
(Library_Unit
(Enc_I
)));
7979 Enclosing_Body
:= Enc_I
;
7982 if Parent
(List_Containing
(Enc_G
)) /= Enclosing_Body
then
7983 Insert_Freeze_Node_For_Instance
7984 (Enc_G
, Package_Freeze_Node
(Enc_I
));
7988 -- Freeze enclosing subunit before instance
7990 Ensure_Freeze_Node
(E_G_Id
);
7992 if not Is_List_Member
(Freeze_Node
(E_G_Id
)) then
7993 Insert_After
(Enc_G
, Freeze_Node
(E_G_Id
));
7996 Insert_Freeze_Node_For_Instance
(Inst_Node
, F_Node
);
7999 -- If none of the above, insert freeze node at the end of the current
8000 -- declarative part.
8002 Insert_Freeze_Node_For_Instance
(Inst_Node
, F_Node
);
8004 end Freeze_Subprogram_Body
;
8010 function Get_Gen_Id
(E
: Assoc_Ptr
) return Entity_Id
is
8012 return Generic_Renamings
.Table
(E
).Gen_Id
;
8015 ---------------------
8016 -- Get_Instance_Of --
8017 ---------------------
8019 function Get_Instance_Of
(A
: Entity_Id
) return Entity_Id
is
8020 Res
: constant Assoc_Ptr
:= Generic_Renamings_HTable
.Get
(A
);
8023 if Res
/= Assoc_Null
then
8024 return Generic_Renamings
.Table
(Res
).Act_Id
;
8026 -- On exit, entity is not instantiated: not a generic parameter, or
8027 -- else parameter of an inner generic unit.
8031 end Get_Instance_Of
;
8033 ------------------------------------
8034 -- Get_Package_Instantiation_Node --
8035 ------------------------------------
8037 function Get_Package_Instantiation_Node
(A
: Entity_Id
) return Node_Id
is
8038 Decl
: Node_Id
:= Unit_Declaration_Node
(A
);
8042 -- If the Package_Instantiation attribute has been set on the package
8043 -- entity, then use it directly when it (or its Original_Node) refers
8044 -- to an N_Package_Instantiation node. In principle it should be
8045 -- possible to have this field set in all cases, which should be
8046 -- investigated, and would allow this function to be significantly
8049 Inst
:= Package_Instantiation
(A
);
8051 if Present
(Inst
) then
8052 if Nkind
(Inst
) = N_Package_Instantiation
then
8055 elsif Nkind
(Original_Node
(Inst
)) = N_Package_Instantiation
then
8056 return Original_Node
(Inst
);
8060 -- If the instantiation is a compilation unit that does not need body
8061 -- then the instantiation node has been rewritten as a package
8062 -- declaration for the instance, and we return the original node.
8064 -- If it is a compilation unit and the instance node has not been
8065 -- rewritten, then it is still the unit of the compilation. Finally, if
8066 -- a body is present, this is a parent of the main unit whose body has
8067 -- been compiled for inlining purposes, and the instantiation node has
8068 -- been rewritten with the instance body.
8070 -- Otherwise the instantiation node appears after the declaration. If
8071 -- the entity is a formal package, the declaration may have been
8072 -- rewritten as a generic declaration (in the case of a formal with box)
8073 -- or left as a formal package declaration if it has actuals, and is
8074 -- found with a forward search.
8076 if Nkind
(Parent
(Decl
)) = N_Compilation_Unit
then
8077 if Nkind
(Decl
) = N_Package_Declaration
8078 and then Present
(Corresponding_Body
(Decl
))
8080 Decl
:= Unit_Declaration_Node
(Corresponding_Body
(Decl
));
8083 if Nkind
(Original_Node
(Decl
)) = N_Package_Instantiation
then
8084 return Original_Node
(Decl
);
8086 return Unit
(Parent
(Decl
));
8089 elsif Nkind
(Decl
) = N_Package_Declaration
8090 and then Nkind
(Original_Node
(Decl
)) = N_Formal_Package_Declaration
8092 return Original_Node
(Decl
);
8095 Inst
:= Next
(Decl
);
8096 while not Nkind_In
(Inst
, N_Package_Instantiation
,
8097 N_Formal_Package_Declaration
)
8104 end Get_Package_Instantiation_Node
;
8106 ------------------------
8107 -- Has_Been_Exchanged --
8108 ------------------------
8110 function Has_Been_Exchanged
(E
: Entity_Id
) return Boolean is
8114 Next
:= First_Elmt
(Exchanged_Views
);
8115 while Present
(Next
) loop
8116 if Full_View
(Node
(Next
)) = E
then
8124 end Has_Been_Exchanged
;
8130 function Hash
(F
: Entity_Id
) return HTable_Range
is
8132 return HTable_Range
(F
mod HTable_Size
);
8135 ------------------------
8136 -- Hide_Current_Scope --
8137 ------------------------
8139 procedure Hide_Current_Scope
is
8140 C
: constant Entity_Id
:= Current_Scope
;
8144 Set_Is_Hidden_Open_Scope
(C
);
8146 E
:= First_Entity
(C
);
8147 while Present
(E
) loop
8148 if Is_Immediately_Visible
(E
) then
8149 Set_Is_Immediately_Visible
(E
, False);
8150 Append_Elmt
(E
, Hidden_Entities
);
8156 -- Make the scope name invisible as well. This is necessary, but might
8157 -- conflict with calls to Rtsfind later on, in case the scope is a
8158 -- predefined one. There is no clean solution to this problem, so for
8159 -- now we depend on the user not redefining Standard itself in one of
8160 -- the parent units.
8162 if Is_Immediately_Visible
(C
) and then C
/= Standard_Standard
then
8163 Set_Is_Immediately_Visible
(C
, False);
8164 Append_Elmt
(C
, Hidden_Entities
);
8167 end Hide_Current_Scope
;
8173 procedure Init_Env
is
8174 Saved
: Instance_Env
;
8177 Saved
.Instantiated_Parent
:= Current_Instantiated_Parent
;
8178 Saved
.Exchanged_Views
:= Exchanged_Views
;
8179 Saved
.Hidden_Entities
:= Hidden_Entities
;
8180 Saved
.Current_Sem_Unit
:= Current_Sem_Unit
;
8181 Saved
.Parent_Unit_Visible
:= Parent_Unit_Visible
;
8182 Saved
.Instance_Parent_Unit
:= Instance_Parent_Unit
;
8184 -- Save configuration switches. These may be reset if the unit is a
8185 -- predefined unit, and the current mode is not Ada 2005.
8187 Save_Opt_Config_Switches
(Saved
.Switches
);
8189 Instance_Envs
.Append
(Saved
);
8191 Exchanged_Views
:= New_Elmt_List
;
8192 Hidden_Entities
:= New_Elmt_List
;
8194 -- Make dummy entry for Instantiated parent. If generic unit is legal,
8195 -- this is set properly in Set_Instance_Env.
8197 Current_Instantiated_Parent
:=
8198 (Current_Scope
, Current_Scope
, Assoc_Null
);
8201 ------------------------------
8202 -- In_Same_Declarative_Part --
8203 ------------------------------
8205 function In_Same_Declarative_Part
8207 Inst
: Node_Id
) return Boolean
8209 Decls
: constant Node_Id
:= Parent
(F_Node
);
8210 Nod
: Node_Id
:= Parent
(Inst
);
8213 while Present
(Nod
) loop
8217 elsif Nkind_In
(Nod
, N_Subprogram_Body
,
8219 N_Package_Declaration
,
8226 elsif Nkind
(Nod
) = N_Subunit
then
8227 Nod
:= Corresponding_Stub
(Nod
);
8229 elsif Nkind
(Nod
) = N_Compilation_Unit
then
8233 Nod
:= Parent
(Nod
);
8238 end In_Same_Declarative_Part
;
8240 ---------------------
8241 -- In_Main_Context --
8242 ---------------------
8244 function In_Main_Context
(E
: Entity_Id
) return Boolean is
8250 if not Is_Compilation_Unit
(E
)
8251 or else Ekind
(E
) /= E_Package
8252 or else In_Private_Part
(E
)
8257 Context
:= Context_Items
(Cunit
(Main_Unit
));
8259 Clause
:= First
(Context
);
8260 while Present
(Clause
) loop
8261 if Nkind
(Clause
) = N_With_Clause
then
8262 Nam
:= Name
(Clause
);
8264 -- If the current scope is part of the context of the main unit,
8265 -- analysis of the corresponding with_clause is not complete, and
8266 -- the entity is not set. We use the Chars field directly, which
8267 -- might produce false positives in rare cases, but guarantees
8268 -- that we produce all the instance bodies we will need.
8270 if (Is_Entity_Name
(Nam
) and then Chars
(Nam
) = Chars
(E
))
8271 or else (Nkind
(Nam
) = N_Selected_Component
8272 and then Chars
(Selector_Name
(Nam
)) = Chars
(E
))
8282 end In_Main_Context
;
8284 ---------------------
8285 -- Inherit_Context --
8286 ---------------------
8288 procedure Inherit_Context
(Gen_Decl
: Node_Id
; Inst
: Node_Id
) is
8289 Current_Context
: List_Id
;
8290 Current_Unit
: Node_Id
;
8299 if Nkind
(Parent
(Gen_Decl
)) = N_Compilation_Unit
then
8301 -- The inherited context is attached to the enclosing compilation
8302 -- unit. This is either the main unit, or the declaration for the
8303 -- main unit (in case the instantiation appears within the package
8304 -- declaration and the main unit is its body).
8306 Current_Unit
:= Parent
(Inst
);
8307 while Present
(Current_Unit
)
8308 and then Nkind
(Current_Unit
) /= N_Compilation_Unit
8310 Current_Unit
:= Parent
(Current_Unit
);
8313 Current_Context
:= Context_Items
(Current_Unit
);
8315 Item
:= First
(Context_Items
(Parent
(Gen_Decl
)));
8316 while Present
(Item
) loop
8317 if Nkind
(Item
) = N_With_Clause
then
8318 Lib_Unit
:= Library_Unit
(Item
);
8320 -- Take care to prevent direct cyclic with's
8322 if Lib_Unit
/= Current_Unit
then
8324 -- Do not add a unit if it is already in the context
8326 Clause
:= First
(Current_Context
);
8328 while Present
(Clause
) loop
8329 if Nkind
(Clause
) = N_With_Clause
and then
8330 Library_Unit
(Clause
) = Lib_Unit
8340 New_I
:= New_Copy
(Item
);
8341 Set_Implicit_With
(New_I
, True);
8342 Set_Implicit_With_From_Instantiation
(New_I
, True);
8343 Append
(New_I
, Current_Context
);
8351 end Inherit_Context
;
8357 procedure Initialize
is
8359 Generic_Renamings
.Init
;
8362 Generic_Renamings_HTable
.Reset
;
8363 Circularity_Detected
:= False;
8364 Exchanged_Views
:= No_Elist
;
8365 Hidden_Entities
:= No_Elist
;
8368 -------------------------------------
8369 -- Insert_Freeze_Node_For_Instance --
8370 -------------------------------------
8372 procedure Insert_Freeze_Node_For_Instance
8381 function Enclosing_Body
(N
: Node_Id
) return Node_Id
;
8382 -- Find enclosing package or subprogram body, if any. Freeze node may
8383 -- be placed at end of current declarative list if previous instance
8384 -- and current one have different enclosing bodies.
8386 function Previous_Instance
(Gen
: Entity_Id
) return Entity_Id
;
8387 -- Find the local instance, if any, that declares the generic that is
8388 -- being instantiated. If present, the freeze node for this instance
8389 -- must follow the freeze node for the previous instance.
8391 --------------------
8392 -- Enclosing_Body --
8393 --------------------
8395 function Enclosing_Body
(N
: Node_Id
) return Node_Id
is
8401 and then Nkind
(Parent
(P
)) /= N_Compilation_Unit
8403 if Nkind_In
(P
, N_Package_Body
, N_Subprogram_Body
) then
8404 if Nkind
(Parent
(P
)) = N_Subunit
then
8405 return Corresponding_Stub
(Parent
(P
));
8411 P
:= True_Parent
(P
);
8417 -----------------------
8418 -- Previous_Instance --
8419 -----------------------
8421 function Previous_Instance
(Gen
: Entity_Id
) return Entity_Id
is
8427 and then S
/= Standard_Standard
8429 if Is_Generic_Instance
(S
)
8430 and then In_Same_Source_Unit
(S
, N
)
8439 end Previous_Instance
;
8441 -- Start of processing for Insert_Freeze_Node_For_Instance
8444 if not Is_List_Member
(F_Node
) then
8446 Decls
:= List_Containing
(N
);
8447 Inst
:= Entity
(F_Node
);
8448 Par_N
:= Parent
(Decls
);
8450 -- When processing a subprogram instantiation, utilize the actual
8451 -- subprogram instantiation rather than its package wrapper as it
8452 -- carries all the context information.
8454 if Is_Wrapper_Package
(Inst
) then
8455 Inst
:= Related_Instance
(Inst
);
8458 -- If this is a package instance, check whether the generic is
8459 -- declared in a previous instance and the current instance is
8460 -- not within the previous one.
8462 if Present
(Generic_Parent
(Parent
(Inst
)))
8463 and then Is_In_Main_Unit
(N
)
8466 Enclosing_N
: constant Node_Id
:= Enclosing_Body
(N
);
8467 Par_I
: constant Entity_Id
:=
8469 (Generic_Parent
(Parent
(Inst
)));
8474 and then Earlier
(N
, Freeze_Node
(Par_I
))
8476 Scop
:= Scope
(Inst
);
8478 -- If the current instance is within the one that contains
8479 -- the generic, the freeze node for the current one must
8480 -- appear in the current declarative part. Ditto, if the
8481 -- current instance is within another package instance or
8482 -- within a body that does not enclose the current instance.
8483 -- In these three cases the freeze node of the previous
8484 -- instance is not relevant.
8486 while Present
(Scop
)
8487 and then Scop
/= Standard_Standard
8489 exit when Scop
= Par_I
8491 (Is_Generic_Instance
(Scop
)
8492 and then Scope_Depth
(Scop
) > Scope_Depth
(Par_I
));
8493 Scop
:= Scope
(Scop
);
8496 -- Previous instance encloses current instance
8498 if Scop
= Par_I
then
8501 -- If the next node is a source body we must freeze in
8502 -- the current scope as well.
8504 elsif Present
(Next
(N
))
8505 and then Nkind_In
(Next
(N
),
8506 N_Subprogram_Body
, N_Package_Body
)
8507 and then Comes_From_Source
(Next
(N
))
8511 -- Current instance is within an unrelated instance
8513 elsif Is_Generic_Instance
(Scop
) then
8516 -- Current instance is within an unrelated body
8518 elsif Present
(Enclosing_N
)
8519 and then Enclosing_N
/= Enclosing_Body
(Par_I
)
8524 Insert_After
(Freeze_Node
(Par_I
), F_Node
);
8531 -- When the instantiation occurs in a package declaration, append the
8532 -- freeze node to the private declarations (if any).
8534 if Nkind
(Par_N
) = N_Package_Specification
8535 and then Decls
= Visible_Declarations
(Par_N
)
8536 and then Present
(Private_Declarations
(Par_N
))
8537 and then not Is_Empty_List
(Private_Declarations
(Par_N
))
8539 Decls
:= Private_Declarations
(Par_N
);
8540 Decl
:= First
(Decls
);
8543 -- Determine the proper freeze point of a package instantiation. We
8544 -- adhere to the general rule of a package or subprogram body causing
8545 -- freezing of anything before it in the same declarative region. In
8546 -- this case, the proper freeze point of a package instantiation is
8547 -- before the first source body which follows, or before a stub. This
8548 -- ensures that entities coming from the instance are already frozen
8549 -- and usable in source bodies.
8551 if Nkind
(Par_N
) /= N_Package_Declaration
8552 and then Ekind
(Inst
) = E_Package
8553 and then Is_Generic_Instance
(Inst
)
8555 not In_Same_Source_Unit
(Generic_Parent
(Parent
(Inst
)), Inst
)
8557 while Present
(Decl
) loop
8558 if (Nkind
(Decl
) in N_Unit_Body
8560 Nkind
(Decl
) in N_Body_Stub
)
8561 and then Comes_From_Source
(Decl
)
8563 Insert_Before
(Decl
, F_Node
);
8571 -- In a package declaration, or if no previous body, insert at end
8574 Set_Sloc
(F_Node
, Sloc
(Last
(Decls
)));
8575 Insert_After
(Last
(Decls
), F_Node
);
8577 end Insert_Freeze_Node_For_Instance
;
8583 procedure Install_Body
8584 (Act_Body
: Node_Id
;
8589 Act_Id
: constant Entity_Id
:= Corresponding_Spec
(Act_Body
);
8590 Act_Unit
: constant Node_Id
:= Unit
(Cunit
(Get_Source_Unit
(N
)));
8591 Gen_Id
: constant Entity_Id
:= Corresponding_Spec
(Gen_Body
);
8592 Par
: constant Entity_Id
:= Scope
(Gen_Id
);
8593 Gen_Unit
: constant Node_Id
:=
8594 Unit
(Cunit
(Get_Source_Unit
(Gen_Decl
)));
8595 Orig_Body
: Node_Id
:= Gen_Body
;
8597 Body_Unit
: Node_Id
;
8599 Must_Delay
: Boolean;
8601 function In_Same_Enclosing_Subp
return Boolean;
8602 -- Check whether instance and generic body are within same subprogram.
8604 function True_Sloc
(N
: Node_Id
) return Source_Ptr
;
8605 -- If the instance is nested inside a generic unit, the Sloc of the
8606 -- instance indicates the place of the original definition, not the
8607 -- point of the current enclosing instance. Pending a better usage of
8608 -- Slocs to indicate instantiation places, we determine the place of
8609 -- origin of a node by finding the maximum sloc of any ancestor node.
8610 -- Why is this not equivalent to Top_Level_Location ???
8612 ----------------------------
8613 -- In_Same_Enclosing_Subp --
8614 ----------------------------
8616 function In_Same_Enclosing_Subp
return Boolean is
8621 Scop
:= Scope
(Act_Id
);
8622 while Scop
/= Standard_Standard
8623 and then not Is_Overloadable
(Scop
)
8625 Scop
:= Scope
(Scop
);
8628 if Scop
= Standard_Standard
then
8634 Scop
:= Scope
(Gen_Id
);
8635 while Scop
/= Standard_Standard
loop
8639 Scop
:= Scope
(Scop
);
8644 end In_Same_Enclosing_Subp
;
8650 function True_Sloc
(N
: Node_Id
) return Source_Ptr
is
8657 while Present
(N1
) and then N1
/= Act_Unit
loop
8658 if Sloc
(N1
) > Res
then
8668 -- Start of processing for Install_Body
8671 -- If the body is a subunit, the freeze point is the corresponding stub
8672 -- in the current compilation, not the subunit itself.
8674 if Nkind
(Parent
(Gen_Body
)) = N_Subunit
then
8675 Orig_Body
:= Corresponding_Stub
(Parent
(Gen_Body
));
8677 Orig_Body
:= Gen_Body
;
8680 Body_Unit
:= Unit
(Cunit
(Get_Source_Unit
(Orig_Body
)));
8682 -- If the instantiation and the generic definition appear in the same
8683 -- package declaration, this is an early instantiation. If they appear
8684 -- in the same declarative part, it is an early instantiation only if
8685 -- the generic body appears textually later, and the generic body is
8686 -- also in the main unit.
8688 -- If instance is nested within a subprogram, and the generic body
8689 -- is not, the instance is delayed because the enclosing body is. If
8690 -- instance and body are within the same scope, or the same subprogram
8691 -- body, indicate explicitly that the instance is delayed.
8694 (Gen_Unit
= Act_Unit
8695 and then (Nkind_In
(Gen_Unit
, N_Package_Declaration
,
8696 N_Generic_Package_Declaration
)
8697 or else (Gen_Unit
= Body_Unit
8698 and then True_Sloc
(N
) < Sloc
(Orig_Body
)))
8699 and then Is_In_Main_Unit
(Gen_Unit
)
8700 and then (Scope
(Act_Id
) = Scope
(Gen_Id
)
8701 or else In_Same_Enclosing_Subp
));
8703 -- If this is an early instantiation, the freeze node is placed after
8704 -- the generic body. Otherwise, if the generic appears in an instance,
8705 -- we cannot freeze the current instance until the outer one is frozen.
8706 -- This is only relevant if the current instance is nested within some
8707 -- inner scope not itself within the outer instance. If this scope is
8708 -- a package body in the same declarative part as the outer instance,
8709 -- then that body needs to be frozen after the outer instance. Finally,
8710 -- if no delay is needed, we place the freeze node at the end of the
8711 -- current declarative part.
8713 if Expander_Active
then
8714 Ensure_Freeze_Node
(Act_Id
);
8715 F_Node
:= Freeze_Node
(Act_Id
);
8718 Insert_After
(Orig_Body
, F_Node
);
8720 elsif Is_Generic_Instance
(Par
)
8721 and then Present
(Freeze_Node
(Par
))
8722 and then Scope
(Act_Id
) /= Par
8724 -- Freeze instance of inner generic after instance of enclosing
8727 if In_Same_Declarative_Part
(Freeze_Node
(Par
), N
) then
8729 -- Handle the following case:
8731 -- package Parent_Inst is new ...
8734 -- procedure P ... -- this body freezes Parent_Inst
8736 -- package Inst is new ...
8738 -- In this particular scenario, the freeze node for Inst must
8739 -- be inserted in the same manner as that of Parent_Inst,
8740 -- before the next source body or at the end of the declarative
8741 -- list (body not available). If body P did not exist and
8742 -- Parent_Inst was frozen after Inst, either by a body
8743 -- following Inst or at the end of the declarative region,
8744 -- the freeze node for Inst must be inserted after that of
8745 -- Parent_Inst. This relation is established by comparing
8746 -- the Slocs of Parent_Inst freeze node and Inst.
8748 if List_Containing
(Get_Package_Instantiation_Node
(Par
)) =
8750 and then Sloc
(Freeze_Node
(Par
)) < Sloc
(N
)
8752 Insert_Freeze_Node_For_Instance
(N
, F_Node
);
8754 Insert_After
(Freeze_Node
(Par
), F_Node
);
8757 -- Freeze package enclosing instance of inner generic after
8758 -- instance of enclosing generic.
8760 elsif Nkind_In
(Parent
(N
), N_Package_Body
, N_Subprogram_Body
)
8761 and then In_Same_Declarative_Part
(Freeze_Node
(Par
), Parent
(N
))
8764 Enclosing
: Entity_Id
;
8767 Enclosing
:= Corresponding_Spec
(Parent
(N
));
8769 if No
(Enclosing
) then
8770 Enclosing
:= Defining_Entity
(Parent
(N
));
8773 Insert_Freeze_Node_For_Instance
(N
, F_Node
);
8774 Ensure_Freeze_Node
(Enclosing
);
8776 if not Is_List_Member
(Freeze_Node
(Enclosing
)) then
8778 -- The enclosing context is a subunit, insert the freeze
8779 -- node after the stub.
8781 if Nkind
(Parent
(Parent
(N
))) = N_Subunit
then
8782 Insert_Freeze_Node_For_Instance
8783 (Corresponding_Stub
(Parent
(Parent
(N
))),
8784 Freeze_Node
(Enclosing
));
8786 -- The enclosing context is a package with a stub body
8787 -- which has already been replaced by the real body.
8788 -- Insert the freeze node after the actual body.
8790 elsif Ekind
(Enclosing
) = E_Package
8791 and then Present
(Body_Entity
(Enclosing
))
8792 and then Was_Originally_Stub
8793 (Parent
(Body_Entity
(Enclosing
)))
8795 Insert_Freeze_Node_For_Instance
8796 (Parent
(Body_Entity
(Enclosing
)),
8797 Freeze_Node
(Enclosing
));
8799 -- The parent instance has been frozen before the body of
8800 -- the enclosing package, insert the freeze node after
8803 elsif List_Containing
(Freeze_Node
(Par
)) =
8804 List_Containing
(Parent
(N
))
8805 and then Sloc
(Freeze_Node
(Par
)) < Sloc
(Parent
(N
))
8807 Insert_Freeze_Node_For_Instance
8808 (Parent
(N
), Freeze_Node
(Enclosing
));
8812 (Freeze_Node
(Par
), Freeze_Node
(Enclosing
));
8818 Insert_Freeze_Node_For_Instance
(N
, F_Node
);
8822 Insert_Freeze_Node_For_Instance
(N
, F_Node
);
8826 Set_Is_Frozen
(Act_Id
);
8827 Insert_Before
(N
, Act_Body
);
8828 Mark_Rewrite_Insertion
(Act_Body
);
8831 -----------------------------
8832 -- Install_Formal_Packages --
8833 -----------------------------
8835 procedure Install_Formal_Packages
(Par
: Entity_Id
) is
8838 Gen_E
: Entity_Id
:= Empty
;
8841 E
:= First_Entity
(Par
);
8843 -- If we are installing an instance parent, locate the formal packages
8844 -- of its generic parent.
8846 if Is_Generic_Instance
(Par
) then
8847 Gen
:= Generic_Parent
(Package_Specification
(Par
));
8848 Gen_E
:= First_Entity
(Gen
);
8851 while Present
(E
) loop
8852 if Ekind
(E
) = E_Package
8853 and then Nkind
(Parent
(E
)) = N_Package_Renaming_Declaration
8855 -- If this is the renaming for the parent instance, done
8857 if Renamed_Object
(E
) = Par
then
8860 -- The visibility of a formal of an enclosing generic is already
8863 elsif Denotes_Formal_Package
(E
) then
8866 elsif Present
(Associated_Formal_Package
(E
)) then
8867 Check_Generic_Actuals
(Renamed_Object
(E
), True);
8868 Set_Is_Hidden
(E
, False);
8870 -- Find formal package in generic unit that corresponds to
8871 -- (instance of) formal package in instance.
8873 while Present
(Gen_E
) and then Chars
(Gen_E
) /= Chars
(E
) loop
8874 Next_Entity
(Gen_E
);
8877 if Present
(Gen_E
) then
8878 Map_Formal_Package_Entities
(Gen_E
, E
);
8884 if Present
(Gen_E
) then
8885 Next_Entity
(Gen_E
);
8888 end Install_Formal_Packages
;
8890 --------------------
8891 -- Install_Parent --
8892 --------------------
8894 procedure Install_Parent
(P
: Entity_Id
; In_Body
: Boolean := False) is
8895 Ancestors
: constant Elist_Id
:= New_Elmt_List
;
8896 S
: constant Entity_Id
:= Current_Scope
;
8897 Inst_Par
: Entity_Id
;
8898 First_Par
: Entity_Id
;
8899 Inst_Node
: Node_Id
;
8900 Gen_Par
: Entity_Id
;
8901 First_Gen
: Entity_Id
;
8904 procedure Install_Noninstance_Specs
(Par
: Entity_Id
);
8905 -- Install the scopes of noninstance parent units ending with Par
8907 procedure Install_Spec
(Par
: Entity_Id
);
8908 -- The child unit is within the declarative part of the parent, so the
8909 -- declarations within the parent are immediately visible.
8911 -------------------------------
8912 -- Install_Noninstance_Specs --
8913 -------------------------------
8915 procedure Install_Noninstance_Specs
(Par
: Entity_Id
) is
8918 and then Par
/= Standard_Standard
8919 and then not In_Open_Scopes
(Par
)
8921 Install_Noninstance_Specs
(Scope
(Par
));
8924 end Install_Noninstance_Specs
;
8930 procedure Install_Spec
(Par
: Entity_Id
) is
8931 Spec
: constant Node_Id
:= Package_Specification
(Par
);
8934 -- If this parent of the child instance is a top-level unit,
8935 -- then record the unit and its visibility for later resetting in
8936 -- Remove_Parent. We exclude units that are generic instances, as we
8937 -- only want to record this information for the ultimate top-level
8938 -- noninstance parent (is that always correct???).
8940 if Scope
(Par
) = Standard_Standard
8941 and then not Is_Generic_Instance
(Par
)
8943 Parent_Unit_Visible
:= Is_Immediately_Visible
(Par
);
8944 Instance_Parent_Unit
:= Par
;
8947 -- Open the parent scope and make it and its declarations visible.
8948 -- If this point is not within a body, then only the visible
8949 -- declarations should be made visible, and installation of the
8950 -- private declarations is deferred until the appropriate point
8951 -- within analysis of the spec being instantiated (see the handling
8952 -- of parent visibility in Analyze_Package_Specification). This is
8953 -- relaxed in the case where the parent unit is Ada.Tags, to avoid
8954 -- private view problems that occur when compiling instantiations of
8955 -- a generic child of that package (Generic_Dispatching_Constructor).
8956 -- If the instance freezes a tagged type, inlinings of operations
8957 -- from Ada.Tags may need the full view of type Tag. If inlining took
8958 -- proper account of establishing visibility of inlined subprograms'
8959 -- parents then it should be possible to remove this
8960 -- special check. ???
8963 Set_Is_Immediately_Visible
(Par
);
8964 Install_Visible_Declarations
(Par
);
8965 Set_Use
(Visible_Declarations
(Spec
));
8967 if In_Body
or else Is_RTU
(Par
, Ada_Tags
) then
8968 Install_Private_Declarations
(Par
);
8969 Set_Use
(Private_Declarations
(Spec
));
8973 -- Start of processing for Install_Parent
8976 -- We need to install the parent instance to compile the instantiation
8977 -- of the child, but the child instance must appear in the current
8978 -- scope. Given that we cannot place the parent above the current scope
8979 -- in the scope stack, we duplicate the current scope and unstack both
8980 -- after the instantiation is complete.
8982 -- If the parent is itself the instantiation of a child unit, we must
8983 -- also stack the instantiation of its parent, and so on. Each such
8984 -- ancestor is the prefix of the name in a prior instantiation.
8986 -- If this is a nested instance, the parent unit itself resolves to
8987 -- a renaming of the parent instance, whose declaration we need.
8989 -- Finally, the parent may be a generic (not an instance) when the
8990 -- child unit appears as a formal package.
8994 if Present
(Renamed_Entity
(Inst_Par
)) then
8995 Inst_Par
:= Renamed_Entity
(Inst_Par
);
8998 First_Par
:= Inst_Par
;
9000 Gen_Par
:= Generic_Parent
(Package_Specification
(Inst_Par
));
9002 First_Gen
:= Gen_Par
;
9004 while Present
(Gen_Par
)
9005 and then Is_Child_Unit
(Gen_Par
)
9007 -- Load grandparent instance as well
9009 Inst_Node
:= Get_Package_Instantiation_Node
(Inst_Par
);
9011 if Nkind
(Name
(Inst_Node
)) = N_Expanded_Name
then
9012 Inst_Par
:= Entity
(Prefix
(Name
(Inst_Node
)));
9014 if Present
(Renamed_Entity
(Inst_Par
)) then
9015 Inst_Par
:= Renamed_Entity
(Inst_Par
);
9018 Gen_Par
:= Generic_Parent
(Package_Specification
(Inst_Par
));
9020 if Present
(Gen_Par
) then
9021 Prepend_Elmt
(Inst_Par
, Ancestors
);
9024 -- Parent is not the name of an instantiation
9026 Install_Noninstance_Specs
(Inst_Par
);
9037 if Present
(First_Gen
) then
9038 Append_Elmt
(First_Par
, Ancestors
);
9040 Install_Noninstance_Specs
(First_Par
);
9043 if not Is_Empty_Elmt_List
(Ancestors
) then
9044 Elmt
:= First_Elmt
(Ancestors
);
9045 while Present
(Elmt
) loop
9046 Install_Spec
(Node
(Elmt
));
9047 Install_Formal_Packages
(Node
(Elmt
));
9057 -------------------------------
9058 -- Install_Hidden_Primitives --
9059 -------------------------------
9061 procedure Install_Hidden_Primitives
9062 (Prims_List
: in out Elist_Id
;
9067 List
: Elist_Id
:= No_Elist
;
9068 Prim_G_Elmt
: Elmt_Id
;
9069 Prim_A_Elmt
: Elmt_Id
;
9074 -- No action needed in case of serious errors because we cannot trust
9075 -- in the order of primitives
9077 if Serious_Errors_Detected
> 0 then
9080 -- No action possible if we don't have available the list of primitive
9084 or else not Is_Record_Type
(Gen_T
)
9085 or else not Is_Tagged_Type
(Gen_T
)
9086 or else not Is_Record_Type
(Act_T
)
9087 or else not Is_Tagged_Type
(Act_T
)
9091 -- There is no need to handle interface types since their primitives
9094 elsif Is_Interface
(Gen_T
) then
9098 Prim_G_Elmt
:= First_Elmt
(Primitive_Operations
(Gen_T
));
9100 if not Is_Class_Wide_Type
(Act_T
) then
9101 Prim_A_Elmt
:= First_Elmt
(Primitive_Operations
(Act_T
));
9103 Prim_A_Elmt
:= First_Elmt
(Primitive_Operations
(Root_Type
(Act_T
)));
9107 -- Skip predefined primitives in the generic formal
9109 while Present
(Prim_G_Elmt
)
9110 and then Is_Predefined_Dispatching_Operation
(Node
(Prim_G_Elmt
))
9112 Next_Elmt
(Prim_G_Elmt
);
9115 -- Skip predefined primitives in the generic actual
9117 while Present
(Prim_A_Elmt
)
9118 and then Is_Predefined_Dispatching_Operation
(Node
(Prim_A_Elmt
))
9120 Next_Elmt
(Prim_A_Elmt
);
9123 exit when No
(Prim_G_Elmt
) or else No
(Prim_A_Elmt
);
9125 Prim_G
:= Node
(Prim_G_Elmt
);
9126 Prim_A
:= Node
(Prim_A_Elmt
);
9128 -- There is no need to handle interface primitives because their
9129 -- primitives are not hidden
9131 exit when Present
(Interface_Alias
(Prim_G
));
9133 -- Here we install one hidden primitive
9135 if Chars
(Prim_G
) /= Chars
(Prim_A
)
9136 and then Has_Suffix
(Prim_A
, 'P')
9137 and then Remove_Suffix
(Prim_A
, 'P') = Chars
(Prim_G
)
9139 Set_Chars
(Prim_A
, Chars
(Prim_G
));
9140 Append_New_Elmt
(Prim_A
, To
=> List
);
9143 Next_Elmt
(Prim_A_Elmt
);
9144 Next_Elmt
(Prim_G_Elmt
);
9147 -- Append the elements to the list of temporarily visible primitives
9148 -- avoiding duplicates.
9150 if Present
(List
) then
9151 if No
(Prims_List
) then
9152 Prims_List
:= New_Elmt_List
;
9155 Elmt
:= First_Elmt
(List
);
9156 while Present
(Elmt
) loop
9157 Append_Unique_Elmt
(Node
(Elmt
), Prims_List
);
9161 end Install_Hidden_Primitives
;
9163 -------------------------------
9164 -- Restore_Hidden_Primitives --
9165 -------------------------------
9167 procedure Restore_Hidden_Primitives
(Prims_List
: in out Elist_Id
) is
9168 Prim_Elmt
: Elmt_Id
;
9172 if Prims_List
/= No_Elist
then
9173 Prim_Elmt
:= First_Elmt
(Prims_List
);
9174 while Present
(Prim_Elmt
) loop
9175 Prim
:= Node
(Prim_Elmt
);
9176 Set_Chars
(Prim
, Add_Suffix
(Prim
, 'P'));
9177 Next_Elmt
(Prim_Elmt
);
9180 Prims_List
:= No_Elist
;
9182 end Restore_Hidden_Primitives
;
9184 --------------------------------
9185 -- Instantiate_Formal_Package --
9186 --------------------------------
9188 function Instantiate_Formal_Package
9191 Analyzed_Formal
: Node_Id
) return List_Id
9193 Loc
: constant Source_Ptr
:= Sloc
(Actual
);
9194 Actual_Pack
: Entity_Id
;
9195 Formal_Pack
: Entity_Id
;
9196 Gen_Parent
: Entity_Id
;
9199 Parent_Spec
: Node_Id
;
9201 procedure Find_Matching_Actual
9203 Act
: in out Entity_Id
);
9204 -- We need to associate each formal entity in the formal package with
9205 -- the corresponding entity in the actual package. The actual package
9206 -- has been analyzed and possibly expanded, and as a result there is
9207 -- no one-to-one correspondence between the two lists (for example,
9208 -- the actual may include subtypes, itypes, and inherited primitive
9209 -- operations, interspersed among the renaming declarations for the
9210 -- actuals) . We retrieve the corresponding actual by name because each
9211 -- actual has the same name as the formal, and they do appear in the
9214 function Get_Formal_Entity
(N
: Node_Id
) return Entity_Id
;
9215 -- Retrieve entity of defining entity of generic formal parameter.
9216 -- Only the declarations of formals need to be considered when
9217 -- linking them to actuals, but the declarative list may include
9218 -- internal entities generated during analysis, and those are ignored.
9220 procedure Match_Formal_Entity
9221 (Formal_Node
: Node_Id
;
9222 Formal_Ent
: Entity_Id
;
9223 Actual_Ent
: Entity_Id
);
9224 -- Associates the formal entity with the actual. In the case where
9225 -- Formal_Ent is a formal package, this procedure iterates through all
9226 -- of its formals and enters associations between the actuals occurring
9227 -- in the formal package's corresponding actual package (given by
9228 -- Actual_Ent) and the formal package's formal parameters. This
9229 -- procedure recurses if any of the parameters is itself a package.
9231 function Is_Instance_Of
9232 (Act_Spec
: Entity_Id
;
9233 Gen_Anc
: Entity_Id
) return Boolean;
9234 -- The actual can be an instantiation of a generic within another
9235 -- instance, in which case there is no direct link from it to the
9236 -- original generic ancestor. In that case, we recognize that the
9237 -- ultimate ancestor is the same by examining names and scopes.
9239 procedure Process_Nested_Formal
(Formal
: Entity_Id
);
9240 -- If the current formal is declared with a box, its own formals are
9241 -- visible in the instance, as they were in the generic, and their
9242 -- Hidden flag must be reset. If some of these formals are themselves
9243 -- packages declared with a box, the processing must be recursive.
9245 --------------------------
9246 -- Find_Matching_Actual --
9247 --------------------------
9249 procedure Find_Matching_Actual
9251 Act
: in out Entity_Id
)
9253 Formal_Ent
: Entity_Id
;
9256 case Nkind
(Original_Node
(F
)) is
9257 when N_Formal_Object_Declaration |
9258 N_Formal_Type_Declaration
=>
9259 Formal_Ent
:= Defining_Identifier
(F
);
9261 while Chars
(Act
) /= Chars
(Formal_Ent
) loop
9265 when N_Formal_Subprogram_Declaration |
9266 N_Formal_Package_Declaration |
9267 N_Package_Declaration |
9268 N_Generic_Package_Declaration
=>
9269 Formal_Ent
:= Defining_Entity
(F
);
9271 while Chars
(Act
) /= Chars
(Formal_Ent
) loop
9276 raise Program_Error
;
9278 end Find_Matching_Actual
;
9280 -------------------------
9281 -- Match_Formal_Entity --
9282 -------------------------
9284 procedure Match_Formal_Entity
9285 (Formal_Node
: Node_Id
;
9286 Formal_Ent
: Entity_Id
;
9287 Actual_Ent
: Entity_Id
)
9289 Act_Pkg
: Entity_Id
;
9292 Set_Instance_Of
(Formal_Ent
, Actual_Ent
);
9294 if Ekind
(Actual_Ent
) = E_Package
then
9296 -- Record associations for each parameter
9298 Act_Pkg
:= Actual_Ent
;
9301 A_Ent
: Entity_Id
:= First_Entity
(Act_Pkg
);
9310 -- Retrieve the actual given in the formal package declaration
9312 Actual
:= Entity
(Name
(Original_Node
(Formal_Node
)));
9314 -- The actual in the formal package declaration may be a
9315 -- renamed generic package, in which case we want to retrieve
9316 -- the original generic in order to traverse its formal part.
9318 if Present
(Renamed_Entity
(Actual
)) then
9319 Gen_Decl
:= Unit_Declaration_Node
(Renamed_Entity
(Actual
));
9321 Gen_Decl
:= Unit_Declaration_Node
(Actual
);
9324 Formals
:= Generic_Formal_Declarations
(Gen_Decl
);
9326 if Present
(Formals
) then
9327 F_Node
:= First_Non_Pragma
(Formals
);
9332 while Present
(A_Ent
)
9333 and then Present
(F_Node
)
9334 and then A_Ent
/= First_Private_Entity
(Act_Pkg
)
9336 F_Ent
:= Get_Formal_Entity
(F_Node
);
9338 if Present
(F_Ent
) then
9340 -- This is a formal of the original package. Record
9341 -- association and recurse.
9343 Find_Matching_Actual
(F_Node
, A_Ent
);
9344 Match_Formal_Entity
(F_Node
, F_Ent
, A_Ent
);
9345 Next_Entity
(A_Ent
);
9348 Next_Non_Pragma
(F_Node
);
9352 end Match_Formal_Entity
;
9354 -----------------------
9355 -- Get_Formal_Entity --
9356 -----------------------
9358 function Get_Formal_Entity
(N
: Node_Id
) return Entity_Id
is
9359 Kind
: constant Node_Kind
:= Nkind
(Original_Node
(N
));
9362 when N_Formal_Object_Declaration
=>
9363 return Defining_Identifier
(N
);
9365 when N_Formal_Type_Declaration
=>
9366 return Defining_Identifier
(N
);
9368 when N_Formal_Subprogram_Declaration
=>
9369 return Defining_Unit_Name
(Specification
(N
));
9371 when N_Formal_Package_Declaration
=>
9372 return Defining_Identifier
(Original_Node
(N
));
9374 when N_Generic_Package_Declaration
=>
9375 return Defining_Identifier
(Original_Node
(N
));
9377 -- All other declarations are introduced by semantic analysis and
9378 -- have no match in the actual.
9383 end Get_Formal_Entity
;
9385 --------------------
9386 -- Is_Instance_Of --
9387 --------------------
9389 function Is_Instance_Of
9390 (Act_Spec
: Entity_Id
;
9391 Gen_Anc
: Entity_Id
) return Boolean
9393 Gen_Par
: constant Entity_Id
:= Generic_Parent
(Act_Spec
);
9396 if No
(Gen_Par
) then
9399 -- Simplest case: the generic parent of the actual is the formal
9401 elsif Gen_Par
= Gen_Anc
then
9404 elsif Chars
(Gen_Par
) /= Chars
(Gen_Anc
) then
9407 -- The actual may be obtained through several instantiations. Its
9408 -- scope must itself be an instance of a generic declared in the
9409 -- same scope as the formal. Any other case is detected above.
9411 elsif not Is_Generic_Instance
(Scope
(Gen_Par
)) then
9415 return Generic_Parent
(Parent
(Scope
(Gen_Par
))) = Scope
(Gen_Anc
);
9419 ---------------------------
9420 -- Process_Nested_Formal --
9421 ---------------------------
9423 procedure Process_Nested_Formal
(Formal
: Entity_Id
) is
9427 if Present
(Associated_Formal_Package
(Formal
))
9428 and then Box_Present
(Parent
(Associated_Formal_Package
(Formal
)))
9430 Ent
:= First_Entity
(Formal
);
9431 while Present
(Ent
) loop
9432 Set_Is_Hidden
(Ent
, False);
9433 Set_Is_Visible_Formal
(Ent
);
9434 Set_Is_Potentially_Use_Visible
9435 (Ent
, Is_Potentially_Use_Visible
(Formal
));
9437 if Ekind
(Ent
) = E_Package
then
9438 exit when Renamed_Entity
(Ent
) = Renamed_Entity
(Formal
);
9439 Process_Nested_Formal
(Ent
);
9445 end Process_Nested_Formal
;
9447 -- Start of processing for Instantiate_Formal_Package
9452 if not Is_Entity_Name
(Actual
)
9453 or else Ekind
(Entity
(Actual
)) /= E_Package
9456 ("expect package instance to instantiate formal", Actual
);
9457 Abandon_Instantiation
(Actual
);
9458 raise Program_Error
;
9461 Actual_Pack
:= Entity
(Actual
);
9462 Set_Is_Instantiated
(Actual_Pack
);
9464 -- The actual may be a renamed package, or an outer generic formal
9465 -- package whose instantiation is converted into a renaming.
9467 if Present
(Renamed_Object
(Actual_Pack
)) then
9468 Actual_Pack
:= Renamed_Object
(Actual_Pack
);
9471 if Nkind
(Analyzed_Formal
) = N_Formal_Package_Declaration
then
9472 Gen_Parent
:= Get_Instance_Of
(Entity
(Name
(Analyzed_Formal
)));
9473 Formal_Pack
:= Defining_Identifier
(Analyzed_Formal
);
9476 Generic_Parent
(Specification
(Analyzed_Formal
));
9478 Defining_Unit_Name
(Specification
(Analyzed_Formal
));
9481 if Nkind
(Parent
(Actual_Pack
)) = N_Defining_Program_Unit_Name
then
9482 Parent_Spec
:= Package_Specification
(Actual_Pack
);
9484 Parent_Spec
:= Parent
(Actual_Pack
);
9487 if Gen_Parent
= Any_Id
then
9489 ("previous error in declaration of formal package", Actual
);
9490 Abandon_Instantiation
(Actual
);
9493 Is_Instance_Of
(Parent_Spec
, Get_Instance_Of
(Gen_Parent
))
9499 ("actual parameter must be instance of&", Actual
, Gen_Parent
);
9500 Abandon_Instantiation
(Actual
);
9503 Set_Instance_Of
(Defining_Identifier
(Formal
), Actual_Pack
);
9504 Map_Formal_Package_Entities
(Formal_Pack
, Actual_Pack
);
9507 Make_Package_Renaming_Declaration
(Loc
,
9508 Defining_Unit_Name
=> New_Copy
(Defining_Identifier
(Formal
)),
9509 Name
=> New_Occurrence_Of
(Actual_Pack
, Loc
));
9511 Set_Associated_Formal_Package
(Defining_Unit_Name
(Nod
),
9512 Defining_Identifier
(Formal
));
9513 Decls
:= New_List
(Nod
);
9515 -- If the formal F has a box, then the generic declarations are
9516 -- visible in the generic G. In an instance of G, the corresponding
9517 -- entities in the actual for F (which are the actuals for the
9518 -- instantiation of the generic that F denotes) must also be made
9519 -- visible for analysis of the current instance. On exit from the
9520 -- current instance, those entities are made private again. If the
9521 -- actual is currently in use, these entities are also use-visible.
9523 -- The loop through the actual entities also steps through the formal
9524 -- entities and enters associations from formals to actuals into the
9525 -- renaming map. This is necessary to properly handle checking of
9526 -- actual parameter associations for later formals that depend on
9527 -- actuals declared in the formal package.
9529 -- In Ada 2005, partial parameterization requires that we make
9530 -- visible the actuals corresponding to formals that were defaulted
9531 -- in the formal package. There formals are identified because they
9532 -- remain formal generics within the formal package, rather than
9533 -- being renamings of the actuals supplied.
9536 Gen_Decl
: constant Node_Id
:=
9537 Unit_Declaration_Node
(Gen_Parent
);
9538 Formals
: constant List_Id
:=
9539 Generic_Formal_Declarations
(Gen_Decl
);
9541 Actual_Ent
: Entity_Id
;
9542 Actual_Of_Formal
: Node_Id
;
9543 Formal_Node
: Node_Id
;
9544 Formal_Ent
: Entity_Id
;
9547 if Present
(Formals
) then
9548 Formal_Node
:= First_Non_Pragma
(Formals
);
9550 Formal_Node
:= Empty
;
9553 Actual_Ent
:= First_Entity
(Actual_Pack
);
9555 First
(Visible_Declarations
(Specification
(Analyzed_Formal
)));
9556 while Present
(Actual_Ent
)
9557 and then Actual_Ent
/= First_Private_Entity
(Actual_Pack
)
9559 if Present
(Formal_Node
) then
9560 Formal_Ent
:= Get_Formal_Entity
(Formal_Node
);
9562 if Present
(Formal_Ent
) then
9563 Find_Matching_Actual
(Formal_Node
, Actual_Ent
);
9565 (Formal_Node
, Formal_Ent
, Actual_Ent
);
9567 -- We iterate at the same time over the actuals of the
9568 -- local package created for the formal, to determine
9569 -- which one of the formals of the original generic were
9570 -- defaulted in the formal. The corresponding actual
9571 -- entities are visible in the enclosing instance.
9573 if Box_Present
(Formal
)
9575 (Present
(Actual_Of_Formal
)
9578 (Get_Formal_Entity
(Actual_Of_Formal
)))
9580 Set_Is_Hidden
(Actual_Ent
, False);
9581 Set_Is_Visible_Formal
(Actual_Ent
);
9582 Set_Is_Potentially_Use_Visible
9583 (Actual_Ent
, In_Use
(Actual_Pack
));
9585 if Ekind
(Actual_Ent
) = E_Package
then
9586 Process_Nested_Formal
(Actual_Ent
);
9590 Set_Is_Hidden
(Actual_Ent
);
9591 Set_Is_Potentially_Use_Visible
(Actual_Ent
, False);
9595 Next_Non_Pragma
(Formal_Node
);
9596 Next
(Actual_Of_Formal
);
9599 -- No further formals to match, but the generic part may
9600 -- contain inherited operation that are not hidden in the
9601 -- enclosing instance.
9603 Next_Entity
(Actual_Ent
);
9607 -- Inherited subprograms generated by formal derived types are
9608 -- also visible if the types are.
9610 Actual_Ent
:= First_Entity
(Actual_Pack
);
9611 while Present
(Actual_Ent
)
9612 and then Actual_Ent
/= First_Private_Entity
(Actual_Pack
)
9614 if Is_Overloadable
(Actual_Ent
)
9616 Nkind
(Parent
(Actual_Ent
)) = N_Subtype_Declaration
9618 not Is_Hidden
(Defining_Identifier
(Parent
(Actual_Ent
)))
9620 Set_Is_Hidden
(Actual_Ent
, False);
9621 Set_Is_Potentially_Use_Visible
9622 (Actual_Ent
, In_Use
(Actual_Pack
));
9625 Next_Entity
(Actual_Ent
);
9629 -- If the formal is not declared with a box, reanalyze it as an
9630 -- abbreviated instantiation, to verify the matching rules of 12.7.
9631 -- The actual checks are performed after the generic associations
9632 -- have been analyzed, to guarantee the same visibility for this
9633 -- instantiation and for the actuals.
9635 -- In Ada 2005, the generic associations for the formal can include
9636 -- defaulted parameters. These are ignored during check. This
9637 -- internal instantiation is removed from the tree after conformance
9638 -- checking, because it contains formal declarations for those
9639 -- defaulted parameters, and those should not reach the back-end.
9641 if not Box_Present
(Formal
) then
9643 I_Pack
: constant Entity_Id
:=
9644 Make_Temporary
(Sloc
(Actual
), 'P');
9647 Set_Is_Internal
(I_Pack
);
9650 Make_Package_Instantiation
(Sloc
(Actual
),
9651 Defining_Unit_Name
=> I_Pack
,
9654 (Get_Instance_Of
(Gen_Parent
), Sloc
(Actual
)),
9655 Generic_Associations
=>
9656 Generic_Associations
(Formal
)));
9662 end Instantiate_Formal_Package
;
9664 -----------------------------------
9665 -- Instantiate_Formal_Subprogram --
9666 -----------------------------------
9668 function Instantiate_Formal_Subprogram
9671 Analyzed_Formal
: Node_Id
) return Node_Id
9673 Analyzed_S
: constant Entity_Id
:=
9674 Defining_Unit_Name
(Specification
(Analyzed_Formal
));
9675 Formal_Sub
: constant Entity_Id
:=
9676 Defining_Unit_Name
(Specification
(Formal
));
9678 function From_Parent_Scope
(Subp
: Entity_Id
) return Boolean;
9679 -- If the generic is a child unit, the parent has been installed on the
9680 -- scope stack, but a default subprogram cannot resolve to something
9681 -- on the parent because that parent is not really part of the visible
9682 -- context (it is there to resolve explicit local entities). If the
9683 -- default has resolved in this way, we remove the entity from immediate
9684 -- visibility and analyze the node again to emit an error message or
9685 -- find another visible candidate.
9687 procedure Valid_Actual_Subprogram
(Act
: Node_Id
);
9688 -- Perform legality check and raise exception on failure
9690 -----------------------
9691 -- From_Parent_Scope --
9692 -----------------------
9694 function From_Parent_Scope
(Subp
: Entity_Id
) return Boolean is
9695 Gen_Scope
: Node_Id
;
9698 Gen_Scope
:= Scope
(Analyzed_S
);
9699 while Present
(Gen_Scope
) and then Is_Child_Unit
(Gen_Scope
) loop
9700 if Scope
(Subp
) = Scope
(Gen_Scope
) then
9704 Gen_Scope
:= Scope
(Gen_Scope
);
9708 end From_Parent_Scope
;
9710 -----------------------------
9711 -- Valid_Actual_Subprogram --
9712 -----------------------------
9714 procedure Valid_Actual_Subprogram
(Act
: Node_Id
) is
9718 if Is_Entity_Name
(Act
) then
9719 Act_E
:= Entity
(Act
);
9721 elsif Nkind
(Act
) = N_Selected_Component
9722 and then Is_Entity_Name
(Selector_Name
(Act
))
9724 Act_E
:= Entity
(Selector_Name
(Act
));
9730 if (Present
(Act_E
) and then Is_Overloadable
(Act_E
))
9731 or else Nkind_In
(Act
, N_Attribute_Reference
,
9732 N_Indexed_Component
,
9733 N_Character_Literal
,
9734 N_Explicit_Dereference
)
9740 ("expect subprogram or entry name in instantiation of&",
9741 Instantiation_Node
, Formal_Sub
);
9742 Abandon_Instantiation
(Instantiation_Node
);
9743 end Valid_Actual_Subprogram
;
9747 Decl_Node
: Node_Id
;
9752 -- Start of processing for Instantiate_Formal_Subprogram
9755 New_Spec
:= New_Copy_Tree
(Specification
(Formal
));
9757 -- The tree copy has created the proper instantiation sloc for the
9758 -- new specification. Use this location for all other constructed
9761 Loc
:= Sloc
(Defining_Unit_Name
(New_Spec
));
9763 -- Create new entity for the actual (New_Copy_Tree does not), and
9764 -- indicate that it is an actual.
9766 Set_Defining_Unit_Name
9767 (New_Spec
, Make_Defining_Identifier
(Loc
, Chars
(Formal_Sub
)));
9768 Set_Ekind
(Defining_Unit_Name
(New_Spec
), Ekind
(Analyzed_S
));
9769 Set_Is_Generic_Actual_Subprogram
(Defining_Unit_Name
(New_Spec
));
9771 -- Create new entities for the each of the formals in the specification
9772 -- of the renaming declaration built for the actual.
9774 if Present
(Parameter_Specifications
(New_Spec
)) then
9780 F
:= First
(Parameter_Specifications
(New_Spec
));
9781 while Present
(F
) loop
9782 F_Id
:= Defining_Identifier
(F
);
9784 Set_Defining_Identifier
(F
,
9785 Make_Defining_Identifier
(Sloc
(F_Id
), Chars
(F_Id
)));
9791 -- Find entity of actual. If the actual is an attribute reference, it
9792 -- cannot be resolved here (its formal is missing) but is handled
9793 -- instead in Attribute_Renaming. If the actual is overloaded, it is
9794 -- fully resolved subsequently, when the renaming declaration for the
9795 -- formal is analyzed. If it is an explicit dereference, resolve the
9796 -- prefix but not the actual itself, to prevent interpretation as call.
9798 if Present
(Actual
) then
9799 Loc
:= Sloc
(Actual
);
9800 Set_Sloc
(New_Spec
, Loc
);
9802 if Nkind
(Actual
) = N_Operator_Symbol
then
9803 Find_Direct_Name
(Actual
);
9805 elsif Nkind
(Actual
) = N_Explicit_Dereference
then
9806 Analyze
(Prefix
(Actual
));
9808 elsif Nkind
(Actual
) /= N_Attribute_Reference
then
9812 Valid_Actual_Subprogram
(Actual
);
9815 elsif Present
(Default_Name
(Formal
)) then
9816 if not Nkind_In
(Default_Name
(Formal
), N_Attribute_Reference
,
9817 N_Selected_Component
,
9818 N_Indexed_Component
,
9819 N_Character_Literal
)
9820 and then Present
(Entity
(Default_Name
(Formal
)))
9822 Nam
:= New_Occurrence_Of
(Entity
(Default_Name
(Formal
)), Loc
);
9824 Nam
:= New_Copy
(Default_Name
(Formal
));
9825 Set_Sloc
(Nam
, Loc
);
9828 elsif Box_Present
(Formal
) then
9830 -- Actual is resolved at the point of instantiation. Create an
9831 -- identifier or operator with the same name as the formal.
9833 if Nkind
(Formal_Sub
) = N_Defining_Operator_Symbol
then
9835 Make_Operator_Symbol
(Loc
,
9836 Chars
=> Chars
(Formal_Sub
),
9837 Strval
=> No_String
);
9839 Nam
:= Make_Identifier
(Loc
, Chars
(Formal_Sub
));
9842 elsif Nkind
(Specification
(Formal
)) = N_Procedure_Specification
9843 and then Null_Present
(Specification
(Formal
))
9845 -- Generate null body for procedure, for use in the instance
9848 Make_Subprogram_Body
(Loc
,
9849 Specification
=> New_Spec
,
9850 Declarations
=> New_List
,
9851 Handled_Statement_Sequence
=>
9852 Make_Handled_Sequence_Of_Statements
(Loc
,
9853 Statements
=> New_List
(Make_Null_Statement
(Loc
))));
9855 Set_Is_Intrinsic_Subprogram
(Defining_Unit_Name
(New_Spec
));
9859 Error_Msg_Sloc
:= Sloc
(Scope
(Analyzed_S
));
9861 ("missing actual&", Instantiation_Node
, Formal_Sub
);
9863 ("\in instantiation of & declared#",
9864 Instantiation_Node
, Scope
(Analyzed_S
));
9865 Abandon_Instantiation
(Instantiation_Node
);
9869 Make_Subprogram_Renaming_Declaration
(Loc
,
9870 Specification
=> New_Spec
,
9873 -- If we do not have an actual and the formal specified <> then set to
9874 -- get proper default.
9876 if No
(Actual
) and then Box_Present
(Formal
) then
9877 Set_From_Default
(Decl_Node
);
9880 -- Gather possible interpretations for the actual before analyzing the
9881 -- instance. If overloaded, it will be resolved when analyzing the
9882 -- renaming declaration.
9884 if Box_Present
(Formal
) and then No
(Actual
) then
9887 if Is_Child_Unit
(Scope
(Analyzed_S
))
9888 and then Present
(Entity
(Nam
))
9890 if not Is_Overloaded
(Nam
) then
9891 if From_Parent_Scope
(Entity
(Nam
)) then
9892 Set_Is_Immediately_Visible
(Entity
(Nam
), False);
9893 Set_Entity
(Nam
, Empty
);
9894 Set_Etype
(Nam
, Empty
);
9897 Set_Is_Immediately_Visible
(Entity
(Nam
));
9906 Get_First_Interp
(Nam
, I
, It
);
9907 while Present
(It
.Nam
) loop
9908 if From_Parent_Scope
(It
.Nam
) then
9912 Get_Next_Interp
(I
, It
);
9919 -- The generic instantiation freezes the actual. This can only be done
9920 -- once the actual is resolved, in the analysis of the renaming
9921 -- declaration. To make the formal subprogram entity available, we set
9922 -- Corresponding_Formal_Spec to point to the formal subprogram entity.
9923 -- This is also needed in Analyze_Subprogram_Renaming for the processing
9924 -- of formal abstract subprograms.
9926 Set_Corresponding_Formal_Spec
(Decl_Node
, Analyzed_S
);
9928 -- We cannot analyze the renaming declaration, and thus find the actual,
9929 -- until all the actuals are assembled in the instance. For subsequent
9930 -- checks of other actuals, indicate the node that will hold the
9931 -- instance of this formal.
9933 Set_Instance_Of
(Analyzed_S
, Nam
);
9935 if Nkind
(Actual
) = N_Selected_Component
9936 and then Is_Task_Type
(Etype
(Prefix
(Actual
)))
9937 and then not Is_Frozen
(Etype
(Prefix
(Actual
)))
9939 -- The renaming declaration will create a body, which must appear
9940 -- outside of the instantiation, We move the renaming declaration
9941 -- out of the instance, and create an additional renaming inside,
9942 -- to prevent freezing anomalies.
9945 Anon_Id
: constant Entity_Id
:= Make_Temporary
(Loc
, 'E');
9948 Set_Defining_Unit_Name
(New_Spec
, Anon_Id
);
9949 Insert_Before
(Instantiation_Node
, Decl_Node
);
9950 Analyze
(Decl_Node
);
9952 -- Now create renaming within the instance
9955 Make_Subprogram_Renaming_Declaration
(Loc
,
9956 Specification
=> New_Copy_Tree
(New_Spec
),
9957 Name
=> New_Occurrence_Of
(Anon_Id
, Loc
));
9959 Set_Defining_Unit_Name
(Specification
(Decl_Node
),
9960 Make_Defining_Identifier
(Loc
, Chars
(Formal_Sub
)));
9965 end Instantiate_Formal_Subprogram
;
9967 ------------------------
9968 -- Instantiate_Object --
9969 ------------------------
9971 function Instantiate_Object
9974 Analyzed_Formal
: Node_Id
) return List_Id
9976 Gen_Obj
: constant Entity_Id
:= Defining_Identifier
(Formal
);
9977 A_Gen_Obj
: constant Entity_Id
:=
9978 Defining_Identifier
(Analyzed_Formal
);
9979 Acc_Def
: Node_Id
:= Empty
;
9980 Act_Assoc
: constant Node_Id
:= Parent
(Actual
);
9981 Actual_Decl
: Node_Id
:= Empty
;
9982 Decl_Node
: Node_Id
;
9985 List
: constant List_Id
:= New_List
;
9986 Loc
: constant Source_Ptr
:= Sloc
(Actual
);
9987 Orig_Ftyp
: constant Entity_Id
:= Etype
(A_Gen_Obj
);
9988 Subt_Decl
: Node_Id
:= Empty
;
9989 Subt_Mark
: Node_Id
:= Empty
;
9992 if Present
(Subtype_Mark
(Formal
)) then
9993 Subt_Mark
:= Subtype_Mark
(Formal
);
9995 Check_Access_Definition
(Formal
);
9996 Acc_Def
:= Access_Definition
(Formal
);
9999 -- Sloc for error message on missing actual
10001 Error_Msg_Sloc
:= Sloc
(Scope
(A_Gen_Obj
));
10003 if Get_Instance_Of
(Gen_Obj
) /= Gen_Obj
then
10004 Error_Msg_N
("duplicate instantiation of generic parameter", Actual
);
10007 Set_Parent
(List
, Parent
(Actual
));
10011 if Out_Present
(Formal
) then
10013 -- An IN OUT generic actual must be a name. The instantiation is a
10014 -- renaming declaration. The actual is the name being renamed. We
10015 -- use the actual directly, rather than a copy, because it is not
10016 -- used further in the list of actuals, and because a copy or a use
10017 -- of relocate_node is incorrect if the instance is nested within a
10018 -- generic. In order to simplify ASIS searches, the Generic_Parent
10019 -- field links the declaration to the generic association.
10021 if No
(Actual
) then
10023 ("missing actual&",
10024 Instantiation_Node
, Gen_Obj
);
10026 ("\in instantiation of & declared#",
10027 Instantiation_Node
, Scope
(A_Gen_Obj
));
10028 Abandon_Instantiation
(Instantiation_Node
);
10031 if Present
(Subt_Mark
) then
10033 Make_Object_Renaming_Declaration
(Loc
,
10034 Defining_Identifier
=> New_Copy
(Gen_Obj
),
10035 Subtype_Mark
=> New_Copy_Tree
(Subt_Mark
),
10038 else pragma Assert
(Present
(Acc_Def
));
10040 Make_Object_Renaming_Declaration
(Loc
,
10041 Defining_Identifier
=> New_Copy
(Gen_Obj
),
10042 Access_Definition
=> New_Copy_Tree
(Acc_Def
),
10046 Set_Corresponding_Generic_Association
(Decl_Node
, Act_Assoc
);
10048 -- The analysis of the actual may produce Insert_Action nodes, so
10049 -- the declaration must have a context in which to attach them.
10051 Append
(Decl_Node
, List
);
10054 -- Return if the analysis of the actual reported some error
10056 if Etype
(Actual
) = Any_Type
then
10060 -- This check is performed here because Analyze_Object_Renaming will
10061 -- not check it when Comes_From_Source is False. Note though that the
10062 -- check for the actual being the name of an object will be performed
10063 -- in Analyze_Object_Renaming.
10065 if Is_Object_Reference
(Actual
)
10066 and then Is_Dependent_Component_Of_Mutable_Object
(Actual
)
10069 ("illegal discriminant-dependent component for in out parameter",
10073 -- The actual has to be resolved in order to check that it is a
10074 -- variable (due to cases such as F (1), where F returns access to
10075 -- an array, and for overloaded prefixes).
10077 Ftyp
:= Get_Instance_Of
(Etype
(A_Gen_Obj
));
10079 -- If the type of the formal is not itself a formal, and the current
10080 -- unit is a child unit, the formal type must be declared in a
10081 -- parent, and must be retrieved by visibility.
10083 if Ftyp
= Orig_Ftyp
10084 and then Is_Generic_Unit
(Scope
(Ftyp
))
10085 and then Is_Child_Unit
(Scope
(A_Gen_Obj
))
10088 Temp
: constant Node_Id
:=
10089 New_Copy_Tree
(Subtype_Mark
(Analyzed_Formal
));
10091 Set_Entity
(Temp
, Empty
);
10093 Ftyp
:= Entity
(Temp
);
10097 if Is_Private_Type
(Ftyp
)
10098 and then not Is_Private_Type
(Etype
(Actual
))
10099 and then (Base_Type
(Full_View
(Ftyp
)) = Base_Type
(Etype
(Actual
))
10100 or else Base_Type
(Etype
(Actual
)) = Ftyp
)
10102 -- If the actual has the type of the full view of the formal, or
10103 -- else a non-private subtype of the formal, then the visibility
10104 -- of the formal type has changed. Add to the actuals a subtype
10105 -- declaration that will force the exchange of views in the body
10106 -- of the instance as well.
10109 Make_Subtype_Declaration
(Loc
,
10110 Defining_Identifier
=> Make_Temporary
(Loc
, 'P'),
10111 Subtype_Indication
=> New_Occurrence_Of
(Ftyp
, Loc
));
10113 Prepend
(Subt_Decl
, List
);
10115 Prepend_Elmt
(Full_View
(Ftyp
), Exchanged_Views
);
10116 Exchange_Declarations
(Ftyp
);
10119 Resolve
(Actual
, Ftyp
);
10121 if not Denotes_Variable
(Actual
) then
10123 ("actual for& must be a variable", Actual
, Gen_Obj
);
10125 elsif Base_Type
(Ftyp
) /= Base_Type
(Etype
(Actual
)) then
10127 -- Ada 2005 (AI-423): For a generic formal object of mode in out,
10128 -- the type of the actual shall resolve to a specific anonymous
10131 if Ada_Version
< Ada_2005
10132 or else Ekind
(Base_Type
(Ftyp
)) /=
10133 E_Anonymous_Access_Type
10134 or else Ekind
(Base_Type
(Etype
(Actual
))) /=
10135 E_Anonymous_Access_Type
10138 ("type of actual does not match type of&", Actual
, Gen_Obj
);
10142 Note_Possible_Modification
(Actual
, Sure
=> True);
10144 -- Check for instantiation of atomic/volatile actual for
10145 -- non-atomic/volatile formal (RM C.6 (12)).
10147 if Is_Atomic_Object
(Actual
) and then not Is_Atomic
(Orig_Ftyp
) then
10149 ("cannot instantiate non-atomic formal object "
10150 & "with atomic actual", Actual
);
10152 elsif Is_Volatile_Object
(Actual
) and then not Is_Volatile
(Orig_Ftyp
)
10155 ("cannot instantiate non-volatile formal object "
10156 & "with volatile actual", Actual
);
10159 -- Formal in-parameter
10162 -- The instantiation of a generic formal in-parameter is constant
10163 -- declaration. The actual is the expression for that declaration.
10165 if Present
(Actual
) then
10166 if Present
(Subt_Mark
) then
10168 else pragma Assert
(Present
(Acc_Def
));
10173 Make_Object_Declaration
(Loc
,
10174 Defining_Identifier
=> New_Copy
(Gen_Obj
),
10175 Constant_Present
=> True,
10176 Null_Exclusion_Present
=> Null_Exclusion_Present
(Formal
),
10177 Object_Definition
=> New_Copy_Tree
(Def
),
10178 Expression
=> Actual
);
10180 Set_Corresponding_Generic_Association
(Decl_Node
, Act_Assoc
);
10182 -- A generic formal object of a tagged type is defined to be
10183 -- aliased so the new constant must also be treated as aliased.
10185 if Is_Tagged_Type
(Etype
(A_Gen_Obj
)) then
10186 Set_Aliased_Present
(Decl_Node
);
10189 Append
(Decl_Node
, List
);
10191 -- No need to repeat (pre-)analysis of some expression nodes
10192 -- already handled in Preanalyze_Actuals.
10194 if Nkind
(Actual
) /= N_Allocator
then
10197 -- Return if the analysis of the actual reported some error
10199 if Etype
(Actual
) = Any_Type
then
10205 Formal_Type
: constant Entity_Id
:= Etype
(A_Gen_Obj
);
10209 Typ
:= Get_Instance_Of
(Formal_Type
);
10211 Freeze_Before
(Instantiation_Node
, Typ
);
10213 -- If the actual is an aggregate, perform name resolution on
10214 -- its components (the analysis of an aggregate does not do it)
10215 -- to capture local names that may be hidden if the generic is
10218 if Nkind
(Actual
) = N_Aggregate
then
10219 Preanalyze_And_Resolve
(Actual
, Typ
);
10222 if Is_Limited_Type
(Typ
)
10223 and then not OK_For_Limited_Init
(Typ
, Actual
)
10226 ("initialization not allowed for limited types", Actual
);
10227 Explain_Limited_Type
(Typ
, Actual
);
10231 elsif Present
(Default_Expression
(Formal
)) then
10233 -- Use default to construct declaration
10235 if Present
(Subt_Mark
) then
10237 else pragma Assert
(Present
(Acc_Def
));
10242 Make_Object_Declaration
(Sloc
(Formal
),
10243 Defining_Identifier
=> New_Copy
(Gen_Obj
),
10244 Constant_Present
=> True,
10245 Null_Exclusion_Present
=> Null_Exclusion_Present
(Formal
),
10246 Object_Definition
=> New_Copy
(Def
),
10247 Expression
=> New_Copy_Tree
10248 (Default_Expression
(Formal
)));
10250 Append
(Decl_Node
, List
);
10251 Set_Analyzed
(Expression
(Decl_Node
), False);
10255 ("missing actual&",
10256 Instantiation_Node
, Gen_Obj
);
10257 Error_Msg_NE
("\in instantiation of & declared#",
10258 Instantiation_Node
, Scope
(A_Gen_Obj
));
10260 if Is_Scalar_Type
(Etype
(A_Gen_Obj
)) then
10262 -- Create dummy constant declaration so that instance can be
10263 -- analyzed, to minimize cascaded visibility errors.
10265 if Present
(Subt_Mark
) then
10267 else pragma Assert
(Present
(Acc_Def
));
10272 Make_Object_Declaration
(Loc
,
10273 Defining_Identifier
=> New_Copy
(Gen_Obj
),
10274 Constant_Present
=> True,
10275 Null_Exclusion_Present
=> Null_Exclusion_Present
(Formal
),
10276 Object_Definition
=> New_Copy
(Def
),
10278 Make_Attribute_Reference
(Sloc
(Gen_Obj
),
10279 Attribute_Name
=> Name_First
,
10280 Prefix
=> New_Copy
(Def
)));
10282 Append
(Decl_Node
, List
);
10285 Abandon_Instantiation
(Instantiation_Node
);
10290 if Nkind
(Actual
) in N_Has_Entity
then
10291 Actual_Decl
:= Parent
(Entity
(Actual
));
10294 -- Ada 2005 (AI-423): For a formal object declaration with a null
10295 -- exclusion or an access definition that has a null exclusion: If the
10296 -- actual matching the formal object declaration denotes a generic
10297 -- formal object of another generic unit G, and the instantiation
10298 -- containing the actual occurs within the body of G or within the body
10299 -- of a generic unit declared within the declarative region of G, then
10300 -- the declaration of the formal object of G must have a null exclusion.
10301 -- Otherwise, the subtype of the actual matching the formal object
10302 -- declaration shall exclude null.
10304 if Ada_Version
>= Ada_2005
10305 and then Present
(Actual_Decl
)
10307 Nkind_In
(Actual_Decl
, N_Formal_Object_Declaration
,
10308 N_Object_Declaration
)
10309 and then Nkind
(Analyzed_Formal
) = N_Formal_Object_Declaration
10310 and then not Has_Null_Exclusion
(Actual_Decl
)
10311 and then Has_Null_Exclusion
(Analyzed_Formal
)
10313 Error_Msg_Sloc
:= Sloc
(Analyzed_Formal
);
10315 ("actual must exclude null to match generic formal#", Actual
);
10318 -- An effectively volatile object cannot be used as an actual in
10319 -- a generic instance. The following check is only relevant when
10320 -- SPARK_Mode is on as it is not a standard Ada legality rule.
10323 and then Present
(Actual
)
10324 and then Is_Effectively_Volatile_Object
(Actual
)
10327 ("volatile object cannot act as actual in generic instantiation "
10328 & "(SPARK RM 7.1.3(8))", Actual
);
10332 end Instantiate_Object
;
10334 ------------------------------
10335 -- Instantiate_Package_Body --
10336 ------------------------------
10338 procedure Instantiate_Package_Body
10339 (Body_Info
: Pending_Body_Info
;
10340 Inlined_Body
: Boolean := False;
10341 Body_Optional
: Boolean := False)
10343 Act_Decl
: constant Node_Id
:= Body_Info
.Act_Decl
;
10344 Inst_Node
: constant Node_Id
:= Body_Info
.Inst_Node
;
10345 Loc
: constant Source_Ptr
:= Sloc
(Inst_Node
);
10347 Gen_Id
: constant Node_Id
:= Name
(Inst_Node
);
10348 Gen_Unit
: constant Entity_Id
:= Get_Generic_Entity
(Inst_Node
);
10349 Gen_Decl
: constant Node_Id
:= Unit_Declaration_Node
(Gen_Unit
);
10350 Act_Spec
: constant Node_Id
:= Specification
(Act_Decl
);
10351 Act_Decl_Id
: constant Entity_Id
:= Defining_Entity
(Act_Spec
);
10353 Act_Body_Name
: Node_Id
;
10354 Gen_Body
: Node_Id
;
10355 Gen_Body_Id
: Node_Id
;
10356 Act_Body
: Node_Id
;
10357 Act_Body_Id
: Entity_Id
;
10359 Parent_Installed
: Boolean := False;
10360 Save_Style_Check
: constant Boolean := Style_Check
;
10362 Par_Ent
: Entity_Id
:= Empty
;
10363 Par_Vis
: Boolean := False;
10365 Vis_Prims_List
: Elist_Id
:= No_Elist
;
10366 -- List of primitives made temporarily visible in the instantiation
10367 -- to match the visibility of the formal type
10369 procedure Check_Initialized_Types
;
10370 -- In a generic package body, an entity of a generic private type may
10371 -- appear uninitialized. This is suspicious, unless the actual is a
10372 -- fully initialized type.
10374 -----------------------------
10375 -- Check_Initialized_Types --
10376 -----------------------------
10378 procedure Check_Initialized_Types
is
10380 Formal
: Entity_Id
;
10381 Actual
: Entity_Id
;
10382 Uninit_Var
: Entity_Id
;
10385 Decl
:= First
(Generic_Formal_Declarations
(Gen_Decl
));
10386 while Present
(Decl
) loop
10387 Uninit_Var
:= Empty
;
10389 if Nkind
(Decl
) = N_Private_Extension_Declaration
then
10390 Uninit_Var
:= Uninitialized_Variable
(Decl
);
10392 elsif Nkind
(Decl
) = N_Formal_Type_Declaration
10393 and then Nkind
(Formal_Type_Definition
(Decl
)) =
10394 N_Formal_Private_Type_Definition
10397 Uninitialized_Variable
(Formal_Type_Definition
(Decl
));
10400 if Present
(Uninit_Var
) then
10401 Formal
:= Defining_Identifier
(Decl
);
10402 Actual
:= First_Entity
(Act_Decl_Id
);
10404 -- For each formal there is a subtype declaration that renames
10405 -- the actual and has the same name as the formal. Locate the
10406 -- formal for warning message about uninitialized variables
10407 -- in the generic, for which the actual type should be a fully
10408 -- initialized type.
10410 while Present
(Actual
) loop
10411 exit when Ekind
(Actual
) = E_Package
10412 and then Present
(Renamed_Object
(Actual
));
10414 if Chars
(Actual
) = Chars
(Formal
)
10415 and then not Is_Scalar_Type
(Actual
)
10416 and then not Is_Fully_Initialized_Type
(Actual
)
10417 and then Warn_On_No_Value_Assigned
10419 Error_Msg_Node_2
:= Formal
;
10421 ("generic unit has uninitialized variable& of "
10422 & "formal private type &?v?", Actual
, Uninit_Var
);
10424 ("actual type for& should be fully initialized type?v?",
10429 Next_Entity
(Actual
);
10435 end Check_Initialized_Types
;
10437 -- Start of processing for Instantiate_Package_Body
10440 Gen_Body_Id
:= Corresponding_Body
(Gen_Decl
);
10442 -- The instance body may already have been processed, as the parent of
10443 -- another instance that is inlined (Load_Parent_Of_Generic).
10445 if Present
(Corresponding_Body
(Instance_Spec
(Inst_Node
))) then
10449 Expander_Mode_Save_And_Set
(Body_Info
.Expander_Status
);
10451 -- Re-establish the state of information on which checks are suppressed.
10452 -- This information was set in Body_Info at the point of instantiation,
10453 -- and now we restore it so that the instance is compiled using the
10454 -- check status at the instantiation (RM 11.5 (7.2/2), AI95-00224-01).
10456 Local_Suppress_Stack_Top
:= Body_Info
.Local_Suppress_Stack_Top
;
10457 Scope_Suppress
:= Body_Info
.Scope_Suppress
;
10458 Opt
.Ada_Version
:= Body_Info
.Version
;
10459 Opt
.Ada_Version_Pragma
:= Body_Info
.Version_Pragma
;
10460 Restore_Warnings
(Body_Info
.Warnings
);
10461 Opt
.SPARK_Mode
:= Body_Info
.SPARK_Mode
;
10462 Opt
.SPARK_Mode_Pragma
:= Body_Info
.SPARK_Mode_Pragma
;
10464 if No
(Gen_Body_Id
) then
10466 -- Do not look for parent of generic body if none is required.
10467 -- This may happen when the routine is called as part of the
10468 -- Pending_Instantiations processing, when nested instances
10469 -- may precede the one generated from the main unit.
10471 if not Unit_Requires_Body
(Defining_Entity
(Gen_Decl
))
10472 and then Body_Optional
10476 Load_Parent_Of_Generic
10477 (Inst_Node
, Specification
(Gen_Decl
), Body_Optional
);
10478 Gen_Body_Id
:= Corresponding_Body
(Gen_Decl
);
10482 -- Establish global variable for sloc adjustment and for error recovery
10484 Instantiation_Node
:= Inst_Node
;
10486 if Present
(Gen_Body_Id
) then
10487 Save_Env
(Gen_Unit
, Act_Decl_Id
);
10488 Style_Check
:= False;
10489 Current_Sem_Unit
:= Body_Info
.Current_Sem_Unit
;
10491 Gen_Body
:= Unit_Declaration_Node
(Gen_Body_Id
);
10493 Create_Instantiation_Source
10494 (Inst_Node
, Gen_Body_Id
, False, S_Adjustment
);
10498 (Original_Node
(Gen_Body
), Empty
, Instantiating
=> True);
10500 -- Build new name (possibly qualified) for body declaration
10502 Act_Body_Id
:= New_Copy
(Act_Decl_Id
);
10504 -- Some attributes of spec entity are not inherited by body entity
10506 Set_Handler_Records
(Act_Body_Id
, No_List
);
10508 if Nkind
(Defining_Unit_Name
(Act_Spec
)) =
10509 N_Defining_Program_Unit_Name
10512 Make_Defining_Program_Unit_Name
(Loc
,
10513 Name
=> New_Copy_Tree
(Name
(Defining_Unit_Name
(Act_Spec
))),
10514 Defining_Identifier
=> Act_Body_Id
);
10516 Act_Body_Name
:= Act_Body_Id
;
10519 Set_Defining_Unit_Name
(Act_Body
, Act_Body_Name
);
10521 Set_Corresponding_Spec
(Act_Body
, Act_Decl_Id
);
10522 Check_Generic_Actuals
(Act_Decl_Id
, False);
10523 Check_Initialized_Types
;
10525 -- Install primitives hidden at the point of the instantiation but
10526 -- visible when processing the generic formals
10532 E
:= First_Entity
(Act_Decl_Id
);
10533 while Present
(E
) loop
10535 and then Is_Generic_Actual_Type
(E
)
10536 and then Is_Tagged_Type
(E
)
10538 Install_Hidden_Primitives
10539 (Prims_List
=> Vis_Prims_List
,
10540 Gen_T
=> Generic_Parent_Type
(Parent
(E
)),
10548 -- If it is a child unit, make the parent instance (which is an
10549 -- instance of the parent of the generic) visible. The parent
10550 -- instance is the prefix of the name of the generic unit.
10552 if Ekind
(Scope
(Gen_Unit
)) = E_Generic_Package
10553 and then Nkind
(Gen_Id
) = N_Expanded_Name
10555 Par_Ent
:= Entity
(Prefix
(Gen_Id
));
10556 Par_Vis
:= Is_Immediately_Visible
(Par_Ent
);
10557 Install_Parent
(Par_Ent
, In_Body
=> True);
10558 Parent_Installed
:= True;
10560 elsif Is_Child_Unit
(Gen_Unit
) then
10561 Par_Ent
:= Scope
(Gen_Unit
);
10562 Par_Vis
:= Is_Immediately_Visible
(Par_Ent
);
10563 Install_Parent
(Par_Ent
, In_Body
=> True);
10564 Parent_Installed
:= True;
10567 -- If the instantiation is a library unit, and this is the main unit,
10568 -- then build the resulting compilation unit nodes for the instance.
10569 -- If this is a compilation unit but it is not the main unit, then it
10570 -- is the body of a unit in the context, that is being compiled
10571 -- because it is encloses some inlined unit or another generic unit
10572 -- being instantiated. In that case, this body is not part of the
10573 -- current compilation, and is not attached to the tree, but its
10574 -- parent must be set for analysis.
10576 if Nkind
(Parent
(Inst_Node
)) = N_Compilation_Unit
then
10578 -- Replace instance node with body of instance, and create new
10579 -- node for corresponding instance declaration.
10581 Build_Instance_Compilation_Unit_Nodes
10582 (Inst_Node
, Act_Body
, Act_Decl
);
10583 Analyze
(Inst_Node
);
10585 if Parent
(Inst_Node
) = Cunit
(Main_Unit
) then
10587 -- If the instance is a child unit itself, then set the scope
10588 -- of the expanded body to be the parent of the instantiation
10589 -- (ensuring that the fully qualified name will be generated
10590 -- for the elaboration subprogram).
10592 if Nkind
(Defining_Unit_Name
(Act_Spec
)) =
10593 N_Defining_Program_Unit_Name
10596 (Defining_Entity
(Inst_Node
), Scope
(Act_Decl_Id
));
10600 -- Case where instantiation is not a library unit
10603 -- If this is an early instantiation, i.e. appears textually
10604 -- before the corresponding body and must be elaborated first,
10605 -- indicate that the body instance is to be delayed.
10607 Install_Body
(Act_Body
, Inst_Node
, Gen_Body
, Gen_Decl
);
10609 -- Now analyze the body. We turn off all checks if this is an
10610 -- internal unit, since there is no reason to have checks on for
10611 -- any predefined run-time library code. All such code is designed
10612 -- to be compiled with checks off.
10614 -- Note that we do NOT apply this criterion to children of GNAT
10615 -- The latter units must suppress checks explicitly if needed.
10617 if Is_Predefined_File_Name
10618 (Unit_File_Name
(Get_Source_Unit
(Gen_Decl
)))
10620 Analyze
(Act_Body
, Suppress
=> All_Checks
);
10622 Analyze
(Act_Body
);
10626 Inherit_Context
(Gen_Body
, Inst_Node
);
10628 -- Remove the parent instances if they have been placed on the scope
10629 -- stack to compile the body.
10631 if Parent_Installed
then
10632 Remove_Parent
(In_Body
=> True);
10634 -- Restore the previous visibility of the parent
10636 Set_Is_Immediately_Visible
(Par_Ent
, Par_Vis
);
10639 Restore_Hidden_Primitives
(Vis_Prims_List
);
10640 Restore_Private_Views
(Act_Decl_Id
);
10642 -- Remove the current unit from visibility if this is an instance
10643 -- that is not elaborated on the fly for inlining purposes.
10645 if not Inlined_Body
then
10646 Set_Is_Immediately_Visible
(Act_Decl_Id
, False);
10650 Style_Check
:= Save_Style_Check
;
10652 -- If we have no body, and the unit requires a body, then complain. This
10653 -- complaint is suppressed if we have detected other errors (since a
10654 -- common reason for missing the body is that it had errors).
10655 -- In CodePeer mode, a warning has been emitted already, no need for
10656 -- further messages.
10658 elsif Unit_Requires_Body
(Gen_Unit
)
10659 and then not Body_Optional
10661 if CodePeer_Mode
then
10664 elsif Serious_Errors_Detected
= 0 then
10666 ("cannot find body of generic package &", Inst_Node
, Gen_Unit
);
10668 -- Don't attempt to perform any cleanup actions if some other error
10669 -- was already detected, since this can cause blowups.
10675 -- Case of package that does not need a body
10678 -- If the instantiation of the declaration is a library unit, rewrite
10679 -- the original package instantiation as a package declaration in the
10680 -- compilation unit node.
10682 if Nkind
(Parent
(Inst_Node
)) = N_Compilation_Unit
then
10683 Set_Parent_Spec
(Act_Decl
, Parent_Spec
(Inst_Node
));
10684 Rewrite
(Inst_Node
, Act_Decl
);
10686 -- Generate elaboration entity, in case spec has elaboration code.
10687 -- This cannot be done when the instance is analyzed, because it
10688 -- is not known yet whether the body exists.
10690 Set_Elaboration_Entity_Required
(Act_Decl_Id
, False);
10691 Build_Elaboration_Entity
(Parent
(Inst_Node
), Act_Decl_Id
);
10693 -- If the instantiation is not a library unit, then append the
10694 -- declaration to the list of implicitly generated entities, unless
10695 -- it is already a list member which means that it was already
10698 elsif not Is_List_Member
(Act_Decl
) then
10699 Mark_Rewrite_Insertion
(Act_Decl
);
10700 Insert_Before
(Inst_Node
, Act_Decl
);
10704 Expander_Mode_Restore
;
10705 end Instantiate_Package_Body
;
10707 ---------------------------------
10708 -- Instantiate_Subprogram_Body --
10709 ---------------------------------
10711 procedure Instantiate_Subprogram_Body
10712 (Body_Info
: Pending_Body_Info
;
10713 Body_Optional
: Boolean := False)
10715 Act_Decl
: constant Node_Id
:= Body_Info
.Act_Decl
;
10716 Inst_Node
: constant Node_Id
:= Body_Info
.Inst_Node
;
10717 Loc
: constant Source_Ptr
:= Sloc
(Inst_Node
);
10718 Gen_Id
: constant Node_Id
:= Name
(Inst_Node
);
10719 Gen_Unit
: constant Entity_Id
:= Get_Generic_Entity
(Inst_Node
);
10720 Gen_Decl
: constant Node_Id
:= Unit_Declaration_Node
(Gen_Unit
);
10721 Anon_Id
: constant Entity_Id
:=
10722 Defining_Unit_Name
(Specification
(Act_Decl
));
10723 Pack_Id
: constant Entity_Id
:=
10724 Defining_Unit_Name
(Parent
(Act_Decl
));
10726 Gen_Body
: Node_Id
;
10727 Gen_Body_Id
: Node_Id
;
10728 Act_Body
: Node_Id
;
10729 Pack_Body
: Node_Id
;
10730 Prev_Formal
: Entity_Id
;
10731 Ret_Expr
: Node_Id
;
10732 Unit_Renaming
: Node_Id
;
10734 Parent_Installed
: Boolean := False;
10736 Saved_Style_Check
: constant Boolean := Style_Check
;
10737 Saved_Warnings
: constant Warning_Record
:= Save_Warnings
;
10739 Par_Ent
: Entity_Id
:= Empty
;
10740 Par_Vis
: Boolean := False;
10743 Gen_Body_Id
:= Corresponding_Body
(Gen_Decl
);
10745 -- Subprogram body may have been created already because of an inline
10746 -- pragma, or because of multiple elaborations of the enclosing package
10747 -- when several instances of the subprogram appear in the main unit.
10749 if Present
(Corresponding_Body
(Act_Decl
)) then
10753 Expander_Mode_Save_And_Set
(Body_Info
.Expander_Status
);
10755 -- Re-establish the state of information on which checks are suppressed.
10756 -- This information was set in Body_Info at the point of instantiation,
10757 -- and now we restore it so that the instance is compiled using the
10758 -- check status at the instantiation (RM 11.5 (7.2/2), AI95-00224-01).
10760 Local_Suppress_Stack_Top
:= Body_Info
.Local_Suppress_Stack_Top
;
10761 Scope_Suppress
:= Body_Info
.Scope_Suppress
;
10762 Opt
.Ada_Version
:= Body_Info
.Version
;
10763 Opt
.Ada_Version_Pragma
:= Body_Info
.Version_Pragma
;
10764 Restore_Warnings
(Body_Info
.Warnings
);
10765 Opt
.SPARK_Mode
:= Body_Info
.SPARK_Mode
;
10766 Opt
.SPARK_Mode_Pragma
:= Body_Info
.SPARK_Mode_Pragma
;
10768 if No
(Gen_Body_Id
) then
10770 -- For imported generic subprogram, no body to compile, complete
10771 -- the spec entity appropriately.
10773 if Is_Imported
(Gen_Unit
) then
10774 Set_Is_Imported
(Anon_Id
);
10775 Set_First_Rep_Item
(Anon_Id
, First_Rep_Item
(Gen_Unit
));
10776 Set_Interface_Name
(Anon_Id
, Interface_Name
(Gen_Unit
));
10777 Set_Convention
(Anon_Id
, Convention
(Gen_Unit
));
10778 Set_Has_Completion
(Anon_Id
);
10781 -- For other cases, compile the body
10784 Load_Parent_Of_Generic
10785 (Inst_Node
, Specification
(Gen_Decl
), Body_Optional
);
10786 Gen_Body_Id
:= Corresponding_Body
(Gen_Decl
);
10790 Instantiation_Node
:= Inst_Node
;
10792 if Present
(Gen_Body_Id
) then
10793 Gen_Body
:= Unit_Declaration_Node
(Gen_Body_Id
);
10795 if Nkind
(Gen_Body
) = N_Subprogram_Body_Stub
then
10797 -- Either body is not present, or context is non-expanding, as
10798 -- when compiling a subunit. Mark the instance as completed, and
10799 -- diagnose a missing body when needed.
10802 and then Operating_Mode
= Generate_Code
10805 ("missing proper body for instantiation", Gen_Body
);
10808 Set_Has_Completion
(Anon_Id
);
10812 Save_Env
(Gen_Unit
, Anon_Id
);
10813 Style_Check
:= False;
10814 Current_Sem_Unit
:= Body_Info
.Current_Sem_Unit
;
10815 Create_Instantiation_Source
10823 (Original_Node
(Gen_Body
), Empty
, Instantiating
=> True);
10825 -- Create proper defining name for the body, to correspond to
10826 -- the one in the spec.
10828 Set_Defining_Unit_Name
(Specification
(Act_Body
),
10829 Make_Defining_Identifier
10830 (Sloc
(Defining_Entity
(Inst_Node
)), Chars
(Anon_Id
)));
10831 Set_Corresponding_Spec
(Act_Body
, Anon_Id
);
10832 Set_Has_Completion
(Anon_Id
);
10833 Check_Generic_Actuals
(Pack_Id
, False);
10835 -- Generate a reference to link the visible subprogram instance to
10836 -- the generic body, which for navigation purposes is the only
10837 -- available source for the instance.
10840 (Related_Instance
(Pack_Id
),
10841 Gen_Body_Id
, 'b', Set_Ref
=> False, Force
=> True);
10843 -- If it is a child unit, make the parent instance (which is an
10844 -- instance of the parent of the generic) visible. The parent
10845 -- instance is the prefix of the name of the generic unit.
10847 if Ekind
(Scope
(Gen_Unit
)) = E_Generic_Package
10848 and then Nkind
(Gen_Id
) = N_Expanded_Name
10850 Par_Ent
:= Entity
(Prefix
(Gen_Id
));
10851 Par_Vis
:= Is_Immediately_Visible
(Par_Ent
);
10852 Install_Parent
(Par_Ent
, In_Body
=> True);
10853 Parent_Installed
:= True;
10855 elsif Is_Child_Unit
(Gen_Unit
) then
10856 Par_Ent
:= Scope
(Gen_Unit
);
10857 Par_Vis
:= Is_Immediately_Visible
(Par_Ent
);
10858 Install_Parent
(Par_Ent
, In_Body
=> True);
10859 Parent_Installed
:= True;
10862 -- Inside its body, a reference to the generic unit is a reference
10863 -- to the instance. The corresponding renaming is the first
10864 -- declaration in the body.
10867 Make_Subprogram_Renaming_Declaration
(Loc
,
10869 Copy_Generic_Node
(
10870 Specification
(Original_Node
(Gen_Body
)),
10872 Instantiating
=> True),
10873 Name
=> New_Occurrence_Of
(Anon_Id
, Loc
));
10875 -- If there is a formal subprogram with the same name as the unit
10876 -- itself, do not add this renaming declaration. This is a temporary
10877 -- fix for one ACVC test. ???
10879 Prev_Formal
:= First_Entity
(Pack_Id
);
10880 while Present
(Prev_Formal
) loop
10881 if Chars
(Prev_Formal
) = Chars
(Gen_Unit
)
10882 and then Is_Overloadable
(Prev_Formal
)
10887 Next_Entity
(Prev_Formal
);
10890 if Present
(Prev_Formal
) then
10891 Decls
:= New_List
(Act_Body
);
10893 Decls
:= New_List
(Unit_Renaming
, Act_Body
);
10896 -- The subprogram body is placed in the body of a dummy package body,
10897 -- whose spec contains the subprogram declaration as well as the
10898 -- renaming declarations for the generic parameters.
10900 Pack_Body
:= Make_Package_Body
(Loc
,
10901 Defining_Unit_Name
=> New_Copy
(Pack_Id
),
10902 Declarations
=> Decls
);
10904 Set_Corresponding_Spec
(Pack_Body
, Pack_Id
);
10906 -- If the instantiation is a library unit, then build resulting
10907 -- compilation unit nodes for the instance. The declaration of
10908 -- the enclosing package is the grandparent of the subprogram
10909 -- declaration. First replace the instantiation node as the unit
10910 -- of the corresponding compilation.
10912 if Nkind
(Parent
(Inst_Node
)) = N_Compilation_Unit
then
10913 if Parent
(Inst_Node
) = Cunit
(Main_Unit
) then
10914 Set_Unit
(Parent
(Inst_Node
), Inst_Node
);
10915 Build_Instance_Compilation_Unit_Nodes
10916 (Inst_Node
, Pack_Body
, Parent
(Parent
(Act_Decl
)));
10917 Analyze
(Inst_Node
);
10919 Set_Parent
(Pack_Body
, Parent
(Inst_Node
));
10920 Analyze
(Pack_Body
);
10924 Insert_Before
(Inst_Node
, Pack_Body
);
10925 Mark_Rewrite_Insertion
(Pack_Body
);
10926 Analyze
(Pack_Body
);
10928 if Expander_Active
then
10929 Freeze_Subprogram_Body
(Inst_Node
, Gen_Body
, Pack_Id
);
10933 Inherit_Context
(Gen_Body
, Inst_Node
);
10935 Restore_Private_Views
(Pack_Id
, False);
10937 if Parent_Installed
then
10938 Remove_Parent
(In_Body
=> True);
10940 -- Restore the previous visibility of the parent
10942 Set_Is_Immediately_Visible
(Par_Ent
, Par_Vis
);
10946 Style_Check
:= Saved_Style_Check
;
10947 Restore_Warnings
(Saved_Warnings
);
10949 -- Body not found. Error was emitted already. If there were no previous
10950 -- errors, this may be an instance whose scope is a premature instance.
10951 -- In that case we must insure that the (legal) program does raise
10952 -- program error if executed. We generate a subprogram body for this
10953 -- purpose. See DEC ac30vso.
10955 -- Should not reference proprietary DEC tests in comments ???
10957 elsif Serious_Errors_Detected
= 0
10958 and then Nkind
(Parent
(Inst_Node
)) /= N_Compilation_Unit
10960 if Body_Optional
then
10963 elsif Ekind
(Anon_Id
) = E_Procedure
then
10965 Make_Subprogram_Body
(Loc
,
10967 Make_Procedure_Specification
(Loc
,
10968 Defining_Unit_Name
=>
10969 Make_Defining_Identifier
(Loc
, Chars
(Anon_Id
)),
10970 Parameter_Specifications
=>
10972 (Parameter_Specifications
(Parent
(Anon_Id
)))),
10974 Declarations
=> Empty_List
,
10975 Handled_Statement_Sequence
=>
10976 Make_Handled_Sequence_Of_Statements
(Loc
,
10979 Make_Raise_Program_Error
(Loc
,
10981 PE_Access_Before_Elaboration
))));
10985 Make_Raise_Program_Error
(Loc
,
10986 Reason
=> PE_Access_Before_Elaboration
);
10988 Set_Etype
(Ret_Expr
, (Etype
(Anon_Id
)));
10989 Set_Analyzed
(Ret_Expr
);
10992 Make_Subprogram_Body
(Loc
,
10994 Make_Function_Specification
(Loc
,
10995 Defining_Unit_Name
=>
10996 Make_Defining_Identifier
(Loc
, Chars
(Anon_Id
)),
10997 Parameter_Specifications
=>
10999 (Parameter_Specifications
(Parent
(Anon_Id
))),
11000 Result_Definition
=>
11001 New_Occurrence_Of
(Etype
(Anon_Id
), Loc
)),
11003 Declarations
=> Empty_List
,
11004 Handled_Statement_Sequence
=>
11005 Make_Handled_Sequence_Of_Statements
(Loc
,
11008 (Make_Simple_Return_Statement
(Loc
, Ret_Expr
))));
11011 Pack_Body
:= Make_Package_Body
(Loc
,
11012 Defining_Unit_Name
=> New_Copy
(Pack_Id
),
11013 Declarations
=> New_List
(Act_Body
));
11015 Insert_After
(Inst_Node
, Pack_Body
);
11016 Set_Corresponding_Spec
(Pack_Body
, Pack_Id
);
11017 Analyze
(Pack_Body
);
11020 Expander_Mode_Restore
;
11021 end Instantiate_Subprogram_Body
;
11023 ----------------------
11024 -- Instantiate_Type --
11025 ----------------------
11027 function Instantiate_Type
11030 Analyzed_Formal
: Node_Id
;
11031 Actual_Decls
: List_Id
) return List_Id
11033 Gen_T
: constant Entity_Id
:= Defining_Identifier
(Formal
);
11034 A_Gen_T
: constant Entity_Id
:=
11035 Defining_Identifier
(Analyzed_Formal
);
11036 Ancestor
: Entity_Id
:= Empty
;
11037 Def
: constant Node_Id
:= Formal_Type_Definition
(Formal
);
11039 Decl_Node
: Node_Id
;
11040 Decl_Nodes
: List_Id
;
11044 procedure Diagnose_Predicated_Actual
;
11045 -- There are a number of constructs in which a discrete type with
11046 -- predicates is illegal, e.g. as an index in an array type declaration.
11047 -- If a generic type is used is such a construct in a generic package
11048 -- declaration, it carries the flag No_Predicate_On_Actual. it is part
11049 -- of the generic contract that the actual cannot have predicates.
11051 procedure Validate_Array_Type_Instance
;
11052 procedure Validate_Access_Subprogram_Instance
;
11053 procedure Validate_Access_Type_Instance
;
11054 procedure Validate_Derived_Type_Instance
;
11055 procedure Validate_Derived_Interface_Type_Instance
;
11056 procedure Validate_Discriminated_Formal_Type
;
11057 procedure Validate_Interface_Type_Instance
;
11058 procedure Validate_Private_Type_Instance
;
11059 procedure Validate_Incomplete_Type_Instance
;
11060 -- These procedures perform validation tests for the named case.
11061 -- Validate_Discriminated_Formal_Type is shared by formal private
11062 -- types and Ada 2012 formal incomplete types.
11064 function Subtypes_Match
(Gen_T
, Act_T
: Entity_Id
) return Boolean;
11065 -- Check that base types are the same and that the subtypes match
11066 -- statically. Used in several of the above.
11068 ---------------------------------
11069 -- Diagnose_Predicated_Actual --
11070 ---------------------------------
11072 procedure Diagnose_Predicated_Actual
is
11074 if No_Predicate_On_Actual
(A_Gen_T
)
11075 and then Has_Predicates
(Act_T
)
11078 ("actual for& cannot be a type with predicate",
11079 Instantiation_Node
, A_Gen_T
);
11081 elsif No_Dynamic_Predicate_On_Actual
(A_Gen_T
)
11082 and then Has_Predicates
(Act_T
)
11083 and then not Has_Static_Predicate_Aspect
(Act_T
)
11086 ("actual for& cannot be a type with a dynamic predicate",
11087 Instantiation_Node
, A_Gen_T
);
11089 end Diagnose_Predicated_Actual
;
11091 --------------------
11092 -- Subtypes_Match --
11093 --------------------
11095 function Subtypes_Match
(Gen_T
, Act_T
: Entity_Id
) return Boolean is
11096 T
: constant Entity_Id
:= Get_Instance_Of
(Gen_T
);
11099 -- Some detailed comments would be useful here ???
11101 return ((Base_Type
(T
) = Act_T
11102 or else Base_Type
(T
) = Base_Type
(Act_T
))
11103 and then Subtypes_Statically_Match
(T
, Act_T
))
11105 or else (Is_Class_Wide_Type
(Gen_T
)
11106 and then Is_Class_Wide_Type
(Act_T
)
11107 and then Subtypes_Match
11108 (Get_Instance_Of
(Root_Type
(Gen_T
)),
11109 Root_Type
(Act_T
)))
11112 (Ekind_In
(Gen_T
, E_Anonymous_Access_Subprogram_Type
,
11113 E_Anonymous_Access_Type
)
11114 and then Ekind
(Act_T
) = Ekind
(Gen_T
)
11115 and then Subtypes_Statically_Match
11116 (Designated_Type
(Gen_T
), Designated_Type
(Act_T
)));
11117 end Subtypes_Match
;
11119 -----------------------------------------
11120 -- Validate_Access_Subprogram_Instance --
11121 -----------------------------------------
11123 procedure Validate_Access_Subprogram_Instance
is
11125 if not Is_Access_Type
(Act_T
)
11126 or else Ekind
(Designated_Type
(Act_T
)) /= E_Subprogram_Type
11129 ("expect access type in instantiation of &", Actual
, Gen_T
);
11130 Abandon_Instantiation
(Actual
);
11133 -- According to AI05-288, actuals for access_to_subprograms must be
11134 -- subtype conformant with the generic formal. Previous to AI05-288
11135 -- only mode conformance was required.
11137 -- This is a binding interpretation that applies to previous versions
11138 -- of the language, no need to maintain previous weaker checks.
11140 Check_Subtype_Conformant
11141 (Designated_Type
(Act_T
),
11142 Designated_Type
(A_Gen_T
),
11146 if Ekind
(Base_Type
(Act_T
)) = E_Access_Protected_Subprogram_Type
then
11147 if Ekind
(A_Gen_T
) = E_Access_Subprogram_Type
then
11149 ("protected access type not allowed for formal &",
11153 elsif Ekind
(A_Gen_T
) = E_Access_Protected_Subprogram_Type
then
11155 ("expect protected access type for formal &",
11158 end Validate_Access_Subprogram_Instance
;
11160 -----------------------------------
11161 -- Validate_Access_Type_Instance --
11162 -----------------------------------
11164 procedure Validate_Access_Type_Instance
is
11165 Desig_Type
: constant Entity_Id
:=
11166 Find_Actual_Type
(Designated_Type
(A_Gen_T
), A_Gen_T
);
11167 Desig_Act
: Entity_Id
;
11170 if not Is_Access_Type
(Act_T
) then
11172 ("expect access type in instantiation of &", Actual
, Gen_T
);
11173 Abandon_Instantiation
(Actual
);
11176 if Is_Access_Constant
(A_Gen_T
) then
11177 if not Is_Access_Constant
(Act_T
) then
11179 ("actual type must be access-to-constant type", Actual
);
11180 Abandon_Instantiation
(Actual
);
11183 if Is_Access_Constant
(Act_T
) then
11185 ("actual type must be access-to-variable type", Actual
);
11186 Abandon_Instantiation
(Actual
);
11188 elsif Ekind
(A_Gen_T
) = E_General_Access_Type
11189 and then Ekind
(Base_Type
(Act_T
)) /= E_General_Access_Type
11191 Error_Msg_N
-- CODEFIX
11192 ("actual must be general access type!", Actual
);
11193 Error_Msg_NE
-- CODEFIX
11194 ("add ALL to }!", Actual
, Act_T
);
11195 Abandon_Instantiation
(Actual
);
11199 -- The designated subtypes, that is to say the subtypes introduced
11200 -- by an access type declaration (and not by a subtype declaration)
11203 Desig_Act
:= Designated_Type
(Base_Type
(Act_T
));
11205 -- The designated type may have been introduced through a limited_
11206 -- with clause, in which case retrieve the non-limited view. This
11207 -- applies to incomplete types as well as to class-wide types.
11209 if From_Limited_With
(Desig_Act
) then
11210 Desig_Act
:= Available_View
(Desig_Act
);
11213 if not Subtypes_Match
(Desig_Type
, Desig_Act
) then
11215 ("designated type of actual does not match that of formal &",
11218 if not Predicates_Match
(Desig_Type
, Desig_Act
) then
11219 Error_Msg_N
("\predicates do not match", Actual
);
11222 Abandon_Instantiation
(Actual
);
11224 elsif Is_Access_Type
(Designated_Type
(Act_T
))
11225 and then Is_Constrained
(Designated_Type
(Designated_Type
(Act_T
)))
11227 Is_Constrained
(Designated_Type
(Desig_Type
))
11230 ("designated type of actual does not match that of formal &",
11233 if not Predicates_Match
(Desig_Type
, Desig_Act
) then
11234 Error_Msg_N
("\predicates do not match", Actual
);
11237 Abandon_Instantiation
(Actual
);
11240 -- Ada 2005: null-exclusion indicators of the two types must agree
11242 if Can_Never_Be_Null
(A_Gen_T
) /= Can_Never_Be_Null
(Act_T
) then
11244 ("non null exclusion of actual and formal & do not match",
11247 end Validate_Access_Type_Instance
;
11249 ----------------------------------
11250 -- Validate_Array_Type_Instance --
11251 ----------------------------------
11253 procedure Validate_Array_Type_Instance
is
11258 function Formal_Dimensions
return Int
;
11259 -- Count number of dimensions in array type formal
11261 -----------------------
11262 -- Formal_Dimensions --
11263 -----------------------
11265 function Formal_Dimensions
return Int
is
11270 if Nkind
(Def
) = N_Constrained_Array_Definition
then
11271 Index
:= First
(Discrete_Subtype_Definitions
(Def
));
11273 Index
:= First
(Subtype_Marks
(Def
));
11276 while Present
(Index
) loop
11278 Next_Index
(Index
);
11282 end Formal_Dimensions
;
11284 -- Start of processing for Validate_Array_Type_Instance
11287 if not Is_Array_Type
(Act_T
) then
11289 ("expect array type in instantiation of &", Actual
, Gen_T
);
11290 Abandon_Instantiation
(Actual
);
11292 elsif Nkind
(Def
) = N_Constrained_Array_Definition
then
11293 if not (Is_Constrained
(Act_T
)) then
11295 ("expect constrained array in instantiation of &",
11297 Abandon_Instantiation
(Actual
);
11301 if Is_Constrained
(Act_T
) then
11303 ("expect unconstrained array in instantiation of &",
11305 Abandon_Instantiation
(Actual
);
11309 if Formal_Dimensions
/= Number_Dimensions
(Act_T
) then
11311 ("dimensions of actual do not match formal &", Actual
, Gen_T
);
11312 Abandon_Instantiation
(Actual
);
11315 I1
:= First_Index
(A_Gen_T
);
11316 I2
:= First_Index
(Act_T
);
11317 for J
in 1 .. Formal_Dimensions
loop
11319 -- If the indexes of the actual were given by a subtype_mark,
11320 -- the index was transformed into a range attribute. Retrieve
11321 -- the original type mark for checking.
11323 if Is_Entity_Name
(Original_Node
(I2
)) then
11324 T2
:= Entity
(Original_Node
(I2
));
11329 if not Subtypes_Match
11330 (Find_Actual_Type
(Etype
(I1
), A_Gen_T
), T2
)
11333 ("index types of actual do not match those of formal &",
11335 Abandon_Instantiation
(Actual
);
11342 -- Check matching subtypes. Note that there are complex visibility
11343 -- issues when the generic is a child unit and some aspect of the
11344 -- generic type is declared in a parent unit of the generic. We do
11345 -- the test to handle this special case only after a direct check
11346 -- for static matching has failed. The case where both the component
11347 -- type and the array type are separate formals, and the component
11348 -- type is a private view may also require special checking in
11352 (Component_Type
(A_Gen_T
), Component_Type
(Act_T
))
11355 (Find_Actual_Type
(Component_Type
(A_Gen_T
), A_Gen_T
),
11356 Component_Type
(Act_T
))
11361 ("component subtype of actual does not match that of formal &",
11363 Abandon_Instantiation
(Actual
);
11366 if Has_Aliased_Components
(A_Gen_T
)
11367 and then not Has_Aliased_Components
(Act_T
)
11370 ("actual must have aliased components to match formal type &",
11373 end Validate_Array_Type_Instance
;
11375 -----------------------------------------------
11376 -- Validate_Derived_Interface_Type_Instance --
11377 -----------------------------------------------
11379 procedure Validate_Derived_Interface_Type_Instance
is
11380 Par
: constant Entity_Id
:= Entity
(Subtype_Indication
(Def
));
11384 -- First apply interface instance checks
11386 Validate_Interface_Type_Instance
;
11388 -- Verify that immediate parent interface is an ancestor of
11392 and then not Interface_Present_In_Ancestor
(Act_T
, Par
)
11395 ("interface actual must include progenitor&", Actual
, Par
);
11398 -- Now verify that the actual includes all other ancestors of
11401 Elmt
:= First_Elmt
(Interfaces
(A_Gen_T
));
11402 while Present
(Elmt
) loop
11403 if not Interface_Present_In_Ancestor
11404 (Act_T
, Get_Instance_Of
(Node
(Elmt
)))
11407 ("interface actual must include progenitor&",
11408 Actual
, Node
(Elmt
));
11413 end Validate_Derived_Interface_Type_Instance
;
11415 ------------------------------------
11416 -- Validate_Derived_Type_Instance --
11417 ------------------------------------
11419 procedure Validate_Derived_Type_Instance
is
11420 Actual_Discr
: Entity_Id
;
11421 Ancestor_Discr
: Entity_Id
;
11424 -- If the parent type in the generic declaration is itself a previous
11425 -- formal type, then it is local to the generic and absent from the
11426 -- analyzed generic definition. In that case the ancestor is the
11427 -- instance of the formal (which must have been instantiated
11428 -- previously), unless the ancestor is itself a formal derived type.
11429 -- In this latter case (which is the subject of Corrigendum 8652/0038
11430 -- (AI-202) the ancestor of the formals is the ancestor of its
11431 -- parent. Otherwise, the analyzed generic carries the parent type.
11432 -- If the parent type is defined in a previous formal package, then
11433 -- the scope of that formal package is that of the generic type
11434 -- itself, and it has already been mapped into the corresponding type
11435 -- in the actual package.
11437 -- Common case: parent type defined outside of the generic
11439 if Is_Entity_Name
(Subtype_Mark
(Def
))
11440 and then Present
(Entity
(Subtype_Mark
(Def
)))
11442 Ancestor
:= Get_Instance_Of
(Entity
(Subtype_Mark
(Def
)));
11444 -- Check whether parent is defined in a previous formal package
11447 Scope
(Scope
(Base_Type
(Etype
(A_Gen_T
)))) = Scope
(A_Gen_T
)
11450 Get_Instance_Of
(Base_Type
(Etype
(A_Gen_T
)));
11452 -- The type may be a local derivation, or a type extension of a
11453 -- previous formal, or of a formal of a parent package.
11455 elsif Is_Derived_Type
(Get_Instance_Of
(A_Gen_T
))
11457 Ekind
(Get_Instance_Of
(A_Gen_T
)) = E_Record_Type_With_Private
11459 -- Check whether the parent is another derived formal type in the
11460 -- same generic unit.
11462 if Etype
(A_Gen_T
) /= A_Gen_T
11463 and then Is_Generic_Type
(Etype
(A_Gen_T
))
11464 and then Scope
(Etype
(A_Gen_T
)) = Scope
(A_Gen_T
)
11465 and then Etype
(Etype
(A_Gen_T
)) /= Etype
(A_Gen_T
)
11467 -- Locate ancestor of parent from the subtype declaration
11468 -- created for the actual.
11474 Decl
:= First
(Actual_Decls
);
11475 while Present
(Decl
) loop
11476 if Nkind
(Decl
) = N_Subtype_Declaration
11477 and then Chars
(Defining_Identifier
(Decl
)) =
11478 Chars
(Etype
(A_Gen_T
))
11480 Ancestor
:= Generic_Parent_Type
(Decl
);
11488 pragma Assert
(Present
(Ancestor
));
11490 -- The ancestor itself may be a previous formal that has been
11493 Ancestor
:= Get_Instance_Of
(Ancestor
);
11497 Get_Instance_Of
(Base_Type
(Get_Instance_Of
(A_Gen_T
)));
11500 -- An unusual case: the actual is a type declared in a parent unit,
11501 -- but is not a formal type so there is no instance_of for it.
11502 -- Retrieve it by analyzing the record extension.
11504 elsif Is_Child_Unit
(Scope
(A_Gen_T
))
11505 and then In_Open_Scopes
(Scope
(Act_T
))
11506 and then Is_Generic_Instance
(Scope
(Act_T
))
11508 Analyze
(Subtype_Mark
(Def
));
11509 Ancestor
:= Entity
(Subtype_Mark
(Def
));
11512 Ancestor
:= Get_Instance_Of
(Etype
(Base_Type
(A_Gen_T
)));
11515 -- If the formal derived type has pragma Preelaborable_Initialization
11516 -- then the actual type must have preelaborable initialization.
11518 if Known_To_Have_Preelab_Init
(A_Gen_T
)
11519 and then not Has_Preelaborable_Initialization
(Act_T
)
11522 ("actual for & must have preelaborable initialization",
11526 -- Ada 2005 (AI-251)
11528 if Ada_Version
>= Ada_2005
and then Is_Interface
(Ancestor
) then
11529 if not Interface_Present_In_Ancestor
(Act_T
, Ancestor
) then
11531 ("(Ada 2005) expected type implementing & in instantiation",
11535 elsif not Is_Ancestor
(Base_Type
(Ancestor
), Act_T
) then
11537 ("expect type derived from & in instantiation",
11538 Actual
, First_Subtype
(Ancestor
));
11539 Abandon_Instantiation
(Actual
);
11542 -- Ada 2005 (AI-443): Synchronized formal derived type checks. Note
11543 -- that the formal type declaration has been rewritten as a private
11546 if Ada_Version
>= Ada_2005
11547 and then Nkind
(Parent
(A_Gen_T
)) = N_Private_Extension_Declaration
11548 and then Synchronized_Present
(Parent
(A_Gen_T
))
11550 -- The actual must be a synchronized tagged type
11552 if not Is_Tagged_Type
(Act_T
) then
11554 ("actual of synchronized type must be tagged", Actual
);
11555 Abandon_Instantiation
(Actual
);
11557 elsif Nkind
(Parent
(Act_T
)) = N_Full_Type_Declaration
11558 and then Nkind
(Type_Definition
(Parent
(Act_T
))) =
11559 N_Derived_Type_Definition
11560 and then not Synchronized_Present
(Type_Definition
11564 ("actual of synchronized type must be synchronized", Actual
);
11565 Abandon_Instantiation
(Actual
);
11569 -- Perform atomic/volatile checks (RM C.6(12)). Note that AI05-0218-1
11570 -- removes the second instance of the phrase "or allow pass by copy".
11572 if Is_Atomic
(Act_T
) and then not Is_Atomic
(Ancestor
) then
11574 ("cannot have atomic actual type for non-atomic formal type",
11577 elsif Is_Volatile
(Act_T
) and then not Is_Volatile
(Ancestor
) then
11579 ("cannot have volatile actual type for non-volatile formal type",
11583 -- It should not be necessary to check for unknown discriminants on
11584 -- Formal, but for some reason Has_Unknown_Discriminants is false for
11585 -- A_Gen_T, so Is_Indefinite_Subtype incorrectly returns False. This
11586 -- needs fixing. ???
11588 if not Is_Indefinite_Subtype
(A_Gen_T
)
11589 and then not Unknown_Discriminants_Present
(Formal
)
11590 and then Is_Indefinite_Subtype
(Act_T
)
11593 ("actual subtype must be constrained", Actual
);
11594 Abandon_Instantiation
(Actual
);
11597 if not Unknown_Discriminants_Present
(Formal
) then
11598 if Is_Constrained
(Ancestor
) then
11599 if not Is_Constrained
(Act_T
) then
11601 ("actual subtype must be constrained", Actual
);
11602 Abandon_Instantiation
(Actual
);
11605 -- Ancestor is unconstrained, Check if generic formal and actual
11606 -- agree on constrainedness. The check only applies to array types
11607 -- and discriminated types.
11609 elsif Is_Constrained
(Act_T
) then
11610 if Ekind
(Ancestor
) = E_Access_Type
11611 or else (not Is_Constrained
(A_Gen_T
)
11612 and then Is_Composite_Type
(A_Gen_T
))
11614 Error_Msg_N
("actual subtype must be unconstrained", Actual
);
11615 Abandon_Instantiation
(Actual
);
11618 -- A class-wide type is only allowed if the formal has unknown
11621 elsif Is_Class_Wide_Type
(Act_T
)
11622 and then not Has_Unknown_Discriminants
(Ancestor
)
11625 ("actual for & cannot be a class-wide type", Actual
, Gen_T
);
11626 Abandon_Instantiation
(Actual
);
11628 -- Otherwise, the formal and actual must have the same number
11629 -- of discriminants and each discriminant of the actual must
11630 -- correspond to a discriminant of the formal.
11632 elsif Has_Discriminants
(Act_T
)
11633 and then not Has_Unknown_Discriminants
(Act_T
)
11634 and then Has_Discriminants
(Ancestor
)
11636 Actual_Discr
:= First_Discriminant
(Act_T
);
11637 Ancestor_Discr
:= First_Discriminant
(Ancestor
);
11638 while Present
(Actual_Discr
)
11639 and then Present
(Ancestor_Discr
)
11641 if Base_Type
(Act_T
) /= Base_Type
(Ancestor
) and then
11642 No
(Corresponding_Discriminant
(Actual_Discr
))
11645 ("discriminant & does not correspond " &
11646 "to ancestor discriminant", Actual
, Actual_Discr
);
11647 Abandon_Instantiation
(Actual
);
11650 Next_Discriminant
(Actual_Discr
);
11651 Next_Discriminant
(Ancestor_Discr
);
11654 if Present
(Actual_Discr
) or else Present
(Ancestor_Discr
) then
11656 ("actual for & must have same number of discriminants",
11658 Abandon_Instantiation
(Actual
);
11661 -- This case should be caught by the earlier check for
11662 -- constrainedness, but the check here is added for completeness.
11664 elsif Has_Discriminants
(Act_T
)
11665 and then not Has_Unknown_Discriminants
(Act_T
)
11668 ("actual for & must not have discriminants", Actual
, Gen_T
);
11669 Abandon_Instantiation
(Actual
);
11671 elsif Has_Discriminants
(Ancestor
) then
11673 ("actual for & must have known discriminants", Actual
, Gen_T
);
11674 Abandon_Instantiation
(Actual
);
11677 if not Subtypes_Statically_Compatible
11678 (Act_T
, Ancestor
, Formal_Derived_Matching
=> True)
11681 ("constraint on actual is incompatible with formal", Actual
);
11682 Abandon_Instantiation
(Actual
);
11686 -- If the formal and actual types are abstract, check that there
11687 -- are no abstract primitives of the actual type that correspond to
11688 -- nonabstract primitives of the formal type (second sentence of
11691 if Is_Abstract_Type
(A_Gen_T
) and then Is_Abstract_Type
(Act_T
) then
11692 Check_Abstract_Primitives
: declare
11693 Gen_Prims
: constant Elist_Id
:=
11694 Primitive_Operations
(A_Gen_T
);
11695 Gen_Elmt
: Elmt_Id
;
11696 Gen_Subp
: Entity_Id
;
11697 Anc_Subp
: Entity_Id
;
11698 Anc_Formal
: Entity_Id
;
11699 Anc_F_Type
: Entity_Id
;
11701 Act_Prims
: constant Elist_Id
:= Primitive_Operations
(Act_T
);
11702 Act_Elmt
: Elmt_Id
;
11703 Act_Subp
: Entity_Id
;
11704 Act_Formal
: Entity_Id
;
11705 Act_F_Type
: Entity_Id
;
11707 Subprograms_Correspond
: Boolean;
11709 function Is_Tagged_Ancestor
(T1
, T2
: Entity_Id
) return Boolean;
11710 -- Returns true if T2 is derived directly or indirectly from
11711 -- T1, including derivations from interfaces. T1 and T2 are
11712 -- required to be specific tagged base types.
11714 ------------------------
11715 -- Is_Tagged_Ancestor --
11716 ------------------------
11718 function Is_Tagged_Ancestor
(T1
, T2
: Entity_Id
) return Boolean
11720 Intfc_Elmt
: Elmt_Id
;
11723 -- The predicate is satisfied if the types are the same
11728 -- If we've reached the top of the derivation chain then
11729 -- we know that T1 is not an ancestor of T2.
11731 elsif Etype
(T2
) = T2
then
11734 -- Proceed to check T2's immediate parent
11736 elsif Is_Ancestor
(T1
, Base_Type
(Etype
(T2
))) then
11739 -- Finally, check to see if T1 is an ancestor of any of T2's
11743 Intfc_Elmt
:= First_Elmt
(Interfaces
(T2
));
11744 while Present
(Intfc_Elmt
) loop
11745 if Is_Ancestor
(T1
, Node
(Intfc_Elmt
)) then
11749 Next_Elmt
(Intfc_Elmt
);
11754 end Is_Tagged_Ancestor
;
11756 -- Start of processing for Check_Abstract_Primitives
11759 -- Loop over all of the formal derived type's primitives
11761 Gen_Elmt
:= First_Elmt
(Gen_Prims
);
11762 while Present
(Gen_Elmt
) loop
11763 Gen_Subp
:= Node
(Gen_Elmt
);
11765 -- If the primitive of the formal is not abstract, then
11766 -- determine whether there is a corresponding primitive of
11767 -- the actual type that's abstract.
11769 if not Is_Abstract_Subprogram
(Gen_Subp
) then
11770 Act_Elmt
:= First_Elmt
(Act_Prims
);
11771 while Present
(Act_Elmt
) loop
11772 Act_Subp
:= Node
(Act_Elmt
);
11774 -- If we find an abstract primitive of the actual,
11775 -- then we need to test whether it corresponds to the
11776 -- subprogram from which the generic formal primitive
11779 if Is_Abstract_Subprogram
(Act_Subp
) then
11780 Anc_Subp
:= Alias
(Gen_Subp
);
11782 -- Test whether we have a corresponding primitive
11783 -- by comparing names, kinds, formal types, and
11786 if Chars
(Anc_Subp
) = Chars
(Act_Subp
)
11787 and then Ekind
(Anc_Subp
) = Ekind
(Act_Subp
)
11789 Anc_Formal
:= First_Formal
(Anc_Subp
);
11790 Act_Formal
:= First_Formal
(Act_Subp
);
11791 while Present
(Anc_Formal
)
11792 and then Present
(Act_Formal
)
11794 Anc_F_Type
:= Etype
(Anc_Formal
);
11795 Act_F_Type
:= Etype
(Act_Formal
);
11797 if Ekind
(Anc_F_Type
)
11798 = E_Anonymous_Access_Type
11800 Anc_F_Type
:= Designated_Type
(Anc_F_Type
);
11802 if Ekind
(Act_F_Type
)
11803 = E_Anonymous_Access_Type
11806 Designated_Type
(Act_F_Type
);
11812 Ekind
(Act_F_Type
) = E_Anonymous_Access_Type
11817 Anc_F_Type
:= Base_Type
(Anc_F_Type
);
11818 Act_F_Type
:= Base_Type
(Act_F_Type
);
11820 -- If the formal is controlling, then the
11821 -- the type of the actual primitive's formal
11822 -- must be derived directly or indirectly
11823 -- from the type of the ancestor primitive's
11826 if Is_Controlling_Formal
(Anc_Formal
) then
11827 if not Is_Tagged_Ancestor
11828 (Anc_F_Type
, Act_F_Type
)
11833 -- Otherwise the types of the formals must
11836 elsif Anc_F_Type
/= Act_F_Type
then
11840 Next_Entity
(Anc_Formal
);
11841 Next_Entity
(Act_Formal
);
11844 -- If we traversed through all of the formals
11845 -- then so far the subprograms correspond, so
11846 -- now check that any result types correspond.
11848 if No
(Anc_Formal
) and then No
(Act_Formal
) then
11849 Subprograms_Correspond
:= True;
11851 if Ekind
(Act_Subp
) = E_Function
then
11852 Anc_F_Type
:= Etype
(Anc_Subp
);
11853 Act_F_Type
:= Etype
(Act_Subp
);
11855 if Ekind
(Anc_F_Type
)
11856 = E_Anonymous_Access_Type
11859 Designated_Type
(Anc_F_Type
);
11861 if Ekind
(Act_F_Type
)
11862 = E_Anonymous_Access_Type
11865 Designated_Type
(Act_F_Type
);
11867 Subprograms_Correspond
:= False;
11872 = E_Anonymous_Access_Type
11874 Subprograms_Correspond
:= False;
11877 Anc_F_Type
:= Base_Type
(Anc_F_Type
);
11878 Act_F_Type
:= Base_Type
(Act_F_Type
);
11880 -- Now either the result types must be
11881 -- the same or, if the result type is
11882 -- controlling, the result type of the
11883 -- actual primitive must descend from the
11884 -- result type of the ancestor primitive.
11886 if Subprograms_Correspond
11887 and then Anc_F_Type
/= Act_F_Type
11889 Has_Controlling_Result
(Anc_Subp
)
11891 not Is_Tagged_Ancestor
11892 (Anc_F_Type
, Act_F_Type
)
11894 Subprograms_Correspond
:= False;
11898 -- Found a matching subprogram belonging to
11899 -- formal ancestor type, so actual subprogram
11900 -- corresponds and this violates 3.9.3(9).
11902 if Subprograms_Correspond
then
11904 ("abstract subprogram & overrides " &
11905 "nonabstract subprogram of ancestor",
11913 Next_Elmt
(Act_Elmt
);
11917 Next_Elmt
(Gen_Elmt
);
11919 end Check_Abstract_Primitives
;
11922 -- Verify that limitedness matches. If parent is a limited
11923 -- interface then the generic formal is not unless declared
11924 -- explicitly so. If not declared limited, the actual cannot be
11925 -- limited (see AI05-0087).
11927 -- Even though this AI is a binding interpretation, we enable the
11928 -- check only in Ada 2012 mode, because this improper construct
11929 -- shows up in user code and in existing B-tests.
11931 if Is_Limited_Type
(Act_T
)
11932 and then not Is_Limited_Type
(A_Gen_T
)
11933 and then Ada_Version
>= Ada_2012
11935 if In_Instance
then
11939 ("actual for non-limited & cannot be a limited type", Actual
,
11941 Explain_Limited_Type
(Act_T
, Actual
);
11942 Abandon_Instantiation
(Actual
);
11945 end Validate_Derived_Type_Instance
;
11947 ----------------------------------------
11948 -- Validate_Discriminated_Formal_Type --
11949 ----------------------------------------
11951 procedure Validate_Discriminated_Formal_Type
is
11952 Formal_Discr
: Entity_Id
;
11953 Actual_Discr
: Entity_Id
;
11954 Formal_Subt
: Entity_Id
;
11957 if Has_Discriminants
(A_Gen_T
) then
11958 if not Has_Discriminants
(Act_T
) then
11960 ("actual for & must have discriminants", Actual
, Gen_T
);
11961 Abandon_Instantiation
(Actual
);
11963 elsif Is_Constrained
(Act_T
) then
11965 ("actual for & must be unconstrained", Actual
, Gen_T
);
11966 Abandon_Instantiation
(Actual
);
11969 Formal_Discr
:= First_Discriminant
(A_Gen_T
);
11970 Actual_Discr
:= First_Discriminant
(Act_T
);
11971 while Formal_Discr
/= Empty
loop
11972 if Actual_Discr
= Empty
then
11974 ("discriminants on actual do not match formal",
11976 Abandon_Instantiation
(Actual
);
11979 Formal_Subt
:= Get_Instance_Of
(Etype
(Formal_Discr
));
11981 -- Access discriminants match if designated types do
11983 if Ekind
(Base_Type
(Formal_Subt
)) = E_Anonymous_Access_Type
11984 and then (Ekind
(Base_Type
(Etype
(Actual_Discr
)))) =
11985 E_Anonymous_Access_Type
11988 (Designated_Type
(Base_Type
(Formal_Subt
))) =
11989 Designated_Type
(Base_Type
(Etype
(Actual_Discr
)))
11993 elsif Base_Type
(Formal_Subt
) /=
11994 Base_Type
(Etype
(Actual_Discr
))
11997 ("types of actual discriminants must match formal",
11999 Abandon_Instantiation
(Actual
);
12001 elsif not Subtypes_Statically_Match
12002 (Formal_Subt
, Etype
(Actual_Discr
))
12003 and then Ada_Version
>= Ada_95
12006 ("subtypes of actual discriminants must match formal",
12008 Abandon_Instantiation
(Actual
);
12011 Next_Discriminant
(Formal_Discr
);
12012 Next_Discriminant
(Actual_Discr
);
12015 if Actual_Discr
/= Empty
then
12017 ("discriminants on actual do not match formal",
12019 Abandon_Instantiation
(Actual
);
12023 end Validate_Discriminated_Formal_Type
;
12025 ---------------------------------------
12026 -- Validate_Incomplete_Type_Instance --
12027 ---------------------------------------
12029 procedure Validate_Incomplete_Type_Instance
is
12031 if not Is_Tagged_Type
(Act_T
)
12032 and then Is_Tagged_Type
(A_Gen_T
)
12035 ("actual for & must be a tagged type", Actual
, Gen_T
);
12038 Validate_Discriminated_Formal_Type
;
12039 end Validate_Incomplete_Type_Instance
;
12041 --------------------------------------
12042 -- Validate_Interface_Type_Instance --
12043 --------------------------------------
12045 procedure Validate_Interface_Type_Instance
is
12047 if not Is_Interface
(Act_T
) then
12049 ("actual for formal interface type must be an interface",
12052 elsif Is_Limited_Type
(Act_T
) /= Is_Limited_Type
(A_Gen_T
)
12053 or else Is_Task_Interface
(A_Gen_T
) /= Is_Task_Interface
(Act_T
)
12054 or else Is_Protected_Interface
(A_Gen_T
) /=
12055 Is_Protected_Interface
(Act_T
)
12056 or else Is_Synchronized_Interface
(A_Gen_T
) /=
12057 Is_Synchronized_Interface
(Act_T
)
12060 ("actual for interface& does not match (RM 12.5.5(4))",
12063 end Validate_Interface_Type_Instance
;
12065 ------------------------------------
12066 -- Validate_Private_Type_Instance --
12067 ------------------------------------
12069 procedure Validate_Private_Type_Instance
is
12071 if Is_Limited_Type
(Act_T
)
12072 and then not Is_Limited_Type
(A_Gen_T
)
12074 if In_Instance
then
12078 ("actual for non-limited & cannot be a limited type", Actual
,
12080 Explain_Limited_Type
(Act_T
, Actual
);
12081 Abandon_Instantiation
(Actual
);
12084 elsif Known_To_Have_Preelab_Init
(A_Gen_T
)
12085 and then not Has_Preelaborable_Initialization
(Act_T
)
12088 ("actual for & must have preelaborable initialization", Actual
,
12091 elsif Is_Indefinite_Subtype
(Act_T
)
12092 and then not Is_Indefinite_Subtype
(A_Gen_T
)
12093 and then Ada_Version
>= Ada_95
12096 ("actual for & must be a definite subtype", Actual
, Gen_T
);
12098 elsif not Is_Tagged_Type
(Act_T
)
12099 and then Is_Tagged_Type
(A_Gen_T
)
12102 ("actual for & must be a tagged type", Actual
, Gen_T
);
12105 Validate_Discriminated_Formal_Type
;
12107 end Validate_Private_Type_Instance
;
12109 -- Start of processing for Instantiate_Type
12112 if Get_Instance_Of
(A_Gen_T
) /= A_Gen_T
then
12113 Error_Msg_N
("duplicate instantiation of generic type", Actual
);
12114 return New_List
(Error
);
12116 elsif not Is_Entity_Name
(Actual
)
12117 or else not Is_Type
(Entity
(Actual
))
12120 ("expect valid subtype mark to instantiate &", Actual
, Gen_T
);
12121 Abandon_Instantiation
(Actual
);
12124 Act_T
:= Entity
(Actual
);
12126 -- Ada 2005 (AI-216): An Unchecked_Union subtype shall only be passed
12127 -- as a generic actual parameter if the corresponding formal type
12128 -- does not have a known_discriminant_part, or is a formal derived
12129 -- type that is an Unchecked_Union type.
12131 if Is_Unchecked_Union
(Base_Type
(Act_T
)) then
12132 if not Has_Discriminants
(A_Gen_T
)
12133 or else (Is_Derived_Type
(A_Gen_T
)
12134 and then Is_Unchecked_Union
(A_Gen_T
))
12138 Error_Msg_N
("unchecked union cannot be the actual for a "
12139 & "discriminated formal type", Act_T
);
12144 -- Deal with fixed/floating restrictions
12146 if Is_Floating_Point_Type
(Act_T
) then
12147 Check_Restriction
(No_Floating_Point
, Actual
);
12148 elsif Is_Fixed_Point_Type
(Act_T
) then
12149 Check_Restriction
(No_Fixed_Point
, Actual
);
12152 -- Deal with error of using incomplete type as generic actual.
12153 -- This includes limited views of a type, even if the non-limited
12154 -- view may be available.
12156 if Ekind
(Act_T
) = E_Incomplete_Type
12157 or else (Is_Class_Wide_Type
(Act_T
)
12158 and then Ekind
(Root_Type
(Act_T
)) = E_Incomplete_Type
)
12160 -- If the formal is an incomplete type, the actual can be
12161 -- incomplete as well.
12163 if Ekind
(A_Gen_T
) = E_Incomplete_Type
then
12166 elsif Is_Class_Wide_Type
(Act_T
)
12167 or else No
(Full_View
(Act_T
))
12169 Error_Msg_N
("premature use of incomplete type", Actual
);
12170 Abandon_Instantiation
(Actual
);
12172 Act_T
:= Full_View
(Act_T
);
12173 Set_Entity
(Actual
, Act_T
);
12175 if Has_Private_Component
(Act_T
) then
12177 ("premature use of type with private component", Actual
);
12181 -- Deal with error of premature use of private type as generic actual
12183 elsif Is_Private_Type
(Act_T
)
12184 and then Is_Private_Type
(Base_Type
(Act_T
))
12185 and then not Is_Generic_Type
(Act_T
)
12186 and then not Is_Derived_Type
(Act_T
)
12187 and then No
(Full_View
(Root_Type
(Act_T
)))
12189 -- If the formal is an incomplete type, the actual can be
12190 -- private or incomplete as well.
12192 if Ekind
(A_Gen_T
) = E_Incomplete_Type
then
12195 Error_Msg_N
("premature use of private type", Actual
);
12198 elsif Has_Private_Component
(Act_T
) then
12200 ("premature use of type with private component", Actual
);
12203 Set_Instance_Of
(A_Gen_T
, Act_T
);
12205 -- If the type is generic, the class-wide type may also be used
12207 if Is_Tagged_Type
(A_Gen_T
)
12208 and then Is_Tagged_Type
(Act_T
)
12209 and then not Is_Class_Wide_Type
(A_Gen_T
)
12211 Set_Instance_Of
(Class_Wide_Type
(A_Gen_T
),
12212 Class_Wide_Type
(Act_T
));
12215 if not Is_Abstract_Type
(A_Gen_T
)
12216 and then Is_Abstract_Type
(Act_T
)
12219 ("actual of non-abstract formal cannot be abstract", Actual
);
12222 -- A generic scalar type is a first subtype for which we generate
12223 -- an anonymous base type. Indicate that the instance of this base
12224 -- is the base type of the actual.
12226 if Is_Scalar_Type
(A_Gen_T
) then
12227 Set_Instance_Of
(Etype
(A_Gen_T
), Etype
(Act_T
));
12231 if Error_Posted
(Act_T
) then
12234 case Nkind
(Def
) is
12235 when N_Formal_Private_Type_Definition
=>
12236 Validate_Private_Type_Instance
;
12238 when N_Formal_Incomplete_Type_Definition
=>
12239 Validate_Incomplete_Type_Instance
;
12241 when N_Formal_Derived_Type_Definition
=>
12242 Validate_Derived_Type_Instance
;
12244 when N_Formal_Discrete_Type_Definition
=>
12245 if not Is_Discrete_Type
(Act_T
) then
12247 ("expect discrete type in instantiation of&",
12249 Abandon_Instantiation
(Actual
);
12252 Diagnose_Predicated_Actual
;
12254 when N_Formal_Signed_Integer_Type_Definition
=>
12255 if not Is_Signed_Integer_Type
(Act_T
) then
12257 ("expect signed integer type in instantiation of&",
12259 Abandon_Instantiation
(Actual
);
12262 Diagnose_Predicated_Actual
;
12264 when N_Formal_Modular_Type_Definition
=>
12265 if not Is_Modular_Integer_Type
(Act_T
) then
12267 ("expect modular type in instantiation of &",
12269 Abandon_Instantiation
(Actual
);
12272 Diagnose_Predicated_Actual
;
12274 when N_Formal_Floating_Point_Definition
=>
12275 if not Is_Floating_Point_Type
(Act_T
) then
12277 ("expect float type in instantiation of &", Actual
, Gen_T
);
12278 Abandon_Instantiation
(Actual
);
12281 when N_Formal_Ordinary_Fixed_Point_Definition
=>
12282 if not Is_Ordinary_Fixed_Point_Type
(Act_T
) then
12284 ("expect ordinary fixed point type in instantiation of &",
12286 Abandon_Instantiation
(Actual
);
12289 when N_Formal_Decimal_Fixed_Point_Definition
=>
12290 if not Is_Decimal_Fixed_Point_Type
(Act_T
) then
12292 ("expect decimal type in instantiation of &",
12294 Abandon_Instantiation
(Actual
);
12297 when N_Array_Type_Definition
=>
12298 Validate_Array_Type_Instance
;
12300 when N_Access_To_Object_Definition
=>
12301 Validate_Access_Type_Instance
;
12303 when N_Access_Function_Definition |
12304 N_Access_Procedure_Definition
=>
12305 Validate_Access_Subprogram_Instance
;
12307 when N_Record_Definition
=>
12308 Validate_Interface_Type_Instance
;
12310 when N_Derived_Type_Definition
=>
12311 Validate_Derived_Interface_Type_Instance
;
12314 raise Program_Error
;
12319 Subt
:= New_Copy
(Gen_T
);
12321 -- Use adjusted sloc of subtype name as the location for other nodes in
12322 -- the subtype declaration.
12324 Loc
:= Sloc
(Subt
);
12327 Make_Subtype_Declaration
(Loc
,
12328 Defining_Identifier
=> Subt
,
12329 Subtype_Indication
=> New_Occurrence_Of
(Act_T
, Loc
));
12331 if Is_Private_Type
(Act_T
) then
12332 Set_Has_Private_View
(Subtype_Indication
(Decl_Node
));
12334 elsif Is_Access_Type
(Act_T
)
12335 and then Is_Private_Type
(Designated_Type
(Act_T
))
12337 Set_Has_Private_View
(Subtype_Indication
(Decl_Node
));
12340 Decl_Nodes
:= New_List
(Decl_Node
);
12342 -- Flag actual derived types so their elaboration produces the
12343 -- appropriate renamings for the primitive operations of the ancestor.
12344 -- Flag actual for formal private types as well, to determine whether
12345 -- operations in the private part may override inherited operations.
12346 -- If the formal has an interface list, the ancestor is not the
12347 -- parent, but the analyzed formal that includes the interface
12348 -- operations of all its progenitors.
12350 -- Same treatment for formal private types, so we can check whether the
12351 -- type is tagged limited when validating derivations in the private
12352 -- part. (See AI05-096).
12354 if Nkind
(Def
) = N_Formal_Derived_Type_Definition
then
12355 if Present
(Interface_List
(Def
)) then
12356 Set_Generic_Parent_Type
(Decl_Node
, A_Gen_T
);
12358 Set_Generic_Parent_Type
(Decl_Node
, Ancestor
);
12361 elsif Nkind_In
(Def
,
12362 N_Formal_Private_Type_Definition
,
12363 N_Formal_Incomplete_Type_Definition
)
12365 Set_Generic_Parent_Type
(Decl_Node
, A_Gen_T
);
12368 -- If the actual is a synchronized type that implements an interface,
12369 -- the primitive operations are attached to the corresponding record,
12370 -- and we have to treat it as an additional generic actual, so that its
12371 -- primitive operations become visible in the instance. The task or
12372 -- protected type itself does not carry primitive operations.
12374 if Is_Concurrent_Type
(Act_T
)
12375 and then Is_Tagged_Type
(Act_T
)
12376 and then Present
(Corresponding_Record_Type
(Act_T
))
12377 and then Present
(Ancestor
)
12378 and then Is_Interface
(Ancestor
)
12381 Corr_Rec
: constant Entity_Id
:=
12382 Corresponding_Record_Type
(Act_T
);
12383 New_Corr
: Entity_Id
;
12384 Corr_Decl
: Node_Id
;
12387 New_Corr
:= Make_Temporary
(Loc
, 'S');
12389 Make_Subtype_Declaration
(Loc
,
12390 Defining_Identifier
=> New_Corr
,
12391 Subtype_Indication
=>
12392 New_Occurrence_Of
(Corr_Rec
, Loc
));
12393 Append_To
(Decl_Nodes
, Corr_Decl
);
12395 if Ekind
(Act_T
) = E_Task_Type
then
12396 Set_Ekind
(Subt
, E_Task_Subtype
);
12398 Set_Ekind
(Subt
, E_Protected_Subtype
);
12401 Set_Corresponding_Record_Type
(Subt
, Corr_Rec
);
12402 Set_Generic_Parent_Type
(Corr_Decl
, Ancestor
);
12403 Set_Generic_Parent_Type
(Decl_Node
, Empty
);
12408 end Instantiate_Type
;
12410 ---------------------
12411 -- Is_In_Main_Unit --
12412 ---------------------
12414 function Is_In_Main_Unit
(N
: Node_Id
) return Boolean is
12415 Unum
: constant Unit_Number_Type
:= Get_Source_Unit
(N
);
12416 Current_Unit
: Node_Id
;
12419 if Unum
= Main_Unit
then
12422 -- If the current unit is a subunit then it is either the main unit or
12423 -- is being compiled as part of the main unit.
12425 elsif Nkind
(N
) = N_Compilation_Unit
then
12426 return Nkind
(Unit
(N
)) = N_Subunit
;
12429 Current_Unit
:= Parent
(N
);
12430 while Present
(Current_Unit
)
12431 and then Nkind
(Current_Unit
) /= N_Compilation_Unit
12433 Current_Unit
:= Parent
(Current_Unit
);
12436 -- The instantiation node is in the main unit, or else the current node
12437 -- (perhaps as the result of nested instantiations) is in the main unit,
12438 -- or in the declaration of the main unit, which in this last case must
12441 return Unum
= Main_Unit
12442 or else Current_Unit
= Cunit
(Main_Unit
)
12443 or else Current_Unit
= Library_Unit
(Cunit
(Main_Unit
))
12444 or else (Present
(Library_Unit
(Current_Unit
))
12445 and then Is_In_Main_Unit
(Library_Unit
(Current_Unit
)));
12446 end Is_In_Main_Unit
;
12448 ----------------------------
12449 -- Load_Parent_Of_Generic --
12450 ----------------------------
12452 procedure Load_Parent_Of_Generic
12455 Body_Optional
: Boolean := False)
12457 Comp_Unit
: constant Node_Id
:= Cunit
(Get_Source_Unit
(Spec
));
12458 Saved_Style_Check
: constant Boolean := Style_Check
;
12459 Saved_Warnings
: constant Warning_Record
:= Save_Warnings
;
12460 True_Parent
: Node_Id
;
12461 Inst_Node
: Node_Id
;
12463 Previous_Instances
: constant Elist_Id
:= New_Elmt_List
;
12465 procedure Collect_Previous_Instances
(Decls
: List_Id
);
12466 -- Collect all instantiations in the given list of declarations, that
12467 -- precede the generic that we need to load. If the bodies of these
12468 -- instantiations are available, we must analyze them, to ensure that
12469 -- the public symbols generated are the same when the unit is compiled
12470 -- to generate code, and when it is compiled in the context of a unit
12471 -- that needs a particular nested instance. This process is applied to
12472 -- both package and subprogram instances.
12474 --------------------------------
12475 -- Collect_Previous_Instances --
12476 --------------------------------
12478 procedure Collect_Previous_Instances
(Decls
: List_Id
) is
12482 Decl
:= First
(Decls
);
12483 while Present
(Decl
) loop
12484 if Sloc
(Decl
) >= Sloc
(Inst_Node
) then
12487 -- If Decl is an instantiation, then record it as requiring
12488 -- instantiation of the corresponding body, except if it is an
12489 -- abbreviated instantiation generated internally for conformance
12490 -- checking purposes only for the case of a formal package
12491 -- declared without a box (see Instantiate_Formal_Package). Such
12492 -- an instantiation does not generate any code (the actual code
12493 -- comes from actual) and thus does not need to be analyzed here.
12494 -- If the instantiation appears with a generic package body it is
12495 -- not analyzed here either.
12497 elsif Nkind
(Decl
) = N_Package_Instantiation
12498 and then not Is_Internal
(Defining_Entity
(Decl
))
12500 Append_Elmt
(Decl
, Previous_Instances
);
12502 -- For a subprogram instantiation, omit instantiations intrinsic
12503 -- operations (Unchecked_Conversions, etc.) that have no bodies.
12505 elsif Nkind_In
(Decl
, N_Function_Instantiation
,
12506 N_Procedure_Instantiation
)
12507 and then not Is_Intrinsic_Subprogram
(Entity
(Name
(Decl
)))
12509 Append_Elmt
(Decl
, Previous_Instances
);
12511 elsif Nkind
(Decl
) = N_Package_Declaration
then
12512 Collect_Previous_Instances
12513 (Visible_Declarations
(Specification
(Decl
)));
12514 Collect_Previous_Instances
12515 (Private_Declarations
(Specification
(Decl
)));
12517 -- Previous non-generic bodies may contain instances as well
12519 elsif Nkind
(Decl
) = N_Package_Body
12520 and then Ekind
(Corresponding_Spec
(Decl
)) /= E_Generic_Package
12522 Collect_Previous_Instances
(Declarations
(Decl
));
12524 elsif Nkind
(Decl
) = N_Subprogram_Body
12525 and then not Acts_As_Spec
(Decl
)
12526 and then not Is_Generic_Subprogram
(Corresponding_Spec
(Decl
))
12528 Collect_Previous_Instances
(Declarations
(Decl
));
12533 end Collect_Previous_Instances
;
12535 -- Start of processing for Load_Parent_Of_Generic
12538 if not In_Same_Source_Unit
(N
, Spec
)
12539 or else Nkind
(Unit
(Comp_Unit
)) = N_Package_Declaration
12540 or else (Nkind
(Unit
(Comp_Unit
)) = N_Package_Body
12541 and then not Is_In_Main_Unit
(Spec
))
12543 -- Find body of parent of spec, and analyze it. A special case arises
12544 -- when the parent is an instantiation, that is to say when we are
12545 -- currently instantiating a nested generic. In that case, there is
12546 -- no separate file for the body of the enclosing instance. Instead,
12547 -- the enclosing body must be instantiated as if it were a pending
12548 -- instantiation, in order to produce the body for the nested generic
12549 -- we require now. Note that in that case the generic may be defined
12550 -- in a package body, the instance defined in the same package body,
12551 -- and the original enclosing body may not be in the main unit.
12553 Inst_Node
:= Empty
;
12555 True_Parent
:= Parent
(Spec
);
12556 while Present
(True_Parent
)
12557 and then Nkind
(True_Parent
) /= N_Compilation_Unit
12559 if Nkind
(True_Parent
) = N_Package_Declaration
12561 Nkind
(Original_Node
(True_Parent
)) = N_Package_Instantiation
12563 -- Parent is a compilation unit that is an instantiation.
12564 -- Instantiation node has been replaced with package decl.
12566 Inst_Node
:= Original_Node
(True_Parent
);
12569 elsif Nkind
(True_Parent
) = N_Package_Declaration
12570 and then Present
(Generic_Parent
(Specification
(True_Parent
)))
12571 and then Nkind
(Parent
(True_Parent
)) /= N_Compilation_Unit
12573 -- Parent is an instantiation within another specification.
12574 -- Declaration for instance has been inserted before original
12575 -- instantiation node. A direct link would be preferable?
12577 Inst_Node
:= Next
(True_Parent
);
12578 while Present
(Inst_Node
)
12579 and then Nkind
(Inst_Node
) /= N_Package_Instantiation
12584 -- If the instance appears within a generic, and the generic
12585 -- unit is defined within a formal package of the enclosing
12586 -- generic, there is no generic body available, and none
12587 -- needed. A more precise test should be used ???
12589 if No
(Inst_Node
) then
12596 True_Parent
:= Parent
(True_Parent
);
12600 -- Case where we are currently instantiating a nested generic
12602 if Present
(Inst_Node
) then
12603 if Nkind
(Parent
(True_Parent
)) = N_Compilation_Unit
then
12605 -- Instantiation node and declaration of instantiated package
12606 -- were exchanged when only the declaration was needed.
12607 -- Restore instantiation node before proceeding with body.
12609 Set_Unit
(Parent
(True_Parent
), Inst_Node
);
12612 -- Now complete instantiation of enclosing body, if it appears in
12613 -- some other unit. If it appears in the current unit, the body
12614 -- will have been instantiated already.
12616 if No
(Corresponding_Body
(Instance_Spec
(Inst_Node
))) then
12618 -- We need to determine the expander mode to instantiate the
12619 -- enclosing body. Because the generic body we need may use
12620 -- global entities declared in the enclosing package (including
12621 -- aggregates) it is in general necessary to compile this body
12622 -- with expansion enabled, except if we are within a generic
12623 -- package, in which case the usual generic rule applies.
12626 Exp_Status
: Boolean := True;
12630 -- Loop through scopes looking for generic package
12632 Scop
:= Scope
(Defining_Entity
(Instance_Spec
(Inst_Node
)));
12633 while Present
(Scop
)
12634 and then Scop
/= Standard_Standard
12636 if Ekind
(Scop
) = E_Generic_Package
then
12637 Exp_Status
:= False;
12641 Scop
:= Scope
(Scop
);
12644 -- Collect previous instantiations in the unit that contains
12645 -- the desired generic.
12647 if Nkind
(Parent
(True_Parent
)) /= N_Compilation_Unit
12648 and then not Body_Optional
12652 Info
: Pending_Body_Info
;
12656 Par
:= Parent
(Inst_Node
);
12657 while Present
(Par
) loop
12658 exit when Nkind
(Parent
(Par
)) = N_Compilation_Unit
;
12659 Par
:= Parent
(Par
);
12662 pragma Assert
(Present
(Par
));
12664 if Nkind
(Par
) = N_Package_Body
then
12665 Collect_Previous_Instances
(Declarations
(Par
));
12667 elsif Nkind
(Par
) = N_Package_Declaration
then
12668 Collect_Previous_Instances
12669 (Visible_Declarations
(Specification
(Par
)));
12670 Collect_Previous_Instances
12671 (Private_Declarations
(Specification
(Par
)));
12674 -- Enclosing unit is a subprogram body. In this
12675 -- case all instance bodies are processed in order
12676 -- and there is no need to collect them separately.
12681 Decl
:= First_Elmt
(Previous_Instances
);
12682 while Present
(Decl
) loop
12684 (Inst_Node
=> Node
(Decl
),
12686 Instance_Spec
(Node
(Decl
)),
12687 Expander_Status
=> Exp_Status
,
12688 Current_Sem_Unit
=>
12689 Get_Code_Unit
(Sloc
(Node
(Decl
))),
12690 Scope_Suppress
=> Scope_Suppress
,
12691 Local_Suppress_Stack_Top
=>
12692 Local_Suppress_Stack_Top
,
12693 Version
=> Ada_Version
,
12694 Version_Pragma
=> Ada_Version_Pragma
,
12695 Warnings
=> Save_Warnings
,
12696 SPARK_Mode
=> SPARK_Mode
,
12697 SPARK_Mode_Pragma
=> SPARK_Mode_Pragma
);
12699 -- Package instance
12702 Nkind
(Node
(Decl
)) = N_Package_Instantiation
12704 Instantiate_Package_Body
12705 (Info
, Body_Optional
=> True);
12707 -- Subprogram instance
12710 -- The instance_spec is the wrapper package,
12711 -- and the subprogram declaration is the last
12712 -- declaration in the wrapper.
12716 (Visible_Declarations
12717 (Specification
(Info
.Act_Decl
)));
12719 Instantiate_Subprogram_Body
12720 (Info
, Body_Optional
=> True);
12728 Instantiate_Package_Body
12730 ((Inst_Node
=> Inst_Node
,
12731 Act_Decl
=> True_Parent
,
12732 Expander_Status
=> Exp_Status
,
12733 Current_Sem_Unit
=> Get_Code_Unit
12734 (Sloc
(Inst_Node
)),
12735 Scope_Suppress
=> Scope_Suppress
,
12736 Local_Suppress_Stack_Top
=> Local_Suppress_Stack_Top
,
12737 Version
=> Ada_Version
,
12738 Version_Pragma
=> Ada_Version_Pragma
,
12739 Warnings
=> Save_Warnings
,
12740 SPARK_Mode
=> SPARK_Mode
,
12741 SPARK_Mode_Pragma
=> SPARK_Mode_Pragma
)),
12742 Body_Optional
=> Body_Optional
);
12746 -- Case where we are not instantiating a nested generic
12749 Opt
.Style_Check
:= False;
12750 Expander_Mode_Save_And_Set
(True);
12751 Load_Needed_Body
(Comp_Unit
, OK
);
12752 Opt
.Style_Check
:= Saved_Style_Check
;
12753 Restore_Warnings
(Saved_Warnings
);
12754 Expander_Mode_Restore
;
12757 and then Unit_Requires_Body
(Defining_Entity
(Spec
))
12758 and then not Body_Optional
12761 Bname
: constant Unit_Name_Type
:=
12762 Get_Body_Name
(Get_Unit_Name
(Unit
(Comp_Unit
)));
12765 -- In CodePeer mode, the missing body may make the analysis
12766 -- incomplete, but we do not treat it as fatal.
12768 if CodePeer_Mode
then
12772 Error_Msg_Unit_1
:= Bname
;
12773 Error_Msg_N
("this instantiation requires$!", N
);
12774 Error_Msg_File_1
:=
12775 Get_File_Name
(Bname
, Subunit
=> False);
12776 Error_Msg_N
("\but file{ was not found!", N
);
12777 raise Unrecoverable_Error
;
12784 -- If loading parent of the generic caused an instantiation circularity,
12785 -- we abandon compilation at this point, because otherwise in some cases
12786 -- we get into trouble with infinite recursions after this point.
12788 if Circularity_Detected
then
12789 raise Unrecoverable_Error
;
12791 end Load_Parent_Of_Generic
;
12793 ---------------------------------
12794 -- Map_Formal_Package_Entities --
12795 ---------------------------------
12797 procedure Map_Formal_Package_Entities
(Form
: Entity_Id
; Act
: Entity_Id
) is
12802 Set_Instance_Of
(Form
, Act
);
12804 -- Traverse formal and actual package to map the corresponding entities.
12805 -- We skip over internal entities that may be generated during semantic
12806 -- analysis, and find the matching entities by name, given that they
12807 -- must appear in the same order.
12809 E1
:= First_Entity
(Form
);
12810 E2
:= First_Entity
(Act
);
12811 while Present
(E1
) and then E1
/= First_Private_Entity
(Form
) loop
12812 -- Could this test be a single condition??? Seems like it could, and
12813 -- isn't FPE (Form) a constant anyway???
12815 if not Is_Internal
(E1
)
12816 and then Present
(Parent
(E1
))
12817 and then not Is_Class_Wide_Type
(E1
)
12818 and then not Is_Internal_Name
(Chars
(E1
))
12820 while Present
(E2
) and then Chars
(E2
) /= Chars
(E1
) loop
12827 Set_Instance_Of
(E1
, E2
);
12829 if Is_Type
(E1
) and then Is_Tagged_Type
(E2
) then
12830 Set_Instance_Of
(Class_Wide_Type
(E1
), Class_Wide_Type
(E2
));
12833 if Is_Constrained
(E1
) then
12834 Set_Instance_Of
(Base_Type
(E1
), Base_Type
(E2
));
12837 if Ekind
(E1
) = E_Package
and then No
(Renamed_Object
(E1
)) then
12838 Map_Formal_Package_Entities
(E1
, E2
);
12845 end Map_Formal_Package_Entities
;
12847 -----------------------
12848 -- Move_Freeze_Nodes --
12849 -----------------------
12851 procedure Move_Freeze_Nodes
12852 (Out_Of
: Entity_Id
;
12857 Next_Decl
: Node_Id
;
12858 Next_Node
: Node_Id
:= After
;
12861 function Is_Outer_Type
(T
: Entity_Id
) return Boolean;
12862 -- Check whether entity is declared in a scope external to that of the
12865 -------------------
12866 -- Is_Outer_Type --
12867 -------------------
12869 function Is_Outer_Type
(T
: Entity_Id
) return Boolean is
12870 Scop
: Entity_Id
:= Scope
(T
);
12873 if Scope_Depth
(Scop
) < Scope_Depth
(Out_Of
) then
12877 while Scop
/= Standard_Standard
loop
12878 if Scop
= Out_Of
then
12881 Scop
:= Scope
(Scop
);
12889 -- Start of processing for Move_Freeze_Nodes
12896 -- First remove the freeze nodes that may appear before all other
12900 while Present
(Decl
)
12901 and then Nkind
(Decl
) = N_Freeze_Entity
12902 and then Is_Outer_Type
(Entity
(Decl
))
12904 Decl
:= Remove_Head
(L
);
12905 Insert_After
(Next_Node
, Decl
);
12906 Set_Analyzed
(Decl
, False);
12911 -- Next scan the list of declarations and remove each freeze node that
12912 -- appears ahead of the current node.
12914 while Present
(Decl
) loop
12915 while Present
(Next
(Decl
))
12916 and then Nkind
(Next
(Decl
)) = N_Freeze_Entity
12917 and then Is_Outer_Type
(Entity
(Next
(Decl
)))
12919 Next_Decl
:= Remove_Next
(Decl
);
12920 Insert_After
(Next_Node
, Next_Decl
);
12921 Set_Analyzed
(Next_Decl
, False);
12922 Next_Node
:= Next_Decl
;
12925 -- If the declaration is a nested package or concurrent type, then
12926 -- recurse. Nested generic packages will have been processed from the
12929 case Nkind
(Decl
) is
12930 when N_Package_Declaration
=>
12931 Spec
:= Specification
(Decl
);
12933 when N_Task_Type_Declaration
=>
12934 Spec
:= Task_Definition
(Decl
);
12936 when N_Protected_Type_Declaration
=>
12937 Spec
:= Protected_Definition
(Decl
);
12943 if Present
(Spec
) then
12944 Move_Freeze_Nodes
(Out_Of
, Next_Node
, Visible_Declarations
(Spec
));
12945 Move_Freeze_Nodes
(Out_Of
, Next_Node
, Private_Declarations
(Spec
));
12950 end Move_Freeze_Nodes
;
12956 function Next_Assoc
(E
: Assoc_Ptr
) return Assoc_Ptr
is
12958 return Generic_Renamings
.Table
(E
).Next_In_HTable
;
12961 ------------------------
12962 -- Preanalyze_Actuals --
12963 ------------------------
12965 procedure Preanalyze_Actuals
(N
: Node_Id
) is
12968 Errs
: constant Int
:= Serious_Errors_Detected
;
12970 Cur
: Entity_Id
:= Empty
;
12971 -- Current homograph of the instance name
12974 -- Saved visibility status of the current homograph
12977 Assoc
:= First
(Generic_Associations
(N
));
12979 -- If the instance is a child unit, its name may hide an outer homonym,
12980 -- so make it invisible to perform name resolution on the actuals.
12982 if Nkind
(Defining_Unit_Name
(N
)) = N_Defining_Program_Unit_Name
12984 (Current_Entity
(Defining_Identifier
(Defining_Unit_Name
(N
))))
12986 Cur
:= Current_Entity
(Defining_Identifier
(Defining_Unit_Name
(N
)));
12988 if Is_Compilation_Unit
(Cur
) then
12989 Vis
:= Is_Immediately_Visible
(Cur
);
12990 Set_Is_Immediately_Visible
(Cur
, False);
12996 while Present
(Assoc
) loop
12997 if Nkind
(Assoc
) /= N_Others_Choice
then
12998 Act
:= Explicit_Generic_Actual_Parameter
(Assoc
);
13000 -- Within a nested instantiation, a defaulted actual is an empty
13001 -- association, so nothing to analyze. If the subprogram actual
13002 -- is an attribute, analyze prefix only, because actual is not a
13003 -- complete attribute reference.
13005 -- If actual is an allocator, analyze expression only. The full
13006 -- analysis can generate code, and if instance is a compilation
13007 -- unit we have to wait until the package instance is installed
13008 -- to have a proper place to insert this code.
13010 -- String literals may be operators, but at this point we do not
13011 -- know whether the actual is a formal subprogram or a string.
13016 elsif Nkind
(Act
) = N_Attribute_Reference
then
13017 Analyze
(Prefix
(Act
));
13019 elsif Nkind
(Act
) = N_Explicit_Dereference
then
13020 Analyze
(Prefix
(Act
));
13022 elsif Nkind
(Act
) = N_Allocator
then
13024 Expr
: constant Node_Id
:= Expression
(Act
);
13027 if Nkind
(Expr
) = N_Subtype_Indication
then
13028 Analyze
(Subtype_Mark
(Expr
));
13030 -- Analyze separately each discriminant constraint, when
13031 -- given with a named association.
13037 Constr
:= First
(Constraints
(Constraint
(Expr
)));
13038 while Present
(Constr
) loop
13039 if Nkind
(Constr
) = N_Discriminant_Association
then
13040 Analyze
(Expression
(Constr
));
13054 elsif Nkind
(Act
) /= N_Operator_Symbol
then
13058 if Errs
/= Serious_Errors_Detected
then
13060 -- Do a minimal analysis of the generic, to prevent spurious
13061 -- warnings complaining about the generic being unreferenced,
13062 -- before abandoning the instantiation.
13064 Analyze
(Name
(N
));
13066 if Is_Entity_Name
(Name
(N
))
13067 and then Etype
(Name
(N
)) /= Any_Type
13069 Generate_Reference
(Entity
(Name
(N
)), Name
(N
));
13070 Set_Is_Instantiated
(Entity
(Name
(N
)));
13073 if Present
(Cur
) then
13075 -- For the case of a child instance hiding an outer homonym,
13076 -- provide additional warning which might explain the error.
13078 Set_Is_Immediately_Visible
(Cur
, Vis
);
13079 Error_Msg_NE
("& hides outer unit with the same name??",
13080 N
, Defining_Unit_Name
(N
));
13083 Abandon_Instantiation
(Act
);
13090 if Present
(Cur
) then
13091 Set_Is_Immediately_Visible
(Cur
, Vis
);
13093 end Preanalyze_Actuals
;
13095 -------------------
13096 -- Remove_Parent --
13097 -------------------
13099 procedure Remove_Parent
(In_Body
: Boolean := False) is
13100 S
: Entity_Id
:= Current_Scope
;
13101 -- S is the scope containing the instantiation just completed. The scope
13102 -- stack contains the parent instances of the instantiation, followed by
13111 -- After child instantiation is complete, remove from scope stack the
13112 -- extra copy of the current scope, and then remove parent instances.
13114 if not In_Body
then
13117 while Current_Scope
/= S
loop
13118 P
:= Current_Scope
;
13119 End_Package_Scope
(Current_Scope
);
13121 if In_Open_Scopes
(P
) then
13122 E
:= First_Entity
(P
);
13123 while Present
(E
) loop
13124 Set_Is_Immediately_Visible
(E
, True);
13128 -- If instantiation is declared in a block, it is the enclosing
13129 -- scope that might be a parent instance. Note that only one
13130 -- block can be involved, because the parent instances have
13131 -- been installed within it.
13133 if Ekind
(P
) = E_Block
then
13134 Cur_P
:= Scope
(P
);
13139 if Is_Generic_Instance
(Cur_P
) and then P
/= Current_Scope
then
13140 -- We are within an instance of some sibling. Retain
13141 -- visibility of parent, for proper subsequent cleanup, and
13142 -- reinstall private declarations as well.
13144 Set_In_Private_Part
(P
);
13145 Install_Private_Declarations
(P
);
13148 -- If the ultimate parent is a top-level unit recorded in
13149 -- Instance_Parent_Unit, then reset its visibility to what it was
13150 -- before instantiation. (It's not clear what the purpose is of
13151 -- testing whether Scope (P) is In_Open_Scopes, but that test was
13152 -- present before the ultimate parent test was added.???)
13154 elsif not In_Open_Scopes
(Scope
(P
))
13155 or else (P
= Instance_Parent_Unit
13156 and then not Parent_Unit_Visible
)
13158 Set_Is_Immediately_Visible
(P
, False);
13160 -- If the current scope is itself an instantiation of a generic
13161 -- nested within P, and we are in the private part of body of this
13162 -- instantiation, restore the full views of P, that were removed
13163 -- in End_Package_Scope above. This obscure case can occur when a
13164 -- subunit of a generic contains an instance of a child unit of
13165 -- its generic parent unit.
13167 elsif S
= Current_Scope
and then Is_Generic_Instance
(S
) then
13169 Par
: constant Entity_Id
:=
13170 Generic_Parent
(Package_Specification
(S
));
13173 and then P
= Scope
(Par
)
13174 and then (In_Package_Body
(S
) or else In_Private_Part
(S
))
13176 Set_In_Private_Part
(P
);
13177 Install_Private_Declarations
(P
);
13183 -- Reset visibility of entities in the enclosing scope
13185 Set_Is_Hidden_Open_Scope
(Current_Scope
, False);
13187 Hidden
:= First_Elmt
(Hidden_Entities
);
13188 while Present
(Hidden
) loop
13189 Set_Is_Immediately_Visible
(Node
(Hidden
), True);
13190 Next_Elmt
(Hidden
);
13194 -- Each body is analyzed separately, and there is no context that
13195 -- needs preserving from one body instance to the next, so remove all
13196 -- parent scopes that have been installed.
13198 while Present
(S
) loop
13199 End_Package_Scope
(S
);
13200 Set_Is_Immediately_Visible
(S
, False);
13201 S
:= Current_Scope
;
13202 exit when S
= Standard_Standard
;
13211 procedure Restore_Env
is
13212 Saved
: Instance_Env
renames Instance_Envs
.Table
(Instance_Envs
.Last
);
13215 if No
(Current_Instantiated_Parent
.Act_Id
) then
13216 -- Restore environment after subprogram inlining
13218 Restore_Private_Views
(Empty
);
13221 Current_Instantiated_Parent
:= Saved
.Instantiated_Parent
;
13222 Exchanged_Views
:= Saved
.Exchanged_Views
;
13223 Hidden_Entities
:= Saved
.Hidden_Entities
;
13224 Current_Sem_Unit
:= Saved
.Current_Sem_Unit
;
13225 Parent_Unit_Visible
:= Saved
.Parent_Unit_Visible
;
13226 Instance_Parent_Unit
:= Saved
.Instance_Parent_Unit
;
13228 Restore_Opt_Config_Switches
(Saved
.Switches
);
13230 Instance_Envs
.Decrement_Last
;
13233 ---------------------------
13234 -- Restore_Private_Views --
13235 ---------------------------
13237 procedure Restore_Private_Views
13238 (Pack_Id
: Entity_Id
;
13239 Is_Package
: Boolean := True)
13244 Dep_Elmt
: Elmt_Id
;
13247 procedure Restore_Nested_Formal
(Formal
: Entity_Id
);
13248 -- Hide the generic formals of formal packages declared with box which
13249 -- were reachable in the current instantiation.
13251 ---------------------------
13252 -- Restore_Nested_Formal --
13253 ---------------------------
13255 procedure Restore_Nested_Formal
(Formal
: Entity_Id
) is
13259 if Present
(Renamed_Object
(Formal
))
13260 and then Denotes_Formal_Package
(Renamed_Object
(Formal
), True)
13264 elsif Present
(Associated_Formal_Package
(Formal
)) then
13265 Ent
:= First_Entity
(Formal
);
13266 while Present
(Ent
) loop
13267 exit when Ekind
(Ent
) = E_Package
13268 and then Renamed_Entity
(Ent
) = Renamed_Entity
(Formal
);
13270 Set_Is_Hidden
(Ent
);
13271 Set_Is_Potentially_Use_Visible
(Ent
, False);
13273 -- If package, then recurse
13275 if Ekind
(Ent
) = E_Package
then
13276 Restore_Nested_Formal
(Ent
);
13282 end Restore_Nested_Formal
;
13284 -- Start of processing for Restore_Private_Views
13287 M
:= First_Elmt
(Exchanged_Views
);
13288 while Present
(M
) loop
13291 -- Subtypes of types whose views have been exchanged, and that are
13292 -- defined within the instance, were not on the Private_Dependents
13293 -- list on entry to the instance, so they have to be exchanged
13294 -- explicitly now, in order to remain consistent with the view of the
13297 if Ekind_In
(Typ
, E_Private_Type
,
13298 E_Limited_Private_Type
,
13299 E_Record_Type_With_Private
)
13301 Dep_Elmt
:= First_Elmt
(Private_Dependents
(Typ
));
13302 while Present
(Dep_Elmt
) loop
13303 Dep_Typ
:= Node
(Dep_Elmt
);
13305 if Scope
(Dep_Typ
) = Pack_Id
13306 and then Present
(Full_View
(Dep_Typ
))
13308 Replace_Elmt
(Dep_Elmt
, Full_View
(Dep_Typ
));
13309 Exchange_Declarations
(Dep_Typ
);
13312 Next_Elmt
(Dep_Elmt
);
13316 Exchange_Declarations
(Node
(M
));
13320 if No
(Pack_Id
) then
13324 -- Make the generic formal parameters private, and make the formal types
13325 -- into subtypes of the actuals again.
13327 E
:= First_Entity
(Pack_Id
);
13328 while Present
(E
) loop
13329 Set_Is_Hidden
(E
, True);
13332 and then Nkind
(Parent
(E
)) = N_Subtype_Declaration
13334 -- If the actual for E is itself a generic actual type from
13335 -- an enclosing instance, E is still a generic actual type
13336 -- outside of the current instance. This matter when resolving
13337 -- an overloaded call that may be ambiguous in the enclosing
13338 -- instance, when two of its actuals coincide.
13340 if Is_Entity_Name
(Subtype_Indication
(Parent
(E
)))
13341 and then Is_Generic_Actual_Type
13342 (Entity
(Subtype_Indication
(Parent
(E
))))
13346 Set_Is_Generic_Actual_Type
(E
, False);
13349 -- An unusual case of aliasing: the actual may also be directly
13350 -- visible in the generic, and be private there, while it is fully
13351 -- visible in the context of the instance. The internal subtype
13352 -- is private in the instance but has full visibility like its
13353 -- parent in the enclosing scope. This enforces the invariant that
13354 -- the privacy status of all private dependents of a type coincide
13355 -- with that of the parent type. This can only happen when a
13356 -- generic child unit is instantiated within a sibling.
13358 if Is_Private_Type
(E
)
13359 and then not Is_Private_Type
(Etype
(E
))
13361 Exchange_Declarations
(E
);
13364 elsif Ekind
(E
) = E_Package
then
13366 -- The end of the renaming list is the renaming of the generic
13367 -- package itself. If the instance is a subprogram, all entities
13368 -- in the corresponding package are renamings. If this entity is
13369 -- a formal package, make its own formals private as well. The
13370 -- actual in this case is itself the renaming of an instantiation.
13371 -- If the entity is not a package renaming, it is the entity
13372 -- created to validate formal package actuals: ignore it.
13374 -- If the actual is itself a formal package for the enclosing
13375 -- generic, or the actual for such a formal package, it remains
13376 -- visible on exit from the instance, and therefore nothing needs
13377 -- to be done either, except to keep it accessible.
13379 if Is_Package
and then Renamed_Object
(E
) = Pack_Id
then
13382 elsif Nkind
(Parent
(E
)) /= N_Package_Renaming_Declaration
then
13386 Denotes_Formal_Package
(Renamed_Object
(E
), True, Pack_Id
)
13388 Set_Is_Hidden
(E
, False);
13392 Act_P
: constant Entity_Id
:= Renamed_Object
(E
);
13396 Id
:= First_Entity
(Act_P
);
13398 and then Id
/= First_Private_Entity
(Act_P
)
13400 exit when Ekind
(Id
) = E_Package
13401 and then Renamed_Object
(Id
) = Act_P
;
13403 Set_Is_Hidden
(Id
, True);
13404 Set_Is_Potentially_Use_Visible
(Id
, In_Use
(Act_P
));
13406 if Ekind
(Id
) = E_Package
then
13407 Restore_Nested_Formal
(Id
);
13418 end Restore_Private_Views
;
13425 (Gen_Unit
: Entity_Id
;
13426 Act_Unit
: Entity_Id
)
13430 Set_Instance_Env
(Gen_Unit
, Act_Unit
);
13433 ----------------------------
13434 -- Save_Global_References --
13435 ----------------------------
13437 procedure Save_Global_References
(N
: Node_Id
) is
13438 Gen_Scope
: Entity_Id
;
13442 function Is_Global
(E
: Entity_Id
) return Boolean;
13443 -- Check whether entity is defined outside of generic unit. Examine the
13444 -- scope of an entity, and the scope of the scope, etc, until we find
13445 -- either Standard, in which case the entity is global, or the generic
13446 -- unit itself, which indicates that the entity is local. If the entity
13447 -- is the generic unit itself, as in the case of a recursive call, or
13448 -- the enclosing generic unit, if different from the current scope, then
13449 -- it is local as well, because it will be replaced at the point of
13450 -- instantiation. On the other hand, if it is a reference to a child
13451 -- unit of a common ancestor, which appears in an instantiation, it is
13452 -- global because it is used to denote a specific compilation unit at
13453 -- the time the instantiations will be analyzed.
13455 procedure Reset_Entity
(N
: Node_Id
);
13456 -- Save semantic information on global entity so that it is not resolved
13457 -- again at instantiation time.
13459 procedure Save_Entity_Descendants
(N
: Node_Id
);
13460 -- Apply Save_Global_References to the two syntactic descendants of
13461 -- non-terminal nodes that carry an Associated_Node and are processed
13462 -- through Reset_Entity. Once the global entity (if any) has been
13463 -- captured together with its type, only two syntactic descendants need
13464 -- to be traversed to complete the processing of the tree rooted at N.
13465 -- This applies to Selected_Components, Expanded_Names, and to Operator
13466 -- nodes. N can also be a character literal, identifier, or operator
13467 -- symbol node, but the call has no effect in these cases.
13469 procedure Save_Global_Defaults
(N1
, N2
: Node_Id
);
13470 -- Default actuals in nested instances must be handled specially
13471 -- because there is no link to them from the original tree. When an
13472 -- actual subprogram is given by a default, we add an explicit generic
13473 -- association for it in the instantiation node. When we save the
13474 -- global references on the name of the instance, we recover the list
13475 -- of generic associations, and add an explicit one to the original
13476 -- generic tree, through which a global actual can be preserved.
13477 -- Similarly, if a child unit is instantiated within a sibling, in the
13478 -- context of the parent, we must preserve the identifier of the parent
13479 -- so that it can be properly resolved in a subsequent instantiation.
13481 procedure Save_Global_Descendant
(D
: Union_Id
);
13482 -- Apply Save_Global_References recursively to the descendents of the
13485 procedure Save_References
(N
: Node_Id
);
13486 -- This is the recursive procedure that does the work, once the
13487 -- enclosing generic scope has been established.
13493 function Is_Global
(E
: Entity_Id
) return Boolean is
13496 function Is_Instance_Node
(Decl
: Node_Id
) return Boolean;
13497 -- Determine whether the parent node of a reference to a child unit
13498 -- denotes an instantiation or a formal package, in which case the
13499 -- reference to the child unit is global, even if it appears within
13500 -- the current scope (e.g. when the instance appears within the body
13501 -- of an ancestor).
13503 ----------------------
13504 -- Is_Instance_Node --
13505 ----------------------
13507 function Is_Instance_Node
(Decl
: Node_Id
) return Boolean is
13509 return Nkind
(Decl
) in N_Generic_Instantiation
13511 Nkind
(Original_Node
(Decl
)) = N_Formal_Package_Declaration
;
13512 end Is_Instance_Node
;
13514 -- Start of processing for Is_Global
13517 if E
= Gen_Scope
then
13520 elsif E
= Standard_Standard
then
13523 elsif Is_Child_Unit
(E
)
13524 and then (Is_Instance_Node
(Parent
(N2
))
13525 or else (Nkind
(Parent
(N2
)) = N_Expanded_Name
13526 and then N2
= Selector_Name
(Parent
(N2
))
13528 Is_Instance_Node
(Parent
(Parent
(N2
)))))
13534 while Se
/= Gen_Scope
loop
13535 if Se
= Standard_Standard
then
13550 procedure Reset_Entity
(N
: Node_Id
) is
13552 procedure Set_Global_Type
(N
: Node_Id
; N2
: Node_Id
);
13553 -- If the type of N2 is global to the generic unit, save the type in
13554 -- the generic node. Just as we perform name capture for explicit
13555 -- references within the generic, we must capture the global types
13556 -- of local entities because they may participate in resolution in
13559 function Top_Ancestor
(E
: Entity_Id
) return Entity_Id
;
13560 -- Find the ultimate ancestor of the current unit. If it is not a
13561 -- generic unit, then the name of the current unit in the prefix of
13562 -- an expanded name must be replaced with its generic homonym to
13563 -- ensure that it will be properly resolved in an instance.
13565 ---------------------
13566 -- Set_Global_Type --
13567 ---------------------
13569 procedure Set_Global_Type
(N
: Node_Id
; N2
: Node_Id
) is
13570 Typ
: constant Entity_Id
:= Etype
(N2
);
13573 Set_Etype
(N
, Typ
);
13575 if Entity
(N
) /= N2
13576 and then Has_Private_View
(Entity
(N
))
13578 -- If the entity of N is not the associated node, this is a
13579 -- nested generic and it has an associated node as well, whose
13580 -- type is already the full view (see below). Indicate that the
13581 -- original node has a private view.
13583 Set_Has_Private_View
(N
);
13586 -- If not a private type, nothing else to do
13588 if not Is_Private_Type
(Typ
) then
13589 if Is_Array_Type
(Typ
)
13590 and then Is_Private_Type
(Component_Type
(Typ
))
13592 Set_Has_Private_View
(N
);
13595 -- If it is a derivation of a private type in a context where no
13596 -- full view is needed, nothing to do either.
13598 elsif No
(Full_View
(Typ
)) and then Typ
/= Etype
(Typ
) then
13601 -- Otherwise mark the type for flipping and use the full view when
13605 Set_Has_Private_View
(N
);
13607 if Present
(Full_View
(Typ
)) then
13608 Set_Etype
(N2
, Full_View
(Typ
));
13611 end Set_Global_Type
;
13617 function Top_Ancestor
(E
: Entity_Id
) return Entity_Id
is
13622 while Is_Child_Unit
(Par
) loop
13623 Par
:= Scope
(Par
);
13629 -- Start of processing for Reset_Entity
13632 N2
:= Get_Associated_Node
(N
);
13635 if Present
(E
) then
13637 -- If the node is an entry call to an entry in an enclosing task,
13638 -- it is rewritten as a selected component. No global entity to
13639 -- preserve in this case, since the expansion will be redone in
13642 if not Nkind_In
(E
, N_Defining_Identifier
,
13643 N_Defining_Character_Literal
,
13644 N_Defining_Operator_Symbol
)
13646 Set_Associated_Node
(N
, Empty
);
13647 Set_Etype
(N
, Empty
);
13651 -- If the entity is an itype created as a subtype of an access
13652 -- type with a null exclusion restore source entity for proper
13653 -- visibility. The itype will be created anew in the instance.
13656 and then Ekind
(E
) = E_Access_Subtype
13657 and then Is_Entity_Name
(N
)
13658 and then Chars
(Etype
(E
)) = Chars
(N
)
13661 Set_Entity
(N2
, E
);
13665 if Is_Global
(E
) then
13667 -- If the entity is a package renaming that is the prefix of
13668 -- an expanded name, it has been rewritten as the renamed
13669 -- package, which is necessary semantically but complicates
13670 -- ASIS tree traversal, so we recover the original entity to
13671 -- expose the renaming. Take into account that the context may
13672 -- be a nested generic, that the original node may itself have
13673 -- an associated node that had better be an entity, and that
13674 -- the current node is still a selected component.
13676 if Ekind
(E
) = E_Package
13677 and then Nkind
(N
) = N_Selected_Component
13678 and then Nkind
(Parent
(N
)) = N_Expanded_Name
13679 and then Present
(Original_Node
(N2
))
13680 and then Is_Entity_Name
(Original_Node
(N2
))
13681 and then Present
(Entity
(Original_Node
(N2
)))
13683 if Is_Global
(Entity
(Original_Node
(N2
))) then
13684 N2
:= Original_Node
(N2
);
13685 Set_Associated_Node
(N
, N2
);
13686 Set_Global_Type
(N
, N2
);
13689 -- Renaming is local, and will be resolved in instance
13691 Set_Associated_Node
(N
, Empty
);
13692 Set_Etype
(N
, Empty
);
13696 Set_Global_Type
(N
, N2
);
13699 elsif Nkind
(N
) = N_Op_Concat
13700 and then Is_Generic_Type
(Etype
(N2
))
13701 and then (Base_Type
(Etype
(Right_Opnd
(N2
))) = Etype
(N2
)
13703 Base_Type
(Etype
(Left_Opnd
(N2
))) = Etype
(N2
))
13704 and then Is_Intrinsic_Subprogram
(E
)
13709 -- Entity is local. Mark generic node as unresolved.
13710 -- Note that now it does not have an entity.
13712 Set_Associated_Node
(N
, Empty
);
13713 Set_Etype
(N
, Empty
);
13716 if Nkind
(Parent
(N
)) in N_Generic_Instantiation
13717 and then N
= Name
(Parent
(N
))
13719 Save_Global_Defaults
(Parent
(N
), Parent
(N2
));
13722 elsif Nkind
(Parent
(N
)) = N_Selected_Component
13723 and then Nkind
(Parent
(N2
)) = N_Expanded_Name
13725 if Is_Global
(Entity
(Parent
(N2
))) then
13726 Change_Selected_Component_To_Expanded_Name
(Parent
(N
));
13727 Set_Associated_Node
(Parent
(N
), Parent
(N2
));
13728 Set_Global_Type
(Parent
(N
), Parent
(N2
));
13729 Save_Entity_Descendants
(N
);
13731 -- If this is a reference to the current generic entity, replace
13732 -- by the name of the generic homonym of the current package. This
13733 -- is because in an instantiation Par.P.Q will not resolve to the
13734 -- name of the instance, whose enclosing scope is not necessarily
13735 -- Par. We use the generic homonym rather that the name of the
13736 -- generic itself because it may be hidden by a local declaration.
13738 elsif In_Open_Scopes
(Entity
(Parent
(N2
)))
13740 Is_Generic_Unit
(Top_Ancestor
(Entity
(Prefix
(Parent
(N2
)))))
13742 if Ekind
(Entity
(Parent
(N2
))) = E_Generic_Package
then
13743 Rewrite
(Parent
(N
),
13744 Make_Identifier
(Sloc
(N
),
13746 Chars
(Generic_Homonym
(Entity
(Parent
(N2
))))));
13748 Rewrite
(Parent
(N
),
13749 Make_Identifier
(Sloc
(N
),
13750 Chars
=> Chars
(Selector_Name
(Parent
(N2
)))));
13754 if Nkind
(Parent
(Parent
(N
))) in N_Generic_Instantiation
13755 and then Parent
(N
) = Name
(Parent
(Parent
(N
)))
13757 Save_Global_Defaults
13758 (Parent
(Parent
(N
)), Parent
(Parent
((N2
))));
13761 -- A selected component may denote a static constant that has been
13762 -- folded. If the static constant is global to the generic, capture
13763 -- its value. Otherwise the folding will happen in any instantiation.
13765 elsif Nkind
(Parent
(N
)) = N_Selected_Component
13766 and then Nkind_In
(Parent
(N2
), N_Integer_Literal
, N_Real_Literal
)
13768 if Present
(Entity
(Original_Node
(Parent
(N2
))))
13769 and then Is_Global
(Entity
(Original_Node
(Parent
(N2
))))
13771 Rewrite
(Parent
(N
), New_Copy
(Parent
(N2
)));
13772 Set_Analyzed
(Parent
(N
), False);
13778 -- A selected component may be transformed into a parameterless
13779 -- function call. If the called entity is global, rewrite the node
13780 -- appropriately, i.e. as an extended name for the global entity.
13782 elsif Nkind
(Parent
(N
)) = N_Selected_Component
13783 and then Nkind
(Parent
(N2
)) = N_Function_Call
13784 and then N
= Selector_Name
(Parent
(N
))
13786 if No
(Parameter_Associations
(Parent
(N2
))) then
13787 if Is_Global
(Entity
(Name
(Parent
(N2
)))) then
13788 Change_Selected_Component_To_Expanded_Name
(Parent
(N
));
13789 Set_Associated_Node
(Parent
(N
), Name
(Parent
(N2
)));
13790 Set_Global_Type
(Parent
(N
), Name
(Parent
(N2
)));
13791 Save_Entity_Descendants
(N
);
13794 Set_Is_Prefixed_Call
(Parent
(N
));
13795 Set_Associated_Node
(N
, Empty
);
13796 Set_Etype
(N
, Empty
);
13799 -- In Ada 2005, X.F may be a call to a primitive operation,
13800 -- rewritten as F (X). This rewriting will be done again in an
13801 -- instance, so keep the original node. Global entities will be
13802 -- captured as for other constructs. Indicate that this must
13803 -- resolve as a call, to prevent accidental overloading in the
13804 -- instance, if both a component and a primitive operation appear
13808 Set_Is_Prefixed_Call
(Parent
(N
));
13811 -- Entity is local. Reset in generic unit, so that node is resolved
13812 -- anew at the point of instantiation.
13815 Set_Associated_Node
(N
, Empty
);
13816 Set_Etype
(N
, Empty
);
13820 -----------------------------
13821 -- Save_Entity_Descendants --
13822 -----------------------------
13824 procedure Save_Entity_Descendants
(N
: Node_Id
) is
13827 when N_Binary_Op
=>
13828 Save_Global_Descendant
(Union_Id
(Left_Opnd
(N
)));
13829 Save_Global_Descendant
(Union_Id
(Right_Opnd
(N
)));
13832 Save_Global_Descendant
(Union_Id
(Right_Opnd
(N
)));
13834 when N_Expanded_Name | N_Selected_Component
=>
13835 Save_Global_Descendant
(Union_Id
(Prefix
(N
)));
13836 Save_Global_Descendant
(Union_Id
(Selector_Name
(N
)));
13838 when N_Identifier | N_Character_Literal | N_Operator_Symbol
=>
13842 raise Program_Error
;
13844 end Save_Entity_Descendants
;
13846 --------------------------
13847 -- Save_Global_Defaults --
13848 --------------------------
13850 procedure Save_Global_Defaults
(N1
, N2
: Node_Id
) is
13851 Loc
: constant Source_Ptr
:= Sloc
(N1
);
13852 Assoc2
: constant List_Id
:= Generic_Associations
(N2
);
13853 Gen_Id
: constant Entity_Id
:= Get_Generic_Entity
(N2
);
13860 Actual
: Entity_Id
;
13863 Assoc1
:= Generic_Associations
(N1
);
13865 if Present
(Assoc1
) then
13866 Act1
:= First
(Assoc1
);
13869 Set_Generic_Associations
(N1
, New_List
);
13870 Assoc1
:= Generic_Associations
(N1
);
13873 if Present
(Assoc2
) then
13874 Act2
:= First
(Assoc2
);
13879 while Present
(Act1
) and then Present
(Act2
) loop
13884 -- Find the associations added for default subprograms
13886 if Present
(Act2
) then
13887 while Nkind
(Act2
) /= N_Generic_Association
13888 or else No
(Entity
(Selector_Name
(Act2
)))
13889 or else not Is_Overloadable
(Entity
(Selector_Name
(Act2
)))
13894 -- Add a similar association if the default is global. The
13895 -- renaming declaration for the actual has been analyzed, and
13896 -- its alias is the program it renames. Link the actual in the
13897 -- original generic tree with the node in the analyzed tree.
13899 while Present
(Act2
) loop
13900 Subp
:= Entity
(Selector_Name
(Act2
));
13901 Def
:= Explicit_Generic_Actual_Parameter
(Act2
);
13903 -- Following test is defence against rubbish errors
13905 if No
(Alias
(Subp
)) then
13909 -- Retrieve the resolved actual from the renaming declaration
13910 -- created for the instantiated formal.
13912 Actual
:= Entity
(Name
(Parent
(Parent
(Subp
))));
13913 Set_Entity
(Def
, Actual
);
13914 Set_Etype
(Def
, Etype
(Actual
));
13916 if Is_Global
(Actual
) then
13918 Make_Generic_Association
(Loc
,
13919 Selector_Name
=> New_Occurrence_Of
(Subp
, Loc
),
13920 Explicit_Generic_Actual_Parameter
=>
13921 New_Occurrence_Of
(Actual
, Loc
));
13923 Set_Associated_Node
13924 (Explicit_Generic_Actual_Parameter
(Ndec
), Def
);
13926 Append
(Ndec
, Assoc1
);
13928 -- If there are other defaults, add a dummy association in case
13929 -- there are other defaulted formals with the same name.
13931 elsif Present
(Next
(Act2
)) then
13933 Make_Generic_Association
(Loc
,
13934 Selector_Name
=> New_Occurrence_Of
(Subp
, Loc
),
13935 Explicit_Generic_Actual_Parameter
=> Empty
);
13937 Append
(Ndec
, Assoc1
);
13944 if Nkind
(Name
(N1
)) = N_Identifier
13945 and then Is_Child_Unit
(Gen_Id
)
13946 and then Is_Global
(Gen_Id
)
13947 and then Is_Generic_Unit
(Scope
(Gen_Id
))
13948 and then In_Open_Scopes
(Scope
(Gen_Id
))
13950 -- This is an instantiation of a child unit within a sibling, so
13951 -- that the generic parent is in scope. An eventual instance must
13952 -- occur within the scope of an instance of the parent. Make name
13953 -- in instance into an expanded name, to preserve the identifier
13954 -- of the parent, so it can be resolved subsequently.
13956 Rewrite
(Name
(N2
),
13957 Make_Expanded_Name
(Loc
,
13958 Chars
=> Chars
(Gen_Id
),
13959 Prefix
=> New_Occurrence_Of
(Scope
(Gen_Id
), Loc
),
13960 Selector_Name
=> New_Occurrence_Of
(Gen_Id
, Loc
)));
13961 Set_Entity
(Name
(N2
), Gen_Id
);
13963 Rewrite
(Name
(N1
),
13964 Make_Expanded_Name
(Loc
,
13965 Chars
=> Chars
(Gen_Id
),
13966 Prefix
=> New_Occurrence_Of
(Scope
(Gen_Id
), Loc
),
13967 Selector_Name
=> New_Occurrence_Of
(Gen_Id
, Loc
)));
13969 Set_Associated_Node
(Name
(N1
), Name
(N2
));
13970 Set_Associated_Node
(Prefix
(Name
(N1
)), Empty
);
13971 Set_Associated_Node
13972 (Selector_Name
(Name
(N1
)), Selector_Name
(Name
(N2
)));
13973 Set_Etype
(Name
(N1
), Etype
(Gen_Id
));
13976 end Save_Global_Defaults
;
13978 ----------------------------
13979 -- Save_Global_Descendant --
13980 ----------------------------
13982 procedure Save_Global_Descendant
(D
: Union_Id
) is
13986 if D
in Node_Range
then
13987 if D
= Union_Id
(Empty
) then
13990 elsif Nkind
(Node_Id
(D
)) /= N_Compilation_Unit
then
13991 Save_References
(Node_Id
(D
));
13994 elsif D
in List_Range
then
13995 if D
= Union_Id
(No_List
) or else Is_Empty_List
(List_Id
(D
)) then
13999 N1
:= First
(List_Id
(D
));
14000 while Present
(N1
) loop
14001 Save_References
(N1
);
14006 -- Element list or other non-node field, nothing to do
14011 end Save_Global_Descendant
;
14013 ---------------------
14014 -- Save_References --
14015 ---------------------
14017 -- This is the recursive procedure that does the work once the enclosing
14018 -- generic scope has been established. We have to treat specially a
14019 -- number of node rewritings that are required by semantic processing
14020 -- and which change the kind of nodes in the generic copy: typically
14021 -- constant-folding, replacing an operator node by a string literal, or
14022 -- a selected component by an expanded name. In each of those cases, the
14023 -- transformation is propagated to the generic unit.
14025 procedure Save_References
(N
: Node_Id
) is
14026 Loc
: constant Source_Ptr
:= Sloc
(N
);
14032 elsif Nkind_In
(N
, N_Character_Literal
, N_Operator_Symbol
) then
14033 if Nkind
(N
) = Nkind
(Get_Associated_Node
(N
)) then
14036 elsif Nkind
(N
) = N_Operator_Symbol
14037 and then Nkind
(Get_Associated_Node
(N
)) = N_String_Literal
14039 Change_Operator_Symbol_To_String_Literal
(N
);
14042 elsif Nkind
(N
) in N_Op
then
14043 if Nkind
(N
) = Nkind
(Get_Associated_Node
(N
)) then
14044 if Nkind
(N
) = N_Op_Concat
then
14045 Set_Is_Component_Left_Opnd
(N
,
14046 Is_Component_Left_Opnd
(Get_Associated_Node
(N
)));
14048 Set_Is_Component_Right_Opnd
(N
,
14049 Is_Component_Right_Opnd
(Get_Associated_Node
(N
)));
14055 -- Node may be transformed into call to a user-defined operator
14057 N2
:= Get_Associated_Node
(N
);
14059 if Nkind
(N2
) = N_Function_Call
then
14060 E
:= Entity
(Name
(N2
));
14063 and then Is_Global
(E
)
14065 Set_Etype
(N
, Etype
(N2
));
14067 Set_Associated_Node
(N
, Empty
);
14068 Set_Etype
(N
, Empty
);
14071 elsif Nkind_In
(N2
, N_Integer_Literal
,
14075 if Present
(Original_Node
(N2
))
14076 and then Nkind
(Original_Node
(N2
)) = Nkind
(N
)
14079 -- Operation was constant-folded. Whenever possible,
14080 -- recover semantic information from unfolded node,
14083 Set_Associated_Node
(N
, Original_Node
(N2
));
14085 if Nkind
(N
) = N_Op_Concat
then
14086 Set_Is_Component_Left_Opnd
(N
,
14087 Is_Component_Left_Opnd
(Get_Associated_Node
(N
)));
14088 Set_Is_Component_Right_Opnd
(N
,
14089 Is_Component_Right_Opnd
(Get_Associated_Node
(N
)));
14095 -- If original node is already modified, propagate
14096 -- constant-folding to template.
14098 Rewrite
(N
, New_Copy
(N2
));
14099 Set_Analyzed
(N
, False);
14102 elsif Nkind
(N2
) = N_Identifier
14103 and then Ekind
(Entity
(N2
)) = E_Enumeration_Literal
14105 -- Same if call was folded into a literal, but in this case
14106 -- retain the entity to avoid spurious ambiguities if it is
14107 -- overloaded at the point of instantiation or inlining.
14109 Rewrite
(N
, New_Copy
(N2
));
14110 Set_Analyzed
(N
, False);
14114 -- Complete operands check if node has not been constant-folded
14116 if Nkind
(N
) in N_Op
then
14117 Save_Entity_Descendants
(N
);
14120 elsif Nkind
(N
) = N_Identifier
then
14121 if Nkind
(N
) = Nkind
(Get_Associated_Node
(N
)) then
14123 -- If this is a discriminant reference, always save it. It is
14124 -- used in the instance to find the corresponding discriminant
14125 -- positionally rather than by name.
14127 Set_Original_Discriminant
14128 (N
, Original_Discriminant
(Get_Associated_Node
(N
)));
14132 N2
:= Get_Associated_Node
(N
);
14134 if Nkind
(N2
) = N_Function_Call
then
14135 E
:= Entity
(Name
(N2
));
14137 -- Name resolves to a call to parameterless function. If
14138 -- original entity is global, mark node as resolved.
14141 and then Is_Global
(E
)
14143 Set_Etype
(N
, Etype
(N2
));
14145 Set_Associated_Node
(N
, Empty
);
14146 Set_Etype
(N
, Empty
);
14149 elsif Nkind_In
(N2
, N_Integer_Literal
, N_Real_Literal
)
14150 and then Is_Entity_Name
(Original_Node
(N2
))
14152 -- Name resolves to named number that is constant-folded,
14153 -- We must preserve the original name for ASIS use, and
14154 -- undo the constant-folding, which will be repeated in
14157 Set_Associated_Node
(N
, Original_Node
(N2
));
14160 elsif Nkind
(N2
) = N_String_Literal
then
14162 -- Name resolves to string literal. Perform the same
14163 -- replacement in generic.
14165 Rewrite
(N
, New_Copy
(N2
));
14167 elsif Nkind
(N2
) = N_Explicit_Dereference
then
14169 -- An identifier is rewritten as a dereference if it is the
14170 -- prefix in an implicit dereference (call or attribute).
14171 -- The analysis of an instantiation will expand the node
14172 -- again, so we preserve the original tree but link it to
14173 -- the resolved entity in case it is global.
14175 if Is_Entity_Name
(Prefix
(N2
))
14176 and then Present
(Entity
(Prefix
(N2
)))
14177 and then Is_Global
(Entity
(Prefix
(N2
)))
14179 Set_Associated_Node
(N
, Prefix
(N2
));
14181 elsif Nkind
(Prefix
(N2
)) = N_Function_Call
14182 and then Is_Global
(Entity
(Name
(Prefix
(N2
))))
14185 Make_Explicit_Dereference
(Loc
,
14186 Prefix
=> Make_Function_Call
(Loc
,
14188 New_Occurrence_Of
(Entity
(Name
(Prefix
(N2
))),
14192 Set_Associated_Node
(N
, Empty
);
14193 Set_Etype
(N
, Empty
);
14196 -- The subtype mark of a nominally unconstrained object is
14197 -- rewritten as a subtype indication using the bounds of the
14198 -- expression. Recover the original subtype mark.
14200 elsif Nkind
(N2
) = N_Subtype_Indication
14201 and then Is_Entity_Name
(Original_Node
(N2
))
14203 Set_Associated_Node
(N
, Original_Node
(N2
));
14211 elsif Nkind
(N
) in N_Entity
then
14216 Qual
: Node_Id
:= Empty
;
14217 Typ
: Entity_Id
:= Empty
;
14220 use Atree
.Unchecked_Access
;
14221 -- This code section is part of implementing an untyped tree
14222 -- traversal, so it needs direct access to node fields.
14225 if Nkind_In
(N
, N_Aggregate
, N_Extension_Aggregate
) then
14226 N2
:= Get_Associated_Node
(N
);
14233 -- In an instance within a generic, use the name of the
14234 -- actual and not the original generic parameter. If the
14235 -- actual is global in the current generic it must be
14236 -- preserved for its instantiation.
14238 if Nkind
(Parent
(Typ
)) = N_Subtype_Declaration
14240 Present
(Generic_Parent_Type
(Parent
(Typ
)))
14242 Typ
:= Base_Type
(Typ
);
14243 Set_Etype
(N2
, Typ
);
14247 if No
(N2
) or else No
(Typ
) or else not Is_Global
(Typ
) then
14248 Set_Associated_Node
(N
, Empty
);
14250 -- If the aggregate is an actual in a call, it has been
14251 -- resolved in the current context, to some local type.
14252 -- The enclosing call may have been disambiguated by the
14253 -- aggregate, and this disambiguation might fail at
14254 -- instantiation time because the type to which the
14255 -- aggregate did resolve is not preserved. In order to
14256 -- preserve some of this information, we wrap the
14257 -- aggregate in a qualified expression, using the id of
14258 -- its type. For further disambiguation we qualify the
14259 -- type name with its scope (if visible) because both
14260 -- id's will have corresponding entities in an instance.
14261 -- This resolves most of the problems with missing type
14262 -- information on aggregates in instances.
14264 if Nkind
(N2
) = Nkind
(N
)
14265 and then Nkind
(Parent
(N2
)) in N_Subprogram_Call
14266 and then Comes_From_Source
(Typ
)
14268 if Is_Immediately_Visible
(Scope
(Typ
)) then
14269 Nam
:= Make_Selected_Component
(Loc
,
14271 Make_Identifier
(Loc
, Chars
(Scope
(Typ
))),
14273 Make_Identifier
(Loc
, Chars
(Typ
)));
14275 Nam
:= Make_Identifier
(Loc
, Chars
(Typ
));
14279 Make_Qualified_Expression
(Loc
,
14280 Subtype_Mark
=> Nam
,
14281 Expression
=> Relocate_Node
(N
));
14285 Save_Global_Descendant
(Field1
(N
));
14286 Save_Global_Descendant
(Field2
(N
));
14287 Save_Global_Descendant
(Field3
(N
));
14288 Save_Global_Descendant
(Field5
(N
));
14290 if Present
(Qual
) then
14294 -- All other cases than aggregates
14297 Save_Global_Descendant
(Field1
(N
));
14298 Save_Global_Descendant
(Field2
(N
));
14299 Save_Global_Descendant
(Field3
(N
));
14300 Save_Global_Descendant
(Field4
(N
));
14301 Save_Global_Descendant
(Field5
(N
));
14306 -- If a node has aspects, references within their expressions must
14307 -- be saved separately, given they are not directly in the tree.
14309 if Has_Aspects
(N
) then
14314 Aspect
:= First
(Aspect_Specifications
(N
));
14315 while Present
(Aspect
) loop
14316 if Present
(Expression
(Aspect
)) then
14317 Save_Global_References
(Expression
(Aspect
));
14324 end Save_References
;
14326 -- Start of processing for Save_Global_References
14329 Gen_Scope
:= Current_Scope
;
14331 -- If the generic unit is a child unit, references to entities in the
14332 -- parent are treated as local, because they will be resolved anew in
14333 -- the context of the instance of the parent.
14335 while Is_Child_Unit
(Gen_Scope
)
14336 and then Ekind
(Scope
(Gen_Scope
)) = E_Generic_Package
14338 Gen_Scope
:= Scope
(Gen_Scope
);
14341 Save_References
(N
);
14342 end Save_Global_References
;
14344 --------------------------------------
14345 -- Set_Copied_Sloc_For_Inlined_Body --
14346 --------------------------------------
14348 procedure Set_Copied_Sloc_For_Inlined_Body
(N
: Node_Id
; E
: Entity_Id
) is
14350 Create_Instantiation_Source
(N
, E
, True, S_Adjustment
);
14351 end Set_Copied_Sloc_For_Inlined_Body
;
14353 ---------------------
14354 -- Set_Instance_Of --
14355 ---------------------
14357 procedure Set_Instance_Of
(A
: Entity_Id
; B
: Entity_Id
) is
14359 Generic_Renamings
.Table
(Generic_Renamings
.Last
) := (A
, B
, Assoc_Null
);
14360 Generic_Renamings_HTable
.Set
(Generic_Renamings
.Last
);
14361 Generic_Renamings
.Increment_Last
;
14362 end Set_Instance_Of
;
14364 --------------------
14365 -- Set_Next_Assoc --
14366 --------------------
14368 procedure Set_Next_Assoc
(E
: Assoc_Ptr
; Next
: Assoc_Ptr
) is
14370 Generic_Renamings
.Table
(E
).Next_In_HTable
:= Next
;
14371 end Set_Next_Assoc
;
14373 -------------------
14374 -- Start_Generic --
14375 -------------------
14377 procedure Start_Generic
is
14379 -- ??? More things could be factored out in this routine.
14380 -- Should probably be done at a later stage.
14382 Generic_Flags
.Append
(Inside_A_Generic
);
14383 Inside_A_Generic
:= True;
14385 Expander_Mode_Save_And_Set
(False);
14388 ----------------------
14389 -- Set_Instance_Env --
14390 ----------------------
14392 procedure Set_Instance_Env
14393 (Gen_Unit
: Entity_Id
;
14394 Act_Unit
: Entity_Id
)
14396 Assertion_Status
: constant Boolean := Assertions_Enabled
;
14397 Save_SPARK_Mode
: constant SPARK_Mode_Type
:= SPARK_Mode
;
14398 Save_SPARK_Mode_Pragma
: constant Node_Id
:= SPARK_Mode_Pragma
;
14401 -- Regardless of the current mode, predefined units are analyzed in the
14402 -- most current Ada mode, and earlier version Ada checks do not apply
14403 -- to predefined units. Nothing needs to be done for non-internal units.
14404 -- These are always analyzed in the current mode.
14406 if Is_Internal_File_Name
14407 (Fname
=> Unit_File_Name
(Get_Source_Unit
(Gen_Unit
)),
14408 Renamings_Included
=> True)
14410 Set_Opt_Config_Switches
(True, Current_Sem_Unit
= Main_Unit
);
14412 -- In Ada2012 we may want to enable assertions in an instance of a
14413 -- predefined unit, in which case we need to preserve the current
14414 -- setting for the Assertions_Enabled flag. This will become more
14415 -- critical when pre/postconditions are added to predefined units,
14416 -- as is already the case for some numeric libraries.
14418 if Ada_Version
>= Ada_2012
then
14419 Assertions_Enabled
:= Assertion_Status
;
14422 -- SPARK_Mode for an instance is the one applicable at the point of
14425 SPARK_Mode
:= Save_SPARK_Mode
;
14426 SPARK_Mode_Pragma
:= Save_SPARK_Mode_Pragma
;
14429 Current_Instantiated_Parent
:=
14430 (Gen_Id
=> Gen_Unit
,
14431 Act_Id
=> Act_Unit
,
14432 Next_In_HTable
=> Assoc_Null
);
14433 end Set_Instance_Env
;
14439 procedure Switch_View
(T
: Entity_Id
) is
14440 BT
: constant Entity_Id
:= Base_Type
(T
);
14441 Priv_Elmt
: Elmt_Id
:= No_Elmt
;
14442 Priv_Sub
: Entity_Id
;
14445 -- T may be private but its base type may have been exchanged through
14446 -- some other occurrence, in which case there is nothing to switch
14447 -- besides T itself. Note that a private dependent subtype of a private
14448 -- type might not have been switched even if the base type has been,
14449 -- because of the last branch of Check_Private_View (see comment there).
14451 if not Is_Private_Type
(BT
) then
14452 Prepend_Elmt
(Full_View
(T
), Exchanged_Views
);
14453 Exchange_Declarations
(T
);
14457 Priv_Elmt
:= First_Elmt
(Private_Dependents
(BT
));
14459 if Present
(Full_View
(BT
)) then
14460 Prepend_Elmt
(Full_View
(BT
), Exchanged_Views
);
14461 Exchange_Declarations
(BT
);
14464 while Present
(Priv_Elmt
) loop
14465 Priv_Sub
:= (Node
(Priv_Elmt
));
14467 -- We avoid flipping the subtype if the Etype of its full view is
14468 -- private because this would result in a malformed subtype. This
14469 -- occurs when the Etype of the subtype full view is the full view of
14470 -- the base type (and since the base types were just switched, the
14471 -- subtype is pointing to the wrong view). This is currently the case
14472 -- for tagged record types, access types (maybe more?) and needs to
14473 -- be resolved. ???
14475 if Present
(Full_View
(Priv_Sub
))
14476 and then not Is_Private_Type
(Etype
(Full_View
(Priv_Sub
)))
14478 Prepend_Elmt
(Full_View
(Priv_Sub
), Exchanged_Views
);
14479 Exchange_Declarations
(Priv_Sub
);
14482 Next_Elmt
(Priv_Elmt
);
14490 function True_Parent
(N
: Node_Id
) return Node_Id
is
14492 if Nkind
(Parent
(N
)) = N_Subunit
then
14493 return Parent
(Corresponding_Stub
(Parent
(N
)));
14499 -----------------------------
14500 -- Valid_Default_Attribute --
14501 -----------------------------
14503 procedure Valid_Default_Attribute
(Nam
: Entity_Id
; Def
: Node_Id
) is
14504 Attr_Id
: constant Attribute_Id
:=
14505 Get_Attribute_Id
(Attribute_Name
(Def
));
14506 T
: constant Entity_Id
:= Entity
(Prefix
(Def
));
14507 Is_Fun
: constant Boolean := (Ekind
(Nam
) = E_Function
);
14513 if No
(T
) or else T
= Any_Id
then
14518 F
:= First_Formal
(Nam
);
14519 while Present
(F
) loop
14520 Num_F
:= Num_F
+ 1;
14525 when Attribute_Adjacent | Attribute_Ceiling | Attribute_Copy_Sign |
14526 Attribute_Floor | Attribute_Fraction | Attribute_Machine |
14527 Attribute_Model | Attribute_Remainder | Attribute_Rounding |
14528 Attribute_Unbiased_Rounding
=>
14531 and then Is_Floating_Point_Type
(T
);
14533 when Attribute_Image | Attribute_Pred | Attribute_Succ |
14534 Attribute_Value | Attribute_Wide_Image |
14535 Attribute_Wide_Value
=>
14536 OK
:= (Is_Fun
and then Num_F
= 1 and then Is_Scalar_Type
(T
));
14538 when Attribute_Max | Attribute_Min
=>
14539 OK
:= (Is_Fun
and then Num_F
= 2 and then Is_Scalar_Type
(T
));
14541 when Attribute_Input
=>
14542 OK
:= (Is_Fun
and then Num_F
= 1);
14544 when Attribute_Output | Attribute_Read | Attribute_Write
=>
14545 OK
:= (not Is_Fun
and then Num_F
= 2);
14552 Error_Msg_N
("attribute reference has wrong profile for subprogram",
14555 end Valid_Default_Attribute
;