]> gcc.gnu.org Git - gcc.git/blob - gcc/ada/sem_ch12.adb
159c6e76ca19cb48d44eabc8444428e20974f2d2
[gcc.git] / gcc / ada / sem_ch12.adb
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S E M _ C H 1 2 --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2012, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
20 -- --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
23 -- --
24 ------------------------------------------------------------------------------
25
26 with Aspects; use Aspects;
27 with Atree; use Atree;
28 with Debug; use Debug;
29 with Einfo; use Einfo;
30 with Elists; use Elists;
31 with Errout; use Errout;
32 with Expander; use Expander;
33 with Exp_Disp; use Exp_Disp;
34 with Fname; use Fname;
35 with Fname.UF; use Fname.UF;
36 with Freeze; use Freeze;
37 with Itypes; use Itypes;
38 with Lib; use Lib;
39 with Lib.Load; use Lib.Load;
40 with Lib.Xref; use Lib.Xref;
41 with Nlists; use Nlists;
42 with Namet; use Namet;
43 with Nmake; use Nmake;
44 with Opt; use Opt;
45 with Rident; use Rident;
46 with Restrict; use Restrict;
47 with Rtsfind; use Rtsfind;
48 with Sem; use Sem;
49 with Sem_Aux; use Sem_Aux;
50 with Sem_Cat; use Sem_Cat;
51 with Sem_Ch3; use Sem_Ch3;
52 with Sem_Ch6; use Sem_Ch6;
53 with Sem_Ch7; use Sem_Ch7;
54 with Sem_Ch8; use Sem_Ch8;
55 with Sem_Ch10; use Sem_Ch10;
56 with Sem_Ch13; use Sem_Ch13;
57 with Sem_Dim; use Sem_Dim;
58 with Sem_Disp; use Sem_Disp;
59 with Sem_Elab; use Sem_Elab;
60 with Sem_Elim; use Sem_Elim;
61 with Sem_Eval; use Sem_Eval;
62 with Sem_Prag; use Sem_Prag;
63 with Sem_Res; use Sem_Res;
64 with Sem_Type; use Sem_Type;
65 with Sem_Util; use Sem_Util;
66 with Sem_Warn; use Sem_Warn;
67 with Stand; use Stand;
68 with Sinfo; use Sinfo;
69 with Sinfo.CN; use Sinfo.CN;
70 with Sinput; use Sinput;
71 with Sinput.L; use Sinput.L;
72 with Snames; use Snames;
73 with Stringt; use Stringt;
74 with Uname; use Uname;
75 with Table;
76 with Tbuild; use Tbuild;
77 with Uintp; use Uintp;
78 with Urealp; use Urealp;
79
80 with GNAT.HTable;
81
82 package body Sem_Ch12 is
83
84 ----------------------------------------------------------
85 -- Implementation of Generic Analysis and Instantiation --
86 ----------------------------------------------------------
87
88 -- GNAT implements generics by macro expansion. No attempt is made to share
89 -- generic instantiations (for now). Analysis of a generic definition does
90 -- not perform any expansion action, but the expander must be called on the
91 -- tree for each instantiation, because the expansion may of course depend
92 -- on the generic actuals. All of this is best achieved as follows:
93 --
94 -- a) Semantic analysis of a generic unit is performed on a copy of the
95 -- tree for the generic unit. All tree modifications that follow analysis
96 -- do not affect the original tree. Links are kept between the original
97 -- tree and the copy, in order to recognize non-local references within
98 -- the generic, and propagate them to each instance (recall that name
99 -- resolution is done on the generic declaration: generics are not really
100 -- macros!). This is summarized in the following diagram:
101
102 -- .-----------. .----------.
103 -- | semantic |<--------------| generic |
104 -- | copy | | unit |
105 -- | |==============>| |
106 -- |___________| global |__________|
107 -- references | | |
108 -- | | |
109 -- .-----|--|.
110 -- | .-----|---.
111 -- | | .----------.
112 -- | | | generic |
113 -- |__| | |
114 -- |__| instance |
115 -- |__________|
116
117 -- b) Each instantiation copies the original tree, and inserts into it a
118 -- series of declarations that describe the mapping between generic formals
119 -- and actuals. For example, a generic In OUT parameter is an object
120 -- renaming of the corresponding actual, etc. Generic IN parameters are
121 -- constant declarations.
122
123 -- c) In order to give the right visibility for these renamings, we use
124 -- a different scheme for package and subprogram instantiations. For
125 -- packages, the list of renamings is inserted into the package
126 -- specification, before the visible declarations of the package. The
127 -- renamings are analyzed before any of the text of the instance, and are
128 -- thus visible at the right place. Furthermore, outside of the instance,
129 -- the generic parameters are visible and denote their corresponding
130 -- actuals.
131
132 -- For subprograms, we create a container package to hold the renamings
133 -- and the subprogram instance itself. Analysis of the package makes the
134 -- renaming declarations visible to the subprogram. After analyzing the
135 -- package, the defining entity for the subprogram is touched-up so that
136 -- it appears declared in the current scope, and not inside the container
137 -- package.
138
139 -- If the instantiation is a compilation unit, the container package is
140 -- given the same name as the subprogram instance. This ensures that
141 -- the elaboration procedure called by the binder, using the compilation
142 -- unit name, calls in fact the elaboration procedure for the package.
143
144 -- Not surprisingly, private types complicate this approach. By saving in
145 -- the original generic object the non-local references, we guarantee that
146 -- the proper entities are referenced at the point of instantiation.
147 -- However, for private types, this by itself does not insure that the
148 -- proper VIEW of the entity is used (the full type may be visible at the
149 -- point of generic definition, but not at instantiation, or vice-versa).
150 -- In order to reference the proper view, we special-case any reference
151 -- to private types in the generic object, by saving both views, one in
152 -- the generic and one in the semantic copy. At time of instantiation, we
153 -- check whether the two views are consistent, and exchange declarations if
154 -- necessary, in order to restore the correct visibility. Similarly, if
155 -- the instance view is private when the generic view was not, we perform
156 -- the exchange. After completing the instantiation, we restore the
157 -- current visibility. The flag Has_Private_View marks identifiers in the
158 -- the generic unit that require checking.
159
160 -- Visibility within nested generic units requires special handling.
161 -- Consider the following scheme:
162
163 -- type Global is ... -- outside of generic unit.
164 -- generic ...
165 -- package Outer is
166 -- ...
167 -- type Semi_Global is ... -- global to inner.
168
169 -- generic ... -- 1
170 -- procedure inner (X1 : Global; X2 : Semi_Global);
171
172 -- procedure in2 is new inner (...); -- 4
173 -- end Outer;
174
175 -- package New_Outer is new Outer (...); -- 2
176 -- procedure New_Inner is new New_Outer.Inner (...); -- 3
177
178 -- The semantic analysis of Outer captures all occurrences of Global.
179 -- The semantic analysis of Inner (at 1) captures both occurrences of
180 -- Global and Semi_Global.
181
182 -- At point 2 (instantiation of Outer), we also produce a generic copy
183 -- of Inner, even though Inner is, at that point, not being instantiated.
184 -- (This is just part of the semantic analysis of New_Outer).
185
186 -- Critically, references to Global within Inner must be preserved, while
187 -- references to Semi_Global should not preserved, because they must now
188 -- resolve to an entity within New_Outer. To distinguish between these, we
189 -- use a global variable, Current_Instantiated_Parent, which is set when
190 -- performing a generic copy during instantiation (at 2). This variable is
191 -- used when performing a generic copy that is not an instantiation, but
192 -- that is nested within one, as the occurrence of 1 within 2. The analysis
193 -- of a nested generic only preserves references that are global to the
194 -- enclosing Current_Instantiated_Parent. We use the Scope_Depth value to
195 -- determine whether a reference is external to the given parent.
196
197 -- The instantiation at point 3 requires no special treatment. The method
198 -- works as well for further nestings of generic units, but of course the
199 -- variable Current_Instantiated_Parent must be stacked because nested
200 -- instantiations can occur, e.g. the occurrence of 4 within 2.
201
202 -- The instantiation of package and subprogram bodies is handled in a
203 -- similar manner, except that it is delayed until after semantic
204 -- analysis is complete. In this fashion complex cross-dependencies
205 -- between several package declarations and bodies containing generics
206 -- can be compiled which otherwise would diagnose spurious circularities.
207
208 -- For example, it is possible to compile two packages A and B that
209 -- have the following structure:
210
211 -- package A is package B is
212 -- generic ... generic ...
213 -- package G_A is package G_B is
214
215 -- with B; with A;
216 -- package body A is package body B is
217 -- package N_B is new G_B (..) package N_A is new G_A (..)
218
219 -- The table Pending_Instantiations in package Inline is used to keep
220 -- track of body instantiations that are delayed in this manner. Inline
221 -- handles the actual calls to do the body instantiations. This activity
222 -- is part of Inline, since the processing occurs at the same point, and
223 -- for essentially the same reason, as the handling of inlined routines.
224
225 ----------------------------------------------
226 -- Detection of Instantiation Circularities --
227 ----------------------------------------------
228
229 -- If we have a chain of instantiations that is circular, this is static
230 -- error which must be detected at compile time. The detection of these
231 -- circularities is carried out at the point that we insert a generic
232 -- instance spec or body. If there is a circularity, then the analysis of
233 -- the offending spec or body will eventually result in trying to load the
234 -- same unit again, and we detect this problem as we analyze the package
235 -- instantiation for the second time.
236
237 -- At least in some cases after we have detected the circularity, we get
238 -- into trouble if we try to keep going. The following flag is set if a
239 -- circularity is detected, and used to abandon compilation after the
240 -- messages have been posted.
241
242 Circularity_Detected : Boolean := False;
243 -- This should really be reset on encountering a new main unit, but in
244 -- practice we are not using multiple main units so it is not critical.
245
246 -------------------------------------------------
247 -- Formal packages and partial parametrization --
248 -------------------------------------------------
249
250 -- When compiling a generic, a formal package is a local instantiation. If
251 -- declared with a box, its generic formals are visible in the enclosing
252 -- generic. If declared with a partial list of actuals, those actuals that
253 -- are defaulted (covered by an Others clause, or given an explicit box
254 -- initialization) are also visible in the enclosing generic, while those
255 -- that have a corresponding actual are not.
256
257 -- In our source model of instantiation, the same visibility must be
258 -- present in the spec and body of an instance: the names of the formals
259 -- that are defaulted must be made visible within the instance, and made
260 -- invisible (hidden) after the instantiation is complete, so that they
261 -- are not accessible outside of the instance.
262
263 -- In a generic, a formal package is treated like a special instantiation.
264 -- Our Ada 95 compiler handled formals with and without box in different
265 -- ways. With partial parametrization, we use a single model for both.
266 -- We create a package declaration that consists of the specification of
267 -- the generic package, and a set of declarations that map the actuals
268 -- into local renamings, just as we do for bona fide instantiations. For
269 -- defaulted parameters and formals with a box, we copy directly the
270 -- declarations of the formal into this local package. The result is a
271 -- a package whose visible declarations may include generic formals. This
272 -- package is only used for type checking and visibility analysis, and
273 -- never reaches the back-end, so it can freely violate the placement
274 -- rules for generic formal declarations.
275
276 -- The list of declarations (renamings and copies of formals) is built
277 -- by Analyze_Associations, just as for regular instantiations.
278
279 -- At the point of instantiation, conformance checking must be applied only
280 -- to those parameters that were specified in the formal. We perform this
281 -- checking by creating another internal instantiation, this one including
282 -- only the renamings and the formals (the rest of the package spec is not
283 -- relevant to conformance checking). We can then traverse two lists: the
284 -- list of actuals in the instance that corresponds to the formal package,
285 -- and the list of actuals produced for this bogus instantiation. We apply
286 -- the conformance rules to those actuals that are not defaulted (i.e.
287 -- which still appear as generic formals.
288
289 -- When we compile an instance body we must make the right parameters
290 -- visible again. The predicate Is_Generic_Formal indicates which of the
291 -- formals should have its Is_Hidden flag reset.
292
293 -----------------------
294 -- Local subprograms --
295 -----------------------
296
297 procedure Abandon_Instantiation (N : Node_Id);
298 pragma No_Return (Abandon_Instantiation);
299 -- Posts an error message "instantiation abandoned" at the indicated node
300 -- and then raises the exception Instantiation_Error to do it.
301
302 procedure Analyze_Formal_Array_Type
303 (T : in out Entity_Id;
304 Def : Node_Id);
305 -- A formal array type is treated like an array type declaration, and
306 -- invokes Array_Type_Declaration (sem_ch3) whose first parameter is
307 -- in-out, because in the case of an anonymous type the entity is
308 -- actually created in the procedure.
309
310 -- The following procedures treat other kinds of formal parameters
311
312 procedure Analyze_Formal_Derived_Interface_Type
313 (N : Node_Id;
314 T : Entity_Id;
315 Def : Node_Id);
316
317 procedure Analyze_Formal_Derived_Type
318 (N : Node_Id;
319 T : Entity_Id;
320 Def : Node_Id);
321
322 procedure Analyze_Formal_Interface_Type
323 (N : Node_Id;
324 T : Entity_Id;
325 Def : Node_Id);
326
327 -- The following subprograms create abbreviated declarations for formal
328 -- scalar types. We introduce an anonymous base of the proper class for
329 -- each of them, and define the formals as constrained first subtypes of
330 -- their bases. The bounds are expressions that are non-static in the
331 -- generic.
332
333 procedure Analyze_Formal_Decimal_Fixed_Point_Type
334 (T : Entity_Id; Def : Node_Id);
335 procedure Analyze_Formal_Discrete_Type (T : Entity_Id; Def : Node_Id);
336 procedure Analyze_Formal_Floating_Type (T : Entity_Id; Def : Node_Id);
337 procedure Analyze_Formal_Signed_Integer_Type (T : Entity_Id; Def : Node_Id);
338 procedure Analyze_Formal_Modular_Type (T : Entity_Id; Def : Node_Id);
339 procedure Analyze_Formal_Ordinary_Fixed_Point_Type
340 (T : Entity_Id; Def : Node_Id);
341
342 procedure Analyze_Formal_Private_Type
343 (N : Node_Id;
344 T : Entity_Id;
345 Def : Node_Id);
346 -- Creates a new private type, which does not require completion
347
348 procedure Analyze_Formal_Incomplete_Type (T : Entity_Id; Def : Node_Id);
349 -- Ada 2012: Creates a new incomplete type whose actual does not freeze
350
351 procedure Analyze_Generic_Formal_Part (N : Node_Id);
352 -- Analyze generic formal part
353
354 procedure Analyze_Generic_Access_Type (T : Entity_Id; Def : Node_Id);
355 -- Create a new access type with the given designated type
356
357 function Analyze_Associations
358 (I_Node : Node_Id;
359 Formals : List_Id;
360 F_Copy : List_Id) return List_Id;
361 -- At instantiation time, build the list of associations between formals
362 -- and actuals. Each association becomes a renaming declaration for the
363 -- formal entity. F_Copy is the analyzed list of formals in the generic
364 -- copy. It is used to apply legality checks to the actuals. I_Node is the
365 -- instantiation node itself.
366
367 procedure Analyze_Subprogram_Instantiation
368 (N : Node_Id;
369 K : Entity_Kind);
370
371 procedure Build_Instance_Compilation_Unit_Nodes
372 (N : Node_Id;
373 Act_Body : Node_Id;
374 Act_Decl : Node_Id);
375 -- This procedure is used in the case where the generic instance of a
376 -- subprogram body or package body is a library unit. In this case, the
377 -- original library unit node for the generic instantiation must be
378 -- replaced by the resulting generic body, and a link made to a new
379 -- compilation unit node for the generic declaration. The argument N is
380 -- the original generic instantiation. Act_Body and Act_Decl are the body
381 -- and declaration of the instance (either package body and declaration
382 -- nodes or subprogram body and declaration nodes depending on the case).
383 -- On return, the node N has been rewritten with the actual body.
384
385 procedure Check_Access_Definition (N : Node_Id);
386 -- Subsidiary routine to null exclusion processing. Perform an assertion
387 -- check on Ada version and the presence of an access definition in N.
388
389 procedure Check_Formal_Packages (P_Id : Entity_Id);
390 -- Apply the following to all formal packages in generic associations
391
392 procedure Check_Formal_Package_Instance
393 (Formal_Pack : Entity_Id;
394 Actual_Pack : Entity_Id);
395 -- Verify that the actuals of the actual instance match the actuals of
396 -- the template for a formal package that is not declared with a box.
397
398 procedure Check_Forward_Instantiation (Decl : Node_Id);
399 -- If the generic is a local entity and the corresponding body has not
400 -- been seen yet, flag enclosing packages to indicate that it will be
401 -- elaborated after the generic body. Subprograms declared in the same
402 -- package cannot be inlined by the front-end because front-end inlining
403 -- requires a strict linear order of elaboration.
404
405 function Check_Hidden_Primitives (Assoc_List : List_Id) return Elist_Id;
406 -- Check if some association between formals and actuals requires to make
407 -- visible primitives of a tagged type, and make those primitives visible.
408 -- Return the list of primitives whose visibility is modified (to restore
409 -- their visibility later through Restore_Hidden_Primitives). If no
410 -- candidate is found then return No_Elist.
411
412 procedure Check_Hidden_Child_Unit
413 (N : Node_Id;
414 Gen_Unit : Entity_Id;
415 Act_Decl_Id : Entity_Id);
416 -- If the generic unit is an implicit child instance within a parent
417 -- instance, we need to make an explicit test that it is not hidden by
418 -- a child instance of the same name and parent.
419
420 procedure Check_Generic_Actuals
421 (Instance : Entity_Id;
422 Is_Formal_Box : Boolean);
423 -- Similar to previous one. Check the actuals in the instantiation,
424 -- whose views can change between the point of instantiation and the point
425 -- of instantiation of the body. In addition, mark the generic renamings
426 -- as generic actuals, so that they are not compatible with other actuals.
427 -- Recurse on an actual that is a formal package whose declaration has
428 -- a box.
429
430 function Contains_Instance_Of
431 (Inner : Entity_Id;
432 Outer : Entity_Id;
433 N : Node_Id) return Boolean;
434 -- Inner is instantiated within the generic Outer. Check whether Inner
435 -- directly or indirectly contains an instance of Outer or of one of its
436 -- parents, in the case of a subunit. Each generic unit holds a list of
437 -- the entities instantiated within (at any depth). This procedure
438 -- determines whether the set of such lists contains a cycle, i.e. an
439 -- illegal circular instantiation.
440
441 function Denotes_Formal_Package
442 (Pack : Entity_Id;
443 On_Exit : Boolean := False;
444 Instance : Entity_Id := Empty) return Boolean;
445 -- Returns True if E is a formal package of an enclosing generic, or
446 -- the actual for such a formal in an enclosing instantiation. If such
447 -- a package is used as a formal in an nested generic, or as an actual
448 -- in a nested instantiation, the visibility of ITS formals should not
449 -- be modified. When called from within Restore_Private_Views, the flag
450 -- On_Exit is true, to indicate that the search for a possible enclosing
451 -- instance should ignore the current one. In that case Instance denotes
452 -- the declaration for which this is an actual. This declaration may be
453 -- an instantiation in the source, or the internal instantiation that
454 -- corresponds to the actual for a formal package.
455
456 function Earlier (N1, N2 : Node_Id) return Boolean;
457 -- Yields True if N1 and N2 appear in the same compilation unit,
458 -- ignoring subunits, and if N1 is to the left of N2 in a left-to-right
459 -- traversal of the tree for the unit. Used to determine the placement
460 -- of freeze nodes for instance bodies that may depend on other instances.
461
462 function Find_Actual_Type
463 (Typ : Entity_Id;
464 Gen_Type : Entity_Id) return Entity_Id;
465 -- When validating the actual types of a child instance, check whether
466 -- the formal is a formal type of the parent unit, and retrieve the current
467 -- actual for it. Typ is the entity in the analyzed formal type declaration
468 -- (component or index type of an array type, or designated type of an
469 -- access formal) and Gen_Type is the enclosing analyzed formal array
470 -- or access type. The desired actual may be a formal of a parent, or may
471 -- be declared in a formal package of a parent. In both cases it is a
472 -- generic actual type because it appears within a visible instance.
473 -- Finally, it may be declared in a parent unit without being a formal
474 -- of that unit, in which case it must be retrieved by visibility.
475 -- Ambiguities may still arise if two homonyms are declared in two formal
476 -- packages, and the prefix of the formal type may be needed to resolve
477 -- the ambiguity in the instance ???
478
479 function In_Same_Declarative_Part
480 (F_Node : Node_Id;
481 Inst : Node_Id) return Boolean;
482 -- True if the instantiation Inst and the given freeze_node F_Node appear
483 -- within the same declarative part, ignoring subunits, but with no inter-
484 -- vening subprograms or concurrent units. Used to find the proper plave
485 -- for the freeze node of an instance, when the generic is declared in a
486 -- previous instance. If predicate is true, the freeze node of the instance
487 -- can be placed after the freeze node of the previous instance, Otherwise
488 -- it has to be placed at the end of the current declarative part.
489
490 function In_Main_Context (E : Entity_Id) return Boolean;
491 -- Check whether an instantiation is in the context of the main unit.
492 -- Used to determine whether its body should be elaborated to allow
493 -- front-end inlining.
494
495 procedure Set_Instance_Env
496 (Gen_Unit : Entity_Id;
497 Act_Unit : Entity_Id);
498 -- Save current instance on saved environment, to be used to determine
499 -- the global status of entities in nested instances. Part of Save_Env.
500 -- called after verifying that the generic unit is legal for the instance,
501 -- The procedure also examines whether the generic unit is a predefined
502 -- unit, in order to set configuration switches accordingly. As a result
503 -- the procedure must be called after analyzing and freezing the actuals.
504
505 procedure Set_Instance_Of (A : Entity_Id; B : Entity_Id);
506 -- Associate analyzed generic parameter with corresponding
507 -- instance. Used for semantic checks at instantiation time.
508
509 function Has_Been_Exchanged (E : Entity_Id) return Boolean;
510 -- Traverse the Exchanged_Views list to see if a type was private
511 -- and has already been flipped during this phase of instantiation.
512
513 procedure Hide_Current_Scope;
514 -- When instantiating a generic child unit, the parent context must be
515 -- present, but the instance and all entities that may be generated
516 -- must be inserted in the current scope. We leave the current scope
517 -- on the stack, but make its entities invisible to avoid visibility
518 -- problems. This is reversed at the end of the instantiation. This is
519 -- not done for the instantiation of the bodies, which only require the
520 -- instances of the generic parents to be in scope.
521
522 procedure Install_Body
523 (Act_Body : Node_Id;
524 N : Node_Id;
525 Gen_Body : Node_Id;
526 Gen_Decl : Node_Id);
527 -- If the instantiation happens textually before the body of the generic,
528 -- the instantiation of the body must be analyzed after the generic body,
529 -- and not at the point of instantiation. Such early instantiations can
530 -- happen if the generic and the instance appear in a package declaration
531 -- because the generic body can only appear in the corresponding package
532 -- body. Early instantiations can also appear if generic, instance and
533 -- body are all in the declarative part of a subprogram or entry. Entities
534 -- of packages that are early instantiations are delayed, and their freeze
535 -- node appears after the generic body.
536
537 procedure Insert_Freeze_Node_For_Instance
538 (N : Node_Id;
539 F_Node : Node_Id);
540 -- N denotes a package or a subprogram instantiation and F_Node is the
541 -- associated freeze node. Insert the freeze node before the first source
542 -- body which follows immediately after N. If no such body is found, the
543 -- freeze node is inserted at the end of the declarative region which
544 -- contains N.
545
546 procedure Freeze_Subprogram_Body
547 (Inst_Node : Node_Id;
548 Gen_Body : Node_Id;
549 Pack_Id : Entity_Id);
550 -- The generic body may appear textually after the instance, including
551 -- in the proper body of a stub, or within a different package instance.
552 -- Given that the instance can only be elaborated after the generic, we
553 -- place freeze_nodes for the instance and/or for packages that may enclose
554 -- the instance and the generic, so that the back-end can establish the
555 -- proper order of elaboration.
556
557 procedure Init_Env;
558 -- Establish environment for subsequent instantiation. Separated from
559 -- Save_Env because data-structures for visibility handling must be
560 -- initialized before call to Check_Generic_Child_Unit.
561
562 procedure Install_Formal_Packages (Par : Entity_Id);
563 -- Install the visible part of any formal of the parent that is a formal
564 -- package. Note that for the case of a formal package with a box, this
565 -- includes the formal part of the formal package (12.7(10/2)).
566
567 procedure Install_Parent (P : Entity_Id; In_Body : Boolean := False);
568 -- When compiling an instance of a child unit the parent (which is
569 -- itself an instance) is an enclosing scope that must be made
570 -- immediately visible. This procedure is also used to install the non-
571 -- generic parent of a generic child unit when compiling its body, so
572 -- that full views of types in the parent are made visible.
573
574 procedure Remove_Parent (In_Body : Boolean := False);
575 -- Reverse effect after instantiation of child is complete
576
577 procedure Install_Hidden_Primitives
578 (Prims_List : in out Elist_Id;
579 Gen_T : Entity_Id;
580 Act_T : Entity_Id);
581 -- Remove suffix 'P' from hidden primitives of Act_T to match the
582 -- visibility of primitives of Gen_T. The list of primitives to which
583 -- the suffix is removed is added to Prims_List to restore them later.
584
585 procedure Restore_Hidden_Primitives (Prims_List : in out Elist_Id);
586 -- Restore suffix 'P' to primitives of Prims_List and leave Prims_List
587 -- set to No_Elist.
588
589 procedure Inline_Instance_Body
590 (N : Node_Id;
591 Gen_Unit : Entity_Id;
592 Act_Decl : Node_Id);
593 -- If front-end inlining is requested, instantiate the package body,
594 -- and preserve the visibility of its compilation unit, to insure
595 -- that successive instantiations succeed.
596
597 -- The functions Instantiate_XXX perform various legality checks and build
598 -- the declarations for instantiated generic parameters. In all of these
599 -- Formal is the entity in the generic unit, Actual is the entity of
600 -- expression in the generic associations, and Analyzed_Formal is the
601 -- formal in the generic copy, which contains the semantic information to
602 -- be used to validate the actual.
603
604 function Instantiate_Object
605 (Formal : Node_Id;
606 Actual : Node_Id;
607 Analyzed_Formal : Node_Id) return List_Id;
608
609 function Instantiate_Type
610 (Formal : Node_Id;
611 Actual : Node_Id;
612 Analyzed_Formal : Node_Id;
613 Actual_Decls : List_Id) return List_Id;
614
615 function Instantiate_Formal_Subprogram
616 (Formal : Node_Id;
617 Actual : Node_Id;
618 Analyzed_Formal : Node_Id) return Node_Id;
619
620 function Instantiate_Formal_Package
621 (Formal : Node_Id;
622 Actual : Node_Id;
623 Analyzed_Formal : Node_Id) return List_Id;
624 -- If the formal package is declared with a box, special visibility rules
625 -- apply to its formals: they are in the visible part of the package. This
626 -- is true in the declarative region of the formal package, that is to say
627 -- in the enclosing generic or instantiation. For an instantiation, the
628 -- parameters of the formal package are made visible in an explicit step.
629 -- Furthermore, if the actual has a visible USE clause, these formals must
630 -- be made potentially use-visible as well. On exit from the enclosing
631 -- instantiation, the reverse must be done.
632
633 -- For a formal package declared without a box, there are conformance rules
634 -- that apply to the actuals in the generic declaration and the actuals of
635 -- the actual package in the enclosing instantiation. The simplest way to
636 -- apply these rules is to repeat the instantiation of the formal package
637 -- in the context of the enclosing instance, and compare the generic
638 -- associations of this instantiation with those of the actual package.
639 -- This internal instantiation only needs to contain the renamings of the
640 -- formals: the visible and private declarations themselves need not be
641 -- created.
642
643 -- In Ada 2005, the formal package may be only partially parameterized.
644 -- In that case the visibility step must make visible those actuals whose
645 -- corresponding formals were given with a box. A final complication
646 -- involves inherited operations from formal derived types, which must
647 -- be visible if the type is.
648
649 function Is_In_Main_Unit (N : Node_Id) return Boolean;
650 -- Test if given node is in the main unit
651
652 procedure Load_Parent_Of_Generic
653 (N : Node_Id;
654 Spec : Node_Id;
655 Body_Optional : Boolean := False);
656 -- If the generic appears in a separate non-generic library unit, load the
657 -- corresponding body to retrieve the body of the generic. N is the node
658 -- for the generic instantiation, Spec is the generic package declaration.
659 --
660 -- Body_Optional is a flag that indicates that the body is being loaded to
661 -- ensure that temporaries are generated consistently when there are other
662 -- instances in the current declarative part that precede the one being
663 -- loaded. In that case a missing body is acceptable.
664
665 procedure Inherit_Context (Gen_Decl : Node_Id; Inst : Node_Id);
666 -- Add the context clause of the unit containing a generic unit to a
667 -- compilation unit that is, or contains, an instantiation.
668
669 function Get_Associated_Node (N : Node_Id) return Node_Id;
670 -- In order to propagate semantic information back from the analyzed copy
671 -- to the original generic, we maintain links between selected nodes in the
672 -- generic and their corresponding copies. At the end of generic analysis,
673 -- the routine Save_Global_References traverses the generic tree, examines
674 -- the semantic information, and preserves the links to those nodes that
675 -- contain global information. At instantiation, the information from the
676 -- associated node is placed on the new copy, so that name resolution is
677 -- not repeated.
678 --
679 -- Three kinds of source nodes have associated nodes:
680 --
681 -- a) those that can reference (denote) entities, that is identifiers,
682 -- character literals, expanded_names, operator symbols, operators,
683 -- and attribute reference nodes. These nodes have an Entity field
684 -- and are the set of nodes that are in N_Has_Entity.
685 --
686 -- b) aggregates (N_Aggregate and N_Extension_Aggregate)
687 --
688 -- c) selected components (N_Selected_Component)
689 --
690 -- For the first class, the associated node preserves the entity if it is
691 -- global. If the generic contains nested instantiations, the associated
692 -- node itself has been recopied, and a chain of them must be followed.
693 --
694 -- For aggregates, the associated node allows retrieval of the type, which
695 -- may otherwise not appear in the generic. The view of this type may be
696 -- different between generic and instantiation, and the full view can be
697 -- installed before the instantiation is analyzed. For aggregates of type
698 -- extensions, the same view exchange may have to be performed for some of
699 -- the ancestor types, if their view is private at the point of
700 -- instantiation.
701 --
702 -- Nodes that are selected components in the parse tree may be rewritten
703 -- as expanded names after resolution, and must be treated as potential
704 -- entity holders, which is why they also have an Associated_Node.
705 --
706 -- Nodes that do not come from source, such as freeze nodes, do not appear
707 -- in the generic tree, and need not have an associated node.
708 --
709 -- The associated node is stored in the Associated_Node field. Note that
710 -- this field overlaps Entity, which is fine, because the whole point is
711 -- that we don't need or want the normal Entity field in this situation.
712
713 procedure Map_Formal_Package_Entities (Form : Entity_Id; Act : Entity_Id);
714 -- Within the generic part, entities in the formal package are
715 -- visible. To validate subsequent type declarations, indicate
716 -- the correspondence between the entities in the analyzed formal,
717 -- and the entities in the actual package. There are three packages
718 -- involved in the instantiation of a formal package: the parent
719 -- generic P1 which appears in the generic declaration, the fake
720 -- instantiation P2 which appears in the analyzed generic, and whose
721 -- visible entities may be used in subsequent formals, and the actual
722 -- P3 in the instance. To validate subsequent formals, me indicate
723 -- that the entities in P2 are mapped into those of P3. The mapping of
724 -- entities has to be done recursively for nested packages.
725
726 procedure Move_Freeze_Nodes
727 (Out_Of : Entity_Id;
728 After : Node_Id;
729 L : List_Id);
730 -- Freeze nodes can be generated in the analysis of a generic unit, but
731 -- will not be seen by the back-end. It is necessary to move those nodes
732 -- to the enclosing scope if they freeze an outer entity. We place them
733 -- at the end of the enclosing generic package, which is semantically
734 -- neutral.
735
736 procedure Preanalyze_Actuals (N : Node_Id);
737 -- Analyze actuals to perform name resolution. Full resolution is done
738 -- later, when the expected types are known, but names have to be captured
739 -- before installing parents of generics, that are not visible for the
740 -- actuals themselves.
741
742 function True_Parent (N : Node_Id) return Node_Id;
743 -- For a subunit, return parent of corresponding stub, else return
744 -- parent of node.
745
746 procedure Valid_Default_Attribute (Nam : Entity_Id; Def : Node_Id);
747 -- Verify that an attribute that appears as the default for a formal
748 -- subprogram is a function or procedure with the correct profile.
749
750 -------------------------------------------
751 -- Data Structures for Generic Renamings --
752 -------------------------------------------
753
754 -- The map Generic_Renamings associates generic entities with their
755 -- corresponding actuals. Currently used to validate type instances. It
756 -- will eventually be used for all generic parameters to eliminate the
757 -- need for overload resolution in the instance.
758
759 type Assoc_Ptr is new Int;
760
761 Assoc_Null : constant Assoc_Ptr := -1;
762
763 type Assoc is record
764 Gen_Id : Entity_Id;
765 Act_Id : Entity_Id;
766 Next_In_HTable : Assoc_Ptr;
767 end record;
768
769 package Generic_Renamings is new Table.Table
770 (Table_Component_Type => Assoc,
771 Table_Index_Type => Assoc_Ptr,
772 Table_Low_Bound => 0,
773 Table_Initial => 10,
774 Table_Increment => 100,
775 Table_Name => "Generic_Renamings");
776
777 -- Variable to hold enclosing instantiation. When the environment is
778 -- saved for a subprogram inlining, the corresponding Act_Id is empty.
779
780 Current_Instantiated_Parent : Assoc := (Empty, Empty, Assoc_Null);
781
782 -- Hash table for associations
783
784 HTable_Size : constant := 37;
785 type HTable_Range is range 0 .. HTable_Size - 1;
786
787 procedure Set_Next_Assoc (E : Assoc_Ptr; Next : Assoc_Ptr);
788 function Next_Assoc (E : Assoc_Ptr) return Assoc_Ptr;
789 function Get_Gen_Id (E : Assoc_Ptr) return Entity_Id;
790 function Hash (F : Entity_Id) return HTable_Range;
791
792 package Generic_Renamings_HTable is new GNAT.HTable.Static_HTable (
793 Header_Num => HTable_Range,
794 Element => Assoc,
795 Elmt_Ptr => Assoc_Ptr,
796 Null_Ptr => Assoc_Null,
797 Set_Next => Set_Next_Assoc,
798 Next => Next_Assoc,
799 Key => Entity_Id,
800 Get_Key => Get_Gen_Id,
801 Hash => Hash,
802 Equal => "=");
803
804 Exchanged_Views : Elist_Id;
805 -- This list holds the private views that have been exchanged during
806 -- instantiation to restore the visibility of the generic declaration.
807 -- (see comments above). After instantiation, the current visibility is
808 -- reestablished by means of a traversal of this list.
809
810 Hidden_Entities : Elist_Id;
811 -- This list holds the entities of the current scope that are removed
812 -- from immediate visibility when instantiating a child unit. Their
813 -- visibility is restored in Remove_Parent.
814
815 -- Because instantiations can be recursive, the following must be saved
816 -- on entry and restored on exit from an instantiation (spec or body).
817 -- This is done by the two procedures Save_Env and Restore_Env. For
818 -- package and subprogram instantiations (but not for the body instances)
819 -- the action of Save_Env is done in two steps: Init_Env is called before
820 -- Check_Generic_Child_Unit, because setting the parent instances requires
821 -- that the visibility data structures be properly initialized. Once the
822 -- generic is unit is validated, Set_Instance_Env completes Save_Env.
823
824 Parent_Unit_Visible : Boolean := False;
825 -- Parent_Unit_Visible is used when the generic is a child unit, and
826 -- indicates whether the ultimate parent of the generic is visible in the
827 -- instantiation environment. It is used to reset the visibility of the
828 -- parent at the end of the instantiation (see Remove_Parent).
829
830 Instance_Parent_Unit : Entity_Id := Empty;
831 -- This records the ultimate parent unit of an instance of a generic
832 -- child unit and is used in conjunction with Parent_Unit_Visible to
833 -- indicate the unit to which the Parent_Unit_Visible flag corresponds.
834
835 type Instance_Env is record
836 Instantiated_Parent : Assoc;
837 Exchanged_Views : Elist_Id;
838 Hidden_Entities : Elist_Id;
839 Current_Sem_Unit : Unit_Number_Type;
840 Parent_Unit_Visible : Boolean := False;
841 Instance_Parent_Unit : Entity_Id := Empty;
842 Switches : Config_Switches_Type;
843 end record;
844
845 package Instance_Envs is new Table.Table (
846 Table_Component_Type => Instance_Env,
847 Table_Index_Type => Int,
848 Table_Low_Bound => 0,
849 Table_Initial => 32,
850 Table_Increment => 100,
851 Table_Name => "Instance_Envs");
852
853 procedure Restore_Private_Views
854 (Pack_Id : Entity_Id;
855 Is_Package : Boolean := True);
856 -- Restore the private views of external types, and unmark the generic
857 -- renamings of actuals, so that they become compatible subtypes again.
858 -- For subprograms, Pack_Id is the package constructed to hold the
859 -- renamings.
860
861 procedure Switch_View (T : Entity_Id);
862 -- Switch the partial and full views of a type and its private
863 -- dependents (i.e. its subtypes and derived types).
864
865 ------------------------------------
866 -- Structures for Error Reporting --
867 ------------------------------------
868
869 Instantiation_Node : Node_Id;
870 -- Used by subprograms that validate instantiation of formal parameters
871 -- where there might be no actual on which to place the error message.
872 -- Also used to locate the instantiation node for generic subunits.
873
874 Instantiation_Error : exception;
875 -- When there is a semantic error in the generic parameter matching,
876 -- there is no point in continuing the instantiation, because the
877 -- number of cascaded errors is unpredictable. This exception aborts
878 -- the instantiation process altogether.
879
880 S_Adjustment : Sloc_Adjustment;
881 -- Offset created for each node in an instantiation, in order to keep
882 -- track of the source position of the instantiation in each of its nodes.
883 -- A subsequent semantic error or warning on a construct of the instance
884 -- points to both places: the original generic node, and the point of
885 -- instantiation. See Sinput and Sinput.L for additional details.
886
887 ------------------------------------------------------------
888 -- Data structure for keeping track when inside a Generic --
889 ------------------------------------------------------------
890
891 -- The following table is used to save values of the Inside_A_Generic
892 -- flag (see spec of Sem) when they are saved by Start_Generic.
893
894 package Generic_Flags is new Table.Table (
895 Table_Component_Type => Boolean,
896 Table_Index_Type => Int,
897 Table_Low_Bound => 0,
898 Table_Initial => 32,
899 Table_Increment => 200,
900 Table_Name => "Generic_Flags");
901
902 ---------------------------
903 -- Abandon_Instantiation --
904 ---------------------------
905
906 procedure Abandon_Instantiation (N : Node_Id) is
907 begin
908 Error_Msg_N ("\instantiation abandoned!", N);
909 raise Instantiation_Error;
910 end Abandon_Instantiation;
911
912 --------------------------
913 -- Analyze_Associations --
914 --------------------------
915
916 function Analyze_Associations
917 (I_Node : Node_Id;
918 Formals : List_Id;
919 F_Copy : List_Id) return List_Id
920 is
921 Actuals_To_Freeze : constant Elist_Id := New_Elmt_List;
922 Assoc : constant List_Id := New_List;
923 Default_Actuals : constant Elist_Id := New_Elmt_List;
924 Gen_Unit : constant Entity_Id :=
925 Defining_Entity (Parent (F_Copy));
926
927 Actuals : List_Id;
928 Actual : Node_Id;
929 Analyzed_Formal : Node_Id;
930 First_Named : Node_Id := Empty;
931 Formal : Node_Id;
932 Match : Node_Id;
933 Named : Node_Id;
934 Saved_Formal : Node_Id;
935
936 Default_Formals : constant List_Id := New_List;
937 -- If an Others_Choice is present, some of the formals may be defaulted.
938 -- To simplify the treatment of visibility in an instance, we introduce
939 -- individual defaults for each such formal. These defaults are
940 -- appended to the list of associations and replace the Others_Choice.
941
942 Found_Assoc : Node_Id;
943 -- Association for the current formal being match. Empty if there are
944 -- no remaining actuals, or if there is no named association with the
945 -- name of the formal.
946
947 Is_Named_Assoc : Boolean;
948 Num_Matched : Int := 0;
949 Num_Actuals : Int := 0;
950
951 Others_Present : Boolean := False;
952 Others_Choice : Node_Id := Empty;
953 -- In Ada 2005, indicates partial parametrization of a formal
954 -- package. As usual an other association must be last in the list.
955
956 procedure Check_Overloaded_Formal_Subprogram (Formal : Entity_Id);
957 -- Apply RM 12.3 (9): if a formal subprogram is overloaded, the instance
958 -- cannot have a named association for it. AI05-0025 extends this rule
959 -- to formals of formal packages by AI05-0025, and it also applies to
960 -- box-initialized formals.
961
962 function Has_Fully_Defined_Profile (Subp : Entity_Id) return Boolean;
963 -- Determine whether the parameter types and the return type of Subp
964 -- are fully defined at the point of instantiation.
965
966 function Matching_Actual
967 (F : Entity_Id;
968 A_F : Entity_Id) return Node_Id;
969 -- Find actual that corresponds to a given a formal parameter. If the
970 -- actuals are positional, return the next one, if any. If the actuals
971 -- are named, scan the parameter associations to find the right one.
972 -- A_F is the corresponding entity in the analyzed generic,which is
973 -- placed on the selector name for ASIS use.
974 --
975 -- In Ada 2005, a named association may be given with a box, in which
976 -- case Matching_Actual sets Found_Assoc to the generic association,
977 -- but return Empty for the actual itself. In this case the code below
978 -- creates a corresponding declaration for the formal.
979
980 function Partial_Parametrization return Boolean;
981 -- Ada 2005: if no match is found for a given formal, check if the
982 -- association for it includes a box, or whether the associations
983 -- include an Others clause.
984
985 procedure Process_Default (F : Entity_Id);
986 -- Add a copy of the declaration of generic formal F to the list of
987 -- associations, and add an explicit box association for F if there
988 -- is none yet, and the default comes from an Others_Choice.
989
990 function Renames_Standard_Subprogram (Subp : Entity_Id) return Boolean;
991 -- Determine whether Subp renames one of the subprograms defined in the
992 -- generated package Standard.
993
994 procedure Set_Analyzed_Formal;
995 -- Find the node in the generic copy that corresponds to a given formal.
996 -- The semantic information on this node is used to perform legality
997 -- checks on the actuals. Because semantic analysis can introduce some
998 -- anonymous entities or modify the declaration node itself, the
999 -- correspondence between the two lists is not one-one. In addition to
1000 -- anonymous types, the presence a formal equality will introduce an
1001 -- implicit declaration for the corresponding inequality.
1002
1003 ----------------------------------------
1004 -- Check_Overloaded_Formal_Subprogram --
1005 ----------------------------------------
1006
1007 procedure Check_Overloaded_Formal_Subprogram (Formal : Entity_Id) is
1008 Temp_Formal : Entity_Id;
1009
1010 begin
1011 Temp_Formal := First (Formals);
1012 while Present (Temp_Formal) loop
1013 if Nkind (Temp_Formal) in N_Formal_Subprogram_Declaration
1014 and then Temp_Formal /= Formal
1015 and then
1016 Chars (Defining_Unit_Name (Specification (Formal))) =
1017 Chars (Defining_Unit_Name (Specification (Temp_Formal)))
1018 then
1019 if Present (Found_Assoc) then
1020 Error_Msg_N
1021 ("named association not allowed for overloaded formal",
1022 Found_Assoc);
1023
1024 else
1025 Error_Msg_N
1026 ("named association not allowed for overloaded formal",
1027 Others_Choice);
1028 end if;
1029
1030 Abandon_Instantiation (Instantiation_Node);
1031 end if;
1032
1033 Next (Temp_Formal);
1034 end loop;
1035 end Check_Overloaded_Formal_Subprogram;
1036
1037 -------------------------------
1038 -- Has_Fully_Defined_Profile --
1039 -------------------------------
1040
1041 function Has_Fully_Defined_Profile (Subp : Entity_Id) return Boolean is
1042 function Is_Fully_Defined_Type (Typ : Entity_Id) return Boolean;
1043 -- Determine whethet type Typ is fully defined
1044
1045 ---------------------------
1046 -- Is_Fully_Defined_Type --
1047 ---------------------------
1048
1049 function Is_Fully_Defined_Type (Typ : Entity_Id) return Boolean is
1050 begin
1051 -- A private type without a full view is not fully defined
1052
1053 if Is_Private_Type (Typ)
1054 and then No (Full_View (Typ))
1055 then
1056 return False;
1057
1058 -- An incomplete type is never fully defined
1059
1060 elsif Is_Incomplete_Type (Typ) then
1061 return False;
1062
1063 -- All other types are fully defined
1064
1065 else
1066 return True;
1067 end if;
1068 end Is_Fully_Defined_Type;
1069
1070 -- Local declarations
1071
1072 Param : Entity_Id;
1073
1074 -- Start of processing for Has_Fully_Defined_Profile
1075
1076 begin
1077 -- Check the parameters
1078
1079 Param := First_Formal (Subp);
1080 while Present (Param) loop
1081 if not Is_Fully_Defined_Type (Etype (Param)) then
1082 return False;
1083 end if;
1084
1085 Next_Formal (Param);
1086 end loop;
1087
1088 -- Check the return type
1089
1090 return Is_Fully_Defined_Type (Etype (Subp));
1091 end Has_Fully_Defined_Profile;
1092
1093 ---------------------
1094 -- Matching_Actual --
1095 ---------------------
1096
1097 function Matching_Actual
1098 (F : Entity_Id;
1099 A_F : Entity_Id) return Node_Id
1100 is
1101 Prev : Node_Id;
1102 Act : Node_Id;
1103
1104 begin
1105 Is_Named_Assoc := False;
1106
1107 -- End of list of purely positional parameters
1108
1109 if No (Actual) or else Nkind (Actual) = N_Others_Choice then
1110 Found_Assoc := Empty;
1111 Act := Empty;
1112
1113 -- Case of positional parameter corresponding to current formal
1114
1115 elsif No (Selector_Name (Actual)) then
1116 Found_Assoc := Actual;
1117 Act := Explicit_Generic_Actual_Parameter (Actual);
1118 Num_Matched := Num_Matched + 1;
1119 Next (Actual);
1120
1121 -- Otherwise scan list of named actuals to find the one with the
1122 -- desired name. All remaining actuals have explicit names.
1123
1124 else
1125 Is_Named_Assoc := True;
1126 Found_Assoc := Empty;
1127 Act := Empty;
1128 Prev := Empty;
1129
1130 while Present (Actual) loop
1131 if Chars (Selector_Name (Actual)) = Chars (F) then
1132 Set_Entity (Selector_Name (Actual), A_F);
1133 Set_Etype (Selector_Name (Actual), Etype (A_F));
1134 Generate_Reference (A_F, Selector_Name (Actual));
1135 Found_Assoc := Actual;
1136 Act := Explicit_Generic_Actual_Parameter (Actual);
1137 Num_Matched := Num_Matched + 1;
1138 exit;
1139 end if;
1140
1141 Prev := Actual;
1142 Next (Actual);
1143 end loop;
1144
1145 -- Reset for subsequent searches. In most cases the named
1146 -- associations are in order. If they are not, we reorder them
1147 -- to avoid scanning twice the same actual. This is not just a
1148 -- question of efficiency: there may be multiple defaults with
1149 -- boxes that have the same name. In a nested instantiation we
1150 -- insert actuals for those defaults, and cannot rely on their
1151 -- names to disambiguate them.
1152
1153 if Actual = First_Named then
1154 Next (First_Named);
1155
1156 elsif Present (Actual) then
1157 Insert_Before (First_Named, Remove_Next (Prev));
1158 end if;
1159
1160 Actual := First_Named;
1161 end if;
1162
1163 if Is_Entity_Name (Act) and then Present (Entity (Act)) then
1164 Set_Used_As_Generic_Actual (Entity (Act));
1165 end if;
1166
1167 return Act;
1168 end Matching_Actual;
1169
1170 -----------------------------
1171 -- Partial_Parametrization --
1172 -----------------------------
1173
1174 function Partial_Parametrization return Boolean is
1175 begin
1176 return Others_Present
1177 or else (Present (Found_Assoc) and then Box_Present (Found_Assoc));
1178 end Partial_Parametrization;
1179
1180 ---------------------
1181 -- Process_Default --
1182 ---------------------
1183
1184 procedure Process_Default (F : Entity_Id) is
1185 Loc : constant Source_Ptr := Sloc (I_Node);
1186 F_Id : constant Entity_Id := Defining_Entity (F);
1187 Decl : Node_Id;
1188 Default : Node_Id;
1189 Id : Entity_Id;
1190
1191 begin
1192 -- Append copy of formal declaration to associations, and create new
1193 -- defining identifier for it.
1194
1195 Decl := New_Copy_Tree (F);
1196 Id := Make_Defining_Identifier (Sloc (F_Id), Chars (F_Id));
1197
1198 if Nkind (F) in N_Formal_Subprogram_Declaration then
1199 Set_Defining_Unit_Name (Specification (Decl), Id);
1200
1201 else
1202 Set_Defining_Identifier (Decl, Id);
1203 end if;
1204
1205 Append (Decl, Assoc);
1206
1207 if No (Found_Assoc) then
1208 Default :=
1209 Make_Generic_Association (Loc,
1210 Selector_Name => New_Occurrence_Of (Id, Loc),
1211 Explicit_Generic_Actual_Parameter => Empty);
1212 Set_Box_Present (Default);
1213 Append (Default, Default_Formals);
1214 end if;
1215 end Process_Default;
1216
1217 ---------------------------------
1218 -- Renames_Standard_Subprogram --
1219 ---------------------------------
1220
1221 function Renames_Standard_Subprogram (Subp : Entity_Id) return Boolean is
1222 Id : Entity_Id;
1223
1224 begin
1225 Id := Alias (Subp);
1226 while Present (Id) loop
1227 if Scope (Id) = Standard_Standard then
1228 return True;
1229 end if;
1230
1231 Id := Alias (Id);
1232 end loop;
1233
1234 return False;
1235 end Renames_Standard_Subprogram;
1236
1237 -------------------------
1238 -- Set_Analyzed_Formal --
1239 -------------------------
1240
1241 procedure Set_Analyzed_Formal is
1242 Kind : Node_Kind;
1243
1244 begin
1245 while Present (Analyzed_Formal) loop
1246 Kind := Nkind (Analyzed_Formal);
1247
1248 case Nkind (Formal) is
1249
1250 when N_Formal_Subprogram_Declaration =>
1251 exit when Kind in N_Formal_Subprogram_Declaration
1252 and then
1253 Chars
1254 (Defining_Unit_Name (Specification (Formal))) =
1255 Chars
1256 (Defining_Unit_Name (Specification (Analyzed_Formal)));
1257
1258 when N_Formal_Package_Declaration =>
1259 exit when Nkind_In (Kind, N_Formal_Package_Declaration,
1260 N_Generic_Package_Declaration,
1261 N_Package_Declaration);
1262
1263 when N_Use_Package_Clause | N_Use_Type_Clause => exit;
1264
1265 when others =>
1266
1267 -- Skip freeze nodes, and nodes inserted to replace
1268 -- unrecognized pragmas.
1269
1270 exit when
1271 Kind not in N_Formal_Subprogram_Declaration
1272 and then not Nkind_In (Kind, N_Subprogram_Declaration,
1273 N_Freeze_Entity,
1274 N_Null_Statement,
1275 N_Itype_Reference)
1276 and then Chars (Defining_Identifier (Formal)) =
1277 Chars (Defining_Identifier (Analyzed_Formal));
1278 end case;
1279
1280 Next (Analyzed_Formal);
1281 end loop;
1282 end Set_Analyzed_Formal;
1283
1284 -- Start of processing for Analyze_Associations
1285
1286 begin
1287 Actuals := Generic_Associations (I_Node);
1288
1289 if Present (Actuals) then
1290
1291 -- Check for an Others choice, indicating a partial parametrization
1292 -- for a formal package.
1293
1294 Actual := First (Actuals);
1295 while Present (Actual) loop
1296 if Nkind (Actual) = N_Others_Choice then
1297 Others_Present := True;
1298 Others_Choice := Actual;
1299
1300 if Present (Next (Actual)) then
1301 Error_Msg_N ("others must be last association", Actual);
1302 end if;
1303
1304 -- This subprogram is used both for formal packages and for
1305 -- instantiations. For the latter, associations must all be
1306 -- explicit.
1307
1308 if Nkind (I_Node) /= N_Formal_Package_Declaration
1309 and then Comes_From_Source (I_Node)
1310 then
1311 Error_Msg_N
1312 ("others association not allowed in an instance",
1313 Actual);
1314 end if;
1315
1316 -- In any case, nothing to do after the others association
1317
1318 exit;
1319
1320 elsif Box_Present (Actual)
1321 and then Comes_From_Source (I_Node)
1322 and then Nkind (I_Node) /= N_Formal_Package_Declaration
1323 then
1324 Error_Msg_N
1325 ("box association not allowed in an instance", Actual);
1326 end if;
1327
1328 Next (Actual);
1329 end loop;
1330
1331 -- If named associations are present, save first named association
1332 -- (it may of course be Empty) to facilitate subsequent name search.
1333
1334 First_Named := First (Actuals);
1335 while Present (First_Named)
1336 and then Nkind (First_Named) /= N_Others_Choice
1337 and then No (Selector_Name (First_Named))
1338 loop
1339 Num_Actuals := Num_Actuals + 1;
1340 Next (First_Named);
1341 end loop;
1342 end if;
1343
1344 Named := First_Named;
1345 while Present (Named) loop
1346 if Nkind (Named) /= N_Others_Choice
1347 and then No (Selector_Name (Named))
1348 then
1349 Error_Msg_N ("invalid positional actual after named one", Named);
1350 Abandon_Instantiation (Named);
1351 end if;
1352
1353 -- A named association may lack an actual parameter, if it was
1354 -- introduced for a default subprogram that turns out to be local
1355 -- to the outer instantiation.
1356
1357 if Nkind (Named) /= N_Others_Choice
1358 and then Present (Explicit_Generic_Actual_Parameter (Named))
1359 then
1360 Num_Actuals := Num_Actuals + 1;
1361 end if;
1362
1363 Next (Named);
1364 end loop;
1365
1366 if Present (Formals) then
1367 Formal := First_Non_Pragma (Formals);
1368 Analyzed_Formal := First_Non_Pragma (F_Copy);
1369
1370 if Present (Actuals) then
1371 Actual := First (Actuals);
1372
1373 -- All formals should have default values
1374
1375 else
1376 Actual := Empty;
1377 end if;
1378
1379 while Present (Formal) loop
1380 Set_Analyzed_Formal;
1381 Saved_Formal := Next_Non_Pragma (Formal);
1382
1383 case Nkind (Formal) is
1384 when N_Formal_Object_Declaration =>
1385 Match :=
1386 Matching_Actual (
1387 Defining_Identifier (Formal),
1388 Defining_Identifier (Analyzed_Formal));
1389
1390 if No (Match) and then Partial_Parametrization then
1391 Process_Default (Formal);
1392 else
1393 Append_List
1394 (Instantiate_Object (Formal, Match, Analyzed_Formal),
1395 Assoc);
1396 end if;
1397
1398 when N_Formal_Type_Declaration =>
1399 Match :=
1400 Matching_Actual (
1401 Defining_Identifier (Formal),
1402 Defining_Identifier (Analyzed_Formal));
1403
1404 if No (Match) then
1405 if Partial_Parametrization then
1406 Process_Default (Formal);
1407
1408 else
1409 Error_Msg_Sloc := Sloc (Gen_Unit);
1410 Error_Msg_NE
1411 ("missing actual&",
1412 Instantiation_Node,
1413 Defining_Identifier (Formal));
1414 Error_Msg_NE ("\in instantiation of & declared#",
1415 Instantiation_Node, Gen_Unit);
1416 Abandon_Instantiation (Instantiation_Node);
1417 end if;
1418
1419 else
1420 Analyze (Match);
1421 Append_List
1422 (Instantiate_Type
1423 (Formal, Match, Analyzed_Formal, Assoc),
1424 Assoc);
1425
1426 -- An instantiation is a freeze point for the actuals,
1427 -- unless this is a rewritten formal package, or the
1428 -- formal is an Ada 2012 formal incomplete type.
1429
1430 if Nkind (I_Node) = N_Formal_Package_Declaration
1431 or else
1432 (Ada_Version >= Ada_2012
1433 and then
1434 Ekind (Defining_Identifier (Analyzed_Formal)) =
1435 E_Incomplete_Type)
1436 then
1437 null;
1438
1439 else
1440 Append_Elmt (Entity (Match), Actuals_To_Freeze);
1441 end if;
1442 end if;
1443
1444 -- A remote access-to-class-wide type is not a legal actual
1445 -- for a generic formal of an access type (E.2.2(17/2)).
1446 -- In GNAT an exception to this rule is introduced when
1447 -- the formal is marked as remote using implementation
1448 -- defined aspect/pragma Remote_Access_Type. In that case
1449 -- the actual must be remote as well.
1450
1451 if Nkind (Analyzed_Formal) = N_Formal_Type_Declaration
1452 and then
1453 Nkind (Formal_Type_Definition (Analyzed_Formal)) =
1454 N_Access_To_Object_Definition
1455 then
1456 declare
1457 Formal_Ent : constant Entity_Id :=
1458 Defining_Identifier (Analyzed_Formal);
1459 begin
1460 if Is_Remote_Access_To_Class_Wide_Type (Entity (Match))
1461 = Is_Remote_Types (Formal_Ent)
1462 then
1463 -- Remoteness of formal and actual match
1464
1465 null;
1466
1467 elsif Is_Remote_Types (Formal_Ent) then
1468
1469 -- Remote formal, non-remote actual
1470
1471 Error_Msg_NE
1472 ("actual for& must be remote", Match, Formal_Ent);
1473
1474 else
1475 -- Non-remote formal, remote actual
1476
1477 Error_Msg_NE
1478 ("actual for& may not be remote",
1479 Match, Formal_Ent);
1480 end if;
1481 end;
1482 end if;
1483
1484 when N_Formal_Subprogram_Declaration =>
1485 Match :=
1486 Matching_Actual
1487 (Defining_Unit_Name (Specification (Formal)),
1488 Defining_Unit_Name (Specification (Analyzed_Formal)));
1489
1490 -- If the formal subprogram has the same name as another
1491 -- formal subprogram of the generic, then a named
1492 -- association is illegal (12.3(9)). Exclude named
1493 -- associations that are generated for a nested instance.
1494
1495 if Present (Match)
1496 and then Is_Named_Assoc
1497 and then Comes_From_Source (Found_Assoc)
1498 then
1499 Check_Overloaded_Formal_Subprogram (Formal);
1500 end if;
1501
1502 -- If there is no corresponding actual, this may be case of
1503 -- partial parametrization, or else the formal has a default
1504 -- or a box.
1505
1506 if No (Match) and then Partial_Parametrization then
1507 Process_Default (Formal);
1508
1509 if Nkind (I_Node) = N_Formal_Package_Declaration then
1510 Check_Overloaded_Formal_Subprogram (Formal);
1511 end if;
1512
1513 else
1514 Append_To (Assoc,
1515 Instantiate_Formal_Subprogram
1516 (Formal, Match, Analyzed_Formal));
1517
1518 -- An instantiation is a freeze point for the actuals,
1519 -- unless this is a rewritten formal package.
1520
1521 if Nkind (I_Node) /= N_Formal_Package_Declaration
1522 and then Nkind (Match) = N_Identifier
1523 and then Is_Subprogram (Entity (Match))
1524
1525 -- The actual subprogram may rename a routine defined
1526 -- in Standard. Avoid freezing such renamings because
1527 -- subprograms coming from Standard cannot be frozen.
1528
1529 and then
1530 not Renames_Standard_Subprogram (Entity (Match))
1531
1532 -- If the actual subprogram comes from a different
1533 -- unit, it is already frozen, either by a body in
1534 -- that unit or by the end of the declarative part
1535 -- of the unit. This check avoids the freezing of
1536 -- subprograms defined in Standard which are used
1537 -- as generic actuals.
1538
1539 and then In_Same_Code_Unit (Entity (Match), I_Node)
1540 and then Has_Fully_Defined_Profile (Entity (Match))
1541 then
1542 -- Mark the subprogram as having a delayed freeze
1543 -- since this may be an out-of-order action.
1544
1545 Set_Has_Delayed_Freeze (Entity (Match));
1546 Append_Elmt (Entity (Match), Actuals_To_Freeze);
1547 end if;
1548 end if;
1549
1550 -- If this is a nested generic, preserve default for later
1551 -- instantiations.
1552
1553 if No (Match)
1554 and then Box_Present (Formal)
1555 then
1556 Append_Elmt
1557 (Defining_Unit_Name (Specification (Last (Assoc))),
1558 Default_Actuals);
1559 end if;
1560
1561 when N_Formal_Package_Declaration =>
1562 Match :=
1563 Matching_Actual (
1564 Defining_Identifier (Formal),
1565 Defining_Identifier (Original_Node (Analyzed_Formal)));
1566
1567 if No (Match) then
1568 if Partial_Parametrization then
1569 Process_Default (Formal);
1570
1571 else
1572 Error_Msg_Sloc := Sloc (Gen_Unit);
1573 Error_Msg_NE
1574 ("missing actual&",
1575 Instantiation_Node, Defining_Identifier (Formal));
1576 Error_Msg_NE ("\in instantiation of & declared#",
1577 Instantiation_Node, Gen_Unit);
1578
1579 Abandon_Instantiation (Instantiation_Node);
1580 end if;
1581
1582 else
1583 Analyze (Match);
1584 Append_List
1585 (Instantiate_Formal_Package
1586 (Formal, Match, Analyzed_Formal),
1587 Assoc);
1588 end if;
1589
1590 -- For use type and use package appearing in the generic part,
1591 -- we have already copied them, so we can just move them where
1592 -- they belong (we mustn't recopy them since this would mess up
1593 -- the Sloc values).
1594
1595 when N_Use_Package_Clause |
1596 N_Use_Type_Clause =>
1597 if Nkind (Original_Node (I_Node)) =
1598 N_Formal_Package_Declaration
1599 then
1600 Append (New_Copy_Tree (Formal), Assoc);
1601 else
1602 Remove (Formal);
1603 Append (Formal, Assoc);
1604 end if;
1605
1606 when others =>
1607 raise Program_Error;
1608
1609 end case;
1610
1611 Formal := Saved_Formal;
1612 Next_Non_Pragma (Analyzed_Formal);
1613 end loop;
1614
1615 if Num_Actuals > Num_Matched then
1616 Error_Msg_Sloc := Sloc (Gen_Unit);
1617
1618 if Present (Selector_Name (Actual)) then
1619 Error_Msg_NE
1620 ("unmatched actual&",
1621 Actual, Selector_Name (Actual));
1622 Error_Msg_NE ("\in instantiation of& declared#",
1623 Actual, Gen_Unit);
1624 else
1625 Error_Msg_NE
1626 ("unmatched actual in instantiation of& declared#",
1627 Actual, Gen_Unit);
1628 end if;
1629 end if;
1630
1631 elsif Present (Actuals) then
1632 Error_Msg_N
1633 ("too many actuals in generic instantiation", Instantiation_Node);
1634 end if;
1635
1636 -- An instantiation freezes all generic actuals. The only exceptions
1637 -- to this are incomplete types and subprograms which are not fully
1638 -- defined at the point of instantiation.
1639
1640 declare
1641 Elmt : Elmt_Id := First_Elmt (Actuals_To_Freeze);
1642 begin
1643 while Present (Elmt) loop
1644 Freeze_Before (I_Node, Node (Elmt));
1645 Next_Elmt (Elmt);
1646 end loop;
1647 end;
1648
1649 -- If there are default subprograms, normalize the tree by adding
1650 -- explicit associations for them. This is required if the instance
1651 -- appears within a generic.
1652
1653 declare
1654 Elmt : Elmt_Id;
1655 Subp : Entity_Id;
1656 New_D : Node_Id;
1657
1658 begin
1659 Elmt := First_Elmt (Default_Actuals);
1660 while Present (Elmt) loop
1661 if No (Actuals) then
1662 Actuals := New_List;
1663 Set_Generic_Associations (I_Node, Actuals);
1664 end if;
1665
1666 Subp := Node (Elmt);
1667 New_D :=
1668 Make_Generic_Association (Sloc (Subp),
1669 Selector_Name => New_Occurrence_Of (Subp, Sloc (Subp)),
1670 Explicit_Generic_Actual_Parameter =>
1671 New_Occurrence_Of (Subp, Sloc (Subp)));
1672 Mark_Rewrite_Insertion (New_D);
1673 Append_To (Actuals, New_D);
1674 Next_Elmt (Elmt);
1675 end loop;
1676 end;
1677
1678 -- If this is a formal package, normalize the parameter list by adding
1679 -- explicit box associations for the formals that are covered by an
1680 -- Others_Choice.
1681
1682 if not Is_Empty_List (Default_Formals) then
1683 Append_List (Default_Formals, Formals);
1684 end if;
1685
1686 return Assoc;
1687 end Analyze_Associations;
1688
1689 -------------------------------
1690 -- Analyze_Formal_Array_Type --
1691 -------------------------------
1692
1693 procedure Analyze_Formal_Array_Type
1694 (T : in out Entity_Id;
1695 Def : Node_Id)
1696 is
1697 DSS : Node_Id;
1698
1699 begin
1700 -- Treated like a non-generic array declaration, with additional
1701 -- semantic checks.
1702
1703 Enter_Name (T);
1704
1705 if Nkind (Def) = N_Constrained_Array_Definition then
1706 DSS := First (Discrete_Subtype_Definitions (Def));
1707 while Present (DSS) loop
1708 if Nkind_In (DSS, N_Subtype_Indication,
1709 N_Range,
1710 N_Attribute_Reference)
1711 then
1712 Error_Msg_N ("only a subtype mark is allowed in a formal", DSS);
1713 end if;
1714
1715 Next (DSS);
1716 end loop;
1717 end if;
1718
1719 Array_Type_Declaration (T, Def);
1720 Set_Is_Generic_Type (Base_Type (T));
1721
1722 if Ekind (Component_Type (T)) = E_Incomplete_Type
1723 and then No (Full_View (Component_Type (T)))
1724 then
1725 Error_Msg_N ("premature usage of incomplete type", Def);
1726
1727 -- Check that range constraint is not allowed on the component type
1728 -- of a generic formal array type (AARM 12.5.3(3))
1729
1730 elsif Is_Internal (Component_Type (T))
1731 and then Present (Subtype_Indication (Component_Definition (Def)))
1732 and then Nkind (Original_Node
1733 (Subtype_Indication (Component_Definition (Def)))) =
1734 N_Subtype_Indication
1735 then
1736 Error_Msg_N
1737 ("in a formal, a subtype indication can only be "
1738 & "a subtype mark (RM 12.5.3(3))",
1739 Subtype_Indication (Component_Definition (Def)));
1740 end if;
1741
1742 end Analyze_Formal_Array_Type;
1743
1744 ---------------------------------------------
1745 -- Analyze_Formal_Decimal_Fixed_Point_Type --
1746 ---------------------------------------------
1747
1748 -- As for other generic types, we create a valid type representation with
1749 -- legal but arbitrary attributes, whose values are never considered
1750 -- static. For all scalar types we introduce an anonymous base type, with
1751 -- the same attributes. We choose the corresponding integer type to be
1752 -- Standard_Integer.
1753 -- Here and in other similar routines, the Sloc of the generated internal
1754 -- type must be the same as the sloc of the defining identifier of the
1755 -- formal type declaration, to provide proper source navigation.
1756
1757 procedure Analyze_Formal_Decimal_Fixed_Point_Type
1758 (T : Entity_Id;
1759 Def : Node_Id)
1760 is
1761 Loc : constant Source_Ptr := Sloc (Def);
1762
1763 Base : constant Entity_Id :=
1764 New_Internal_Entity
1765 (E_Decimal_Fixed_Point_Type,
1766 Current_Scope,
1767 Sloc (Defining_Identifier (Parent (Def))), 'G');
1768
1769 Int_Base : constant Entity_Id := Standard_Integer;
1770 Delta_Val : constant Ureal := Ureal_1;
1771 Digs_Val : constant Uint := Uint_6;
1772
1773 begin
1774 Enter_Name (T);
1775
1776 Set_Etype (Base, Base);
1777 Set_Size_Info (Base, Int_Base);
1778 Set_RM_Size (Base, RM_Size (Int_Base));
1779 Set_First_Rep_Item (Base, First_Rep_Item (Int_Base));
1780 Set_Digits_Value (Base, Digs_Val);
1781 Set_Delta_Value (Base, Delta_Val);
1782 Set_Small_Value (Base, Delta_Val);
1783 Set_Scalar_Range (Base,
1784 Make_Range (Loc,
1785 Low_Bound => Make_Real_Literal (Loc, Ureal_1),
1786 High_Bound => Make_Real_Literal (Loc, Ureal_1)));
1787
1788 Set_Is_Generic_Type (Base);
1789 Set_Parent (Base, Parent (Def));
1790
1791 Set_Ekind (T, E_Decimal_Fixed_Point_Subtype);
1792 Set_Etype (T, Base);
1793 Set_Size_Info (T, Int_Base);
1794 Set_RM_Size (T, RM_Size (Int_Base));
1795 Set_First_Rep_Item (T, First_Rep_Item (Int_Base));
1796 Set_Digits_Value (T, Digs_Val);
1797 Set_Delta_Value (T, Delta_Val);
1798 Set_Small_Value (T, Delta_Val);
1799 Set_Scalar_Range (T, Scalar_Range (Base));
1800 Set_Is_Constrained (T);
1801
1802 Check_Restriction (No_Fixed_Point, Def);
1803 end Analyze_Formal_Decimal_Fixed_Point_Type;
1804
1805 -------------------------------------------
1806 -- Analyze_Formal_Derived_Interface_Type --
1807 -------------------------------------------
1808
1809 procedure Analyze_Formal_Derived_Interface_Type
1810 (N : Node_Id;
1811 T : Entity_Id;
1812 Def : Node_Id)
1813 is
1814 Loc : constant Source_Ptr := Sloc (Def);
1815
1816 begin
1817 -- Rewrite as a type declaration of a derived type. This ensures that
1818 -- the interface list and primitive operations are properly captured.
1819
1820 Rewrite (N,
1821 Make_Full_Type_Declaration (Loc,
1822 Defining_Identifier => T,
1823 Type_Definition => Def));
1824 Analyze (N);
1825 Set_Is_Generic_Type (T);
1826 end Analyze_Formal_Derived_Interface_Type;
1827
1828 ---------------------------------
1829 -- Analyze_Formal_Derived_Type --
1830 ---------------------------------
1831
1832 procedure Analyze_Formal_Derived_Type
1833 (N : Node_Id;
1834 T : Entity_Id;
1835 Def : Node_Id)
1836 is
1837 Loc : constant Source_Ptr := Sloc (Def);
1838 Unk_Disc : constant Boolean := Unknown_Discriminants_Present (N);
1839 New_N : Node_Id;
1840
1841 begin
1842 Set_Is_Generic_Type (T);
1843
1844 if Private_Present (Def) then
1845 New_N :=
1846 Make_Private_Extension_Declaration (Loc,
1847 Defining_Identifier => T,
1848 Discriminant_Specifications => Discriminant_Specifications (N),
1849 Unknown_Discriminants_Present => Unk_Disc,
1850 Subtype_Indication => Subtype_Mark (Def),
1851 Interface_List => Interface_List (Def));
1852
1853 Set_Abstract_Present (New_N, Abstract_Present (Def));
1854 Set_Limited_Present (New_N, Limited_Present (Def));
1855 Set_Synchronized_Present (New_N, Synchronized_Present (Def));
1856
1857 else
1858 New_N :=
1859 Make_Full_Type_Declaration (Loc,
1860 Defining_Identifier => T,
1861 Discriminant_Specifications =>
1862 Discriminant_Specifications (Parent (T)),
1863 Type_Definition =>
1864 Make_Derived_Type_Definition (Loc,
1865 Subtype_Indication => Subtype_Mark (Def)));
1866
1867 Set_Abstract_Present
1868 (Type_Definition (New_N), Abstract_Present (Def));
1869 Set_Limited_Present
1870 (Type_Definition (New_N), Limited_Present (Def));
1871 end if;
1872
1873 Rewrite (N, New_N);
1874 Analyze (N);
1875
1876 if Unk_Disc then
1877 if not Is_Composite_Type (T) then
1878 Error_Msg_N
1879 ("unknown discriminants not allowed for elementary types", N);
1880 else
1881 Set_Has_Unknown_Discriminants (T);
1882 Set_Is_Constrained (T, False);
1883 end if;
1884 end if;
1885
1886 -- If the parent type has a known size, so does the formal, which makes
1887 -- legal representation clauses that involve the formal.
1888
1889 Set_Size_Known_At_Compile_Time
1890 (T, Size_Known_At_Compile_Time (Entity (Subtype_Mark (Def))));
1891 end Analyze_Formal_Derived_Type;
1892
1893 ----------------------------------
1894 -- Analyze_Formal_Discrete_Type --
1895 ----------------------------------
1896
1897 -- The operations defined for a discrete types are those of an enumeration
1898 -- type. The size is set to an arbitrary value, for use in analyzing the
1899 -- generic unit.
1900
1901 procedure Analyze_Formal_Discrete_Type (T : Entity_Id; Def : Node_Id) is
1902 Loc : constant Source_Ptr := Sloc (Def);
1903 Lo : Node_Id;
1904 Hi : Node_Id;
1905
1906 Base : constant Entity_Id :=
1907 New_Internal_Entity
1908 (E_Floating_Point_Type, Current_Scope,
1909 Sloc (Defining_Identifier (Parent (Def))), 'G');
1910
1911 begin
1912 Enter_Name (T);
1913 Set_Ekind (T, E_Enumeration_Subtype);
1914 Set_Etype (T, Base);
1915 Init_Size (T, 8);
1916 Init_Alignment (T);
1917 Set_Is_Generic_Type (T);
1918 Set_Is_Constrained (T);
1919
1920 -- For semantic analysis, the bounds of the type must be set to some
1921 -- non-static value. The simplest is to create attribute nodes for those
1922 -- bounds, that refer to the type itself. These bounds are never
1923 -- analyzed but serve as place-holders.
1924
1925 Lo :=
1926 Make_Attribute_Reference (Loc,
1927 Attribute_Name => Name_First,
1928 Prefix => New_Reference_To (T, Loc));
1929 Set_Etype (Lo, T);
1930
1931 Hi :=
1932 Make_Attribute_Reference (Loc,
1933 Attribute_Name => Name_Last,
1934 Prefix => New_Reference_To (T, Loc));
1935 Set_Etype (Hi, T);
1936
1937 Set_Scalar_Range (T,
1938 Make_Range (Loc,
1939 Low_Bound => Lo,
1940 High_Bound => Hi));
1941
1942 Set_Ekind (Base, E_Enumeration_Type);
1943 Set_Etype (Base, Base);
1944 Init_Size (Base, 8);
1945 Init_Alignment (Base);
1946 Set_Is_Generic_Type (Base);
1947 Set_Scalar_Range (Base, Scalar_Range (T));
1948 Set_Parent (Base, Parent (Def));
1949 end Analyze_Formal_Discrete_Type;
1950
1951 ----------------------------------
1952 -- Analyze_Formal_Floating_Type --
1953 ---------------------------------
1954
1955 procedure Analyze_Formal_Floating_Type (T : Entity_Id; Def : Node_Id) is
1956 Base : constant Entity_Id :=
1957 New_Internal_Entity
1958 (E_Floating_Point_Type, Current_Scope,
1959 Sloc (Defining_Identifier (Parent (Def))), 'G');
1960
1961 begin
1962 -- The various semantic attributes are taken from the predefined type
1963 -- Float, just so that all of them are initialized. Their values are
1964 -- never used because no constant folding or expansion takes place in
1965 -- the generic itself.
1966
1967 Enter_Name (T);
1968 Set_Ekind (T, E_Floating_Point_Subtype);
1969 Set_Etype (T, Base);
1970 Set_Size_Info (T, (Standard_Float));
1971 Set_RM_Size (T, RM_Size (Standard_Float));
1972 Set_Digits_Value (T, Digits_Value (Standard_Float));
1973 Set_Scalar_Range (T, Scalar_Range (Standard_Float));
1974 Set_Is_Constrained (T);
1975
1976 Set_Is_Generic_Type (Base);
1977 Set_Etype (Base, Base);
1978 Set_Size_Info (Base, (Standard_Float));
1979 Set_RM_Size (Base, RM_Size (Standard_Float));
1980 Set_Digits_Value (Base, Digits_Value (Standard_Float));
1981 Set_Scalar_Range (Base, Scalar_Range (Standard_Float));
1982 Set_Parent (Base, Parent (Def));
1983
1984 Check_Restriction (No_Floating_Point, Def);
1985 end Analyze_Formal_Floating_Type;
1986
1987 -----------------------------------
1988 -- Analyze_Formal_Interface_Type;--
1989 -----------------------------------
1990
1991 procedure Analyze_Formal_Interface_Type
1992 (N : Node_Id;
1993 T : Entity_Id;
1994 Def : Node_Id)
1995 is
1996 Loc : constant Source_Ptr := Sloc (N);
1997 New_N : Node_Id;
1998
1999 begin
2000 New_N :=
2001 Make_Full_Type_Declaration (Loc,
2002 Defining_Identifier => T,
2003 Type_Definition => Def);
2004
2005 Rewrite (N, New_N);
2006 Analyze (N);
2007 Set_Is_Generic_Type (T);
2008 end Analyze_Formal_Interface_Type;
2009
2010 ---------------------------------
2011 -- Analyze_Formal_Modular_Type --
2012 ---------------------------------
2013
2014 procedure Analyze_Formal_Modular_Type (T : Entity_Id; Def : Node_Id) is
2015 begin
2016 -- Apart from their entity kind, generic modular types are treated like
2017 -- signed integer types, and have the same attributes.
2018
2019 Analyze_Formal_Signed_Integer_Type (T, Def);
2020 Set_Ekind (T, E_Modular_Integer_Subtype);
2021 Set_Ekind (Etype (T), E_Modular_Integer_Type);
2022
2023 end Analyze_Formal_Modular_Type;
2024
2025 ---------------------------------------
2026 -- Analyze_Formal_Object_Declaration --
2027 ---------------------------------------
2028
2029 procedure Analyze_Formal_Object_Declaration (N : Node_Id) is
2030 E : constant Node_Id := Default_Expression (N);
2031 Id : constant Node_Id := Defining_Identifier (N);
2032 K : Entity_Kind;
2033 T : Node_Id;
2034
2035 begin
2036 Enter_Name (Id);
2037
2038 -- Determine the mode of the formal object
2039
2040 if Out_Present (N) then
2041 K := E_Generic_In_Out_Parameter;
2042
2043 if not In_Present (N) then
2044 Error_Msg_N ("formal generic objects cannot have mode OUT", N);
2045 end if;
2046
2047 else
2048 K := E_Generic_In_Parameter;
2049 end if;
2050
2051 if Present (Subtype_Mark (N)) then
2052 Find_Type (Subtype_Mark (N));
2053 T := Entity (Subtype_Mark (N));
2054
2055 -- Verify that there is no redundant null exclusion
2056
2057 if Null_Exclusion_Present (N) then
2058 if not Is_Access_Type (T) then
2059 Error_Msg_N
2060 ("null exclusion can only apply to an access type", N);
2061
2062 elsif Can_Never_Be_Null (T) then
2063 Error_Msg_NE
2064 ("`NOT NULL` not allowed (& already excludes null)",
2065 N, T);
2066 end if;
2067 end if;
2068
2069 -- Ada 2005 (AI-423): Formal object with an access definition
2070
2071 else
2072 Check_Access_Definition (N);
2073 T := Access_Definition
2074 (Related_Nod => N,
2075 N => Access_Definition (N));
2076 end if;
2077
2078 if Ekind (T) = E_Incomplete_Type then
2079 declare
2080 Error_Node : Node_Id;
2081
2082 begin
2083 if Present (Subtype_Mark (N)) then
2084 Error_Node := Subtype_Mark (N);
2085 else
2086 Check_Access_Definition (N);
2087 Error_Node := Access_Definition (N);
2088 end if;
2089
2090 Error_Msg_N ("premature usage of incomplete type", Error_Node);
2091 end;
2092 end if;
2093
2094 if K = E_Generic_In_Parameter then
2095
2096 -- Ada 2005 (AI-287): Limited aggregates allowed in generic formals
2097
2098 if Ada_Version < Ada_2005 and then Is_Limited_Type (T) then
2099 Error_Msg_N
2100 ("generic formal of mode IN must not be of limited type", N);
2101 Explain_Limited_Type (T, N);
2102 end if;
2103
2104 if Is_Abstract_Type (T) then
2105 Error_Msg_N
2106 ("generic formal of mode IN must not be of abstract type", N);
2107 end if;
2108
2109 if Present (E) then
2110 Preanalyze_Spec_Expression (E, T);
2111
2112 if Is_Limited_Type (T) and then not OK_For_Limited_Init (T, E) then
2113 Error_Msg_N
2114 ("initialization not allowed for limited types", E);
2115 Explain_Limited_Type (T, E);
2116 end if;
2117 end if;
2118
2119 Set_Ekind (Id, K);
2120 Set_Etype (Id, T);
2121
2122 -- Case of generic IN OUT parameter
2123
2124 else
2125 -- If the formal has an unconstrained type, construct its actual
2126 -- subtype, as is done for subprogram formals. In this fashion, all
2127 -- its uses can refer to specific bounds.
2128
2129 Set_Ekind (Id, K);
2130 Set_Etype (Id, T);
2131
2132 if (Is_Array_Type (T)
2133 and then not Is_Constrained (T))
2134 or else
2135 (Ekind (T) = E_Record_Type
2136 and then Has_Discriminants (T))
2137 then
2138 declare
2139 Non_Freezing_Ref : constant Node_Id :=
2140 New_Reference_To (Id, Sloc (Id));
2141 Decl : Node_Id;
2142
2143 begin
2144 -- Make sure the actual subtype doesn't generate bogus freezing
2145
2146 Set_Must_Not_Freeze (Non_Freezing_Ref);
2147 Decl := Build_Actual_Subtype (T, Non_Freezing_Ref);
2148 Insert_Before_And_Analyze (N, Decl);
2149 Set_Actual_Subtype (Id, Defining_Identifier (Decl));
2150 end;
2151 else
2152 Set_Actual_Subtype (Id, T);
2153 end if;
2154
2155 if Present (E) then
2156 Error_Msg_N
2157 ("initialization not allowed for `IN OUT` formals", N);
2158 end if;
2159 end if;
2160
2161 if Has_Aspects (N) then
2162 Analyze_Aspect_Specifications (N, Id);
2163 end if;
2164 end Analyze_Formal_Object_Declaration;
2165
2166 ----------------------------------------------
2167 -- Analyze_Formal_Ordinary_Fixed_Point_Type --
2168 ----------------------------------------------
2169
2170 procedure Analyze_Formal_Ordinary_Fixed_Point_Type
2171 (T : Entity_Id;
2172 Def : Node_Id)
2173 is
2174 Loc : constant Source_Ptr := Sloc (Def);
2175 Base : constant Entity_Id :=
2176 New_Internal_Entity
2177 (E_Ordinary_Fixed_Point_Type, Current_Scope,
2178 Sloc (Defining_Identifier (Parent (Def))), 'G');
2179
2180 begin
2181 -- The semantic attributes are set for completeness only, their values
2182 -- will never be used, since all properties of the type are non-static.
2183
2184 Enter_Name (T);
2185 Set_Ekind (T, E_Ordinary_Fixed_Point_Subtype);
2186 Set_Etype (T, Base);
2187 Set_Size_Info (T, Standard_Integer);
2188 Set_RM_Size (T, RM_Size (Standard_Integer));
2189 Set_Small_Value (T, Ureal_1);
2190 Set_Delta_Value (T, Ureal_1);
2191 Set_Scalar_Range (T,
2192 Make_Range (Loc,
2193 Low_Bound => Make_Real_Literal (Loc, Ureal_1),
2194 High_Bound => Make_Real_Literal (Loc, Ureal_1)));
2195 Set_Is_Constrained (T);
2196
2197 Set_Is_Generic_Type (Base);
2198 Set_Etype (Base, Base);
2199 Set_Size_Info (Base, Standard_Integer);
2200 Set_RM_Size (Base, RM_Size (Standard_Integer));
2201 Set_Small_Value (Base, Ureal_1);
2202 Set_Delta_Value (Base, Ureal_1);
2203 Set_Scalar_Range (Base, Scalar_Range (T));
2204 Set_Parent (Base, Parent (Def));
2205
2206 Check_Restriction (No_Fixed_Point, Def);
2207 end Analyze_Formal_Ordinary_Fixed_Point_Type;
2208
2209 ----------------------------------------
2210 -- Analyze_Formal_Package_Declaration --
2211 ----------------------------------------
2212
2213 procedure Analyze_Formal_Package_Declaration (N : Node_Id) is
2214 Loc : constant Source_Ptr := Sloc (N);
2215 Pack_Id : constant Entity_Id := Defining_Identifier (N);
2216 Formal : Entity_Id;
2217 Gen_Id : constant Node_Id := Name (N);
2218 Gen_Decl : Node_Id;
2219 Gen_Unit : Entity_Id;
2220 New_N : Node_Id;
2221 Parent_Installed : Boolean := False;
2222 Renaming : Node_Id;
2223 Parent_Instance : Entity_Id;
2224 Renaming_In_Par : Entity_Id;
2225 Associations : Boolean := True;
2226
2227 Vis_Prims_List : Elist_Id := No_Elist;
2228 -- List of primitives made temporarily visible in the instantiation
2229 -- to match the visibility of the formal type
2230
2231 function Build_Local_Package return Node_Id;
2232 -- The formal package is rewritten so that its parameters are replaced
2233 -- with corresponding declarations. For parameters with bona fide
2234 -- associations these declarations are created by Analyze_Associations
2235 -- as for a regular instantiation. For boxed parameters, we preserve
2236 -- the formal declarations and analyze them, in order to introduce
2237 -- entities of the right kind in the environment of the formal.
2238
2239 -------------------------
2240 -- Build_Local_Package --
2241 -------------------------
2242
2243 function Build_Local_Package return Node_Id is
2244 Decls : List_Id;
2245 Pack_Decl : Node_Id;
2246
2247 begin
2248 -- Within the formal, the name of the generic package is a renaming
2249 -- of the formal (as for a regular instantiation).
2250
2251 Pack_Decl :=
2252 Make_Package_Declaration (Loc,
2253 Specification =>
2254 Copy_Generic_Node
2255 (Specification (Original_Node (Gen_Decl)),
2256 Empty, Instantiating => True));
2257
2258 Renaming := Make_Package_Renaming_Declaration (Loc,
2259 Defining_Unit_Name =>
2260 Make_Defining_Identifier (Loc, Chars (Gen_Unit)),
2261 Name => New_Occurrence_Of (Formal, Loc));
2262
2263 if Nkind (Gen_Id) = N_Identifier
2264 and then Chars (Gen_Id) = Chars (Pack_Id)
2265 then
2266 Error_Msg_NE
2267 ("& is hidden within declaration of instance", Gen_Id, Gen_Unit);
2268 end if;
2269
2270 -- If the formal is declared with a box, or with an others choice,
2271 -- create corresponding declarations for all entities in the formal
2272 -- part, so that names with the proper types are available in the
2273 -- specification of the formal package.
2274
2275 -- On the other hand, if there are no associations, then all the
2276 -- formals must have defaults, and this will be checked by the
2277 -- call to Analyze_Associations.
2278
2279 if Box_Present (N)
2280 or else Nkind (First (Generic_Associations (N))) = N_Others_Choice
2281 then
2282 declare
2283 Formal_Decl : Node_Id;
2284
2285 begin
2286 -- TBA : for a formal package, need to recurse ???
2287
2288 Decls := New_List;
2289 Formal_Decl :=
2290 First
2291 (Generic_Formal_Declarations (Original_Node (Gen_Decl)));
2292 while Present (Formal_Decl) loop
2293 Append_To
2294 (Decls, Copy_Generic_Node (Formal_Decl, Empty, True));
2295 Next (Formal_Decl);
2296 end loop;
2297 end;
2298
2299 -- If generic associations are present, use Analyze_Associations to
2300 -- create the proper renaming declarations.
2301
2302 else
2303 declare
2304 Act_Tree : constant Node_Id :=
2305 Copy_Generic_Node
2306 (Original_Node (Gen_Decl), Empty,
2307 Instantiating => True);
2308
2309 begin
2310 Generic_Renamings.Set_Last (0);
2311 Generic_Renamings_HTable.Reset;
2312 Instantiation_Node := N;
2313
2314 Decls :=
2315 Analyze_Associations
2316 (I_Node => Original_Node (N),
2317 Formals => Generic_Formal_Declarations (Act_Tree),
2318 F_Copy => Generic_Formal_Declarations (Gen_Decl));
2319
2320 Vis_Prims_List := Check_Hidden_Primitives (Decls);
2321 end;
2322 end if;
2323
2324 Append (Renaming, To => Decls);
2325
2326 -- Add generated declarations ahead of local declarations in
2327 -- the package.
2328
2329 if No (Visible_Declarations (Specification (Pack_Decl))) then
2330 Set_Visible_Declarations (Specification (Pack_Decl), Decls);
2331 else
2332 Insert_List_Before
2333 (First (Visible_Declarations (Specification (Pack_Decl))),
2334 Decls);
2335 end if;
2336
2337 return Pack_Decl;
2338 end Build_Local_Package;
2339
2340 -- Start of processing for Analyze_Formal_Package_Declaration
2341
2342 begin
2343 Text_IO_Kludge (Gen_Id);
2344
2345 Init_Env;
2346 Check_Generic_Child_Unit (Gen_Id, Parent_Installed);
2347 Gen_Unit := Entity (Gen_Id);
2348
2349 -- Check for a formal package that is a package renaming
2350
2351 if Present (Renamed_Object (Gen_Unit)) then
2352
2353 -- Indicate that unit is used, before replacing it with renamed
2354 -- entity for use below.
2355
2356 if In_Extended_Main_Source_Unit (N) then
2357 Set_Is_Instantiated (Gen_Unit);
2358 Generate_Reference (Gen_Unit, N);
2359 end if;
2360
2361 Gen_Unit := Renamed_Object (Gen_Unit);
2362 end if;
2363
2364 if Ekind (Gen_Unit) /= E_Generic_Package then
2365 Error_Msg_N ("expect generic package name", Gen_Id);
2366 Restore_Env;
2367 goto Leave;
2368
2369 elsif Gen_Unit = Current_Scope then
2370 Error_Msg_N
2371 ("generic package cannot be used as a formal package of itself",
2372 Gen_Id);
2373 Restore_Env;
2374 goto Leave;
2375
2376 elsif In_Open_Scopes (Gen_Unit) then
2377 if Is_Compilation_Unit (Gen_Unit)
2378 and then Is_Child_Unit (Current_Scope)
2379 then
2380 -- Special-case the error when the formal is a parent, and
2381 -- continue analysis to minimize cascaded errors.
2382
2383 Error_Msg_N
2384 ("generic parent cannot be used as formal package "
2385 & "of a child unit",
2386 Gen_Id);
2387
2388 else
2389 Error_Msg_N
2390 ("generic package cannot be used as a formal package "
2391 & "within itself",
2392 Gen_Id);
2393 Restore_Env;
2394 goto Leave;
2395 end if;
2396 end if;
2397
2398 -- Check that name of formal package does not hide name of generic,
2399 -- or its leading prefix. This check must be done separately because
2400 -- the name of the generic has already been analyzed.
2401
2402 declare
2403 Gen_Name : Entity_Id;
2404
2405 begin
2406 Gen_Name := Gen_Id;
2407 while Nkind (Gen_Name) = N_Expanded_Name loop
2408 Gen_Name := Prefix (Gen_Name);
2409 end loop;
2410
2411 if Chars (Gen_Name) = Chars (Pack_Id) then
2412 Error_Msg_NE
2413 ("& is hidden within declaration of formal package",
2414 Gen_Id, Gen_Name);
2415 end if;
2416 end;
2417
2418 if Box_Present (N)
2419 or else No (Generic_Associations (N))
2420 or else Nkind (First (Generic_Associations (N))) = N_Others_Choice
2421 then
2422 Associations := False;
2423 end if;
2424
2425 -- If there are no generic associations, the generic parameters appear
2426 -- as local entities and are instantiated like them. We copy the generic
2427 -- package declaration as if it were an instantiation, and analyze it
2428 -- like a regular package, except that we treat the formals as
2429 -- additional visible components.
2430
2431 Gen_Decl := Unit_Declaration_Node (Gen_Unit);
2432
2433 if In_Extended_Main_Source_Unit (N) then
2434 Set_Is_Instantiated (Gen_Unit);
2435 Generate_Reference (Gen_Unit, N);
2436 end if;
2437
2438 Formal := New_Copy (Pack_Id);
2439 Create_Instantiation_Source (N, Gen_Unit, False, S_Adjustment);
2440
2441 begin
2442 -- Make local generic without formals. The formals will be replaced
2443 -- with internal declarations.
2444
2445 New_N := Build_Local_Package;
2446
2447 -- If there are errors in the parameter list, Analyze_Associations
2448 -- raises Instantiation_Error. Patch the declaration to prevent
2449 -- further exception propagation.
2450
2451 exception
2452 when Instantiation_Error =>
2453
2454 Enter_Name (Formal);
2455 Set_Ekind (Formal, E_Variable);
2456 Set_Etype (Formal, Any_Type);
2457 Restore_Hidden_Primitives (Vis_Prims_List);
2458
2459 if Parent_Installed then
2460 Remove_Parent;
2461 end if;
2462
2463 goto Leave;
2464 end;
2465
2466 Rewrite (N, New_N);
2467 Set_Defining_Unit_Name (Specification (New_N), Formal);
2468 Set_Generic_Parent (Specification (N), Gen_Unit);
2469 Set_Instance_Env (Gen_Unit, Formal);
2470 Set_Is_Generic_Instance (Formal);
2471
2472 Enter_Name (Formal);
2473 Set_Ekind (Formal, E_Package);
2474 Set_Etype (Formal, Standard_Void_Type);
2475 Set_Inner_Instances (Formal, New_Elmt_List);
2476 Push_Scope (Formal);
2477
2478 if Is_Child_Unit (Gen_Unit)
2479 and then Parent_Installed
2480 then
2481 -- Similarly, we have to make the name of the formal visible in the
2482 -- parent instance, to resolve properly fully qualified names that
2483 -- may appear in the generic unit. The parent instance has been
2484 -- placed on the scope stack ahead of the current scope.
2485
2486 Parent_Instance := Scope_Stack.Table (Scope_Stack.Last - 1).Entity;
2487
2488 Renaming_In_Par :=
2489 Make_Defining_Identifier (Loc, Chars (Gen_Unit));
2490 Set_Ekind (Renaming_In_Par, E_Package);
2491 Set_Etype (Renaming_In_Par, Standard_Void_Type);
2492 Set_Scope (Renaming_In_Par, Parent_Instance);
2493 Set_Parent (Renaming_In_Par, Parent (Formal));
2494 Set_Renamed_Object (Renaming_In_Par, Formal);
2495 Append_Entity (Renaming_In_Par, Parent_Instance);
2496 end if;
2497
2498 Analyze (Specification (N));
2499
2500 -- The formals for which associations are provided are not visible
2501 -- outside of the formal package. The others are still declared by a
2502 -- formal parameter declaration.
2503
2504 -- If there are no associations, the only local entity to hide is the
2505 -- generated package renaming itself.
2506
2507 declare
2508 E : Entity_Id;
2509
2510 begin
2511 E := First_Entity (Formal);
2512 while Present (E) loop
2513 if Associations
2514 and then not Is_Generic_Formal (E)
2515 then
2516 Set_Is_Hidden (E);
2517 end if;
2518
2519 if Ekind (E) = E_Package
2520 and then Renamed_Entity (E) = Formal
2521 then
2522 Set_Is_Hidden (E);
2523 exit;
2524 end if;
2525
2526 Next_Entity (E);
2527 end loop;
2528 end;
2529
2530 End_Package_Scope (Formal);
2531 Restore_Hidden_Primitives (Vis_Prims_List);
2532
2533 if Parent_Installed then
2534 Remove_Parent;
2535 end if;
2536
2537 Restore_Env;
2538
2539 -- Inside the generic unit, the formal package is a regular package, but
2540 -- no body is needed for it. Note that after instantiation, the defining
2541 -- unit name we need is in the new tree and not in the original (see
2542 -- Package_Instantiation). A generic formal package is an instance, and
2543 -- can be used as an actual for an inner instance.
2544
2545 Set_Has_Completion (Formal, True);
2546
2547 -- Add semantic information to the original defining identifier.
2548 -- for ASIS use.
2549
2550 Set_Ekind (Pack_Id, E_Package);
2551 Set_Etype (Pack_Id, Standard_Void_Type);
2552 Set_Scope (Pack_Id, Scope (Formal));
2553 Set_Has_Completion (Pack_Id, True);
2554
2555 <<Leave>>
2556 if Has_Aspects (N) then
2557 Analyze_Aspect_Specifications (N, Pack_Id);
2558 end if;
2559 end Analyze_Formal_Package_Declaration;
2560
2561 ---------------------------------
2562 -- Analyze_Formal_Private_Type --
2563 ---------------------------------
2564
2565 procedure Analyze_Formal_Private_Type
2566 (N : Node_Id;
2567 T : Entity_Id;
2568 Def : Node_Id)
2569 is
2570 begin
2571 New_Private_Type (N, T, Def);
2572
2573 -- Set the size to an arbitrary but legal value
2574
2575 Set_Size_Info (T, Standard_Integer);
2576 Set_RM_Size (T, RM_Size (Standard_Integer));
2577 end Analyze_Formal_Private_Type;
2578
2579 ------------------------------------
2580 -- Analyze_Formal_Incomplete_Type --
2581 ------------------------------------
2582
2583 procedure Analyze_Formal_Incomplete_Type
2584 (T : Entity_Id;
2585 Def : Node_Id)
2586 is
2587 begin
2588 Enter_Name (T);
2589 Set_Ekind (T, E_Incomplete_Type);
2590 Set_Etype (T, T);
2591 Set_Private_Dependents (T, New_Elmt_List);
2592
2593 if Tagged_Present (Def) then
2594 Set_Is_Tagged_Type (T);
2595 Make_Class_Wide_Type (T);
2596 Set_Direct_Primitive_Operations (T, New_Elmt_List);
2597 end if;
2598 end Analyze_Formal_Incomplete_Type;
2599
2600 ----------------------------------------
2601 -- Analyze_Formal_Signed_Integer_Type --
2602 ----------------------------------------
2603
2604 procedure Analyze_Formal_Signed_Integer_Type
2605 (T : Entity_Id;
2606 Def : Node_Id)
2607 is
2608 Base : constant Entity_Id :=
2609 New_Internal_Entity
2610 (E_Signed_Integer_Type,
2611 Current_Scope,
2612 Sloc (Defining_Identifier (Parent (Def))), 'G');
2613
2614 begin
2615 Enter_Name (T);
2616
2617 Set_Ekind (T, E_Signed_Integer_Subtype);
2618 Set_Etype (T, Base);
2619 Set_Size_Info (T, Standard_Integer);
2620 Set_RM_Size (T, RM_Size (Standard_Integer));
2621 Set_Scalar_Range (T, Scalar_Range (Standard_Integer));
2622 Set_Is_Constrained (T);
2623
2624 Set_Is_Generic_Type (Base);
2625 Set_Size_Info (Base, Standard_Integer);
2626 Set_RM_Size (Base, RM_Size (Standard_Integer));
2627 Set_Etype (Base, Base);
2628 Set_Scalar_Range (Base, Scalar_Range (Standard_Integer));
2629 Set_Parent (Base, Parent (Def));
2630 end Analyze_Formal_Signed_Integer_Type;
2631
2632 -------------------------------------------
2633 -- Analyze_Formal_Subprogram_Declaration --
2634 -------------------------------------------
2635
2636 procedure Analyze_Formal_Subprogram_Declaration (N : Node_Id) is
2637 Spec : constant Node_Id := Specification (N);
2638 Def : constant Node_Id := Default_Name (N);
2639 Nam : constant Entity_Id := Defining_Unit_Name (Spec);
2640 Subp : Entity_Id;
2641
2642 begin
2643 if Nam = Error then
2644 return;
2645 end if;
2646
2647 if Nkind (Nam) = N_Defining_Program_Unit_Name then
2648 Error_Msg_N ("name of formal subprogram must be a direct name", Nam);
2649 goto Leave;
2650 end if;
2651
2652 Analyze_Subprogram_Declaration (N);
2653 Set_Is_Formal_Subprogram (Nam);
2654 Set_Has_Completion (Nam);
2655
2656 if Nkind (N) = N_Formal_Abstract_Subprogram_Declaration then
2657 Set_Is_Abstract_Subprogram (Nam);
2658 Set_Is_Dispatching_Operation (Nam);
2659
2660 declare
2661 Ctrl_Type : constant Entity_Id := Find_Dispatching_Type (Nam);
2662 begin
2663 if No (Ctrl_Type) then
2664 Error_Msg_N
2665 ("abstract formal subprogram must have a controlling type",
2666 N);
2667
2668 elsif Ada_Version >= Ada_2012
2669 and then Is_Incomplete_Type (Ctrl_Type)
2670 then
2671 Error_Msg_NE
2672 ("controlling type of abstract formal subprogram cannot " &
2673 "be incomplete type", N, Ctrl_Type);
2674
2675 else
2676 Check_Controlling_Formals (Ctrl_Type, Nam);
2677 end if;
2678 end;
2679 end if;
2680
2681 -- Default name is resolved at the point of instantiation
2682
2683 if Box_Present (N) then
2684 null;
2685
2686 -- Else default is bound at the point of generic declaration
2687
2688 elsif Present (Def) then
2689 if Nkind (Def) = N_Operator_Symbol then
2690 Find_Direct_Name (Def);
2691
2692 elsif Nkind (Def) /= N_Attribute_Reference then
2693 Analyze (Def);
2694
2695 else
2696 -- For an attribute reference, analyze the prefix and verify
2697 -- that it has the proper profile for the subprogram.
2698
2699 Analyze (Prefix (Def));
2700 Valid_Default_Attribute (Nam, Def);
2701 goto Leave;
2702 end if;
2703
2704 -- Default name may be overloaded, in which case the interpretation
2705 -- with the correct profile must be selected, as for a renaming.
2706 -- If the definition is an indexed component, it must denote a
2707 -- member of an entry family. If it is a selected component, it
2708 -- can be a protected operation.
2709
2710 if Etype (Def) = Any_Type then
2711 goto Leave;
2712
2713 elsif Nkind (Def) = N_Selected_Component then
2714 if not Is_Overloadable (Entity (Selector_Name (Def))) then
2715 Error_Msg_N ("expect valid subprogram name as default", Def);
2716 end if;
2717
2718 elsif Nkind (Def) = N_Indexed_Component then
2719 if Is_Entity_Name (Prefix (Def)) then
2720 if Ekind (Entity (Prefix (Def))) /= E_Entry_Family then
2721 Error_Msg_N ("expect valid subprogram name as default", Def);
2722 end if;
2723
2724 elsif Nkind (Prefix (Def)) = N_Selected_Component then
2725 if Ekind (Entity (Selector_Name (Prefix (Def)))) /=
2726 E_Entry_Family
2727 then
2728 Error_Msg_N ("expect valid subprogram name as default", Def);
2729 end if;
2730
2731 else
2732 Error_Msg_N ("expect valid subprogram name as default", Def);
2733 goto Leave;
2734 end if;
2735
2736 elsif Nkind (Def) = N_Character_Literal then
2737
2738 -- Needs some type checks: subprogram should be parameterless???
2739
2740 Resolve (Def, (Etype (Nam)));
2741
2742 elsif not Is_Entity_Name (Def)
2743 or else not Is_Overloadable (Entity (Def))
2744 then
2745 Error_Msg_N ("expect valid subprogram name as default", Def);
2746 goto Leave;
2747
2748 elsif not Is_Overloaded (Def) then
2749 Subp := Entity (Def);
2750
2751 if Subp = Nam then
2752 Error_Msg_N ("premature usage of formal subprogram", Def);
2753
2754 elsif not Entity_Matches_Spec (Subp, Nam) then
2755 Error_Msg_N ("no visible entity matches specification", Def);
2756 end if;
2757
2758 -- More than one interpretation, so disambiguate as for a renaming
2759
2760 else
2761 declare
2762 I : Interp_Index;
2763 I1 : Interp_Index := 0;
2764 It : Interp;
2765 It1 : Interp;
2766
2767 begin
2768 Subp := Any_Id;
2769 Get_First_Interp (Def, I, It);
2770 while Present (It.Nam) loop
2771 if Entity_Matches_Spec (It.Nam, Nam) then
2772 if Subp /= Any_Id then
2773 It1 := Disambiguate (Def, I1, I, Etype (Subp));
2774
2775 if It1 = No_Interp then
2776 Error_Msg_N ("ambiguous default subprogram", Def);
2777 else
2778 Subp := It1.Nam;
2779 end if;
2780
2781 exit;
2782
2783 else
2784 I1 := I;
2785 Subp := It.Nam;
2786 end if;
2787 end if;
2788
2789 Get_Next_Interp (I, It);
2790 end loop;
2791 end;
2792
2793 if Subp /= Any_Id then
2794
2795 -- Subprogram found, generate reference to it
2796
2797 Set_Entity (Def, Subp);
2798 Generate_Reference (Subp, Def);
2799
2800 if Subp = Nam then
2801 Error_Msg_N ("premature usage of formal subprogram", Def);
2802
2803 elsif Ekind (Subp) /= E_Operator then
2804 Check_Mode_Conformant (Subp, Nam);
2805 end if;
2806
2807 else
2808 Error_Msg_N ("no visible subprogram matches specification", N);
2809 end if;
2810 end if;
2811 end if;
2812
2813 <<Leave>>
2814 if Has_Aspects (N) then
2815 Analyze_Aspect_Specifications (N, Nam);
2816 end if;
2817
2818 end Analyze_Formal_Subprogram_Declaration;
2819
2820 -------------------------------------
2821 -- Analyze_Formal_Type_Declaration --
2822 -------------------------------------
2823
2824 procedure Analyze_Formal_Type_Declaration (N : Node_Id) is
2825 Def : constant Node_Id := Formal_Type_Definition (N);
2826 T : Entity_Id;
2827
2828 begin
2829 T := Defining_Identifier (N);
2830
2831 if Present (Discriminant_Specifications (N))
2832 and then Nkind (Def) /= N_Formal_Private_Type_Definition
2833 then
2834 Error_Msg_N
2835 ("discriminants not allowed for this formal type", T);
2836 end if;
2837
2838 -- Enter the new name, and branch to specific routine
2839
2840 case Nkind (Def) is
2841 when N_Formal_Private_Type_Definition =>
2842 Analyze_Formal_Private_Type (N, T, Def);
2843
2844 when N_Formal_Derived_Type_Definition =>
2845 Analyze_Formal_Derived_Type (N, T, Def);
2846
2847 when N_Formal_Incomplete_Type_Definition =>
2848 Analyze_Formal_Incomplete_Type (T, Def);
2849
2850 when N_Formal_Discrete_Type_Definition =>
2851 Analyze_Formal_Discrete_Type (T, Def);
2852
2853 when N_Formal_Signed_Integer_Type_Definition =>
2854 Analyze_Formal_Signed_Integer_Type (T, Def);
2855
2856 when N_Formal_Modular_Type_Definition =>
2857 Analyze_Formal_Modular_Type (T, Def);
2858
2859 when N_Formal_Floating_Point_Definition =>
2860 Analyze_Formal_Floating_Type (T, Def);
2861
2862 when N_Formal_Ordinary_Fixed_Point_Definition =>
2863 Analyze_Formal_Ordinary_Fixed_Point_Type (T, Def);
2864
2865 when N_Formal_Decimal_Fixed_Point_Definition =>
2866 Analyze_Formal_Decimal_Fixed_Point_Type (T, Def);
2867
2868 when N_Array_Type_Definition =>
2869 Analyze_Formal_Array_Type (T, Def);
2870
2871 when N_Access_To_Object_Definition |
2872 N_Access_Function_Definition |
2873 N_Access_Procedure_Definition =>
2874 Analyze_Generic_Access_Type (T, Def);
2875
2876 -- Ada 2005: a interface declaration is encoded as an abstract
2877 -- record declaration or a abstract type derivation.
2878
2879 when N_Record_Definition =>
2880 Analyze_Formal_Interface_Type (N, T, Def);
2881
2882 when N_Derived_Type_Definition =>
2883 Analyze_Formal_Derived_Interface_Type (N, T, Def);
2884
2885 when N_Error =>
2886 null;
2887
2888 when others =>
2889 raise Program_Error;
2890
2891 end case;
2892
2893 Set_Is_Generic_Type (T);
2894
2895 if Has_Aspects (N) then
2896 Analyze_Aspect_Specifications (N, T);
2897 end if;
2898 end Analyze_Formal_Type_Declaration;
2899
2900 ------------------------------------
2901 -- Analyze_Function_Instantiation --
2902 ------------------------------------
2903
2904 procedure Analyze_Function_Instantiation (N : Node_Id) is
2905 begin
2906 Analyze_Subprogram_Instantiation (N, E_Function);
2907 end Analyze_Function_Instantiation;
2908
2909 ---------------------------------
2910 -- Analyze_Generic_Access_Type --
2911 ---------------------------------
2912
2913 procedure Analyze_Generic_Access_Type (T : Entity_Id; Def : Node_Id) is
2914 begin
2915 Enter_Name (T);
2916
2917 if Nkind (Def) = N_Access_To_Object_Definition then
2918 Access_Type_Declaration (T, Def);
2919
2920 if Is_Incomplete_Or_Private_Type (Designated_Type (T))
2921 and then No (Full_View (Designated_Type (T)))
2922 and then not Is_Generic_Type (Designated_Type (T))
2923 then
2924 Error_Msg_N ("premature usage of incomplete type", Def);
2925
2926 elsif not Is_Entity_Name (Subtype_Indication (Def)) then
2927 Error_Msg_N
2928 ("only a subtype mark is allowed in a formal", Def);
2929 end if;
2930
2931 else
2932 Access_Subprogram_Declaration (T, Def);
2933 end if;
2934 end Analyze_Generic_Access_Type;
2935
2936 ---------------------------------
2937 -- Analyze_Generic_Formal_Part --
2938 ---------------------------------
2939
2940 procedure Analyze_Generic_Formal_Part (N : Node_Id) is
2941 Gen_Parm_Decl : Node_Id;
2942
2943 begin
2944 -- The generic formals are processed in the scope of the generic unit,
2945 -- where they are immediately visible. The scope is installed by the
2946 -- caller.
2947
2948 Gen_Parm_Decl := First (Generic_Formal_Declarations (N));
2949
2950 while Present (Gen_Parm_Decl) loop
2951 Analyze (Gen_Parm_Decl);
2952 Next (Gen_Parm_Decl);
2953 end loop;
2954
2955 Generate_Reference_To_Generic_Formals (Current_Scope);
2956 end Analyze_Generic_Formal_Part;
2957
2958 ------------------------------------------
2959 -- Analyze_Generic_Package_Declaration --
2960 ------------------------------------------
2961
2962 procedure Analyze_Generic_Package_Declaration (N : Node_Id) is
2963 Loc : constant Source_Ptr := Sloc (N);
2964 Id : Entity_Id;
2965 New_N : Node_Id;
2966 Save_Parent : Node_Id;
2967 Renaming : Node_Id;
2968 Decls : constant List_Id :=
2969 Visible_Declarations (Specification (N));
2970 Decl : Node_Id;
2971
2972 begin
2973 Check_SPARK_Restriction ("generic is not allowed", N);
2974
2975 -- We introduce a renaming of the enclosing package, to have a usable
2976 -- entity as the prefix of an expanded name for a local entity of the
2977 -- form Par.P.Q, where P is the generic package. This is because a local
2978 -- entity named P may hide it, so that the usual visibility rules in
2979 -- the instance will not resolve properly.
2980
2981 Renaming :=
2982 Make_Package_Renaming_Declaration (Loc,
2983 Defining_Unit_Name =>
2984 Make_Defining_Identifier (Loc,
2985 Chars => New_External_Name (Chars (Defining_Entity (N)), "GH")),
2986 Name => Make_Identifier (Loc, Chars (Defining_Entity (N))));
2987
2988 if Present (Decls) then
2989 Decl := First (Decls);
2990 while Present (Decl)
2991 and then Nkind (Decl) = N_Pragma
2992 loop
2993 Next (Decl);
2994 end loop;
2995
2996 if Present (Decl) then
2997 Insert_Before (Decl, Renaming);
2998 else
2999 Append (Renaming, Visible_Declarations (Specification (N)));
3000 end if;
3001
3002 else
3003 Set_Visible_Declarations (Specification (N), New_List (Renaming));
3004 end if;
3005
3006 -- Create copy of generic unit, and save for instantiation. If the unit
3007 -- is a child unit, do not copy the specifications for the parent, which
3008 -- are not part of the generic tree.
3009
3010 Save_Parent := Parent_Spec (N);
3011 Set_Parent_Spec (N, Empty);
3012
3013 New_N := Copy_Generic_Node (N, Empty, Instantiating => False);
3014 Set_Parent_Spec (New_N, Save_Parent);
3015 Rewrite (N, New_N);
3016 Id := Defining_Entity (N);
3017 Generate_Definition (Id);
3018
3019 -- Expansion is not applied to generic units
3020
3021 Start_Generic;
3022
3023 Enter_Name (Id);
3024 Set_Ekind (Id, E_Generic_Package);
3025 Set_Etype (Id, Standard_Void_Type);
3026 Push_Scope (Id);
3027 Enter_Generic_Scope (Id);
3028 Set_Inner_Instances (Id, New_Elmt_List);
3029
3030 Set_Categorization_From_Pragmas (N);
3031 Set_Is_Pure (Id, Is_Pure (Current_Scope));
3032
3033 -- Link the declaration of the generic homonym in the generic copy to
3034 -- the package it renames, so that it is always resolved properly.
3035
3036 Set_Generic_Homonym (Id, Defining_Unit_Name (Renaming));
3037 Set_Entity (Associated_Node (Name (Renaming)), Id);
3038
3039 -- For a library unit, we have reconstructed the entity for the unit,
3040 -- and must reset it in the library tables.
3041
3042 if Nkind (Parent (N)) = N_Compilation_Unit then
3043 Set_Cunit_Entity (Current_Sem_Unit, Id);
3044 end if;
3045
3046 Analyze_Generic_Formal_Part (N);
3047
3048 -- After processing the generic formals, analysis proceeds as for a
3049 -- non-generic package.
3050
3051 Analyze (Specification (N));
3052
3053 Validate_Categorization_Dependency (N, Id);
3054
3055 End_Generic;
3056
3057 End_Package_Scope (Id);
3058 Exit_Generic_Scope (Id);
3059
3060 if Nkind (Parent (N)) /= N_Compilation_Unit then
3061 Move_Freeze_Nodes (Id, N, Visible_Declarations (Specification (N)));
3062 Move_Freeze_Nodes (Id, N, Private_Declarations (Specification (N)));
3063 Move_Freeze_Nodes (Id, N, Generic_Formal_Declarations (N));
3064
3065 else
3066 Set_Body_Required (Parent (N), Unit_Requires_Body (Id));
3067 Validate_RT_RAT_Component (N);
3068
3069 -- If this is a spec without a body, check that generic parameters
3070 -- are referenced.
3071
3072 if not Body_Required (Parent (N)) then
3073 Check_References (Id);
3074 end if;
3075 end if;
3076
3077 if Has_Aspects (N) then
3078 Analyze_Aspect_Specifications (N, Id);
3079 end if;
3080 end Analyze_Generic_Package_Declaration;
3081
3082 --------------------------------------------
3083 -- Analyze_Generic_Subprogram_Declaration --
3084 --------------------------------------------
3085
3086 procedure Analyze_Generic_Subprogram_Declaration (N : Node_Id) is
3087 Spec : Node_Id;
3088 Id : Entity_Id;
3089 Formals : List_Id;
3090 New_N : Node_Id;
3091 Result_Type : Entity_Id;
3092 Save_Parent : Node_Id;
3093 Typ : Entity_Id;
3094
3095 begin
3096 Check_SPARK_Restriction ("generic is not allowed", N);
3097
3098 -- Create copy of generic unit, and save for instantiation. If the unit
3099 -- is a child unit, do not copy the specifications for the parent, which
3100 -- are not part of the generic tree.
3101
3102 Save_Parent := Parent_Spec (N);
3103 Set_Parent_Spec (N, Empty);
3104
3105 New_N := Copy_Generic_Node (N, Empty, Instantiating => False);
3106 Set_Parent_Spec (New_N, Save_Parent);
3107 Rewrite (N, New_N);
3108
3109 -- The aspect specifications are not attached to the tree, and must
3110 -- be copied and attached to the generic copy explicitly.
3111
3112 if Present (Aspect_Specifications (New_N)) then
3113 declare
3114 Aspects : constant List_Id := Aspect_Specifications (N);
3115 begin
3116 Set_Has_Aspects (N, False);
3117 Move_Aspects (New_N, N);
3118 Set_Has_Aspects (Original_Node (N), False);
3119 Set_Aspect_Specifications (Original_Node (N), Aspects);
3120 end;
3121 end if;
3122
3123 Spec := Specification (N);
3124 Id := Defining_Entity (Spec);
3125 Generate_Definition (Id);
3126 Set_Contract (Id, Make_Contract (Sloc (Id)));
3127
3128 if Nkind (Id) = N_Defining_Operator_Symbol then
3129 Error_Msg_N
3130 ("operator symbol not allowed for generic subprogram", Id);
3131 end if;
3132
3133 Start_Generic;
3134
3135 Enter_Name (Id);
3136
3137 Set_Scope_Depth_Value (Id, Scope_Depth (Current_Scope) + 1);
3138 Push_Scope (Id);
3139 Enter_Generic_Scope (Id);
3140 Set_Inner_Instances (Id, New_Elmt_List);
3141 Set_Is_Pure (Id, Is_Pure (Current_Scope));
3142
3143 Analyze_Generic_Formal_Part (N);
3144
3145 Formals := Parameter_Specifications (Spec);
3146
3147 if Present (Formals) then
3148 Process_Formals (Formals, Spec);
3149 end if;
3150
3151 if Nkind (Spec) = N_Function_Specification then
3152 Set_Ekind (Id, E_Generic_Function);
3153
3154 if Nkind (Result_Definition (Spec)) = N_Access_Definition then
3155 Result_Type := Access_Definition (Spec, Result_Definition (Spec));
3156 Set_Etype (Id, Result_Type);
3157
3158 -- Check restriction imposed by AI05-073: a generic function
3159 -- cannot return an abstract type or an access to such.
3160
3161 -- This is a binding interpretation should it apply to earlier
3162 -- versions of Ada as well as Ada 2012???
3163
3164 if Is_Abstract_Type (Designated_Type (Result_Type))
3165 and then Ada_Version >= Ada_2012
3166 then
3167 Error_Msg_N ("generic function cannot have an access result"
3168 & " that designates an abstract type", Spec);
3169 end if;
3170
3171 else
3172 Find_Type (Result_Definition (Spec));
3173 Typ := Entity (Result_Definition (Spec));
3174
3175 if Is_Abstract_Type (Typ)
3176 and then Ada_Version >= Ada_2012
3177 then
3178 Error_Msg_N
3179 ("generic function cannot have abstract result type", Spec);
3180 end if;
3181
3182 -- If a null exclusion is imposed on the result type, then create
3183 -- a null-excluding itype (an access subtype) and use it as the
3184 -- function's Etype.
3185
3186 if Is_Access_Type (Typ)
3187 and then Null_Exclusion_Present (Spec)
3188 then
3189 Set_Etype (Id,
3190 Create_Null_Excluding_Itype
3191 (T => Typ,
3192 Related_Nod => Spec,
3193 Scope_Id => Defining_Unit_Name (Spec)));
3194 else
3195 Set_Etype (Id, Typ);
3196 end if;
3197 end if;
3198
3199 else
3200 Set_Ekind (Id, E_Generic_Procedure);
3201 Set_Etype (Id, Standard_Void_Type);
3202 end if;
3203
3204 -- For a library unit, we have reconstructed the entity for the unit,
3205 -- and must reset it in the library tables. We also make sure that
3206 -- Body_Required is set properly in the original compilation unit node.
3207
3208 if Nkind (Parent (N)) = N_Compilation_Unit then
3209 Set_Cunit_Entity (Current_Sem_Unit, Id);
3210 Set_Body_Required (Parent (N), Unit_Requires_Body (Id));
3211 end if;
3212
3213 Set_Categorization_From_Pragmas (N);
3214 Validate_Categorization_Dependency (N, Id);
3215
3216 Save_Global_References (Original_Node (N));
3217
3218 -- For ASIS purposes, convert any postcondition, precondition pragmas
3219 -- into aspects, if N is not a compilation unit by itself, in order to
3220 -- enable the analysis of expressions inside the corresponding PPC
3221 -- pragmas.
3222
3223 if ASIS_Mode and then Is_List_Member (N) then
3224 Make_Aspect_For_PPC_In_Gen_Sub_Decl (N);
3225 end if;
3226
3227 -- To capture global references, analyze the expressions of aspects,
3228 -- and propagate information to original tree. Note that in this case
3229 -- analysis of attributes is not delayed until the freeze point.
3230
3231 -- It seems very hard to recreate the proper visibility of the generic
3232 -- subprogram at a later point because the analysis of an aspect may
3233 -- create pragmas after the generic copies have been made ???
3234
3235 if Has_Aspects (N) then
3236 declare
3237 Aspect : Node_Id;
3238
3239 begin
3240 Aspect := First (Aspect_Specifications (N));
3241 while Present (Aspect) loop
3242 if Get_Aspect_Id (Chars (Identifier (Aspect)))
3243 /= Aspect_Warnings
3244 then
3245 Analyze (Expression (Aspect));
3246 end if;
3247 Next (Aspect);
3248 end loop;
3249
3250 Aspect := First (Aspect_Specifications (Original_Node (N)));
3251 while Present (Aspect) loop
3252 Save_Global_References (Expression (Aspect));
3253 Next (Aspect);
3254 end loop;
3255 end;
3256 end if;
3257
3258 End_Generic;
3259 End_Scope;
3260 Exit_Generic_Scope (Id);
3261 Generate_Reference_To_Formals (Id);
3262
3263 List_Inherited_Pre_Post_Aspects (Id);
3264 end Analyze_Generic_Subprogram_Declaration;
3265
3266 -----------------------------------
3267 -- Analyze_Package_Instantiation --
3268 -----------------------------------
3269
3270 procedure Analyze_Package_Instantiation (N : Node_Id) is
3271 Loc : constant Source_Ptr := Sloc (N);
3272 Gen_Id : constant Node_Id := Name (N);
3273
3274 Act_Decl : Node_Id;
3275 Act_Decl_Name : Node_Id;
3276 Act_Decl_Id : Entity_Id;
3277 Act_Spec : Node_Id;
3278 Act_Tree : Node_Id;
3279
3280 Gen_Decl : Node_Id;
3281 Gen_Unit : Entity_Id;
3282
3283 Is_Actual_Pack : constant Boolean :=
3284 Is_Internal (Defining_Entity (N));
3285
3286 Env_Installed : Boolean := False;
3287 Parent_Installed : Boolean := False;
3288 Renaming_List : List_Id;
3289 Unit_Renaming : Node_Id;
3290 Needs_Body : Boolean;
3291 Inline_Now : Boolean := False;
3292
3293 Save_Style_Check : constant Boolean := Style_Check;
3294 -- Save style check mode for restore on exit
3295
3296 procedure Delay_Descriptors (E : Entity_Id);
3297 -- Delay generation of subprogram descriptors for given entity
3298
3299 function Might_Inline_Subp return Boolean;
3300 -- If inlining is active and the generic contains inlined subprograms,
3301 -- we instantiate the body. This may cause superfluous instantiations,
3302 -- but it is simpler than detecting the need for the body at the point
3303 -- of inlining, when the context of the instance is not available.
3304
3305 function Must_Inline_Subp return Boolean;
3306 -- If inlining is active and the generic contains inlined subprograms,
3307 -- return True if some of the inlined subprograms must be inlined by
3308 -- the frontend.
3309
3310 -----------------------
3311 -- Delay_Descriptors --
3312 -----------------------
3313
3314 procedure Delay_Descriptors (E : Entity_Id) is
3315 begin
3316 if not Delay_Subprogram_Descriptors (E) then
3317 Set_Delay_Subprogram_Descriptors (E);
3318 Pending_Descriptor.Append (E);
3319 end if;
3320 end Delay_Descriptors;
3321
3322 -----------------------
3323 -- Might_Inline_Subp --
3324 -----------------------
3325
3326 function Might_Inline_Subp return Boolean is
3327 E : Entity_Id;
3328
3329 begin
3330 if not Inline_Processing_Required then
3331 return False;
3332
3333 else
3334 E := First_Entity (Gen_Unit);
3335 while Present (E) loop
3336 if Is_Subprogram (E)
3337 and then Is_Inlined (E)
3338 then
3339 return True;
3340 end if;
3341
3342 Next_Entity (E);
3343 end loop;
3344 end if;
3345
3346 return False;
3347 end Might_Inline_Subp;
3348
3349 ----------------------
3350 -- Must_Inline_Subp --
3351 ----------------------
3352
3353 function Must_Inline_Subp return Boolean is
3354 E : Entity_Id;
3355
3356 begin
3357 if not Inline_Processing_Required then
3358 return False;
3359
3360 else
3361 E := First_Entity (Gen_Unit);
3362 while Present (E) loop
3363 if Is_Subprogram (E)
3364 and then Is_Inlined (E)
3365 and then Must_Inline (E)
3366 then
3367 return True;
3368 end if;
3369
3370 Next_Entity (E);
3371 end loop;
3372 end if;
3373
3374 return False;
3375 end Must_Inline_Subp;
3376
3377 -- Local declarations
3378
3379 Vis_Prims_List : Elist_Id := No_Elist;
3380 -- List of primitives made temporarily visible in the instantiation
3381 -- to match the visibility of the formal type
3382
3383 -- Start of processing for Analyze_Package_Instantiation
3384
3385 begin
3386 Check_SPARK_Restriction ("generic is not allowed", N);
3387
3388 -- Very first thing: apply the special kludge for Text_IO processing
3389 -- in case we are instantiating one of the children of [Wide_]Text_IO.
3390
3391 Text_IO_Kludge (Name (N));
3392
3393 -- Make node global for error reporting
3394
3395 Instantiation_Node := N;
3396
3397 -- Turn off style checking in instances. If the check is enabled on the
3398 -- generic unit, a warning in an instance would just be noise. If not
3399 -- enabled on the generic, then a warning in an instance is just wrong.
3400
3401 Style_Check := False;
3402
3403 -- Case of instantiation of a generic package
3404
3405 if Nkind (N) = N_Package_Instantiation then
3406 Act_Decl_Id := New_Copy (Defining_Entity (N));
3407 Set_Comes_From_Source (Act_Decl_Id, True);
3408
3409 if Nkind (Defining_Unit_Name (N)) = N_Defining_Program_Unit_Name then
3410 Act_Decl_Name :=
3411 Make_Defining_Program_Unit_Name (Loc,
3412 Name => New_Copy_Tree (Name (Defining_Unit_Name (N))),
3413 Defining_Identifier => Act_Decl_Id);
3414 else
3415 Act_Decl_Name := Act_Decl_Id;
3416 end if;
3417
3418 -- Case of instantiation of a formal package
3419
3420 else
3421 Act_Decl_Id := Defining_Identifier (N);
3422 Act_Decl_Name := Act_Decl_Id;
3423 end if;
3424
3425 Generate_Definition (Act_Decl_Id);
3426 Preanalyze_Actuals (N);
3427
3428 Init_Env;
3429 Env_Installed := True;
3430
3431 -- Reset renaming map for formal types. The mapping is established
3432 -- when analyzing the generic associations, but some mappings are
3433 -- inherited from formal packages of parent units, and these are
3434 -- constructed when the parents are installed.
3435
3436 Generic_Renamings.Set_Last (0);
3437 Generic_Renamings_HTable.Reset;
3438
3439 Check_Generic_Child_Unit (Gen_Id, Parent_Installed);
3440 Gen_Unit := Entity (Gen_Id);
3441
3442 -- Verify that it is the name of a generic package
3443
3444 -- A visibility glitch: if the instance is a child unit and the generic
3445 -- is the generic unit of a parent instance (i.e. both the parent and
3446 -- the child units are instances of the same package) the name now
3447 -- denotes the renaming within the parent, not the intended generic
3448 -- unit. See if there is a homonym that is the desired generic. The
3449 -- renaming declaration must be visible inside the instance of the
3450 -- child, but not when analyzing the name in the instantiation itself.
3451
3452 if Ekind (Gen_Unit) = E_Package
3453 and then Present (Renamed_Entity (Gen_Unit))
3454 and then In_Open_Scopes (Renamed_Entity (Gen_Unit))
3455 and then Is_Generic_Instance (Renamed_Entity (Gen_Unit))
3456 and then Present (Homonym (Gen_Unit))
3457 then
3458 Gen_Unit := Homonym (Gen_Unit);
3459 end if;
3460
3461 if Etype (Gen_Unit) = Any_Type then
3462 Restore_Env;
3463 goto Leave;
3464
3465 elsif Ekind (Gen_Unit) /= E_Generic_Package then
3466
3467 -- Ada 2005 (AI-50217): Cannot use instance in limited with_clause
3468
3469 if From_With_Type (Gen_Unit) then
3470 Error_Msg_N
3471 ("cannot instantiate a limited withed package", Gen_Id);
3472 else
3473 Error_Msg_N
3474 ("expect name of generic package in instantiation", Gen_Id);
3475 end if;
3476
3477 Restore_Env;
3478 goto Leave;
3479 end if;
3480
3481 if In_Extended_Main_Source_Unit (N) then
3482 Set_Is_Instantiated (Gen_Unit);
3483 Generate_Reference (Gen_Unit, N);
3484
3485 if Present (Renamed_Object (Gen_Unit)) then
3486 Set_Is_Instantiated (Renamed_Object (Gen_Unit));
3487 Generate_Reference (Renamed_Object (Gen_Unit), N);
3488 end if;
3489 end if;
3490
3491 if Nkind (Gen_Id) = N_Identifier
3492 and then Chars (Gen_Unit) = Chars (Defining_Entity (N))
3493 then
3494 Error_Msg_NE
3495 ("& is hidden within declaration of instance", Gen_Id, Gen_Unit);
3496
3497 elsif Nkind (Gen_Id) = N_Expanded_Name
3498 and then Is_Child_Unit (Gen_Unit)
3499 and then Nkind (Prefix (Gen_Id)) = N_Identifier
3500 and then Chars (Act_Decl_Id) = Chars (Prefix (Gen_Id))
3501 then
3502 Error_Msg_N
3503 ("& is hidden within declaration of instance ", Prefix (Gen_Id));
3504 end if;
3505
3506 Set_Entity (Gen_Id, Gen_Unit);
3507
3508 -- If generic is a renaming, get original generic unit
3509
3510 if Present (Renamed_Object (Gen_Unit))
3511 and then Ekind (Renamed_Object (Gen_Unit)) = E_Generic_Package
3512 then
3513 Gen_Unit := Renamed_Object (Gen_Unit);
3514 end if;
3515
3516 -- Verify that there are no circular instantiations
3517
3518 if In_Open_Scopes (Gen_Unit) then
3519 Error_Msg_NE ("instantiation of & within itself", N, Gen_Unit);
3520 Restore_Env;
3521 goto Leave;
3522
3523 elsif Contains_Instance_Of (Gen_Unit, Current_Scope, Gen_Id) then
3524 Error_Msg_Node_2 := Current_Scope;
3525 Error_Msg_NE
3526 ("circular Instantiation: & instantiated in &!", N, Gen_Unit);
3527 Circularity_Detected := True;
3528 Restore_Env;
3529 goto Leave;
3530
3531 else
3532 Gen_Decl := Unit_Declaration_Node (Gen_Unit);
3533
3534 -- Initialize renamings map, for error checking, and the list that
3535 -- holds private entities whose views have changed between generic
3536 -- definition and instantiation. If this is the instance created to
3537 -- validate an actual package, the instantiation environment is that
3538 -- of the enclosing instance.
3539
3540 Create_Instantiation_Source (N, Gen_Unit, False, S_Adjustment);
3541
3542 -- Copy original generic tree, to produce text for instantiation
3543
3544 Act_Tree :=
3545 Copy_Generic_Node
3546 (Original_Node (Gen_Decl), Empty, Instantiating => True);
3547
3548 Act_Spec := Specification (Act_Tree);
3549
3550 -- If this is the instance created to validate an actual package,
3551 -- only the formals matter, do not examine the package spec itself.
3552
3553 if Is_Actual_Pack then
3554 Set_Visible_Declarations (Act_Spec, New_List);
3555 Set_Private_Declarations (Act_Spec, New_List);
3556 end if;
3557
3558 Renaming_List :=
3559 Analyze_Associations
3560 (I_Node => N,
3561 Formals => Generic_Formal_Declarations (Act_Tree),
3562 F_Copy => Generic_Formal_Declarations (Gen_Decl));
3563
3564 Vis_Prims_List := Check_Hidden_Primitives (Renaming_List);
3565
3566 Set_Instance_Env (Gen_Unit, Act_Decl_Id);
3567 Set_Defining_Unit_Name (Act_Spec, Act_Decl_Name);
3568 Set_Is_Generic_Instance (Act_Decl_Id);
3569
3570 Set_Generic_Parent (Act_Spec, Gen_Unit);
3571
3572 -- References to the generic in its own declaration or its body are
3573 -- references to the instance. Add a renaming declaration for the
3574 -- generic unit itself. This declaration, as well as the renaming
3575 -- declarations for the generic formals, must remain private to the
3576 -- unit: the formals, because this is the language semantics, and
3577 -- the unit because its use is an artifact of the implementation.
3578
3579 Unit_Renaming :=
3580 Make_Package_Renaming_Declaration (Loc,
3581 Defining_Unit_Name =>
3582 Make_Defining_Identifier (Loc, Chars (Gen_Unit)),
3583 Name => New_Reference_To (Act_Decl_Id, Loc));
3584
3585 Append (Unit_Renaming, Renaming_List);
3586
3587 -- The renaming declarations are the first local declarations of
3588 -- the new unit.
3589
3590 if Is_Non_Empty_List (Visible_Declarations (Act_Spec)) then
3591 Insert_List_Before
3592 (First (Visible_Declarations (Act_Spec)), Renaming_List);
3593 else
3594 Set_Visible_Declarations (Act_Spec, Renaming_List);
3595 end if;
3596
3597 Act_Decl :=
3598 Make_Package_Declaration (Loc,
3599 Specification => Act_Spec);
3600
3601 -- Save the instantiation node, for subsequent instantiation of the
3602 -- body, if there is one and we are generating code for the current
3603 -- unit. Mark the unit as having a body, to avoid a premature error
3604 -- message.
3605
3606 -- We instantiate the body if we are generating code, if we are
3607 -- generating cross-reference information, or if we are building
3608 -- trees for ASIS use.
3609
3610 declare
3611 Enclosing_Body_Present : Boolean := False;
3612 -- If the generic unit is not a compilation unit, then a body may
3613 -- be present in its parent even if none is required. We create a
3614 -- tentative pending instantiation for the body, which will be
3615 -- discarded if none is actually present.
3616
3617 Scop : Entity_Id;
3618
3619 begin
3620 if Scope (Gen_Unit) /= Standard_Standard
3621 and then not Is_Child_Unit (Gen_Unit)
3622 then
3623 Scop := Scope (Gen_Unit);
3624
3625 while Present (Scop)
3626 and then Scop /= Standard_Standard
3627 loop
3628 if Unit_Requires_Body (Scop) then
3629 Enclosing_Body_Present := True;
3630 exit;
3631
3632 elsif In_Open_Scopes (Scop)
3633 and then In_Package_Body (Scop)
3634 then
3635 Enclosing_Body_Present := True;
3636 exit;
3637 end if;
3638
3639 exit when Is_Compilation_Unit (Scop);
3640 Scop := Scope (Scop);
3641 end loop;
3642 end if;
3643
3644 -- If front-end inlining is enabled, and this is a unit for which
3645 -- code will be generated, we instantiate the body at once.
3646
3647 -- This is done if the instance is not the main unit, and if the
3648 -- generic is not a child unit of another generic, to avoid scope
3649 -- problems and the reinstallation of parent instances.
3650
3651 if Expander_Active
3652 and then (not Is_Child_Unit (Gen_Unit)
3653 or else not Is_Generic_Unit (Scope (Gen_Unit)))
3654 and then Might_Inline_Subp
3655 and then not Is_Actual_Pack
3656 then
3657 if not Debug_Flag_Dot_K
3658 and then Front_End_Inlining
3659 and then (Is_In_Main_Unit (N)
3660 or else In_Main_Context (Current_Scope))
3661 and then Nkind (Parent (N)) /= N_Compilation_Unit
3662 then
3663 Inline_Now := True;
3664
3665 elsif Debug_Flag_Dot_K
3666 and then Must_Inline_Subp
3667 and then (Is_In_Main_Unit (N)
3668 or else In_Main_Context (Current_Scope))
3669 and then Nkind (Parent (N)) /= N_Compilation_Unit
3670 then
3671 Inline_Now := True;
3672
3673 -- In configurable_run_time mode we force the inlining of
3674 -- predefined subprograms marked Inline_Always, to minimize
3675 -- the use of the run-time library.
3676
3677 elsif Is_Predefined_File_Name
3678 (Unit_File_Name (Get_Source_Unit (Gen_Decl)))
3679 and then Configurable_Run_Time_Mode
3680 and then Nkind (Parent (N)) /= N_Compilation_Unit
3681 then
3682 Inline_Now := True;
3683 end if;
3684
3685 -- If the current scope is itself an instance within a child
3686 -- unit, there will be duplications in the scope stack, and the
3687 -- unstacking mechanism in Inline_Instance_Body will fail.
3688 -- This loses some rare cases of optimization, and might be
3689 -- improved some day, if we can find a proper abstraction for
3690 -- "the complete compilation context" that can be saved and
3691 -- restored. ???
3692
3693 if Is_Generic_Instance (Current_Scope) then
3694 declare
3695 Curr_Unit : constant Entity_Id :=
3696 Cunit_Entity (Current_Sem_Unit);
3697 begin
3698 if Curr_Unit /= Current_Scope
3699 and then Is_Child_Unit (Curr_Unit)
3700 then
3701 Inline_Now := False;
3702 end if;
3703 end;
3704 end if;
3705 end if;
3706
3707 Needs_Body :=
3708 (Unit_Requires_Body (Gen_Unit)
3709 or else Enclosing_Body_Present
3710 or else Present (Corresponding_Body (Gen_Decl)))
3711 and then (Is_In_Main_Unit (N)
3712 or else Might_Inline_Subp)
3713 and then not Is_Actual_Pack
3714 and then not Inline_Now
3715 and then (Operating_Mode = Generate_Code
3716 or else (Operating_Mode = Check_Semantics
3717 and then ASIS_Mode));
3718
3719 -- If front_end_inlining is enabled, do not instantiate body if
3720 -- within a generic context.
3721
3722 if (Front_End_Inlining
3723 and then not Expander_Active)
3724 or else Is_Generic_Unit (Cunit_Entity (Main_Unit))
3725 then
3726 Needs_Body := False;
3727 end if;
3728
3729 -- If the current context is generic, and the package being
3730 -- instantiated is declared within a formal package, there is no
3731 -- body to instantiate until the enclosing generic is instantiated
3732 -- and there is an actual for the formal package. If the formal
3733 -- package has parameters, we build a regular package instance for
3734 -- it, that precedes the original formal package declaration.
3735
3736 if In_Open_Scopes (Scope (Scope (Gen_Unit))) then
3737 declare
3738 Decl : constant Node_Id :=
3739 Original_Node
3740 (Unit_Declaration_Node (Scope (Gen_Unit)));
3741 begin
3742 if Nkind (Decl) = N_Formal_Package_Declaration
3743 or else (Nkind (Decl) = N_Package_Declaration
3744 and then Is_List_Member (Decl)
3745 and then Present (Next (Decl))
3746 and then
3747 Nkind (Next (Decl)) =
3748 N_Formal_Package_Declaration)
3749 then
3750 Needs_Body := False;
3751 end if;
3752 end;
3753 end if;
3754 end;
3755
3756 -- For RCI unit calling stubs, we omit the instance body if the
3757 -- instance is the RCI library unit itself.
3758
3759 -- However there is a special case for nested instances: in this case
3760 -- we do generate the instance body, as it might be required, e.g.
3761 -- because it provides stream attributes for some type used in the
3762 -- profile of a remote subprogram. This is consistent with 12.3(12),
3763 -- which indicates that the instance body occurs at the place of the
3764 -- instantiation, and thus is part of the RCI declaration, which is
3765 -- present on all client partitions (this is E.2.3(18)).
3766
3767 -- Note that AI12-0002 may make it illegal at some point to have
3768 -- stream attributes defined in an RCI unit, in which case this
3769 -- special case will become unnecessary. In the meantime, there
3770 -- is known application code in production that depends on this
3771 -- being possible, so we definitely cannot eliminate the body in
3772 -- the case of nested instances for the time being.
3773
3774 -- When we generate a nested instance body, calling stubs for any
3775 -- relevant subprogram will be be inserted immediately after the
3776 -- subprogram declarations, and will take precedence over the
3777 -- subsequent (original) body. (The stub and original body will be
3778 -- complete homographs, but this is permitted in an instance).
3779 -- (Could we do better and remove the original body???)
3780
3781 if Distribution_Stub_Mode = Generate_Caller_Stub_Body
3782 and then Comes_From_Source (N)
3783 and then Nkind (Parent (N)) = N_Compilation_Unit
3784 then
3785 Needs_Body := False;
3786 end if;
3787
3788 if Needs_Body then
3789
3790 -- Here is a defence against a ludicrous number of instantiations
3791 -- caused by a circular set of instantiation attempts.
3792
3793 if Pending_Instantiations.Last > Maximum_Instantiations then
3794 Error_Msg_Uint_1 := UI_From_Int (Maximum_Instantiations);
3795 Error_Msg_N ("too many instantiations, exceeds max of^", N);
3796 Error_Msg_N ("\limit can be changed using -gnateinn switch", N);
3797 raise Unrecoverable_Error;
3798 end if;
3799
3800 -- Indicate that the enclosing scopes contain an instantiation,
3801 -- and that cleanup actions should be delayed until after the
3802 -- instance body is expanded.
3803
3804 Check_Forward_Instantiation (Gen_Decl);
3805 if Nkind (N) = N_Package_Instantiation then
3806 declare
3807 Enclosing_Master : Entity_Id;
3808
3809 begin
3810 -- Loop to search enclosing masters
3811
3812 Enclosing_Master := Current_Scope;
3813 Scope_Loop : while Enclosing_Master /= Standard_Standard loop
3814 if Ekind (Enclosing_Master) = E_Package then
3815 if Is_Compilation_Unit (Enclosing_Master) then
3816 if In_Package_Body (Enclosing_Master) then
3817 Delay_Descriptors
3818 (Body_Entity (Enclosing_Master));
3819 else
3820 Delay_Descriptors
3821 (Enclosing_Master);
3822 end if;
3823
3824 exit Scope_Loop;
3825
3826 else
3827 Enclosing_Master := Scope (Enclosing_Master);
3828 end if;
3829
3830 elsif Is_Generic_Unit (Enclosing_Master)
3831 or else Ekind (Enclosing_Master) = E_Void
3832 then
3833 -- Cleanup actions will eventually be performed on the
3834 -- enclosing subprogram or package instance, if any.
3835 -- Enclosing scope is void in the formal part of a
3836 -- generic subprogram.
3837
3838 exit Scope_Loop;
3839
3840 else
3841 if Ekind (Enclosing_Master) = E_Entry
3842 and then
3843 Ekind (Scope (Enclosing_Master)) = E_Protected_Type
3844 then
3845 if not Expander_Active then
3846 exit Scope_Loop;
3847 else
3848 Enclosing_Master :=
3849 Protected_Body_Subprogram (Enclosing_Master);
3850 end if;
3851 end if;
3852
3853 Set_Delay_Cleanups (Enclosing_Master);
3854
3855 while Ekind (Enclosing_Master) = E_Block loop
3856 Enclosing_Master := Scope (Enclosing_Master);
3857 end loop;
3858
3859 if Is_Subprogram (Enclosing_Master) then
3860 Delay_Descriptors (Enclosing_Master);
3861
3862 elsif Is_Task_Type (Enclosing_Master) then
3863 declare
3864 TBP : constant Node_Id :=
3865 Get_Task_Body_Procedure
3866 (Enclosing_Master);
3867 begin
3868 if Present (TBP) then
3869 Delay_Descriptors (TBP);
3870 Set_Delay_Cleanups (TBP);
3871 end if;
3872 end;
3873 end if;
3874
3875 exit Scope_Loop;
3876 end if;
3877 end loop Scope_Loop;
3878 end;
3879
3880 -- Make entry in table
3881
3882 Pending_Instantiations.Append
3883 ((Inst_Node => N,
3884 Act_Decl => Act_Decl,
3885 Expander_Status => Expander_Active,
3886 Current_Sem_Unit => Current_Sem_Unit,
3887 Scope_Suppress => Scope_Suppress,
3888 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
3889 Version => Ada_Version));
3890 end if;
3891 end if;
3892
3893 Set_Categorization_From_Pragmas (Act_Decl);
3894
3895 if Parent_Installed then
3896 Hide_Current_Scope;
3897 end if;
3898
3899 Set_Instance_Spec (N, Act_Decl);
3900
3901 -- If not a compilation unit, insert the package declaration before
3902 -- the original instantiation node.
3903
3904 if Nkind (Parent (N)) /= N_Compilation_Unit then
3905 Mark_Rewrite_Insertion (Act_Decl);
3906 Insert_Before (N, Act_Decl);
3907 Analyze (Act_Decl);
3908
3909 -- For an instantiation that is a compilation unit, place
3910 -- declaration on current node so context is complete for analysis
3911 -- (including nested instantiations). If this is the main unit,
3912 -- the declaration eventually replaces the instantiation node.
3913 -- If the instance body is created later, it replaces the
3914 -- instance node, and the declaration is attached to it
3915 -- (see Build_Instance_Compilation_Unit_Nodes).
3916
3917 else
3918 if Cunit_Entity (Current_Sem_Unit) = Defining_Entity (N) then
3919
3920 -- The entity for the current unit is the newly created one,
3921 -- and all semantic information is attached to it.
3922
3923 Set_Cunit_Entity (Current_Sem_Unit, Act_Decl_Id);
3924
3925 -- If this is the main unit, replace the main entity as well
3926
3927 if Current_Sem_Unit = Main_Unit then
3928 Main_Unit_Entity := Act_Decl_Id;
3929 end if;
3930 end if;
3931
3932 Set_Unit (Parent (N), Act_Decl);
3933 Set_Parent_Spec (Act_Decl, Parent_Spec (N));
3934 Set_Package_Instantiation (Act_Decl_Id, N);
3935 Analyze (Act_Decl);
3936 Set_Unit (Parent (N), N);
3937 Set_Body_Required (Parent (N), False);
3938
3939 -- We never need elaboration checks on instantiations, since by
3940 -- definition, the body instantiation is elaborated at the same
3941 -- time as the spec instantiation.
3942
3943 Set_Suppress_Elaboration_Warnings (Act_Decl_Id);
3944 Set_Kill_Elaboration_Checks (Act_Decl_Id);
3945 end if;
3946
3947 Check_Elab_Instantiation (N);
3948
3949 if ABE_Is_Certain (N) and then Needs_Body then
3950 Pending_Instantiations.Decrement_Last;
3951 end if;
3952
3953 Check_Hidden_Child_Unit (N, Gen_Unit, Act_Decl_Id);
3954
3955 Set_First_Private_Entity (Defining_Unit_Name (Unit_Renaming),
3956 First_Private_Entity (Act_Decl_Id));
3957
3958 -- If the instantiation will receive a body, the unit will be
3959 -- transformed into a package body, and receive its own elaboration
3960 -- entity. Otherwise, the nature of the unit is now a package
3961 -- declaration.
3962
3963 if Nkind (Parent (N)) = N_Compilation_Unit
3964 and then not Needs_Body
3965 then
3966 Rewrite (N, Act_Decl);
3967 end if;
3968
3969 if Present (Corresponding_Body (Gen_Decl))
3970 or else Unit_Requires_Body (Gen_Unit)
3971 then
3972 Set_Has_Completion (Act_Decl_Id);
3973 end if;
3974
3975 Check_Formal_Packages (Act_Decl_Id);
3976
3977 Restore_Hidden_Primitives (Vis_Prims_List);
3978 Restore_Private_Views (Act_Decl_Id);
3979
3980 Inherit_Context (Gen_Decl, N);
3981
3982 if Parent_Installed then
3983 Remove_Parent;
3984 end if;
3985
3986 Restore_Env;
3987 Env_Installed := False;
3988 end if;
3989
3990 Validate_Categorization_Dependency (N, Act_Decl_Id);
3991
3992 -- There used to be a check here to prevent instantiations in local
3993 -- contexts if the No_Local_Allocators restriction was active. This
3994 -- check was removed by a binding interpretation in AI-95-00130/07,
3995 -- but we retain the code for documentation purposes.
3996
3997 -- if Ekind (Act_Decl_Id) /= E_Void
3998 -- and then not Is_Library_Level_Entity (Act_Decl_Id)
3999 -- then
4000 -- Check_Restriction (No_Local_Allocators, N);
4001 -- end if;
4002
4003 if Inline_Now then
4004 Inline_Instance_Body (N, Gen_Unit, Act_Decl);
4005 end if;
4006
4007 -- The following is a tree patch for ASIS: ASIS needs separate nodes to
4008 -- be used as defining identifiers for a formal package and for the
4009 -- corresponding expanded package.
4010
4011 if Nkind (N) = N_Formal_Package_Declaration then
4012 Act_Decl_Id := New_Copy (Defining_Entity (N));
4013 Set_Comes_From_Source (Act_Decl_Id, True);
4014 Set_Is_Generic_Instance (Act_Decl_Id, False);
4015 Set_Defining_Identifier (N, Act_Decl_Id);
4016 end if;
4017
4018 Style_Check := Save_Style_Check;
4019
4020 -- Check that if N is an instantiation of System.Dim_Float_IO or
4021 -- System.Dim_Integer_IO, the formal type has a dimension system.
4022
4023 if Nkind (N) = N_Package_Instantiation
4024 and then Is_Dim_IO_Package_Instantiation (N)
4025 then
4026 declare
4027 Assoc : constant Node_Id := First (Generic_Associations (N));
4028 begin
4029 if not Has_Dimension_System
4030 (Etype (Explicit_Generic_Actual_Parameter (Assoc)))
4031 then
4032 Error_Msg_N ("type with a dimension system expected", Assoc);
4033 end if;
4034 end;
4035 end if;
4036
4037 <<Leave>>
4038 if Has_Aspects (N) then
4039 Analyze_Aspect_Specifications (N, Act_Decl_Id);
4040 end if;
4041
4042 exception
4043 when Instantiation_Error =>
4044 if Parent_Installed then
4045 Remove_Parent;
4046 end if;
4047
4048 if Env_Installed then
4049 Restore_Env;
4050 end if;
4051
4052 Style_Check := Save_Style_Check;
4053 end Analyze_Package_Instantiation;
4054
4055 --------------------------
4056 -- Inline_Instance_Body --
4057 --------------------------
4058
4059 procedure Inline_Instance_Body
4060 (N : Node_Id;
4061 Gen_Unit : Entity_Id;
4062 Act_Decl : Node_Id)
4063 is
4064 Vis : Boolean;
4065 Gen_Comp : constant Entity_Id :=
4066 Cunit_Entity (Get_Source_Unit (Gen_Unit));
4067 Curr_Comp : constant Node_Id := Cunit (Current_Sem_Unit);
4068 Curr_Scope : Entity_Id := Empty;
4069 Curr_Unit : constant Entity_Id := Cunit_Entity (Current_Sem_Unit);
4070 Removed : Boolean := False;
4071 Num_Scopes : Int := 0;
4072
4073 Scope_Stack_Depth : constant Int :=
4074 Scope_Stack.Last - Scope_Stack.First + 1;
4075
4076 Use_Clauses : array (1 .. Scope_Stack_Depth) of Node_Id;
4077 Instances : array (1 .. Scope_Stack_Depth) of Entity_Id;
4078 Inner_Scopes : array (1 .. Scope_Stack_Depth) of Entity_Id;
4079 Num_Inner : Int := 0;
4080 N_Instances : Int := 0;
4081 S : Entity_Id;
4082
4083 begin
4084 -- Case of generic unit defined in another unit. We must remove the
4085 -- complete context of the current unit to install that of the generic.
4086
4087 if Gen_Comp /= Cunit_Entity (Current_Sem_Unit) then
4088
4089 -- Add some comments for the following two loops ???
4090
4091 S := Current_Scope;
4092 while Present (S) and then S /= Standard_Standard loop
4093 loop
4094 Num_Scopes := Num_Scopes + 1;
4095
4096 Use_Clauses (Num_Scopes) :=
4097 (Scope_Stack.Table
4098 (Scope_Stack.Last - Num_Scopes + 1).
4099 First_Use_Clause);
4100 End_Use_Clauses (Use_Clauses (Num_Scopes));
4101
4102 exit when Scope_Stack.Last - Num_Scopes + 1 = Scope_Stack.First
4103 or else Scope_Stack.Table
4104 (Scope_Stack.Last - Num_Scopes).Entity
4105 = Scope (S);
4106 end loop;
4107
4108 exit when Is_Generic_Instance (S)
4109 and then (In_Package_Body (S)
4110 or else Ekind (S) = E_Procedure
4111 or else Ekind (S) = E_Function);
4112 S := Scope (S);
4113 end loop;
4114
4115 Vis := Is_Immediately_Visible (Gen_Comp);
4116
4117 -- Find and save all enclosing instances
4118
4119 S := Current_Scope;
4120
4121 while Present (S)
4122 and then S /= Standard_Standard
4123 loop
4124 if Is_Generic_Instance (S) then
4125 N_Instances := N_Instances + 1;
4126 Instances (N_Instances) := S;
4127
4128 exit when In_Package_Body (S);
4129 end if;
4130
4131 S := Scope (S);
4132 end loop;
4133
4134 -- Remove context of current compilation unit, unless we are within a
4135 -- nested package instantiation, in which case the context has been
4136 -- removed previously.
4137
4138 -- If current scope is the body of a child unit, remove context of
4139 -- spec as well. If an enclosing scope is an instance body, the
4140 -- context has already been removed, but the entities in the body
4141 -- must be made invisible as well.
4142
4143 S := Current_Scope;
4144
4145 while Present (S)
4146 and then S /= Standard_Standard
4147 loop
4148 if Is_Generic_Instance (S)
4149 and then (In_Package_Body (S)
4150 or else Ekind (S) = E_Procedure
4151 or else Ekind (S) = E_Function)
4152 then
4153 -- We still have to remove the entities of the enclosing
4154 -- instance from direct visibility.
4155
4156 declare
4157 E : Entity_Id;
4158 begin
4159 E := First_Entity (S);
4160 while Present (E) loop
4161 Set_Is_Immediately_Visible (E, False);
4162 Next_Entity (E);
4163 end loop;
4164 end;
4165
4166 exit;
4167 end if;
4168
4169 if S = Curr_Unit
4170 or else (Ekind (Curr_Unit) = E_Package_Body
4171 and then S = Spec_Entity (Curr_Unit))
4172 or else (Ekind (Curr_Unit) = E_Subprogram_Body
4173 and then S =
4174 Corresponding_Spec
4175 (Unit_Declaration_Node (Curr_Unit)))
4176 then
4177 Removed := True;
4178
4179 -- Remove entities in current scopes from visibility, so that
4180 -- instance body is compiled in a clean environment.
4181
4182 Save_Scope_Stack (Handle_Use => False);
4183
4184 if Is_Child_Unit (S) then
4185
4186 -- Remove child unit from stack, as well as inner scopes.
4187 -- Removing the context of a child unit removes parent units
4188 -- as well.
4189
4190 while Current_Scope /= S loop
4191 Num_Inner := Num_Inner + 1;
4192 Inner_Scopes (Num_Inner) := Current_Scope;
4193 Pop_Scope;
4194 end loop;
4195
4196 Pop_Scope;
4197 Remove_Context (Curr_Comp);
4198 Curr_Scope := S;
4199
4200 else
4201 Remove_Context (Curr_Comp);
4202 end if;
4203
4204 if Ekind (Curr_Unit) = E_Package_Body then
4205 Remove_Context (Library_Unit (Curr_Comp));
4206 end if;
4207 end if;
4208
4209 S := Scope (S);
4210 end loop;
4211 pragma Assert (Num_Inner < Num_Scopes);
4212
4213 Push_Scope (Standard_Standard);
4214 Scope_Stack.Table (Scope_Stack.Last).Is_Active_Stack_Base := True;
4215 Instantiate_Package_Body
4216 (Body_Info =>
4217 ((Inst_Node => N,
4218 Act_Decl => Act_Decl,
4219 Expander_Status => Expander_Active,
4220 Current_Sem_Unit => Current_Sem_Unit,
4221 Scope_Suppress => Scope_Suppress,
4222 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
4223 Version => Ada_Version)),
4224 Inlined_Body => True);
4225
4226 Pop_Scope;
4227
4228 -- Restore context
4229
4230 Set_Is_Immediately_Visible (Gen_Comp, Vis);
4231
4232 -- Reset Generic_Instance flag so that use clauses can be installed
4233 -- in the proper order. (See Use_One_Package for effect of enclosing
4234 -- instances on processing of use clauses).
4235
4236 for J in 1 .. N_Instances loop
4237 Set_Is_Generic_Instance (Instances (J), False);
4238 end loop;
4239
4240 if Removed then
4241 Install_Context (Curr_Comp);
4242
4243 if Present (Curr_Scope)
4244 and then Is_Child_Unit (Curr_Scope)
4245 then
4246 Push_Scope (Curr_Scope);
4247 Set_Is_Immediately_Visible (Curr_Scope);
4248
4249 -- Finally, restore inner scopes as well
4250
4251 for J in reverse 1 .. Num_Inner loop
4252 Push_Scope (Inner_Scopes (J));
4253 end loop;
4254 end if;
4255
4256 Restore_Scope_Stack (Handle_Use => False);
4257
4258 if Present (Curr_Scope)
4259 and then
4260 (In_Private_Part (Curr_Scope)
4261 or else In_Package_Body (Curr_Scope))
4262 then
4263 -- Install private declaration of ancestor units, which are
4264 -- currently available. Restore_Scope_Stack and Install_Context
4265 -- only install the visible part of parents.
4266
4267 declare
4268 Par : Entity_Id;
4269 begin
4270 Par := Scope (Curr_Scope);
4271 while (Present (Par))
4272 and then Par /= Standard_Standard
4273 loop
4274 Install_Private_Declarations (Par);
4275 Par := Scope (Par);
4276 end loop;
4277 end;
4278 end if;
4279 end if;
4280
4281 -- Restore use clauses. For a child unit, use clauses in the parents
4282 -- are restored when installing the context, so only those in inner
4283 -- scopes (and those local to the child unit itself) need to be
4284 -- installed explicitly.
4285
4286 if Is_Child_Unit (Curr_Unit)
4287 and then Removed
4288 then
4289 for J in reverse 1 .. Num_Inner + 1 loop
4290 Scope_Stack.Table (Scope_Stack.Last - J + 1).First_Use_Clause :=
4291 Use_Clauses (J);
4292 Install_Use_Clauses (Use_Clauses (J));
4293 end loop;
4294
4295 else
4296 for J in reverse 1 .. Num_Scopes loop
4297 Scope_Stack.Table (Scope_Stack.Last - J + 1).First_Use_Clause :=
4298 Use_Clauses (J);
4299 Install_Use_Clauses (Use_Clauses (J));
4300 end loop;
4301 end if;
4302
4303 -- Restore status of instances. If one of them is a body, make
4304 -- its local entities visible again.
4305
4306 declare
4307 E : Entity_Id;
4308 Inst : Entity_Id;
4309
4310 begin
4311 for J in 1 .. N_Instances loop
4312 Inst := Instances (J);
4313 Set_Is_Generic_Instance (Inst, True);
4314
4315 if In_Package_Body (Inst)
4316 or else Ekind (S) = E_Procedure
4317 or else Ekind (S) = E_Function
4318 then
4319 E := First_Entity (Instances (J));
4320 while Present (E) loop
4321 Set_Is_Immediately_Visible (E);
4322 Next_Entity (E);
4323 end loop;
4324 end if;
4325 end loop;
4326 end;
4327
4328 -- If generic unit is in current unit, current context is correct
4329
4330 else
4331 Instantiate_Package_Body
4332 (Body_Info =>
4333 ((Inst_Node => N,
4334 Act_Decl => Act_Decl,
4335 Expander_Status => Expander_Active,
4336 Current_Sem_Unit => Current_Sem_Unit,
4337 Scope_Suppress => Scope_Suppress,
4338 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
4339 Version => Ada_Version)),
4340 Inlined_Body => True);
4341 end if;
4342 end Inline_Instance_Body;
4343
4344 -------------------------------------
4345 -- Analyze_Procedure_Instantiation --
4346 -------------------------------------
4347
4348 procedure Analyze_Procedure_Instantiation (N : Node_Id) is
4349 begin
4350 Analyze_Subprogram_Instantiation (N, E_Procedure);
4351 end Analyze_Procedure_Instantiation;
4352
4353 -----------------------------------
4354 -- Need_Subprogram_Instance_Body --
4355 -----------------------------------
4356
4357 function Need_Subprogram_Instance_Body
4358 (N : Node_Id;
4359 Subp : Entity_Id) return Boolean
4360 is
4361 begin
4362 if (Is_In_Main_Unit (N)
4363 or else Is_Inlined (Subp)
4364 or else Is_Inlined (Alias (Subp)))
4365 and then (Operating_Mode = Generate_Code
4366 or else (Operating_Mode = Check_Semantics
4367 and then ASIS_Mode))
4368 and then (Full_Expander_Active or else ASIS_Mode)
4369 and then not ABE_Is_Certain (N)
4370 and then not Is_Eliminated (Subp)
4371 then
4372 Pending_Instantiations.Append
4373 ((Inst_Node => N,
4374 Act_Decl => Unit_Declaration_Node (Subp),
4375 Expander_Status => Expander_Active,
4376 Current_Sem_Unit => Current_Sem_Unit,
4377 Scope_Suppress => Scope_Suppress,
4378 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
4379 Version => Ada_Version));
4380 return True;
4381
4382 else
4383 return False;
4384 end if;
4385 end Need_Subprogram_Instance_Body;
4386
4387 --------------------------------------
4388 -- Analyze_Subprogram_Instantiation --
4389 --------------------------------------
4390
4391 procedure Analyze_Subprogram_Instantiation
4392 (N : Node_Id;
4393 K : Entity_Kind)
4394 is
4395 Loc : constant Source_Ptr := Sloc (N);
4396 Gen_Id : constant Node_Id := Name (N);
4397
4398 Anon_Id : constant Entity_Id :=
4399 Make_Defining_Identifier (Sloc (Defining_Entity (N)),
4400 Chars => New_External_Name
4401 (Chars (Defining_Entity (N)), 'R'));
4402
4403 Act_Decl_Id : Entity_Id;
4404 Act_Decl : Node_Id;
4405 Act_Spec : Node_Id;
4406 Act_Tree : Node_Id;
4407
4408 Env_Installed : Boolean := False;
4409 Gen_Unit : Entity_Id;
4410 Gen_Decl : Node_Id;
4411 Pack_Id : Entity_Id;
4412 Parent_Installed : Boolean := False;
4413 Renaming_List : List_Id;
4414
4415 procedure Analyze_Instance_And_Renamings;
4416 -- The instance must be analyzed in a context that includes the mappings
4417 -- of generic parameters into actuals. We create a package declaration
4418 -- for this purpose, and a subprogram with an internal name within the
4419 -- package. The subprogram instance is simply an alias for the internal
4420 -- subprogram, declared in the current scope.
4421
4422 ------------------------------------
4423 -- Analyze_Instance_And_Renamings --
4424 ------------------------------------
4425
4426 procedure Analyze_Instance_And_Renamings is
4427 Def_Ent : constant Entity_Id := Defining_Entity (N);
4428 Pack_Decl : Node_Id;
4429
4430 begin
4431 if Nkind (Parent (N)) = N_Compilation_Unit then
4432
4433 -- For the case of a compilation unit, the container package has
4434 -- the same name as the instantiation, to insure that the binder
4435 -- calls the elaboration procedure with the right name. Copy the
4436 -- entity of the instance, which may have compilation level flags
4437 -- (e.g. Is_Child_Unit) set.
4438
4439 Pack_Id := New_Copy (Def_Ent);
4440
4441 else
4442 -- Otherwise we use the name of the instantiation concatenated
4443 -- with its source position to ensure uniqueness if there are
4444 -- several instantiations with the same name.
4445
4446 Pack_Id :=
4447 Make_Defining_Identifier (Loc,
4448 Chars => New_External_Name
4449 (Related_Id => Chars (Def_Ent),
4450 Suffix => "GP",
4451 Suffix_Index => Source_Offset (Sloc (Def_Ent))));
4452 end if;
4453
4454 Pack_Decl := Make_Package_Declaration (Loc,
4455 Specification => Make_Package_Specification (Loc,
4456 Defining_Unit_Name => Pack_Id,
4457 Visible_Declarations => Renaming_List,
4458 End_Label => Empty));
4459
4460 Set_Instance_Spec (N, Pack_Decl);
4461 Set_Is_Generic_Instance (Pack_Id);
4462 Set_Debug_Info_Needed (Pack_Id);
4463
4464 -- Case of not a compilation unit
4465
4466 if Nkind (Parent (N)) /= N_Compilation_Unit then
4467 Mark_Rewrite_Insertion (Pack_Decl);
4468 Insert_Before (N, Pack_Decl);
4469 Set_Has_Completion (Pack_Id);
4470
4471 -- Case of an instantiation that is a compilation unit
4472
4473 -- Place declaration on current node so context is complete for
4474 -- analysis (including nested instantiations), and for use in a
4475 -- context_clause (see Analyze_With_Clause).
4476
4477 else
4478 Set_Unit (Parent (N), Pack_Decl);
4479 Set_Parent_Spec (Pack_Decl, Parent_Spec (N));
4480 end if;
4481
4482 Analyze (Pack_Decl);
4483 Check_Formal_Packages (Pack_Id);
4484 Set_Is_Generic_Instance (Pack_Id, False);
4485
4486 -- Why do we clear Is_Generic_Instance??? We set it 20 lines
4487 -- above???
4488
4489 -- Body of the enclosing package is supplied when instantiating the
4490 -- subprogram body, after semantic analysis is completed.
4491
4492 if Nkind (Parent (N)) = N_Compilation_Unit then
4493
4494 -- Remove package itself from visibility, so it does not
4495 -- conflict with subprogram.
4496
4497 Set_Name_Entity_Id (Chars (Pack_Id), Homonym (Pack_Id));
4498
4499 -- Set name and scope of internal subprogram so that the proper
4500 -- external name will be generated. The proper scope is the scope
4501 -- of the wrapper package. We need to generate debugging info for
4502 -- the internal subprogram, so set flag accordingly.
4503
4504 Set_Chars (Anon_Id, Chars (Defining_Entity (N)));
4505 Set_Scope (Anon_Id, Scope (Pack_Id));
4506
4507 -- Mark wrapper package as referenced, to avoid spurious warnings
4508 -- if the instantiation appears in various with_ clauses of
4509 -- subunits of the main unit.
4510
4511 Set_Referenced (Pack_Id);
4512 end if;
4513
4514 Set_Is_Generic_Instance (Anon_Id);
4515 Set_Debug_Info_Needed (Anon_Id);
4516 Act_Decl_Id := New_Copy (Anon_Id);
4517
4518 Set_Parent (Act_Decl_Id, Parent (Anon_Id));
4519 Set_Chars (Act_Decl_Id, Chars (Defining_Entity (N)));
4520 Set_Sloc (Act_Decl_Id, Sloc (Defining_Entity (N)));
4521 Set_Comes_From_Source (Act_Decl_Id, True);
4522
4523 -- The signature may involve types that are not frozen yet, but the
4524 -- subprogram will be frozen at the point the wrapper package is
4525 -- frozen, so it does not need its own freeze node. In fact, if one
4526 -- is created, it might conflict with the freezing actions from the
4527 -- wrapper package.
4528
4529 Set_Has_Delayed_Freeze (Anon_Id, False);
4530
4531 -- If the instance is a child unit, mark the Id accordingly. Mark
4532 -- the anonymous entity as well, which is the real subprogram and
4533 -- which is used when the instance appears in a context clause.
4534 -- Similarly, propagate the Is_Eliminated flag to handle properly
4535 -- nested eliminated subprograms.
4536
4537 Set_Is_Child_Unit (Act_Decl_Id, Is_Child_Unit (Defining_Entity (N)));
4538 Set_Is_Child_Unit (Anon_Id, Is_Child_Unit (Defining_Entity (N)));
4539 New_Overloaded_Entity (Act_Decl_Id);
4540 Check_Eliminated (Act_Decl_Id);
4541 Set_Is_Eliminated (Anon_Id, Is_Eliminated (Act_Decl_Id));
4542
4543 -- In compilation unit case, kill elaboration checks on the
4544 -- instantiation, since they are never needed -- the body is
4545 -- instantiated at the same point as the spec.
4546
4547 if Nkind (Parent (N)) = N_Compilation_Unit then
4548 Set_Suppress_Elaboration_Warnings (Act_Decl_Id);
4549 Set_Kill_Elaboration_Checks (Act_Decl_Id);
4550 Set_Is_Compilation_Unit (Anon_Id);
4551
4552 Set_Cunit_Entity (Current_Sem_Unit, Pack_Id);
4553 end if;
4554
4555 -- The instance is not a freezing point for the new subprogram
4556
4557 Set_Is_Frozen (Act_Decl_Id, False);
4558
4559 if Nkind (Defining_Entity (N)) = N_Defining_Operator_Symbol then
4560 Valid_Operator_Definition (Act_Decl_Id);
4561 end if;
4562
4563 Set_Alias (Act_Decl_Id, Anon_Id);
4564 Set_Parent (Act_Decl_Id, Parent (Anon_Id));
4565 Set_Has_Completion (Act_Decl_Id);
4566 Set_Related_Instance (Pack_Id, Act_Decl_Id);
4567
4568 if Nkind (Parent (N)) = N_Compilation_Unit then
4569 Set_Body_Required (Parent (N), False);
4570 end if;
4571 end Analyze_Instance_And_Renamings;
4572
4573 -- Local variables
4574
4575 Vis_Prims_List : Elist_Id := No_Elist;
4576 -- List of primitives made temporarily visible in the instantiation
4577 -- to match the visibility of the formal type
4578
4579 -- Start of processing for Analyze_Subprogram_Instantiation
4580
4581 begin
4582 Check_SPARK_Restriction ("generic is not allowed", N);
4583
4584 -- Very first thing: apply the special kludge for Text_IO processing
4585 -- in case we are instantiating one of the children of [Wide_]Text_IO.
4586 -- Of course such an instantiation is bogus (these are packages, not
4587 -- subprograms), but we get a better error message if we do this.
4588
4589 Text_IO_Kludge (Gen_Id);
4590
4591 -- Make node global for error reporting
4592
4593 Instantiation_Node := N;
4594
4595 -- For package instantiations we turn off style checks, because they
4596 -- will have been emitted in the generic. For subprogram instantiations
4597 -- we want to apply at least the check on overriding indicators so we
4598 -- do not modify the style check status.
4599
4600 -- The renaming declarations for the actuals do not come from source and
4601 -- will not generate spurious warnings.
4602
4603 Preanalyze_Actuals (N);
4604
4605 Init_Env;
4606 Env_Installed := True;
4607 Check_Generic_Child_Unit (Gen_Id, Parent_Installed);
4608 Gen_Unit := Entity (Gen_Id);
4609
4610 Generate_Reference (Gen_Unit, Gen_Id);
4611
4612 if Nkind (Gen_Id) = N_Identifier
4613 and then Chars (Gen_Unit) = Chars (Defining_Entity (N))
4614 then
4615 Error_Msg_NE
4616 ("& is hidden within declaration of instance", Gen_Id, Gen_Unit);
4617 end if;
4618
4619 if Etype (Gen_Unit) = Any_Type then
4620 Restore_Env;
4621 return;
4622 end if;
4623
4624 -- Verify that it is a generic subprogram of the right kind, and that
4625 -- it does not lead to a circular instantiation.
4626
4627 if not Ekind_In (Gen_Unit, E_Generic_Procedure, E_Generic_Function) then
4628 Error_Msg_N ("expect generic subprogram in instantiation", Gen_Id);
4629
4630 elsif In_Open_Scopes (Gen_Unit) then
4631 Error_Msg_NE ("instantiation of & within itself", N, Gen_Unit);
4632
4633 elsif K = E_Procedure
4634 and then Ekind (Gen_Unit) /= E_Generic_Procedure
4635 then
4636 if Ekind (Gen_Unit) = E_Generic_Function then
4637 Error_Msg_N
4638 ("cannot instantiate generic function as procedure", Gen_Id);
4639 else
4640 Error_Msg_N
4641 ("expect name of generic procedure in instantiation", Gen_Id);
4642 end if;
4643
4644 elsif K = E_Function
4645 and then Ekind (Gen_Unit) /= E_Generic_Function
4646 then
4647 if Ekind (Gen_Unit) = E_Generic_Procedure then
4648 Error_Msg_N
4649 ("cannot instantiate generic procedure as function", Gen_Id);
4650 else
4651 Error_Msg_N
4652 ("expect name of generic function in instantiation", Gen_Id);
4653 end if;
4654
4655 else
4656 Set_Entity (Gen_Id, Gen_Unit);
4657 Set_Is_Instantiated (Gen_Unit);
4658
4659 if In_Extended_Main_Source_Unit (N) then
4660 Generate_Reference (Gen_Unit, N);
4661 end if;
4662
4663 -- If renaming, get original unit
4664
4665 if Present (Renamed_Object (Gen_Unit))
4666 and then (Ekind (Renamed_Object (Gen_Unit)) = E_Generic_Procedure
4667 or else
4668 Ekind (Renamed_Object (Gen_Unit)) = E_Generic_Function)
4669 then
4670 Gen_Unit := Renamed_Object (Gen_Unit);
4671 Set_Is_Instantiated (Gen_Unit);
4672 Generate_Reference (Gen_Unit, N);
4673 end if;
4674
4675 if Contains_Instance_Of (Gen_Unit, Current_Scope, Gen_Id) then
4676 Error_Msg_Node_2 := Current_Scope;
4677 Error_Msg_NE
4678 ("circular Instantiation: & instantiated in &!", N, Gen_Unit);
4679 Circularity_Detected := True;
4680 Restore_Hidden_Primitives (Vis_Prims_List);
4681 goto Leave;
4682 end if;
4683
4684 Gen_Decl := Unit_Declaration_Node (Gen_Unit);
4685
4686 -- Initialize renamings map, for error checking
4687
4688 Generic_Renamings.Set_Last (0);
4689 Generic_Renamings_HTable.Reset;
4690
4691 Create_Instantiation_Source (N, Gen_Unit, False, S_Adjustment);
4692
4693 -- Copy original generic tree, to produce text for instantiation
4694
4695 Act_Tree :=
4696 Copy_Generic_Node
4697 (Original_Node (Gen_Decl), Empty, Instantiating => True);
4698
4699 -- Inherit overriding indicator from instance node
4700
4701 Act_Spec := Specification (Act_Tree);
4702 Set_Must_Override (Act_Spec, Must_Override (N));
4703 Set_Must_Not_Override (Act_Spec, Must_Not_Override (N));
4704
4705 Renaming_List :=
4706 Analyze_Associations
4707 (I_Node => N,
4708 Formals => Generic_Formal_Declarations (Act_Tree),
4709 F_Copy => Generic_Formal_Declarations (Gen_Decl));
4710
4711 Vis_Prims_List := Check_Hidden_Primitives (Renaming_List);
4712
4713 -- The subprogram itself cannot contain a nested instance, so the
4714 -- current parent is left empty.
4715
4716 Set_Instance_Env (Gen_Unit, Empty);
4717
4718 -- Build the subprogram declaration, which does not appear in the
4719 -- generic template, and give it a sloc consistent with that of the
4720 -- template.
4721
4722 Set_Defining_Unit_Name (Act_Spec, Anon_Id);
4723 Set_Generic_Parent (Act_Spec, Gen_Unit);
4724 Act_Decl :=
4725 Make_Subprogram_Declaration (Sloc (Act_Spec),
4726 Specification => Act_Spec);
4727
4728 -- The aspects have been copied previously, but they have to be
4729 -- linked explicitly to the new subprogram declaration. Explicit
4730 -- pre/postconditions on the instance are analyzed below, in a
4731 -- separate step.
4732
4733 Move_Aspects (Act_Tree, Act_Decl);
4734 Set_Categorization_From_Pragmas (Act_Decl);
4735
4736 if Parent_Installed then
4737 Hide_Current_Scope;
4738 end if;
4739
4740 Append (Act_Decl, Renaming_List);
4741 Analyze_Instance_And_Renamings;
4742
4743 -- If the generic is marked Import (Intrinsic), then so is the
4744 -- instance. This indicates that there is no body to instantiate. If
4745 -- generic is marked inline, so it the instance, and the anonymous
4746 -- subprogram it renames. If inlined, or else if inlining is enabled
4747 -- for the compilation, we generate the instance body even if it is
4748 -- not within the main unit.
4749
4750 if Is_Intrinsic_Subprogram (Gen_Unit) then
4751 Set_Is_Intrinsic_Subprogram (Anon_Id);
4752 Set_Is_Intrinsic_Subprogram (Act_Decl_Id);
4753
4754 if Chars (Gen_Unit) = Name_Unchecked_Conversion then
4755 Validate_Unchecked_Conversion (N, Act_Decl_Id);
4756 end if;
4757 end if;
4758
4759 -- Inherit convention from generic unit. Intrinsic convention, as for
4760 -- an instance of unchecked conversion, is not inherited because an
4761 -- explicit Ada instance has been created.
4762
4763 if Has_Convention_Pragma (Gen_Unit)
4764 and then Convention (Gen_Unit) /= Convention_Intrinsic
4765 then
4766 Set_Convention (Act_Decl_Id, Convention (Gen_Unit));
4767 Set_Is_Exported (Act_Decl_Id, Is_Exported (Gen_Unit));
4768 end if;
4769
4770 Generate_Definition (Act_Decl_Id);
4771 -- Set_Contract (Anon_Id, Make_Contract (Sloc (Anon_Id)));
4772 -- ??? needed?
4773 Set_Contract (Act_Decl_Id, Make_Contract (Sloc (Act_Decl_Id)));
4774
4775 -- Inherit all inlining-related flags which apply to the generic in
4776 -- the subprogram and its declaration.
4777
4778 Set_Is_Inlined (Act_Decl_Id, Is_Inlined (Gen_Unit));
4779 Set_Is_Inlined (Anon_Id, Is_Inlined (Gen_Unit));
4780
4781 Set_Has_Pragma_Inline (Act_Decl_Id, Has_Pragma_Inline (Gen_Unit));
4782 Set_Has_Pragma_Inline (Anon_Id, Has_Pragma_Inline (Gen_Unit));
4783
4784 Set_Has_Pragma_Inline_Always
4785 (Act_Decl_Id, Has_Pragma_Inline_Always (Gen_Unit));
4786 Set_Has_Pragma_Inline_Always
4787 (Anon_Id, Has_Pragma_Inline_Always (Gen_Unit));
4788
4789 if not Is_Intrinsic_Subprogram (Gen_Unit) then
4790 Check_Elab_Instantiation (N);
4791 end if;
4792
4793 if Is_Dispatching_Operation (Act_Decl_Id)
4794 and then Ada_Version >= Ada_2005
4795 then
4796 declare
4797 Formal : Entity_Id;
4798
4799 begin
4800 Formal := First_Formal (Act_Decl_Id);
4801 while Present (Formal) loop
4802 if Ekind (Etype (Formal)) = E_Anonymous_Access_Type
4803 and then Is_Controlling_Formal (Formal)
4804 and then not Can_Never_Be_Null (Formal)
4805 then
4806 Error_Msg_NE ("access parameter& is controlling,",
4807 N, Formal);
4808 Error_Msg_NE
4809 ("\corresponding parameter of & must be"
4810 & " explicitly null-excluding", N, Gen_Id);
4811 end if;
4812
4813 Next_Formal (Formal);
4814 end loop;
4815 end;
4816 end if;
4817
4818 Check_Hidden_Child_Unit (N, Gen_Unit, Act_Decl_Id);
4819
4820 Validate_Categorization_Dependency (N, Act_Decl_Id);
4821
4822 if not Is_Intrinsic_Subprogram (Act_Decl_Id) then
4823 Inherit_Context (Gen_Decl, N);
4824
4825 Restore_Private_Views (Pack_Id, False);
4826
4827 -- If the context requires a full instantiation, mark node for
4828 -- subsequent construction of the body.
4829
4830 if Need_Subprogram_Instance_Body (N, Act_Decl_Id) then
4831
4832 Check_Forward_Instantiation (Gen_Decl);
4833
4834 -- The wrapper package is always delayed, because it does not
4835 -- constitute a freeze point, but to insure that the freeze
4836 -- node is placed properly, it is created directly when
4837 -- instantiating the body (otherwise the freeze node might
4838 -- appear to early for nested instantiations).
4839
4840 elsif Nkind (Parent (N)) = N_Compilation_Unit then
4841
4842 -- For ASIS purposes, indicate that the wrapper package has
4843 -- replaced the instantiation node.
4844
4845 Rewrite (N, Unit (Parent (N)));
4846 Set_Unit (Parent (N), N);
4847 end if;
4848
4849 elsif Nkind (Parent (N)) = N_Compilation_Unit then
4850
4851 -- Replace instance node for library-level instantiations of
4852 -- intrinsic subprograms, for ASIS use.
4853
4854 Rewrite (N, Unit (Parent (N)));
4855 Set_Unit (Parent (N), N);
4856 end if;
4857
4858 if Parent_Installed then
4859 Remove_Parent;
4860 end if;
4861
4862 Restore_Hidden_Primitives (Vis_Prims_List);
4863 Restore_Env;
4864 Env_Installed := False;
4865 Generic_Renamings.Set_Last (0);
4866 Generic_Renamings_HTable.Reset;
4867 end if;
4868
4869 <<Leave>>
4870 if Has_Aspects (N) then
4871 Analyze_Aspect_Specifications (N, Act_Decl_Id);
4872 end if;
4873
4874 exception
4875 when Instantiation_Error =>
4876 if Parent_Installed then
4877 Remove_Parent;
4878 end if;
4879
4880 if Env_Installed then
4881 Restore_Env;
4882 end if;
4883 end Analyze_Subprogram_Instantiation;
4884
4885 -------------------------
4886 -- Get_Associated_Node --
4887 -------------------------
4888
4889 function Get_Associated_Node (N : Node_Id) return Node_Id is
4890 Assoc : Node_Id;
4891
4892 begin
4893 Assoc := Associated_Node (N);
4894
4895 if Nkind (Assoc) /= Nkind (N) then
4896 return Assoc;
4897
4898 elsif Nkind_In (Assoc, N_Aggregate, N_Extension_Aggregate) then
4899 return Assoc;
4900
4901 else
4902 -- If the node is part of an inner generic, it may itself have been
4903 -- remapped into a further generic copy. Associated_Node is otherwise
4904 -- used for the entity of the node, and will be of a different node
4905 -- kind, or else N has been rewritten as a literal or function call.
4906
4907 while Present (Associated_Node (Assoc))
4908 and then Nkind (Associated_Node (Assoc)) = Nkind (Assoc)
4909 loop
4910 Assoc := Associated_Node (Assoc);
4911 end loop;
4912
4913 -- Follow and additional link in case the final node was rewritten.
4914 -- This can only happen with nested generic units.
4915
4916 if (Nkind (Assoc) = N_Identifier or else Nkind (Assoc) in N_Op)
4917 and then Present (Associated_Node (Assoc))
4918 and then (Nkind_In (Associated_Node (Assoc), N_Function_Call,
4919 N_Explicit_Dereference,
4920 N_Integer_Literal,
4921 N_Real_Literal,
4922 N_String_Literal))
4923 then
4924 Assoc := Associated_Node (Assoc);
4925 end if;
4926
4927 return Assoc;
4928 end if;
4929 end Get_Associated_Node;
4930
4931 -------------------------------------------
4932 -- Build_Instance_Compilation_Unit_Nodes --
4933 -------------------------------------------
4934
4935 procedure Build_Instance_Compilation_Unit_Nodes
4936 (N : Node_Id;
4937 Act_Body : Node_Id;
4938 Act_Decl : Node_Id)
4939 is
4940 Decl_Cunit : Node_Id;
4941 Body_Cunit : Node_Id;
4942 Citem : Node_Id;
4943 New_Main : constant Entity_Id := Defining_Entity (Act_Decl);
4944 Old_Main : constant Entity_Id := Cunit_Entity (Main_Unit);
4945
4946 begin
4947 -- A new compilation unit node is built for the instance declaration
4948
4949 Decl_Cunit :=
4950 Make_Compilation_Unit (Sloc (N),
4951 Context_Items => Empty_List,
4952 Unit => Act_Decl,
4953 Aux_Decls_Node =>
4954 Make_Compilation_Unit_Aux (Sloc (N)));
4955
4956 Set_Parent_Spec (Act_Decl, Parent_Spec (N));
4957
4958 -- The new compilation unit is linked to its body, but both share the
4959 -- same file, so we do not set Body_Required on the new unit so as not
4960 -- to create a spurious dependency on a non-existent body in the ali.
4961 -- This simplifies CodePeer unit traversal.
4962
4963 -- We use the original instantiation compilation unit as the resulting
4964 -- compilation unit of the instance, since this is the main unit.
4965
4966 Rewrite (N, Act_Body);
4967 Body_Cunit := Parent (N);
4968
4969 -- The two compilation unit nodes are linked by the Library_Unit field
4970
4971 Set_Library_Unit (Decl_Cunit, Body_Cunit);
4972 Set_Library_Unit (Body_Cunit, Decl_Cunit);
4973
4974 -- Preserve the private nature of the package if needed
4975
4976 Set_Private_Present (Decl_Cunit, Private_Present (Body_Cunit));
4977
4978 -- If the instance is not the main unit, its context, categorization
4979 -- and elaboration entity are not relevant to the compilation.
4980
4981 if Body_Cunit /= Cunit (Main_Unit) then
4982 Make_Instance_Unit (Body_Cunit, In_Main => False);
4983 return;
4984 end if;
4985
4986 -- The context clause items on the instantiation, which are now attached
4987 -- to the body compilation unit (since the body overwrote the original
4988 -- instantiation node), semantically belong on the spec, so copy them
4989 -- there. It's harmless to leave them on the body as well. In fact one
4990 -- could argue that they belong in both places.
4991
4992 Citem := First (Context_Items (Body_Cunit));
4993 while Present (Citem) loop
4994 Append (New_Copy (Citem), Context_Items (Decl_Cunit));
4995 Next (Citem);
4996 end loop;
4997
4998 -- Propagate categorization flags on packages, so that they appear in
4999 -- the ali file for the spec of the unit.
5000
5001 if Ekind (New_Main) = E_Package then
5002 Set_Is_Pure (Old_Main, Is_Pure (New_Main));
5003 Set_Is_Preelaborated (Old_Main, Is_Preelaborated (New_Main));
5004 Set_Is_Remote_Types (Old_Main, Is_Remote_Types (New_Main));
5005 Set_Is_Shared_Passive (Old_Main, Is_Shared_Passive (New_Main));
5006 Set_Is_Remote_Call_Interface
5007 (Old_Main, Is_Remote_Call_Interface (New_Main));
5008 end if;
5009
5010 -- Make entry in Units table, so that binder can generate call to
5011 -- elaboration procedure for body, if any.
5012
5013 Make_Instance_Unit (Body_Cunit, In_Main => True);
5014 Main_Unit_Entity := New_Main;
5015 Set_Cunit_Entity (Main_Unit, Main_Unit_Entity);
5016
5017 -- Build elaboration entity, since the instance may certainly generate
5018 -- elaboration code requiring a flag for protection.
5019
5020 Build_Elaboration_Entity (Decl_Cunit, New_Main);
5021 end Build_Instance_Compilation_Unit_Nodes;
5022
5023 -----------------------------
5024 -- Check_Access_Definition --
5025 -----------------------------
5026
5027 procedure Check_Access_Definition (N : Node_Id) is
5028 begin
5029 pragma Assert
5030 (Ada_Version >= Ada_2005
5031 and then Present (Access_Definition (N)));
5032 null;
5033 end Check_Access_Definition;
5034
5035 -----------------------------------
5036 -- Check_Formal_Package_Instance --
5037 -----------------------------------
5038
5039 -- If the formal has specific parameters, they must match those of the
5040 -- actual. Both of them are instances, and the renaming declarations for
5041 -- their formal parameters appear in the same order in both. The analyzed
5042 -- formal has been analyzed in the context of the current instance.
5043
5044 procedure Check_Formal_Package_Instance
5045 (Formal_Pack : Entity_Id;
5046 Actual_Pack : Entity_Id)
5047 is
5048 E1 : Entity_Id := First_Entity (Actual_Pack);
5049 E2 : Entity_Id := First_Entity (Formal_Pack);
5050
5051 Expr1 : Node_Id;
5052 Expr2 : Node_Id;
5053
5054 procedure Check_Mismatch (B : Boolean);
5055 -- Common error routine for mismatch between the parameters of the
5056 -- actual instance and those of the formal package.
5057
5058 function Same_Instantiated_Constant (E1, E2 : Entity_Id) return Boolean;
5059 -- The formal may come from a nested formal package, and the actual may
5060 -- have been constant-folded. To determine whether the two denote the
5061 -- same entity we may have to traverse several definitions to recover
5062 -- the ultimate entity that they refer to.
5063
5064 function Same_Instantiated_Variable (E1, E2 : Entity_Id) return Boolean;
5065 -- Similarly, if the formal comes from a nested formal package, the
5066 -- actual may designate the formal through multiple renamings, which
5067 -- have to be followed to determine the original variable in question.
5068
5069 --------------------
5070 -- Check_Mismatch --
5071 --------------------
5072
5073 procedure Check_Mismatch (B : Boolean) is
5074 Kind : constant Node_Kind := Nkind (Parent (E2));
5075
5076 begin
5077 if Kind = N_Formal_Type_Declaration then
5078 return;
5079
5080 elsif Nkind_In (Kind, N_Formal_Object_Declaration,
5081 N_Formal_Package_Declaration)
5082 or else Kind in N_Formal_Subprogram_Declaration
5083 then
5084 null;
5085
5086 elsif B then
5087 Error_Msg_NE
5088 ("actual for & in actual instance does not match formal",
5089 Parent (Actual_Pack), E1);
5090 end if;
5091 end Check_Mismatch;
5092
5093 --------------------------------
5094 -- Same_Instantiated_Constant --
5095 --------------------------------
5096
5097 function Same_Instantiated_Constant
5098 (E1, E2 : Entity_Id) return Boolean
5099 is
5100 Ent : Entity_Id;
5101
5102 begin
5103 Ent := E2;
5104 while Present (Ent) loop
5105 if E1 = Ent then
5106 return True;
5107
5108 elsif Ekind (Ent) /= E_Constant then
5109 return False;
5110
5111 elsif Is_Entity_Name (Constant_Value (Ent)) then
5112 if Entity (Constant_Value (Ent)) = E1 then
5113 return True;
5114 else
5115 Ent := Entity (Constant_Value (Ent));
5116 end if;
5117
5118 -- The actual may be a constant that has been folded. Recover
5119 -- original name.
5120
5121 elsif Is_Entity_Name (Original_Node (Constant_Value (Ent))) then
5122 Ent := Entity (Original_Node (Constant_Value (Ent)));
5123 else
5124 return False;
5125 end if;
5126 end loop;
5127
5128 return False;
5129 end Same_Instantiated_Constant;
5130
5131 --------------------------------
5132 -- Same_Instantiated_Variable --
5133 --------------------------------
5134
5135 function Same_Instantiated_Variable
5136 (E1, E2 : Entity_Id) return Boolean
5137 is
5138 function Original_Entity (E : Entity_Id) return Entity_Id;
5139 -- Follow chain of renamings to the ultimate ancestor
5140
5141 ---------------------
5142 -- Original_Entity --
5143 ---------------------
5144
5145 function Original_Entity (E : Entity_Id) return Entity_Id is
5146 Orig : Entity_Id;
5147
5148 begin
5149 Orig := E;
5150 while Nkind (Parent (Orig)) = N_Object_Renaming_Declaration
5151 and then Present (Renamed_Object (Orig))
5152 and then Is_Entity_Name (Renamed_Object (Orig))
5153 loop
5154 Orig := Entity (Renamed_Object (Orig));
5155 end loop;
5156
5157 return Orig;
5158 end Original_Entity;
5159
5160 -- Start of processing for Same_Instantiated_Variable
5161
5162 begin
5163 return Ekind (E1) = Ekind (E2)
5164 and then Original_Entity (E1) = Original_Entity (E2);
5165 end Same_Instantiated_Variable;
5166
5167 -- Start of processing for Check_Formal_Package_Instance
5168
5169 begin
5170 while Present (E1)
5171 and then Present (E2)
5172 loop
5173 exit when Ekind (E1) = E_Package
5174 and then Renamed_Entity (E1) = Renamed_Entity (Actual_Pack);
5175
5176 -- If the formal is the renaming of the formal package, this
5177 -- is the end of its formal part, which may occur before the
5178 -- end of the formal part in the actual in the presence of
5179 -- defaulted parameters in the formal package.
5180
5181 exit when Nkind (Parent (E2)) = N_Package_Renaming_Declaration
5182 and then Renamed_Entity (E2) = Scope (E2);
5183
5184 -- The analysis of the actual may generate additional internal
5185 -- entities. If the formal is defaulted, there is no corresponding
5186 -- analysis and the internal entities must be skipped, until we
5187 -- find corresponding entities again.
5188
5189 if Comes_From_Source (E2)
5190 and then not Comes_From_Source (E1)
5191 and then Chars (E1) /= Chars (E2)
5192 then
5193 while Present (E1)
5194 and then Chars (E1) /= Chars (E2)
5195 loop
5196 Next_Entity (E1);
5197 end loop;
5198 end if;
5199
5200 if No (E1) then
5201 return;
5202
5203 -- If the formal entity comes from a formal declaration, it was
5204 -- defaulted in the formal package, and no check is needed on it.
5205
5206 elsif Nkind (Parent (E2)) = N_Formal_Object_Declaration then
5207 goto Next_E;
5208
5209 elsif Is_Type (E1) then
5210
5211 -- Subtypes must statically match. E1, E2 are the local entities
5212 -- that are subtypes of the actuals. Itypes generated for other
5213 -- parameters need not be checked, the check will be performed
5214 -- on the parameters themselves.
5215
5216 -- If E2 is a formal type declaration, it is a defaulted parameter
5217 -- and needs no checking.
5218
5219 if not Is_Itype (E1)
5220 and then not Is_Itype (E2)
5221 then
5222 Check_Mismatch
5223 (not Is_Type (E2)
5224 or else Etype (E1) /= Etype (E2)
5225 or else not Subtypes_Statically_Match (E1, E2));
5226 end if;
5227
5228 elsif Ekind (E1) = E_Constant then
5229
5230 -- IN parameters must denote the same static value, or the same
5231 -- constant, or the literal null.
5232
5233 Expr1 := Expression (Parent (E1));
5234
5235 if Ekind (E2) /= E_Constant then
5236 Check_Mismatch (True);
5237 goto Next_E;
5238 else
5239 Expr2 := Expression (Parent (E2));
5240 end if;
5241
5242 if Is_Static_Expression (Expr1) then
5243
5244 if not Is_Static_Expression (Expr2) then
5245 Check_Mismatch (True);
5246
5247 elsif Is_Discrete_Type (Etype (E1)) then
5248 declare
5249 V1 : constant Uint := Expr_Value (Expr1);
5250 V2 : constant Uint := Expr_Value (Expr2);
5251 begin
5252 Check_Mismatch (V1 /= V2);
5253 end;
5254
5255 elsif Is_Real_Type (Etype (E1)) then
5256 declare
5257 V1 : constant Ureal := Expr_Value_R (Expr1);
5258 V2 : constant Ureal := Expr_Value_R (Expr2);
5259 begin
5260 Check_Mismatch (V1 /= V2);
5261 end;
5262
5263 elsif Is_String_Type (Etype (E1))
5264 and then Nkind (Expr1) = N_String_Literal
5265 then
5266 if Nkind (Expr2) /= N_String_Literal then
5267 Check_Mismatch (True);
5268 else
5269 Check_Mismatch
5270 (not String_Equal (Strval (Expr1), Strval (Expr2)));
5271 end if;
5272 end if;
5273
5274 elsif Is_Entity_Name (Expr1) then
5275 if Is_Entity_Name (Expr2) then
5276 if Entity (Expr1) = Entity (Expr2) then
5277 null;
5278 else
5279 Check_Mismatch
5280 (not Same_Instantiated_Constant
5281 (Entity (Expr1), Entity (Expr2)));
5282 end if;
5283 else
5284 Check_Mismatch (True);
5285 end if;
5286
5287 elsif Is_Entity_Name (Original_Node (Expr1))
5288 and then Is_Entity_Name (Expr2)
5289 and then
5290 Same_Instantiated_Constant
5291 (Entity (Original_Node (Expr1)), Entity (Expr2))
5292 then
5293 null;
5294
5295 elsif Nkind (Expr1) = N_Null then
5296 Check_Mismatch (Nkind (Expr1) /= N_Null);
5297
5298 else
5299 Check_Mismatch (True);
5300 end if;
5301
5302 elsif Ekind (E1) = E_Variable then
5303 Check_Mismatch (not Same_Instantiated_Variable (E1, E2));
5304
5305 elsif Ekind (E1) = E_Package then
5306 Check_Mismatch
5307 (Ekind (E1) /= Ekind (E2)
5308 or else Renamed_Object (E1) /= Renamed_Object (E2));
5309
5310 elsif Is_Overloadable (E1) then
5311
5312 -- Verify that the actual subprograms match. Note that actuals
5313 -- that are attributes are rewritten as subprograms. If the
5314 -- subprogram in the formal package is defaulted, no check is
5315 -- needed. Note that this can only happen in Ada 2005 when the
5316 -- formal package can be partially parameterized.
5317
5318 if Nkind (Unit_Declaration_Node (E1)) =
5319 N_Subprogram_Renaming_Declaration
5320 and then From_Default (Unit_Declaration_Node (E1))
5321 then
5322 null;
5323
5324 -- If the formal package has an "others" box association that
5325 -- covers this formal, there is no need for a check either.
5326
5327 elsif Nkind (Unit_Declaration_Node (E2)) in
5328 N_Formal_Subprogram_Declaration
5329 and then Box_Present (Unit_Declaration_Node (E2))
5330 then
5331 null;
5332
5333 -- No check needed if subprogram is a defaulted null procedure
5334
5335 elsif No (Alias (E2))
5336 and then Ekind (E2) = E_Procedure
5337 and then
5338 Null_Present (Specification (Unit_Declaration_Node (E2)))
5339 then
5340 null;
5341
5342 -- Otherwise the actual in the formal and the actual in the
5343 -- instantiation of the formal must match, up to renamings.
5344
5345 else
5346 Check_Mismatch
5347 (Ekind (E2) /= Ekind (E1) or else (Alias (E1)) /= Alias (E2));
5348 end if;
5349
5350 else
5351 raise Program_Error;
5352 end if;
5353
5354 <<Next_E>>
5355 Next_Entity (E1);
5356 Next_Entity (E2);
5357 end loop;
5358 end Check_Formal_Package_Instance;
5359
5360 ---------------------------
5361 -- Check_Formal_Packages --
5362 ---------------------------
5363
5364 procedure Check_Formal_Packages (P_Id : Entity_Id) is
5365 E : Entity_Id;
5366 Formal_P : Entity_Id;
5367
5368 begin
5369 -- Iterate through the declarations in the instance, looking for package
5370 -- renaming declarations that denote instances of formal packages. Stop
5371 -- when we find the renaming of the current package itself. The
5372 -- declaration for a formal package without a box is followed by an
5373 -- internal entity that repeats the instantiation.
5374
5375 E := First_Entity (P_Id);
5376 while Present (E) loop
5377 if Ekind (E) = E_Package then
5378 if Renamed_Object (E) = P_Id then
5379 exit;
5380
5381 elsif Nkind (Parent (E)) /= N_Package_Renaming_Declaration then
5382 null;
5383
5384 elsif not Box_Present (Parent (Associated_Formal_Package (E))) then
5385 Formal_P := Next_Entity (E);
5386 Check_Formal_Package_Instance (Formal_P, E);
5387
5388 -- After checking, remove the internal validating package. It
5389 -- is only needed for semantic checks, and as it may contain
5390 -- generic formal declarations it should not reach gigi.
5391
5392 Remove (Unit_Declaration_Node (Formal_P));
5393 end if;
5394 end if;
5395
5396 Next_Entity (E);
5397 end loop;
5398 end Check_Formal_Packages;
5399
5400 ---------------------------------
5401 -- Check_Forward_Instantiation --
5402 ---------------------------------
5403
5404 procedure Check_Forward_Instantiation (Decl : Node_Id) is
5405 S : Entity_Id;
5406 Gen_Comp : Entity_Id := Cunit_Entity (Get_Source_Unit (Decl));
5407
5408 begin
5409 -- The instantiation appears before the generic body if we are in the
5410 -- scope of the unit containing the generic, either in its spec or in
5411 -- the package body, and before the generic body.
5412
5413 if Ekind (Gen_Comp) = E_Package_Body then
5414 Gen_Comp := Spec_Entity (Gen_Comp);
5415 end if;
5416
5417 if In_Open_Scopes (Gen_Comp)
5418 and then No (Corresponding_Body (Decl))
5419 then
5420 S := Current_Scope;
5421
5422 while Present (S)
5423 and then not Is_Compilation_Unit (S)
5424 and then not Is_Child_Unit (S)
5425 loop
5426 if Ekind (S) = E_Package then
5427 Set_Has_Forward_Instantiation (S);
5428 end if;
5429
5430 S := Scope (S);
5431 end loop;
5432 end if;
5433 end Check_Forward_Instantiation;
5434
5435 ---------------------------
5436 -- Check_Generic_Actuals --
5437 ---------------------------
5438
5439 -- The visibility of the actuals may be different between the point of
5440 -- generic instantiation and the instantiation of the body.
5441
5442 procedure Check_Generic_Actuals
5443 (Instance : Entity_Id;
5444 Is_Formal_Box : Boolean)
5445 is
5446 E : Entity_Id;
5447 Astype : Entity_Id;
5448
5449 function Denotes_Previous_Actual (Typ : Entity_Id) return Boolean;
5450 -- For a formal that is an array type, the component type is often a
5451 -- previous formal in the same unit. The privacy status of the component
5452 -- type will have been examined earlier in the traversal of the
5453 -- corresponding actuals, and this status should not be modified for the
5454 -- array type itself.
5455 --
5456 -- To detect this case we have to rescan the list of formals, which
5457 -- is usually short enough to ignore the resulting inefficiency.
5458
5459 -----------------------------
5460 -- Denotes_Previous_Actual --
5461 -----------------------------
5462
5463 function Denotes_Previous_Actual (Typ : Entity_Id) return Boolean is
5464 Prev : Entity_Id;
5465
5466 begin
5467 Prev := First_Entity (Instance);
5468 while Present (Prev) loop
5469 if Is_Type (Prev)
5470 and then Nkind (Parent (Prev)) = N_Subtype_Declaration
5471 and then Is_Entity_Name (Subtype_Indication (Parent (Prev)))
5472 and then Entity (Subtype_Indication (Parent (Prev))) = Typ
5473 then
5474 return True;
5475
5476 elsif Prev = E then
5477 return False;
5478
5479 else
5480 Next_Entity (Prev);
5481 end if;
5482 end loop;
5483
5484 return False;
5485 end Denotes_Previous_Actual;
5486
5487 -- Start of processing for Check_Generic_Actuals
5488
5489 begin
5490 E := First_Entity (Instance);
5491 while Present (E) loop
5492 if Is_Type (E)
5493 and then Nkind (Parent (E)) = N_Subtype_Declaration
5494 and then Scope (Etype (E)) /= Instance
5495 and then Is_Entity_Name (Subtype_Indication (Parent (E)))
5496 then
5497 if Is_Array_Type (E)
5498 and then Denotes_Previous_Actual (Component_Type (E))
5499 then
5500 null;
5501 else
5502 Check_Private_View (Subtype_Indication (Parent (E)));
5503 end if;
5504
5505 Set_Is_Generic_Actual_Type (E, True);
5506 Set_Is_Hidden (E, False);
5507 Set_Is_Potentially_Use_Visible (E,
5508 In_Use (Instance));
5509
5510 -- We constructed the generic actual type as a subtype of the
5511 -- supplied type. This means that it normally would not inherit
5512 -- subtype specific attributes of the actual, which is wrong for
5513 -- the generic case.
5514
5515 Astype := Ancestor_Subtype (E);
5516
5517 if No (Astype) then
5518
5519 -- This can happen when E is an itype that is the full view of
5520 -- a private type completed, e.g. with a constrained array. In
5521 -- that case, use the first subtype, which will carry size
5522 -- information. The base type itself is unconstrained and will
5523 -- not carry it.
5524
5525 Astype := First_Subtype (E);
5526 end if;
5527
5528 Set_Size_Info (E, (Astype));
5529 Set_RM_Size (E, RM_Size (Astype));
5530 Set_First_Rep_Item (E, First_Rep_Item (Astype));
5531
5532 if Is_Discrete_Or_Fixed_Point_Type (E) then
5533 Set_RM_Size (E, RM_Size (Astype));
5534
5535 -- In nested instances, the base type of an access actual
5536 -- may itself be private, and need to be exchanged.
5537
5538 elsif Is_Access_Type (E)
5539 and then Is_Private_Type (Etype (E))
5540 then
5541 Check_Private_View
5542 (New_Occurrence_Of (Etype (E), Sloc (Instance)));
5543 end if;
5544
5545 elsif Ekind (E) = E_Package then
5546
5547 -- If this is the renaming for the current instance, we're done.
5548 -- Otherwise it is a formal package. If the corresponding formal
5549 -- was declared with a box, the (instantiations of the) generic
5550 -- formal part are also visible. Otherwise, ignore the entity
5551 -- created to validate the actuals.
5552
5553 if Renamed_Object (E) = Instance then
5554 exit;
5555
5556 elsif Nkind (Parent (E)) /= N_Package_Renaming_Declaration then
5557 null;
5558
5559 -- The visibility of a formal of an enclosing generic is already
5560 -- correct.
5561
5562 elsif Denotes_Formal_Package (E) then
5563 null;
5564
5565 elsif Present (Associated_Formal_Package (E))
5566 and then not Is_Generic_Formal (E)
5567 then
5568 if Box_Present (Parent (Associated_Formal_Package (E))) then
5569 Check_Generic_Actuals (Renamed_Object (E), True);
5570
5571 else
5572 Check_Generic_Actuals (Renamed_Object (E), False);
5573 end if;
5574
5575 Set_Is_Hidden (E, False);
5576 end if;
5577
5578 -- If this is a subprogram instance (in a wrapper package) the
5579 -- actual is fully visible.
5580
5581 elsif Is_Wrapper_Package (Instance) then
5582 Set_Is_Hidden (E, False);
5583
5584 -- If the formal package is declared with a box, or if the formal
5585 -- parameter is defaulted, it is visible in the body.
5586
5587 elsif Is_Formal_Box
5588 or else Is_Visible_Formal (E)
5589 then
5590 Set_Is_Hidden (E, False);
5591 end if;
5592
5593 if Ekind (E) = E_Constant then
5594
5595 -- If the type of the actual is a private type declared in the
5596 -- enclosing scope of the generic unit, the body of the generic
5597 -- sees the full view of the type (because it has to appear in
5598 -- the corresponding package body). If the type is private now,
5599 -- exchange views to restore the proper visiblity in the instance.
5600
5601 declare
5602 Typ : constant Entity_Id := Base_Type (Etype (E));
5603 -- The type of the actual
5604
5605 Gen_Id : Entity_Id;
5606 -- The generic unit
5607
5608 Parent_Scope : Entity_Id;
5609 -- The enclosing scope of the generic unit
5610
5611 begin
5612 if Is_Wrapper_Package (Instance) then
5613 Gen_Id :=
5614 Generic_Parent
5615 (Specification
5616 (Unit_Declaration_Node
5617 (Related_Instance (Instance))));
5618 else
5619 Gen_Id :=
5620 Generic_Parent
5621 (Specification (Unit_Declaration_Node (Instance)));
5622 end if;
5623
5624 Parent_Scope := Scope (Gen_Id);
5625
5626 -- The exchange is only needed if the generic is defined
5627 -- within a package which is not a common ancestor of the
5628 -- scope of the instance, and is not already in scope.
5629
5630 if Is_Private_Type (Typ)
5631 and then Scope (Typ) = Parent_Scope
5632 and then Scope (Instance) /= Parent_Scope
5633 and then Ekind (Parent_Scope) = E_Package
5634 and then not Is_Child_Unit (Gen_Id)
5635 then
5636 Switch_View (Typ);
5637
5638 -- If the type of the entity is a subtype, it may also
5639 -- have to be made visible, together with the base type
5640 -- of its full view, after exchange.
5641
5642 if Is_Private_Type (Etype (E)) then
5643 Switch_View (Etype (E));
5644 Switch_View (Base_Type (Etype (E)));
5645 end if;
5646 end if;
5647 end;
5648 end if;
5649
5650 Next_Entity (E);
5651 end loop;
5652 end Check_Generic_Actuals;
5653
5654 ------------------------------
5655 -- Check_Generic_Child_Unit --
5656 ------------------------------
5657
5658 procedure Check_Generic_Child_Unit
5659 (Gen_Id : Node_Id;
5660 Parent_Installed : in out Boolean)
5661 is
5662 Loc : constant Source_Ptr := Sloc (Gen_Id);
5663 Gen_Par : Entity_Id := Empty;
5664 E : Entity_Id;
5665 Inst_Par : Entity_Id;
5666 S : Node_Id;
5667
5668 function Find_Generic_Child
5669 (Scop : Entity_Id;
5670 Id : Node_Id) return Entity_Id;
5671 -- Search generic parent for possible child unit with the given name
5672
5673 function In_Enclosing_Instance return Boolean;
5674 -- Within an instance of the parent, the child unit may be denoted
5675 -- by a simple name, or an abbreviated expanded name. Examine enclosing
5676 -- scopes to locate a possible parent instantiation.
5677
5678 ------------------------
5679 -- Find_Generic_Child --
5680 ------------------------
5681
5682 function Find_Generic_Child
5683 (Scop : Entity_Id;
5684 Id : Node_Id) return Entity_Id
5685 is
5686 E : Entity_Id;
5687
5688 begin
5689 -- If entity of name is already set, instance has already been
5690 -- resolved, e.g. in an enclosing instantiation.
5691
5692 if Present (Entity (Id)) then
5693 if Scope (Entity (Id)) = Scop then
5694 return Entity (Id);
5695 else
5696 return Empty;
5697 end if;
5698
5699 else
5700 E := First_Entity (Scop);
5701 while Present (E) loop
5702 if Chars (E) = Chars (Id)
5703 and then Is_Child_Unit (E)
5704 then
5705 if Is_Child_Unit (E)
5706 and then not Is_Visible_Child_Unit (E)
5707 then
5708 Error_Msg_NE
5709 ("generic child unit& is not visible", Gen_Id, E);
5710 end if;
5711
5712 Set_Entity (Id, E);
5713 return E;
5714 end if;
5715
5716 Next_Entity (E);
5717 end loop;
5718
5719 return Empty;
5720 end if;
5721 end Find_Generic_Child;
5722
5723 ---------------------------
5724 -- In_Enclosing_Instance --
5725 ---------------------------
5726
5727 function In_Enclosing_Instance return Boolean is
5728 Enclosing_Instance : Node_Id;
5729 Instance_Decl : Node_Id;
5730
5731 begin
5732 -- We do not inline any call that contains instantiations, except
5733 -- for instantiations of Unchecked_Conversion, so if we are within
5734 -- an inlined body the current instance does not require parents.
5735
5736 if In_Inlined_Body then
5737 pragma Assert (Chars (Gen_Id) = Name_Unchecked_Conversion);
5738 return False;
5739 end if;
5740
5741 -- Loop to check enclosing scopes
5742
5743 Enclosing_Instance := Current_Scope;
5744 while Present (Enclosing_Instance) loop
5745 Instance_Decl := Unit_Declaration_Node (Enclosing_Instance);
5746
5747 if Ekind (Enclosing_Instance) = E_Package
5748 and then Is_Generic_Instance (Enclosing_Instance)
5749 and then Present
5750 (Generic_Parent (Specification (Instance_Decl)))
5751 then
5752 -- Check whether the generic we are looking for is a child of
5753 -- this instance.
5754
5755 E := Find_Generic_Child
5756 (Generic_Parent (Specification (Instance_Decl)), Gen_Id);
5757 exit when Present (E);
5758
5759 else
5760 E := Empty;
5761 end if;
5762
5763 Enclosing_Instance := Scope (Enclosing_Instance);
5764 end loop;
5765
5766 if No (E) then
5767
5768 -- Not a child unit
5769
5770 Analyze (Gen_Id);
5771 return False;
5772
5773 else
5774 Rewrite (Gen_Id,
5775 Make_Expanded_Name (Loc,
5776 Chars => Chars (E),
5777 Prefix => New_Occurrence_Of (Enclosing_Instance, Loc),
5778 Selector_Name => New_Occurrence_Of (E, Loc)));
5779
5780 Set_Entity (Gen_Id, E);
5781 Set_Etype (Gen_Id, Etype (E));
5782 Parent_Installed := False; -- Already in scope.
5783 return True;
5784 end if;
5785 end In_Enclosing_Instance;
5786
5787 -- Start of processing for Check_Generic_Child_Unit
5788
5789 begin
5790 -- If the name of the generic is given by a selected component, it may
5791 -- be the name of a generic child unit, and the prefix is the name of an
5792 -- instance of the parent, in which case the child unit must be visible.
5793 -- If this instance is not in scope, it must be placed there and removed
5794 -- after instantiation, because what is being instantiated is not the
5795 -- original child, but the corresponding child present in the instance
5796 -- of the parent.
5797
5798 -- If the child is instantiated within the parent, it can be given by
5799 -- a simple name. In this case the instance is already in scope, but
5800 -- the child generic must be recovered from the generic parent as well.
5801
5802 if Nkind (Gen_Id) = N_Selected_Component then
5803 S := Selector_Name (Gen_Id);
5804 Analyze (Prefix (Gen_Id));
5805 Inst_Par := Entity (Prefix (Gen_Id));
5806
5807 if Ekind (Inst_Par) = E_Package
5808 and then Present (Renamed_Object (Inst_Par))
5809 then
5810 Inst_Par := Renamed_Object (Inst_Par);
5811 end if;
5812
5813 if Ekind (Inst_Par) = E_Package then
5814 if Nkind (Parent (Inst_Par)) = N_Package_Specification then
5815 Gen_Par := Generic_Parent (Parent (Inst_Par));
5816
5817 elsif Nkind (Parent (Inst_Par)) = N_Defining_Program_Unit_Name
5818 and then
5819 Nkind (Parent (Parent (Inst_Par))) = N_Package_Specification
5820 then
5821 Gen_Par := Generic_Parent (Parent (Parent (Inst_Par)));
5822 end if;
5823
5824 elsif Ekind (Inst_Par) = E_Generic_Package
5825 and then Nkind (Parent (Gen_Id)) = N_Formal_Package_Declaration
5826 then
5827 -- A formal package may be a real child package, and not the
5828 -- implicit instance within a parent. In this case the child is
5829 -- not visible and has to be retrieved explicitly as well.
5830
5831 Gen_Par := Inst_Par;
5832 end if;
5833
5834 if Present (Gen_Par) then
5835
5836 -- The prefix denotes an instantiation. The entity itself may be a
5837 -- nested generic, or a child unit.
5838
5839 E := Find_Generic_Child (Gen_Par, S);
5840
5841 if Present (E) then
5842 Change_Selected_Component_To_Expanded_Name (Gen_Id);
5843 Set_Entity (Gen_Id, E);
5844 Set_Etype (Gen_Id, Etype (E));
5845 Set_Entity (S, E);
5846 Set_Etype (S, Etype (E));
5847
5848 -- Indicate that this is a reference to the parent
5849
5850 if In_Extended_Main_Source_Unit (Gen_Id) then
5851 Set_Is_Instantiated (Inst_Par);
5852 end if;
5853
5854 -- A common mistake is to replicate the naming scheme of a
5855 -- hierarchy by instantiating a generic child directly, rather
5856 -- than the implicit child in a parent instance:
5857
5858 -- generic .. package Gpar is ..
5859 -- generic .. package Gpar.Child is ..
5860 -- package Par is new Gpar ();
5861
5862 -- with Gpar.Child;
5863 -- package Par.Child is new Gpar.Child ();
5864 -- rather than Par.Child
5865
5866 -- In this case the instantiation is within Par, which is an
5867 -- instance, but Gpar does not denote Par because we are not IN
5868 -- the instance of Gpar, so this is illegal. The test below
5869 -- recognizes this particular case.
5870
5871 if Is_Child_Unit (E)
5872 and then not Comes_From_Source (Entity (Prefix (Gen_Id)))
5873 and then (not In_Instance
5874 or else Nkind (Parent (Parent (Gen_Id))) =
5875 N_Compilation_Unit)
5876 then
5877 Error_Msg_N
5878 ("prefix of generic child unit must be instance of parent",
5879 Gen_Id);
5880 end if;
5881
5882 if not In_Open_Scopes (Inst_Par)
5883 and then Nkind (Parent (Gen_Id)) not in
5884 N_Generic_Renaming_Declaration
5885 then
5886 Install_Parent (Inst_Par);
5887 Parent_Installed := True;
5888
5889 elsif In_Open_Scopes (Inst_Par) then
5890
5891 -- If the parent is already installed, install the actuals
5892 -- for its formal packages. This is necessary when the
5893 -- child instance is a child of the parent instance:
5894 -- in this case, the parent is placed on the scope stack
5895 -- but the formal packages are not made visible.
5896
5897 Install_Formal_Packages (Inst_Par);
5898 end if;
5899
5900 else
5901 -- If the generic parent does not contain an entity that
5902 -- corresponds to the selector, the instance doesn't either.
5903 -- Analyzing the node will yield the appropriate error message.
5904 -- If the entity is not a child unit, then it is an inner
5905 -- generic in the parent.
5906
5907 Analyze (Gen_Id);
5908 end if;
5909
5910 else
5911 Analyze (Gen_Id);
5912
5913 if Is_Child_Unit (Entity (Gen_Id))
5914 and then
5915 Nkind (Parent (Gen_Id)) not in N_Generic_Renaming_Declaration
5916 and then not In_Open_Scopes (Inst_Par)
5917 then
5918 Install_Parent (Inst_Par);
5919 Parent_Installed := True;
5920
5921 -- The generic unit may be the renaming of the implicit child
5922 -- present in an instance. In that case the parent instance is
5923 -- obtained from the name of the renamed entity.
5924
5925 elsif Ekind (Entity (Gen_Id)) = E_Generic_Package
5926 and then Present (Renamed_Entity (Entity (Gen_Id)))
5927 and then Is_Child_Unit (Renamed_Entity (Entity (Gen_Id)))
5928 then
5929 declare
5930 Renamed_Package : constant Node_Id :=
5931 Name (Parent (Entity (Gen_Id)));
5932 begin
5933 if Nkind (Renamed_Package) = N_Expanded_Name then
5934 Inst_Par := Entity (Prefix (Renamed_Package));
5935 Install_Parent (Inst_Par);
5936 Parent_Installed := True;
5937 end if;
5938 end;
5939 end if;
5940 end if;
5941
5942 elsif Nkind (Gen_Id) = N_Expanded_Name then
5943
5944 -- Entity already present, analyze prefix, whose meaning may be
5945 -- an instance in the current context. If it is an instance of
5946 -- a relative within another, the proper parent may still have
5947 -- to be installed, if they are not of the same generation.
5948
5949 Analyze (Prefix (Gen_Id));
5950
5951 -- In the unlikely case that a local declaration hides the name
5952 -- of the parent package, locate it on the homonym chain. If the
5953 -- context is an instance of the parent, the renaming entity is
5954 -- flagged as such.
5955
5956 Inst_Par := Entity (Prefix (Gen_Id));
5957 while Present (Inst_Par)
5958 and then not Is_Package_Or_Generic_Package (Inst_Par)
5959 loop
5960 Inst_Par := Homonym (Inst_Par);
5961 end loop;
5962
5963 pragma Assert (Present (Inst_Par));
5964 Set_Entity (Prefix (Gen_Id), Inst_Par);
5965
5966 if In_Enclosing_Instance then
5967 null;
5968
5969 elsif Present (Entity (Gen_Id))
5970 and then Is_Child_Unit (Entity (Gen_Id))
5971 and then not In_Open_Scopes (Inst_Par)
5972 then
5973 Install_Parent (Inst_Par);
5974 Parent_Installed := True;
5975 end if;
5976
5977 elsif In_Enclosing_Instance then
5978
5979 -- The child unit is found in some enclosing scope
5980
5981 null;
5982
5983 else
5984 Analyze (Gen_Id);
5985
5986 -- If this is the renaming of the implicit child in a parent
5987 -- instance, recover the parent name and install it.
5988
5989 if Is_Entity_Name (Gen_Id) then
5990 E := Entity (Gen_Id);
5991
5992 if Is_Generic_Unit (E)
5993 and then Nkind (Parent (E)) in N_Generic_Renaming_Declaration
5994 and then Is_Child_Unit (Renamed_Object (E))
5995 and then Is_Generic_Unit (Scope (Renamed_Object (E)))
5996 and then Nkind (Name (Parent (E))) = N_Expanded_Name
5997 then
5998 Rewrite (Gen_Id,
5999 New_Copy_Tree (Name (Parent (E))));
6000 Inst_Par := Entity (Prefix (Gen_Id));
6001
6002 if not In_Open_Scopes (Inst_Par) then
6003 Install_Parent (Inst_Par);
6004 Parent_Installed := True;
6005 end if;
6006
6007 -- If it is a child unit of a non-generic parent, it may be
6008 -- use-visible and given by a direct name. Install parent as
6009 -- for other cases.
6010
6011 elsif Is_Generic_Unit (E)
6012 and then Is_Child_Unit (E)
6013 and then
6014 Nkind (Parent (Gen_Id)) not in N_Generic_Renaming_Declaration
6015 and then not Is_Generic_Unit (Scope (E))
6016 then
6017 if not In_Open_Scopes (Scope (E)) then
6018 Install_Parent (Scope (E));
6019 Parent_Installed := True;
6020 end if;
6021 end if;
6022 end if;
6023 end if;
6024 end Check_Generic_Child_Unit;
6025
6026 -----------------------------
6027 -- Check_Hidden_Child_Unit --
6028 -----------------------------
6029
6030 procedure Check_Hidden_Child_Unit
6031 (N : Node_Id;
6032 Gen_Unit : Entity_Id;
6033 Act_Decl_Id : Entity_Id)
6034 is
6035 Gen_Id : constant Node_Id := Name (N);
6036
6037 begin
6038 if Is_Child_Unit (Gen_Unit)
6039 and then Is_Child_Unit (Act_Decl_Id)
6040 and then Nkind (Gen_Id) = N_Expanded_Name
6041 and then Entity (Prefix (Gen_Id)) = Scope (Act_Decl_Id)
6042 and then Chars (Gen_Unit) = Chars (Act_Decl_Id)
6043 then
6044 Error_Msg_Node_2 := Scope (Act_Decl_Id);
6045 Error_Msg_NE
6046 ("generic unit & is implicitly declared in &",
6047 Defining_Unit_Name (N), Gen_Unit);
6048 Error_Msg_N ("\instance must have different name",
6049 Defining_Unit_Name (N));
6050 end if;
6051 end Check_Hidden_Child_Unit;
6052
6053 ------------------------
6054 -- Check_Private_View --
6055 ------------------------
6056
6057 procedure Check_Private_View (N : Node_Id) is
6058 T : constant Entity_Id := Etype (N);
6059 BT : Entity_Id;
6060
6061 begin
6062 -- Exchange views if the type was not private in the generic but is
6063 -- private at the point of instantiation. Do not exchange views if
6064 -- the scope of the type is in scope. This can happen if both generic
6065 -- and instance are sibling units, or if type is defined in a parent.
6066 -- In this case the visibility of the type will be correct for all
6067 -- semantic checks.
6068
6069 if Present (T) then
6070 BT := Base_Type (T);
6071
6072 if Is_Private_Type (T)
6073 and then not Has_Private_View (N)
6074 and then Present (Full_View (T))
6075 and then not In_Open_Scopes (Scope (T))
6076 then
6077 -- In the generic, the full type was visible. Save the private
6078 -- entity, for subsequent exchange.
6079
6080 Switch_View (T);
6081
6082 elsif Has_Private_View (N)
6083 and then not Is_Private_Type (T)
6084 and then not Has_Been_Exchanged (T)
6085 and then Etype (Get_Associated_Node (N)) /= T
6086 then
6087 -- Only the private declaration was visible in the generic. If
6088 -- the type appears in a subtype declaration, the subtype in the
6089 -- instance must have a view compatible with that of its parent,
6090 -- which must be exchanged (see corresponding code in Restore_
6091 -- Private_Views). Otherwise, if the type is defined in a parent
6092 -- unit, leave full visibility within instance, which is safe.
6093
6094 if In_Open_Scopes (Scope (Base_Type (T)))
6095 and then not Is_Private_Type (Base_Type (T))
6096 and then Comes_From_Source (Base_Type (T))
6097 then
6098 null;
6099
6100 elsif Nkind (Parent (N)) = N_Subtype_Declaration
6101 or else not In_Private_Part (Scope (Base_Type (T)))
6102 then
6103 Prepend_Elmt (T, Exchanged_Views);
6104 Exchange_Declarations (Etype (Get_Associated_Node (N)));
6105 end if;
6106
6107 -- For composite types with inconsistent representation exchange
6108 -- component types accordingly.
6109
6110 elsif Is_Access_Type (T)
6111 and then Is_Private_Type (Designated_Type (T))
6112 and then not Has_Private_View (N)
6113 and then Present (Full_View (Designated_Type (T)))
6114 then
6115 Switch_View (Designated_Type (T));
6116
6117 elsif Is_Array_Type (T) then
6118 if Is_Private_Type (Component_Type (T))
6119 and then not Has_Private_View (N)
6120 and then Present (Full_View (Component_Type (T)))
6121 then
6122 Switch_View (Component_Type (T));
6123 end if;
6124
6125 -- The normal exchange mechanism relies on the setting of a
6126 -- flag on the reference in the generic. However, an additional
6127 -- mechanism is needed for types that are not explicitly mentioned
6128 -- in the generic, but may be needed in expanded code in the
6129 -- instance. This includes component types of arrays and
6130 -- designated types of access types. This processing must also
6131 -- include the index types of arrays which we take care of here.
6132
6133 declare
6134 Indx : Node_Id;
6135 Typ : Entity_Id;
6136
6137 begin
6138 Indx := First_Index (T);
6139 while Present (Indx) loop
6140 Typ := Base_Type (Etype (Indx));
6141
6142 if Is_Private_Type (Typ)
6143 and then Present (Full_View (Typ))
6144 then
6145 Switch_View (Typ);
6146 end if;
6147
6148 Next_Index (Indx);
6149 end loop;
6150 end;
6151
6152 elsif Is_Private_Type (T)
6153 and then Present (Full_View (T))
6154 and then Is_Array_Type (Full_View (T))
6155 and then Is_Private_Type (Component_Type (Full_View (T)))
6156 then
6157 Switch_View (T);
6158
6159 -- Finally, a non-private subtype may have a private base type, which
6160 -- must be exchanged for consistency. This can happen when a package
6161 -- body is instantiated, when the scope stack is empty but in fact
6162 -- the subtype and the base type are declared in an enclosing scope.
6163
6164 -- Note that in this case we introduce an inconsistency in the view
6165 -- set, because we switch the base type BT, but there could be some
6166 -- private dependent subtypes of BT which remain unswitched. Such
6167 -- subtypes might need to be switched at a later point (see specific
6168 -- provision for that case in Switch_View).
6169
6170 elsif not Is_Private_Type (T)
6171 and then not Has_Private_View (N)
6172 and then Is_Private_Type (BT)
6173 and then Present (Full_View (BT))
6174 and then not Is_Generic_Type (BT)
6175 and then not In_Open_Scopes (BT)
6176 then
6177 Prepend_Elmt (Full_View (BT), Exchanged_Views);
6178 Exchange_Declarations (BT);
6179 end if;
6180 end if;
6181 end Check_Private_View;
6182
6183 -----------------------------
6184 -- Check_Hidden_Primitives --
6185 -----------------------------
6186
6187 function Check_Hidden_Primitives (Assoc_List : List_Id) return Elist_Id is
6188 Actual : Node_Id;
6189 Gen_T : Entity_Id;
6190 Result : Elist_Id := No_Elist;
6191
6192 begin
6193 if No (Assoc_List) then
6194 return No_Elist;
6195 end if;
6196
6197 -- Traverse the list of associations between formals and actuals
6198 -- searching for renamings of tagged types
6199
6200 Actual := First (Assoc_List);
6201 while Present (Actual) loop
6202 if Nkind (Actual) = N_Subtype_Declaration then
6203 Gen_T := Generic_Parent_Type (Actual);
6204
6205 if Present (Gen_T)
6206 and then Is_Tagged_Type (Gen_T)
6207 then
6208 -- Traverse the list of primitives of the actual types
6209 -- searching for hidden primitives that are visible in the
6210 -- corresponding generic formal; leave them visible and
6211 -- append them to Result to restore their decoration later.
6212
6213 Install_Hidden_Primitives
6214 (Prims_List => Result,
6215 Gen_T => Gen_T,
6216 Act_T => Entity (Subtype_Indication (Actual)));
6217 end if;
6218 end if;
6219
6220 Next (Actual);
6221 end loop;
6222
6223 return Result;
6224 end Check_Hidden_Primitives;
6225
6226 --------------------------
6227 -- Contains_Instance_Of --
6228 --------------------------
6229
6230 function Contains_Instance_Of
6231 (Inner : Entity_Id;
6232 Outer : Entity_Id;
6233 N : Node_Id) return Boolean
6234 is
6235 Elmt : Elmt_Id;
6236 Scop : Entity_Id;
6237
6238 begin
6239 Scop := Outer;
6240
6241 -- Verify that there are no circular instantiations. We check whether
6242 -- the unit contains an instance of the current scope or some enclosing
6243 -- scope (in case one of the instances appears in a subunit). Longer
6244 -- circularities involving subunits might seem too pathological to
6245 -- consider, but they were not too pathological for the authors of
6246 -- DEC bc30vsq, so we loop over all enclosing scopes, and mark all
6247 -- enclosing generic scopes as containing an instance.
6248
6249 loop
6250 -- Within a generic subprogram body, the scope is not generic, to
6251 -- allow for recursive subprograms. Use the declaration to determine
6252 -- whether this is a generic unit.
6253
6254 if Ekind (Scop) = E_Generic_Package
6255 or else (Is_Subprogram (Scop)
6256 and then Nkind (Unit_Declaration_Node (Scop)) =
6257 N_Generic_Subprogram_Declaration)
6258 then
6259 Elmt := First_Elmt (Inner_Instances (Inner));
6260
6261 while Present (Elmt) loop
6262 if Node (Elmt) = Scop then
6263 Error_Msg_Node_2 := Inner;
6264 Error_Msg_NE
6265 ("circular Instantiation: & instantiated within &!",
6266 N, Scop);
6267 return True;
6268
6269 elsif Node (Elmt) = Inner then
6270 return True;
6271
6272 elsif Contains_Instance_Of (Node (Elmt), Scop, N) then
6273 Error_Msg_Node_2 := Inner;
6274 Error_Msg_NE
6275 ("circular Instantiation: & instantiated within &!",
6276 N, Node (Elmt));
6277 return True;
6278 end if;
6279
6280 Next_Elmt (Elmt);
6281 end loop;
6282
6283 -- Indicate that Inner is being instantiated within Scop
6284
6285 Append_Elmt (Inner, Inner_Instances (Scop));
6286 end if;
6287
6288 if Scop = Standard_Standard then
6289 exit;
6290 else
6291 Scop := Scope (Scop);
6292 end if;
6293 end loop;
6294
6295 return False;
6296 end Contains_Instance_Of;
6297
6298 -----------------------
6299 -- Copy_Generic_Node --
6300 -----------------------
6301
6302 function Copy_Generic_Node
6303 (N : Node_Id;
6304 Parent_Id : Node_Id;
6305 Instantiating : Boolean) return Node_Id
6306 is
6307 Ent : Entity_Id;
6308 New_N : Node_Id;
6309
6310 function Copy_Generic_Descendant (D : Union_Id) return Union_Id;
6311 -- Check the given value of one of the Fields referenced by the
6312 -- current node to determine whether to copy it recursively. The
6313 -- field may hold a Node_Id, a List_Id, or an Elist_Id, or a plain
6314 -- value (Sloc, Uint, Char) in which case it need not be copied.
6315
6316 procedure Copy_Descendants;
6317 -- Common utility for various nodes
6318
6319 function Copy_Generic_Elist (E : Elist_Id) return Elist_Id;
6320 -- Make copy of element list
6321
6322 function Copy_Generic_List
6323 (L : List_Id;
6324 Parent_Id : Node_Id) return List_Id;
6325 -- Apply Copy_Node recursively to the members of a node list
6326
6327 function In_Defining_Unit_Name (Nam : Node_Id) return Boolean;
6328 -- True if an identifier is part of the defining program unit name
6329 -- of a child unit. The entity of such an identifier must be kept
6330 -- (for ASIS use) even though as the name of an enclosing generic
6331 -- it would otherwise not be preserved in the generic tree.
6332
6333 ----------------------
6334 -- Copy_Descendants --
6335 ----------------------
6336
6337 procedure Copy_Descendants is
6338
6339 use Atree.Unchecked_Access;
6340 -- This code section is part of the implementation of an untyped
6341 -- tree traversal, so it needs direct access to node fields.
6342
6343 begin
6344 Set_Field1 (New_N, Copy_Generic_Descendant (Field1 (N)));
6345 Set_Field2 (New_N, Copy_Generic_Descendant (Field2 (N)));
6346 Set_Field3 (New_N, Copy_Generic_Descendant (Field3 (N)));
6347 Set_Field4 (New_N, Copy_Generic_Descendant (Field4 (N)));
6348 Set_Field5 (New_N, Copy_Generic_Descendant (Field5 (N)));
6349 end Copy_Descendants;
6350
6351 -----------------------------
6352 -- Copy_Generic_Descendant --
6353 -----------------------------
6354
6355 function Copy_Generic_Descendant (D : Union_Id) return Union_Id is
6356 begin
6357 if D = Union_Id (Empty) then
6358 return D;
6359
6360 elsif D in Node_Range then
6361 return Union_Id
6362 (Copy_Generic_Node (Node_Id (D), New_N, Instantiating));
6363
6364 elsif D in List_Range then
6365 return Union_Id (Copy_Generic_List (List_Id (D), New_N));
6366
6367 elsif D in Elist_Range then
6368 return Union_Id (Copy_Generic_Elist (Elist_Id (D)));
6369
6370 -- Nothing else is copyable (e.g. Uint values), return as is
6371
6372 else
6373 return D;
6374 end if;
6375 end Copy_Generic_Descendant;
6376
6377 ------------------------
6378 -- Copy_Generic_Elist --
6379 ------------------------
6380
6381 function Copy_Generic_Elist (E : Elist_Id) return Elist_Id is
6382 M : Elmt_Id;
6383 L : Elist_Id;
6384
6385 begin
6386 if Present (E) then
6387 L := New_Elmt_List;
6388 M := First_Elmt (E);
6389 while Present (M) loop
6390 Append_Elmt
6391 (Copy_Generic_Node (Node (M), Empty, Instantiating), L);
6392 Next_Elmt (M);
6393 end loop;
6394
6395 return L;
6396
6397 else
6398 return No_Elist;
6399 end if;
6400 end Copy_Generic_Elist;
6401
6402 -----------------------
6403 -- Copy_Generic_List --
6404 -----------------------
6405
6406 function Copy_Generic_List
6407 (L : List_Id;
6408 Parent_Id : Node_Id) return List_Id
6409 is
6410 N : Node_Id;
6411 New_L : List_Id;
6412
6413 begin
6414 if Present (L) then
6415 New_L := New_List;
6416 Set_Parent (New_L, Parent_Id);
6417
6418 N := First (L);
6419 while Present (N) loop
6420 Append (Copy_Generic_Node (N, Empty, Instantiating), New_L);
6421 Next (N);
6422 end loop;
6423
6424 return New_L;
6425
6426 else
6427 return No_List;
6428 end if;
6429 end Copy_Generic_List;
6430
6431 ---------------------------
6432 -- In_Defining_Unit_Name --
6433 ---------------------------
6434
6435 function In_Defining_Unit_Name (Nam : Node_Id) return Boolean is
6436 begin
6437 return Present (Parent (Nam))
6438 and then (Nkind (Parent (Nam)) = N_Defining_Program_Unit_Name
6439 or else
6440 (Nkind (Parent (Nam)) = N_Expanded_Name
6441 and then In_Defining_Unit_Name (Parent (Nam))));
6442 end In_Defining_Unit_Name;
6443
6444 -- Start of processing for Copy_Generic_Node
6445
6446 begin
6447 if N = Empty then
6448 return N;
6449 end if;
6450
6451 New_N := New_Copy (N);
6452
6453 -- Copy aspects if present
6454
6455 if Has_Aspects (N) then
6456 Set_Has_Aspects (New_N, False);
6457 Set_Aspect_Specifications
6458 (New_N, Copy_Generic_List (Aspect_Specifications (N), Parent_Id));
6459 end if;
6460
6461 if Instantiating then
6462 Adjust_Instantiation_Sloc (New_N, S_Adjustment);
6463 end if;
6464
6465 if not Is_List_Member (N) then
6466 Set_Parent (New_N, Parent_Id);
6467 end if;
6468
6469 -- If defining identifier, then all fields have been copied already
6470
6471 if Nkind (New_N) in N_Entity then
6472 null;
6473
6474 -- Special casing for identifiers and other entity names and operators
6475
6476 elsif Nkind_In (New_N, N_Identifier,
6477 N_Character_Literal,
6478 N_Expanded_Name,
6479 N_Operator_Symbol)
6480 or else Nkind (New_N) in N_Op
6481 then
6482 if not Instantiating then
6483
6484 -- Link both nodes in order to assign subsequently the entity of
6485 -- the copy to the original node, in case this is a global
6486 -- reference.
6487
6488 Set_Associated_Node (N, New_N);
6489
6490 -- If we are within an instantiation, this is a nested generic
6491 -- that has already been analyzed at the point of definition. We
6492 -- must preserve references that were global to the enclosing
6493 -- parent at that point. Other occurrences, whether global or
6494 -- local to the current generic, must be resolved anew, so we
6495 -- reset the entity in the generic copy. A global reference has a
6496 -- smaller depth than the parent, or else the same depth in case
6497 -- both are distinct compilation units.
6498 -- A child unit is implicitly declared within the enclosing parent
6499 -- but is in fact global to it, and must be preserved.
6500
6501 -- It is also possible for Current_Instantiated_Parent to be
6502 -- defined, and for this not to be a nested generic, namely if the
6503 -- unit is loaded through Rtsfind. In that case, the entity of
6504 -- New_N is only a link to the associated node, and not a defining
6505 -- occurrence.
6506
6507 -- The entities for parent units in the defining_program_unit of a
6508 -- generic child unit are established when the context of the unit
6509 -- is first analyzed, before the generic copy is made. They are
6510 -- preserved in the copy for use in ASIS queries.
6511
6512 Ent := Entity (New_N);
6513
6514 if No (Current_Instantiated_Parent.Gen_Id) then
6515 if No (Ent)
6516 or else Nkind (Ent) /= N_Defining_Identifier
6517 or else not In_Defining_Unit_Name (N)
6518 then
6519 Set_Associated_Node (New_N, Empty);
6520 end if;
6521
6522 elsif No (Ent)
6523 or else
6524 not Nkind_In (Ent, N_Defining_Identifier,
6525 N_Defining_Character_Literal,
6526 N_Defining_Operator_Symbol)
6527 or else No (Scope (Ent))
6528 or else
6529 (Scope (Ent) = Current_Instantiated_Parent.Gen_Id
6530 and then not Is_Child_Unit (Ent))
6531 or else
6532 (Scope_Depth (Scope (Ent)) >
6533 Scope_Depth (Current_Instantiated_Parent.Gen_Id)
6534 and then
6535 Get_Source_Unit (Ent) =
6536 Get_Source_Unit (Current_Instantiated_Parent.Gen_Id))
6537 then
6538 Set_Associated_Node (New_N, Empty);
6539 end if;
6540
6541 -- Case of instantiating identifier or some other name or operator
6542
6543 else
6544 -- If the associated node is still defined, the entity in it is
6545 -- global, and must be copied to the instance. If this copy is
6546 -- being made for a body to inline, it is applied to an
6547 -- instantiated tree, and the entity is already present and must
6548 -- be also preserved.
6549
6550 declare
6551 Assoc : constant Node_Id := Get_Associated_Node (N);
6552
6553 begin
6554 if Present (Assoc) then
6555 if Nkind (Assoc) = Nkind (N) then
6556 Set_Entity (New_N, Entity (Assoc));
6557 Check_Private_View (N);
6558
6559 elsif Nkind (Assoc) = N_Function_Call then
6560 Set_Entity (New_N, Entity (Name (Assoc)));
6561
6562 elsif Nkind_In (Assoc, N_Defining_Identifier,
6563 N_Defining_Character_Literal,
6564 N_Defining_Operator_Symbol)
6565 and then Expander_Active
6566 then
6567 -- Inlining case: we are copying a tree that contains
6568 -- global entities, which are preserved in the copy to be
6569 -- used for subsequent inlining.
6570
6571 null;
6572
6573 else
6574 Set_Entity (New_N, Empty);
6575 end if;
6576 end if;
6577 end;
6578 end if;
6579
6580 -- For expanded name, we must copy the Prefix and Selector_Name
6581
6582 if Nkind (N) = N_Expanded_Name then
6583 Set_Prefix
6584 (New_N, Copy_Generic_Node (Prefix (N), New_N, Instantiating));
6585
6586 Set_Selector_Name (New_N,
6587 Copy_Generic_Node (Selector_Name (N), New_N, Instantiating));
6588
6589 -- For operators, we must copy the right operand
6590
6591 elsif Nkind (N) in N_Op then
6592 Set_Right_Opnd (New_N,
6593 Copy_Generic_Node (Right_Opnd (N), New_N, Instantiating));
6594
6595 -- And for binary operators, the left operand as well
6596
6597 if Nkind (N) in N_Binary_Op then
6598 Set_Left_Opnd (New_N,
6599 Copy_Generic_Node (Left_Opnd (N), New_N, Instantiating));
6600 end if;
6601 end if;
6602
6603 -- Special casing for stubs
6604
6605 elsif Nkind (N) in N_Body_Stub then
6606
6607 -- In any case, we must copy the specification or defining
6608 -- identifier as appropriate.
6609
6610 if Nkind (N) = N_Subprogram_Body_Stub then
6611 Set_Specification (New_N,
6612 Copy_Generic_Node (Specification (N), New_N, Instantiating));
6613
6614 else
6615 Set_Defining_Identifier (New_N,
6616 Copy_Generic_Node
6617 (Defining_Identifier (N), New_N, Instantiating));
6618 end if;
6619
6620 -- If we are not instantiating, then this is where we load and
6621 -- analyze subunits, i.e. at the point where the stub occurs. A
6622 -- more permissive system might defer this analysis to the point
6623 -- of instantiation, but this seems to complicated for now.
6624
6625 if not Instantiating then
6626 declare
6627 Subunit_Name : constant Unit_Name_Type := Get_Unit_Name (N);
6628 Subunit : Node_Id;
6629 Unum : Unit_Number_Type;
6630 New_Body : Node_Id;
6631
6632 begin
6633 -- Make sure that, if it is a subunit of the main unit that is
6634 -- preprocessed and if -gnateG is specified, the preprocessed
6635 -- file will be written.
6636
6637 Lib.Analysing_Subunit_Of_Main :=
6638 Lib.In_Extended_Main_Source_Unit (N);
6639 Unum :=
6640 Load_Unit
6641 (Load_Name => Subunit_Name,
6642 Required => False,
6643 Subunit => True,
6644 Error_Node => N);
6645 Lib.Analysing_Subunit_Of_Main := False;
6646
6647 -- If the proper body is not found, a warning message will be
6648 -- emitted when analyzing the stub, or later at the point
6649 -- of instantiation. Here we just leave the stub as is.
6650
6651 if Unum = No_Unit then
6652 Subunits_Missing := True;
6653 goto Subunit_Not_Found;
6654 end if;
6655
6656 Subunit := Cunit (Unum);
6657
6658 if Nkind (Unit (Subunit)) /= N_Subunit then
6659 Error_Msg_N
6660 ("found child unit instead of expected SEPARATE subunit",
6661 Subunit);
6662 Error_Msg_Sloc := Sloc (N);
6663 Error_Msg_N ("\to complete stub #", Subunit);
6664 goto Subunit_Not_Found;
6665 end if;
6666
6667 -- We must create a generic copy of the subunit, in order to
6668 -- perform semantic analysis on it, and we must replace the
6669 -- stub in the original generic unit with the subunit, in order
6670 -- to preserve non-local references within.
6671
6672 -- Only the proper body needs to be copied. Library_Unit and
6673 -- context clause are simply inherited by the generic copy.
6674 -- Note that the copy (which may be recursive if there are
6675 -- nested subunits) must be done first, before attaching it to
6676 -- the enclosing generic.
6677
6678 New_Body :=
6679 Copy_Generic_Node
6680 (Proper_Body (Unit (Subunit)),
6681 Empty, Instantiating => False);
6682
6683 -- Now place the original proper body in the original generic
6684 -- unit. This is a body, not a compilation unit.
6685
6686 Rewrite (N, Proper_Body (Unit (Subunit)));
6687 Set_Is_Compilation_Unit (Defining_Entity (N), False);
6688 Set_Was_Originally_Stub (N);
6689
6690 -- Finally replace the body of the subunit with its copy, and
6691 -- make this new subunit into the library unit of the generic
6692 -- copy, which does not have stubs any longer.
6693
6694 Set_Proper_Body (Unit (Subunit), New_Body);
6695 Set_Library_Unit (New_N, Subunit);
6696 Inherit_Context (Unit (Subunit), N);
6697 end;
6698
6699 -- If we are instantiating, this must be an error case, since
6700 -- otherwise we would have replaced the stub node by the proper body
6701 -- that corresponds. So just ignore it in the copy (i.e. we have
6702 -- copied it, and that is good enough).
6703
6704 else
6705 null;
6706 end if;
6707
6708 <<Subunit_Not_Found>> null;
6709
6710 -- If the node is a compilation unit, it is the subunit of a stub, which
6711 -- has been loaded already (see code below). In this case, the library
6712 -- unit field of N points to the parent unit (which is a compilation
6713 -- unit) and need not (and cannot!) be copied.
6714
6715 -- When the proper body of the stub is analyzed, the library_unit link
6716 -- is used to establish the proper context (see sem_ch10).
6717
6718 -- The other fields of a compilation unit are copied as usual
6719
6720 elsif Nkind (N) = N_Compilation_Unit then
6721
6722 -- This code can only be executed when not instantiating, because in
6723 -- the copy made for an instantiation, the compilation unit node has
6724 -- disappeared at the point that a stub is replaced by its proper
6725 -- body.
6726
6727 pragma Assert (not Instantiating);
6728
6729 Set_Context_Items (New_N,
6730 Copy_Generic_List (Context_Items (N), New_N));
6731
6732 Set_Unit (New_N,
6733 Copy_Generic_Node (Unit (N), New_N, False));
6734
6735 Set_First_Inlined_Subprogram (New_N,
6736 Copy_Generic_Node
6737 (First_Inlined_Subprogram (N), New_N, False));
6738
6739 Set_Aux_Decls_Node (New_N,
6740 Copy_Generic_Node (Aux_Decls_Node (N), New_N, False));
6741
6742 -- For an assignment node, the assignment is known to be semantically
6743 -- legal if we are instantiating the template. This avoids incorrect
6744 -- diagnostics in generated code.
6745
6746 elsif Nkind (N) = N_Assignment_Statement then
6747
6748 -- Copy name and expression fields in usual manner
6749
6750 Set_Name (New_N,
6751 Copy_Generic_Node (Name (N), New_N, Instantiating));
6752
6753 Set_Expression (New_N,
6754 Copy_Generic_Node (Expression (N), New_N, Instantiating));
6755
6756 if Instantiating then
6757 Set_Assignment_OK (Name (New_N), True);
6758 end if;
6759
6760 elsif Nkind_In (N, N_Aggregate, N_Extension_Aggregate) then
6761 if not Instantiating then
6762 Set_Associated_Node (N, New_N);
6763
6764 else
6765 if Present (Get_Associated_Node (N))
6766 and then Nkind (Get_Associated_Node (N)) = Nkind (N)
6767 then
6768 -- In the generic the aggregate has some composite type. If at
6769 -- the point of instantiation the type has a private view,
6770 -- install the full view (and that of its ancestors, if any).
6771
6772 declare
6773 T : Entity_Id := (Etype (Get_Associated_Node (New_N)));
6774 Rt : Entity_Id;
6775
6776 begin
6777 if Present (T)
6778 and then Is_Private_Type (T)
6779 then
6780 Switch_View (T);
6781 end if;
6782
6783 if Present (T)
6784 and then Is_Tagged_Type (T)
6785 and then Is_Derived_Type (T)
6786 then
6787 Rt := Root_Type (T);
6788
6789 loop
6790 T := Etype (T);
6791
6792 if Is_Private_Type (T) then
6793 Switch_View (T);
6794 end if;
6795
6796 exit when T = Rt;
6797 end loop;
6798 end if;
6799 end;
6800 end if;
6801 end if;
6802
6803 -- Do not copy the associated node, which points to the generic copy
6804 -- of the aggregate.
6805
6806 declare
6807 use Atree.Unchecked_Access;
6808 -- This code section is part of the implementation of an untyped
6809 -- tree traversal, so it needs direct access to node fields.
6810
6811 begin
6812 Set_Field1 (New_N, Copy_Generic_Descendant (Field1 (N)));
6813 Set_Field2 (New_N, Copy_Generic_Descendant (Field2 (N)));
6814 Set_Field3 (New_N, Copy_Generic_Descendant (Field3 (N)));
6815 Set_Field5 (New_N, Copy_Generic_Descendant (Field5 (N)));
6816 end;
6817
6818 -- Allocators do not have an identifier denoting the access type, so we
6819 -- must locate it through the expression to check whether the views are
6820 -- consistent.
6821
6822 elsif Nkind (N) = N_Allocator
6823 and then Nkind (Expression (N)) = N_Qualified_Expression
6824 and then Is_Entity_Name (Subtype_Mark (Expression (N)))
6825 and then Instantiating
6826 then
6827 declare
6828 T : constant Node_Id :=
6829 Get_Associated_Node (Subtype_Mark (Expression (N)));
6830 Acc_T : Entity_Id;
6831
6832 begin
6833 if Present (T) then
6834
6835 -- Retrieve the allocator node in the generic copy
6836
6837 Acc_T := Etype (Parent (Parent (T)));
6838 if Present (Acc_T)
6839 and then Is_Private_Type (Acc_T)
6840 then
6841 Switch_View (Acc_T);
6842 end if;
6843 end if;
6844
6845 Copy_Descendants;
6846 end;
6847
6848 -- For a proper body, we must catch the case of a proper body that
6849 -- replaces a stub. This represents the point at which a separate
6850 -- compilation unit, and hence template file, may be referenced, so we
6851 -- must make a new source instantiation entry for the template of the
6852 -- subunit, and ensure that all nodes in the subunit are adjusted using
6853 -- this new source instantiation entry.
6854
6855 elsif Nkind (N) in N_Proper_Body then
6856 declare
6857 Save_Adjustment : constant Sloc_Adjustment := S_Adjustment;
6858
6859 begin
6860 if Instantiating and then Was_Originally_Stub (N) then
6861 Create_Instantiation_Source
6862 (Instantiation_Node,
6863 Defining_Entity (N),
6864 False,
6865 S_Adjustment);
6866 end if;
6867
6868 -- Now copy the fields of the proper body, using the new
6869 -- adjustment factor if one was needed as per test above.
6870
6871 Copy_Descendants;
6872
6873 -- Restore the original adjustment factor in case changed
6874
6875 S_Adjustment := Save_Adjustment;
6876 end;
6877
6878 -- Don't copy Ident or Comment pragmas, since the comment belongs to the
6879 -- generic unit, not to the instantiating unit.
6880
6881 elsif Nkind (N) = N_Pragma and then Instantiating then
6882 declare
6883 Prag_Id : constant Pragma_Id := Get_Pragma_Id (N);
6884 begin
6885 if Prag_Id = Pragma_Ident or else Prag_Id = Pragma_Comment then
6886 New_N := Make_Null_Statement (Sloc (N));
6887
6888 else
6889 Copy_Descendants;
6890 end if;
6891 end;
6892
6893 elsif Nkind_In (N, N_Integer_Literal, N_Real_Literal) then
6894
6895 -- No descendant fields need traversing
6896
6897 null;
6898
6899 elsif Nkind (N) = N_String_Literal
6900 and then Present (Etype (N))
6901 and then Instantiating
6902 then
6903 -- If the string is declared in an outer scope, the string_literal
6904 -- subtype created for it may have the wrong scope. We force the
6905 -- reanalysis of the constant to generate a new itype in the proper
6906 -- context.
6907
6908 Set_Etype (New_N, Empty);
6909 Set_Analyzed (New_N, False);
6910
6911 -- For the remaining nodes, copy their descendants recursively
6912
6913 else
6914 Copy_Descendants;
6915
6916 if Instantiating and then Nkind (N) = N_Subprogram_Body then
6917 Set_Generic_Parent (Specification (New_N), N);
6918
6919 -- Should preserve Corresponding_Spec??? (12.3(14))
6920 end if;
6921 end if;
6922
6923 return New_N;
6924 end Copy_Generic_Node;
6925
6926 ----------------------------
6927 -- Denotes_Formal_Package --
6928 ----------------------------
6929
6930 function Denotes_Formal_Package
6931 (Pack : Entity_Id;
6932 On_Exit : Boolean := False;
6933 Instance : Entity_Id := Empty) return Boolean
6934 is
6935 Par : Entity_Id;
6936 Scop : constant Entity_Id := Scope (Pack);
6937 E : Entity_Id;
6938
6939 function Is_Actual_Of_Previous_Formal (P : Entity_Id) return Boolean;
6940 -- The package in question may be an actual for a previous formal
6941 -- package P of the current instance, so examine its actuals as well.
6942 -- This must be recursive over other formal packages.
6943
6944 ----------------------------------
6945 -- Is_Actual_Of_Previous_Formal --
6946 ----------------------------------
6947
6948 function Is_Actual_Of_Previous_Formal (P : Entity_Id) return Boolean is
6949 E1 : Entity_Id;
6950
6951 begin
6952 E1 := First_Entity (P);
6953 while Present (E1) and then E1 /= Instance loop
6954 if Ekind (E1) = E_Package
6955 and then Nkind (Parent (E1)) = N_Package_Renaming_Declaration
6956 then
6957 if Renamed_Object (E1) = Pack then
6958 return True;
6959
6960 elsif E1 = P or else Renamed_Object (E1) = P then
6961 return False;
6962
6963 elsif Is_Actual_Of_Previous_Formal (E1) then
6964 return True;
6965 end if;
6966 end if;
6967
6968 Next_Entity (E1);
6969 end loop;
6970
6971 return False;
6972 end Is_Actual_Of_Previous_Formal;
6973
6974 -- Start of processing for Denotes_Formal_Package
6975
6976 begin
6977 if On_Exit then
6978 Par :=
6979 Instance_Envs.Table
6980 (Instance_Envs.Last).Instantiated_Parent.Act_Id;
6981 else
6982 Par := Current_Instantiated_Parent.Act_Id;
6983 end if;
6984
6985 if Ekind (Scop) = E_Generic_Package
6986 or else Nkind (Unit_Declaration_Node (Scop)) =
6987 N_Generic_Subprogram_Declaration
6988 then
6989 return True;
6990
6991 elsif Nkind (Original_Node (Unit_Declaration_Node (Pack))) =
6992 N_Formal_Package_Declaration
6993 then
6994 return True;
6995
6996 elsif No (Par) then
6997 return False;
6998
6999 else
7000 -- Check whether this package is associated with a formal package of
7001 -- the enclosing instantiation. Iterate over the list of renamings.
7002
7003 E := First_Entity (Par);
7004 while Present (E) loop
7005 if Ekind (E) /= E_Package
7006 or else Nkind (Parent (E)) /= N_Package_Renaming_Declaration
7007 then
7008 null;
7009
7010 elsif Renamed_Object (E) = Par then
7011 return False;
7012
7013 elsif Renamed_Object (E) = Pack then
7014 return True;
7015
7016 elsif Is_Actual_Of_Previous_Formal (E) then
7017 return True;
7018
7019 end if;
7020
7021 Next_Entity (E);
7022 end loop;
7023
7024 return False;
7025 end if;
7026 end Denotes_Formal_Package;
7027
7028 -----------------
7029 -- End_Generic --
7030 -----------------
7031
7032 procedure End_Generic is
7033 begin
7034 -- ??? More things could be factored out in this routine. Should
7035 -- probably be done at a later stage.
7036
7037 Inside_A_Generic := Generic_Flags.Table (Generic_Flags.Last);
7038 Generic_Flags.Decrement_Last;
7039
7040 Expander_Mode_Restore;
7041 end End_Generic;
7042
7043 -------------
7044 -- Earlier --
7045 -------------
7046
7047 function Earlier (N1, N2 : Node_Id) return Boolean is
7048 procedure Find_Depth (P : in out Node_Id; D : in out Integer);
7049 -- Find distance from given node to enclosing compilation unit
7050
7051 ----------------
7052 -- Find_Depth --
7053 ----------------
7054
7055 procedure Find_Depth (P : in out Node_Id; D : in out Integer) is
7056 begin
7057 while Present (P)
7058 and then Nkind (P) /= N_Compilation_Unit
7059 loop
7060 P := True_Parent (P);
7061 D := D + 1;
7062 end loop;
7063 end Find_Depth;
7064
7065 -- Local declarations
7066
7067 D1 : Integer := 0;
7068 D2 : Integer := 0;
7069 P1 : Node_Id := N1;
7070 P2 : Node_Id := N2;
7071
7072 -- Start of processing for Earlier
7073
7074 begin
7075 Find_Depth (P1, D1);
7076 Find_Depth (P2, D2);
7077
7078 if P1 /= P2 then
7079 return False;
7080 else
7081 P1 := N1;
7082 P2 := N2;
7083 end if;
7084
7085 while D1 > D2 loop
7086 P1 := True_Parent (P1);
7087 D1 := D1 - 1;
7088 end loop;
7089
7090 while D2 > D1 loop
7091 P2 := True_Parent (P2);
7092 D2 := D2 - 1;
7093 end loop;
7094
7095 -- At this point P1 and P2 are at the same distance from the root.
7096 -- We examine their parents until we find a common declarative list.
7097 -- If we reach the root, N1 and N2 do not descend from the same
7098 -- declarative list (e.g. one is nested in the declarative part and
7099 -- the other is in a block in the statement part) and the earlier
7100 -- one is already frozen.
7101
7102 while not Is_List_Member (P1)
7103 or else not Is_List_Member (P2)
7104 or else List_Containing (P1) /= List_Containing (P2)
7105 loop
7106 P1 := True_Parent (P1);
7107 P2 := True_Parent (P2);
7108
7109 if Nkind (Parent (P1)) = N_Subunit then
7110 P1 := Corresponding_Stub (Parent (P1));
7111 end if;
7112
7113 if Nkind (Parent (P2)) = N_Subunit then
7114 P2 := Corresponding_Stub (Parent (P2));
7115 end if;
7116
7117 if P1 = P2 then
7118 return False;
7119 end if;
7120 end loop;
7121
7122 -- Expanded code usually shares the source location of the original
7123 -- construct it was generated for. This however may not necessarely
7124 -- reflect the true location of the code within the tree.
7125
7126 -- Before comparing the slocs of the two nodes, make sure that we are
7127 -- working with correct source locations. Assume that P1 is to the left
7128 -- of P2. If either one does not come from source, traverse the common
7129 -- list heading towards the other node and locate the first source
7130 -- statement.
7131
7132 -- P1 P2
7133 -- ----+===+===+--------------+===+===+----
7134 -- expanded code expanded code
7135
7136 if not Comes_From_Source (P1) then
7137 while Present (P1) loop
7138
7139 -- Neither P2 nor a source statement were located during the
7140 -- search. If we reach the end of the list, then P1 does not
7141 -- occur earlier than P2.
7142
7143 -- ---->
7144 -- start --- P2 ----- P1 --- end
7145
7146 if No (Next (P1)) then
7147 return False;
7148
7149 -- We encounter P2 while going to the right of the list. This
7150 -- means that P1 does indeed appear earlier.
7151
7152 -- ---->
7153 -- start --- P1 ===== P2 --- end
7154 -- expanded code in between
7155
7156 elsif P1 = P2 then
7157 return True;
7158
7159 -- No need to look any further since we have located a source
7160 -- statement.
7161
7162 elsif Comes_From_Source (P1) then
7163 exit;
7164 end if;
7165
7166 -- Keep going right
7167
7168 Next (P1);
7169 end loop;
7170 end if;
7171
7172 if not Comes_From_Source (P2) then
7173 while Present (P2) loop
7174
7175 -- Neither P1 nor a source statement were located during the
7176 -- search. If we reach the start of the list, then P1 does not
7177 -- occur earlier than P2.
7178
7179 -- <----
7180 -- start --- P2 --- P1 --- end
7181
7182 if No (Prev (P2)) then
7183 return False;
7184
7185 -- We encounter P1 while going to the left of the list. This
7186 -- means that P1 does indeed appear earlier.
7187
7188 -- <----
7189 -- start --- P1 ===== P2 --- end
7190 -- expanded code in between
7191
7192 elsif P2 = P1 then
7193 return True;
7194
7195 -- No need to look any further since we have located a source
7196 -- statement.
7197
7198 elsif Comes_From_Source (P2) then
7199 exit;
7200 end if;
7201
7202 -- Keep going left
7203
7204 Prev (P2);
7205 end loop;
7206 end if;
7207
7208 -- At this point either both nodes came from source or we approximated
7209 -- their source locations through neighbouring source statements.
7210
7211 -- When two nodes come from the same instance, they have identical top
7212 -- level locations. To determine proper relation within the tree, check
7213 -- their locations within the template.
7214
7215 if Top_Level_Location (Sloc (P1)) = Top_Level_Location (Sloc (P2)) then
7216 return Sloc (P1) < Sloc (P2);
7217
7218 -- The two nodes either come from unrelated instances or do not come
7219 -- from instantiated code at all.
7220
7221 else
7222 return Top_Level_Location (Sloc (P1))
7223 < Top_Level_Location (Sloc (P2));
7224 end if;
7225 end Earlier;
7226
7227 ----------------------
7228 -- Find_Actual_Type --
7229 ----------------------
7230
7231 function Find_Actual_Type
7232 (Typ : Entity_Id;
7233 Gen_Type : Entity_Id) return Entity_Id
7234 is
7235 Gen_Scope : constant Entity_Id := Scope (Gen_Type);
7236 T : Entity_Id;
7237
7238 begin
7239 -- Special processing only applies to child units
7240
7241 if not Is_Child_Unit (Gen_Scope) then
7242 return Get_Instance_Of (Typ);
7243
7244 -- If designated or component type is itself a formal of the child unit,
7245 -- its instance is available.
7246
7247 elsif Scope (Typ) = Gen_Scope then
7248 return Get_Instance_Of (Typ);
7249
7250 -- If the array or access type is not declared in the parent unit,
7251 -- no special processing needed.
7252
7253 elsif not Is_Generic_Type (Typ)
7254 and then Scope (Gen_Scope) /= Scope (Typ)
7255 then
7256 return Get_Instance_Of (Typ);
7257
7258 -- Otherwise, retrieve designated or component type by visibility
7259
7260 else
7261 T := Current_Entity (Typ);
7262 while Present (T) loop
7263 if In_Open_Scopes (Scope (T)) then
7264 return T;
7265
7266 elsif Is_Generic_Actual_Type (T) then
7267 return T;
7268 end if;
7269
7270 T := Homonym (T);
7271 end loop;
7272
7273 return Typ;
7274 end if;
7275 end Find_Actual_Type;
7276
7277 ----------------------------
7278 -- Freeze_Subprogram_Body --
7279 ----------------------------
7280
7281 procedure Freeze_Subprogram_Body
7282 (Inst_Node : Node_Id;
7283 Gen_Body : Node_Id;
7284 Pack_Id : Entity_Id)
7285 is
7286 Gen_Unit : constant Entity_Id := Get_Generic_Entity (Inst_Node);
7287 Par : constant Entity_Id := Scope (Gen_Unit);
7288 E_G_Id : Entity_Id;
7289 Enc_G : Entity_Id;
7290 Enc_I : Node_Id;
7291 F_Node : Node_Id;
7292
7293 function Enclosing_Package_Body (N : Node_Id) return Node_Id;
7294 -- Find innermost package body that encloses the given node, and which
7295 -- is not a compilation unit. Freeze nodes for the instance, or for its
7296 -- enclosing body, may be inserted after the enclosing_body of the
7297 -- generic unit. Used to determine proper placement of freeze node for
7298 -- both package and subprogram instances.
7299
7300 function Package_Freeze_Node (B : Node_Id) return Node_Id;
7301 -- Find entity for given package body, and locate or create a freeze
7302 -- node for it.
7303
7304 ----------------------------
7305 -- Enclosing_Package_Body --
7306 ----------------------------
7307
7308 function Enclosing_Package_Body (N : Node_Id) return Node_Id is
7309 P : Node_Id;
7310
7311 begin
7312 P := Parent (N);
7313 while Present (P)
7314 and then Nkind (Parent (P)) /= N_Compilation_Unit
7315 loop
7316 if Nkind (P) = N_Package_Body then
7317 if Nkind (Parent (P)) = N_Subunit then
7318 return Corresponding_Stub (Parent (P));
7319 else
7320 return P;
7321 end if;
7322 end if;
7323
7324 P := True_Parent (P);
7325 end loop;
7326
7327 return Empty;
7328 end Enclosing_Package_Body;
7329
7330 -------------------------
7331 -- Package_Freeze_Node --
7332 -------------------------
7333
7334 function Package_Freeze_Node (B : Node_Id) return Node_Id is
7335 Id : Entity_Id;
7336
7337 begin
7338 if Nkind (B) = N_Package_Body then
7339 Id := Corresponding_Spec (B);
7340 else pragma Assert (Nkind (B) = N_Package_Body_Stub);
7341 Id := Corresponding_Spec (Proper_Body (Unit (Library_Unit (B))));
7342 end if;
7343
7344 Ensure_Freeze_Node (Id);
7345 return Freeze_Node (Id);
7346 end Package_Freeze_Node;
7347
7348 -- Start of processing of Freeze_Subprogram_Body
7349
7350 begin
7351 -- If the instance and the generic body appear within the same unit, and
7352 -- the instance precedes the generic, the freeze node for the instance
7353 -- must appear after that of the generic. If the generic is nested
7354 -- within another instance I2, then current instance must be frozen
7355 -- after I2. In both cases, the freeze nodes are those of enclosing
7356 -- packages. Otherwise, the freeze node is placed at the end of the
7357 -- current declarative part.
7358
7359 Enc_G := Enclosing_Package_Body (Gen_Body);
7360 Enc_I := Enclosing_Package_Body (Inst_Node);
7361 Ensure_Freeze_Node (Pack_Id);
7362 F_Node := Freeze_Node (Pack_Id);
7363
7364 if Is_Generic_Instance (Par)
7365 and then Present (Freeze_Node (Par))
7366 and then In_Same_Declarative_Part (Freeze_Node (Par), Inst_Node)
7367 then
7368 -- The parent was a premature instantiation. Insert freeze node at
7369 -- the end the current declarative part.
7370
7371 if ABE_Is_Certain (Get_Package_Instantiation_Node (Par)) then
7372 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
7373
7374 -- Handle the following case:
7375 --
7376 -- package Parent_Inst is new ...
7377 -- Parent_Inst []
7378 --
7379 -- procedure P ... -- this body freezes Parent_Inst
7380 --
7381 -- package Inst is new ...
7382 --
7383 -- In this particular scenario, the freeze node for Inst must be
7384 -- inserted in the same manner as that of Parent_Inst - before the
7385 -- next source body or at the end of the declarative list (body not
7386 -- available). If body P did not exist and Parent_Inst was frozen
7387 -- after Inst, either by a body following Inst or at the end of the
7388 -- declarative region, the freeze node for Inst must be inserted
7389 -- after that of Parent_Inst. This relation is established by
7390 -- comparing the Slocs of Parent_Inst freeze node and Inst.
7391
7392 elsif List_Containing (Get_Package_Instantiation_Node (Par)) =
7393 List_Containing (Inst_Node)
7394 and then Sloc (Freeze_Node (Par)) < Sloc (Inst_Node)
7395 then
7396 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
7397
7398 else
7399 Insert_After (Freeze_Node (Par), F_Node);
7400 end if;
7401
7402 -- The body enclosing the instance should be frozen after the body that
7403 -- includes the generic, because the body of the instance may make
7404 -- references to entities therein. If the two are not in the same
7405 -- declarative part, or if the one enclosing the instance is frozen
7406 -- already, freeze the instance at the end of the current declarative
7407 -- part.
7408
7409 elsif Is_Generic_Instance (Par)
7410 and then Present (Freeze_Node (Par))
7411 and then Present (Enc_I)
7412 then
7413 if In_Same_Declarative_Part (Freeze_Node (Par), Enc_I)
7414 or else
7415 (Nkind (Enc_I) = N_Package_Body
7416 and then
7417 In_Same_Declarative_Part (Freeze_Node (Par), Parent (Enc_I)))
7418 then
7419 -- The enclosing package may contain several instances. Rather
7420 -- than computing the earliest point at which to insert its freeze
7421 -- node, we place it at the end of the declarative part of the
7422 -- parent of the generic.
7423
7424 Insert_Freeze_Node_For_Instance
7425 (Freeze_Node (Par), Package_Freeze_Node (Enc_I));
7426 end if;
7427
7428 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
7429
7430 elsif Present (Enc_G)
7431 and then Present (Enc_I)
7432 and then Enc_G /= Enc_I
7433 and then Earlier (Inst_Node, Gen_Body)
7434 then
7435 if Nkind (Enc_G) = N_Package_Body then
7436 E_G_Id := Corresponding_Spec (Enc_G);
7437 else pragma Assert (Nkind (Enc_G) = N_Package_Body_Stub);
7438 E_G_Id :=
7439 Corresponding_Spec (Proper_Body (Unit (Library_Unit (Enc_G))));
7440 end if;
7441
7442 -- Freeze package that encloses instance, and place node after
7443 -- package that encloses generic. If enclosing package is already
7444 -- frozen we have to assume it is at the proper place. This may be a
7445 -- potential ABE that requires dynamic checking. Do not add a freeze
7446 -- node if the package that encloses the generic is inside the body
7447 -- that encloses the instance, because the freeze node would be in
7448 -- the wrong scope. Additional contortions needed if the bodies are
7449 -- within a subunit.
7450
7451 declare
7452 Enclosing_Body : Node_Id;
7453
7454 begin
7455 if Nkind (Enc_I) = N_Package_Body_Stub then
7456 Enclosing_Body := Proper_Body (Unit (Library_Unit (Enc_I)));
7457 else
7458 Enclosing_Body := Enc_I;
7459 end if;
7460
7461 if Parent (List_Containing (Enc_G)) /= Enclosing_Body then
7462 Insert_Freeze_Node_For_Instance
7463 (Enc_G, Package_Freeze_Node (Enc_I));
7464 end if;
7465 end;
7466
7467 -- Freeze enclosing subunit before instance
7468
7469 Ensure_Freeze_Node (E_G_Id);
7470
7471 if not Is_List_Member (Freeze_Node (E_G_Id)) then
7472 Insert_After (Enc_G, Freeze_Node (E_G_Id));
7473 end if;
7474
7475 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
7476
7477 else
7478 -- If none of the above, insert freeze node at the end of the current
7479 -- declarative part.
7480
7481 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
7482 end if;
7483 end Freeze_Subprogram_Body;
7484
7485 ----------------
7486 -- Get_Gen_Id --
7487 ----------------
7488
7489 function Get_Gen_Id (E : Assoc_Ptr) return Entity_Id is
7490 begin
7491 return Generic_Renamings.Table (E).Gen_Id;
7492 end Get_Gen_Id;
7493
7494 ---------------------
7495 -- Get_Instance_Of --
7496 ---------------------
7497
7498 function Get_Instance_Of (A : Entity_Id) return Entity_Id is
7499 Res : constant Assoc_Ptr := Generic_Renamings_HTable.Get (A);
7500
7501 begin
7502 if Res /= Assoc_Null then
7503 return Generic_Renamings.Table (Res).Act_Id;
7504 else
7505 -- On exit, entity is not instantiated: not a generic parameter, or
7506 -- else parameter of an inner generic unit.
7507
7508 return A;
7509 end if;
7510 end Get_Instance_Of;
7511
7512 ------------------------------------
7513 -- Get_Package_Instantiation_Node --
7514 ------------------------------------
7515
7516 function Get_Package_Instantiation_Node (A : Entity_Id) return Node_Id is
7517 Decl : Node_Id := Unit_Declaration_Node (A);
7518 Inst : Node_Id;
7519
7520 begin
7521 -- If the Package_Instantiation attribute has been set on the package
7522 -- entity, then use it directly when it (or its Original_Node) refers
7523 -- to an N_Package_Instantiation node. In principle it should be
7524 -- possible to have this field set in all cases, which should be
7525 -- investigated, and would allow this function to be significantly
7526 -- simplified. ???
7527
7528 Inst := Package_Instantiation (A);
7529
7530 if Present (Inst) then
7531 if Nkind (Inst) = N_Package_Instantiation then
7532 return Inst;
7533
7534 elsif Nkind (Original_Node (Inst)) = N_Package_Instantiation then
7535 return Original_Node (Inst);
7536 end if;
7537 end if;
7538
7539 -- If the instantiation is a compilation unit that does not need body
7540 -- then the instantiation node has been rewritten as a package
7541 -- declaration for the instance, and we return the original node.
7542
7543 -- If it is a compilation unit and the instance node has not been
7544 -- rewritten, then it is still the unit of the compilation. Finally, if
7545 -- a body is present, this is a parent of the main unit whose body has
7546 -- been compiled for inlining purposes, and the instantiation node has
7547 -- been rewritten with the instance body.
7548
7549 -- Otherwise the instantiation node appears after the declaration. If
7550 -- the entity is a formal package, the declaration may have been
7551 -- rewritten as a generic declaration (in the case of a formal with box)
7552 -- or left as a formal package declaration if it has actuals, and is
7553 -- found with a forward search.
7554
7555 if Nkind (Parent (Decl)) = N_Compilation_Unit then
7556 if Nkind (Decl) = N_Package_Declaration
7557 and then Present (Corresponding_Body (Decl))
7558 then
7559 Decl := Unit_Declaration_Node (Corresponding_Body (Decl));
7560 end if;
7561
7562 if Nkind (Original_Node (Decl)) = N_Package_Instantiation then
7563 return Original_Node (Decl);
7564 else
7565 return Unit (Parent (Decl));
7566 end if;
7567
7568 elsif Nkind (Decl) = N_Package_Declaration
7569 and then Nkind (Original_Node (Decl)) = N_Formal_Package_Declaration
7570 then
7571 return Original_Node (Decl);
7572
7573 else
7574 Inst := Next (Decl);
7575 while not Nkind_In (Inst, N_Package_Instantiation,
7576 N_Formal_Package_Declaration)
7577 loop
7578 Next (Inst);
7579 end loop;
7580
7581 return Inst;
7582 end if;
7583 end Get_Package_Instantiation_Node;
7584
7585 ------------------------
7586 -- Has_Been_Exchanged --
7587 ------------------------
7588
7589 function Has_Been_Exchanged (E : Entity_Id) return Boolean is
7590 Next : Elmt_Id;
7591
7592 begin
7593 Next := First_Elmt (Exchanged_Views);
7594 while Present (Next) loop
7595 if Full_View (Node (Next)) = E then
7596 return True;
7597 end if;
7598
7599 Next_Elmt (Next);
7600 end loop;
7601
7602 return False;
7603 end Has_Been_Exchanged;
7604
7605 ----------
7606 -- Hash --
7607 ----------
7608
7609 function Hash (F : Entity_Id) return HTable_Range is
7610 begin
7611 return HTable_Range (F mod HTable_Size);
7612 end Hash;
7613
7614 ------------------------
7615 -- Hide_Current_Scope --
7616 ------------------------
7617
7618 procedure Hide_Current_Scope is
7619 C : constant Entity_Id := Current_Scope;
7620 E : Entity_Id;
7621
7622 begin
7623 Set_Is_Hidden_Open_Scope (C);
7624
7625 E := First_Entity (C);
7626 while Present (E) loop
7627 if Is_Immediately_Visible (E) then
7628 Set_Is_Immediately_Visible (E, False);
7629 Append_Elmt (E, Hidden_Entities);
7630 end if;
7631
7632 Next_Entity (E);
7633 end loop;
7634
7635 -- Make the scope name invisible as well. This is necessary, but might
7636 -- conflict with calls to Rtsfind later on, in case the scope is a
7637 -- predefined one. There is no clean solution to this problem, so for
7638 -- now we depend on the user not redefining Standard itself in one of
7639 -- the parent units.
7640
7641 if Is_Immediately_Visible (C) and then C /= Standard_Standard then
7642 Set_Is_Immediately_Visible (C, False);
7643 Append_Elmt (C, Hidden_Entities);
7644 end if;
7645
7646 end Hide_Current_Scope;
7647
7648 --------------
7649 -- Init_Env --
7650 --------------
7651
7652 procedure Init_Env is
7653 Saved : Instance_Env;
7654
7655 begin
7656 Saved.Instantiated_Parent := Current_Instantiated_Parent;
7657 Saved.Exchanged_Views := Exchanged_Views;
7658 Saved.Hidden_Entities := Hidden_Entities;
7659 Saved.Current_Sem_Unit := Current_Sem_Unit;
7660 Saved.Parent_Unit_Visible := Parent_Unit_Visible;
7661 Saved.Instance_Parent_Unit := Instance_Parent_Unit;
7662
7663 -- Save configuration switches. These may be reset if the unit is a
7664 -- predefined unit, and the current mode is not Ada 2005.
7665
7666 Save_Opt_Config_Switches (Saved.Switches);
7667
7668 Instance_Envs.Append (Saved);
7669
7670 Exchanged_Views := New_Elmt_List;
7671 Hidden_Entities := New_Elmt_List;
7672
7673 -- Make dummy entry for Instantiated parent. If generic unit is legal,
7674 -- this is set properly in Set_Instance_Env.
7675
7676 Current_Instantiated_Parent :=
7677 (Current_Scope, Current_Scope, Assoc_Null);
7678 end Init_Env;
7679
7680 ------------------------------
7681 -- In_Same_Declarative_Part --
7682 ------------------------------
7683
7684 function In_Same_Declarative_Part
7685 (F_Node : Node_Id;
7686 Inst : Node_Id) return Boolean
7687 is
7688 Decls : constant Node_Id := Parent (F_Node);
7689 Nod : Node_Id := Parent (Inst);
7690
7691 begin
7692 while Present (Nod) loop
7693 if Nod = Decls then
7694 return True;
7695
7696 elsif Nkind_In (Nod, N_Subprogram_Body,
7697 N_Package_Body,
7698 N_Package_Declaration,
7699 N_Task_Body,
7700 N_Protected_Body,
7701 N_Block_Statement)
7702 then
7703 return False;
7704
7705 elsif Nkind (Nod) = N_Subunit then
7706 Nod := Corresponding_Stub (Nod);
7707
7708 elsif Nkind (Nod) = N_Compilation_Unit then
7709 return False;
7710
7711 else
7712 Nod := Parent (Nod);
7713 end if;
7714 end loop;
7715
7716 return False;
7717 end In_Same_Declarative_Part;
7718
7719 ---------------------
7720 -- In_Main_Context --
7721 ---------------------
7722
7723 function In_Main_Context (E : Entity_Id) return Boolean is
7724 Context : List_Id;
7725 Clause : Node_Id;
7726 Nam : Node_Id;
7727
7728 begin
7729 if not Is_Compilation_Unit (E)
7730 or else Ekind (E) /= E_Package
7731 or else In_Private_Part (E)
7732 then
7733 return False;
7734 end if;
7735
7736 Context := Context_Items (Cunit (Main_Unit));
7737
7738 Clause := First (Context);
7739 while Present (Clause) loop
7740 if Nkind (Clause) = N_With_Clause then
7741 Nam := Name (Clause);
7742
7743 -- If the current scope is part of the context of the main unit,
7744 -- analysis of the corresponding with_clause is not complete, and
7745 -- the entity is not set. We use the Chars field directly, which
7746 -- might produce false positives in rare cases, but guarantees
7747 -- that we produce all the instance bodies we will need.
7748
7749 if (Is_Entity_Name (Nam) and then Chars (Nam) = Chars (E))
7750 or else (Nkind (Nam) = N_Selected_Component
7751 and then Chars (Selector_Name (Nam)) = Chars (E))
7752 then
7753 return True;
7754 end if;
7755 end if;
7756
7757 Next (Clause);
7758 end loop;
7759
7760 return False;
7761 end In_Main_Context;
7762
7763 ---------------------
7764 -- Inherit_Context --
7765 ---------------------
7766
7767 procedure Inherit_Context (Gen_Decl : Node_Id; Inst : Node_Id) is
7768 Current_Context : List_Id;
7769 Current_Unit : Node_Id;
7770 Item : Node_Id;
7771 New_I : Node_Id;
7772
7773 Clause : Node_Id;
7774 OK : Boolean;
7775 Lib_Unit : Node_Id;
7776
7777 begin
7778 if Nkind (Parent (Gen_Decl)) = N_Compilation_Unit then
7779
7780 -- The inherited context is attached to the enclosing compilation
7781 -- unit. This is either the main unit, or the declaration for the
7782 -- main unit (in case the instantiation appears within the package
7783 -- declaration and the main unit is its body).
7784
7785 Current_Unit := Parent (Inst);
7786 while Present (Current_Unit)
7787 and then Nkind (Current_Unit) /= N_Compilation_Unit
7788 loop
7789 Current_Unit := Parent (Current_Unit);
7790 end loop;
7791
7792 Current_Context := Context_Items (Current_Unit);
7793
7794 Item := First (Context_Items (Parent (Gen_Decl)));
7795 while Present (Item) loop
7796 if Nkind (Item) = N_With_Clause then
7797 Lib_Unit := Library_Unit (Item);
7798
7799 -- Take care to prevent direct cyclic with's
7800
7801 if Lib_Unit /= Current_Unit then
7802
7803 -- Do not add a unit if it is already in the context
7804
7805 Clause := First (Current_Context);
7806 OK := True;
7807 while Present (Clause) loop
7808 if Nkind (Clause) = N_With_Clause and then
7809 Library_Unit (Clause) = Lib_Unit
7810 then
7811 OK := False;
7812 exit;
7813 end if;
7814
7815 Next (Clause);
7816 end loop;
7817
7818 if OK then
7819 New_I := New_Copy (Item);
7820 Set_Implicit_With (New_I, True);
7821 Set_Implicit_With_From_Instantiation (New_I, True);
7822 Append (New_I, Current_Context);
7823 end if;
7824 end if;
7825 end if;
7826
7827 Next (Item);
7828 end loop;
7829 end if;
7830 end Inherit_Context;
7831
7832 ----------------
7833 -- Initialize --
7834 ----------------
7835
7836 procedure Initialize is
7837 begin
7838 Generic_Renamings.Init;
7839 Instance_Envs.Init;
7840 Generic_Flags.Init;
7841 Generic_Renamings_HTable.Reset;
7842 Circularity_Detected := False;
7843 Exchanged_Views := No_Elist;
7844 Hidden_Entities := No_Elist;
7845 end Initialize;
7846
7847 -------------------------------------
7848 -- Insert_Freeze_Node_For_Instance --
7849 -------------------------------------
7850
7851 procedure Insert_Freeze_Node_For_Instance
7852 (N : Node_Id;
7853 F_Node : Node_Id)
7854 is
7855 Inst : constant Entity_Id := Entity (F_Node);
7856 Decl : Node_Id;
7857 Decls : List_Id;
7858 Par_N : Node_Id;
7859
7860 function Enclosing_Body (N : Node_Id) return Node_Id;
7861 -- Find enclosing package or subprogram body, if any. Freeze node
7862 -- may be placed at end of current declarative list if previous
7863 -- instance and current one have different enclosing bodies.
7864
7865 function Previous_Instance (Gen : Entity_Id) return Entity_Id;
7866 -- Find the local instance, if any, that declares the generic that is
7867 -- being instantiated. If present, the freeze node for this instance
7868 -- must follow the freeze node for the previous instance.
7869
7870 --------------------
7871 -- Enclosing_Body --
7872 --------------------
7873
7874 function Enclosing_Body (N : Node_Id) return Node_Id is
7875 P : Node_Id;
7876
7877 begin
7878 P := Parent (N);
7879 while Present (P)
7880 and then Nkind (Parent (P)) /= N_Compilation_Unit
7881 loop
7882 if Nkind_In (P, N_Package_Body, N_Subprogram_Body) then
7883 if Nkind (Parent (P)) = N_Subunit then
7884 return Corresponding_Stub (Parent (P));
7885 else
7886 return P;
7887 end if;
7888 end if;
7889
7890 P := True_Parent (P);
7891 end loop;
7892
7893 return Empty;
7894 end Enclosing_Body;
7895
7896 -----------------------
7897 -- Previous_Instance --
7898 -----------------------
7899
7900 function Previous_Instance (Gen : Entity_Id) return Entity_Id is
7901 S : Entity_Id;
7902
7903 begin
7904 S := Scope (Gen);
7905 while Present (S)
7906 and then S /= Standard_Standard
7907 loop
7908 if Is_Generic_Instance (S)
7909 and then In_Same_Source_Unit (S, N)
7910 then
7911 return S;
7912 end if;
7913
7914 S := Scope (S);
7915 end loop;
7916
7917 return Empty;
7918 end Previous_Instance;
7919
7920 -- Start of processing for Insert_Freeze_Node_For_Instance
7921
7922 begin
7923 if not Is_List_Member (F_Node) then
7924 Decls := List_Containing (N);
7925 Par_N := Parent (Decls);
7926 Decl := N;
7927
7928 -- If this is a package instance, check whether the generic is
7929 -- declared in a previous instance and the current instance is
7930 -- not within the previous one.
7931
7932 if Present (Generic_Parent (Parent (Inst)))
7933 and then Is_In_Main_Unit (N)
7934 then
7935 declare
7936 Enclosing_N : constant Node_Id := Enclosing_Body (N);
7937 Par_I : constant Entity_Id :=
7938 Previous_Instance
7939 (Generic_Parent (Parent (Inst)));
7940 Scop : Entity_Id;
7941
7942 begin
7943 if Present (Par_I)
7944 and then Earlier (N, Freeze_Node (Par_I))
7945 then
7946 Scop := Scope (Inst);
7947
7948 -- If the current instance is within the one that contains
7949 -- the generic, the freeze node for the current one must
7950 -- appear in the current declarative part. Ditto, if the
7951 -- current instance is within another package instance or
7952 -- within a body that does not enclose the current instance.
7953 -- In these three cases the freeze node of the previous
7954 -- instance is not relevant.
7955
7956 while Present (Scop)
7957 and then Scop /= Standard_Standard
7958 loop
7959 exit when Scop = Par_I
7960 or else
7961 (Is_Generic_Instance (Scop)
7962 and then Scope_Depth (Scop) > Scope_Depth (Par_I));
7963 Scop := Scope (Scop);
7964 end loop;
7965
7966 -- Previous instance encloses current instance
7967
7968 if Scop = Par_I then
7969 null;
7970
7971 -- If the next node is a source body we must freeze in
7972 -- the current scope as well.
7973
7974 elsif Present (Next (N))
7975 and then Nkind_In (Next (N),
7976 N_Subprogram_Body, N_Package_Body)
7977 and then Comes_From_Source (Next (N))
7978 then
7979 null;
7980
7981 -- Current instance is within an unrelated instance
7982
7983 elsif Is_Generic_Instance (Scop) then
7984 null;
7985
7986 -- Current instance is within an unrelated body
7987
7988 elsif Present (Enclosing_N)
7989 and then Enclosing_N /= Enclosing_Body (Par_I)
7990 then
7991 null;
7992
7993 else
7994 Insert_After (Freeze_Node (Par_I), F_Node);
7995 return;
7996 end if;
7997 end if;
7998 end;
7999 end if;
8000
8001 -- When the instantiation occurs in a package declaration, append the
8002 -- freeze node to the private declarations (if any).
8003
8004 if Nkind (Par_N) = N_Package_Specification
8005 and then Decls = Visible_Declarations (Par_N)
8006 and then Present (Private_Declarations (Par_N))
8007 and then not Is_Empty_List (Private_Declarations (Par_N))
8008 then
8009 Decls := Private_Declarations (Par_N);
8010 Decl := First (Decls);
8011 end if;
8012
8013 -- Determine the proper freeze point of a package instantiation. We
8014 -- adhere to the general rule of a package or subprogram body causing
8015 -- freezing of anything before it in the same declarative region. In
8016 -- this case, the proper freeze point of a package instantiation is
8017 -- before the first source body which follows, or before a stub. This
8018 -- ensures that entities coming from the instance are already frozen
8019 -- and usable in source bodies.
8020
8021 if Nkind (Par_N) /= N_Package_Declaration
8022 and then Ekind (Inst) = E_Package
8023 and then Is_Generic_Instance (Inst)
8024 and then
8025 not In_Same_Source_Unit (Generic_Parent (Parent (Inst)), Inst)
8026 then
8027 while Present (Decl) loop
8028 if (Nkind (Decl) in N_Unit_Body
8029 or else
8030 Nkind (Decl) in N_Body_Stub)
8031 and then Comes_From_Source (Decl)
8032 then
8033 Insert_Before (Decl, F_Node);
8034 return;
8035 end if;
8036
8037 Next (Decl);
8038 end loop;
8039 end if;
8040
8041 -- In a package declaration, or if no previous body, insert at end
8042 -- of list.
8043
8044 Set_Sloc (F_Node, Sloc (Last (Decls)));
8045 Insert_After (Last (Decls), F_Node);
8046 end if;
8047 end Insert_Freeze_Node_For_Instance;
8048
8049 ------------------
8050 -- Install_Body --
8051 ------------------
8052
8053 procedure Install_Body
8054 (Act_Body : Node_Id;
8055 N : Node_Id;
8056 Gen_Body : Node_Id;
8057 Gen_Decl : Node_Id)
8058 is
8059 Act_Id : constant Entity_Id := Corresponding_Spec (Act_Body);
8060 Act_Unit : constant Node_Id := Unit (Cunit (Get_Source_Unit (N)));
8061 Gen_Id : constant Entity_Id := Corresponding_Spec (Gen_Body);
8062 Par : constant Entity_Id := Scope (Gen_Id);
8063 Gen_Unit : constant Node_Id :=
8064 Unit (Cunit (Get_Source_Unit (Gen_Decl)));
8065 Orig_Body : Node_Id := Gen_Body;
8066 F_Node : Node_Id;
8067 Body_Unit : Node_Id;
8068
8069 Must_Delay : Boolean;
8070
8071 function Enclosing_Subp (Id : Entity_Id) return Entity_Id;
8072 -- Find subprogram (if any) that encloses instance and/or generic body
8073
8074 function True_Sloc (N : Node_Id) return Source_Ptr;
8075 -- If the instance is nested inside a generic unit, the Sloc of the
8076 -- instance indicates the place of the original definition, not the
8077 -- point of the current enclosing instance. Pending a better usage of
8078 -- Slocs to indicate instantiation places, we determine the place of
8079 -- origin of a node by finding the maximum sloc of any ancestor node.
8080 -- Why is this not equivalent to Top_Level_Location ???
8081
8082 --------------------
8083 -- Enclosing_Subp --
8084 --------------------
8085
8086 function Enclosing_Subp (Id : Entity_Id) return Entity_Id is
8087 Scop : Entity_Id;
8088
8089 begin
8090 Scop := Scope (Id);
8091 while Scop /= Standard_Standard
8092 and then not Is_Overloadable (Scop)
8093 loop
8094 Scop := Scope (Scop);
8095 end loop;
8096
8097 return Scop;
8098 end Enclosing_Subp;
8099
8100 ---------------
8101 -- True_Sloc --
8102 ---------------
8103
8104 function True_Sloc (N : Node_Id) return Source_Ptr is
8105 Res : Source_Ptr;
8106 N1 : Node_Id;
8107
8108 begin
8109 Res := Sloc (N);
8110 N1 := N;
8111 while Present (N1) and then N1 /= Act_Unit loop
8112 if Sloc (N1) > Res then
8113 Res := Sloc (N1);
8114 end if;
8115
8116 N1 := Parent (N1);
8117 end loop;
8118
8119 return Res;
8120 end True_Sloc;
8121
8122 -- Start of processing for Install_Body
8123
8124 begin
8125 -- If the body is a subunit, the freeze point is the corresponding stub
8126 -- in the current compilation, not the subunit itself.
8127
8128 if Nkind (Parent (Gen_Body)) = N_Subunit then
8129 Orig_Body := Corresponding_Stub (Parent (Gen_Body));
8130 else
8131 Orig_Body := Gen_Body;
8132 end if;
8133
8134 Body_Unit := Unit (Cunit (Get_Source_Unit (Orig_Body)));
8135
8136 -- If the instantiation and the generic definition appear in the same
8137 -- package declaration, this is an early instantiation. If they appear
8138 -- in the same declarative part, it is an early instantiation only if
8139 -- the generic body appears textually later, and the generic body is
8140 -- also in the main unit.
8141
8142 -- If instance is nested within a subprogram, and the generic body is
8143 -- not, the instance is delayed because the enclosing body is. If
8144 -- instance and body are within the same scope, or the same sub-
8145 -- program body, indicate explicitly that the instance is delayed.
8146
8147 Must_Delay :=
8148 (Gen_Unit = Act_Unit
8149 and then (Nkind_In (Gen_Unit, N_Package_Declaration,
8150 N_Generic_Package_Declaration)
8151 or else (Gen_Unit = Body_Unit
8152 and then True_Sloc (N) < Sloc (Orig_Body)))
8153 and then Is_In_Main_Unit (Gen_Unit)
8154 and then (Scope (Act_Id) = Scope (Gen_Id)
8155 or else
8156 Enclosing_Subp (Act_Id) = Enclosing_Subp (Gen_Id)));
8157
8158 -- If this is an early instantiation, the freeze node is placed after
8159 -- the generic body. Otherwise, if the generic appears in an instance,
8160 -- we cannot freeze the current instance until the outer one is frozen.
8161 -- This is only relevant if the current instance is nested within some
8162 -- inner scope not itself within the outer instance. If this scope is
8163 -- a package body in the same declarative part as the outer instance,
8164 -- then that body needs to be frozen after the outer instance. Finally,
8165 -- if no delay is needed, we place the freeze node at the end of the
8166 -- current declarative part.
8167
8168 if Expander_Active then
8169 Ensure_Freeze_Node (Act_Id);
8170 F_Node := Freeze_Node (Act_Id);
8171
8172 if Must_Delay then
8173 Insert_After (Orig_Body, F_Node);
8174
8175 elsif Is_Generic_Instance (Par)
8176 and then Present (Freeze_Node (Par))
8177 and then Scope (Act_Id) /= Par
8178 then
8179 -- Freeze instance of inner generic after instance of enclosing
8180 -- generic.
8181
8182 if In_Same_Declarative_Part (Freeze_Node (Par), N) then
8183
8184 -- Handle the following case:
8185
8186 -- package Parent_Inst is new ...
8187 -- Parent_Inst []
8188
8189 -- procedure P ... -- this body freezes Parent_Inst
8190
8191 -- package Inst is new ...
8192
8193 -- In this particular scenario, the freeze node for Inst must
8194 -- be inserted in the same manner as that of Parent_Inst -
8195 -- before the next source body or at the end of the declarative
8196 -- list (body not available). If body P did not exist and
8197 -- Parent_Inst was frozen after Inst, either by a body
8198 -- following Inst or at the end of the declarative region, the
8199 -- freeze node for Inst must be inserted after that of
8200 -- Parent_Inst. This relation is established by comparing the
8201 -- Slocs of Parent_Inst freeze node and Inst.
8202
8203 if List_Containing (Get_Package_Instantiation_Node (Par)) =
8204 List_Containing (N)
8205 and then Sloc (Freeze_Node (Par)) < Sloc (N)
8206 then
8207 Insert_Freeze_Node_For_Instance (N, F_Node);
8208 else
8209 Insert_After (Freeze_Node (Par), F_Node);
8210 end if;
8211
8212 -- Freeze package enclosing instance of inner generic after
8213 -- instance of enclosing generic.
8214
8215 elsif Nkind_In (Parent (N), N_Package_Body, N_Subprogram_Body)
8216 and then In_Same_Declarative_Part (Freeze_Node (Par), Parent (N))
8217 then
8218 declare
8219 Enclosing : Entity_Id;
8220
8221 begin
8222 Enclosing := Corresponding_Spec (Parent (N));
8223
8224 if No (Enclosing) then
8225 Enclosing := Defining_Entity (Parent (N));
8226 end if;
8227
8228 Insert_Freeze_Node_For_Instance (N, F_Node);
8229 Ensure_Freeze_Node (Enclosing);
8230
8231 if not Is_List_Member (Freeze_Node (Enclosing)) then
8232
8233 -- The enclosing context is a subunit, insert the freeze
8234 -- node after the stub.
8235
8236 if Nkind (Parent (Parent (N))) = N_Subunit then
8237 Insert_Freeze_Node_For_Instance
8238 (Corresponding_Stub (Parent (Parent (N))),
8239 Freeze_Node (Enclosing));
8240
8241 -- The enclosing context is a package with a stub body
8242 -- which has already been replaced by the real body.
8243 -- Insert the freeze node after the actual body.
8244
8245 elsif Ekind (Enclosing) = E_Package
8246 and then Present (Body_Entity (Enclosing))
8247 and then Was_Originally_Stub
8248 (Parent (Body_Entity (Enclosing)))
8249 then
8250 Insert_Freeze_Node_For_Instance
8251 (Parent (Body_Entity (Enclosing)),
8252 Freeze_Node (Enclosing));
8253
8254 -- The parent instance has been frozen before the body of
8255 -- the enclosing package, insert the freeze node after
8256 -- the body.
8257
8258 elsif List_Containing (Freeze_Node (Par)) =
8259 List_Containing (Parent (N))
8260 and then Sloc (Freeze_Node (Par)) < Sloc (Parent (N))
8261 then
8262 Insert_Freeze_Node_For_Instance
8263 (Parent (N), Freeze_Node (Enclosing));
8264
8265 else
8266 Insert_After
8267 (Freeze_Node (Par), Freeze_Node (Enclosing));
8268 end if;
8269 end if;
8270 end;
8271
8272 else
8273 Insert_Freeze_Node_For_Instance (N, F_Node);
8274 end if;
8275
8276 else
8277 Insert_Freeze_Node_For_Instance (N, F_Node);
8278 end if;
8279 end if;
8280
8281 Set_Is_Frozen (Act_Id);
8282 Insert_Before (N, Act_Body);
8283 Mark_Rewrite_Insertion (Act_Body);
8284 end Install_Body;
8285
8286 -----------------------------
8287 -- Install_Formal_Packages --
8288 -----------------------------
8289
8290 procedure Install_Formal_Packages (Par : Entity_Id) is
8291 E : Entity_Id;
8292 Gen : Entity_Id;
8293 Gen_E : Entity_Id := Empty;
8294
8295 begin
8296 E := First_Entity (Par);
8297
8298 -- If we are installing an instance parent, locate the formal packages
8299 -- of its generic parent.
8300
8301 if Is_Generic_Instance (Par) then
8302 Gen := Generic_Parent (Specification (Unit_Declaration_Node (Par)));
8303 Gen_E := First_Entity (Gen);
8304 end if;
8305
8306 while Present (E) loop
8307 if Ekind (E) = E_Package
8308 and then Nkind (Parent (E)) = N_Package_Renaming_Declaration
8309 then
8310 -- If this is the renaming for the parent instance, done
8311
8312 if Renamed_Object (E) = Par then
8313 exit;
8314
8315 -- The visibility of a formal of an enclosing generic is already
8316 -- correct.
8317
8318 elsif Denotes_Formal_Package (E) then
8319 null;
8320
8321 elsif Present (Associated_Formal_Package (E)) then
8322 Check_Generic_Actuals (Renamed_Object (E), True);
8323 Set_Is_Hidden (E, False);
8324
8325 -- Find formal package in generic unit that corresponds to
8326 -- (instance of) formal package in instance.
8327
8328 while Present (Gen_E) and then Chars (Gen_E) /= Chars (E) loop
8329 Next_Entity (Gen_E);
8330 end loop;
8331
8332 if Present (Gen_E) then
8333 Map_Formal_Package_Entities (Gen_E, E);
8334 end if;
8335 end if;
8336 end if;
8337
8338 Next_Entity (E);
8339 if Present (Gen_E) then
8340 Next_Entity (Gen_E);
8341 end if;
8342 end loop;
8343 end Install_Formal_Packages;
8344
8345 --------------------
8346 -- Install_Parent --
8347 --------------------
8348
8349 procedure Install_Parent (P : Entity_Id; In_Body : Boolean := False) is
8350 Ancestors : constant Elist_Id := New_Elmt_List;
8351 S : constant Entity_Id := Current_Scope;
8352 Inst_Par : Entity_Id;
8353 First_Par : Entity_Id;
8354 Inst_Node : Node_Id;
8355 Gen_Par : Entity_Id;
8356 First_Gen : Entity_Id;
8357 Elmt : Elmt_Id;
8358
8359 procedure Install_Noninstance_Specs (Par : Entity_Id);
8360 -- Install the scopes of noninstance parent units ending with Par
8361
8362 procedure Install_Spec (Par : Entity_Id);
8363 -- The child unit is within the declarative part of the parent, so
8364 -- the declarations within the parent are immediately visible.
8365
8366 -------------------------------
8367 -- Install_Noninstance_Specs --
8368 -------------------------------
8369
8370 procedure Install_Noninstance_Specs (Par : Entity_Id) is
8371 begin
8372 if Present (Par)
8373 and then Par /= Standard_Standard
8374 and then not In_Open_Scopes (Par)
8375 then
8376 Install_Noninstance_Specs (Scope (Par));
8377 Install_Spec (Par);
8378 end if;
8379 end Install_Noninstance_Specs;
8380
8381 ------------------
8382 -- Install_Spec --
8383 ------------------
8384
8385 procedure Install_Spec (Par : Entity_Id) is
8386 Spec : constant Node_Id :=
8387 Specification (Unit_Declaration_Node (Par));
8388
8389 begin
8390 -- If this parent of the child instance is a top-level unit,
8391 -- then record the unit and its visibility for later resetting
8392 -- in Remove_Parent. We exclude units that are generic instances,
8393 -- as we only want to record this information for the ultimate
8394 -- top-level noninstance parent (is that always correct???).
8395
8396 if Scope (Par) = Standard_Standard
8397 and then not Is_Generic_Instance (Par)
8398 then
8399 Parent_Unit_Visible := Is_Immediately_Visible (Par);
8400 Instance_Parent_Unit := Par;
8401 end if;
8402
8403 -- Open the parent scope and make it and its declarations visible.
8404 -- If this point is not within a body, then only the visible
8405 -- declarations should be made visible, and installation of the
8406 -- private declarations is deferred until the appropriate point
8407 -- within analysis of the spec being instantiated (see the handling
8408 -- of parent visibility in Analyze_Package_Specification). This is
8409 -- relaxed in the case where the parent unit is Ada.Tags, to avoid
8410 -- private view problems that occur when compiling instantiations of
8411 -- a generic child of that package (Generic_Dispatching_Constructor).
8412 -- If the instance freezes a tagged type, inlinings of operations
8413 -- from Ada.Tags may need the full view of type Tag. If inlining took
8414 -- proper account of establishing visibility of inlined subprograms'
8415 -- parents then it should be possible to remove this
8416 -- special check. ???
8417
8418 Push_Scope (Par);
8419 Set_Is_Immediately_Visible (Par);
8420 Install_Visible_Declarations (Par);
8421 Set_Use (Visible_Declarations (Spec));
8422
8423 if In_Body or else Is_RTU (Par, Ada_Tags) then
8424 Install_Private_Declarations (Par);
8425 Set_Use (Private_Declarations (Spec));
8426 end if;
8427 end Install_Spec;
8428
8429 -- Start of processing for Install_Parent
8430
8431 begin
8432 -- We need to install the parent instance to compile the instantiation
8433 -- of the child, but the child instance must appear in the current
8434 -- scope. Given that we cannot place the parent above the current scope
8435 -- in the scope stack, we duplicate the current scope and unstack both
8436 -- after the instantiation is complete.
8437
8438 -- If the parent is itself the instantiation of a child unit, we must
8439 -- also stack the instantiation of its parent, and so on. Each such
8440 -- ancestor is the prefix of the name in a prior instantiation.
8441
8442 -- If this is a nested instance, the parent unit itself resolves to
8443 -- a renaming of the parent instance, whose declaration we need.
8444
8445 -- Finally, the parent may be a generic (not an instance) when the
8446 -- child unit appears as a formal package.
8447
8448 Inst_Par := P;
8449
8450 if Present (Renamed_Entity (Inst_Par)) then
8451 Inst_Par := Renamed_Entity (Inst_Par);
8452 end if;
8453
8454 First_Par := Inst_Par;
8455
8456 Gen_Par :=
8457 Generic_Parent (Specification (Unit_Declaration_Node (Inst_Par)));
8458
8459 First_Gen := Gen_Par;
8460
8461 while Present (Gen_Par)
8462 and then Is_Child_Unit (Gen_Par)
8463 loop
8464 -- Load grandparent instance as well
8465
8466 Inst_Node := Get_Package_Instantiation_Node (Inst_Par);
8467
8468 if Nkind (Name (Inst_Node)) = N_Expanded_Name then
8469 Inst_Par := Entity (Prefix (Name (Inst_Node)));
8470
8471 if Present (Renamed_Entity (Inst_Par)) then
8472 Inst_Par := Renamed_Entity (Inst_Par);
8473 end if;
8474
8475 Gen_Par :=
8476 Generic_Parent
8477 (Specification (Unit_Declaration_Node (Inst_Par)));
8478
8479 if Present (Gen_Par) then
8480 Prepend_Elmt (Inst_Par, Ancestors);
8481
8482 else
8483 -- Parent is not the name of an instantiation
8484
8485 Install_Noninstance_Specs (Inst_Par);
8486 exit;
8487 end if;
8488
8489 else
8490 -- Previous error
8491
8492 exit;
8493 end if;
8494 end loop;
8495
8496 if Present (First_Gen) then
8497 Append_Elmt (First_Par, Ancestors);
8498 else
8499 Install_Noninstance_Specs (First_Par);
8500 end if;
8501
8502 if not Is_Empty_Elmt_List (Ancestors) then
8503 Elmt := First_Elmt (Ancestors);
8504 while Present (Elmt) loop
8505 Install_Spec (Node (Elmt));
8506 Install_Formal_Packages (Node (Elmt));
8507 Next_Elmt (Elmt);
8508 end loop;
8509 end if;
8510
8511 if not In_Body then
8512 Push_Scope (S);
8513 end if;
8514 end Install_Parent;
8515
8516 -------------------------------
8517 -- Install_Hidden_Primitives --
8518 -------------------------------
8519
8520 procedure Install_Hidden_Primitives
8521 (Prims_List : in out Elist_Id;
8522 Gen_T : Entity_Id;
8523 Act_T : Entity_Id)
8524 is
8525 Elmt : Elmt_Id;
8526 List : Elist_Id := No_Elist;
8527 Prim_G_Elmt : Elmt_Id;
8528 Prim_A_Elmt : Elmt_Id;
8529 Prim_G : Node_Id;
8530 Prim_A : Node_Id;
8531
8532 begin
8533 -- No action needed in case of serious errors because we cannot trust
8534 -- in the order of primitives
8535
8536 if Serious_Errors_Detected > 0 then
8537 return;
8538
8539 -- No action possible if we don't have available the list of primitive
8540 -- operations
8541
8542 elsif No (Gen_T)
8543 or else not Is_Record_Type (Gen_T)
8544 or else not Is_Tagged_Type (Gen_T)
8545 or else not Is_Record_Type (Act_T)
8546 or else not Is_Tagged_Type (Act_T)
8547 then
8548 return;
8549
8550 -- There is no need to handle interface types since their primitives
8551 -- cannot be hidden
8552
8553 elsif Is_Interface (Gen_T) then
8554 return;
8555 end if;
8556
8557 Prim_G_Elmt := First_Elmt (Primitive_Operations (Gen_T));
8558
8559 if not Is_Class_Wide_Type (Act_T) then
8560 Prim_A_Elmt := First_Elmt (Primitive_Operations (Act_T));
8561 else
8562 Prim_A_Elmt := First_Elmt (Primitive_Operations (Root_Type (Act_T)));
8563 end if;
8564
8565 loop
8566 -- Skip predefined primitives in the generic formal
8567
8568 while Present (Prim_G_Elmt)
8569 and then Is_Predefined_Dispatching_Operation (Node (Prim_G_Elmt))
8570 loop
8571 Next_Elmt (Prim_G_Elmt);
8572 end loop;
8573
8574 -- Skip predefined primitives in the generic actual
8575
8576 while Present (Prim_A_Elmt)
8577 and then Is_Predefined_Dispatching_Operation (Node (Prim_A_Elmt))
8578 loop
8579 Next_Elmt (Prim_A_Elmt);
8580 end loop;
8581
8582 exit when No (Prim_G_Elmt) or else No (Prim_A_Elmt);
8583
8584 Prim_G := Node (Prim_G_Elmt);
8585 Prim_A := Node (Prim_A_Elmt);
8586
8587 -- There is no need to handle interface primitives because their
8588 -- primitives are not hidden
8589
8590 exit when Present (Interface_Alias (Prim_G));
8591
8592 -- Here we install one hidden primitive
8593
8594 if Chars (Prim_G) /= Chars (Prim_A)
8595 and then Has_Suffix (Prim_A, 'P')
8596 and then Remove_Suffix (Prim_A, 'P') = Chars (Prim_G)
8597 then
8598 Set_Chars (Prim_A, Chars (Prim_G));
8599
8600 if List = No_Elist then
8601 List := New_Elmt_List;
8602 end if;
8603
8604 Append_Elmt (Prim_A, List);
8605 end if;
8606
8607 Next_Elmt (Prim_A_Elmt);
8608 Next_Elmt (Prim_G_Elmt);
8609 end loop;
8610
8611 -- Append the elements to the list of temporarily visible primitives
8612 -- avoiding duplicates.
8613
8614 if Present (List) then
8615 if No (Prims_List) then
8616 Prims_List := New_Elmt_List;
8617 end if;
8618
8619 Elmt := First_Elmt (List);
8620 while Present (Elmt) loop
8621 Append_Unique_Elmt (Node (Elmt), Prims_List);
8622 Next_Elmt (Elmt);
8623 end loop;
8624 end if;
8625 end Install_Hidden_Primitives;
8626
8627 -------------------------------
8628 -- Restore_Hidden_Primitives --
8629 -------------------------------
8630
8631 procedure Restore_Hidden_Primitives (Prims_List : in out Elist_Id) is
8632 Prim_Elmt : Elmt_Id;
8633 Prim : Node_Id;
8634
8635 begin
8636 if Prims_List /= No_Elist then
8637 Prim_Elmt := First_Elmt (Prims_List);
8638 while Present (Prim_Elmt) loop
8639 Prim := Node (Prim_Elmt);
8640 Set_Chars (Prim, Add_Suffix (Prim, 'P'));
8641 Next_Elmt (Prim_Elmt);
8642 end loop;
8643
8644 Prims_List := No_Elist;
8645 end if;
8646 end Restore_Hidden_Primitives;
8647
8648 --------------------------------
8649 -- Instantiate_Formal_Package --
8650 --------------------------------
8651
8652 function Instantiate_Formal_Package
8653 (Formal : Node_Id;
8654 Actual : Node_Id;
8655 Analyzed_Formal : Node_Id) return List_Id
8656 is
8657 Loc : constant Source_Ptr := Sloc (Actual);
8658 Actual_Pack : Entity_Id;
8659 Formal_Pack : Entity_Id;
8660 Gen_Parent : Entity_Id;
8661 Decls : List_Id;
8662 Nod : Node_Id;
8663 Parent_Spec : Node_Id;
8664
8665 procedure Find_Matching_Actual
8666 (F : Node_Id;
8667 Act : in out Entity_Id);
8668 -- We need to associate each formal entity in the formal package
8669 -- with the corresponding entity in the actual package. The actual
8670 -- package has been analyzed and possibly expanded, and as a result
8671 -- there is no one-to-one correspondence between the two lists (for
8672 -- example, the actual may include subtypes, itypes, and inherited
8673 -- primitive operations, interspersed among the renaming declarations
8674 -- for the actuals) . We retrieve the corresponding actual by name
8675 -- because each actual has the same name as the formal, and they do
8676 -- appear in the same order.
8677
8678 function Get_Formal_Entity (N : Node_Id) return Entity_Id;
8679 -- Retrieve entity of defining entity of generic formal parameter.
8680 -- Only the declarations of formals need to be considered when
8681 -- linking them to actuals, but the declarative list may include
8682 -- internal entities generated during analysis, and those are ignored.
8683
8684 procedure Match_Formal_Entity
8685 (Formal_Node : Node_Id;
8686 Formal_Ent : Entity_Id;
8687 Actual_Ent : Entity_Id);
8688 -- Associates the formal entity with the actual. In the case
8689 -- where Formal_Ent is a formal package, this procedure iterates
8690 -- through all of its formals and enters associations between the
8691 -- actuals occurring in the formal package's corresponding actual
8692 -- package (given by Actual_Ent) and the formal package's formal
8693 -- parameters. This procedure recurses if any of the parameters is
8694 -- itself a package.
8695
8696 function Is_Instance_Of
8697 (Act_Spec : Entity_Id;
8698 Gen_Anc : Entity_Id) return Boolean;
8699 -- The actual can be an instantiation of a generic within another
8700 -- instance, in which case there is no direct link from it to the
8701 -- original generic ancestor. In that case, we recognize that the
8702 -- ultimate ancestor is the same by examining names and scopes.
8703
8704 procedure Process_Nested_Formal (Formal : Entity_Id);
8705 -- If the current formal is declared with a box, its own formals are
8706 -- visible in the instance, as they were in the generic, and their
8707 -- Hidden flag must be reset. If some of these formals are themselves
8708 -- packages declared with a box, the processing must be recursive.
8709
8710 --------------------------
8711 -- Find_Matching_Actual --
8712 --------------------------
8713
8714 procedure Find_Matching_Actual
8715 (F : Node_Id;
8716 Act : in out Entity_Id)
8717 is
8718 Formal_Ent : Entity_Id;
8719
8720 begin
8721 case Nkind (Original_Node (F)) is
8722 when N_Formal_Object_Declaration |
8723 N_Formal_Type_Declaration =>
8724 Formal_Ent := Defining_Identifier (F);
8725
8726 while Chars (Act) /= Chars (Formal_Ent) loop
8727 Next_Entity (Act);
8728 end loop;
8729
8730 when N_Formal_Subprogram_Declaration |
8731 N_Formal_Package_Declaration |
8732 N_Package_Declaration |
8733 N_Generic_Package_Declaration =>
8734 Formal_Ent := Defining_Entity (F);
8735
8736 while Chars (Act) /= Chars (Formal_Ent) loop
8737 Next_Entity (Act);
8738 end loop;
8739
8740 when others =>
8741 raise Program_Error;
8742 end case;
8743 end Find_Matching_Actual;
8744
8745 -------------------------
8746 -- Match_Formal_Entity --
8747 -------------------------
8748
8749 procedure Match_Formal_Entity
8750 (Formal_Node : Node_Id;
8751 Formal_Ent : Entity_Id;
8752 Actual_Ent : Entity_Id)
8753 is
8754 Act_Pkg : Entity_Id;
8755
8756 begin
8757 Set_Instance_Of (Formal_Ent, Actual_Ent);
8758
8759 if Ekind (Actual_Ent) = E_Package then
8760
8761 -- Record associations for each parameter
8762
8763 Act_Pkg := Actual_Ent;
8764
8765 declare
8766 A_Ent : Entity_Id := First_Entity (Act_Pkg);
8767 F_Ent : Entity_Id;
8768 F_Node : Node_Id;
8769
8770 Gen_Decl : Node_Id;
8771 Formals : List_Id;
8772 Actual : Entity_Id;
8773
8774 begin
8775 -- Retrieve the actual given in the formal package declaration
8776
8777 Actual := Entity (Name (Original_Node (Formal_Node)));
8778
8779 -- The actual in the formal package declaration may be a
8780 -- renamed generic package, in which case we want to retrieve
8781 -- the original generic in order to traverse its formal part.
8782
8783 if Present (Renamed_Entity (Actual)) then
8784 Gen_Decl := Unit_Declaration_Node (Renamed_Entity (Actual));
8785 else
8786 Gen_Decl := Unit_Declaration_Node (Actual);
8787 end if;
8788
8789 Formals := Generic_Formal_Declarations (Gen_Decl);
8790
8791 if Present (Formals) then
8792 F_Node := First_Non_Pragma (Formals);
8793 else
8794 F_Node := Empty;
8795 end if;
8796
8797 while Present (A_Ent)
8798 and then Present (F_Node)
8799 and then A_Ent /= First_Private_Entity (Act_Pkg)
8800 loop
8801 F_Ent := Get_Formal_Entity (F_Node);
8802
8803 if Present (F_Ent) then
8804
8805 -- This is a formal of the original package. Record
8806 -- association and recurse.
8807
8808 Find_Matching_Actual (F_Node, A_Ent);
8809 Match_Formal_Entity (F_Node, F_Ent, A_Ent);
8810 Next_Entity (A_Ent);
8811 end if;
8812
8813 Next_Non_Pragma (F_Node);
8814 end loop;
8815 end;
8816 end if;
8817 end Match_Formal_Entity;
8818
8819 -----------------------
8820 -- Get_Formal_Entity --
8821 -----------------------
8822
8823 function Get_Formal_Entity (N : Node_Id) return Entity_Id is
8824 Kind : constant Node_Kind := Nkind (Original_Node (N));
8825 begin
8826 case Kind is
8827 when N_Formal_Object_Declaration =>
8828 return Defining_Identifier (N);
8829
8830 when N_Formal_Type_Declaration =>
8831 return Defining_Identifier (N);
8832
8833 when N_Formal_Subprogram_Declaration =>
8834 return Defining_Unit_Name (Specification (N));
8835
8836 when N_Formal_Package_Declaration =>
8837 return Defining_Identifier (Original_Node (N));
8838
8839 when N_Generic_Package_Declaration =>
8840 return Defining_Identifier (Original_Node (N));
8841
8842 -- All other declarations are introduced by semantic analysis and
8843 -- have no match in the actual.
8844
8845 when others =>
8846 return Empty;
8847 end case;
8848 end Get_Formal_Entity;
8849
8850 --------------------
8851 -- Is_Instance_Of --
8852 --------------------
8853
8854 function Is_Instance_Of
8855 (Act_Spec : Entity_Id;
8856 Gen_Anc : Entity_Id) return Boolean
8857 is
8858 Gen_Par : constant Entity_Id := Generic_Parent (Act_Spec);
8859
8860 begin
8861 if No (Gen_Par) then
8862 return False;
8863
8864 -- Simplest case: the generic parent of the actual is the formal
8865
8866 elsif Gen_Par = Gen_Anc then
8867 return True;
8868
8869 elsif Chars (Gen_Par) /= Chars (Gen_Anc) then
8870 return False;
8871
8872 -- The actual may be obtained through several instantiations. Its
8873 -- scope must itself be an instance of a generic declared in the
8874 -- same scope as the formal. Any other case is detected above.
8875
8876 elsif not Is_Generic_Instance (Scope (Gen_Par)) then
8877 return False;
8878
8879 else
8880 return Generic_Parent (Parent (Scope (Gen_Par))) = Scope (Gen_Anc);
8881 end if;
8882 end Is_Instance_Of;
8883
8884 ---------------------------
8885 -- Process_Nested_Formal --
8886 ---------------------------
8887
8888 procedure Process_Nested_Formal (Formal : Entity_Id) is
8889 Ent : Entity_Id;
8890
8891 begin
8892 if Present (Associated_Formal_Package (Formal))
8893 and then Box_Present (Parent (Associated_Formal_Package (Formal)))
8894 then
8895 Ent := First_Entity (Formal);
8896 while Present (Ent) loop
8897 Set_Is_Hidden (Ent, False);
8898 Set_Is_Visible_Formal (Ent);
8899 Set_Is_Potentially_Use_Visible
8900 (Ent, Is_Potentially_Use_Visible (Formal));
8901
8902 if Ekind (Ent) = E_Package then
8903 exit when Renamed_Entity (Ent) = Renamed_Entity (Formal);
8904 Process_Nested_Formal (Ent);
8905 end if;
8906
8907 Next_Entity (Ent);
8908 end loop;
8909 end if;
8910 end Process_Nested_Formal;
8911
8912 -- Start of processing for Instantiate_Formal_Package
8913
8914 begin
8915 Analyze (Actual);
8916
8917 if not Is_Entity_Name (Actual)
8918 or else Ekind (Entity (Actual)) /= E_Package
8919 then
8920 Error_Msg_N
8921 ("expect package instance to instantiate formal", Actual);
8922 Abandon_Instantiation (Actual);
8923 raise Program_Error;
8924
8925 else
8926 Actual_Pack := Entity (Actual);
8927 Set_Is_Instantiated (Actual_Pack);
8928
8929 -- The actual may be a renamed package, or an outer generic formal
8930 -- package whose instantiation is converted into a renaming.
8931
8932 if Present (Renamed_Object (Actual_Pack)) then
8933 Actual_Pack := Renamed_Object (Actual_Pack);
8934 end if;
8935
8936 if Nkind (Analyzed_Formal) = N_Formal_Package_Declaration then
8937 Gen_Parent := Get_Instance_Of (Entity (Name (Analyzed_Formal)));
8938 Formal_Pack := Defining_Identifier (Analyzed_Formal);
8939 else
8940 Gen_Parent :=
8941 Generic_Parent (Specification (Analyzed_Formal));
8942 Formal_Pack :=
8943 Defining_Unit_Name (Specification (Analyzed_Formal));
8944 end if;
8945
8946 if Nkind (Parent (Actual_Pack)) = N_Defining_Program_Unit_Name then
8947 Parent_Spec := Specification (Unit_Declaration_Node (Actual_Pack));
8948 else
8949 Parent_Spec := Parent (Actual_Pack);
8950 end if;
8951
8952 if Gen_Parent = Any_Id then
8953 Error_Msg_N
8954 ("previous error in declaration of formal package", Actual);
8955 Abandon_Instantiation (Actual);
8956
8957 elsif
8958 Is_Instance_Of (Parent_Spec, Get_Instance_Of (Gen_Parent))
8959 then
8960 null;
8961
8962 else
8963 Error_Msg_NE
8964 ("actual parameter must be instance of&", Actual, Gen_Parent);
8965 Abandon_Instantiation (Actual);
8966 end if;
8967
8968 Set_Instance_Of (Defining_Identifier (Formal), Actual_Pack);
8969 Map_Formal_Package_Entities (Formal_Pack, Actual_Pack);
8970
8971 Nod :=
8972 Make_Package_Renaming_Declaration (Loc,
8973 Defining_Unit_Name => New_Copy (Defining_Identifier (Formal)),
8974 Name => New_Reference_To (Actual_Pack, Loc));
8975
8976 Set_Associated_Formal_Package (Defining_Unit_Name (Nod),
8977 Defining_Identifier (Formal));
8978 Decls := New_List (Nod);
8979
8980 -- If the formal F has a box, then the generic declarations are
8981 -- visible in the generic G. In an instance of G, the corresponding
8982 -- entities in the actual for F (which are the actuals for the
8983 -- instantiation of the generic that F denotes) must also be made
8984 -- visible for analysis of the current instance. On exit from the
8985 -- current instance, those entities are made private again. If the
8986 -- actual is currently in use, these entities are also use-visible.
8987
8988 -- The loop through the actual entities also steps through the formal
8989 -- entities and enters associations from formals to actuals into the
8990 -- renaming map. This is necessary to properly handle checking of
8991 -- actual parameter associations for later formals that depend on
8992 -- actuals declared in the formal package.
8993
8994 -- In Ada 2005, partial parametrization requires that we make visible
8995 -- the actuals corresponding to formals that were defaulted in the
8996 -- formal package. There formals are identified because they remain
8997 -- formal generics within the formal package, rather than being
8998 -- renamings of the actuals supplied.
8999
9000 declare
9001 Gen_Decl : constant Node_Id :=
9002 Unit_Declaration_Node (Gen_Parent);
9003 Formals : constant List_Id :=
9004 Generic_Formal_Declarations (Gen_Decl);
9005
9006 Actual_Ent : Entity_Id;
9007 Actual_Of_Formal : Node_Id;
9008 Formal_Node : Node_Id;
9009 Formal_Ent : Entity_Id;
9010
9011 begin
9012 if Present (Formals) then
9013 Formal_Node := First_Non_Pragma (Formals);
9014 else
9015 Formal_Node := Empty;
9016 end if;
9017
9018 Actual_Ent := First_Entity (Actual_Pack);
9019 Actual_Of_Formal :=
9020 First (Visible_Declarations (Specification (Analyzed_Formal)));
9021 while Present (Actual_Ent)
9022 and then Actual_Ent /= First_Private_Entity (Actual_Pack)
9023 loop
9024 if Present (Formal_Node) then
9025 Formal_Ent := Get_Formal_Entity (Formal_Node);
9026
9027 if Present (Formal_Ent) then
9028 Find_Matching_Actual (Formal_Node, Actual_Ent);
9029 Match_Formal_Entity
9030 (Formal_Node, Formal_Ent, Actual_Ent);
9031
9032 -- We iterate at the same time over the actuals of the
9033 -- local package created for the formal, to determine
9034 -- which one of the formals of the original generic were
9035 -- defaulted in the formal. The corresponding actual
9036 -- entities are visible in the enclosing instance.
9037
9038 if Box_Present (Formal)
9039 or else
9040 (Present (Actual_Of_Formal)
9041 and then
9042 Is_Generic_Formal
9043 (Get_Formal_Entity (Actual_Of_Formal)))
9044 then
9045 Set_Is_Hidden (Actual_Ent, False);
9046 Set_Is_Visible_Formal (Actual_Ent);
9047 Set_Is_Potentially_Use_Visible
9048 (Actual_Ent, In_Use (Actual_Pack));
9049
9050 if Ekind (Actual_Ent) = E_Package then
9051 Process_Nested_Formal (Actual_Ent);
9052 end if;
9053
9054 else
9055 Set_Is_Hidden (Actual_Ent);
9056 Set_Is_Potentially_Use_Visible (Actual_Ent, False);
9057 end if;
9058 end if;
9059
9060 Next_Non_Pragma (Formal_Node);
9061 Next (Actual_Of_Formal);
9062
9063 else
9064 -- No further formals to match, but the generic part may
9065 -- contain inherited operation that are not hidden in the
9066 -- enclosing instance.
9067
9068 Next_Entity (Actual_Ent);
9069 end if;
9070 end loop;
9071
9072 -- Inherited subprograms generated by formal derived types are
9073 -- also visible if the types are.
9074
9075 Actual_Ent := First_Entity (Actual_Pack);
9076 while Present (Actual_Ent)
9077 and then Actual_Ent /= First_Private_Entity (Actual_Pack)
9078 loop
9079 if Is_Overloadable (Actual_Ent)
9080 and then
9081 Nkind (Parent (Actual_Ent)) = N_Subtype_Declaration
9082 and then
9083 not Is_Hidden (Defining_Identifier (Parent (Actual_Ent)))
9084 then
9085 Set_Is_Hidden (Actual_Ent, False);
9086 Set_Is_Potentially_Use_Visible
9087 (Actual_Ent, In_Use (Actual_Pack));
9088 end if;
9089
9090 Next_Entity (Actual_Ent);
9091 end loop;
9092 end;
9093
9094 -- If the formal is not declared with a box, reanalyze it as an
9095 -- abbreviated instantiation, to verify the matching rules of 12.7.
9096 -- The actual checks are performed after the generic associations
9097 -- have been analyzed, to guarantee the same visibility for this
9098 -- instantiation and for the actuals.
9099
9100 -- In Ada 2005, the generic associations for the formal can include
9101 -- defaulted parameters. These are ignored during check. This
9102 -- internal instantiation is removed from the tree after conformance
9103 -- checking, because it contains formal declarations for those
9104 -- defaulted parameters, and those should not reach the back-end.
9105
9106 if not Box_Present (Formal) then
9107 declare
9108 I_Pack : constant Entity_Id :=
9109 Make_Temporary (Sloc (Actual), 'P');
9110
9111 begin
9112 Set_Is_Internal (I_Pack);
9113
9114 Append_To (Decls,
9115 Make_Package_Instantiation (Sloc (Actual),
9116 Defining_Unit_Name => I_Pack,
9117 Name =>
9118 New_Occurrence_Of
9119 (Get_Instance_Of (Gen_Parent), Sloc (Actual)),
9120 Generic_Associations =>
9121 Generic_Associations (Formal)));
9122 end;
9123 end if;
9124
9125 return Decls;
9126 end if;
9127 end Instantiate_Formal_Package;
9128
9129 -----------------------------------
9130 -- Instantiate_Formal_Subprogram --
9131 -----------------------------------
9132
9133 function Instantiate_Formal_Subprogram
9134 (Formal : Node_Id;
9135 Actual : Node_Id;
9136 Analyzed_Formal : Node_Id) return Node_Id
9137 is
9138 Loc : Source_Ptr;
9139 Formal_Sub : constant Entity_Id :=
9140 Defining_Unit_Name (Specification (Formal));
9141 Analyzed_S : constant Entity_Id :=
9142 Defining_Unit_Name (Specification (Analyzed_Formal));
9143 Decl_Node : Node_Id;
9144 Nam : Node_Id;
9145 New_Spec : Node_Id;
9146
9147 function From_Parent_Scope (Subp : Entity_Id) return Boolean;
9148 -- If the generic is a child unit, the parent has been installed on the
9149 -- scope stack, but a default subprogram cannot resolve to something on
9150 -- the parent because that parent is not really part of the visible
9151 -- context (it is there to resolve explicit local entities). If the
9152 -- default has resolved in this way, we remove the entity from
9153 -- immediate visibility and analyze the node again to emit an error
9154 -- message or find another visible candidate.
9155
9156 procedure Valid_Actual_Subprogram (Act : Node_Id);
9157 -- Perform legality check and raise exception on failure
9158
9159 -----------------------
9160 -- From_Parent_Scope --
9161 -----------------------
9162
9163 function From_Parent_Scope (Subp : Entity_Id) return Boolean is
9164 Gen_Scope : Node_Id;
9165
9166 begin
9167 Gen_Scope := Scope (Analyzed_S);
9168 while Present (Gen_Scope) and then Is_Child_Unit (Gen_Scope) loop
9169 if Scope (Subp) = Scope (Gen_Scope) then
9170 return True;
9171 end if;
9172
9173 Gen_Scope := Scope (Gen_Scope);
9174 end loop;
9175
9176 return False;
9177 end From_Parent_Scope;
9178
9179 -----------------------------
9180 -- Valid_Actual_Subprogram --
9181 -----------------------------
9182
9183 procedure Valid_Actual_Subprogram (Act : Node_Id) is
9184 Act_E : Entity_Id;
9185
9186 begin
9187 if Is_Entity_Name (Act) then
9188 Act_E := Entity (Act);
9189
9190 elsif Nkind (Act) = N_Selected_Component
9191 and then Is_Entity_Name (Selector_Name (Act))
9192 then
9193 Act_E := Entity (Selector_Name (Act));
9194
9195 else
9196 Act_E := Empty;
9197 end if;
9198
9199 if (Present (Act_E) and then Is_Overloadable (Act_E))
9200 or else Nkind_In (Act, N_Attribute_Reference,
9201 N_Indexed_Component,
9202 N_Character_Literal,
9203 N_Explicit_Dereference)
9204 then
9205 return;
9206 end if;
9207
9208 Error_Msg_NE
9209 ("expect subprogram or entry name in instantiation of&",
9210 Instantiation_Node, Formal_Sub);
9211 Abandon_Instantiation (Instantiation_Node);
9212
9213 end Valid_Actual_Subprogram;
9214
9215 -- Start of processing for Instantiate_Formal_Subprogram
9216
9217 begin
9218 New_Spec := New_Copy_Tree (Specification (Formal));
9219
9220 -- The tree copy has created the proper instantiation sloc for the
9221 -- new specification. Use this location for all other constructed
9222 -- declarations.
9223
9224 Loc := Sloc (Defining_Unit_Name (New_Spec));
9225
9226 -- Create new entity for the actual (New_Copy_Tree does not)
9227
9228 Set_Defining_Unit_Name
9229 (New_Spec, Make_Defining_Identifier (Loc, Chars (Formal_Sub)));
9230
9231 -- Create new entities for the each of the formals in the
9232 -- specification of the renaming declaration built for the actual.
9233
9234 if Present (Parameter_Specifications (New_Spec)) then
9235 declare
9236 F : Node_Id;
9237 begin
9238 F := First (Parameter_Specifications (New_Spec));
9239 while Present (F) loop
9240 Set_Defining_Identifier (F,
9241 Make_Defining_Identifier (Sloc (F),
9242 Chars => Chars (Defining_Identifier (F))));
9243 Next (F);
9244 end loop;
9245 end;
9246 end if;
9247
9248 -- Find entity of actual. If the actual is an attribute reference, it
9249 -- cannot be resolved here (its formal is missing) but is handled
9250 -- instead in Attribute_Renaming. If the actual is overloaded, it is
9251 -- fully resolved subsequently, when the renaming declaration for the
9252 -- formal is analyzed. If it is an explicit dereference, resolve the
9253 -- prefix but not the actual itself, to prevent interpretation as call.
9254
9255 if Present (Actual) then
9256 Loc := Sloc (Actual);
9257 Set_Sloc (New_Spec, Loc);
9258
9259 if Nkind (Actual) = N_Operator_Symbol then
9260 Find_Direct_Name (Actual);
9261
9262 elsif Nkind (Actual) = N_Explicit_Dereference then
9263 Analyze (Prefix (Actual));
9264
9265 elsif Nkind (Actual) /= N_Attribute_Reference then
9266 Analyze (Actual);
9267 end if;
9268
9269 Valid_Actual_Subprogram (Actual);
9270 Nam := Actual;
9271
9272 elsif Present (Default_Name (Formal)) then
9273 if not Nkind_In (Default_Name (Formal), N_Attribute_Reference,
9274 N_Selected_Component,
9275 N_Indexed_Component,
9276 N_Character_Literal)
9277 and then Present (Entity (Default_Name (Formal)))
9278 then
9279 Nam := New_Occurrence_Of (Entity (Default_Name (Formal)), Loc);
9280 else
9281 Nam := New_Copy (Default_Name (Formal));
9282 Set_Sloc (Nam, Loc);
9283 end if;
9284
9285 elsif Box_Present (Formal) then
9286
9287 -- Actual is resolved at the point of instantiation. Create an
9288 -- identifier or operator with the same name as the formal.
9289
9290 if Nkind (Formal_Sub) = N_Defining_Operator_Symbol then
9291 Nam := Make_Operator_Symbol (Loc,
9292 Chars => Chars (Formal_Sub),
9293 Strval => No_String);
9294 else
9295 Nam := Make_Identifier (Loc, Chars (Formal_Sub));
9296 end if;
9297
9298 elsif Nkind (Specification (Formal)) = N_Procedure_Specification
9299 and then Null_Present (Specification (Formal))
9300 then
9301 -- Generate null body for procedure, for use in the instance
9302
9303 Decl_Node :=
9304 Make_Subprogram_Body (Loc,
9305 Specification => New_Spec,
9306 Declarations => New_List,
9307 Handled_Statement_Sequence =>
9308 Make_Handled_Sequence_Of_Statements (Loc,
9309 Statements => New_List (Make_Null_Statement (Loc))));
9310
9311 Set_Is_Intrinsic_Subprogram (Defining_Unit_Name (New_Spec));
9312 return Decl_Node;
9313
9314 else
9315 Error_Msg_Sloc := Sloc (Scope (Analyzed_S));
9316 Error_Msg_NE
9317 ("missing actual&", Instantiation_Node, Formal_Sub);
9318 Error_Msg_NE
9319 ("\in instantiation of & declared#",
9320 Instantiation_Node, Scope (Analyzed_S));
9321 Abandon_Instantiation (Instantiation_Node);
9322 end if;
9323
9324 Decl_Node :=
9325 Make_Subprogram_Renaming_Declaration (Loc,
9326 Specification => New_Spec,
9327 Name => Nam);
9328
9329 -- If we do not have an actual and the formal specified <> then set to
9330 -- get proper default.
9331
9332 if No (Actual) and then Box_Present (Formal) then
9333 Set_From_Default (Decl_Node);
9334 end if;
9335
9336 -- Gather possible interpretations for the actual before analyzing the
9337 -- instance. If overloaded, it will be resolved when analyzing the
9338 -- renaming declaration.
9339
9340 if Box_Present (Formal)
9341 and then No (Actual)
9342 then
9343 Analyze (Nam);
9344
9345 if Is_Child_Unit (Scope (Analyzed_S))
9346 and then Present (Entity (Nam))
9347 then
9348 if not Is_Overloaded (Nam) then
9349 if From_Parent_Scope (Entity (Nam)) then
9350 Set_Is_Immediately_Visible (Entity (Nam), False);
9351 Set_Entity (Nam, Empty);
9352 Set_Etype (Nam, Empty);
9353
9354 Analyze (Nam);
9355 Set_Is_Immediately_Visible (Entity (Nam));
9356 end if;
9357
9358 else
9359 declare
9360 I : Interp_Index;
9361 It : Interp;
9362
9363 begin
9364 Get_First_Interp (Nam, I, It);
9365 while Present (It.Nam) loop
9366 if From_Parent_Scope (It.Nam) then
9367 Remove_Interp (I);
9368 end if;
9369
9370 Get_Next_Interp (I, It);
9371 end loop;
9372 end;
9373 end if;
9374 end if;
9375 end if;
9376
9377 -- The generic instantiation freezes the actual. This can only be done
9378 -- once the actual is resolved, in the analysis of the renaming
9379 -- declaration. To make the formal subprogram entity available, we set
9380 -- Corresponding_Formal_Spec to point to the formal subprogram entity.
9381 -- This is also needed in Analyze_Subprogram_Renaming for the processing
9382 -- of formal abstract subprograms.
9383
9384 Set_Corresponding_Formal_Spec (Decl_Node, Analyzed_S);
9385
9386 -- We cannot analyze the renaming declaration, and thus find the actual,
9387 -- until all the actuals are assembled in the instance. For subsequent
9388 -- checks of other actuals, indicate the node that will hold the
9389 -- instance of this formal.
9390
9391 Set_Instance_Of (Analyzed_S, Nam);
9392
9393 if Nkind (Actual) = N_Selected_Component
9394 and then Is_Task_Type (Etype (Prefix (Actual)))
9395 and then not Is_Frozen (Etype (Prefix (Actual)))
9396 then
9397 -- The renaming declaration will create a body, which must appear
9398 -- outside of the instantiation, We move the renaming declaration
9399 -- out of the instance, and create an additional renaming inside,
9400 -- to prevent freezing anomalies.
9401
9402 declare
9403 Anon_Id : constant Entity_Id := Make_Temporary (Loc, 'E');
9404
9405 begin
9406 Set_Defining_Unit_Name (New_Spec, Anon_Id);
9407 Insert_Before (Instantiation_Node, Decl_Node);
9408 Analyze (Decl_Node);
9409
9410 -- Now create renaming within the instance
9411
9412 Decl_Node :=
9413 Make_Subprogram_Renaming_Declaration (Loc,
9414 Specification => New_Copy_Tree (New_Spec),
9415 Name => New_Occurrence_Of (Anon_Id, Loc));
9416
9417 Set_Defining_Unit_Name (Specification (Decl_Node),
9418 Make_Defining_Identifier (Loc, Chars (Formal_Sub)));
9419 end;
9420 end if;
9421
9422 -- In Ada 2012, enforce the (RM 13.14(10.2/3)) freezing rule concerning
9423 -- formal incomplete types: a callable entity freezes its profile,
9424 -- unless it has an incomplete untagged formal.
9425
9426 if Ada_Version >= Ada_2012 then
9427 declare
9428 F : Entity_Id;
9429 Has_Untagged_Inc : Boolean;
9430
9431 begin
9432 F := First_Formal (Analyzed_S);
9433 Has_Untagged_Inc := False;
9434 while Present (F) loop
9435 if Ekind (Etype (F)) = E_Incomplete_Type
9436 and then not Is_Tagged_Type (Etype (F))
9437 then
9438 Has_Untagged_Inc := True;
9439 exit;
9440 end if;
9441
9442 F := Next_Formal (F);
9443 end loop;
9444
9445 if Ekind (Analyzed_S) = E_Function
9446 and then Ekind (Etype (Analyzed_S)) = E_Incomplete_Type
9447 and then not Is_Tagged_Type (Etype (F))
9448 then
9449 Has_Untagged_Inc := True;
9450 end if;
9451
9452 if Is_Entity_Name (Actual)
9453 and then not Has_Untagged_Inc
9454 then
9455 F := First_Formal (Entity (Actual));
9456 while Present (F) loop
9457 Freeze_Before (Instantiation_Node, Etype (F));
9458
9459 if Is_Incomplete_Or_Private_Type (Etype (F))
9460 and then No (Underlying_Type (Etype (F)))
9461 and then not Is_Generic_Type (Etype (F))
9462 then
9463 Error_Msg_NE
9464 ("type& must be frozen before this point",
9465 Instantiation_Node, Etype (F));
9466 Abandon_Instantiation (Instantiation_Node);
9467 end if;
9468
9469 F := Next_Formal (F);
9470 end loop;
9471 end if;
9472 end;
9473 end if;
9474
9475 return Decl_Node;
9476 end Instantiate_Formal_Subprogram;
9477
9478 ------------------------
9479 -- Instantiate_Object --
9480 ------------------------
9481
9482 function Instantiate_Object
9483 (Formal : Node_Id;
9484 Actual : Node_Id;
9485 Analyzed_Formal : Node_Id) return List_Id
9486 is
9487 Gen_Obj : constant Entity_Id := Defining_Identifier (Formal);
9488 A_Gen_Obj : constant Entity_Id :=
9489 Defining_Identifier (Analyzed_Formal);
9490 Acc_Def : Node_Id := Empty;
9491 Act_Assoc : constant Node_Id := Parent (Actual);
9492 Actual_Decl : Node_Id := Empty;
9493 Decl_Node : Node_Id;
9494 Def : Node_Id;
9495 Ftyp : Entity_Id;
9496 List : constant List_Id := New_List;
9497 Loc : constant Source_Ptr := Sloc (Actual);
9498 Orig_Ftyp : constant Entity_Id := Etype (A_Gen_Obj);
9499 Subt_Decl : Node_Id := Empty;
9500 Subt_Mark : Node_Id := Empty;
9501
9502 begin
9503 if Present (Subtype_Mark (Formal)) then
9504 Subt_Mark := Subtype_Mark (Formal);
9505 else
9506 Check_Access_Definition (Formal);
9507 Acc_Def := Access_Definition (Formal);
9508 end if;
9509
9510 -- Sloc for error message on missing actual
9511
9512 Error_Msg_Sloc := Sloc (Scope (A_Gen_Obj));
9513
9514 if Get_Instance_Of (Gen_Obj) /= Gen_Obj then
9515 Error_Msg_N ("duplicate instantiation of generic parameter", Actual);
9516 end if;
9517
9518 Set_Parent (List, Parent (Actual));
9519
9520 -- OUT present
9521
9522 if Out_Present (Formal) then
9523
9524 -- An IN OUT generic actual must be a name. The instantiation is a
9525 -- renaming declaration. The actual is the name being renamed. We
9526 -- use the actual directly, rather than a copy, because it is not
9527 -- used further in the list of actuals, and because a copy or a use
9528 -- of relocate_node is incorrect if the instance is nested within a
9529 -- generic. In order to simplify ASIS searches, the Generic_Parent
9530 -- field links the declaration to the generic association.
9531
9532 if No (Actual) then
9533 Error_Msg_NE
9534 ("missing actual&",
9535 Instantiation_Node, Gen_Obj);
9536 Error_Msg_NE
9537 ("\in instantiation of & declared#",
9538 Instantiation_Node, Scope (A_Gen_Obj));
9539 Abandon_Instantiation (Instantiation_Node);
9540 end if;
9541
9542 if Present (Subt_Mark) then
9543 Decl_Node :=
9544 Make_Object_Renaming_Declaration (Loc,
9545 Defining_Identifier => New_Copy (Gen_Obj),
9546 Subtype_Mark => New_Copy_Tree (Subt_Mark),
9547 Name => Actual);
9548
9549 else pragma Assert (Present (Acc_Def));
9550 Decl_Node :=
9551 Make_Object_Renaming_Declaration (Loc,
9552 Defining_Identifier => New_Copy (Gen_Obj),
9553 Access_Definition => New_Copy_Tree (Acc_Def),
9554 Name => Actual);
9555 end if;
9556
9557 Set_Corresponding_Generic_Association (Decl_Node, Act_Assoc);
9558
9559 -- The analysis of the actual may produce Insert_Action nodes, so
9560 -- the declaration must have a context in which to attach them.
9561
9562 Append (Decl_Node, List);
9563 Analyze (Actual);
9564
9565 -- Return if the analysis of the actual reported some error
9566
9567 if Etype (Actual) = Any_Type then
9568 return List;
9569 end if;
9570
9571 -- This check is performed here because Analyze_Object_Renaming will
9572 -- not check it when Comes_From_Source is False. Note though that the
9573 -- check for the actual being the name of an object will be performed
9574 -- in Analyze_Object_Renaming.
9575
9576 if Is_Object_Reference (Actual)
9577 and then Is_Dependent_Component_Of_Mutable_Object (Actual)
9578 then
9579 Error_Msg_N
9580 ("illegal discriminant-dependent component for in out parameter",
9581 Actual);
9582 end if;
9583
9584 -- The actual has to be resolved in order to check that it is a
9585 -- variable (due to cases such as F (1), where F returns access to an
9586 -- array, and for overloaded prefixes).
9587
9588 Ftyp := Get_Instance_Of (Etype (A_Gen_Obj));
9589
9590 -- If the type of the formal is not itself a formal, and the
9591 -- current unit is a child unit, the formal type must be declared
9592 -- in a parent, and must be retrieved by visibility.
9593
9594 if Ftyp = Orig_Ftyp
9595 and then Is_Generic_Unit (Scope (Ftyp))
9596 and then Is_Child_Unit (Scope (A_Gen_Obj))
9597 then
9598 declare
9599 Temp : constant Node_Id :=
9600 New_Copy_Tree (Subtype_Mark (Analyzed_Formal));
9601 begin
9602 Set_Entity (Temp, Empty);
9603 Find_Type (Temp);
9604 Ftyp := Entity (Temp);
9605 end;
9606 end if;
9607
9608 if Is_Private_Type (Ftyp)
9609 and then not Is_Private_Type (Etype (Actual))
9610 and then (Base_Type (Full_View (Ftyp)) = Base_Type (Etype (Actual))
9611 or else Base_Type (Etype (Actual)) = Ftyp)
9612 then
9613 -- If the actual has the type of the full view of the formal, or
9614 -- else a non-private subtype of the formal, then the visibility
9615 -- of the formal type has changed. Add to the actuals a subtype
9616 -- declaration that will force the exchange of views in the body
9617 -- of the instance as well.
9618
9619 Subt_Decl :=
9620 Make_Subtype_Declaration (Loc,
9621 Defining_Identifier => Make_Temporary (Loc, 'P'),
9622 Subtype_Indication => New_Occurrence_Of (Ftyp, Loc));
9623
9624 Prepend (Subt_Decl, List);
9625
9626 Prepend_Elmt (Full_View (Ftyp), Exchanged_Views);
9627 Exchange_Declarations (Ftyp);
9628 end if;
9629
9630 Resolve (Actual, Ftyp);
9631
9632 if not Denotes_Variable (Actual) then
9633 Error_Msg_NE
9634 ("actual for& must be a variable", Actual, Gen_Obj);
9635
9636 elsif Base_Type (Ftyp) /= Base_Type (Etype (Actual)) then
9637
9638 -- Ada 2005 (AI-423): For a generic formal object of mode in out,
9639 -- the type of the actual shall resolve to a specific anonymous
9640 -- access type.
9641
9642 if Ada_Version < Ada_2005
9643 or else
9644 Ekind (Base_Type (Ftyp)) /=
9645 E_Anonymous_Access_Type
9646 or else
9647 Ekind (Base_Type (Etype (Actual))) /=
9648 E_Anonymous_Access_Type
9649 then
9650 Error_Msg_NE ("type of actual does not match type of&",
9651 Actual, Gen_Obj);
9652 end if;
9653 end if;
9654
9655 Note_Possible_Modification (Actual, Sure => True);
9656
9657 -- Check for instantiation of atomic/volatile actual for
9658 -- non-atomic/volatile formal (RM C.6 (12)).
9659
9660 if Is_Atomic_Object (Actual)
9661 and then not Is_Atomic (Orig_Ftyp)
9662 then
9663 Error_Msg_N
9664 ("cannot instantiate non-atomic formal object " &
9665 "with atomic actual", Actual);
9666
9667 elsif Is_Volatile_Object (Actual)
9668 and then not Is_Volatile (Orig_Ftyp)
9669 then
9670 Error_Msg_N
9671 ("cannot instantiate non-volatile formal object " &
9672 "with volatile actual", Actual);
9673 end if;
9674
9675 -- Formal in-parameter
9676
9677 else
9678 -- The instantiation of a generic formal in-parameter is constant
9679 -- declaration. The actual is the expression for that declaration.
9680
9681 if Present (Actual) then
9682 if Present (Subt_Mark) then
9683 Def := Subt_Mark;
9684 else pragma Assert (Present (Acc_Def));
9685 Def := Acc_Def;
9686 end if;
9687
9688 Decl_Node :=
9689 Make_Object_Declaration (Loc,
9690 Defining_Identifier => New_Copy (Gen_Obj),
9691 Constant_Present => True,
9692 Null_Exclusion_Present => Null_Exclusion_Present (Formal),
9693 Object_Definition => New_Copy_Tree (Def),
9694 Expression => Actual);
9695
9696 Set_Corresponding_Generic_Association (Decl_Node, Act_Assoc);
9697
9698 -- A generic formal object of a tagged type is defined to be
9699 -- aliased so the new constant must also be treated as aliased.
9700
9701 if Is_Tagged_Type (Etype (A_Gen_Obj)) then
9702 Set_Aliased_Present (Decl_Node);
9703 end if;
9704
9705 Append (Decl_Node, List);
9706
9707 -- No need to repeat (pre-)analysis of some expression nodes
9708 -- already handled in Preanalyze_Actuals.
9709
9710 if Nkind (Actual) /= N_Allocator then
9711 Analyze (Actual);
9712
9713 -- Return if the analysis of the actual reported some error
9714
9715 if Etype (Actual) = Any_Type then
9716 return List;
9717 end if;
9718 end if;
9719
9720 declare
9721 Formal_Type : constant Entity_Id := Etype (A_Gen_Obj);
9722 Typ : Entity_Id;
9723
9724 begin
9725 Typ := Get_Instance_Of (Formal_Type);
9726
9727 Freeze_Before (Instantiation_Node, Typ);
9728
9729 -- If the actual is an aggregate, perform name resolution on
9730 -- its components (the analysis of an aggregate does not do it)
9731 -- to capture local names that may be hidden if the generic is
9732 -- a child unit.
9733
9734 if Nkind (Actual) = N_Aggregate then
9735 Preanalyze_And_Resolve (Actual, Typ);
9736 end if;
9737
9738 if Is_Limited_Type (Typ)
9739 and then not OK_For_Limited_Init (Typ, Actual)
9740 then
9741 Error_Msg_N
9742 ("initialization not allowed for limited types", Actual);
9743 Explain_Limited_Type (Typ, Actual);
9744 end if;
9745 end;
9746
9747 elsif Present (Default_Expression (Formal)) then
9748
9749 -- Use default to construct declaration
9750
9751 if Present (Subt_Mark) then
9752 Def := Subt_Mark;
9753 else pragma Assert (Present (Acc_Def));
9754 Def := Acc_Def;
9755 end if;
9756
9757 Decl_Node :=
9758 Make_Object_Declaration (Sloc (Formal),
9759 Defining_Identifier => New_Copy (Gen_Obj),
9760 Constant_Present => True,
9761 Null_Exclusion_Present => Null_Exclusion_Present (Formal),
9762 Object_Definition => New_Copy (Def),
9763 Expression => New_Copy_Tree
9764 (Default_Expression (Formal)));
9765
9766 Append (Decl_Node, List);
9767 Set_Analyzed (Expression (Decl_Node), False);
9768
9769 else
9770 Error_Msg_NE
9771 ("missing actual&",
9772 Instantiation_Node, Gen_Obj);
9773 Error_Msg_NE ("\in instantiation of & declared#",
9774 Instantiation_Node, Scope (A_Gen_Obj));
9775
9776 if Is_Scalar_Type (Etype (A_Gen_Obj)) then
9777
9778 -- Create dummy constant declaration so that instance can be
9779 -- analyzed, to minimize cascaded visibility errors.
9780
9781 if Present (Subt_Mark) then
9782 Def := Subt_Mark;
9783 else pragma Assert (Present (Acc_Def));
9784 Def := Acc_Def;
9785 end if;
9786
9787 Decl_Node :=
9788 Make_Object_Declaration (Loc,
9789 Defining_Identifier => New_Copy (Gen_Obj),
9790 Constant_Present => True,
9791 Null_Exclusion_Present => Null_Exclusion_Present (Formal),
9792 Object_Definition => New_Copy (Def),
9793 Expression =>
9794 Make_Attribute_Reference (Sloc (Gen_Obj),
9795 Attribute_Name => Name_First,
9796 Prefix => New_Copy (Def)));
9797
9798 Append (Decl_Node, List);
9799
9800 else
9801 Abandon_Instantiation (Instantiation_Node);
9802 end if;
9803 end if;
9804 end if;
9805
9806 if Nkind (Actual) in N_Has_Entity then
9807 Actual_Decl := Parent (Entity (Actual));
9808 end if;
9809
9810 -- Ada 2005 (AI-423): For a formal object declaration with a null
9811 -- exclusion or an access definition that has a null exclusion: If the
9812 -- actual matching the formal object declaration denotes a generic
9813 -- formal object of another generic unit G, and the instantiation
9814 -- containing the actual occurs within the body of G or within the body
9815 -- of a generic unit declared within the declarative region of G, then
9816 -- the declaration of the formal object of G must have a null exclusion.
9817 -- Otherwise, the subtype of the actual matching the formal object
9818 -- declaration shall exclude null.
9819
9820 if Ada_Version >= Ada_2005
9821 and then Present (Actual_Decl)
9822 and then
9823 Nkind_In (Actual_Decl, N_Formal_Object_Declaration,
9824 N_Object_Declaration)
9825 and then Nkind (Analyzed_Formal) = N_Formal_Object_Declaration
9826 and then not Has_Null_Exclusion (Actual_Decl)
9827 and then Has_Null_Exclusion (Analyzed_Formal)
9828 then
9829 Error_Msg_Sloc := Sloc (Analyzed_Formal);
9830 Error_Msg_N
9831 ("actual must exclude null to match generic formal#", Actual);
9832 end if;
9833
9834 return List;
9835 end Instantiate_Object;
9836
9837 ------------------------------
9838 -- Instantiate_Package_Body --
9839 ------------------------------
9840
9841 procedure Instantiate_Package_Body
9842 (Body_Info : Pending_Body_Info;
9843 Inlined_Body : Boolean := False;
9844 Body_Optional : Boolean := False)
9845 is
9846 Act_Decl : constant Node_Id := Body_Info.Act_Decl;
9847 Inst_Node : constant Node_Id := Body_Info.Inst_Node;
9848 Loc : constant Source_Ptr := Sloc (Inst_Node);
9849
9850 Gen_Id : constant Node_Id := Name (Inst_Node);
9851 Gen_Unit : constant Entity_Id := Get_Generic_Entity (Inst_Node);
9852 Gen_Decl : constant Node_Id := Unit_Declaration_Node (Gen_Unit);
9853 Act_Spec : constant Node_Id := Specification (Act_Decl);
9854 Act_Decl_Id : constant Entity_Id := Defining_Entity (Act_Spec);
9855
9856 Act_Body_Name : Node_Id;
9857 Gen_Body : Node_Id;
9858 Gen_Body_Id : Node_Id;
9859 Act_Body : Node_Id;
9860 Act_Body_Id : Entity_Id;
9861
9862 Parent_Installed : Boolean := False;
9863 Save_Style_Check : constant Boolean := Style_Check;
9864
9865 Par_Ent : Entity_Id := Empty;
9866 Par_Vis : Boolean := False;
9867
9868 Vis_Prims_List : Elist_Id := No_Elist;
9869 -- List of primitives made temporarily visible in the instantiation
9870 -- to match the visibility of the formal type
9871
9872 begin
9873 Gen_Body_Id := Corresponding_Body (Gen_Decl);
9874
9875 -- The instance body may already have been processed, as the parent of
9876 -- another instance that is inlined (Load_Parent_Of_Generic).
9877
9878 if Present (Corresponding_Body (Instance_Spec (Inst_Node))) then
9879 return;
9880 end if;
9881
9882 Expander_Mode_Save_And_Set (Body_Info.Expander_Status);
9883
9884 -- Re-establish the state of information on which checks are suppressed.
9885 -- This information was set in Body_Info at the point of instantiation,
9886 -- and now we restore it so that the instance is compiled using the
9887 -- check status at the instantiation (RM 11.5 (7.2/2), AI95-00224-01).
9888
9889 Local_Suppress_Stack_Top := Body_Info.Local_Suppress_Stack_Top;
9890 Scope_Suppress := Body_Info.Scope_Suppress;
9891 Opt.Ada_Version := Body_Info.Version;
9892
9893 if No (Gen_Body_Id) then
9894 Load_Parent_Of_Generic
9895 (Inst_Node, Specification (Gen_Decl), Body_Optional);
9896 Gen_Body_Id := Corresponding_Body (Gen_Decl);
9897 end if;
9898
9899 -- Establish global variable for sloc adjustment and for error recovery
9900
9901 Instantiation_Node := Inst_Node;
9902
9903 if Present (Gen_Body_Id) then
9904 Save_Env (Gen_Unit, Act_Decl_Id);
9905 Style_Check := False;
9906 Current_Sem_Unit := Body_Info.Current_Sem_Unit;
9907
9908 Gen_Body := Unit_Declaration_Node (Gen_Body_Id);
9909
9910 Create_Instantiation_Source
9911 (Inst_Node, Gen_Body_Id, False, S_Adjustment);
9912
9913 Act_Body :=
9914 Copy_Generic_Node
9915 (Original_Node (Gen_Body), Empty, Instantiating => True);
9916
9917 -- Build new name (possibly qualified) for body declaration
9918
9919 Act_Body_Id := New_Copy (Act_Decl_Id);
9920
9921 -- Some attributes of spec entity are not inherited by body entity
9922
9923 Set_Handler_Records (Act_Body_Id, No_List);
9924
9925 if Nkind (Defining_Unit_Name (Act_Spec)) =
9926 N_Defining_Program_Unit_Name
9927 then
9928 Act_Body_Name :=
9929 Make_Defining_Program_Unit_Name (Loc,
9930 Name => New_Copy_Tree (Name (Defining_Unit_Name (Act_Spec))),
9931 Defining_Identifier => Act_Body_Id);
9932 else
9933 Act_Body_Name := Act_Body_Id;
9934 end if;
9935
9936 Set_Defining_Unit_Name (Act_Body, Act_Body_Name);
9937
9938 Set_Corresponding_Spec (Act_Body, Act_Decl_Id);
9939 Check_Generic_Actuals (Act_Decl_Id, False);
9940
9941 -- Install primitives hidden at the point of the instantiation but
9942 -- visible when processing the generic formals
9943
9944 declare
9945 E : Entity_Id;
9946
9947 begin
9948 E := First_Entity (Act_Decl_Id);
9949 while Present (E) loop
9950 if Is_Type (E)
9951 and then Is_Generic_Actual_Type (E)
9952 and then Is_Tagged_Type (E)
9953 then
9954 Install_Hidden_Primitives
9955 (Prims_List => Vis_Prims_List,
9956 Gen_T => Generic_Parent_Type (Parent (E)),
9957 Act_T => E);
9958 end if;
9959
9960 Next_Entity (E);
9961 end loop;
9962 end;
9963
9964 -- If it is a child unit, make the parent instance (which is an
9965 -- instance of the parent of the generic) visible. The parent
9966 -- instance is the prefix of the name of the generic unit.
9967
9968 if Ekind (Scope (Gen_Unit)) = E_Generic_Package
9969 and then Nkind (Gen_Id) = N_Expanded_Name
9970 then
9971 Par_Ent := Entity (Prefix (Gen_Id));
9972 Par_Vis := Is_Immediately_Visible (Par_Ent);
9973 Install_Parent (Par_Ent, In_Body => True);
9974 Parent_Installed := True;
9975
9976 elsif Is_Child_Unit (Gen_Unit) then
9977 Par_Ent := Scope (Gen_Unit);
9978 Par_Vis := Is_Immediately_Visible (Par_Ent);
9979 Install_Parent (Par_Ent, In_Body => True);
9980 Parent_Installed := True;
9981 end if;
9982
9983 -- If the instantiation is a library unit, and this is the main unit,
9984 -- then build the resulting compilation unit nodes for the instance.
9985 -- If this is a compilation unit but it is not the main unit, then it
9986 -- is the body of a unit in the context, that is being compiled
9987 -- because it is encloses some inlined unit or another generic unit
9988 -- being instantiated. In that case, this body is not part of the
9989 -- current compilation, and is not attached to the tree, but its
9990 -- parent must be set for analysis.
9991
9992 if Nkind (Parent (Inst_Node)) = N_Compilation_Unit then
9993
9994 -- Replace instance node with body of instance, and create new
9995 -- node for corresponding instance declaration.
9996
9997 Build_Instance_Compilation_Unit_Nodes
9998 (Inst_Node, Act_Body, Act_Decl);
9999 Analyze (Inst_Node);
10000
10001 if Parent (Inst_Node) = Cunit (Main_Unit) then
10002
10003 -- If the instance is a child unit itself, then set the scope
10004 -- of the expanded body to be the parent of the instantiation
10005 -- (ensuring that the fully qualified name will be generated
10006 -- for the elaboration subprogram).
10007
10008 if Nkind (Defining_Unit_Name (Act_Spec)) =
10009 N_Defining_Program_Unit_Name
10010 then
10011 Set_Scope
10012 (Defining_Entity (Inst_Node), Scope (Act_Decl_Id));
10013 end if;
10014 end if;
10015
10016 -- Case where instantiation is not a library unit
10017
10018 else
10019 -- If this is an early instantiation, i.e. appears textually
10020 -- before the corresponding body and must be elaborated first,
10021 -- indicate that the body instance is to be delayed.
10022
10023 Install_Body (Act_Body, Inst_Node, Gen_Body, Gen_Decl);
10024
10025 -- Now analyze the body. We turn off all checks if this is an
10026 -- internal unit, since there is no reason to have checks on for
10027 -- any predefined run-time library code. All such code is designed
10028 -- to be compiled with checks off.
10029
10030 -- Note that we do NOT apply this criterion to children of GNAT
10031 -- (or on VMS, children of DEC). The latter units must suppress
10032 -- checks explicitly if this is needed.
10033
10034 if Is_Predefined_File_Name
10035 (Unit_File_Name (Get_Source_Unit (Gen_Decl)))
10036 then
10037 Analyze (Act_Body, Suppress => All_Checks);
10038 else
10039 Analyze (Act_Body);
10040 end if;
10041 end if;
10042
10043 Inherit_Context (Gen_Body, Inst_Node);
10044
10045 -- Remove the parent instances if they have been placed on the scope
10046 -- stack to compile the body.
10047
10048 if Parent_Installed then
10049 Remove_Parent (In_Body => True);
10050
10051 -- Restore the previous visibility of the parent
10052
10053 Set_Is_Immediately_Visible (Par_Ent, Par_Vis);
10054 end if;
10055
10056 Restore_Hidden_Primitives (Vis_Prims_List);
10057 Restore_Private_Views (Act_Decl_Id);
10058
10059 -- Remove the current unit from visibility if this is an instance
10060 -- that is not elaborated on the fly for inlining purposes.
10061
10062 if not Inlined_Body then
10063 Set_Is_Immediately_Visible (Act_Decl_Id, False);
10064 end if;
10065
10066 Restore_Env;
10067 Style_Check := Save_Style_Check;
10068
10069 -- If we have no body, and the unit requires a body, then complain. This
10070 -- complaint is suppressed if we have detected other errors (since a
10071 -- common reason for missing the body is that it had errors).
10072 -- In CodePeer mode, a warning has been emitted already, no need for
10073 -- further messages.
10074
10075 elsif Unit_Requires_Body (Gen_Unit)
10076 and then not Body_Optional
10077 then
10078 if CodePeer_Mode then
10079 null;
10080
10081 elsif Serious_Errors_Detected = 0 then
10082 Error_Msg_NE
10083 ("cannot find body of generic package &", Inst_Node, Gen_Unit);
10084
10085 -- Don't attempt to perform any cleanup actions if some other error
10086 -- was already detected, since this can cause blowups.
10087
10088 else
10089 return;
10090 end if;
10091
10092 -- Case of package that does not need a body
10093
10094 else
10095 -- If the instantiation of the declaration is a library unit, rewrite
10096 -- the original package instantiation as a package declaration in the
10097 -- compilation unit node.
10098
10099 if Nkind (Parent (Inst_Node)) = N_Compilation_Unit then
10100 Set_Parent_Spec (Act_Decl, Parent_Spec (Inst_Node));
10101 Rewrite (Inst_Node, Act_Decl);
10102
10103 -- Generate elaboration entity, in case spec has elaboration code.
10104 -- This cannot be done when the instance is analyzed, because it
10105 -- is not known yet whether the body exists.
10106
10107 Set_Elaboration_Entity_Required (Act_Decl_Id, False);
10108 Build_Elaboration_Entity (Parent (Inst_Node), Act_Decl_Id);
10109
10110 -- If the instantiation is not a library unit, then append the
10111 -- declaration to the list of implicitly generated entities, unless
10112 -- it is already a list member which means that it was already
10113 -- processed
10114
10115 elsif not Is_List_Member (Act_Decl) then
10116 Mark_Rewrite_Insertion (Act_Decl);
10117 Insert_Before (Inst_Node, Act_Decl);
10118 end if;
10119 end if;
10120
10121 Expander_Mode_Restore;
10122 end Instantiate_Package_Body;
10123
10124 ---------------------------------
10125 -- Instantiate_Subprogram_Body --
10126 ---------------------------------
10127
10128 procedure Instantiate_Subprogram_Body
10129 (Body_Info : Pending_Body_Info;
10130 Body_Optional : Boolean := False)
10131 is
10132 Act_Decl : constant Node_Id := Body_Info.Act_Decl;
10133 Inst_Node : constant Node_Id := Body_Info.Inst_Node;
10134 Loc : constant Source_Ptr := Sloc (Inst_Node);
10135 Gen_Id : constant Node_Id := Name (Inst_Node);
10136 Gen_Unit : constant Entity_Id := Get_Generic_Entity (Inst_Node);
10137 Gen_Decl : constant Node_Id := Unit_Declaration_Node (Gen_Unit);
10138 Anon_Id : constant Entity_Id :=
10139 Defining_Unit_Name (Specification (Act_Decl));
10140 Pack_Id : constant Entity_Id :=
10141 Defining_Unit_Name (Parent (Act_Decl));
10142 Decls : List_Id;
10143 Gen_Body : Node_Id;
10144 Gen_Body_Id : Node_Id;
10145 Act_Body : Node_Id;
10146 Pack_Body : Node_Id;
10147 Prev_Formal : Entity_Id;
10148 Ret_Expr : Node_Id;
10149 Unit_Renaming : Node_Id;
10150
10151 Parent_Installed : Boolean := False;
10152 Save_Style_Check : constant Boolean := Style_Check;
10153
10154 Par_Ent : Entity_Id := Empty;
10155 Par_Vis : Boolean := False;
10156
10157 begin
10158 Gen_Body_Id := Corresponding_Body (Gen_Decl);
10159
10160 -- Subprogram body may have been created already because of an inline
10161 -- pragma, or because of multiple elaborations of the enclosing package
10162 -- when several instances of the subprogram appear in the main unit.
10163
10164 if Present (Corresponding_Body (Act_Decl)) then
10165 return;
10166 end if;
10167
10168 Expander_Mode_Save_And_Set (Body_Info.Expander_Status);
10169
10170 -- Re-establish the state of information on which checks are suppressed.
10171 -- This information was set in Body_Info at the point of instantiation,
10172 -- and now we restore it so that the instance is compiled using the
10173 -- check status at the instantiation (RM 11.5 (7.2/2), AI95-00224-01).
10174
10175 Local_Suppress_Stack_Top := Body_Info.Local_Suppress_Stack_Top;
10176 Scope_Suppress := Body_Info.Scope_Suppress;
10177 Opt.Ada_Version := Body_Info.Version;
10178
10179 if No (Gen_Body_Id) then
10180
10181 -- For imported generic subprogram, no body to compile, complete
10182 -- the spec entity appropriately.
10183
10184 if Is_Imported (Gen_Unit) then
10185 Set_Is_Imported (Anon_Id);
10186 Set_First_Rep_Item (Anon_Id, First_Rep_Item (Gen_Unit));
10187 Set_Interface_Name (Anon_Id, Interface_Name (Gen_Unit));
10188 Set_Convention (Anon_Id, Convention (Gen_Unit));
10189 Set_Has_Completion (Anon_Id);
10190 return;
10191
10192 -- For other cases, compile the body
10193
10194 else
10195 Load_Parent_Of_Generic
10196 (Inst_Node, Specification (Gen_Decl), Body_Optional);
10197 Gen_Body_Id := Corresponding_Body (Gen_Decl);
10198 end if;
10199 end if;
10200
10201 Instantiation_Node := Inst_Node;
10202
10203 if Present (Gen_Body_Id) then
10204 Gen_Body := Unit_Declaration_Node (Gen_Body_Id);
10205
10206 if Nkind (Gen_Body) = N_Subprogram_Body_Stub then
10207
10208 -- Either body is not present, or context is non-expanding, as
10209 -- when compiling a subunit. Mark the instance as completed, and
10210 -- diagnose a missing body when needed.
10211
10212 if Expander_Active
10213 and then Operating_Mode = Generate_Code
10214 then
10215 Error_Msg_N
10216 ("missing proper body for instantiation", Gen_Body);
10217 end if;
10218
10219 Set_Has_Completion (Anon_Id);
10220 return;
10221 end if;
10222
10223 Save_Env (Gen_Unit, Anon_Id);
10224 Style_Check := False;
10225 Current_Sem_Unit := Body_Info.Current_Sem_Unit;
10226 Create_Instantiation_Source
10227 (Inst_Node,
10228 Gen_Body_Id,
10229 False,
10230 S_Adjustment);
10231
10232 Act_Body :=
10233 Copy_Generic_Node
10234 (Original_Node (Gen_Body), Empty, Instantiating => True);
10235
10236 -- Create proper defining name for the body, to correspond to
10237 -- the one in the spec.
10238
10239 Set_Defining_Unit_Name (Specification (Act_Body),
10240 Make_Defining_Identifier
10241 (Sloc (Defining_Entity (Inst_Node)), Chars (Anon_Id)));
10242 Set_Corresponding_Spec (Act_Body, Anon_Id);
10243 Set_Has_Completion (Anon_Id);
10244 Check_Generic_Actuals (Pack_Id, False);
10245
10246 -- Generate a reference to link the visible subprogram instance to
10247 -- the generic body, which for navigation purposes is the only
10248 -- available source for the instance.
10249
10250 Generate_Reference
10251 (Related_Instance (Pack_Id),
10252 Gen_Body_Id, 'b', Set_Ref => False, Force => True);
10253
10254 -- If it is a child unit, make the parent instance (which is an
10255 -- instance of the parent of the generic) visible. The parent
10256 -- instance is the prefix of the name of the generic unit.
10257
10258 if Ekind (Scope (Gen_Unit)) = E_Generic_Package
10259 and then Nkind (Gen_Id) = N_Expanded_Name
10260 then
10261 Par_Ent := Entity (Prefix (Gen_Id));
10262 Par_Vis := Is_Immediately_Visible (Par_Ent);
10263 Install_Parent (Par_Ent, In_Body => True);
10264 Parent_Installed := True;
10265
10266 elsif Is_Child_Unit (Gen_Unit) then
10267 Par_Ent := Scope (Gen_Unit);
10268 Par_Vis := Is_Immediately_Visible (Par_Ent);
10269 Install_Parent (Par_Ent, In_Body => True);
10270 Parent_Installed := True;
10271 end if;
10272
10273 -- Inside its body, a reference to the generic unit is a reference
10274 -- to the instance. The corresponding renaming is the first
10275 -- declaration in the body.
10276
10277 Unit_Renaming :=
10278 Make_Subprogram_Renaming_Declaration (Loc,
10279 Specification =>
10280 Copy_Generic_Node (
10281 Specification (Original_Node (Gen_Body)),
10282 Empty,
10283 Instantiating => True),
10284 Name => New_Occurrence_Of (Anon_Id, Loc));
10285
10286 -- If there is a formal subprogram with the same name as the unit
10287 -- itself, do not add this renaming declaration. This is a temporary
10288 -- fix for one ACVC test. ???
10289
10290 Prev_Formal := First_Entity (Pack_Id);
10291 while Present (Prev_Formal) loop
10292 if Chars (Prev_Formal) = Chars (Gen_Unit)
10293 and then Is_Overloadable (Prev_Formal)
10294 then
10295 exit;
10296 end if;
10297
10298 Next_Entity (Prev_Formal);
10299 end loop;
10300
10301 if Present (Prev_Formal) then
10302 Decls := New_List (Act_Body);
10303 else
10304 Decls := New_List (Unit_Renaming, Act_Body);
10305 end if;
10306
10307 -- The subprogram body is placed in the body of a dummy package body,
10308 -- whose spec contains the subprogram declaration as well as the
10309 -- renaming declarations for the generic parameters.
10310
10311 Pack_Body := Make_Package_Body (Loc,
10312 Defining_Unit_Name => New_Copy (Pack_Id),
10313 Declarations => Decls);
10314
10315 Set_Corresponding_Spec (Pack_Body, Pack_Id);
10316
10317 -- If the instantiation is a library unit, then build resulting
10318 -- compilation unit nodes for the instance. The declaration of
10319 -- the enclosing package is the grandparent of the subprogram
10320 -- declaration. First replace the instantiation node as the unit
10321 -- of the corresponding compilation.
10322
10323 if Nkind (Parent (Inst_Node)) = N_Compilation_Unit then
10324 if Parent (Inst_Node) = Cunit (Main_Unit) then
10325 Set_Unit (Parent (Inst_Node), Inst_Node);
10326 Build_Instance_Compilation_Unit_Nodes
10327 (Inst_Node, Pack_Body, Parent (Parent (Act_Decl)));
10328 Analyze (Inst_Node);
10329 else
10330 Set_Parent (Pack_Body, Parent (Inst_Node));
10331 Analyze (Pack_Body);
10332 end if;
10333
10334 else
10335 Insert_Before (Inst_Node, Pack_Body);
10336 Mark_Rewrite_Insertion (Pack_Body);
10337 Analyze (Pack_Body);
10338
10339 if Expander_Active then
10340 Freeze_Subprogram_Body (Inst_Node, Gen_Body, Pack_Id);
10341 end if;
10342 end if;
10343
10344 Inherit_Context (Gen_Body, Inst_Node);
10345
10346 Restore_Private_Views (Pack_Id, False);
10347
10348 if Parent_Installed then
10349 Remove_Parent (In_Body => True);
10350
10351 -- Restore the previous visibility of the parent
10352
10353 Set_Is_Immediately_Visible (Par_Ent, Par_Vis);
10354 end if;
10355
10356 Restore_Env;
10357 Style_Check := Save_Style_Check;
10358
10359 -- Body not found. Error was emitted already. If there were no previous
10360 -- errors, this may be an instance whose scope is a premature instance.
10361 -- In that case we must insure that the (legal) program does raise
10362 -- program error if executed. We generate a subprogram body for this
10363 -- purpose. See DEC ac30vso.
10364
10365 -- Should not reference proprietary DEC tests in comments ???
10366
10367 elsif Serious_Errors_Detected = 0
10368 and then Nkind (Parent (Inst_Node)) /= N_Compilation_Unit
10369 then
10370 if Body_Optional then
10371 return;
10372
10373 elsif Ekind (Anon_Id) = E_Procedure then
10374 Act_Body :=
10375 Make_Subprogram_Body (Loc,
10376 Specification =>
10377 Make_Procedure_Specification (Loc,
10378 Defining_Unit_Name =>
10379 Make_Defining_Identifier (Loc, Chars (Anon_Id)),
10380 Parameter_Specifications =>
10381 New_Copy_List
10382 (Parameter_Specifications (Parent (Anon_Id)))),
10383
10384 Declarations => Empty_List,
10385 Handled_Statement_Sequence =>
10386 Make_Handled_Sequence_Of_Statements (Loc,
10387 Statements =>
10388 New_List (
10389 Make_Raise_Program_Error (Loc,
10390 Reason =>
10391 PE_Access_Before_Elaboration))));
10392
10393 else
10394 Ret_Expr :=
10395 Make_Raise_Program_Error (Loc,
10396 Reason => PE_Access_Before_Elaboration);
10397
10398 Set_Etype (Ret_Expr, (Etype (Anon_Id)));
10399 Set_Analyzed (Ret_Expr);
10400
10401 Act_Body :=
10402 Make_Subprogram_Body (Loc,
10403 Specification =>
10404 Make_Function_Specification (Loc,
10405 Defining_Unit_Name =>
10406 Make_Defining_Identifier (Loc, Chars (Anon_Id)),
10407 Parameter_Specifications =>
10408 New_Copy_List
10409 (Parameter_Specifications (Parent (Anon_Id))),
10410 Result_Definition =>
10411 New_Occurrence_Of (Etype (Anon_Id), Loc)),
10412
10413 Declarations => Empty_List,
10414 Handled_Statement_Sequence =>
10415 Make_Handled_Sequence_Of_Statements (Loc,
10416 Statements =>
10417 New_List
10418 (Make_Simple_Return_Statement (Loc, Ret_Expr))));
10419 end if;
10420
10421 Pack_Body := Make_Package_Body (Loc,
10422 Defining_Unit_Name => New_Copy (Pack_Id),
10423 Declarations => New_List (Act_Body));
10424
10425 Insert_After (Inst_Node, Pack_Body);
10426 Set_Corresponding_Spec (Pack_Body, Pack_Id);
10427 Analyze (Pack_Body);
10428 end if;
10429
10430 Expander_Mode_Restore;
10431 end Instantiate_Subprogram_Body;
10432
10433 ----------------------
10434 -- Instantiate_Type --
10435 ----------------------
10436
10437 function Instantiate_Type
10438 (Formal : Node_Id;
10439 Actual : Node_Id;
10440 Analyzed_Formal : Node_Id;
10441 Actual_Decls : List_Id) return List_Id
10442 is
10443 Gen_T : constant Entity_Id := Defining_Identifier (Formal);
10444 A_Gen_T : constant Entity_Id :=
10445 Defining_Identifier (Analyzed_Formal);
10446 Ancestor : Entity_Id := Empty;
10447 Def : constant Node_Id := Formal_Type_Definition (Formal);
10448 Act_T : Entity_Id;
10449 Decl_Node : Node_Id;
10450 Decl_Nodes : List_Id;
10451 Loc : Source_Ptr;
10452 Subt : Entity_Id;
10453
10454 procedure Validate_Array_Type_Instance;
10455 procedure Validate_Access_Subprogram_Instance;
10456 procedure Validate_Access_Type_Instance;
10457 procedure Validate_Derived_Type_Instance;
10458 procedure Validate_Derived_Interface_Type_Instance;
10459 procedure Validate_Discriminated_Formal_Type;
10460 procedure Validate_Interface_Type_Instance;
10461 procedure Validate_Private_Type_Instance;
10462 procedure Validate_Incomplete_Type_Instance;
10463 -- These procedures perform validation tests for the named case.
10464 -- Validate_Discriminated_Formal_Type is shared by formal private
10465 -- types and Ada 2012 formal incomplete types.
10466
10467 function Subtypes_Match (Gen_T, Act_T : Entity_Id) return Boolean;
10468 -- Check that base types are the same and that the subtypes match
10469 -- statically. Used in several of the above.
10470
10471 --------------------
10472 -- Subtypes_Match --
10473 --------------------
10474
10475 function Subtypes_Match (Gen_T, Act_T : Entity_Id) return Boolean is
10476 T : constant Entity_Id := Get_Instance_Of (Gen_T);
10477
10478 begin
10479 return (Base_Type (T) = Base_Type (Act_T)
10480 and then Subtypes_Statically_Match (T, Act_T))
10481
10482 or else (Is_Class_Wide_Type (Gen_T)
10483 and then Is_Class_Wide_Type (Act_T)
10484 and then
10485 Subtypes_Match
10486 (Get_Instance_Of (Root_Type (Gen_T)),
10487 Root_Type (Act_T)))
10488
10489 or else
10490 ((Ekind (Gen_T) = E_Anonymous_Access_Subprogram_Type
10491 or else Ekind (Gen_T) = E_Anonymous_Access_Type)
10492 and then Ekind (Act_T) = Ekind (Gen_T)
10493 and then
10494 Subtypes_Statically_Match
10495 (Designated_Type (Gen_T), Designated_Type (Act_T)));
10496 end Subtypes_Match;
10497
10498 -----------------------------------------
10499 -- Validate_Access_Subprogram_Instance --
10500 -----------------------------------------
10501
10502 procedure Validate_Access_Subprogram_Instance is
10503 begin
10504 if not Is_Access_Type (Act_T)
10505 or else Ekind (Designated_Type (Act_T)) /= E_Subprogram_Type
10506 then
10507 Error_Msg_NE
10508 ("expect access type in instantiation of &", Actual, Gen_T);
10509 Abandon_Instantiation (Actual);
10510 end if;
10511
10512 -- According to AI05-288, actuals for access_to_subprograms must be
10513 -- subtype conformant with the generic formal. Previous to AI05-288
10514 -- only mode conformance was required.
10515
10516 -- This is a binding interpretation that applies to previous versions
10517 -- of the language, but for now we retain the milder check in order
10518 -- to preserve ACATS tests.
10519 -- These will be protested eventually ???
10520
10521 if Ada_Version < Ada_2012 then
10522 Check_Mode_Conformant
10523 (Designated_Type (Act_T),
10524 Designated_Type (A_Gen_T),
10525 Actual,
10526 Get_Inst => True);
10527
10528 else
10529 Check_Subtype_Conformant
10530 (Designated_Type (Act_T),
10531 Designated_Type (A_Gen_T),
10532 Actual,
10533 Get_Inst => True);
10534 end if;
10535
10536 if Ekind (Base_Type (Act_T)) = E_Access_Protected_Subprogram_Type then
10537 if Ekind (A_Gen_T) = E_Access_Subprogram_Type then
10538 Error_Msg_NE
10539 ("protected access type not allowed for formal &",
10540 Actual, Gen_T);
10541 end if;
10542
10543 elsif Ekind (A_Gen_T) = E_Access_Protected_Subprogram_Type then
10544 Error_Msg_NE
10545 ("expect protected access type for formal &",
10546 Actual, Gen_T);
10547 end if;
10548 end Validate_Access_Subprogram_Instance;
10549
10550 -----------------------------------
10551 -- Validate_Access_Type_Instance --
10552 -----------------------------------
10553
10554 procedure Validate_Access_Type_Instance is
10555 Desig_Type : constant Entity_Id :=
10556 Find_Actual_Type (Designated_Type (A_Gen_T), A_Gen_T);
10557 Desig_Act : Entity_Id;
10558
10559 begin
10560 if not Is_Access_Type (Act_T) then
10561 Error_Msg_NE
10562 ("expect access type in instantiation of &", Actual, Gen_T);
10563 Abandon_Instantiation (Actual);
10564 end if;
10565
10566 if Is_Access_Constant (A_Gen_T) then
10567 if not Is_Access_Constant (Act_T) then
10568 Error_Msg_N
10569 ("actual type must be access-to-constant type", Actual);
10570 Abandon_Instantiation (Actual);
10571 end if;
10572 else
10573 if Is_Access_Constant (Act_T) then
10574 Error_Msg_N
10575 ("actual type must be access-to-variable type", Actual);
10576 Abandon_Instantiation (Actual);
10577
10578 elsif Ekind (A_Gen_T) = E_General_Access_Type
10579 and then Ekind (Base_Type (Act_T)) /= E_General_Access_Type
10580 then
10581 Error_Msg_N -- CODEFIX
10582 ("actual must be general access type!", Actual);
10583 Error_Msg_NE -- CODEFIX
10584 ("add ALL to }!", Actual, Act_T);
10585 Abandon_Instantiation (Actual);
10586 end if;
10587 end if;
10588
10589 -- The designated subtypes, that is to say the subtypes introduced
10590 -- by an access type declaration (and not by a subtype declaration)
10591 -- must match.
10592
10593 Desig_Act := Designated_Type (Base_Type (Act_T));
10594
10595 -- The designated type may have been introduced through a limited_
10596 -- with clause, in which case retrieve the non-limited view. This
10597 -- applies to incomplete types as well as to class-wide types.
10598
10599 if From_With_Type (Desig_Act) then
10600 Desig_Act := Available_View (Desig_Act);
10601 end if;
10602
10603 if not Subtypes_Match
10604 (Desig_Type, Desig_Act) then
10605 Error_Msg_NE
10606 ("designated type of actual does not match that of formal &",
10607 Actual, Gen_T);
10608 Abandon_Instantiation (Actual);
10609
10610 elsif Is_Access_Type (Designated_Type (Act_T))
10611 and then Is_Constrained (Designated_Type (Designated_Type (Act_T)))
10612 /=
10613 Is_Constrained (Designated_Type (Desig_Type))
10614 then
10615 Error_Msg_NE
10616 ("designated type of actual does not match that of formal &",
10617 Actual, Gen_T);
10618 Abandon_Instantiation (Actual);
10619 end if;
10620
10621 -- Ada 2005: null-exclusion indicators of the two types must agree
10622
10623 if Can_Never_Be_Null (A_Gen_T) /= Can_Never_Be_Null (Act_T) then
10624 Error_Msg_NE
10625 ("non null exclusion of actual and formal & do not match",
10626 Actual, Gen_T);
10627 end if;
10628 end Validate_Access_Type_Instance;
10629
10630 ----------------------------------
10631 -- Validate_Array_Type_Instance --
10632 ----------------------------------
10633
10634 procedure Validate_Array_Type_Instance is
10635 I1 : Node_Id;
10636 I2 : Node_Id;
10637 T2 : Entity_Id;
10638
10639 function Formal_Dimensions return Int;
10640 -- Count number of dimensions in array type formal
10641
10642 -----------------------
10643 -- Formal_Dimensions --
10644 -----------------------
10645
10646 function Formal_Dimensions return Int is
10647 Num : Int := 0;
10648 Index : Node_Id;
10649
10650 begin
10651 if Nkind (Def) = N_Constrained_Array_Definition then
10652 Index := First (Discrete_Subtype_Definitions (Def));
10653 else
10654 Index := First (Subtype_Marks (Def));
10655 end if;
10656
10657 while Present (Index) loop
10658 Num := Num + 1;
10659 Next_Index (Index);
10660 end loop;
10661
10662 return Num;
10663 end Formal_Dimensions;
10664
10665 -- Start of processing for Validate_Array_Type_Instance
10666
10667 begin
10668 if not Is_Array_Type (Act_T) then
10669 Error_Msg_NE
10670 ("expect array type in instantiation of &", Actual, Gen_T);
10671 Abandon_Instantiation (Actual);
10672
10673 elsif Nkind (Def) = N_Constrained_Array_Definition then
10674 if not (Is_Constrained (Act_T)) then
10675 Error_Msg_NE
10676 ("expect constrained array in instantiation of &",
10677 Actual, Gen_T);
10678 Abandon_Instantiation (Actual);
10679 end if;
10680
10681 else
10682 if Is_Constrained (Act_T) then
10683 Error_Msg_NE
10684 ("expect unconstrained array in instantiation of &",
10685 Actual, Gen_T);
10686 Abandon_Instantiation (Actual);
10687 end if;
10688 end if;
10689
10690 if Formal_Dimensions /= Number_Dimensions (Act_T) then
10691 Error_Msg_NE
10692 ("dimensions of actual do not match formal &", Actual, Gen_T);
10693 Abandon_Instantiation (Actual);
10694 end if;
10695
10696 I1 := First_Index (A_Gen_T);
10697 I2 := First_Index (Act_T);
10698 for J in 1 .. Formal_Dimensions loop
10699
10700 -- If the indexes of the actual were given by a subtype_mark,
10701 -- the index was transformed into a range attribute. Retrieve
10702 -- the original type mark for checking.
10703
10704 if Is_Entity_Name (Original_Node (I2)) then
10705 T2 := Entity (Original_Node (I2));
10706 else
10707 T2 := Etype (I2);
10708 end if;
10709
10710 if not Subtypes_Match
10711 (Find_Actual_Type (Etype (I1), A_Gen_T), T2)
10712 then
10713 Error_Msg_NE
10714 ("index types of actual do not match those of formal &",
10715 Actual, Gen_T);
10716 Abandon_Instantiation (Actual);
10717 end if;
10718
10719 Next_Index (I1);
10720 Next_Index (I2);
10721 end loop;
10722
10723 -- Check matching subtypes. Note that there are complex visibility
10724 -- issues when the generic is a child unit and some aspect of the
10725 -- generic type is declared in a parent unit of the generic. We do
10726 -- the test to handle this special case only after a direct check
10727 -- for static matching has failed.
10728
10729 if Subtypes_Match
10730 (Component_Type (A_Gen_T), Component_Type (Act_T))
10731 or else Subtypes_Match
10732 (Find_Actual_Type (Component_Type (A_Gen_T), A_Gen_T),
10733 Component_Type (Act_T))
10734 then
10735 null;
10736 else
10737 Error_Msg_NE
10738 ("component subtype of actual does not match that of formal &",
10739 Actual, Gen_T);
10740 Abandon_Instantiation (Actual);
10741 end if;
10742
10743 if Has_Aliased_Components (A_Gen_T)
10744 and then not Has_Aliased_Components (Act_T)
10745 then
10746 Error_Msg_NE
10747 ("actual must have aliased components to match formal type &",
10748 Actual, Gen_T);
10749 end if;
10750 end Validate_Array_Type_Instance;
10751
10752 -----------------------------------------------
10753 -- Validate_Derived_Interface_Type_Instance --
10754 -----------------------------------------------
10755
10756 procedure Validate_Derived_Interface_Type_Instance is
10757 Par : constant Entity_Id := Entity (Subtype_Indication (Def));
10758 Elmt : Elmt_Id;
10759
10760 begin
10761 -- First apply interface instance checks
10762
10763 Validate_Interface_Type_Instance;
10764
10765 -- Verify that immediate parent interface is an ancestor of
10766 -- the actual.
10767
10768 if Present (Par)
10769 and then not Interface_Present_In_Ancestor (Act_T, Par)
10770 then
10771 Error_Msg_NE
10772 ("interface actual must include progenitor&", Actual, Par);
10773 end if;
10774
10775 -- Now verify that the actual includes all other ancestors of
10776 -- the formal.
10777
10778 Elmt := First_Elmt (Interfaces (A_Gen_T));
10779 while Present (Elmt) loop
10780 if not Interface_Present_In_Ancestor
10781 (Act_T, Get_Instance_Of (Node (Elmt)))
10782 then
10783 Error_Msg_NE
10784 ("interface actual must include progenitor&",
10785 Actual, Node (Elmt));
10786 end if;
10787
10788 Next_Elmt (Elmt);
10789 end loop;
10790 end Validate_Derived_Interface_Type_Instance;
10791
10792 ------------------------------------
10793 -- Validate_Derived_Type_Instance --
10794 ------------------------------------
10795
10796 procedure Validate_Derived_Type_Instance is
10797 Actual_Discr : Entity_Id;
10798 Ancestor_Discr : Entity_Id;
10799
10800 begin
10801 -- If the parent type in the generic declaration is itself a previous
10802 -- formal type, then it is local to the generic and absent from the
10803 -- analyzed generic definition. In that case the ancestor is the
10804 -- instance of the formal (which must have been instantiated
10805 -- previously), unless the ancestor is itself a formal derived type.
10806 -- In this latter case (which is the subject of Corrigendum 8652/0038
10807 -- (AI-202) the ancestor of the formals is the ancestor of its
10808 -- parent. Otherwise, the analyzed generic carries the parent type.
10809 -- If the parent type is defined in a previous formal package, then
10810 -- the scope of that formal package is that of the generic type
10811 -- itself, and it has already been mapped into the corresponding type
10812 -- in the actual package.
10813
10814 -- Common case: parent type defined outside of the generic
10815
10816 if Is_Entity_Name (Subtype_Mark (Def))
10817 and then Present (Entity (Subtype_Mark (Def)))
10818 then
10819 Ancestor := Get_Instance_Of (Entity (Subtype_Mark (Def)));
10820
10821 -- Check whether parent is defined in a previous formal package
10822
10823 elsif
10824 Scope (Scope (Base_Type (Etype (A_Gen_T)))) = Scope (A_Gen_T)
10825 then
10826 Ancestor :=
10827 Get_Instance_Of (Base_Type (Etype (A_Gen_T)));
10828
10829 -- The type may be a local derivation, or a type extension of a
10830 -- previous formal, or of a formal of a parent package.
10831
10832 elsif Is_Derived_Type (Get_Instance_Of (A_Gen_T))
10833 or else
10834 Ekind (Get_Instance_Of (A_Gen_T)) = E_Record_Type_With_Private
10835 then
10836 -- Check whether the parent is another derived formal type in the
10837 -- same generic unit.
10838
10839 if Etype (A_Gen_T) /= A_Gen_T
10840 and then Is_Generic_Type (Etype (A_Gen_T))
10841 and then Scope (Etype (A_Gen_T)) = Scope (A_Gen_T)
10842 and then Etype (Etype (A_Gen_T)) /= Etype (A_Gen_T)
10843 then
10844 -- Locate ancestor of parent from the subtype declaration
10845 -- created for the actual.
10846
10847 declare
10848 Decl : Node_Id;
10849
10850 begin
10851 Decl := First (Actual_Decls);
10852 while Present (Decl) loop
10853 if Nkind (Decl) = N_Subtype_Declaration
10854 and then Chars (Defining_Identifier (Decl)) =
10855 Chars (Etype (A_Gen_T))
10856 then
10857 Ancestor := Generic_Parent_Type (Decl);
10858 exit;
10859 else
10860 Next (Decl);
10861 end if;
10862 end loop;
10863 end;
10864
10865 pragma Assert (Present (Ancestor));
10866
10867 else
10868 Ancestor :=
10869 Get_Instance_Of (Base_Type (Get_Instance_Of (A_Gen_T)));
10870 end if;
10871
10872 else
10873 Ancestor := Get_Instance_Of (Etype (Base_Type (A_Gen_T)));
10874 end if;
10875
10876 -- If the formal derived type has pragma Preelaborable_Initialization
10877 -- then the actual type must have preelaborable initialization.
10878
10879 if Known_To_Have_Preelab_Init (A_Gen_T)
10880 and then not Has_Preelaborable_Initialization (Act_T)
10881 then
10882 Error_Msg_NE
10883 ("actual for & must have preelaborable initialization",
10884 Actual, Gen_T);
10885 end if;
10886
10887 -- Ada 2005 (AI-251)
10888
10889 if Ada_Version >= Ada_2005
10890 and then Is_Interface (Ancestor)
10891 then
10892 if not Interface_Present_In_Ancestor (Act_T, Ancestor) then
10893 Error_Msg_NE
10894 ("(Ada 2005) expected type implementing & in instantiation",
10895 Actual, Ancestor);
10896 end if;
10897
10898 elsif not Is_Ancestor (Base_Type (Ancestor), Act_T) then
10899 Error_Msg_NE
10900 ("expect type derived from & in instantiation",
10901 Actual, First_Subtype (Ancestor));
10902 Abandon_Instantiation (Actual);
10903 end if;
10904
10905 -- Ada 2005 (AI-443): Synchronized formal derived type checks. Note
10906 -- that the formal type declaration has been rewritten as a private
10907 -- extension.
10908
10909 if Ada_Version >= Ada_2005
10910 and then Nkind (Parent (A_Gen_T)) = N_Private_Extension_Declaration
10911 and then Synchronized_Present (Parent (A_Gen_T))
10912 then
10913 -- The actual must be a synchronized tagged type
10914
10915 if not Is_Tagged_Type (Act_T) then
10916 Error_Msg_N
10917 ("actual of synchronized type must be tagged", Actual);
10918 Abandon_Instantiation (Actual);
10919
10920 elsif Nkind (Parent (Act_T)) = N_Full_Type_Declaration
10921 and then Nkind (Type_Definition (Parent (Act_T))) =
10922 N_Derived_Type_Definition
10923 and then not Synchronized_Present (Type_Definition
10924 (Parent (Act_T)))
10925 then
10926 Error_Msg_N
10927 ("actual of synchronized type must be synchronized", Actual);
10928 Abandon_Instantiation (Actual);
10929 end if;
10930 end if;
10931
10932 -- Perform atomic/volatile checks (RM C.6(12)). Note that AI05-0218-1
10933 -- removes the second instance of the phrase "or allow pass by copy".
10934
10935 if Is_Atomic (Act_T) and then not Is_Atomic (Ancestor) then
10936 Error_Msg_N
10937 ("cannot have atomic actual type for non-atomic formal type",
10938 Actual);
10939
10940 elsif Is_Volatile (Act_T) and then not Is_Volatile (Ancestor) then
10941 Error_Msg_N
10942 ("cannot have volatile actual type for non-volatile formal type",
10943 Actual);
10944 end if;
10945
10946 -- It should not be necessary to check for unknown discriminants on
10947 -- Formal, but for some reason Has_Unknown_Discriminants is false for
10948 -- A_Gen_T, so Is_Indefinite_Subtype incorrectly returns False. This
10949 -- needs fixing. ???
10950
10951 if not Is_Indefinite_Subtype (A_Gen_T)
10952 and then not Unknown_Discriminants_Present (Formal)
10953 and then Is_Indefinite_Subtype (Act_T)
10954 then
10955 Error_Msg_N
10956 ("actual subtype must be constrained", Actual);
10957 Abandon_Instantiation (Actual);
10958 end if;
10959
10960 if not Unknown_Discriminants_Present (Formal) then
10961 if Is_Constrained (Ancestor) then
10962 if not Is_Constrained (Act_T) then
10963 Error_Msg_N
10964 ("actual subtype must be constrained", Actual);
10965 Abandon_Instantiation (Actual);
10966 end if;
10967
10968 -- Ancestor is unconstrained, Check if generic formal and actual
10969 -- agree on constrainedness. The check only applies to array types
10970 -- and discriminated types.
10971
10972 elsif Is_Constrained (Act_T) then
10973 if Ekind (Ancestor) = E_Access_Type
10974 or else
10975 (not Is_Constrained (A_Gen_T)
10976 and then Is_Composite_Type (A_Gen_T))
10977 then
10978 Error_Msg_N
10979 ("actual subtype must be unconstrained", Actual);
10980 Abandon_Instantiation (Actual);
10981 end if;
10982
10983 -- A class-wide type is only allowed if the formal has unknown
10984 -- discriminants.
10985
10986 elsif Is_Class_Wide_Type (Act_T)
10987 and then not Has_Unknown_Discriminants (Ancestor)
10988 then
10989 Error_Msg_NE
10990 ("actual for & cannot be a class-wide type", Actual, Gen_T);
10991 Abandon_Instantiation (Actual);
10992
10993 -- Otherwise, the formal and actual shall have the same number
10994 -- of discriminants and each discriminant of the actual must
10995 -- correspond to a discriminant of the formal.
10996
10997 elsif Has_Discriminants (Act_T)
10998 and then not Has_Unknown_Discriminants (Act_T)
10999 and then Has_Discriminants (Ancestor)
11000 then
11001 Actual_Discr := First_Discriminant (Act_T);
11002 Ancestor_Discr := First_Discriminant (Ancestor);
11003 while Present (Actual_Discr)
11004 and then Present (Ancestor_Discr)
11005 loop
11006 if Base_Type (Act_T) /= Base_Type (Ancestor) and then
11007 No (Corresponding_Discriminant (Actual_Discr))
11008 then
11009 Error_Msg_NE
11010 ("discriminant & does not correspond " &
11011 "to ancestor discriminant", Actual, Actual_Discr);
11012 Abandon_Instantiation (Actual);
11013 end if;
11014
11015 Next_Discriminant (Actual_Discr);
11016 Next_Discriminant (Ancestor_Discr);
11017 end loop;
11018
11019 if Present (Actual_Discr) or else Present (Ancestor_Discr) then
11020 Error_Msg_NE
11021 ("actual for & must have same number of discriminants",
11022 Actual, Gen_T);
11023 Abandon_Instantiation (Actual);
11024 end if;
11025
11026 -- This case should be caught by the earlier check for
11027 -- constrainedness, but the check here is added for completeness.
11028
11029 elsif Has_Discriminants (Act_T)
11030 and then not Has_Unknown_Discriminants (Act_T)
11031 then
11032 Error_Msg_NE
11033 ("actual for & must not have discriminants", Actual, Gen_T);
11034 Abandon_Instantiation (Actual);
11035
11036 elsif Has_Discriminants (Ancestor) then
11037 Error_Msg_NE
11038 ("actual for & must have known discriminants", Actual, Gen_T);
11039 Abandon_Instantiation (Actual);
11040 end if;
11041
11042 if not Subtypes_Statically_Compatible (Act_T, Ancestor) then
11043 Error_Msg_N
11044 ("constraint on actual is incompatible with formal", Actual);
11045 Abandon_Instantiation (Actual);
11046 end if;
11047 end if;
11048
11049 -- If the formal and actual types are abstract, check that there
11050 -- are no abstract primitives of the actual type that correspond to
11051 -- nonabstract primitives of the formal type (second sentence of
11052 -- RM95-3.9.3(9)).
11053
11054 if Is_Abstract_Type (A_Gen_T) and then Is_Abstract_Type (Act_T) then
11055 Check_Abstract_Primitives : declare
11056 Gen_Prims : constant Elist_Id :=
11057 Primitive_Operations (A_Gen_T);
11058 Gen_Elmt : Elmt_Id;
11059 Gen_Subp : Entity_Id;
11060 Anc_Subp : Entity_Id;
11061 Anc_Formal : Entity_Id;
11062 Anc_F_Type : Entity_Id;
11063
11064 Act_Prims : constant Elist_Id := Primitive_Operations (Act_T);
11065 Act_Elmt : Elmt_Id;
11066 Act_Subp : Entity_Id;
11067 Act_Formal : Entity_Id;
11068 Act_F_Type : Entity_Id;
11069
11070 Subprograms_Correspond : Boolean;
11071
11072 function Is_Tagged_Ancestor (T1, T2 : Entity_Id) return Boolean;
11073 -- Returns true if T2 is derived directly or indirectly from
11074 -- T1, including derivations from interfaces. T1 and T2 are
11075 -- required to be specific tagged base types.
11076
11077 ------------------------
11078 -- Is_Tagged_Ancestor --
11079 ------------------------
11080
11081 function Is_Tagged_Ancestor (T1, T2 : Entity_Id) return Boolean
11082 is
11083 Intfc_Elmt : Elmt_Id;
11084
11085 begin
11086 -- The predicate is satisfied if the types are the same
11087
11088 if T1 = T2 then
11089 return True;
11090
11091 -- If we've reached the top of the derivation chain then
11092 -- we know that T1 is not an ancestor of T2.
11093
11094 elsif Etype (T2) = T2 then
11095 return False;
11096
11097 -- Proceed to check T2's immediate parent
11098
11099 elsif Is_Ancestor (T1, Base_Type (Etype (T2))) then
11100 return True;
11101
11102 -- Finally, check to see if T1 is an ancestor of any of T2's
11103 -- progenitors.
11104
11105 else
11106 Intfc_Elmt := First_Elmt (Interfaces (T2));
11107 while Present (Intfc_Elmt) loop
11108 if Is_Ancestor (T1, Node (Intfc_Elmt)) then
11109 return True;
11110 end if;
11111
11112 Next_Elmt (Intfc_Elmt);
11113 end loop;
11114 end if;
11115
11116 return False;
11117 end Is_Tagged_Ancestor;
11118
11119 -- Start of processing for Check_Abstract_Primitives
11120
11121 begin
11122 -- Loop over all of the formal derived type's primitives
11123
11124 Gen_Elmt := First_Elmt (Gen_Prims);
11125 while Present (Gen_Elmt) loop
11126 Gen_Subp := Node (Gen_Elmt);
11127
11128 -- If the primitive of the formal is not abstract, then
11129 -- determine whether there is a corresponding primitive of
11130 -- the actual type that's abstract.
11131
11132 if not Is_Abstract_Subprogram (Gen_Subp) then
11133 Act_Elmt := First_Elmt (Act_Prims);
11134 while Present (Act_Elmt) loop
11135 Act_Subp := Node (Act_Elmt);
11136
11137 -- If we find an abstract primitive of the actual,
11138 -- then we need to test whether it corresponds to the
11139 -- subprogram from which the generic formal primitive
11140 -- is inherited.
11141
11142 if Is_Abstract_Subprogram (Act_Subp) then
11143 Anc_Subp := Alias (Gen_Subp);
11144
11145 -- Test whether we have a corresponding primitive
11146 -- by comparing names, kinds, formal types, and
11147 -- result types.
11148
11149 if Chars (Anc_Subp) = Chars (Act_Subp)
11150 and then Ekind (Anc_Subp) = Ekind (Act_Subp)
11151 then
11152 Anc_Formal := First_Formal (Anc_Subp);
11153 Act_Formal := First_Formal (Act_Subp);
11154 while Present (Anc_Formal)
11155 and then Present (Act_Formal)
11156 loop
11157 Anc_F_Type := Etype (Anc_Formal);
11158 Act_F_Type := Etype (Act_Formal);
11159
11160 if Ekind (Anc_F_Type)
11161 = E_Anonymous_Access_Type
11162 then
11163 Anc_F_Type := Designated_Type (Anc_F_Type);
11164
11165 if Ekind (Act_F_Type)
11166 = E_Anonymous_Access_Type
11167 then
11168 Act_F_Type :=
11169 Designated_Type (Act_F_Type);
11170 else
11171 exit;
11172 end if;
11173
11174 elsif
11175 Ekind (Act_F_Type) = E_Anonymous_Access_Type
11176 then
11177 exit;
11178 end if;
11179
11180 Anc_F_Type := Base_Type (Anc_F_Type);
11181 Act_F_Type := Base_Type (Act_F_Type);
11182
11183 -- If the formal is controlling, then the
11184 -- the type of the actual primitive's formal
11185 -- must be derived directly or indirectly
11186 -- from the type of the ancestor primitive's
11187 -- formal.
11188
11189 if Is_Controlling_Formal (Anc_Formal) then
11190 if not Is_Tagged_Ancestor
11191 (Anc_F_Type, Act_F_Type)
11192 then
11193 exit;
11194 end if;
11195
11196 -- Otherwise the types of the formals must
11197 -- be the same.
11198
11199 elsif Anc_F_Type /= Act_F_Type then
11200 exit;
11201 end if;
11202
11203 Next_Entity (Anc_Formal);
11204 Next_Entity (Act_Formal);
11205 end loop;
11206
11207 -- If we traversed through all of the formals
11208 -- then so far the subprograms correspond, so
11209 -- now check that any result types correspond.
11210
11211 if No (Anc_Formal) and then No (Act_Formal) then
11212 Subprograms_Correspond := True;
11213
11214 if Ekind (Act_Subp) = E_Function then
11215 Anc_F_Type := Etype (Anc_Subp);
11216 Act_F_Type := Etype (Act_Subp);
11217
11218 if Ekind (Anc_F_Type)
11219 = E_Anonymous_Access_Type
11220 then
11221 Anc_F_Type :=
11222 Designated_Type (Anc_F_Type);
11223
11224 if Ekind (Act_F_Type)
11225 = E_Anonymous_Access_Type
11226 then
11227 Act_F_Type :=
11228 Designated_Type (Act_F_Type);
11229 else
11230 Subprograms_Correspond := False;
11231 end if;
11232
11233 elsif
11234 Ekind (Act_F_Type)
11235 = E_Anonymous_Access_Type
11236 then
11237 Subprograms_Correspond := False;
11238 end if;
11239
11240 Anc_F_Type := Base_Type (Anc_F_Type);
11241 Act_F_Type := Base_Type (Act_F_Type);
11242
11243 -- Now either the result types must be
11244 -- the same or, if the result type is
11245 -- controlling, the result type of the
11246 -- actual primitive must descend from the
11247 -- result type of the ancestor primitive.
11248
11249 if Subprograms_Correspond
11250 and then Anc_F_Type /= Act_F_Type
11251 and then
11252 Has_Controlling_Result (Anc_Subp)
11253 and then
11254 not Is_Tagged_Ancestor
11255 (Anc_F_Type, Act_F_Type)
11256 then
11257 Subprograms_Correspond := False;
11258 end if;
11259 end if;
11260
11261 -- Found a matching subprogram belonging to
11262 -- formal ancestor type, so actual subprogram
11263 -- corresponds and this violates 3.9.3(9).
11264
11265 if Subprograms_Correspond then
11266 Error_Msg_NE
11267 ("abstract subprogram & overrides " &
11268 "nonabstract subprogram of ancestor",
11269 Actual,
11270 Act_Subp);
11271 end if;
11272 end if;
11273 end if;
11274 end if;
11275
11276 Next_Elmt (Act_Elmt);
11277 end loop;
11278 end if;
11279
11280 Next_Elmt (Gen_Elmt);
11281 end loop;
11282 end Check_Abstract_Primitives;
11283 end if;
11284
11285 -- Verify that limitedness matches. If parent is a limited
11286 -- interface then the generic formal is not unless declared
11287 -- explicitly so. If not declared limited, the actual cannot be
11288 -- limited (see AI05-0087).
11289
11290 -- Even though this AI is a binding interpretation, we enable the
11291 -- check only in Ada 2012 mode, because this improper construct
11292 -- shows up in user code and in existing B-tests.
11293
11294 if Is_Limited_Type (Act_T)
11295 and then not Is_Limited_Type (A_Gen_T)
11296 and then Ada_Version >= Ada_2012
11297 then
11298 if In_Instance then
11299 null;
11300 else
11301 Error_Msg_NE
11302 ("actual for non-limited & cannot be a limited type", Actual,
11303 Gen_T);
11304 Explain_Limited_Type (Act_T, Actual);
11305 Abandon_Instantiation (Actual);
11306 end if;
11307 end if;
11308 end Validate_Derived_Type_Instance;
11309
11310 ----------------------------------------
11311 -- Validate_Discriminated_Formal_Type --
11312 ----------------------------------------
11313
11314 procedure Validate_Discriminated_Formal_Type is
11315 Formal_Discr : Entity_Id;
11316 Actual_Discr : Entity_Id;
11317 Formal_Subt : Entity_Id;
11318
11319 begin
11320 if Has_Discriminants (A_Gen_T) then
11321 if not Has_Discriminants (Act_T) then
11322 Error_Msg_NE
11323 ("actual for & must have discriminants", Actual, Gen_T);
11324 Abandon_Instantiation (Actual);
11325
11326 elsif Is_Constrained (Act_T) then
11327 Error_Msg_NE
11328 ("actual for & must be unconstrained", Actual, Gen_T);
11329 Abandon_Instantiation (Actual);
11330
11331 else
11332 Formal_Discr := First_Discriminant (A_Gen_T);
11333 Actual_Discr := First_Discriminant (Act_T);
11334 while Formal_Discr /= Empty loop
11335 if Actual_Discr = Empty then
11336 Error_Msg_NE
11337 ("discriminants on actual do not match formal",
11338 Actual, Gen_T);
11339 Abandon_Instantiation (Actual);
11340 end if;
11341
11342 Formal_Subt := Get_Instance_Of (Etype (Formal_Discr));
11343
11344 -- Access discriminants match if designated types do
11345
11346 if Ekind (Base_Type (Formal_Subt)) = E_Anonymous_Access_Type
11347 and then (Ekind (Base_Type (Etype (Actual_Discr)))) =
11348 E_Anonymous_Access_Type
11349 and then
11350 Get_Instance_Of
11351 (Designated_Type (Base_Type (Formal_Subt))) =
11352 Designated_Type (Base_Type (Etype (Actual_Discr)))
11353 then
11354 null;
11355
11356 elsif Base_Type (Formal_Subt) /=
11357 Base_Type (Etype (Actual_Discr))
11358 then
11359 Error_Msg_NE
11360 ("types of actual discriminants must match formal",
11361 Actual, Gen_T);
11362 Abandon_Instantiation (Actual);
11363
11364 elsif not Subtypes_Statically_Match
11365 (Formal_Subt, Etype (Actual_Discr))
11366 and then Ada_Version >= Ada_95
11367 then
11368 Error_Msg_NE
11369 ("subtypes of actual discriminants must match formal",
11370 Actual, Gen_T);
11371 Abandon_Instantiation (Actual);
11372 end if;
11373
11374 Next_Discriminant (Formal_Discr);
11375 Next_Discriminant (Actual_Discr);
11376 end loop;
11377
11378 if Actual_Discr /= Empty then
11379 Error_Msg_NE
11380 ("discriminants on actual do not match formal",
11381 Actual, Gen_T);
11382 Abandon_Instantiation (Actual);
11383 end if;
11384 end if;
11385 end if;
11386 end Validate_Discriminated_Formal_Type;
11387
11388 ---------------------------------------
11389 -- Validate_Incomplete_Type_Instance --
11390 ---------------------------------------
11391
11392 procedure Validate_Incomplete_Type_Instance is
11393 begin
11394 if not Is_Tagged_Type (Act_T)
11395 and then Is_Tagged_Type (A_Gen_T)
11396 then
11397 Error_Msg_NE
11398 ("actual for & must be a tagged type", Actual, Gen_T);
11399 end if;
11400
11401 Validate_Discriminated_Formal_Type;
11402 end Validate_Incomplete_Type_Instance;
11403
11404 --------------------------------------
11405 -- Validate_Interface_Type_Instance --
11406 --------------------------------------
11407
11408 procedure Validate_Interface_Type_Instance is
11409 begin
11410 if not Is_Interface (Act_T) then
11411 Error_Msg_NE
11412 ("actual for formal interface type must be an interface",
11413 Actual, Gen_T);
11414
11415 elsif Is_Limited_Type (Act_T) /= Is_Limited_Type (A_Gen_T)
11416 or else
11417 Is_Task_Interface (A_Gen_T) /= Is_Task_Interface (Act_T)
11418 or else
11419 Is_Protected_Interface (A_Gen_T) /=
11420 Is_Protected_Interface (Act_T)
11421 or else
11422 Is_Synchronized_Interface (A_Gen_T) /=
11423 Is_Synchronized_Interface (Act_T)
11424 then
11425 Error_Msg_NE
11426 ("actual for interface& does not match (RM 12.5.5(4))",
11427 Actual, Gen_T);
11428 end if;
11429 end Validate_Interface_Type_Instance;
11430
11431 ------------------------------------
11432 -- Validate_Private_Type_Instance --
11433 ------------------------------------
11434
11435 procedure Validate_Private_Type_Instance is
11436 begin
11437 if Is_Limited_Type (Act_T)
11438 and then not Is_Limited_Type (A_Gen_T)
11439 then
11440 if In_Instance then
11441 null;
11442 else
11443 Error_Msg_NE
11444 ("actual for non-limited & cannot be a limited type", Actual,
11445 Gen_T);
11446 Explain_Limited_Type (Act_T, Actual);
11447 Abandon_Instantiation (Actual);
11448 end if;
11449
11450 elsif Known_To_Have_Preelab_Init (A_Gen_T)
11451 and then not Has_Preelaborable_Initialization (Act_T)
11452 then
11453 Error_Msg_NE
11454 ("actual for & must have preelaborable initialization", Actual,
11455 Gen_T);
11456
11457 elsif Is_Indefinite_Subtype (Act_T)
11458 and then not Is_Indefinite_Subtype (A_Gen_T)
11459 and then Ada_Version >= Ada_95
11460 then
11461 Error_Msg_NE
11462 ("actual for & must be a definite subtype", Actual, Gen_T);
11463
11464 elsif not Is_Tagged_Type (Act_T)
11465 and then Is_Tagged_Type (A_Gen_T)
11466 then
11467 Error_Msg_NE
11468 ("actual for & must be a tagged type", Actual, Gen_T);
11469 end if;
11470
11471 Validate_Discriminated_Formal_Type;
11472 Ancestor := Gen_T;
11473 end Validate_Private_Type_Instance;
11474
11475 -- Start of processing for Instantiate_Type
11476
11477 begin
11478 if Get_Instance_Of (A_Gen_T) /= A_Gen_T then
11479 Error_Msg_N ("duplicate instantiation of generic type", Actual);
11480 return New_List (Error);
11481
11482 elsif not Is_Entity_Name (Actual)
11483 or else not Is_Type (Entity (Actual))
11484 then
11485 Error_Msg_NE
11486 ("expect valid subtype mark to instantiate &", Actual, Gen_T);
11487 Abandon_Instantiation (Actual);
11488
11489 else
11490 Act_T := Entity (Actual);
11491
11492 -- Ada 2005 (AI-216): An Unchecked_Union subtype shall only be passed
11493 -- as a generic actual parameter if the corresponding formal type
11494 -- does not have a known_discriminant_part, or is a formal derived
11495 -- type that is an Unchecked_Union type.
11496
11497 if Is_Unchecked_Union (Base_Type (Act_T)) then
11498 if not Has_Discriminants (A_Gen_T)
11499 or else
11500 (Is_Derived_Type (A_Gen_T)
11501 and then
11502 Is_Unchecked_Union (A_Gen_T))
11503 then
11504 null;
11505 else
11506 Error_Msg_N ("unchecked union cannot be the actual for a" &
11507 " discriminated formal type", Act_T);
11508
11509 end if;
11510 end if;
11511
11512 -- Deal with fixed/floating restrictions
11513
11514 if Is_Floating_Point_Type (Act_T) then
11515 Check_Restriction (No_Floating_Point, Actual);
11516 elsif Is_Fixed_Point_Type (Act_T) then
11517 Check_Restriction (No_Fixed_Point, Actual);
11518 end if;
11519
11520 -- Deal with error of using incomplete type as generic actual.
11521 -- This includes limited views of a type, even if the non-limited
11522 -- view may be available.
11523
11524 if Ekind (Act_T) = E_Incomplete_Type
11525 or else (Is_Class_Wide_Type (Act_T)
11526 and then
11527 Ekind (Root_Type (Act_T)) = E_Incomplete_Type)
11528 then
11529 -- If the formal is an incomplete type, the actual can be
11530 -- incomplete as well.
11531
11532 if Ekind (A_Gen_T) = E_Incomplete_Type then
11533 null;
11534
11535 elsif Is_Class_Wide_Type (Act_T)
11536 or else No (Full_View (Act_T))
11537 then
11538 Error_Msg_N ("premature use of incomplete type", Actual);
11539 Abandon_Instantiation (Actual);
11540 else
11541 Act_T := Full_View (Act_T);
11542 Set_Entity (Actual, Act_T);
11543
11544 if Has_Private_Component (Act_T) then
11545 Error_Msg_N
11546 ("premature use of type with private component", Actual);
11547 end if;
11548 end if;
11549
11550 -- Deal with error of premature use of private type as generic actual
11551
11552 elsif Is_Private_Type (Act_T)
11553 and then Is_Private_Type (Base_Type (Act_T))
11554 and then not Is_Generic_Type (Act_T)
11555 and then not Is_Derived_Type (Act_T)
11556 and then No (Full_View (Root_Type (Act_T)))
11557 then
11558 -- If the formal is an incomplete type, the actual can be
11559 -- private or incomplete as well.
11560
11561 if Ekind (A_Gen_T) = E_Incomplete_Type then
11562 null;
11563 else
11564 Error_Msg_N ("premature use of private type", Actual);
11565 end if;
11566
11567 elsif Has_Private_Component (Act_T) then
11568 Error_Msg_N
11569 ("premature use of type with private component", Actual);
11570 end if;
11571
11572 Set_Instance_Of (A_Gen_T, Act_T);
11573
11574 -- If the type is generic, the class-wide type may also be used
11575
11576 if Is_Tagged_Type (A_Gen_T)
11577 and then Is_Tagged_Type (Act_T)
11578 and then not Is_Class_Wide_Type (A_Gen_T)
11579 then
11580 Set_Instance_Of (Class_Wide_Type (A_Gen_T),
11581 Class_Wide_Type (Act_T));
11582 end if;
11583
11584 if not Is_Abstract_Type (A_Gen_T)
11585 and then Is_Abstract_Type (Act_T)
11586 then
11587 Error_Msg_N
11588 ("actual of non-abstract formal cannot be abstract", Actual);
11589 end if;
11590
11591 -- A generic scalar type is a first subtype for which we generate
11592 -- an anonymous base type. Indicate that the instance of this base
11593 -- is the base type of the actual.
11594
11595 if Is_Scalar_Type (A_Gen_T) then
11596 Set_Instance_Of (Etype (A_Gen_T), Etype (Act_T));
11597 end if;
11598 end if;
11599
11600 if Error_Posted (Act_T) then
11601 null;
11602 else
11603 case Nkind (Def) is
11604 when N_Formal_Private_Type_Definition =>
11605 Validate_Private_Type_Instance;
11606
11607 when N_Formal_Incomplete_Type_Definition =>
11608 Validate_Incomplete_Type_Instance;
11609
11610 when N_Formal_Derived_Type_Definition =>
11611 Validate_Derived_Type_Instance;
11612
11613 when N_Formal_Discrete_Type_Definition =>
11614 if not Is_Discrete_Type (Act_T) then
11615 Error_Msg_NE
11616 ("expect discrete type in instantiation of&",
11617 Actual, Gen_T);
11618 Abandon_Instantiation (Actual);
11619 end if;
11620
11621 when N_Formal_Signed_Integer_Type_Definition =>
11622 if not Is_Signed_Integer_Type (Act_T) then
11623 Error_Msg_NE
11624 ("expect signed integer type in instantiation of&",
11625 Actual, Gen_T);
11626 Abandon_Instantiation (Actual);
11627 end if;
11628
11629 when N_Formal_Modular_Type_Definition =>
11630 if not Is_Modular_Integer_Type (Act_T) then
11631 Error_Msg_NE
11632 ("expect modular type in instantiation of &",
11633 Actual, Gen_T);
11634 Abandon_Instantiation (Actual);
11635 end if;
11636
11637 when N_Formal_Floating_Point_Definition =>
11638 if not Is_Floating_Point_Type (Act_T) then
11639 Error_Msg_NE
11640 ("expect float type in instantiation of &", Actual, Gen_T);
11641 Abandon_Instantiation (Actual);
11642 end if;
11643
11644 when N_Formal_Ordinary_Fixed_Point_Definition =>
11645 if not Is_Ordinary_Fixed_Point_Type (Act_T) then
11646 Error_Msg_NE
11647 ("expect ordinary fixed point type in instantiation of &",
11648 Actual, Gen_T);
11649 Abandon_Instantiation (Actual);
11650 end if;
11651
11652 when N_Formal_Decimal_Fixed_Point_Definition =>
11653 if not Is_Decimal_Fixed_Point_Type (Act_T) then
11654 Error_Msg_NE
11655 ("expect decimal type in instantiation of &",
11656 Actual, Gen_T);
11657 Abandon_Instantiation (Actual);
11658 end if;
11659
11660 when N_Array_Type_Definition =>
11661 Validate_Array_Type_Instance;
11662
11663 when N_Access_To_Object_Definition =>
11664 Validate_Access_Type_Instance;
11665
11666 when N_Access_Function_Definition |
11667 N_Access_Procedure_Definition =>
11668 Validate_Access_Subprogram_Instance;
11669
11670 when N_Record_Definition =>
11671 Validate_Interface_Type_Instance;
11672
11673 when N_Derived_Type_Definition =>
11674 Validate_Derived_Interface_Type_Instance;
11675
11676 when others =>
11677 raise Program_Error;
11678
11679 end case;
11680 end if;
11681
11682 Subt := New_Copy (Gen_T);
11683
11684 -- Use adjusted sloc of subtype name as the location for other nodes in
11685 -- the subtype declaration.
11686
11687 Loc := Sloc (Subt);
11688
11689 Decl_Node :=
11690 Make_Subtype_Declaration (Loc,
11691 Defining_Identifier => Subt,
11692 Subtype_Indication => New_Reference_To (Act_T, Loc));
11693
11694 if Is_Private_Type (Act_T) then
11695 Set_Has_Private_View (Subtype_Indication (Decl_Node));
11696
11697 elsif Is_Access_Type (Act_T)
11698 and then Is_Private_Type (Designated_Type (Act_T))
11699 then
11700 Set_Has_Private_View (Subtype_Indication (Decl_Node));
11701 end if;
11702
11703 Decl_Nodes := New_List (Decl_Node);
11704
11705 -- Flag actual derived types so their elaboration produces the
11706 -- appropriate renamings for the primitive operations of the ancestor.
11707 -- Flag actual for formal private types as well, to determine whether
11708 -- operations in the private part may override inherited operations.
11709 -- If the formal has an interface list, the ancestor is not the
11710 -- parent, but the analyzed formal that includes the interface
11711 -- operations of all its progenitors.
11712
11713 -- Same treatment for formal private types, so we can check whether the
11714 -- type is tagged limited when validating derivations in the private
11715 -- part. (See AI05-096).
11716
11717 if Nkind (Def) = N_Formal_Derived_Type_Definition then
11718 if Present (Interface_List (Def)) then
11719 Set_Generic_Parent_Type (Decl_Node, A_Gen_T);
11720 else
11721 Set_Generic_Parent_Type (Decl_Node, Ancestor);
11722 end if;
11723
11724 elsif Nkind_In (Def,
11725 N_Formal_Private_Type_Definition,
11726 N_Formal_Incomplete_Type_Definition)
11727 then
11728 Set_Generic_Parent_Type (Decl_Node, A_Gen_T);
11729 end if;
11730
11731 -- If the actual is a synchronized type that implements an interface,
11732 -- the primitive operations are attached to the corresponding record,
11733 -- and we have to treat it as an additional generic actual, so that its
11734 -- primitive operations become visible in the instance. The task or
11735 -- protected type itself does not carry primitive operations.
11736
11737 if Is_Concurrent_Type (Act_T)
11738 and then Is_Tagged_Type (Act_T)
11739 and then Present (Corresponding_Record_Type (Act_T))
11740 and then Present (Ancestor)
11741 and then Is_Interface (Ancestor)
11742 then
11743 declare
11744 Corr_Rec : constant Entity_Id :=
11745 Corresponding_Record_Type (Act_T);
11746 New_Corr : Entity_Id;
11747 Corr_Decl : Node_Id;
11748
11749 begin
11750 New_Corr := Make_Temporary (Loc, 'S');
11751 Corr_Decl :=
11752 Make_Subtype_Declaration (Loc,
11753 Defining_Identifier => New_Corr,
11754 Subtype_Indication =>
11755 New_Reference_To (Corr_Rec, Loc));
11756 Append_To (Decl_Nodes, Corr_Decl);
11757
11758 if Ekind (Act_T) = E_Task_Type then
11759 Set_Ekind (Subt, E_Task_Subtype);
11760 else
11761 Set_Ekind (Subt, E_Protected_Subtype);
11762 end if;
11763
11764 Set_Corresponding_Record_Type (Subt, Corr_Rec);
11765 Set_Generic_Parent_Type (Corr_Decl, Ancestor);
11766 Set_Generic_Parent_Type (Decl_Node, Empty);
11767 end;
11768 end if;
11769
11770 return Decl_Nodes;
11771 end Instantiate_Type;
11772
11773 ---------------------
11774 -- Is_In_Main_Unit --
11775 ---------------------
11776
11777 function Is_In_Main_Unit (N : Node_Id) return Boolean is
11778 Unum : constant Unit_Number_Type := Get_Source_Unit (N);
11779 Current_Unit : Node_Id;
11780
11781 begin
11782 if Unum = Main_Unit then
11783 return True;
11784
11785 -- If the current unit is a subunit then it is either the main unit or
11786 -- is being compiled as part of the main unit.
11787
11788 elsif Nkind (N) = N_Compilation_Unit then
11789 return Nkind (Unit (N)) = N_Subunit;
11790 end if;
11791
11792 Current_Unit := Parent (N);
11793 while Present (Current_Unit)
11794 and then Nkind (Current_Unit) /= N_Compilation_Unit
11795 loop
11796 Current_Unit := Parent (Current_Unit);
11797 end loop;
11798
11799 -- The instantiation node is in the main unit, or else the current node
11800 -- (perhaps as the result of nested instantiations) is in the main unit,
11801 -- or in the declaration of the main unit, which in this last case must
11802 -- be a body.
11803
11804 return Unum = Main_Unit
11805 or else Current_Unit = Cunit (Main_Unit)
11806 or else Current_Unit = Library_Unit (Cunit (Main_Unit))
11807 or else (Present (Library_Unit (Current_Unit))
11808 and then Is_In_Main_Unit (Library_Unit (Current_Unit)));
11809 end Is_In_Main_Unit;
11810
11811 ----------------------------
11812 -- Load_Parent_Of_Generic --
11813 ----------------------------
11814
11815 procedure Load_Parent_Of_Generic
11816 (N : Node_Id;
11817 Spec : Node_Id;
11818 Body_Optional : Boolean := False)
11819 is
11820 Comp_Unit : constant Node_Id := Cunit (Get_Source_Unit (Spec));
11821 Save_Style_Check : constant Boolean := Style_Check;
11822 True_Parent : Node_Id;
11823 Inst_Node : Node_Id;
11824 OK : Boolean;
11825 Previous_Instances : constant Elist_Id := New_Elmt_List;
11826
11827 procedure Collect_Previous_Instances (Decls : List_Id);
11828 -- Collect all instantiations in the given list of declarations, that
11829 -- precede the generic that we need to load. If the bodies of these
11830 -- instantiations are available, we must analyze them, to ensure that
11831 -- the public symbols generated are the same when the unit is compiled
11832 -- to generate code, and when it is compiled in the context of a unit
11833 -- that needs a particular nested instance. This process is applied to
11834 -- both package and subprogram instances.
11835
11836 --------------------------------
11837 -- Collect_Previous_Instances --
11838 --------------------------------
11839
11840 procedure Collect_Previous_Instances (Decls : List_Id) is
11841 Decl : Node_Id;
11842
11843 begin
11844 Decl := First (Decls);
11845 while Present (Decl) loop
11846 if Sloc (Decl) >= Sloc (Inst_Node) then
11847 return;
11848
11849 -- If Decl is an instantiation, then record it as requiring
11850 -- instantiation of the corresponding body, except if it is an
11851 -- abbreviated instantiation generated internally for conformance
11852 -- checking purposes only for the case of a formal package
11853 -- declared without a box (see Instantiate_Formal_Package). Such
11854 -- an instantiation does not generate any code (the actual code
11855 -- comes from actual) and thus does not need to be analyzed here.
11856 -- If the instantiation appears with a generic package body it is
11857 -- not analyzed here either.
11858
11859 elsif Nkind (Decl) = N_Package_Instantiation
11860 and then not Is_Internal (Defining_Entity (Decl))
11861 then
11862 Append_Elmt (Decl, Previous_Instances);
11863
11864 -- For a subprogram instantiation, omit instantiations intrinsic
11865 -- operations (Unchecked_Conversions, etc.) that have no bodies.
11866
11867 elsif Nkind_In (Decl, N_Function_Instantiation,
11868 N_Procedure_Instantiation)
11869 and then not Is_Intrinsic_Subprogram (Entity (Name (Decl)))
11870 then
11871 Append_Elmt (Decl, Previous_Instances);
11872
11873 elsif Nkind (Decl) = N_Package_Declaration then
11874 Collect_Previous_Instances
11875 (Visible_Declarations (Specification (Decl)));
11876 Collect_Previous_Instances
11877 (Private_Declarations (Specification (Decl)));
11878
11879 -- Previous non-generic bodies may contain instances as well
11880
11881 elsif Nkind (Decl) = N_Package_Body
11882 and then Ekind (Corresponding_Spec (Decl)) /= E_Generic_Package
11883 then
11884 Collect_Previous_Instances (Declarations (Decl));
11885
11886 elsif Nkind (Decl) = N_Subprogram_Body
11887 and then not Acts_As_Spec (Decl)
11888 and then not Is_Generic_Subprogram (Corresponding_Spec (Decl))
11889 then
11890 Collect_Previous_Instances (Declarations (Decl));
11891 end if;
11892
11893 Next (Decl);
11894 end loop;
11895 end Collect_Previous_Instances;
11896
11897 -- Start of processing for Load_Parent_Of_Generic
11898
11899 begin
11900 if not In_Same_Source_Unit (N, Spec)
11901 or else Nkind (Unit (Comp_Unit)) = N_Package_Declaration
11902 or else (Nkind (Unit (Comp_Unit)) = N_Package_Body
11903 and then not Is_In_Main_Unit (Spec))
11904 then
11905 -- Find body of parent of spec, and analyze it. A special case arises
11906 -- when the parent is an instantiation, that is to say when we are
11907 -- currently instantiating a nested generic. In that case, there is
11908 -- no separate file for the body of the enclosing instance. Instead,
11909 -- the enclosing body must be instantiated as if it were a pending
11910 -- instantiation, in order to produce the body for the nested generic
11911 -- we require now. Note that in that case the generic may be defined
11912 -- in a package body, the instance defined in the same package body,
11913 -- and the original enclosing body may not be in the main unit.
11914
11915 Inst_Node := Empty;
11916
11917 True_Parent := Parent (Spec);
11918 while Present (True_Parent)
11919 and then Nkind (True_Parent) /= N_Compilation_Unit
11920 loop
11921 if Nkind (True_Parent) = N_Package_Declaration
11922 and then
11923 Nkind (Original_Node (True_Parent)) = N_Package_Instantiation
11924 then
11925 -- Parent is a compilation unit that is an instantiation.
11926 -- Instantiation node has been replaced with package decl.
11927
11928 Inst_Node := Original_Node (True_Parent);
11929 exit;
11930
11931 elsif Nkind (True_Parent) = N_Package_Declaration
11932 and then Present (Generic_Parent (Specification (True_Parent)))
11933 and then Nkind (Parent (True_Parent)) /= N_Compilation_Unit
11934 then
11935 -- Parent is an instantiation within another specification.
11936 -- Declaration for instance has been inserted before original
11937 -- instantiation node. A direct link would be preferable?
11938
11939 Inst_Node := Next (True_Parent);
11940 while Present (Inst_Node)
11941 and then Nkind (Inst_Node) /= N_Package_Instantiation
11942 loop
11943 Next (Inst_Node);
11944 end loop;
11945
11946 -- If the instance appears within a generic, and the generic
11947 -- unit is defined within a formal package of the enclosing
11948 -- generic, there is no generic body available, and none
11949 -- needed. A more precise test should be used ???
11950
11951 if No (Inst_Node) then
11952 return;
11953 end if;
11954
11955 exit;
11956
11957 else
11958 True_Parent := Parent (True_Parent);
11959 end if;
11960 end loop;
11961
11962 -- Case where we are currently instantiating a nested generic
11963
11964 if Present (Inst_Node) then
11965 if Nkind (Parent (True_Parent)) = N_Compilation_Unit then
11966
11967 -- Instantiation node and declaration of instantiated package
11968 -- were exchanged when only the declaration was needed.
11969 -- Restore instantiation node before proceeding with body.
11970
11971 Set_Unit (Parent (True_Parent), Inst_Node);
11972 end if;
11973
11974 -- Now complete instantiation of enclosing body, if it appears in
11975 -- some other unit. If it appears in the current unit, the body
11976 -- will have been instantiated already.
11977
11978 if No (Corresponding_Body (Instance_Spec (Inst_Node))) then
11979
11980 -- We need to determine the expander mode to instantiate the
11981 -- enclosing body. Because the generic body we need may use
11982 -- global entities declared in the enclosing package (including
11983 -- aggregates) it is in general necessary to compile this body
11984 -- with expansion enabled, except if we are within a generic
11985 -- package, in which case the usual generic rule applies.
11986
11987 declare
11988 Exp_Status : Boolean := True;
11989 Scop : Entity_Id;
11990
11991 begin
11992 -- Loop through scopes looking for generic package
11993
11994 Scop := Scope (Defining_Entity (Instance_Spec (Inst_Node)));
11995 while Present (Scop)
11996 and then Scop /= Standard_Standard
11997 loop
11998 if Ekind (Scop) = E_Generic_Package then
11999 Exp_Status := False;
12000 exit;
12001 end if;
12002
12003 Scop := Scope (Scop);
12004 end loop;
12005
12006 -- Collect previous instantiations in the unit that contains
12007 -- the desired generic.
12008
12009 if Nkind (Parent (True_Parent)) /= N_Compilation_Unit
12010 and then not Body_Optional
12011 then
12012 declare
12013 Decl : Elmt_Id;
12014 Info : Pending_Body_Info;
12015 Par : Node_Id;
12016
12017 begin
12018 Par := Parent (Inst_Node);
12019 while Present (Par) loop
12020 exit when Nkind (Parent (Par)) = N_Compilation_Unit;
12021 Par := Parent (Par);
12022 end loop;
12023
12024 pragma Assert (Present (Par));
12025
12026 if Nkind (Par) = N_Package_Body then
12027 Collect_Previous_Instances (Declarations (Par));
12028
12029 elsif Nkind (Par) = N_Package_Declaration then
12030 Collect_Previous_Instances
12031 (Visible_Declarations (Specification (Par)));
12032 Collect_Previous_Instances
12033 (Private_Declarations (Specification (Par)));
12034
12035 else
12036 -- Enclosing unit is a subprogram body. In this
12037 -- case all instance bodies are processed in order
12038 -- and there is no need to collect them separately.
12039
12040 null;
12041 end if;
12042
12043 Decl := First_Elmt (Previous_Instances);
12044 while Present (Decl) loop
12045 Info :=
12046 (Inst_Node => Node (Decl),
12047 Act_Decl =>
12048 Instance_Spec (Node (Decl)),
12049 Expander_Status => Exp_Status,
12050 Current_Sem_Unit =>
12051 Get_Code_Unit (Sloc (Node (Decl))),
12052 Scope_Suppress => Scope_Suppress,
12053 Local_Suppress_Stack_Top =>
12054 Local_Suppress_Stack_Top,
12055 Version => Ada_Version);
12056
12057 -- Package instance
12058
12059 if
12060 Nkind (Node (Decl)) = N_Package_Instantiation
12061 then
12062 Instantiate_Package_Body
12063 (Info, Body_Optional => True);
12064
12065 -- Subprogram instance
12066
12067 else
12068 -- The instance_spec is the wrapper package,
12069 -- and the subprogram declaration is the last
12070 -- declaration in the wrapper.
12071
12072 Info.Act_Decl :=
12073 Last
12074 (Visible_Declarations
12075 (Specification (Info.Act_Decl)));
12076
12077 Instantiate_Subprogram_Body
12078 (Info, Body_Optional => True);
12079 end if;
12080
12081 Next_Elmt (Decl);
12082 end loop;
12083 end;
12084 end if;
12085
12086 Instantiate_Package_Body
12087 (Body_Info =>
12088 ((Inst_Node => Inst_Node,
12089 Act_Decl => True_Parent,
12090 Expander_Status => Exp_Status,
12091 Current_Sem_Unit =>
12092 Get_Code_Unit (Sloc (Inst_Node)),
12093 Scope_Suppress => Scope_Suppress,
12094 Local_Suppress_Stack_Top =>
12095 Local_Suppress_Stack_Top,
12096 Version => Ada_Version)),
12097 Body_Optional => Body_Optional);
12098 end;
12099 end if;
12100
12101 -- Case where we are not instantiating a nested generic
12102
12103 else
12104 Opt.Style_Check := False;
12105 Expander_Mode_Save_And_Set (True);
12106 Load_Needed_Body (Comp_Unit, OK);
12107 Opt.Style_Check := Save_Style_Check;
12108 Expander_Mode_Restore;
12109
12110 if not OK
12111 and then Unit_Requires_Body (Defining_Entity (Spec))
12112 and then not Body_Optional
12113 then
12114 declare
12115 Bname : constant Unit_Name_Type :=
12116 Get_Body_Name (Get_Unit_Name (Unit (Comp_Unit)));
12117
12118 begin
12119 -- In CodePeer mode, the missing body may make the analysis
12120 -- incomplete, but we do not treat it as fatal.
12121
12122 if CodePeer_Mode then
12123 return;
12124
12125 else
12126 Error_Msg_Unit_1 := Bname;
12127 Error_Msg_N ("this instantiation requires$!", N);
12128 Error_Msg_File_1 :=
12129 Get_File_Name (Bname, Subunit => False);
12130 Error_Msg_N ("\but file{ was not found!", N);
12131 raise Unrecoverable_Error;
12132 end if;
12133 end;
12134 end if;
12135 end if;
12136 end if;
12137
12138 -- If loading parent of the generic caused an instantiation circularity,
12139 -- we abandon compilation at this point, because otherwise in some cases
12140 -- we get into trouble with infinite recursions after this point.
12141
12142 if Circularity_Detected then
12143 raise Unrecoverable_Error;
12144 end if;
12145 end Load_Parent_Of_Generic;
12146
12147 ---------------------------------
12148 -- Map_Formal_Package_Entities --
12149 ---------------------------------
12150
12151 procedure Map_Formal_Package_Entities (Form : Entity_Id; Act : Entity_Id) is
12152 E1 : Entity_Id;
12153 E2 : Entity_Id;
12154
12155 begin
12156 Set_Instance_Of (Form, Act);
12157
12158 -- Traverse formal and actual package to map the corresponding entities.
12159 -- We skip over internal entities that may be generated during semantic
12160 -- analysis, and find the matching entities by name, given that they
12161 -- must appear in the same order.
12162
12163 E1 := First_Entity (Form);
12164 E2 := First_Entity (Act);
12165 while Present (E1) and then E1 /= First_Private_Entity (Form) loop
12166 -- Could this test be a single condition???
12167 -- Seems like it could, and isn't FPE (Form) a constant anyway???
12168
12169 if not Is_Internal (E1)
12170 and then Present (Parent (E1))
12171 and then not Is_Class_Wide_Type (E1)
12172 and then not Is_Internal_Name (Chars (E1))
12173 then
12174 while Present (E2) and then Chars (E2) /= Chars (E1) loop
12175 Next_Entity (E2);
12176 end loop;
12177
12178 if No (E2) then
12179 exit;
12180 else
12181 Set_Instance_Of (E1, E2);
12182
12183 if Is_Type (E1) and then Is_Tagged_Type (E2) then
12184 Set_Instance_Of (Class_Wide_Type (E1), Class_Wide_Type (E2));
12185 end if;
12186
12187 if Is_Constrained (E1) then
12188 Set_Instance_Of (Base_Type (E1), Base_Type (E2));
12189 end if;
12190
12191 if Ekind (E1) = E_Package and then No (Renamed_Object (E1)) then
12192 Map_Formal_Package_Entities (E1, E2);
12193 end if;
12194 end if;
12195 end if;
12196
12197 Next_Entity (E1);
12198 end loop;
12199 end Map_Formal_Package_Entities;
12200
12201 -----------------------
12202 -- Move_Freeze_Nodes --
12203 -----------------------
12204
12205 procedure Move_Freeze_Nodes
12206 (Out_Of : Entity_Id;
12207 After : Node_Id;
12208 L : List_Id)
12209 is
12210 Decl : Node_Id;
12211 Next_Decl : Node_Id;
12212 Next_Node : Node_Id := After;
12213 Spec : Node_Id;
12214
12215 function Is_Outer_Type (T : Entity_Id) return Boolean;
12216 -- Check whether entity is declared in a scope external to that of the
12217 -- generic unit.
12218
12219 -------------------
12220 -- Is_Outer_Type --
12221 -------------------
12222
12223 function Is_Outer_Type (T : Entity_Id) return Boolean is
12224 Scop : Entity_Id := Scope (T);
12225
12226 begin
12227 if Scope_Depth (Scop) < Scope_Depth (Out_Of) then
12228 return True;
12229
12230 else
12231 while Scop /= Standard_Standard loop
12232 if Scop = Out_Of then
12233 return False;
12234 else
12235 Scop := Scope (Scop);
12236 end if;
12237 end loop;
12238
12239 return True;
12240 end if;
12241 end Is_Outer_Type;
12242
12243 -- Start of processing for Move_Freeze_Nodes
12244
12245 begin
12246 if No (L) then
12247 return;
12248 end if;
12249
12250 -- First remove the freeze nodes that may appear before all other
12251 -- declarations.
12252
12253 Decl := First (L);
12254 while Present (Decl)
12255 and then Nkind (Decl) = N_Freeze_Entity
12256 and then Is_Outer_Type (Entity (Decl))
12257 loop
12258 Decl := Remove_Head (L);
12259 Insert_After (Next_Node, Decl);
12260 Set_Analyzed (Decl, False);
12261 Next_Node := Decl;
12262 Decl := First (L);
12263 end loop;
12264
12265 -- Next scan the list of declarations and remove each freeze node that
12266 -- appears ahead of the current node.
12267
12268 while Present (Decl) loop
12269 while Present (Next (Decl))
12270 and then Nkind (Next (Decl)) = N_Freeze_Entity
12271 and then Is_Outer_Type (Entity (Next (Decl)))
12272 loop
12273 Next_Decl := Remove_Next (Decl);
12274 Insert_After (Next_Node, Next_Decl);
12275 Set_Analyzed (Next_Decl, False);
12276 Next_Node := Next_Decl;
12277 end loop;
12278
12279 -- If the declaration is a nested package or concurrent type, then
12280 -- recurse. Nested generic packages will have been processed from the
12281 -- inside out.
12282
12283 case Nkind (Decl) is
12284 when N_Package_Declaration =>
12285 Spec := Specification (Decl);
12286
12287 when N_Task_Type_Declaration =>
12288 Spec := Task_Definition (Decl);
12289
12290 when N_Protected_Type_Declaration =>
12291 Spec := Protected_Definition (Decl);
12292
12293 when others =>
12294 Spec := Empty;
12295 end case;
12296
12297 if Present (Spec) then
12298 Move_Freeze_Nodes (Out_Of, Next_Node, Visible_Declarations (Spec));
12299 Move_Freeze_Nodes (Out_Of, Next_Node, Private_Declarations (Spec));
12300 end if;
12301
12302 Next (Decl);
12303 end loop;
12304 end Move_Freeze_Nodes;
12305
12306 ----------------
12307 -- Next_Assoc --
12308 ----------------
12309
12310 function Next_Assoc (E : Assoc_Ptr) return Assoc_Ptr is
12311 begin
12312 return Generic_Renamings.Table (E).Next_In_HTable;
12313 end Next_Assoc;
12314
12315 ------------------------
12316 -- Preanalyze_Actuals --
12317 ------------------------
12318
12319 procedure Preanalyze_Actuals (N : Node_Id) is
12320 Assoc : Node_Id;
12321 Act : Node_Id;
12322 Errs : constant Int := Serious_Errors_Detected;
12323
12324 Cur : Entity_Id := Empty;
12325 -- Current homograph of the instance name
12326
12327 Vis : Boolean;
12328 -- Saved visibility status of the current homograph
12329
12330 begin
12331 Assoc := First (Generic_Associations (N));
12332
12333 -- If the instance is a child unit, its name may hide an outer homonym,
12334 -- so make it invisible to perform name resolution on the actuals.
12335
12336 if Nkind (Defining_Unit_Name (N)) = N_Defining_Program_Unit_Name
12337 and then Present
12338 (Current_Entity (Defining_Identifier (Defining_Unit_Name (N))))
12339 then
12340 Cur := Current_Entity (Defining_Identifier (Defining_Unit_Name (N)));
12341
12342 if Is_Compilation_Unit (Cur) then
12343 Vis := Is_Immediately_Visible (Cur);
12344 Set_Is_Immediately_Visible (Cur, False);
12345 else
12346 Cur := Empty;
12347 end if;
12348 end if;
12349
12350 while Present (Assoc) loop
12351 if Nkind (Assoc) /= N_Others_Choice then
12352 Act := Explicit_Generic_Actual_Parameter (Assoc);
12353
12354 -- Within a nested instantiation, a defaulted actual is an empty
12355 -- association, so nothing to analyze. If the subprogram actual
12356 -- is an attribute, analyze prefix only, because actual is not a
12357 -- complete attribute reference.
12358
12359 -- If actual is an allocator, analyze expression only. The full
12360 -- analysis can generate code, and if instance is a compilation
12361 -- unit we have to wait until the package instance is installed
12362 -- to have a proper place to insert this code.
12363
12364 -- String literals may be operators, but at this point we do not
12365 -- know whether the actual is a formal subprogram or a string.
12366
12367 if No (Act) then
12368 null;
12369
12370 elsif Nkind (Act) = N_Attribute_Reference then
12371 Analyze (Prefix (Act));
12372
12373 elsif Nkind (Act) = N_Explicit_Dereference then
12374 Analyze (Prefix (Act));
12375
12376 elsif Nkind (Act) = N_Allocator then
12377 declare
12378 Expr : constant Node_Id := Expression (Act);
12379
12380 begin
12381 if Nkind (Expr) = N_Subtype_Indication then
12382 Analyze (Subtype_Mark (Expr));
12383
12384 -- Analyze separately each discriminant constraint, when
12385 -- given with a named association.
12386
12387 declare
12388 Constr : Node_Id;
12389
12390 begin
12391 Constr := First (Constraints (Constraint (Expr)));
12392 while Present (Constr) loop
12393 if Nkind (Constr) = N_Discriminant_Association then
12394 Analyze (Expression (Constr));
12395 else
12396 Analyze (Constr);
12397 end if;
12398
12399 Next (Constr);
12400 end loop;
12401 end;
12402
12403 else
12404 Analyze (Expr);
12405 end if;
12406 end;
12407
12408 elsif Nkind (Act) /= N_Operator_Symbol then
12409 Analyze (Act);
12410 end if;
12411
12412 if Errs /= Serious_Errors_Detected then
12413
12414 -- Do a minimal analysis of the generic, to prevent spurious
12415 -- warnings complaining about the generic being unreferenced,
12416 -- before abandoning the instantiation.
12417
12418 Analyze (Name (N));
12419
12420 if Is_Entity_Name (Name (N))
12421 and then Etype (Name (N)) /= Any_Type
12422 then
12423 Generate_Reference (Entity (Name (N)), Name (N));
12424 Set_Is_Instantiated (Entity (Name (N)));
12425 end if;
12426
12427 if Present (Cur) then
12428
12429 -- For the case of a child instance hiding an outer homonym,
12430 -- provide additional warning which might explain the error.
12431
12432 Set_Is_Immediately_Visible (Cur, Vis);
12433 Error_Msg_NE ("& hides outer unit with the same name?",
12434 N, Defining_Unit_Name (N));
12435 end if;
12436
12437 Abandon_Instantiation (Act);
12438 end if;
12439 end if;
12440
12441 Next (Assoc);
12442 end loop;
12443
12444 if Present (Cur) then
12445 Set_Is_Immediately_Visible (Cur, Vis);
12446 end if;
12447 end Preanalyze_Actuals;
12448
12449 -------------------
12450 -- Remove_Parent --
12451 -------------------
12452
12453 procedure Remove_Parent (In_Body : Boolean := False) is
12454 S : Entity_Id := Current_Scope;
12455 -- S is the scope containing the instantiation just completed. The scope
12456 -- stack contains the parent instances of the instantiation, followed by
12457 -- the original S.
12458
12459 Cur_P : Entity_Id;
12460 E : Entity_Id;
12461 P : Entity_Id;
12462 Hidden : Elmt_Id;
12463
12464 begin
12465 -- After child instantiation is complete, remove from scope stack the
12466 -- extra copy of the current scope, and then remove parent instances.
12467
12468 if not In_Body then
12469 Pop_Scope;
12470
12471 while Current_Scope /= S loop
12472 P := Current_Scope;
12473 End_Package_Scope (Current_Scope);
12474
12475 if In_Open_Scopes (P) then
12476 E := First_Entity (P);
12477 while Present (E) loop
12478 Set_Is_Immediately_Visible (E, True);
12479 Next_Entity (E);
12480 end loop;
12481
12482 -- If instantiation is declared in a block, it is the enclosing
12483 -- scope that might be a parent instance. Note that only one
12484 -- block can be involved, because the parent instances have
12485 -- been installed within it.
12486
12487 if Ekind (P) = E_Block then
12488 Cur_P := Scope (P);
12489 else
12490 Cur_P := P;
12491 end if;
12492
12493 if Is_Generic_Instance (Cur_P) and then P /= Current_Scope then
12494 -- We are within an instance of some sibling. Retain
12495 -- visibility of parent, for proper subsequent cleanup, and
12496 -- reinstall private declarations as well.
12497
12498 Set_In_Private_Part (P);
12499 Install_Private_Declarations (P);
12500 end if;
12501
12502 -- If the ultimate parent is a top-level unit recorded in
12503 -- Instance_Parent_Unit, then reset its visibility to what it was
12504 -- before instantiation. (It's not clear what the purpose is of
12505 -- testing whether Scope (P) is In_Open_Scopes, but that test was
12506 -- present before the ultimate parent test was added.???)
12507
12508 elsif not In_Open_Scopes (Scope (P))
12509 or else (P = Instance_Parent_Unit
12510 and then not Parent_Unit_Visible)
12511 then
12512 Set_Is_Immediately_Visible (P, False);
12513
12514 -- If the current scope is itself an instantiation of a generic
12515 -- nested within P, and we are in the private part of body of this
12516 -- instantiation, restore the full views of P, that were removed
12517 -- in End_Package_Scope above. This obscure case can occur when a
12518 -- subunit of a generic contains an instance of a child unit of
12519 -- its generic parent unit.
12520
12521 elsif S = Current_Scope and then Is_Generic_Instance (S) then
12522 declare
12523 Par : constant Entity_Id :=
12524 Generic_Parent
12525 (Specification (Unit_Declaration_Node (S)));
12526 begin
12527 if Present (Par)
12528 and then P = Scope (Par)
12529 and then (In_Package_Body (S) or else In_Private_Part (S))
12530 then
12531 Set_In_Private_Part (P);
12532 Install_Private_Declarations (P);
12533 end if;
12534 end;
12535 end if;
12536 end loop;
12537
12538 -- Reset visibility of entities in the enclosing scope
12539
12540 Set_Is_Hidden_Open_Scope (Current_Scope, False);
12541
12542 Hidden := First_Elmt (Hidden_Entities);
12543 while Present (Hidden) loop
12544 Set_Is_Immediately_Visible (Node (Hidden), True);
12545 Next_Elmt (Hidden);
12546 end loop;
12547
12548 else
12549 -- Each body is analyzed separately, and there is no context that
12550 -- needs preserving from one body instance to the next, so remove all
12551 -- parent scopes that have been installed.
12552
12553 while Present (S) loop
12554 End_Package_Scope (S);
12555 Set_Is_Immediately_Visible (S, False);
12556 S := Current_Scope;
12557 exit when S = Standard_Standard;
12558 end loop;
12559 end if;
12560 end Remove_Parent;
12561
12562 -----------------
12563 -- Restore_Env --
12564 -----------------
12565
12566 procedure Restore_Env is
12567 Saved : Instance_Env renames Instance_Envs.Table (Instance_Envs.Last);
12568
12569 begin
12570 if No (Current_Instantiated_Parent.Act_Id) then
12571 -- Restore environment after subprogram inlining
12572
12573 Restore_Private_Views (Empty);
12574 end if;
12575
12576 Current_Instantiated_Parent := Saved.Instantiated_Parent;
12577 Exchanged_Views := Saved.Exchanged_Views;
12578 Hidden_Entities := Saved.Hidden_Entities;
12579 Current_Sem_Unit := Saved.Current_Sem_Unit;
12580 Parent_Unit_Visible := Saved.Parent_Unit_Visible;
12581 Instance_Parent_Unit := Saved.Instance_Parent_Unit;
12582
12583 Restore_Opt_Config_Switches (Saved.Switches);
12584
12585 Instance_Envs.Decrement_Last;
12586 end Restore_Env;
12587
12588 ---------------------------
12589 -- Restore_Private_Views --
12590 ---------------------------
12591
12592 procedure Restore_Private_Views
12593 (Pack_Id : Entity_Id;
12594 Is_Package : Boolean := True)
12595 is
12596 M : Elmt_Id;
12597 E : Entity_Id;
12598 Typ : Entity_Id;
12599 Dep_Elmt : Elmt_Id;
12600 Dep_Typ : Node_Id;
12601
12602 procedure Restore_Nested_Formal (Formal : Entity_Id);
12603 -- Hide the generic formals of formal packages declared with box which
12604 -- were reachable in the current instantiation.
12605
12606 ---------------------------
12607 -- Restore_Nested_Formal --
12608 ---------------------------
12609
12610 procedure Restore_Nested_Formal (Formal : Entity_Id) is
12611 Ent : Entity_Id;
12612
12613 begin
12614 if Present (Renamed_Object (Formal))
12615 and then Denotes_Formal_Package (Renamed_Object (Formal), True)
12616 then
12617 return;
12618
12619 elsif Present (Associated_Formal_Package (Formal)) then
12620 Ent := First_Entity (Formal);
12621 while Present (Ent) loop
12622 exit when Ekind (Ent) = E_Package
12623 and then Renamed_Entity (Ent) = Renamed_Entity (Formal);
12624
12625 Set_Is_Hidden (Ent);
12626 Set_Is_Potentially_Use_Visible (Ent, False);
12627
12628 -- If package, then recurse
12629
12630 if Ekind (Ent) = E_Package then
12631 Restore_Nested_Formal (Ent);
12632 end if;
12633
12634 Next_Entity (Ent);
12635 end loop;
12636 end if;
12637 end Restore_Nested_Formal;
12638
12639 -- Start of processing for Restore_Private_Views
12640
12641 begin
12642 M := First_Elmt (Exchanged_Views);
12643 while Present (M) loop
12644 Typ := Node (M);
12645
12646 -- Subtypes of types whose views have been exchanged, and that are
12647 -- defined within the instance, were not on the Private_Dependents
12648 -- list on entry to the instance, so they have to be exchanged
12649 -- explicitly now, in order to remain consistent with the view of the
12650 -- parent type.
12651
12652 if Ekind_In (Typ, E_Private_Type,
12653 E_Limited_Private_Type,
12654 E_Record_Type_With_Private)
12655 then
12656 Dep_Elmt := First_Elmt (Private_Dependents (Typ));
12657 while Present (Dep_Elmt) loop
12658 Dep_Typ := Node (Dep_Elmt);
12659
12660 if Scope (Dep_Typ) = Pack_Id
12661 and then Present (Full_View (Dep_Typ))
12662 then
12663 Replace_Elmt (Dep_Elmt, Full_View (Dep_Typ));
12664 Exchange_Declarations (Dep_Typ);
12665 end if;
12666
12667 Next_Elmt (Dep_Elmt);
12668 end loop;
12669 end if;
12670
12671 Exchange_Declarations (Node (M));
12672 Next_Elmt (M);
12673 end loop;
12674
12675 if No (Pack_Id) then
12676 return;
12677 end if;
12678
12679 -- Make the generic formal parameters private, and make the formal types
12680 -- into subtypes of the actuals again.
12681
12682 E := First_Entity (Pack_Id);
12683 while Present (E) loop
12684 Set_Is_Hidden (E, True);
12685
12686 if Is_Type (E)
12687 and then Nkind (Parent (E)) = N_Subtype_Declaration
12688 then
12689 Set_Is_Generic_Actual_Type (E, False);
12690
12691 -- An unusual case of aliasing: the actual may also be directly
12692 -- visible in the generic, and be private there, while it is fully
12693 -- visible in the context of the instance. The internal subtype
12694 -- is private in the instance but has full visibility like its
12695 -- parent in the enclosing scope. This enforces the invariant that
12696 -- the privacy status of all private dependents of a type coincide
12697 -- with that of the parent type. This can only happen when a
12698 -- generic child unit is instantiated within a sibling.
12699
12700 if Is_Private_Type (E)
12701 and then not Is_Private_Type (Etype (E))
12702 then
12703 Exchange_Declarations (E);
12704 end if;
12705
12706 elsif Ekind (E) = E_Package then
12707
12708 -- The end of the renaming list is the renaming of the generic
12709 -- package itself. If the instance is a subprogram, all entities
12710 -- in the corresponding package are renamings. If this entity is
12711 -- a formal package, make its own formals private as well. The
12712 -- actual in this case is itself the renaming of an instantiation.
12713 -- If the entity is not a package renaming, it is the entity
12714 -- created to validate formal package actuals: ignore it.
12715
12716 -- If the actual is itself a formal package for the enclosing
12717 -- generic, or the actual for such a formal package, it remains
12718 -- visible on exit from the instance, and therefore nothing needs
12719 -- to be done either, except to keep it accessible.
12720
12721 if Is_Package and then Renamed_Object (E) = Pack_Id then
12722 exit;
12723
12724 elsif Nkind (Parent (E)) /= N_Package_Renaming_Declaration then
12725 null;
12726
12727 elsif
12728 Denotes_Formal_Package (Renamed_Object (E), True, Pack_Id)
12729 then
12730 Set_Is_Hidden (E, False);
12731
12732 else
12733 declare
12734 Act_P : constant Entity_Id := Renamed_Object (E);
12735 Id : Entity_Id;
12736
12737 begin
12738 Id := First_Entity (Act_P);
12739 while Present (Id)
12740 and then Id /= First_Private_Entity (Act_P)
12741 loop
12742 exit when Ekind (Id) = E_Package
12743 and then Renamed_Object (Id) = Act_P;
12744
12745 Set_Is_Hidden (Id, True);
12746 Set_Is_Potentially_Use_Visible (Id, In_Use (Act_P));
12747
12748 if Ekind (Id) = E_Package then
12749 Restore_Nested_Formal (Id);
12750 end if;
12751
12752 Next_Entity (Id);
12753 end loop;
12754 end;
12755 end if;
12756 end if;
12757
12758 Next_Entity (E);
12759 end loop;
12760 end Restore_Private_Views;
12761
12762 --------------
12763 -- Save_Env --
12764 --------------
12765
12766 procedure Save_Env
12767 (Gen_Unit : Entity_Id;
12768 Act_Unit : Entity_Id)
12769 is
12770 begin
12771 Init_Env;
12772 Set_Instance_Env (Gen_Unit, Act_Unit);
12773 end Save_Env;
12774
12775 ----------------------------
12776 -- Save_Global_References --
12777 ----------------------------
12778
12779 procedure Save_Global_References (N : Node_Id) is
12780 Gen_Scope : Entity_Id;
12781 E : Entity_Id;
12782 N2 : Node_Id;
12783
12784 function Is_Global (E : Entity_Id) return Boolean;
12785 -- Check whether entity is defined outside of generic unit. Examine the
12786 -- scope of an entity, and the scope of the scope, etc, until we find
12787 -- either Standard, in which case the entity is global, or the generic
12788 -- unit itself, which indicates that the entity is local. If the entity
12789 -- is the generic unit itself, as in the case of a recursive call, or
12790 -- the enclosing generic unit, if different from the current scope, then
12791 -- it is local as well, because it will be replaced at the point of
12792 -- instantiation. On the other hand, if it is a reference to a child
12793 -- unit of a common ancestor, which appears in an instantiation, it is
12794 -- global because it is used to denote a specific compilation unit at
12795 -- the time the instantiations will be analyzed.
12796
12797 procedure Reset_Entity (N : Node_Id);
12798 -- Save semantic information on global entity so that it is not resolved
12799 -- again at instantiation time.
12800
12801 procedure Save_Entity_Descendants (N : Node_Id);
12802 -- Apply Save_Global_References to the two syntactic descendants of
12803 -- non-terminal nodes that carry an Associated_Node and are processed
12804 -- through Reset_Entity. Once the global entity (if any) has been
12805 -- captured together with its type, only two syntactic descendants need
12806 -- to be traversed to complete the processing of the tree rooted at N.
12807 -- This applies to Selected_Components, Expanded_Names, and to Operator
12808 -- nodes. N can also be a character literal, identifier, or operator
12809 -- symbol node, but the call has no effect in these cases.
12810
12811 procedure Save_Global_Defaults (N1, N2 : Node_Id);
12812 -- Default actuals in nested instances must be handled specially
12813 -- because there is no link to them from the original tree. When an
12814 -- actual subprogram is given by a default, we add an explicit generic
12815 -- association for it in the instantiation node. When we save the
12816 -- global references on the name of the instance, we recover the list
12817 -- of generic associations, and add an explicit one to the original
12818 -- generic tree, through which a global actual can be preserved.
12819 -- Similarly, if a child unit is instantiated within a sibling, in the
12820 -- context of the parent, we must preserve the identifier of the parent
12821 -- so that it can be properly resolved in a subsequent instantiation.
12822
12823 procedure Save_Global_Descendant (D : Union_Id);
12824 -- Apply Save_Global_References recursively to the descendents of the
12825 -- current node.
12826
12827 procedure Save_References (N : Node_Id);
12828 -- This is the recursive procedure that does the work, once the
12829 -- enclosing generic scope has been established.
12830
12831 ---------------
12832 -- Is_Global --
12833 ---------------
12834
12835 function Is_Global (E : Entity_Id) return Boolean is
12836 Se : Entity_Id;
12837
12838 function Is_Instance_Node (Decl : Node_Id) return Boolean;
12839 -- Determine whether the parent node of a reference to a child unit
12840 -- denotes an instantiation or a formal package, in which case the
12841 -- reference to the child unit is global, even if it appears within
12842 -- the current scope (e.g. when the instance appears within the body
12843 -- of an ancestor).
12844
12845 ----------------------
12846 -- Is_Instance_Node --
12847 ----------------------
12848
12849 function Is_Instance_Node (Decl : Node_Id) return Boolean is
12850 begin
12851 return Nkind (Decl) in N_Generic_Instantiation
12852 or else
12853 Nkind (Original_Node (Decl)) = N_Formal_Package_Declaration;
12854 end Is_Instance_Node;
12855
12856 -- Start of processing for Is_Global
12857
12858 begin
12859 if E = Gen_Scope then
12860 return False;
12861
12862 elsif E = Standard_Standard then
12863 return True;
12864
12865 elsif Is_Child_Unit (E)
12866 and then (Is_Instance_Node (Parent (N2))
12867 or else (Nkind (Parent (N2)) = N_Expanded_Name
12868 and then N2 = Selector_Name (Parent (N2))
12869 and then
12870 Is_Instance_Node (Parent (Parent (N2)))))
12871 then
12872 return True;
12873
12874 else
12875 Se := Scope (E);
12876 while Se /= Gen_Scope loop
12877 if Se = Standard_Standard then
12878 return True;
12879 else
12880 Se := Scope (Se);
12881 end if;
12882 end loop;
12883
12884 return False;
12885 end if;
12886 end Is_Global;
12887
12888 ------------------
12889 -- Reset_Entity --
12890 ------------------
12891
12892 procedure Reset_Entity (N : Node_Id) is
12893
12894 procedure Set_Global_Type (N : Node_Id; N2 : Node_Id);
12895 -- If the type of N2 is global to the generic unit, save the type in
12896 -- the generic node. Just as we perform name capture for explicit
12897 -- references within the generic, we must capture the global types
12898 -- of local entities because they may participate in resolution in
12899 -- the instance.
12900
12901 function Top_Ancestor (E : Entity_Id) return Entity_Id;
12902 -- Find the ultimate ancestor of the current unit. If it is not a
12903 -- generic unit, then the name of the current unit in the prefix of
12904 -- an expanded name must be replaced with its generic homonym to
12905 -- ensure that it will be properly resolved in an instance.
12906
12907 ---------------------
12908 -- Set_Global_Type --
12909 ---------------------
12910
12911 procedure Set_Global_Type (N : Node_Id; N2 : Node_Id) is
12912 Typ : constant Entity_Id := Etype (N2);
12913
12914 begin
12915 Set_Etype (N, Typ);
12916
12917 if Entity (N) /= N2
12918 and then Has_Private_View (Entity (N))
12919 then
12920 -- If the entity of N is not the associated node, this is a
12921 -- nested generic and it has an associated node as well, whose
12922 -- type is already the full view (see below). Indicate that the
12923 -- original node has a private view.
12924
12925 Set_Has_Private_View (N);
12926 end if;
12927
12928 -- If not a private type, nothing else to do
12929
12930 if not Is_Private_Type (Typ) then
12931 if Is_Array_Type (Typ)
12932 and then Is_Private_Type (Component_Type (Typ))
12933 then
12934 Set_Has_Private_View (N);
12935 end if;
12936
12937 -- If it is a derivation of a private type in a context where no
12938 -- full view is needed, nothing to do either.
12939
12940 elsif No (Full_View (Typ)) and then Typ /= Etype (Typ) then
12941 null;
12942
12943 -- Otherwise mark the type for flipping and use the full view when
12944 -- available.
12945
12946 else
12947 Set_Has_Private_View (N);
12948
12949 if Present (Full_View (Typ)) then
12950 Set_Etype (N2, Full_View (Typ));
12951 end if;
12952 end if;
12953 end Set_Global_Type;
12954
12955 ------------------
12956 -- Top_Ancestor --
12957 ------------------
12958
12959 function Top_Ancestor (E : Entity_Id) return Entity_Id is
12960 Par : Entity_Id;
12961
12962 begin
12963 Par := E;
12964 while Is_Child_Unit (Par) loop
12965 Par := Scope (Par);
12966 end loop;
12967
12968 return Par;
12969 end Top_Ancestor;
12970
12971 -- Start of processing for Reset_Entity
12972
12973 begin
12974 N2 := Get_Associated_Node (N);
12975 E := Entity (N2);
12976
12977 if Present (E) then
12978
12979 -- If the node is an entry call to an entry in an enclosing task,
12980 -- it is rewritten as a selected component. No global entity to
12981 -- preserve in this case, since the expansion will be redone in
12982 -- the instance.
12983
12984 if not Nkind_In (E, N_Defining_Identifier,
12985 N_Defining_Character_Literal,
12986 N_Defining_Operator_Symbol)
12987 then
12988 Set_Associated_Node (N, Empty);
12989 Set_Etype (N, Empty);
12990 return;
12991 end if;
12992
12993 -- If the entity is an itype created as a subtype of an access
12994 -- type with a null exclusion restore source entity for proper
12995 -- visibility. The itype will be created anew in the instance.
12996
12997 if Is_Itype (E)
12998 and then Ekind (E) = E_Access_Subtype
12999 and then Is_Entity_Name (N)
13000 and then Chars (Etype (E)) = Chars (N)
13001 then
13002 E := Etype (E);
13003 Set_Entity (N2, E);
13004 Set_Etype (N2, E);
13005 end if;
13006
13007 if Is_Global (E) then
13008 Set_Global_Type (N, N2);
13009
13010 elsif Nkind (N) = N_Op_Concat
13011 and then Is_Generic_Type (Etype (N2))
13012 and then (Base_Type (Etype (Right_Opnd (N2))) = Etype (N2)
13013 or else
13014 Base_Type (Etype (Left_Opnd (N2))) = Etype (N2))
13015 and then Is_Intrinsic_Subprogram (E)
13016 then
13017 null;
13018
13019 else
13020 -- Entity is local. Mark generic node as unresolved.
13021 -- Note that now it does not have an entity.
13022
13023 Set_Associated_Node (N, Empty);
13024 Set_Etype (N, Empty);
13025 end if;
13026
13027 if Nkind (Parent (N)) in N_Generic_Instantiation
13028 and then N = Name (Parent (N))
13029 then
13030 Save_Global_Defaults (Parent (N), Parent (N2));
13031 end if;
13032
13033 elsif Nkind (Parent (N)) = N_Selected_Component
13034 and then Nkind (Parent (N2)) = N_Expanded_Name
13035 then
13036 if Is_Global (Entity (Parent (N2))) then
13037 Change_Selected_Component_To_Expanded_Name (Parent (N));
13038 Set_Associated_Node (Parent (N), Parent (N2));
13039 Set_Global_Type (Parent (N), Parent (N2));
13040 Save_Entity_Descendants (N);
13041
13042 -- If this is a reference to the current generic entity, replace
13043 -- by the name of the generic homonym of the current package. This
13044 -- is because in an instantiation Par.P.Q will not resolve to the
13045 -- name of the instance, whose enclosing scope is not necessarily
13046 -- Par. We use the generic homonym rather that the name of the
13047 -- generic itself because it may be hidden by a local declaration.
13048
13049 elsif In_Open_Scopes (Entity (Parent (N2)))
13050 and then not
13051 Is_Generic_Unit (Top_Ancestor (Entity (Prefix (Parent (N2)))))
13052 then
13053 if Ekind (Entity (Parent (N2))) = E_Generic_Package then
13054 Rewrite (Parent (N),
13055 Make_Identifier (Sloc (N),
13056 Chars =>
13057 Chars (Generic_Homonym (Entity (Parent (N2))))));
13058 else
13059 Rewrite (Parent (N),
13060 Make_Identifier (Sloc (N),
13061 Chars => Chars (Selector_Name (Parent (N2)))));
13062 end if;
13063 end if;
13064
13065 if Nkind (Parent (Parent (N))) in N_Generic_Instantiation
13066 and then Parent (N) = Name (Parent (Parent (N)))
13067 then
13068 Save_Global_Defaults
13069 (Parent (Parent (N)), Parent (Parent ((N2))));
13070 end if;
13071
13072 -- A selected component may denote a static constant that has been
13073 -- folded. If the static constant is global to the generic, capture
13074 -- its value. Otherwise the folding will happen in any instantiation.
13075
13076 elsif Nkind (Parent (N)) = N_Selected_Component
13077 and then Nkind_In (Parent (N2), N_Integer_Literal, N_Real_Literal)
13078 then
13079 if Present (Entity (Original_Node (Parent (N2))))
13080 and then Is_Global (Entity (Original_Node (Parent (N2))))
13081 then
13082 Rewrite (Parent (N), New_Copy (Parent (N2)));
13083 Set_Analyzed (Parent (N), False);
13084
13085 else
13086 null;
13087 end if;
13088
13089 -- A selected component may be transformed into a parameterless
13090 -- function call. If the called entity is global, rewrite the node
13091 -- appropriately, i.e. as an extended name for the global entity.
13092
13093 elsif Nkind (Parent (N)) = N_Selected_Component
13094 and then Nkind (Parent (N2)) = N_Function_Call
13095 and then N = Selector_Name (Parent (N))
13096 then
13097 if No (Parameter_Associations (Parent (N2))) then
13098 if Is_Global (Entity (Name (Parent (N2)))) then
13099 Change_Selected_Component_To_Expanded_Name (Parent (N));
13100 Set_Associated_Node (Parent (N), Name (Parent (N2)));
13101 Set_Global_Type (Parent (N), Name (Parent (N2)));
13102 Save_Entity_Descendants (N);
13103
13104 else
13105 Set_Is_Prefixed_Call (Parent (N));
13106 Set_Associated_Node (N, Empty);
13107 Set_Etype (N, Empty);
13108 end if;
13109
13110 -- In Ada 2005, X.F may be a call to a primitive operation,
13111 -- rewritten as F (X). This rewriting will be done again in an
13112 -- instance, so keep the original node. Global entities will be
13113 -- captured as for other constructs. Indicate that this must
13114 -- resolve as a call, to prevent accidental overloading in the
13115 -- instance, if both a component and a primitive operation appear
13116 -- as candidates.
13117
13118 else
13119 Set_Is_Prefixed_Call (Parent (N));
13120 end if;
13121
13122 -- Entity is local. Reset in generic unit, so that node is resolved
13123 -- anew at the point of instantiation.
13124
13125 else
13126 Set_Associated_Node (N, Empty);
13127 Set_Etype (N, Empty);
13128 end if;
13129 end Reset_Entity;
13130
13131 -----------------------------
13132 -- Save_Entity_Descendants --
13133 -----------------------------
13134
13135 procedure Save_Entity_Descendants (N : Node_Id) is
13136 begin
13137 case Nkind (N) is
13138 when N_Binary_Op =>
13139 Save_Global_Descendant (Union_Id (Left_Opnd (N)));
13140 Save_Global_Descendant (Union_Id (Right_Opnd (N)));
13141
13142 when N_Unary_Op =>
13143 Save_Global_Descendant (Union_Id (Right_Opnd (N)));
13144
13145 when N_Expanded_Name | N_Selected_Component =>
13146 Save_Global_Descendant (Union_Id (Prefix (N)));
13147 Save_Global_Descendant (Union_Id (Selector_Name (N)));
13148
13149 when N_Identifier | N_Character_Literal | N_Operator_Symbol =>
13150 null;
13151
13152 when others =>
13153 raise Program_Error;
13154 end case;
13155 end Save_Entity_Descendants;
13156
13157 --------------------------
13158 -- Save_Global_Defaults --
13159 --------------------------
13160
13161 procedure Save_Global_Defaults (N1, N2 : Node_Id) is
13162 Loc : constant Source_Ptr := Sloc (N1);
13163 Assoc2 : constant List_Id := Generic_Associations (N2);
13164 Gen_Id : constant Entity_Id := Get_Generic_Entity (N2);
13165 Assoc1 : List_Id;
13166 Act1 : Node_Id;
13167 Act2 : Node_Id;
13168 Def : Node_Id;
13169 Ndec : Node_Id;
13170 Subp : Entity_Id;
13171 Actual : Entity_Id;
13172
13173 begin
13174 Assoc1 := Generic_Associations (N1);
13175
13176 if Present (Assoc1) then
13177 Act1 := First (Assoc1);
13178 else
13179 Act1 := Empty;
13180 Set_Generic_Associations (N1, New_List);
13181 Assoc1 := Generic_Associations (N1);
13182 end if;
13183
13184 if Present (Assoc2) then
13185 Act2 := First (Assoc2);
13186 else
13187 return;
13188 end if;
13189
13190 while Present (Act1) and then Present (Act2) loop
13191 Next (Act1);
13192 Next (Act2);
13193 end loop;
13194
13195 -- Find the associations added for default subprograms
13196
13197 if Present (Act2) then
13198 while Nkind (Act2) /= N_Generic_Association
13199 or else No (Entity (Selector_Name (Act2)))
13200 or else not Is_Overloadable (Entity (Selector_Name (Act2)))
13201 loop
13202 Next (Act2);
13203 end loop;
13204
13205 -- Add a similar association if the default is global. The
13206 -- renaming declaration for the actual has been analyzed, and
13207 -- its alias is the program it renames. Link the actual in the
13208 -- original generic tree with the node in the analyzed tree.
13209
13210 while Present (Act2) loop
13211 Subp := Entity (Selector_Name (Act2));
13212 Def := Explicit_Generic_Actual_Parameter (Act2);
13213
13214 -- Following test is defence against rubbish errors
13215
13216 if No (Alias (Subp)) then
13217 return;
13218 end if;
13219
13220 -- Retrieve the resolved actual from the renaming declaration
13221 -- created for the instantiated formal.
13222
13223 Actual := Entity (Name (Parent (Parent (Subp))));
13224 Set_Entity (Def, Actual);
13225 Set_Etype (Def, Etype (Actual));
13226
13227 if Is_Global (Actual) then
13228 Ndec :=
13229 Make_Generic_Association (Loc,
13230 Selector_Name => New_Occurrence_Of (Subp, Loc),
13231 Explicit_Generic_Actual_Parameter =>
13232 New_Occurrence_Of (Actual, Loc));
13233
13234 Set_Associated_Node
13235 (Explicit_Generic_Actual_Parameter (Ndec), Def);
13236
13237 Append (Ndec, Assoc1);
13238
13239 -- If there are other defaults, add a dummy association in case
13240 -- there are other defaulted formals with the same name.
13241
13242 elsif Present (Next (Act2)) then
13243 Ndec :=
13244 Make_Generic_Association (Loc,
13245 Selector_Name => New_Occurrence_Of (Subp, Loc),
13246 Explicit_Generic_Actual_Parameter => Empty);
13247
13248 Append (Ndec, Assoc1);
13249 end if;
13250
13251 Next (Act2);
13252 end loop;
13253 end if;
13254
13255 if Nkind (Name (N1)) = N_Identifier
13256 and then Is_Child_Unit (Gen_Id)
13257 and then Is_Global (Gen_Id)
13258 and then Is_Generic_Unit (Scope (Gen_Id))
13259 and then In_Open_Scopes (Scope (Gen_Id))
13260 then
13261 -- This is an instantiation of a child unit within a sibling, so
13262 -- that the generic parent is in scope. An eventual instance must
13263 -- occur within the scope of an instance of the parent. Make name
13264 -- in instance into an expanded name, to preserve the identifier
13265 -- of the parent, so it can be resolved subsequently.
13266
13267 Rewrite (Name (N2),
13268 Make_Expanded_Name (Loc,
13269 Chars => Chars (Gen_Id),
13270 Prefix => New_Occurrence_Of (Scope (Gen_Id), Loc),
13271 Selector_Name => New_Occurrence_Of (Gen_Id, Loc)));
13272 Set_Entity (Name (N2), Gen_Id);
13273
13274 Rewrite (Name (N1),
13275 Make_Expanded_Name (Loc,
13276 Chars => Chars (Gen_Id),
13277 Prefix => New_Occurrence_Of (Scope (Gen_Id), Loc),
13278 Selector_Name => New_Occurrence_Of (Gen_Id, Loc)));
13279
13280 Set_Associated_Node (Name (N1), Name (N2));
13281 Set_Associated_Node (Prefix (Name (N1)), Empty);
13282 Set_Associated_Node
13283 (Selector_Name (Name (N1)), Selector_Name (Name (N2)));
13284 Set_Etype (Name (N1), Etype (Gen_Id));
13285 end if;
13286
13287 end Save_Global_Defaults;
13288
13289 ----------------------------
13290 -- Save_Global_Descendant --
13291 ----------------------------
13292
13293 procedure Save_Global_Descendant (D : Union_Id) is
13294 N1 : Node_Id;
13295
13296 begin
13297 if D in Node_Range then
13298 if D = Union_Id (Empty) then
13299 null;
13300
13301 elsif Nkind (Node_Id (D)) /= N_Compilation_Unit then
13302 Save_References (Node_Id (D));
13303 end if;
13304
13305 elsif D in List_Range then
13306 if D = Union_Id (No_List)
13307 or else Is_Empty_List (List_Id (D))
13308 then
13309 null;
13310
13311 else
13312 N1 := First (List_Id (D));
13313 while Present (N1) loop
13314 Save_References (N1);
13315 Next (N1);
13316 end loop;
13317 end if;
13318
13319 -- Element list or other non-node field, nothing to do
13320
13321 else
13322 null;
13323 end if;
13324 end Save_Global_Descendant;
13325
13326 ---------------------
13327 -- Save_References --
13328 ---------------------
13329
13330 -- This is the recursive procedure that does the work once the enclosing
13331 -- generic scope has been established. We have to treat specially a
13332 -- number of node rewritings that are required by semantic processing
13333 -- and which change the kind of nodes in the generic copy: typically
13334 -- constant-folding, replacing an operator node by a string literal, or
13335 -- a selected component by an expanded name. In each of those cases, the
13336 -- transformation is propagated to the generic unit.
13337
13338 procedure Save_References (N : Node_Id) is
13339 Loc : constant Source_Ptr := Sloc (N);
13340
13341 begin
13342 if N = Empty then
13343 null;
13344
13345 elsif Nkind_In (N, N_Character_Literal, N_Operator_Symbol) then
13346 if Nkind (N) = Nkind (Get_Associated_Node (N)) then
13347 Reset_Entity (N);
13348
13349 elsif Nkind (N) = N_Operator_Symbol
13350 and then Nkind (Get_Associated_Node (N)) = N_String_Literal
13351 then
13352 Change_Operator_Symbol_To_String_Literal (N);
13353 end if;
13354
13355 elsif Nkind (N) in N_Op then
13356 if Nkind (N) = Nkind (Get_Associated_Node (N)) then
13357 if Nkind (N) = N_Op_Concat then
13358 Set_Is_Component_Left_Opnd (N,
13359 Is_Component_Left_Opnd (Get_Associated_Node (N)));
13360
13361 Set_Is_Component_Right_Opnd (N,
13362 Is_Component_Right_Opnd (Get_Associated_Node (N)));
13363 end if;
13364
13365 Reset_Entity (N);
13366
13367 else
13368 -- Node may be transformed into call to a user-defined operator
13369
13370 N2 := Get_Associated_Node (N);
13371
13372 if Nkind (N2) = N_Function_Call then
13373 E := Entity (Name (N2));
13374
13375 if Present (E)
13376 and then Is_Global (E)
13377 then
13378 Set_Etype (N, Etype (N2));
13379 else
13380 Set_Associated_Node (N, Empty);
13381 Set_Etype (N, Empty);
13382 end if;
13383
13384 elsif Nkind_In (N2, N_Integer_Literal,
13385 N_Real_Literal,
13386 N_String_Literal)
13387 then
13388 if Present (Original_Node (N2))
13389 and then Nkind (Original_Node (N2)) = Nkind (N)
13390 then
13391
13392 -- Operation was constant-folded. Whenever possible,
13393 -- recover semantic information from unfolded node,
13394 -- for ASIS use.
13395
13396 Set_Associated_Node (N, Original_Node (N2));
13397
13398 if Nkind (N) = N_Op_Concat then
13399 Set_Is_Component_Left_Opnd (N,
13400 Is_Component_Left_Opnd (Get_Associated_Node (N)));
13401 Set_Is_Component_Right_Opnd (N,
13402 Is_Component_Right_Opnd (Get_Associated_Node (N)));
13403 end if;
13404
13405 Reset_Entity (N);
13406
13407 else
13408 -- If original node is already modified, propagate
13409 -- constant-folding to template.
13410
13411 Rewrite (N, New_Copy (N2));
13412 Set_Analyzed (N, False);
13413 end if;
13414
13415 elsif Nkind (N2) = N_Identifier
13416 and then Ekind (Entity (N2)) = E_Enumeration_Literal
13417 then
13418 -- Same if call was folded into a literal, but in this case
13419 -- retain the entity to avoid spurious ambiguities if it is
13420 -- overloaded at the point of instantiation or inlining.
13421
13422 Rewrite (N, New_Copy (N2));
13423 Set_Analyzed (N, False);
13424 end if;
13425 end if;
13426
13427 -- Complete operands check if node has not been constant-folded
13428
13429 if Nkind (N) in N_Op then
13430 Save_Entity_Descendants (N);
13431 end if;
13432
13433 elsif Nkind (N) = N_Identifier then
13434 if Nkind (N) = Nkind (Get_Associated_Node (N)) then
13435
13436 -- If this is a discriminant reference, always save it. It is
13437 -- used in the instance to find the corresponding discriminant
13438 -- positionally rather than by name.
13439
13440 Set_Original_Discriminant
13441 (N, Original_Discriminant (Get_Associated_Node (N)));
13442 Reset_Entity (N);
13443
13444 else
13445 N2 := Get_Associated_Node (N);
13446
13447 if Nkind (N2) = N_Function_Call then
13448 E := Entity (Name (N2));
13449
13450 -- Name resolves to a call to parameterless function. If
13451 -- original entity is global, mark node as resolved.
13452
13453 if Present (E)
13454 and then Is_Global (E)
13455 then
13456 Set_Etype (N, Etype (N2));
13457 else
13458 Set_Associated_Node (N, Empty);
13459 Set_Etype (N, Empty);
13460 end if;
13461
13462 elsif Nkind_In (N2, N_Integer_Literal, N_Real_Literal)
13463 and then Is_Entity_Name (Original_Node (N2))
13464 then
13465 -- Name resolves to named number that is constant-folded,
13466 -- We must preserve the original name for ASIS use, and
13467 -- undo the constant-folding, which will be repeated in
13468 -- each instance.
13469
13470 Set_Associated_Node (N, Original_Node (N2));
13471 Reset_Entity (N);
13472
13473 elsif Nkind (N2) = N_String_Literal then
13474
13475 -- Name resolves to string literal. Perform the same
13476 -- replacement in generic.
13477
13478 Rewrite (N, New_Copy (N2));
13479
13480 elsif Nkind (N2) = N_Explicit_Dereference then
13481
13482 -- An identifier is rewritten as a dereference if it is the
13483 -- prefix in an implicit dereference (call or attribute).
13484 -- The analysis of an instantiation will expand the node
13485 -- again, so we preserve the original tree but link it to
13486 -- the resolved entity in case it is global.
13487
13488 if Is_Entity_Name (Prefix (N2))
13489 and then Present (Entity (Prefix (N2)))
13490 and then Is_Global (Entity (Prefix (N2)))
13491 then
13492 Set_Associated_Node (N, Prefix (N2));
13493
13494 elsif Nkind (Prefix (N2)) = N_Function_Call
13495 and then Is_Global (Entity (Name (Prefix (N2))))
13496 then
13497 Rewrite (N,
13498 Make_Explicit_Dereference (Loc,
13499 Prefix => Make_Function_Call (Loc,
13500 Name =>
13501 New_Occurrence_Of (Entity (Name (Prefix (N2))),
13502 Loc))));
13503
13504 else
13505 Set_Associated_Node (N, Empty);
13506 Set_Etype (N, Empty);
13507 end if;
13508
13509 -- The subtype mark of a nominally unconstrained object is
13510 -- rewritten as a subtype indication using the bounds of the
13511 -- expression. Recover the original subtype mark.
13512
13513 elsif Nkind (N2) = N_Subtype_Indication
13514 and then Is_Entity_Name (Original_Node (N2))
13515 then
13516 Set_Associated_Node (N, Original_Node (N2));
13517 Reset_Entity (N);
13518
13519 else
13520 null;
13521 end if;
13522 end if;
13523
13524 elsif Nkind (N) in N_Entity then
13525 null;
13526
13527 else
13528 declare
13529 Qual : Node_Id := Empty;
13530 Typ : Entity_Id := Empty;
13531 Nam : Node_Id;
13532
13533 use Atree.Unchecked_Access;
13534 -- This code section is part of implementing an untyped tree
13535 -- traversal, so it needs direct access to node fields.
13536
13537 begin
13538 if Nkind_In (N, N_Aggregate, N_Extension_Aggregate) then
13539 N2 := Get_Associated_Node (N);
13540
13541 if No (N2) then
13542 Typ := Empty;
13543 else
13544 Typ := Etype (N2);
13545
13546 -- In an instance within a generic, use the name of the
13547 -- actual and not the original generic parameter. If the
13548 -- actual is global in the current generic it must be
13549 -- preserved for its instantiation.
13550
13551 if Nkind (Parent (Typ)) = N_Subtype_Declaration
13552 and then
13553 Present (Generic_Parent_Type (Parent (Typ)))
13554 then
13555 Typ := Base_Type (Typ);
13556 Set_Etype (N2, Typ);
13557 end if;
13558 end if;
13559
13560 if No (N2)
13561 or else No (Typ)
13562 or else not Is_Global (Typ)
13563 then
13564 Set_Associated_Node (N, Empty);
13565
13566 -- If the aggregate is an actual in a call, it has been
13567 -- resolved in the current context, to some local type.
13568 -- The enclosing call may have been disambiguated by the
13569 -- aggregate, and this disambiguation might fail at
13570 -- instantiation time because the type to which the
13571 -- aggregate did resolve is not preserved. In order to
13572 -- preserve some of this information, we wrap the
13573 -- aggregate in a qualified expression, using the id of
13574 -- its type. For further disambiguation we qualify the
13575 -- type name with its scope (if visible) because both
13576 -- id's will have corresponding entities in an instance.
13577 -- This resolves most of the problems with missing type
13578 -- information on aggregates in instances.
13579
13580 if Nkind (N2) = Nkind (N)
13581 and then
13582 Nkind_In (Parent (N2), N_Procedure_Call_Statement,
13583 N_Function_Call)
13584 and then Comes_From_Source (Typ)
13585 then
13586 if Is_Immediately_Visible (Scope (Typ)) then
13587 Nam := Make_Selected_Component (Loc,
13588 Prefix =>
13589 Make_Identifier (Loc, Chars (Scope (Typ))),
13590 Selector_Name =>
13591 Make_Identifier (Loc, Chars (Typ)));
13592 else
13593 Nam := Make_Identifier (Loc, Chars (Typ));
13594 end if;
13595
13596 Qual :=
13597 Make_Qualified_Expression (Loc,
13598 Subtype_Mark => Nam,
13599 Expression => Relocate_Node (N));
13600 end if;
13601 end if;
13602
13603 Save_Global_Descendant (Field1 (N));
13604 Save_Global_Descendant (Field2 (N));
13605 Save_Global_Descendant (Field3 (N));
13606 Save_Global_Descendant (Field5 (N));
13607
13608 if Present (Qual) then
13609 Rewrite (N, Qual);
13610 end if;
13611
13612 -- All other cases than aggregates
13613
13614 else
13615 Save_Global_Descendant (Field1 (N));
13616 Save_Global_Descendant (Field2 (N));
13617 Save_Global_Descendant (Field3 (N));
13618 Save_Global_Descendant (Field4 (N));
13619 Save_Global_Descendant (Field5 (N));
13620 end if;
13621 end;
13622 end if;
13623
13624 -- If a node has aspects, references within their expressions must
13625 -- be saved separately, given that they are not directly in the
13626 -- tree.
13627
13628 if Has_Aspects (N) then
13629 declare
13630 Aspect : Node_Id;
13631 begin
13632 Aspect := First (Aspect_Specifications (N));
13633 while Present (Aspect) loop
13634 Save_Global_References (Expression (Aspect));
13635 Next (Aspect);
13636 end loop;
13637 end;
13638 end if;
13639 end Save_References;
13640
13641 -- Start of processing for Save_Global_References
13642
13643 begin
13644 Gen_Scope := Current_Scope;
13645
13646 -- If the generic unit is a child unit, references to entities in the
13647 -- parent are treated as local, because they will be resolved anew in
13648 -- the context of the instance of the parent.
13649
13650 while Is_Child_Unit (Gen_Scope)
13651 and then Ekind (Scope (Gen_Scope)) = E_Generic_Package
13652 loop
13653 Gen_Scope := Scope (Gen_Scope);
13654 end loop;
13655
13656 Save_References (N);
13657 end Save_Global_References;
13658
13659 --------------------------------------
13660 -- Set_Copied_Sloc_For_Inlined_Body --
13661 --------------------------------------
13662
13663 procedure Set_Copied_Sloc_For_Inlined_Body (N : Node_Id; E : Entity_Id) is
13664 begin
13665 Create_Instantiation_Source (N, E, True, S_Adjustment);
13666 end Set_Copied_Sloc_For_Inlined_Body;
13667
13668 ---------------------
13669 -- Set_Instance_Of --
13670 ---------------------
13671
13672 procedure Set_Instance_Of (A : Entity_Id; B : Entity_Id) is
13673 begin
13674 Generic_Renamings.Table (Generic_Renamings.Last) := (A, B, Assoc_Null);
13675 Generic_Renamings_HTable.Set (Generic_Renamings.Last);
13676 Generic_Renamings.Increment_Last;
13677 end Set_Instance_Of;
13678
13679 --------------------
13680 -- Set_Next_Assoc --
13681 --------------------
13682
13683 procedure Set_Next_Assoc (E : Assoc_Ptr; Next : Assoc_Ptr) is
13684 begin
13685 Generic_Renamings.Table (E).Next_In_HTable := Next;
13686 end Set_Next_Assoc;
13687
13688 -------------------
13689 -- Start_Generic --
13690 -------------------
13691
13692 procedure Start_Generic is
13693 begin
13694 -- ??? More things could be factored out in this routine.
13695 -- Should probably be done at a later stage.
13696
13697 Generic_Flags.Append (Inside_A_Generic);
13698 Inside_A_Generic := True;
13699
13700 Expander_Mode_Save_And_Set (False);
13701 end Start_Generic;
13702
13703 ----------------------
13704 -- Set_Instance_Env --
13705 ----------------------
13706
13707 procedure Set_Instance_Env
13708 (Gen_Unit : Entity_Id;
13709 Act_Unit : Entity_Id)
13710 is
13711 begin
13712 -- Regardless of the current mode, predefined units are analyzed in the
13713 -- most current Ada mode, and earlier version Ada checks do not apply
13714 -- to predefined units. Nothing needs to be done for non-internal units.
13715 -- These are always analyzed in the current mode.
13716
13717 if Is_Internal_File_Name
13718 (Fname => Unit_File_Name (Get_Source_Unit (Gen_Unit)),
13719 Renamings_Included => True)
13720 then
13721 Set_Opt_Config_Switches (True, Current_Sem_Unit = Main_Unit);
13722 end if;
13723
13724 Current_Instantiated_Parent :=
13725 (Gen_Id => Gen_Unit,
13726 Act_Id => Act_Unit,
13727 Next_In_HTable => Assoc_Null);
13728 end Set_Instance_Env;
13729
13730 -----------------
13731 -- Switch_View --
13732 -----------------
13733
13734 procedure Switch_View (T : Entity_Id) is
13735 BT : constant Entity_Id := Base_Type (T);
13736 Priv_Elmt : Elmt_Id := No_Elmt;
13737 Priv_Sub : Entity_Id;
13738
13739 begin
13740 -- T may be private but its base type may have been exchanged through
13741 -- some other occurrence, in which case there is nothing to switch
13742 -- besides T itself. Note that a private dependent subtype of a private
13743 -- type might not have been switched even if the base type has been,
13744 -- because of the last branch of Check_Private_View (see comment there).
13745
13746 if not Is_Private_Type (BT) then
13747 Prepend_Elmt (Full_View (T), Exchanged_Views);
13748 Exchange_Declarations (T);
13749 return;
13750 end if;
13751
13752 Priv_Elmt := First_Elmt (Private_Dependents (BT));
13753
13754 if Present (Full_View (BT)) then
13755 Prepend_Elmt (Full_View (BT), Exchanged_Views);
13756 Exchange_Declarations (BT);
13757 end if;
13758
13759 while Present (Priv_Elmt) loop
13760 Priv_Sub := (Node (Priv_Elmt));
13761
13762 -- We avoid flipping the subtype if the Etype of its full view is
13763 -- private because this would result in a malformed subtype. This
13764 -- occurs when the Etype of the subtype full view is the full view of
13765 -- the base type (and since the base types were just switched, the
13766 -- subtype is pointing to the wrong view). This is currently the case
13767 -- for tagged record types, access types (maybe more?) and needs to
13768 -- be resolved. ???
13769
13770 if Present (Full_View (Priv_Sub))
13771 and then not Is_Private_Type (Etype (Full_View (Priv_Sub)))
13772 then
13773 Prepend_Elmt (Full_View (Priv_Sub), Exchanged_Views);
13774 Exchange_Declarations (Priv_Sub);
13775 end if;
13776
13777 Next_Elmt (Priv_Elmt);
13778 end loop;
13779 end Switch_View;
13780
13781 -----------------
13782 -- True_Parent --
13783 -----------------
13784
13785 function True_Parent (N : Node_Id) return Node_Id is
13786 begin
13787 if Nkind (Parent (N)) = N_Subunit then
13788 return Parent (Corresponding_Stub (Parent (N)));
13789 else
13790 return Parent (N);
13791 end if;
13792 end True_Parent;
13793
13794 -----------------------------
13795 -- Valid_Default_Attribute --
13796 -----------------------------
13797
13798 procedure Valid_Default_Attribute (Nam : Entity_Id; Def : Node_Id) is
13799 Attr_Id : constant Attribute_Id :=
13800 Get_Attribute_Id (Attribute_Name (Def));
13801 T : constant Entity_Id := Entity (Prefix (Def));
13802 Is_Fun : constant Boolean := (Ekind (Nam) = E_Function);
13803 F : Entity_Id;
13804 Num_F : Int;
13805 OK : Boolean;
13806
13807 begin
13808 if No (T)
13809 or else T = Any_Id
13810 then
13811 return;
13812 end if;
13813
13814 Num_F := 0;
13815 F := First_Formal (Nam);
13816 while Present (F) loop
13817 Num_F := Num_F + 1;
13818 Next_Formal (F);
13819 end loop;
13820
13821 case Attr_Id is
13822 when Attribute_Adjacent | Attribute_Ceiling | Attribute_Copy_Sign |
13823 Attribute_Floor | Attribute_Fraction | Attribute_Machine |
13824 Attribute_Model | Attribute_Remainder | Attribute_Rounding |
13825 Attribute_Unbiased_Rounding =>
13826 OK := Is_Fun
13827 and then Num_F = 1
13828 and then Is_Floating_Point_Type (T);
13829
13830 when Attribute_Image | Attribute_Pred | Attribute_Succ |
13831 Attribute_Value | Attribute_Wide_Image |
13832 Attribute_Wide_Value =>
13833 OK := (Is_Fun and then Num_F = 1 and then Is_Scalar_Type (T));
13834
13835 when Attribute_Max | Attribute_Min =>
13836 OK := (Is_Fun and then Num_F = 2 and then Is_Scalar_Type (T));
13837
13838 when Attribute_Input =>
13839 OK := (Is_Fun and then Num_F = 1);
13840
13841 when Attribute_Output | Attribute_Read | Attribute_Write =>
13842 OK := (not Is_Fun and then Num_F = 2);
13843
13844 when others =>
13845 OK := False;
13846 end case;
13847
13848 if not OK then
13849 Error_Msg_N ("attribute reference has wrong profile for subprogram",
13850 Def);
13851 end if;
13852 end Valid_Default_Attribute;
13853
13854 end Sem_Ch12;
This page took 0.685723 seconds and 5 git commands to generate.