[multiple changes]
[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-2015, 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 Einfo; use Einfo;
29 with Elists; use Elists;
30 with Errout; use Errout;
31 with Expander; use Expander;
32 with Exp_Disp; use Exp_Disp;
33 with Fname; use Fname;
34 with Fname.UF; use Fname.UF;
35 with Freeze; use Freeze;
36 with Ghost; use Ghost;
37 with Itypes; use Itypes;
38 with Lib; use Lib;
39 with Lib.Load; use Lib.Load;
40 with Lib.Xref; use Lib.Xref;
41 with Nlists; use Nlists;
42 with Namet; use Namet;
43 with Nmake; use Nmake;
44 with Opt; use Opt;
45 with Rident; use Rident;
46 with Restrict; use Restrict;
47 with Rtsfind; use Rtsfind;
48 with Sem; use Sem;
49 with Sem_Aux; use Sem_Aux;
50 with Sem_Cat; use Sem_Cat;
51 with Sem_Ch3; use Sem_Ch3;
52 with Sem_Ch6; use Sem_Ch6;
53 with Sem_Ch7; use Sem_Ch7;
54 with Sem_Ch8; use Sem_Ch8;
55 with Sem_Ch10; use Sem_Ch10;
56 with Sem_Ch13; use Sem_Ch13;
57 with Sem_Dim; use Sem_Dim;
58 with Sem_Disp; use Sem_Disp;
59 with Sem_Elab; use Sem_Elab;
60 with Sem_Elim; use Sem_Elim;
61 with Sem_Eval; use Sem_Eval;
62 with Sem_Prag; use Sem_Prag;
63 with Sem_Res; use Sem_Res;
64 with Sem_Type; use Sem_Type;
65 with Sem_Util; use Sem_Util;
66 with Sem_Warn; use Sem_Warn;
67 with Stand; use Stand;
68 with Sinfo; use Sinfo;
69 with Sinfo.CN; use Sinfo.CN;
70 with Sinput; use Sinput;
71 with Sinput.L; use Sinput.L;
72 with Snames; use Snames;
73 with Stringt; use Stringt;
74 with Uname; use Uname;
75 with Table;
76 with Tbuild; use Tbuild;
77 with Uintp; use Uintp;
78 with Urealp; use Urealp;
79 with Warnsw; use Warnsw;
80
81 with GNAT.HTable;
82
83 package body Sem_Ch12 is
84
85 ----------------------------------------------------------
86 -- Implementation of Generic Analysis and Instantiation --
87 ----------------------------------------------------------
88
89 -- GNAT implements generics by macro expansion. No attempt is made to share
90 -- generic instantiations (for now). Analysis of a generic definition does
91 -- not perform any expansion action, but the expander must be called on the
92 -- tree for each instantiation, because the expansion may of course depend
93 -- on the generic actuals. All of this is best achieved as follows:
94 --
95 -- a) Semantic analysis of a generic unit is performed on a copy of the
96 -- tree for the generic unit. All tree modifications that follow analysis
97 -- do not affect the original tree. Links are kept between the original
98 -- tree and the copy, in order to recognize non-local references within
99 -- the generic, and propagate them to each instance (recall that name
100 -- resolution is done on the generic declaration: generics are not really
101 -- macros). This is summarized in the following diagram:
102
103 -- .-----------. .----------.
104 -- | semantic |<--------------| generic |
105 -- | copy | | unit |
106 -- | |==============>| |
107 -- |___________| global |__________|
108 -- references | | |
109 -- | | |
110 -- .-----|--|.
111 -- | .-----|---.
112 -- | | .----------.
113 -- | | | generic |
114 -- |__| | |
115 -- |__| instance |
116 -- |__________|
117
118 -- b) Each instantiation copies the original tree, and inserts into it a
119 -- series of declarations that describe the mapping between generic formals
120 -- and actuals. For example, a generic In OUT parameter is an object
121 -- renaming of the corresponding actual, etc. Generic IN parameters are
122 -- constant declarations.
123
124 -- c) In order to give the right visibility for these renamings, we use
125 -- a different scheme for package and subprogram instantiations. For
126 -- packages, the list of renamings is inserted into the package
127 -- specification, before the visible declarations of the package. The
128 -- renamings are analyzed before any of the text of the instance, and are
129 -- thus visible at the right place. Furthermore, outside of the instance,
130 -- the generic parameters are visible and denote their corresponding
131 -- actuals.
132
133 -- For subprograms, we create a container package to hold the renamings
134 -- and the subprogram instance itself. Analysis of the package makes the
135 -- renaming declarations visible to the subprogram. After analyzing the
136 -- package, the defining entity for the subprogram is touched-up so that
137 -- it appears declared in the current scope, and not inside the container
138 -- package.
139
140 -- If the instantiation is a compilation unit, the container package is
141 -- given the same name as the subprogram instance. This ensures that
142 -- the elaboration procedure called by the binder, using the compilation
143 -- unit name, calls in fact the elaboration procedure for the package.
144
145 -- Not surprisingly, private types complicate this approach. By saving in
146 -- the original generic object the non-local references, we guarantee that
147 -- the proper entities are referenced at the point of instantiation.
148 -- However, for private types, this by itself does not insure that the
149 -- proper VIEW of the entity is used (the full type may be visible at the
150 -- point of generic definition, but not at instantiation, or vice-versa).
151 -- In order to reference the proper view, we special-case any reference
152 -- to private types in the generic object, by saving both views, one in
153 -- the generic and one in the semantic copy. At time of instantiation, we
154 -- check whether the two views are consistent, and exchange declarations if
155 -- necessary, in order to restore the correct visibility. Similarly, if
156 -- the instance view is private when the generic view was not, we perform
157 -- the exchange. After completing the instantiation, we restore the
158 -- current visibility. The flag Has_Private_View marks identifiers in the
159 -- the generic unit that require checking.
160
161 -- Visibility within nested generic units requires special handling.
162 -- Consider the following scheme:
163
164 -- type Global is ... -- outside of generic unit.
165 -- generic ...
166 -- package Outer is
167 -- ...
168 -- type Semi_Global is ... -- global to inner.
169
170 -- generic ... -- 1
171 -- procedure inner (X1 : Global; X2 : Semi_Global);
172
173 -- procedure in2 is new inner (...); -- 4
174 -- end Outer;
175
176 -- package New_Outer is new Outer (...); -- 2
177 -- procedure New_Inner is new New_Outer.Inner (...); -- 3
178
179 -- The semantic analysis of Outer captures all occurrences of Global.
180 -- The semantic analysis of Inner (at 1) captures both occurrences of
181 -- Global and Semi_Global.
182
183 -- At point 2 (instantiation of Outer), we also produce a generic copy
184 -- of Inner, even though Inner is, at that point, not being instantiated.
185 -- (This is just part of the semantic analysis of New_Outer).
186
187 -- Critically, references to Global within Inner must be preserved, while
188 -- references to Semi_Global should not preserved, because they must now
189 -- resolve to an entity within New_Outer. To distinguish between these, we
190 -- use a global variable, Current_Instantiated_Parent, which is set when
191 -- performing a generic copy during instantiation (at 2). This variable is
192 -- used when performing a generic copy that is not an instantiation, but
193 -- that is nested within one, as the occurrence of 1 within 2. The analysis
194 -- of a nested generic only preserves references that are global to the
195 -- enclosing Current_Instantiated_Parent. We use the Scope_Depth value to
196 -- determine whether a reference is external to the given parent.
197
198 -- The instantiation at point 3 requires no special treatment. The method
199 -- works as well for further nestings of generic units, but of course the
200 -- variable Current_Instantiated_Parent must be stacked because nested
201 -- instantiations can occur, e.g. the occurrence of 4 within 2.
202
203 -- The instantiation of package and subprogram bodies is handled in a
204 -- similar manner, except that it is delayed until after semantic
205 -- analysis is complete. In this fashion complex cross-dependencies
206 -- between several package declarations and bodies containing generics
207 -- can be compiled which otherwise would diagnose spurious circularities.
208
209 -- For example, it is possible to compile two packages A and B that
210 -- have the following structure:
211
212 -- package A is package B is
213 -- generic ... generic ...
214 -- package G_A is package G_B is
215
216 -- with B; with A;
217 -- package body A is package body B is
218 -- package N_B is new G_B (..) package N_A is new G_A (..)
219
220 -- The table Pending_Instantiations in package Inline is used to keep
221 -- track of body instantiations that are delayed in this manner. Inline
222 -- handles the actual calls to do the body instantiations. This activity
223 -- is part of Inline, since the processing occurs at the same point, and
224 -- for essentially the same reason, as the handling of inlined routines.
225
226 ----------------------------------------------
227 -- Detection of Instantiation Circularities --
228 ----------------------------------------------
229
230 -- If we have a chain of instantiations that is circular, this is static
231 -- error which must be detected at compile time. The detection of these
232 -- circularities is carried out at the point that we insert a generic
233 -- instance spec or body. If there is a circularity, then the analysis of
234 -- the offending spec or body will eventually result in trying to load the
235 -- same unit again, and we detect this problem as we analyze the package
236 -- instantiation for the second time.
237
238 -- At least in some cases after we have detected the circularity, we get
239 -- into trouble if we try to keep going. The following flag is set if a
240 -- circularity is detected, and used to abandon compilation after the
241 -- messages have been posted.
242
243 -----------------------------------------
244 -- Implementation of Generic Contracts --
245 -----------------------------------------
246
247 -- A "contract" is a collection of aspects and pragmas that either verify a
248 -- property of a construct at runtime or classify the data flow to and from
249 -- the construct in some fashion.
250
251 -- Generic packages, subprograms and their respective bodies may be subject
252 -- to the following contract-related aspects or pragmas collectively known
253 -- as annotations:
254
255 -- package subprogram [body]
256 -- Abstract_State Contract_Cases
257 -- Initial_Condition Depends
258 -- Initializes Extensions_Visible
259 -- Global
260 -- package body Post
261 -- Refined_State Post_Class
262 -- Postcondition
263 -- Pre
264 -- Pre_Class
265 -- Precondition
266 -- Refined_Depends
267 -- Refined_Global
268 -- Refined_Post
269 -- Test_Case
270
271 -- Most package contract annotations utilize forward references to classify
272 -- data declared within the package [body]. Subprogram annotations then use
273 -- the classifications to further refine them. These inter dependencies are
274 -- problematic with respect to the implementation of generics because their
275 -- analysis, capture of global references and instantiation does not mesh
276 -- well with the existing mechanism.
277
278 -- 1) Analysis of generic contracts is carried out the same way non-generic
279 -- contracts are analyzed:
280
281 -- 1.1) General rule - a contract is analyzed after all related aspects
282 -- and pragmas are analyzed. This is done by routines
283
284 -- Analyze_Package_Body_Contract
285 -- Analyze_Package_Contract
286 -- Analyze_Subprogram_Body_Contract
287 -- Analyze_Subprogram_Contract
288
289 -- 1.2) Compilation unit - the contract is analyzed after Pragmas_After
290 -- are processed.
291
292 -- 1.3) Compilation unit body - the contract is analyzed at the end of
293 -- the body declaration list.
294
295 -- 1.4) Package - the contract is analyzed at the end of the private or
296 -- visible declarations, prior to analyzing the contracts of any nested
297 -- packages or subprograms.
298
299 -- 1.5) Package body - the contract is analyzed at the end of the body
300 -- declaration list, prior to analyzing the contracts of any nested
301 -- packages or subprograms.
302
303 -- 1.6) Subprogram - if the subprogram is declared inside a block, a
304 -- package or a subprogram, then its contract is analyzed at the end of
305 -- the enclosing declarations, otherwise the subprogram is a compilation
306 -- unit 1.2).
307
308 -- 1.7) Subprogram body - if the subprogram body is declared inside a
309 -- block, a package body or a subprogram body, then its contract is
310 -- analyzed at the end of the enclosing declarations, otherwise the
311 -- subprogram is a compilation unit 1.3).
312
313 -- 2) Capture of global references within contracts is done after capturing
314 -- global references within the generic template. There are two reasons for
315 -- this delay - pragma annotations are not part of the generic template in
316 -- the case of a generic subprogram declaration, and analysis of contracts
317 -- is delayed.
318
319 -- Contract-related source pragmas within generic templates are prepared
320 -- for delayed capture of global references by routine
321
322 -- Create_Generic_Contract
323
324 -- The routine associates these pragmas with the contract of the template.
325 -- In the case of a generic subprogram declaration, the routine creates
326 -- generic templates for the pragmas declared after the subprogram because
327 -- they are not part of the template.
328
329 -- generic -- template starts
330 -- procedure Gen_Proc (Input : Integer); -- template ends
331 -- pragma Precondition (Input > 0); -- requires own template
332
333 -- 2.1) The capture of global references with aspect specifications and
334 -- source pragmas that apply to a generic unit must be suppressed when
335 -- the generic template is being processed because the contracts have not
336 -- been analyzed yet. Any attempts to capture global references at that
337 -- point will destroy the Associated_Node linkages and leave the template
338 -- undecorated. This delay is controlled by routine
339
340 -- Requires_Delayed_Save
341
342 -- 2.2) The real capture of global references within a contract is done
343 -- after the contract has been analyzed, by routine
344
345 -- Save_Global_References_In_Contract
346
347 -- 3) The instantiation of a generic contract occurs as part of the
348 -- instantiation of the contract owner. Generic subprogram declarations
349 -- require additional processing when the contract is specified by pragmas
350 -- because the pragmas are not part of the generic template. This is done
351 -- by routine
352
353 -- Instantiate_Subprogram_Contract
354
355 Circularity_Detected : Boolean := False;
356 -- This should really be reset on encountering a new main unit, but in
357 -- practice we are not using multiple main units so it is not critical.
358
359 --------------------------------------------------
360 -- Formal packages and partial parameterization --
361 --------------------------------------------------
362
363 -- When compiling a generic, a formal package is a local instantiation. If
364 -- declared with a box, its generic formals are visible in the enclosing
365 -- generic. If declared with a partial list of actuals, those actuals that
366 -- are defaulted (covered by an Others clause, or given an explicit box
367 -- initialization) are also visible in the enclosing generic, while those
368 -- that have a corresponding actual are not.
369
370 -- In our source model of instantiation, the same visibility must be
371 -- present in the spec and body of an instance: the names of the formals
372 -- that are defaulted must be made visible within the instance, and made
373 -- invisible (hidden) after the instantiation is complete, so that they
374 -- are not accessible outside of the instance.
375
376 -- In a generic, a formal package is treated like a special instantiation.
377 -- Our Ada 95 compiler handled formals with and without box in different
378 -- ways. With partial parameterization, we use a single model for both.
379 -- We create a package declaration that consists of the specification of
380 -- the generic package, and a set of declarations that map the actuals
381 -- into local renamings, just as we do for bona fide instantiations. For
382 -- defaulted parameters and formals with a box, we copy directly the
383 -- declarations of the formal into this local package. The result is a
384 -- a package whose visible declarations may include generic formals. This
385 -- package is only used for type checking and visibility analysis, and
386 -- never reaches the back-end, so it can freely violate the placement
387 -- rules for generic formal declarations.
388
389 -- The list of declarations (renamings and copies of formals) is built
390 -- by Analyze_Associations, just as for regular instantiations.
391
392 -- At the point of instantiation, conformance checking must be applied only
393 -- to those parameters that were specified in the formal. We perform this
394 -- checking by creating another internal instantiation, this one including
395 -- only the renamings and the formals (the rest of the package spec is not
396 -- relevant to conformance checking). We can then traverse two lists: the
397 -- list of actuals in the instance that corresponds to the formal package,
398 -- and the list of actuals produced for this bogus instantiation. We apply
399 -- the conformance rules to those actuals that are not defaulted (i.e.
400 -- which still appear as generic formals.
401
402 -- When we compile an instance body we must make the right parameters
403 -- visible again. The predicate Is_Generic_Formal indicates which of the
404 -- formals should have its Is_Hidden flag reset.
405
406 -----------------------
407 -- Local subprograms --
408 -----------------------
409
410 procedure Abandon_Instantiation (N : Node_Id);
411 pragma No_Return (Abandon_Instantiation);
412 -- Posts an error message "instantiation abandoned" at the indicated node
413 -- and then raises the exception Instantiation_Error to do it.
414
415 procedure Analyze_Formal_Array_Type
416 (T : in out Entity_Id;
417 Def : Node_Id);
418 -- A formal array type is treated like an array type declaration, and
419 -- invokes Array_Type_Declaration (sem_ch3) whose first parameter is
420 -- in-out, because in the case of an anonymous type the entity is
421 -- actually created in the procedure.
422
423 -- The following procedures treat other kinds of formal parameters
424
425 procedure Analyze_Formal_Derived_Interface_Type
426 (N : Node_Id;
427 T : Entity_Id;
428 Def : Node_Id);
429
430 procedure Analyze_Formal_Derived_Type
431 (N : Node_Id;
432 T : Entity_Id;
433 Def : Node_Id);
434
435 procedure Analyze_Formal_Interface_Type
436 (N : Node_Id;
437 T : Entity_Id;
438 Def : Node_Id);
439
440 -- The following subprograms create abbreviated declarations for formal
441 -- scalar types. We introduce an anonymous base of the proper class for
442 -- each of them, and define the formals as constrained first subtypes of
443 -- their bases. The bounds are expressions that are non-static in the
444 -- generic.
445
446 procedure Analyze_Formal_Decimal_Fixed_Point_Type
447 (T : Entity_Id; Def : Node_Id);
448 procedure Analyze_Formal_Discrete_Type (T : Entity_Id; Def : Node_Id);
449 procedure Analyze_Formal_Floating_Type (T : Entity_Id; Def : Node_Id);
450 procedure Analyze_Formal_Signed_Integer_Type (T : Entity_Id; Def : Node_Id);
451 procedure Analyze_Formal_Modular_Type (T : Entity_Id; Def : Node_Id);
452 procedure Analyze_Formal_Ordinary_Fixed_Point_Type
453 (T : Entity_Id; Def : Node_Id);
454
455 procedure Analyze_Formal_Private_Type
456 (N : Node_Id;
457 T : Entity_Id;
458 Def : Node_Id);
459 -- Creates a new private type, which does not require completion
460
461 procedure Analyze_Formal_Incomplete_Type (T : Entity_Id; Def : Node_Id);
462 -- Ada 2012: Creates a new incomplete type whose actual does not freeze
463
464 procedure Analyze_Generic_Formal_Part (N : Node_Id);
465 -- Analyze generic formal part
466
467 procedure Analyze_Generic_Access_Type (T : Entity_Id; Def : Node_Id);
468 -- Create a new access type with the given designated type
469
470 function Analyze_Associations
471 (I_Node : Node_Id;
472 Formals : List_Id;
473 F_Copy : List_Id) return List_Id;
474 -- At instantiation time, build the list of associations between formals
475 -- and actuals. Each association becomes a renaming declaration for the
476 -- formal entity. F_Copy is the analyzed list of formals in the generic
477 -- copy. It is used to apply legality checks to the actuals. I_Node is the
478 -- instantiation node itself.
479
480 procedure Analyze_Subprogram_Instantiation
481 (N : Node_Id;
482 K : Entity_Kind);
483
484 procedure Build_Instance_Compilation_Unit_Nodes
485 (N : Node_Id;
486 Act_Body : Node_Id;
487 Act_Decl : Node_Id);
488 -- This procedure is used in the case where the generic instance of a
489 -- subprogram body or package body is a library unit. In this case, the
490 -- original library unit node for the generic instantiation must be
491 -- replaced by the resulting generic body, and a link made to a new
492 -- compilation unit node for the generic declaration. The argument N is
493 -- the original generic instantiation. Act_Body and Act_Decl are the body
494 -- and declaration of the instance (either package body and declaration
495 -- nodes or subprogram body and declaration nodes depending on the case).
496 -- On return, the node N has been rewritten with the actual body.
497
498 procedure Check_Access_Definition (N : Node_Id);
499 -- Subsidiary routine to null exclusion processing. Perform an assertion
500 -- check on Ada version and the presence of an access definition in N.
501
502 procedure Check_Formal_Packages (P_Id : Entity_Id);
503 -- Apply the following to all formal packages in generic associations
504
505 procedure Check_Formal_Package_Instance
506 (Formal_Pack : Entity_Id;
507 Actual_Pack : Entity_Id);
508 -- Verify that the actuals of the actual instance match the actuals of
509 -- the template for a formal package that is not declared with a box.
510
511 procedure Check_Forward_Instantiation (Decl : Node_Id);
512 -- If the generic is a local entity and the corresponding body has not
513 -- been seen yet, flag enclosing packages to indicate that it will be
514 -- elaborated after the generic body. Subprograms declared in the same
515 -- package cannot be inlined by the front-end because front-end inlining
516 -- requires a strict linear order of elaboration.
517
518 function Check_Hidden_Primitives (Assoc_List : List_Id) return Elist_Id;
519 -- Check if some association between formals and actuals requires to make
520 -- visible primitives of a tagged type, and make those primitives visible.
521 -- Return the list of primitives whose visibility is modified (to restore
522 -- their visibility later through Restore_Hidden_Primitives). If no
523 -- candidate is found then return No_Elist.
524
525 procedure Check_Hidden_Child_Unit
526 (N : Node_Id;
527 Gen_Unit : Entity_Id;
528 Act_Decl_Id : Entity_Id);
529 -- If the generic unit is an implicit child instance within a parent
530 -- instance, we need to make an explicit test that it is not hidden by
531 -- a child instance of the same name and parent.
532
533 procedure Check_Generic_Actuals
534 (Instance : Entity_Id;
535 Is_Formal_Box : Boolean);
536 -- Similar to previous one. Check the actuals in the instantiation,
537 -- whose views can change between the point of instantiation and the point
538 -- of instantiation of the body. In addition, mark the generic renamings
539 -- as generic actuals, so that they are not compatible with other actuals.
540 -- Recurse on an actual that is a formal package whose declaration has
541 -- a box.
542
543 function Contains_Instance_Of
544 (Inner : Entity_Id;
545 Outer : Entity_Id;
546 N : Node_Id) return Boolean;
547 -- Inner is instantiated within the generic Outer. Check whether Inner
548 -- directly or indirectly contains an instance of Outer or of one of its
549 -- parents, in the case of a subunit. Each generic unit holds a list of
550 -- the entities instantiated within (at any depth). This procedure
551 -- determines whether the set of such lists contains a cycle, i.e. an
552 -- illegal circular instantiation.
553
554 function Denotes_Formal_Package
555 (Pack : Entity_Id;
556 On_Exit : Boolean := False;
557 Instance : Entity_Id := Empty) return Boolean;
558 -- Returns True if E is a formal package of an enclosing generic, or
559 -- the actual for such a formal in an enclosing instantiation. If such
560 -- a package is used as a formal in an nested generic, or as an actual
561 -- in a nested instantiation, the visibility of ITS formals should not
562 -- be modified. When called from within Restore_Private_Views, the flag
563 -- On_Exit is true, to indicate that the search for a possible enclosing
564 -- instance should ignore the current one. In that case Instance denotes
565 -- the declaration for which this is an actual. This declaration may be
566 -- an instantiation in the source, or the internal instantiation that
567 -- corresponds to the actual for a formal package.
568
569 function Earlier (N1, N2 : Node_Id) return Boolean;
570 -- Yields True if N1 and N2 appear in the same compilation unit,
571 -- ignoring subunits, and if N1 is to the left of N2 in a left-to-right
572 -- traversal of the tree for the unit. Used to determine the placement
573 -- of freeze nodes for instance bodies that may depend on other instances.
574
575 function Find_Actual_Type
576 (Typ : Entity_Id;
577 Gen_Type : Entity_Id) return Entity_Id;
578 -- When validating the actual types of a child instance, check whether
579 -- the formal is a formal type of the parent unit, and retrieve the current
580 -- actual for it. Typ is the entity in the analyzed formal type declaration
581 -- (component or index type of an array type, or designated type of an
582 -- access formal) and Gen_Type is the enclosing analyzed formal array
583 -- or access type. The desired actual may be a formal of a parent, or may
584 -- be declared in a formal package of a parent. In both cases it is a
585 -- generic actual type because it appears within a visible instance.
586 -- Finally, it may be declared in a parent unit without being a formal
587 -- of that unit, in which case it must be retrieved by visibility.
588 -- Ambiguities may still arise if two homonyms are declared in two formal
589 -- packages, and the prefix of the formal type may be needed to resolve
590 -- the ambiguity in the instance ???
591
592 procedure Freeze_Subprogram_Body
593 (Inst_Node : Node_Id;
594 Gen_Body : Node_Id;
595 Pack_Id : Entity_Id);
596 -- The generic body may appear textually after the instance, including
597 -- in the proper body of a stub, or within a different package instance.
598 -- Given that the instance can only be elaborated after the generic, we
599 -- place freeze_nodes for the instance and/or for packages that may enclose
600 -- the instance and the generic, so that the back-end can establish the
601 -- proper order of elaboration.
602
603 function Get_Associated_Node (N : Node_Id) return Node_Id;
604 -- In order to propagate semantic information back from the analyzed copy
605 -- to the original generic, we maintain links between selected nodes in the
606 -- generic and their corresponding copies. At the end of generic analysis,
607 -- the routine Save_Global_References traverses the generic tree, examines
608 -- the semantic information, and preserves the links to those nodes that
609 -- contain global information. At instantiation, the information from the
610 -- associated node is placed on the new copy, so that name resolution is
611 -- not repeated.
612 --
613 -- Three kinds of source nodes have associated nodes:
614 --
615 -- a) those that can reference (denote) entities, that is identifiers,
616 -- character literals, expanded_names, operator symbols, operators,
617 -- and attribute reference nodes. These nodes have an Entity field
618 -- and are the set of nodes that are in N_Has_Entity.
619 --
620 -- b) aggregates (N_Aggregate and N_Extension_Aggregate)
621 --
622 -- c) selected components (N_Selected_Component)
623 --
624 -- For the first class, the associated node preserves the entity if it is
625 -- global. If the generic contains nested instantiations, the associated
626 -- node itself has been recopied, and a chain of them must be followed.
627 --
628 -- For aggregates, the associated node allows retrieval of the type, which
629 -- may otherwise not appear in the generic. The view of this type may be
630 -- different between generic and instantiation, and the full view can be
631 -- installed before the instantiation is analyzed. For aggregates of type
632 -- extensions, the same view exchange may have to be performed for some of
633 -- the ancestor types, if their view is private at the point of
634 -- instantiation.
635 --
636 -- Nodes that are selected components in the parse tree may be rewritten
637 -- as expanded names after resolution, and must be treated as potential
638 -- entity holders, which is why they also have an Associated_Node.
639 --
640 -- Nodes that do not come from source, such as freeze nodes, do not appear
641 -- in the generic tree, and need not have an associated node.
642 --
643 -- The associated node is stored in the Associated_Node field. Note that
644 -- this field overlaps Entity, which is fine, because the whole point is
645 -- that we don't need or want the normal Entity field in this situation.
646
647 function Has_Been_Exchanged (E : Entity_Id) return Boolean;
648 -- Traverse the Exchanged_Views list to see if a type was private
649 -- and has already been flipped during this phase of instantiation.
650
651 procedure Hide_Current_Scope;
652 -- When instantiating a generic child unit, the parent context must be
653 -- present, but the instance and all entities that may be generated
654 -- must be inserted in the current scope. We leave the current scope
655 -- on the stack, but make its entities invisible to avoid visibility
656 -- problems. This is reversed at the end of the instantiation. This is
657 -- not done for the instantiation of the bodies, which only require the
658 -- instances of the generic parents to be in scope.
659
660 function In_Same_Declarative_Part
661 (F_Node : Node_Id;
662 Inst : Node_Id) return Boolean;
663 -- True if the instantiation Inst and the given freeze_node F_Node appear
664 -- within the same declarative part, ignoring subunits, but with no inter-
665 -- vening subprograms or concurrent units. Used to find the proper plave
666 -- for the freeze node of an instance, when the generic is declared in a
667 -- previous instance. If predicate is true, the freeze node of the instance
668 -- can be placed after the freeze node of the previous instance, Otherwise
669 -- it has to be placed at the end of the current declarative part.
670
671 function In_Main_Context (E : Entity_Id) return Boolean;
672 -- Check whether an instantiation is in the context of the main unit.
673 -- Used to determine whether its body should be elaborated to allow
674 -- front-end inlining.
675
676 procedure Inherit_Context (Gen_Decl : Node_Id; Inst : Node_Id);
677 -- Add the context clause of the unit containing a generic unit to a
678 -- compilation unit that is, or contains, an instantiation.
679
680 procedure Init_Env;
681 -- Establish environment for subsequent instantiation. Separated from
682 -- Save_Env because data-structures for visibility handling must be
683 -- initialized before call to Check_Generic_Child_Unit.
684
685 procedure Inline_Instance_Body
686 (N : Node_Id;
687 Gen_Unit : Entity_Id;
688 Act_Decl : Node_Id);
689 -- If front-end inlining is requested, instantiate the package body,
690 -- and preserve the visibility of its compilation unit, to insure
691 -- that successive instantiations succeed.
692
693 procedure Insert_Freeze_Node_For_Instance
694 (N : Node_Id;
695 F_Node : Node_Id);
696 -- N denotes a package or a subprogram instantiation and F_Node is the
697 -- associated freeze node. Insert the freeze node before the first source
698 -- body which follows immediately after N. If no such body is found, the
699 -- freeze node is inserted at the end of the declarative region which
700 -- contains N.
701
702 procedure Install_Body
703 (Act_Body : Node_Id;
704 N : Node_Id;
705 Gen_Body : Node_Id;
706 Gen_Decl : Node_Id);
707 -- If the instantiation happens textually before the body of the generic,
708 -- the instantiation of the body must be analyzed after the generic body,
709 -- and not at the point of instantiation. Such early instantiations can
710 -- happen if the generic and the instance appear in a package declaration
711 -- because the generic body can only appear in the corresponding package
712 -- body. Early instantiations can also appear if generic, instance and
713 -- body are all in the declarative part of a subprogram or entry. Entities
714 -- of packages that are early instantiations are delayed, and their freeze
715 -- node appears after the generic body.
716
717 procedure Install_Formal_Packages (Par : Entity_Id);
718 -- Install the visible part of any formal of the parent that is a formal
719 -- package. Note that for the case of a formal package with a box, this
720 -- includes the formal part of the formal package (12.7(10/2)).
721
722 procedure Install_Hidden_Primitives
723 (Prims_List : in out Elist_Id;
724 Gen_T : Entity_Id;
725 Act_T : Entity_Id);
726 -- Remove suffix 'P' from hidden primitives of Act_T to match the
727 -- visibility of primitives of Gen_T. The list of primitives to which
728 -- the suffix is removed is added to Prims_List to restore them later.
729
730 procedure Install_Parent (P : Entity_Id; In_Body : Boolean := False);
731 -- When compiling an instance of a child unit the parent (which is
732 -- itself an instance) is an enclosing scope that must be made
733 -- immediately visible. This procedure is also used to install the non-
734 -- generic parent of a generic child unit when compiling its body, so
735 -- that full views of types in the parent are made visible.
736
737 -- The functions Instantiate_XXX perform various legality checks and build
738 -- the declarations for instantiated generic parameters. In all of these
739 -- Formal is the entity in the generic unit, Actual is the entity of
740 -- expression in the generic associations, and Analyzed_Formal is the
741 -- formal in the generic copy, which contains the semantic information to
742 -- be used to validate the actual.
743
744 function Instantiate_Object
745 (Formal : Node_Id;
746 Actual : Node_Id;
747 Analyzed_Formal : Node_Id) return List_Id;
748
749 function Instantiate_Type
750 (Formal : Node_Id;
751 Actual : Node_Id;
752 Analyzed_Formal : Node_Id;
753 Actual_Decls : List_Id) return List_Id;
754
755 function Instantiate_Formal_Subprogram
756 (Formal : Node_Id;
757 Actual : Node_Id;
758 Analyzed_Formal : Node_Id) return Node_Id;
759
760 function Instantiate_Formal_Package
761 (Formal : Node_Id;
762 Actual : Node_Id;
763 Analyzed_Formal : Node_Id) return List_Id;
764 -- If the formal package is declared with a box, special visibility rules
765 -- apply to its formals: they are in the visible part of the package. This
766 -- is true in the declarative region of the formal package, that is to say
767 -- in the enclosing generic or instantiation. For an instantiation, the
768 -- parameters of the formal package are made visible in an explicit step.
769 -- Furthermore, if the actual has a visible USE clause, these formals must
770 -- be made potentially use-visible as well. On exit from the enclosing
771 -- instantiation, the reverse must be done.
772
773 -- For a formal package declared without a box, there are conformance rules
774 -- that apply to the actuals in the generic declaration and the actuals of
775 -- the actual package in the enclosing instantiation. The simplest way to
776 -- apply these rules is to repeat the instantiation of the formal package
777 -- in the context of the enclosing instance, and compare the generic
778 -- associations of this instantiation with those of the actual package.
779 -- This internal instantiation only needs to contain the renamings of the
780 -- formals: the visible and private declarations themselves need not be
781 -- created.
782
783 -- In Ada 2005, the formal package may be only partially parameterized.
784 -- In that case the visibility step must make visible those actuals whose
785 -- corresponding formals were given with a box. A final complication
786 -- involves inherited operations from formal derived types, which must
787 -- be visible if the type is.
788
789 function Is_In_Main_Unit (N : Node_Id) return Boolean;
790 -- Test if given node is in the main unit
791
792 procedure Load_Parent_Of_Generic
793 (N : Node_Id;
794 Spec : Node_Id;
795 Body_Optional : Boolean := False);
796 -- If the generic appears in a separate non-generic library unit, load the
797 -- corresponding body to retrieve the body of the generic. N is the node
798 -- for the generic instantiation, Spec is the generic package declaration.
799 --
800 -- Body_Optional is a flag that indicates that the body is being loaded to
801 -- ensure that temporaries are generated consistently when there are other
802 -- instances in the current declarative part that precede the one being
803 -- loaded. In that case a missing body is acceptable.
804
805 procedure Map_Formal_Package_Entities (Form : Entity_Id; Act : Entity_Id);
806 -- Within the generic part, entities in the formal package are
807 -- visible. To validate subsequent type declarations, indicate
808 -- the correspondence between the entities in the analyzed formal,
809 -- and the entities in the actual package. There are three packages
810 -- involved in the instantiation of a formal package: the parent
811 -- generic P1 which appears in the generic declaration, the fake
812 -- instantiation P2 which appears in the analyzed generic, and whose
813 -- visible entities may be used in subsequent formals, and the actual
814 -- P3 in the instance. To validate subsequent formals, me indicate
815 -- that the entities in P2 are mapped into those of P3. The mapping of
816 -- entities has to be done recursively for nested packages.
817
818 procedure Move_Freeze_Nodes
819 (Out_Of : Entity_Id;
820 After : Node_Id;
821 L : List_Id);
822 -- Freeze nodes can be generated in the analysis of a generic unit, but
823 -- will not be seen by the back-end. It is necessary to move those nodes
824 -- to the enclosing scope if they freeze an outer entity. We place them
825 -- at the end of the enclosing generic package, which is semantically
826 -- neutral.
827
828 procedure Preanalyze_Actuals (N : Node_Id; Inst : Entity_Id := Empty);
829 -- Analyze actuals to perform name resolution. Full resolution is done
830 -- later, when the expected types are known, but names have to be captured
831 -- before installing parents of generics, that are not visible for the
832 -- actuals themselves.
833 --
834 -- If Inst is present, it is the entity of the package instance. This
835 -- entity is marked as having a limited_view actual when some actual is
836 -- a limited view. This is used to place the instance body properly.
837
838 procedure Remove_Parent (In_Body : Boolean := False);
839 -- Reverse effect after instantiation of child is complete
840
841 procedure Restore_Hidden_Primitives (Prims_List : in out Elist_Id);
842 -- Restore suffix 'P' to primitives of Prims_List and leave Prims_List
843 -- set to No_Elist.
844
845 procedure Save_Global_References_In_Aspects (N : Node_Id);
846 -- Save all global references found within the expressions of all aspects
847 -- that appear on node N.
848
849 procedure Set_Instance_Env
850 (Gen_Unit : Entity_Id;
851 Act_Unit : Entity_Id);
852 -- Save current instance on saved environment, to be used to determine
853 -- the global status of entities in nested instances. Part of Save_Env.
854 -- called after verifying that the generic unit is legal for the instance,
855 -- The procedure also examines whether the generic unit is a predefined
856 -- unit, in order to set configuration switches accordingly. As a result
857 -- the procedure must be called after analyzing and freezing the actuals.
858
859 procedure Set_Instance_Of (A : Entity_Id; B : Entity_Id);
860 -- Associate analyzed generic parameter with corresponding instance. Used
861 -- for semantic checks at instantiation time.
862
863 function True_Parent (N : Node_Id) return Node_Id;
864 -- For a subunit, return parent of corresponding stub, else return
865 -- parent of node.
866
867 procedure Valid_Default_Attribute (Nam : Entity_Id; Def : Node_Id);
868 -- Verify that an attribute that appears as the default for a formal
869 -- subprogram is a function or procedure with the correct profile.
870
871 -------------------------------------------
872 -- Data Structures for Generic Renamings --
873 -------------------------------------------
874
875 -- The map Generic_Renamings associates generic entities with their
876 -- corresponding actuals. Currently used to validate type instances. It
877 -- will eventually be used for all generic parameters to eliminate the
878 -- need for overload resolution in the instance.
879
880 type Assoc_Ptr is new Int;
881
882 Assoc_Null : constant Assoc_Ptr := -1;
883
884 type Assoc is record
885 Gen_Id : Entity_Id;
886 Act_Id : Entity_Id;
887 Next_In_HTable : Assoc_Ptr;
888 end record;
889
890 package Generic_Renamings is new Table.Table
891 (Table_Component_Type => Assoc,
892 Table_Index_Type => Assoc_Ptr,
893 Table_Low_Bound => 0,
894 Table_Initial => 10,
895 Table_Increment => 100,
896 Table_Name => "Generic_Renamings");
897
898 -- Variable to hold enclosing instantiation. When the environment is
899 -- saved for a subprogram inlining, the corresponding Act_Id is empty.
900
901 Current_Instantiated_Parent : Assoc := (Empty, Empty, Assoc_Null);
902
903 -- Hash table for associations
904
905 HTable_Size : constant := 37;
906 type HTable_Range is range 0 .. HTable_Size - 1;
907
908 procedure Set_Next_Assoc (E : Assoc_Ptr; Next : Assoc_Ptr);
909 function Next_Assoc (E : Assoc_Ptr) return Assoc_Ptr;
910 function Get_Gen_Id (E : Assoc_Ptr) return Entity_Id;
911 function Hash (F : Entity_Id) return HTable_Range;
912
913 package Generic_Renamings_HTable is new GNAT.HTable.Static_HTable (
914 Header_Num => HTable_Range,
915 Element => Assoc,
916 Elmt_Ptr => Assoc_Ptr,
917 Null_Ptr => Assoc_Null,
918 Set_Next => Set_Next_Assoc,
919 Next => Next_Assoc,
920 Key => Entity_Id,
921 Get_Key => Get_Gen_Id,
922 Hash => Hash,
923 Equal => "=");
924
925 Exchanged_Views : Elist_Id;
926 -- This list holds the private views that have been exchanged during
927 -- instantiation to restore the visibility of the generic declaration.
928 -- (see comments above). After instantiation, the current visibility is
929 -- reestablished by means of a traversal of this list.
930
931 Hidden_Entities : Elist_Id;
932 -- This list holds the entities of the current scope that are removed
933 -- from immediate visibility when instantiating a child unit. Their
934 -- visibility is restored in Remove_Parent.
935
936 -- Because instantiations can be recursive, the following must be saved
937 -- on entry and restored on exit from an instantiation (spec or body).
938 -- This is done by the two procedures Save_Env and Restore_Env. For
939 -- package and subprogram instantiations (but not for the body instances)
940 -- the action of Save_Env is done in two steps: Init_Env is called before
941 -- Check_Generic_Child_Unit, because setting the parent instances requires
942 -- that the visibility data structures be properly initialized. Once the
943 -- generic is unit is validated, Set_Instance_Env completes Save_Env.
944
945 Parent_Unit_Visible : Boolean := False;
946 -- Parent_Unit_Visible is used when the generic is a child unit, and
947 -- indicates whether the ultimate parent of the generic is visible in the
948 -- instantiation environment. It is used to reset the visibility of the
949 -- parent at the end of the instantiation (see Remove_Parent).
950
951 Instance_Parent_Unit : Entity_Id := Empty;
952 -- This records the ultimate parent unit of an instance of a generic
953 -- child unit and is used in conjunction with Parent_Unit_Visible to
954 -- indicate the unit to which the Parent_Unit_Visible flag corresponds.
955
956 type Instance_Env is record
957 Instantiated_Parent : Assoc;
958 Exchanged_Views : Elist_Id;
959 Hidden_Entities : Elist_Id;
960 Current_Sem_Unit : Unit_Number_Type;
961 Parent_Unit_Visible : Boolean := False;
962 Instance_Parent_Unit : Entity_Id := Empty;
963 Switches : Config_Switches_Type;
964 end record;
965
966 package Instance_Envs is new Table.Table (
967 Table_Component_Type => Instance_Env,
968 Table_Index_Type => Int,
969 Table_Low_Bound => 0,
970 Table_Initial => 32,
971 Table_Increment => 100,
972 Table_Name => "Instance_Envs");
973
974 procedure Restore_Private_Views
975 (Pack_Id : Entity_Id;
976 Is_Package : Boolean := True);
977 -- Restore the private views of external types, and unmark the generic
978 -- renamings of actuals, so that they become compatible subtypes again.
979 -- For subprograms, Pack_Id is the package constructed to hold the
980 -- renamings.
981
982 procedure Switch_View (T : Entity_Id);
983 -- Switch the partial and full views of a type and its private
984 -- dependents (i.e. its subtypes and derived types).
985
986 ------------------------------------
987 -- Structures for Error Reporting --
988 ------------------------------------
989
990 Instantiation_Node : Node_Id;
991 -- Used by subprograms that validate instantiation of formal parameters
992 -- where there might be no actual on which to place the error message.
993 -- Also used to locate the instantiation node for generic subunits.
994
995 Instantiation_Error : exception;
996 -- When there is a semantic error in the generic parameter matching,
997 -- there is no point in continuing the instantiation, because the
998 -- number of cascaded errors is unpredictable. This exception aborts
999 -- the instantiation process altogether.
1000
1001 S_Adjustment : Sloc_Adjustment;
1002 -- Offset created for each node in an instantiation, in order to keep
1003 -- track of the source position of the instantiation in each of its nodes.
1004 -- A subsequent semantic error or warning on a construct of the instance
1005 -- points to both places: the original generic node, and the point of
1006 -- instantiation. See Sinput and Sinput.L for additional details.
1007
1008 ------------------------------------------------------------
1009 -- Data structure for keeping track when inside a Generic --
1010 ------------------------------------------------------------
1011
1012 -- The following table is used to save values of the Inside_A_Generic
1013 -- flag (see spec of Sem) when they are saved by Start_Generic.
1014
1015 package Generic_Flags is new Table.Table (
1016 Table_Component_Type => Boolean,
1017 Table_Index_Type => Int,
1018 Table_Low_Bound => 0,
1019 Table_Initial => 32,
1020 Table_Increment => 200,
1021 Table_Name => "Generic_Flags");
1022
1023 ---------------------------
1024 -- Abandon_Instantiation --
1025 ---------------------------
1026
1027 procedure Abandon_Instantiation (N : Node_Id) is
1028 begin
1029 Error_Msg_N ("\instantiation abandoned!", N);
1030 raise Instantiation_Error;
1031 end Abandon_Instantiation;
1032
1033 --------------------------
1034 -- Analyze_Associations --
1035 --------------------------
1036
1037 function Analyze_Associations
1038 (I_Node : Node_Id;
1039 Formals : List_Id;
1040 F_Copy : List_Id) return List_Id
1041 is
1042 Actuals_To_Freeze : constant Elist_Id := New_Elmt_List;
1043 Assoc : constant List_Id := New_List;
1044 Default_Actuals : constant List_Id := New_List;
1045 Gen_Unit : constant Entity_Id :=
1046 Defining_Entity (Parent (F_Copy));
1047
1048 Actuals : List_Id;
1049 Actual : Node_Id;
1050 Analyzed_Formal : Node_Id;
1051 First_Named : Node_Id := Empty;
1052 Formal : Node_Id;
1053 Match : Node_Id;
1054 Named : Node_Id;
1055 Saved_Formal : Node_Id;
1056
1057 Default_Formals : constant List_Id := New_List;
1058 -- If an Others_Choice is present, some of the formals may be defaulted.
1059 -- To simplify the treatment of visibility in an instance, we introduce
1060 -- individual defaults for each such formal. These defaults are
1061 -- appended to the list of associations and replace the Others_Choice.
1062
1063 Found_Assoc : Node_Id;
1064 -- Association for the current formal being match. Empty if there are
1065 -- no remaining actuals, or if there is no named association with the
1066 -- name of the formal.
1067
1068 Is_Named_Assoc : Boolean;
1069 Num_Matched : Int := 0;
1070 Num_Actuals : Int := 0;
1071
1072 Others_Present : Boolean := False;
1073 Others_Choice : Node_Id := Empty;
1074 -- In Ada 2005, indicates partial parameterization of a formal
1075 -- package. As usual an other association must be last in the list.
1076
1077 procedure Check_Overloaded_Formal_Subprogram (Formal : Entity_Id);
1078 -- Apply RM 12.3(9): if a formal subprogram is overloaded, the instance
1079 -- cannot have a named association for it. AI05-0025 extends this rule
1080 -- to formals of formal packages by AI05-0025, and it also applies to
1081 -- box-initialized formals.
1082
1083 function Has_Fully_Defined_Profile (Subp : Entity_Id) return Boolean;
1084 -- Determine whether the parameter types and the return type of Subp
1085 -- are fully defined at the point of instantiation.
1086
1087 function Matching_Actual
1088 (F : Entity_Id;
1089 A_F : Entity_Id) return Node_Id;
1090 -- Find actual that corresponds to a given a formal parameter. If the
1091 -- actuals are positional, return the next one, if any. If the actuals
1092 -- are named, scan the parameter associations to find the right one.
1093 -- A_F is the corresponding entity in the analyzed generic,which is
1094 -- placed on the selector name for ASIS use.
1095 --
1096 -- In Ada 2005, a named association may be given with a box, in which
1097 -- case Matching_Actual sets Found_Assoc to the generic association,
1098 -- but return Empty for the actual itself. In this case the code below
1099 -- creates a corresponding declaration for the formal.
1100
1101 function Partial_Parameterization return Boolean;
1102 -- Ada 2005: if no match is found for a given formal, check if the
1103 -- association for it includes a box, or whether the associations
1104 -- include an Others clause.
1105
1106 procedure Process_Default (F : Entity_Id);
1107 -- Add a copy of the declaration of generic formal F to the list of
1108 -- associations, and add an explicit box association for F if there
1109 -- is none yet, and the default comes from an Others_Choice.
1110
1111 function Renames_Standard_Subprogram (Subp : Entity_Id) return Boolean;
1112 -- Determine whether Subp renames one of the subprograms defined in the
1113 -- generated package Standard.
1114
1115 procedure Set_Analyzed_Formal;
1116 -- Find the node in the generic copy that corresponds to a given formal.
1117 -- The semantic information on this node is used to perform legality
1118 -- checks on the actuals. Because semantic analysis can introduce some
1119 -- anonymous entities or modify the declaration node itself, the
1120 -- correspondence between the two lists is not one-one. In addition to
1121 -- anonymous types, the presence a formal equality will introduce an
1122 -- implicit declaration for the corresponding inequality.
1123
1124 ----------------------------------------
1125 -- Check_Overloaded_Formal_Subprogram --
1126 ----------------------------------------
1127
1128 procedure Check_Overloaded_Formal_Subprogram (Formal : Entity_Id) is
1129 Temp_Formal : Entity_Id;
1130
1131 begin
1132 Temp_Formal := First (Formals);
1133 while Present (Temp_Formal) loop
1134 if Nkind (Temp_Formal) in N_Formal_Subprogram_Declaration
1135 and then Temp_Formal /= Formal
1136 and then
1137 Chars (Defining_Unit_Name (Specification (Formal))) =
1138 Chars (Defining_Unit_Name (Specification (Temp_Formal)))
1139 then
1140 if Present (Found_Assoc) then
1141 Error_Msg_N
1142 ("named association not allowed for overloaded formal",
1143 Found_Assoc);
1144
1145 else
1146 Error_Msg_N
1147 ("named association not allowed for overloaded formal",
1148 Others_Choice);
1149 end if;
1150
1151 Abandon_Instantiation (Instantiation_Node);
1152 end if;
1153
1154 Next (Temp_Formal);
1155 end loop;
1156 end Check_Overloaded_Formal_Subprogram;
1157
1158 -------------------------------
1159 -- Has_Fully_Defined_Profile --
1160 -------------------------------
1161
1162 function Has_Fully_Defined_Profile (Subp : Entity_Id) return Boolean is
1163 function Is_Fully_Defined_Type (Typ : Entity_Id) return Boolean;
1164 -- Determine whethet type Typ is fully defined
1165
1166 ---------------------------
1167 -- Is_Fully_Defined_Type --
1168 ---------------------------
1169
1170 function Is_Fully_Defined_Type (Typ : Entity_Id) return Boolean is
1171 begin
1172 -- A private type without a full view is not fully defined
1173
1174 if Is_Private_Type (Typ)
1175 and then No (Full_View (Typ))
1176 then
1177 return False;
1178
1179 -- An incomplete type is never fully defined
1180
1181 elsif Is_Incomplete_Type (Typ) then
1182 return False;
1183
1184 -- All other types are fully defined
1185
1186 else
1187 return True;
1188 end if;
1189 end Is_Fully_Defined_Type;
1190
1191 -- Local declarations
1192
1193 Param : Entity_Id;
1194
1195 -- Start of processing for Has_Fully_Defined_Profile
1196
1197 begin
1198 -- Check the parameters
1199
1200 Param := First_Formal (Subp);
1201 while Present (Param) loop
1202 if not Is_Fully_Defined_Type (Etype (Param)) then
1203 return False;
1204 end if;
1205
1206 Next_Formal (Param);
1207 end loop;
1208
1209 -- Check the return type
1210
1211 return Is_Fully_Defined_Type (Etype (Subp));
1212 end Has_Fully_Defined_Profile;
1213
1214 ---------------------
1215 -- Matching_Actual --
1216 ---------------------
1217
1218 function Matching_Actual
1219 (F : Entity_Id;
1220 A_F : Entity_Id) return Node_Id
1221 is
1222 Prev : Node_Id;
1223 Act : Node_Id;
1224
1225 begin
1226 Is_Named_Assoc := False;
1227
1228 -- End of list of purely positional parameters
1229
1230 if No (Actual) or else Nkind (Actual) = N_Others_Choice then
1231 Found_Assoc := Empty;
1232 Act := Empty;
1233
1234 -- Case of positional parameter corresponding to current formal
1235
1236 elsif No (Selector_Name (Actual)) then
1237 Found_Assoc := Actual;
1238 Act := Explicit_Generic_Actual_Parameter (Actual);
1239 Num_Matched := Num_Matched + 1;
1240 Next (Actual);
1241
1242 -- Otherwise scan list of named actuals to find the one with the
1243 -- desired name. All remaining actuals have explicit names.
1244
1245 else
1246 Is_Named_Assoc := True;
1247 Found_Assoc := Empty;
1248 Act := Empty;
1249 Prev := Empty;
1250
1251 while Present (Actual) loop
1252 if Chars (Selector_Name (Actual)) = Chars (F) then
1253 Set_Entity (Selector_Name (Actual), A_F);
1254 Set_Etype (Selector_Name (Actual), Etype (A_F));
1255 Generate_Reference (A_F, Selector_Name (Actual));
1256 Found_Assoc := Actual;
1257 Act := Explicit_Generic_Actual_Parameter (Actual);
1258 Num_Matched := Num_Matched + 1;
1259 exit;
1260 end if;
1261
1262 Prev := Actual;
1263 Next (Actual);
1264 end loop;
1265
1266 -- Reset for subsequent searches. In most cases the named
1267 -- associations are in order. If they are not, we reorder them
1268 -- to avoid scanning twice the same actual. This is not just a
1269 -- question of efficiency: there may be multiple defaults with
1270 -- boxes that have the same name. In a nested instantiation we
1271 -- insert actuals for those defaults, and cannot rely on their
1272 -- names to disambiguate them.
1273
1274 if Actual = First_Named then
1275 Next (First_Named);
1276
1277 elsif Present (Actual) then
1278 Insert_Before (First_Named, Remove_Next (Prev));
1279 end if;
1280
1281 Actual := First_Named;
1282 end if;
1283
1284 if Is_Entity_Name (Act) and then Present (Entity (Act)) then
1285 Set_Used_As_Generic_Actual (Entity (Act));
1286 end if;
1287
1288 return Act;
1289 end Matching_Actual;
1290
1291 ------------------------------
1292 -- Partial_Parameterization --
1293 ------------------------------
1294
1295 function Partial_Parameterization return Boolean is
1296 begin
1297 return Others_Present
1298 or else (Present (Found_Assoc) and then Box_Present (Found_Assoc));
1299 end Partial_Parameterization;
1300
1301 ---------------------
1302 -- Process_Default --
1303 ---------------------
1304
1305 procedure Process_Default (F : Entity_Id) is
1306 Loc : constant Source_Ptr := Sloc (I_Node);
1307 F_Id : constant Entity_Id := Defining_Entity (F);
1308 Decl : Node_Id;
1309 Default : Node_Id;
1310 Id : Entity_Id;
1311
1312 begin
1313 -- Append copy of formal declaration to associations, and create new
1314 -- defining identifier for it.
1315
1316 Decl := New_Copy_Tree (F);
1317 Id := Make_Defining_Identifier (Sloc (F_Id), Chars (F_Id));
1318
1319 if Nkind (F) in N_Formal_Subprogram_Declaration then
1320 Set_Defining_Unit_Name (Specification (Decl), Id);
1321
1322 else
1323 Set_Defining_Identifier (Decl, Id);
1324 end if;
1325
1326 Append (Decl, Assoc);
1327
1328 if No (Found_Assoc) then
1329 Default :=
1330 Make_Generic_Association (Loc,
1331 Selector_Name =>
1332 New_Occurrence_Of (Id, Loc),
1333 Explicit_Generic_Actual_Parameter => Empty);
1334 Set_Box_Present (Default);
1335 Append (Default, Default_Formals);
1336 end if;
1337 end Process_Default;
1338
1339 ---------------------------------
1340 -- Renames_Standard_Subprogram --
1341 ---------------------------------
1342
1343 function Renames_Standard_Subprogram (Subp : Entity_Id) return Boolean is
1344 Id : Entity_Id;
1345
1346 begin
1347 Id := Alias (Subp);
1348 while Present (Id) loop
1349 if Scope (Id) = Standard_Standard then
1350 return True;
1351 end if;
1352
1353 Id := Alias (Id);
1354 end loop;
1355
1356 return False;
1357 end Renames_Standard_Subprogram;
1358
1359 -------------------------
1360 -- Set_Analyzed_Formal --
1361 -------------------------
1362
1363 procedure Set_Analyzed_Formal is
1364 Kind : Node_Kind;
1365
1366 begin
1367 while Present (Analyzed_Formal) loop
1368 Kind := Nkind (Analyzed_Formal);
1369
1370 case Nkind (Formal) is
1371
1372 when N_Formal_Subprogram_Declaration =>
1373 exit when Kind in N_Formal_Subprogram_Declaration
1374 and then
1375 Chars
1376 (Defining_Unit_Name (Specification (Formal))) =
1377 Chars
1378 (Defining_Unit_Name (Specification (Analyzed_Formal)));
1379
1380 when N_Formal_Package_Declaration =>
1381 exit when Nkind_In (Kind, N_Formal_Package_Declaration,
1382 N_Generic_Package_Declaration,
1383 N_Package_Declaration);
1384
1385 when N_Use_Package_Clause | N_Use_Type_Clause => exit;
1386
1387 when others =>
1388
1389 -- Skip freeze nodes, and nodes inserted to replace
1390 -- unrecognized pragmas.
1391
1392 exit when
1393 Kind not in N_Formal_Subprogram_Declaration
1394 and then not Nkind_In (Kind, N_Subprogram_Declaration,
1395 N_Freeze_Entity,
1396 N_Null_Statement,
1397 N_Itype_Reference)
1398 and then Chars (Defining_Identifier (Formal)) =
1399 Chars (Defining_Identifier (Analyzed_Formal));
1400 end case;
1401
1402 Next (Analyzed_Formal);
1403 end loop;
1404 end Set_Analyzed_Formal;
1405
1406 -- Start of processing for Analyze_Associations
1407
1408 begin
1409 Actuals := Generic_Associations (I_Node);
1410
1411 if Present (Actuals) then
1412
1413 -- Check for an Others choice, indicating a partial parameterization
1414 -- for a formal package.
1415
1416 Actual := First (Actuals);
1417 while Present (Actual) loop
1418 if Nkind (Actual) = N_Others_Choice then
1419 Others_Present := True;
1420 Others_Choice := Actual;
1421
1422 if Present (Next (Actual)) then
1423 Error_Msg_N ("others must be last association", Actual);
1424 end if;
1425
1426 -- This subprogram is used both for formal packages and for
1427 -- instantiations. For the latter, associations must all be
1428 -- explicit.
1429
1430 if Nkind (I_Node) /= N_Formal_Package_Declaration
1431 and then Comes_From_Source (I_Node)
1432 then
1433 Error_Msg_N
1434 ("others association not allowed in an instance",
1435 Actual);
1436 end if;
1437
1438 -- In any case, nothing to do after the others association
1439
1440 exit;
1441
1442 elsif Box_Present (Actual)
1443 and then Comes_From_Source (I_Node)
1444 and then Nkind (I_Node) /= N_Formal_Package_Declaration
1445 then
1446 Error_Msg_N
1447 ("box association not allowed in an instance", Actual);
1448 end if;
1449
1450 Next (Actual);
1451 end loop;
1452
1453 -- If named associations are present, save first named association
1454 -- (it may of course be Empty) to facilitate subsequent name search.
1455
1456 First_Named := First (Actuals);
1457 while Present (First_Named)
1458 and then Nkind (First_Named) /= N_Others_Choice
1459 and then No (Selector_Name (First_Named))
1460 loop
1461 Num_Actuals := Num_Actuals + 1;
1462 Next (First_Named);
1463 end loop;
1464 end if;
1465
1466 Named := First_Named;
1467 while Present (Named) loop
1468 if Nkind (Named) /= N_Others_Choice
1469 and then No (Selector_Name (Named))
1470 then
1471 Error_Msg_N ("invalid positional actual after named one", Named);
1472 Abandon_Instantiation (Named);
1473 end if;
1474
1475 -- A named association may lack an actual parameter, if it was
1476 -- introduced for a default subprogram that turns out to be local
1477 -- to the outer instantiation.
1478
1479 if Nkind (Named) /= N_Others_Choice
1480 and then Present (Explicit_Generic_Actual_Parameter (Named))
1481 then
1482 Num_Actuals := Num_Actuals + 1;
1483 end if;
1484
1485 Next (Named);
1486 end loop;
1487
1488 if Present (Formals) then
1489 Formal := First_Non_Pragma (Formals);
1490 Analyzed_Formal := First_Non_Pragma (F_Copy);
1491
1492 if Present (Actuals) then
1493 Actual := First (Actuals);
1494
1495 -- All formals should have default values
1496
1497 else
1498 Actual := Empty;
1499 end if;
1500
1501 while Present (Formal) loop
1502 Set_Analyzed_Formal;
1503 Saved_Formal := Next_Non_Pragma (Formal);
1504
1505 case Nkind (Formal) is
1506 when N_Formal_Object_Declaration =>
1507 Match :=
1508 Matching_Actual
1509 (Defining_Identifier (Formal),
1510 Defining_Identifier (Analyzed_Formal));
1511
1512 if No (Match) and then Partial_Parameterization then
1513 Process_Default (Formal);
1514
1515 else
1516 Append_List
1517 (Instantiate_Object (Formal, Match, Analyzed_Formal),
1518 Assoc);
1519
1520 -- For a defaulted in_parameter, create an entry in the
1521 -- the list of defaulted actuals, for GNATProve use. Do
1522 -- not included these defaults for an instance nested
1523 -- within a generic, because the defaults are also used
1524 -- in the analysis of the enclosing generic, and only
1525 -- defaulted subprograms are relevant there.
1526
1527 if No (Match) and then not Inside_A_Generic then
1528 Append_To (Default_Actuals,
1529 Make_Generic_Association (Sloc (I_Node),
1530 Selector_Name =>
1531 New_Occurrence_Of
1532 (Defining_Identifier (Formal), Sloc (I_Node)),
1533 Explicit_Generic_Actual_Parameter =>
1534 New_Copy_Tree (Default_Expression (Formal))));
1535 end if;
1536 end if;
1537
1538 -- If the object is a call to an expression function, this
1539 -- is a freezing point for it.
1540
1541 if Is_Entity_Name (Match)
1542 and then Present (Entity (Match))
1543 and then Nkind
1544 (Original_Node (Unit_Declaration_Node (Entity (Match))))
1545 = N_Expression_Function
1546 then
1547 Append_Elmt (Entity (Match), Actuals_To_Freeze);
1548 end if;
1549
1550 when N_Formal_Type_Declaration =>
1551 Match :=
1552 Matching_Actual
1553 (Defining_Identifier (Formal),
1554 Defining_Identifier (Analyzed_Formal));
1555
1556 if No (Match) then
1557 if Partial_Parameterization then
1558 Process_Default (Formal);
1559
1560 else
1561 Error_Msg_Sloc := Sloc (Gen_Unit);
1562 Error_Msg_NE
1563 ("missing actual&",
1564 Instantiation_Node, Defining_Identifier (Formal));
1565 Error_Msg_NE
1566 ("\in instantiation of & declared#",
1567 Instantiation_Node, Gen_Unit);
1568 Abandon_Instantiation (Instantiation_Node);
1569 end if;
1570
1571 else
1572 Analyze (Match);
1573 Append_List
1574 (Instantiate_Type
1575 (Formal, Match, Analyzed_Formal, Assoc),
1576 Assoc);
1577
1578 -- An instantiation is a freeze point for the actuals,
1579 -- unless this is a rewritten formal package, or the
1580 -- formal is an Ada 2012 formal incomplete type.
1581
1582 if Nkind (I_Node) = N_Formal_Package_Declaration
1583 or else
1584 (Ada_Version >= Ada_2012
1585 and then
1586 Ekind (Defining_Identifier (Analyzed_Formal)) =
1587 E_Incomplete_Type)
1588 then
1589 null;
1590
1591 else
1592 Append_Elmt (Entity (Match), Actuals_To_Freeze);
1593 end if;
1594 end if;
1595
1596 -- A remote access-to-class-wide type is not a legal actual
1597 -- for a generic formal of an access type (E.2.2(17/2)).
1598 -- In GNAT an exception to this rule is introduced when
1599 -- the formal is marked as remote using implementation
1600 -- defined aspect/pragma Remote_Access_Type. In that case
1601 -- the actual must be remote as well.
1602
1603 -- If the current instantiation is the construction of a
1604 -- local copy for a formal package the actuals may be
1605 -- defaulted, and there is no matching actual to check.
1606
1607 if Nkind (Analyzed_Formal) = N_Formal_Type_Declaration
1608 and then
1609 Nkind (Formal_Type_Definition (Analyzed_Formal)) =
1610 N_Access_To_Object_Definition
1611 and then Present (Match)
1612 then
1613 declare
1614 Formal_Ent : constant Entity_Id :=
1615 Defining_Identifier (Analyzed_Formal);
1616 begin
1617 if Is_Remote_Access_To_Class_Wide_Type (Entity (Match))
1618 = Is_Remote_Types (Formal_Ent)
1619 then
1620 -- Remoteness of formal and actual match
1621
1622 null;
1623
1624 elsif Is_Remote_Types (Formal_Ent) then
1625
1626 -- Remote formal, non-remote actual
1627
1628 Error_Msg_NE
1629 ("actual for& must be remote", Match, Formal_Ent);
1630
1631 else
1632 -- Non-remote formal, remote actual
1633
1634 Error_Msg_NE
1635 ("actual for& may not be remote",
1636 Match, Formal_Ent);
1637 end if;
1638 end;
1639 end if;
1640
1641 when N_Formal_Subprogram_Declaration =>
1642 Match :=
1643 Matching_Actual
1644 (Defining_Unit_Name (Specification (Formal)),
1645 Defining_Unit_Name (Specification (Analyzed_Formal)));
1646
1647 -- If the formal subprogram has the same name as another
1648 -- formal subprogram of the generic, then a named
1649 -- association is illegal (12.3(9)). Exclude named
1650 -- associations that are generated for a nested instance.
1651
1652 if Present (Match)
1653 and then Is_Named_Assoc
1654 and then Comes_From_Source (Found_Assoc)
1655 then
1656 Check_Overloaded_Formal_Subprogram (Formal);
1657 end if;
1658
1659 -- If there is no corresponding actual, this may be case
1660 -- of partial parameterization, or else the formal has a
1661 -- default or a box.
1662
1663 if No (Match) and then Partial_Parameterization then
1664 Process_Default (Formal);
1665
1666 if Nkind (I_Node) = N_Formal_Package_Declaration then
1667 Check_Overloaded_Formal_Subprogram (Formal);
1668 end if;
1669
1670 else
1671 Append_To (Assoc,
1672 Instantiate_Formal_Subprogram
1673 (Formal, Match, Analyzed_Formal));
1674
1675 -- An instantiation is a freeze point for the actuals,
1676 -- unless this is a rewritten formal package.
1677
1678 if Nkind (I_Node) /= N_Formal_Package_Declaration
1679 and then Nkind (Match) = N_Identifier
1680 and then Is_Subprogram (Entity (Match))
1681
1682 -- The actual subprogram may rename a routine defined
1683 -- in Standard. Avoid freezing such renamings because
1684 -- subprograms coming from Standard cannot be frozen.
1685
1686 and then
1687 not Renames_Standard_Subprogram (Entity (Match))
1688
1689 -- If the actual subprogram comes from a different
1690 -- unit, it is already frozen, either by a body in
1691 -- that unit or by the end of the declarative part
1692 -- of the unit. This check avoids the freezing of
1693 -- subprograms defined in Standard which are used
1694 -- as generic actuals.
1695
1696 and then In_Same_Code_Unit (Entity (Match), I_Node)
1697 and then Has_Fully_Defined_Profile (Entity (Match))
1698 then
1699 -- Mark the subprogram as having a delayed freeze
1700 -- since this may be an out-of-order action.
1701
1702 Set_Has_Delayed_Freeze (Entity (Match));
1703 Append_Elmt (Entity (Match), Actuals_To_Freeze);
1704 end if;
1705 end if;
1706
1707 -- If this is a nested generic, preserve default for later
1708 -- instantiations. We do this as well for GNATProve use,
1709 -- so that the list of generic associations is complete.
1710
1711 if No (Match) and then Box_Present (Formal) then
1712 declare
1713 Subp : constant Entity_Id :=
1714 Defining_Unit_Name (Specification (Last (Assoc)));
1715
1716 begin
1717 Append_To (Default_Actuals,
1718 Make_Generic_Association (Sloc (I_Node),
1719 Selector_Name =>
1720 New_Occurrence_Of (Subp, Sloc (I_Node)),
1721 Explicit_Generic_Actual_Parameter =>
1722 New_Occurrence_Of (Subp, Sloc (I_Node))));
1723 end;
1724 end if;
1725
1726 when N_Formal_Package_Declaration =>
1727 Match :=
1728 Matching_Actual
1729 (Defining_Identifier (Formal),
1730 Defining_Identifier (Original_Node (Analyzed_Formal)));
1731
1732 if No (Match) then
1733 if Partial_Parameterization then
1734 Process_Default (Formal);
1735
1736 else
1737 Error_Msg_Sloc := Sloc (Gen_Unit);
1738 Error_Msg_NE
1739 ("missing actual&",
1740 Instantiation_Node, Defining_Identifier (Formal));
1741 Error_Msg_NE
1742 ("\in instantiation of & declared#",
1743 Instantiation_Node, Gen_Unit);
1744
1745 Abandon_Instantiation (Instantiation_Node);
1746 end if;
1747
1748 else
1749 Analyze (Match);
1750 Append_List
1751 (Instantiate_Formal_Package
1752 (Formal, Match, Analyzed_Formal),
1753 Assoc);
1754 end if;
1755
1756 -- For use type and use package appearing in the generic part,
1757 -- we have already copied them, so we can just move them where
1758 -- they belong (we mustn't recopy them since this would mess up
1759 -- the Sloc values).
1760
1761 when N_Use_Package_Clause |
1762 N_Use_Type_Clause =>
1763 if Nkind (Original_Node (I_Node)) =
1764 N_Formal_Package_Declaration
1765 then
1766 Append (New_Copy_Tree (Formal), Assoc);
1767 else
1768 Remove (Formal);
1769 Append (Formal, Assoc);
1770 end if;
1771
1772 when others =>
1773 raise Program_Error;
1774
1775 end case;
1776
1777 Formal := Saved_Formal;
1778 Next_Non_Pragma (Analyzed_Formal);
1779 end loop;
1780
1781 if Num_Actuals > Num_Matched then
1782 Error_Msg_Sloc := Sloc (Gen_Unit);
1783
1784 if Present (Selector_Name (Actual)) then
1785 Error_Msg_NE
1786 ("unmatched actual &", Actual, Selector_Name (Actual));
1787 Error_Msg_NE
1788 ("\in instantiation of & declared#", Actual, Gen_Unit);
1789 else
1790 Error_Msg_NE
1791 ("unmatched actual in instantiation of & declared#",
1792 Actual, Gen_Unit);
1793 end if;
1794 end if;
1795
1796 elsif Present (Actuals) then
1797 Error_Msg_N
1798 ("too many actuals in generic instantiation", Instantiation_Node);
1799 end if;
1800
1801 -- An instantiation freezes all generic actuals. The only exceptions
1802 -- to this are incomplete types and subprograms which are not fully
1803 -- defined at the point of instantiation.
1804
1805 declare
1806 Elmt : Elmt_Id := First_Elmt (Actuals_To_Freeze);
1807 begin
1808 while Present (Elmt) loop
1809 Freeze_Before (I_Node, Node (Elmt));
1810 Next_Elmt (Elmt);
1811 end loop;
1812 end;
1813
1814 -- If there are default subprograms, normalize the tree by adding
1815 -- explicit associations for them. This is required if the instance
1816 -- appears within a generic.
1817
1818 if not Is_Empty_List (Default_Actuals) then
1819 declare
1820 Default : Node_Id;
1821
1822 begin
1823 Default := First (Default_Actuals);
1824 while Present (Default) loop
1825 Mark_Rewrite_Insertion (Default);
1826 Next (Default);
1827 end loop;
1828
1829 if No (Actuals) then
1830 Set_Generic_Associations (I_Node, Default_Actuals);
1831 else
1832 Append_List_To (Actuals, Default_Actuals);
1833 end if;
1834 end;
1835 end if;
1836
1837 -- If this is a formal package, normalize the parameter list by adding
1838 -- explicit box associations for the formals that are covered by an
1839 -- Others_Choice.
1840
1841 if not Is_Empty_List (Default_Formals) then
1842 Append_List (Default_Formals, Formals);
1843 end if;
1844
1845 return Assoc;
1846 end Analyze_Associations;
1847
1848 -------------------------------
1849 -- Analyze_Formal_Array_Type --
1850 -------------------------------
1851
1852 procedure Analyze_Formal_Array_Type
1853 (T : in out Entity_Id;
1854 Def : Node_Id)
1855 is
1856 DSS : Node_Id;
1857
1858 begin
1859 -- Treated like a non-generic array declaration, with additional
1860 -- semantic checks.
1861
1862 Enter_Name (T);
1863
1864 if Nkind (Def) = N_Constrained_Array_Definition then
1865 DSS := First (Discrete_Subtype_Definitions (Def));
1866 while Present (DSS) loop
1867 if Nkind_In (DSS, N_Subtype_Indication,
1868 N_Range,
1869 N_Attribute_Reference)
1870 then
1871 Error_Msg_N ("only a subtype mark is allowed in a formal", DSS);
1872 end if;
1873
1874 Next (DSS);
1875 end loop;
1876 end if;
1877
1878 Array_Type_Declaration (T, Def);
1879 Set_Is_Generic_Type (Base_Type (T));
1880
1881 if Ekind (Component_Type (T)) = E_Incomplete_Type
1882 and then No (Full_View (Component_Type (T)))
1883 then
1884 Error_Msg_N ("premature usage of incomplete type", Def);
1885
1886 -- Check that range constraint is not allowed on the component type
1887 -- of a generic formal array type (AARM 12.5.3(3))
1888
1889 elsif Is_Internal (Component_Type (T))
1890 and then Present (Subtype_Indication (Component_Definition (Def)))
1891 and then Nkind (Original_Node
1892 (Subtype_Indication (Component_Definition (Def)))) =
1893 N_Subtype_Indication
1894 then
1895 Error_Msg_N
1896 ("in a formal, a subtype indication can only be "
1897 & "a subtype mark (RM 12.5.3(3))",
1898 Subtype_Indication (Component_Definition (Def)));
1899 end if;
1900
1901 end Analyze_Formal_Array_Type;
1902
1903 ---------------------------------------------
1904 -- Analyze_Formal_Decimal_Fixed_Point_Type --
1905 ---------------------------------------------
1906
1907 -- As for other generic types, we create a valid type representation with
1908 -- legal but arbitrary attributes, whose values are never considered
1909 -- static. For all scalar types we introduce an anonymous base type, with
1910 -- the same attributes. We choose the corresponding integer type to be
1911 -- Standard_Integer.
1912 -- Here and in other similar routines, the Sloc of the generated internal
1913 -- type must be the same as the sloc of the defining identifier of the
1914 -- formal type declaration, to provide proper source navigation.
1915
1916 procedure Analyze_Formal_Decimal_Fixed_Point_Type
1917 (T : Entity_Id;
1918 Def : Node_Id)
1919 is
1920 Loc : constant Source_Ptr := Sloc (Def);
1921
1922 Base : constant Entity_Id :=
1923 New_Internal_Entity
1924 (E_Decimal_Fixed_Point_Type,
1925 Current_Scope,
1926 Sloc (Defining_Identifier (Parent (Def))), 'G');
1927
1928 Int_Base : constant Entity_Id := Standard_Integer;
1929 Delta_Val : constant Ureal := Ureal_1;
1930 Digs_Val : constant Uint := Uint_6;
1931
1932 function Make_Dummy_Bound return Node_Id;
1933 -- Return a properly typed universal real literal to use as a bound
1934
1935 ----------------------
1936 -- Make_Dummy_Bound --
1937 ----------------------
1938
1939 function Make_Dummy_Bound return Node_Id is
1940 Bound : constant Node_Id := Make_Real_Literal (Loc, Ureal_1);
1941 begin
1942 Set_Etype (Bound, Universal_Real);
1943 return Bound;
1944 end Make_Dummy_Bound;
1945
1946 -- Start of processing for Analyze_Formal_Decimal_Fixed_Point_Type
1947
1948 begin
1949 Enter_Name (T);
1950
1951 Set_Etype (Base, Base);
1952 Set_Size_Info (Base, Int_Base);
1953 Set_RM_Size (Base, RM_Size (Int_Base));
1954 Set_First_Rep_Item (Base, First_Rep_Item (Int_Base));
1955 Set_Digits_Value (Base, Digs_Val);
1956 Set_Delta_Value (Base, Delta_Val);
1957 Set_Small_Value (Base, Delta_Val);
1958 Set_Scalar_Range (Base,
1959 Make_Range (Loc,
1960 Low_Bound => Make_Dummy_Bound,
1961 High_Bound => Make_Dummy_Bound));
1962
1963 Set_Is_Generic_Type (Base);
1964 Set_Parent (Base, Parent (Def));
1965
1966 Set_Ekind (T, E_Decimal_Fixed_Point_Subtype);
1967 Set_Etype (T, Base);
1968 Set_Size_Info (T, Int_Base);
1969 Set_RM_Size (T, RM_Size (Int_Base));
1970 Set_First_Rep_Item (T, First_Rep_Item (Int_Base));
1971 Set_Digits_Value (T, Digs_Val);
1972 Set_Delta_Value (T, Delta_Val);
1973 Set_Small_Value (T, Delta_Val);
1974 Set_Scalar_Range (T, Scalar_Range (Base));
1975 Set_Is_Constrained (T);
1976
1977 Check_Restriction (No_Fixed_Point, Def);
1978 end Analyze_Formal_Decimal_Fixed_Point_Type;
1979
1980 -------------------------------------------
1981 -- Analyze_Formal_Derived_Interface_Type --
1982 -------------------------------------------
1983
1984 procedure Analyze_Formal_Derived_Interface_Type
1985 (N : Node_Id;
1986 T : Entity_Id;
1987 Def : Node_Id)
1988 is
1989 Loc : constant Source_Ptr := Sloc (Def);
1990
1991 begin
1992 -- Rewrite as a type declaration of a derived type. This ensures that
1993 -- the interface list and primitive operations are properly captured.
1994
1995 Rewrite (N,
1996 Make_Full_Type_Declaration (Loc,
1997 Defining_Identifier => T,
1998 Type_Definition => Def));
1999 Analyze (N);
2000 Set_Is_Generic_Type (T);
2001 end Analyze_Formal_Derived_Interface_Type;
2002
2003 ---------------------------------
2004 -- Analyze_Formal_Derived_Type --
2005 ---------------------------------
2006
2007 procedure Analyze_Formal_Derived_Type
2008 (N : Node_Id;
2009 T : Entity_Id;
2010 Def : Node_Id)
2011 is
2012 Loc : constant Source_Ptr := Sloc (Def);
2013 Unk_Disc : constant Boolean := Unknown_Discriminants_Present (N);
2014 New_N : Node_Id;
2015
2016 begin
2017 Set_Is_Generic_Type (T);
2018
2019 if Private_Present (Def) then
2020 New_N :=
2021 Make_Private_Extension_Declaration (Loc,
2022 Defining_Identifier => T,
2023 Discriminant_Specifications => Discriminant_Specifications (N),
2024 Unknown_Discriminants_Present => Unk_Disc,
2025 Subtype_Indication => Subtype_Mark (Def),
2026 Interface_List => Interface_List (Def));
2027
2028 Set_Abstract_Present (New_N, Abstract_Present (Def));
2029 Set_Limited_Present (New_N, Limited_Present (Def));
2030 Set_Synchronized_Present (New_N, Synchronized_Present (Def));
2031
2032 else
2033 New_N :=
2034 Make_Full_Type_Declaration (Loc,
2035 Defining_Identifier => T,
2036 Discriminant_Specifications =>
2037 Discriminant_Specifications (Parent (T)),
2038 Type_Definition =>
2039 Make_Derived_Type_Definition (Loc,
2040 Subtype_Indication => Subtype_Mark (Def)));
2041
2042 Set_Abstract_Present
2043 (Type_Definition (New_N), Abstract_Present (Def));
2044 Set_Limited_Present
2045 (Type_Definition (New_N), Limited_Present (Def));
2046 end if;
2047
2048 Rewrite (N, New_N);
2049 Analyze (N);
2050
2051 if Unk_Disc then
2052 if not Is_Composite_Type (T) then
2053 Error_Msg_N
2054 ("unknown discriminants not allowed for elementary types", N);
2055 else
2056 Set_Has_Unknown_Discriminants (T);
2057 Set_Is_Constrained (T, False);
2058 end if;
2059 end if;
2060
2061 -- If the parent type has a known size, so does the formal, which makes
2062 -- legal representation clauses that involve the formal.
2063
2064 Set_Size_Known_At_Compile_Time
2065 (T, Size_Known_At_Compile_Time (Entity (Subtype_Mark (Def))));
2066 end Analyze_Formal_Derived_Type;
2067
2068 ----------------------------------
2069 -- Analyze_Formal_Discrete_Type --
2070 ----------------------------------
2071
2072 -- The operations defined for a discrete types are those of an enumeration
2073 -- type. The size is set to an arbitrary value, for use in analyzing the
2074 -- generic unit.
2075
2076 procedure Analyze_Formal_Discrete_Type (T : Entity_Id; Def : Node_Id) is
2077 Loc : constant Source_Ptr := Sloc (Def);
2078 Lo : Node_Id;
2079 Hi : Node_Id;
2080
2081 Base : constant Entity_Id :=
2082 New_Internal_Entity
2083 (E_Floating_Point_Type, Current_Scope,
2084 Sloc (Defining_Identifier (Parent (Def))), 'G');
2085
2086 begin
2087 Enter_Name (T);
2088 Set_Ekind (T, E_Enumeration_Subtype);
2089 Set_Etype (T, Base);
2090 Init_Size (T, 8);
2091 Init_Alignment (T);
2092 Set_Is_Generic_Type (T);
2093 Set_Is_Constrained (T);
2094
2095 -- For semantic analysis, the bounds of the type must be set to some
2096 -- non-static value. The simplest is to create attribute nodes for those
2097 -- bounds, that refer to the type itself. These bounds are never
2098 -- analyzed but serve as place-holders.
2099
2100 Lo :=
2101 Make_Attribute_Reference (Loc,
2102 Attribute_Name => Name_First,
2103 Prefix => New_Occurrence_Of (T, Loc));
2104 Set_Etype (Lo, T);
2105
2106 Hi :=
2107 Make_Attribute_Reference (Loc,
2108 Attribute_Name => Name_Last,
2109 Prefix => New_Occurrence_Of (T, Loc));
2110 Set_Etype (Hi, T);
2111
2112 Set_Scalar_Range (T,
2113 Make_Range (Loc,
2114 Low_Bound => Lo,
2115 High_Bound => Hi));
2116
2117 Set_Ekind (Base, E_Enumeration_Type);
2118 Set_Etype (Base, Base);
2119 Init_Size (Base, 8);
2120 Init_Alignment (Base);
2121 Set_Is_Generic_Type (Base);
2122 Set_Scalar_Range (Base, Scalar_Range (T));
2123 Set_Parent (Base, Parent (Def));
2124 end Analyze_Formal_Discrete_Type;
2125
2126 ----------------------------------
2127 -- Analyze_Formal_Floating_Type --
2128 ---------------------------------
2129
2130 procedure Analyze_Formal_Floating_Type (T : Entity_Id; Def : Node_Id) is
2131 Base : constant Entity_Id :=
2132 New_Internal_Entity
2133 (E_Floating_Point_Type, Current_Scope,
2134 Sloc (Defining_Identifier (Parent (Def))), 'G');
2135
2136 begin
2137 -- The various semantic attributes are taken from the predefined type
2138 -- Float, just so that all of them are initialized. Their values are
2139 -- never used because no constant folding or expansion takes place in
2140 -- the generic itself.
2141
2142 Enter_Name (T);
2143 Set_Ekind (T, E_Floating_Point_Subtype);
2144 Set_Etype (T, Base);
2145 Set_Size_Info (T, (Standard_Float));
2146 Set_RM_Size (T, RM_Size (Standard_Float));
2147 Set_Digits_Value (T, Digits_Value (Standard_Float));
2148 Set_Scalar_Range (T, Scalar_Range (Standard_Float));
2149 Set_Is_Constrained (T);
2150
2151 Set_Is_Generic_Type (Base);
2152 Set_Etype (Base, Base);
2153 Set_Size_Info (Base, (Standard_Float));
2154 Set_RM_Size (Base, RM_Size (Standard_Float));
2155 Set_Digits_Value (Base, Digits_Value (Standard_Float));
2156 Set_Scalar_Range (Base, Scalar_Range (Standard_Float));
2157 Set_Parent (Base, Parent (Def));
2158
2159 Check_Restriction (No_Floating_Point, Def);
2160 end Analyze_Formal_Floating_Type;
2161
2162 -----------------------------------
2163 -- Analyze_Formal_Interface_Type;--
2164 -----------------------------------
2165
2166 procedure Analyze_Formal_Interface_Type
2167 (N : Node_Id;
2168 T : Entity_Id;
2169 Def : Node_Id)
2170 is
2171 Loc : constant Source_Ptr := Sloc (N);
2172 New_N : Node_Id;
2173
2174 begin
2175 New_N :=
2176 Make_Full_Type_Declaration (Loc,
2177 Defining_Identifier => T,
2178 Type_Definition => Def);
2179
2180 Rewrite (N, New_N);
2181 Analyze (N);
2182 Set_Is_Generic_Type (T);
2183 end Analyze_Formal_Interface_Type;
2184
2185 ---------------------------------
2186 -- Analyze_Formal_Modular_Type --
2187 ---------------------------------
2188
2189 procedure Analyze_Formal_Modular_Type (T : Entity_Id; Def : Node_Id) is
2190 begin
2191 -- Apart from their entity kind, generic modular types are treated like
2192 -- signed integer types, and have the same attributes.
2193
2194 Analyze_Formal_Signed_Integer_Type (T, Def);
2195 Set_Ekind (T, E_Modular_Integer_Subtype);
2196 Set_Ekind (Etype (T), E_Modular_Integer_Type);
2197
2198 end Analyze_Formal_Modular_Type;
2199
2200 ---------------------------------------
2201 -- Analyze_Formal_Object_Declaration --
2202 ---------------------------------------
2203
2204 procedure Analyze_Formal_Object_Declaration (N : Node_Id) is
2205 E : constant Node_Id := Default_Expression (N);
2206 Id : constant Node_Id := Defining_Identifier (N);
2207 K : Entity_Kind;
2208 T : Node_Id;
2209
2210 begin
2211 Enter_Name (Id);
2212
2213 -- Determine the mode of the formal object
2214
2215 if Out_Present (N) then
2216 K := E_Generic_In_Out_Parameter;
2217
2218 if not In_Present (N) then
2219 Error_Msg_N ("formal generic objects cannot have mode OUT", N);
2220 end if;
2221
2222 else
2223 K := E_Generic_In_Parameter;
2224 end if;
2225
2226 if Present (Subtype_Mark (N)) then
2227 Find_Type (Subtype_Mark (N));
2228 T := Entity (Subtype_Mark (N));
2229
2230 -- Verify that there is no redundant null exclusion
2231
2232 if Null_Exclusion_Present (N) then
2233 if not Is_Access_Type (T) then
2234 Error_Msg_N
2235 ("null exclusion can only apply to an access type", N);
2236
2237 elsif Can_Never_Be_Null (T) then
2238 Error_Msg_NE
2239 ("`NOT NULL` not allowed (& already excludes null)", N, T);
2240 end if;
2241 end if;
2242
2243 -- Ada 2005 (AI-423): Formal object with an access definition
2244
2245 else
2246 Check_Access_Definition (N);
2247 T := Access_Definition
2248 (Related_Nod => N,
2249 N => Access_Definition (N));
2250 end if;
2251
2252 if Ekind (T) = E_Incomplete_Type then
2253 declare
2254 Error_Node : Node_Id;
2255
2256 begin
2257 if Present (Subtype_Mark (N)) then
2258 Error_Node := Subtype_Mark (N);
2259 else
2260 Check_Access_Definition (N);
2261 Error_Node := Access_Definition (N);
2262 end if;
2263
2264 Error_Msg_N ("premature usage of incomplete type", Error_Node);
2265 end;
2266 end if;
2267
2268 if K = E_Generic_In_Parameter then
2269
2270 -- Ada 2005 (AI-287): Limited aggregates allowed in generic formals
2271
2272 if Ada_Version < Ada_2005 and then Is_Limited_Type (T) then
2273 Error_Msg_N
2274 ("generic formal of mode IN must not be of limited type", N);
2275 Explain_Limited_Type (T, N);
2276 end if;
2277
2278 if Is_Abstract_Type (T) then
2279 Error_Msg_N
2280 ("generic formal of mode IN must not be of abstract type", N);
2281 end if;
2282
2283 if Present (E) then
2284 Preanalyze_Spec_Expression (E, T);
2285
2286 if Is_Limited_Type (T) and then not OK_For_Limited_Init (T, E) then
2287 Error_Msg_N
2288 ("initialization not allowed for limited types", E);
2289 Explain_Limited_Type (T, E);
2290 end if;
2291 end if;
2292
2293 Set_Ekind (Id, K);
2294 Set_Etype (Id, T);
2295
2296 -- Case of generic IN OUT parameter
2297
2298 else
2299 -- If the formal has an unconstrained type, construct its actual
2300 -- subtype, as is done for subprogram formals. In this fashion, all
2301 -- its uses can refer to specific bounds.
2302
2303 Set_Ekind (Id, K);
2304 Set_Etype (Id, T);
2305
2306 if (Is_Array_Type (T) and then not Is_Constrained (T))
2307 or else (Ekind (T) = E_Record_Type and then Has_Discriminants (T))
2308 then
2309 declare
2310 Non_Freezing_Ref : constant Node_Id :=
2311 New_Occurrence_Of (Id, Sloc (Id));
2312 Decl : Node_Id;
2313
2314 begin
2315 -- Make sure the actual subtype doesn't generate bogus freezing
2316
2317 Set_Must_Not_Freeze (Non_Freezing_Ref);
2318 Decl := Build_Actual_Subtype (T, Non_Freezing_Ref);
2319 Insert_Before_And_Analyze (N, Decl);
2320 Set_Actual_Subtype (Id, Defining_Identifier (Decl));
2321 end;
2322 else
2323 Set_Actual_Subtype (Id, T);
2324 end if;
2325
2326 if Present (E) then
2327 Error_Msg_N
2328 ("initialization not allowed for `IN OUT` formals", N);
2329 end if;
2330 end if;
2331
2332 if Has_Aspects (N) then
2333 Analyze_Aspect_Specifications (N, Id);
2334 end if;
2335 end Analyze_Formal_Object_Declaration;
2336
2337 ----------------------------------------------
2338 -- Analyze_Formal_Ordinary_Fixed_Point_Type --
2339 ----------------------------------------------
2340
2341 procedure Analyze_Formal_Ordinary_Fixed_Point_Type
2342 (T : Entity_Id;
2343 Def : Node_Id)
2344 is
2345 Loc : constant Source_Ptr := Sloc (Def);
2346 Base : constant Entity_Id :=
2347 New_Internal_Entity
2348 (E_Ordinary_Fixed_Point_Type, Current_Scope,
2349 Sloc (Defining_Identifier (Parent (Def))), 'G');
2350
2351 begin
2352 -- The semantic attributes are set for completeness only, their values
2353 -- will never be used, since all properties of the type are non-static.
2354
2355 Enter_Name (T);
2356 Set_Ekind (T, E_Ordinary_Fixed_Point_Subtype);
2357 Set_Etype (T, Base);
2358 Set_Size_Info (T, Standard_Integer);
2359 Set_RM_Size (T, RM_Size (Standard_Integer));
2360 Set_Small_Value (T, Ureal_1);
2361 Set_Delta_Value (T, Ureal_1);
2362 Set_Scalar_Range (T,
2363 Make_Range (Loc,
2364 Low_Bound => Make_Real_Literal (Loc, Ureal_1),
2365 High_Bound => Make_Real_Literal (Loc, Ureal_1)));
2366 Set_Is_Constrained (T);
2367
2368 Set_Is_Generic_Type (Base);
2369 Set_Etype (Base, Base);
2370 Set_Size_Info (Base, Standard_Integer);
2371 Set_RM_Size (Base, RM_Size (Standard_Integer));
2372 Set_Small_Value (Base, Ureal_1);
2373 Set_Delta_Value (Base, Ureal_1);
2374 Set_Scalar_Range (Base, Scalar_Range (T));
2375 Set_Parent (Base, Parent (Def));
2376
2377 Check_Restriction (No_Fixed_Point, Def);
2378 end Analyze_Formal_Ordinary_Fixed_Point_Type;
2379
2380 ----------------------------------------
2381 -- Analyze_Formal_Package_Declaration --
2382 ----------------------------------------
2383
2384 procedure Analyze_Formal_Package_Declaration (N : Node_Id) is
2385 Loc : constant Source_Ptr := Sloc (N);
2386 Pack_Id : constant Entity_Id := Defining_Identifier (N);
2387 Formal : Entity_Id;
2388 Gen_Id : constant Node_Id := Name (N);
2389 Gen_Decl : Node_Id;
2390 Gen_Unit : Entity_Id;
2391 New_N : Node_Id;
2392 Parent_Installed : Boolean := False;
2393 Renaming : Node_Id;
2394 Parent_Instance : Entity_Id;
2395 Renaming_In_Par : Entity_Id;
2396 Associations : Boolean := True;
2397
2398 Vis_Prims_List : Elist_Id := No_Elist;
2399 -- List of primitives made temporarily visible in the instantiation
2400 -- to match the visibility of the formal type
2401
2402 function Build_Local_Package return Node_Id;
2403 -- The formal package is rewritten so that its parameters are replaced
2404 -- with corresponding declarations. For parameters with bona fide
2405 -- associations these declarations are created by Analyze_Associations
2406 -- as for a regular instantiation. For boxed parameters, we preserve
2407 -- the formal declarations and analyze them, in order to introduce
2408 -- entities of the right kind in the environment of the formal.
2409
2410 -------------------------
2411 -- Build_Local_Package --
2412 -------------------------
2413
2414 function Build_Local_Package return Node_Id is
2415 Decls : List_Id;
2416 Pack_Decl : Node_Id;
2417
2418 begin
2419 -- Within the formal, the name of the generic package is a renaming
2420 -- of the formal (as for a regular instantiation).
2421
2422 Pack_Decl :=
2423 Make_Package_Declaration (Loc,
2424 Specification =>
2425 Copy_Generic_Node
2426 (Specification (Original_Node (Gen_Decl)),
2427 Empty, Instantiating => True));
2428
2429 Renaming :=
2430 Make_Package_Renaming_Declaration (Loc,
2431 Defining_Unit_Name =>
2432 Make_Defining_Identifier (Loc, Chars (Gen_Unit)),
2433 Name => New_Occurrence_Of (Formal, Loc));
2434
2435 if Nkind (Gen_Id) = N_Identifier
2436 and then Chars (Gen_Id) = Chars (Pack_Id)
2437 then
2438 Error_Msg_NE
2439 ("& is hidden within declaration of instance", Gen_Id, Gen_Unit);
2440 end if;
2441
2442 -- If the formal is declared with a box, or with an others choice,
2443 -- create corresponding declarations for all entities in the formal
2444 -- part, so that names with the proper types are available in the
2445 -- specification of the formal package.
2446
2447 -- On the other hand, if there are no associations, then all the
2448 -- formals must have defaults, and this will be checked by the
2449 -- call to Analyze_Associations.
2450
2451 if Box_Present (N)
2452 or else Nkind (First (Generic_Associations (N))) = N_Others_Choice
2453 then
2454 declare
2455 Formal_Decl : Node_Id;
2456
2457 begin
2458 -- TBA : for a formal package, need to recurse ???
2459
2460 Decls := New_List;
2461 Formal_Decl :=
2462 First
2463 (Generic_Formal_Declarations (Original_Node (Gen_Decl)));
2464 while Present (Formal_Decl) loop
2465 Append_To
2466 (Decls, Copy_Generic_Node (Formal_Decl, Empty, True));
2467 Next (Formal_Decl);
2468 end loop;
2469 end;
2470
2471 -- If generic associations are present, use Analyze_Associations to
2472 -- create the proper renaming declarations.
2473
2474 else
2475 declare
2476 Act_Tree : constant Node_Id :=
2477 Copy_Generic_Node
2478 (Original_Node (Gen_Decl), Empty,
2479 Instantiating => True);
2480
2481 begin
2482 Generic_Renamings.Set_Last (0);
2483 Generic_Renamings_HTable.Reset;
2484 Instantiation_Node := N;
2485
2486 Decls :=
2487 Analyze_Associations
2488 (I_Node => Original_Node (N),
2489 Formals => Generic_Formal_Declarations (Act_Tree),
2490 F_Copy => Generic_Formal_Declarations (Gen_Decl));
2491
2492 Vis_Prims_List := Check_Hidden_Primitives (Decls);
2493 end;
2494 end if;
2495
2496 Append (Renaming, To => Decls);
2497
2498 -- Add generated declarations ahead of local declarations in
2499 -- the package.
2500
2501 if No (Visible_Declarations (Specification (Pack_Decl))) then
2502 Set_Visible_Declarations (Specification (Pack_Decl), Decls);
2503 else
2504 Insert_List_Before
2505 (First (Visible_Declarations (Specification (Pack_Decl))),
2506 Decls);
2507 end if;
2508
2509 return Pack_Decl;
2510 end Build_Local_Package;
2511
2512 -- Start of processing for Analyze_Formal_Package_Declaration
2513
2514 begin
2515 Check_Text_IO_Special_Unit (Gen_Id);
2516
2517 Init_Env;
2518 Check_Generic_Child_Unit (Gen_Id, Parent_Installed);
2519 Gen_Unit := Entity (Gen_Id);
2520
2521 -- Check for a formal package that is a package renaming
2522
2523 if Present (Renamed_Object (Gen_Unit)) then
2524
2525 -- Indicate that unit is used, before replacing it with renamed
2526 -- entity for use below.
2527
2528 if In_Extended_Main_Source_Unit (N) then
2529 Set_Is_Instantiated (Gen_Unit);
2530 Generate_Reference (Gen_Unit, N);
2531 end if;
2532
2533 Gen_Unit := Renamed_Object (Gen_Unit);
2534 end if;
2535
2536 if Ekind (Gen_Unit) /= E_Generic_Package then
2537 Error_Msg_N ("expect generic package name", Gen_Id);
2538 Restore_Env;
2539 goto Leave;
2540
2541 elsif Gen_Unit = Current_Scope then
2542 Error_Msg_N
2543 ("generic package cannot be used as a formal package of itself",
2544 Gen_Id);
2545 Restore_Env;
2546 goto Leave;
2547
2548 elsif In_Open_Scopes (Gen_Unit) then
2549 if Is_Compilation_Unit (Gen_Unit)
2550 and then Is_Child_Unit (Current_Scope)
2551 then
2552 -- Special-case the error when the formal is a parent, and
2553 -- continue analysis to minimize cascaded errors.
2554
2555 Error_Msg_N
2556 ("generic parent cannot be used as formal package "
2557 & "of a child unit", Gen_Id);
2558
2559 else
2560 Error_Msg_N
2561 ("generic package cannot be used as a formal package "
2562 & "within itself", Gen_Id);
2563 Restore_Env;
2564 goto Leave;
2565 end if;
2566 end if;
2567
2568 -- Check that name of formal package does not hide name of generic,
2569 -- or its leading prefix. This check must be done separately because
2570 -- the name of the generic has already been analyzed.
2571
2572 declare
2573 Gen_Name : Entity_Id;
2574
2575 begin
2576 Gen_Name := Gen_Id;
2577 while Nkind (Gen_Name) = N_Expanded_Name loop
2578 Gen_Name := Prefix (Gen_Name);
2579 end loop;
2580
2581 if Chars (Gen_Name) = Chars (Pack_Id) then
2582 Error_Msg_NE
2583 ("& is hidden within declaration of formal package",
2584 Gen_Id, Gen_Name);
2585 end if;
2586 end;
2587
2588 if Box_Present (N)
2589 or else No (Generic_Associations (N))
2590 or else Nkind (First (Generic_Associations (N))) = N_Others_Choice
2591 then
2592 Associations := False;
2593 end if;
2594
2595 -- If there are no generic associations, the generic parameters appear
2596 -- as local entities and are instantiated like them. We copy the generic
2597 -- package declaration as if it were an instantiation, and analyze it
2598 -- like a regular package, except that we treat the formals as
2599 -- additional visible components.
2600
2601 Gen_Decl := Unit_Declaration_Node (Gen_Unit);
2602
2603 if In_Extended_Main_Source_Unit (N) then
2604 Set_Is_Instantiated (Gen_Unit);
2605 Generate_Reference (Gen_Unit, N);
2606 end if;
2607
2608 Formal := New_Copy (Pack_Id);
2609 Create_Instantiation_Source (N, Gen_Unit, False, S_Adjustment);
2610
2611 begin
2612 -- Make local generic without formals. The formals will be replaced
2613 -- with internal declarations.
2614
2615 New_N := Build_Local_Package;
2616
2617 -- If there are errors in the parameter list, Analyze_Associations
2618 -- raises Instantiation_Error. Patch the declaration to prevent
2619 -- further exception propagation.
2620
2621 exception
2622 when Instantiation_Error =>
2623
2624 Enter_Name (Formal);
2625 Set_Ekind (Formal, E_Variable);
2626 Set_Etype (Formal, Any_Type);
2627 Restore_Hidden_Primitives (Vis_Prims_List);
2628
2629 if Parent_Installed then
2630 Remove_Parent;
2631 end if;
2632
2633 goto Leave;
2634 end;
2635
2636 Rewrite (N, New_N);
2637 Set_Defining_Unit_Name (Specification (New_N), Formal);
2638 Set_Generic_Parent (Specification (N), Gen_Unit);
2639 Set_Instance_Env (Gen_Unit, Formal);
2640 Set_Is_Generic_Instance (Formal);
2641
2642 Enter_Name (Formal);
2643 Set_Ekind (Formal, E_Package);
2644 Set_Etype (Formal, Standard_Void_Type);
2645 Set_Inner_Instances (Formal, New_Elmt_List);
2646 Push_Scope (Formal);
2647
2648 -- Manually set the SPARK_Mode from the context because the package
2649 -- declaration is never analyzed.
2650
2651 Set_SPARK_Pragma (Formal, SPARK_Mode_Pragma);
2652 Set_SPARK_Aux_Pragma (Formal, SPARK_Mode_Pragma);
2653 Set_SPARK_Pragma_Inherited (Formal);
2654 Set_SPARK_Aux_Pragma_Inherited (Formal);
2655
2656 if Is_Child_Unit (Gen_Unit) and then Parent_Installed then
2657
2658 -- Similarly, we have to make the name of the formal visible in the
2659 -- parent instance, to resolve properly fully qualified names that
2660 -- may appear in the generic unit. The parent instance has been
2661 -- placed on the scope stack ahead of the current scope.
2662
2663 Parent_Instance := Scope_Stack.Table (Scope_Stack.Last - 1).Entity;
2664
2665 Renaming_In_Par :=
2666 Make_Defining_Identifier (Loc, Chars (Gen_Unit));
2667 Set_Ekind (Renaming_In_Par, E_Package);
2668 Set_Etype (Renaming_In_Par, Standard_Void_Type);
2669 Set_Scope (Renaming_In_Par, Parent_Instance);
2670 Set_Parent (Renaming_In_Par, Parent (Formal));
2671 Set_Renamed_Object (Renaming_In_Par, Formal);
2672 Append_Entity (Renaming_In_Par, Parent_Instance);
2673 end if;
2674
2675 Analyze (Specification (N));
2676
2677 -- The formals for which associations are provided are not visible
2678 -- outside of the formal package. The others are still declared by a
2679 -- formal parameter declaration.
2680
2681 -- If there are no associations, the only local entity to hide is the
2682 -- generated package renaming itself.
2683
2684 declare
2685 E : Entity_Id;
2686
2687 begin
2688 E := First_Entity (Formal);
2689 while Present (E) loop
2690 if Associations and then not Is_Generic_Formal (E) then
2691 Set_Is_Hidden (E);
2692 end if;
2693
2694 if Ekind (E) = E_Package and then Renamed_Entity (E) = Formal then
2695 Set_Is_Hidden (E);
2696 exit;
2697 end if;
2698
2699 Next_Entity (E);
2700 end loop;
2701 end;
2702
2703 End_Package_Scope (Formal);
2704 Restore_Hidden_Primitives (Vis_Prims_List);
2705
2706 if Parent_Installed then
2707 Remove_Parent;
2708 end if;
2709
2710 Restore_Env;
2711
2712 -- Inside the generic unit, the formal package is a regular package, but
2713 -- no body is needed for it. Note that after instantiation, the defining
2714 -- unit name we need is in the new tree and not in the original (see
2715 -- Package_Instantiation). A generic formal package is an instance, and
2716 -- can be used as an actual for an inner instance.
2717
2718 Set_Has_Completion (Formal, True);
2719
2720 -- Add semantic information to the original defining identifier.
2721 -- for ASIS use.
2722
2723 Set_Ekind (Pack_Id, E_Package);
2724 Set_Etype (Pack_Id, Standard_Void_Type);
2725 Set_Scope (Pack_Id, Scope (Formal));
2726 Set_Has_Completion (Pack_Id, True);
2727
2728 <<Leave>>
2729 if Has_Aspects (N) then
2730 Analyze_Aspect_Specifications (N, Pack_Id);
2731 end if;
2732 end Analyze_Formal_Package_Declaration;
2733
2734 ---------------------------------
2735 -- Analyze_Formal_Private_Type --
2736 ---------------------------------
2737
2738 procedure Analyze_Formal_Private_Type
2739 (N : Node_Id;
2740 T : Entity_Id;
2741 Def : Node_Id)
2742 is
2743 begin
2744 New_Private_Type (N, T, Def);
2745
2746 -- Set the size to an arbitrary but legal value
2747
2748 Set_Size_Info (T, Standard_Integer);
2749 Set_RM_Size (T, RM_Size (Standard_Integer));
2750 end Analyze_Formal_Private_Type;
2751
2752 ------------------------------------
2753 -- Analyze_Formal_Incomplete_Type --
2754 ------------------------------------
2755
2756 procedure Analyze_Formal_Incomplete_Type
2757 (T : Entity_Id;
2758 Def : Node_Id)
2759 is
2760 begin
2761 Enter_Name (T);
2762 Set_Ekind (T, E_Incomplete_Type);
2763 Set_Etype (T, T);
2764 Set_Private_Dependents (T, New_Elmt_List);
2765
2766 if Tagged_Present (Def) then
2767 Set_Is_Tagged_Type (T);
2768 Make_Class_Wide_Type (T);
2769 Set_Direct_Primitive_Operations (T, New_Elmt_List);
2770 end if;
2771 end Analyze_Formal_Incomplete_Type;
2772
2773 ----------------------------------------
2774 -- Analyze_Formal_Signed_Integer_Type --
2775 ----------------------------------------
2776
2777 procedure Analyze_Formal_Signed_Integer_Type
2778 (T : Entity_Id;
2779 Def : Node_Id)
2780 is
2781 Base : constant Entity_Id :=
2782 New_Internal_Entity
2783 (E_Signed_Integer_Type,
2784 Current_Scope,
2785 Sloc (Defining_Identifier (Parent (Def))), 'G');
2786
2787 begin
2788 Enter_Name (T);
2789
2790 Set_Ekind (T, E_Signed_Integer_Subtype);
2791 Set_Etype (T, Base);
2792 Set_Size_Info (T, Standard_Integer);
2793 Set_RM_Size (T, RM_Size (Standard_Integer));
2794 Set_Scalar_Range (T, Scalar_Range (Standard_Integer));
2795 Set_Is_Constrained (T);
2796
2797 Set_Is_Generic_Type (Base);
2798 Set_Size_Info (Base, Standard_Integer);
2799 Set_RM_Size (Base, RM_Size (Standard_Integer));
2800 Set_Etype (Base, Base);
2801 Set_Scalar_Range (Base, Scalar_Range (Standard_Integer));
2802 Set_Parent (Base, Parent (Def));
2803 end Analyze_Formal_Signed_Integer_Type;
2804
2805 -------------------------------------------
2806 -- Analyze_Formal_Subprogram_Declaration --
2807 -------------------------------------------
2808
2809 procedure Analyze_Formal_Subprogram_Declaration (N : Node_Id) is
2810 Spec : constant Node_Id := Specification (N);
2811 Def : constant Node_Id := Default_Name (N);
2812 Nam : constant Entity_Id := Defining_Unit_Name (Spec);
2813 Subp : Entity_Id;
2814
2815 begin
2816 if Nam = Error then
2817 return;
2818 end if;
2819
2820 if Nkind (Nam) = N_Defining_Program_Unit_Name then
2821 Error_Msg_N ("name of formal subprogram must be a direct name", Nam);
2822 goto Leave;
2823 end if;
2824
2825 Analyze_Subprogram_Declaration (N);
2826 Set_Is_Formal_Subprogram (Nam);
2827 Set_Has_Completion (Nam);
2828
2829 if Nkind (N) = N_Formal_Abstract_Subprogram_Declaration then
2830 Set_Is_Abstract_Subprogram (Nam);
2831
2832 Set_Is_Dispatching_Operation (Nam);
2833
2834 -- A formal abstract procedure cannot have a null default
2835 -- (RM 12.6(4.1/2)).
2836
2837 if Nkind (Spec) = N_Procedure_Specification
2838 and then Null_Present (Spec)
2839 then
2840 Error_Msg_N
2841 ("a formal abstract subprogram cannot default to null", Spec);
2842 end if;
2843
2844 declare
2845 Ctrl_Type : constant Entity_Id := Find_Dispatching_Type (Nam);
2846 begin
2847 if No (Ctrl_Type) then
2848 Error_Msg_N
2849 ("abstract formal subprogram must have a controlling type",
2850 N);
2851
2852 elsif Ada_Version >= Ada_2012
2853 and then Is_Incomplete_Type (Ctrl_Type)
2854 then
2855 Error_Msg_NE
2856 ("controlling type of abstract formal subprogram cannot "
2857 & "be incomplete type", N, Ctrl_Type);
2858
2859 else
2860 Check_Controlling_Formals (Ctrl_Type, Nam);
2861 end if;
2862 end;
2863 end if;
2864
2865 -- Default name is resolved at the point of instantiation
2866
2867 if Box_Present (N) then
2868 null;
2869
2870 -- Else default is bound at the point of generic declaration
2871
2872 elsif Present (Def) then
2873 if Nkind (Def) = N_Operator_Symbol then
2874 Find_Direct_Name (Def);
2875
2876 elsif Nkind (Def) /= N_Attribute_Reference then
2877 Analyze (Def);
2878
2879 else
2880 -- For an attribute reference, analyze the prefix and verify
2881 -- that it has the proper profile for the subprogram.
2882
2883 Analyze (Prefix (Def));
2884 Valid_Default_Attribute (Nam, Def);
2885 goto Leave;
2886 end if;
2887
2888 -- Default name may be overloaded, in which case the interpretation
2889 -- with the correct profile must be selected, as for a renaming.
2890 -- If the definition is an indexed component, it must denote a
2891 -- member of an entry family. If it is a selected component, it
2892 -- can be a protected operation.
2893
2894 if Etype (Def) = Any_Type then
2895 goto Leave;
2896
2897 elsif Nkind (Def) = N_Selected_Component then
2898 if not Is_Overloadable (Entity (Selector_Name (Def))) then
2899 Error_Msg_N ("expect valid subprogram name as default", Def);
2900 end if;
2901
2902 elsif Nkind (Def) = N_Indexed_Component then
2903 if Is_Entity_Name (Prefix (Def)) then
2904 if Ekind (Entity (Prefix (Def))) /= E_Entry_Family then
2905 Error_Msg_N ("expect valid subprogram name as default", Def);
2906 end if;
2907
2908 elsif Nkind (Prefix (Def)) = N_Selected_Component then
2909 if Ekind (Entity (Selector_Name (Prefix (Def)))) /=
2910 E_Entry_Family
2911 then
2912 Error_Msg_N ("expect valid subprogram name as default", Def);
2913 end if;
2914
2915 else
2916 Error_Msg_N ("expect valid subprogram name as default", Def);
2917 goto Leave;
2918 end if;
2919
2920 elsif Nkind (Def) = N_Character_Literal then
2921
2922 -- Needs some type checks: subprogram should be parameterless???
2923
2924 Resolve (Def, (Etype (Nam)));
2925
2926 elsif not Is_Entity_Name (Def)
2927 or else not Is_Overloadable (Entity (Def))
2928 then
2929 Error_Msg_N ("expect valid subprogram name as default", Def);
2930 goto Leave;
2931
2932 elsif not Is_Overloaded (Def) then
2933 Subp := Entity (Def);
2934
2935 if Subp = Nam then
2936 Error_Msg_N ("premature usage of formal subprogram", Def);
2937
2938 elsif not Entity_Matches_Spec (Subp, Nam) then
2939 Error_Msg_N ("no visible entity matches specification", Def);
2940 end if;
2941
2942 -- More than one interpretation, so disambiguate as for a renaming
2943
2944 else
2945 declare
2946 I : Interp_Index;
2947 I1 : Interp_Index := 0;
2948 It : Interp;
2949 It1 : Interp;
2950
2951 begin
2952 Subp := Any_Id;
2953 Get_First_Interp (Def, I, It);
2954 while Present (It.Nam) loop
2955 if Entity_Matches_Spec (It.Nam, Nam) then
2956 if Subp /= Any_Id then
2957 It1 := Disambiguate (Def, I1, I, Etype (Subp));
2958
2959 if It1 = No_Interp then
2960 Error_Msg_N ("ambiguous default subprogram", Def);
2961 else
2962 Subp := It1.Nam;
2963 end if;
2964
2965 exit;
2966
2967 else
2968 I1 := I;
2969 Subp := It.Nam;
2970 end if;
2971 end if;
2972
2973 Get_Next_Interp (I, It);
2974 end loop;
2975 end;
2976
2977 if Subp /= Any_Id then
2978
2979 -- Subprogram found, generate reference to it
2980
2981 Set_Entity (Def, Subp);
2982 Generate_Reference (Subp, Def);
2983
2984 if Subp = Nam then
2985 Error_Msg_N ("premature usage of formal subprogram", Def);
2986
2987 elsif Ekind (Subp) /= E_Operator then
2988 Check_Mode_Conformant (Subp, Nam);
2989 end if;
2990
2991 else
2992 Error_Msg_N ("no visible subprogram matches specification", N);
2993 end if;
2994 end if;
2995 end if;
2996
2997 <<Leave>>
2998 if Has_Aspects (N) then
2999 Analyze_Aspect_Specifications (N, Nam);
3000 end if;
3001
3002 end Analyze_Formal_Subprogram_Declaration;
3003
3004 -------------------------------------
3005 -- Analyze_Formal_Type_Declaration --
3006 -------------------------------------
3007
3008 procedure Analyze_Formal_Type_Declaration (N : Node_Id) is
3009 Def : constant Node_Id := Formal_Type_Definition (N);
3010 T : Entity_Id;
3011
3012 begin
3013 T := Defining_Identifier (N);
3014
3015 if Present (Discriminant_Specifications (N))
3016 and then Nkind (Def) /= N_Formal_Private_Type_Definition
3017 then
3018 Error_Msg_N
3019 ("discriminants not allowed for this formal type", T);
3020 end if;
3021
3022 -- Enter the new name, and branch to specific routine
3023
3024 case Nkind (Def) is
3025 when N_Formal_Private_Type_Definition =>
3026 Analyze_Formal_Private_Type (N, T, Def);
3027
3028 when N_Formal_Derived_Type_Definition =>
3029 Analyze_Formal_Derived_Type (N, T, Def);
3030
3031 when N_Formal_Incomplete_Type_Definition =>
3032 Analyze_Formal_Incomplete_Type (T, Def);
3033
3034 when N_Formal_Discrete_Type_Definition =>
3035 Analyze_Formal_Discrete_Type (T, Def);
3036
3037 when N_Formal_Signed_Integer_Type_Definition =>
3038 Analyze_Formal_Signed_Integer_Type (T, Def);
3039
3040 when N_Formal_Modular_Type_Definition =>
3041 Analyze_Formal_Modular_Type (T, Def);
3042
3043 when N_Formal_Floating_Point_Definition =>
3044 Analyze_Formal_Floating_Type (T, Def);
3045
3046 when N_Formal_Ordinary_Fixed_Point_Definition =>
3047 Analyze_Formal_Ordinary_Fixed_Point_Type (T, Def);
3048
3049 when N_Formal_Decimal_Fixed_Point_Definition =>
3050 Analyze_Formal_Decimal_Fixed_Point_Type (T, Def);
3051
3052 when N_Array_Type_Definition =>
3053 Analyze_Formal_Array_Type (T, Def);
3054
3055 when N_Access_To_Object_Definition |
3056 N_Access_Function_Definition |
3057 N_Access_Procedure_Definition =>
3058 Analyze_Generic_Access_Type (T, Def);
3059
3060 -- Ada 2005: a interface declaration is encoded as an abstract
3061 -- record declaration or a abstract type derivation.
3062
3063 when N_Record_Definition =>
3064 Analyze_Formal_Interface_Type (N, T, Def);
3065
3066 when N_Derived_Type_Definition =>
3067 Analyze_Formal_Derived_Interface_Type (N, T, Def);
3068
3069 when N_Error =>
3070 null;
3071
3072 when others =>
3073 raise Program_Error;
3074
3075 end case;
3076
3077 Set_Is_Generic_Type (T);
3078
3079 if Has_Aspects (N) then
3080 Analyze_Aspect_Specifications (N, T);
3081 end if;
3082 end Analyze_Formal_Type_Declaration;
3083
3084 ------------------------------------
3085 -- Analyze_Function_Instantiation --
3086 ------------------------------------
3087
3088 procedure Analyze_Function_Instantiation (N : Node_Id) is
3089 begin
3090 Analyze_Subprogram_Instantiation (N, E_Function);
3091 end Analyze_Function_Instantiation;
3092
3093 ---------------------------------
3094 -- Analyze_Generic_Access_Type --
3095 ---------------------------------
3096
3097 procedure Analyze_Generic_Access_Type (T : Entity_Id; Def : Node_Id) is
3098 begin
3099 Enter_Name (T);
3100
3101 if Nkind (Def) = N_Access_To_Object_Definition then
3102 Access_Type_Declaration (T, Def);
3103
3104 if Is_Incomplete_Or_Private_Type (Designated_Type (T))
3105 and then No (Full_View (Designated_Type (T)))
3106 and then not Is_Generic_Type (Designated_Type (T))
3107 then
3108 Error_Msg_N ("premature usage of incomplete type", Def);
3109
3110 elsif not Is_Entity_Name (Subtype_Indication (Def)) then
3111 Error_Msg_N
3112 ("only a subtype mark is allowed in a formal", Def);
3113 end if;
3114
3115 else
3116 Access_Subprogram_Declaration (T, Def);
3117 end if;
3118 end Analyze_Generic_Access_Type;
3119
3120 ---------------------------------
3121 -- Analyze_Generic_Formal_Part --
3122 ---------------------------------
3123
3124 procedure Analyze_Generic_Formal_Part (N : Node_Id) is
3125 Gen_Parm_Decl : Node_Id;
3126
3127 begin
3128 -- The generic formals are processed in the scope of the generic unit,
3129 -- where they are immediately visible. The scope is installed by the
3130 -- caller.
3131
3132 Gen_Parm_Decl := First (Generic_Formal_Declarations (N));
3133 while Present (Gen_Parm_Decl) loop
3134 Analyze (Gen_Parm_Decl);
3135 Next (Gen_Parm_Decl);
3136 end loop;
3137
3138 Generate_Reference_To_Generic_Formals (Current_Scope);
3139 end Analyze_Generic_Formal_Part;
3140
3141 ------------------------------------------
3142 -- Analyze_Generic_Package_Declaration --
3143 ------------------------------------------
3144
3145 procedure Analyze_Generic_Package_Declaration (N : Node_Id) is
3146 Loc : constant Source_Ptr := Sloc (N);
3147 Decls : constant List_Id :=
3148 Visible_Declarations (Specification (N));
3149 Decl : Node_Id;
3150 Id : Entity_Id;
3151 New_N : Node_Id;
3152 Renaming : Node_Id;
3153 Save_Parent : Node_Id;
3154
3155 begin
3156 Check_SPARK_05_Restriction ("generic is not allowed", N);
3157
3158 -- We introduce a renaming of the enclosing package, to have a usable
3159 -- entity as the prefix of an expanded name for a local entity of the
3160 -- form Par.P.Q, where P is the generic package. This is because a local
3161 -- entity named P may hide it, so that the usual visibility rules in
3162 -- the instance will not resolve properly.
3163
3164 Renaming :=
3165 Make_Package_Renaming_Declaration (Loc,
3166 Defining_Unit_Name =>
3167 Make_Defining_Identifier (Loc,
3168 Chars => New_External_Name (Chars (Defining_Entity (N)), "GH")),
3169 Name =>
3170 Make_Identifier (Loc, Chars (Defining_Entity (N))));
3171
3172 if Present (Decls) then
3173 Decl := First (Decls);
3174 while Present (Decl) and then Nkind (Decl) = N_Pragma loop
3175 Next (Decl);
3176 end loop;
3177
3178 if Present (Decl) then
3179 Insert_Before (Decl, Renaming);
3180 else
3181 Append (Renaming, Visible_Declarations (Specification (N)));
3182 end if;
3183
3184 else
3185 Set_Visible_Declarations (Specification (N), New_List (Renaming));
3186 end if;
3187
3188 -- Create copy of generic unit, and save for instantiation. If the unit
3189 -- is a child unit, do not copy the specifications for the parent, which
3190 -- are not part of the generic tree.
3191
3192 Save_Parent := Parent_Spec (N);
3193 Set_Parent_Spec (N, Empty);
3194
3195 New_N := Copy_Generic_Node (N, Empty, Instantiating => False);
3196 Set_Parent_Spec (New_N, Save_Parent);
3197 Rewrite (N, New_N);
3198
3199 -- Once the contents of the generic copy and the template are swapped,
3200 -- do the same for their respective aspect specifications.
3201
3202 Exchange_Aspects (N, New_N);
3203
3204 -- Collect all contract-related source pragmas found within the template
3205 -- and attach them to the contract of the package spec. This contract is
3206 -- used in the capture of global references within annotations.
3207
3208 Create_Generic_Contract (N);
3209
3210 Id := Defining_Entity (N);
3211 Generate_Definition (Id);
3212
3213 -- Expansion is not applied to generic units
3214
3215 Start_Generic;
3216
3217 Enter_Name (Id);
3218 Set_Ekind (Id, E_Generic_Package);
3219 Set_Etype (Id, Standard_Void_Type);
3220
3221 -- A generic package declared within a Ghost region is rendered Ghost
3222 -- (SPARK RM 6.9(2)).
3223
3224 if Ghost_Mode > None then
3225 Set_Is_Ghost_Entity (Id);
3226 end if;
3227
3228 -- Analyze aspects now, so that generated pragmas appear in the
3229 -- declarations before building and analyzing the generic copy.
3230
3231 if Has_Aspects (N) then
3232 Analyze_Aspect_Specifications (N, Id);
3233 end if;
3234
3235 Push_Scope (Id);
3236 Enter_Generic_Scope (Id);
3237 Set_Inner_Instances (Id, New_Elmt_List);
3238
3239 Set_Categorization_From_Pragmas (N);
3240 Set_Is_Pure (Id, Is_Pure (Current_Scope));
3241
3242 -- Link the declaration of the generic homonym in the generic copy to
3243 -- the package it renames, so that it is always resolved properly.
3244
3245 Set_Generic_Homonym (Id, Defining_Unit_Name (Renaming));
3246 Set_Entity (Associated_Node (Name (Renaming)), Id);
3247
3248 -- For a library unit, we have reconstructed the entity for the unit,
3249 -- and must reset it in the library tables.
3250
3251 if Nkind (Parent (N)) = N_Compilation_Unit then
3252 Set_Cunit_Entity (Current_Sem_Unit, Id);
3253 end if;
3254
3255 Analyze_Generic_Formal_Part (N);
3256
3257 -- After processing the generic formals, analysis proceeds as for a
3258 -- non-generic package.
3259
3260 Analyze (Specification (N));
3261
3262 Validate_Categorization_Dependency (N, Id);
3263
3264 End_Generic;
3265
3266 End_Package_Scope (Id);
3267 Exit_Generic_Scope (Id);
3268
3269 if Nkind (Parent (N)) /= N_Compilation_Unit then
3270 Move_Freeze_Nodes (Id, N, Visible_Declarations (Specification (N)));
3271 Move_Freeze_Nodes (Id, N, Private_Declarations (Specification (N)));
3272 Move_Freeze_Nodes (Id, N, Generic_Formal_Declarations (N));
3273
3274 else
3275 Set_Body_Required (Parent (N), Unit_Requires_Body (Id));
3276 Validate_RT_RAT_Component (N);
3277
3278 -- If this is a spec without a body, check that generic parameters
3279 -- are referenced.
3280
3281 if not Body_Required (Parent (N)) then
3282 Check_References (Id);
3283 end if;
3284 end if;
3285
3286 -- If there is a specified storage pool in the context, create an
3287 -- aspect on the package declaration, so that it is used in any
3288 -- instance that does not override it.
3289
3290 if Present (Default_Pool) then
3291 declare
3292 ASN : Node_Id;
3293
3294 begin
3295 ASN :=
3296 Make_Aspect_Specification (Loc,
3297 Identifier => Make_Identifier (Loc, Name_Default_Storage_Pool),
3298 Expression => New_Copy (Default_Pool));
3299
3300 if No (Aspect_Specifications (Specification (N))) then
3301 Set_Aspect_Specifications (Specification (N), New_List (ASN));
3302 else
3303 Append (ASN, Aspect_Specifications (Specification (N)));
3304 end if;
3305 end;
3306 end if;
3307 end Analyze_Generic_Package_Declaration;
3308
3309 --------------------------------------------
3310 -- Analyze_Generic_Subprogram_Declaration --
3311 --------------------------------------------
3312
3313 procedure Analyze_Generic_Subprogram_Declaration (N : Node_Id) is
3314 Formals : List_Id;
3315 Id : Entity_Id;
3316 New_N : Node_Id;
3317 Result_Type : Entity_Id;
3318 Save_Parent : Node_Id;
3319 Spec : Node_Id;
3320 Typ : Entity_Id;
3321
3322 begin
3323 Check_SPARK_05_Restriction ("generic is not allowed", N);
3324
3325 -- Create copy of generic unit, and save for instantiation. If the unit
3326 -- is a child unit, do not copy the specifications for the parent, which
3327 -- are not part of the generic tree.
3328
3329 Save_Parent := Parent_Spec (N);
3330 Set_Parent_Spec (N, Empty);
3331
3332 New_N := Copy_Generic_Node (N, Empty, Instantiating => False);
3333 Set_Parent_Spec (New_N, Save_Parent);
3334 Rewrite (N, New_N);
3335
3336 -- Once the contents of the generic copy and the template are swapped,
3337 -- do the same for their respective aspect specifications.
3338
3339 Exchange_Aspects (N, New_N);
3340
3341 -- Collect all contract-related source pragmas found within the template
3342 -- and attach them to the contract of the subprogram spec. This contract
3343 -- is used in the capture of global references within annotations.
3344
3345 Create_Generic_Contract (N);
3346
3347 Spec := Specification (N);
3348 Id := Defining_Entity (Spec);
3349 Generate_Definition (Id);
3350
3351 if Nkind (Id) = N_Defining_Operator_Symbol then
3352 Error_Msg_N
3353 ("operator symbol not allowed for generic subprogram", Id);
3354 end if;
3355
3356 Start_Generic;
3357
3358 Enter_Name (Id);
3359 Set_Scope_Depth_Value (Id, Scope_Depth (Current_Scope) + 1);
3360
3361 -- Analyze the aspects of the generic copy to ensure that all generated
3362 -- pragmas (if any) perform their semantic effects.
3363
3364 if Has_Aspects (N) then
3365 Analyze_Aspect_Specifications (N, Id);
3366 end if;
3367
3368 Push_Scope (Id);
3369 Enter_Generic_Scope (Id);
3370 Set_Inner_Instances (Id, New_Elmt_List);
3371 Set_Is_Pure (Id, Is_Pure (Current_Scope));
3372
3373 Analyze_Generic_Formal_Part (N);
3374
3375 Formals := Parameter_Specifications (Spec);
3376
3377 if Nkind (Spec) = N_Function_Specification then
3378 Set_Ekind (Id, E_Generic_Function);
3379 else
3380 Set_Ekind (Id, E_Generic_Procedure);
3381 end if;
3382
3383 if Present (Formals) then
3384 Process_Formals (Formals, Spec);
3385 end if;
3386
3387 if Nkind (Spec) = N_Function_Specification then
3388 if Nkind (Result_Definition (Spec)) = N_Access_Definition then
3389 Result_Type := Access_Definition (Spec, Result_Definition (Spec));
3390 Set_Etype (Id, Result_Type);
3391
3392 -- Check restriction imposed by AI05-073: a generic function
3393 -- cannot return an abstract type or an access to such.
3394
3395 -- This is a binding interpretation should it apply to earlier
3396 -- versions of Ada as well as Ada 2012???
3397
3398 if Is_Abstract_Type (Designated_Type (Result_Type))
3399 and then Ada_Version >= Ada_2012
3400 then
3401 Error_Msg_N
3402 ("generic function cannot have an access result "
3403 & "that designates an abstract type", Spec);
3404 end if;
3405
3406 else
3407 Find_Type (Result_Definition (Spec));
3408 Typ := Entity (Result_Definition (Spec));
3409
3410 if Is_Abstract_Type (Typ)
3411 and then Ada_Version >= Ada_2012
3412 then
3413 Error_Msg_N
3414 ("generic function cannot have abstract result type", Spec);
3415 end if;
3416
3417 -- If a null exclusion is imposed on the result type, then create
3418 -- a null-excluding itype (an access subtype) and use it as the
3419 -- function's Etype.
3420
3421 if Is_Access_Type (Typ)
3422 and then Null_Exclusion_Present (Spec)
3423 then
3424 Set_Etype (Id,
3425 Create_Null_Excluding_Itype
3426 (T => Typ,
3427 Related_Nod => Spec,
3428 Scope_Id => Defining_Unit_Name (Spec)));
3429 else
3430 Set_Etype (Id, Typ);
3431 end if;
3432 end if;
3433
3434 else
3435 Set_Etype (Id, Standard_Void_Type);
3436 end if;
3437
3438 -- A generic subprogram declared within a Ghost region is rendered Ghost
3439 -- (SPARK RM 6.9(2)).
3440
3441 if Ghost_Mode > None then
3442 Set_Is_Ghost_Entity (Id);
3443 end if;
3444
3445 -- For a library unit, we have reconstructed the entity for the unit,
3446 -- and must reset it in the library tables. We also make sure that
3447 -- Body_Required is set properly in the original compilation unit node.
3448
3449 if Nkind (Parent (N)) = N_Compilation_Unit then
3450 Set_Cunit_Entity (Current_Sem_Unit, Id);
3451 Set_Body_Required (Parent (N), Unit_Requires_Body (Id));
3452 end if;
3453
3454 Set_Categorization_From_Pragmas (N);
3455 Validate_Categorization_Dependency (N, Id);
3456
3457 -- Capture all global references that occur within the profile of the
3458 -- generic subprogram. Aspects are not part of this processing because
3459 -- they must be delayed. If processed now, Save_Global_References will
3460 -- destroy the Associated_Node links and prevent the capture of global
3461 -- references when the contract of the generic subprogram is analyzed.
3462
3463 Save_Global_References (Original_Node (N));
3464
3465 End_Generic;
3466 End_Scope;
3467 Exit_Generic_Scope (Id);
3468 Generate_Reference_To_Formals (Id);
3469
3470 List_Inherited_Pre_Post_Aspects (Id);
3471 end Analyze_Generic_Subprogram_Declaration;
3472
3473 -----------------------------------
3474 -- Analyze_Package_Instantiation --
3475 -----------------------------------
3476
3477 procedure Analyze_Package_Instantiation (N : Node_Id) is
3478 Loc : constant Source_Ptr := Sloc (N);
3479 Gen_Id : constant Node_Id := Name (N);
3480
3481 Act_Decl : Node_Id;
3482 Act_Decl_Name : Node_Id;
3483 Act_Decl_Id : Entity_Id;
3484 Act_Spec : Node_Id;
3485 Act_Tree : Node_Id;
3486
3487 Gen_Decl : Node_Id;
3488 Gen_Spec : Node_Id;
3489 Gen_Unit : Entity_Id;
3490
3491 Is_Actual_Pack : constant Boolean :=
3492 Is_Internal (Defining_Entity (N));
3493
3494 Env_Installed : Boolean := False;
3495 Parent_Installed : Boolean := False;
3496 Renaming_List : List_Id;
3497 Unit_Renaming : Node_Id;
3498 Needs_Body : Boolean;
3499 Inline_Now : Boolean := False;
3500 Has_Inline_Always : Boolean := False;
3501
3502 Save_IPSM : constant Boolean := Ignore_Pragma_SPARK_Mode;
3503 -- Save flag Ignore_Pragma_SPARK_Mode for restore on exit
3504
3505 Save_SM : constant SPARK_Mode_Type := SPARK_Mode;
3506 Save_SMP : constant Node_Id := SPARK_Mode_Pragma;
3507 -- Save the SPARK_Mode-related data for restore on exit
3508
3509 Save_Style_Check : constant Boolean := Style_Check;
3510 -- Save style check mode for restore on exit
3511
3512 procedure Delay_Descriptors (E : Entity_Id);
3513 -- Delay generation of subprogram descriptors for given entity
3514
3515 function Might_Inline_Subp return Boolean;
3516 -- If inlining is active and the generic contains inlined subprograms,
3517 -- we instantiate the body. This may cause superfluous instantiations,
3518 -- but it is simpler than detecting the need for the body at the point
3519 -- of inlining, when the context of the instance is not available.
3520
3521 -----------------------
3522 -- Delay_Descriptors --
3523 -----------------------
3524
3525 procedure Delay_Descriptors (E : Entity_Id) is
3526 begin
3527 if not Delay_Subprogram_Descriptors (E) then
3528 Set_Delay_Subprogram_Descriptors (E);
3529 Pending_Descriptor.Append (E);
3530 end if;
3531 end Delay_Descriptors;
3532
3533 -----------------------
3534 -- Might_Inline_Subp --
3535 -----------------------
3536
3537 function Might_Inline_Subp return Boolean is
3538 E : Entity_Id;
3539
3540 begin
3541 if not Inline_Processing_Required then
3542 return False;
3543
3544 else
3545 E := First_Entity (Gen_Unit);
3546 while Present (E) loop
3547 if Is_Subprogram (E) and then Is_Inlined (E) then
3548 -- Remember if there are any subprograms with Inline_Always
3549
3550 if Has_Pragma_Inline_Always (E) then
3551 Has_Inline_Always := True;
3552 end if;
3553
3554 return True;
3555 end if;
3556
3557 Next_Entity (E);
3558 end loop;
3559 end if;
3560
3561 return False;
3562 end Might_Inline_Subp;
3563
3564 -- Local declarations
3565
3566 Vis_Prims_List : Elist_Id := No_Elist;
3567 -- List of primitives made temporarily visible in the instantiation
3568 -- to match the visibility of the formal type
3569
3570 -- Start of processing for Analyze_Package_Instantiation
3571
3572 begin
3573 Check_SPARK_05_Restriction ("generic is not allowed", N);
3574
3575 -- Very first thing: check for Text_IO sp[ecial unit in case we are
3576 -- instantiating one of the children of [[Wide_]Wide_]Text_IO.
3577
3578 Check_Text_IO_Special_Unit (Name (N));
3579
3580 -- Make node global for error reporting
3581
3582 Instantiation_Node := N;
3583
3584 -- Turn off style checking in instances. If the check is enabled on the
3585 -- generic unit, a warning in an instance would just be noise. If not
3586 -- enabled on the generic, then a warning in an instance is just wrong.
3587
3588 Style_Check := False;
3589
3590 -- Case of instantiation of a generic package
3591
3592 if Nkind (N) = N_Package_Instantiation then
3593 Act_Decl_Id := New_Copy (Defining_Entity (N));
3594 Set_Comes_From_Source (Act_Decl_Id, True);
3595
3596 if Nkind (Defining_Unit_Name (N)) = N_Defining_Program_Unit_Name then
3597 Act_Decl_Name :=
3598 Make_Defining_Program_Unit_Name (Loc,
3599 Name =>
3600 New_Copy_Tree (Name (Defining_Unit_Name (N))),
3601 Defining_Identifier => Act_Decl_Id);
3602 else
3603 Act_Decl_Name := Act_Decl_Id;
3604 end if;
3605
3606 -- Case of instantiation of a formal package
3607
3608 else
3609 Act_Decl_Id := Defining_Identifier (N);
3610 Act_Decl_Name := Act_Decl_Id;
3611 end if;
3612
3613 Generate_Definition (Act_Decl_Id);
3614 Set_Ekind (Act_Decl_Id, E_Package);
3615
3616 -- Initialize list of incomplete actuals before analysis
3617
3618 Set_Incomplete_Actuals (Act_Decl_Id, New_Elmt_List);
3619
3620 Preanalyze_Actuals (N, Act_Decl_Id);
3621
3622 Init_Env;
3623 Env_Installed := True;
3624
3625 -- Reset renaming map for formal types. The mapping is established
3626 -- when analyzing the generic associations, but some mappings are
3627 -- inherited from formal packages of parent units, and these are
3628 -- constructed when the parents are installed.
3629
3630 Generic_Renamings.Set_Last (0);
3631 Generic_Renamings_HTable.Reset;
3632
3633 Check_Generic_Child_Unit (Gen_Id, Parent_Installed);
3634 Gen_Unit := Entity (Gen_Id);
3635
3636 -- Verify that it is the name of a generic package
3637
3638 -- A visibility glitch: if the instance is a child unit and the generic
3639 -- is the generic unit of a parent instance (i.e. both the parent and
3640 -- the child units are instances of the same package) the name now
3641 -- denotes the renaming within the parent, not the intended generic
3642 -- unit. See if there is a homonym that is the desired generic. The
3643 -- renaming declaration must be visible inside the instance of the
3644 -- child, but not when analyzing the name in the instantiation itself.
3645
3646 if Ekind (Gen_Unit) = E_Package
3647 and then Present (Renamed_Entity (Gen_Unit))
3648 and then In_Open_Scopes (Renamed_Entity (Gen_Unit))
3649 and then Is_Generic_Instance (Renamed_Entity (Gen_Unit))
3650 and then Present (Homonym (Gen_Unit))
3651 then
3652 Gen_Unit := Homonym (Gen_Unit);
3653 end if;
3654
3655 if Etype (Gen_Unit) = Any_Type then
3656 Restore_Env;
3657 goto Leave;
3658
3659 elsif Ekind (Gen_Unit) /= E_Generic_Package then
3660
3661 -- Ada 2005 (AI-50217): Cannot use instance in limited with_clause
3662
3663 if From_Limited_With (Gen_Unit) then
3664 Error_Msg_N
3665 ("cannot instantiate a limited withed package", Gen_Id);
3666 else
3667 Error_Msg_NE
3668 ("& is not the name of a generic package", Gen_Id, Gen_Unit);
3669 end if;
3670
3671 Restore_Env;
3672 goto Leave;
3673 end if;
3674
3675 if In_Extended_Main_Source_Unit (N) then
3676 Set_Is_Instantiated (Gen_Unit);
3677 Generate_Reference (Gen_Unit, N);
3678
3679 if Present (Renamed_Object (Gen_Unit)) then
3680 Set_Is_Instantiated (Renamed_Object (Gen_Unit));
3681 Generate_Reference (Renamed_Object (Gen_Unit), N);
3682 end if;
3683 end if;
3684
3685 if Nkind (Gen_Id) = N_Identifier
3686 and then Chars (Gen_Unit) = Chars (Defining_Entity (N))
3687 then
3688 Error_Msg_NE
3689 ("& is hidden within declaration of instance", Gen_Id, Gen_Unit);
3690
3691 elsif Nkind (Gen_Id) = N_Expanded_Name
3692 and then Is_Child_Unit (Gen_Unit)
3693 and then Nkind (Prefix (Gen_Id)) = N_Identifier
3694 and then Chars (Act_Decl_Id) = Chars (Prefix (Gen_Id))
3695 then
3696 Error_Msg_N
3697 ("& is hidden within declaration of instance ", Prefix (Gen_Id));
3698 end if;
3699
3700 Set_Entity (Gen_Id, Gen_Unit);
3701
3702 -- If generic is a renaming, get original generic unit
3703
3704 if Present (Renamed_Object (Gen_Unit))
3705 and then Ekind (Renamed_Object (Gen_Unit)) = E_Generic_Package
3706 then
3707 Gen_Unit := Renamed_Object (Gen_Unit);
3708 end if;
3709
3710 -- Verify that there are no circular instantiations
3711
3712 if In_Open_Scopes (Gen_Unit) then
3713 Error_Msg_NE ("instantiation of & within itself", N, Gen_Unit);
3714 Restore_Env;
3715 goto Leave;
3716
3717 elsif Contains_Instance_Of (Gen_Unit, Current_Scope, Gen_Id) then
3718 Error_Msg_Node_2 := Current_Scope;
3719 Error_Msg_NE
3720 ("circular Instantiation: & instantiated in &!", N, Gen_Unit);
3721 Circularity_Detected := True;
3722 Restore_Env;
3723 goto Leave;
3724
3725 else
3726 -- If the context of the instance is subject to SPARK_Mode "off" or
3727 -- the annotation is altogether missing, set the global flag which
3728 -- signals Analyze_Pragma to ignore all SPARK_Mode pragmas within
3729 -- the instance.
3730
3731 if SPARK_Mode /= On then
3732 Ignore_Pragma_SPARK_Mode := True;
3733 end if;
3734
3735 Gen_Decl := Unit_Declaration_Node (Gen_Unit);
3736 Gen_Spec := Specification (Gen_Decl);
3737
3738 -- Initialize renamings map, for error checking, and the list that
3739 -- holds private entities whose views have changed between generic
3740 -- definition and instantiation. If this is the instance created to
3741 -- validate an actual package, the instantiation environment is that
3742 -- of the enclosing instance.
3743
3744 Create_Instantiation_Source (N, Gen_Unit, False, S_Adjustment);
3745
3746 -- Copy original generic tree, to produce text for instantiation
3747
3748 Act_Tree :=
3749 Copy_Generic_Node
3750 (Original_Node (Gen_Decl), Empty, Instantiating => True);
3751
3752 Act_Spec := Specification (Act_Tree);
3753
3754 -- If this is the instance created to validate an actual package,
3755 -- only the formals matter, do not examine the package spec itself.
3756
3757 if Is_Actual_Pack then
3758 Set_Visible_Declarations (Act_Spec, New_List);
3759 Set_Private_Declarations (Act_Spec, New_List);
3760 end if;
3761
3762 Renaming_List :=
3763 Analyze_Associations
3764 (I_Node => N,
3765 Formals => Generic_Formal_Declarations (Act_Tree),
3766 F_Copy => Generic_Formal_Declarations (Gen_Decl));
3767
3768 Vis_Prims_List := Check_Hidden_Primitives (Renaming_List);
3769
3770 Set_Instance_Env (Gen_Unit, Act_Decl_Id);
3771 Set_Defining_Unit_Name (Act_Spec, Act_Decl_Name);
3772 Set_Is_Generic_Instance (Act_Decl_Id);
3773 Set_Generic_Parent (Act_Spec, Gen_Unit);
3774
3775 -- References to the generic in its own declaration or its body are
3776 -- references to the instance. Add a renaming declaration for the
3777 -- generic unit itself. This declaration, as well as the renaming
3778 -- declarations for the generic formals, must remain private to the
3779 -- unit: the formals, because this is the language semantics, and
3780 -- the unit because its use is an artifact of the implementation.
3781
3782 Unit_Renaming :=
3783 Make_Package_Renaming_Declaration (Loc,
3784 Defining_Unit_Name =>
3785 Make_Defining_Identifier (Loc, Chars (Gen_Unit)),
3786 Name => New_Occurrence_Of (Act_Decl_Id, Loc));
3787
3788 Append (Unit_Renaming, Renaming_List);
3789
3790 -- The renaming declarations are the first local declarations of the
3791 -- new unit.
3792
3793 if Is_Non_Empty_List (Visible_Declarations (Act_Spec)) then
3794 Insert_List_Before
3795 (First (Visible_Declarations (Act_Spec)), Renaming_List);
3796 else
3797 Set_Visible_Declarations (Act_Spec, Renaming_List);
3798 end if;
3799
3800 Act_Decl := Make_Package_Declaration (Loc, Specification => Act_Spec);
3801
3802 -- Propagate the aspect specifications from the package declaration
3803 -- template to the instantiated version of the package declaration.
3804
3805 if Has_Aspects (Act_Tree) then
3806 Set_Aspect_Specifications (Act_Decl,
3807 New_Copy_List_Tree (Aspect_Specifications (Act_Tree)));
3808 end if;
3809
3810 -- The generic may have a generated Default_Storage_Pool aspect,
3811 -- set at the point of generic declaration. If the instance has
3812 -- that aspect, it overrides the one inherited from the generic.
3813
3814 if Has_Aspects (Gen_Spec) then
3815 if No (Aspect_Specifications (N)) then
3816 Set_Aspect_Specifications (N,
3817 (New_Copy_List_Tree
3818 (Aspect_Specifications (Gen_Spec))));
3819
3820 else
3821 declare
3822 ASN1, ASN2 : Node_Id;
3823
3824 begin
3825 ASN1 := First (Aspect_Specifications (N));
3826 while Present (ASN1) loop
3827 if Chars (Identifier (ASN1)) = Name_Default_Storage_Pool
3828 then
3829 -- If generic carries a default storage pool, remove
3830 -- it in favor of the instance one.
3831
3832 ASN2 := First (Aspect_Specifications (Gen_Spec));
3833 while Present (ASN2) loop
3834 if Chars (Identifier (ASN2)) =
3835 Name_Default_Storage_Pool
3836 then
3837 Remove (ASN2);
3838 exit;
3839 end if;
3840
3841 Next (ASN2);
3842 end loop;
3843 end if;
3844
3845 Next (ASN1);
3846 end loop;
3847
3848 Prepend_List_To (Aspect_Specifications (N),
3849 (New_Copy_List_Tree
3850 (Aspect_Specifications (Gen_Spec))));
3851 end;
3852 end if;
3853 end if;
3854
3855 -- Save the instantiation node, for subsequent instantiation of the
3856 -- body, if there is one and we are generating code for the current
3857 -- unit. Mark unit as having a body (avoids premature error message).
3858
3859 -- We instantiate the body if we are generating code, if we are
3860 -- generating cross-reference information, or if we are building
3861 -- trees for ASIS use or GNATprove use.
3862
3863 declare
3864 Enclosing_Body_Present : Boolean := False;
3865 -- If the generic unit is not a compilation unit, then a body may
3866 -- be present in its parent even if none is required. We create a
3867 -- tentative pending instantiation for the body, which will be
3868 -- discarded if none is actually present.
3869
3870 Scop : Entity_Id;
3871
3872 begin
3873 if Scope (Gen_Unit) /= Standard_Standard
3874 and then not Is_Child_Unit (Gen_Unit)
3875 then
3876 Scop := Scope (Gen_Unit);
3877 while Present (Scop) and then Scop /= Standard_Standard loop
3878 if Unit_Requires_Body (Scop) then
3879 Enclosing_Body_Present := True;
3880 exit;
3881
3882 elsif In_Open_Scopes (Scop)
3883 and then In_Package_Body (Scop)
3884 then
3885 Enclosing_Body_Present := True;
3886 exit;
3887 end if;
3888
3889 exit when Is_Compilation_Unit (Scop);
3890 Scop := Scope (Scop);
3891 end loop;
3892 end if;
3893
3894 -- If front-end inlining is enabled or there are any subprograms
3895 -- marked with Inline_Always, and this is a unit for which code
3896 -- will be generated, we instantiate the body at once.
3897
3898 -- This is done if the instance is not the main unit, and if the
3899 -- generic is not a child unit of another generic, to avoid scope
3900 -- problems and the reinstallation of parent instances.
3901
3902 if Expander_Active
3903 and then (not Is_Child_Unit (Gen_Unit)
3904 or else not Is_Generic_Unit (Scope (Gen_Unit)))
3905 and then Might_Inline_Subp
3906 and then not Is_Actual_Pack
3907 then
3908 if not Back_End_Inlining
3909 and then (Front_End_Inlining or else Has_Inline_Always)
3910 and then (Is_In_Main_Unit (N)
3911 or else In_Main_Context (Current_Scope))
3912 and then Nkind (Parent (N)) /= N_Compilation_Unit
3913 then
3914 Inline_Now := True;
3915
3916 -- In configurable_run_time mode we force the inlining of
3917 -- predefined subprograms marked Inline_Always, to minimize
3918 -- the use of the run-time library.
3919
3920 elsif Is_Predefined_File_Name
3921 (Unit_File_Name (Get_Source_Unit (Gen_Decl)))
3922 and then Configurable_Run_Time_Mode
3923 and then Nkind (Parent (N)) /= N_Compilation_Unit
3924 then
3925 Inline_Now := True;
3926 end if;
3927
3928 -- If the current scope is itself an instance within a child
3929 -- unit, there will be duplications in the scope stack, and the
3930 -- unstacking mechanism in Inline_Instance_Body will fail.
3931 -- This loses some rare cases of optimization, and might be
3932 -- improved some day, if we can find a proper abstraction for
3933 -- "the complete compilation context" that can be saved and
3934 -- restored. ???
3935
3936 if Is_Generic_Instance (Current_Scope) then
3937 declare
3938 Curr_Unit : constant Entity_Id :=
3939 Cunit_Entity (Current_Sem_Unit);
3940 begin
3941 if Curr_Unit /= Current_Scope
3942 and then Is_Child_Unit (Curr_Unit)
3943 then
3944 Inline_Now := False;
3945 end if;
3946 end;
3947 end if;
3948 end if;
3949
3950 Needs_Body :=
3951 (Unit_Requires_Body (Gen_Unit)
3952 or else Enclosing_Body_Present
3953 or else Present (Corresponding_Body (Gen_Decl)))
3954 and then (Is_In_Main_Unit (N) or else Might_Inline_Subp)
3955 and then not Is_Actual_Pack
3956 and then not Inline_Now
3957 and then (Operating_Mode = Generate_Code
3958
3959 -- Need comment for this check ???
3960
3961 or else (Operating_Mode = Check_Semantics
3962 and then (ASIS_Mode or GNATprove_Mode)));
3963
3964 -- If front-end inlining is enabled or there are any subprograms
3965 -- marked with Inline_Always, do not instantiate body when within
3966 -- a generic context.
3967
3968 if ((Front_End_Inlining or else Has_Inline_Always)
3969 and then not Expander_Active)
3970 or else Is_Generic_Unit (Cunit_Entity (Main_Unit))
3971 then
3972 Needs_Body := False;
3973 end if;
3974
3975 -- If the current context is generic, and the package being
3976 -- instantiated is declared within a formal package, there is no
3977 -- body to instantiate until the enclosing generic is instantiated
3978 -- and there is an actual for the formal package. If the formal
3979 -- package has parameters, we build a regular package instance for
3980 -- it, that precedes the original formal package declaration.
3981
3982 if In_Open_Scopes (Scope (Scope (Gen_Unit))) then
3983 declare
3984 Decl : constant Node_Id :=
3985 Original_Node
3986 (Unit_Declaration_Node (Scope (Gen_Unit)));
3987 begin
3988 if Nkind (Decl) = N_Formal_Package_Declaration
3989 or else (Nkind (Decl) = N_Package_Declaration
3990 and then Is_List_Member (Decl)
3991 and then Present (Next (Decl))
3992 and then
3993 Nkind (Next (Decl)) =
3994 N_Formal_Package_Declaration)
3995 then
3996 Needs_Body := False;
3997 end if;
3998 end;
3999 end if;
4000 end;
4001
4002 -- For RCI unit calling stubs, we omit the instance body if the
4003 -- instance is the RCI library unit itself.
4004
4005 -- However there is a special case for nested instances: in this case
4006 -- we do generate the instance body, as it might be required, e.g.
4007 -- because it provides stream attributes for some type used in the
4008 -- profile of a remote subprogram. This is consistent with 12.3(12),
4009 -- which indicates that the instance body occurs at the place of the
4010 -- instantiation, and thus is part of the RCI declaration, which is
4011 -- present on all client partitions (this is E.2.3(18)).
4012
4013 -- Note that AI12-0002 may make it illegal at some point to have
4014 -- stream attributes defined in an RCI unit, in which case this
4015 -- special case will become unnecessary. In the meantime, there
4016 -- is known application code in production that depends on this
4017 -- being possible, so we definitely cannot eliminate the body in
4018 -- the case of nested instances for the time being.
4019
4020 -- When we generate a nested instance body, calling stubs for any
4021 -- relevant subprogram will be be inserted immediately after the
4022 -- subprogram declarations, and will take precedence over the
4023 -- subsequent (original) body. (The stub and original body will be
4024 -- complete homographs, but this is permitted in an instance).
4025 -- (Could we do better and remove the original body???)
4026
4027 if Distribution_Stub_Mode = Generate_Caller_Stub_Body
4028 and then Comes_From_Source (N)
4029 and then Nkind (Parent (N)) = N_Compilation_Unit
4030 then
4031 Needs_Body := False;
4032 end if;
4033
4034 if Needs_Body then
4035
4036 -- Here is a defence against a ludicrous number of instantiations
4037 -- caused by a circular set of instantiation attempts.
4038
4039 if Pending_Instantiations.Last > Maximum_Instantiations then
4040 Error_Msg_Uint_1 := UI_From_Int (Maximum_Instantiations);
4041 Error_Msg_N ("too many instantiations, exceeds max of^", N);
4042 Error_Msg_N ("\limit can be changed using -gnateinn switch", N);
4043 raise Unrecoverable_Error;
4044 end if;
4045
4046 -- Indicate that the enclosing scopes contain an instantiation,
4047 -- and that cleanup actions should be delayed until after the
4048 -- instance body is expanded.
4049
4050 Check_Forward_Instantiation (Gen_Decl);
4051 if Nkind (N) = N_Package_Instantiation then
4052 declare
4053 Enclosing_Master : Entity_Id;
4054
4055 begin
4056 -- Loop to search enclosing masters
4057
4058 Enclosing_Master := Current_Scope;
4059 Scope_Loop : while Enclosing_Master /= Standard_Standard loop
4060 if Ekind (Enclosing_Master) = E_Package then
4061 if Is_Compilation_Unit (Enclosing_Master) then
4062 if In_Package_Body (Enclosing_Master) then
4063 Delay_Descriptors
4064 (Body_Entity (Enclosing_Master));
4065 else
4066 Delay_Descriptors
4067 (Enclosing_Master);
4068 end if;
4069
4070 exit Scope_Loop;
4071
4072 else
4073 Enclosing_Master := Scope (Enclosing_Master);
4074 end if;
4075
4076 elsif Is_Generic_Unit (Enclosing_Master)
4077 or else Ekind (Enclosing_Master) = E_Void
4078 then
4079 -- Cleanup actions will eventually be performed on the
4080 -- enclosing subprogram or package instance, if any.
4081 -- Enclosing scope is void in the formal part of a
4082 -- generic subprogram.
4083
4084 exit Scope_Loop;
4085
4086 else
4087 if Ekind (Enclosing_Master) = E_Entry
4088 and then
4089 Ekind (Scope (Enclosing_Master)) = E_Protected_Type
4090 then
4091 if not Expander_Active then
4092 exit Scope_Loop;
4093 else
4094 Enclosing_Master :=
4095 Protected_Body_Subprogram (Enclosing_Master);
4096 end if;
4097 end if;
4098
4099 Set_Delay_Cleanups (Enclosing_Master);
4100
4101 while Ekind (Enclosing_Master) = E_Block loop
4102 Enclosing_Master := Scope (Enclosing_Master);
4103 end loop;
4104
4105 if Is_Subprogram (Enclosing_Master) then
4106 Delay_Descriptors (Enclosing_Master);
4107
4108 elsif Is_Task_Type (Enclosing_Master) then
4109 declare
4110 TBP : constant Node_Id :=
4111 Get_Task_Body_Procedure
4112 (Enclosing_Master);
4113 begin
4114 if Present (TBP) then
4115 Delay_Descriptors (TBP);
4116 Set_Delay_Cleanups (TBP);
4117 end if;
4118 end;
4119 end if;
4120
4121 exit Scope_Loop;
4122 end if;
4123 end loop Scope_Loop;
4124 end;
4125
4126 -- Make entry in table
4127
4128 Pending_Instantiations.Append
4129 ((Inst_Node => N,
4130 Act_Decl => Act_Decl,
4131 Expander_Status => Expander_Active,
4132 Current_Sem_Unit => Current_Sem_Unit,
4133 Scope_Suppress => Scope_Suppress,
4134 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
4135 Version => Ada_Version,
4136 Version_Pragma => Ada_Version_Pragma,
4137 Warnings => Save_Warnings,
4138 SPARK_Mode => SPARK_Mode,
4139 SPARK_Mode_Pragma => SPARK_Mode_Pragma));
4140 end if;
4141 end if;
4142
4143 Set_Categorization_From_Pragmas (Act_Decl);
4144
4145 if Parent_Installed then
4146 Hide_Current_Scope;
4147 end if;
4148
4149 Set_Instance_Spec (N, Act_Decl);
4150
4151 -- If not a compilation unit, insert the package declaration before
4152 -- the original instantiation node.
4153
4154 if Nkind (Parent (N)) /= N_Compilation_Unit then
4155 Mark_Rewrite_Insertion (Act_Decl);
4156 Insert_Before (N, Act_Decl);
4157
4158 if Has_Aspects (N) then
4159 Analyze_Aspect_Specifications (N, Act_Decl_Id);
4160
4161 -- The pragma created for a Default_Storage_Pool aspect must
4162 -- appear ahead of the declarations in the instance spec.
4163 -- Analysis has placed it after the instance node, so remove
4164 -- it and reinsert it properly now.
4165
4166 declare
4167 ASN : constant Node_Id := First (Aspect_Specifications (N));
4168 A_Name : constant Name_Id := Chars (Identifier (ASN));
4169 Decl : Node_Id;
4170
4171 begin
4172 if A_Name = Name_Default_Storage_Pool then
4173 if No (Visible_Declarations (Act_Spec)) then
4174 Set_Visible_Declarations (Act_Spec, New_List);
4175 end if;
4176
4177 Decl := Next (N);
4178 while Present (Decl) loop
4179 if Nkind (Decl) = N_Pragma then
4180 Remove (Decl);
4181 Prepend (Decl, Visible_Declarations (Act_Spec));
4182 exit;
4183 end if;
4184
4185 Next (Decl);
4186 end loop;
4187 end if;
4188 end;
4189 end if;
4190
4191 Analyze (Act_Decl);
4192
4193 -- For an instantiation that is a compilation unit, place
4194 -- declaration on current node so context is complete for analysis
4195 -- (including nested instantiations). If this is the main unit,
4196 -- the declaration eventually replaces the instantiation node.
4197 -- If the instance body is created later, it replaces the
4198 -- instance node, and the declaration is attached to it
4199 -- (see Build_Instance_Compilation_Unit_Nodes).
4200
4201 else
4202 if Cunit_Entity (Current_Sem_Unit) = Defining_Entity (N) then
4203
4204 -- The entity for the current unit is the newly created one,
4205 -- and all semantic information is attached to it.
4206
4207 Set_Cunit_Entity (Current_Sem_Unit, Act_Decl_Id);
4208
4209 -- If this is the main unit, replace the main entity as well
4210
4211 if Current_Sem_Unit = Main_Unit then
4212 Main_Unit_Entity := Act_Decl_Id;
4213 end if;
4214 end if;
4215
4216 Set_Unit (Parent (N), Act_Decl);
4217 Set_Parent_Spec (Act_Decl, Parent_Spec (N));
4218 Set_Package_Instantiation (Act_Decl_Id, N);
4219
4220 -- Process aspect specifications of the instance node, if any, to
4221 -- take into account categorization pragmas before analyzing the
4222 -- instance.
4223
4224 if Has_Aspects (N) then
4225 Analyze_Aspect_Specifications (N, Act_Decl_Id);
4226 end if;
4227
4228 Analyze (Act_Decl);
4229 Set_Unit (Parent (N), N);
4230 Set_Body_Required (Parent (N), False);
4231
4232 -- We never need elaboration checks on instantiations, since by
4233 -- definition, the body instantiation is elaborated at the same
4234 -- time as the spec instantiation.
4235
4236 Set_Suppress_Elaboration_Warnings (Act_Decl_Id);
4237 Set_Kill_Elaboration_Checks (Act_Decl_Id);
4238 end if;
4239
4240 Check_Elab_Instantiation (N);
4241
4242 if ABE_Is_Certain (N) and then Needs_Body then
4243 Pending_Instantiations.Decrement_Last;
4244 end if;
4245
4246 Check_Hidden_Child_Unit (N, Gen_Unit, Act_Decl_Id);
4247
4248 Set_First_Private_Entity (Defining_Unit_Name (Unit_Renaming),
4249 First_Private_Entity (Act_Decl_Id));
4250
4251 -- If the instantiation will receive a body, the unit will be
4252 -- transformed into a package body, and receive its own elaboration
4253 -- entity. Otherwise, the nature of the unit is now a package
4254 -- declaration.
4255
4256 if Nkind (Parent (N)) = N_Compilation_Unit
4257 and then not Needs_Body
4258 then
4259 Rewrite (N, Act_Decl);
4260 end if;
4261
4262 if Present (Corresponding_Body (Gen_Decl))
4263 or else Unit_Requires_Body (Gen_Unit)
4264 then
4265 Set_Has_Completion (Act_Decl_Id);
4266 end if;
4267
4268 Check_Formal_Packages (Act_Decl_Id);
4269
4270 Restore_Hidden_Primitives (Vis_Prims_List);
4271 Restore_Private_Views (Act_Decl_Id);
4272
4273 Inherit_Context (Gen_Decl, N);
4274
4275 if Parent_Installed then
4276 Remove_Parent;
4277 end if;
4278
4279 Restore_Env;
4280 Env_Installed := False;
4281 end if;
4282
4283 Validate_Categorization_Dependency (N, Act_Decl_Id);
4284
4285 -- There used to be a check here to prevent instantiations in local
4286 -- contexts if the No_Local_Allocators restriction was active. This
4287 -- check was removed by a binding interpretation in AI-95-00130/07,
4288 -- but we retain the code for documentation purposes.
4289
4290 -- if Ekind (Act_Decl_Id) /= E_Void
4291 -- and then not Is_Library_Level_Entity (Act_Decl_Id)
4292 -- then
4293 -- Check_Restriction (No_Local_Allocators, N);
4294 -- end if;
4295
4296 if Inline_Now then
4297 Inline_Instance_Body (N, Gen_Unit, Act_Decl);
4298 end if;
4299
4300 -- The following is a tree patch for ASIS: ASIS needs separate nodes to
4301 -- be used as defining identifiers for a formal package and for the
4302 -- corresponding expanded package.
4303
4304 if Nkind (N) = N_Formal_Package_Declaration then
4305 Act_Decl_Id := New_Copy (Defining_Entity (N));
4306 Set_Comes_From_Source (Act_Decl_Id, True);
4307 Set_Is_Generic_Instance (Act_Decl_Id, False);
4308 Set_Defining_Identifier (N, Act_Decl_Id);
4309 end if;
4310
4311 Ignore_Pragma_SPARK_Mode := Save_IPSM;
4312 SPARK_Mode := Save_SM;
4313 SPARK_Mode_Pragma := Save_SMP;
4314 Style_Check := Save_Style_Check;
4315
4316 if SPARK_Mode = On then
4317 Dynamic_Elaboration_Checks := False;
4318 end if;
4319
4320 -- Check that if N is an instantiation of System.Dim_Float_IO or
4321 -- System.Dim_Integer_IO, the formal type has a dimension system.
4322
4323 if Nkind (N) = N_Package_Instantiation
4324 and then Is_Dim_IO_Package_Instantiation (N)
4325 then
4326 declare
4327 Assoc : constant Node_Id := First (Generic_Associations (N));
4328 begin
4329 if not Has_Dimension_System
4330 (Etype (Explicit_Generic_Actual_Parameter (Assoc)))
4331 then
4332 Error_Msg_N ("type with a dimension system expected", Assoc);
4333 end if;
4334 end;
4335 end if;
4336
4337 <<Leave>>
4338 if Has_Aspects (N) and then Nkind (Parent (N)) /= N_Compilation_Unit then
4339 Analyze_Aspect_Specifications (N, Act_Decl_Id);
4340 end if;
4341
4342 exception
4343 when Instantiation_Error =>
4344 if Parent_Installed then
4345 Remove_Parent;
4346 end if;
4347
4348 if Env_Installed then
4349 Restore_Env;
4350 end if;
4351
4352 Ignore_Pragma_SPARK_Mode := Save_IPSM;
4353 SPARK_Mode := Save_SM;
4354 SPARK_Mode_Pragma := Save_SMP;
4355 Style_Check := Save_Style_Check;
4356
4357 if SPARK_Mode = On then
4358 Dynamic_Elaboration_Checks := False;
4359 end if;
4360 end Analyze_Package_Instantiation;
4361
4362 --------------------------
4363 -- Inline_Instance_Body --
4364 --------------------------
4365
4366 procedure Inline_Instance_Body
4367 (N : Node_Id;
4368 Gen_Unit : Entity_Id;
4369 Act_Decl : Node_Id)
4370 is
4371 Curr_Comp : constant Node_Id := Cunit (Current_Sem_Unit);
4372 Curr_Unit : constant Entity_Id := Cunit_Entity (Current_Sem_Unit);
4373 Gen_Comp : constant Entity_Id :=
4374 Cunit_Entity (Get_Source_Unit (Gen_Unit));
4375
4376 Save_SM : constant SPARK_Mode_Type := SPARK_Mode;
4377 Save_SMP : constant Node_Id := SPARK_Mode_Pragma;
4378 -- Save all SPARK_Mode-related attributes as removing enclosing scopes
4379 -- to provide a clean environment for analysis of the inlined body will
4380 -- eliminate any previously set SPARK_Mode.
4381
4382 Scope_Stack_Depth : constant Int :=
4383 Scope_Stack.Last - Scope_Stack.First + 1;
4384
4385 Use_Clauses : array (1 .. Scope_Stack_Depth) of Node_Id;
4386 Instances : array (1 .. Scope_Stack_Depth) of Entity_Id;
4387 Inner_Scopes : array (1 .. Scope_Stack_Depth) of Entity_Id;
4388 Curr_Scope : Entity_Id := Empty;
4389 List : Elist_Id;
4390 Num_Inner : Int := 0;
4391 Num_Scopes : Int := 0;
4392 N_Instances : Int := 0;
4393 Removed : Boolean := False;
4394 S : Entity_Id;
4395 Vis : Boolean;
4396
4397 begin
4398 -- Case of generic unit defined in another unit. We must remove the
4399 -- complete context of the current unit to install that of the generic.
4400
4401 if Gen_Comp /= Cunit_Entity (Current_Sem_Unit) then
4402
4403 -- Add some comments for the following two loops ???
4404
4405 S := Current_Scope;
4406 while Present (S) and then S /= Standard_Standard loop
4407 loop
4408 Num_Scopes := Num_Scopes + 1;
4409
4410 Use_Clauses (Num_Scopes) :=
4411 (Scope_Stack.Table
4412 (Scope_Stack.Last - Num_Scopes + 1).
4413 First_Use_Clause);
4414 End_Use_Clauses (Use_Clauses (Num_Scopes));
4415
4416 exit when Scope_Stack.Last - Num_Scopes + 1 = Scope_Stack.First
4417 or else Scope_Stack.Table
4418 (Scope_Stack.Last - Num_Scopes).Entity = Scope (S);
4419 end loop;
4420
4421 exit when Is_Generic_Instance (S)
4422 and then (In_Package_Body (S)
4423 or else Ekind (S) = E_Procedure
4424 or else Ekind (S) = E_Function);
4425 S := Scope (S);
4426 end loop;
4427
4428 Vis := Is_Immediately_Visible (Gen_Comp);
4429
4430 -- Find and save all enclosing instances
4431
4432 S := Current_Scope;
4433
4434 while Present (S)
4435 and then S /= Standard_Standard
4436 loop
4437 if Is_Generic_Instance (S) then
4438 N_Instances := N_Instances + 1;
4439 Instances (N_Instances) := S;
4440
4441 exit when In_Package_Body (S);
4442 end if;
4443
4444 S := Scope (S);
4445 end loop;
4446
4447 -- Remove context of current compilation unit, unless we are within a
4448 -- nested package instantiation, in which case the context has been
4449 -- removed previously.
4450
4451 -- If current scope is the body of a child unit, remove context of
4452 -- spec as well. If an enclosing scope is an instance body, the
4453 -- context has already been removed, but the entities in the body
4454 -- must be made invisible as well.
4455
4456 S := Current_Scope;
4457 while Present (S) and then S /= Standard_Standard loop
4458 if Is_Generic_Instance (S)
4459 and then (In_Package_Body (S)
4460 or else Ekind_In (S, E_Procedure, E_Function))
4461 then
4462 -- We still have to remove the entities of the enclosing
4463 -- instance from direct visibility.
4464
4465 declare
4466 E : Entity_Id;
4467 begin
4468 E := First_Entity (S);
4469 while Present (E) loop
4470 Set_Is_Immediately_Visible (E, False);
4471 Next_Entity (E);
4472 end loop;
4473 end;
4474
4475 exit;
4476 end if;
4477
4478 if S = Curr_Unit
4479 or else (Ekind (Curr_Unit) = E_Package_Body
4480 and then S = Spec_Entity (Curr_Unit))
4481 or else (Ekind (Curr_Unit) = E_Subprogram_Body
4482 and then S = Corresponding_Spec
4483 (Unit_Declaration_Node (Curr_Unit)))
4484 then
4485 Removed := True;
4486
4487 -- Remove entities in current scopes from visibility, so that
4488 -- instance body is compiled in a clean environment.
4489
4490 List := Save_Scope_Stack (Handle_Use => False);
4491
4492 if Is_Child_Unit (S) then
4493
4494 -- Remove child unit from stack, as well as inner scopes.
4495 -- Removing the context of a child unit removes parent units
4496 -- as well.
4497
4498 while Current_Scope /= S loop
4499 Num_Inner := Num_Inner + 1;
4500 Inner_Scopes (Num_Inner) := Current_Scope;
4501 Pop_Scope;
4502 end loop;
4503
4504 Pop_Scope;
4505 Remove_Context (Curr_Comp);
4506 Curr_Scope := S;
4507
4508 else
4509 Remove_Context (Curr_Comp);
4510 end if;
4511
4512 if Ekind (Curr_Unit) = E_Package_Body then
4513 Remove_Context (Library_Unit (Curr_Comp));
4514 end if;
4515 end if;
4516
4517 S := Scope (S);
4518 end loop;
4519
4520 pragma Assert (Num_Inner < Num_Scopes);
4521
4522 -- The inlined package body must be analyzed with the SPARK_Mode of
4523 -- the enclosing context, otherwise the body may cause bogus errors
4524 -- if a configuration SPARK_Mode pragma in in effect.
4525
4526 Push_Scope (Standard_Standard);
4527 Scope_Stack.Table (Scope_Stack.Last).Is_Active_Stack_Base := True;
4528 Instantiate_Package_Body
4529 (Body_Info =>
4530 ((Inst_Node => N,
4531 Act_Decl => Act_Decl,
4532 Expander_Status => Expander_Active,
4533 Current_Sem_Unit => Current_Sem_Unit,
4534 Scope_Suppress => Scope_Suppress,
4535 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
4536 Version => Ada_Version,
4537 Version_Pragma => Ada_Version_Pragma,
4538 Warnings => Save_Warnings,
4539 SPARK_Mode => Save_SM,
4540 SPARK_Mode_Pragma => Save_SMP)),
4541 Inlined_Body => True);
4542
4543 Pop_Scope;
4544
4545 -- Restore context
4546
4547 Set_Is_Immediately_Visible (Gen_Comp, Vis);
4548
4549 -- Reset Generic_Instance flag so that use clauses can be installed
4550 -- in the proper order. (See Use_One_Package for effect of enclosing
4551 -- instances on processing of use clauses).
4552
4553 for J in 1 .. N_Instances loop
4554 Set_Is_Generic_Instance (Instances (J), False);
4555 end loop;
4556
4557 if Removed then
4558 Install_Context (Curr_Comp);
4559
4560 if Present (Curr_Scope)
4561 and then Is_Child_Unit (Curr_Scope)
4562 then
4563 Push_Scope (Curr_Scope);
4564 Set_Is_Immediately_Visible (Curr_Scope);
4565
4566 -- Finally, restore inner scopes as well
4567
4568 for J in reverse 1 .. Num_Inner loop
4569 Push_Scope (Inner_Scopes (J));
4570 end loop;
4571 end if;
4572
4573 Restore_Scope_Stack (List, Handle_Use => False);
4574
4575 if Present (Curr_Scope)
4576 and then
4577 (In_Private_Part (Curr_Scope)
4578 or else In_Package_Body (Curr_Scope))
4579 then
4580 -- Install private declaration of ancestor units, which are
4581 -- currently available. Restore_Scope_Stack and Install_Context
4582 -- only install the visible part of parents.
4583
4584 declare
4585 Par : Entity_Id;
4586 begin
4587 Par := Scope (Curr_Scope);
4588 while (Present (Par)) and then Par /= Standard_Standard loop
4589 Install_Private_Declarations (Par);
4590 Par := Scope (Par);
4591 end loop;
4592 end;
4593 end if;
4594 end if;
4595
4596 -- Restore use clauses. For a child unit, use clauses in the parents
4597 -- are restored when installing the context, so only those in inner
4598 -- scopes (and those local to the child unit itself) need to be
4599 -- installed explicitly.
4600
4601 if Is_Child_Unit (Curr_Unit) and then Removed then
4602 for J in reverse 1 .. Num_Inner + 1 loop
4603 Scope_Stack.Table (Scope_Stack.Last - J + 1).First_Use_Clause :=
4604 Use_Clauses (J);
4605 Install_Use_Clauses (Use_Clauses (J));
4606 end loop;
4607
4608 else
4609 for J in reverse 1 .. Num_Scopes loop
4610 Scope_Stack.Table (Scope_Stack.Last - J + 1).First_Use_Clause :=
4611 Use_Clauses (J);
4612 Install_Use_Clauses (Use_Clauses (J));
4613 end loop;
4614 end if;
4615
4616 -- Restore status of instances. If one of them is a body, make its
4617 -- local entities visible again.
4618
4619 declare
4620 E : Entity_Id;
4621 Inst : Entity_Id;
4622
4623 begin
4624 for J in 1 .. N_Instances loop
4625 Inst := Instances (J);
4626 Set_Is_Generic_Instance (Inst, True);
4627
4628 if In_Package_Body (Inst)
4629 or else Ekind_In (S, E_Procedure, E_Function)
4630 then
4631 E := First_Entity (Instances (J));
4632 while Present (E) loop
4633 Set_Is_Immediately_Visible (E);
4634 Next_Entity (E);
4635 end loop;
4636 end if;
4637 end loop;
4638 end;
4639
4640 -- If generic unit is in current unit, current context is correct. Note
4641 -- that the context is guaranteed to carry the correct SPARK_Mode as no
4642 -- enclosing scopes were removed.
4643
4644 else
4645 Instantiate_Package_Body
4646 (Body_Info =>
4647 ((Inst_Node => N,
4648 Act_Decl => Act_Decl,
4649 Expander_Status => Expander_Active,
4650 Current_Sem_Unit => Current_Sem_Unit,
4651 Scope_Suppress => Scope_Suppress,
4652 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
4653 Version => Ada_Version,
4654 Version_Pragma => Ada_Version_Pragma,
4655 Warnings => Save_Warnings,
4656 SPARK_Mode => SPARK_Mode,
4657 SPARK_Mode_Pragma => SPARK_Mode_Pragma)),
4658 Inlined_Body => True);
4659 end if;
4660 end Inline_Instance_Body;
4661
4662 -------------------------------------
4663 -- Analyze_Procedure_Instantiation --
4664 -------------------------------------
4665
4666 procedure Analyze_Procedure_Instantiation (N : Node_Id) is
4667 begin
4668 Analyze_Subprogram_Instantiation (N, E_Procedure);
4669 end Analyze_Procedure_Instantiation;
4670
4671 -----------------------------------
4672 -- Need_Subprogram_Instance_Body --
4673 -----------------------------------
4674
4675 function Need_Subprogram_Instance_Body
4676 (N : Node_Id;
4677 Subp : Entity_Id) return Boolean
4678 is
4679 begin
4680 -- Must be inlined (or inlined renaming)
4681
4682 if (Is_In_Main_Unit (N)
4683 or else Is_Inlined (Subp)
4684 or else Is_Inlined (Alias (Subp)))
4685
4686 -- Must be generating code or analyzing code in ASIS/GNATprove mode
4687
4688 and then (Operating_Mode = Generate_Code
4689 or else (Operating_Mode = Check_Semantics
4690 and then (ASIS_Mode or GNATprove_Mode)))
4691
4692 -- The body is needed when generating code (full expansion), in ASIS
4693 -- mode for other tools, and in GNATprove mode (special expansion) for
4694 -- formal verification of the body itself.
4695
4696 and then (Expander_Active or ASIS_Mode or GNATprove_Mode)
4697
4698 -- No point in inlining if ABE is inevitable
4699
4700 and then not ABE_Is_Certain (N)
4701
4702 -- Or if subprogram is eliminated
4703
4704 and then not Is_Eliminated (Subp)
4705 then
4706 Pending_Instantiations.Append
4707 ((Inst_Node => N,
4708 Act_Decl => Unit_Declaration_Node (Subp),
4709 Expander_Status => Expander_Active,
4710 Current_Sem_Unit => Current_Sem_Unit,
4711 Scope_Suppress => Scope_Suppress,
4712 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
4713 Version => Ada_Version,
4714 Version_Pragma => Ada_Version_Pragma,
4715 Warnings => Save_Warnings,
4716 SPARK_Mode => SPARK_Mode,
4717 SPARK_Mode_Pragma => SPARK_Mode_Pragma));
4718 return True;
4719
4720 -- Here if not inlined, or we ignore the inlining
4721
4722 else
4723 return False;
4724 end if;
4725 end Need_Subprogram_Instance_Body;
4726
4727 --------------------------------------
4728 -- Analyze_Subprogram_Instantiation --
4729 --------------------------------------
4730
4731 procedure Analyze_Subprogram_Instantiation
4732 (N : Node_Id;
4733 K : Entity_Kind)
4734 is
4735 Loc : constant Source_Ptr := Sloc (N);
4736 Gen_Id : constant Node_Id := Name (N);
4737
4738 Anon_Id : constant Entity_Id :=
4739 Make_Defining_Identifier (Sloc (Defining_Entity (N)),
4740 Chars => New_External_Name
4741 (Chars (Defining_Entity (N)), 'R'));
4742
4743 Act_Decl_Id : Entity_Id;
4744 Act_Decl : Node_Id;
4745 Act_Spec : Node_Id;
4746 Act_Tree : Node_Id;
4747
4748 Env_Installed : Boolean := False;
4749 Gen_Unit : Entity_Id;
4750 Gen_Decl : Node_Id;
4751 Pack_Id : Entity_Id;
4752 Parent_Installed : Boolean := False;
4753
4754 Renaming_List : List_Id;
4755 -- The list of declarations that link formals and actuals of the
4756 -- instance. These are subtype declarations for formal types, and
4757 -- renaming declarations for other formals. The subprogram declaration
4758 -- for the instance is then appended to the list, and the last item on
4759 -- the list is the renaming declaration for the instance.
4760
4761 procedure Analyze_Instance_And_Renamings;
4762 -- The instance must be analyzed in a context that includes the mappings
4763 -- of generic parameters into actuals. We create a package declaration
4764 -- for this purpose, and a subprogram with an internal name within the
4765 -- package. The subprogram instance is simply an alias for the internal
4766 -- subprogram, declared in the current scope.
4767
4768 procedure Build_Subprogram_Renaming;
4769 -- If the subprogram is recursive, there are occurrences of the name of
4770 -- the generic within the body, which must resolve to the current
4771 -- instance. We add a renaming declaration after the declaration, which
4772 -- is available in the instance body, as well as in the analysis of
4773 -- aspects that appear in the generic. This renaming declaration is
4774 -- inserted after the instance declaration which it renames.
4775
4776 procedure Instantiate_Subprogram_Contract (Templ : Node_Id);
4777 -- Instantiate all source pragmas found in the contract of the generic
4778 -- subprogram declaration template denoted by Templ. The instantiated
4779 -- pragmas are added to list Renaming_List.
4780
4781 ------------------------------------
4782 -- Analyze_Instance_And_Renamings --
4783 ------------------------------------
4784
4785 procedure Analyze_Instance_And_Renamings is
4786 Def_Ent : constant Entity_Id := Defining_Entity (N);
4787 Pack_Decl : Node_Id;
4788
4789 begin
4790 if Nkind (Parent (N)) = N_Compilation_Unit then
4791
4792 -- For the case of a compilation unit, the container package has
4793 -- the same name as the instantiation, to insure that the binder
4794 -- calls the elaboration procedure with the right name. Copy the
4795 -- entity of the instance, which may have compilation level flags
4796 -- (e.g. Is_Child_Unit) set.
4797
4798 Pack_Id := New_Copy (Def_Ent);
4799
4800 else
4801 -- Otherwise we use the name of the instantiation concatenated
4802 -- with its source position to ensure uniqueness if there are
4803 -- several instantiations with the same name.
4804
4805 Pack_Id :=
4806 Make_Defining_Identifier (Loc,
4807 Chars => New_External_Name
4808 (Related_Id => Chars (Def_Ent),
4809 Suffix => "GP",
4810 Suffix_Index => Source_Offset (Sloc (Def_Ent))));
4811 end if;
4812
4813 Pack_Decl :=
4814 Make_Package_Declaration (Loc,
4815 Specification => Make_Package_Specification (Loc,
4816 Defining_Unit_Name => Pack_Id,
4817 Visible_Declarations => Renaming_List,
4818 End_Label => Empty));
4819
4820 Set_Instance_Spec (N, Pack_Decl);
4821 Set_Is_Generic_Instance (Pack_Id);
4822 Set_Debug_Info_Needed (Pack_Id);
4823
4824 -- Case of not a compilation unit
4825
4826 if Nkind (Parent (N)) /= N_Compilation_Unit then
4827 Mark_Rewrite_Insertion (Pack_Decl);
4828 Insert_Before (N, Pack_Decl);
4829 Set_Has_Completion (Pack_Id);
4830
4831 -- Case of an instantiation that is a compilation unit
4832
4833 -- Place declaration on current node so context is complete for
4834 -- analysis (including nested instantiations), and for use in a
4835 -- context_clause (see Analyze_With_Clause).
4836
4837 else
4838 Set_Unit (Parent (N), Pack_Decl);
4839 Set_Parent_Spec (Pack_Decl, Parent_Spec (N));
4840 end if;
4841
4842 Analyze (Pack_Decl);
4843 Check_Formal_Packages (Pack_Id);
4844 Set_Is_Generic_Instance (Pack_Id, False);
4845
4846 -- Why do we clear Is_Generic_Instance??? We set it 20 lines
4847 -- above???
4848
4849 -- Body of the enclosing package is supplied when instantiating the
4850 -- subprogram body, after semantic analysis is completed.
4851
4852 if Nkind (Parent (N)) = N_Compilation_Unit then
4853
4854 -- Remove package itself from visibility, so it does not
4855 -- conflict with subprogram.
4856
4857 Set_Name_Entity_Id (Chars (Pack_Id), Homonym (Pack_Id));
4858
4859 -- Set name and scope of internal subprogram so that the proper
4860 -- external name will be generated. The proper scope is the scope
4861 -- of the wrapper package. We need to generate debugging info for
4862 -- the internal subprogram, so set flag accordingly.
4863
4864 Set_Chars (Anon_Id, Chars (Defining_Entity (N)));
4865 Set_Scope (Anon_Id, Scope (Pack_Id));
4866
4867 -- Mark wrapper package as referenced, to avoid spurious warnings
4868 -- if the instantiation appears in various with_ clauses of
4869 -- subunits of the main unit.
4870
4871 Set_Referenced (Pack_Id);
4872 end if;
4873
4874 Set_Is_Generic_Instance (Anon_Id);
4875 Set_Debug_Info_Needed (Anon_Id);
4876 Act_Decl_Id := New_Copy (Anon_Id);
4877
4878 Set_Parent (Act_Decl_Id, Parent (Anon_Id));
4879 Set_Chars (Act_Decl_Id, Chars (Defining_Entity (N)));
4880 Set_Sloc (Act_Decl_Id, Sloc (Defining_Entity (N)));
4881
4882 -- Subprogram instance comes from source only if generic does
4883
4884 Set_Comes_From_Source (Act_Decl_Id, Comes_From_Source (Gen_Unit));
4885
4886 -- The signature may involve types that are not frozen yet, but the
4887 -- subprogram will be frozen at the point the wrapper package is
4888 -- frozen, so it does not need its own freeze node. In fact, if one
4889 -- is created, it might conflict with the freezing actions from the
4890 -- wrapper package.
4891
4892 Set_Has_Delayed_Freeze (Anon_Id, False);
4893
4894 -- If the instance is a child unit, mark the Id accordingly. Mark
4895 -- the anonymous entity as well, which is the real subprogram and
4896 -- which is used when the instance appears in a context clause.
4897 -- Similarly, propagate the Is_Eliminated flag to handle properly
4898 -- nested eliminated subprograms.
4899
4900 Set_Is_Child_Unit (Act_Decl_Id, Is_Child_Unit (Defining_Entity (N)));
4901 Set_Is_Child_Unit (Anon_Id, Is_Child_Unit (Defining_Entity (N)));
4902 New_Overloaded_Entity (Act_Decl_Id);
4903 Check_Eliminated (Act_Decl_Id);
4904 Set_Is_Eliminated (Anon_Id, Is_Eliminated (Act_Decl_Id));
4905
4906 -- In compilation unit case, kill elaboration checks on the
4907 -- instantiation, since they are never needed -- the body is
4908 -- instantiated at the same point as the spec.
4909
4910 if Nkind (Parent (N)) = N_Compilation_Unit then
4911 Set_Suppress_Elaboration_Warnings (Act_Decl_Id);
4912 Set_Kill_Elaboration_Checks (Act_Decl_Id);
4913 Set_Is_Compilation_Unit (Anon_Id);
4914
4915 Set_Cunit_Entity (Current_Sem_Unit, Pack_Id);
4916 end if;
4917
4918 -- The instance is not a freezing point for the new subprogram
4919
4920 Set_Is_Frozen (Act_Decl_Id, False);
4921
4922 if Nkind (Defining_Entity (N)) = N_Defining_Operator_Symbol then
4923 Valid_Operator_Definition (Act_Decl_Id);
4924 end if;
4925
4926 Set_Alias (Act_Decl_Id, Anon_Id);
4927 Set_Parent (Act_Decl_Id, Parent (Anon_Id));
4928 Set_Has_Completion (Act_Decl_Id);
4929 Set_Related_Instance (Pack_Id, Act_Decl_Id);
4930
4931 if Nkind (Parent (N)) = N_Compilation_Unit then
4932 Set_Body_Required (Parent (N), False);
4933 end if;
4934 end Analyze_Instance_And_Renamings;
4935
4936 -------------------------------
4937 -- Build_Subprogram_Renaming --
4938 -------------------------------
4939
4940 procedure Build_Subprogram_Renaming is
4941 Renaming_Decl : Node_Id;
4942 Unit_Renaming : Node_Id;
4943
4944 begin
4945 Unit_Renaming :=
4946 Make_Subprogram_Renaming_Declaration (Loc,
4947 Specification =>
4948 Copy_Generic_Node
4949 (Specification (Original_Node (Gen_Decl)),
4950 Empty,
4951 Instantiating => True),
4952 Name => New_Occurrence_Of (Anon_Id, Loc));
4953
4954 -- The generic may be a a child unit. The renaming needs an
4955 -- identifier with the proper name.
4956
4957 Set_Defining_Unit_Name (Specification (Unit_Renaming),
4958 Make_Defining_Identifier (Loc, Chars (Gen_Unit)));
4959
4960 -- If there is a formal subprogram with the same name as the unit
4961 -- itself, do not add this renaming declaration, to prevent
4962 -- ambiguities when there is a call with that name in the body.
4963 -- This is a partial and ugly fix for one ACATS test. ???
4964
4965 Renaming_Decl := First (Renaming_List);
4966 while Present (Renaming_Decl) loop
4967 if Nkind (Renaming_Decl) = N_Subprogram_Renaming_Declaration
4968 and then
4969 Chars (Defining_Entity (Renaming_Decl)) = Chars (Gen_Unit)
4970 then
4971 exit;
4972 end if;
4973
4974 Next (Renaming_Decl);
4975 end loop;
4976
4977 if No (Renaming_Decl) then
4978 Append (Unit_Renaming, Renaming_List);
4979 end if;
4980 end Build_Subprogram_Renaming;
4981
4982 -------------------------------------
4983 -- Instantiate_Subprogram_Contract --
4984 -------------------------------------
4985
4986 procedure Instantiate_Subprogram_Contract (Templ : Node_Id) is
4987 procedure Instantiate_Pragmas (First_Prag : Node_Id);
4988 -- Instantiate all contract-related source pragmas found in the list
4989 -- starting with pragma First_Prag. Each instantiated pragma is added
4990 -- to list Renaming_List.
4991
4992 -------------------------
4993 -- Instantiate_Pragmas --
4994 -------------------------
4995
4996 procedure Instantiate_Pragmas (First_Prag : Node_Id) is
4997 Inst_Prag : Node_Id;
4998 Prag : Node_Id;
4999
5000 begin
5001 Prag := First_Prag;
5002 while Present (Prag) loop
5003 if Is_Generic_Contract_Pragma (Prag) then
5004 Inst_Prag :=
5005 Copy_Generic_Node (Prag, Empty, Instantiating => True);
5006
5007 Set_Analyzed (Inst_Prag, False);
5008 Append_To (Renaming_List, Inst_Prag);
5009 end if;
5010
5011 Prag := Next_Pragma (Prag);
5012 end loop;
5013 end Instantiate_Pragmas;
5014
5015 -- Local variables
5016
5017 Items : constant Node_Id := Contract (Defining_Entity (Templ));
5018
5019 -- Start of processing for Instantiate_Subprogram_Contract
5020
5021 begin
5022 if Present (Items) then
5023 Instantiate_Pragmas (Pre_Post_Conditions (Items));
5024 Instantiate_Pragmas (Contract_Test_Cases (Items));
5025 Instantiate_Pragmas (Classifications (Items));
5026 end if;
5027 end Instantiate_Subprogram_Contract;
5028
5029 -- Local variables
5030
5031 Save_IPSM : constant Boolean := Ignore_Pragma_SPARK_Mode;
5032 -- Save flag Ignore_Pragma_SPARK_Mode for restore on exit
5033
5034 Save_SM : constant SPARK_Mode_Type := SPARK_Mode;
5035 Save_SMP : constant Node_Id := SPARK_Mode_Pragma;
5036 -- Save the SPARK_Mode-related data for restore on exit
5037
5038 Vis_Prims_List : Elist_Id := No_Elist;
5039 -- List of primitives made temporarily visible in the instantiation
5040 -- to match the visibility of the formal type
5041
5042 -- Start of processing for Analyze_Subprogram_Instantiation
5043
5044 begin
5045 Check_SPARK_05_Restriction ("generic is not allowed", N);
5046
5047 -- Very first thing: check for special Text_IO unit in case we are
5048 -- instantiating one of the children of [[Wide_]Wide_]Text_IO. Of course
5049 -- such an instantiation is bogus (these are packages, not subprograms),
5050 -- but we get a better error message if we do this.
5051
5052 Check_Text_IO_Special_Unit (Gen_Id);
5053
5054 -- Make node global for error reporting
5055
5056 Instantiation_Node := N;
5057
5058 -- For package instantiations we turn off style checks, because they
5059 -- will have been emitted in the generic. For subprogram instantiations
5060 -- we want to apply at least the check on overriding indicators so we
5061 -- do not modify the style check status.
5062
5063 -- The renaming declarations for the actuals do not come from source and
5064 -- will not generate spurious warnings.
5065
5066 Preanalyze_Actuals (N);
5067
5068 Init_Env;
5069 Env_Installed := True;
5070 Check_Generic_Child_Unit (Gen_Id, Parent_Installed);
5071 Gen_Unit := Entity (Gen_Id);
5072
5073 Generate_Reference (Gen_Unit, Gen_Id);
5074
5075 if Nkind (Gen_Id) = N_Identifier
5076 and then Chars (Gen_Unit) = Chars (Defining_Entity (N))
5077 then
5078 Error_Msg_NE
5079 ("& is hidden within declaration of instance", Gen_Id, Gen_Unit);
5080 end if;
5081
5082 if Etype (Gen_Unit) = Any_Type then
5083 Restore_Env;
5084 return;
5085 end if;
5086
5087 -- Verify that it is a generic subprogram of the right kind, and that
5088 -- it does not lead to a circular instantiation.
5089
5090 if K = E_Procedure and then Ekind (Gen_Unit) /= E_Generic_Procedure then
5091 Error_Msg_NE
5092 ("& is not the name of a generic procedure", Gen_Id, Gen_Unit);
5093
5094 elsif K = E_Function and then Ekind (Gen_Unit) /= E_Generic_Function then
5095 Error_Msg_NE
5096 ("& is not the name of a generic function", Gen_Id, Gen_Unit);
5097
5098 elsif In_Open_Scopes (Gen_Unit) then
5099 Error_Msg_NE ("instantiation of & within itself", N, Gen_Unit);
5100
5101 else
5102 -- If the context of the instance is subject to SPARK_Mode "off" or
5103 -- the annotation is altogether missing, set the global flag which
5104 -- signals Analyze_Pragma to ignore all SPARK_Mode pragmas within
5105 -- the instance.
5106
5107 if SPARK_Mode /= On then
5108 Ignore_Pragma_SPARK_Mode := True;
5109 end if;
5110
5111 Set_Entity (Gen_Id, Gen_Unit);
5112 Set_Is_Instantiated (Gen_Unit);
5113
5114 if In_Extended_Main_Source_Unit (N) then
5115 Generate_Reference (Gen_Unit, N);
5116 end if;
5117
5118 -- If renaming, get original unit
5119
5120 if Present (Renamed_Object (Gen_Unit))
5121 and then Ekind_In (Renamed_Object (Gen_Unit), E_Generic_Procedure,
5122 E_Generic_Function)
5123 then
5124 Gen_Unit := Renamed_Object (Gen_Unit);
5125 Set_Is_Instantiated (Gen_Unit);
5126 Generate_Reference (Gen_Unit, N);
5127 end if;
5128
5129 if Contains_Instance_Of (Gen_Unit, Current_Scope, Gen_Id) then
5130 Error_Msg_Node_2 := Current_Scope;
5131 Error_Msg_NE
5132 ("circular Instantiation: & instantiated in &!", N, Gen_Unit);
5133 Circularity_Detected := True;
5134 Restore_Hidden_Primitives (Vis_Prims_List);
5135 goto Leave;
5136 end if;
5137
5138 Gen_Decl := Unit_Declaration_Node (Gen_Unit);
5139
5140 -- Initialize renamings map, for error checking
5141
5142 Generic_Renamings.Set_Last (0);
5143 Generic_Renamings_HTable.Reset;
5144
5145 Create_Instantiation_Source (N, Gen_Unit, False, S_Adjustment);
5146
5147 -- Copy original generic tree, to produce text for instantiation
5148
5149 Act_Tree :=
5150 Copy_Generic_Node
5151 (Original_Node (Gen_Decl), Empty, Instantiating => True);
5152
5153 -- Inherit overriding indicator from instance node
5154
5155 Act_Spec := Specification (Act_Tree);
5156 Set_Must_Override (Act_Spec, Must_Override (N));
5157 Set_Must_Not_Override (Act_Spec, Must_Not_Override (N));
5158
5159 Renaming_List :=
5160 Analyze_Associations
5161 (I_Node => N,
5162 Formals => Generic_Formal_Declarations (Act_Tree),
5163 F_Copy => Generic_Formal_Declarations (Gen_Decl));
5164
5165 Vis_Prims_List := Check_Hidden_Primitives (Renaming_List);
5166
5167 -- The subprogram itself cannot contain a nested instance, so the
5168 -- current parent is left empty.
5169
5170 Set_Instance_Env (Gen_Unit, Empty);
5171
5172 -- Build the subprogram declaration, which does not appear in the
5173 -- generic template, and give it a sloc consistent with that of the
5174 -- template.
5175
5176 Set_Defining_Unit_Name (Act_Spec, Anon_Id);
5177 Set_Generic_Parent (Act_Spec, Gen_Unit);
5178 Act_Decl :=
5179 Make_Subprogram_Declaration (Sloc (Act_Spec),
5180 Specification => Act_Spec);
5181
5182 -- The aspects have been copied previously, but they have to be
5183 -- linked explicitly to the new subprogram declaration. Explicit
5184 -- pre/postconditions on the instance are analyzed below, in a
5185 -- separate step.
5186
5187 Move_Aspects (Act_Tree, To => Act_Decl);
5188 Set_Categorization_From_Pragmas (Act_Decl);
5189
5190 if Parent_Installed then
5191 Hide_Current_Scope;
5192 end if;
5193
5194 Append (Act_Decl, Renaming_List);
5195
5196 -- Contract-related source pragmas that follow a generic subprogram
5197 -- must be instantiated explicitly because they are not part of the
5198 -- subprogram template.
5199
5200 Instantiate_Subprogram_Contract (Original_Node (Gen_Decl));
5201 Build_Subprogram_Renaming;
5202
5203 Analyze_Instance_And_Renamings;
5204
5205 -- If the generic is marked Import (Intrinsic), then so is the
5206 -- instance. This indicates that there is no body to instantiate. If
5207 -- generic is marked inline, so it the instance, and the anonymous
5208 -- subprogram it renames. If inlined, or else if inlining is enabled
5209 -- for the compilation, we generate the instance body even if it is
5210 -- not within the main unit.
5211
5212 if Is_Intrinsic_Subprogram (Gen_Unit) then
5213 Set_Is_Intrinsic_Subprogram (Anon_Id);
5214 Set_Is_Intrinsic_Subprogram (Act_Decl_Id);
5215
5216 if Chars (Gen_Unit) = Name_Unchecked_Conversion then
5217 Validate_Unchecked_Conversion (N, Act_Decl_Id);
5218 end if;
5219 end if;
5220
5221 -- Inherit convention from generic unit. Intrinsic convention, as for
5222 -- an instance of unchecked conversion, is not inherited because an
5223 -- explicit Ada instance has been created.
5224
5225 if Has_Convention_Pragma (Gen_Unit)
5226 and then Convention (Gen_Unit) /= Convention_Intrinsic
5227 then
5228 Set_Convention (Act_Decl_Id, Convention (Gen_Unit));
5229 Set_Is_Exported (Act_Decl_Id, Is_Exported (Gen_Unit));
5230 end if;
5231
5232 Generate_Definition (Act_Decl_Id);
5233
5234 -- Inherit all inlining-related flags which apply to the generic in
5235 -- the subprogram and its declaration.
5236
5237 Set_Is_Inlined (Act_Decl_Id, Is_Inlined (Gen_Unit));
5238 Set_Is_Inlined (Anon_Id, Is_Inlined (Gen_Unit));
5239
5240 Set_Has_Pragma_Inline (Act_Decl_Id, Has_Pragma_Inline (Gen_Unit));
5241 Set_Has_Pragma_Inline (Anon_Id, Has_Pragma_Inline (Gen_Unit));
5242
5243 Set_Has_Pragma_Inline_Always
5244 (Act_Decl_Id, Has_Pragma_Inline_Always (Gen_Unit));
5245 Set_Has_Pragma_Inline_Always
5246 (Anon_Id, Has_Pragma_Inline_Always (Gen_Unit));
5247
5248 if not Is_Intrinsic_Subprogram (Gen_Unit) then
5249 Check_Elab_Instantiation (N);
5250 end if;
5251
5252 if Is_Dispatching_Operation (Act_Decl_Id)
5253 and then Ada_Version >= Ada_2005
5254 then
5255 declare
5256 Formal : Entity_Id;
5257
5258 begin
5259 Formal := First_Formal (Act_Decl_Id);
5260 while Present (Formal) loop
5261 if Ekind (Etype (Formal)) = E_Anonymous_Access_Type
5262 and then Is_Controlling_Formal (Formal)
5263 and then not Can_Never_Be_Null (Formal)
5264 then
5265 Error_Msg_NE
5266 ("access parameter& is controlling,", N, Formal);
5267 Error_Msg_NE
5268 ("\corresponding parameter of & must be "
5269 & "explicitly null-excluding", N, Gen_Id);
5270 end if;
5271
5272 Next_Formal (Formal);
5273 end loop;
5274 end;
5275 end if;
5276
5277 Check_Hidden_Child_Unit (N, Gen_Unit, Act_Decl_Id);
5278
5279 Validate_Categorization_Dependency (N, Act_Decl_Id);
5280
5281 if not Is_Intrinsic_Subprogram (Act_Decl_Id) then
5282 Inherit_Context (Gen_Decl, N);
5283
5284 Restore_Private_Views (Pack_Id, False);
5285
5286 -- If the context requires a full instantiation, mark node for
5287 -- subsequent construction of the body.
5288
5289 if Need_Subprogram_Instance_Body (N, Act_Decl_Id) then
5290 Check_Forward_Instantiation (Gen_Decl);
5291
5292 -- The wrapper package is always delayed, because it does not
5293 -- constitute a freeze point, but to insure that the freeze
5294 -- node is placed properly, it is created directly when
5295 -- instantiating the body (otherwise the freeze node might
5296 -- appear to early for nested instantiations).
5297
5298 elsif Nkind (Parent (N)) = N_Compilation_Unit then
5299
5300 -- For ASIS purposes, indicate that the wrapper package has
5301 -- replaced the instantiation node.
5302
5303 Rewrite (N, Unit (Parent (N)));
5304 Set_Unit (Parent (N), N);
5305 end if;
5306
5307 elsif Nkind (Parent (N)) = N_Compilation_Unit then
5308
5309 -- Replace instance node for library-level instantiations of
5310 -- intrinsic subprograms, for ASIS use.
5311
5312 Rewrite (N, Unit (Parent (N)));
5313 Set_Unit (Parent (N), N);
5314 end if;
5315
5316 if Parent_Installed then
5317 Remove_Parent;
5318 end if;
5319
5320 Restore_Hidden_Primitives (Vis_Prims_List);
5321 Restore_Env;
5322 Env_Installed := False;
5323 Generic_Renamings.Set_Last (0);
5324 Generic_Renamings_HTable.Reset;
5325
5326 Ignore_Pragma_SPARK_Mode := Save_IPSM;
5327 SPARK_Mode := Save_SM;
5328 SPARK_Mode_Pragma := Save_SMP;
5329
5330 if SPARK_Mode = On then
5331 Dynamic_Elaboration_Checks := False;
5332 end if;
5333
5334 end if;
5335
5336 <<Leave>>
5337 if Has_Aspects (N) then
5338 Analyze_Aspect_Specifications (N, Act_Decl_Id);
5339 end if;
5340
5341 exception
5342 when Instantiation_Error =>
5343 if Parent_Installed then
5344 Remove_Parent;
5345 end if;
5346
5347 if Env_Installed then
5348 Restore_Env;
5349 end if;
5350
5351 Ignore_Pragma_SPARK_Mode := Save_IPSM;
5352 SPARK_Mode := Save_SM;
5353 SPARK_Mode_Pragma := Save_SMP;
5354
5355 if SPARK_Mode = On then
5356 Dynamic_Elaboration_Checks := False;
5357 end if;
5358 end Analyze_Subprogram_Instantiation;
5359
5360 -------------------------
5361 -- Get_Associated_Node --
5362 -------------------------
5363
5364 function Get_Associated_Node (N : Node_Id) return Node_Id is
5365 Assoc : Node_Id;
5366
5367 begin
5368 Assoc := Associated_Node (N);
5369
5370 if Nkind (Assoc) /= Nkind (N) then
5371 return Assoc;
5372
5373 elsif Nkind_In (Assoc, N_Aggregate, N_Extension_Aggregate) then
5374 return Assoc;
5375
5376 else
5377 -- If the node is part of an inner generic, it may itself have been
5378 -- remapped into a further generic copy. Associated_Node is otherwise
5379 -- used for the entity of the node, and will be of a different node
5380 -- kind, or else N has been rewritten as a literal or function call.
5381
5382 while Present (Associated_Node (Assoc))
5383 and then Nkind (Associated_Node (Assoc)) = Nkind (Assoc)
5384 loop
5385 Assoc := Associated_Node (Assoc);
5386 end loop;
5387
5388 -- Follow and additional link in case the final node was rewritten.
5389 -- This can only happen with nested generic units.
5390
5391 if (Nkind (Assoc) = N_Identifier or else Nkind (Assoc) in N_Op)
5392 and then Present (Associated_Node (Assoc))
5393 and then (Nkind_In (Associated_Node (Assoc), N_Function_Call,
5394 N_Explicit_Dereference,
5395 N_Integer_Literal,
5396 N_Real_Literal,
5397 N_String_Literal))
5398 then
5399 Assoc := Associated_Node (Assoc);
5400 end if;
5401
5402 -- An additional special case: an unconstrained type in an object
5403 -- declaration may have been rewritten as a local subtype constrained
5404 -- by the expression in the declaration. We need to recover the
5405 -- original entity which may be global.
5406
5407 if Present (Original_Node (Assoc))
5408 and then Nkind (Parent (N)) = N_Object_Declaration
5409 then
5410 Assoc := Original_Node (Assoc);
5411 end if;
5412
5413 return Assoc;
5414 end if;
5415 end Get_Associated_Node;
5416
5417 ----------------------------
5418 -- Build_Function_Wrapper --
5419 ----------------------------
5420
5421 function Build_Function_Wrapper
5422 (Formal_Subp : Entity_Id;
5423 Actual_Subp : Entity_Id) return Node_Id
5424 is
5425 Loc : constant Source_Ptr := Sloc (Current_Scope);
5426 Ret_Type : constant Entity_Id := Get_Instance_Of (Etype (Formal_Subp));
5427 Actuals : List_Id;
5428 Decl : Node_Id;
5429 Func_Name : Node_Id;
5430 Func : Entity_Id;
5431 Parm_Type : Node_Id;
5432 Profile : List_Id := New_List;
5433 Spec : Node_Id;
5434 Act_F : Entity_Id;
5435 Form_F : Entity_Id;
5436 New_F : Entity_Id;
5437
5438 begin
5439 Func_Name := New_Occurrence_Of (Actual_Subp, Loc);
5440
5441 Func := Make_Defining_Identifier (Loc, Chars (Formal_Subp));
5442 Set_Ekind (Func, E_Function);
5443 Set_Is_Generic_Actual_Subprogram (Func);
5444
5445 Actuals := New_List;
5446 Profile := New_List;
5447
5448 Act_F := First_Formal (Actual_Subp);
5449 Form_F := First_Formal (Formal_Subp);
5450 while Present (Form_F) loop
5451
5452 -- Create new formal for profile of wrapper, and add a reference
5453 -- to it in the list of actuals for the enclosing call. The name
5454 -- must be that of the formal in the formal subprogram, because
5455 -- calls to it in the generic body may use named associations.
5456
5457 New_F := Make_Defining_Identifier (Loc, Chars (Form_F));
5458
5459 Parm_Type :=
5460 New_Occurrence_Of (Get_Instance_Of (Etype (Form_F)), Loc);
5461
5462 Append_To (Profile,
5463 Make_Parameter_Specification (Loc,
5464 Defining_Identifier => New_F,
5465 Parameter_Type => Parm_Type));
5466
5467 Append_To (Actuals, New_Occurrence_Of (New_F, Loc));
5468 Next_Formal (Form_F);
5469
5470 if Present (Act_F) then
5471 Next_Formal (Act_F);
5472 end if;
5473 end loop;
5474
5475 Spec :=
5476 Make_Function_Specification (Loc,
5477 Defining_Unit_Name => Func,
5478 Parameter_Specifications => Profile,
5479 Result_Definition => New_Occurrence_Of (Ret_Type, Loc));
5480
5481 Decl :=
5482 Make_Expression_Function (Loc,
5483 Specification => Spec,
5484 Expression =>
5485 Make_Function_Call (Loc,
5486 Name => Func_Name,
5487 Parameter_Associations => Actuals));
5488
5489 return Decl;
5490 end Build_Function_Wrapper;
5491
5492 ----------------------------
5493 -- Build_Operator_Wrapper --
5494 ----------------------------
5495
5496 function Build_Operator_Wrapper
5497 (Formal_Subp : Entity_Id;
5498 Actual_Subp : Entity_Id) return Node_Id
5499 is
5500 Loc : constant Source_Ptr := Sloc (Current_Scope);
5501 Ret_Type : constant Entity_Id :=
5502 Get_Instance_Of (Etype (Formal_Subp));
5503 Op_Type : constant Entity_Id :=
5504 Get_Instance_Of (Etype (First_Formal (Formal_Subp)));
5505 Is_Binary : constant Boolean :=
5506 Present (Next_Formal (First_Formal (Formal_Subp)));
5507
5508 Decl : Node_Id;
5509 Expr : Node_Id;
5510 F1, F2 : Entity_Id;
5511 Func : Entity_Id;
5512 Op_Name : Name_Id;
5513 Spec : Node_Id;
5514 L, R : Node_Id;
5515
5516 begin
5517 Op_Name := Chars (Actual_Subp);
5518
5519 -- Create entities for wrapper function and its formals
5520
5521 F1 := Make_Temporary (Loc, 'A');
5522 F2 := Make_Temporary (Loc, 'B');
5523 L := New_Occurrence_Of (F1, Loc);
5524 R := New_Occurrence_Of (F2, Loc);
5525
5526 Func := Make_Defining_Identifier (Loc, Chars (Formal_Subp));
5527 Set_Ekind (Func, E_Function);
5528 Set_Is_Generic_Actual_Subprogram (Func);
5529
5530 Spec :=
5531 Make_Function_Specification (Loc,
5532 Defining_Unit_Name => Func,
5533 Parameter_Specifications => New_List (
5534 Make_Parameter_Specification (Loc,
5535 Defining_Identifier => F1,
5536 Parameter_Type => New_Occurrence_Of (Op_Type, Loc))),
5537 Result_Definition => New_Occurrence_Of (Ret_Type, Loc));
5538
5539 if Is_Binary then
5540 Append_To (Parameter_Specifications (Spec),
5541 Make_Parameter_Specification (Loc,
5542 Defining_Identifier => F2,
5543 Parameter_Type => New_Occurrence_Of (Op_Type, Loc)));
5544 end if;
5545
5546 -- Build expression as a function call, or as an operator node
5547 -- that corresponds to the name of the actual, starting with
5548 -- binary operators.
5549
5550 if Op_Name not in Any_Operator_Name then
5551 Expr :=
5552 Make_Function_Call (Loc,
5553 Name =>
5554 New_Occurrence_Of (Actual_Subp, Loc),
5555 Parameter_Associations => New_List (L));
5556
5557 if Is_Binary then
5558 Append_To (Parameter_Associations (Expr), R);
5559 end if;
5560
5561 -- Binary operators
5562
5563 elsif Is_Binary then
5564 if Op_Name = Name_Op_And then
5565 Expr := Make_Op_And (Loc, Left_Opnd => L, Right_Opnd => R);
5566 elsif Op_Name = Name_Op_Or then
5567 Expr := Make_Op_Or (Loc, Left_Opnd => L, Right_Opnd => R);
5568 elsif Op_Name = Name_Op_Xor then
5569 Expr := Make_Op_Xor (Loc, Left_Opnd => L, Right_Opnd => R);
5570 elsif Op_Name = Name_Op_Eq then
5571 Expr := Make_Op_Eq (Loc, Left_Opnd => L, Right_Opnd => R);
5572 elsif Op_Name = Name_Op_Ne then
5573 Expr := Make_Op_Ne (Loc, Left_Opnd => L, Right_Opnd => R);
5574 elsif Op_Name = Name_Op_Le then
5575 Expr := Make_Op_Le (Loc, Left_Opnd => L, Right_Opnd => R);
5576 elsif Op_Name = Name_Op_Gt then
5577 Expr := Make_Op_Gt (Loc, Left_Opnd => L, Right_Opnd => R);
5578 elsif Op_Name = Name_Op_Ge then
5579 Expr := Make_Op_Ge (Loc, Left_Opnd => L, Right_Opnd => R);
5580 elsif Op_Name = Name_Op_Lt then
5581 Expr := Make_Op_Lt (Loc, Left_Opnd => L, Right_Opnd => R);
5582 elsif Op_Name = Name_Op_Add then
5583 Expr := Make_Op_Add (Loc, Left_Opnd => L, Right_Opnd => R);
5584 elsif Op_Name = Name_Op_Subtract then
5585 Expr := Make_Op_Subtract (Loc, Left_Opnd => L, Right_Opnd => R);
5586 elsif Op_Name = Name_Op_Concat then
5587 Expr := Make_Op_Concat (Loc, Left_Opnd => L, Right_Opnd => R);
5588 elsif Op_Name = Name_Op_Multiply then
5589 Expr := Make_Op_Multiply (Loc, Left_Opnd => L, Right_Opnd => R);
5590 elsif Op_Name = Name_Op_Divide then
5591 Expr := Make_Op_Divide (Loc, Left_Opnd => L, Right_Opnd => R);
5592 elsif Op_Name = Name_Op_Mod then
5593 Expr := Make_Op_Mod (Loc, Left_Opnd => L, Right_Opnd => R);
5594 elsif Op_Name = Name_Op_Rem then
5595 Expr := Make_Op_Rem (Loc, Left_Opnd => L, Right_Opnd => R);
5596 elsif Op_Name = Name_Op_Expon then
5597 Expr := Make_Op_Expon (Loc, Left_Opnd => L, Right_Opnd => R);
5598 end if;
5599
5600 -- Unary operators
5601
5602 else
5603 if Op_Name = Name_Op_Add then
5604 Expr := Make_Op_Plus (Loc, Right_Opnd => L);
5605 elsif Op_Name = Name_Op_Subtract then
5606 Expr := Make_Op_Minus (Loc, Right_Opnd => L);
5607 elsif Op_Name = Name_Op_Abs then
5608 Expr := Make_Op_Abs (Loc, Right_Opnd => L);
5609 elsif Op_Name = Name_Op_Not then
5610 Expr := Make_Op_Not (Loc, Right_Opnd => L);
5611 end if;
5612 end if;
5613
5614 Decl :=
5615 Make_Expression_Function (Loc,
5616 Specification => Spec,
5617 Expression => Expr);
5618
5619 return Decl;
5620 end Build_Operator_Wrapper;
5621
5622 -------------------------------------------
5623 -- Build_Instance_Compilation_Unit_Nodes --
5624 -------------------------------------------
5625
5626 procedure Build_Instance_Compilation_Unit_Nodes
5627 (N : Node_Id;
5628 Act_Body : Node_Id;
5629 Act_Decl : Node_Id)
5630 is
5631 Decl_Cunit : Node_Id;
5632 Body_Cunit : Node_Id;
5633 Citem : Node_Id;
5634 New_Main : constant Entity_Id := Defining_Entity (Act_Decl);
5635 Old_Main : constant Entity_Id := Cunit_Entity (Main_Unit);
5636
5637 begin
5638 -- A new compilation unit node is built for the instance declaration
5639
5640 Decl_Cunit :=
5641 Make_Compilation_Unit (Sloc (N),
5642 Context_Items => Empty_List,
5643 Unit => Act_Decl,
5644 Aux_Decls_Node => Make_Compilation_Unit_Aux (Sloc (N)));
5645
5646 Set_Parent_Spec (Act_Decl, Parent_Spec (N));
5647
5648 -- The new compilation unit is linked to its body, but both share the
5649 -- same file, so we do not set Body_Required on the new unit so as not
5650 -- to create a spurious dependency on a non-existent body in the ali.
5651 -- This simplifies CodePeer unit traversal.
5652
5653 -- We use the original instantiation compilation unit as the resulting
5654 -- compilation unit of the instance, since this is the main unit.
5655
5656 Rewrite (N, Act_Body);
5657
5658 -- Propagate the aspect specifications from the package body template to
5659 -- the instantiated version of the package body.
5660
5661 if Has_Aspects (Act_Body) then
5662 Set_Aspect_Specifications
5663 (N, New_Copy_List_Tree (Aspect_Specifications (Act_Body)));
5664 end if;
5665
5666 Body_Cunit := Parent (N);
5667
5668 -- The two compilation unit nodes are linked by the Library_Unit field
5669
5670 Set_Library_Unit (Decl_Cunit, Body_Cunit);
5671 Set_Library_Unit (Body_Cunit, Decl_Cunit);
5672
5673 -- Preserve the private nature of the package if needed
5674
5675 Set_Private_Present (Decl_Cunit, Private_Present (Body_Cunit));
5676
5677 -- If the instance is not the main unit, its context, categorization
5678 -- and elaboration entity are not relevant to the compilation.
5679
5680 if Body_Cunit /= Cunit (Main_Unit) then
5681 Make_Instance_Unit (Body_Cunit, In_Main => False);
5682 return;
5683 end if;
5684
5685 -- The context clause items on the instantiation, which are now attached
5686 -- to the body compilation unit (since the body overwrote the original
5687 -- instantiation node), semantically belong on the spec, so copy them
5688 -- there. It's harmless to leave them on the body as well. In fact one
5689 -- could argue that they belong in both places.
5690
5691 Citem := First (Context_Items (Body_Cunit));
5692 while Present (Citem) loop
5693 Append (New_Copy (Citem), Context_Items (Decl_Cunit));
5694 Next (Citem);
5695 end loop;
5696
5697 -- Propagate categorization flags on packages, so that they appear in
5698 -- the ali file for the spec of the unit.
5699
5700 if Ekind (New_Main) = E_Package then
5701 Set_Is_Pure (Old_Main, Is_Pure (New_Main));
5702 Set_Is_Preelaborated (Old_Main, Is_Preelaborated (New_Main));
5703 Set_Is_Remote_Types (Old_Main, Is_Remote_Types (New_Main));
5704 Set_Is_Shared_Passive (Old_Main, Is_Shared_Passive (New_Main));
5705 Set_Is_Remote_Call_Interface
5706 (Old_Main, Is_Remote_Call_Interface (New_Main));
5707 end if;
5708
5709 -- Make entry in Units table, so that binder can generate call to
5710 -- elaboration procedure for body, if any.
5711
5712 Make_Instance_Unit (Body_Cunit, In_Main => True);
5713 Main_Unit_Entity := New_Main;
5714 Set_Cunit_Entity (Main_Unit, Main_Unit_Entity);
5715
5716 -- Build elaboration entity, since the instance may certainly generate
5717 -- elaboration code requiring a flag for protection.
5718
5719 Build_Elaboration_Entity (Decl_Cunit, New_Main);
5720 end Build_Instance_Compilation_Unit_Nodes;
5721
5722 -----------------------------
5723 -- Check_Access_Definition --
5724 -----------------------------
5725
5726 procedure Check_Access_Definition (N : Node_Id) is
5727 begin
5728 pragma Assert
5729 (Ada_Version >= Ada_2005 and then Present (Access_Definition (N)));
5730 null;
5731 end Check_Access_Definition;
5732
5733 -----------------------------------
5734 -- Check_Formal_Package_Instance --
5735 -----------------------------------
5736
5737 -- If the formal has specific parameters, they must match those of the
5738 -- actual. Both of them are instances, and the renaming declarations for
5739 -- their formal parameters appear in the same order in both. The analyzed
5740 -- formal has been analyzed in the context of the current instance.
5741
5742 procedure Check_Formal_Package_Instance
5743 (Formal_Pack : Entity_Id;
5744 Actual_Pack : Entity_Id)
5745 is
5746 E1 : Entity_Id := First_Entity (Actual_Pack);
5747 E2 : Entity_Id := First_Entity (Formal_Pack);
5748
5749 Expr1 : Node_Id;
5750 Expr2 : Node_Id;
5751
5752 procedure Check_Mismatch (B : Boolean);
5753 -- Common error routine for mismatch between the parameters of the
5754 -- actual instance and those of the formal package.
5755
5756 function Same_Instantiated_Constant (E1, E2 : Entity_Id) return Boolean;
5757 -- The formal may come from a nested formal package, and the actual may
5758 -- have been constant-folded. To determine whether the two denote the
5759 -- same entity we may have to traverse several definitions to recover
5760 -- the ultimate entity that they refer to.
5761
5762 function Same_Instantiated_Function (E1, E2 : Entity_Id) return Boolean;
5763 -- The formal and the actual must be identical, but if both are
5764 -- given by attributes they end up renaming different generated bodies,
5765 -- and we must verify that the attributes themselves match.
5766
5767 function Same_Instantiated_Variable (E1, E2 : Entity_Id) return Boolean;
5768 -- Similarly, if the formal comes from a nested formal package, the
5769 -- actual may designate the formal through multiple renamings, which
5770 -- have to be followed to determine the original variable in question.
5771
5772 --------------------
5773 -- Check_Mismatch --
5774 --------------------
5775
5776 procedure Check_Mismatch (B : Boolean) is
5777 Kind : constant Node_Kind := Nkind (Parent (E2));
5778
5779 begin
5780 if Kind = N_Formal_Type_Declaration then
5781 return;
5782
5783 elsif Nkind_In (Kind, N_Formal_Object_Declaration,
5784 N_Formal_Package_Declaration)
5785 or else Kind in N_Formal_Subprogram_Declaration
5786 then
5787 null;
5788
5789 -- Ada 2012: If both formal and actual are incomplete types they
5790 -- are conformant.
5791
5792 elsif Is_Incomplete_Type (E1) and then Is_Incomplete_Type (E2) then
5793 null;
5794
5795 elsif B then
5796 Error_Msg_NE
5797 ("actual for & in actual instance does not match formal",
5798 Parent (Actual_Pack), E1);
5799 end if;
5800 end Check_Mismatch;
5801
5802 --------------------------------
5803 -- Same_Instantiated_Constant --
5804 --------------------------------
5805
5806 function Same_Instantiated_Constant
5807 (E1, E2 : Entity_Id) return Boolean
5808 is
5809 Ent : Entity_Id;
5810
5811 begin
5812 Ent := E2;
5813 while Present (Ent) loop
5814 if E1 = Ent then
5815 return True;
5816
5817 elsif Ekind (Ent) /= E_Constant then
5818 return False;
5819
5820 elsif Is_Entity_Name (Constant_Value (Ent)) then
5821 if Entity (Constant_Value (Ent)) = E1 then
5822 return True;
5823 else
5824 Ent := Entity (Constant_Value (Ent));
5825 end if;
5826
5827 -- The actual may be a constant that has been folded. Recover
5828 -- original name.
5829
5830 elsif Is_Entity_Name (Original_Node (Constant_Value (Ent))) then
5831 Ent := Entity (Original_Node (Constant_Value (Ent)));
5832
5833 else
5834 return False;
5835 end if;
5836 end loop;
5837
5838 return False;
5839 end Same_Instantiated_Constant;
5840
5841 --------------------------------
5842 -- Same_Instantiated_Function --
5843 --------------------------------
5844
5845 function Same_Instantiated_Function
5846 (E1, E2 : Entity_Id) return Boolean
5847 is
5848 U1, U2 : Node_Id;
5849 begin
5850 if Alias (E1) = Alias (E2) then
5851 return True;
5852
5853 elsif Present (Alias (E2)) then
5854 U1 := Original_Node (Unit_Declaration_Node (E1));
5855 U2 := Original_Node (Unit_Declaration_Node (Alias (E2)));
5856
5857 return Nkind (U1) = N_Subprogram_Renaming_Declaration
5858 and then Nkind (Name (U1)) = N_Attribute_Reference
5859
5860 and then Nkind (U2) = N_Subprogram_Renaming_Declaration
5861 and then Nkind (Name (U2)) = N_Attribute_Reference
5862
5863 and then
5864 Attribute_Name (Name (U1)) = Attribute_Name (Name (U2));
5865 else
5866 return False;
5867 end if;
5868 end Same_Instantiated_Function;
5869
5870 --------------------------------
5871 -- Same_Instantiated_Variable --
5872 --------------------------------
5873
5874 function Same_Instantiated_Variable
5875 (E1, E2 : Entity_Id) return Boolean
5876 is
5877 function Original_Entity (E : Entity_Id) return Entity_Id;
5878 -- Follow chain of renamings to the ultimate ancestor
5879
5880 ---------------------
5881 -- Original_Entity --
5882 ---------------------
5883
5884 function Original_Entity (E : Entity_Id) return Entity_Id is
5885 Orig : Entity_Id;
5886
5887 begin
5888 Orig := E;
5889 while Nkind (Parent (Orig)) = N_Object_Renaming_Declaration
5890 and then Present (Renamed_Object (Orig))
5891 and then Is_Entity_Name (Renamed_Object (Orig))
5892 loop
5893 Orig := Entity (Renamed_Object (Orig));
5894 end loop;
5895
5896 return Orig;
5897 end Original_Entity;
5898
5899 -- Start of processing for Same_Instantiated_Variable
5900
5901 begin
5902 return Ekind (E1) = Ekind (E2)
5903 and then Original_Entity (E1) = Original_Entity (E2);
5904 end Same_Instantiated_Variable;
5905
5906 -- Start of processing for Check_Formal_Package_Instance
5907
5908 begin
5909 while Present (E1) and then Present (E2) loop
5910 exit when Ekind (E1) = E_Package
5911 and then Renamed_Entity (E1) = Renamed_Entity (Actual_Pack);
5912
5913 -- If the formal is the renaming of the formal package, this
5914 -- is the end of its formal part, which may occur before the
5915 -- end of the formal part in the actual in the presence of
5916 -- defaulted parameters in the formal package.
5917
5918 exit when Nkind (Parent (E2)) = N_Package_Renaming_Declaration
5919 and then Renamed_Entity (E2) = Scope (E2);
5920
5921 -- The analysis of the actual may generate additional internal
5922 -- entities. If the formal is defaulted, there is no corresponding
5923 -- analysis and the internal entities must be skipped, until we
5924 -- find corresponding entities again.
5925
5926 if Comes_From_Source (E2)
5927 and then not Comes_From_Source (E1)
5928 and then Chars (E1) /= Chars (E2)
5929 then
5930 while Present (E1) and then Chars (E1) /= Chars (E2) loop
5931 Next_Entity (E1);
5932 end loop;
5933 end if;
5934
5935 if No (E1) then
5936 return;
5937
5938 -- If the formal entity comes from a formal declaration, it was
5939 -- defaulted in the formal package, and no check is needed on it.
5940
5941 elsif Nkind (Parent (E2)) = N_Formal_Object_Declaration then
5942 goto Next_E;
5943
5944 -- Ditto for defaulted formal subprograms.
5945
5946 elsif Is_Overloadable (E1)
5947 and then Nkind (Unit_Declaration_Node (E2)) in
5948 N_Formal_Subprogram_Declaration
5949 then
5950 goto Next_E;
5951
5952 elsif Is_Type (E1) then
5953
5954 -- Subtypes must statically match. E1, E2 are the local entities
5955 -- that are subtypes of the actuals. Itypes generated for other
5956 -- parameters need not be checked, the check will be performed
5957 -- on the parameters themselves.
5958
5959 -- If E2 is a formal type declaration, it is a defaulted parameter
5960 -- and needs no checking.
5961
5962 if not Is_Itype (E1) and then not Is_Itype (E2) then
5963 Check_Mismatch
5964 (not Is_Type (E2)
5965 or else Etype (E1) /= Etype (E2)
5966 or else not Subtypes_Statically_Match (E1, E2));
5967 end if;
5968
5969 elsif Ekind (E1) = E_Constant then
5970
5971 -- IN parameters must denote the same static value, or the same
5972 -- constant, or the literal null.
5973
5974 Expr1 := Expression (Parent (E1));
5975
5976 if Ekind (E2) /= E_Constant then
5977 Check_Mismatch (True);
5978 goto Next_E;
5979 else
5980 Expr2 := Expression (Parent (E2));
5981 end if;
5982
5983 if Is_OK_Static_Expression (Expr1) then
5984 if not Is_OK_Static_Expression (Expr2) then
5985 Check_Mismatch (True);
5986
5987 elsif Is_Discrete_Type (Etype (E1)) then
5988 declare
5989 V1 : constant Uint := Expr_Value (Expr1);
5990 V2 : constant Uint := Expr_Value (Expr2);
5991 begin
5992 Check_Mismatch (V1 /= V2);
5993 end;
5994
5995 elsif Is_Real_Type (Etype (E1)) then
5996 declare
5997 V1 : constant Ureal := Expr_Value_R (Expr1);
5998 V2 : constant Ureal := Expr_Value_R (Expr2);
5999 begin
6000 Check_Mismatch (V1 /= V2);
6001 end;
6002
6003 elsif Is_String_Type (Etype (E1))
6004 and then Nkind (Expr1) = N_String_Literal
6005 then
6006 if Nkind (Expr2) /= N_String_Literal then
6007 Check_Mismatch (True);
6008 else
6009 Check_Mismatch
6010 (not String_Equal (Strval (Expr1), Strval (Expr2)));
6011 end if;
6012 end if;
6013
6014 elsif Is_Entity_Name (Expr1) then
6015 if Is_Entity_Name (Expr2) then
6016 if Entity (Expr1) = Entity (Expr2) then
6017 null;
6018 else
6019 Check_Mismatch
6020 (not Same_Instantiated_Constant
6021 (Entity (Expr1), Entity (Expr2)));
6022 end if;
6023
6024 else
6025 Check_Mismatch (True);
6026 end if;
6027
6028 elsif Is_Entity_Name (Original_Node (Expr1))
6029 and then Is_Entity_Name (Expr2)
6030 and then Same_Instantiated_Constant
6031 (Entity (Original_Node (Expr1)), Entity (Expr2))
6032 then
6033 null;
6034
6035 elsif Nkind (Expr1) = N_Null then
6036 Check_Mismatch (Nkind (Expr1) /= N_Null);
6037
6038 else
6039 Check_Mismatch (True);
6040 end if;
6041
6042 elsif Ekind (E1) = E_Variable then
6043 Check_Mismatch (not Same_Instantiated_Variable (E1, E2));
6044
6045 elsif Ekind (E1) = E_Package then
6046 Check_Mismatch
6047 (Ekind (E1) /= Ekind (E2)
6048 or else Renamed_Object (E1) /= Renamed_Object (E2));
6049
6050 elsif Is_Overloadable (E1) then
6051
6052 -- Verify that the actual subprograms match. Note that actuals
6053 -- that are attributes are rewritten as subprograms. If the
6054 -- subprogram in the formal package is defaulted, no check is
6055 -- needed. Note that this can only happen in Ada 2005 when the
6056 -- formal package can be partially parameterized.
6057
6058 if Nkind (Unit_Declaration_Node (E1)) =
6059 N_Subprogram_Renaming_Declaration
6060 and then From_Default (Unit_Declaration_Node (E1))
6061 then
6062 null;
6063
6064 -- If the formal package has an "others" box association that
6065 -- covers this formal, there is no need for a check either.
6066
6067 elsif Nkind (Unit_Declaration_Node (E2)) in
6068 N_Formal_Subprogram_Declaration
6069 and then Box_Present (Unit_Declaration_Node (E2))
6070 then
6071 null;
6072
6073 -- No check needed if subprogram is a defaulted null procedure
6074
6075 elsif No (Alias (E2))
6076 and then Ekind (E2) = E_Procedure
6077 and then
6078 Null_Present (Specification (Unit_Declaration_Node (E2)))
6079 then
6080 null;
6081
6082 -- Otherwise the actual in the formal and the actual in the
6083 -- instantiation of the formal must match, up to renamings.
6084
6085 else
6086 Check_Mismatch
6087 (Ekind (E2) /= Ekind (E1)
6088 or else not Same_Instantiated_Function (E1, E2));
6089 end if;
6090
6091 else
6092 raise Program_Error;
6093 end if;
6094
6095 <<Next_E>>
6096 Next_Entity (E1);
6097 Next_Entity (E2);
6098 end loop;
6099 end Check_Formal_Package_Instance;
6100
6101 ---------------------------
6102 -- Check_Formal_Packages --
6103 ---------------------------
6104
6105 procedure Check_Formal_Packages (P_Id : Entity_Id) is
6106 E : Entity_Id;
6107 Formal_P : Entity_Id;
6108
6109 begin
6110 -- Iterate through the declarations in the instance, looking for package
6111 -- renaming declarations that denote instances of formal packages. Stop
6112 -- when we find the renaming of the current package itself. The
6113 -- declaration for a formal package without a box is followed by an
6114 -- internal entity that repeats the instantiation.
6115
6116 E := First_Entity (P_Id);
6117 while Present (E) loop
6118 if Ekind (E) = E_Package then
6119 if Renamed_Object (E) = P_Id then
6120 exit;
6121
6122 elsif Nkind (Parent (E)) /= N_Package_Renaming_Declaration then
6123 null;
6124
6125 elsif not Box_Present (Parent (Associated_Formal_Package (E))) then
6126 Formal_P := Next_Entity (E);
6127 Check_Formal_Package_Instance (Formal_P, E);
6128
6129 -- After checking, remove the internal validating package. It
6130 -- is only needed for semantic checks, and as it may contain
6131 -- generic formal declarations it should not reach gigi.
6132
6133 Remove (Unit_Declaration_Node (Formal_P));
6134 end if;
6135 end if;
6136
6137 Next_Entity (E);
6138 end loop;
6139 end Check_Formal_Packages;
6140
6141 ---------------------------------
6142 -- Check_Forward_Instantiation --
6143 ---------------------------------
6144
6145 procedure Check_Forward_Instantiation (Decl : Node_Id) is
6146 S : Entity_Id;
6147 Gen_Comp : Entity_Id := Cunit_Entity (Get_Source_Unit (Decl));
6148
6149 begin
6150 -- The instantiation appears before the generic body if we are in the
6151 -- scope of the unit containing the generic, either in its spec or in
6152 -- the package body, and before the generic body.
6153
6154 if Ekind (Gen_Comp) = E_Package_Body then
6155 Gen_Comp := Spec_Entity (Gen_Comp);
6156 end if;
6157
6158 if In_Open_Scopes (Gen_Comp)
6159 and then No (Corresponding_Body (Decl))
6160 then
6161 S := Current_Scope;
6162
6163 while Present (S)
6164 and then not Is_Compilation_Unit (S)
6165 and then not Is_Child_Unit (S)
6166 loop
6167 if Ekind (S) = E_Package then
6168 Set_Has_Forward_Instantiation (S);
6169 end if;
6170
6171 S := Scope (S);
6172 end loop;
6173 end if;
6174 end Check_Forward_Instantiation;
6175
6176 ---------------------------
6177 -- Check_Generic_Actuals --
6178 ---------------------------
6179
6180 -- The visibility of the actuals may be different between the point of
6181 -- generic instantiation and the instantiation of the body.
6182
6183 procedure Check_Generic_Actuals
6184 (Instance : Entity_Id;
6185 Is_Formal_Box : Boolean)
6186 is
6187 E : Entity_Id;
6188 Astype : Entity_Id;
6189
6190 function Denotes_Previous_Actual (Typ : Entity_Id) return Boolean;
6191 -- For a formal that is an array type, the component type is often a
6192 -- previous formal in the same unit. The privacy status of the component
6193 -- type will have been examined earlier in the traversal of the
6194 -- corresponding actuals, and this status should not be modified for
6195 -- the array (sub)type itself. However, if the base type of the array
6196 -- (sub)type is private, its full view must be restored in the body to
6197 -- be consistent with subsequent index subtypes, etc.
6198 --
6199 -- To detect this case we have to rescan the list of formals, which is
6200 -- usually short enough to ignore the resulting inefficiency.
6201
6202 -----------------------------
6203 -- Denotes_Previous_Actual --
6204 -----------------------------
6205
6206 function Denotes_Previous_Actual (Typ : Entity_Id) return Boolean is
6207 Prev : Entity_Id;
6208
6209 begin
6210 Prev := First_Entity (Instance);
6211 while Present (Prev) loop
6212 if Is_Type (Prev)
6213 and then Nkind (Parent (Prev)) = N_Subtype_Declaration
6214 and then Is_Entity_Name (Subtype_Indication (Parent (Prev)))
6215 and then Entity (Subtype_Indication (Parent (Prev))) = Typ
6216 then
6217 return True;
6218
6219 elsif Prev = E then
6220 return False;
6221
6222 else
6223 Next_Entity (Prev);
6224 end if;
6225 end loop;
6226
6227 return False;
6228 end Denotes_Previous_Actual;
6229
6230 -- Start of processing for Check_Generic_Actuals
6231
6232 begin
6233 E := First_Entity (Instance);
6234 while Present (E) loop
6235 if Is_Type (E)
6236 and then Nkind (Parent (E)) = N_Subtype_Declaration
6237 and then Scope (Etype (E)) /= Instance
6238 and then Is_Entity_Name (Subtype_Indication (Parent (E)))
6239 then
6240 if Is_Array_Type (E)
6241 and then not Is_Private_Type (Etype (E))
6242 and then Denotes_Previous_Actual (Component_Type (E))
6243 then
6244 null;
6245 else
6246 Check_Private_View (Subtype_Indication (Parent (E)));
6247 end if;
6248
6249 Set_Is_Generic_Actual_Type (E, True);
6250 Set_Is_Hidden (E, False);
6251 Set_Is_Potentially_Use_Visible (E,
6252 In_Use (Instance));
6253
6254 -- We constructed the generic actual type as a subtype of the
6255 -- supplied type. This means that it normally would not inherit
6256 -- subtype specific attributes of the actual, which is wrong for
6257 -- the generic case.
6258
6259 Astype := Ancestor_Subtype (E);
6260
6261 if No (Astype) then
6262
6263 -- This can happen when E is an itype that is the full view of
6264 -- a private type completed, e.g. with a constrained array. In
6265 -- that case, use the first subtype, which will carry size
6266 -- information. The base type itself is unconstrained and will
6267 -- not carry it.
6268
6269 Astype := First_Subtype (E);
6270 end if;
6271
6272 Set_Size_Info (E, (Astype));
6273 Set_RM_Size (E, RM_Size (Astype));
6274 Set_First_Rep_Item (E, First_Rep_Item (Astype));
6275
6276 if Is_Discrete_Or_Fixed_Point_Type (E) then
6277 Set_RM_Size (E, RM_Size (Astype));
6278
6279 -- In nested instances, the base type of an access actual may
6280 -- itself be private, and need to be exchanged.
6281
6282 elsif Is_Access_Type (E)
6283 and then Is_Private_Type (Etype (E))
6284 then
6285 Check_Private_View
6286 (New_Occurrence_Of (Etype (E), Sloc (Instance)));
6287 end if;
6288
6289 elsif Ekind (E) = E_Package then
6290
6291 -- If this is the renaming for the current instance, we're done.
6292 -- Otherwise it is a formal package. If the corresponding formal
6293 -- was declared with a box, the (instantiations of the) generic
6294 -- formal part are also visible. Otherwise, ignore the entity
6295 -- created to validate the actuals.
6296
6297 if Renamed_Object (E) = Instance then
6298 exit;
6299
6300 elsif Nkind (Parent (E)) /= N_Package_Renaming_Declaration then
6301 null;
6302
6303 -- The visibility of a formal of an enclosing generic is already
6304 -- correct.
6305
6306 elsif Denotes_Formal_Package (E) then
6307 null;
6308
6309 elsif Present (Associated_Formal_Package (E))
6310 and then not Is_Generic_Formal (E)
6311 then
6312 if Box_Present (Parent (Associated_Formal_Package (E))) then
6313 Check_Generic_Actuals (Renamed_Object (E), True);
6314
6315 else
6316 Check_Generic_Actuals (Renamed_Object (E), False);
6317 end if;
6318
6319 Set_Is_Hidden (E, False);
6320 end if;
6321
6322 -- If this is a subprogram instance (in a wrapper package) the
6323 -- actual is fully visible.
6324
6325 elsif Is_Wrapper_Package (Instance) then
6326 Set_Is_Hidden (E, False);
6327
6328 -- If the formal package is declared with a box, or if the formal
6329 -- parameter is defaulted, it is visible in the body.
6330
6331 elsif Is_Formal_Box or else Is_Visible_Formal (E) then
6332 Set_Is_Hidden (E, False);
6333 end if;
6334
6335 if Ekind (E) = E_Constant then
6336
6337 -- If the type of the actual is a private type declared in the
6338 -- enclosing scope of the generic unit, the body of the generic
6339 -- sees the full view of the type (because it has to appear in
6340 -- the corresponding package body). If the type is private now,
6341 -- exchange views to restore the proper visiblity in the instance.
6342
6343 declare
6344 Typ : constant Entity_Id := Base_Type (Etype (E));
6345 -- The type of the actual
6346
6347 Gen_Id : Entity_Id;
6348 -- The generic unit
6349
6350 Parent_Scope : Entity_Id;
6351 -- The enclosing scope of the generic unit
6352
6353 begin
6354 if Is_Wrapper_Package (Instance) then
6355 Gen_Id :=
6356 Generic_Parent
6357 (Specification
6358 (Unit_Declaration_Node
6359 (Related_Instance (Instance))));
6360 else
6361 Gen_Id :=
6362 Generic_Parent (Package_Specification (Instance));
6363 end if;
6364
6365 Parent_Scope := Scope (Gen_Id);
6366
6367 -- The exchange is only needed if the generic is defined
6368 -- within a package which is not a common ancestor of the
6369 -- scope of the instance, and is not already in scope.
6370
6371 if Is_Private_Type (Typ)
6372 and then Scope (Typ) = Parent_Scope
6373 and then Scope (Instance) /= Parent_Scope
6374 and then Ekind (Parent_Scope) = E_Package
6375 and then not Is_Child_Unit (Gen_Id)
6376 then
6377 Switch_View (Typ);
6378
6379 -- If the type of the entity is a subtype, it may also have
6380 -- to be made visible, together with the base type of its
6381 -- full view, after exchange.
6382
6383 if Is_Private_Type (Etype (E)) then
6384 Switch_View (Etype (E));
6385 Switch_View (Base_Type (Etype (E)));
6386 end if;
6387 end if;
6388 end;
6389 end if;
6390
6391 Next_Entity (E);
6392 end loop;
6393 end Check_Generic_Actuals;
6394
6395 ------------------------------
6396 -- Check_Generic_Child_Unit --
6397 ------------------------------
6398
6399 procedure Check_Generic_Child_Unit
6400 (Gen_Id : Node_Id;
6401 Parent_Installed : in out Boolean)
6402 is
6403 Loc : constant Source_Ptr := Sloc (Gen_Id);
6404 Gen_Par : Entity_Id := Empty;
6405 E : Entity_Id;
6406 Inst_Par : Entity_Id;
6407 S : Node_Id;
6408
6409 function Find_Generic_Child
6410 (Scop : Entity_Id;
6411 Id : Node_Id) return Entity_Id;
6412 -- Search generic parent for possible child unit with the given name
6413
6414 function In_Enclosing_Instance return Boolean;
6415 -- Within an instance of the parent, the child unit may be denoted by
6416 -- a simple name, or an abbreviated expanded name. Examine enclosing
6417 -- scopes to locate a possible parent instantiation.
6418
6419 ------------------------
6420 -- Find_Generic_Child --
6421 ------------------------
6422
6423 function Find_Generic_Child
6424 (Scop : Entity_Id;
6425 Id : Node_Id) return Entity_Id
6426 is
6427 E : Entity_Id;
6428
6429 begin
6430 -- If entity of name is already set, instance has already been
6431 -- resolved, e.g. in an enclosing instantiation.
6432
6433 if Present (Entity (Id)) then
6434 if Scope (Entity (Id)) = Scop then
6435 return Entity (Id);
6436 else
6437 return Empty;
6438 end if;
6439
6440 else
6441 E := First_Entity (Scop);
6442 while Present (E) loop
6443 if Chars (E) = Chars (Id)
6444 and then Is_Child_Unit (E)
6445 then
6446 if Is_Child_Unit (E)
6447 and then not Is_Visible_Lib_Unit (E)
6448 then
6449 Error_Msg_NE
6450 ("generic child unit& is not visible", Gen_Id, E);
6451 end if;
6452
6453 Set_Entity (Id, E);
6454 return E;
6455 end if;
6456
6457 Next_Entity (E);
6458 end loop;
6459
6460 return Empty;
6461 end if;
6462 end Find_Generic_Child;
6463
6464 ---------------------------
6465 -- In_Enclosing_Instance --
6466 ---------------------------
6467
6468 function In_Enclosing_Instance return Boolean is
6469 Enclosing_Instance : Node_Id;
6470 Instance_Decl : Node_Id;
6471
6472 begin
6473 -- We do not inline any call that contains instantiations, except
6474 -- for instantiations of Unchecked_Conversion, so if we are within
6475 -- an inlined body the current instance does not require parents.
6476
6477 if In_Inlined_Body then
6478 pragma Assert (Chars (Gen_Id) = Name_Unchecked_Conversion);
6479 return False;
6480 end if;
6481
6482 -- Loop to check enclosing scopes
6483
6484 Enclosing_Instance := Current_Scope;
6485 while Present (Enclosing_Instance) loop
6486 Instance_Decl := Unit_Declaration_Node (Enclosing_Instance);
6487
6488 if Ekind (Enclosing_Instance) = E_Package
6489 and then Is_Generic_Instance (Enclosing_Instance)
6490 and then Present
6491 (Generic_Parent (Specification (Instance_Decl)))
6492 then
6493 -- Check whether the generic we are looking for is a child of
6494 -- this instance.
6495
6496 E := Find_Generic_Child
6497 (Generic_Parent (Specification (Instance_Decl)), Gen_Id);
6498 exit when Present (E);
6499
6500 else
6501 E := Empty;
6502 end if;
6503
6504 Enclosing_Instance := Scope (Enclosing_Instance);
6505 end loop;
6506
6507 if No (E) then
6508
6509 -- Not a child unit
6510
6511 Analyze (Gen_Id);
6512 return False;
6513
6514 else
6515 Rewrite (Gen_Id,
6516 Make_Expanded_Name (Loc,
6517 Chars => Chars (E),
6518 Prefix => New_Occurrence_Of (Enclosing_Instance, Loc),
6519 Selector_Name => New_Occurrence_Of (E, Loc)));
6520
6521 Set_Entity (Gen_Id, E);
6522 Set_Etype (Gen_Id, Etype (E));
6523 Parent_Installed := False; -- Already in scope.
6524 return True;
6525 end if;
6526 end In_Enclosing_Instance;
6527
6528 -- Start of processing for Check_Generic_Child_Unit
6529
6530 begin
6531 -- If the name of the generic is given by a selected component, it may
6532 -- be the name of a generic child unit, and the prefix is the name of an
6533 -- instance of the parent, in which case the child unit must be visible.
6534 -- If this instance is not in scope, it must be placed there and removed
6535 -- after instantiation, because what is being instantiated is not the
6536 -- original child, but the corresponding child present in the instance
6537 -- of the parent.
6538
6539 -- If the child is instantiated within the parent, it can be given by
6540 -- a simple name. In this case the instance is already in scope, but
6541 -- the child generic must be recovered from the generic parent as well.
6542
6543 if Nkind (Gen_Id) = N_Selected_Component then
6544 S := Selector_Name (Gen_Id);
6545 Analyze (Prefix (Gen_Id));
6546 Inst_Par := Entity (Prefix (Gen_Id));
6547
6548 if Ekind (Inst_Par) = E_Package
6549 and then Present (Renamed_Object (Inst_Par))
6550 then
6551 Inst_Par := Renamed_Object (Inst_Par);
6552 end if;
6553
6554 if Ekind (Inst_Par) = E_Package then
6555 if Nkind (Parent (Inst_Par)) = N_Package_Specification then
6556 Gen_Par := Generic_Parent (Parent (Inst_Par));
6557
6558 elsif Nkind (Parent (Inst_Par)) = N_Defining_Program_Unit_Name
6559 and then
6560 Nkind (Parent (Parent (Inst_Par))) = N_Package_Specification
6561 then
6562 Gen_Par := Generic_Parent (Parent (Parent (Inst_Par)));
6563 end if;
6564
6565 elsif Ekind (Inst_Par) = E_Generic_Package
6566 and then Nkind (Parent (Gen_Id)) = N_Formal_Package_Declaration
6567 then
6568 -- A formal package may be a real child package, and not the
6569 -- implicit instance within a parent. In this case the child is
6570 -- not visible and has to be retrieved explicitly as well.
6571
6572 Gen_Par := Inst_Par;
6573 end if;
6574
6575 if Present (Gen_Par) then
6576
6577 -- The prefix denotes an instantiation. The entity itself may be a
6578 -- nested generic, or a child unit.
6579
6580 E := Find_Generic_Child (Gen_Par, S);
6581
6582 if Present (E) then
6583 Change_Selected_Component_To_Expanded_Name (Gen_Id);
6584 Set_Entity (Gen_Id, E);
6585 Set_Etype (Gen_Id, Etype (E));
6586 Set_Entity (S, E);
6587 Set_Etype (S, Etype (E));
6588
6589 -- Indicate that this is a reference to the parent
6590
6591 if In_Extended_Main_Source_Unit (Gen_Id) then
6592 Set_Is_Instantiated (Inst_Par);
6593 end if;
6594
6595 -- A common mistake is to replicate the naming scheme of a
6596 -- hierarchy by instantiating a generic child directly, rather
6597 -- than the implicit child in a parent instance:
6598
6599 -- generic .. package Gpar is ..
6600 -- generic .. package Gpar.Child is ..
6601 -- package Par is new Gpar ();
6602
6603 -- with Gpar.Child;
6604 -- package Par.Child is new Gpar.Child ();
6605 -- rather than Par.Child
6606
6607 -- In this case the instantiation is within Par, which is an
6608 -- instance, but Gpar does not denote Par because we are not IN
6609 -- the instance of Gpar, so this is illegal. The test below
6610 -- recognizes this particular case.
6611
6612 if Is_Child_Unit (E)
6613 and then not Comes_From_Source (Entity (Prefix (Gen_Id)))
6614 and then (not In_Instance
6615 or else Nkind (Parent (Parent (Gen_Id))) =
6616 N_Compilation_Unit)
6617 then
6618 Error_Msg_N
6619 ("prefix of generic child unit must be instance of parent",
6620 Gen_Id);
6621 end if;
6622
6623 if not In_Open_Scopes (Inst_Par)
6624 and then Nkind (Parent (Gen_Id)) not in
6625 N_Generic_Renaming_Declaration
6626 then
6627 Install_Parent (Inst_Par);
6628 Parent_Installed := True;
6629
6630 elsif In_Open_Scopes (Inst_Par) then
6631
6632 -- If the parent is already installed, install the actuals
6633 -- for its formal packages. This is necessary when the child
6634 -- instance is a child of the parent instance: in this case,
6635 -- the parent is placed on the scope stack but the formal
6636 -- packages are not made visible.
6637
6638 Install_Formal_Packages (Inst_Par);
6639 end if;
6640
6641 else
6642 -- If the generic parent does not contain an entity that
6643 -- corresponds to the selector, the instance doesn't either.
6644 -- Analyzing the node will yield the appropriate error message.
6645 -- If the entity is not a child unit, then it is an inner
6646 -- generic in the parent.
6647
6648 Analyze (Gen_Id);
6649 end if;
6650
6651 else
6652 Analyze (Gen_Id);
6653
6654 if Is_Child_Unit (Entity (Gen_Id))
6655 and then
6656 Nkind (Parent (Gen_Id)) not in N_Generic_Renaming_Declaration
6657 and then not In_Open_Scopes (Inst_Par)
6658 then
6659 Install_Parent (Inst_Par);
6660 Parent_Installed := True;
6661
6662 -- The generic unit may be the renaming of the implicit child
6663 -- present in an instance. In that case the parent instance is
6664 -- obtained from the name of the renamed entity.
6665
6666 elsif Ekind (Entity (Gen_Id)) = E_Generic_Package
6667 and then Present (Renamed_Entity (Entity (Gen_Id)))
6668 and then Is_Child_Unit (Renamed_Entity (Entity (Gen_Id)))
6669 then
6670 declare
6671 Renamed_Package : constant Node_Id :=
6672 Name (Parent (Entity (Gen_Id)));
6673 begin
6674 if Nkind (Renamed_Package) = N_Expanded_Name then
6675 Inst_Par := Entity (Prefix (Renamed_Package));
6676 Install_Parent (Inst_Par);
6677 Parent_Installed := True;
6678 end if;
6679 end;
6680 end if;
6681 end if;
6682
6683 elsif Nkind (Gen_Id) = N_Expanded_Name then
6684
6685 -- Entity already present, analyze prefix, whose meaning may be
6686 -- an instance in the current context. If it is an instance of
6687 -- a relative within another, the proper parent may still have
6688 -- to be installed, if they are not of the same generation.
6689
6690 Analyze (Prefix (Gen_Id));
6691
6692 -- In the unlikely case that a local declaration hides the name
6693 -- of the parent package, locate it on the homonym chain. If the
6694 -- context is an instance of the parent, the renaming entity is
6695 -- flagged as such.
6696
6697 Inst_Par := Entity (Prefix (Gen_Id));
6698 while Present (Inst_Par)
6699 and then not Is_Package_Or_Generic_Package (Inst_Par)
6700 loop
6701 Inst_Par := Homonym (Inst_Par);
6702 end loop;
6703
6704 pragma Assert (Present (Inst_Par));
6705 Set_Entity (Prefix (Gen_Id), Inst_Par);
6706
6707 if In_Enclosing_Instance then
6708 null;
6709
6710 elsif Present (Entity (Gen_Id))
6711 and then Is_Child_Unit (Entity (Gen_Id))
6712 and then not In_Open_Scopes (Inst_Par)
6713 then
6714 Install_Parent (Inst_Par);
6715 Parent_Installed := True;
6716 end if;
6717
6718 elsif In_Enclosing_Instance then
6719
6720 -- The child unit is found in some enclosing scope
6721
6722 null;
6723
6724 else
6725 Analyze (Gen_Id);
6726
6727 -- If this is the renaming of the implicit child in a parent
6728 -- instance, recover the parent name and install it.
6729
6730 if Is_Entity_Name (Gen_Id) then
6731 E := Entity (Gen_Id);
6732
6733 if Is_Generic_Unit (E)
6734 and then Nkind (Parent (E)) in N_Generic_Renaming_Declaration
6735 and then Is_Child_Unit (Renamed_Object (E))
6736 and then Is_Generic_Unit (Scope (Renamed_Object (E)))
6737 and then Nkind (Name (Parent (E))) = N_Expanded_Name
6738 then
6739 Rewrite (Gen_Id, New_Copy_Tree (Name (Parent (E))));
6740 Inst_Par := Entity (Prefix (Gen_Id));
6741
6742 if not In_Open_Scopes (Inst_Par) then
6743 Install_Parent (Inst_Par);
6744 Parent_Installed := True;
6745 end if;
6746
6747 -- If it is a child unit of a non-generic parent, it may be
6748 -- use-visible and given by a direct name. Install parent as
6749 -- for other cases.
6750
6751 elsif Is_Generic_Unit (E)
6752 and then Is_Child_Unit (E)
6753 and then
6754 Nkind (Parent (Gen_Id)) not in N_Generic_Renaming_Declaration
6755 and then not Is_Generic_Unit (Scope (E))
6756 then
6757 if not In_Open_Scopes (Scope (E)) then
6758 Install_Parent (Scope (E));
6759 Parent_Installed := True;
6760 end if;
6761 end if;
6762 end if;
6763 end if;
6764 end Check_Generic_Child_Unit;
6765
6766 -----------------------------
6767 -- Check_Hidden_Child_Unit --
6768 -----------------------------
6769
6770 procedure Check_Hidden_Child_Unit
6771 (N : Node_Id;
6772 Gen_Unit : Entity_Id;
6773 Act_Decl_Id : Entity_Id)
6774 is
6775 Gen_Id : constant Node_Id := Name (N);
6776
6777 begin
6778 if Is_Child_Unit (Gen_Unit)
6779 and then Is_Child_Unit (Act_Decl_Id)
6780 and then Nkind (Gen_Id) = N_Expanded_Name
6781 and then Entity (Prefix (Gen_Id)) = Scope (Act_Decl_Id)
6782 and then Chars (Gen_Unit) = Chars (Act_Decl_Id)
6783 then
6784 Error_Msg_Node_2 := Scope (Act_Decl_Id);
6785 Error_Msg_NE
6786 ("generic unit & is implicitly declared in &",
6787 Defining_Unit_Name (N), Gen_Unit);
6788 Error_Msg_N ("\instance must have different name",
6789 Defining_Unit_Name (N));
6790 end if;
6791 end Check_Hidden_Child_Unit;
6792
6793 ------------------------
6794 -- Check_Private_View --
6795 ------------------------
6796
6797 procedure Check_Private_View (N : Node_Id) is
6798 T : constant Entity_Id := Etype (N);
6799 BT : Entity_Id;
6800
6801 begin
6802 -- Exchange views if the type was not private in the generic but is
6803 -- private at the point of instantiation. Do not exchange views if
6804 -- the scope of the type is in scope. This can happen if both generic
6805 -- and instance are sibling units, or if type is defined in a parent.
6806 -- In this case the visibility of the type will be correct for all
6807 -- semantic checks.
6808
6809 if Present (T) then
6810 BT := Base_Type (T);
6811
6812 if Is_Private_Type (T)
6813 and then not Has_Private_View (N)
6814 and then Present (Full_View (T))
6815 and then not In_Open_Scopes (Scope (T))
6816 then
6817 -- In the generic, the full type was visible. Save the private
6818 -- entity, for subsequent exchange.
6819
6820 Switch_View (T);
6821
6822 elsif Has_Private_View (N)
6823 and then not Is_Private_Type (T)
6824 and then not Has_Been_Exchanged (T)
6825 and then Etype (Get_Associated_Node (N)) /= T
6826 then
6827 -- Only the private declaration was visible in the generic. If
6828 -- the type appears in a subtype declaration, the subtype in the
6829 -- instance must have a view compatible with that of its parent,
6830 -- which must be exchanged (see corresponding code in Restore_
6831 -- Private_Views). Otherwise, if the type is defined in a parent
6832 -- unit, leave full visibility within instance, which is safe.
6833
6834 if In_Open_Scopes (Scope (Base_Type (T)))
6835 and then not Is_Private_Type (Base_Type (T))
6836 and then Comes_From_Source (Base_Type (T))
6837 then
6838 null;
6839
6840 elsif Nkind (Parent (N)) = N_Subtype_Declaration
6841 or else not In_Private_Part (Scope (Base_Type (T)))
6842 then
6843 Prepend_Elmt (T, Exchanged_Views);
6844 Exchange_Declarations (Etype (Get_Associated_Node (N)));
6845 end if;
6846
6847 -- For composite types with inconsistent representation exchange
6848 -- component types accordingly.
6849
6850 elsif Is_Access_Type (T)
6851 and then Is_Private_Type (Designated_Type (T))
6852 and then not Has_Private_View (N)
6853 and then Present (Full_View (Designated_Type (T)))
6854 then
6855 Switch_View (Designated_Type (T));
6856
6857 elsif Is_Array_Type (T) then
6858 if Is_Private_Type (Component_Type (T))
6859 and then not Has_Private_View (N)
6860 and then Present (Full_View (Component_Type (T)))
6861 then
6862 Switch_View (Component_Type (T));
6863 end if;
6864
6865 -- The normal exchange mechanism relies on the setting of a
6866 -- flag on the reference in the generic. However, an additional
6867 -- mechanism is needed for types that are not explicitly
6868 -- mentioned in the generic, but may be needed in expanded code
6869 -- in the instance. This includes component types of arrays and
6870 -- designated types of access types. This processing must also
6871 -- include the index types of arrays which we take care of here.
6872
6873 declare
6874 Indx : Node_Id;
6875 Typ : Entity_Id;
6876
6877 begin
6878 Indx := First_Index (T);
6879 while Present (Indx) loop
6880 Typ := Base_Type (Etype (Indx));
6881
6882 if Is_Private_Type (Typ)
6883 and then Present (Full_View (Typ))
6884 then
6885 Switch_View (Typ);
6886 end if;
6887
6888 Next_Index (Indx);
6889 end loop;
6890 end;
6891
6892 elsif Is_Private_Type (T)
6893 and then Present (Full_View (T))
6894 and then Is_Array_Type (Full_View (T))
6895 and then Is_Private_Type (Component_Type (Full_View (T)))
6896 then
6897 Switch_View (T);
6898
6899 -- Finally, a non-private subtype may have a private base type, which
6900 -- must be exchanged for consistency. This can happen when a package
6901 -- body is instantiated, when the scope stack is empty but in fact
6902 -- the subtype and the base type are declared in an enclosing scope.
6903
6904 -- Note that in this case we introduce an inconsistency in the view
6905 -- set, because we switch the base type BT, but there could be some
6906 -- private dependent subtypes of BT which remain unswitched. Such
6907 -- subtypes might need to be switched at a later point (see specific
6908 -- provision for that case in Switch_View).
6909
6910 elsif not Is_Private_Type (T)
6911 and then not Has_Private_View (N)
6912 and then Is_Private_Type (BT)
6913 and then Present (Full_View (BT))
6914 and then not Is_Generic_Type (BT)
6915 and then not In_Open_Scopes (BT)
6916 then
6917 Prepend_Elmt (Full_View (BT), Exchanged_Views);
6918 Exchange_Declarations (BT);
6919 end if;
6920 end if;
6921 end Check_Private_View;
6922
6923 -----------------------------
6924 -- Check_Hidden_Primitives --
6925 -----------------------------
6926
6927 function Check_Hidden_Primitives (Assoc_List : List_Id) return Elist_Id is
6928 Actual : Node_Id;
6929 Gen_T : Entity_Id;
6930 Result : Elist_Id := No_Elist;
6931
6932 begin
6933 if No (Assoc_List) then
6934 return No_Elist;
6935 end if;
6936
6937 -- Traverse the list of associations between formals and actuals
6938 -- searching for renamings of tagged types
6939
6940 Actual := First (Assoc_List);
6941 while Present (Actual) loop
6942 if Nkind (Actual) = N_Subtype_Declaration then
6943 Gen_T := Generic_Parent_Type (Actual);
6944
6945 if Present (Gen_T) and then Is_Tagged_Type (Gen_T) then
6946
6947 -- Traverse the list of primitives of the actual types
6948 -- searching for hidden primitives that are visible in the
6949 -- corresponding generic formal; leave them visible and
6950 -- append them to Result to restore their decoration later.
6951
6952 Install_Hidden_Primitives
6953 (Prims_List => Result,
6954 Gen_T => Gen_T,
6955 Act_T => Entity (Subtype_Indication (Actual)));
6956 end if;
6957 end if;
6958
6959 Next (Actual);
6960 end loop;
6961
6962 return Result;
6963 end Check_Hidden_Primitives;
6964
6965 --------------------------
6966 -- Contains_Instance_Of --
6967 --------------------------
6968
6969 function Contains_Instance_Of
6970 (Inner : Entity_Id;
6971 Outer : Entity_Id;
6972 N : Node_Id) return Boolean
6973 is
6974 Elmt : Elmt_Id;
6975 Scop : Entity_Id;
6976
6977 begin
6978 Scop := Outer;
6979
6980 -- Verify that there are no circular instantiations. We check whether
6981 -- the unit contains an instance of the current scope or some enclosing
6982 -- scope (in case one of the instances appears in a subunit). Longer
6983 -- circularities involving subunits might seem too pathological to
6984 -- consider, but they were not too pathological for the authors of
6985 -- DEC bc30vsq, so we loop over all enclosing scopes, and mark all
6986 -- enclosing generic scopes as containing an instance.
6987
6988 loop
6989 -- Within a generic subprogram body, the scope is not generic, to
6990 -- allow for recursive subprograms. Use the declaration to determine
6991 -- whether this is a generic unit.
6992
6993 if Ekind (Scop) = E_Generic_Package
6994 or else (Is_Subprogram (Scop)
6995 and then Nkind (Unit_Declaration_Node (Scop)) =
6996 N_Generic_Subprogram_Declaration)
6997 then
6998 Elmt := First_Elmt (Inner_Instances (Inner));
6999
7000 while Present (Elmt) loop
7001 if Node (Elmt) = Scop then
7002 Error_Msg_Node_2 := Inner;
7003 Error_Msg_NE
7004 ("circular Instantiation: & instantiated within &!",
7005 N, Scop);
7006 return True;
7007
7008 elsif Node (Elmt) = Inner then
7009 return True;
7010
7011 elsif Contains_Instance_Of (Node (Elmt), Scop, N) then
7012 Error_Msg_Node_2 := Inner;
7013 Error_Msg_NE
7014 ("circular Instantiation: & instantiated within &!",
7015 N, Node (Elmt));
7016 return True;
7017 end if;
7018
7019 Next_Elmt (Elmt);
7020 end loop;
7021
7022 -- Indicate that Inner is being instantiated within Scop
7023
7024 Append_Elmt (Inner, Inner_Instances (Scop));
7025 end if;
7026
7027 if Scop = Standard_Standard then
7028 exit;
7029 else
7030 Scop := Scope (Scop);
7031 end if;
7032 end loop;
7033
7034 return False;
7035 end Contains_Instance_Of;
7036
7037 -----------------------
7038 -- Copy_Generic_Node --
7039 -----------------------
7040
7041 function Copy_Generic_Node
7042 (N : Node_Id;
7043 Parent_Id : Node_Id;
7044 Instantiating : Boolean) return Node_Id
7045 is
7046 Ent : Entity_Id;
7047 New_N : Node_Id;
7048
7049 function Copy_Generic_Descendant (D : Union_Id) return Union_Id;
7050 -- Check the given value of one of the Fields referenced by the current
7051 -- node to determine whether to copy it recursively. The field may hold
7052 -- a Node_Id, a List_Id, or an Elist_Id, or a plain value (Sloc, Uint,
7053 -- Char) in which case it need not be copied.
7054
7055 procedure Copy_Descendants;
7056 -- Common utility for various nodes
7057
7058 function Copy_Generic_Elist (E : Elist_Id) return Elist_Id;
7059 -- Make copy of element list
7060
7061 function Copy_Generic_List
7062 (L : List_Id;
7063 Parent_Id : Node_Id) return List_Id;
7064 -- Apply Copy_Node recursively to the members of a node list
7065
7066 function In_Defining_Unit_Name (Nam : Node_Id) return Boolean;
7067 -- True if an identifier is part of the defining program unit name of
7068 -- a child unit. The entity of such an identifier must be kept (for
7069 -- ASIS use) even though as the name of an enclosing generic it would
7070 -- otherwise not be preserved in the generic tree.
7071
7072 ----------------------
7073 -- Copy_Descendants --
7074 ----------------------
7075
7076 procedure Copy_Descendants is
7077 use Atree.Unchecked_Access;
7078 -- This code section is part of the implementation of an untyped
7079 -- tree traversal, so it needs direct access to node fields.
7080
7081 begin
7082 Set_Field1 (New_N, Copy_Generic_Descendant (Field1 (N)));
7083 Set_Field2 (New_N, Copy_Generic_Descendant (Field2 (N)));
7084 Set_Field3 (New_N, Copy_Generic_Descendant (Field3 (N)));
7085 Set_Field4 (New_N, Copy_Generic_Descendant (Field4 (N)));
7086 Set_Field5 (New_N, Copy_Generic_Descendant (Field5 (N)));
7087 end Copy_Descendants;
7088
7089 -----------------------------
7090 -- Copy_Generic_Descendant --
7091 -----------------------------
7092
7093 function Copy_Generic_Descendant (D : Union_Id) return Union_Id is
7094 begin
7095 if D = Union_Id (Empty) then
7096 return D;
7097
7098 elsif D in Node_Range then
7099 return Union_Id
7100 (Copy_Generic_Node (Node_Id (D), New_N, Instantiating));
7101
7102 elsif D in List_Range then
7103 return Union_Id (Copy_Generic_List (List_Id (D), New_N));
7104
7105 elsif D in Elist_Range then
7106 return Union_Id (Copy_Generic_Elist (Elist_Id (D)));
7107
7108 -- Nothing else is copyable (e.g. Uint values), return as is
7109
7110 else
7111 return D;
7112 end if;
7113 end Copy_Generic_Descendant;
7114
7115 ------------------------
7116 -- Copy_Generic_Elist --
7117 ------------------------
7118
7119 function Copy_Generic_Elist (E : Elist_Id) return Elist_Id is
7120 M : Elmt_Id;
7121 L : Elist_Id;
7122
7123 begin
7124 if Present (E) then
7125 L := New_Elmt_List;
7126 M := First_Elmt (E);
7127 while Present (M) loop
7128 Append_Elmt
7129 (Copy_Generic_Node (Node (M), Empty, Instantiating), L);
7130 Next_Elmt (M);
7131 end loop;
7132
7133 return L;
7134
7135 else
7136 return No_Elist;
7137 end if;
7138 end Copy_Generic_Elist;
7139
7140 -----------------------
7141 -- Copy_Generic_List --
7142 -----------------------
7143
7144 function Copy_Generic_List
7145 (L : List_Id;
7146 Parent_Id : Node_Id) return List_Id
7147 is
7148 N : Node_Id;
7149 New_L : List_Id;
7150
7151 begin
7152 if Present (L) then
7153 New_L := New_List;
7154 Set_Parent (New_L, Parent_Id);
7155
7156 N := First (L);
7157 while Present (N) loop
7158 Append (Copy_Generic_Node (N, Empty, Instantiating), New_L);
7159 Next (N);
7160 end loop;
7161
7162 return New_L;
7163
7164 else
7165 return No_List;
7166 end if;
7167 end Copy_Generic_List;
7168
7169 ---------------------------
7170 -- In_Defining_Unit_Name --
7171 ---------------------------
7172
7173 function In_Defining_Unit_Name (Nam : Node_Id) return Boolean is
7174 begin
7175 return
7176 Present (Parent (Nam))
7177 and then (Nkind (Parent (Nam)) = N_Defining_Program_Unit_Name
7178 or else
7179 (Nkind (Parent (Nam)) = N_Expanded_Name
7180 and then In_Defining_Unit_Name (Parent (Nam))));
7181 end In_Defining_Unit_Name;
7182
7183 -- Start of processing for Copy_Generic_Node
7184
7185 begin
7186 if N = Empty then
7187 return N;
7188 end if;
7189
7190 New_N := New_Copy (N);
7191
7192 -- Copy aspects if present
7193
7194 if Has_Aspects (N) then
7195 Set_Has_Aspects (New_N, False);
7196 Set_Aspect_Specifications
7197 (New_N, Copy_Generic_List (Aspect_Specifications (N), Parent_Id));
7198 end if;
7199
7200 if Instantiating then
7201 Adjust_Instantiation_Sloc (New_N, S_Adjustment);
7202 end if;
7203
7204 if not Is_List_Member (N) then
7205 Set_Parent (New_N, Parent_Id);
7206 end if;
7207
7208 -- Special casing for identifiers and other entity names and operators
7209
7210 if Nkind_In (New_N, N_Character_Literal,
7211 N_Expanded_Name,
7212 N_Identifier,
7213 N_Operator_Symbol)
7214 or else Nkind (New_N) in N_Op
7215 then
7216 if not Instantiating then
7217
7218 -- Link both nodes in order to assign subsequently the entity of
7219 -- the copy to the original node, in case this is a global
7220 -- reference.
7221
7222 Set_Associated_Node (N, New_N);
7223
7224 -- If we are within an instantiation, this is a nested generic
7225 -- that has already been analyzed at the point of definition.
7226 -- We must preserve references that were global to the enclosing
7227 -- parent at that point. Other occurrences, whether global or
7228 -- local to the current generic, must be resolved anew, so we
7229 -- reset the entity in the generic copy. A global reference has a
7230 -- smaller depth than the parent, or else the same depth in case
7231 -- both are distinct compilation units.
7232
7233 -- A child unit is implicitly declared within the enclosing parent
7234 -- but is in fact global to it, and must be preserved.
7235
7236 -- It is also possible for Current_Instantiated_Parent to be
7237 -- defined, and for this not to be a nested generic, namely if
7238 -- the unit is loaded through Rtsfind. In that case, the entity of
7239 -- New_N is only a link to the associated node, and not a defining
7240 -- occurrence.
7241
7242 -- The entities for parent units in the defining_program_unit of a
7243 -- generic child unit are established when the context of the unit
7244 -- is first analyzed, before the generic copy is made. They are
7245 -- preserved in the copy for use in ASIS queries.
7246
7247 Ent := Entity (New_N);
7248
7249 if No (Current_Instantiated_Parent.Gen_Id) then
7250 if No (Ent)
7251 or else Nkind (Ent) /= N_Defining_Identifier
7252 or else not In_Defining_Unit_Name (N)
7253 then
7254 Set_Associated_Node (New_N, Empty);
7255 end if;
7256
7257 elsif No (Ent)
7258 or else
7259 not Nkind_In (Ent, N_Defining_Identifier,
7260 N_Defining_Character_Literal,
7261 N_Defining_Operator_Symbol)
7262 or else No (Scope (Ent))
7263 or else
7264 (Scope (Ent) = Current_Instantiated_Parent.Gen_Id
7265 and then not Is_Child_Unit (Ent))
7266 or else
7267 (Scope_Depth (Scope (Ent)) >
7268 Scope_Depth (Current_Instantiated_Parent.Gen_Id)
7269 and then
7270 Get_Source_Unit (Ent) =
7271 Get_Source_Unit (Current_Instantiated_Parent.Gen_Id))
7272 then
7273 Set_Associated_Node (New_N, Empty);
7274 end if;
7275
7276 -- Case of instantiating identifier or some other name or operator
7277
7278 else
7279 -- If the associated node is still defined, the entity in it
7280 -- is global, and must be copied to the instance. If this copy
7281 -- is being made for a body to inline, it is applied to an
7282 -- instantiated tree, and the entity is already present and
7283 -- must be also preserved.
7284
7285 declare
7286 Assoc : constant Node_Id := Get_Associated_Node (N);
7287
7288 begin
7289 if Present (Assoc) then
7290 if Nkind (Assoc) = Nkind (N) then
7291 Set_Entity (New_N, Entity (Assoc));
7292 Check_Private_View (N);
7293
7294 -- The name in the call may be a selected component if the
7295 -- call has not been analyzed yet, as may be the case for
7296 -- pre/post conditions in a generic unit.
7297
7298 elsif Nkind (Assoc) = N_Function_Call
7299 and then Is_Entity_Name (Name (Assoc))
7300 then
7301 Set_Entity (New_N, Entity (Name (Assoc)));
7302
7303 elsif Nkind_In (Assoc, N_Defining_Identifier,
7304 N_Defining_Character_Literal,
7305 N_Defining_Operator_Symbol)
7306 and then Expander_Active
7307 then
7308 -- Inlining case: we are copying a tree that contains
7309 -- global entities, which are preserved in the copy to be
7310 -- used for subsequent inlining.
7311
7312 null;
7313
7314 else
7315 Set_Entity (New_N, Empty);
7316 end if;
7317 end if;
7318 end;
7319 end if;
7320
7321 -- For expanded name, we must copy the Prefix and Selector_Name
7322
7323 if Nkind (N) = N_Expanded_Name then
7324 Set_Prefix
7325 (New_N, Copy_Generic_Node (Prefix (N), New_N, Instantiating));
7326
7327 Set_Selector_Name (New_N,
7328 Copy_Generic_Node (Selector_Name (N), New_N, Instantiating));
7329
7330 -- For operators, we must copy the right operand
7331
7332 elsif Nkind (N) in N_Op then
7333 Set_Right_Opnd (New_N,
7334 Copy_Generic_Node (Right_Opnd (N), New_N, Instantiating));
7335
7336 -- And for binary operators, the left operand as well
7337
7338 if Nkind (N) in N_Binary_Op then
7339 Set_Left_Opnd (New_N,
7340 Copy_Generic_Node (Left_Opnd (N), New_N, Instantiating));
7341 end if;
7342 end if;
7343
7344 -- Establish a link between an entity from the generic template and the
7345 -- corresponding entity in the generic copy to be analyzed.
7346
7347 elsif Nkind (N) in N_Entity then
7348 if not Instantiating then
7349 Set_Associated_Entity (N, New_N);
7350 end if;
7351
7352 -- Clear any existing link the copy may inherit from the replicated
7353 -- generic template entity.
7354
7355 Set_Associated_Entity (New_N, Empty);
7356
7357 -- Special casing for stubs
7358
7359 elsif Nkind (N) in N_Body_Stub then
7360
7361 -- In any case, we must copy the specification or defining
7362 -- identifier as appropriate.
7363
7364 if Nkind (N) = N_Subprogram_Body_Stub then
7365 Set_Specification (New_N,
7366 Copy_Generic_Node (Specification (N), New_N, Instantiating));
7367
7368 else
7369 Set_Defining_Identifier (New_N,
7370 Copy_Generic_Node
7371 (Defining_Identifier (N), New_N, Instantiating));
7372 end if;
7373
7374 -- If we are not instantiating, then this is where we load and
7375 -- analyze subunits, i.e. at the point where the stub occurs. A
7376 -- more permissive system might defer this analysis to the point
7377 -- of instantiation, but this seems too complicated for now.
7378
7379 if not Instantiating then
7380 declare
7381 Subunit_Name : constant Unit_Name_Type := Get_Unit_Name (N);
7382 Subunit : Node_Id;
7383 Unum : Unit_Number_Type;
7384 New_Body : Node_Id;
7385
7386 begin
7387 -- Make sure that, if it is a subunit of the main unit that is
7388 -- preprocessed and if -gnateG is specified, the preprocessed
7389 -- file will be written.
7390
7391 Lib.Analysing_Subunit_Of_Main :=
7392 Lib.In_Extended_Main_Source_Unit (N);
7393 Unum :=
7394 Load_Unit
7395 (Load_Name => Subunit_Name,
7396 Required => False,
7397 Subunit => True,
7398 Error_Node => N);
7399 Lib.Analysing_Subunit_Of_Main := False;
7400
7401 -- If the proper body is not found, a warning message will be
7402 -- emitted when analyzing the stub, or later at the point of
7403 -- instantiation. Here we just leave the stub as is.
7404
7405 if Unum = No_Unit then
7406 Subunits_Missing := True;
7407 goto Subunit_Not_Found;
7408 end if;
7409
7410 Subunit := Cunit (Unum);
7411
7412 if Nkind (Unit (Subunit)) /= N_Subunit then
7413 Error_Msg_N
7414 ("found child unit instead of expected SEPARATE subunit",
7415 Subunit);
7416 Error_Msg_Sloc := Sloc (N);
7417 Error_Msg_N ("\to complete stub #", Subunit);
7418 goto Subunit_Not_Found;
7419 end if;
7420
7421 -- We must create a generic copy of the subunit, in order to
7422 -- perform semantic analysis on it, and we must replace the
7423 -- stub in the original generic unit with the subunit, in order
7424 -- to preserve non-local references within.
7425
7426 -- Only the proper body needs to be copied. Library_Unit and
7427 -- context clause are simply inherited by the generic copy.
7428 -- Note that the copy (which may be recursive if there are
7429 -- nested subunits) must be done first, before attaching it to
7430 -- the enclosing generic.
7431
7432 New_Body :=
7433 Copy_Generic_Node
7434 (Proper_Body (Unit (Subunit)),
7435 Empty, Instantiating => False);
7436
7437 -- Now place the original proper body in the original generic
7438 -- unit. This is a body, not a compilation unit.
7439
7440 Rewrite (N, Proper_Body (Unit (Subunit)));
7441 Set_Is_Compilation_Unit (Defining_Entity (N), False);
7442 Set_Was_Originally_Stub (N);
7443
7444 -- Finally replace the body of the subunit with its copy, and
7445 -- make this new subunit into the library unit of the generic
7446 -- copy, which does not have stubs any longer.
7447
7448 Set_Proper_Body (Unit (Subunit), New_Body);
7449 Set_Library_Unit (New_N, Subunit);
7450 Inherit_Context (Unit (Subunit), N);
7451 end;
7452
7453 -- If we are instantiating, this must be an error case, since
7454 -- otherwise we would have replaced the stub node by the proper body
7455 -- that corresponds. So just ignore it in the copy (i.e. we have
7456 -- copied it, and that is good enough).
7457
7458 else
7459 null;
7460 end if;
7461
7462 <<Subunit_Not_Found>> null;
7463
7464 -- If the node is a compilation unit, it is the subunit of a stub, which
7465 -- has been loaded already (see code below). In this case, the library
7466 -- unit field of N points to the parent unit (which is a compilation
7467 -- unit) and need not (and cannot) be copied.
7468
7469 -- When the proper body of the stub is analyzed, the library_unit link
7470 -- is used to establish the proper context (see sem_ch10).
7471
7472 -- The other fields of a compilation unit are copied as usual
7473
7474 elsif Nkind (N) = N_Compilation_Unit then
7475
7476 -- This code can only be executed when not instantiating, because in
7477 -- the copy made for an instantiation, the compilation unit node has
7478 -- disappeared at the point that a stub is replaced by its proper
7479 -- body.
7480
7481 pragma Assert (not Instantiating);
7482
7483 Set_Context_Items (New_N,
7484 Copy_Generic_List (Context_Items (N), New_N));
7485
7486 Set_Unit (New_N,
7487 Copy_Generic_Node (Unit (N), New_N, False));
7488
7489 Set_First_Inlined_Subprogram (New_N,
7490 Copy_Generic_Node
7491 (First_Inlined_Subprogram (N), New_N, False));
7492
7493 Set_Aux_Decls_Node (New_N,
7494 Copy_Generic_Node (Aux_Decls_Node (N), New_N, False));
7495
7496 -- For an assignment node, the assignment is known to be semantically
7497 -- legal if we are instantiating the template. This avoids incorrect
7498 -- diagnostics in generated code.
7499
7500 elsif Nkind (N) = N_Assignment_Statement then
7501
7502 -- Copy name and expression fields in usual manner
7503
7504 Set_Name (New_N,
7505 Copy_Generic_Node (Name (N), New_N, Instantiating));
7506
7507 Set_Expression (New_N,
7508 Copy_Generic_Node (Expression (N), New_N, Instantiating));
7509
7510 if Instantiating then
7511 Set_Assignment_OK (Name (New_N), True);
7512 end if;
7513
7514 elsif Nkind_In (N, N_Aggregate, N_Extension_Aggregate) then
7515 if not Instantiating then
7516 Set_Associated_Node (N, New_N);
7517
7518 else
7519 if Present (Get_Associated_Node (N))
7520 and then Nkind (Get_Associated_Node (N)) = Nkind (N)
7521 then
7522 -- In the generic the aggregate has some composite type. If at
7523 -- the point of instantiation the type has a private view,
7524 -- install the full view (and that of its ancestors, if any).
7525
7526 declare
7527 T : Entity_Id := (Etype (Get_Associated_Node (New_N)));
7528 Rt : Entity_Id;
7529
7530 begin
7531 if Present (T) and then Is_Private_Type (T) then
7532 Switch_View (T);
7533 end if;
7534
7535 if Present (T)
7536 and then Is_Tagged_Type (T)
7537 and then Is_Derived_Type (T)
7538 then
7539 Rt := Root_Type (T);
7540
7541 loop
7542 T := Etype (T);
7543
7544 if Is_Private_Type (T) then
7545 Switch_View (T);
7546 end if;
7547
7548 exit when T = Rt;
7549 end loop;
7550 end if;
7551 end;
7552 end if;
7553 end if;
7554
7555 -- Do not copy the associated node, which points to the generic copy
7556 -- of the aggregate.
7557
7558 declare
7559 use Atree.Unchecked_Access;
7560 -- This code section is part of the implementation of an untyped
7561 -- tree traversal, so it needs direct access to node fields.
7562
7563 begin
7564 Set_Field1 (New_N, Copy_Generic_Descendant (Field1 (N)));
7565 Set_Field2 (New_N, Copy_Generic_Descendant (Field2 (N)));
7566 Set_Field3 (New_N, Copy_Generic_Descendant (Field3 (N)));
7567 Set_Field5 (New_N, Copy_Generic_Descendant (Field5 (N)));
7568 end;
7569
7570 -- Allocators do not have an identifier denoting the access type, so we
7571 -- must locate it through the expression to check whether the views are
7572 -- consistent.
7573
7574 elsif Nkind (N) = N_Allocator
7575 and then Nkind (Expression (N)) = N_Qualified_Expression
7576 and then Is_Entity_Name (Subtype_Mark (Expression (N)))
7577 and then Instantiating
7578 then
7579 declare
7580 T : constant Node_Id :=
7581 Get_Associated_Node (Subtype_Mark (Expression (N)));
7582 Acc_T : Entity_Id;
7583
7584 begin
7585 if Present (T) then
7586
7587 -- Retrieve the allocator node in the generic copy
7588
7589 Acc_T := Etype (Parent (Parent (T)));
7590
7591 if Present (Acc_T) and then Is_Private_Type (Acc_T) then
7592 Switch_View (Acc_T);
7593 end if;
7594 end if;
7595
7596 Copy_Descendants;
7597 end;
7598
7599 -- For a proper body, we must catch the case of a proper body that
7600 -- replaces a stub. This represents the point at which a separate
7601 -- compilation unit, and hence template file, may be referenced, so we
7602 -- must make a new source instantiation entry for the template of the
7603 -- subunit, and ensure that all nodes in the subunit are adjusted using
7604 -- this new source instantiation entry.
7605
7606 elsif Nkind (N) in N_Proper_Body then
7607 declare
7608 Save_Adjustment : constant Sloc_Adjustment := S_Adjustment;
7609
7610 begin
7611 if Instantiating and then Was_Originally_Stub (N) then
7612 Create_Instantiation_Source
7613 (Instantiation_Node,
7614 Defining_Entity (N),
7615 False,
7616 S_Adjustment);
7617 end if;
7618
7619 -- Now copy the fields of the proper body, using the new
7620 -- adjustment factor if one was needed as per test above.
7621
7622 Copy_Descendants;
7623
7624 -- Restore the original adjustment factor in case changed
7625
7626 S_Adjustment := Save_Adjustment;
7627 end;
7628
7629 elsif Nkind (N) = N_Pragma and then Instantiating then
7630
7631 -- Do not copy Comment or Ident pragmas their content is relevant to
7632 -- the generic unit, not to the instantiating unit.
7633
7634 if Nam_In (Pragma_Name (N), Name_Comment, Name_Ident) then
7635 New_N := Make_Null_Statement (Sloc (N));
7636
7637 -- Do not copy pragmas generated from aspects because the pragmas do
7638 -- not carry any semantic information, plus they will be regenerated
7639 -- in the instance.
7640
7641 elsif From_Aspect_Specification (N) then
7642 New_N := Make_Null_Statement (Sloc (N));
7643
7644 else
7645 Copy_Descendants;
7646 end if;
7647
7648 elsif Nkind_In (N, N_Integer_Literal, N_Real_Literal) then
7649
7650 -- No descendant fields need traversing
7651
7652 null;
7653
7654 elsif Nkind (N) = N_String_Literal
7655 and then Present (Etype (N))
7656 and then Instantiating
7657 then
7658 -- If the string is declared in an outer scope, the string_literal
7659 -- subtype created for it may have the wrong scope. Force reanalysis
7660 -- of the constant to generate a new itype in the proper context.
7661
7662 Set_Etype (New_N, Empty);
7663 Set_Analyzed (New_N, False);
7664
7665 -- For the remaining nodes, copy their descendants recursively
7666
7667 else
7668 Copy_Descendants;
7669
7670 if Instantiating and then Nkind (N) = N_Subprogram_Body then
7671 Set_Generic_Parent (Specification (New_N), N);
7672
7673 -- Should preserve Corresponding_Spec??? (12.3(14))
7674 end if;
7675 end if;
7676
7677 return New_N;
7678 end Copy_Generic_Node;
7679
7680 ----------------------------
7681 -- Denotes_Formal_Package --
7682 ----------------------------
7683
7684 function Denotes_Formal_Package
7685 (Pack : Entity_Id;
7686 On_Exit : Boolean := False;
7687 Instance : Entity_Id := Empty) return Boolean
7688 is
7689 Par : Entity_Id;
7690 Scop : constant Entity_Id := Scope (Pack);
7691 E : Entity_Id;
7692
7693 function Is_Actual_Of_Previous_Formal (P : Entity_Id) return Boolean;
7694 -- The package in question may be an actual for a previous formal
7695 -- package P of the current instance, so examine its actuals as well.
7696 -- This must be recursive over other formal packages.
7697
7698 ----------------------------------
7699 -- Is_Actual_Of_Previous_Formal --
7700 ----------------------------------
7701
7702 function Is_Actual_Of_Previous_Formal (P : Entity_Id) return Boolean is
7703 E1 : Entity_Id;
7704
7705 begin
7706 E1 := First_Entity (P);
7707 while Present (E1) and then E1 /= Instance loop
7708 if Ekind (E1) = E_Package
7709 and then Nkind (Parent (E1)) = N_Package_Renaming_Declaration
7710 then
7711 if Renamed_Object (E1) = Pack then
7712 return True;
7713
7714 elsif E1 = P or else Renamed_Object (E1) = P then
7715 return False;
7716
7717 elsif Is_Actual_Of_Previous_Formal (E1) then
7718 return True;
7719 end if;
7720 end if;
7721
7722 Next_Entity (E1);
7723 end loop;
7724
7725 return False;
7726 end Is_Actual_Of_Previous_Formal;
7727
7728 -- Start of processing for Denotes_Formal_Package
7729
7730 begin
7731 if On_Exit then
7732 Par :=
7733 Instance_Envs.Table
7734 (Instance_Envs.Last).Instantiated_Parent.Act_Id;
7735 else
7736 Par := Current_Instantiated_Parent.Act_Id;
7737 end if;
7738
7739 if Ekind (Scop) = E_Generic_Package
7740 or else Nkind (Unit_Declaration_Node (Scop)) =
7741 N_Generic_Subprogram_Declaration
7742 then
7743 return True;
7744
7745 elsif Nkind (Original_Node (Unit_Declaration_Node (Pack))) =
7746 N_Formal_Package_Declaration
7747 then
7748 return True;
7749
7750 elsif No (Par) then
7751 return False;
7752
7753 else
7754 -- Check whether this package is associated with a formal package of
7755 -- the enclosing instantiation. Iterate over the list of renamings.
7756
7757 E := First_Entity (Par);
7758 while Present (E) loop
7759 if Ekind (E) /= E_Package
7760 or else Nkind (Parent (E)) /= N_Package_Renaming_Declaration
7761 then
7762 null;
7763
7764 elsif Renamed_Object (E) = Par then
7765 return False;
7766
7767 elsif Renamed_Object (E) = Pack then
7768 return True;
7769
7770 elsif Is_Actual_Of_Previous_Formal (E) then
7771 return True;
7772
7773 end if;
7774
7775 Next_Entity (E);
7776 end loop;
7777
7778 return False;
7779 end if;
7780 end Denotes_Formal_Package;
7781
7782 -----------------
7783 -- End_Generic --
7784 -----------------
7785
7786 procedure End_Generic is
7787 begin
7788 -- ??? More things could be factored out in this routine. Should
7789 -- probably be done at a later stage.
7790
7791 Inside_A_Generic := Generic_Flags.Table (Generic_Flags.Last);
7792 Generic_Flags.Decrement_Last;
7793
7794 Expander_Mode_Restore;
7795 end End_Generic;
7796
7797 -------------
7798 -- Earlier --
7799 -------------
7800
7801 function Earlier (N1, N2 : Node_Id) return Boolean is
7802 procedure Find_Depth (P : in out Node_Id; D : in out Integer);
7803 -- Find distance from given node to enclosing compilation unit
7804
7805 ----------------
7806 -- Find_Depth --
7807 ----------------
7808
7809 procedure Find_Depth (P : in out Node_Id; D : in out Integer) is
7810 begin
7811 while Present (P)
7812 and then Nkind (P) /= N_Compilation_Unit
7813 loop
7814 P := True_Parent (P);
7815 D := D + 1;
7816 end loop;
7817 end Find_Depth;
7818
7819 -- Local declarations
7820
7821 D1 : Integer := 0;
7822 D2 : Integer := 0;
7823 P1 : Node_Id := N1;
7824 P2 : Node_Id := N2;
7825 T1 : Source_Ptr;
7826 T2 : Source_Ptr;
7827
7828 -- Start of processing for Earlier
7829
7830 begin
7831 Find_Depth (P1, D1);
7832 Find_Depth (P2, D2);
7833
7834 if P1 /= P2 then
7835 return False;
7836 else
7837 P1 := N1;
7838 P2 := N2;
7839 end if;
7840
7841 while D1 > D2 loop
7842 P1 := True_Parent (P1);
7843 D1 := D1 - 1;
7844 end loop;
7845
7846 while D2 > D1 loop
7847 P2 := True_Parent (P2);
7848 D2 := D2 - 1;
7849 end loop;
7850
7851 -- At this point P1 and P2 are at the same distance from the root.
7852 -- We examine their parents until we find a common declarative list.
7853 -- If we reach the root, N1 and N2 do not descend from the same
7854 -- declarative list (e.g. one is nested in the declarative part and
7855 -- the other is in a block in the statement part) and the earlier
7856 -- one is already frozen.
7857
7858 while not Is_List_Member (P1)
7859 or else not Is_List_Member (P2)
7860 or else List_Containing (P1) /= List_Containing (P2)
7861 loop
7862 P1 := True_Parent (P1);
7863 P2 := True_Parent (P2);
7864
7865 if Nkind (Parent (P1)) = N_Subunit then
7866 P1 := Corresponding_Stub (Parent (P1));
7867 end if;
7868
7869 if Nkind (Parent (P2)) = N_Subunit then
7870 P2 := Corresponding_Stub (Parent (P2));
7871 end if;
7872
7873 if P1 = P2 then
7874 return False;
7875 end if;
7876 end loop;
7877
7878 -- Expanded code usually shares the source location of the original
7879 -- construct it was generated for. This however may not necessarely
7880 -- reflect the true location of the code within the tree.
7881
7882 -- Before comparing the slocs of the two nodes, make sure that we are
7883 -- working with correct source locations. Assume that P1 is to the left
7884 -- of P2. If either one does not come from source, traverse the common
7885 -- list heading towards the other node and locate the first source
7886 -- statement.
7887
7888 -- P1 P2
7889 -- ----+===+===+--------------+===+===+----
7890 -- expanded code expanded code
7891
7892 if not Comes_From_Source (P1) then
7893 while Present (P1) loop
7894
7895 -- Neither P2 nor a source statement were located during the
7896 -- search. If we reach the end of the list, then P1 does not
7897 -- occur earlier than P2.
7898
7899 -- ---->
7900 -- start --- P2 ----- P1 --- end
7901
7902 if No (Next (P1)) then
7903 return False;
7904
7905 -- We encounter P2 while going to the right of the list. This
7906 -- means that P1 does indeed appear earlier.
7907
7908 -- ---->
7909 -- start --- P1 ===== P2 --- end
7910 -- expanded code in between
7911
7912 elsif P1 = P2 then
7913 return True;
7914
7915 -- No need to look any further since we have located a source
7916 -- statement.
7917
7918 elsif Comes_From_Source (P1) then
7919 exit;
7920 end if;
7921
7922 -- Keep going right
7923
7924 Next (P1);
7925 end loop;
7926 end if;
7927
7928 if not Comes_From_Source (P2) then
7929 while Present (P2) loop
7930
7931 -- Neither P1 nor a source statement were located during the
7932 -- search. If we reach the start of the list, then P1 does not
7933 -- occur earlier than P2.
7934
7935 -- <----
7936 -- start --- P2 --- P1 --- end
7937
7938 if No (Prev (P2)) then
7939 return False;
7940
7941 -- We encounter P1 while going to the left of the list. This
7942 -- means that P1 does indeed appear earlier.
7943
7944 -- <----
7945 -- start --- P1 ===== P2 --- end
7946 -- expanded code in between
7947
7948 elsif P2 = P1 then
7949 return True;
7950
7951 -- No need to look any further since we have located a source
7952 -- statement.
7953
7954 elsif Comes_From_Source (P2) then
7955 exit;
7956 end if;
7957
7958 -- Keep going left
7959
7960 Prev (P2);
7961 end loop;
7962 end if;
7963
7964 -- At this point either both nodes came from source or we approximated
7965 -- their source locations through neighbouring source statements.
7966
7967 T1 := Top_Level_Location (Sloc (P1));
7968 T2 := Top_Level_Location (Sloc (P2));
7969
7970 -- When two nodes come from the same instance, they have identical top
7971 -- level locations. To determine proper relation within the tree, check
7972 -- their locations within the template.
7973
7974 if T1 = T2 then
7975 return Sloc (P1) < Sloc (P2);
7976
7977 -- The two nodes either come from unrelated instances or do not come
7978 -- from instantiated code at all.
7979
7980 else
7981 return T1 < T2;
7982 end if;
7983 end Earlier;
7984
7985 ----------------------
7986 -- Find_Actual_Type --
7987 ----------------------
7988
7989 function Find_Actual_Type
7990 (Typ : Entity_Id;
7991 Gen_Type : Entity_Id) return Entity_Id
7992 is
7993 Gen_Scope : constant Entity_Id := Scope (Gen_Type);
7994 T : Entity_Id;
7995
7996 begin
7997 -- Special processing only applies to child units
7998
7999 if not Is_Child_Unit (Gen_Scope) then
8000 return Get_Instance_Of (Typ);
8001
8002 -- If designated or component type is itself a formal of the child unit,
8003 -- its instance is available.
8004
8005 elsif Scope (Typ) = Gen_Scope then
8006 return Get_Instance_Of (Typ);
8007
8008 -- If the array or access type is not declared in the parent unit,
8009 -- no special processing needed.
8010
8011 elsif not Is_Generic_Type (Typ)
8012 and then Scope (Gen_Scope) /= Scope (Typ)
8013 then
8014 return Get_Instance_Of (Typ);
8015
8016 -- Otherwise, retrieve designated or component type by visibility
8017
8018 else
8019 T := Current_Entity (Typ);
8020 while Present (T) loop
8021 if In_Open_Scopes (Scope (T)) then
8022 return T;
8023 elsif Is_Generic_Actual_Type (T) then
8024 return T;
8025 end if;
8026
8027 T := Homonym (T);
8028 end loop;
8029
8030 return Typ;
8031 end if;
8032 end Find_Actual_Type;
8033
8034 ----------------------------
8035 -- Freeze_Subprogram_Body --
8036 ----------------------------
8037
8038 procedure Freeze_Subprogram_Body
8039 (Inst_Node : Node_Id;
8040 Gen_Body : Node_Id;
8041 Pack_Id : Entity_Id)
8042 is
8043 Gen_Unit : constant Entity_Id := Get_Generic_Entity (Inst_Node);
8044 Par : constant Entity_Id := Scope (Gen_Unit);
8045 E_G_Id : Entity_Id;
8046 Enc_G : Entity_Id;
8047 Enc_I : Node_Id;
8048 F_Node : Node_Id;
8049
8050 function Enclosing_Package_Body (N : Node_Id) return Node_Id;
8051 -- Find innermost package body that encloses the given node, and which
8052 -- is not a compilation unit. Freeze nodes for the instance, or for its
8053 -- enclosing body, may be inserted after the enclosing_body of the
8054 -- generic unit. Used to determine proper placement of freeze node for
8055 -- both package and subprogram instances.
8056
8057 function Package_Freeze_Node (B : Node_Id) return Node_Id;
8058 -- Find entity for given package body, and locate or create a freeze
8059 -- node for it.
8060
8061 ----------------------------
8062 -- Enclosing_Package_Body --
8063 ----------------------------
8064
8065 function Enclosing_Package_Body (N : Node_Id) return Node_Id is
8066 P : Node_Id;
8067
8068 begin
8069 P := Parent (N);
8070 while Present (P)
8071 and then Nkind (Parent (P)) /= N_Compilation_Unit
8072 loop
8073 if Nkind (P) = N_Package_Body then
8074 if Nkind (Parent (P)) = N_Subunit then
8075 return Corresponding_Stub (Parent (P));
8076 else
8077 return P;
8078 end if;
8079 end if;
8080
8081 P := True_Parent (P);
8082 end loop;
8083
8084 return Empty;
8085 end Enclosing_Package_Body;
8086
8087 -------------------------
8088 -- Package_Freeze_Node --
8089 -------------------------
8090
8091 function Package_Freeze_Node (B : Node_Id) return Node_Id is
8092 Id : Entity_Id;
8093
8094 begin
8095 if Nkind (B) = N_Package_Body then
8096 Id := Corresponding_Spec (B);
8097 else pragma Assert (Nkind (B) = N_Package_Body_Stub);
8098 Id := Corresponding_Spec (Proper_Body (Unit (Library_Unit (B))));
8099 end if;
8100
8101 Ensure_Freeze_Node (Id);
8102 return Freeze_Node (Id);
8103 end Package_Freeze_Node;
8104
8105 -- Start of processing of Freeze_Subprogram_Body
8106
8107 begin
8108 -- If the instance and the generic body appear within the same unit, and
8109 -- the instance precedes the generic, the freeze node for the instance
8110 -- must appear after that of the generic. If the generic is nested
8111 -- within another instance I2, then current instance must be frozen
8112 -- after I2. In both cases, the freeze nodes are those of enclosing
8113 -- packages. Otherwise, the freeze node is placed at the end of the
8114 -- current declarative part.
8115
8116 Enc_G := Enclosing_Package_Body (Gen_Body);
8117 Enc_I := Enclosing_Package_Body (Inst_Node);
8118 Ensure_Freeze_Node (Pack_Id);
8119 F_Node := Freeze_Node (Pack_Id);
8120
8121 if Is_Generic_Instance (Par)
8122 and then Present (Freeze_Node (Par))
8123 and then In_Same_Declarative_Part (Freeze_Node (Par), Inst_Node)
8124 then
8125 -- The parent was a premature instantiation. Insert freeze node at
8126 -- the end the current declarative part.
8127
8128 if ABE_Is_Certain (Get_Package_Instantiation_Node (Par)) then
8129 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8130
8131 -- Handle the following case:
8132 --
8133 -- package Parent_Inst is new ...
8134 -- Parent_Inst []
8135 --
8136 -- procedure P ... -- this body freezes Parent_Inst
8137 --
8138 -- package Inst is new ...
8139 --
8140 -- In this particular scenario, the freeze node for Inst must be
8141 -- inserted in the same manner as that of Parent_Inst - before the
8142 -- next source body or at the end of the declarative list (body not
8143 -- available). If body P did not exist and Parent_Inst was frozen
8144 -- after Inst, either by a body following Inst or at the end of the
8145 -- declarative region, the freeze node for Inst must be inserted
8146 -- after that of Parent_Inst. This relation is established by
8147 -- comparing the Slocs of Parent_Inst freeze node and Inst.
8148
8149 elsif List_Containing (Get_Package_Instantiation_Node (Par)) =
8150 List_Containing (Inst_Node)
8151 and then Sloc (Freeze_Node (Par)) < Sloc (Inst_Node)
8152 then
8153 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8154
8155 else
8156 Insert_After (Freeze_Node (Par), F_Node);
8157 end if;
8158
8159 -- The body enclosing the instance should be frozen after the body that
8160 -- includes the generic, because the body of the instance may make
8161 -- references to entities therein. If the two are not in the same
8162 -- declarative part, or if the one enclosing the instance is frozen
8163 -- already, freeze the instance at the end of the current declarative
8164 -- part.
8165
8166 elsif Is_Generic_Instance (Par)
8167 and then Present (Freeze_Node (Par))
8168 and then Present (Enc_I)
8169 then
8170 if In_Same_Declarative_Part (Freeze_Node (Par), Enc_I)
8171 or else
8172 (Nkind (Enc_I) = N_Package_Body
8173 and then
8174 In_Same_Declarative_Part (Freeze_Node (Par), Parent (Enc_I)))
8175 then
8176 -- The enclosing package may contain several instances. Rather
8177 -- than computing the earliest point at which to insert its freeze
8178 -- node, we place it at the end of the declarative part of the
8179 -- parent of the generic.
8180
8181 Insert_Freeze_Node_For_Instance
8182 (Freeze_Node (Par), Package_Freeze_Node (Enc_I));
8183 end if;
8184
8185 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8186
8187 elsif Present (Enc_G)
8188 and then Present (Enc_I)
8189 and then Enc_G /= Enc_I
8190 and then Earlier (Inst_Node, Gen_Body)
8191 then
8192 if Nkind (Enc_G) = N_Package_Body then
8193 E_G_Id :=
8194 Corresponding_Spec (Enc_G);
8195 else pragma Assert (Nkind (Enc_G) = N_Package_Body_Stub);
8196 E_G_Id :=
8197 Corresponding_Spec (Proper_Body (Unit (Library_Unit (Enc_G))));
8198 end if;
8199
8200 -- Freeze package that encloses instance, and place node after the
8201 -- package that encloses generic. If enclosing package is already
8202 -- frozen we have to assume it is at the proper place. This may be a
8203 -- potential ABE that requires dynamic checking. Do not add a freeze
8204 -- node if the package that encloses the generic is inside the body
8205 -- that encloses the instance, because the freeze node would be in
8206 -- the wrong scope. Additional contortions needed if the bodies are
8207 -- within a subunit.
8208
8209 declare
8210 Enclosing_Body : Node_Id;
8211
8212 begin
8213 if Nkind (Enc_I) = N_Package_Body_Stub then
8214 Enclosing_Body := Proper_Body (Unit (Library_Unit (Enc_I)));
8215 else
8216 Enclosing_Body := Enc_I;
8217 end if;
8218
8219 if Parent (List_Containing (Enc_G)) /= Enclosing_Body then
8220 Insert_Freeze_Node_For_Instance
8221 (Enc_G, Package_Freeze_Node (Enc_I));
8222 end if;
8223 end;
8224
8225 -- Freeze enclosing subunit before instance
8226
8227 Ensure_Freeze_Node (E_G_Id);
8228
8229 if not Is_List_Member (Freeze_Node (E_G_Id)) then
8230 Insert_After (Enc_G, Freeze_Node (E_G_Id));
8231 end if;
8232
8233 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8234
8235 else
8236 -- If none of the above, insert freeze node at the end of the current
8237 -- declarative part.
8238
8239 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8240 end if;
8241 end Freeze_Subprogram_Body;
8242
8243 ----------------
8244 -- Get_Gen_Id --
8245 ----------------
8246
8247 function Get_Gen_Id (E : Assoc_Ptr) return Entity_Id is
8248 begin
8249 return Generic_Renamings.Table (E).Gen_Id;
8250 end Get_Gen_Id;
8251
8252 ---------------------
8253 -- Get_Instance_Of --
8254 ---------------------
8255
8256 function Get_Instance_Of (A : Entity_Id) return Entity_Id is
8257 Res : constant Assoc_Ptr := Generic_Renamings_HTable.Get (A);
8258
8259 begin
8260 if Res /= Assoc_Null then
8261 return Generic_Renamings.Table (Res).Act_Id;
8262
8263 else
8264 -- On exit, entity is not instantiated: not a generic parameter, or
8265 -- else parameter of an inner generic unit.
8266
8267 return A;
8268 end if;
8269 end Get_Instance_Of;
8270
8271 ------------------------------------
8272 -- Get_Package_Instantiation_Node --
8273 ------------------------------------
8274
8275 function Get_Package_Instantiation_Node (A : Entity_Id) return Node_Id is
8276 Decl : Node_Id := Unit_Declaration_Node (A);
8277 Inst : Node_Id;
8278
8279 begin
8280 -- If the Package_Instantiation attribute has been set on the package
8281 -- entity, then use it directly when it (or its Original_Node) refers
8282 -- to an N_Package_Instantiation node. In principle it should be
8283 -- possible to have this field set in all cases, which should be
8284 -- investigated, and would allow this function to be significantly
8285 -- simplified. ???
8286
8287 Inst := Package_Instantiation (A);
8288
8289 if Present (Inst) then
8290 if Nkind (Inst) = N_Package_Instantiation then
8291 return Inst;
8292
8293 elsif Nkind (Original_Node (Inst)) = N_Package_Instantiation then
8294 return Original_Node (Inst);
8295 end if;
8296 end if;
8297
8298 -- If the instantiation is a compilation unit that does not need body
8299 -- then the instantiation node has been rewritten as a package
8300 -- declaration for the instance, and we return the original node.
8301
8302 -- If it is a compilation unit and the instance node has not been
8303 -- rewritten, then it is still the unit of the compilation. Finally, if
8304 -- a body is present, this is a parent of the main unit whose body has
8305 -- been compiled for inlining purposes, and the instantiation node has
8306 -- been rewritten with the instance body.
8307
8308 -- Otherwise the instantiation node appears after the declaration. If
8309 -- the entity is a formal package, the declaration may have been
8310 -- rewritten as a generic declaration (in the case of a formal with box)
8311 -- or left as a formal package declaration if it has actuals, and is
8312 -- found with a forward search.
8313
8314 if Nkind (Parent (Decl)) = N_Compilation_Unit then
8315 if Nkind (Decl) = N_Package_Declaration
8316 and then Present (Corresponding_Body (Decl))
8317 then
8318 Decl := Unit_Declaration_Node (Corresponding_Body (Decl));
8319 end if;
8320
8321 if Nkind (Original_Node (Decl)) = N_Package_Instantiation then
8322 return Original_Node (Decl);
8323 else
8324 return Unit (Parent (Decl));
8325 end if;
8326
8327 elsif Nkind (Decl) = N_Package_Declaration
8328 and then Nkind (Original_Node (Decl)) = N_Formal_Package_Declaration
8329 then
8330 return Original_Node (Decl);
8331
8332 else
8333 Inst := Next (Decl);
8334 while not Nkind_In (Inst, N_Package_Instantiation,
8335 N_Formal_Package_Declaration)
8336 loop
8337 Next (Inst);
8338 end loop;
8339
8340 return Inst;
8341 end if;
8342 end Get_Package_Instantiation_Node;
8343
8344 ------------------------
8345 -- Has_Been_Exchanged --
8346 ------------------------
8347
8348 function Has_Been_Exchanged (E : Entity_Id) return Boolean is
8349 Next : Elmt_Id;
8350
8351 begin
8352 Next := First_Elmt (Exchanged_Views);
8353 while Present (Next) loop
8354 if Full_View (Node (Next)) = E then
8355 return True;
8356 end if;
8357
8358 Next_Elmt (Next);
8359 end loop;
8360
8361 return False;
8362 end Has_Been_Exchanged;
8363
8364 ----------
8365 -- Hash --
8366 ----------
8367
8368 function Hash (F : Entity_Id) return HTable_Range is
8369 begin
8370 return HTable_Range (F mod HTable_Size);
8371 end Hash;
8372
8373 ------------------------
8374 -- Hide_Current_Scope --
8375 ------------------------
8376
8377 procedure Hide_Current_Scope is
8378 C : constant Entity_Id := Current_Scope;
8379 E : Entity_Id;
8380
8381 begin
8382 Set_Is_Hidden_Open_Scope (C);
8383
8384 E := First_Entity (C);
8385 while Present (E) loop
8386 if Is_Immediately_Visible (E) then
8387 Set_Is_Immediately_Visible (E, False);
8388 Append_Elmt (E, Hidden_Entities);
8389 end if;
8390
8391 Next_Entity (E);
8392 end loop;
8393
8394 -- Make the scope name invisible as well. This is necessary, but might
8395 -- conflict with calls to Rtsfind later on, in case the scope is a
8396 -- predefined one. There is no clean solution to this problem, so for
8397 -- now we depend on the user not redefining Standard itself in one of
8398 -- the parent units.
8399
8400 if Is_Immediately_Visible (C) and then C /= Standard_Standard then
8401 Set_Is_Immediately_Visible (C, False);
8402 Append_Elmt (C, Hidden_Entities);
8403 end if;
8404
8405 end Hide_Current_Scope;
8406
8407 --------------
8408 -- Init_Env --
8409 --------------
8410
8411 procedure Init_Env is
8412 Saved : Instance_Env;
8413
8414 begin
8415 Saved.Instantiated_Parent := Current_Instantiated_Parent;
8416 Saved.Exchanged_Views := Exchanged_Views;
8417 Saved.Hidden_Entities := Hidden_Entities;
8418 Saved.Current_Sem_Unit := Current_Sem_Unit;
8419 Saved.Parent_Unit_Visible := Parent_Unit_Visible;
8420 Saved.Instance_Parent_Unit := Instance_Parent_Unit;
8421
8422 -- Save configuration switches. These may be reset if the unit is a
8423 -- predefined unit, and the current mode is not Ada 2005.
8424
8425 Save_Opt_Config_Switches (Saved.Switches);
8426
8427 Instance_Envs.Append (Saved);
8428
8429 Exchanged_Views := New_Elmt_List;
8430 Hidden_Entities := New_Elmt_List;
8431
8432 -- Make dummy entry for Instantiated parent. If generic unit is legal,
8433 -- this is set properly in Set_Instance_Env.
8434
8435 Current_Instantiated_Parent :=
8436 (Current_Scope, Current_Scope, Assoc_Null);
8437 end Init_Env;
8438
8439 ------------------------------
8440 -- In_Same_Declarative_Part --
8441 ------------------------------
8442
8443 function In_Same_Declarative_Part
8444 (F_Node : Node_Id;
8445 Inst : Node_Id) return Boolean
8446 is
8447 Decls : constant Node_Id := Parent (F_Node);
8448 Nod : Node_Id;
8449
8450 begin
8451 Nod := Parent (Inst);
8452 while Present (Nod) loop
8453 if Nod = Decls then
8454 return True;
8455
8456 elsif Nkind_In (Nod, N_Subprogram_Body,
8457 N_Package_Body,
8458 N_Package_Declaration,
8459 N_Task_Body,
8460 N_Protected_Body,
8461 N_Block_Statement)
8462 then
8463 return False;
8464
8465 elsif Nkind (Nod) = N_Subunit then
8466 Nod := Corresponding_Stub (Nod);
8467
8468 elsif Nkind (Nod) = N_Compilation_Unit then
8469 return False;
8470
8471 else
8472 Nod := Parent (Nod);
8473 end if;
8474 end loop;
8475
8476 return False;
8477 end In_Same_Declarative_Part;
8478
8479 ---------------------
8480 -- In_Main_Context --
8481 ---------------------
8482
8483 function In_Main_Context (E : Entity_Id) return Boolean is
8484 Context : List_Id;
8485 Clause : Node_Id;
8486 Nam : Node_Id;
8487
8488 begin
8489 if not Is_Compilation_Unit (E)
8490 or else Ekind (E) /= E_Package
8491 or else In_Private_Part (E)
8492 then
8493 return False;
8494 end if;
8495
8496 Context := Context_Items (Cunit (Main_Unit));
8497
8498 Clause := First (Context);
8499 while Present (Clause) loop
8500 if Nkind (Clause) = N_With_Clause then
8501 Nam := Name (Clause);
8502
8503 -- If the current scope is part of the context of the main unit,
8504 -- analysis of the corresponding with_clause is not complete, and
8505 -- the entity is not set. We use the Chars field directly, which
8506 -- might produce false positives in rare cases, but guarantees
8507 -- that we produce all the instance bodies we will need.
8508
8509 if (Is_Entity_Name (Nam) and then Chars (Nam) = Chars (E))
8510 or else (Nkind (Nam) = N_Selected_Component
8511 and then Chars (Selector_Name (Nam)) = Chars (E))
8512 then
8513 return True;
8514 end if;
8515 end if;
8516
8517 Next (Clause);
8518 end loop;
8519
8520 return False;
8521 end In_Main_Context;
8522
8523 ---------------------
8524 -- Inherit_Context --
8525 ---------------------
8526
8527 procedure Inherit_Context (Gen_Decl : Node_Id; Inst : Node_Id) is
8528 Current_Context : List_Id;
8529 Current_Unit : Node_Id;
8530 Item : Node_Id;
8531 New_I : Node_Id;
8532
8533 Clause : Node_Id;
8534 OK : Boolean;
8535 Lib_Unit : Node_Id;
8536
8537 begin
8538 if Nkind (Parent (Gen_Decl)) = N_Compilation_Unit then
8539
8540 -- The inherited context is attached to the enclosing compilation
8541 -- unit. This is either the main unit, or the declaration for the
8542 -- main unit (in case the instantiation appears within the package
8543 -- declaration and the main unit is its body).
8544
8545 Current_Unit := Parent (Inst);
8546 while Present (Current_Unit)
8547 and then Nkind (Current_Unit) /= N_Compilation_Unit
8548 loop
8549 Current_Unit := Parent (Current_Unit);
8550 end loop;
8551
8552 Current_Context := Context_Items (Current_Unit);
8553
8554 Item := First (Context_Items (Parent (Gen_Decl)));
8555 while Present (Item) loop
8556 if Nkind (Item) = N_With_Clause then
8557 Lib_Unit := Library_Unit (Item);
8558
8559 -- Take care to prevent direct cyclic with's
8560
8561 if Lib_Unit /= Current_Unit then
8562
8563 -- Do not add a unit if it is already in the context
8564
8565 Clause := First (Current_Context);
8566 OK := True;
8567 while Present (Clause) loop
8568 if Nkind (Clause) = N_With_Clause and then
8569 Library_Unit (Clause) = Lib_Unit
8570 then
8571 OK := False;
8572 exit;
8573 end if;
8574
8575 Next (Clause);
8576 end loop;
8577
8578 if OK then
8579 New_I := New_Copy (Item);
8580 Set_Implicit_With (New_I, True);
8581 Set_Implicit_With_From_Instantiation (New_I, True);
8582 Append (New_I, Current_Context);
8583 end if;
8584 end if;
8585 end if;
8586
8587 Next (Item);
8588 end loop;
8589 end if;
8590 end Inherit_Context;
8591
8592 ----------------
8593 -- Initialize --
8594 ----------------
8595
8596 procedure Initialize is
8597 begin
8598 Generic_Renamings.Init;
8599 Instance_Envs.Init;
8600 Generic_Flags.Init;
8601 Generic_Renamings_HTable.Reset;
8602 Circularity_Detected := False;
8603 Exchanged_Views := No_Elist;
8604 Hidden_Entities := No_Elist;
8605 end Initialize;
8606
8607 -------------------------------------
8608 -- Insert_Freeze_Node_For_Instance --
8609 -------------------------------------
8610
8611 procedure Insert_Freeze_Node_For_Instance
8612 (N : Node_Id;
8613 F_Node : Node_Id)
8614 is
8615 Decl : Node_Id;
8616 Decls : List_Id;
8617 Inst : Entity_Id;
8618 Par_N : Node_Id;
8619
8620 function Enclosing_Body (N : Node_Id) return Node_Id;
8621 -- Find enclosing package or subprogram body, if any. Freeze node may
8622 -- be placed at end of current declarative list if previous instance
8623 -- and current one have different enclosing bodies.
8624
8625 function Previous_Instance (Gen : Entity_Id) return Entity_Id;
8626 -- Find the local instance, if any, that declares the generic that is
8627 -- being instantiated. If present, the freeze node for this instance
8628 -- must follow the freeze node for the previous instance.
8629
8630 --------------------
8631 -- Enclosing_Body --
8632 --------------------
8633
8634 function Enclosing_Body (N : Node_Id) return Node_Id is
8635 P : Node_Id;
8636
8637 begin
8638 P := Parent (N);
8639 while Present (P)
8640 and then Nkind (Parent (P)) /= N_Compilation_Unit
8641 loop
8642 if Nkind_In (P, N_Package_Body, N_Subprogram_Body) then
8643 if Nkind (Parent (P)) = N_Subunit then
8644 return Corresponding_Stub (Parent (P));
8645 else
8646 return P;
8647 end if;
8648 end if;
8649
8650 P := True_Parent (P);
8651 end loop;
8652
8653 return Empty;
8654 end Enclosing_Body;
8655
8656 -----------------------
8657 -- Previous_Instance --
8658 -----------------------
8659
8660 function Previous_Instance (Gen : Entity_Id) return Entity_Id is
8661 S : Entity_Id;
8662
8663 begin
8664 S := Scope (Gen);
8665 while Present (S) and then S /= Standard_Standard loop
8666 if Is_Generic_Instance (S)
8667 and then In_Same_Source_Unit (S, N)
8668 then
8669 return S;
8670 end if;
8671
8672 S := Scope (S);
8673 end loop;
8674
8675 return Empty;
8676 end Previous_Instance;
8677
8678 -- Start of processing for Insert_Freeze_Node_For_Instance
8679
8680 begin
8681 if not Is_List_Member (F_Node) then
8682 Decl := N;
8683 Decls := List_Containing (N);
8684 Inst := Entity (F_Node);
8685 Par_N := Parent (Decls);
8686
8687 -- When processing a subprogram instantiation, utilize the actual
8688 -- subprogram instantiation rather than its package wrapper as it
8689 -- carries all the context information.
8690
8691 if Is_Wrapper_Package (Inst) then
8692 Inst := Related_Instance (Inst);
8693 end if;
8694
8695 -- If this is a package instance, check whether the generic is
8696 -- declared in a previous instance and the current instance is
8697 -- not within the previous one.
8698
8699 if Present (Generic_Parent (Parent (Inst)))
8700 and then Is_In_Main_Unit (N)
8701 then
8702 declare
8703 Enclosing_N : constant Node_Id := Enclosing_Body (N);
8704 Par_I : constant Entity_Id :=
8705 Previous_Instance
8706 (Generic_Parent (Parent (Inst)));
8707 Scop : Entity_Id;
8708
8709 begin
8710 if Present (Par_I)
8711 and then Earlier (N, Freeze_Node (Par_I))
8712 then
8713 Scop := Scope (Inst);
8714
8715 -- If the current instance is within the one that contains
8716 -- the generic, the freeze node for the current one must
8717 -- appear in the current declarative part. Ditto, if the
8718 -- current instance is within another package instance or
8719 -- within a body that does not enclose the current instance.
8720 -- In these three cases the freeze node of the previous
8721 -- instance is not relevant.
8722
8723 while Present (Scop) and then Scop /= Standard_Standard loop
8724 exit when Scop = Par_I
8725 or else
8726 (Is_Generic_Instance (Scop)
8727 and then Scope_Depth (Scop) > Scope_Depth (Par_I));
8728 Scop := Scope (Scop);
8729 end loop;
8730
8731 -- Previous instance encloses current instance
8732
8733 if Scop = Par_I then
8734 null;
8735
8736 -- If the next node is a source body we must freeze in
8737 -- the current scope as well.
8738
8739 elsif Present (Next (N))
8740 and then Nkind_In (Next (N), N_Subprogram_Body,
8741 N_Package_Body)
8742 and then Comes_From_Source (Next (N))
8743 then
8744 null;
8745
8746 -- Current instance is within an unrelated instance
8747
8748 elsif Is_Generic_Instance (Scop) then
8749 null;
8750
8751 -- Current instance is within an unrelated body
8752
8753 elsif Present (Enclosing_N)
8754 and then Enclosing_N /= Enclosing_Body (Par_I)
8755 then
8756 null;
8757
8758 else
8759 Insert_After (Freeze_Node (Par_I), F_Node);
8760 return;
8761 end if;
8762 end if;
8763 end;
8764 end if;
8765
8766 -- When the instantiation occurs in a package declaration, append the
8767 -- freeze node to the private declarations (if any).
8768
8769 if Nkind (Par_N) = N_Package_Specification
8770 and then Decls = Visible_Declarations (Par_N)
8771 and then Present (Private_Declarations (Par_N))
8772 and then not Is_Empty_List (Private_Declarations (Par_N))
8773 then
8774 Decls := Private_Declarations (Par_N);
8775 Decl := First (Decls);
8776 end if;
8777
8778 -- Determine the proper freeze point of a package instantiation. We
8779 -- adhere to the general rule of a package or subprogram body causing
8780 -- freezing of anything before it in the same declarative region. In
8781 -- this case, the proper freeze point of a package instantiation is
8782 -- before the first source body which follows, or before a stub. This
8783 -- ensures that entities coming from the instance are already frozen
8784 -- and usable in source bodies.
8785
8786 if Nkind (Par_N) /= N_Package_Declaration
8787 and then Ekind (Inst) = E_Package
8788 and then Is_Generic_Instance (Inst)
8789 and then
8790 not In_Same_Source_Unit (Generic_Parent (Parent (Inst)), Inst)
8791 then
8792 while Present (Decl) loop
8793 if (Nkind (Decl) in N_Unit_Body
8794 or else
8795 Nkind (Decl) in N_Body_Stub)
8796 and then Comes_From_Source (Decl)
8797 then
8798 Insert_Before (Decl, F_Node);
8799 return;
8800 end if;
8801
8802 Next (Decl);
8803 end loop;
8804 end if;
8805
8806 -- In a package declaration, or if no previous body, insert at end
8807 -- of list.
8808
8809 Set_Sloc (F_Node, Sloc (Last (Decls)));
8810 Insert_After (Last (Decls), F_Node);
8811 end if;
8812 end Insert_Freeze_Node_For_Instance;
8813
8814 ------------------
8815 -- Install_Body --
8816 ------------------
8817
8818 procedure Install_Body
8819 (Act_Body : Node_Id;
8820 N : Node_Id;
8821 Gen_Body : Node_Id;
8822 Gen_Decl : Node_Id)
8823 is
8824 Act_Id : constant Entity_Id := Corresponding_Spec (Act_Body);
8825 Act_Unit : constant Node_Id := Unit (Cunit (Get_Source_Unit (N)));
8826 Gen_Id : constant Entity_Id := Corresponding_Spec (Gen_Body);
8827 Par : constant Entity_Id := Scope (Gen_Id);
8828 Gen_Unit : constant Node_Id :=
8829 Unit (Cunit (Get_Source_Unit (Gen_Decl)));
8830 Orig_Body : Node_Id := Gen_Body;
8831 F_Node : Node_Id;
8832 Body_Unit : Node_Id;
8833
8834 Must_Delay : Boolean;
8835
8836 function In_Same_Enclosing_Subp return Boolean;
8837 -- Check whether instance and generic body are within same subprogram.
8838
8839 function True_Sloc (N : Node_Id) return Source_Ptr;
8840 -- If the instance is nested inside a generic unit, the Sloc of the
8841 -- instance indicates the place of the original definition, not the
8842 -- point of the current enclosing instance. Pending a better usage of
8843 -- Slocs to indicate instantiation places, we determine the place of
8844 -- origin of a node by finding the maximum sloc of any ancestor node.
8845 -- Why is this not equivalent to Top_Level_Location ???
8846
8847 ----------------------------
8848 -- In_Same_Enclosing_Subp --
8849 ----------------------------
8850
8851 function In_Same_Enclosing_Subp return Boolean is
8852 Scop : Entity_Id;
8853 Subp : Entity_Id;
8854
8855 begin
8856 Scop := Scope (Act_Id);
8857 while Scop /= Standard_Standard
8858 and then not Is_Overloadable (Scop)
8859 loop
8860 Scop := Scope (Scop);
8861 end loop;
8862
8863 if Scop = Standard_Standard then
8864 return False;
8865 else
8866 Subp := Scop;
8867 end if;
8868
8869 Scop := Scope (Gen_Id);
8870 while Scop /= Standard_Standard loop
8871 if Scop = Subp then
8872 return True;
8873 else
8874 Scop := Scope (Scop);
8875 end if;
8876 end loop;
8877
8878 return False;
8879 end In_Same_Enclosing_Subp;
8880
8881 ---------------
8882 -- True_Sloc --
8883 ---------------
8884
8885 function True_Sloc (N : Node_Id) return Source_Ptr is
8886 Res : Source_Ptr;
8887 N1 : Node_Id;
8888
8889 begin
8890 Res := Sloc (N);
8891 N1 := N;
8892 while Present (N1) and then N1 /= Act_Unit loop
8893 if Sloc (N1) > Res then
8894 Res := Sloc (N1);
8895 end if;
8896
8897 N1 := Parent (N1);
8898 end loop;
8899
8900 return Res;
8901 end True_Sloc;
8902
8903 -- Start of processing for Install_Body
8904
8905 begin
8906 -- Handle first the case of an instance with incomplete actual types.
8907 -- The instance body cannot be placed after the declaration because
8908 -- full views have not been seen yet. Any use of the non-limited views
8909 -- in the instance body requires the presence of a regular with_clause
8910 -- in the enclosing unit, and will fail if this with_clause is missing.
8911 -- We place the instance body at the beginning of the enclosing body,
8912 -- which is the unit being compiled. The freeze node for the instance
8913 -- is then placed after the instance body.
8914
8915 if not Is_Empty_Elmt_List (Incomplete_Actuals (Act_Id))
8916 and then Expander_Active
8917 and then Ekind (Scope (Act_Id)) = E_Package
8918 then
8919 declare
8920 Scop : constant Entity_Id := Scope (Act_Id);
8921 Body_Id : constant Node_Id :=
8922 Corresponding_Body (Unit_Declaration_Node (Scop));
8923
8924 begin
8925 Ensure_Freeze_Node (Act_Id);
8926 F_Node := Freeze_Node (Act_Id);
8927 if Present (Body_Id) then
8928 Set_Is_Frozen (Act_Id, False);
8929 Prepend (Act_Body, Declarations (Parent (Body_Id)));
8930 if Is_List_Member (F_Node) then
8931 Remove (F_Node);
8932 end if;
8933
8934 Insert_After (Act_Body, F_Node);
8935 end if;
8936 end;
8937 return;
8938 end if;
8939
8940 -- If the body is a subunit, the freeze point is the corresponding stub
8941 -- in the current compilation, not the subunit itself.
8942
8943 if Nkind (Parent (Gen_Body)) = N_Subunit then
8944 Orig_Body := Corresponding_Stub (Parent (Gen_Body));
8945 else
8946 Orig_Body := Gen_Body;
8947 end if;
8948
8949 Body_Unit := Unit (Cunit (Get_Source_Unit (Orig_Body)));
8950
8951 -- If the instantiation and the generic definition appear in the same
8952 -- package declaration, this is an early instantiation. If they appear
8953 -- in the same declarative part, it is an early instantiation only if
8954 -- the generic body appears textually later, and the generic body is
8955 -- also in the main unit.
8956
8957 -- If instance is nested within a subprogram, and the generic body
8958 -- is not, the instance is delayed because the enclosing body is. If
8959 -- instance and body are within the same scope, or the same subprogram
8960 -- body, indicate explicitly that the instance is delayed.
8961
8962 Must_Delay :=
8963 (Gen_Unit = Act_Unit
8964 and then (Nkind_In (Gen_Unit, N_Package_Declaration,
8965 N_Generic_Package_Declaration)
8966 or else (Gen_Unit = Body_Unit
8967 and then True_Sloc (N) < Sloc (Orig_Body)))
8968 and then Is_In_Main_Unit (Gen_Unit)
8969 and then (Scope (Act_Id) = Scope (Gen_Id)
8970 or else In_Same_Enclosing_Subp));
8971
8972 -- If this is an early instantiation, the freeze node is placed after
8973 -- the generic body. Otherwise, if the generic appears in an instance,
8974 -- we cannot freeze the current instance until the outer one is frozen.
8975 -- This is only relevant if the current instance is nested within some
8976 -- inner scope not itself within the outer instance. If this scope is
8977 -- a package body in the same declarative part as the outer instance,
8978 -- then that body needs to be frozen after the outer instance. Finally,
8979 -- if no delay is needed, we place the freeze node at the end of the
8980 -- current declarative part.
8981
8982 if Expander_Active then
8983 Ensure_Freeze_Node (Act_Id);
8984 F_Node := Freeze_Node (Act_Id);
8985
8986 if Must_Delay then
8987 Insert_After (Orig_Body, F_Node);
8988
8989 elsif Is_Generic_Instance (Par)
8990 and then Present (Freeze_Node (Par))
8991 and then Scope (Act_Id) /= Par
8992 then
8993 -- Freeze instance of inner generic after instance of enclosing
8994 -- generic.
8995
8996 if In_Same_Declarative_Part (Freeze_Node (Par), N) then
8997
8998 -- Handle the following case:
8999
9000 -- package Parent_Inst is new ...
9001 -- Parent_Inst []
9002
9003 -- procedure P ... -- this body freezes Parent_Inst
9004
9005 -- package Inst is new ...
9006
9007 -- In this particular scenario, the freeze node for Inst must
9008 -- be inserted in the same manner as that of Parent_Inst,
9009 -- before the next source body or at the end of the declarative
9010 -- list (body not available). If body P did not exist and
9011 -- Parent_Inst was frozen after Inst, either by a body
9012 -- following Inst or at the end of the declarative region,
9013 -- the freeze node for Inst must be inserted after that of
9014 -- Parent_Inst. This relation is established by comparing
9015 -- the Slocs of Parent_Inst freeze node and Inst.
9016
9017 if List_Containing (Get_Package_Instantiation_Node (Par)) =
9018 List_Containing (N)
9019 and then Sloc (Freeze_Node (Par)) < Sloc (N)
9020 then
9021 Insert_Freeze_Node_For_Instance (N, F_Node);
9022 else
9023 Insert_After (Freeze_Node (Par), F_Node);
9024 end if;
9025
9026 -- Freeze package enclosing instance of inner generic after
9027 -- instance of enclosing generic.
9028
9029 elsif Nkind_In (Parent (N), N_Package_Body, N_Subprogram_Body)
9030 and then In_Same_Declarative_Part (Freeze_Node (Par), Parent (N))
9031 then
9032 declare
9033 Enclosing : Entity_Id;
9034
9035 begin
9036 Enclosing := Corresponding_Spec (Parent (N));
9037
9038 if No (Enclosing) then
9039 Enclosing := Defining_Entity (Parent (N));
9040 end if;
9041
9042 Insert_Freeze_Node_For_Instance (N, F_Node);
9043 Ensure_Freeze_Node (Enclosing);
9044
9045 if not Is_List_Member (Freeze_Node (Enclosing)) then
9046
9047 -- The enclosing context is a subunit, insert the freeze
9048 -- node after the stub.
9049
9050 if Nkind (Parent (Parent (N))) = N_Subunit then
9051 Insert_Freeze_Node_For_Instance
9052 (Corresponding_Stub (Parent (Parent (N))),
9053 Freeze_Node (Enclosing));
9054
9055 -- The enclosing context is a package with a stub body
9056 -- which has already been replaced by the real body.
9057 -- Insert the freeze node after the actual body.
9058
9059 elsif Ekind (Enclosing) = E_Package
9060 and then Present (Body_Entity (Enclosing))
9061 and then Was_Originally_Stub
9062 (Parent (Body_Entity (Enclosing)))
9063 then
9064 Insert_Freeze_Node_For_Instance
9065 (Parent (Body_Entity (Enclosing)),
9066 Freeze_Node (Enclosing));
9067
9068 -- The parent instance has been frozen before the body of
9069 -- the enclosing package, insert the freeze node after
9070 -- the body.
9071
9072 elsif List_Containing (Freeze_Node (Par)) =
9073 List_Containing (Parent (N))
9074 and then Sloc (Freeze_Node (Par)) < Sloc (Parent (N))
9075 then
9076 Insert_Freeze_Node_For_Instance
9077 (Parent (N), Freeze_Node (Enclosing));
9078
9079 else
9080 Insert_After
9081 (Freeze_Node (Par), Freeze_Node (Enclosing));
9082 end if;
9083 end if;
9084 end;
9085
9086 else
9087 Insert_Freeze_Node_For_Instance (N, F_Node);
9088 end if;
9089
9090 else
9091 Insert_Freeze_Node_For_Instance (N, F_Node);
9092 end if;
9093 end if;
9094
9095 Set_Is_Frozen (Act_Id);
9096 Insert_Before (N, Act_Body);
9097 Mark_Rewrite_Insertion (Act_Body);
9098 end Install_Body;
9099
9100 -----------------------------
9101 -- Install_Formal_Packages --
9102 -----------------------------
9103
9104 procedure Install_Formal_Packages (Par : Entity_Id) is
9105 E : Entity_Id;
9106 Gen : Entity_Id;
9107 Gen_E : Entity_Id := Empty;
9108
9109 begin
9110 E := First_Entity (Par);
9111
9112 -- If we are installing an instance parent, locate the formal packages
9113 -- of its generic parent.
9114
9115 if Is_Generic_Instance (Par) then
9116 Gen := Generic_Parent (Package_Specification (Par));
9117 Gen_E := First_Entity (Gen);
9118 end if;
9119
9120 while Present (E) loop
9121 if Ekind (E) = E_Package
9122 and then Nkind (Parent (E)) = N_Package_Renaming_Declaration
9123 then
9124 -- If this is the renaming for the parent instance, done
9125
9126 if Renamed_Object (E) = Par then
9127 exit;
9128
9129 -- The visibility of a formal of an enclosing generic is already
9130 -- correct.
9131
9132 elsif Denotes_Formal_Package (E) then
9133 null;
9134
9135 elsif Present (Associated_Formal_Package (E)) then
9136 Check_Generic_Actuals (Renamed_Object (E), True);
9137 Set_Is_Hidden (E, False);
9138
9139 -- Find formal package in generic unit that corresponds to
9140 -- (instance of) formal package in instance.
9141
9142 while Present (Gen_E) and then Chars (Gen_E) /= Chars (E) loop
9143 Next_Entity (Gen_E);
9144 end loop;
9145
9146 if Present (Gen_E) then
9147 Map_Formal_Package_Entities (Gen_E, E);
9148 end if;
9149 end if;
9150 end if;
9151
9152 Next_Entity (E);
9153
9154 if Present (Gen_E) then
9155 Next_Entity (Gen_E);
9156 end if;
9157 end loop;
9158 end Install_Formal_Packages;
9159
9160 --------------------
9161 -- Install_Parent --
9162 --------------------
9163
9164 procedure Install_Parent (P : Entity_Id; In_Body : Boolean := False) is
9165 Ancestors : constant Elist_Id := New_Elmt_List;
9166 S : constant Entity_Id := Current_Scope;
9167 Inst_Par : Entity_Id;
9168 First_Par : Entity_Id;
9169 Inst_Node : Node_Id;
9170 Gen_Par : Entity_Id;
9171 First_Gen : Entity_Id;
9172 Elmt : Elmt_Id;
9173
9174 procedure Install_Noninstance_Specs (Par : Entity_Id);
9175 -- Install the scopes of noninstance parent units ending with Par
9176
9177 procedure Install_Spec (Par : Entity_Id);
9178 -- The child unit is within the declarative part of the parent, so the
9179 -- declarations within the parent are immediately visible.
9180
9181 -------------------------------
9182 -- Install_Noninstance_Specs --
9183 -------------------------------
9184
9185 procedure Install_Noninstance_Specs (Par : Entity_Id) is
9186 begin
9187 if Present (Par)
9188 and then Par /= Standard_Standard
9189 and then not In_Open_Scopes (Par)
9190 then
9191 Install_Noninstance_Specs (Scope (Par));
9192 Install_Spec (Par);
9193 end if;
9194 end Install_Noninstance_Specs;
9195
9196 ------------------
9197 -- Install_Spec --
9198 ------------------
9199
9200 procedure Install_Spec (Par : Entity_Id) is
9201 Spec : constant Node_Id := Package_Specification (Par);
9202
9203 begin
9204 -- If this parent of the child instance is a top-level unit,
9205 -- then record the unit and its visibility for later resetting in
9206 -- Remove_Parent. We exclude units that are generic instances, as we
9207 -- only want to record this information for the ultimate top-level
9208 -- noninstance parent (is that always correct???).
9209
9210 if Scope (Par) = Standard_Standard
9211 and then not Is_Generic_Instance (Par)
9212 then
9213 Parent_Unit_Visible := Is_Immediately_Visible (Par);
9214 Instance_Parent_Unit := Par;
9215 end if;
9216
9217 -- Open the parent scope and make it and its declarations visible.
9218 -- If this point is not within a body, then only the visible
9219 -- declarations should be made visible, and installation of the
9220 -- private declarations is deferred until the appropriate point
9221 -- within analysis of the spec being instantiated (see the handling
9222 -- of parent visibility in Analyze_Package_Specification). This is
9223 -- relaxed in the case where the parent unit is Ada.Tags, to avoid
9224 -- private view problems that occur when compiling instantiations of
9225 -- a generic child of that package (Generic_Dispatching_Constructor).
9226 -- If the instance freezes a tagged type, inlinings of operations
9227 -- from Ada.Tags may need the full view of type Tag. If inlining took
9228 -- proper account of establishing visibility of inlined subprograms'
9229 -- parents then it should be possible to remove this
9230 -- special check. ???
9231
9232 Push_Scope (Par);
9233 Set_Is_Immediately_Visible (Par);
9234 Install_Visible_Declarations (Par);
9235 Set_Use (Visible_Declarations (Spec));
9236
9237 if In_Body or else Is_RTU (Par, Ada_Tags) then
9238 Install_Private_Declarations (Par);
9239 Set_Use (Private_Declarations (Spec));
9240 end if;
9241 end Install_Spec;
9242
9243 -- Start of processing for Install_Parent
9244
9245 begin
9246 -- We need to install the parent instance to compile the instantiation
9247 -- of the child, but the child instance must appear in the current
9248 -- scope. Given that we cannot place the parent above the current scope
9249 -- in the scope stack, we duplicate the current scope and unstack both
9250 -- after the instantiation is complete.
9251
9252 -- If the parent is itself the instantiation of a child unit, we must
9253 -- also stack the instantiation of its parent, and so on. Each such
9254 -- ancestor is the prefix of the name in a prior instantiation.
9255
9256 -- If this is a nested instance, the parent unit itself resolves to
9257 -- a renaming of the parent instance, whose declaration we need.
9258
9259 -- Finally, the parent may be a generic (not an instance) when the
9260 -- child unit appears as a formal package.
9261
9262 Inst_Par := P;
9263
9264 if Present (Renamed_Entity (Inst_Par)) then
9265 Inst_Par := Renamed_Entity (Inst_Par);
9266 end if;
9267
9268 First_Par := Inst_Par;
9269
9270 Gen_Par := Generic_Parent (Package_Specification (Inst_Par));
9271
9272 First_Gen := Gen_Par;
9273
9274 while Present (Gen_Par) and then Is_Child_Unit (Gen_Par) loop
9275
9276 -- Load grandparent instance as well
9277
9278 Inst_Node := Get_Package_Instantiation_Node (Inst_Par);
9279
9280 if Nkind (Name (Inst_Node)) = N_Expanded_Name then
9281 Inst_Par := Entity (Prefix (Name (Inst_Node)));
9282
9283 if Present (Renamed_Entity (Inst_Par)) then
9284 Inst_Par := Renamed_Entity (Inst_Par);
9285 end if;
9286
9287 Gen_Par := Generic_Parent (Package_Specification (Inst_Par));
9288
9289 if Present (Gen_Par) then
9290 Prepend_Elmt (Inst_Par, Ancestors);
9291
9292 else
9293 -- Parent is not the name of an instantiation
9294
9295 Install_Noninstance_Specs (Inst_Par);
9296 exit;
9297 end if;
9298
9299 else
9300 -- Previous error
9301
9302 exit;
9303 end if;
9304 end loop;
9305
9306 if Present (First_Gen) then
9307 Append_Elmt (First_Par, Ancestors);
9308 else
9309 Install_Noninstance_Specs (First_Par);
9310 end if;
9311
9312 if not Is_Empty_Elmt_List (Ancestors) then
9313 Elmt := First_Elmt (Ancestors);
9314 while Present (Elmt) loop
9315 Install_Spec (Node (Elmt));
9316 Install_Formal_Packages (Node (Elmt));
9317 Next_Elmt (Elmt);
9318 end loop;
9319 end if;
9320
9321 if not In_Body then
9322 Push_Scope (S);
9323 end if;
9324 end Install_Parent;
9325
9326 -------------------------------
9327 -- Install_Hidden_Primitives --
9328 -------------------------------
9329
9330 procedure Install_Hidden_Primitives
9331 (Prims_List : in out Elist_Id;
9332 Gen_T : Entity_Id;
9333 Act_T : Entity_Id)
9334 is
9335 Elmt : Elmt_Id;
9336 List : Elist_Id := No_Elist;
9337 Prim_G_Elmt : Elmt_Id;
9338 Prim_A_Elmt : Elmt_Id;
9339 Prim_G : Node_Id;
9340 Prim_A : Node_Id;
9341
9342 begin
9343 -- No action needed in case of serious errors because we cannot trust
9344 -- in the order of primitives
9345
9346 if Serious_Errors_Detected > 0 then
9347 return;
9348
9349 -- No action possible if we don't have available the list of primitive
9350 -- operations
9351
9352 elsif No (Gen_T)
9353 or else not Is_Record_Type (Gen_T)
9354 or else not Is_Tagged_Type (Gen_T)
9355 or else not Is_Record_Type (Act_T)
9356 or else not Is_Tagged_Type (Act_T)
9357 then
9358 return;
9359
9360 -- There is no need to handle interface types since their primitives
9361 -- cannot be hidden
9362
9363 elsif Is_Interface (Gen_T) then
9364 return;
9365 end if;
9366
9367 Prim_G_Elmt := First_Elmt (Primitive_Operations (Gen_T));
9368
9369 if not Is_Class_Wide_Type (Act_T) then
9370 Prim_A_Elmt := First_Elmt (Primitive_Operations (Act_T));
9371 else
9372 Prim_A_Elmt := First_Elmt (Primitive_Operations (Root_Type (Act_T)));
9373 end if;
9374
9375 loop
9376 -- Skip predefined primitives in the generic formal
9377
9378 while Present (Prim_G_Elmt)
9379 and then Is_Predefined_Dispatching_Operation (Node (Prim_G_Elmt))
9380 loop
9381 Next_Elmt (Prim_G_Elmt);
9382 end loop;
9383
9384 -- Skip predefined primitives in the generic actual
9385
9386 while Present (Prim_A_Elmt)
9387 and then Is_Predefined_Dispatching_Operation (Node (Prim_A_Elmt))
9388 loop
9389 Next_Elmt (Prim_A_Elmt);
9390 end loop;
9391
9392 exit when No (Prim_G_Elmt) or else No (Prim_A_Elmt);
9393
9394 Prim_G := Node (Prim_G_Elmt);
9395 Prim_A := Node (Prim_A_Elmt);
9396
9397 -- There is no need to handle interface primitives because their
9398 -- primitives are not hidden
9399
9400 exit when Present (Interface_Alias (Prim_G));
9401
9402 -- Here we install one hidden primitive
9403
9404 if Chars (Prim_G) /= Chars (Prim_A)
9405 and then Has_Suffix (Prim_A, 'P')
9406 and then Remove_Suffix (Prim_A, 'P') = Chars (Prim_G)
9407 then
9408 Set_Chars (Prim_A, Chars (Prim_G));
9409 Append_New_Elmt (Prim_A, To => List);
9410 end if;
9411
9412 Next_Elmt (Prim_A_Elmt);
9413 Next_Elmt (Prim_G_Elmt);
9414 end loop;
9415
9416 -- Append the elements to the list of temporarily visible primitives
9417 -- avoiding duplicates.
9418
9419 if Present (List) then
9420 if No (Prims_List) then
9421 Prims_List := New_Elmt_List;
9422 end if;
9423
9424 Elmt := First_Elmt (List);
9425 while Present (Elmt) loop
9426 Append_Unique_Elmt (Node (Elmt), Prims_List);
9427 Next_Elmt (Elmt);
9428 end loop;
9429 end if;
9430 end Install_Hidden_Primitives;
9431
9432 -------------------------------
9433 -- Restore_Hidden_Primitives --
9434 -------------------------------
9435
9436 procedure Restore_Hidden_Primitives (Prims_List : in out Elist_Id) is
9437 Prim_Elmt : Elmt_Id;
9438 Prim : Node_Id;
9439
9440 begin
9441 if Prims_List /= No_Elist then
9442 Prim_Elmt := First_Elmt (Prims_List);
9443 while Present (Prim_Elmt) loop
9444 Prim := Node (Prim_Elmt);
9445 Set_Chars (Prim, Add_Suffix (Prim, 'P'));
9446 Next_Elmt (Prim_Elmt);
9447 end loop;
9448
9449 Prims_List := No_Elist;
9450 end if;
9451 end Restore_Hidden_Primitives;
9452
9453 --------------------------------
9454 -- Instantiate_Formal_Package --
9455 --------------------------------
9456
9457 function Instantiate_Formal_Package
9458 (Formal : Node_Id;
9459 Actual : Node_Id;
9460 Analyzed_Formal : Node_Id) return List_Id
9461 is
9462 Loc : constant Source_Ptr := Sloc (Actual);
9463 Actual_Pack : Entity_Id;
9464 Formal_Pack : Entity_Id;
9465 Gen_Parent : Entity_Id;
9466 Decls : List_Id;
9467 Nod : Node_Id;
9468 Parent_Spec : Node_Id;
9469
9470 procedure Find_Matching_Actual
9471 (F : Node_Id;
9472 Act : in out Entity_Id);
9473 -- We need to associate each formal entity in the formal package with
9474 -- the corresponding entity in the actual package. The actual package
9475 -- has been analyzed and possibly expanded, and as a result there is
9476 -- no one-to-one correspondence between the two lists (for example,
9477 -- the actual may include subtypes, itypes, and inherited primitive
9478 -- operations, interspersed among the renaming declarations for the
9479 -- actuals). We retrieve the corresponding actual by name because each
9480 -- actual has the same name as the formal, and they do appear in the
9481 -- same order.
9482
9483 function Get_Formal_Entity (N : Node_Id) return Entity_Id;
9484 -- Retrieve entity of defining entity of generic formal parameter.
9485 -- Only the declarations of formals need to be considered when
9486 -- linking them to actuals, but the declarative list may include
9487 -- internal entities generated during analysis, and those are ignored.
9488
9489 procedure Match_Formal_Entity
9490 (Formal_Node : Node_Id;
9491 Formal_Ent : Entity_Id;
9492 Actual_Ent : Entity_Id);
9493 -- Associates the formal entity with the actual. In the case where
9494 -- Formal_Ent is a formal package, this procedure iterates through all
9495 -- of its formals and enters associations between the actuals occurring
9496 -- in the formal package's corresponding actual package (given by
9497 -- Actual_Ent) and the formal package's formal parameters. This
9498 -- procedure recurses if any of the parameters is itself a package.
9499
9500 function Is_Instance_Of
9501 (Act_Spec : Entity_Id;
9502 Gen_Anc : Entity_Id) return Boolean;
9503 -- The actual can be an instantiation of a generic within another
9504 -- instance, in which case there is no direct link from it to the
9505 -- original generic ancestor. In that case, we recognize that the
9506 -- ultimate ancestor is the same by examining names and scopes.
9507
9508 procedure Process_Nested_Formal (Formal : Entity_Id);
9509 -- If the current formal is declared with a box, its own formals are
9510 -- visible in the instance, as they were in the generic, and their
9511 -- Hidden flag must be reset. If some of these formals are themselves
9512 -- packages declared with a box, the processing must be recursive.
9513
9514 --------------------------
9515 -- Find_Matching_Actual --
9516 --------------------------
9517
9518 procedure Find_Matching_Actual
9519 (F : Node_Id;
9520 Act : in out Entity_Id)
9521 is
9522 Formal_Ent : Entity_Id;
9523
9524 begin
9525 case Nkind (Original_Node (F)) is
9526 when N_Formal_Object_Declaration |
9527 N_Formal_Type_Declaration =>
9528 Formal_Ent := Defining_Identifier (F);
9529
9530 while Chars (Act) /= Chars (Formal_Ent) loop
9531 Next_Entity (Act);
9532 end loop;
9533
9534 when N_Formal_Subprogram_Declaration |
9535 N_Formal_Package_Declaration |
9536 N_Package_Declaration |
9537 N_Generic_Package_Declaration =>
9538 Formal_Ent := Defining_Entity (F);
9539
9540 while Chars (Act) /= Chars (Formal_Ent) loop
9541 Next_Entity (Act);
9542 end loop;
9543
9544 when others =>
9545 raise Program_Error;
9546 end case;
9547 end Find_Matching_Actual;
9548
9549 -------------------------
9550 -- Match_Formal_Entity --
9551 -------------------------
9552
9553 procedure Match_Formal_Entity
9554 (Formal_Node : Node_Id;
9555 Formal_Ent : Entity_Id;
9556 Actual_Ent : Entity_Id)
9557 is
9558 Act_Pkg : Entity_Id;
9559
9560 begin
9561 Set_Instance_Of (Formal_Ent, Actual_Ent);
9562
9563 if Ekind (Actual_Ent) = E_Package then
9564
9565 -- Record associations for each parameter
9566
9567 Act_Pkg := Actual_Ent;
9568
9569 declare
9570 A_Ent : Entity_Id := First_Entity (Act_Pkg);
9571 F_Ent : Entity_Id;
9572 F_Node : Node_Id;
9573
9574 Gen_Decl : Node_Id;
9575 Formals : List_Id;
9576 Actual : Entity_Id;
9577
9578 begin
9579 -- Retrieve the actual given in the formal package declaration
9580
9581 Actual := Entity (Name (Original_Node (Formal_Node)));
9582
9583 -- The actual in the formal package declaration may be a
9584 -- renamed generic package, in which case we want to retrieve
9585 -- the original generic in order to traverse its formal part.
9586
9587 if Present (Renamed_Entity (Actual)) then
9588 Gen_Decl := Unit_Declaration_Node (Renamed_Entity (Actual));
9589 else
9590 Gen_Decl := Unit_Declaration_Node (Actual);
9591 end if;
9592
9593 Formals := Generic_Formal_Declarations (Gen_Decl);
9594
9595 if Present (Formals) then
9596 F_Node := First_Non_Pragma (Formals);
9597 else
9598 F_Node := Empty;
9599 end if;
9600
9601 while Present (A_Ent)
9602 and then Present (F_Node)
9603 and then A_Ent /= First_Private_Entity (Act_Pkg)
9604 loop
9605 F_Ent := Get_Formal_Entity (F_Node);
9606
9607 if Present (F_Ent) then
9608
9609 -- This is a formal of the original package. Record
9610 -- association and recurse.
9611
9612 Find_Matching_Actual (F_Node, A_Ent);
9613 Match_Formal_Entity (F_Node, F_Ent, A_Ent);
9614 Next_Entity (A_Ent);
9615 end if;
9616
9617 Next_Non_Pragma (F_Node);
9618 end loop;
9619 end;
9620 end if;
9621 end Match_Formal_Entity;
9622
9623 -----------------------
9624 -- Get_Formal_Entity --
9625 -----------------------
9626
9627 function Get_Formal_Entity (N : Node_Id) return Entity_Id is
9628 Kind : constant Node_Kind := Nkind (Original_Node (N));
9629 begin
9630 case Kind is
9631 when N_Formal_Object_Declaration =>
9632 return Defining_Identifier (N);
9633
9634 when N_Formal_Type_Declaration =>
9635 return Defining_Identifier (N);
9636
9637 when N_Formal_Subprogram_Declaration =>
9638 return Defining_Unit_Name (Specification (N));
9639
9640 when N_Formal_Package_Declaration =>
9641 return Defining_Identifier (Original_Node (N));
9642
9643 when N_Generic_Package_Declaration =>
9644 return Defining_Identifier (Original_Node (N));
9645
9646 -- All other declarations are introduced by semantic analysis and
9647 -- have no match in the actual.
9648
9649 when others =>
9650 return Empty;
9651 end case;
9652 end Get_Formal_Entity;
9653
9654 --------------------
9655 -- Is_Instance_Of --
9656 --------------------
9657
9658 function Is_Instance_Of
9659 (Act_Spec : Entity_Id;
9660 Gen_Anc : Entity_Id) return Boolean
9661 is
9662 Gen_Par : constant Entity_Id := Generic_Parent (Act_Spec);
9663
9664 begin
9665 if No (Gen_Par) then
9666 return False;
9667
9668 -- Simplest case: the generic parent of the actual is the formal
9669
9670 elsif Gen_Par = Gen_Anc then
9671 return True;
9672
9673 elsif Chars (Gen_Par) /= Chars (Gen_Anc) then
9674 return False;
9675
9676 -- The actual may be obtained through several instantiations. Its
9677 -- scope must itself be an instance of a generic declared in the
9678 -- same scope as the formal. Any other case is detected above.
9679
9680 elsif not Is_Generic_Instance (Scope (Gen_Par)) then
9681 return False;
9682
9683 else
9684 return Generic_Parent (Parent (Scope (Gen_Par))) = Scope (Gen_Anc);
9685 end if;
9686 end Is_Instance_Of;
9687
9688 ---------------------------
9689 -- Process_Nested_Formal --
9690 ---------------------------
9691
9692 procedure Process_Nested_Formal (Formal : Entity_Id) is
9693 Ent : Entity_Id;
9694
9695 begin
9696 if Present (Associated_Formal_Package (Formal))
9697 and then Box_Present (Parent (Associated_Formal_Package (Formal)))
9698 then
9699 Ent := First_Entity (Formal);
9700 while Present (Ent) loop
9701 Set_Is_Hidden (Ent, False);
9702 Set_Is_Visible_Formal (Ent);
9703 Set_Is_Potentially_Use_Visible
9704 (Ent, Is_Potentially_Use_Visible (Formal));
9705
9706 if Ekind (Ent) = E_Package then
9707 exit when Renamed_Entity (Ent) = Renamed_Entity (Formal);
9708 Process_Nested_Formal (Ent);
9709 end if;
9710
9711 Next_Entity (Ent);
9712 end loop;
9713 end if;
9714 end Process_Nested_Formal;
9715
9716 -- Start of processing for Instantiate_Formal_Package
9717
9718 begin
9719 Analyze (Actual);
9720
9721 if not Is_Entity_Name (Actual)
9722 or else Ekind (Entity (Actual)) /= E_Package
9723 then
9724 Error_Msg_N
9725 ("expect package instance to instantiate formal", Actual);
9726 Abandon_Instantiation (Actual);
9727 raise Program_Error;
9728
9729 else
9730 Actual_Pack := Entity (Actual);
9731 Set_Is_Instantiated (Actual_Pack);
9732
9733 -- The actual may be a renamed package, or an outer generic formal
9734 -- package whose instantiation is converted into a renaming.
9735
9736 if Present (Renamed_Object (Actual_Pack)) then
9737 Actual_Pack := Renamed_Object (Actual_Pack);
9738 end if;
9739
9740 if Nkind (Analyzed_Formal) = N_Formal_Package_Declaration then
9741 Gen_Parent := Get_Instance_Of (Entity (Name (Analyzed_Formal)));
9742 Formal_Pack := Defining_Identifier (Analyzed_Formal);
9743 else
9744 Gen_Parent :=
9745 Generic_Parent (Specification (Analyzed_Formal));
9746 Formal_Pack :=
9747 Defining_Unit_Name (Specification (Analyzed_Formal));
9748 end if;
9749
9750 if Nkind (Parent (Actual_Pack)) = N_Defining_Program_Unit_Name then
9751 Parent_Spec := Package_Specification (Actual_Pack);
9752 else
9753 Parent_Spec := Parent (Actual_Pack);
9754 end if;
9755
9756 if Gen_Parent = Any_Id then
9757 Error_Msg_N
9758 ("previous error in declaration of formal package", Actual);
9759 Abandon_Instantiation (Actual);
9760
9761 elsif
9762 Is_Instance_Of (Parent_Spec, Get_Instance_Of (Gen_Parent))
9763 then
9764 null;
9765
9766 else
9767 Error_Msg_NE
9768 ("actual parameter must be instance of&", Actual, Gen_Parent);
9769 Abandon_Instantiation (Actual);
9770 end if;
9771
9772 Set_Instance_Of (Defining_Identifier (Formal), Actual_Pack);
9773 Map_Formal_Package_Entities (Formal_Pack, Actual_Pack);
9774
9775 Nod :=
9776 Make_Package_Renaming_Declaration (Loc,
9777 Defining_Unit_Name => New_Copy (Defining_Identifier (Formal)),
9778 Name => New_Occurrence_Of (Actual_Pack, Loc));
9779
9780 Set_Associated_Formal_Package
9781 (Defining_Unit_Name (Nod), Defining_Identifier (Formal));
9782 Decls := New_List (Nod);
9783
9784 -- If the formal F has a box, then the generic declarations are
9785 -- visible in the generic G. In an instance of G, the corresponding
9786 -- entities in the actual for F (which are the actuals for the
9787 -- instantiation of the generic that F denotes) must also be made
9788 -- visible for analysis of the current instance. On exit from the
9789 -- current instance, those entities are made private again. If the
9790 -- actual is currently in use, these entities are also use-visible.
9791
9792 -- The loop through the actual entities also steps through the formal
9793 -- entities and enters associations from formals to actuals into the
9794 -- renaming map. This is necessary to properly handle checking of
9795 -- actual parameter associations for later formals that depend on
9796 -- actuals declared in the formal package.
9797
9798 -- In Ada 2005, partial parameterization requires that we make
9799 -- visible the actuals corresponding to formals that were defaulted
9800 -- in the formal package. There formals are identified because they
9801 -- remain formal generics within the formal package, rather than
9802 -- being renamings of the actuals supplied.
9803
9804 declare
9805 Gen_Decl : constant Node_Id :=
9806 Unit_Declaration_Node (Gen_Parent);
9807 Formals : constant List_Id :=
9808 Generic_Formal_Declarations (Gen_Decl);
9809
9810 Actual_Ent : Entity_Id;
9811 Actual_Of_Formal : Node_Id;
9812 Formal_Node : Node_Id;
9813 Formal_Ent : Entity_Id;
9814
9815 begin
9816 if Present (Formals) then
9817 Formal_Node := First_Non_Pragma (Formals);
9818 else
9819 Formal_Node := Empty;
9820 end if;
9821
9822 Actual_Ent := First_Entity (Actual_Pack);
9823 Actual_Of_Formal :=
9824 First (Visible_Declarations (Specification (Analyzed_Formal)));
9825 while Present (Actual_Ent)
9826 and then Actual_Ent /= First_Private_Entity (Actual_Pack)
9827 loop
9828 if Present (Formal_Node) then
9829 Formal_Ent := Get_Formal_Entity (Formal_Node);
9830
9831 if Present (Formal_Ent) then
9832 Find_Matching_Actual (Formal_Node, Actual_Ent);
9833 Match_Formal_Entity (Formal_Node, Formal_Ent, Actual_Ent);
9834
9835 -- We iterate at the same time over the actuals of the
9836 -- local package created for the formal, to determine
9837 -- which one of the formals of the original generic were
9838 -- defaulted in the formal. The corresponding actual
9839 -- entities are visible in the enclosing instance.
9840
9841 if Box_Present (Formal)
9842 or else
9843 (Present (Actual_Of_Formal)
9844 and then
9845 Is_Generic_Formal
9846 (Get_Formal_Entity (Actual_Of_Formal)))
9847 then
9848 Set_Is_Hidden (Actual_Ent, False);
9849 Set_Is_Visible_Formal (Actual_Ent);
9850 Set_Is_Potentially_Use_Visible
9851 (Actual_Ent, In_Use (Actual_Pack));
9852
9853 if Ekind (Actual_Ent) = E_Package then
9854 Process_Nested_Formal (Actual_Ent);
9855 end if;
9856
9857 else
9858 Set_Is_Hidden (Actual_Ent);
9859 Set_Is_Potentially_Use_Visible (Actual_Ent, False);
9860 end if;
9861 end if;
9862
9863 Next_Non_Pragma (Formal_Node);
9864 Next (Actual_Of_Formal);
9865
9866 else
9867 -- No further formals to match, but the generic part may
9868 -- contain inherited operation that are not hidden in the
9869 -- enclosing instance.
9870
9871 Next_Entity (Actual_Ent);
9872 end if;
9873 end loop;
9874
9875 -- Inherited subprograms generated by formal derived types are
9876 -- also visible if the types are.
9877
9878 Actual_Ent := First_Entity (Actual_Pack);
9879 while Present (Actual_Ent)
9880 and then Actual_Ent /= First_Private_Entity (Actual_Pack)
9881 loop
9882 if Is_Overloadable (Actual_Ent)
9883 and then
9884 Nkind (Parent (Actual_Ent)) = N_Subtype_Declaration
9885 and then
9886 not Is_Hidden (Defining_Identifier (Parent (Actual_Ent)))
9887 then
9888 Set_Is_Hidden (Actual_Ent, False);
9889 Set_Is_Potentially_Use_Visible
9890 (Actual_Ent, In_Use (Actual_Pack));
9891 end if;
9892
9893 Next_Entity (Actual_Ent);
9894 end loop;
9895 end;
9896
9897 -- If the formal is not declared with a box, reanalyze it as an
9898 -- abbreviated instantiation, to verify the matching rules of 12.7.
9899 -- The actual checks are performed after the generic associations
9900 -- have been analyzed, to guarantee the same visibility for this
9901 -- instantiation and for the actuals.
9902
9903 -- In Ada 2005, the generic associations for the formal can include
9904 -- defaulted parameters. These are ignored during check. This
9905 -- internal instantiation is removed from the tree after conformance
9906 -- checking, because it contains formal declarations for those
9907 -- defaulted parameters, and those should not reach the back-end.
9908
9909 if not Box_Present (Formal) then
9910 declare
9911 I_Pack : constant Entity_Id :=
9912 Make_Temporary (Sloc (Actual), 'P');
9913
9914 begin
9915 Set_Is_Internal (I_Pack);
9916
9917 Append_To (Decls,
9918 Make_Package_Instantiation (Sloc (Actual),
9919 Defining_Unit_Name => I_Pack,
9920 Name =>
9921 New_Occurrence_Of
9922 (Get_Instance_Of (Gen_Parent), Sloc (Actual)),
9923 Generic_Associations => Generic_Associations (Formal)));
9924 end;
9925 end if;
9926
9927 return Decls;
9928 end if;
9929 end Instantiate_Formal_Package;
9930
9931 -----------------------------------
9932 -- Instantiate_Formal_Subprogram --
9933 -----------------------------------
9934
9935 function Instantiate_Formal_Subprogram
9936 (Formal : Node_Id;
9937 Actual : Node_Id;
9938 Analyzed_Formal : Node_Id) return Node_Id
9939 is
9940 Analyzed_S : constant Entity_Id :=
9941 Defining_Unit_Name (Specification (Analyzed_Formal));
9942 Formal_Sub : constant Entity_Id :=
9943 Defining_Unit_Name (Specification (Formal));
9944
9945 function From_Parent_Scope (Subp : Entity_Id) return Boolean;
9946 -- If the generic is a child unit, the parent has been installed on the
9947 -- scope stack, but a default subprogram cannot resolve to something
9948 -- on the parent because that parent is not really part of the visible
9949 -- context (it is there to resolve explicit local entities). If the
9950 -- default has resolved in this way, we remove the entity from immediate
9951 -- visibility and analyze the node again to emit an error message or
9952 -- find another visible candidate.
9953
9954 procedure Valid_Actual_Subprogram (Act : Node_Id);
9955 -- Perform legality check and raise exception on failure
9956
9957 -----------------------
9958 -- From_Parent_Scope --
9959 -----------------------
9960
9961 function From_Parent_Scope (Subp : Entity_Id) return Boolean is
9962 Gen_Scope : Node_Id;
9963
9964 begin
9965 Gen_Scope := Scope (Analyzed_S);
9966 while Present (Gen_Scope) and then Is_Child_Unit (Gen_Scope) loop
9967 if Scope (Subp) = Scope (Gen_Scope) then
9968 return True;
9969 end if;
9970
9971 Gen_Scope := Scope (Gen_Scope);
9972 end loop;
9973
9974 return False;
9975 end From_Parent_Scope;
9976
9977 -----------------------------
9978 -- Valid_Actual_Subprogram --
9979 -----------------------------
9980
9981 procedure Valid_Actual_Subprogram (Act : Node_Id) is
9982 Act_E : Entity_Id;
9983
9984 begin
9985 if Is_Entity_Name (Act) then
9986 Act_E := Entity (Act);
9987
9988 elsif Nkind (Act) = N_Selected_Component
9989 and then Is_Entity_Name (Selector_Name (Act))
9990 then
9991 Act_E := Entity (Selector_Name (Act));
9992
9993 else
9994 Act_E := Empty;
9995 end if;
9996
9997 if (Present (Act_E) and then Is_Overloadable (Act_E))
9998 or else Nkind_In (Act, N_Attribute_Reference,
9999 N_Indexed_Component,
10000 N_Character_Literal,
10001 N_Explicit_Dereference)
10002 then
10003 return;
10004 end if;
10005
10006 Error_Msg_NE
10007 ("expect subprogram or entry name in instantiation of &",
10008 Instantiation_Node, Formal_Sub);
10009 Abandon_Instantiation (Instantiation_Node);
10010 end Valid_Actual_Subprogram;
10011
10012 -- Local variables
10013
10014 Decl_Node : Node_Id;
10015 Loc : Source_Ptr;
10016 Nam : Node_Id;
10017 New_Spec : Node_Id;
10018 New_Subp : Entity_Id;
10019
10020 -- Start of processing for Instantiate_Formal_Subprogram
10021
10022 begin
10023 New_Spec := New_Copy_Tree (Specification (Formal));
10024
10025 -- The tree copy has created the proper instantiation sloc for the
10026 -- new specification. Use this location for all other constructed
10027 -- declarations.
10028
10029 Loc := Sloc (Defining_Unit_Name (New_Spec));
10030
10031 -- Create new entity for the actual (New_Copy_Tree does not), and
10032 -- indicate that it is an actual.
10033
10034 New_Subp := Make_Defining_Identifier (Loc, Chars (Formal_Sub));
10035 Set_Ekind (New_Subp, Ekind (Analyzed_S));
10036 Set_Is_Generic_Actual_Subprogram (New_Subp);
10037 Set_Defining_Unit_Name (New_Spec, New_Subp);
10038
10039 -- Create new entities for the each of the formals in the specification
10040 -- of the renaming declaration built for the actual.
10041
10042 if Present (Parameter_Specifications (New_Spec)) then
10043 declare
10044 F : Node_Id;
10045 F_Id : Entity_Id;
10046
10047 begin
10048 F := First (Parameter_Specifications (New_Spec));
10049 while Present (F) loop
10050 F_Id := Defining_Identifier (F);
10051
10052 Set_Defining_Identifier (F,
10053 Make_Defining_Identifier (Sloc (F_Id), Chars (F_Id)));
10054 Next (F);
10055 end loop;
10056 end;
10057 end if;
10058
10059 -- Find entity of actual. If the actual is an attribute reference, it
10060 -- cannot be resolved here (its formal is missing) but is handled
10061 -- instead in Attribute_Renaming. If the actual is overloaded, it is
10062 -- fully resolved subsequently, when the renaming declaration for the
10063 -- formal is analyzed. If it is an explicit dereference, resolve the
10064 -- prefix but not the actual itself, to prevent interpretation as call.
10065
10066 if Present (Actual) then
10067 Loc := Sloc (Actual);
10068 Set_Sloc (New_Spec, Loc);
10069
10070 if Nkind (Actual) = N_Operator_Symbol then
10071 Find_Direct_Name (Actual);
10072
10073 elsif Nkind (Actual) = N_Explicit_Dereference then
10074 Analyze (Prefix (Actual));
10075
10076 elsif Nkind (Actual) /= N_Attribute_Reference then
10077 Analyze (Actual);
10078 end if;
10079
10080 Valid_Actual_Subprogram (Actual);
10081 Nam := Actual;
10082
10083 elsif Present (Default_Name (Formal)) then
10084 if not Nkind_In (Default_Name (Formal), N_Attribute_Reference,
10085 N_Selected_Component,
10086 N_Indexed_Component,
10087 N_Character_Literal)
10088 and then Present (Entity (Default_Name (Formal)))
10089 then
10090 Nam := New_Occurrence_Of (Entity (Default_Name (Formal)), Loc);
10091 else
10092 Nam := New_Copy (Default_Name (Formal));
10093 Set_Sloc (Nam, Loc);
10094 end if;
10095
10096 elsif Box_Present (Formal) then
10097
10098 -- Actual is resolved at the point of instantiation. Create an
10099 -- identifier or operator with the same name as the formal.
10100
10101 if Nkind (Formal_Sub) = N_Defining_Operator_Symbol then
10102 Nam :=
10103 Make_Operator_Symbol (Loc,
10104 Chars => Chars (Formal_Sub),
10105 Strval => No_String);
10106 else
10107 Nam := Make_Identifier (Loc, Chars (Formal_Sub));
10108 end if;
10109
10110 elsif Nkind (Specification (Formal)) = N_Procedure_Specification
10111 and then Null_Present (Specification (Formal))
10112 then
10113 -- Generate null body for procedure, for use in the instance
10114
10115 Decl_Node :=
10116 Make_Subprogram_Body (Loc,
10117 Specification => New_Spec,
10118 Declarations => New_List,
10119 Handled_Statement_Sequence =>
10120 Make_Handled_Sequence_Of_Statements (Loc,
10121 Statements => New_List (Make_Null_Statement (Loc))));
10122
10123 Set_Is_Intrinsic_Subprogram (Defining_Unit_Name (New_Spec));
10124 return Decl_Node;
10125
10126 else
10127 Error_Msg_Sloc := Sloc (Scope (Analyzed_S));
10128 Error_Msg_NE
10129 ("missing actual&", Instantiation_Node, Formal_Sub);
10130 Error_Msg_NE
10131 ("\in instantiation of & declared#",
10132 Instantiation_Node, Scope (Analyzed_S));
10133 Abandon_Instantiation (Instantiation_Node);
10134 end if;
10135
10136 Decl_Node :=
10137 Make_Subprogram_Renaming_Declaration (Loc,
10138 Specification => New_Spec,
10139 Name => Nam);
10140
10141 -- If we do not have an actual and the formal specified <> then set to
10142 -- get proper default.
10143
10144 if No (Actual) and then Box_Present (Formal) then
10145 Set_From_Default (Decl_Node);
10146 end if;
10147
10148 -- Gather possible interpretations for the actual before analyzing the
10149 -- instance. If overloaded, it will be resolved when analyzing the
10150 -- renaming declaration.
10151
10152 if Box_Present (Formal) and then No (Actual) then
10153 Analyze (Nam);
10154
10155 if Is_Child_Unit (Scope (Analyzed_S))
10156 and then Present (Entity (Nam))
10157 then
10158 if not Is_Overloaded (Nam) then
10159 if From_Parent_Scope (Entity (Nam)) then
10160 Set_Is_Immediately_Visible (Entity (Nam), False);
10161 Set_Entity (Nam, Empty);
10162 Set_Etype (Nam, Empty);
10163
10164 Analyze (Nam);
10165 Set_Is_Immediately_Visible (Entity (Nam));
10166 end if;
10167
10168 else
10169 declare
10170 I : Interp_Index;
10171 It : Interp;
10172
10173 begin
10174 Get_First_Interp (Nam, I, It);
10175 while Present (It.Nam) loop
10176 if From_Parent_Scope (It.Nam) then
10177 Remove_Interp (I);
10178 end if;
10179
10180 Get_Next_Interp (I, It);
10181 end loop;
10182 end;
10183 end if;
10184 end if;
10185 end if;
10186
10187 -- The generic instantiation freezes the actual. This can only be done
10188 -- once the actual is resolved, in the analysis of the renaming
10189 -- declaration. To make the formal subprogram entity available, we set
10190 -- Corresponding_Formal_Spec to point to the formal subprogram entity.
10191 -- This is also needed in Analyze_Subprogram_Renaming for the processing
10192 -- of formal abstract subprograms.
10193
10194 Set_Corresponding_Formal_Spec (Decl_Node, Analyzed_S);
10195
10196 -- We cannot analyze the renaming declaration, and thus find the actual,
10197 -- until all the actuals are assembled in the instance. For subsequent
10198 -- checks of other actuals, indicate the node that will hold the
10199 -- instance of this formal.
10200
10201 Set_Instance_Of (Analyzed_S, Nam);
10202
10203 if Nkind (Actual) = N_Selected_Component
10204 and then Is_Task_Type (Etype (Prefix (Actual)))
10205 and then not Is_Frozen (Etype (Prefix (Actual)))
10206 then
10207 -- The renaming declaration will create a body, which must appear
10208 -- outside of the instantiation, We move the renaming declaration
10209 -- out of the instance, and create an additional renaming inside,
10210 -- to prevent freezing anomalies.
10211
10212 declare
10213 Anon_Id : constant Entity_Id := Make_Temporary (Loc, 'E');
10214
10215 begin
10216 Set_Defining_Unit_Name (New_Spec, Anon_Id);
10217 Insert_Before (Instantiation_Node, Decl_Node);
10218 Analyze (Decl_Node);
10219
10220 -- Now create renaming within the instance
10221
10222 Decl_Node :=
10223 Make_Subprogram_Renaming_Declaration (Loc,
10224 Specification => New_Copy_Tree (New_Spec),
10225 Name => New_Occurrence_Of (Anon_Id, Loc));
10226
10227 Set_Defining_Unit_Name (Specification (Decl_Node),
10228 Make_Defining_Identifier (Loc, Chars (Formal_Sub)));
10229 end;
10230 end if;
10231
10232 return Decl_Node;
10233 end Instantiate_Formal_Subprogram;
10234
10235 ------------------------
10236 -- Instantiate_Object --
10237 ------------------------
10238
10239 function Instantiate_Object
10240 (Formal : Node_Id;
10241 Actual : Node_Id;
10242 Analyzed_Formal : Node_Id) return List_Id
10243 is
10244 Gen_Obj : constant Entity_Id := Defining_Identifier (Formal);
10245 A_Gen_Obj : constant Entity_Id :=
10246 Defining_Identifier (Analyzed_Formal);
10247 Acc_Def : Node_Id := Empty;
10248 Act_Assoc : constant Node_Id := Parent (Actual);
10249 Actual_Decl : Node_Id := Empty;
10250 Decl_Node : Node_Id;
10251 Def : Node_Id;
10252 Ftyp : Entity_Id;
10253 List : constant List_Id := New_List;
10254 Loc : constant Source_Ptr := Sloc (Actual);
10255 Orig_Ftyp : constant Entity_Id := Etype (A_Gen_Obj);
10256 Subt_Decl : Node_Id := Empty;
10257 Subt_Mark : Node_Id := Empty;
10258
10259 function Copy_Access_Def return Node_Id;
10260 -- If formal is an anonymous access, copy access definition of formal
10261 -- for generated object declaration.
10262
10263 ---------------------
10264 -- Copy_Access_Def --
10265 ---------------------
10266
10267 function Copy_Access_Def return Node_Id is
10268 begin
10269 Def := New_Copy_Tree (Acc_Def);
10270
10271 -- In addition, if formal is an access to subprogram we need to
10272 -- generate new formals for the signature of the default, so that
10273 -- the tree is properly formatted for ASIS use.
10274
10275 if Present (Access_To_Subprogram_Definition (Acc_Def)) then
10276 declare
10277 Par_Spec : Node_Id;
10278 begin
10279 Par_Spec :=
10280 First (Parameter_Specifications
10281 (Access_To_Subprogram_Definition (Def)));
10282 while Present (Par_Spec) loop
10283 Set_Defining_Identifier (Par_Spec,
10284 Make_Defining_Identifier (Sloc (Acc_Def),
10285 Chars => Chars (Defining_Identifier (Par_Spec))));
10286 Next (Par_Spec);
10287 end loop;
10288 end;
10289 end if;
10290
10291 return Def;
10292 end Copy_Access_Def;
10293
10294 -- Start of processing for Instantiate_Object
10295
10296 begin
10297 -- Formal may be an anonymous access
10298
10299 if Present (Subtype_Mark (Formal)) then
10300 Subt_Mark := Subtype_Mark (Formal);
10301 else
10302 Check_Access_Definition (Formal);
10303 Acc_Def := Access_Definition (Formal);
10304 end if;
10305
10306 -- Sloc for error message on missing actual
10307
10308 Error_Msg_Sloc := Sloc (Scope (A_Gen_Obj));
10309
10310 if Get_Instance_Of (Gen_Obj) /= Gen_Obj then
10311 Error_Msg_N ("duplicate instantiation of generic parameter", Actual);
10312 end if;
10313
10314 Set_Parent (List, Parent (Actual));
10315
10316 -- OUT present
10317
10318 if Out_Present (Formal) then
10319
10320 -- An IN OUT generic actual must be a name. The instantiation is a
10321 -- renaming declaration. The actual is the name being renamed. We
10322 -- use the actual directly, rather than a copy, because it is not
10323 -- used further in the list of actuals, and because a copy or a use
10324 -- of relocate_node is incorrect if the instance is nested within a
10325 -- generic. In order to simplify ASIS searches, the Generic_Parent
10326 -- field links the declaration to the generic association.
10327
10328 if No (Actual) then
10329 Error_Msg_NE
10330 ("missing actual &",
10331 Instantiation_Node, Gen_Obj);
10332 Error_Msg_NE
10333 ("\in instantiation of & declared#",
10334 Instantiation_Node, Scope (A_Gen_Obj));
10335 Abandon_Instantiation (Instantiation_Node);
10336 end if;
10337
10338 if Present (Subt_Mark) then
10339 Decl_Node :=
10340 Make_Object_Renaming_Declaration (Loc,
10341 Defining_Identifier => New_Copy (Gen_Obj),
10342 Subtype_Mark => New_Copy_Tree (Subt_Mark),
10343 Name => Actual);
10344
10345 else pragma Assert (Present (Acc_Def));
10346 Decl_Node :=
10347 Make_Object_Renaming_Declaration (Loc,
10348 Defining_Identifier => New_Copy (Gen_Obj),
10349 Access_Definition => New_Copy_Tree (Acc_Def),
10350 Name => Actual);
10351 end if;
10352
10353 Set_Corresponding_Generic_Association (Decl_Node, Act_Assoc);
10354
10355 -- The analysis of the actual may produce Insert_Action nodes, so
10356 -- the declaration must have a context in which to attach them.
10357
10358 Append (Decl_Node, List);
10359 Analyze (Actual);
10360
10361 -- Return if the analysis of the actual reported some error
10362
10363 if Etype (Actual) = Any_Type then
10364 return List;
10365 end if;
10366
10367 -- This check is performed here because Analyze_Object_Renaming will
10368 -- not check it when Comes_From_Source is False. Note though that the
10369 -- check for the actual being the name of an object will be performed
10370 -- in Analyze_Object_Renaming.
10371
10372 if Is_Object_Reference (Actual)
10373 and then Is_Dependent_Component_Of_Mutable_Object (Actual)
10374 then
10375 Error_Msg_N
10376 ("illegal discriminant-dependent component for in out parameter",
10377 Actual);
10378 end if;
10379
10380 -- The actual has to be resolved in order to check that it is a
10381 -- variable (due to cases such as F (1), where F returns access to
10382 -- an array, and for overloaded prefixes).
10383
10384 Ftyp := Get_Instance_Of (Etype (A_Gen_Obj));
10385
10386 -- If the type of the formal is not itself a formal, and the current
10387 -- unit is a child unit, the formal type must be declared in a
10388 -- parent, and must be retrieved by visibility.
10389
10390 if Ftyp = Orig_Ftyp
10391 and then Is_Generic_Unit (Scope (Ftyp))
10392 and then Is_Child_Unit (Scope (A_Gen_Obj))
10393 then
10394 declare
10395 Temp : constant Node_Id :=
10396 New_Copy_Tree (Subtype_Mark (Analyzed_Formal));
10397 begin
10398 Set_Entity (Temp, Empty);
10399 Find_Type (Temp);
10400 Ftyp := Entity (Temp);
10401 end;
10402 end if;
10403
10404 if Is_Private_Type (Ftyp)
10405 and then not Is_Private_Type (Etype (Actual))
10406 and then (Base_Type (Full_View (Ftyp)) = Base_Type (Etype (Actual))
10407 or else Base_Type (Etype (Actual)) = Ftyp)
10408 then
10409 -- If the actual has the type of the full view of the formal, or
10410 -- else a non-private subtype of the formal, then the visibility
10411 -- of the formal type has changed. Add to the actuals a subtype
10412 -- declaration that will force the exchange of views in the body
10413 -- of the instance as well.
10414
10415 Subt_Decl :=
10416 Make_Subtype_Declaration (Loc,
10417 Defining_Identifier => Make_Temporary (Loc, 'P'),
10418 Subtype_Indication => New_Occurrence_Of (Ftyp, Loc));
10419
10420 Prepend (Subt_Decl, List);
10421
10422 Prepend_Elmt (Full_View (Ftyp), Exchanged_Views);
10423 Exchange_Declarations (Ftyp);
10424 end if;
10425
10426 Resolve (Actual, Ftyp);
10427
10428 if not Denotes_Variable (Actual) then
10429 Error_Msg_NE ("actual for& must be a variable", Actual, Gen_Obj);
10430
10431 elsif Base_Type (Ftyp) /= Base_Type (Etype (Actual)) then
10432
10433 -- Ada 2005 (AI-423): For a generic formal object of mode in out,
10434 -- the type of the actual shall resolve to a specific anonymous
10435 -- access type.
10436
10437 if Ada_Version < Ada_2005
10438 or else Ekind (Base_Type (Ftyp)) /=
10439 E_Anonymous_Access_Type
10440 or else Ekind (Base_Type (Etype (Actual))) /=
10441 E_Anonymous_Access_Type
10442 then
10443 Error_Msg_NE
10444 ("type of actual does not match type of&", Actual, Gen_Obj);
10445 end if;
10446 end if;
10447
10448 Note_Possible_Modification (Actual, Sure => True);
10449
10450 -- Check for instantiation of atomic/volatile actual for
10451 -- non-atomic/volatile formal (RM C.6 (12)).
10452
10453 if Is_Atomic_Object (Actual) and then not Is_Atomic (Orig_Ftyp) then
10454 Error_Msg_N
10455 ("cannot instantiate non-atomic formal object "
10456 & "with atomic actual", Actual);
10457
10458 elsif Is_Volatile_Object (Actual) and then not Is_Volatile (Orig_Ftyp)
10459 then
10460 Error_Msg_N
10461 ("cannot instantiate non-volatile formal object "
10462 & "with volatile actual", Actual);
10463 end if;
10464
10465 -- Formal in-parameter
10466
10467 else
10468 -- The instantiation of a generic formal in-parameter is constant
10469 -- declaration. The actual is the expression for that declaration.
10470 -- Its type is a full copy of the type of the formal. This may be
10471 -- an access to subprogram, for which we need to generate entities
10472 -- for the formals in the new signature.
10473
10474 if Present (Actual) then
10475 if Present (Subt_Mark) then
10476 Def := New_Copy_Tree (Subt_Mark);
10477 else pragma Assert (Present (Acc_Def));
10478 Def := Copy_Access_Def;
10479 end if;
10480
10481 Decl_Node :=
10482 Make_Object_Declaration (Loc,
10483 Defining_Identifier => New_Copy (Gen_Obj),
10484 Constant_Present => True,
10485 Null_Exclusion_Present => Null_Exclusion_Present (Formal),
10486 Object_Definition => Def,
10487 Expression => Actual);
10488
10489 Set_Corresponding_Generic_Association (Decl_Node, Act_Assoc);
10490
10491 -- A generic formal object of a tagged type is defined to be
10492 -- aliased so the new constant must also be treated as aliased.
10493
10494 if Is_Tagged_Type (Etype (A_Gen_Obj)) then
10495 Set_Aliased_Present (Decl_Node);
10496 end if;
10497
10498 Append (Decl_Node, List);
10499
10500 -- No need to repeat (pre-)analysis of some expression nodes
10501 -- already handled in Preanalyze_Actuals.
10502
10503 if Nkind (Actual) /= N_Allocator then
10504 Analyze (Actual);
10505
10506 -- Return if the analysis of the actual reported some error
10507
10508 if Etype (Actual) = Any_Type then
10509 return List;
10510 end if;
10511 end if;
10512
10513 declare
10514 Formal_Type : constant Entity_Id := Etype (A_Gen_Obj);
10515 Typ : Entity_Id;
10516
10517 begin
10518 Typ := Get_Instance_Of (Formal_Type);
10519
10520 -- If the actual appears in the current or an enclosing scope,
10521 -- use its type directly. This is relevant if it has an actual
10522 -- subtype that is distinct from its nominal one. This cannot
10523 -- be done in general because the type of the actual may
10524 -- depend on other actuals, and only be fully determined when
10525 -- the enclosing instance is analyzed.
10526
10527 if Present (Etype (Actual))
10528 and then Is_Constr_Subt_For_U_Nominal (Etype (Actual))
10529 then
10530 Freeze_Before (Instantiation_Node, Etype (Actual));
10531 else
10532 Freeze_Before (Instantiation_Node, Typ);
10533 end if;
10534
10535 -- If the actual is an aggregate, perform name resolution on
10536 -- its components (the analysis of an aggregate does not do it)
10537 -- to capture local names that may be hidden if the generic is
10538 -- a child unit.
10539
10540 if Nkind (Actual) = N_Aggregate then
10541 Preanalyze_And_Resolve (Actual, Typ);
10542 end if;
10543
10544 if Is_Limited_Type (Typ)
10545 and then not OK_For_Limited_Init (Typ, Actual)
10546 then
10547 Error_Msg_N
10548 ("initialization not allowed for limited types", Actual);
10549 Explain_Limited_Type (Typ, Actual);
10550 end if;
10551 end;
10552
10553 elsif Present (Default_Expression (Formal)) then
10554
10555 -- Use default to construct declaration
10556
10557 if Present (Subt_Mark) then
10558 Def := New_Copy (Subt_Mark);
10559 else pragma Assert (Present (Acc_Def));
10560 Def := Copy_Access_Def;
10561 end if;
10562
10563 Decl_Node :=
10564 Make_Object_Declaration (Sloc (Formal),
10565 Defining_Identifier => New_Copy (Gen_Obj),
10566 Constant_Present => True,
10567 Null_Exclusion_Present => Null_Exclusion_Present (Formal),
10568 Object_Definition => Def,
10569 Expression => New_Copy_Tree
10570 (Default_Expression (Formal)));
10571
10572 Append (Decl_Node, List);
10573 Set_Analyzed (Expression (Decl_Node), False);
10574
10575 else
10576 Error_Msg_NE ("missing actual&", Instantiation_Node, Gen_Obj);
10577 Error_Msg_NE ("\in instantiation of & declared#",
10578 Instantiation_Node, Scope (A_Gen_Obj));
10579
10580 if Is_Scalar_Type (Etype (A_Gen_Obj)) then
10581
10582 -- Create dummy constant declaration so that instance can be
10583 -- analyzed, to minimize cascaded visibility errors.
10584
10585 if Present (Subt_Mark) then
10586 Def := Subt_Mark;
10587 else pragma Assert (Present (Acc_Def));
10588 Def := Acc_Def;
10589 end if;
10590
10591 Decl_Node :=
10592 Make_Object_Declaration (Loc,
10593 Defining_Identifier => New_Copy (Gen_Obj),
10594 Constant_Present => True,
10595 Null_Exclusion_Present => Null_Exclusion_Present (Formal),
10596 Object_Definition => New_Copy (Def),
10597 Expression =>
10598 Make_Attribute_Reference (Sloc (Gen_Obj),
10599 Attribute_Name => Name_First,
10600 Prefix => New_Copy (Def)));
10601
10602 Append (Decl_Node, List);
10603
10604 else
10605 Abandon_Instantiation (Instantiation_Node);
10606 end if;
10607 end if;
10608 end if;
10609
10610 if Nkind (Actual) in N_Has_Entity then
10611 Actual_Decl := Parent (Entity (Actual));
10612 end if;
10613
10614 -- Ada 2005 (AI-423): For a formal object declaration with a null
10615 -- exclusion or an access definition that has a null exclusion: If the
10616 -- actual matching the formal object declaration denotes a generic
10617 -- formal object of another generic unit G, and the instantiation
10618 -- containing the actual occurs within the body of G or within the body
10619 -- of a generic unit declared within the declarative region of G, then
10620 -- the declaration of the formal object of G must have a null exclusion.
10621 -- Otherwise, the subtype of the actual matching the formal object
10622 -- declaration shall exclude null.
10623
10624 if Ada_Version >= Ada_2005
10625 and then Present (Actual_Decl)
10626 and then Nkind_In (Actual_Decl, N_Formal_Object_Declaration,
10627 N_Object_Declaration)
10628 and then Nkind (Analyzed_Formal) = N_Formal_Object_Declaration
10629 and then not Has_Null_Exclusion (Actual_Decl)
10630 and then Has_Null_Exclusion (Analyzed_Formal)
10631 then
10632 Error_Msg_Sloc := Sloc (Analyzed_Formal);
10633 Error_Msg_N
10634 ("actual must exclude null to match generic formal#", Actual);
10635 end if;
10636
10637 -- An effectively volatile object cannot be used as an actual in
10638 -- a generic instance. The following check is only relevant when
10639 -- SPARK_Mode is on as it is not a standard Ada legality rule.
10640
10641 if SPARK_Mode = On
10642 and then Present (Actual)
10643 and then Is_Effectively_Volatile_Object (Actual)
10644 then
10645 Error_Msg_N
10646 ("volatile object cannot act as actual in generic instantiation "
10647 & "(SPARK RM 7.1.3(8))", Actual);
10648 end if;
10649
10650 return List;
10651 end Instantiate_Object;
10652
10653 ------------------------------
10654 -- Instantiate_Package_Body --
10655 ------------------------------
10656
10657 procedure Instantiate_Package_Body
10658 (Body_Info : Pending_Body_Info;
10659 Inlined_Body : Boolean := False;
10660 Body_Optional : Boolean := False)
10661 is
10662 Act_Decl : constant Node_Id := Body_Info.Act_Decl;
10663 Inst_Node : constant Node_Id := Body_Info.Inst_Node;
10664 Loc : constant Source_Ptr := Sloc (Inst_Node);
10665
10666 Gen_Id : constant Node_Id := Name (Inst_Node);
10667 Gen_Unit : constant Entity_Id := Get_Generic_Entity (Inst_Node);
10668 Gen_Decl : constant Node_Id := Unit_Declaration_Node (Gen_Unit);
10669 Act_Spec : constant Node_Id := Specification (Act_Decl);
10670 Act_Decl_Id : constant Entity_Id := Defining_Entity (Act_Spec);
10671
10672 Save_IPSM : constant Boolean := Ignore_Pragma_SPARK_Mode;
10673 Save_Style_Check : constant Boolean := Style_Check;
10674
10675 Act_Body : Node_Id;
10676 Act_Body_Id : Entity_Id;
10677 Act_Body_Name : Node_Id;
10678 Gen_Body : Node_Id;
10679 Gen_Body_Id : Node_Id;
10680 Par_Ent : Entity_Id := Empty;
10681 Par_Vis : Boolean := False;
10682
10683 Parent_Installed : Boolean := False;
10684
10685 Vis_Prims_List : Elist_Id := No_Elist;
10686 -- List of primitives made temporarily visible in the instantiation
10687 -- to match the visibility of the formal type
10688
10689 procedure Check_Initialized_Types;
10690 -- In a generic package body, an entity of a generic private type may
10691 -- appear uninitialized. This is suspicious, unless the actual is a
10692 -- fully initialized type.
10693
10694 -----------------------------
10695 -- Check_Initialized_Types --
10696 -----------------------------
10697
10698 procedure Check_Initialized_Types is
10699 Decl : Node_Id;
10700 Formal : Entity_Id;
10701 Actual : Entity_Id;
10702 Uninit_Var : Entity_Id;
10703
10704 begin
10705 Decl := First (Generic_Formal_Declarations (Gen_Decl));
10706 while Present (Decl) loop
10707 Uninit_Var := Empty;
10708
10709 if Nkind (Decl) = N_Private_Extension_Declaration then
10710 Uninit_Var := Uninitialized_Variable (Decl);
10711
10712 elsif Nkind (Decl) = N_Formal_Type_Declaration
10713 and then Nkind (Formal_Type_Definition (Decl)) =
10714 N_Formal_Private_Type_Definition
10715 then
10716 Uninit_Var :=
10717 Uninitialized_Variable (Formal_Type_Definition (Decl));
10718 end if;
10719
10720 if Present (Uninit_Var) then
10721 Formal := Defining_Identifier (Decl);
10722 Actual := First_Entity (Act_Decl_Id);
10723
10724 -- For each formal there is a subtype declaration that renames
10725 -- the actual and has the same name as the formal. Locate the
10726 -- formal for warning message about uninitialized variables
10727 -- in the generic, for which the actual type should be a fully
10728 -- initialized type.
10729
10730 while Present (Actual) loop
10731 exit when Ekind (Actual) = E_Package
10732 and then Present (Renamed_Object (Actual));
10733
10734 if Chars (Actual) = Chars (Formal)
10735 and then not Is_Scalar_Type (Actual)
10736 and then not Is_Fully_Initialized_Type (Actual)
10737 and then Warn_On_No_Value_Assigned
10738 then
10739 Error_Msg_Node_2 := Formal;
10740 Error_Msg_NE
10741 ("generic unit has uninitialized variable& of "
10742 & "formal private type &?v?", Actual, Uninit_Var);
10743 Error_Msg_NE
10744 ("actual type for& should be fully initialized type?v?",
10745 Actual, Formal);
10746 exit;
10747 end if;
10748
10749 Next_Entity (Actual);
10750 end loop;
10751 end if;
10752
10753 Next (Decl);
10754 end loop;
10755 end Check_Initialized_Types;
10756
10757 -- Start of processing for Instantiate_Package_Body
10758
10759 begin
10760 Gen_Body_Id := Corresponding_Body (Gen_Decl);
10761
10762 -- The instance body may already have been processed, as the parent of
10763 -- another instance that is inlined (Load_Parent_Of_Generic).
10764
10765 if Present (Corresponding_Body (Instance_Spec (Inst_Node))) then
10766 return;
10767 end if;
10768
10769 Expander_Mode_Save_And_Set (Body_Info.Expander_Status);
10770
10771 -- Re-establish the state of information on which checks are suppressed.
10772 -- This information was set in Body_Info at the point of instantiation,
10773 -- and now we restore it so that the instance is compiled using the
10774 -- check status at the instantiation (RM 11.5(7.2/2), AI95-00224-01).
10775
10776 Local_Suppress_Stack_Top := Body_Info.Local_Suppress_Stack_Top;
10777 Scope_Suppress := Body_Info.Scope_Suppress;
10778 Opt.Ada_Version := Body_Info.Version;
10779 Opt.Ada_Version_Pragma := Body_Info.Version_Pragma;
10780 Restore_Warnings (Body_Info.Warnings);
10781 Opt.SPARK_Mode := Body_Info.SPARK_Mode;
10782 Opt.SPARK_Mode_Pragma := Body_Info.SPARK_Mode_Pragma;
10783
10784 if No (Gen_Body_Id) then
10785
10786 -- Do not look for parent of generic body if none is required.
10787 -- This may happen when the routine is called as part of the
10788 -- Pending_Instantiations processing, when nested instances
10789 -- may precede the one generated from the main unit.
10790
10791 if not Unit_Requires_Body (Defining_Entity (Gen_Decl))
10792 and then Body_Optional
10793 then
10794 return;
10795 else
10796 Load_Parent_Of_Generic
10797 (Inst_Node, Specification (Gen_Decl), Body_Optional);
10798 Gen_Body_Id := Corresponding_Body (Gen_Decl);
10799 end if;
10800 end if;
10801
10802 -- Establish global variable for sloc adjustment and for error recovery
10803 -- In the case of an instance body for an instantiation with actuals
10804 -- from a limited view, the instance body is placed at the beginning
10805 -- of the enclosing package body: use the body entity as the source
10806 -- location for nodes of the instance body.
10807
10808 if not Is_Empty_Elmt_List (Incomplete_Actuals (Act_Decl_Id)) then
10809 declare
10810 Scop : constant Entity_Id := Scope (Act_Decl_Id);
10811 Body_Id : constant Node_Id :=
10812 Corresponding_Body (Unit_Declaration_Node (Scop));
10813
10814 begin
10815 Instantiation_Node := Body_Id;
10816 end;
10817 else
10818 Instantiation_Node := Inst_Node;
10819 end if;
10820
10821 if Present (Gen_Body_Id) then
10822 Save_Env (Gen_Unit, Act_Decl_Id);
10823 Style_Check := False;
10824
10825 -- If the context of the instance is subject to SPARK_Mode "off" or
10826 -- the annotation is altogether missing, set the global flag which
10827 -- signals Analyze_Pragma to ignore all SPARK_Mode pragmas within
10828 -- the instance.
10829
10830 if SPARK_Mode /= On then
10831 Ignore_Pragma_SPARK_Mode := True;
10832 end if;
10833
10834 Current_Sem_Unit := Body_Info.Current_Sem_Unit;
10835 Gen_Body := Unit_Declaration_Node (Gen_Body_Id);
10836
10837 Create_Instantiation_Source
10838 (Inst_Node, Gen_Body_Id, False, S_Adjustment);
10839
10840 Act_Body :=
10841 Copy_Generic_Node
10842 (Original_Node (Gen_Body), Empty, Instantiating => True);
10843
10844 -- Build new name (possibly qualified) for body declaration
10845
10846 Act_Body_Id := New_Copy (Act_Decl_Id);
10847
10848 -- Some attributes of spec entity are not inherited by body entity
10849
10850 Set_Handler_Records (Act_Body_Id, No_List);
10851
10852 if Nkind (Defining_Unit_Name (Act_Spec)) =
10853 N_Defining_Program_Unit_Name
10854 then
10855 Act_Body_Name :=
10856 Make_Defining_Program_Unit_Name (Loc,
10857 Name => New_Copy_Tree (Name (Defining_Unit_Name (Act_Spec))),
10858 Defining_Identifier => Act_Body_Id);
10859 else
10860 Act_Body_Name := Act_Body_Id;
10861 end if;
10862
10863 Set_Defining_Unit_Name (Act_Body, Act_Body_Name);
10864
10865 Set_Corresponding_Spec (Act_Body, Act_Decl_Id);
10866 Check_Generic_Actuals (Act_Decl_Id, False);
10867 Check_Initialized_Types;
10868
10869 -- Install primitives hidden at the point of the instantiation but
10870 -- visible when processing the generic formals
10871
10872 declare
10873 E : Entity_Id;
10874
10875 begin
10876 E := First_Entity (Act_Decl_Id);
10877 while Present (E) loop
10878 if Is_Type (E)
10879 and then Is_Generic_Actual_Type (E)
10880 and then Is_Tagged_Type (E)
10881 then
10882 Install_Hidden_Primitives
10883 (Prims_List => Vis_Prims_List,
10884 Gen_T => Generic_Parent_Type (Parent (E)),
10885 Act_T => E);
10886 end if;
10887
10888 Next_Entity (E);
10889 end loop;
10890 end;
10891
10892 -- If it is a child unit, make the parent instance (which is an
10893 -- instance of the parent of the generic) visible. The parent
10894 -- instance is the prefix of the name of the generic unit.
10895
10896 if Ekind (Scope (Gen_Unit)) = E_Generic_Package
10897 and then Nkind (Gen_Id) = N_Expanded_Name
10898 then
10899 Par_Ent := Entity (Prefix (Gen_Id));
10900 Par_Vis := Is_Immediately_Visible (Par_Ent);
10901 Install_Parent (Par_Ent, In_Body => True);
10902 Parent_Installed := True;
10903
10904 elsif Is_Child_Unit (Gen_Unit) then
10905 Par_Ent := Scope (Gen_Unit);
10906 Par_Vis := Is_Immediately_Visible (Par_Ent);
10907 Install_Parent (Par_Ent, In_Body => True);
10908 Parent_Installed := True;
10909 end if;
10910
10911 -- If the instantiation is a library unit, and this is the main unit,
10912 -- then build the resulting compilation unit nodes for the instance.
10913 -- If this is a compilation unit but it is not the main unit, then it
10914 -- is the body of a unit in the context, that is being compiled
10915 -- because it is encloses some inlined unit or another generic unit
10916 -- being instantiated. In that case, this body is not part of the
10917 -- current compilation, and is not attached to the tree, but its
10918 -- parent must be set for analysis.
10919
10920 if Nkind (Parent (Inst_Node)) = N_Compilation_Unit then
10921
10922 -- Replace instance node with body of instance, and create new
10923 -- node for corresponding instance declaration.
10924
10925 Build_Instance_Compilation_Unit_Nodes
10926 (Inst_Node, Act_Body, Act_Decl);
10927 Analyze (Inst_Node);
10928
10929 if Parent (Inst_Node) = Cunit (Main_Unit) then
10930
10931 -- If the instance is a child unit itself, then set the scope
10932 -- of the expanded body to be the parent of the instantiation
10933 -- (ensuring that the fully qualified name will be generated
10934 -- for the elaboration subprogram).
10935
10936 if Nkind (Defining_Unit_Name (Act_Spec)) =
10937 N_Defining_Program_Unit_Name
10938 then
10939 Set_Scope (Defining_Entity (Inst_Node), Scope (Act_Decl_Id));
10940 end if;
10941 end if;
10942
10943 -- Case where instantiation is not a library unit
10944
10945 else
10946 -- If this is an early instantiation, i.e. appears textually
10947 -- before the corresponding body and must be elaborated first,
10948 -- indicate that the body instance is to be delayed.
10949
10950 Install_Body (Act_Body, Inst_Node, Gen_Body, Gen_Decl);
10951
10952 -- Now analyze the body. We turn off all checks if this is an
10953 -- internal unit, since there is no reason to have checks on for
10954 -- any predefined run-time library code. All such code is designed
10955 -- to be compiled with checks off.
10956
10957 -- Note that we do NOT apply this criterion to children of GNAT
10958 -- The latter units must suppress checks explicitly if needed.
10959
10960 if Is_Predefined_File_Name
10961 (Unit_File_Name (Get_Source_Unit (Gen_Decl)))
10962 then
10963 Analyze (Act_Body, Suppress => All_Checks);
10964 else
10965 Analyze (Act_Body);
10966 end if;
10967 end if;
10968
10969 Inherit_Context (Gen_Body, Inst_Node);
10970
10971 -- Remove the parent instances if they have been placed on the scope
10972 -- stack to compile the body.
10973
10974 if Parent_Installed then
10975 Remove_Parent (In_Body => True);
10976
10977 -- Restore the previous visibility of the parent
10978
10979 Set_Is_Immediately_Visible (Par_Ent, Par_Vis);
10980 end if;
10981
10982 Restore_Hidden_Primitives (Vis_Prims_List);
10983 Restore_Private_Views (Act_Decl_Id);
10984
10985 -- Remove the current unit from visibility if this is an instance
10986 -- that is not elaborated on the fly for inlining purposes.
10987
10988 if not Inlined_Body then
10989 Set_Is_Immediately_Visible (Act_Decl_Id, False);
10990 end if;
10991
10992 Restore_Env;
10993 Ignore_Pragma_SPARK_Mode := Save_IPSM;
10994 Style_Check := Save_Style_Check;
10995
10996 -- If we have no body, and the unit requires a body, then complain. This
10997 -- complaint is suppressed if we have detected other errors (since a
10998 -- common reason for missing the body is that it had errors).
10999 -- In CodePeer mode, a warning has been emitted already, no need for
11000 -- further messages.
11001
11002 elsif Unit_Requires_Body (Gen_Unit)
11003 and then not Body_Optional
11004 then
11005 if CodePeer_Mode then
11006 null;
11007
11008 elsif Serious_Errors_Detected = 0 then
11009 Error_Msg_NE
11010 ("cannot find body of generic package &", Inst_Node, Gen_Unit);
11011
11012 -- Don't attempt to perform any cleanup actions if some other error
11013 -- was already detected, since this can cause blowups.
11014
11015 else
11016 return;
11017 end if;
11018
11019 -- Case of package that does not need a body
11020
11021 else
11022 -- If the instantiation of the declaration is a library unit, rewrite
11023 -- the original package instantiation as a package declaration in the
11024 -- compilation unit node.
11025
11026 if Nkind (Parent (Inst_Node)) = N_Compilation_Unit then
11027 Set_Parent_Spec (Act_Decl, Parent_Spec (Inst_Node));
11028 Rewrite (Inst_Node, Act_Decl);
11029
11030 -- Generate elaboration entity, in case spec has elaboration code.
11031 -- This cannot be done when the instance is analyzed, because it
11032 -- is not known yet whether the body exists.
11033
11034 Set_Elaboration_Entity_Required (Act_Decl_Id, False);
11035 Build_Elaboration_Entity (Parent (Inst_Node), Act_Decl_Id);
11036
11037 -- If the instantiation is not a library unit, then append the
11038 -- declaration to the list of implicitly generated entities, unless
11039 -- it is already a list member which means that it was already
11040 -- processed
11041
11042 elsif not Is_List_Member (Act_Decl) then
11043 Mark_Rewrite_Insertion (Act_Decl);
11044 Insert_Before (Inst_Node, Act_Decl);
11045 end if;
11046 end if;
11047
11048 Expander_Mode_Restore;
11049 end Instantiate_Package_Body;
11050
11051 ---------------------------------
11052 -- Instantiate_Subprogram_Body --
11053 ---------------------------------
11054
11055 procedure Instantiate_Subprogram_Body
11056 (Body_Info : Pending_Body_Info;
11057 Body_Optional : Boolean := False)
11058 is
11059 Act_Decl : constant Node_Id := Body_Info.Act_Decl;
11060 Inst_Node : constant Node_Id := Body_Info.Inst_Node;
11061 Loc : constant Source_Ptr := Sloc (Inst_Node);
11062 Gen_Id : constant Node_Id := Name (Inst_Node);
11063 Gen_Unit : constant Entity_Id := Get_Generic_Entity (Inst_Node);
11064 Gen_Decl : constant Node_Id := Unit_Declaration_Node (Gen_Unit);
11065 Anon_Id : constant Entity_Id :=
11066 Defining_Unit_Name (Specification (Act_Decl));
11067 Pack_Id : constant Entity_Id :=
11068 Defining_Unit_Name (Parent (Act_Decl));
11069
11070 Saved_IPSM : constant Boolean := Ignore_Pragma_SPARK_Mode;
11071 Saved_Style_Check : constant Boolean := Style_Check;
11072 Saved_Warnings : constant Warning_Record := Save_Warnings;
11073
11074 Act_Body : Node_Id;
11075 Gen_Body : Node_Id;
11076 Gen_Body_Id : Node_Id;
11077 Pack_Body : Node_Id;
11078 Par_Ent : Entity_Id := Empty;
11079 Par_Vis : Boolean := False;
11080 Ret_Expr : Node_Id;
11081
11082 Parent_Installed : Boolean := False;
11083
11084 begin
11085 Gen_Body_Id := Corresponding_Body (Gen_Decl);
11086
11087 -- Subprogram body may have been created already because of an inline
11088 -- pragma, or because of multiple elaborations of the enclosing package
11089 -- when several instances of the subprogram appear in the main unit.
11090
11091 if Present (Corresponding_Body (Act_Decl)) then
11092 return;
11093 end if;
11094
11095 Expander_Mode_Save_And_Set (Body_Info.Expander_Status);
11096
11097 -- Re-establish the state of information on which checks are suppressed.
11098 -- This information was set in Body_Info at the point of instantiation,
11099 -- and now we restore it so that the instance is compiled using the
11100 -- check status at the instantiation (RM 11.5(7.2/2), AI95-00224-01).
11101
11102 Local_Suppress_Stack_Top := Body_Info.Local_Suppress_Stack_Top;
11103 Scope_Suppress := Body_Info.Scope_Suppress;
11104 Opt.Ada_Version := Body_Info.Version;
11105 Opt.Ada_Version_Pragma := Body_Info.Version_Pragma;
11106 Restore_Warnings (Body_Info.Warnings);
11107 Opt.SPARK_Mode := Body_Info.SPARK_Mode;
11108 Opt.SPARK_Mode_Pragma := Body_Info.SPARK_Mode_Pragma;
11109
11110 if No (Gen_Body_Id) then
11111
11112 -- For imported generic subprogram, no body to compile, complete
11113 -- the spec entity appropriately.
11114
11115 if Is_Imported (Gen_Unit) then
11116 Set_Is_Imported (Anon_Id);
11117 Set_First_Rep_Item (Anon_Id, First_Rep_Item (Gen_Unit));
11118 Set_Interface_Name (Anon_Id, Interface_Name (Gen_Unit));
11119 Set_Convention (Anon_Id, Convention (Gen_Unit));
11120 Set_Has_Completion (Anon_Id);
11121 return;
11122
11123 -- For other cases, compile the body
11124
11125 else
11126 Load_Parent_Of_Generic
11127 (Inst_Node, Specification (Gen_Decl), Body_Optional);
11128 Gen_Body_Id := Corresponding_Body (Gen_Decl);
11129 end if;
11130 end if;
11131
11132 Instantiation_Node := Inst_Node;
11133
11134 if Present (Gen_Body_Id) then
11135 Gen_Body := Unit_Declaration_Node (Gen_Body_Id);
11136
11137 if Nkind (Gen_Body) = N_Subprogram_Body_Stub then
11138
11139 -- Either body is not present, or context is non-expanding, as
11140 -- when compiling a subunit. Mark the instance as completed, and
11141 -- diagnose a missing body when needed.
11142
11143 if Expander_Active
11144 and then Operating_Mode = Generate_Code
11145 then
11146 Error_Msg_N
11147 ("missing proper body for instantiation", Gen_Body);
11148 end if;
11149
11150 Set_Has_Completion (Anon_Id);
11151 return;
11152 end if;
11153
11154 Save_Env (Gen_Unit, Anon_Id);
11155 Style_Check := False;
11156
11157 -- If the context of the instance is subject to SPARK_Mode "off" or
11158 -- the annotation is altogether missing, set the global flag which
11159 -- signals Analyze_Pragma to ignore all SPARK_Mode pragmas within
11160 -- the instance.
11161
11162 if SPARK_Mode /= On then
11163 Ignore_Pragma_SPARK_Mode := True;
11164 end if;
11165
11166 Current_Sem_Unit := Body_Info.Current_Sem_Unit;
11167 Create_Instantiation_Source
11168 (Inst_Node,
11169 Gen_Body_Id,
11170 False,
11171 S_Adjustment);
11172
11173 Act_Body :=
11174 Copy_Generic_Node
11175 (Original_Node (Gen_Body), Empty, Instantiating => True);
11176
11177 -- Create proper defining name for the body, to correspond to
11178 -- the one in the spec.
11179
11180 Set_Defining_Unit_Name (Specification (Act_Body),
11181 Make_Defining_Identifier
11182 (Sloc (Defining_Entity (Inst_Node)), Chars (Anon_Id)));
11183 Set_Corresponding_Spec (Act_Body, Anon_Id);
11184 Set_Has_Completion (Anon_Id);
11185 Check_Generic_Actuals (Pack_Id, False);
11186
11187 -- Generate a reference to link the visible subprogram instance to
11188 -- the generic body, which for navigation purposes is the only
11189 -- available source for the instance.
11190
11191 Generate_Reference
11192 (Related_Instance (Pack_Id),
11193 Gen_Body_Id, 'b', Set_Ref => False, Force => True);
11194
11195 -- If it is a child unit, make the parent instance (which is an
11196 -- instance of the parent of the generic) visible. The parent
11197 -- instance is the prefix of the name of the generic unit.
11198
11199 if Ekind (Scope (Gen_Unit)) = E_Generic_Package
11200 and then Nkind (Gen_Id) = N_Expanded_Name
11201 then
11202 Par_Ent := Entity (Prefix (Gen_Id));
11203 Par_Vis := Is_Immediately_Visible (Par_Ent);
11204 Install_Parent (Par_Ent, In_Body => True);
11205 Parent_Installed := True;
11206
11207 elsif Is_Child_Unit (Gen_Unit) then
11208 Par_Ent := Scope (Gen_Unit);
11209 Par_Vis := Is_Immediately_Visible (Par_Ent);
11210 Install_Parent (Par_Ent, In_Body => True);
11211 Parent_Installed := True;
11212 end if;
11213
11214 -- Subprogram body is placed in the body of wrapper package,
11215 -- whose spec contains the subprogram declaration as well as
11216 -- the renaming declarations for the generic parameters.
11217
11218 Pack_Body :=
11219 Make_Package_Body (Loc,
11220 Defining_Unit_Name => New_Copy (Pack_Id),
11221 Declarations => New_List (Act_Body));
11222
11223 Set_Corresponding_Spec (Pack_Body, Pack_Id);
11224
11225 -- If the instantiation is a library unit, then build resulting
11226 -- compilation unit nodes for the instance. The declaration of
11227 -- the enclosing package is the grandparent of the subprogram
11228 -- declaration. First replace the instantiation node as the unit
11229 -- of the corresponding compilation.
11230
11231 if Nkind (Parent (Inst_Node)) = N_Compilation_Unit then
11232 if Parent (Inst_Node) = Cunit (Main_Unit) then
11233 Set_Unit (Parent (Inst_Node), Inst_Node);
11234 Build_Instance_Compilation_Unit_Nodes
11235 (Inst_Node, Pack_Body, Parent (Parent (Act_Decl)));
11236 Analyze (Inst_Node);
11237 else
11238 Set_Parent (Pack_Body, Parent (Inst_Node));
11239 Analyze (Pack_Body);
11240 end if;
11241
11242 else
11243 Insert_Before (Inst_Node, Pack_Body);
11244 Mark_Rewrite_Insertion (Pack_Body);
11245 Analyze (Pack_Body);
11246
11247 if Expander_Active then
11248 Freeze_Subprogram_Body (Inst_Node, Gen_Body, Pack_Id);
11249 end if;
11250 end if;
11251
11252 Inherit_Context (Gen_Body, Inst_Node);
11253
11254 Restore_Private_Views (Pack_Id, False);
11255
11256 if Parent_Installed then
11257 Remove_Parent (In_Body => True);
11258
11259 -- Restore the previous visibility of the parent
11260
11261 Set_Is_Immediately_Visible (Par_Ent, Par_Vis);
11262 end if;
11263
11264 Restore_Env;
11265 Ignore_Pragma_SPARK_Mode := Saved_IPSM;
11266 Style_Check := Saved_Style_Check;
11267 Restore_Warnings (Saved_Warnings);
11268
11269 -- Body not found. Error was emitted already. If there were no previous
11270 -- errors, this may be an instance whose scope is a premature instance.
11271 -- In that case we must insure that the (legal) program does raise
11272 -- program error if executed. We generate a subprogram body for this
11273 -- purpose. See DEC ac30vso.
11274
11275 -- Should not reference proprietary DEC tests in comments ???
11276
11277 elsif Serious_Errors_Detected = 0
11278 and then Nkind (Parent (Inst_Node)) /= N_Compilation_Unit
11279 then
11280 if Body_Optional then
11281 return;
11282
11283 elsif Ekind (Anon_Id) = E_Procedure then
11284 Act_Body :=
11285 Make_Subprogram_Body (Loc,
11286 Specification =>
11287 Make_Procedure_Specification (Loc,
11288 Defining_Unit_Name =>
11289 Make_Defining_Identifier (Loc, Chars (Anon_Id)),
11290 Parameter_Specifications =>
11291 New_Copy_List
11292 (Parameter_Specifications (Parent (Anon_Id)))),
11293
11294 Declarations => Empty_List,
11295 Handled_Statement_Sequence =>
11296 Make_Handled_Sequence_Of_Statements (Loc,
11297 Statements =>
11298 New_List (
11299 Make_Raise_Program_Error (Loc,
11300 Reason =>
11301 PE_Access_Before_Elaboration))));
11302
11303 else
11304 Ret_Expr :=
11305 Make_Raise_Program_Error (Loc,
11306 Reason => PE_Access_Before_Elaboration);
11307
11308 Set_Etype (Ret_Expr, (Etype (Anon_Id)));
11309 Set_Analyzed (Ret_Expr);
11310
11311 Act_Body :=
11312 Make_Subprogram_Body (Loc,
11313 Specification =>
11314 Make_Function_Specification (Loc,
11315 Defining_Unit_Name =>
11316 Make_Defining_Identifier (Loc, Chars (Anon_Id)),
11317 Parameter_Specifications =>
11318 New_Copy_List
11319 (Parameter_Specifications (Parent (Anon_Id))),
11320 Result_Definition =>
11321 New_Occurrence_Of (Etype (Anon_Id), Loc)),
11322
11323 Declarations => Empty_List,
11324 Handled_Statement_Sequence =>
11325 Make_Handled_Sequence_Of_Statements (Loc,
11326 Statements =>
11327 New_List
11328 (Make_Simple_Return_Statement (Loc, Ret_Expr))));
11329 end if;
11330
11331 Pack_Body :=
11332 Make_Package_Body (Loc,
11333 Defining_Unit_Name => New_Copy (Pack_Id),
11334 Declarations => New_List (Act_Body));
11335
11336 Insert_After (Inst_Node, Pack_Body);
11337 Set_Corresponding_Spec (Pack_Body, Pack_Id);
11338 Analyze (Pack_Body);
11339 end if;
11340
11341 Expander_Mode_Restore;
11342 end Instantiate_Subprogram_Body;
11343
11344 ----------------------
11345 -- Instantiate_Type --
11346 ----------------------
11347
11348 function Instantiate_Type
11349 (Formal : Node_Id;
11350 Actual : Node_Id;
11351 Analyzed_Formal : Node_Id;
11352 Actual_Decls : List_Id) return List_Id
11353 is
11354 Gen_T : constant Entity_Id := Defining_Identifier (Formal);
11355 A_Gen_T : constant Entity_Id :=
11356 Defining_Identifier (Analyzed_Formal);
11357 Ancestor : Entity_Id := Empty;
11358 Def : constant Node_Id := Formal_Type_Definition (Formal);
11359 Act_T : Entity_Id;
11360 Decl_Node : Node_Id;
11361 Decl_Nodes : List_Id;
11362 Loc : Source_Ptr;
11363 Subt : Entity_Id;
11364
11365 procedure Diagnose_Predicated_Actual;
11366 -- There are a number of constructs in which a discrete type with
11367 -- predicates is illegal, e.g. as an index in an array type declaration.
11368 -- If a generic type is used is such a construct in a generic package
11369 -- declaration, it carries the flag No_Predicate_On_Actual. it is part
11370 -- of the generic contract that the actual cannot have predicates.
11371
11372 procedure Validate_Array_Type_Instance;
11373 procedure Validate_Access_Subprogram_Instance;
11374 procedure Validate_Access_Type_Instance;
11375 procedure Validate_Derived_Type_Instance;
11376 procedure Validate_Derived_Interface_Type_Instance;
11377 procedure Validate_Discriminated_Formal_Type;
11378 procedure Validate_Interface_Type_Instance;
11379 procedure Validate_Private_Type_Instance;
11380 procedure Validate_Incomplete_Type_Instance;
11381 -- These procedures perform validation tests for the named case.
11382 -- Validate_Discriminated_Formal_Type is shared by formal private
11383 -- types and Ada 2012 formal incomplete types.
11384
11385 function Subtypes_Match (Gen_T, Act_T : Entity_Id) return Boolean;
11386 -- Check that base types are the same and that the subtypes match
11387 -- statically. Used in several of the above.
11388
11389 ---------------------------------
11390 -- Diagnose_Predicated_Actual --
11391 ---------------------------------
11392
11393 procedure Diagnose_Predicated_Actual is
11394 begin
11395 if No_Predicate_On_Actual (A_Gen_T)
11396 and then Has_Predicates (Act_T)
11397 then
11398 Error_Msg_NE
11399 ("actual for& cannot be a type with predicate",
11400 Instantiation_Node, A_Gen_T);
11401
11402 elsif No_Dynamic_Predicate_On_Actual (A_Gen_T)
11403 and then Has_Predicates (Act_T)
11404 and then not Has_Static_Predicate_Aspect (Act_T)
11405 then
11406 Error_Msg_NE
11407 ("actual for& cannot be a type with a dynamic predicate",
11408 Instantiation_Node, A_Gen_T);
11409 end if;
11410 end Diagnose_Predicated_Actual;
11411
11412 --------------------
11413 -- Subtypes_Match --
11414 --------------------
11415
11416 function Subtypes_Match (Gen_T, Act_T : Entity_Id) return Boolean is
11417 T : constant Entity_Id := Get_Instance_Of (Gen_T);
11418
11419 begin
11420 -- Some detailed comments would be useful here ???
11421
11422 return ((Base_Type (T) = Act_T
11423 or else Base_Type (T) = Base_Type (Act_T))
11424 and then Subtypes_Statically_Match (T, Act_T))
11425
11426 or else (Is_Class_Wide_Type (Gen_T)
11427 and then Is_Class_Wide_Type (Act_T)
11428 and then Subtypes_Match
11429 (Get_Instance_Of (Root_Type (Gen_T)),
11430 Root_Type (Act_T)))
11431
11432 or else
11433 (Ekind_In (Gen_T, E_Anonymous_Access_Subprogram_Type,
11434 E_Anonymous_Access_Type)
11435 and then Ekind (Act_T) = Ekind (Gen_T)
11436 and then Subtypes_Statically_Match
11437 (Designated_Type (Gen_T), Designated_Type (Act_T)));
11438 end Subtypes_Match;
11439
11440 -----------------------------------------
11441 -- Validate_Access_Subprogram_Instance --
11442 -----------------------------------------
11443
11444 procedure Validate_Access_Subprogram_Instance is
11445 begin
11446 if not Is_Access_Type (Act_T)
11447 or else Ekind (Designated_Type (Act_T)) /= E_Subprogram_Type
11448 then
11449 Error_Msg_NE
11450 ("expect access type in instantiation of &", Actual, Gen_T);
11451 Abandon_Instantiation (Actual);
11452 end if;
11453
11454 -- According to AI05-288, actuals for access_to_subprograms must be
11455 -- subtype conformant with the generic formal. Previous to AI05-288
11456 -- only mode conformance was required.
11457
11458 -- This is a binding interpretation that applies to previous versions
11459 -- of the language, no need to maintain previous weaker checks.
11460
11461 Check_Subtype_Conformant
11462 (Designated_Type (Act_T),
11463 Designated_Type (A_Gen_T),
11464 Actual,
11465 Get_Inst => True);
11466
11467 if Ekind (Base_Type (Act_T)) = E_Access_Protected_Subprogram_Type then
11468 if Ekind (A_Gen_T) = E_Access_Subprogram_Type then
11469 Error_Msg_NE
11470 ("protected access type not allowed for formal &",
11471 Actual, Gen_T);
11472 end if;
11473
11474 elsif Ekind (A_Gen_T) = E_Access_Protected_Subprogram_Type then
11475 Error_Msg_NE
11476 ("expect protected access type for formal &",
11477 Actual, Gen_T);
11478 end if;
11479
11480 -- If the formal has a specified convention (which in most cases
11481 -- will be StdCall) verify that the actual has the same convention.
11482
11483 if Has_Convention_Pragma (A_Gen_T)
11484 and then Convention (A_Gen_T) /= Convention (Act_T)
11485 then
11486 Error_Msg_Name_1 := Get_Convention_Name (Convention (A_Gen_T));
11487 Error_Msg_NE
11488 ("actual for formal & must have convention %", Actual, Gen_T);
11489 end if;
11490 end Validate_Access_Subprogram_Instance;
11491
11492 -----------------------------------
11493 -- Validate_Access_Type_Instance --
11494 -----------------------------------
11495
11496 procedure Validate_Access_Type_Instance is
11497 Desig_Type : constant Entity_Id :=
11498 Find_Actual_Type (Designated_Type (A_Gen_T), A_Gen_T);
11499 Desig_Act : Entity_Id;
11500
11501 begin
11502 if not Is_Access_Type (Act_T) then
11503 Error_Msg_NE
11504 ("expect access type in instantiation of &", Actual, Gen_T);
11505 Abandon_Instantiation (Actual);
11506 end if;
11507
11508 if Is_Access_Constant (A_Gen_T) then
11509 if not Is_Access_Constant (Act_T) then
11510 Error_Msg_N
11511 ("actual type must be access-to-constant type", Actual);
11512 Abandon_Instantiation (Actual);
11513 end if;
11514 else
11515 if Is_Access_Constant (Act_T) then
11516 Error_Msg_N
11517 ("actual type must be access-to-variable type", Actual);
11518 Abandon_Instantiation (Actual);
11519
11520 elsif Ekind (A_Gen_T) = E_General_Access_Type
11521 and then Ekind (Base_Type (Act_T)) /= E_General_Access_Type
11522 then
11523 Error_Msg_N -- CODEFIX
11524 ("actual must be general access type!", Actual);
11525 Error_Msg_NE -- CODEFIX
11526 ("add ALL to }!", Actual, Act_T);
11527 Abandon_Instantiation (Actual);
11528 end if;
11529 end if;
11530
11531 -- The designated subtypes, that is to say the subtypes introduced
11532 -- by an access type declaration (and not by a subtype declaration)
11533 -- must match.
11534
11535 Desig_Act := Designated_Type (Base_Type (Act_T));
11536
11537 -- The designated type may have been introduced through a limited_
11538 -- with clause, in which case retrieve the non-limited view. This
11539 -- applies to incomplete types as well as to class-wide types.
11540
11541 if From_Limited_With (Desig_Act) then
11542 Desig_Act := Available_View (Desig_Act);
11543 end if;
11544
11545 if not Subtypes_Match (Desig_Type, Desig_Act) then
11546 Error_Msg_NE
11547 ("designated type of actual does not match that of formal &",
11548 Actual, Gen_T);
11549
11550 if not Predicates_Match (Desig_Type, Desig_Act) then
11551 Error_Msg_N ("\predicates do not match", Actual);
11552 end if;
11553
11554 Abandon_Instantiation (Actual);
11555
11556 elsif Is_Access_Type (Designated_Type (Act_T))
11557 and then Is_Constrained (Designated_Type (Designated_Type (Act_T)))
11558 /=
11559 Is_Constrained (Designated_Type (Desig_Type))
11560 then
11561 Error_Msg_NE
11562 ("designated type of actual does not match that of formal &",
11563 Actual, Gen_T);
11564
11565 if not Predicates_Match (Desig_Type, Desig_Act) then
11566 Error_Msg_N ("\predicates do not match", Actual);
11567 end if;
11568
11569 Abandon_Instantiation (Actual);
11570 end if;
11571
11572 -- Ada 2005: null-exclusion indicators of the two types must agree
11573
11574 if Can_Never_Be_Null (A_Gen_T) /= Can_Never_Be_Null (Act_T) then
11575 Error_Msg_NE
11576 ("non null exclusion of actual and formal & do not match",
11577 Actual, Gen_T);
11578 end if;
11579 end Validate_Access_Type_Instance;
11580
11581 ----------------------------------
11582 -- Validate_Array_Type_Instance --
11583 ----------------------------------
11584
11585 procedure Validate_Array_Type_Instance is
11586 I1 : Node_Id;
11587 I2 : Node_Id;
11588 T2 : Entity_Id;
11589
11590 function Formal_Dimensions return Int;
11591 -- Count number of dimensions in array type formal
11592
11593 -----------------------
11594 -- Formal_Dimensions --
11595 -----------------------
11596
11597 function Formal_Dimensions return Int is
11598 Num : Int := 0;
11599 Index : Node_Id;
11600
11601 begin
11602 if Nkind (Def) = N_Constrained_Array_Definition then
11603 Index := First (Discrete_Subtype_Definitions (Def));
11604 else
11605 Index := First (Subtype_Marks (Def));
11606 end if;
11607
11608 while Present (Index) loop
11609 Num := Num + 1;
11610 Next_Index (Index);
11611 end loop;
11612
11613 return Num;
11614 end Formal_Dimensions;
11615
11616 -- Start of processing for Validate_Array_Type_Instance
11617
11618 begin
11619 if not Is_Array_Type (Act_T) then
11620 Error_Msg_NE
11621 ("expect array type in instantiation of &", Actual, Gen_T);
11622 Abandon_Instantiation (Actual);
11623
11624 elsif Nkind (Def) = N_Constrained_Array_Definition then
11625 if not (Is_Constrained (Act_T)) then
11626 Error_Msg_NE
11627 ("expect constrained array in instantiation of &",
11628 Actual, Gen_T);
11629 Abandon_Instantiation (Actual);
11630 end if;
11631
11632 else
11633 if Is_Constrained (Act_T) then
11634 Error_Msg_NE
11635 ("expect unconstrained array in instantiation of &",
11636 Actual, Gen_T);
11637 Abandon_Instantiation (Actual);
11638 end if;
11639 end if;
11640
11641 if Formal_Dimensions /= Number_Dimensions (Act_T) then
11642 Error_Msg_NE
11643 ("dimensions of actual do not match formal &", Actual, Gen_T);
11644 Abandon_Instantiation (Actual);
11645 end if;
11646
11647 I1 := First_Index (A_Gen_T);
11648 I2 := First_Index (Act_T);
11649 for J in 1 .. Formal_Dimensions loop
11650
11651 -- If the indexes of the actual were given by a subtype_mark,
11652 -- the index was transformed into a range attribute. Retrieve
11653 -- the original type mark for checking.
11654
11655 if Is_Entity_Name (Original_Node (I2)) then
11656 T2 := Entity (Original_Node (I2));
11657 else
11658 T2 := Etype (I2);
11659 end if;
11660
11661 if not Subtypes_Match
11662 (Find_Actual_Type (Etype (I1), A_Gen_T), T2)
11663 then
11664 Error_Msg_NE
11665 ("index types of actual do not match those of formal &",
11666 Actual, Gen_T);
11667 Abandon_Instantiation (Actual);
11668 end if;
11669
11670 Next_Index (I1);
11671 Next_Index (I2);
11672 end loop;
11673
11674 -- Check matching subtypes. Note that there are complex visibility
11675 -- issues when the generic is a child unit and some aspect of the
11676 -- generic type is declared in a parent unit of the generic. We do
11677 -- the test to handle this special case only after a direct check
11678 -- for static matching has failed. The case where both the component
11679 -- type and the array type are separate formals, and the component
11680 -- type is a private view may also require special checking in
11681 -- Subtypes_Match.
11682
11683 if Subtypes_Match
11684 (Component_Type (A_Gen_T), Component_Type (Act_T))
11685 or else
11686 Subtypes_Match
11687 (Find_Actual_Type (Component_Type (A_Gen_T), A_Gen_T),
11688 Component_Type (Act_T))
11689 then
11690 null;
11691 else
11692 Error_Msg_NE
11693 ("component subtype of actual does not match that of formal &",
11694 Actual, Gen_T);
11695 Abandon_Instantiation (Actual);
11696 end if;
11697
11698 if Has_Aliased_Components (A_Gen_T)
11699 and then not Has_Aliased_Components (Act_T)
11700 then
11701 Error_Msg_NE
11702 ("actual must have aliased components to match formal type &",
11703 Actual, Gen_T);
11704 end if;
11705 end Validate_Array_Type_Instance;
11706
11707 -----------------------------------------------
11708 -- Validate_Derived_Interface_Type_Instance --
11709 -----------------------------------------------
11710
11711 procedure Validate_Derived_Interface_Type_Instance is
11712 Par : constant Entity_Id := Entity (Subtype_Indication (Def));
11713 Elmt : Elmt_Id;
11714
11715 begin
11716 -- First apply interface instance checks
11717
11718 Validate_Interface_Type_Instance;
11719
11720 -- Verify that immediate parent interface is an ancestor of
11721 -- the actual.
11722
11723 if Present (Par)
11724 and then not Interface_Present_In_Ancestor (Act_T, Par)
11725 then
11726 Error_Msg_NE
11727 ("interface actual must include progenitor&", Actual, Par);
11728 end if;
11729
11730 -- Now verify that the actual includes all other ancestors of
11731 -- the formal.
11732
11733 Elmt := First_Elmt (Interfaces (A_Gen_T));
11734 while Present (Elmt) loop
11735 if not Interface_Present_In_Ancestor
11736 (Act_T, Get_Instance_Of (Node (Elmt)))
11737 then
11738 Error_Msg_NE
11739 ("interface actual must include progenitor&",
11740 Actual, Node (Elmt));
11741 end if;
11742
11743 Next_Elmt (Elmt);
11744 end loop;
11745 end Validate_Derived_Interface_Type_Instance;
11746
11747 ------------------------------------
11748 -- Validate_Derived_Type_Instance --
11749 ------------------------------------
11750
11751 procedure Validate_Derived_Type_Instance is
11752 Actual_Discr : Entity_Id;
11753 Ancestor_Discr : Entity_Id;
11754
11755 begin
11756 -- If the parent type in the generic declaration is itself a previous
11757 -- formal type, then it is local to the generic and absent from the
11758 -- analyzed generic definition. In that case the ancestor is the
11759 -- instance of the formal (which must have been instantiated
11760 -- previously), unless the ancestor is itself a formal derived type.
11761 -- In this latter case (which is the subject of Corrigendum 8652/0038
11762 -- (AI-202) the ancestor of the formals is the ancestor of its
11763 -- parent. Otherwise, the analyzed generic carries the parent type.
11764 -- If the parent type is defined in a previous formal package, then
11765 -- the scope of that formal package is that of the generic type
11766 -- itself, and it has already been mapped into the corresponding type
11767 -- in the actual package.
11768
11769 -- Common case: parent type defined outside of the generic
11770
11771 if Is_Entity_Name (Subtype_Mark (Def))
11772 and then Present (Entity (Subtype_Mark (Def)))
11773 then
11774 Ancestor := Get_Instance_Of (Entity (Subtype_Mark (Def)));
11775
11776 -- Check whether parent is defined in a previous formal package
11777
11778 elsif
11779 Scope (Scope (Base_Type (Etype (A_Gen_T)))) = Scope (A_Gen_T)
11780 then
11781 Ancestor :=
11782 Get_Instance_Of (Base_Type (Etype (A_Gen_T)));
11783
11784 -- The type may be a local derivation, or a type extension of a
11785 -- previous formal, or of a formal of a parent package.
11786
11787 elsif Is_Derived_Type (Get_Instance_Of (A_Gen_T))
11788 or else
11789 Ekind (Get_Instance_Of (A_Gen_T)) = E_Record_Type_With_Private
11790 then
11791 -- Check whether the parent is another derived formal type in the
11792 -- same generic unit.
11793
11794 if Etype (A_Gen_T) /= A_Gen_T
11795 and then Is_Generic_Type (Etype (A_Gen_T))
11796 and then Scope (Etype (A_Gen_T)) = Scope (A_Gen_T)
11797 and then Etype (Etype (A_Gen_T)) /= Etype (A_Gen_T)
11798 then
11799 -- Locate ancestor of parent from the subtype declaration
11800 -- created for the actual.
11801
11802 declare
11803 Decl : Node_Id;
11804
11805 begin
11806 Decl := First (Actual_Decls);
11807 while Present (Decl) loop
11808 if Nkind (Decl) = N_Subtype_Declaration
11809 and then Chars (Defining_Identifier (Decl)) =
11810 Chars (Etype (A_Gen_T))
11811 then
11812 Ancestor := Generic_Parent_Type (Decl);
11813 exit;
11814 else
11815 Next (Decl);
11816 end if;
11817 end loop;
11818 end;
11819
11820 pragma Assert (Present (Ancestor));
11821
11822 -- The ancestor itself may be a previous formal that has been
11823 -- instantiated.
11824
11825 Ancestor := Get_Instance_Of (Ancestor);
11826
11827 else
11828 Ancestor :=
11829 Get_Instance_Of (Base_Type (Get_Instance_Of (A_Gen_T)));
11830 end if;
11831
11832 -- Check whether parent is a previous formal of the current generic
11833
11834 elsif Is_Derived_Type (A_Gen_T)
11835 and then Is_Generic_Type (Etype (A_Gen_T))
11836 and then Scope (A_Gen_T) = Scope (Etype (A_Gen_T))
11837 then
11838 Ancestor := Get_Instance_Of (First_Subtype (Etype (A_Gen_T)));
11839
11840 -- An unusual case: the actual is a type declared in a parent unit,
11841 -- but is not a formal type so there is no instance_of for it.
11842 -- Retrieve it by analyzing the record extension.
11843
11844 elsif Is_Child_Unit (Scope (A_Gen_T))
11845 and then In_Open_Scopes (Scope (Act_T))
11846 and then Is_Generic_Instance (Scope (Act_T))
11847 then
11848 Analyze (Subtype_Mark (Def));
11849 Ancestor := Entity (Subtype_Mark (Def));
11850
11851 else
11852 Ancestor := Get_Instance_Of (Etype (Base_Type (A_Gen_T)));
11853 end if;
11854
11855 -- If the formal derived type has pragma Preelaborable_Initialization
11856 -- then the actual type must have preelaborable initialization.
11857
11858 if Known_To_Have_Preelab_Init (A_Gen_T)
11859 and then not Has_Preelaborable_Initialization (Act_T)
11860 then
11861 Error_Msg_NE
11862 ("actual for & must have preelaborable initialization",
11863 Actual, Gen_T);
11864 end if;
11865
11866 -- Ada 2005 (AI-251)
11867
11868 if Ada_Version >= Ada_2005 and then Is_Interface (Ancestor) then
11869 if not Interface_Present_In_Ancestor (Act_T, Ancestor) then
11870 Error_Msg_NE
11871 ("(Ada 2005) expected type implementing & in instantiation",
11872 Actual, Ancestor);
11873 end if;
11874
11875 -- Finally verify that the (instance of) the ancestor is an ancestor
11876 -- of the actual.
11877
11878 elsif not Is_Ancestor (Base_Type (Ancestor), Act_T) then
11879 Error_Msg_NE
11880 ("expect type derived from & in instantiation",
11881 Actual, First_Subtype (Ancestor));
11882 Abandon_Instantiation (Actual);
11883 end if;
11884
11885 -- Ada 2005 (AI-443): Synchronized formal derived type checks. Note
11886 -- that the formal type declaration has been rewritten as a private
11887 -- extension.
11888
11889 if Ada_Version >= Ada_2005
11890 and then Nkind (Parent (A_Gen_T)) = N_Private_Extension_Declaration
11891 and then Synchronized_Present (Parent (A_Gen_T))
11892 then
11893 -- The actual must be a synchronized tagged type
11894
11895 if not Is_Tagged_Type (Act_T) then
11896 Error_Msg_N
11897 ("actual of synchronized type must be tagged", Actual);
11898 Abandon_Instantiation (Actual);
11899
11900 elsif Nkind (Parent (Act_T)) = N_Full_Type_Declaration
11901 and then Nkind (Type_Definition (Parent (Act_T))) =
11902 N_Derived_Type_Definition
11903 and then not Synchronized_Present
11904 (Type_Definition (Parent (Act_T)))
11905 then
11906 Error_Msg_N
11907 ("actual of synchronized type must be synchronized", Actual);
11908 Abandon_Instantiation (Actual);
11909 end if;
11910 end if;
11911
11912 -- Perform atomic/volatile checks (RM C.6(12)). Note that AI05-0218-1
11913 -- removes the second instance of the phrase "or allow pass by copy".
11914
11915 if Is_Atomic (Act_T) and then not Is_Atomic (Ancestor) then
11916 Error_Msg_N
11917 ("cannot have atomic actual type for non-atomic formal type",
11918 Actual);
11919
11920 elsif Is_Volatile (Act_T) and then not Is_Volatile (Ancestor) then
11921 Error_Msg_N
11922 ("cannot have volatile actual type for non-volatile formal type",
11923 Actual);
11924 end if;
11925
11926 -- It should not be necessary to check for unknown discriminants on
11927 -- Formal, but for some reason Has_Unknown_Discriminants is false for
11928 -- A_Gen_T, so Is_Definite_Subtype incorrectly returns True. This
11929 -- needs fixing. ???
11930
11931 if Is_Definite_Subtype (A_Gen_T)
11932 and then not Unknown_Discriminants_Present (Formal)
11933 and then not Is_Definite_Subtype (Act_T)
11934 then
11935 Error_Msg_N ("actual subtype must be constrained", Actual);
11936 Abandon_Instantiation (Actual);
11937 end if;
11938
11939 if not Unknown_Discriminants_Present (Formal) then
11940 if Is_Constrained (Ancestor) then
11941 if not Is_Constrained (Act_T) then
11942 Error_Msg_N ("actual subtype must be constrained", Actual);
11943 Abandon_Instantiation (Actual);
11944 end if;
11945
11946 -- Ancestor is unconstrained, Check if generic formal and actual
11947 -- agree on constrainedness. The check only applies to array types
11948 -- and discriminated types.
11949
11950 elsif Is_Constrained (Act_T) then
11951 if Ekind (Ancestor) = E_Access_Type
11952 or else (not Is_Constrained (A_Gen_T)
11953 and then Is_Composite_Type (A_Gen_T))
11954 then
11955 Error_Msg_N ("actual subtype must be unconstrained", Actual);
11956 Abandon_Instantiation (Actual);
11957 end if;
11958
11959 -- A class-wide type is only allowed if the formal has unknown
11960 -- discriminants.
11961
11962 elsif Is_Class_Wide_Type (Act_T)
11963 and then not Has_Unknown_Discriminants (Ancestor)
11964 then
11965 Error_Msg_NE
11966 ("actual for & cannot be a class-wide type", Actual, Gen_T);
11967 Abandon_Instantiation (Actual);
11968
11969 -- Otherwise, the formal and actual must have the same number
11970 -- of discriminants and each discriminant of the actual must
11971 -- correspond to a discriminant of the formal.
11972
11973 elsif Has_Discriminants (Act_T)
11974 and then not Has_Unknown_Discriminants (Act_T)
11975 and then Has_Discriminants (Ancestor)
11976 then
11977 Actual_Discr := First_Discriminant (Act_T);
11978 Ancestor_Discr := First_Discriminant (Ancestor);
11979 while Present (Actual_Discr)
11980 and then Present (Ancestor_Discr)
11981 loop
11982 if Base_Type (Act_T) /= Base_Type (Ancestor) and then
11983 No (Corresponding_Discriminant (Actual_Discr))
11984 then
11985 Error_Msg_NE
11986 ("discriminant & does not correspond "
11987 & "to ancestor discriminant", Actual, Actual_Discr);
11988 Abandon_Instantiation (Actual);
11989 end if;
11990
11991 Next_Discriminant (Actual_Discr);
11992 Next_Discriminant (Ancestor_Discr);
11993 end loop;
11994
11995 if Present (Actual_Discr) or else Present (Ancestor_Discr) then
11996 Error_Msg_NE
11997 ("actual for & must have same number of discriminants",
11998 Actual, Gen_T);
11999 Abandon_Instantiation (Actual);
12000 end if;
12001
12002 -- This case should be caught by the earlier check for
12003 -- constrainedness, but the check here is added for completeness.
12004
12005 elsif Has_Discriminants (Act_T)
12006 and then not Has_Unknown_Discriminants (Act_T)
12007 then
12008 Error_Msg_NE
12009 ("actual for & must not have discriminants", Actual, Gen_T);
12010 Abandon_Instantiation (Actual);
12011
12012 elsif Has_Discriminants (Ancestor) then
12013 Error_Msg_NE
12014 ("actual for & must have known discriminants", Actual, Gen_T);
12015 Abandon_Instantiation (Actual);
12016 end if;
12017
12018 if not Subtypes_Statically_Compatible
12019 (Act_T, Ancestor, Formal_Derived_Matching => True)
12020 then
12021 Error_Msg_N
12022 ("constraint on actual is incompatible with formal", Actual);
12023 Abandon_Instantiation (Actual);
12024 end if;
12025 end if;
12026
12027 -- If the formal and actual types are abstract, check that there
12028 -- are no abstract primitives of the actual type that correspond to
12029 -- nonabstract primitives of the formal type (second sentence of
12030 -- RM95 3.9.3(9)).
12031
12032 if Is_Abstract_Type (A_Gen_T) and then Is_Abstract_Type (Act_T) then
12033 Check_Abstract_Primitives : declare
12034 Gen_Prims : constant Elist_Id :=
12035 Primitive_Operations (A_Gen_T);
12036 Gen_Elmt : Elmt_Id;
12037 Gen_Subp : Entity_Id;
12038 Anc_Subp : Entity_Id;
12039 Anc_Formal : Entity_Id;
12040 Anc_F_Type : Entity_Id;
12041
12042 Act_Prims : constant Elist_Id := Primitive_Operations (Act_T);
12043 Act_Elmt : Elmt_Id;
12044 Act_Subp : Entity_Id;
12045 Act_Formal : Entity_Id;
12046 Act_F_Type : Entity_Id;
12047
12048 Subprograms_Correspond : Boolean;
12049
12050 function Is_Tagged_Ancestor (T1, T2 : Entity_Id) return Boolean;
12051 -- Returns true if T2 is derived directly or indirectly from
12052 -- T1, including derivations from interfaces. T1 and T2 are
12053 -- required to be specific tagged base types.
12054
12055 ------------------------
12056 -- Is_Tagged_Ancestor --
12057 ------------------------
12058
12059 function Is_Tagged_Ancestor (T1, T2 : Entity_Id) return Boolean
12060 is
12061 Intfc_Elmt : Elmt_Id;
12062
12063 begin
12064 -- The predicate is satisfied if the types are the same
12065
12066 if T1 = T2 then
12067 return True;
12068
12069 -- If we've reached the top of the derivation chain then
12070 -- we know that T1 is not an ancestor of T2.
12071
12072 elsif Etype (T2) = T2 then
12073 return False;
12074
12075 -- Proceed to check T2's immediate parent
12076
12077 elsif Is_Ancestor (T1, Base_Type (Etype (T2))) then
12078 return True;
12079
12080 -- Finally, check to see if T1 is an ancestor of any of T2's
12081 -- progenitors.
12082
12083 else
12084 Intfc_Elmt := First_Elmt (Interfaces (T2));
12085 while Present (Intfc_Elmt) loop
12086 if Is_Ancestor (T1, Node (Intfc_Elmt)) then
12087 return True;
12088 end if;
12089
12090 Next_Elmt (Intfc_Elmt);
12091 end loop;
12092 end if;
12093
12094 return False;
12095 end Is_Tagged_Ancestor;
12096
12097 -- Start of processing for Check_Abstract_Primitives
12098
12099 begin
12100 -- Loop over all of the formal derived type's primitives
12101
12102 Gen_Elmt := First_Elmt (Gen_Prims);
12103 while Present (Gen_Elmt) loop
12104 Gen_Subp := Node (Gen_Elmt);
12105
12106 -- If the primitive of the formal is not abstract, then
12107 -- determine whether there is a corresponding primitive of
12108 -- the actual type that's abstract.
12109
12110 if not Is_Abstract_Subprogram (Gen_Subp) then
12111 Act_Elmt := First_Elmt (Act_Prims);
12112 while Present (Act_Elmt) loop
12113 Act_Subp := Node (Act_Elmt);
12114
12115 -- If we find an abstract primitive of the actual,
12116 -- then we need to test whether it corresponds to the
12117 -- subprogram from which the generic formal primitive
12118 -- is inherited.
12119
12120 if Is_Abstract_Subprogram (Act_Subp) then
12121 Anc_Subp := Alias (Gen_Subp);
12122
12123 -- Test whether we have a corresponding primitive
12124 -- by comparing names, kinds, formal types, and
12125 -- result types.
12126
12127 if Chars (Anc_Subp) = Chars (Act_Subp)
12128 and then Ekind (Anc_Subp) = Ekind (Act_Subp)
12129 then
12130 Anc_Formal := First_Formal (Anc_Subp);
12131 Act_Formal := First_Formal (Act_Subp);
12132 while Present (Anc_Formal)
12133 and then Present (Act_Formal)
12134 loop
12135 Anc_F_Type := Etype (Anc_Formal);
12136 Act_F_Type := Etype (Act_Formal);
12137
12138 if Ekind (Anc_F_Type) =
12139 E_Anonymous_Access_Type
12140 then
12141 Anc_F_Type := Designated_Type (Anc_F_Type);
12142
12143 if Ekind (Act_F_Type) =
12144 E_Anonymous_Access_Type
12145 then
12146 Act_F_Type :=
12147 Designated_Type (Act_F_Type);
12148 else
12149 exit;
12150 end if;
12151
12152 elsif
12153 Ekind (Act_F_Type) = E_Anonymous_Access_Type
12154 then
12155 exit;
12156 end if;
12157
12158 Anc_F_Type := Base_Type (Anc_F_Type);
12159 Act_F_Type := Base_Type (Act_F_Type);
12160
12161 -- If the formal is controlling, then the
12162 -- the type of the actual primitive's formal
12163 -- must be derived directly or indirectly
12164 -- from the type of the ancestor primitive's
12165 -- formal.
12166
12167 if Is_Controlling_Formal (Anc_Formal) then
12168 if not Is_Tagged_Ancestor
12169 (Anc_F_Type, Act_F_Type)
12170 then
12171 exit;
12172 end if;
12173
12174 -- Otherwise the types of the formals must
12175 -- be the same.
12176
12177 elsif Anc_F_Type /= Act_F_Type then
12178 exit;
12179 end if;
12180
12181 Next_Entity (Anc_Formal);
12182 Next_Entity (Act_Formal);
12183 end loop;
12184
12185 -- If we traversed through all of the formals
12186 -- then so far the subprograms correspond, so
12187 -- now check that any result types correspond.
12188
12189 if No (Anc_Formal) and then No (Act_Formal) then
12190 Subprograms_Correspond := True;
12191
12192 if Ekind (Act_Subp) = E_Function then
12193 Anc_F_Type := Etype (Anc_Subp);
12194 Act_F_Type := Etype (Act_Subp);
12195
12196 if Ekind (Anc_F_Type) =
12197 E_Anonymous_Access_Type
12198 then
12199 Anc_F_Type :=
12200 Designated_Type (Anc_F_Type);
12201
12202 if Ekind (Act_F_Type) =
12203 E_Anonymous_Access_Type
12204 then
12205 Act_F_Type :=
12206 Designated_Type (Act_F_Type);
12207 else
12208 Subprograms_Correspond := False;
12209 end if;
12210
12211 elsif
12212 Ekind (Act_F_Type)
12213 = E_Anonymous_Access_Type
12214 then
12215 Subprograms_Correspond := False;
12216 end if;
12217
12218 Anc_F_Type := Base_Type (Anc_F_Type);
12219 Act_F_Type := Base_Type (Act_F_Type);
12220
12221 -- Now either the result types must be
12222 -- the same or, if the result type is
12223 -- controlling, the result type of the
12224 -- actual primitive must descend from the
12225 -- result type of the ancestor primitive.
12226
12227 if Subprograms_Correspond
12228 and then Anc_F_Type /= Act_F_Type
12229 and then
12230 Has_Controlling_Result (Anc_Subp)
12231 and then not Is_Tagged_Ancestor
12232 (Anc_F_Type, Act_F_Type)
12233 then
12234 Subprograms_Correspond := False;
12235 end if;
12236 end if;
12237
12238 -- Found a matching subprogram belonging to
12239 -- formal ancestor type, so actual subprogram
12240 -- corresponds and this violates 3.9.3(9).
12241
12242 if Subprograms_Correspond then
12243 Error_Msg_NE
12244 ("abstract subprogram & overrides "
12245 & "nonabstract subprogram of ancestor",
12246 Actual, Act_Subp);
12247 end if;
12248 end if;
12249 end if;
12250 end if;
12251
12252 Next_Elmt (Act_Elmt);
12253 end loop;
12254 end if;
12255
12256 Next_Elmt (Gen_Elmt);
12257 end loop;
12258 end Check_Abstract_Primitives;
12259 end if;
12260
12261 -- Verify that limitedness matches. If parent is a limited
12262 -- interface then the generic formal is not unless declared
12263 -- explicitly so. If not declared limited, the actual cannot be
12264 -- limited (see AI05-0087).
12265
12266 -- Even though this AI is a binding interpretation, we enable the
12267 -- check only in Ada 2012 mode, because this improper construct
12268 -- shows up in user code and in existing B-tests.
12269
12270 if Is_Limited_Type (Act_T)
12271 and then not Is_Limited_Type (A_Gen_T)
12272 and then Ada_Version >= Ada_2012
12273 then
12274 if In_Instance then
12275 null;
12276 else
12277 Error_Msg_NE
12278 ("actual for non-limited & cannot be a limited type",
12279 Actual, Gen_T);
12280 Explain_Limited_Type (Act_T, Actual);
12281 Abandon_Instantiation (Actual);
12282 end if;
12283 end if;
12284 end Validate_Derived_Type_Instance;
12285
12286 ----------------------------------------
12287 -- Validate_Discriminated_Formal_Type --
12288 ----------------------------------------
12289
12290 procedure Validate_Discriminated_Formal_Type is
12291 Formal_Discr : Entity_Id;
12292 Actual_Discr : Entity_Id;
12293 Formal_Subt : Entity_Id;
12294
12295 begin
12296 if Has_Discriminants (A_Gen_T) then
12297 if not Has_Discriminants (Act_T) then
12298 Error_Msg_NE
12299 ("actual for & must have discriminants", Actual, Gen_T);
12300 Abandon_Instantiation (Actual);
12301
12302 elsif Is_Constrained (Act_T) then
12303 Error_Msg_NE
12304 ("actual for & must be unconstrained", Actual, Gen_T);
12305 Abandon_Instantiation (Actual);
12306
12307 else
12308 Formal_Discr := First_Discriminant (A_Gen_T);
12309 Actual_Discr := First_Discriminant (Act_T);
12310 while Formal_Discr /= Empty loop
12311 if Actual_Discr = Empty then
12312 Error_Msg_NE
12313 ("discriminants on actual do not match formal",
12314 Actual, Gen_T);
12315 Abandon_Instantiation (Actual);
12316 end if;
12317
12318 Formal_Subt := Get_Instance_Of (Etype (Formal_Discr));
12319
12320 -- Access discriminants match if designated types do
12321
12322 if Ekind (Base_Type (Formal_Subt)) = E_Anonymous_Access_Type
12323 and then (Ekind (Base_Type (Etype (Actual_Discr)))) =
12324 E_Anonymous_Access_Type
12325 and then
12326 Get_Instance_Of
12327 (Designated_Type (Base_Type (Formal_Subt))) =
12328 Designated_Type (Base_Type (Etype (Actual_Discr)))
12329 then
12330 null;
12331
12332 elsif Base_Type (Formal_Subt) /=
12333 Base_Type (Etype (Actual_Discr))
12334 then
12335 Error_Msg_NE
12336 ("types of actual discriminants must match formal",
12337 Actual, Gen_T);
12338 Abandon_Instantiation (Actual);
12339
12340 elsif not Subtypes_Statically_Match
12341 (Formal_Subt, Etype (Actual_Discr))
12342 and then Ada_Version >= Ada_95
12343 then
12344 Error_Msg_NE
12345 ("subtypes of actual discriminants must match formal",
12346 Actual, Gen_T);
12347 Abandon_Instantiation (Actual);
12348 end if;
12349
12350 Next_Discriminant (Formal_Discr);
12351 Next_Discriminant (Actual_Discr);
12352 end loop;
12353
12354 if Actual_Discr /= Empty then
12355 Error_Msg_NE
12356 ("discriminants on actual do not match formal",
12357 Actual, Gen_T);
12358 Abandon_Instantiation (Actual);
12359 end if;
12360 end if;
12361 end if;
12362 end Validate_Discriminated_Formal_Type;
12363
12364 ---------------------------------------
12365 -- Validate_Incomplete_Type_Instance --
12366 ---------------------------------------
12367
12368 procedure Validate_Incomplete_Type_Instance is
12369 begin
12370 if not Is_Tagged_Type (Act_T)
12371 and then Is_Tagged_Type (A_Gen_T)
12372 then
12373 Error_Msg_NE
12374 ("actual for & must be a tagged type", Actual, Gen_T);
12375 end if;
12376
12377 Validate_Discriminated_Formal_Type;
12378 end Validate_Incomplete_Type_Instance;
12379
12380 --------------------------------------
12381 -- Validate_Interface_Type_Instance --
12382 --------------------------------------
12383
12384 procedure Validate_Interface_Type_Instance is
12385 begin
12386 if not Is_Interface (Act_T) then
12387 Error_Msg_NE
12388 ("actual for formal interface type must be an interface",
12389 Actual, Gen_T);
12390
12391 elsif Is_Limited_Type (Act_T) /= Is_Limited_Type (A_Gen_T)
12392 or else Is_Task_Interface (A_Gen_T) /= Is_Task_Interface (Act_T)
12393 or else Is_Protected_Interface (A_Gen_T) /=
12394 Is_Protected_Interface (Act_T)
12395 or else Is_Synchronized_Interface (A_Gen_T) /=
12396 Is_Synchronized_Interface (Act_T)
12397 then
12398 Error_Msg_NE
12399 ("actual for interface& does not match (RM 12.5.5(4))",
12400 Actual, Gen_T);
12401 end if;
12402 end Validate_Interface_Type_Instance;
12403
12404 ------------------------------------
12405 -- Validate_Private_Type_Instance --
12406 ------------------------------------
12407
12408 procedure Validate_Private_Type_Instance is
12409 begin
12410 if Is_Limited_Type (Act_T)
12411 and then not Is_Limited_Type (A_Gen_T)
12412 then
12413 if In_Instance then
12414 null;
12415 else
12416 Error_Msg_NE
12417 ("actual for non-limited & cannot be a limited type", Actual,
12418 Gen_T);
12419 Explain_Limited_Type (Act_T, Actual);
12420 Abandon_Instantiation (Actual);
12421 end if;
12422
12423 elsif Known_To_Have_Preelab_Init (A_Gen_T)
12424 and then not Has_Preelaborable_Initialization (Act_T)
12425 then
12426 Error_Msg_NE
12427 ("actual for & must have preelaborable initialization", Actual,
12428 Gen_T);
12429
12430 elsif not Is_Definite_Subtype (Act_T)
12431 and then Is_Definite_Subtype (A_Gen_T)
12432 and then Ada_Version >= Ada_95
12433 then
12434 Error_Msg_NE
12435 ("actual for & must be a definite subtype", Actual, Gen_T);
12436
12437 elsif not Is_Tagged_Type (Act_T)
12438 and then Is_Tagged_Type (A_Gen_T)
12439 then
12440 Error_Msg_NE
12441 ("actual for & must be a tagged type", Actual, Gen_T);
12442 end if;
12443
12444 Validate_Discriminated_Formal_Type;
12445 Ancestor := Gen_T;
12446 end Validate_Private_Type_Instance;
12447
12448 -- Start of processing for Instantiate_Type
12449
12450 begin
12451 if Get_Instance_Of (A_Gen_T) /= A_Gen_T then
12452 Error_Msg_N ("duplicate instantiation of generic type", Actual);
12453 return New_List (Error);
12454
12455 elsif not Is_Entity_Name (Actual)
12456 or else not Is_Type (Entity (Actual))
12457 then
12458 Error_Msg_NE
12459 ("expect valid subtype mark to instantiate &", Actual, Gen_T);
12460 Abandon_Instantiation (Actual);
12461
12462 else
12463 Act_T := Entity (Actual);
12464
12465 -- Ada 2005 (AI-216): An Unchecked_Union subtype shall only be passed
12466 -- as a generic actual parameter if the corresponding formal type
12467 -- does not have a known_discriminant_part, or is a formal derived
12468 -- type that is an Unchecked_Union type.
12469
12470 if Is_Unchecked_Union (Base_Type (Act_T)) then
12471 if not Has_Discriminants (A_Gen_T)
12472 or else (Is_Derived_Type (A_Gen_T)
12473 and then Is_Unchecked_Union (A_Gen_T))
12474 then
12475 null;
12476 else
12477 Error_Msg_N ("unchecked union cannot be the actual for a "
12478 & "discriminated formal type", Act_T);
12479
12480 end if;
12481 end if;
12482
12483 -- Deal with fixed/floating restrictions
12484
12485 if Is_Floating_Point_Type (Act_T) then
12486 Check_Restriction (No_Floating_Point, Actual);
12487 elsif Is_Fixed_Point_Type (Act_T) then
12488 Check_Restriction (No_Fixed_Point, Actual);
12489 end if;
12490
12491 -- Deal with error of using incomplete type as generic actual.
12492 -- This includes limited views of a type, even if the non-limited
12493 -- view may be available.
12494
12495 if Ekind (Act_T) = E_Incomplete_Type
12496 or else (Is_Class_Wide_Type (Act_T)
12497 and then Ekind (Root_Type (Act_T)) = E_Incomplete_Type)
12498 then
12499 -- If the formal is an incomplete type, the actual can be
12500 -- incomplete as well.
12501
12502 if Ekind (A_Gen_T) = E_Incomplete_Type then
12503 null;
12504
12505 elsif Is_Class_Wide_Type (Act_T)
12506 or else No (Full_View (Act_T))
12507 then
12508 Error_Msg_N ("premature use of incomplete type", Actual);
12509 Abandon_Instantiation (Actual);
12510 else
12511 Act_T := Full_View (Act_T);
12512 Set_Entity (Actual, Act_T);
12513
12514 if Has_Private_Component (Act_T) then
12515 Error_Msg_N
12516 ("premature use of type with private component", Actual);
12517 end if;
12518 end if;
12519
12520 -- Deal with error of premature use of private type as generic actual
12521
12522 elsif Is_Private_Type (Act_T)
12523 and then Is_Private_Type (Base_Type (Act_T))
12524 and then not Is_Generic_Type (Act_T)
12525 and then not Is_Derived_Type (Act_T)
12526 and then No (Full_View (Root_Type (Act_T)))
12527 then
12528 -- If the formal is an incomplete type, the actual can be
12529 -- private or incomplete as well.
12530
12531 if Ekind (A_Gen_T) = E_Incomplete_Type then
12532 null;
12533 else
12534 Error_Msg_N ("premature use of private type", Actual);
12535 end if;
12536
12537 elsif Has_Private_Component (Act_T) then
12538 Error_Msg_N
12539 ("premature use of type with private component", Actual);
12540 end if;
12541
12542 Set_Instance_Of (A_Gen_T, Act_T);
12543
12544 -- If the type is generic, the class-wide type may also be used
12545
12546 if Is_Tagged_Type (A_Gen_T)
12547 and then Is_Tagged_Type (Act_T)
12548 and then not Is_Class_Wide_Type (A_Gen_T)
12549 then
12550 Set_Instance_Of (Class_Wide_Type (A_Gen_T),
12551 Class_Wide_Type (Act_T));
12552 end if;
12553
12554 if not Is_Abstract_Type (A_Gen_T)
12555 and then Is_Abstract_Type (Act_T)
12556 then
12557 Error_Msg_N
12558 ("actual of non-abstract formal cannot be abstract", Actual);
12559 end if;
12560
12561 -- A generic scalar type is a first subtype for which we generate
12562 -- an anonymous base type. Indicate that the instance of this base
12563 -- is the base type of the actual.
12564
12565 if Is_Scalar_Type (A_Gen_T) then
12566 Set_Instance_Of (Etype (A_Gen_T), Etype (Act_T));
12567 end if;
12568 end if;
12569
12570 if Error_Posted (Act_T) then
12571 null;
12572 else
12573 case Nkind (Def) is
12574 when N_Formal_Private_Type_Definition =>
12575 Validate_Private_Type_Instance;
12576
12577 when N_Formal_Incomplete_Type_Definition =>
12578 Validate_Incomplete_Type_Instance;
12579
12580 when N_Formal_Derived_Type_Definition =>
12581 Validate_Derived_Type_Instance;
12582
12583 when N_Formal_Discrete_Type_Definition =>
12584 if not Is_Discrete_Type (Act_T) then
12585 Error_Msg_NE
12586 ("expect discrete type in instantiation of&",
12587 Actual, Gen_T);
12588 Abandon_Instantiation (Actual);
12589 end if;
12590
12591 Diagnose_Predicated_Actual;
12592
12593 when N_Formal_Signed_Integer_Type_Definition =>
12594 if not Is_Signed_Integer_Type (Act_T) then
12595 Error_Msg_NE
12596 ("expect signed integer type in instantiation of&",
12597 Actual, Gen_T);
12598 Abandon_Instantiation (Actual);
12599 end if;
12600
12601 Diagnose_Predicated_Actual;
12602
12603 when N_Formal_Modular_Type_Definition =>
12604 if not Is_Modular_Integer_Type (Act_T) then
12605 Error_Msg_NE
12606 ("expect modular type in instantiation of &",
12607 Actual, Gen_T);
12608 Abandon_Instantiation (Actual);
12609 end if;
12610
12611 Diagnose_Predicated_Actual;
12612
12613 when N_Formal_Floating_Point_Definition =>
12614 if not Is_Floating_Point_Type (Act_T) then
12615 Error_Msg_NE
12616 ("expect float type in instantiation of &", Actual, Gen_T);
12617 Abandon_Instantiation (Actual);
12618 end if;
12619
12620 when N_Formal_Ordinary_Fixed_Point_Definition =>
12621 if not Is_Ordinary_Fixed_Point_Type (Act_T) then
12622 Error_Msg_NE
12623 ("expect ordinary fixed point type in instantiation of &",
12624 Actual, Gen_T);
12625 Abandon_Instantiation (Actual);
12626 end if;
12627
12628 when N_Formal_Decimal_Fixed_Point_Definition =>
12629 if not Is_Decimal_Fixed_Point_Type (Act_T) then
12630 Error_Msg_NE
12631 ("expect decimal type in instantiation of &",
12632 Actual, Gen_T);
12633 Abandon_Instantiation (Actual);
12634 end if;
12635
12636 when N_Array_Type_Definition =>
12637 Validate_Array_Type_Instance;
12638
12639 when N_Access_To_Object_Definition =>
12640 Validate_Access_Type_Instance;
12641
12642 when N_Access_Function_Definition |
12643 N_Access_Procedure_Definition =>
12644 Validate_Access_Subprogram_Instance;
12645
12646 when N_Record_Definition =>
12647 Validate_Interface_Type_Instance;
12648
12649 when N_Derived_Type_Definition =>
12650 Validate_Derived_Interface_Type_Instance;
12651
12652 when others =>
12653 raise Program_Error;
12654
12655 end case;
12656 end if;
12657
12658 Subt := New_Copy (Gen_T);
12659
12660 -- Use adjusted sloc of subtype name as the location for other nodes in
12661 -- the subtype declaration.
12662
12663 Loc := Sloc (Subt);
12664
12665 Decl_Node :=
12666 Make_Subtype_Declaration (Loc,
12667 Defining_Identifier => Subt,
12668 Subtype_Indication => New_Occurrence_Of (Act_T, Loc));
12669
12670 if Is_Private_Type (Act_T) then
12671 Set_Has_Private_View (Subtype_Indication (Decl_Node));
12672
12673 elsif Is_Access_Type (Act_T)
12674 and then Is_Private_Type (Designated_Type (Act_T))
12675 then
12676 Set_Has_Private_View (Subtype_Indication (Decl_Node));
12677 end if;
12678
12679 -- In Ada 2012 the actual may be a limited view. Indicate that
12680 -- the local subtype must be treated as such.
12681
12682 if From_Limited_With (Act_T) then
12683 Set_Ekind (Subt, E_Incomplete_Subtype);
12684 Set_From_Limited_With (Subt);
12685 end if;
12686
12687 Decl_Nodes := New_List (Decl_Node);
12688
12689 -- Flag actual derived types so their elaboration produces the
12690 -- appropriate renamings for the primitive operations of the ancestor.
12691 -- Flag actual for formal private types as well, to determine whether
12692 -- operations in the private part may override inherited operations.
12693 -- If the formal has an interface list, the ancestor is not the
12694 -- parent, but the analyzed formal that includes the interface
12695 -- operations of all its progenitors.
12696
12697 -- Same treatment for formal private types, so we can check whether the
12698 -- type is tagged limited when validating derivations in the private
12699 -- part. (See AI05-096).
12700
12701 if Nkind (Def) = N_Formal_Derived_Type_Definition then
12702 if Present (Interface_List (Def)) then
12703 Set_Generic_Parent_Type (Decl_Node, A_Gen_T);
12704 else
12705 Set_Generic_Parent_Type (Decl_Node, Ancestor);
12706 end if;
12707
12708 elsif Nkind_In (Def, N_Formal_Private_Type_Definition,
12709 N_Formal_Incomplete_Type_Definition)
12710 then
12711 Set_Generic_Parent_Type (Decl_Node, A_Gen_T);
12712 end if;
12713
12714 -- If the actual is a synchronized type that implements an interface,
12715 -- the primitive operations are attached to the corresponding record,
12716 -- and we have to treat it as an additional generic actual, so that its
12717 -- primitive operations become visible in the instance. The task or
12718 -- protected type itself does not carry primitive operations.
12719
12720 if Is_Concurrent_Type (Act_T)
12721 and then Is_Tagged_Type (Act_T)
12722 and then Present (Corresponding_Record_Type (Act_T))
12723 and then Present (Ancestor)
12724 and then Is_Interface (Ancestor)
12725 then
12726 declare
12727 Corr_Rec : constant Entity_Id :=
12728 Corresponding_Record_Type (Act_T);
12729 New_Corr : Entity_Id;
12730 Corr_Decl : Node_Id;
12731
12732 begin
12733 New_Corr := Make_Temporary (Loc, 'S');
12734 Corr_Decl :=
12735 Make_Subtype_Declaration (Loc,
12736 Defining_Identifier => New_Corr,
12737 Subtype_Indication =>
12738 New_Occurrence_Of (Corr_Rec, Loc));
12739 Append_To (Decl_Nodes, Corr_Decl);
12740
12741 if Ekind (Act_T) = E_Task_Type then
12742 Set_Ekind (Subt, E_Task_Subtype);
12743 else
12744 Set_Ekind (Subt, E_Protected_Subtype);
12745 end if;
12746
12747 Set_Corresponding_Record_Type (Subt, Corr_Rec);
12748 Set_Generic_Parent_Type (Corr_Decl, Ancestor);
12749 Set_Generic_Parent_Type (Decl_Node, Empty);
12750 end;
12751 end if;
12752
12753 -- For a floating-point type, capture dimension info if any, because
12754 -- the generated subtype declaration does not come from source and
12755 -- will not process dimensions.
12756
12757 if Is_Floating_Point_Type (Act_T) then
12758 Copy_Dimensions (Act_T, Subt);
12759 end if;
12760
12761 return Decl_Nodes;
12762 end Instantiate_Type;
12763
12764 ---------------------
12765 -- Is_In_Main_Unit --
12766 ---------------------
12767
12768 function Is_In_Main_Unit (N : Node_Id) return Boolean is
12769 Unum : constant Unit_Number_Type := Get_Source_Unit (N);
12770 Current_Unit : Node_Id;
12771
12772 begin
12773 if Unum = Main_Unit then
12774 return True;
12775
12776 -- If the current unit is a subunit then it is either the main unit or
12777 -- is being compiled as part of the main unit.
12778
12779 elsif Nkind (N) = N_Compilation_Unit then
12780 return Nkind (Unit (N)) = N_Subunit;
12781 end if;
12782
12783 Current_Unit := Parent (N);
12784 while Present (Current_Unit)
12785 and then Nkind (Current_Unit) /= N_Compilation_Unit
12786 loop
12787 Current_Unit := Parent (Current_Unit);
12788 end loop;
12789
12790 -- The instantiation node is in the main unit, or else the current node
12791 -- (perhaps as the result of nested instantiations) is in the main unit,
12792 -- or in the declaration of the main unit, which in this last case must
12793 -- be a body.
12794
12795 return Unum = Main_Unit
12796 or else Current_Unit = Cunit (Main_Unit)
12797 or else Current_Unit = Library_Unit (Cunit (Main_Unit))
12798 or else (Present (Library_Unit (Current_Unit))
12799 and then Is_In_Main_Unit (Library_Unit (Current_Unit)));
12800 end Is_In_Main_Unit;
12801
12802 ----------------------------
12803 -- Load_Parent_Of_Generic --
12804 ----------------------------
12805
12806 procedure Load_Parent_Of_Generic
12807 (N : Node_Id;
12808 Spec : Node_Id;
12809 Body_Optional : Boolean := False)
12810 is
12811 Comp_Unit : constant Node_Id := Cunit (Get_Source_Unit (Spec));
12812 Saved_Style_Check : constant Boolean := Style_Check;
12813 Saved_Warnings : constant Warning_Record := Save_Warnings;
12814 True_Parent : Node_Id;
12815 Inst_Node : Node_Id;
12816 OK : Boolean;
12817 Previous_Instances : constant Elist_Id := New_Elmt_List;
12818
12819 procedure Collect_Previous_Instances (Decls : List_Id);
12820 -- Collect all instantiations in the given list of declarations, that
12821 -- precede the generic that we need to load. If the bodies of these
12822 -- instantiations are available, we must analyze them, to ensure that
12823 -- the public symbols generated are the same when the unit is compiled
12824 -- to generate code, and when it is compiled in the context of a unit
12825 -- that needs a particular nested instance. This process is applied to
12826 -- both package and subprogram instances.
12827
12828 --------------------------------
12829 -- Collect_Previous_Instances --
12830 --------------------------------
12831
12832 procedure Collect_Previous_Instances (Decls : List_Id) is
12833 Decl : Node_Id;
12834
12835 begin
12836 Decl := First (Decls);
12837 while Present (Decl) loop
12838 if Sloc (Decl) >= Sloc (Inst_Node) then
12839 return;
12840
12841 -- If Decl is an instantiation, then record it as requiring
12842 -- instantiation of the corresponding body, except if it is an
12843 -- abbreviated instantiation generated internally for conformance
12844 -- checking purposes only for the case of a formal package
12845 -- declared without a box (see Instantiate_Formal_Package). Such
12846 -- an instantiation does not generate any code (the actual code
12847 -- comes from actual) and thus does not need to be analyzed here.
12848 -- If the instantiation appears with a generic package body it is
12849 -- not analyzed here either.
12850
12851 elsif Nkind (Decl) = N_Package_Instantiation
12852 and then not Is_Internal (Defining_Entity (Decl))
12853 then
12854 Append_Elmt (Decl, Previous_Instances);
12855
12856 -- For a subprogram instantiation, omit instantiations intrinsic
12857 -- operations (Unchecked_Conversions, etc.) that have no bodies.
12858
12859 elsif Nkind_In (Decl, N_Function_Instantiation,
12860 N_Procedure_Instantiation)
12861 and then not Is_Intrinsic_Subprogram (Entity (Name (Decl)))
12862 then
12863 Append_Elmt (Decl, Previous_Instances);
12864
12865 elsif Nkind (Decl) = N_Package_Declaration then
12866 Collect_Previous_Instances
12867 (Visible_Declarations (Specification (Decl)));
12868 Collect_Previous_Instances
12869 (Private_Declarations (Specification (Decl)));
12870
12871 -- Previous non-generic bodies may contain instances as well
12872
12873 elsif Nkind (Decl) = N_Package_Body
12874 and then Ekind (Corresponding_Spec (Decl)) /= E_Generic_Package
12875 then
12876 Collect_Previous_Instances (Declarations (Decl));
12877
12878 elsif Nkind (Decl) = N_Subprogram_Body
12879 and then not Acts_As_Spec (Decl)
12880 and then not Is_Generic_Subprogram (Corresponding_Spec (Decl))
12881 then
12882 Collect_Previous_Instances (Declarations (Decl));
12883 end if;
12884
12885 Next (Decl);
12886 end loop;
12887 end Collect_Previous_Instances;
12888
12889 -- Start of processing for Load_Parent_Of_Generic
12890
12891 begin
12892 if not In_Same_Source_Unit (N, Spec)
12893 or else Nkind (Unit (Comp_Unit)) = N_Package_Declaration
12894 or else (Nkind (Unit (Comp_Unit)) = N_Package_Body
12895 and then not Is_In_Main_Unit (Spec))
12896 then
12897 -- Find body of parent of spec, and analyze it. A special case arises
12898 -- when the parent is an instantiation, that is to say when we are
12899 -- currently instantiating a nested generic. In that case, there is
12900 -- no separate file for the body of the enclosing instance. Instead,
12901 -- the enclosing body must be instantiated as if it were a pending
12902 -- instantiation, in order to produce the body for the nested generic
12903 -- we require now. Note that in that case the generic may be defined
12904 -- in a package body, the instance defined in the same package body,
12905 -- and the original enclosing body may not be in the main unit.
12906
12907 Inst_Node := Empty;
12908
12909 True_Parent := Parent (Spec);
12910 while Present (True_Parent)
12911 and then Nkind (True_Parent) /= N_Compilation_Unit
12912 loop
12913 if Nkind (True_Parent) = N_Package_Declaration
12914 and then
12915 Nkind (Original_Node (True_Parent)) = N_Package_Instantiation
12916 then
12917 -- Parent is a compilation unit that is an instantiation.
12918 -- Instantiation node has been replaced with package decl.
12919
12920 Inst_Node := Original_Node (True_Parent);
12921 exit;
12922
12923 elsif Nkind (True_Parent) = N_Package_Declaration
12924 and then Present (Generic_Parent (Specification (True_Parent)))
12925 and then Nkind (Parent (True_Parent)) /= N_Compilation_Unit
12926 then
12927 -- Parent is an instantiation within another specification.
12928 -- Declaration for instance has been inserted before original
12929 -- instantiation node. A direct link would be preferable?
12930
12931 Inst_Node := Next (True_Parent);
12932 while Present (Inst_Node)
12933 and then Nkind (Inst_Node) /= N_Package_Instantiation
12934 loop
12935 Next (Inst_Node);
12936 end loop;
12937
12938 -- If the instance appears within a generic, and the generic
12939 -- unit is defined within a formal package of the enclosing
12940 -- generic, there is no generic body available, and none
12941 -- needed. A more precise test should be used ???
12942
12943 if No (Inst_Node) then
12944 return;
12945 end if;
12946
12947 exit;
12948
12949 else
12950 True_Parent := Parent (True_Parent);
12951 end if;
12952 end loop;
12953
12954 -- Case where we are currently instantiating a nested generic
12955
12956 if Present (Inst_Node) then
12957 if Nkind (Parent (True_Parent)) = N_Compilation_Unit then
12958
12959 -- Instantiation node and declaration of instantiated package
12960 -- were exchanged when only the declaration was needed.
12961 -- Restore instantiation node before proceeding with body.
12962
12963 Set_Unit (Parent (True_Parent), Inst_Node);
12964 end if;
12965
12966 -- Now complete instantiation of enclosing body, if it appears in
12967 -- some other unit. If it appears in the current unit, the body
12968 -- will have been instantiated already.
12969
12970 if No (Corresponding_Body (Instance_Spec (Inst_Node))) then
12971
12972 -- We need to determine the expander mode to instantiate the
12973 -- enclosing body. Because the generic body we need may use
12974 -- global entities declared in the enclosing package (including
12975 -- aggregates) it is in general necessary to compile this body
12976 -- with expansion enabled, except if we are within a generic
12977 -- package, in which case the usual generic rule applies.
12978
12979 declare
12980 Exp_Status : Boolean := True;
12981 Scop : Entity_Id;
12982
12983 begin
12984 -- Loop through scopes looking for generic package
12985
12986 Scop := Scope (Defining_Entity (Instance_Spec (Inst_Node)));
12987 while Present (Scop)
12988 and then Scop /= Standard_Standard
12989 loop
12990 if Ekind (Scop) = E_Generic_Package then
12991 Exp_Status := False;
12992 exit;
12993 end if;
12994
12995 Scop := Scope (Scop);
12996 end loop;
12997
12998 -- Collect previous instantiations in the unit that contains
12999 -- the desired generic.
13000
13001 if Nkind (Parent (True_Parent)) /= N_Compilation_Unit
13002 and then not Body_Optional
13003 then
13004 declare
13005 Decl : Elmt_Id;
13006 Info : Pending_Body_Info;
13007 Par : Node_Id;
13008
13009 begin
13010 Par := Parent (Inst_Node);
13011 while Present (Par) loop
13012 exit when Nkind (Parent (Par)) = N_Compilation_Unit;
13013 Par := Parent (Par);
13014 end loop;
13015
13016 pragma Assert (Present (Par));
13017
13018 if Nkind (Par) = N_Package_Body then
13019 Collect_Previous_Instances (Declarations (Par));
13020
13021 elsif Nkind (Par) = N_Package_Declaration then
13022 Collect_Previous_Instances
13023 (Visible_Declarations (Specification (Par)));
13024 Collect_Previous_Instances
13025 (Private_Declarations (Specification (Par)));
13026
13027 else
13028 -- Enclosing unit is a subprogram body. In this
13029 -- case all instance bodies are processed in order
13030 -- and there is no need to collect them separately.
13031
13032 null;
13033 end if;
13034
13035 Decl := First_Elmt (Previous_Instances);
13036 while Present (Decl) loop
13037 Info :=
13038 (Inst_Node => Node (Decl),
13039 Act_Decl =>
13040 Instance_Spec (Node (Decl)),
13041 Expander_Status => Exp_Status,
13042 Current_Sem_Unit =>
13043 Get_Code_Unit (Sloc (Node (Decl))),
13044 Scope_Suppress => Scope_Suppress,
13045 Local_Suppress_Stack_Top =>
13046 Local_Suppress_Stack_Top,
13047 Version => Ada_Version,
13048 Version_Pragma => Ada_Version_Pragma,
13049 Warnings => Save_Warnings,
13050 SPARK_Mode => SPARK_Mode,
13051 SPARK_Mode_Pragma => SPARK_Mode_Pragma);
13052
13053 -- Package instance
13054
13055 if
13056 Nkind (Node (Decl)) = N_Package_Instantiation
13057 then
13058 Instantiate_Package_Body
13059 (Info, Body_Optional => True);
13060
13061 -- Subprogram instance
13062
13063 else
13064 -- The instance_spec is in the wrapper package,
13065 -- usually followed by its local renaming
13066 -- declaration. See Build_Subprogram_Renaming
13067 -- for details.
13068
13069 declare
13070 Decl : Node_Id :=
13071 (Last (Visible_Declarations
13072 (Specification (Info.Act_Decl))));
13073 begin
13074 if Nkind (Decl) =
13075 N_Subprogram_Renaming_Declaration
13076 then
13077 Decl := Prev (Decl);
13078 end if;
13079
13080 Info.Act_Decl := Decl;
13081 end;
13082
13083 Instantiate_Subprogram_Body
13084 (Info, Body_Optional => True);
13085 end if;
13086
13087 Next_Elmt (Decl);
13088 end loop;
13089 end;
13090 end if;
13091
13092 Instantiate_Package_Body
13093 (Body_Info =>
13094 ((Inst_Node => Inst_Node,
13095 Act_Decl => True_Parent,
13096 Expander_Status => Exp_Status,
13097 Current_Sem_Unit => Get_Code_Unit
13098 (Sloc (Inst_Node)),
13099 Scope_Suppress => Scope_Suppress,
13100 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
13101 Version => Ada_Version,
13102 Version_Pragma => Ada_Version_Pragma,
13103 Warnings => Save_Warnings,
13104 SPARK_Mode => SPARK_Mode,
13105 SPARK_Mode_Pragma => SPARK_Mode_Pragma)),
13106 Body_Optional => Body_Optional);
13107 end;
13108 end if;
13109
13110 -- Case where we are not instantiating a nested generic
13111
13112 else
13113 Opt.Style_Check := False;
13114 Expander_Mode_Save_And_Set (True);
13115 Load_Needed_Body (Comp_Unit, OK);
13116 Opt.Style_Check := Saved_Style_Check;
13117 Restore_Warnings (Saved_Warnings);
13118 Expander_Mode_Restore;
13119
13120 if not OK
13121 and then Unit_Requires_Body (Defining_Entity (Spec))
13122 and then not Body_Optional
13123 then
13124 declare
13125 Bname : constant Unit_Name_Type :=
13126 Get_Body_Name (Get_Unit_Name (Unit (Comp_Unit)));
13127
13128 begin
13129 -- In CodePeer mode, the missing body may make the analysis
13130 -- incomplete, but we do not treat it as fatal.
13131
13132 if CodePeer_Mode then
13133 return;
13134
13135 else
13136 Error_Msg_Unit_1 := Bname;
13137 Error_Msg_N ("this instantiation requires$!", N);
13138 Error_Msg_File_1 :=
13139 Get_File_Name (Bname, Subunit => False);
13140 Error_Msg_N ("\but file{ was not found!", N);
13141 raise Unrecoverable_Error;
13142 end if;
13143 end;
13144 end if;
13145 end if;
13146 end if;
13147
13148 -- If loading parent of the generic caused an instantiation circularity,
13149 -- we abandon compilation at this point, because otherwise in some cases
13150 -- we get into trouble with infinite recursions after this point.
13151
13152 if Circularity_Detected then
13153 raise Unrecoverable_Error;
13154 end if;
13155 end Load_Parent_Of_Generic;
13156
13157 ---------------------------------
13158 -- Map_Formal_Package_Entities --
13159 ---------------------------------
13160
13161 procedure Map_Formal_Package_Entities (Form : Entity_Id; Act : Entity_Id) is
13162 E1 : Entity_Id;
13163 E2 : Entity_Id;
13164
13165 begin
13166 Set_Instance_Of (Form, Act);
13167
13168 -- Traverse formal and actual package to map the corresponding entities.
13169 -- We skip over internal entities that may be generated during semantic
13170 -- analysis, and find the matching entities by name, given that they
13171 -- must appear in the same order.
13172
13173 E1 := First_Entity (Form);
13174 E2 := First_Entity (Act);
13175 while Present (E1) and then E1 /= First_Private_Entity (Form) loop
13176 -- Could this test be a single condition??? Seems like it could, and
13177 -- isn't FPE (Form) a constant anyway???
13178
13179 if not Is_Internal (E1)
13180 and then Present (Parent (E1))
13181 and then not Is_Class_Wide_Type (E1)
13182 and then not Is_Internal_Name (Chars (E1))
13183 then
13184 while Present (E2) and then Chars (E2) /= Chars (E1) loop
13185 Next_Entity (E2);
13186 end loop;
13187
13188 if No (E2) then
13189 exit;
13190 else
13191 Set_Instance_Of (E1, E2);
13192
13193 if Is_Type (E1) and then Is_Tagged_Type (E2) then
13194 Set_Instance_Of (Class_Wide_Type (E1), Class_Wide_Type (E2));
13195 end if;
13196
13197 if Is_Constrained (E1) then
13198 Set_Instance_Of (Base_Type (E1), Base_Type (E2));
13199 end if;
13200
13201 if Ekind (E1) = E_Package and then No (Renamed_Object (E1)) then
13202 Map_Formal_Package_Entities (E1, E2);
13203 end if;
13204 end if;
13205 end if;
13206
13207 Next_Entity (E1);
13208 end loop;
13209 end Map_Formal_Package_Entities;
13210
13211 -----------------------
13212 -- Move_Freeze_Nodes --
13213 -----------------------
13214
13215 procedure Move_Freeze_Nodes
13216 (Out_Of : Entity_Id;
13217 After : Node_Id;
13218 L : List_Id)
13219 is
13220 Decl : Node_Id;
13221 Next_Decl : Node_Id;
13222 Next_Node : Node_Id := After;
13223 Spec : Node_Id;
13224
13225 function Is_Outer_Type (T : Entity_Id) return Boolean;
13226 -- Check whether entity is declared in a scope external to that of the
13227 -- generic unit.
13228
13229 -------------------
13230 -- Is_Outer_Type --
13231 -------------------
13232
13233 function Is_Outer_Type (T : Entity_Id) return Boolean is
13234 Scop : Entity_Id := Scope (T);
13235
13236 begin
13237 if Scope_Depth (Scop) < Scope_Depth (Out_Of) then
13238 return True;
13239
13240 else
13241 while Scop /= Standard_Standard loop
13242 if Scop = Out_Of then
13243 return False;
13244 else
13245 Scop := Scope (Scop);
13246 end if;
13247 end loop;
13248
13249 return True;
13250 end if;
13251 end Is_Outer_Type;
13252
13253 -- Start of processing for Move_Freeze_Nodes
13254
13255 begin
13256 if No (L) then
13257 return;
13258 end if;
13259
13260 -- First remove the freeze nodes that may appear before all other
13261 -- declarations.
13262
13263 Decl := First (L);
13264 while Present (Decl)
13265 and then Nkind (Decl) = N_Freeze_Entity
13266 and then Is_Outer_Type (Entity (Decl))
13267 loop
13268 Decl := Remove_Head (L);
13269 Insert_After (Next_Node, Decl);
13270 Set_Analyzed (Decl, False);
13271 Next_Node := Decl;
13272 Decl := First (L);
13273 end loop;
13274
13275 -- Next scan the list of declarations and remove each freeze node that
13276 -- appears ahead of the current node.
13277
13278 while Present (Decl) loop
13279 while Present (Next (Decl))
13280 and then Nkind (Next (Decl)) = N_Freeze_Entity
13281 and then Is_Outer_Type (Entity (Next (Decl)))
13282 loop
13283 Next_Decl := Remove_Next (Decl);
13284 Insert_After (Next_Node, Next_Decl);
13285 Set_Analyzed (Next_Decl, False);
13286 Next_Node := Next_Decl;
13287 end loop;
13288
13289 -- If the declaration is a nested package or concurrent type, then
13290 -- recurse. Nested generic packages will have been processed from the
13291 -- inside out.
13292
13293 case Nkind (Decl) is
13294 when N_Package_Declaration =>
13295 Spec := Specification (Decl);
13296
13297 when N_Task_Type_Declaration =>
13298 Spec := Task_Definition (Decl);
13299
13300 when N_Protected_Type_Declaration =>
13301 Spec := Protected_Definition (Decl);
13302
13303 when others =>
13304 Spec := Empty;
13305 end case;
13306
13307 if Present (Spec) then
13308 Move_Freeze_Nodes (Out_Of, Next_Node, Visible_Declarations (Spec));
13309 Move_Freeze_Nodes (Out_Of, Next_Node, Private_Declarations (Spec));
13310 end if;
13311
13312 Next (Decl);
13313 end loop;
13314 end Move_Freeze_Nodes;
13315
13316 ----------------
13317 -- Next_Assoc --
13318 ----------------
13319
13320 function Next_Assoc (E : Assoc_Ptr) return Assoc_Ptr is
13321 begin
13322 return Generic_Renamings.Table (E).Next_In_HTable;
13323 end Next_Assoc;
13324
13325 ------------------------
13326 -- Preanalyze_Actuals --
13327 ------------------------
13328
13329 procedure Preanalyze_Actuals (N : Node_Id; Inst : Entity_Id := Empty) is
13330 Assoc : Node_Id;
13331 Act : Node_Id;
13332 Errs : constant Int := Serious_Errors_Detected;
13333
13334 Cur : Entity_Id := Empty;
13335 -- Current homograph of the instance name
13336
13337 Vis : Boolean;
13338 -- Saved visibility status of the current homograph
13339
13340 begin
13341 Assoc := First (Generic_Associations (N));
13342
13343 -- If the instance is a child unit, its name may hide an outer homonym,
13344 -- so make it invisible to perform name resolution on the actuals.
13345
13346 if Nkind (Defining_Unit_Name (N)) = N_Defining_Program_Unit_Name
13347 and then Present
13348 (Current_Entity (Defining_Identifier (Defining_Unit_Name (N))))
13349 then
13350 Cur := Current_Entity (Defining_Identifier (Defining_Unit_Name (N)));
13351
13352 if Is_Compilation_Unit (Cur) then
13353 Vis := Is_Immediately_Visible (Cur);
13354 Set_Is_Immediately_Visible (Cur, False);
13355 else
13356 Cur := Empty;
13357 end if;
13358 end if;
13359
13360 while Present (Assoc) loop
13361 if Nkind (Assoc) /= N_Others_Choice then
13362 Act := Explicit_Generic_Actual_Parameter (Assoc);
13363
13364 -- Within a nested instantiation, a defaulted actual is an empty
13365 -- association, so nothing to analyze. If the subprogram actual
13366 -- is an attribute, analyze prefix only, because actual is not a
13367 -- complete attribute reference.
13368
13369 -- If actual is an allocator, analyze expression only. The full
13370 -- analysis can generate code, and if instance is a compilation
13371 -- unit we have to wait until the package instance is installed
13372 -- to have a proper place to insert this code.
13373
13374 -- String literals may be operators, but at this point we do not
13375 -- know whether the actual is a formal subprogram or a string.
13376
13377 if No (Act) then
13378 null;
13379
13380 elsif Nkind (Act) = N_Attribute_Reference then
13381 Analyze (Prefix (Act));
13382
13383 elsif Nkind (Act) = N_Explicit_Dereference then
13384 Analyze (Prefix (Act));
13385
13386 elsif Nkind (Act) = N_Allocator then
13387 declare
13388 Expr : constant Node_Id := Expression (Act);
13389
13390 begin
13391 if Nkind (Expr) = N_Subtype_Indication then
13392 Analyze (Subtype_Mark (Expr));
13393
13394 -- Analyze separately each discriminant constraint, when
13395 -- given with a named association.
13396
13397 declare
13398 Constr : Node_Id;
13399
13400 begin
13401 Constr := First (Constraints (Constraint (Expr)));
13402 while Present (Constr) loop
13403 if Nkind (Constr) = N_Discriminant_Association then
13404 Analyze (Expression (Constr));
13405 else
13406 Analyze (Constr);
13407 end if;
13408
13409 Next (Constr);
13410 end loop;
13411 end;
13412
13413 else
13414 Analyze (Expr);
13415 end if;
13416 end;
13417
13418 elsif Nkind (Act) /= N_Operator_Symbol then
13419 Analyze (Act);
13420
13421 if Is_Entity_Name (Act)
13422 and then Is_Type (Entity (Act))
13423 and then From_Limited_With (Entity (Act))
13424 then
13425 Append_Elmt (Entity (Act), Incomplete_Actuals (Inst));
13426 end if;
13427 end if;
13428
13429 if Errs /= Serious_Errors_Detected then
13430
13431 -- Do a minimal analysis of the generic, to prevent spurious
13432 -- warnings complaining about the generic being unreferenced,
13433 -- before abandoning the instantiation.
13434
13435 Analyze (Name (N));
13436
13437 if Is_Entity_Name (Name (N))
13438 and then Etype (Name (N)) /= Any_Type
13439 then
13440 Generate_Reference (Entity (Name (N)), Name (N));
13441 Set_Is_Instantiated (Entity (Name (N)));
13442 end if;
13443
13444 if Present (Cur) then
13445
13446 -- For the case of a child instance hiding an outer homonym,
13447 -- provide additional warning which might explain the error.
13448
13449 Set_Is_Immediately_Visible (Cur, Vis);
13450 Error_Msg_NE
13451 ("& hides outer unit with the same name??",
13452 N, Defining_Unit_Name (N));
13453 end if;
13454
13455 Abandon_Instantiation (Act);
13456 end if;
13457 end if;
13458
13459 Next (Assoc);
13460 end loop;
13461
13462 if Present (Cur) then
13463 Set_Is_Immediately_Visible (Cur, Vis);
13464 end if;
13465 end Preanalyze_Actuals;
13466
13467 -------------------
13468 -- Remove_Parent --
13469 -------------------
13470
13471 procedure Remove_Parent (In_Body : Boolean := False) is
13472 S : Entity_Id := Current_Scope;
13473 -- S is the scope containing the instantiation just completed. The scope
13474 -- stack contains the parent instances of the instantiation, followed by
13475 -- the original S.
13476
13477 Cur_P : Entity_Id;
13478 E : Entity_Id;
13479 P : Entity_Id;
13480 Hidden : Elmt_Id;
13481
13482 begin
13483 -- After child instantiation is complete, remove from scope stack the
13484 -- extra copy of the current scope, and then remove parent instances.
13485
13486 if not In_Body then
13487 Pop_Scope;
13488
13489 while Current_Scope /= S loop
13490 P := Current_Scope;
13491 End_Package_Scope (Current_Scope);
13492
13493 if In_Open_Scopes (P) then
13494 E := First_Entity (P);
13495 while Present (E) loop
13496 Set_Is_Immediately_Visible (E, True);
13497 Next_Entity (E);
13498 end loop;
13499
13500 -- If instantiation is declared in a block, it is the enclosing
13501 -- scope that might be a parent instance. Note that only one
13502 -- block can be involved, because the parent instances have
13503 -- been installed within it.
13504
13505 if Ekind (P) = E_Block then
13506 Cur_P := Scope (P);
13507 else
13508 Cur_P := P;
13509 end if;
13510
13511 if Is_Generic_Instance (Cur_P) and then P /= Current_Scope then
13512 -- We are within an instance of some sibling. Retain
13513 -- visibility of parent, for proper subsequent cleanup, and
13514 -- reinstall private declarations as well.
13515
13516 Set_In_Private_Part (P);
13517 Install_Private_Declarations (P);
13518 end if;
13519
13520 -- If the ultimate parent is a top-level unit recorded in
13521 -- Instance_Parent_Unit, then reset its visibility to what it was
13522 -- before instantiation. (It's not clear what the purpose is of
13523 -- testing whether Scope (P) is In_Open_Scopes, but that test was
13524 -- present before the ultimate parent test was added.???)
13525
13526 elsif not In_Open_Scopes (Scope (P))
13527 or else (P = Instance_Parent_Unit
13528 and then not Parent_Unit_Visible)
13529 then
13530 Set_Is_Immediately_Visible (P, False);
13531
13532 -- If the current scope is itself an instantiation of a generic
13533 -- nested within P, and we are in the private part of body of this
13534 -- instantiation, restore the full views of P, that were removed
13535 -- in End_Package_Scope above. This obscure case can occur when a
13536 -- subunit of a generic contains an instance of a child unit of
13537 -- its generic parent unit.
13538
13539 elsif S = Current_Scope and then Is_Generic_Instance (S) then
13540 declare
13541 Par : constant Entity_Id :=
13542 Generic_Parent (Package_Specification (S));
13543 begin
13544 if Present (Par)
13545 and then P = Scope (Par)
13546 and then (In_Package_Body (S) or else In_Private_Part (S))
13547 then
13548 Set_In_Private_Part (P);
13549 Install_Private_Declarations (P);
13550 end if;
13551 end;
13552 end if;
13553 end loop;
13554
13555 -- Reset visibility of entities in the enclosing scope
13556
13557 Set_Is_Hidden_Open_Scope (Current_Scope, False);
13558
13559 Hidden := First_Elmt (Hidden_Entities);
13560 while Present (Hidden) loop
13561 Set_Is_Immediately_Visible (Node (Hidden), True);
13562 Next_Elmt (Hidden);
13563 end loop;
13564
13565 else
13566 -- Each body is analyzed separately, and there is no context that
13567 -- needs preserving from one body instance to the next, so remove all
13568 -- parent scopes that have been installed.
13569
13570 while Present (S) loop
13571 End_Package_Scope (S);
13572 Set_Is_Immediately_Visible (S, False);
13573 S := Current_Scope;
13574 exit when S = Standard_Standard;
13575 end loop;
13576 end if;
13577 end Remove_Parent;
13578
13579 -----------------
13580 -- Restore_Env --
13581 -----------------
13582
13583 procedure Restore_Env is
13584 Saved : Instance_Env renames Instance_Envs.Table (Instance_Envs.Last);
13585
13586 begin
13587 if No (Current_Instantiated_Parent.Act_Id) then
13588 -- Restore environment after subprogram inlining
13589
13590 Restore_Private_Views (Empty);
13591 end if;
13592
13593 Current_Instantiated_Parent := Saved.Instantiated_Parent;
13594 Exchanged_Views := Saved.Exchanged_Views;
13595 Hidden_Entities := Saved.Hidden_Entities;
13596 Current_Sem_Unit := Saved.Current_Sem_Unit;
13597 Parent_Unit_Visible := Saved.Parent_Unit_Visible;
13598 Instance_Parent_Unit := Saved.Instance_Parent_Unit;
13599
13600 Restore_Opt_Config_Switches (Saved.Switches);
13601
13602 Instance_Envs.Decrement_Last;
13603 end Restore_Env;
13604
13605 ---------------------------
13606 -- Restore_Private_Views --
13607 ---------------------------
13608
13609 procedure Restore_Private_Views
13610 (Pack_Id : Entity_Id;
13611 Is_Package : Boolean := True)
13612 is
13613 M : Elmt_Id;
13614 E : Entity_Id;
13615 Typ : Entity_Id;
13616 Dep_Elmt : Elmt_Id;
13617 Dep_Typ : Node_Id;
13618
13619 procedure Restore_Nested_Formal (Formal : Entity_Id);
13620 -- Hide the generic formals of formal packages declared with box which
13621 -- were reachable in the current instantiation.
13622
13623 ---------------------------
13624 -- Restore_Nested_Formal --
13625 ---------------------------
13626
13627 procedure Restore_Nested_Formal (Formal : Entity_Id) is
13628 Ent : Entity_Id;
13629
13630 begin
13631 if Present (Renamed_Object (Formal))
13632 and then Denotes_Formal_Package (Renamed_Object (Formal), True)
13633 then
13634 return;
13635
13636 elsif Present (Associated_Formal_Package (Formal)) then
13637 Ent := First_Entity (Formal);
13638 while Present (Ent) loop
13639 exit when Ekind (Ent) = E_Package
13640 and then Renamed_Entity (Ent) = Renamed_Entity (Formal);
13641
13642 Set_Is_Hidden (Ent);
13643 Set_Is_Potentially_Use_Visible (Ent, False);
13644
13645 -- If package, then recurse
13646
13647 if Ekind (Ent) = E_Package then
13648 Restore_Nested_Formal (Ent);
13649 end if;
13650
13651 Next_Entity (Ent);
13652 end loop;
13653 end if;
13654 end Restore_Nested_Formal;
13655
13656 -- Start of processing for Restore_Private_Views
13657
13658 begin
13659 M := First_Elmt (Exchanged_Views);
13660 while Present (M) loop
13661 Typ := Node (M);
13662
13663 -- Subtypes of types whose views have been exchanged, and that are
13664 -- defined within the instance, were not on the Private_Dependents
13665 -- list on entry to the instance, so they have to be exchanged
13666 -- explicitly now, in order to remain consistent with the view of the
13667 -- parent type.
13668
13669 if Ekind_In (Typ, E_Private_Type,
13670 E_Limited_Private_Type,
13671 E_Record_Type_With_Private)
13672 then
13673 Dep_Elmt := First_Elmt (Private_Dependents (Typ));
13674 while Present (Dep_Elmt) loop
13675 Dep_Typ := Node (Dep_Elmt);
13676
13677 if Scope (Dep_Typ) = Pack_Id
13678 and then Present (Full_View (Dep_Typ))
13679 then
13680 Replace_Elmt (Dep_Elmt, Full_View (Dep_Typ));
13681 Exchange_Declarations (Dep_Typ);
13682 end if;
13683
13684 Next_Elmt (Dep_Elmt);
13685 end loop;
13686 end if;
13687
13688 Exchange_Declarations (Node (M));
13689 Next_Elmt (M);
13690 end loop;
13691
13692 if No (Pack_Id) then
13693 return;
13694 end if;
13695
13696 -- Make the generic formal parameters private, and make the formal types
13697 -- into subtypes of the actuals again.
13698
13699 E := First_Entity (Pack_Id);
13700 while Present (E) loop
13701 Set_Is_Hidden (E, True);
13702
13703 if Is_Type (E)
13704 and then Nkind (Parent (E)) = N_Subtype_Declaration
13705 then
13706 -- If the actual for E is itself a generic actual type from
13707 -- an enclosing instance, E is still a generic actual type
13708 -- outside of the current instance. This matter when resolving
13709 -- an overloaded call that may be ambiguous in the enclosing
13710 -- instance, when two of its actuals coincide.
13711
13712 if Is_Entity_Name (Subtype_Indication (Parent (E)))
13713 and then Is_Generic_Actual_Type
13714 (Entity (Subtype_Indication (Parent (E))))
13715 then
13716 null;
13717 else
13718 Set_Is_Generic_Actual_Type (E, False);
13719 end if;
13720
13721 -- An unusual case of aliasing: the actual may also be directly
13722 -- visible in the generic, and be private there, while it is fully
13723 -- visible in the context of the instance. The internal subtype
13724 -- is private in the instance but has full visibility like its
13725 -- parent in the enclosing scope. This enforces the invariant that
13726 -- the privacy status of all private dependents of a type coincide
13727 -- with that of the parent type. This can only happen when a
13728 -- generic child unit is instantiated within a sibling.
13729
13730 if Is_Private_Type (E)
13731 and then not Is_Private_Type (Etype (E))
13732 then
13733 Exchange_Declarations (E);
13734 end if;
13735
13736 elsif Ekind (E) = E_Package then
13737
13738 -- The end of the renaming list is the renaming of the generic
13739 -- package itself. If the instance is a subprogram, all entities
13740 -- in the corresponding package are renamings. If this entity is
13741 -- a formal package, make its own formals private as well. The
13742 -- actual in this case is itself the renaming of an instantiation.
13743 -- If the entity is not a package renaming, it is the entity
13744 -- created to validate formal package actuals: ignore it.
13745
13746 -- If the actual is itself a formal package for the enclosing
13747 -- generic, or the actual for such a formal package, it remains
13748 -- visible on exit from the instance, and therefore nothing needs
13749 -- to be done either, except to keep it accessible.
13750
13751 if Is_Package and then Renamed_Object (E) = Pack_Id then
13752 exit;
13753
13754 elsif Nkind (Parent (E)) /= N_Package_Renaming_Declaration then
13755 null;
13756
13757 elsif
13758 Denotes_Formal_Package (Renamed_Object (E), True, Pack_Id)
13759 then
13760 Set_Is_Hidden (E, False);
13761
13762 else
13763 declare
13764 Act_P : constant Entity_Id := Renamed_Object (E);
13765 Id : Entity_Id;
13766
13767 begin
13768 Id := First_Entity (Act_P);
13769 while Present (Id)
13770 and then Id /= First_Private_Entity (Act_P)
13771 loop
13772 exit when Ekind (Id) = E_Package
13773 and then Renamed_Object (Id) = Act_P;
13774
13775 Set_Is_Hidden (Id, True);
13776 Set_Is_Potentially_Use_Visible (Id, In_Use (Act_P));
13777
13778 if Ekind (Id) = E_Package then
13779 Restore_Nested_Formal (Id);
13780 end if;
13781
13782 Next_Entity (Id);
13783 end loop;
13784 end;
13785 end if;
13786 end if;
13787
13788 Next_Entity (E);
13789 end loop;
13790 end Restore_Private_Views;
13791
13792 --------------
13793 -- Save_Env --
13794 --------------
13795
13796 procedure Save_Env
13797 (Gen_Unit : Entity_Id;
13798 Act_Unit : Entity_Id)
13799 is
13800 begin
13801 Init_Env;
13802 Set_Instance_Env (Gen_Unit, Act_Unit);
13803 end Save_Env;
13804
13805 ----------------------------
13806 -- Save_Global_References --
13807 ----------------------------
13808
13809 procedure Save_Global_References (Templ : Node_Id) is
13810
13811 -- ??? it is horrible to use global variables in highly recursive code
13812
13813 E : Entity_Id;
13814 -- The entity of the current associated node
13815
13816 Gen_Scope : Entity_Id;
13817 -- The scope of the generic for which references are being saved
13818
13819 N2 : Node_Id;
13820 -- The current associated node
13821
13822 function Is_Global (E : Entity_Id) return Boolean;
13823 -- Check whether entity is defined outside of generic unit. Examine the
13824 -- scope of an entity, and the scope of the scope, etc, until we find
13825 -- either Standard, in which case the entity is global, or the generic
13826 -- unit itself, which indicates that the entity is local. If the entity
13827 -- is the generic unit itself, as in the case of a recursive call, or
13828 -- the enclosing generic unit, if different from the current scope, then
13829 -- it is local as well, because it will be replaced at the point of
13830 -- instantiation. On the other hand, if it is a reference to a child
13831 -- unit of a common ancestor, which appears in an instantiation, it is
13832 -- global because it is used to denote a specific compilation unit at
13833 -- the time the instantiations will be analyzed.
13834
13835 procedure Reset_Entity (N : Node_Id);
13836 -- Save semantic information on global entity so that it is not resolved
13837 -- again at instantiation time.
13838
13839 procedure Save_Entity_Descendants (N : Node_Id);
13840 -- Apply Save_Global_References to the two syntactic descendants of
13841 -- non-terminal nodes that carry an Associated_Node and are processed
13842 -- through Reset_Entity. Once the global entity (if any) has been
13843 -- captured together with its type, only two syntactic descendants need
13844 -- to be traversed to complete the processing of the tree rooted at N.
13845 -- This applies to Selected_Components, Expanded_Names, and to Operator
13846 -- nodes. N can also be a character literal, identifier, or operator
13847 -- symbol node, but the call has no effect in these cases.
13848
13849 procedure Save_Global_Defaults (N1 : Node_Id; N2 : Node_Id);
13850 -- Default actuals in nested instances must be handled specially
13851 -- because there is no link to them from the original tree. When an
13852 -- actual subprogram is given by a default, we add an explicit generic
13853 -- association for it in the instantiation node. When we save the
13854 -- global references on the name of the instance, we recover the list
13855 -- of generic associations, and add an explicit one to the original
13856 -- generic tree, through which a global actual can be preserved.
13857 -- Similarly, if a child unit is instantiated within a sibling, in the
13858 -- context of the parent, we must preserve the identifier of the parent
13859 -- so that it can be properly resolved in a subsequent instantiation.
13860
13861 procedure Save_Global_Descendant (D : Union_Id);
13862 -- Apply Save_References recursively to the descendents of node D
13863
13864 procedure Save_References (N : Node_Id);
13865 -- This is the recursive procedure that does the work, once the
13866 -- enclosing generic scope has been established.
13867
13868 ---------------
13869 -- Is_Global --
13870 ---------------
13871
13872 function Is_Global (E : Entity_Id) return Boolean is
13873 Se : Entity_Id;
13874
13875 function Is_Instance_Node (Decl : Node_Id) return Boolean;
13876 -- Determine whether the parent node of a reference to a child unit
13877 -- denotes an instantiation or a formal package, in which case the
13878 -- reference to the child unit is global, even if it appears within
13879 -- the current scope (e.g. when the instance appears within the body
13880 -- of an ancestor).
13881
13882 ----------------------
13883 -- Is_Instance_Node --
13884 ----------------------
13885
13886 function Is_Instance_Node (Decl : Node_Id) return Boolean is
13887 begin
13888 return Nkind (Decl) in N_Generic_Instantiation
13889 or else
13890 Nkind (Original_Node (Decl)) = N_Formal_Package_Declaration;
13891 end Is_Instance_Node;
13892
13893 -- Start of processing for Is_Global
13894
13895 begin
13896 if E = Gen_Scope then
13897 return False;
13898
13899 elsif E = Standard_Standard then
13900 return True;
13901
13902 elsif Is_Child_Unit (E)
13903 and then (Is_Instance_Node (Parent (N2))
13904 or else (Nkind (Parent (N2)) = N_Expanded_Name
13905 and then N2 = Selector_Name (Parent (N2))
13906 and then
13907 Is_Instance_Node (Parent (Parent (N2)))))
13908 then
13909 return True;
13910
13911 else
13912 Se := Scope (E);
13913 while Se /= Gen_Scope loop
13914 if Se = Standard_Standard then
13915 return True;
13916 else
13917 Se := Scope (Se);
13918 end if;
13919 end loop;
13920
13921 return False;
13922 end if;
13923 end Is_Global;
13924
13925 ------------------
13926 -- Reset_Entity --
13927 ------------------
13928
13929 procedure Reset_Entity (N : Node_Id) is
13930 procedure Set_Global_Type (N : Node_Id; N2 : Node_Id);
13931 -- If the type of N2 is global to the generic unit, save the type in
13932 -- the generic node. Just as we perform name capture for explicit
13933 -- references within the generic, we must capture the global types
13934 -- of local entities because they may participate in resolution in
13935 -- the instance.
13936
13937 function Top_Ancestor (E : Entity_Id) return Entity_Id;
13938 -- Find the ultimate ancestor of the current unit. If it is not a
13939 -- generic unit, then the name of the current unit in the prefix of
13940 -- an expanded name must be replaced with its generic homonym to
13941 -- ensure that it will be properly resolved in an instance.
13942
13943 ---------------------
13944 -- Set_Global_Type --
13945 ---------------------
13946
13947 procedure Set_Global_Type (N : Node_Id; N2 : Node_Id) is
13948 Typ : constant Entity_Id := Etype (N2);
13949
13950 begin
13951 Set_Etype (N, Typ);
13952
13953 -- If the entity of N is not the associated node, this is a
13954 -- nested generic and it has an associated node as well, whose
13955 -- type is already the full view (see below). Indicate that the
13956 -- original node has a private view.
13957
13958 if Entity (N) /= N2 and then Has_Private_View (Entity (N)) then
13959 Set_Has_Private_View (N);
13960 end if;
13961
13962 -- If not a private type, nothing else to do
13963
13964 if not Is_Private_Type (Typ) then
13965 if Is_Array_Type (Typ)
13966 and then Is_Private_Type (Component_Type (Typ))
13967 then
13968 Set_Has_Private_View (N);
13969 end if;
13970
13971 -- If it is a derivation of a private type in a context where no
13972 -- full view is needed, nothing to do either.
13973
13974 elsif No (Full_View (Typ)) and then Typ /= Etype (Typ) then
13975 null;
13976
13977 -- Otherwise mark the type for flipping and use the full view when
13978 -- available.
13979
13980 else
13981 Set_Has_Private_View (N);
13982
13983 if Present (Full_View (Typ)) then
13984 Set_Etype (N2, Full_View (Typ));
13985 end if;
13986 end if;
13987 end Set_Global_Type;
13988
13989 ------------------
13990 -- Top_Ancestor --
13991 ------------------
13992
13993 function Top_Ancestor (E : Entity_Id) return Entity_Id is
13994 Par : Entity_Id;
13995
13996 begin
13997 Par := E;
13998 while Is_Child_Unit (Par) loop
13999 Par := Scope (Par);
14000 end loop;
14001
14002 return Par;
14003 end Top_Ancestor;
14004
14005 -- Start of processing for Reset_Entity
14006
14007 begin
14008 N2 := Get_Associated_Node (N);
14009 E := Entity (N2);
14010
14011 if Present (E) then
14012
14013 -- If the node is an entry call to an entry in an enclosing task,
14014 -- it is rewritten as a selected component. No global entity to
14015 -- preserve in this case, since the expansion will be redone in
14016 -- the instance.
14017
14018 if not Nkind_In (E, N_Defining_Character_Literal,
14019 N_Defining_Identifier,
14020 N_Defining_Operator_Symbol)
14021 then
14022 Set_Associated_Node (N, Empty);
14023 Set_Etype (N, Empty);
14024 return;
14025 end if;
14026
14027 -- If the entity is an itype created as a subtype of an access
14028 -- type with a null exclusion restore source entity for proper
14029 -- visibility. The itype will be created anew in the instance.
14030
14031 if Is_Itype (E)
14032 and then Ekind (E) = E_Access_Subtype
14033 and then Is_Entity_Name (N)
14034 and then Chars (Etype (E)) = Chars (N)
14035 then
14036 E := Etype (E);
14037 Set_Entity (N2, E);
14038 Set_Etype (N2, E);
14039 end if;
14040
14041 if Is_Global (E) then
14042
14043 -- If the entity is a package renaming that is the prefix of
14044 -- an expanded name, it has been rewritten as the renamed
14045 -- package, which is necessary semantically but complicates
14046 -- ASIS tree traversal, so we recover the original entity to
14047 -- expose the renaming. Take into account that the context may
14048 -- be a nested generic, that the original node may itself have
14049 -- an associated node that had better be an entity, and that
14050 -- the current node is still a selected component.
14051
14052 if Ekind (E) = E_Package
14053 and then Nkind (N) = N_Selected_Component
14054 and then Nkind (Parent (N)) = N_Expanded_Name
14055 and then Present (Original_Node (N2))
14056 and then Is_Entity_Name (Original_Node (N2))
14057 and then Present (Entity (Original_Node (N2)))
14058 then
14059 if Is_Global (Entity (Original_Node (N2))) then
14060 N2 := Original_Node (N2);
14061 Set_Associated_Node (N, N2);
14062 Set_Global_Type (N, N2);
14063
14064 -- Renaming is local, and will be resolved in instance
14065
14066 else
14067 Set_Associated_Node (N, Empty);
14068 Set_Etype (N, Empty);
14069 end if;
14070
14071 else
14072 Set_Global_Type (N, N2);
14073 end if;
14074
14075 elsif Nkind (N) = N_Op_Concat
14076 and then Is_Generic_Type (Etype (N2))
14077 and then (Base_Type (Etype (Right_Opnd (N2))) = Etype (N2)
14078 or else
14079 Base_Type (Etype (Left_Opnd (N2))) = Etype (N2))
14080 and then Is_Intrinsic_Subprogram (E)
14081 then
14082 null;
14083
14084 -- Entity is local. Mark generic node as unresolved. Note that now
14085 -- it does not have an entity.
14086
14087 else
14088 Set_Associated_Node (N, Empty);
14089 Set_Etype (N, Empty);
14090 end if;
14091
14092 if Nkind (Parent (N)) in N_Generic_Instantiation
14093 and then N = Name (Parent (N))
14094 then
14095 Save_Global_Defaults (Parent (N), Parent (N2));
14096 end if;
14097
14098 elsif Nkind (Parent (N)) = N_Selected_Component
14099 and then Nkind (Parent (N2)) = N_Expanded_Name
14100 then
14101 if Is_Global (Entity (Parent (N2))) then
14102 Change_Selected_Component_To_Expanded_Name (Parent (N));
14103 Set_Associated_Node (Parent (N), Parent (N2));
14104 Set_Global_Type (Parent (N), Parent (N2));
14105 Save_Entity_Descendants (N);
14106
14107 -- If this is a reference to the current generic entity, replace
14108 -- by the name of the generic homonym of the current package. This
14109 -- is because in an instantiation Par.P.Q will not resolve to the
14110 -- name of the instance, whose enclosing scope is not necessarily
14111 -- Par. We use the generic homonym rather that the name of the
14112 -- generic itself because it may be hidden by a local declaration.
14113
14114 elsif In_Open_Scopes (Entity (Parent (N2)))
14115 and then not
14116 Is_Generic_Unit (Top_Ancestor (Entity (Prefix (Parent (N2)))))
14117 then
14118 if Ekind (Entity (Parent (N2))) = E_Generic_Package then
14119 Rewrite (Parent (N),
14120 Make_Identifier (Sloc (N),
14121 Chars =>
14122 Chars (Generic_Homonym (Entity (Parent (N2))))));
14123 else
14124 Rewrite (Parent (N),
14125 Make_Identifier (Sloc (N),
14126 Chars => Chars (Selector_Name (Parent (N2)))));
14127 end if;
14128 end if;
14129
14130 if Nkind (Parent (Parent (N))) in N_Generic_Instantiation
14131 and then Parent (N) = Name (Parent (Parent (N)))
14132 then
14133 Save_Global_Defaults
14134 (Parent (Parent (N)), Parent (Parent (N2)));
14135 end if;
14136
14137 -- A selected component may denote a static constant that has been
14138 -- folded. If the static constant is global to the generic, capture
14139 -- its value. Otherwise the folding will happen in any instantiation.
14140
14141 elsif Nkind (Parent (N)) = N_Selected_Component
14142 and then Nkind_In (Parent (N2), N_Integer_Literal, N_Real_Literal)
14143 then
14144 if Present (Entity (Original_Node (Parent (N2))))
14145 and then Is_Global (Entity (Original_Node (Parent (N2))))
14146 then
14147 Rewrite (Parent (N), New_Copy (Parent (N2)));
14148 Set_Analyzed (Parent (N), False);
14149 end if;
14150
14151 -- A selected component may be transformed into a parameterless
14152 -- function call. If the called entity is global, rewrite the node
14153 -- appropriately, i.e. as an extended name for the global entity.
14154
14155 elsif Nkind (Parent (N)) = N_Selected_Component
14156 and then Nkind (Parent (N2)) = N_Function_Call
14157 and then N = Selector_Name (Parent (N))
14158 then
14159 if No (Parameter_Associations (Parent (N2))) then
14160 if Is_Global (Entity (Name (Parent (N2)))) then
14161 Change_Selected_Component_To_Expanded_Name (Parent (N));
14162 Set_Associated_Node (Parent (N), Name (Parent (N2)));
14163 Set_Global_Type (Parent (N), Name (Parent (N2)));
14164 Save_Entity_Descendants (N);
14165
14166 else
14167 Set_Is_Prefixed_Call (Parent (N));
14168 Set_Associated_Node (N, Empty);
14169 Set_Etype (N, Empty);
14170 end if;
14171
14172 -- In Ada 2005, X.F may be a call to a primitive operation,
14173 -- rewritten as F (X). This rewriting will be done again in an
14174 -- instance, so keep the original node. Global entities will be
14175 -- captured as for other constructs. Indicate that this must
14176 -- resolve as a call, to prevent accidental overloading in the
14177 -- instance, if both a component and a primitive operation appear
14178 -- as candidates.
14179
14180 else
14181 Set_Is_Prefixed_Call (Parent (N));
14182 end if;
14183
14184 -- Entity is local. Reset in generic unit, so that node is resolved
14185 -- anew at the point of instantiation.
14186
14187 else
14188 Set_Associated_Node (N, Empty);
14189 Set_Etype (N, Empty);
14190 end if;
14191 end Reset_Entity;
14192
14193 -----------------------------
14194 -- Save_Entity_Descendants --
14195 -----------------------------
14196
14197 procedure Save_Entity_Descendants (N : Node_Id) is
14198 begin
14199 case Nkind (N) is
14200 when N_Binary_Op =>
14201 Save_Global_Descendant (Union_Id (Left_Opnd (N)));
14202 Save_Global_Descendant (Union_Id (Right_Opnd (N)));
14203
14204 when N_Unary_Op =>
14205 Save_Global_Descendant (Union_Id (Right_Opnd (N)));
14206
14207 when N_Expanded_Name |
14208 N_Selected_Component =>
14209 Save_Global_Descendant (Union_Id (Prefix (N)));
14210 Save_Global_Descendant (Union_Id (Selector_Name (N)));
14211
14212 when N_Identifier |
14213 N_Character_Literal |
14214 N_Operator_Symbol =>
14215 null;
14216
14217 when others =>
14218 raise Program_Error;
14219 end case;
14220 end Save_Entity_Descendants;
14221
14222 --------------------------
14223 -- Save_Global_Defaults --
14224 --------------------------
14225
14226 procedure Save_Global_Defaults (N1 : Node_Id; N2 : Node_Id) is
14227 Loc : constant Source_Ptr := Sloc (N1);
14228 Assoc2 : constant List_Id := Generic_Associations (N2);
14229 Gen_Id : constant Entity_Id := Get_Generic_Entity (N2);
14230 Assoc1 : List_Id;
14231 Act1 : Node_Id;
14232 Act2 : Node_Id;
14233 Def : Node_Id;
14234 Ndec : Node_Id;
14235 Subp : Entity_Id;
14236 Actual : Entity_Id;
14237
14238 begin
14239 Assoc1 := Generic_Associations (N1);
14240
14241 if Present (Assoc1) then
14242 Act1 := First (Assoc1);
14243 else
14244 Act1 := Empty;
14245 Set_Generic_Associations (N1, New_List);
14246 Assoc1 := Generic_Associations (N1);
14247 end if;
14248
14249 if Present (Assoc2) then
14250 Act2 := First (Assoc2);
14251 else
14252 return;
14253 end if;
14254
14255 while Present (Act1) and then Present (Act2) loop
14256 Next (Act1);
14257 Next (Act2);
14258 end loop;
14259
14260 -- Find the associations added for default subprograms
14261
14262 if Present (Act2) then
14263 while Nkind (Act2) /= N_Generic_Association
14264 or else No (Entity (Selector_Name (Act2)))
14265 or else not Is_Overloadable (Entity (Selector_Name (Act2)))
14266 loop
14267 Next (Act2);
14268 end loop;
14269
14270 -- Add a similar association if the default is global. The
14271 -- renaming declaration for the actual has been analyzed, and
14272 -- its alias is the program it renames. Link the actual in the
14273 -- original generic tree with the node in the analyzed tree.
14274
14275 while Present (Act2) loop
14276 Subp := Entity (Selector_Name (Act2));
14277 Def := Explicit_Generic_Actual_Parameter (Act2);
14278
14279 -- Following test is defence against rubbish errors
14280
14281 if No (Alias (Subp)) then
14282 return;
14283 end if;
14284
14285 -- Retrieve the resolved actual from the renaming declaration
14286 -- created for the instantiated formal.
14287
14288 Actual := Entity (Name (Parent (Parent (Subp))));
14289 Set_Entity (Def, Actual);
14290 Set_Etype (Def, Etype (Actual));
14291
14292 if Is_Global (Actual) then
14293 Ndec :=
14294 Make_Generic_Association (Loc,
14295 Selector_Name =>
14296 New_Occurrence_Of (Subp, Loc),
14297 Explicit_Generic_Actual_Parameter =>
14298 New_Occurrence_Of (Actual, Loc));
14299
14300 Set_Associated_Node
14301 (Explicit_Generic_Actual_Parameter (Ndec), Def);
14302
14303 Append (Ndec, Assoc1);
14304
14305 -- If there are other defaults, add a dummy association in case
14306 -- there are other defaulted formals with the same name.
14307
14308 elsif Present (Next (Act2)) then
14309 Ndec :=
14310 Make_Generic_Association (Loc,
14311 Selector_Name =>
14312 New_Occurrence_Of (Subp, Loc),
14313 Explicit_Generic_Actual_Parameter => Empty);
14314
14315 Append (Ndec, Assoc1);
14316 end if;
14317
14318 Next (Act2);
14319 end loop;
14320 end if;
14321
14322 if Nkind (Name (N1)) = N_Identifier
14323 and then Is_Child_Unit (Gen_Id)
14324 and then Is_Global (Gen_Id)
14325 and then Is_Generic_Unit (Scope (Gen_Id))
14326 and then In_Open_Scopes (Scope (Gen_Id))
14327 then
14328 -- This is an instantiation of a child unit within a sibling, so
14329 -- that the generic parent is in scope. An eventual instance must
14330 -- occur within the scope of an instance of the parent. Make name
14331 -- in instance into an expanded name, to preserve the identifier
14332 -- of the parent, so it can be resolved subsequently.
14333
14334 Rewrite (Name (N2),
14335 Make_Expanded_Name (Loc,
14336 Chars => Chars (Gen_Id),
14337 Prefix => New_Occurrence_Of (Scope (Gen_Id), Loc),
14338 Selector_Name => New_Occurrence_Of (Gen_Id, Loc)));
14339 Set_Entity (Name (N2), Gen_Id);
14340
14341 Rewrite (Name (N1),
14342 Make_Expanded_Name (Loc,
14343 Chars => Chars (Gen_Id),
14344 Prefix => New_Occurrence_Of (Scope (Gen_Id), Loc),
14345 Selector_Name => New_Occurrence_Of (Gen_Id, Loc)));
14346
14347 Set_Associated_Node (Name (N1), Name (N2));
14348 Set_Associated_Node (Prefix (Name (N1)), Empty);
14349 Set_Associated_Node
14350 (Selector_Name (Name (N1)), Selector_Name (Name (N2)));
14351 Set_Etype (Name (N1), Etype (Gen_Id));
14352 end if;
14353 end Save_Global_Defaults;
14354
14355 ----------------------------
14356 -- Save_Global_Descendant --
14357 ----------------------------
14358
14359 procedure Save_Global_Descendant (D : Union_Id) is
14360 N1 : Node_Id;
14361
14362 begin
14363 if D in Node_Range then
14364 if D = Union_Id (Empty) then
14365 null;
14366
14367 elsif Nkind (Node_Id (D)) /= N_Compilation_Unit then
14368 Save_References (Node_Id (D));
14369 end if;
14370
14371 elsif D in List_Range then
14372 if D = Union_Id (No_List) or else Is_Empty_List (List_Id (D)) then
14373 null;
14374
14375 else
14376 N1 := First (List_Id (D));
14377 while Present (N1) loop
14378 Save_References (N1);
14379 Next (N1);
14380 end loop;
14381 end if;
14382
14383 -- Element list or other non-node field, nothing to do
14384
14385 else
14386 null;
14387 end if;
14388 end Save_Global_Descendant;
14389
14390 ---------------------
14391 -- Save_References --
14392 ---------------------
14393
14394 -- This is the recursive procedure that does the work once the enclosing
14395 -- generic scope has been established. We have to treat specially a
14396 -- number of node rewritings that are required by semantic processing
14397 -- and which change the kind of nodes in the generic copy: typically
14398 -- constant-folding, replacing an operator node by a string literal, or
14399 -- a selected component by an expanded name. In each of those cases, the
14400 -- transformation is propagated to the generic unit.
14401
14402 procedure Save_References (N : Node_Id) is
14403 Loc : constant Source_Ptr := Sloc (N);
14404
14405 function Requires_Delayed_Save (Nod : Node_Id) return Boolean;
14406 -- Determine whether arbitrary node Nod requires delayed capture of
14407 -- global references within its aspect specifications.
14408
14409 procedure Save_References_In_Aggregate (N : Node_Id);
14410 -- Save all global references in [extension] aggregate node N
14411
14412 procedure Save_References_In_Char_Lit_Or_Op_Symbol (N : Node_Id);
14413 -- Save all global references in a character literal or operator
14414 -- symbol denoted by N.
14415
14416 procedure Save_References_In_Descendants (N : Node_Id);
14417 -- Save all global references in all descendants of node N
14418
14419 procedure Save_References_In_Identifier (N : Node_Id);
14420 -- Save all global references in identifier node N
14421
14422 procedure Save_References_In_Operator (N : Node_Id);
14423 -- Save all global references in operator node N
14424
14425 procedure Save_References_In_Pragma (Prag : Node_Id);
14426 -- Save all global references found within the expression of pragma
14427 -- Prag.
14428
14429 ---------------------------
14430 -- Requires_Delayed_Save --
14431 ---------------------------
14432
14433 function Requires_Delayed_Save (Nod : Node_Id) return Boolean is
14434 begin
14435 -- Generic packages and subprograms require delayed capture of
14436 -- global references within their aspects due to the timing of
14437 -- annotation analysis.
14438
14439 if Nkind_In (Nod, N_Generic_Package_Declaration,
14440 N_Generic_Subprogram_Declaration,
14441 N_Package_Body,
14442 N_Package_Body_Stub,
14443 N_Subprogram_Body,
14444 N_Subprogram_Body_Stub)
14445 then
14446 -- Since the capture of global references is done on the
14447 -- unanalyzed generic template, there is no information around
14448 -- to infer the context. Use the Associated_Entity linkages to
14449 -- peek into the analyzed generic copy and determine what the
14450 -- template corresponds to.
14451
14452 if Nod = Templ then
14453 return
14454 Is_Generic_Declaration_Or_Body
14455 (Unit_Declaration_Node
14456 (Associated_Entity (Defining_Entity (Nod))));
14457
14458 -- Otherwise the generic unit being processed is not the top
14459 -- level template. It is safe to capture of global references
14460 -- within the generic unit because at this point the top level
14461 -- copy is fully analyzed.
14462
14463 else
14464 return False;
14465 end if;
14466
14467 -- Otherwise capture the global references without interference
14468
14469 else
14470 return False;
14471 end if;
14472 end Requires_Delayed_Save;
14473
14474 ----------------------------------
14475 -- Save_References_In_Aggregate --
14476 ----------------------------------
14477
14478 procedure Save_References_In_Aggregate (N : Node_Id) is
14479 Nam : Node_Id;
14480 Qual : Node_Id := Empty;
14481 Typ : Entity_Id := Empty;
14482
14483 use Atree.Unchecked_Access;
14484 -- This code section is part of implementing an untyped tree
14485 -- traversal, so it needs direct access to node fields.
14486
14487 begin
14488 N2 := Get_Associated_Node (N);
14489
14490 if Present (N2) then
14491 Typ := Etype (N2);
14492
14493 -- In an instance within a generic, use the name of the actual
14494 -- and not the original generic parameter. If the actual is
14495 -- global in the current generic it must be preserved for its
14496 -- instantiation.
14497
14498 if Nkind (Parent (Typ)) = N_Subtype_Declaration
14499 and then Present (Generic_Parent_Type (Parent (Typ)))
14500 then
14501 Typ := Base_Type (Typ);
14502 Set_Etype (N2, Typ);
14503 end if;
14504 end if;
14505
14506 if No (N2) or else No (Typ) or else not Is_Global (Typ) then
14507 Set_Associated_Node (N, Empty);
14508
14509 -- If the aggregate is an actual in a call, it has been
14510 -- resolved in the current context, to some local type. The
14511 -- enclosing call may have been disambiguated by the aggregate,
14512 -- and this disambiguation might fail at instantiation time
14513 -- because the type to which the aggregate did resolve is not
14514 -- preserved. In order to preserve some of this information,
14515 -- wrap the aggregate in a qualified expression, using the id
14516 -- of its type. For further disambiguation we qualify the type
14517 -- name with its scope (if visible) because both id's will have
14518 -- corresponding entities in an instance. This resolves most of
14519 -- the problems with missing type information on aggregates in
14520 -- instances.
14521
14522 if Present (N2)
14523 and then Nkind (N2) = Nkind (N)
14524 and then Nkind (Parent (N2)) in N_Subprogram_Call
14525 and then Present (Typ)
14526 and then Comes_From_Source (Typ)
14527 then
14528 Nam := Make_Identifier (Loc, Chars (Typ));
14529
14530 if Is_Immediately_Visible (Scope (Typ)) then
14531 Nam :=
14532 Make_Selected_Component (Loc,
14533 Prefix =>
14534 Make_Identifier (Loc, Chars (Scope (Typ))),
14535 Selector_Name => Nam);
14536 end if;
14537
14538 Qual :=
14539 Make_Qualified_Expression (Loc,
14540 Subtype_Mark => Nam,
14541 Expression => Relocate_Node (N));
14542 end if;
14543 end if;
14544
14545 Save_Global_Descendant (Field1 (N));
14546 Save_Global_Descendant (Field2 (N));
14547 Save_Global_Descendant (Field3 (N));
14548 Save_Global_Descendant (Field5 (N));
14549
14550 if Present (Qual) then
14551 Rewrite (N, Qual);
14552 end if;
14553 end Save_References_In_Aggregate;
14554
14555 ----------------------------------------------
14556 -- Save_References_In_Char_Lit_Or_Op_Symbol --
14557 ----------------------------------------------
14558
14559 procedure Save_References_In_Char_Lit_Or_Op_Symbol (N : Node_Id) is
14560 begin
14561 if Nkind (N) = Nkind (Get_Associated_Node (N)) then
14562 Reset_Entity (N);
14563
14564 elsif Nkind (N) = N_Operator_Symbol
14565 and then Nkind (Get_Associated_Node (N)) = N_String_Literal
14566 then
14567 Change_Operator_Symbol_To_String_Literal (N);
14568 end if;
14569 end Save_References_In_Char_Lit_Or_Op_Symbol;
14570
14571 ------------------------------------
14572 -- Save_References_In_Descendants --
14573 ------------------------------------
14574
14575 procedure Save_References_In_Descendants (N : Node_Id) is
14576 use Atree.Unchecked_Access;
14577 -- This code section is part of implementing an untyped tree
14578 -- traversal, so it needs direct access to node fields.
14579
14580 begin
14581 Save_Global_Descendant (Field1 (N));
14582 Save_Global_Descendant (Field2 (N));
14583 Save_Global_Descendant (Field3 (N));
14584 Save_Global_Descendant (Field4 (N));
14585 Save_Global_Descendant (Field5 (N));
14586 end Save_References_In_Descendants;
14587
14588 -----------------------------------
14589 -- Save_References_In_Identifier --
14590 -----------------------------------
14591
14592 procedure Save_References_In_Identifier (N : Node_Id) is
14593 begin
14594 -- The node did not undergo a transformation
14595
14596 if Nkind (N) = Nkind (Get_Associated_Node (N)) then
14597
14598 -- If this is a discriminant reference, always save it. It is
14599 -- used in the instance to find the corresponding discriminant
14600 -- positionally rather than by name.
14601
14602 Set_Original_Discriminant
14603 (N, Original_Discriminant (Get_Associated_Node (N)));
14604 Reset_Entity (N);
14605
14606 -- The analysis of the generic copy transformed the identifier
14607 -- into another construct. Propagate the changes to the template.
14608
14609 else
14610 N2 := Get_Associated_Node (N);
14611
14612 -- The identifier denotes a call to a parameterless function.
14613 -- Mark the node as resolved when the function is external.
14614
14615 if Nkind (N2) = N_Function_Call then
14616 E := Entity (Name (N2));
14617
14618 if Present (E) and then Is_Global (E) then
14619 Set_Etype (N, Etype (N2));
14620 else
14621 Set_Associated_Node (N, Empty);
14622 Set_Etype (N, Empty);
14623 end if;
14624
14625 -- The identifier denotes a named number that was constant
14626 -- folded. Preserve the original name for ASIS and undo the
14627 -- constant folding which will be repeated in the instance.
14628
14629 elsif Nkind_In (N2, N_Integer_Literal, N_Real_Literal)
14630 and then Is_Entity_Name (Original_Node (N2))
14631 then
14632 Set_Associated_Node (N, Original_Node (N2));
14633 Reset_Entity (N);
14634
14635 -- The identifier resolved to a string literal. Propagate this
14636 -- information to the generic template.
14637
14638 elsif Nkind (N2) = N_String_Literal then
14639 Rewrite (N, New_Copy (N2));
14640
14641 -- The identifier is rewritten as a dereference if it is the
14642 -- prefix of an implicit dereference. Preserve the original
14643 -- tree as the analysis of the instance will expand the node
14644 -- again, but preserve the resolved entity if it is global.
14645
14646 elsif Nkind (N2) = N_Explicit_Dereference then
14647 if Is_Entity_Name (Prefix (N2))
14648 and then Present (Entity (Prefix (N2)))
14649 and then Is_Global (Entity (Prefix (N2)))
14650 then
14651 Set_Associated_Node (N, Prefix (N2));
14652
14653 elsif Nkind (Prefix (N2)) = N_Function_Call
14654 and then Present (Entity (Name (Prefix (N2))))
14655 and then Is_Global (Entity (Name (Prefix (N2))))
14656 then
14657 Rewrite (N,
14658 Make_Explicit_Dereference (Loc,
14659 Prefix =>
14660 Make_Function_Call (Loc,
14661 Name =>
14662 New_Occurrence_Of
14663 (Entity (Name (Prefix (N2))), Loc))));
14664
14665 else
14666 Set_Associated_Node (N, Empty);
14667 Set_Etype (N, Empty);
14668 end if;
14669
14670 -- The subtype mark of a nominally unconstrained object is
14671 -- rewritten as a subtype indication using the bounds of the
14672 -- expression. Recover the original subtype mark.
14673
14674 elsif Nkind (N2) = N_Subtype_Indication
14675 and then Is_Entity_Name (Original_Node (N2))
14676 then
14677 Set_Associated_Node (N, Original_Node (N2));
14678 Reset_Entity (N);
14679 end if;
14680 end if;
14681 end Save_References_In_Identifier;
14682
14683 ---------------------------------
14684 -- Save_References_In_Operator --
14685 ---------------------------------
14686
14687 procedure Save_References_In_Operator (N : Node_Id) is
14688 begin
14689 -- The node did not undergo a transformation
14690
14691 if Nkind (N) = Nkind (Get_Associated_Node (N)) then
14692 if Nkind (N) = N_Op_Concat then
14693 Set_Is_Component_Left_Opnd (N,
14694 Is_Component_Left_Opnd (Get_Associated_Node (N)));
14695
14696 Set_Is_Component_Right_Opnd (N,
14697 Is_Component_Right_Opnd (Get_Associated_Node (N)));
14698 end if;
14699
14700 Reset_Entity (N);
14701
14702 -- The analysis of the generic copy transformed the operator into
14703 -- some other construct. Propagate the changes to the template.
14704
14705 else
14706 N2 := Get_Associated_Node (N);
14707
14708 -- The operator resoved to a function call
14709
14710 if Nkind (N2) = N_Function_Call then
14711 E := Entity (Name (N2));
14712
14713 if Present (E) and then Is_Global (E) then
14714 Set_Etype (N, Etype (N2));
14715 else
14716 Set_Associated_Node (N, Empty);
14717 Set_Etype (N, Empty);
14718 end if;
14719
14720 -- The operator was folded into a literal
14721
14722 elsif Nkind_In (N2, N_Integer_Literal,
14723 N_Real_Literal,
14724 N_String_Literal)
14725 then
14726 if Present (Original_Node (N2))
14727 and then Nkind (Original_Node (N2)) = Nkind (N)
14728 then
14729 -- Operation was constant-folded. Whenever possible,
14730 -- recover semantic information from unfolded node,
14731 -- for ASIS use.
14732
14733 Set_Associated_Node (N, Original_Node (N2));
14734
14735 if Nkind (N) = N_Op_Concat then
14736 Set_Is_Component_Left_Opnd (N,
14737 Is_Component_Left_Opnd (Get_Associated_Node (N)));
14738 Set_Is_Component_Right_Opnd (N,
14739 Is_Component_Right_Opnd (Get_Associated_Node (N)));
14740 end if;
14741
14742 Reset_Entity (N);
14743
14744 -- Propagate the constant folding back to the template
14745
14746 else
14747 Rewrite (N, New_Copy (N2));
14748 Set_Analyzed (N, False);
14749 end if;
14750
14751 -- The operator was folded into an enumeration literal. Retain
14752 -- the entity to avoid spurious ambiguities if it is overloaded
14753 -- at the point of instantiation or inlining.
14754
14755 elsif Nkind (N2) = N_Identifier
14756 and then Ekind (Entity (N2)) = E_Enumeration_Literal
14757 then
14758 Rewrite (N, New_Copy (N2));
14759 Set_Analyzed (N, False);
14760 end if;
14761 end if;
14762
14763 -- Complete the operands check if node has not been constant
14764 -- folded.
14765
14766 if Nkind (N) in N_Op then
14767 Save_Entity_Descendants (N);
14768 end if;
14769 end Save_References_In_Operator;
14770
14771 -------------------------------
14772 -- Save_References_In_Pragma --
14773 -------------------------------
14774
14775 procedure Save_References_In_Pragma (Prag : Node_Id) is
14776 Context : Node_Id;
14777 Do_Save : Boolean := True;
14778
14779 use Atree.Unchecked_Access;
14780 -- This code section is part of implementing an untyped tree
14781 -- traversal, so it needs direct access to node fields.
14782
14783 begin
14784 -- Do not save global references in pragmas generated from aspects
14785 -- because the pragmas will be regenerated at instantiation time.
14786
14787 if From_Aspect_Specification (Prag) then
14788 Do_Save := False;
14789
14790 -- The capture of global references within contract-related source
14791 -- pragmas associated with generic packages, subprograms or their
14792 -- respective bodies must be delayed due to timing of annotation
14793 -- analysis. Global references are still captured in routine
14794 -- Save_Global_References_In_Contract.
14795
14796 elsif Is_Generic_Contract_Pragma (Prag) and then Prag /= Templ then
14797 if Is_Package_Contract_Annotation (Prag) then
14798 Context := Find_Related_Package_Or_Body (Prag);
14799
14800 else
14801 pragma Assert (Is_Subprogram_Contract_Annotation (Prag));
14802 Context := Find_Related_Subprogram_Or_Body (Prag);
14803 end if;
14804
14805 -- The use of Original_Node accounts for the case when the
14806 -- related context is generic template.
14807
14808 if Requires_Delayed_Save (Original_Node (Context)) then
14809 Do_Save := False;
14810 end if;
14811 end if;
14812
14813 -- For all other cases, save all global references within the
14814 -- descendants, but skip the following semantic fields:
14815
14816 -- Field1 - Next_Pragma
14817 -- Field3 - Corresponding_Aspect
14818 -- Field5 - Next_Rep_Item
14819
14820 if Do_Save then
14821 Save_Global_Descendant (Field2 (Prag));
14822 Save_Global_Descendant (Field4 (Prag));
14823 end if;
14824 end Save_References_In_Pragma;
14825
14826 -- Start of processing for Save_References
14827
14828 begin
14829 if N = Empty then
14830 null;
14831
14832 -- Aggregates
14833
14834 elsif Nkind_In (N, N_Aggregate, N_Extension_Aggregate) then
14835 Save_References_In_Aggregate (N);
14836
14837 -- Character literals, operator symbols
14838
14839 elsif Nkind_In (N, N_Character_Literal, N_Operator_Symbol) then
14840 Save_References_In_Char_Lit_Or_Op_Symbol (N);
14841
14842 -- Defining identifiers
14843
14844 elsif Nkind (N) in N_Entity then
14845 null;
14846
14847 -- Identifiers
14848
14849 elsif Nkind (N) = N_Identifier then
14850 Save_References_In_Identifier (N);
14851
14852 -- Operators
14853
14854 elsif Nkind (N) in N_Op then
14855 Save_References_In_Operator (N);
14856
14857 -- Pragmas
14858
14859 elsif Nkind (N) = N_Pragma then
14860 Save_References_In_Pragma (N);
14861
14862 else
14863 Save_References_In_Descendants (N);
14864 end if;
14865
14866 -- Save all global references found within the aspect specifications
14867 -- of the related node.
14868
14869 if Permits_Aspect_Specifications (N) and then Has_Aspects (N) then
14870
14871 -- The capture of global references within aspects associated with
14872 -- generic packages, subprograms or their bodies must be delayed
14873 -- due to timing of annotation analysis. Global references are
14874 -- still captured in routine Save_Global_References_In_Contract.
14875
14876 if Requires_Delayed_Save (N) then
14877 null;
14878
14879 -- Otherwise save all global references within the aspects
14880
14881 else
14882 Save_Global_References_In_Aspects (N);
14883 end if;
14884 end if;
14885 end Save_References;
14886
14887 -- Start of processing for Save_Global_References
14888
14889 begin
14890 Gen_Scope := Current_Scope;
14891
14892 -- If the generic unit is a child unit, references to entities in the
14893 -- parent are treated as local, because they will be resolved anew in
14894 -- the context of the instance of the parent.
14895
14896 while Is_Child_Unit (Gen_Scope)
14897 and then Ekind (Scope (Gen_Scope)) = E_Generic_Package
14898 loop
14899 Gen_Scope := Scope (Gen_Scope);
14900 end loop;
14901
14902 Save_References (Templ);
14903 end Save_Global_References;
14904
14905 ---------------------------------------
14906 -- Save_Global_References_In_Aspects --
14907 ---------------------------------------
14908
14909 procedure Save_Global_References_In_Aspects (N : Node_Id) is
14910 Asp : Node_Id;
14911 Expr : Node_Id;
14912
14913 begin
14914 Asp := First (Aspect_Specifications (N));
14915 while Present (Asp) loop
14916 Expr := Expression (Asp);
14917
14918 if Present (Expr) then
14919 Save_Global_References (Expr);
14920 end if;
14921
14922 Next (Asp);
14923 end loop;
14924 end Save_Global_References_In_Aspects;
14925
14926 ----------------------------------------
14927 -- Save_Global_References_In_Contract --
14928 ----------------------------------------
14929
14930 procedure Save_Global_References_In_Contract
14931 (Templ : Node_Id;
14932 Gen_Id : Entity_Id)
14933 is
14934 procedure Save_Global_References_In_List (First_Prag : Node_Id);
14935 -- Save all global references in contract-related source pragmas found
14936 -- in the list starting with pragma First_Prag.
14937
14938 ------------------------------------
14939 -- Save_Global_References_In_List --
14940 ------------------------------------
14941
14942 procedure Save_Global_References_In_List (First_Prag : Node_Id) is
14943 Prag : Node_Id;
14944
14945 begin
14946 Prag := First_Prag;
14947 while Present (Prag) loop
14948 if Is_Generic_Contract_Pragma (Prag) then
14949 Save_Global_References (Prag);
14950 end if;
14951
14952 Prag := Next_Pragma (Prag);
14953 end loop;
14954 end Save_Global_References_In_List;
14955
14956 -- Local variables
14957
14958 Items : constant Node_Id := Contract (Defining_Entity (Templ));
14959
14960 -- Start of processing for Save_Global_References_In_Contract
14961
14962 begin
14963 -- The entity of the analyzed generic copy must be on the scope stack
14964 -- to ensure proper detection of global references.
14965
14966 Push_Scope (Gen_Id);
14967
14968 if Permits_Aspect_Specifications (Templ)
14969 and then Has_Aspects (Templ)
14970 then
14971 Save_Global_References_In_Aspects (Templ);
14972 end if;
14973
14974 if Present (Items) then
14975 Save_Global_References_In_List (Pre_Post_Conditions (Items));
14976 Save_Global_References_In_List (Contract_Test_Cases (Items));
14977 Save_Global_References_In_List (Classifications (Items));
14978 end if;
14979
14980 Pop_Scope;
14981 end Save_Global_References_In_Contract;
14982
14983 --------------------------------------
14984 -- Set_Copied_Sloc_For_Inlined_Body --
14985 --------------------------------------
14986
14987 procedure Set_Copied_Sloc_For_Inlined_Body (N : Node_Id; E : Entity_Id) is
14988 begin
14989 Create_Instantiation_Source (N, E, True, S_Adjustment);
14990 end Set_Copied_Sloc_For_Inlined_Body;
14991
14992 ---------------------
14993 -- Set_Instance_Of --
14994 ---------------------
14995
14996 procedure Set_Instance_Of (A : Entity_Id; B : Entity_Id) is
14997 begin
14998 Generic_Renamings.Table (Generic_Renamings.Last) := (A, B, Assoc_Null);
14999 Generic_Renamings_HTable.Set (Generic_Renamings.Last);
15000 Generic_Renamings.Increment_Last;
15001 end Set_Instance_Of;
15002
15003 --------------------
15004 -- Set_Next_Assoc --
15005 --------------------
15006
15007 procedure Set_Next_Assoc (E : Assoc_Ptr; Next : Assoc_Ptr) is
15008 begin
15009 Generic_Renamings.Table (E).Next_In_HTable := Next;
15010 end Set_Next_Assoc;
15011
15012 -------------------
15013 -- Start_Generic --
15014 -------------------
15015
15016 procedure Start_Generic is
15017 begin
15018 -- ??? More things could be factored out in this routine.
15019 -- Should probably be done at a later stage.
15020
15021 Generic_Flags.Append (Inside_A_Generic);
15022 Inside_A_Generic := True;
15023
15024 Expander_Mode_Save_And_Set (False);
15025 end Start_Generic;
15026
15027 ----------------------
15028 -- Set_Instance_Env --
15029 ----------------------
15030
15031 procedure Set_Instance_Env
15032 (Gen_Unit : Entity_Id;
15033 Act_Unit : Entity_Id)
15034 is
15035 Assertion_Status : constant Boolean := Assertions_Enabled;
15036 Save_SPARK_Mode : constant SPARK_Mode_Type := SPARK_Mode;
15037 Save_SPARK_Mode_Pragma : constant Node_Id := SPARK_Mode_Pragma;
15038
15039 begin
15040 -- Regardless of the current mode, predefined units are analyzed in the
15041 -- most current Ada mode, and earlier version Ada checks do not apply
15042 -- to predefined units. Nothing needs to be done for non-internal units.
15043 -- These are always analyzed in the current mode.
15044
15045 if Is_Internal_File_Name
15046 (Fname => Unit_File_Name (Get_Source_Unit (Gen_Unit)),
15047 Renamings_Included => True)
15048 then
15049 Set_Opt_Config_Switches (True, Current_Sem_Unit = Main_Unit);
15050
15051 -- In Ada2012 we may want to enable assertions in an instance of a
15052 -- predefined unit, in which case we need to preserve the current
15053 -- setting for the Assertions_Enabled flag. This will become more
15054 -- critical when pre/postconditions are added to predefined units,
15055 -- as is already the case for some numeric libraries.
15056
15057 if Ada_Version >= Ada_2012 then
15058 Assertions_Enabled := Assertion_Status;
15059 end if;
15060
15061 -- SPARK_Mode for an instance is the one applicable at the point of
15062 -- instantiation.
15063
15064 SPARK_Mode := Save_SPARK_Mode;
15065 SPARK_Mode_Pragma := Save_SPARK_Mode_Pragma;
15066
15067 -- Make sure dynamic elaboration checks are off in SPARK Mode
15068
15069 if SPARK_Mode = On then
15070 Dynamic_Elaboration_Checks := False;
15071 end if;
15072 end if;
15073
15074 Current_Instantiated_Parent :=
15075 (Gen_Id => Gen_Unit,
15076 Act_Id => Act_Unit,
15077 Next_In_HTable => Assoc_Null);
15078 end Set_Instance_Env;
15079
15080 -----------------
15081 -- Switch_View --
15082 -----------------
15083
15084 procedure Switch_View (T : Entity_Id) is
15085 BT : constant Entity_Id := Base_Type (T);
15086 Priv_Elmt : Elmt_Id := No_Elmt;
15087 Priv_Sub : Entity_Id;
15088
15089 begin
15090 -- T may be private but its base type may have been exchanged through
15091 -- some other occurrence, in which case there is nothing to switch
15092 -- besides T itself. Note that a private dependent subtype of a private
15093 -- type might not have been switched even if the base type has been,
15094 -- because of the last branch of Check_Private_View (see comment there).
15095
15096 if not Is_Private_Type (BT) then
15097 Prepend_Elmt (Full_View (T), Exchanged_Views);
15098 Exchange_Declarations (T);
15099 return;
15100 end if;
15101
15102 Priv_Elmt := First_Elmt (Private_Dependents (BT));
15103
15104 if Present (Full_View (BT)) then
15105 Prepend_Elmt (Full_View (BT), Exchanged_Views);
15106 Exchange_Declarations (BT);
15107 end if;
15108
15109 while Present (Priv_Elmt) loop
15110 Priv_Sub := (Node (Priv_Elmt));
15111
15112 -- We avoid flipping the subtype if the Etype of its full view is
15113 -- private because this would result in a malformed subtype. This
15114 -- occurs when the Etype of the subtype full view is the full view of
15115 -- the base type (and since the base types were just switched, the
15116 -- subtype is pointing to the wrong view). This is currently the case
15117 -- for tagged record types, access types (maybe more?) and needs to
15118 -- be resolved. ???
15119
15120 if Present (Full_View (Priv_Sub))
15121 and then not Is_Private_Type (Etype (Full_View (Priv_Sub)))
15122 then
15123 Prepend_Elmt (Full_View (Priv_Sub), Exchanged_Views);
15124 Exchange_Declarations (Priv_Sub);
15125 end if;
15126
15127 Next_Elmt (Priv_Elmt);
15128 end loop;
15129 end Switch_View;
15130
15131 -----------------
15132 -- True_Parent --
15133 -----------------
15134
15135 function True_Parent (N : Node_Id) return Node_Id is
15136 begin
15137 if Nkind (Parent (N)) = N_Subunit then
15138 return Parent (Corresponding_Stub (Parent (N)));
15139 else
15140 return Parent (N);
15141 end if;
15142 end True_Parent;
15143
15144 -----------------------------
15145 -- Valid_Default_Attribute --
15146 -----------------------------
15147
15148 procedure Valid_Default_Attribute (Nam : Entity_Id; Def : Node_Id) is
15149 Attr_Id : constant Attribute_Id :=
15150 Get_Attribute_Id (Attribute_Name (Def));
15151 T : constant Entity_Id := Entity (Prefix (Def));
15152 Is_Fun : constant Boolean := (Ekind (Nam) = E_Function);
15153 F : Entity_Id;
15154 Num_F : Int;
15155 OK : Boolean;
15156
15157 begin
15158 if No (T) or else T = Any_Id then
15159 return;
15160 end if;
15161
15162 Num_F := 0;
15163 F := First_Formal (Nam);
15164 while Present (F) loop
15165 Num_F := Num_F + 1;
15166 Next_Formal (F);
15167 end loop;
15168
15169 case Attr_Id is
15170 when Attribute_Adjacent | Attribute_Ceiling | Attribute_Copy_Sign |
15171 Attribute_Floor | Attribute_Fraction | Attribute_Machine |
15172 Attribute_Model | Attribute_Remainder | Attribute_Rounding |
15173 Attribute_Unbiased_Rounding =>
15174 OK := Is_Fun
15175 and then Num_F = 1
15176 and then Is_Floating_Point_Type (T);
15177
15178 when Attribute_Image | Attribute_Pred | Attribute_Succ |
15179 Attribute_Value | Attribute_Wide_Image |
15180 Attribute_Wide_Value =>
15181 OK := (Is_Fun and then Num_F = 1 and then Is_Scalar_Type (T));
15182
15183 when Attribute_Max | Attribute_Min =>
15184 OK := (Is_Fun and then Num_F = 2 and then Is_Scalar_Type (T));
15185
15186 when Attribute_Input =>
15187 OK := (Is_Fun and then Num_F = 1);
15188
15189 when Attribute_Output | Attribute_Read | Attribute_Write =>
15190 OK := (not Is_Fun and then Num_F = 2);
15191
15192 when others =>
15193 OK := False;
15194 end case;
15195
15196 if not OK then
15197 Error_Msg_N
15198 ("attribute reference has wrong profile for subprogram", Def);
15199 end if;
15200 end Valid_Default_Attribute;
15201
15202 end Sem_Ch12;