[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_Variable (E1, E2 : Entity_Id) return Boolean;
5763 -- Similarly, if the formal comes from a nested formal package, the
5764 -- actual may designate the formal through multiple renamings, which
5765 -- have to be followed to determine the original variable in question.
5766
5767 --------------------
5768 -- Check_Mismatch --
5769 --------------------
5770
5771 procedure Check_Mismatch (B : Boolean) is
5772 Kind : constant Node_Kind := Nkind (Parent (E2));
5773
5774 begin
5775 if Kind = N_Formal_Type_Declaration then
5776 return;
5777
5778 elsif Nkind_In (Kind, N_Formal_Object_Declaration,
5779 N_Formal_Package_Declaration)
5780 or else Kind in N_Formal_Subprogram_Declaration
5781 then
5782 null;
5783
5784 -- Ada 2012: If both formal and actual are incomplete types they
5785 -- are conformant.
5786
5787 elsif Is_Incomplete_Type (E1) and then Is_Incomplete_Type (E2) then
5788 null;
5789
5790 elsif B then
5791 Error_Msg_NE
5792 ("actual for & in actual instance does not match formal",
5793 Parent (Actual_Pack), E1);
5794 end if;
5795 end Check_Mismatch;
5796
5797 --------------------------------
5798 -- Same_Instantiated_Constant --
5799 --------------------------------
5800
5801 function Same_Instantiated_Constant
5802 (E1, E2 : Entity_Id) return Boolean
5803 is
5804 Ent : Entity_Id;
5805
5806 begin
5807 Ent := E2;
5808 while Present (Ent) loop
5809 if E1 = Ent then
5810 return True;
5811
5812 elsif Ekind (Ent) /= E_Constant then
5813 return False;
5814
5815 elsif Is_Entity_Name (Constant_Value (Ent)) then
5816 if Entity (Constant_Value (Ent)) = E1 then
5817 return True;
5818 else
5819 Ent := Entity (Constant_Value (Ent));
5820 end if;
5821
5822 -- The actual may be a constant that has been folded. Recover
5823 -- original name.
5824
5825 elsif Is_Entity_Name (Original_Node (Constant_Value (Ent))) then
5826 Ent := Entity (Original_Node (Constant_Value (Ent)));
5827
5828 else
5829 return False;
5830 end if;
5831 end loop;
5832
5833 return False;
5834 end Same_Instantiated_Constant;
5835
5836 --------------------------------
5837 -- Same_Instantiated_Variable --
5838 --------------------------------
5839
5840 function Same_Instantiated_Variable
5841 (E1, E2 : Entity_Id) return Boolean
5842 is
5843 function Original_Entity (E : Entity_Id) return Entity_Id;
5844 -- Follow chain of renamings to the ultimate ancestor
5845
5846 ---------------------
5847 -- Original_Entity --
5848 ---------------------
5849
5850 function Original_Entity (E : Entity_Id) return Entity_Id is
5851 Orig : Entity_Id;
5852
5853 begin
5854 Orig := E;
5855 while Nkind (Parent (Orig)) = N_Object_Renaming_Declaration
5856 and then Present (Renamed_Object (Orig))
5857 and then Is_Entity_Name (Renamed_Object (Orig))
5858 loop
5859 Orig := Entity (Renamed_Object (Orig));
5860 end loop;
5861
5862 return Orig;
5863 end Original_Entity;
5864
5865 -- Start of processing for Same_Instantiated_Variable
5866
5867 begin
5868 return Ekind (E1) = Ekind (E2)
5869 and then Original_Entity (E1) = Original_Entity (E2);
5870 end Same_Instantiated_Variable;
5871
5872 -- Start of processing for Check_Formal_Package_Instance
5873
5874 begin
5875 while Present (E1) and then Present (E2) loop
5876 exit when Ekind (E1) = E_Package
5877 and then Renamed_Entity (E1) = Renamed_Entity (Actual_Pack);
5878
5879 -- If the formal is the renaming of the formal package, this
5880 -- is the end of its formal part, which may occur before the
5881 -- end of the formal part in the actual in the presence of
5882 -- defaulted parameters in the formal package.
5883
5884 exit when Nkind (Parent (E2)) = N_Package_Renaming_Declaration
5885 and then Renamed_Entity (E2) = Scope (E2);
5886
5887 -- The analysis of the actual may generate additional internal
5888 -- entities. If the formal is defaulted, there is no corresponding
5889 -- analysis and the internal entities must be skipped, until we
5890 -- find corresponding entities again.
5891
5892 if Comes_From_Source (E2)
5893 and then not Comes_From_Source (E1)
5894 and then Chars (E1) /= Chars (E2)
5895 then
5896 while Present (E1) and then Chars (E1) /= Chars (E2) loop
5897 Next_Entity (E1);
5898 end loop;
5899 end if;
5900
5901 if No (E1) then
5902 return;
5903
5904 -- If the formal entity comes from a formal declaration, it was
5905 -- defaulted in the formal package, and no check is needed on it.
5906
5907 elsif Nkind (Parent (E2)) = N_Formal_Object_Declaration then
5908 goto Next_E;
5909
5910 -- Ditto for defaulted formal subprograms.
5911
5912 elsif Is_Overloadable (E1)
5913 and then Nkind (Unit_Declaration_Node (E2)) in
5914 N_Formal_Subprogram_Declaration
5915 then
5916 goto Next_E;
5917
5918 elsif Is_Type (E1) then
5919
5920 -- Subtypes must statically match. E1, E2 are the local entities
5921 -- that are subtypes of the actuals. Itypes generated for other
5922 -- parameters need not be checked, the check will be performed
5923 -- on the parameters themselves.
5924
5925 -- If E2 is a formal type declaration, it is a defaulted parameter
5926 -- and needs no checking.
5927
5928 if not Is_Itype (E1) and then not Is_Itype (E2) then
5929 Check_Mismatch
5930 (not Is_Type (E2)
5931 or else Etype (E1) /= Etype (E2)
5932 or else not Subtypes_Statically_Match (E1, E2));
5933 end if;
5934
5935 elsif Ekind (E1) = E_Constant then
5936
5937 -- IN parameters must denote the same static value, or the same
5938 -- constant, or the literal null.
5939
5940 Expr1 := Expression (Parent (E1));
5941
5942 if Ekind (E2) /= E_Constant then
5943 Check_Mismatch (True);
5944 goto Next_E;
5945 else
5946 Expr2 := Expression (Parent (E2));
5947 end if;
5948
5949 if Is_OK_Static_Expression (Expr1) then
5950 if not Is_OK_Static_Expression (Expr2) then
5951 Check_Mismatch (True);
5952
5953 elsif Is_Discrete_Type (Etype (E1)) then
5954 declare
5955 V1 : constant Uint := Expr_Value (Expr1);
5956 V2 : constant Uint := Expr_Value (Expr2);
5957 begin
5958 Check_Mismatch (V1 /= V2);
5959 end;
5960
5961 elsif Is_Real_Type (Etype (E1)) then
5962 declare
5963 V1 : constant Ureal := Expr_Value_R (Expr1);
5964 V2 : constant Ureal := Expr_Value_R (Expr2);
5965 begin
5966 Check_Mismatch (V1 /= V2);
5967 end;
5968
5969 elsif Is_String_Type (Etype (E1))
5970 and then Nkind (Expr1) = N_String_Literal
5971 then
5972 if Nkind (Expr2) /= N_String_Literal then
5973 Check_Mismatch (True);
5974 else
5975 Check_Mismatch
5976 (not String_Equal (Strval (Expr1), Strval (Expr2)));
5977 end if;
5978 end if;
5979
5980 elsif Is_Entity_Name (Expr1) then
5981 if Is_Entity_Name (Expr2) then
5982 if Entity (Expr1) = Entity (Expr2) then
5983 null;
5984 else
5985 Check_Mismatch
5986 (not Same_Instantiated_Constant
5987 (Entity (Expr1), Entity (Expr2)));
5988 end if;
5989
5990 else
5991 Check_Mismatch (True);
5992 end if;
5993
5994 elsif Is_Entity_Name (Original_Node (Expr1))
5995 and then Is_Entity_Name (Expr2)
5996 and then Same_Instantiated_Constant
5997 (Entity (Original_Node (Expr1)), Entity (Expr2))
5998 then
5999 null;
6000
6001 elsif Nkind (Expr1) = N_Null then
6002 Check_Mismatch (Nkind (Expr1) /= N_Null);
6003
6004 else
6005 Check_Mismatch (True);
6006 end if;
6007
6008 elsif Ekind (E1) = E_Variable then
6009 Check_Mismatch (not Same_Instantiated_Variable (E1, E2));
6010
6011 elsif Ekind (E1) = E_Package then
6012 Check_Mismatch
6013 (Ekind (E1) /= Ekind (E2)
6014 or else Renamed_Object (E1) /= Renamed_Object (E2));
6015
6016 elsif Is_Overloadable (E1) then
6017
6018 -- Verify that the actual subprograms match. Note that actuals
6019 -- that are attributes are rewritten as subprograms. If the
6020 -- subprogram in the formal package is defaulted, no check is
6021 -- needed. Note that this can only happen in Ada 2005 when the
6022 -- formal package can be partially parameterized.
6023
6024 if Nkind (Unit_Declaration_Node (E1)) =
6025 N_Subprogram_Renaming_Declaration
6026 and then From_Default (Unit_Declaration_Node (E1))
6027 then
6028 null;
6029
6030 -- If the formal package has an "others" box association that
6031 -- covers this formal, there is no need for a check either.
6032
6033 elsif Nkind (Unit_Declaration_Node (E2)) in
6034 N_Formal_Subprogram_Declaration
6035 and then Box_Present (Unit_Declaration_Node (E2))
6036 then
6037 null;
6038
6039 -- No check needed if subprogram is a defaulted null procedure
6040
6041 elsif No (Alias (E2))
6042 and then Ekind (E2) = E_Procedure
6043 and then
6044 Null_Present (Specification (Unit_Declaration_Node (E2)))
6045 then
6046 null;
6047
6048 -- Otherwise the actual in the formal and the actual in the
6049 -- instantiation of the formal must match, up to renamings.
6050
6051 else
6052 Check_Mismatch
6053 (Ekind (E2) /= Ekind (E1) or else (Alias (E1)) /= Alias (E2));
6054 end if;
6055
6056 else
6057 raise Program_Error;
6058 end if;
6059
6060 <<Next_E>>
6061 Next_Entity (E1);
6062 Next_Entity (E2);
6063 end loop;
6064 end Check_Formal_Package_Instance;
6065
6066 ---------------------------
6067 -- Check_Formal_Packages --
6068 ---------------------------
6069
6070 procedure Check_Formal_Packages (P_Id : Entity_Id) is
6071 E : Entity_Id;
6072 Formal_P : Entity_Id;
6073
6074 begin
6075 -- Iterate through the declarations in the instance, looking for package
6076 -- renaming declarations that denote instances of formal packages. Stop
6077 -- when we find the renaming of the current package itself. The
6078 -- declaration for a formal package without a box is followed by an
6079 -- internal entity that repeats the instantiation.
6080
6081 E := First_Entity (P_Id);
6082 while Present (E) loop
6083 if Ekind (E) = E_Package then
6084 if Renamed_Object (E) = P_Id then
6085 exit;
6086
6087 elsif Nkind (Parent (E)) /= N_Package_Renaming_Declaration then
6088 null;
6089
6090 elsif not Box_Present (Parent (Associated_Formal_Package (E))) then
6091 Formal_P := Next_Entity (E);
6092 Check_Formal_Package_Instance (Formal_P, E);
6093
6094 -- After checking, remove the internal validating package. It
6095 -- is only needed for semantic checks, and as it may contain
6096 -- generic formal declarations it should not reach gigi.
6097
6098 Remove (Unit_Declaration_Node (Formal_P));
6099 end if;
6100 end if;
6101
6102 Next_Entity (E);
6103 end loop;
6104 end Check_Formal_Packages;
6105
6106 ---------------------------------
6107 -- Check_Forward_Instantiation --
6108 ---------------------------------
6109
6110 procedure Check_Forward_Instantiation (Decl : Node_Id) is
6111 S : Entity_Id;
6112 Gen_Comp : Entity_Id := Cunit_Entity (Get_Source_Unit (Decl));
6113
6114 begin
6115 -- The instantiation appears before the generic body if we are in the
6116 -- scope of the unit containing the generic, either in its spec or in
6117 -- the package body, and before the generic body.
6118
6119 if Ekind (Gen_Comp) = E_Package_Body then
6120 Gen_Comp := Spec_Entity (Gen_Comp);
6121 end if;
6122
6123 if In_Open_Scopes (Gen_Comp)
6124 and then No (Corresponding_Body (Decl))
6125 then
6126 S := Current_Scope;
6127
6128 while Present (S)
6129 and then not Is_Compilation_Unit (S)
6130 and then not Is_Child_Unit (S)
6131 loop
6132 if Ekind (S) = E_Package then
6133 Set_Has_Forward_Instantiation (S);
6134 end if;
6135
6136 S := Scope (S);
6137 end loop;
6138 end if;
6139 end Check_Forward_Instantiation;
6140
6141 ---------------------------
6142 -- Check_Generic_Actuals --
6143 ---------------------------
6144
6145 -- The visibility of the actuals may be different between the point of
6146 -- generic instantiation and the instantiation of the body.
6147
6148 procedure Check_Generic_Actuals
6149 (Instance : Entity_Id;
6150 Is_Formal_Box : Boolean)
6151 is
6152 E : Entity_Id;
6153 Astype : Entity_Id;
6154
6155 function Denotes_Previous_Actual (Typ : Entity_Id) return Boolean;
6156 -- For a formal that is an array type, the component type is often a
6157 -- previous formal in the same unit. The privacy status of the component
6158 -- type will have been examined earlier in the traversal of the
6159 -- corresponding actuals, and this status should not be modified for
6160 -- the array (sub)type itself. However, if the base type of the array
6161 -- (sub)type is private, its full view must be restored in the body to
6162 -- be consistent with subsequent index subtypes, etc.
6163 --
6164 -- To detect this case we have to rescan the list of formals, which is
6165 -- usually short enough to ignore the resulting inefficiency.
6166
6167 -----------------------------
6168 -- Denotes_Previous_Actual --
6169 -----------------------------
6170
6171 function Denotes_Previous_Actual (Typ : Entity_Id) return Boolean is
6172 Prev : Entity_Id;
6173
6174 begin
6175 Prev := First_Entity (Instance);
6176 while Present (Prev) loop
6177 if Is_Type (Prev)
6178 and then Nkind (Parent (Prev)) = N_Subtype_Declaration
6179 and then Is_Entity_Name (Subtype_Indication (Parent (Prev)))
6180 and then Entity (Subtype_Indication (Parent (Prev))) = Typ
6181 then
6182 return True;
6183
6184 elsif Prev = E then
6185 return False;
6186
6187 else
6188 Next_Entity (Prev);
6189 end if;
6190 end loop;
6191
6192 return False;
6193 end Denotes_Previous_Actual;
6194
6195 -- Start of processing for Check_Generic_Actuals
6196
6197 begin
6198 E := First_Entity (Instance);
6199 while Present (E) loop
6200 if Is_Type (E)
6201 and then Nkind (Parent (E)) = N_Subtype_Declaration
6202 and then Scope (Etype (E)) /= Instance
6203 and then Is_Entity_Name (Subtype_Indication (Parent (E)))
6204 then
6205 if Is_Array_Type (E)
6206 and then not Is_Private_Type (Etype (E))
6207 and then Denotes_Previous_Actual (Component_Type (E))
6208 then
6209 null;
6210 else
6211 Check_Private_View (Subtype_Indication (Parent (E)));
6212 end if;
6213
6214 Set_Is_Generic_Actual_Type (E, True);
6215 Set_Is_Hidden (E, False);
6216 Set_Is_Potentially_Use_Visible (E,
6217 In_Use (Instance));
6218
6219 -- We constructed the generic actual type as a subtype of the
6220 -- supplied type. This means that it normally would not inherit
6221 -- subtype specific attributes of the actual, which is wrong for
6222 -- the generic case.
6223
6224 Astype := Ancestor_Subtype (E);
6225
6226 if No (Astype) then
6227
6228 -- This can happen when E is an itype that is the full view of
6229 -- a private type completed, e.g. with a constrained array. In
6230 -- that case, use the first subtype, which will carry size
6231 -- information. The base type itself is unconstrained and will
6232 -- not carry it.
6233
6234 Astype := First_Subtype (E);
6235 end if;
6236
6237 Set_Size_Info (E, (Astype));
6238 Set_RM_Size (E, RM_Size (Astype));
6239 Set_First_Rep_Item (E, First_Rep_Item (Astype));
6240
6241 if Is_Discrete_Or_Fixed_Point_Type (E) then
6242 Set_RM_Size (E, RM_Size (Astype));
6243
6244 -- In nested instances, the base type of an access actual may
6245 -- itself be private, and need to be exchanged.
6246
6247 elsif Is_Access_Type (E)
6248 and then Is_Private_Type (Etype (E))
6249 then
6250 Check_Private_View
6251 (New_Occurrence_Of (Etype (E), Sloc (Instance)));
6252 end if;
6253
6254 elsif Ekind (E) = E_Package then
6255
6256 -- If this is the renaming for the current instance, we're done.
6257 -- Otherwise it is a formal package. If the corresponding formal
6258 -- was declared with a box, the (instantiations of the) generic
6259 -- formal part are also visible. Otherwise, ignore the entity
6260 -- created to validate the actuals.
6261
6262 if Renamed_Object (E) = Instance then
6263 exit;
6264
6265 elsif Nkind (Parent (E)) /= N_Package_Renaming_Declaration then
6266 null;
6267
6268 -- The visibility of a formal of an enclosing generic is already
6269 -- correct.
6270
6271 elsif Denotes_Formal_Package (E) then
6272 null;
6273
6274 elsif Present (Associated_Formal_Package (E))
6275 and then not Is_Generic_Formal (E)
6276 then
6277 if Box_Present (Parent (Associated_Formal_Package (E))) then
6278 Check_Generic_Actuals (Renamed_Object (E), True);
6279
6280 else
6281 Check_Generic_Actuals (Renamed_Object (E), False);
6282 end if;
6283
6284 Set_Is_Hidden (E, False);
6285 end if;
6286
6287 -- If this is a subprogram instance (in a wrapper package) the
6288 -- actual is fully visible.
6289
6290 elsif Is_Wrapper_Package (Instance) then
6291 Set_Is_Hidden (E, False);
6292
6293 -- If the formal package is declared with a box, or if the formal
6294 -- parameter is defaulted, it is visible in the body.
6295
6296 elsif Is_Formal_Box or else Is_Visible_Formal (E) then
6297 Set_Is_Hidden (E, False);
6298 end if;
6299
6300 if Ekind (E) = E_Constant then
6301
6302 -- If the type of the actual is a private type declared in the
6303 -- enclosing scope of the generic unit, the body of the generic
6304 -- sees the full view of the type (because it has to appear in
6305 -- the corresponding package body). If the type is private now,
6306 -- exchange views to restore the proper visiblity in the instance.
6307
6308 declare
6309 Typ : constant Entity_Id := Base_Type (Etype (E));
6310 -- The type of the actual
6311
6312 Gen_Id : Entity_Id;
6313 -- The generic unit
6314
6315 Parent_Scope : Entity_Id;
6316 -- The enclosing scope of the generic unit
6317
6318 begin
6319 if Is_Wrapper_Package (Instance) then
6320 Gen_Id :=
6321 Generic_Parent
6322 (Specification
6323 (Unit_Declaration_Node
6324 (Related_Instance (Instance))));
6325 else
6326 Gen_Id :=
6327 Generic_Parent (Package_Specification (Instance));
6328 end if;
6329
6330 Parent_Scope := Scope (Gen_Id);
6331
6332 -- The exchange is only needed if the generic is defined
6333 -- within a package which is not a common ancestor of the
6334 -- scope of the instance, and is not already in scope.
6335
6336 if Is_Private_Type (Typ)
6337 and then Scope (Typ) = Parent_Scope
6338 and then Scope (Instance) /= Parent_Scope
6339 and then Ekind (Parent_Scope) = E_Package
6340 and then not Is_Child_Unit (Gen_Id)
6341 then
6342 Switch_View (Typ);
6343
6344 -- If the type of the entity is a subtype, it may also have
6345 -- to be made visible, together with the base type of its
6346 -- full view, after exchange.
6347
6348 if Is_Private_Type (Etype (E)) then
6349 Switch_View (Etype (E));
6350 Switch_View (Base_Type (Etype (E)));
6351 end if;
6352 end if;
6353 end;
6354 end if;
6355
6356 Next_Entity (E);
6357 end loop;
6358 end Check_Generic_Actuals;
6359
6360 ------------------------------
6361 -- Check_Generic_Child_Unit --
6362 ------------------------------
6363
6364 procedure Check_Generic_Child_Unit
6365 (Gen_Id : Node_Id;
6366 Parent_Installed : in out Boolean)
6367 is
6368 Loc : constant Source_Ptr := Sloc (Gen_Id);
6369 Gen_Par : Entity_Id := Empty;
6370 E : Entity_Id;
6371 Inst_Par : Entity_Id;
6372 S : Node_Id;
6373
6374 function Find_Generic_Child
6375 (Scop : Entity_Id;
6376 Id : Node_Id) return Entity_Id;
6377 -- Search generic parent for possible child unit with the given name
6378
6379 function In_Enclosing_Instance return Boolean;
6380 -- Within an instance of the parent, the child unit may be denoted by
6381 -- a simple name, or an abbreviated expanded name. Examine enclosing
6382 -- scopes to locate a possible parent instantiation.
6383
6384 ------------------------
6385 -- Find_Generic_Child --
6386 ------------------------
6387
6388 function Find_Generic_Child
6389 (Scop : Entity_Id;
6390 Id : Node_Id) return Entity_Id
6391 is
6392 E : Entity_Id;
6393
6394 begin
6395 -- If entity of name is already set, instance has already been
6396 -- resolved, e.g. in an enclosing instantiation.
6397
6398 if Present (Entity (Id)) then
6399 if Scope (Entity (Id)) = Scop then
6400 return Entity (Id);
6401 else
6402 return Empty;
6403 end if;
6404
6405 else
6406 E := First_Entity (Scop);
6407 while Present (E) loop
6408 if Chars (E) = Chars (Id)
6409 and then Is_Child_Unit (E)
6410 then
6411 if Is_Child_Unit (E)
6412 and then not Is_Visible_Lib_Unit (E)
6413 then
6414 Error_Msg_NE
6415 ("generic child unit& is not visible", Gen_Id, E);
6416 end if;
6417
6418 Set_Entity (Id, E);
6419 return E;
6420 end if;
6421
6422 Next_Entity (E);
6423 end loop;
6424
6425 return Empty;
6426 end if;
6427 end Find_Generic_Child;
6428
6429 ---------------------------
6430 -- In_Enclosing_Instance --
6431 ---------------------------
6432
6433 function In_Enclosing_Instance return Boolean is
6434 Enclosing_Instance : Node_Id;
6435 Instance_Decl : Node_Id;
6436
6437 begin
6438 -- We do not inline any call that contains instantiations, except
6439 -- for instantiations of Unchecked_Conversion, so if we are within
6440 -- an inlined body the current instance does not require parents.
6441
6442 if In_Inlined_Body then
6443 pragma Assert (Chars (Gen_Id) = Name_Unchecked_Conversion);
6444 return False;
6445 end if;
6446
6447 -- Loop to check enclosing scopes
6448
6449 Enclosing_Instance := Current_Scope;
6450 while Present (Enclosing_Instance) loop
6451 Instance_Decl := Unit_Declaration_Node (Enclosing_Instance);
6452
6453 if Ekind (Enclosing_Instance) = E_Package
6454 and then Is_Generic_Instance (Enclosing_Instance)
6455 and then Present
6456 (Generic_Parent (Specification (Instance_Decl)))
6457 then
6458 -- Check whether the generic we are looking for is a child of
6459 -- this instance.
6460
6461 E := Find_Generic_Child
6462 (Generic_Parent (Specification (Instance_Decl)), Gen_Id);
6463 exit when Present (E);
6464
6465 else
6466 E := Empty;
6467 end if;
6468
6469 Enclosing_Instance := Scope (Enclosing_Instance);
6470 end loop;
6471
6472 if No (E) then
6473
6474 -- Not a child unit
6475
6476 Analyze (Gen_Id);
6477 return False;
6478
6479 else
6480 Rewrite (Gen_Id,
6481 Make_Expanded_Name (Loc,
6482 Chars => Chars (E),
6483 Prefix => New_Occurrence_Of (Enclosing_Instance, Loc),
6484 Selector_Name => New_Occurrence_Of (E, Loc)));
6485
6486 Set_Entity (Gen_Id, E);
6487 Set_Etype (Gen_Id, Etype (E));
6488 Parent_Installed := False; -- Already in scope.
6489 return True;
6490 end if;
6491 end In_Enclosing_Instance;
6492
6493 -- Start of processing for Check_Generic_Child_Unit
6494
6495 begin
6496 -- If the name of the generic is given by a selected component, it may
6497 -- be the name of a generic child unit, and the prefix is the name of an
6498 -- instance of the parent, in which case the child unit must be visible.
6499 -- If this instance is not in scope, it must be placed there and removed
6500 -- after instantiation, because what is being instantiated is not the
6501 -- original child, but the corresponding child present in the instance
6502 -- of the parent.
6503
6504 -- If the child is instantiated within the parent, it can be given by
6505 -- a simple name. In this case the instance is already in scope, but
6506 -- the child generic must be recovered from the generic parent as well.
6507
6508 if Nkind (Gen_Id) = N_Selected_Component then
6509 S := Selector_Name (Gen_Id);
6510 Analyze (Prefix (Gen_Id));
6511 Inst_Par := Entity (Prefix (Gen_Id));
6512
6513 if Ekind (Inst_Par) = E_Package
6514 and then Present (Renamed_Object (Inst_Par))
6515 then
6516 Inst_Par := Renamed_Object (Inst_Par);
6517 end if;
6518
6519 if Ekind (Inst_Par) = E_Package then
6520 if Nkind (Parent (Inst_Par)) = N_Package_Specification then
6521 Gen_Par := Generic_Parent (Parent (Inst_Par));
6522
6523 elsif Nkind (Parent (Inst_Par)) = N_Defining_Program_Unit_Name
6524 and then
6525 Nkind (Parent (Parent (Inst_Par))) = N_Package_Specification
6526 then
6527 Gen_Par := Generic_Parent (Parent (Parent (Inst_Par)));
6528 end if;
6529
6530 elsif Ekind (Inst_Par) = E_Generic_Package
6531 and then Nkind (Parent (Gen_Id)) = N_Formal_Package_Declaration
6532 then
6533 -- A formal package may be a real child package, and not the
6534 -- implicit instance within a parent. In this case the child is
6535 -- not visible and has to be retrieved explicitly as well.
6536
6537 Gen_Par := Inst_Par;
6538 end if;
6539
6540 if Present (Gen_Par) then
6541
6542 -- The prefix denotes an instantiation. The entity itself may be a
6543 -- nested generic, or a child unit.
6544
6545 E := Find_Generic_Child (Gen_Par, S);
6546
6547 if Present (E) then
6548 Change_Selected_Component_To_Expanded_Name (Gen_Id);
6549 Set_Entity (Gen_Id, E);
6550 Set_Etype (Gen_Id, Etype (E));
6551 Set_Entity (S, E);
6552 Set_Etype (S, Etype (E));
6553
6554 -- Indicate that this is a reference to the parent
6555
6556 if In_Extended_Main_Source_Unit (Gen_Id) then
6557 Set_Is_Instantiated (Inst_Par);
6558 end if;
6559
6560 -- A common mistake is to replicate the naming scheme of a
6561 -- hierarchy by instantiating a generic child directly, rather
6562 -- than the implicit child in a parent instance:
6563
6564 -- generic .. package Gpar is ..
6565 -- generic .. package Gpar.Child is ..
6566 -- package Par is new Gpar ();
6567
6568 -- with Gpar.Child;
6569 -- package Par.Child is new Gpar.Child ();
6570 -- rather than Par.Child
6571
6572 -- In this case the instantiation is within Par, which is an
6573 -- instance, but Gpar does not denote Par because we are not IN
6574 -- the instance of Gpar, so this is illegal. The test below
6575 -- recognizes this particular case.
6576
6577 if Is_Child_Unit (E)
6578 and then not Comes_From_Source (Entity (Prefix (Gen_Id)))
6579 and then (not In_Instance
6580 or else Nkind (Parent (Parent (Gen_Id))) =
6581 N_Compilation_Unit)
6582 then
6583 Error_Msg_N
6584 ("prefix of generic child unit must be instance of parent",
6585 Gen_Id);
6586 end if;
6587
6588 if not In_Open_Scopes (Inst_Par)
6589 and then Nkind (Parent (Gen_Id)) not in
6590 N_Generic_Renaming_Declaration
6591 then
6592 Install_Parent (Inst_Par);
6593 Parent_Installed := True;
6594
6595 elsif In_Open_Scopes (Inst_Par) then
6596
6597 -- If the parent is already installed, install the actuals
6598 -- for its formal packages. This is necessary when the child
6599 -- instance is a child of the parent instance: in this case,
6600 -- the parent is placed on the scope stack but the formal
6601 -- packages are not made visible.
6602
6603 Install_Formal_Packages (Inst_Par);
6604 end if;
6605
6606 else
6607 -- If the generic parent does not contain an entity that
6608 -- corresponds to the selector, the instance doesn't either.
6609 -- Analyzing the node will yield the appropriate error message.
6610 -- If the entity is not a child unit, then it is an inner
6611 -- generic in the parent.
6612
6613 Analyze (Gen_Id);
6614 end if;
6615
6616 else
6617 Analyze (Gen_Id);
6618
6619 if Is_Child_Unit (Entity (Gen_Id))
6620 and then
6621 Nkind (Parent (Gen_Id)) not in N_Generic_Renaming_Declaration
6622 and then not In_Open_Scopes (Inst_Par)
6623 then
6624 Install_Parent (Inst_Par);
6625 Parent_Installed := True;
6626
6627 -- The generic unit may be the renaming of the implicit child
6628 -- present in an instance. In that case the parent instance is
6629 -- obtained from the name of the renamed entity.
6630
6631 elsif Ekind (Entity (Gen_Id)) = E_Generic_Package
6632 and then Present (Renamed_Entity (Entity (Gen_Id)))
6633 and then Is_Child_Unit (Renamed_Entity (Entity (Gen_Id)))
6634 then
6635 declare
6636 Renamed_Package : constant Node_Id :=
6637 Name (Parent (Entity (Gen_Id)));
6638 begin
6639 if Nkind (Renamed_Package) = N_Expanded_Name then
6640 Inst_Par := Entity (Prefix (Renamed_Package));
6641 Install_Parent (Inst_Par);
6642 Parent_Installed := True;
6643 end if;
6644 end;
6645 end if;
6646 end if;
6647
6648 elsif Nkind (Gen_Id) = N_Expanded_Name then
6649
6650 -- Entity already present, analyze prefix, whose meaning may be
6651 -- an instance in the current context. If it is an instance of
6652 -- a relative within another, the proper parent may still have
6653 -- to be installed, if they are not of the same generation.
6654
6655 Analyze (Prefix (Gen_Id));
6656
6657 -- In the unlikely case that a local declaration hides the name
6658 -- of the parent package, locate it on the homonym chain. If the
6659 -- context is an instance of the parent, the renaming entity is
6660 -- flagged as such.
6661
6662 Inst_Par := Entity (Prefix (Gen_Id));
6663 while Present (Inst_Par)
6664 and then not Is_Package_Or_Generic_Package (Inst_Par)
6665 loop
6666 Inst_Par := Homonym (Inst_Par);
6667 end loop;
6668
6669 pragma Assert (Present (Inst_Par));
6670 Set_Entity (Prefix (Gen_Id), Inst_Par);
6671
6672 if In_Enclosing_Instance then
6673 null;
6674
6675 elsif Present (Entity (Gen_Id))
6676 and then Is_Child_Unit (Entity (Gen_Id))
6677 and then not In_Open_Scopes (Inst_Par)
6678 then
6679 Install_Parent (Inst_Par);
6680 Parent_Installed := True;
6681 end if;
6682
6683 elsif In_Enclosing_Instance then
6684
6685 -- The child unit is found in some enclosing scope
6686
6687 null;
6688
6689 else
6690 Analyze (Gen_Id);
6691
6692 -- If this is the renaming of the implicit child in a parent
6693 -- instance, recover the parent name and install it.
6694
6695 if Is_Entity_Name (Gen_Id) then
6696 E := Entity (Gen_Id);
6697
6698 if Is_Generic_Unit (E)
6699 and then Nkind (Parent (E)) in N_Generic_Renaming_Declaration
6700 and then Is_Child_Unit (Renamed_Object (E))
6701 and then Is_Generic_Unit (Scope (Renamed_Object (E)))
6702 and then Nkind (Name (Parent (E))) = N_Expanded_Name
6703 then
6704 Rewrite (Gen_Id, New_Copy_Tree (Name (Parent (E))));
6705 Inst_Par := Entity (Prefix (Gen_Id));
6706
6707 if not In_Open_Scopes (Inst_Par) then
6708 Install_Parent (Inst_Par);
6709 Parent_Installed := True;
6710 end if;
6711
6712 -- If it is a child unit of a non-generic parent, it may be
6713 -- use-visible and given by a direct name. Install parent as
6714 -- for other cases.
6715
6716 elsif Is_Generic_Unit (E)
6717 and then Is_Child_Unit (E)
6718 and then
6719 Nkind (Parent (Gen_Id)) not in N_Generic_Renaming_Declaration
6720 and then not Is_Generic_Unit (Scope (E))
6721 then
6722 if not In_Open_Scopes (Scope (E)) then
6723 Install_Parent (Scope (E));
6724 Parent_Installed := True;
6725 end if;
6726 end if;
6727 end if;
6728 end if;
6729 end Check_Generic_Child_Unit;
6730
6731 -----------------------------
6732 -- Check_Hidden_Child_Unit --
6733 -----------------------------
6734
6735 procedure Check_Hidden_Child_Unit
6736 (N : Node_Id;
6737 Gen_Unit : Entity_Id;
6738 Act_Decl_Id : Entity_Id)
6739 is
6740 Gen_Id : constant Node_Id := Name (N);
6741
6742 begin
6743 if Is_Child_Unit (Gen_Unit)
6744 and then Is_Child_Unit (Act_Decl_Id)
6745 and then Nkind (Gen_Id) = N_Expanded_Name
6746 and then Entity (Prefix (Gen_Id)) = Scope (Act_Decl_Id)
6747 and then Chars (Gen_Unit) = Chars (Act_Decl_Id)
6748 then
6749 Error_Msg_Node_2 := Scope (Act_Decl_Id);
6750 Error_Msg_NE
6751 ("generic unit & is implicitly declared in &",
6752 Defining_Unit_Name (N), Gen_Unit);
6753 Error_Msg_N ("\instance must have different name",
6754 Defining_Unit_Name (N));
6755 end if;
6756 end Check_Hidden_Child_Unit;
6757
6758 ------------------------
6759 -- Check_Private_View --
6760 ------------------------
6761
6762 procedure Check_Private_View (N : Node_Id) is
6763 T : constant Entity_Id := Etype (N);
6764 BT : Entity_Id;
6765
6766 begin
6767 -- Exchange views if the type was not private in the generic but is
6768 -- private at the point of instantiation. Do not exchange views if
6769 -- the scope of the type is in scope. This can happen if both generic
6770 -- and instance are sibling units, or if type is defined in a parent.
6771 -- In this case the visibility of the type will be correct for all
6772 -- semantic checks.
6773
6774 if Present (T) then
6775 BT := Base_Type (T);
6776
6777 if Is_Private_Type (T)
6778 and then not Has_Private_View (N)
6779 and then Present (Full_View (T))
6780 and then not In_Open_Scopes (Scope (T))
6781 then
6782 -- In the generic, the full type was visible. Save the private
6783 -- entity, for subsequent exchange.
6784
6785 Switch_View (T);
6786
6787 elsif Has_Private_View (N)
6788 and then not Is_Private_Type (T)
6789 and then not Has_Been_Exchanged (T)
6790 and then Etype (Get_Associated_Node (N)) /= T
6791 then
6792 -- Only the private declaration was visible in the generic. If
6793 -- the type appears in a subtype declaration, the subtype in the
6794 -- instance must have a view compatible with that of its parent,
6795 -- which must be exchanged (see corresponding code in Restore_
6796 -- Private_Views). Otherwise, if the type is defined in a parent
6797 -- unit, leave full visibility within instance, which is safe.
6798
6799 if In_Open_Scopes (Scope (Base_Type (T)))
6800 and then not Is_Private_Type (Base_Type (T))
6801 and then Comes_From_Source (Base_Type (T))
6802 then
6803 null;
6804
6805 elsif Nkind (Parent (N)) = N_Subtype_Declaration
6806 or else not In_Private_Part (Scope (Base_Type (T)))
6807 then
6808 Prepend_Elmt (T, Exchanged_Views);
6809 Exchange_Declarations (Etype (Get_Associated_Node (N)));
6810 end if;
6811
6812 -- For composite types with inconsistent representation exchange
6813 -- component types accordingly.
6814
6815 elsif Is_Access_Type (T)
6816 and then Is_Private_Type (Designated_Type (T))
6817 and then not Has_Private_View (N)
6818 and then Present (Full_View (Designated_Type (T)))
6819 then
6820 Switch_View (Designated_Type (T));
6821
6822 elsif Is_Array_Type (T) then
6823 if Is_Private_Type (Component_Type (T))
6824 and then not Has_Private_View (N)
6825 and then Present (Full_View (Component_Type (T)))
6826 then
6827 Switch_View (Component_Type (T));
6828 end if;
6829
6830 -- The normal exchange mechanism relies on the setting of a
6831 -- flag on the reference in the generic. However, an additional
6832 -- mechanism is needed for types that are not explicitly
6833 -- mentioned in the generic, but may be needed in expanded code
6834 -- in the instance. This includes component types of arrays and
6835 -- designated types of access types. This processing must also
6836 -- include the index types of arrays which we take care of here.
6837
6838 declare
6839 Indx : Node_Id;
6840 Typ : Entity_Id;
6841
6842 begin
6843 Indx := First_Index (T);
6844 while Present (Indx) loop
6845 Typ := Base_Type (Etype (Indx));
6846
6847 if Is_Private_Type (Typ)
6848 and then Present (Full_View (Typ))
6849 then
6850 Switch_View (Typ);
6851 end if;
6852
6853 Next_Index (Indx);
6854 end loop;
6855 end;
6856
6857 elsif Is_Private_Type (T)
6858 and then Present (Full_View (T))
6859 and then Is_Array_Type (Full_View (T))
6860 and then Is_Private_Type (Component_Type (Full_View (T)))
6861 then
6862 Switch_View (T);
6863
6864 -- Finally, a non-private subtype may have a private base type, which
6865 -- must be exchanged for consistency. This can happen when a package
6866 -- body is instantiated, when the scope stack is empty but in fact
6867 -- the subtype and the base type are declared in an enclosing scope.
6868
6869 -- Note that in this case we introduce an inconsistency in the view
6870 -- set, because we switch the base type BT, but there could be some
6871 -- private dependent subtypes of BT which remain unswitched. Such
6872 -- subtypes might need to be switched at a later point (see specific
6873 -- provision for that case in Switch_View).
6874
6875 elsif not Is_Private_Type (T)
6876 and then not Has_Private_View (N)
6877 and then Is_Private_Type (BT)
6878 and then Present (Full_View (BT))
6879 and then not Is_Generic_Type (BT)
6880 and then not In_Open_Scopes (BT)
6881 then
6882 Prepend_Elmt (Full_View (BT), Exchanged_Views);
6883 Exchange_Declarations (BT);
6884 end if;
6885 end if;
6886 end Check_Private_View;
6887
6888 -----------------------------
6889 -- Check_Hidden_Primitives --
6890 -----------------------------
6891
6892 function Check_Hidden_Primitives (Assoc_List : List_Id) return Elist_Id is
6893 Actual : Node_Id;
6894 Gen_T : Entity_Id;
6895 Result : Elist_Id := No_Elist;
6896
6897 begin
6898 if No (Assoc_List) then
6899 return No_Elist;
6900 end if;
6901
6902 -- Traverse the list of associations between formals and actuals
6903 -- searching for renamings of tagged types
6904
6905 Actual := First (Assoc_List);
6906 while Present (Actual) loop
6907 if Nkind (Actual) = N_Subtype_Declaration then
6908 Gen_T := Generic_Parent_Type (Actual);
6909
6910 if Present (Gen_T) and then Is_Tagged_Type (Gen_T) then
6911
6912 -- Traverse the list of primitives of the actual types
6913 -- searching for hidden primitives that are visible in the
6914 -- corresponding generic formal; leave them visible and
6915 -- append them to Result to restore their decoration later.
6916
6917 Install_Hidden_Primitives
6918 (Prims_List => Result,
6919 Gen_T => Gen_T,
6920 Act_T => Entity (Subtype_Indication (Actual)));
6921 end if;
6922 end if;
6923
6924 Next (Actual);
6925 end loop;
6926
6927 return Result;
6928 end Check_Hidden_Primitives;
6929
6930 --------------------------
6931 -- Contains_Instance_Of --
6932 --------------------------
6933
6934 function Contains_Instance_Of
6935 (Inner : Entity_Id;
6936 Outer : Entity_Id;
6937 N : Node_Id) return Boolean
6938 is
6939 Elmt : Elmt_Id;
6940 Scop : Entity_Id;
6941
6942 begin
6943 Scop := Outer;
6944
6945 -- Verify that there are no circular instantiations. We check whether
6946 -- the unit contains an instance of the current scope or some enclosing
6947 -- scope (in case one of the instances appears in a subunit). Longer
6948 -- circularities involving subunits might seem too pathological to
6949 -- consider, but they were not too pathological for the authors of
6950 -- DEC bc30vsq, so we loop over all enclosing scopes, and mark all
6951 -- enclosing generic scopes as containing an instance.
6952
6953 loop
6954 -- Within a generic subprogram body, the scope is not generic, to
6955 -- allow for recursive subprograms. Use the declaration to determine
6956 -- whether this is a generic unit.
6957
6958 if Ekind (Scop) = E_Generic_Package
6959 or else (Is_Subprogram (Scop)
6960 and then Nkind (Unit_Declaration_Node (Scop)) =
6961 N_Generic_Subprogram_Declaration)
6962 then
6963 Elmt := First_Elmt (Inner_Instances (Inner));
6964
6965 while Present (Elmt) loop
6966 if Node (Elmt) = Scop then
6967 Error_Msg_Node_2 := Inner;
6968 Error_Msg_NE
6969 ("circular Instantiation: & instantiated within &!",
6970 N, Scop);
6971 return True;
6972
6973 elsif Node (Elmt) = Inner then
6974 return True;
6975
6976 elsif Contains_Instance_Of (Node (Elmt), Scop, N) then
6977 Error_Msg_Node_2 := Inner;
6978 Error_Msg_NE
6979 ("circular Instantiation: & instantiated within &!",
6980 N, Node (Elmt));
6981 return True;
6982 end if;
6983
6984 Next_Elmt (Elmt);
6985 end loop;
6986
6987 -- Indicate that Inner is being instantiated within Scop
6988
6989 Append_Elmt (Inner, Inner_Instances (Scop));
6990 end if;
6991
6992 if Scop = Standard_Standard then
6993 exit;
6994 else
6995 Scop := Scope (Scop);
6996 end if;
6997 end loop;
6998
6999 return False;
7000 end Contains_Instance_Of;
7001
7002 -----------------------
7003 -- Copy_Generic_Node --
7004 -----------------------
7005
7006 function Copy_Generic_Node
7007 (N : Node_Id;
7008 Parent_Id : Node_Id;
7009 Instantiating : Boolean) return Node_Id
7010 is
7011 Ent : Entity_Id;
7012 New_N : Node_Id;
7013
7014 function Copy_Generic_Descendant (D : Union_Id) return Union_Id;
7015 -- Check the given value of one of the Fields referenced by the current
7016 -- node to determine whether to copy it recursively. The field may hold
7017 -- a Node_Id, a List_Id, or an Elist_Id, or a plain value (Sloc, Uint,
7018 -- Char) in which case it need not be copied.
7019
7020 procedure Copy_Descendants;
7021 -- Common utility for various nodes
7022
7023 function Copy_Generic_Elist (E : Elist_Id) return Elist_Id;
7024 -- Make copy of element list
7025
7026 function Copy_Generic_List
7027 (L : List_Id;
7028 Parent_Id : Node_Id) return List_Id;
7029 -- Apply Copy_Node recursively to the members of a node list
7030
7031 function In_Defining_Unit_Name (Nam : Node_Id) return Boolean;
7032 -- True if an identifier is part of the defining program unit name of
7033 -- a child unit. The entity of such an identifier must be kept (for
7034 -- ASIS use) even though as the name of an enclosing generic it would
7035 -- otherwise not be preserved in the generic tree.
7036
7037 ----------------------
7038 -- Copy_Descendants --
7039 ----------------------
7040
7041 procedure Copy_Descendants is
7042 use Atree.Unchecked_Access;
7043 -- This code section is part of the implementation of an untyped
7044 -- tree traversal, so it needs direct access to node fields.
7045
7046 begin
7047 Set_Field1 (New_N, Copy_Generic_Descendant (Field1 (N)));
7048 Set_Field2 (New_N, Copy_Generic_Descendant (Field2 (N)));
7049 Set_Field3 (New_N, Copy_Generic_Descendant (Field3 (N)));
7050 Set_Field4 (New_N, Copy_Generic_Descendant (Field4 (N)));
7051 Set_Field5 (New_N, Copy_Generic_Descendant (Field5 (N)));
7052 end Copy_Descendants;
7053
7054 -----------------------------
7055 -- Copy_Generic_Descendant --
7056 -----------------------------
7057
7058 function Copy_Generic_Descendant (D : Union_Id) return Union_Id is
7059 begin
7060 if D = Union_Id (Empty) then
7061 return D;
7062
7063 elsif D in Node_Range then
7064 return Union_Id
7065 (Copy_Generic_Node (Node_Id (D), New_N, Instantiating));
7066
7067 elsif D in List_Range then
7068 return Union_Id (Copy_Generic_List (List_Id (D), New_N));
7069
7070 elsif D in Elist_Range then
7071 return Union_Id (Copy_Generic_Elist (Elist_Id (D)));
7072
7073 -- Nothing else is copyable (e.g. Uint values), return as is
7074
7075 else
7076 return D;
7077 end if;
7078 end Copy_Generic_Descendant;
7079
7080 ------------------------
7081 -- Copy_Generic_Elist --
7082 ------------------------
7083
7084 function Copy_Generic_Elist (E : Elist_Id) return Elist_Id is
7085 M : Elmt_Id;
7086 L : Elist_Id;
7087
7088 begin
7089 if Present (E) then
7090 L := New_Elmt_List;
7091 M := First_Elmt (E);
7092 while Present (M) loop
7093 Append_Elmt
7094 (Copy_Generic_Node (Node (M), Empty, Instantiating), L);
7095 Next_Elmt (M);
7096 end loop;
7097
7098 return L;
7099
7100 else
7101 return No_Elist;
7102 end if;
7103 end Copy_Generic_Elist;
7104
7105 -----------------------
7106 -- Copy_Generic_List --
7107 -----------------------
7108
7109 function Copy_Generic_List
7110 (L : List_Id;
7111 Parent_Id : Node_Id) return List_Id
7112 is
7113 N : Node_Id;
7114 New_L : List_Id;
7115
7116 begin
7117 if Present (L) then
7118 New_L := New_List;
7119 Set_Parent (New_L, Parent_Id);
7120
7121 N := First (L);
7122 while Present (N) loop
7123 Append (Copy_Generic_Node (N, Empty, Instantiating), New_L);
7124 Next (N);
7125 end loop;
7126
7127 return New_L;
7128
7129 else
7130 return No_List;
7131 end if;
7132 end Copy_Generic_List;
7133
7134 ---------------------------
7135 -- In_Defining_Unit_Name --
7136 ---------------------------
7137
7138 function In_Defining_Unit_Name (Nam : Node_Id) return Boolean is
7139 begin
7140 return
7141 Present (Parent (Nam))
7142 and then (Nkind (Parent (Nam)) = N_Defining_Program_Unit_Name
7143 or else
7144 (Nkind (Parent (Nam)) = N_Expanded_Name
7145 and then In_Defining_Unit_Name (Parent (Nam))));
7146 end In_Defining_Unit_Name;
7147
7148 -- Start of processing for Copy_Generic_Node
7149
7150 begin
7151 if N = Empty then
7152 return N;
7153 end if;
7154
7155 New_N := New_Copy (N);
7156
7157 -- Copy aspects if present
7158
7159 if Has_Aspects (N) then
7160 Set_Has_Aspects (New_N, False);
7161 Set_Aspect_Specifications
7162 (New_N, Copy_Generic_List (Aspect_Specifications (N), Parent_Id));
7163 end if;
7164
7165 if Instantiating then
7166 Adjust_Instantiation_Sloc (New_N, S_Adjustment);
7167 end if;
7168
7169 if not Is_List_Member (N) then
7170 Set_Parent (New_N, Parent_Id);
7171 end if;
7172
7173 -- Special casing for identifiers and other entity names and operators
7174
7175 if Nkind_In (New_N, N_Character_Literal,
7176 N_Expanded_Name,
7177 N_Identifier,
7178 N_Operator_Symbol)
7179 or else Nkind (New_N) in N_Op
7180 then
7181 if not Instantiating then
7182
7183 -- Link both nodes in order to assign subsequently the entity of
7184 -- the copy to the original node, in case this is a global
7185 -- reference.
7186
7187 Set_Associated_Node (N, New_N);
7188
7189 -- If we are within an instantiation, this is a nested generic
7190 -- that has already been analyzed at the point of definition.
7191 -- We must preserve references that were global to the enclosing
7192 -- parent at that point. Other occurrences, whether global or
7193 -- local to the current generic, must be resolved anew, so we
7194 -- reset the entity in the generic copy. A global reference has a
7195 -- smaller depth than the parent, or else the same depth in case
7196 -- both are distinct compilation units.
7197
7198 -- A child unit is implicitly declared within the enclosing parent
7199 -- but is in fact global to it, and must be preserved.
7200
7201 -- It is also possible for Current_Instantiated_Parent to be
7202 -- defined, and for this not to be a nested generic, namely if
7203 -- the unit is loaded through Rtsfind. In that case, the entity of
7204 -- New_N is only a link to the associated node, and not a defining
7205 -- occurrence.
7206
7207 -- The entities for parent units in the defining_program_unit of a
7208 -- generic child unit are established when the context of the unit
7209 -- is first analyzed, before the generic copy is made. They are
7210 -- preserved in the copy for use in ASIS queries.
7211
7212 Ent := Entity (New_N);
7213
7214 if No (Current_Instantiated_Parent.Gen_Id) then
7215 if No (Ent)
7216 or else Nkind (Ent) /= N_Defining_Identifier
7217 or else not In_Defining_Unit_Name (N)
7218 then
7219 Set_Associated_Node (New_N, Empty);
7220 end if;
7221
7222 elsif No (Ent)
7223 or else
7224 not Nkind_In (Ent, N_Defining_Identifier,
7225 N_Defining_Character_Literal,
7226 N_Defining_Operator_Symbol)
7227 or else No (Scope (Ent))
7228 or else
7229 (Scope (Ent) = Current_Instantiated_Parent.Gen_Id
7230 and then not Is_Child_Unit (Ent))
7231 or else
7232 (Scope_Depth (Scope (Ent)) >
7233 Scope_Depth (Current_Instantiated_Parent.Gen_Id)
7234 and then
7235 Get_Source_Unit (Ent) =
7236 Get_Source_Unit (Current_Instantiated_Parent.Gen_Id))
7237 then
7238 Set_Associated_Node (New_N, Empty);
7239 end if;
7240
7241 -- Case of instantiating identifier or some other name or operator
7242
7243 else
7244 -- If the associated node is still defined, the entity in it
7245 -- is global, and must be copied to the instance. If this copy
7246 -- is being made for a body to inline, it is applied to an
7247 -- instantiated tree, and the entity is already present and
7248 -- must be also preserved.
7249
7250 declare
7251 Assoc : constant Node_Id := Get_Associated_Node (N);
7252
7253 begin
7254 if Present (Assoc) then
7255 if Nkind (Assoc) = Nkind (N) then
7256 Set_Entity (New_N, Entity (Assoc));
7257 Check_Private_View (N);
7258
7259 -- The name in the call may be a selected component if the
7260 -- call has not been analyzed yet, as may be the case for
7261 -- pre/post conditions in a generic unit.
7262
7263 elsif Nkind (Assoc) = N_Function_Call
7264 and then Is_Entity_Name (Name (Assoc))
7265 then
7266 Set_Entity (New_N, Entity (Name (Assoc)));
7267
7268 elsif Nkind_In (Assoc, N_Defining_Identifier,
7269 N_Defining_Character_Literal,
7270 N_Defining_Operator_Symbol)
7271 and then Expander_Active
7272 then
7273 -- Inlining case: we are copying a tree that contains
7274 -- global entities, which are preserved in the copy to be
7275 -- used for subsequent inlining.
7276
7277 null;
7278
7279 else
7280 Set_Entity (New_N, Empty);
7281 end if;
7282 end if;
7283 end;
7284 end if;
7285
7286 -- For expanded name, we must copy the Prefix and Selector_Name
7287
7288 if Nkind (N) = N_Expanded_Name then
7289 Set_Prefix
7290 (New_N, Copy_Generic_Node (Prefix (N), New_N, Instantiating));
7291
7292 Set_Selector_Name (New_N,
7293 Copy_Generic_Node (Selector_Name (N), New_N, Instantiating));
7294
7295 -- For operators, we must copy the right operand
7296
7297 elsif Nkind (N) in N_Op then
7298 Set_Right_Opnd (New_N,
7299 Copy_Generic_Node (Right_Opnd (N), New_N, Instantiating));
7300
7301 -- And for binary operators, the left operand as well
7302
7303 if Nkind (N) in N_Binary_Op then
7304 Set_Left_Opnd (New_N,
7305 Copy_Generic_Node (Left_Opnd (N), New_N, Instantiating));
7306 end if;
7307 end if;
7308
7309 -- Establish a link between an entity from the generic template and the
7310 -- corresponding entity in the generic copy to be analyzed.
7311
7312 elsif Nkind (N) in N_Entity then
7313 if not Instantiating then
7314 Set_Associated_Entity (N, New_N);
7315 end if;
7316
7317 -- Clear any existing link the copy may inherit from the replicated
7318 -- generic template entity.
7319
7320 Set_Associated_Entity (New_N, Empty);
7321
7322 -- Special casing for stubs
7323
7324 elsif Nkind (N) in N_Body_Stub then
7325
7326 -- In any case, we must copy the specification or defining
7327 -- identifier as appropriate.
7328
7329 if Nkind (N) = N_Subprogram_Body_Stub then
7330 Set_Specification (New_N,
7331 Copy_Generic_Node (Specification (N), New_N, Instantiating));
7332
7333 else
7334 Set_Defining_Identifier (New_N,
7335 Copy_Generic_Node
7336 (Defining_Identifier (N), New_N, Instantiating));
7337 end if;
7338
7339 -- If we are not instantiating, then this is where we load and
7340 -- analyze subunits, i.e. at the point where the stub occurs. A
7341 -- more permissive system might defer this analysis to the point
7342 -- of instantiation, but this seems too complicated for now.
7343
7344 if not Instantiating then
7345 declare
7346 Subunit_Name : constant Unit_Name_Type := Get_Unit_Name (N);
7347 Subunit : Node_Id;
7348 Unum : Unit_Number_Type;
7349 New_Body : Node_Id;
7350
7351 begin
7352 -- Make sure that, if it is a subunit of the main unit that is
7353 -- preprocessed and if -gnateG is specified, the preprocessed
7354 -- file will be written.
7355
7356 Lib.Analysing_Subunit_Of_Main :=
7357 Lib.In_Extended_Main_Source_Unit (N);
7358 Unum :=
7359 Load_Unit
7360 (Load_Name => Subunit_Name,
7361 Required => False,
7362 Subunit => True,
7363 Error_Node => N);
7364 Lib.Analysing_Subunit_Of_Main := False;
7365
7366 -- If the proper body is not found, a warning message will be
7367 -- emitted when analyzing the stub, or later at the point of
7368 -- instantiation. Here we just leave the stub as is.
7369
7370 if Unum = No_Unit then
7371 Subunits_Missing := True;
7372 goto Subunit_Not_Found;
7373 end if;
7374
7375 Subunit := Cunit (Unum);
7376
7377 if Nkind (Unit (Subunit)) /= N_Subunit then
7378 Error_Msg_N
7379 ("found child unit instead of expected SEPARATE subunit",
7380 Subunit);
7381 Error_Msg_Sloc := Sloc (N);
7382 Error_Msg_N ("\to complete stub #", Subunit);
7383 goto Subunit_Not_Found;
7384 end if;
7385
7386 -- We must create a generic copy of the subunit, in order to
7387 -- perform semantic analysis on it, and we must replace the
7388 -- stub in the original generic unit with the subunit, in order
7389 -- to preserve non-local references within.
7390
7391 -- Only the proper body needs to be copied. Library_Unit and
7392 -- context clause are simply inherited by the generic copy.
7393 -- Note that the copy (which may be recursive if there are
7394 -- nested subunits) must be done first, before attaching it to
7395 -- the enclosing generic.
7396
7397 New_Body :=
7398 Copy_Generic_Node
7399 (Proper_Body (Unit (Subunit)),
7400 Empty, Instantiating => False);
7401
7402 -- Now place the original proper body in the original generic
7403 -- unit. This is a body, not a compilation unit.
7404
7405 Rewrite (N, Proper_Body (Unit (Subunit)));
7406 Set_Is_Compilation_Unit (Defining_Entity (N), False);
7407 Set_Was_Originally_Stub (N);
7408
7409 -- Finally replace the body of the subunit with its copy, and
7410 -- make this new subunit into the library unit of the generic
7411 -- copy, which does not have stubs any longer.
7412
7413 Set_Proper_Body (Unit (Subunit), New_Body);
7414 Set_Library_Unit (New_N, Subunit);
7415 Inherit_Context (Unit (Subunit), N);
7416 end;
7417
7418 -- If we are instantiating, this must be an error case, since
7419 -- otherwise we would have replaced the stub node by the proper body
7420 -- that corresponds. So just ignore it in the copy (i.e. we have
7421 -- copied it, and that is good enough).
7422
7423 else
7424 null;
7425 end if;
7426
7427 <<Subunit_Not_Found>> null;
7428
7429 -- If the node is a compilation unit, it is the subunit of a stub, which
7430 -- has been loaded already (see code below). In this case, the library
7431 -- unit field of N points to the parent unit (which is a compilation
7432 -- unit) and need not (and cannot) be copied.
7433
7434 -- When the proper body of the stub is analyzed, the library_unit link
7435 -- is used to establish the proper context (see sem_ch10).
7436
7437 -- The other fields of a compilation unit are copied as usual
7438
7439 elsif Nkind (N) = N_Compilation_Unit then
7440
7441 -- This code can only be executed when not instantiating, because in
7442 -- the copy made for an instantiation, the compilation unit node has
7443 -- disappeared at the point that a stub is replaced by its proper
7444 -- body.
7445
7446 pragma Assert (not Instantiating);
7447
7448 Set_Context_Items (New_N,
7449 Copy_Generic_List (Context_Items (N), New_N));
7450
7451 Set_Unit (New_N,
7452 Copy_Generic_Node (Unit (N), New_N, False));
7453
7454 Set_First_Inlined_Subprogram (New_N,
7455 Copy_Generic_Node
7456 (First_Inlined_Subprogram (N), New_N, False));
7457
7458 Set_Aux_Decls_Node (New_N,
7459 Copy_Generic_Node (Aux_Decls_Node (N), New_N, False));
7460
7461 -- For an assignment node, the assignment is known to be semantically
7462 -- legal if we are instantiating the template. This avoids incorrect
7463 -- diagnostics in generated code.
7464
7465 elsif Nkind (N) = N_Assignment_Statement then
7466
7467 -- Copy name and expression fields in usual manner
7468
7469 Set_Name (New_N,
7470 Copy_Generic_Node (Name (N), New_N, Instantiating));
7471
7472 Set_Expression (New_N,
7473 Copy_Generic_Node (Expression (N), New_N, Instantiating));
7474
7475 if Instantiating then
7476 Set_Assignment_OK (Name (New_N), True);
7477 end if;
7478
7479 elsif Nkind_In (N, N_Aggregate, N_Extension_Aggregate) then
7480 if not Instantiating then
7481 Set_Associated_Node (N, New_N);
7482
7483 else
7484 if Present (Get_Associated_Node (N))
7485 and then Nkind (Get_Associated_Node (N)) = Nkind (N)
7486 then
7487 -- In the generic the aggregate has some composite type. If at
7488 -- the point of instantiation the type has a private view,
7489 -- install the full view (and that of its ancestors, if any).
7490
7491 declare
7492 T : Entity_Id := (Etype (Get_Associated_Node (New_N)));
7493 Rt : Entity_Id;
7494
7495 begin
7496 if Present (T) and then Is_Private_Type (T) then
7497 Switch_View (T);
7498 end if;
7499
7500 if Present (T)
7501 and then Is_Tagged_Type (T)
7502 and then Is_Derived_Type (T)
7503 then
7504 Rt := Root_Type (T);
7505
7506 loop
7507 T := Etype (T);
7508
7509 if Is_Private_Type (T) then
7510 Switch_View (T);
7511 end if;
7512
7513 exit when T = Rt;
7514 end loop;
7515 end if;
7516 end;
7517 end if;
7518 end if;
7519
7520 -- Do not copy the associated node, which points to the generic copy
7521 -- of the aggregate.
7522
7523 declare
7524 use Atree.Unchecked_Access;
7525 -- This code section is part of the implementation of an untyped
7526 -- tree traversal, so it needs direct access to node fields.
7527
7528 begin
7529 Set_Field1 (New_N, Copy_Generic_Descendant (Field1 (N)));
7530 Set_Field2 (New_N, Copy_Generic_Descendant (Field2 (N)));
7531 Set_Field3 (New_N, Copy_Generic_Descendant (Field3 (N)));
7532 Set_Field5 (New_N, Copy_Generic_Descendant (Field5 (N)));
7533 end;
7534
7535 -- Allocators do not have an identifier denoting the access type, so we
7536 -- must locate it through the expression to check whether the views are
7537 -- consistent.
7538
7539 elsif Nkind (N) = N_Allocator
7540 and then Nkind (Expression (N)) = N_Qualified_Expression
7541 and then Is_Entity_Name (Subtype_Mark (Expression (N)))
7542 and then Instantiating
7543 then
7544 declare
7545 T : constant Node_Id :=
7546 Get_Associated_Node (Subtype_Mark (Expression (N)));
7547 Acc_T : Entity_Id;
7548
7549 begin
7550 if Present (T) then
7551
7552 -- Retrieve the allocator node in the generic copy
7553
7554 Acc_T := Etype (Parent (Parent (T)));
7555
7556 if Present (Acc_T) and then Is_Private_Type (Acc_T) then
7557 Switch_View (Acc_T);
7558 end if;
7559 end if;
7560
7561 Copy_Descendants;
7562 end;
7563
7564 -- For a proper body, we must catch the case of a proper body that
7565 -- replaces a stub. This represents the point at which a separate
7566 -- compilation unit, and hence template file, may be referenced, so we
7567 -- must make a new source instantiation entry for the template of the
7568 -- subunit, and ensure that all nodes in the subunit are adjusted using
7569 -- this new source instantiation entry.
7570
7571 elsif Nkind (N) in N_Proper_Body then
7572 declare
7573 Save_Adjustment : constant Sloc_Adjustment := S_Adjustment;
7574
7575 begin
7576 if Instantiating and then Was_Originally_Stub (N) then
7577 Create_Instantiation_Source
7578 (Instantiation_Node,
7579 Defining_Entity (N),
7580 False,
7581 S_Adjustment);
7582 end if;
7583
7584 -- Now copy the fields of the proper body, using the new
7585 -- adjustment factor if one was needed as per test above.
7586
7587 Copy_Descendants;
7588
7589 -- Restore the original adjustment factor in case changed
7590
7591 S_Adjustment := Save_Adjustment;
7592 end;
7593
7594 elsif Nkind (N) = N_Pragma and then Instantiating then
7595
7596 -- Do not copy Comment or Ident pragmas their content is relevant to
7597 -- the generic unit, not to the instantiating unit.
7598
7599 if Nam_In (Pragma_Name (N), Name_Comment, Name_Ident) then
7600 New_N := Make_Null_Statement (Sloc (N));
7601
7602 -- Do not copy pragmas generated from aspects because the pragmas do
7603 -- not carry any semantic information, plus they will be regenerated
7604 -- in the instance.
7605
7606 elsif From_Aspect_Specification (N) then
7607 New_N := Make_Null_Statement (Sloc (N));
7608
7609 else
7610 Copy_Descendants;
7611 end if;
7612
7613 elsif Nkind_In (N, N_Integer_Literal, N_Real_Literal) then
7614
7615 -- No descendant fields need traversing
7616
7617 null;
7618
7619 elsif Nkind (N) = N_String_Literal
7620 and then Present (Etype (N))
7621 and then Instantiating
7622 then
7623 -- If the string is declared in an outer scope, the string_literal
7624 -- subtype created for it may have the wrong scope. Force reanalysis
7625 -- of the constant to generate a new itype in the proper context.
7626
7627 Set_Etype (New_N, Empty);
7628 Set_Analyzed (New_N, False);
7629
7630 -- For the remaining nodes, copy their descendants recursively
7631
7632 else
7633 Copy_Descendants;
7634
7635 if Instantiating and then Nkind (N) = N_Subprogram_Body then
7636 Set_Generic_Parent (Specification (New_N), N);
7637
7638 -- Should preserve Corresponding_Spec??? (12.3(14))
7639 end if;
7640 end if;
7641
7642 return New_N;
7643 end Copy_Generic_Node;
7644
7645 ----------------------------
7646 -- Denotes_Formal_Package --
7647 ----------------------------
7648
7649 function Denotes_Formal_Package
7650 (Pack : Entity_Id;
7651 On_Exit : Boolean := False;
7652 Instance : Entity_Id := Empty) return Boolean
7653 is
7654 Par : Entity_Id;
7655 Scop : constant Entity_Id := Scope (Pack);
7656 E : Entity_Id;
7657
7658 function Is_Actual_Of_Previous_Formal (P : Entity_Id) return Boolean;
7659 -- The package in question may be an actual for a previous formal
7660 -- package P of the current instance, so examine its actuals as well.
7661 -- This must be recursive over other formal packages.
7662
7663 ----------------------------------
7664 -- Is_Actual_Of_Previous_Formal --
7665 ----------------------------------
7666
7667 function Is_Actual_Of_Previous_Formal (P : Entity_Id) return Boolean is
7668 E1 : Entity_Id;
7669
7670 begin
7671 E1 := First_Entity (P);
7672 while Present (E1) and then E1 /= Instance loop
7673 if Ekind (E1) = E_Package
7674 and then Nkind (Parent (E1)) = N_Package_Renaming_Declaration
7675 then
7676 if Renamed_Object (E1) = Pack then
7677 return True;
7678
7679 elsif E1 = P or else Renamed_Object (E1) = P then
7680 return False;
7681
7682 elsif Is_Actual_Of_Previous_Formal (E1) then
7683 return True;
7684 end if;
7685 end if;
7686
7687 Next_Entity (E1);
7688 end loop;
7689
7690 return False;
7691 end Is_Actual_Of_Previous_Formal;
7692
7693 -- Start of processing for Denotes_Formal_Package
7694
7695 begin
7696 if On_Exit then
7697 Par :=
7698 Instance_Envs.Table
7699 (Instance_Envs.Last).Instantiated_Parent.Act_Id;
7700 else
7701 Par := Current_Instantiated_Parent.Act_Id;
7702 end if;
7703
7704 if Ekind (Scop) = E_Generic_Package
7705 or else Nkind (Unit_Declaration_Node (Scop)) =
7706 N_Generic_Subprogram_Declaration
7707 then
7708 return True;
7709
7710 elsif Nkind (Original_Node (Unit_Declaration_Node (Pack))) =
7711 N_Formal_Package_Declaration
7712 then
7713 return True;
7714
7715 elsif No (Par) then
7716 return False;
7717
7718 else
7719 -- Check whether this package is associated with a formal package of
7720 -- the enclosing instantiation. Iterate over the list of renamings.
7721
7722 E := First_Entity (Par);
7723 while Present (E) loop
7724 if Ekind (E) /= E_Package
7725 or else Nkind (Parent (E)) /= N_Package_Renaming_Declaration
7726 then
7727 null;
7728
7729 elsif Renamed_Object (E) = Par then
7730 return False;
7731
7732 elsif Renamed_Object (E) = Pack then
7733 return True;
7734
7735 elsif Is_Actual_Of_Previous_Formal (E) then
7736 return True;
7737
7738 end if;
7739
7740 Next_Entity (E);
7741 end loop;
7742
7743 return False;
7744 end if;
7745 end Denotes_Formal_Package;
7746
7747 -----------------
7748 -- End_Generic --
7749 -----------------
7750
7751 procedure End_Generic is
7752 begin
7753 -- ??? More things could be factored out in this routine. Should
7754 -- probably be done at a later stage.
7755
7756 Inside_A_Generic := Generic_Flags.Table (Generic_Flags.Last);
7757 Generic_Flags.Decrement_Last;
7758
7759 Expander_Mode_Restore;
7760 end End_Generic;
7761
7762 -------------
7763 -- Earlier --
7764 -------------
7765
7766 function Earlier (N1, N2 : Node_Id) return Boolean is
7767 procedure Find_Depth (P : in out Node_Id; D : in out Integer);
7768 -- Find distance from given node to enclosing compilation unit
7769
7770 ----------------
7771 -- Find_Depth --
7772 ----------------
7773
7774 procedure Find_Depth (P : in out Node_Id; D : in out Integer) is
7775 begin
7776 while Present (P)
7777 and then Nkind (P) /= N_Compilation_Unit
7778 loop
7779 P := True_Parent (P);
7780 D := D + 1;
7781 end loop;
7782 end Find_Depth;
7783
7784 -- Local declarations
7785
7786 D1 : Integer := 0;
7787 D2 : Integer := 0;
7788 P1 : Node_Id := N1;
7789 P2 : Node_Id := N2;
7790 T1 : Source_Ptr;
7791 T2 : Source_Ptr;
7792
7793 -- Start of processing for Earlier
7794
7795 begin
7796 Find_Depth (P1, D1);
7797 Find_Depth (P2, D2);
7798
7799 if P1 /= P2 then
7800 return False;
7801 else
7802 P1 := N1;
7803 P2 := N2;
7804 end if;
7805
7806 while D1 > D2 loop
7807 P1 := True_Parent (P1);
7808 D1 := D1 - 1;
7809 end loop;
7810
7811 while D2 > D1 loop
7812 P2 := True_Parent (P2);
7813 D2 := D2 - 1;
7814 end loop;
7815
7816 -- At this point P1 and P2 are at the same distance from the root.
7817 -- We examine their parents until we find a common declarative list.
7818 -- If we reach the root, N1 and N2 do not descend from the same
7819 -- declarative list (e.g. one is nested in the declarative part and
7820 -- the other is in a block in the statement part) and the earlier
7821 -- one is already frozen.
7822
7823 while not Is_List_Member (P1)
7824 or else not Is_List_Member (P2)
7825 or else List_Containing (P1) /= List_Containing (P2)
7826 loop
7827 P1 := True_Parent (P1);
7828 P2 := True_Parent (P2);
7829
7830 if Nkind (Parent (P1)) = N_Subunit then
7831 P1 := Corresponding_Stub (Parent (P1));
7832 end if;
7833
7834 if Nkind (Parent (P2)) = N_Subunit then
7835 P2 := Corresponding_Stub (Parent (P2));
7836 end if;
7837
7838 if P1 = P2 then
7839 return False;
7840 end if;
7841 end loop;
7842
7843 -- Expanded code usually shares the source location of the original
7844 -- construct it was generated for. This however may not necessarely
7845 -- reflect the true location of the code within the tree.
7846
7847 -- Before comparing the slocs of the two nodes, make sure that we are
7848 -- working with correct source locations. Assume that P1 is to the left
7849 -- of P2. If either one does not come from source, traverse the common
7850 -- list heading towards the other node and locate the first source
7851 -- statement.
7852
7853 -- P1 P2
7854 -- ----+===+===+--------------+===+===+----
7855 -- expanded code expanded code
7856
7857 if not Comes_From_Source (P1) then
7858 while Present (P1) loop
7859
7860 -- Neither P2 nor a source statement were located during the
7861 -- search. If we reach the end of the list, then P1 does not
7862 -- occur earlier than P2.
7863
7864 -- ---->
7865 -- start --- P2 ----- P1 --- end
7866
7867 if No (Next (P1)) then
7868 return False;
7869
7870 -- We encounter P2 while going to the right of the list. This
7871 -- means that P1 does indeed appear earlier.
7872
7873 -- ---->
7874 -- start --- P1 ===== P2 --- end
7875 -- expanded code in between
7876
7877 elsif P1 = P2 then
7878 return True;
7879
7880 -- No need to look any further since we have located a source
7881 -- statement.
7882
7883 elsif Comes_From_Source (P1) then
7884 exit;
7885 end if;
7886
7887 -- Keep going right
7888
7889 Next (P1);
7890 end loop;
7891 end if;
7892
7893 if not Comes_From_Source (P2) then
7894 while Present (P2) loop
7895
7896 -- Neither P1 nor a source statement were located during the
7897 -- search. If we reach the start of the list, then P1 does not
7898 -- occur earlier than P2.
7899
7900 -- <----
7901 -- start --- P2 --- P1 --- end
7902
7903 if No (Prev (P2)) then
7904 return False;
7905
7906 -- We encounter P1 while going to the left of the list. This
7907 -- means that P1 does indeed appear earlier.
7908
7909 -- <----
7910 -- start --- P1 ===== P2 --- end
7911 -- expanded code in between
7912
7913 elsif P2 = P1 then
7914 return True;
7915
7916 -- No need to look any further since we have located a source
7917 -- statement.
7918
7919 elsif Comes_From_Source (P2) then
7920 exit;
7921 end if;
7922
7923 -- Keep going left
7924
7925 Prev (P2);
7926 end loop;
7927 end if;
7928
7929 -- At this point either both nodes came from source or we approximated
7930 -- their source locations through neighbouring source statements.
7931
7932 T1 := Top_Level_Location (Sloc (P1));
7933 T2 := Top_Level_Location (Sloc (P2));
7934
7935 -- When two nodes come from the same instance, they have identical top
7936 -- level locations. To determine proper relation within the tree, check
7937 -- their locations within the template.
7938
7939 if T1 = T2 then
7940 return Sloc (P1) < Sloc (P2);
7941
7942 -- The two nodes either come from unrelated instances or do not come
7943 -- from instantiated code at all.
7944
7945 else
7946 return T1 < T2;
7947 end if;
7948 end Earlier;
7949
7950 ----------------------
7951 -- Find_Actual_Type --
7952 ----------------------
7953
7954 function Find_Actual_Type
7955 (Typ : Entity_Id;
7956 Gen_Type : Entity_Id) return Entity_Id
7957 is
7958 Gen_Scope : constant Entity_Id := Scope (Gen_Type);
7959 T : Entity_Id;
7960
7961 begin
7962 -- Special processing only applies to child units
7963
7964 if not Is_Child_Unit (Gen_Scope) then
7965 return Get_Instance_Of (Typ);
7966
7967 -- If designated or component type is itself a formal of the child unit,
7968 -- its instance is available.
7969
7970 elsif Scope (Typ) = Gen_Scope then
7971 return Get_Instance_Of (Typ);
7972
7973 -- If the array or access type is not declared in the parent unit,
7974 -- no special processing needed.
7975
7976 elsif not Is_Generic_Type (Typ)
7977 and then Scope (Gen_Scope) /= Scope (Typ)
7978 then
7979 return Get_Instance_Of (Typ);
7980
7981 -- Otherwise, retrieve designated or component type by visibility
7982
7983 else
7984 T := Current_Entity (Typ);
7985 while Present (T) loop
7986 if In_Open_Scopes (Scope (T)) then
7987 return T;
7988 elsif Is_Generic_Actual_Type (T) then
7989 return T;
7990 end if;
7991
7992 T := Homonym (T);
7993 end loop;
7994
7995 return Typ;
7996 end if;
7997 end Find_Actual_Type;
7998
7999 ----------------------------
8000 -- Freeze_Subprogram_Body --
8001 ----------------------------
8002
8003 procedure Freeze_Subprogram_Body
8004 (Inst_Node : Node_Id;
8005 Gen_Body : Node_Id;
8006 Pack_Id : Entity_Id)
8007 is
8008 Gen_Unit : constant Entity_Id := Get_Generic_Entity (Inst_Node);
8009 Par : constant Entity_Id := Scope (Gen_Unit);
8010 E_G_Id : Entity_Id;
8011 Enc_G : Entity_Id;
8012 Enc_I : Node_Id;
8013 F_Node : Node_Id;
8014
8015 function Enclosing_Package_Body (N : Node_Id) return Node_Id;
8016 -- Find innermost package body that encloses the given node, and which
8017 -- is not a compilation unit. Freeze nodes for the instance, or for its
8018 -- enclosing body, may be inserted after the enclosing_body of the
8019 -- generic unit. Used to determine proper placement of freeze node for
8020 -- both package and subprogram instances.
8021
8022 function Package_Freeze_Node (B : Node_Id) return Node_Id;
8023 -- Find entity for given package body, and locate or create a freeze
8024 -- node for it.
8025
8026 ----------------------------
8027 -- Enclosing_Package_Body --
8028 ----------------------------
8029
8030 function Enclosing_Package_Body (N : Node_Id) return Node_Id is
8031 P : Node_Id;
8032
8033 begin
8034 P := Parent (N);
8035 while Present (P)
8036 and then Nkind (Parent (P)) /= N_Compilation_Unit
8037 loop
8038 if Nkind (P) = N_Package_Body then
8039 if Nkind (Parent (P)) = N_Subunit then
8040 return Corresponding_Stub (Parent (P));
8041 else
8042 return P;
8043 end if;
8044 end if;
8045
8046 P := True_Parent (P);
8047 end loop;
8048
8049 return Empty;
8050 end Enclosing_Package_Body;
8051
8052 -------------------------
8053 -- Package_Freeze_Node --
8054 -------------------------
8055
8056 function Package_Freeze_Node (B : Node_Id) return Node_Id is
8057 Id : Entity_Id;
8058
8059 begin
8060 if Nkind (B) = N_Package_Body then
8061 Id := Corresponding_Spec (B);
8062 else pragma Assert (Nkind (B) = N_Package_Body_Stub);
8063 Id := Corresponding_Spec (Proper_Body (Unit (Library_Unit (B))));
8064 end if;
8065
8066 Ensure_Freeze_Node (Id);
8067 return Freeze_Node (Id);
8068 end Package_Freeze_Node;
8069
8070 -- Start of processing of Freeze_Subprogram_Body
8071
8072 begin
8073 -- If the instance and the generic body appear within the same unit, and
8074 -- the instance precedes the generic, the freeze node for the instance
8075 -- must appear after that of the generic. If the generic is nested
8076 -- within another instance I2, then current instance must be frozen
8077 -- after I2. In both cases, the freeze nodes are those of enclosing
8078 -- packages. Otherwise, the freeze node is placed at the end of the
8079 -- current declarative part.
8080
8081 Enc_G := Enclosing_Package_Body (Gen_Body);
8082 Enc_I := Enclosing_Package_Body (Inst_Node);
8083 Ensure_Freeze_Node (Pack_Id);
8084 F_Node := Freeze_Node (Pack_Id);
8085
8086 if Is_Generic_Instance (Par)
8087 and then Present (Freeze_Node (Par))
8088 and then In_Same_Declarative_Part (Freeze_Node (Par), Inst_Node)
8089 then
8090 -- The parent was a premature instantiation. Insert freeze node at
8091 -- the end the current declarative part.
8092
8093 if ABE_Is_Certain (Get_Package_Instantiation_Node (Par)) then
8094 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8095
8096 -- Handle the following case:
8097 --
8098 -- package Parent_Inst is new ...
8099 -- Parent_Inst []
8100 --
8101 -- procedure P ... -- this body freezes Parent_Inst
8102 --
8103 -- package Inst is new ...
8104 --
8105 -- In this particular scenario, the freeze node for Inst must be
8106 -- inserted in the same manner as that of Parent_Inst - before the
8107 -- next source body or at the end of the declarative list (body not
8108 -- available). If body P did not exist and Parent_Inst was frozen
8109 -- after Inst, either by a body following Inst or at the end of the
8110 -- declarative region, the freeze node for Inst must be inserted
8111 -- after that of Parent_Inst. This relation is established by
8112 -- comparing the Slocs of Parent_Inst freeze node and Inst.
8113
8114 elsif List_Containing (Get_Package_Instantiation_Node (Par)) =
8115 List_Containing (Inst_Node)
8116 and then Sloc (Freeze_Node (Par)) < Sloc (Inst_Node)
8117 then
8118 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8119
8120 else
8121 Insert_After (Freeze_Node (Par), F_Node);
8122 end if;
8123
8124 -- The body enclosing the instance should be frozen after the body that
8125 -- includes the generic, because the body of the instance may make
8126 -- references to entities therein. If the two are not in the same
8127 -- declarative part, or if the one enclosing the instance is frozen
8128 -- already, freeze the instance at the end of the current declarative
8129 -- part.
8130
8131 elsif Is_Generic_Instance (Par)
8132 and then Present (Freeze_Node (Par))
8133 and then Present (Enc_I)
8134 then
8135 if In_Same_Declarative_Part (Freeze_Node (Par), Enc_I)
8136 or else
8137 (Nkind (Enc_I) = N_Package_Body
8138 and then
8139 In_Same_Declarative_Part (Freeze_Node (Par), Parent (Enc_I)))
8140 then
8141 -- The enclosing package may contain several instances. Rather
8142 -- than computing the earliest point at which to insert its freeze
8143 -- node, we place it at the end of the declarative part of the
8144 -- parent of the generic.
8145
8146 Insert_Freeze_Node_For_Instance
8147 (Freeze_Node (Par), Package_Freeze_Node (Enc_I));
8148 end if;
8149
8150 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8151
8152 elsif Present (Enc_G)
8153 and then Present (Enc_I)
8154 and then Enc_G /= Enc_I
8155 and then Earlier (Inst_Node, Gen_Body)
8156 then
8157 if Nkind (Enc_G) = N_Package_Body then
8158 E_G_Id :=
8159 Corresponding_Spec (Enc_G);
8160 else pragma Assert (Nkind (Enc_G) = N_Package_Body_Stub);
8161 E_G_Id :=
8162 Corresponding_Spec (Proper_Body (Unit (Library_Unit (Enc_G))));
8163 end if;
8164
8165 -- Freeze package that encloses instance, and place node after the
8166 -- package that encloses generic. If enclosing package is already
8167 -- frozen we have to assume it is at the proper place. This may be a
8168 -- potential ABE that requires dynamic checking. Do not add a freeze
8169 -- node if the package that encloses the generic is inside the body
8170 -- that encloses the instance, because the freeze node would be in
8171 -- the wrong scope. Additional contortions needed if the bodies are
8172 -- within a subunit.
8173
8174 declare
8175 Enclosing_Body : Node_Id;
8176
8177 begin
8178 if Nkind (Enc_I) = N_Package_Body_Stub then
8179 Enclosing_Body := Proper_Body (Unit (Library_Unit (Enc_I)));
8180 else
8181 Enclosing_Body := Enc_I;
8182 end if;
8183
8184 if Parent (List_Containing (Enc_G)) /= Enclosing_Body then
8185 Insert_Freeze_Node_For_Instance
8186 (Enc_G, Package_Freeze_Node (Enc_I));
8187 end if;
8188 end;
8189
8190 -- Freeze enclosing subunit before instance
8191
8192 Ensure_Freeze_Node (E_G_Id);
8193
8194 if not Is_List_Member (Freeze_Node (E_G_Id)) then
8195 Insert_After (Enc_G, Freeze_Node (E_G_Id));
8196 end if;
8197
8198 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8199
8200 else
8201 -- If none of the above, insert freeze node at the end of the current
8202 -- declarative part.
8203
8204 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8205 end if;
8206 end Freeze_Subprogram_Body;
8207
8208 ----------------
8209 -- Get_Gen_Id --
8210 ----------------
8211
8212 function Get_Gen_Id (E : Assoc_Ptr) return Entity_Id is
8213 begin
8214 return Generic_Renamings.Table (E).Gen_Id;
8215 end Get_Gen_Id;
8216
8217 ---------------------
8218 -- Get_Instance_Of --
8219 ---------------------
8220
8221 function Get_Instance_Of (A : Entity_Id) return Entity_Id is
8222 Res : constant Assoc_Ptr := Generic_Renamings_HTable.Get (A);
8223
8224 begin
8225 if Res /= Assoc_Null then
8226 return Generic_Renamings.Table (Res).Act_Id;
8227
8228 else
8229 -- On exit, entity is not instantiated: not a generic parameter, or
8230 -- else parameter of an inner generic unit.
8231
8232 return A;
8233 end if;
8234 end Get_Instance_Of;
8235
8236 ------------------------------------
8237 -- Get_Package_Instantiation_Node --
8238 ------------------------------------
8239
8240 function Get_Package_Instantiation_Node (A : Entity_Id) return Node_Id is
8241 Decl : Node_Id := Unit_Declaration_Node (A);
8242 Inst : Node_Id;
8243
8244 begin
8245 -- If the Package_Instantiation attribute has been set on the package
8246 -- entity, then use it directly when it (or its Original_Node) refers
8247 -- to an N_Package_Instantiation node. In principle it should be
8248 -- possible to have this field set in all cases, which should be
8249 -- investigated, and would allow this function to be significantly
8250 -- simplified. ???
8251
8252 Inst := Package_Instantiation (A);
8253
8254 if Present (Inst) then
8255 if Nkind (Inst) = N_Package_Instantiation then
8256 return Inst;
8257
8258 elsif Nkind (Original_Node (Inst)) = N_Package_Instantiation then
8259 return Original_Node (Inst);
8260 end if;
8261 end if;
8262
8263 -- If the instantiation is a compilation unit that does not need body
8264 -- then the instantiation node has been rewritten as a package
8265 -- declaration for the instance, and we return the original node.
8266
8267 -- If it is a compilation unit and the instance node has not been
8268 -- rewritten, then it is still the unit of the compilation. Finally, if
8269 -- a body is present, this is a parent of the main unit whose body has
8270 -- been compiled for inlining purposes, and the instantiation node has
8271 -- been rewritten with the instance body.
8272
8273 -- Otherwise the instantiation node appears after the declaration. If
8274 -- the entity is a formal package, the declaration may have been
8275 -- rewritten as a generic declaration (in the case of a formal with box)
8276 -- or left as a formal package declaration if it has actuals, and is
8277 -- found with a forward search.
8278
8279 if Nkind (Parent (Decl)) = N_Compilation_Unit then
8280 if Nkind (Decl) = N_Package_Declaration
8281 and then Present (Corresponding_Body (Decl))
8282 then
8283 Decl := Unit_Declaration_Node (Corresponding_Body (Decl));
8284 end if;
8285
8286 if Nkind (Original_Node (Decl)) = N_Package_Instantiation then
8287 return Original_Node (Decl);
8288 else
8289 return Unit (Parent (Decl));
8290 end if;
8291
8292 elsif Nkind (Decl) = N_Package_Declaration
8293 and then Nkind (Original_Node (Decl)) = N_Formal_Package_Declaration
8294 then
8295 return Original_Node (Decl);
8296
8297 else
8298 Inst := Next (Decl);
8299 while not Nkind_In (Inst, N_Package_Instantiation,
8300 N_Formal_Package_Declaration)
8301 loop
8302 Next (Inst);
8303 end loop;
8304
8305 return Inst;
8306 end if;
8307 end Get_Package_Instantiation_Node;
8308
8309 ------------------------
8310 -- Has_Been_Exchanged --
8311 ------------------------
8312
8313 function Has_Been_Exchanged (E : Entity_Id) return Boolean is
8314 Next : Elmt_Id;
8315
8316 begin
8317 Next := First_Elmt (Exchanged_Views);
8318 while Present (Next) loop
8319 if Full_View (Node (Next)) = E then
8320 return True;
8321 end if;
8322
8323 Next_Elmt (Next);
8324 end loop;
8325
8326 return False;
8327 end Has_Been_Exchanged;
8328
8329 ----------
8330 -- Hash --
8331 ----------
8332
8333 function Hash (F : Entity_Id) return HTable_Range is
8334 begin
8335 return HTable_Range (F mod HTable_Size);
8336 end Hash;
8337
8338 ------------------------
8339 -- Hide_Current_Scope --
8340 ------------------------
8341
8342 procedure Hide_Current_Scope is
8343 C : constant Entity_Id := Current_Scope;
8344 E : Entity_Id;
8345
8346 begin
8347 Set_Is_Hidden_Open_Scope (C);
8348
8349 E := First_Entity (C);
8350 while Present (E) loop
8351 if Is_Immediately_Visible (E) then
8352 Set_Is_Immediately_Visible (E, False);
8353 Append_Elmt (E, Hidden_Entities);
8354 end if;
8355
8356 Next_Entity (E);
8357 end loop;
8358
8359 -- Make the scope name invisible as well. This is necessary, but might
8360 -- conflict with calls to Rtsfind later on, in case the scope is a
8361 -- predefined one. There is no clean solution to this problem, so for
8362 -- now we depend on the user not redefining Standard itself in one of
8363 -- the parent units.
8364
8365 if Is_Immediately_Visible (C) and then C /= Standard_Standard then
8366 Set_Is_Immediately_Visible (C, False);
8367 Append_Elmt (C, Hidden_Entities);
8368 end if;
8369
8370 end Hide_Current_Scope;
8371
8372 --------------
8373 -- Init_Env --
8374 --------------
8375
8376 procedure Init_Env is
8377 Saved : Instance_Env;
8378
8379 begin
8380 Saved.Instantiated_Parent := Current_Instantiated_Parent;
8381 Saved.Exchanged_Views := Exchanged_Views;
8382 Saved.Hidden_Entities := Hidden_Entities;
8383 Saved.Current_Sem_Unit := Current_Sem_Unit;
8384 Saved.Parent_Unit_Visible := Parent_Unit_Visible;
8385 Saved.Instance_Parent_Unit := Instance_Parent_Unit;
8386
8387 -- Save configuration switches. These may be reset if the unit is a
8388 -- predefined unit, and the current mode is not Ada 2005.
8389
8390 Save_Opt_Config_Switches (Saved.Switches);
8391
8392 Instance_Envs.Append (Saved);
8393
8394 Exchanged_Views := New_Elmt_List;
8395 Hidden_Entities := New_Elmt_List;
8396
8397 -- Make dummy entry for Instantiated parent. If generic unit is legal,
8398 -- this is set properly in Set_Instance_Env.
8399
8400 Current_Instantiated_Parent :=
8401 (Current_Scope, Current_Scope, Assoc_Null);
8402 end Init_Env;
8403
8404 ------------------------------
8405 -- In_Same_Declarative_Part --
8406 ------------------------------
8407
8408 function In_Same_Declarative_Part
8409 (F_Node : Node_Id;
8410 Inst : Node_Id) return Boolean
8411 is
8412 Decls : constant Node_Id := Parent (F_Node);
8413 Nod : Node_Id;
8414
8415 begin
8416 Nod := Parent (Inst);
8417 while Present (Nod) loop
8418 if Nod = Decls then
8419 return True;
8420
8421 elsif Nkind_In (Nod, N_Subprogram_Body,
8422 N_Package_Body,
8423 N_Package_Declaration,
8424 N_Task_Body,
8425 N_Protected_Body,
8426 N_Block_Statement)
8427 then
8428 return False;
8429
8430 elsif Nkind (Nod) = N_Subunit then
8431 Nod := Corresponding_Stub (Nod);
8432
8433 elsif Nkind (Nod) = N_Compilation_Unit then
8434 return False;
8435
8436 else
8437 Nod := Parent (Nod);
8438 end if;
8439 end loop;
8440
8441 return False;
8442 end In_Same_Declarative_Part;
8443
8444 ---------------------
8445 -- In_Main_Context --
8446 ---------------------
8447
8448 function In_Main_Context (E : Entity_Id) return Boolean is
8449 Context : List_Id;
8450 Clause : Node_Id;
8451 Nam : Node_Id;
8452
8453 begin
8454 if not Is_Compilation_Unit (E)
8455 or else Ekind (E) /= E_Package
8456 or else In_Private_Part (E)
8457 then
8458 return False;
8459 end if;
8460
8461 Context := Context_Items (Cunit (Main_Unit));
8462
8463 Clause := First (Context);
8464 while Present (Clause) loop
8465 if Nkind (Clause) = N_With_Clause then
8466 Nam := Name (Clause);
8467
8468 -- If the current scope is part of the context of the main unit,
8469 -- analysis of the corresponding with_clause is not complete, and
8470 -- the entity is not set. We use the Chars field directly, which
8471 -- might produce false positives in rare cases, but guarantees
8472 -- that we produce all the instance bodies we will need.
8473
8474 if (Is_Entity_Name (Nam) and then Chars (Nam) = Chars (E))
8475 or else (Nkind (Nam) = N_Selected_Component
8476 and then Chars (Selector_Name (Nam)) = Chars (E))
8477 then
8478 return True;
8479 end if;
8480 end if;
8481
8482 Next (Clause);
8483 end loop;
8484
8485 return False;
8486 end In_Main_Context;
8487
8488 ---------------------
8489 -- Inherit_Context --
8490 ---------------------
8491
8492 procedure Inherit_Context (Gen_Decl : Node_Id; Inst : Node_Id) is
8493 Current_Context : List_Id;
8494 Current_Unit : Node_Id;
8495 Item : Node_Id;
8496 New_I : Node_Id;
8497
8498 Clause : Node_Id;
8499 OK : Boolean;
8500 Lib_Unit : Node_Id;
8501
8502 begin
8503 if Nkind (Parent (Gen_Decl)) = N_Compilation_Unit then
8504
8505 -- The inherited context is attached to the enclosing compilation
8506 -- unit. This is either the main unit, or the declaration for the
8507 -- main unit (in case the instantiation appears within the package
8508 -- declaration and the main unit is its body).
8509
8510 Current_Unit := Parent (Inst);
8511 while Present (Current_Unit)
8512 and then Nkind (Current_Unit) /= N_Compilation_Unit
8513 loop
8514 Current_Unit := Parent (Current_Unit);
8515 end loop;
8516
8517 Current_Context := Context_Items (Current_Unit);
8518
8519 Item := First (Context_Items (Parent (Gen_Decl)));
8520 while Present (Item) loop
8521 if Nkind (Item) = N_With_Clause then
8522 Lib_Unit := Library_Unit (Item);
8523
8524 -- Take care to prevent direct cyclic with's
8525
8526 if Lib_Unit /= Current_Unit then
8527
8528 -- Do not add a unit if it is already in the context
8529
8530 Clause := First (Current_Context);
8531 OK := True;
8532 while Present (Clause) loop
8533 if Nkind (Clause) = N_With_Clause and then
8534 Library_Unit (Clause) = Lib_Unit
8535 then
8536 OK := False;
8537 exit;
8538 end if;
8539
8540 Next (Clause);
8541 end loop;
8542
8543 if OK then
8544 New_I := New_Copy (Item);
8545 Set_Implicit_With (New_I, True);
8546 Set_Implicit_With_From_Instantiation (New_I, True);
8547 Append (New_I, Current_Context);
8548 end if;
8549 end if;
8550 end if;
8551
8552 Next (Item);
8553 end loop;
8554 end if;
8555 end Inherit_Context;
8556
8557 ----------------
8558 -- Initialize --
8559 ----------------
8560
8561 procedure Initialize is
8562 begin
8563 Generic_Renamings.Init;
8564 Instance_Envs.Init;
8565 Generic_Flags.Init;
8566 Generic_Renamings_HTable.Reset;
8567 Circularity_Detected := False;
8568 Exchanged_Views := No_Elist;
8569 Hidden_Entities := No_Elist;
8570 end Initialize;
8571
8572 -------------------------------------
8573 -- Insert_Freeze_Node_For_Instance --
8574 -------------------------------------
8575
8576 procedure Insert_Freeze_Node_For_Instance
8577 (N : Node_Id;
8578 F_Node : Node_Id)
8579 is
8580 Decl : Node_Id;
8581 Decls : List_Id;
8582 Inst : Entity_Id;
8583 Par_N : Node_Id;
8584
8585 function Enclosing_Body (N : Node_Id) return Node_Id;
8586 -- Find enclosing package or subprogram body, if any. Freeze node may
8587 -- be placed at end of current declarative list if previous instance
8588 -- and current one have different enclosing bodies.
8589
8590 function Previous_Instance (Gen : Entity_Id) return Entity_Id;
8591 -- Find the local instance, if any, that declares the generic that is
8592 -- being instantiated. If present, the freeze node for this instance
8593 -- must follow the freeze node for the previous instance.
8594
8595 --------------------
8596 -- Enclosing_Body --
8597 --------------------
8598
8599 function Enclosing_Body (N : Node_Id) return Node_Id is
8600 P : Node_Id;
8601
8602 begin
8603 P := Parent (N);
8604 while Present (P)
8605 and then Nkind (Parent (P)) /= N_Compilation_Unit
8606 loop
8607 if Nkind_In (P, N_Package_Body, N_Subprogram_Body) then
8608 if Nkind (Parent (P)) = N_Subunit then
8609 return Corresponding_Stub (Parent (P));
8610 else
8611 return P;
8612 end if;
8613 end if;
8614
8615 P := True_Parent (P);
8616 end loop;
8617
8618 return Empty;
8619 end Enclosing_Body;
8620
8621 -----------------------
8622 -- Previous_Instance --
8623 -----------------------
8624
8625 function Previous_Instance (Gen : Entity_Id) return Entity_Id is
8626 S : Entity_Id;
8627
8628 begin
8629 S := Scope (Gen);
8630 while Present (S) and then S /= Standard_Standard loop
8631 if Is_Generic_Instance (S)
8632 and then In_Same_Source_Unit (S, N)
8633 then
8634 return S;
8635 end if;
8636
8637 S := Scope (S);
8638 end loop;
8639
8640 return Empty;
8641 end Previous_Instance;
8642
8643 -- Start of processing for Insert_Freeze_Node_For_Instance
8644
8645 begin
8646 if not Is_List_Member (F_Node) then
8647 Decl := N;
8648 Decls := List_Containing (N);
8649 Inst := Entity (F_Node);
8650 Par_N := Parent (Decls);
8651
8652 -- When processing a subprogram instantiation, utilize the actual
8653 -- subprogram instantiation rather than its package wrapper as it
8654 -- carries all the context information.
8655
8656 if Is_Wrapper_Package (Inst) then
8657 Inst := Related_Instance (Inst);
8658 end if;
8659
8660 -- If this is a package instance, check whether the generic is
8661 -- declared in a previous instance and the current instance is
8662 -- not within the previous one.
8663
8664 if Present (Generic_Parent (Parent (Inst)))
8665 and then Is_In_Main_Unit (N)
8666 then
8667 declare
8668 Enclosing_N : constant Node_Id := Enclosing_Body (N);
8669 Par_I : constant Entity_Id :=
8670 Previous_Instance
8671 (Generic_Parent (Parent (Inst)));
8672 Scop : Entity_Id;
8673
8674 begin
8675 if Present (Par_I)
8676 and then Earlier (N, Freeze_Node (Par_I))
8677 then
8678 Scop := Scope (Inst);
8679
8680 -- If the current instance is within the one that contains
8681 -- the generic, the freeze node for the current one must
8682 -- appear in the current declarative part. Ditto, if the
8683 -- current instance is within another package instance or
8684 -- within a body that does not enclose the current instance.
8685 -- In these three cases the freeze node of the previous
8686 -- instance is not relevant.
8687
8688 while Present (Scop) and then Scop /= Standard_Standard loop
8689 exit when Scop = Par_I
8690 or else
8691 (Is_Generic_Instance (Scop)
8692 and then Scope_Depth (Scop) > Scope_Depth (Par_I));
8693 Scop := Scope (Scop);
8694 end loop;
8695
8696 -- Previous instance encloses current instance
8697
8698 if Scop = Par_I then
8699 null;
8700
8701 -- If the next node is a source body we must freeze in
8702 -- the current scope as well.
8703
8704 elsif Present (Next (N))
8705 and then Nkind_In (Next (N), N_Subprogram_Body,
8706 N_Package_Body)
8707 and then Comes_From_Source (Next (N))
8708 then
8709 null;
8710
8711 -- Current instance is within an unrelated instance
8712
8713 elsif Is_Generic_Instance (Scop) then
8714 null;
8715
8716 -- Current instance is within an unrelated body
8717
8718 elsif Present (Enclosing_N)
8719 and then Enclosing_N /= Enclosing_Body (Par_I)
8720 then
8721 null;
8722
8723 else
8724 Insert_After (Freeze_Node (Par_I), F_Node);
8725 return;
8726 end if;
8727 end if;
8728 end;
8729 end if;
8730
8731 -- When the instantiation occurs in a package declaration, append the
8732 -- freeze node to the private declarations (if any).
8733
8734 if Nkind (Par_N) = N_Package_Specification
8735 and then Decls = Visible_Declarations (Par_N)
8736 and then Present (Private_Declarations (Par_N))
8737 and then not Is_Empty_List (Private_Declarations (Par_N))
8738 then
8739 Decls := Private_Declarations (Par_N);
8740 Decl := First (Decls);
8741 end if;
8742
8743 -- Determine the proper freeze point of a package instantiation. We
8744 -- adhere to the general rule of a package or subprogram body causing
8745 -- freezing of anything before it in the same declarative region. In
8746 -- this case, the proper freeze point of a package instantiation is
8747 -- before the first source body which follows, or before a stub. This
8748 -- ensures that entities coming from the instance are already frozen
8749 -- and usable in source bodies.
8750
8751 if Nkind (Par_N) /= N_Package_Declaration
8752 and then Ekind (Inst) = E_Package
8753 and then Is_Generic_Instance (Inst)
8754 and then
8755 not In_Same_Source_Unit (Generic_Parent (Parent (Inst)), Inst)
8756 then
8757 while Present (Decl) loop
8758 if (Nkind (Decl) in N_Unit_Body
8759 or else
8760 Nkind (Decl) in N_Body_Stub)
8761 and then Comes_From_Source (Decl)
8762 then
8763 Insert_Before (Decl, F_Node);
8764 return;
8765 end if;
8766
8767 Next (Decl);
8768 end loop;
8769 end if;
8770
8771 -- In a package declaration, or if no previous body, insert at end
8772 -- of list.
8773
8774 Set_Sloc (F_Node, Sloc (Last (Decls)));
8775 Insert_After (Last (Decls), F_Node);
8776 end if;
8777 end Insert_Freeze_Node_For_Instance;
8778
8779 ------------------
8780 -- Install_Body --
8781 ------------------
8782
8783 procedure Install_Body
8784 (Act_Body : Node_Id;
8785 N : Node_Id;
8786 Gen_Body : Node_Id;
8787 Gen_Decl : Node_Id)
8788 is
8789 Act_Id : constant Entity_Id := Corresponding_Spec (Act_Body);
8790 Act_Unit : constant Node_Id := Unit (Cunit (Get_Source_Unit (N)));
8791 Gen_Id : constant Entity_Id := Corresponding_Spec (Gen_Body);
8792 Par : constant Entity_Id := Scope (Gen_Id);
8793 Gen_Unit : constant Node_Id :=
8794 Unit (Cunit (Get_Source_Unit (Gen_Decl)));
8795 Orig_Body : Node_Id := Gen_Body;
8796 F_Node : Node_Id;
8797 Body_Unit : Node_Id;
8798
8799 Must_Delay : Boolean;
8800
8801 function In_Same_Enclosing_Subp return Boolean;
8802 -- Check whether instance and generic body are within same subprogram.
8803
8804 function True_Sloc (N : Node_Id) return Source_Ptr;
8805 -- If the instance is nested inside a generic unit, the Sloc of the
8806 -- instance indicates the place of the original definition, not the
8807 -- point of the current enclosing instance. Pending a better usage of
8808 -- Slocs to indicate instantiation places, we determine the place of
8809 -- origin of a node by finding the maximum sloc of any ancestor node.
8810 -- Why is this not equivalent to Top_Level_Location ???
8811
8812 ----------------------------
8813 -- In_Same_Enclosing_Subp --
8814 ----------------------------
8815
8816 function In_Same_Enclosing_Subp return Boolean is
8817 Scop : Entity_Id;
8818 Subp : Entity_Id;
8819
8820 begin
8821 Scop := Scope (Act_Id);
8822 while Scop /= Standard_Standard
8823 and then not Is_Overloadable (Scop)
8824 loop
8825 Scop := Scope (Scop);
8826 end loop;
8827
8828 if Scop = Standard_Standard then
8829 return False;
8830 else
8831 Subp := Scop;
8832 end if;
8833
8834 Scop := Scope (Gen_Id);
8835 while Scop /= Standard_Standard loop
8836 if Scop = Subp then
8837 return True;
8838 else
8839 Scop := Scope (Scop);
8840 end if;
8841 end loop;
8842
8843 return False;
8844 end In_Same_Enclosing_Subp;
8845
8846 ---------------
8847 -- True_Sloc --
8848 ---------------
8849
8850 function True_Sloc (N : Node_Id) return Source_Ptr is
8851 Res : Source_Ptr;
8852 N1 : Node_Id;
8853
8854 begin
8855 Res := Sloc (N);
8856 N1 := N;
8857 while Present (N1) and then N1 /= Act_Unit loop
8858 if Sloc (N1) > Res then
8859 Res := Sloc (N1);
8860 end if;
8861
8862 N1 := Parent (N1);
8863 end loop;
8864
8865 return Res;
8866 end True_Sloc;
8867
8868 -- Start of processing for Install_Body
8869
8870 begin
8871 -- Handle first the case of an instance with incomplete actual types.
8872 -- The instance body cannot be placed after the declaration because
8873 -- full views have not been seen yet. Any use of the non-limited views
8874 -- in the instance body requires the presence of a regular with_clause
8875 -- in the enclosing unit, and will fail if this with_clause is missing.
8876 -- We place the instance body at the beginning of the enclosing body,
8877 -- which is the unit being compiled. The freeze node for the instance
8878 -- is then placed after the instance body.
8879
8880 if not Is_Empty_Elmt_List (Incomplete_Actuals (Act_Id))
8881 and then Expander_Active
8882 and then Ekind (Scope (Act_Id)) = E_Package
8883 then
8884 declare
8885 Scop : constant Entity_Id := Scope (Act_Id);
8886 Body_Id : constant Node_Id :=
8887 Corresponding_Body (Unit_Declaration_Node (Scop));
8888
8889 begin
8890 Ensure_Freeze_Node (Act_Id);
8891 F_Node := Freeze_Node (Act_Id);
8892 if Present (Body_Id) then
8893 Set_Is_Frozen (Act_Id, False);
8894 Prepend (Act_Body, Declarations (Parent (Body_Id)));
8895 if Is_List_Member (F_Node) then
8896 Remove (F_Node);
8897 end if;
8898
8899 Insert_After (Act_Body, F_Node);
8900 end if;
8901 end;
8902 return;
8903 end if;
8904
8905 -- If the body is a subunit, the freeze point is the corresponding stub
8906 -- in the current compilation, not the subunit itself.
8907
8908 if Nkind (Parent (Gen_Body)) = N_Subunit then
8909 Orig_Body := Corresponding_Stub (Parent (Gen_Body));
8910 else
8911 Orig_Body := Gen_Body;
8912 end if;
8913
8914 Body_Unit := Unit (Cunit (Get_Source_Unit (Orig_Body)));
8915
8916 -- If the instantiation and the generic definition appear in the same
8917 -- package declaration, this is an early instantiation. If they appear
8918 -- in the same declarative part, it is an early instantiation only if
8919 -- the generic body appears textually later, and the generic body is
8920 -- also in the main unit.
8921
8922 -- If instance is nested within a subprogram, and the generic body
8923 -- is not, the instance is delayed because the enclosing body is. If
8924 -- instance and body are within the same scope, or the same subprogram
8925 -- body, indicate explicitly that the instance is delayed.
8926
8927 Must_Delay :=
8928 (Gen_Unit = Act_Unit
8929 and then (Nkind_In (Gen_Unit, N_Package_Declaration,
8930 N_Generic_Package_Declaration)
8931 or else (Gen_Unit = Body_Unit
8932 and then True_Sloc (N) < Sloc (Orig_Body)))
8933 and then Is_In_Main_Unit (Gen_Unit)
8934 and then (Scope (Act_Id) = Scope (Gen_Id)
8935 or else In_Same_Enclosing_Subp));
8936
8937 -- If this is an early instantiation, the freeze node is placed after
8938 -- the generic body. Otherwise, if the generic appears in an instance,
8939 -- we cannot freeze the current instance until the outer one is frozen.
8940 -- This is only relevant if the current instance is nested within some
8941 -- inner scope not itself within the outer instance. If this scope is
8942 -- a package body in the same declarative part as the outer instance,
8943 -- then that body needs to be frozen after the outer instance. Finally,
8944 -- if no delay is needed, we place the freeze node at the end of the
8945 -- current declarative part.
8946
8947 if Expander_Active then
8948 Ensure_Freeze_Node (Act_Id);
8949 F_Node := Freeze_Node (Act_Id);
8950
8951 if Must_Delay then
8952 Insert_After (Orig_Body, F_Node);
8953
8954 elsif Is_Generic_Instance (Par)
8955 and then Present (Freeze_Node (Par))
8956 and then Scope (Act_Id) /= Par
8957 then
8958 -- Freeze instance of inner generic after instance of enclosing
8959 -- generic.
8960
8961 if In_Same_Declarative_Part (Freeze_Node (Par), N) then
8962
8963 -- Handle the following case:
8964
8965 -- package Parent_Inst is new ...
8966 -- Parent_Inst []
8967
8968 -- procedure P ... -- this body freezes Parent_Inst
8969
8970 -- package Inst is new ...
8971
8972 -- In this particular scenario, the freeze node for Inst must
8973 -- be inserted in the same manner as that of Parent_Inst,
8974 -- before the next source body or at the end of the declarative
8975 -- list (body not available). If body P did not exist and
8976 -- Parent_Inst was frozen after Inst, either by a body
8977 -- following Inst or at the end of the declarative region,
8978 -- the freeze node for Inst must be inserted after that of
8979 -- Parent_Inst. This relation is established by comparing
8980 -- the Slocs of Parent_Inst freeze node and Inst.
8981
8982 if List_Containing (Get_Package_Instantiation_Node (Par)) =
8983 List_Containing (N)
8984 and then Sloc (Freeze_Node (Par)) < Sloc (N)
8985 then
8986 Insert_Freeze_Node_For_Instance (N, F_Node);
8987 else
8988 Insert_After (Freeze_Node (Par), F_Node);
8989 end if;
8990
8991 -- Freeze package enclosing instance of inner generic after
8992 -- instance of enclosing generic.
8993
8994 elsif Nkind_In (Parent (N), N_Package_Body, N_Subprogram_Body)
8995 and then In_Same_Declarative_Part (Freeze_Node (Par), Parent (N))
8996 then
8997 declare
8998 Enclosing : Entity_Id;
8999
9000 begin
9001 Enclosing := Corresponding_Spec (Parent (N));
9002
9003 if No (Enclosing) then
9004 Enclosing := Defining_Entity (Parent (N));
9005 end if;
9006
9007 Insert_Freeze_Node_For_Instance (N, F_Node);
9008 Ensure_Freeze_Node (Enclosing);
9009
9010 if not Is_List_Member (Freeze_Node (Enclosing)) then
9011
9012 -- The enclosing context is a subunit, insert the freeze
9013 -- node after the stub.
9014
9015 if Nkind (Parent (Parent (N))) = N_Subunit then
9016 Insert_Freeze_Node_For_Instance
9017 (Corresponding_Stub (Parent (Parent (N))),
9018 Freeze_Node (Enclosing));
9019
9020 -- The enclosing context is a package with a stub body
9021 -- which has already been replaced by the real body.
9022 -- Insert the freeze node after the actual body.
9023
9024 elsif Ekind (Enclosing) = E_Package
9025 and then Present (Body_Entity (Enclosing))
9026 and then Was_Originally_Stub
9027 (Parent (Body_Entity (Enclosing)))
9028 then
9029 Insert_Freeze_Node_For_Instance
9030 (Parent (Body_Entity (Enclosing)),
9031 Freeze_Node (Enclosing));
9032
9033 -- The parent instance has been frozen before the body of
9034 -- the enclosing package, insert the freeze node after
9035 -- the body.
9036
9037 elsif List_Containing (Freeze_Node (Par)) =
9038 List_Containing (Parent (N))
9039 and then Sloc (Freeze_Node (Par)) < Sloc (Parent (N))
9040 then
9041 Insert_Freeze_Node_For_Instance
9042 (Parent (N), Freeze_Node (Enclosing));
9043
9044 else
9045 Insert_After
9046 (Freeze_Node (Par), Freeze_Node (Enclosing));
9047 end if;
9048 end if;
9049 end;
9050
9051 else
9052 Insert_Freeze_Node_For_Instance (N, F_Node);
9053 end if;
9054
9055 else
9056 Insert_Freeze_Node_For_Instance (N, F_Node);
9057 end if;
9058 end if;
9059
9060 Set_Is_Frozen (Act_Id);
9061 Insert_Before (N, Act_Body);
9062 Mark_Rewrite_Insertion (Act_Body);
9063 end Install_Body;
9064
9065 -----------------------------
9066 -- Install_Formal_Packages --
9067 -----------------------------
9068
9069 procedure Install_Formal_Packages (Par : Entity_Id) is
9070 E : Entity_Id;
9071 Gen : Entity_Id;
9072 Gen_E : Entity_Id := Empty;
9073
9074 begin
9075 E := First_Entity (Par);
9076
9077 -- If we are installing an instance parent, locate the formal packages
9078 -- of its generic parent.
9079
9080 if Is_Generic_Instance (Par) then
9081 Gen := Generic_Parent (Package_Specification (Par));
9082 Gen_E := First_Entity (Gen);
9083 end if;
9084
9085 while Present (E) loop
9086 if Ekind (E) = E_Package
9087 and then Nkind (Parent (E)) = N_Package_Renaming_Declaration
9088 then
9089 -- If this is the renaming for the parent instance, done
9090
9091 if Renamed_Object (E) = Par then
9092 exit;
9093
9094 -- The visibility of a formal of an enclosing generic is already
9095 -- correct.
9096
9097 elsif Denotes_Formal_Package (E) then
9098 null;
9099
9100 elsif Present (Associated_Formal_Package (E)) then
9101 Check_Generic_Actuals (Renamed_Object (E), True);
9102 Set_Is_Hidden (E, False);
9103
9104 -- Find formal package in generic unit that corresponds to
9105 -- (instance of) formal package in instance.
9106
9107 while Present (Gen_E) and then Chars (Gen_E) /= Chars (E) loop
9108 Next_Entity (Gen_E);
9109 end loop;
9110
9111 if Present (Gen_E) then
9112 Map_Formal_Package_Entities (Gen_E, E);
9113 end if;
9114 end if;
9115 end if;
9116
9117 Next_Entity (E);
9118
9119 if Present (Gen_E) then
9120 Next_Entity (Gen_E);
9121 end if;
9122 end loop;
9123 end Install_Formal_Packages;
9124
9125 --------------------
9126 -- Install_Parent --
9127 --------------------
9128
9129 procedure Install_Parent (P : Entity_Id; In_Body : Boolean := False) is
9130 Ancestors : constant Elist_Id := New_Elmt_List;
9131 S : constant Entity_Id := Current_Scope;
9132 Inst_Par : Entity_Id;
9133 First_Par : Entity_Id;
9134 Inst_Node : Node_Id;
9135 Gen_Par : Entity_Id;
9136 First_Gen : Entity_Id;
9137 Elmt : Elmt_Id;
9138
9139 procedure Install_Noninstance_Specs (Par : Entity_Id);
9140 -- Install the scopes of noninstance parent units ending with Par
9141
9142 procedure Install_Spec (Par : Entity_Id);
9143 -- The child unit is within the declarative part of the parent, so the
9144 -- declarations within the parent are immediately visible.
9145
9146 -------------------------------
9147 -- Install_Noninstance_Specs --
9148 -------------------------------
9149
9150 procedure Install_Noninstance_Specs (Par : Entity_Id) is
9151 begin
9152 if Present (Par)
9153 and then Par /= Standard_Standard
9154 and then not In_Open_Scopes (Par)
9155 then
9156 Install_Noninstance_Specs (Scope (Par));
9157 Install_Spec (Par);
9158 end if;
9159 end Install_Noninstance_Specs;
9160
9161 ------------------
9162 -- Install_Spec --
9163 ------------------
9164
9165 procedure Install_Spec (Par : Entity_Id) is
9166 Spec : constant Node_Id := Package_Specification (Par);
9167
9168 begin
9169 -- If this parent of the child instance is a top-level unit,
9170 -- then record the unit and its visibility for later resetting in
9171 -- Remove_Parent. We exclude units that are generic instances, as we
9172 -- only want to record this information for the ultimate top-level
9173 -- noninstance parent (is that always correct???).
9174
9175 if Scope (Par) = Standard_Standard
9176 and then not Is_Generic_Instance (Par)
9177 then
9178 Parent_Unit_Visible := Is_Immediately_Visible (Par);
9179 Instance_Parent_Unit := Par;
9180 end if;
9181
9182 -- Open the parent scope and make it and its declarations visible.
9183 -- If this point is not within a body, then only the visible
9184 -- declarations should be made visible, and installation of the
9185 -- private declarations is deferred until the appropriate point
9186 -- within analysis of the spec being instantiated (see the handling
9187 -- of parent visibility in Analyze_Package_Specification). This is
9188 -- relaxed in the case where the parent unit is Ada.Tags, to avoid
9189 -- private view problems that occur when compiling instantiations of
9190 -- a generic child of that package (Generic_Dispatching_Constructor).
9191 -- If the instance freezes a tagged type, inlinings of operations
9192 -- from Ada.Tags may need the full view of type Tag. If inlining took
9193 -- proper account of establishing visibility of inlined subprograms'
9194 -- parents then it should be possible to remove this
9195 -- special check. ???
9196
9197 Push_Scope (Par);
9198 Set_Is_Immediately_Visible (Par);
9199 Install_Visible_Declarations (Par);
9200 Set_Use (Visible_Declarations (Spec));
9201
9202 if In_Body or else Is_RTU (Par, Ada_Tags) then
9203 Install_Private_Declarations (Par);
9204 Set_Use (Private_Declarations (Spec));
9205 end if;
9206 end Install_Spec;
9207
9208 -- Start of processing for Install_Parent
9209
9210 begin
9211 -- We need to install the parent instance to compile the instantiation
9212 -- of the child, but the child instance must appear in the current
9213 -- scope. Given that we cannot place the parent above the current scope
9214 -- in the scope stack, we duplicate the current scope and unstack both
9215 -- after the instantiation is complete.
9216
9217 -- If the parent is itself the instantiation of a child unit, we must
9218 -- also stack the instantiation of its parent, and so on. Each such
9219 -- ancestor is the prefix of the name in a prior instantiation.
9220
9221 -- If this is a nested instance, the parent unit itself resolves to
9222 -- a renaming of the parent instance, whose declaration we need.
9223
9224 -- Finally, the parent may be a generic (not an instance) when the
9225 -- child unit appears as a formal package.
9226
9227 Inst_Par := P;
9228
9229 if Present (Renamed_Entity (Inst_Par)) then
9230 Inst_Par := Renamed_Entity (Inst_Par);
9231 end if;
9232
9233 First_Par := Inst_Par;
9234
9235 Gen_Par := Generic_Parent (Package_Specification (Inst_Par));
9236
9237 First_Gen := Gen_Par;
9238
9239 while Present (Gen_Par) and then Is_Child_Unit (Gen_Par) loop
9240
9241 -- Load grandparent instance as well
9242
9243 Inst_Node := Get_Package_Instantiation_Node (Inst_Par);
9244
9245 if Nkind (Name (Inst_Node)) = N_Expanded_Name then
9246 Inst_Par := Entity (Prefix (Name (Inst_Node)));
9247
9248 if Present (Renamed_Entity (Inst_Par)) then
9249 Inst_Par := Renamed_Entity (Inst_Par);
9250 end if;
9251
9252 Gen_Par := Generic_Parent (Package_Specification (Inst_Par));
9253
9254 if Present (Gen_Par) then
9255 Prepend_Elmt (Inst_Par, Ancestors);
9256
9257 else
9258 -- Parent is not the name of an instantiation
9259
9260 Install_Noninstance_Specs (Inst_Par);
9261 exit;
9262 end if;
9263
9264 else
9265 -- Previous error
9266
9267 exit;
9268 end if;
9269 end loop;
9270
9271 if Present (First_Gen) then
9272 Append_Elmt (First_Par, Ancestors);
9273 else
9274 Install_Noninstance_Specs (First_Par);
9275 end if;
9276
9277 if not Is_Empty_Elmt_List (Ancestors) then
9278 Elmt := First_Elmt (Ancestors);
9279 while Present (Elmt) loop
9280 Install_Spec (Node (Elmt));
9281 Install_Formal_Packages (Node (Elmt));
9282 Next_Elmt (Elmt);
9283 end loop;
9284 end if;
9285
9286 if not In_Body then
9287 Push_Scope (S);
9288 end if;
9289 end Install_Parent;
9290
9291 -------------------------------
9292 -- Install_Hidden_Primitives --
9293 -------------------------------
9294
9295 procedure Install_Hidden_Primitives
9296 (Prims_List : in out Elist_Id;
9297 Gen_T : Entity_Id;
9298 Act_T : Entity_Id)
9299 is
9300 Elmt : Elmt_Id;
9301 List : Elist_Id := No_Elist;
9302 Prim_G_Elmt : Elmt_Id;
9303 Prim_A_Elmt : Elmt_Id;
9304 Prim_G : Node_Id;
9305 Prim_A : Node_Id;
9306
9307 begin
9308 -- No action needed in case of serious errors because we cannot trust
9309 -- in the order of primitives
9310
9311 if Serious_Errors_Detected > 0 then
9312 return;
9313
9314 -- No action possible if we don't have available the list of primitive
9315 -- operations
9316
9317 elsif No (Gen_T)
9318 or else not Is_Record_Type (Gen_T)
9319 or else not Is_Tagged_Type (Gen_T)
9320 or else not Is_Record_Type (Act_T)
9321 or else not Is_Tagged_Type (Act_T)
9322 then
9323 return;
9324
9325 -- There is no need to handle interface types since their primitives
9326 -- cannot be hidden
9327
9328 elsif Is_Interface (Gen_T) then
9329 return;
9330 end if;
9331
9332 Prim_G_Elmt := First_Elmt (Primitive_Operations (Gen_T));
9333
9334 if not Is_Class_Wide_Type (Act_T) then
9335 Prim_A_Elmt := First_Elmt (Primitive_Operations (Act_T));
9336 else
9337 Prim_A_Elmt := First_Elmt (Primitive_Operations (Root_Type (Act_T)));
9338 end if;
9339
9340 loop
9341 -- Skip predefined primitives in the generic formal
9342
9343 while Present (Prim_G_Elmt)
9344 and then Is_Predefined_Dispatching_Operation (Node (Prim_G_Elmt))
9345 loop
9346 Next_Elmt (Prim_G_Elmt);
9347 end loop;
9348
9349 -- Skip predefined primitives in the generic actual
9350
9351 while Present (Prim_A_Elmt)
9352 and then Is_Predefined_Dispatching_Operation (Node (Prim_A_Elmt))
9353 loop
9354 Next_Elmt (Prim_A_Elmt);
9355 end loop;
9356
9357 exit when No (Prim_G_Elmt) or else No (Prim_A_Elmt);
9358
9359 Prim_G := Node (Prim_G_Elmt);
9360 Prim_A := Node (Prim_A_Elmt);
9361
9362 -- There is no need to handle interface primitives because their
9363 -- primitives are not hidden
9364
9365 exit when Present (Interface_Alias (Prim_G));
9366
9367 -- Here we install one hidden primitive
9368
9369 if Chars (Prim_G) /= Chars (Prim_A)
9370 and then Has_Suffix (Prim_A, 'P')
9371 and then Remove_Suffix (Prim_A, 'P') = Chars (Prim_G)
9372 then
9373 Set_Chars (Prim_A, Chars (Prim_G));
9374 Append_New_Elmt (Prim_A, To => List);
9375 end if;
9376
9377 Next_Elmt (Prim_A_Elmt);
9378 Next_Elmt (Prim_G_Elmt);
9379 end loop;
9380
9381 -- Append the elements to the list of temporarily visible primitives
9382 -- avoiding duplicates.
9383
9384 if Present (List) then
9385 if No (Prims_List) then
9386 Prims_List := New_Elmt_List;
9387 end if;
9388
9389 Elmt := First_Elmt (List);
9390 while Present (Elmt) loop
9391 Append_Unique_Elmt (Node (Elmt), Prims_List);
9392 Next_Elmt (Elmt);
9393 end loop;
9394 end if;
9395 end Install_Hidden_Primitives;
9396
9397 -------------------------------
9398 -- Restore_Hidden_Primitives --
9399 -------------------------------
9400
9401 procedure Restore_Hidden_Primitives (Prims_List : in out Elist_Id) is
9402 Prim_Elmt : Elmt_Id;
9403 Prim : Node_Id;
9404
9405 begin
9406 if Prims_List /= No_Elist then
9407 Prim_Elmt := First_Elmt (Prims_List);
9408 while Present (Prim_Elmt) loop
9409 Prim := Node (Prim_Elmt);
9410 Set_Chars (Prim, Add_Suffix (Prim, 'P'));
9411 Next_Elmt (Prim_Elmt);
9412 end loop;
9413
9414 Prims_List := No_Elist;
9415 end if;
9416 end Restore_Hidden_Primitives;
9417
9418 --------------------------------
9419 -- Instantiate_Formal_Package --
9420 --------------------------------
9421
9422 function Instantiate_Formal_Package
9423 (Formal : Node_Id;
9424 Actual : Node_Id;
9425 Analyzed_Formal : Node_Id) return List_Id
9426 is
9427 Loc : constant Source_Ptr := Sloc (Actual);
9428 Actual_Pack : Entity_Id;
9429 Formal_Pack : Entity_Id;
9430 Gen_Parent : Entity_Id;
9431 Decls : List_Id;
9432 Nod : Node_Id;
9433 Parent_Spec : Node_Id;
9434
9435 procedure Find_Matching_Actual
9436 (F : Node_Id;
9437 Act : in out Entity_Id);
9438 -- We need to associate each formal entity in the formal package with
9439 -- the corresponding entity in the actual package. The actual package
9440 -- has been analyzed and possibly expanded, and as a result there is
9441 -- no one-to-one correspondence between the two lists (for example,
9442 -- the actual may include subtypes, itypes, and inherited primitive
9443 -- operations, interspersed among the renaming declarations for the
9444 -- actuals). We retrieve the corresponding actual by name because each
9445 -- actual has the same name as the formal, and they do appear in the
9446 -- same order.
9447
9448 function Get_Formal_Entity (N : Node_Id) return Entity_Id;
9449 -- Retrieve entity of defining entity of generic formal parameter.
9450 -- Only the declarations of formals need to be considered when
9451 -- linking them to actuals, but the declarative list may include
9452 -- internal entities generated during analysis, and those are ignored.
9453
9454 procedure Match_Formal_Entity
9455 (Formal_Node : Node_Id;
9456 Formal_Ent : Entity_Id;
9457 Actual_Ent : Entity_Id);
9458 -- Associates the formal entity with the actual. In the case where
9459 -- Formal_Ent is a formal package, this procedure iterates through all
9460 -- of its formals and enters associations between the actuals occurring
9461 -- in the formal package's corresponding actual package (given by
9462 -- Actual_Ent) and the formal package's formal parameters. This
9463 -- procedure recurses if any of the parameters is itself a package.
9464
9465 function Is_Instance_Of
9466 (Act_Spec : Entity_Id;
9467 Gen_Anc : Entity_Id) return Boolean;
9468 -- The actual can be an instantiation of a generic within another
9469 -- instance, in which case there is no direct link from it to the
9470 -- original generic ancestor. In that case, we recognize that the
9471 -- ultimate ancestor is the same by examining names and scopes.
9472
9473 procedure Process_Nested_Formal (Formal : Entity_Id);
9474 -- If the current formal is declared with a box, its own formals are
9475 -- visible in the instance, as they were in the generic, and their
9476 -- Hidden flag must be reset. If some of these formals are themselves
9477 -- packages declared with a box, the processing must be recursive.
9478
9479 --------------------------
9480 -- Find_Matching_Actual --
9481 --------------------------
9482
9483 procedure Find_Matching_Actual
9484 (F : Node_Id;
9485 Act : in out Entity_Id)
9486 is
9487 Formal_Ent : Entity_Id;
9488
9489 begin
9490 case Nkind (Original_Node (F)) is
9491 when N_Formal_Object_Declaration |
9492 N_Formal_Type_Declaration =>
9493 Formal_Ent := Defining_Identifier (F);
9494
9495 while Chars (Act) /= Chars (Formal_Ent) loop
9496 Next_Entity (Act);
9497 end loop;
9498
9499 when N_Formal_Subprogram_Declaration |
9500 N_Formal_Package_Declaration |
9501 N_Package_Declaration |
9502 N_Generic_Package_Declaration =>
9503 Formal_Ent := Defining_Entity (F);
9504
9505 while Chars (Act) /= Chars (Formal_Ent) loop
9506 Next_Entity (Act);
9507 end loop;
9508
9509 when others =>
9510 raise Program_Error;
9511 end case;
9512 end Find_Matching_Actual;
9513
9514 -------------------------
9515 -- Match_Formal_Entity --
9516 -------------------------
9517
9518 procedure Match_Formal_Entity
9519 (Formal_Node : Node_Id;
9520 Formal_Ent : Entity_Id;
9521 Actual_Ent : Entity_Id)
9522 is
9523 Act_Pkg : Entity_Id;
9524
9525 begin
9526 Set_Instance_Of (Formal_Ent, Actual_Ent);
9527
9528 if Ekind (Actual_Ent) = E_Package then
9529
9530 -- Record associations for each parameter
9531
9532 Act_Pkg := Actual_Ent;
9533
9534 declare
9535 A_Ent : Entity_Id := First_Entity (Act_Pkg);
9536 F_Ent : Entity_Id;
9537 F_Node : Node_Id;
9538
9539 Gen_Decl : Node_Id;
9540 Formals : List_Id;
9541 Actual : Entity_Id;
9542
9543 begin
9544 -- Retrieve the actual given in the formal package declaration
9545
9546 Actual := Entity (Name (Original_Node (Formal_Node)));
9547
9548 -- The actual in the formal package declaration may be a
9549 -- renamed generic package, in which case we want to retrieve
9550 -- the original generic in order to traverse its formal part.
9551
9552 if Present (Renamed_Entity (Actual)) then
9553 Gen_Decl := Unit_Declaration_Node (Renamed_Entity (Actual));
9554 else
9555 Gen_Decl := Unit_Declaration_Node (Actual);
9556 end if;
9557
9558 Formals := Generic_Formal_Declarations (Gen_Decl);
9559
9560 if Present (Formals) then
9561 F_Node := First_Non_Pragma (Formals);
9562 else
9563 F_Node := Empty;
9564 end if;
9565
9566 while Present (A_Ent)
9567 and then Present (F_Node)
9568 and then A_Ent /= First_Private_Entity (Act_Pkg)
9569 loop
9570 F_Ent := Get_Formal_Entity (F_Node);
9571
9572 if Present (F_Ent) then
9573
9574 -- This is a formal of the original package. Record
9575 -- association and recurse.
9576
9577 Find_Matching_Actual (F_Node, A_Ent);
9578 Match_Formal_Entity (F_Node, F_Ent, A_Ent);
9579 Next_Entity (A_Ent);
9580 end if;
9581
9582 Next_Non_Pragma (F_Node);
9583 end loop;
9584 end;
9585 end if;
9586 end Match_Formal_Entity;
9587
9588 -----------------------
9589 -- Get_Formal_Entity --
9590 -----------------------
9591
9592 function Get_Formal_Entity (N : Node_Id) return Entity_Id is
9593 Kind : constant Node_Kind := Nkind (Original_Node (N));
9594 begin
9595 case Kind is
9596 when N_Formal_Object_Declaration =>
9597 return Defining_Identifier (N);
9598
9599 when N_Formal_Type_Declaration =>
9600 return Defining_Identifier (N);
9601
9602 when N_Formal_Subprogram_Declaration =>
9603 return Defining_Unit_Name (Specification (N));
9604
9605 when N_Formal_Package_Declaration =>
9606 return Defining_Identifier (Original_Node (N));
9607
9608 when N_Generic_Package_Declaration =>
9609 return Defining_Identifier (Original_Node (N));
9610
9611 -- All other declarations are introduced by semantic analysis and
9612 -- have no match in the actual.
9613
9614 when others =>
9615 return Empty;
9616 end case;
9617 end Get_Formal_Entity;
9618
9619 --------------------
9620 -- Is_Instance_Of --
9621 --------------------
9622
9623 function Is_Instance_Of
9624 (Act_Spec : Entity_Id;
9625 Gen_Anc : Entity_Id) return Boolean
9626 is
9627 Gen_Par : constant Entity_Id := Generic_Parent (Act_Spec);
9628
9629 begin
9630 if No (Gen_Par) then
9631 return False;
9632
9633 -- Simplest case: the generic parent of the actual is the formal
9634
9635 elsif Gen_Par = Gen_Anc then
9636 return True;
9637
9638 elsif Chars (Gen_Par) /= Chars (Gen_Anc) then
9639 return False;
9640
9641 -- The actual may be obtained through several instantiations. Its
9642 -- scope must itself be an instance of a generic declared in the
9643 -- same scope as the formal. Any other case is detected above.
9644
9645 elsif not Is_Generic_Instance (Scope (Gen_Par)) then
9646 return False;
9647
9648 else
9649 return Generic_Parent (Parent (Scope (Gen_Par))) = Scope (Gen_Anc);
9650 end if;
9651 end Is_Instance_Of;
9652
9653 ---------------------------
9654 -- Process_Nested_Formal --
9655 ---------------------------
9656
9657 procedure Process_Nested_Formal (Formal : Entity_Id) is
9658 Ent : Entity_Id;
9659
9660 begin
9661 if Present (Associated_Formal_Package (Formal))
9662 and then Box_Present (Parent (Associated_Formal_Package (Formal)))
9663 then
9664 Ent := First_Entity (Formal);
9665 while Present (Ent) loop
9666 Set_Is_Hidden (Ent, False);
9667 Set_Is_Visible_Formal (Ent);
9668 Set_Is_Potentially_Use_Visible
9669 (Ent, Is_Potentially_Use_Visible (Formal));
9670
9671 if Ekind (Ent) = E_Package then
9672 exit when Renamed_Entity (Ent) = Renamed_Entity (Formal);
9673 Process_Nested_Formal (Ent);
9674 end if;
9675
9676 Next_Entity (Ent);
9677 end loop;
9678 end if;
9679 end Process_Nested_Formal;
9680
9681 -- Start of processing for Instantiate_Formal_Package
9682
9683 begin
9684 Analyze (Actual);
9685
9686 if not Is_Entity_Name (Actual)
9687 or else Ekind (Entity (Actual)) /= E_Package
9688 then
9689 Error_Msg_N
9690 ("expect package instance to instantiate formal", Actual);
9691 Abandon_Instantiation (Actual);
9692 raise Program_Error;
9693
9694 else
9695 Actual_Pack := Entity (Actual);
9696 Set_Is_Instantiated (Actual_Pack);
9697
9698 -- The actual may be a renamed package, or an outer generic formal
9699 -- package whose instantiation is converted into a renaming.
9700
9701 if Present (Renamed_Object (Actual_Pack)) then
9702 Actual_Pack := Renamed_Object (Actual_Pack);
9703 end if;
9704
9705 if Nkind (Analyzed_Formal) = N_Formal_Package_Declaration then
9706 Gen_Parent := Get_Instance_Of (Entity (Name (Analyzed_Formal)));
9707 Formal_Pack := Defining_Identifier (Analyzed_Formal);
9708 else
9709 Gen_Parent :=
9710 Generic_Parent (Specification (Analyzed_Formal));
9711 Formal_Pack :=
9712 Defining_Unit_Name (Specification (Analyzed_Formal));
9713 end if;
9714
9715 if Nkind (Parent (Actual_Pack)) = N_Defining_Program_Unit_Name then
9716 Parent_Spec := Package_Specification (Actual_Pack);
9717 else
9718 Parent_Spec := Parent (Actual_Pack);
9719 end if;
9720
9721 if Gen_Parent = Any_Id then
9722 Error_Msg_N
9723 ("previous error in declaration of formal package", Actual);
9724 Abandon_Instantiation (Actual);
9725
9726 elsif
9727 Is_Instance_Of (Parent_Spec, Get_Instance_Of (Gen_Parent))
9728 then
9729 null;
9730
9731 else
9732 Error_Msg_NE
9733 ("actual parameter must be instance of&", Actual, Gen_Parent);
9734 Abandon_Instantiation (Actual);
9735 end if;
9736
9737 Set_Instance_Of (Defining_Identifier (Formal), Actual_Pack);
9738 Map_Formal_Package_Entities (Formal_Pack, Actual_Pack);
9739
9740 Nod :=
9741 Make_Package_Renaming_Declaration (Loc,
9742 Defining_Unit_Name => New_Copy (Defining_Identifier (Formal)),
9743 Name => New_Occurrence_Of (Actual_Pack, Loc));
9744
9745 Set_Associated_Formal_Package
9746 (Defining_Unit_Name (Nod), Defining_Identifier (Formal));
9747 Decls := New_List (Nod);
9748
9749 -- If the formal F has a box, then the generic declarations are
9750 -- visible in the generic G. In an instance of G, the corresponding
9751 -- entities in the actual for F (which are the actuals for the
9752 -- instantiation of the generic that F denotes) must also be made
9753 -- visible for analysis of the current instance. On exit from the
9754 -- current instance, those entities are made private again. If the
9755 -- actual is currently in use, these entities are also use-visible.
9756
9757 -- The loop through the actual entities also steps through the formal
9758 -- entities and enters associations from formals to actuals into the
9759 -- renaming map. This is necessary to properly handle checking of
9760 -- actual parameter associations for later formals that depend on
9761 -- actuals declared in the formal package.
9762
9763 -- In Ada 2005, partial parameterization requires that we make
9764 -- visible the actuals corresponding to formals that were defaulted
9765 -- in the formal package. There formals are identified because they
9766 -- remain formal generics within the formal package, rather than
9767 -- being renamings of the actuals supplied.
9768
9769 declare
9770 Gen_Decl : constant Node_Id :=
9771 Unit_Declaration_Node (Gen_Parent);
9772 Formals : constant List_Id :=
9773 Generic_Formal_Declarations (Gen_Decl);
9774
9775 Actual_Ent : Entity_Id;
9776 Actual_Of_Formal : Node_Id;
9777 Formal_Node : Node_Id;
9778 Formal_Ent : Entity_Id;
9779
9780 begin
9781 if Present (Formals) then
9782 Formal_Node := First_Non_Pragma (Formals);
9783 else
9784 Formal_Node := Empty;
9785 end if;
9786
9787 Actual_Ent := First_Entity (Actual_Pack);
9788 Actual_Of_Formal :=
9789 First (Visible_Declarations (Specification (Analyzed_Formal)));
9790 while Present (Actual_Ent)
9791 and then Actual_Ent /= First_Private_Entity (Actual_Pack)
9792 loop
9793 if Present (Formal_Node) then
9794 Formal_Ent := Get_Formal_Entity (Formal_Node);
9795
9796 if Present (Formal_Ent) then
9797 Find_Matching_Actual (Formal_Node, Actual_Ent);
9798 Match_Formal_Entity (Formal_Node, Formal_Ent, Actual_Ent);
9799
9800 -- We iterate at the same time over the actuals of the
9801 -- local package created for the formal, to determine
9802 -- which one of the formals of the original generic were
9803 -- defaulted in the formal. The corresponding actual
9804 -- entities are visible in the enclosing instance.
9805
9806 if Box_Present (Formal)
9807 or else
9808 (Present (Actual_Of_Formal)
9809 and then
9810 Is_Generic_Formal
9811 (Get_Formal_Entity (Actual_Of_Formal)))
9812 then
9813 Set_Is_Hidden (Actual_Ent, False);
9814 Set_Is_Visible_Formal (Actual_Ent);
9815 Set_Is_Potentially_Use_Visible
9816 (Actual_Ent, In_Use (Actual_Pack));
9817
9818 if Ekind (Actual_Ent) = E_Package then
9819 Process_Nested_Formal (Actual_Ent);
9820 end if;
9821
9822 else
9823 Set_Is_Hidden (Actual_Ent);
9824 Set_Is_Potentially_Use_Visible (Actual_Ent, False);
9825 end if;
9826 end if;
9827
9828 Next_Non_Pragma (Formal_Node);
9829 Next (Actual_Of_Formal);
9830
9831 else
9832 -- No further formals to match, but the generic part may
9833 -- contain inherited operation that are not hidden in the
9834 -- enclosing instance.
9835
9836 Next_Entity (Actual_Ent);
9837 end if;
9838 end loop;
9839
9840 -- Inherited subprograms generated by formal derived types are
9841 -- also visible if the types are.
9842
9843 Actual_Ent := First_Entity (Actual_Pack);
9844 while Present (Actual_Ent)
9845 and then Actual_Ent /= First_Private_Entity (Actual_Pack)
9846 loop
9847 if Is_Overloadable (Actual_Ent)
9848 and then
9849 Nkind (Parent (Actual_Ent)) = N_Subtype_Declaration
9850 and then
9851 not Is_Hidden (Defining_Identifier (Parent (Actual_Ent)))
9852 then
9853 Set_Is_Hidden (Actual_Ent, False);
9854 Set_Is_Potentially_Use_Visible
9855 (Actual_Ent, In_Use (Actual_Pack));
9856 end if;
9857
9858 Next_Entity (Actual_Ent);
9859 end loop;
9860 end;
9861
9862 -- If the formal is not declared with a box, reanalyze it as an
9863 -- abbreviated instantiation, to verify the matching rules of 12.7.
9864 -- The actual checks are performed after the generic associations
9865 -- have been analyzed, to guarantee the same visibility for this
9866 -- instantiation and for the actuals.
9867
9868 -- In Ada 2005, the generic associations for the formal can include
9869 -- defaulted parameters. These are ignored during check. This
9870 -- internal instantiation is removed from the tree after conformance
9871 -- checking, because it contains formal declarations for those
9872 -- defaulted parameters, and those should not reach the back-end.
9873
9874 if not Box_Present (Formal) then
9875 declare
9876 I_Pack : constant Entity_Id :=
9877 Make_Temporary (Sloc (Actual), 'P');
9878
9879 begin
9880 Set_Is_Internal (I_Pack);
9881
9882 Append_To (Decls,
9883 Make_Package_Instantiation (Sloc (Actual),
9884 Defining_Unit_Name => I_Pack,
9885 Name =>
9886 New_Occurrence_Of
9887 (Get_Instance_Of (Gen_Parent), Sloc (Actual)),
9888 Generic_Associations => Generic_Associations (Formal)));
9889 end;
9890 end if;
9891
9892 return Decls;
9893 end if;
9894 end Instantiate_Formal_Package;
9895
9896 -----------------------------------
9897 -- Instantiate_Formal_Subprogram --
9898 -----------------------------------
9899
9900 function Instantiate_Formal_Subprogram
9901 (Formal : Node_Id;
9902 Actual : Node_Id;
9903 Analyzed_Formal : Node_Id) return Node_Id
9904 is
9905 Analyzed_S : constant Entity_Id :=
9906 Defining_Unit_Name (Specification (Analyzed_Formal));
9907 Formal_Sub : constant Entity_Id :=
9908 Defining_Unit_Name (Specification (Formal));
9909
9910 function From_Parent_Scope (Subp : Entity_Id) return Boolean;
9911 -- If the generic is a child unit, the parent has been installed on the
9912 -- scope stack, but a default subprogram cannot resolve to something
9913 -- on the parent because that parent is not really part of the visible
9914 -- context (it is there to resolve explicit local entities). If the
9915 -- default has resolved in this way, we remove the entity from immediate
9916 -- visibility and analyze the node again to emit an error message or
9917 -- find another visible candidate.
9918
9919 procedure Valid_Actual_Subprogram (Act : Node_Id);
9920 -- Perform legality check and raise exception on failure
9921
9922 -----------------------
9923 -- From_Parent_Scope --
9924 -----------------------
9925
9926 function From_Parent_Scope (Subp : Entity_Id) return Boolean is
9927 Gen_Scope : Node_Id;
9928
9929 begin
9930 Gen_Scope := Scope (Analyzed_S);
9931 while Present (Gen_Scope) and then Is_Child_Unit (Gen_Scope) loop
9932 if Scope (Subp) = Scope (Gen_Scope) then
9933 return True;
9934 end if;
9935
9936 Gen_Scope := Scope (Gen_Scope);
9937 end loop;
9938
9939 return False;
9940 end From_Parent_Scope;
9941
9942 -----------------------------
9943 -- Valid_Actual_Subprogram --
9944 -----------------------------
9945
9946 procedure Valid_Actual_Subprogram (Act : Node_Id) is
9947 Act_E : Entity_Id;
9948
9949 begin
9950 if Is_Entity_Name (Act) then
9951 Act_E := Entity (Act);
9952
9953 elsif Nkind (Act) = N_Selected_Component
9954 and then Is_Entity_Name (Selector_Name (Act))
9955 then
9956 Act_E := Entity (Selector_Name (Act));
9957
9958 else
9959 Act_E := Empty;
9960 end if;
9961
9962 if (Present (Act_E) and then Is_Overloadable (Act_E))
9963 or else Nkind_In (Act, N_Attribute_Reference,
9964 N_Indexed_Component,
9965 N_Character_Literal,
9966 N_Explicit_Dereference)
9967 then
9968 return;
9969 end if;
9970
9971 Error_Msg_NE
9972 ("expect subprogram or entry name in instantiation of &",
9973 Instantiation_Node, Formal_Sub);
9974 Abandon_Instantiation (Instantiation_Node);
9975 end Valid_Actual_Subprogram;
9976
9977 -- Local variables
9978
9979 Decl_Node : Node_Id;
9980 Loc : Source_Ptr;
9981 Nam : Node_Id;
9982 New_Spec : Node_Id;
9983 New_Subp : Entity_Id;
9984
9985 -- Start of processing for Instantiate_Formal_Subprogram
9986
9987 begin
9988 New_Spec := New_Copy_Tree (Specification (Formal));
9989
9990 -- The tree copy has created the proper instantiation sloc for the
9991 -- new specification. Use this location for all other constructed
9992 -- declarations.
9993
9994 Loc := Sloc (Defining_Unit_Name (New_Spec));
9995
9996 -- Create new entity for the actual (New_Copy_Tree does not), and
9997 -- indicate that it is an actual.
9998
9999 New_Subp := Make_Defining_Identifier (Loc, Chars (Formal_Sub));
10000 Set_Ekind (New_Subp, Ekind (Analyzed_S));
10001 Set_Is_Generic_Actual_Subprogram (New_Subp);
10002 Set_Defining_Unit_Name (New_Spec, New_Subp);
10003
10004 -- Create new entities for the each of the formals in the specification
10005 -- of the renaming declaration built for the actual.
10006
10007 if Present (Parameter_Specifications (New_Spec)) then
10008 declare
10009 F : Node_Id;
10010 F_Id : Entity_Id;
10011
10012 begin
10013 F := First (Parameter_Specifications (New_Spec));
10014 while Present (F) loop
10015 F_Id := Defining_Identifier (F);
10016
10017 Set_Defining_Identifier (F,
10018 Make_Defining_Identifier (Sloc (F_Id), Chars (F_Id)));
10019 Next (F);
10020 end loop;
10021 end;
10022 end if;
10023
10024 -- Find entity of actual. If the actual is an attribute reference, it
10025 -- cannot be resolved here (its formal is missing) but is handled
10026 -- instead in Attribute_Renaming. If the actual is overloaded, it is
10027 -- fully resolved subsequently, when the renaming declaration for the
10028 -- formal is analyzed. If it is an explicit dereference, resolve the
10029 -- prefix but not the actual itself, to prevent interpretation as call.
10030
10031 if Present (Actual) then
10032 Loc := Sloc (Actual);
10033 Set_Sloc (New_Spec, Loc);
10034
10035 if Nkind (Actual) = N_Operator_Symbol then
10036 Find_Direct_Name (Actual);
10037
10038 elsif Nkind (Actual) = N_Explicit_Dereference then
10039 Analyze (Prefix (Actual));
10040
10041 elsif Nkind (Actual) /= N_Attribute_Reference then
10042 Analyze (Actual);
10043 end if;
10044
10045 Valid_Actual_Subprogram (Actual);
10046 Nam := Actual;
10047
10048 elsif Present (Default_Name (Formal)) then
10049 if not Nkind_In (Default_Name (Formal), N_Attribute_Reference,
10050 N_Selected_Component,
10051 N_Indexed_Component,
10052 N_Character_Literal)
10053 and then Present (Entity (Default_Name (Formal)))
10054 then
10055 Nam := New_Occurrence_Of (Entity (Default_Name (Formal)), Loc);
10056 else
10057 Nam := New_Copy (Default_Name (Formal));
10058 Set_Sloc (Nam, Loc);
10059 end if;
10060
10061 elsif Box_Present (Formal) then
10062
10063 -- Actual is resolved at the point of instantiation. Create an
10064 -- identifier or operator with the same name as the formal.
10065
10066 if Nkind (Formal_Sub) = N_Defining_Operator_Symbol then
10067 Nam :=
10068 Make_Operator_Symbol (Loc,
10069 Chars => Chars (Formal_Sub),
10070 Strval => No_String);
10071 else
10072 Nam := Make_Identifier (Loc, Chars (Formal_Sub));
10073 end if;
10074
10075 elsif Nkind (Specification (Formal)) = N_Procedure_Specification
10076 and then Null_Present (Specification (Formal))
10077 then
10078 -- Generate null body for procedure, for use in the instance
10079
10080 Decl_Node :=
10081 Make_Subprogram_Body (Loc,
10082 Specification => New_Spec,
10083 Declarations => New_List,
10084 Handled_Statement_Sequence =>
10085 Make_Handled_Sequence_Of_Statements (Loc,
10086 Statements => New_List (Make_Null_Statement (Loc))));
10087
10088 Set_Is_Intrinsic_Subprogram (Defining_Unit_Name (New_Spec));
10089 return Decl_Node;
10090
10091 else
10092 Error_Msg_Sloc := Sloc (Scope (Analyzed_S));
10093 Error_Msg_NE
10094 ("missing actual&", Instantiation_Node, Formal_Sub);
10095 Error_Msg_NE
10096 ("\in instantiation of & declared#",
10097 Instantiation_Node, Scope (Analyzed_S));
10098 Abandon_Instantiation (Instantiation_Node);
10099 end if;
10100
10101 Decl_Node :=
10102 Make_Subprogram_Renaming_Declaration (Loc,
10103 Specification => New_Spec,
10104 Name => Nam);
10105
10106 -- If we do not have an actual and the formal specified <> then set to
10107 -- get proper default.
10108
10109 if No (Actual) and then Box_Present (Formal) then
10110 Set_From_Default (Decl_Node);
10111 end if;
10112
10113 -- Gather possible interpretations for the actual before analyzing the
10114 -- instance. If overloaded, it will be resolved when analyzing the
10115 -- renaming declaration.
10116
10117 if Box_Present (Formal) and then No (Actual) then
10118 Analyze (Nam);
10119
10120 if Is_Child_Unit (Scope (Analyzed_S))
10121 and then Present (Entity (Nam))
10122 then
10123 if not Is_Overloaded (Nam) then
10124 if From_Parent_Scope (Entity (Nam)) then
10125 Set_Is_Immediately_Visible (Entity (Nam), False);
10126 Set_Entity (Nam, Empty);
10127 Set_Etype (Nam, Empty);
10128
10129 Analyze (Nam);
10130 Set_Is_Immediately_Visible (Entity (Nam));
10131 end if;
10132
10133 else
10134 declare
10135 I : Interp_Index;
10136 It : Interp;
10137
10138 begin
10139 Get_First_Interp (Nam, I, It);
10140 while Present (It.Nam) loop
10141 if From_Parent_Scope (It.Nam) then
10142 Remove_Interp (I);
10143 end if;
10144
10145 Get_Next_Interp (I, It);
10146 end loop;
10147 end;
10148 end if;
10149 end if;
10150 end if;
10151
10152 -- The generic instantiation freezes the actual. This can only be done
10153 -- once the actual is resolved, in the analysis of the renaming
10154 -- declaration. To make the formal subprogram entity available, we set
10155 -- Corresponding_Formal_Spec to point to the formal subprogram entity.
10156 -- This is also needed in Analyze_Subprogram_Renaming for the processing
10157 -- of formal abstract subprograms.
10158
10159 Set_Corresponding_Formal_Spec (Decl_Node, Analyzed_S);
10160
10161 -- We cannot analyze the renaming declaration, and thus find the actual,
10162 -- until all the actuals are assembled in the instance. For subsequent
10163 -- checks of other actuals, indicate the node that will hold the
10164 -- instance of this formal.
10165
10166 Set_Instance_Of (Analyzed_S, Nam);
10167
10168 if Nkind (Actual) = N_Selected_Component
10169 and then Is_Task_Type (Etype (Prefix (Actual)))
10170 and then not Is_Frozen (Etype (Prefix (Actual)))
10171 then
10172 -- The renaming declaration will create a body, which must appear
10173 -- outside of the instantiation, We move the renaming declaration
10174 -- out of the instance, and create an additional renaming inside,
10175 -- to prevent freezing anomalies.
10176
10177 declare
10178 Anon_Id : constant Entity_Id := Make_Temporary (Loc, 'E');
10179
10180 begin
10181 Set_Defining_Unit_Name (New_Spec, Anon_Id);
10182 Insert_Before (Instantiation_Node, Decl_Node);
10183 Analyze (Decl_Node);
10184
10185 -- Now create renaming within the instance
10186
10187 Decl_Node :=
10188 Make_Subprogram_Renaming_Declaration (Loc,
10189 Specification => New_Copy_Tree (New_Spec),
10190 Name => New_Occurrence_Of (Anon_Id, Loc));
10191
10192 Set_Defining_Unit_Name (Specification (Decl_Node),
10193 Make_Defining_Identifier (Loc, Chars (Formal_Sub)));
10194 end;
10195 end if;
10196
10197 return Decl_Node;
10198 end Instantiate_Formal_Subprogram;
10199
10200 ------------------------
10201 -- Instantiate_Object --
10202 ------------------------
10203
10204 function Instantiate_Object
10205 (Formal : Node_Id;
10206 Actual : Node_Id;
10207 Analyzed_Formal : Node_Id) return List_Id
10208 is
10209 Gen_Obj : constant Entity_Id := Defining_Identifier (Formal);
10210 A_Gen_Obj : constant Entity_Id :=
10211 Defining_Identifier (Analyzed_Formal);
10212 Acc_Def : Node_Id := Empty;
10213 Act_Assoc : constant Node_Id := Parent (Actual);
10214 Actual_Decl : Node_Id := Empty;
10215 Decl_Node : Node_Id;
10216 Def : Node_Id;
10217 Ftyp : Entity_Id;
10218 List : constant List_Id := New_List;
10219 Loc : constant Source_Ptr := Sloc (Actual);
10220 Orig_Ftyp : constant Entity_Id := Etype (A_Gen_Obj);
10221 Subt_Decl : Node_Id := Empty;
10222 Subt_Mark : Node_Id := Empty;
10223
10224 function Copy_Access_Def return Node_Id;
10225 -- If formal is an anonymous access, copy access definition of formal
10226 -- for generated object declaration.
10227
10228 ---------------------
10229 -- Copy_Access_Def --
10230 ---------------------
10231
10232 function Copy_Access_Def return Node_Id is
10233 begin
10234 Def := New_Copy_Tree (Acc_Def);
10235
10236 -- In addition, if formal is an access to subprogram we need to
10237 -- generate new formals for the signature of the default, so that
10238 -- the tree is properly formatted for ASIS use.
10239
10240 if Present (Access_To_Subprogram_Definition (Acc_Def)) then
10241 declare
10242 Par_Spec : Node_Id;
10243 begin
10244 Par_Spec :=
10245 First (Parameter_Specifications
10246 (Access_To_Subprogram_Definition (Def)));
10247 while Present (Par_Spec) loop
10248 Set_Defining_Identifier (Par_Spec,
10249 Make_Defining_Identifier (Sloc (Acc_Def),
10250 Chars => Chars (Defining_Identifier (Par_Spec))));
10251 Next (Par_Spec);
10252 end loop;
10253 end;
10254 end if;
10255
10256 return Def;
10257 end Copy_Access_Def;
10258
10259 -- Start of processing for Instantiate_Object
10260
10261 begin
10262 -- Formal may be an anonymous access
10263
10264 if Present (Subtype_Mark (Formal)) then
10265 Subt_Mark := Subtype_Mark (Formal);
10266 else
10267 Check_Access_Definition (Formal);
10268 Acc_Def := Access_Definition (Formal);
10269 end if;
10270
10271 -- Sloc for error message on missing actual
10272
10273 Error_Msg_Sloc := Sloc (Scope (A_Gen_Obj));
10274
10275 if Get_Instance_Of (Gen_Obj) /= Gen_Obj then
10276 Error_Msg_N ("duplicate instantiation of generic parameter", Actual);
10277 end if;
10278
10279 Set_Parent (List, Parent (Actual));
10280
10281 -- OUT present
10282
10283 if Out_Present (Formal) then
10284
10285 -- An IN OUT generic actual must be a name. The instantiation is a
10286 -- renaming declaration. The actual is the name being renamed. We
10287 -- use the actual directly, rather than a copy, because it is not
10288 -- used further in the list of actuals, and because a copy or a use
10289 -- of relocate_node is incorrect if the instance is nested within a
10290 -- generic. In order to simplify ASIS searches, the Generic_Parent
10291 -- field links the declaration to the generic association.
10292
10293 if No (Actual) then
10294 Error_Msg_NE
10295 ("missing actual &",
10296 Instantiation_Node, Gen_Obj);
10297 Error_Msg_NE
10298 ("\in instantiation of & declared#",
10299 Instantiation_Node, Scope (A_Gen_Obj));
10300 Abandon_Instantiation (Instantiation_Node);
10301 end if;
10302
10303 if Present (Subt_Mark) then
10304 Decl_Node :=
10305 Make_Object_Renaming_Declaration (Loc,
10306 Defining_Identifier => New_Copy (Gen_Obj),
10307 Subtype_Mark => New_Copy_Tree (Subt_Mark),
10308 Name => Actual);
10309
10310 else pragma Assert (Present (Acc_Def));
10311 Decl_Node :=
10312 Make_Object_Renaming_Declaration (Loc,
10313 Defining_Identifier => New_Copy (Gen_Obj),
10314 Access_Definition => New_Copy_Tree (Acc_Def),
10315 Name => Actual);
10316 end if;
10317
10318 Set_Corresponding_Generic_Association (Decl_Node, Act_Assoc);
10319
10320 -- The analysis of the actual may produce Insert_Action nodes, so
10321 -- the declaration must have a context in which to attach them.
10322
10323 Append (Decl_Node, List);
10324 Analyze (Actual);
10325
10326 -- Return if the analysis of the actual reported some error
10327
10328 if Etype (Actual) = Any_Type then
10329 return List;
10330 end if;
10331
10332 -- This check is performed here because Analyze_Object_Renaming will
10333 -- not check it when Comes_From_Source is False. Note though that the
10334 -- check for the actual being the name of an object will be performed
10335 -- in Analyze_Object_Renaming.
10336
10337 if Is_Object_Reference (Actual)
10338 and then Is_Dependent_Component_Of_Mutable_Object (Actual)
10339 then
10340 Error_Msg_N
10341 ("illegal discriminant-dependent component for in out parameter",
10342 Actual);
10343 end if;
10344
10345 -- The actual has to be resolved in order to check that it is a
10346 -- variable (due to cases such as F (1), where F returns access to
10347 -- an array, and for overloaded prefixes).
10348
10349 Ftyp := Get_Instance_Of (Etype (A_Gen_Obj));
10350
10351 -- If the type of the formal is not itself a formal, and the current
10352 -- unit is a child unit, the formal type must be declared in a
10353 -- parent, and must be retrieved by visibility.
10354
10355 if Ftyp = Orig_Ftyp
10356 and then Is_Generic_Unit (Scope (Ftyp))
10357 and then Is_Child_Unit (Scope (A_Gen_Obj))
10358 then
10359 declare
10360 Temp : constant Node_Id :=
10361 New_Copy_Tree (Subtype_Mark (Analyzed_Formal));
10362 begin
10363 Set_Entity (Temp, Empty);
10364 Find_Type (Temp);
10365 Ftyp := Entity (Temp);
10366 end;
10367 end if;
10368
10369 if Is_Private_Type (Ftyp)
10370 and then not Is_Private_Type (Etype (Actual))
10371 and then (Base_Type (Full_View (Ftyp)) = Base_Type (Etype (Actual))
10372 or else Base_Type (Etype (Actual)) = Ftyp)
10373 then
10374 -- If the actual has the type of the full view of the formal, or
10375 -- else a non-private subtype of the formal, then the visibility
10376 -- of the formal type has changed. Add to the actuals a subtype
10377 -- declaration that will force the exchange of views in the body
10378 -- of the instance as well.
10379
10380 Subt_Decl :=
10381 Make_Subtype_Declaration (Loc,
10382 Defining_Identifier => Make_Temporary (Loc, 'P'),
10383 Subtype_Indication => New_Occurrence_Of (Ftyp, Loc));
10384
10385 Prepend (Subt_Decl, List);
10386
10387 Prepend_Elmt (Full_View (Ftyp), Exchanged_Views);
10388 Exchange_Declarations (Ftyp);
10389 end if;
10390
10391 Resolve (Actual, Ftyp);
10392
10393 if not Denotes_Variable (Actual) then
10394 Error_Msg_NE ("actual for& must be a variable", Actual, Gen_Obj);
10395
10396 elsif Base_Type (Ftyp) /= Base_Type (Etype (Actual)) then
10397
10398 -- Ada 2005 (AI-423): For a generic formal object of mode in out,
10399 -- the type of the actual shall resolve to a specific anonymous
10400 -- access type.
10401
10402 if Ada_Version < Ada_2005
10403 or else Ekind (Base_Type (Ftyp)) /=
10404 E_Anonymous_Access_Type
10405 or else Ekind (Base_Type (Etype (Actual))) /=
10406 E_Anonymous_Access_Type
10407 then
10408 Error_Msg_NE
10409 ("type of actual does not match type of&", Actual, Gen_Obj);
10410 end if;
10411 end if;
10412
10413 Note_Possible_Modification (Actual, Sure => True);
10414
10415 -- Check for instantiation of atomic/volatile actual for
10416 -- non-atomic/volatile formal (RM C.6 (12)).
10417
10418 if Is_Atomic_Object (Actual) and then not Is_Atomic (Orig_Ftyp) then
10419 Error_Msg_N
10420 ("cannot instantiate non-atomic formal object "
10421 & "with atomic actual", Actual);
10422
10423 elsif Is_Volatile_Object (Actual) and then not Is_Volatile (Orig_Ftyp)
10424 then
10425 Error_Msg_N
10426 ("cannot instantiate non-volatile formal object "
10427 & "with volatile actual", Actual);
10428 end if;
10429
10430 -- Formal in-parameter
10431
10432 else
10433 -- The instantiation of a generic formal in-parameter is constant
10434 -- declaration. The actual is the expression for that declaration.
10435 -- Its type is a full copy of the type of the formal. This may be
10436 -- an access to subprogram, for which we need to generate entities
10437 -- for the formals in the new signature.
10438
10439 if Present (Actual) then
10440 if Present (Subt_Mark) then
10441 Def := New_Copy_Tree (Subt_Mark);
10442 else pragma Assert (Present (Acc_Def));
10443 Def := Copy_Access_Def;
10444 end if;
10445
10446 Decl_Node :=
10447 Make_Object_Declaration (Loc,
10448 Defining_Identifier => New_Copy (Gen_Obj),
10449 Constant_Present => True,
10450 Null_Exclusion_Present => Null_Exclusion_Present (Formal),
10451 Object_Definition => Def,
10452 Expression => Actual);
10453
10454 Set_Corresponding_Generic_Association (Decl_Node, Act_Assoc);
10455
10456 -- A generic formal object of a tagged type is defined to be
10457 -- aliased so the new constant must also be treated as aliased.
10458
10459 if Is_Tagged_Type (Etype (A_Gen_Obj)) then
10460 Set_Aliased_Present (Decl_Node);
10461 end if;
10462
10463 Append (Decl_Node, List);
10464
10465 -- No need to repeat (pre-)analysis of some expression nodes
10466 -- already handled in Preanalyze_Actuals.
10467
10468 if Nkind (Actual) /= N_Allocator then
10469 Analyze (Actual);
10470
10471 -- Return if the analysis of the actual reported some error
10472
10473 if Etype (Actual) = Any_Type then
10474 return List;
10475 end if;
10476 end if;
10477
10478 declare
10479 Formal_Type : constant Entity_Id := Etype (A_Gen_Obj);
10480 Typ : Entity_Id;
10481
10482 begin
10483 Typ := Get_Instance_Of (Formal_Type);
10484
10485 -- If the actual appears in the current or an enclosing scope,
10486 -- use its type directly. This is relevant if it has an actual
10487 -- subtype that is distinct from its nominal one. This cannot
10488 -- be done in general because the type of the actual may
10489 -- depend on other actuals, and only be fully determined when
10490 -- the enclosing instance is analyzed.
10491
10492 if Present (Etype (Actual))
10493 and then Is_Constr_Subt_For_U_Nominal (Etype (Actual))
10494 then
10495 Freeze_Before (Instantiation_Node, Etype (Actual));
10496 else
10497 Freeze_Before (Instantiation_Node, Typ);
10498 end if;
10499
10500 -- If the actual is an aggregate, perform name resolution on
10501 -- its components (the analysis of an aggregate does not do it)
10502 -- to capture local names that may be hidden if the generic is
10503 -- a child unit.
10504
10505 if Nkind (Actual) = N_Aggregate then
10506 Preanalyze_And_Resolve (Actual, Typ);
10507 end if;
10508
10509 if Is_Limited_Type (Typ)
10510 and then not OK_For_Limited_Init (Typ, Actual)
10511 then
10512 Error_Msg_N
10513 ("initialization not allowed for limited types", Actual);
10514 Explain_Limited_Type (Typ, Actual);
10515 end if;
10516 end;
10517
10518 elsif Present (Default_Expression (Formal)) then
10519
10520 -- Use default to construct declaration
10521
10522 if Present (Subt_Mark) then
10523 Def := New_Copy (Subt_Mark);
10524 else pragma Assert (Present (Acc_Def));
10525 Def := Copy_Access_Def;
10526 end if;
10527
10528 Decl_Node :=
10529 Make_Object_Declaration (Sloc (Formal),
10530 Defining_Identifier => New_Copy (Gen_Obj),
10531 Constant_Present => True,
10532 Null_Exclusion_Present => Null_Exclusion_Present (Formal),
10533 Object_Definition => Def,
10534 Expression => New_Copy_Tree
10535 (Default_Expression (Formal)));
10536
10537 Append (Decl_Node, List);
10538 Set_Analyzed (Expression (Decl_Node), False);
10539
10540 else
10541 Error_Msg_NE ("missing actual&", Instantiation_Node, Gen_Obj);
10542 Error_Msg_NE ("\in instantiation of & declared#",
10543 Instantiation_Node, Scope (A_Gen_Obj));
10544
10545 if Is_Scalar_Type (Etype (A_Gen_Obj)) then
10546
10547 -- Create dummy constant declaration so that instance can be
10548 -- analyzed, to minimize cascaded visibility errors.
10549
10550 if Present (Subt_Mark) then
10551 Def := Subt_Mark;
10552 else pragma Assert (Present (Acc_Def));
10553 Def := Acc_Def;
10554 end if;
10555
10556 Decl_Node :=
10557 Make_Object_Declaration (Loc,
10558 Defining_Identifier => New_Copy (Gen_Obj),
10559 Constant_Present => True,
10560 Null_Exclusion_Present => Null_Exclusion_Present (Formal),
10561 Object_Definition => New_Copy (Def),
10562 Expression =>
10563 Make_Attribute_Reference (Sloc (Gen_Obj),
10564 Attribute_Name => Name_First,
10565 Prefix => New_Copy (Def)));
10566
10567 Append (Decl_Node, List);
10568
10569 else
10570 Abandon_Instantiation (Instantiation_Node);
10571 end if;
10572 end if;
10573 end if;
10574
10575 if Nkind (Actual) in N_Has_Entity then
10576 Actual_Decl := Parent (Entity (Actual));
10577 end if;
10578
10579 -- Ada 2005 (AI-423): For a formal object declaration with a null
10580 -- exclusion or an access definition that has a null exclusion: If the
10581 -- actual matching the formal object declaration denotes a generic
10582 -- formal object of another generic unit G, and the instantiation
10583 -- containing the actual occurs within the body of G or within the body
10584 -- of a generic unit declared within the declarative region of G, then
10585 -- the declaration of the formal object of G must have a null exclusion.
10586 -- Otherwise, the subtype of the actual matching the formal object
10587 -- declaration shall exclude null.
10588
10589 if Ada_Version >= Ada_2005
10590 and then Present (Actual_Decl)
10591 and then Nkind_In (Actual_Decl, N_Formal_Object_Declaration,
10592 N_Object_Declaration)
10593 and then Nkind (Analyzed_Formal) = N_Formal_Object_Declaration
10594 and then not Has_Null_Exclusion (Actual_Decl)
10595 and then Has_Null_Exclusion (Analyzed_Formal)
10596 then
10597 Error_Msg_Sloc := Sloc (Analyzed_Formal);
10598 Error_Msg_N
10599 ("actual must exclude null to match generic formal#", Actual);
10600 end if;
10601
10602 -- An effectively volatile object cannot be used as an actual in
10603 -- a generic instance. The following check is only relevant when
10604 -- SPARK_Mode is on as it is not a standard Ada legality rule.
10605
10606 if SPARK_Mode = On
10607 and then Present (Actual)
10608 and then Is_Effectively_Volatile_Object (Actual)
10609 then
10610 Error_Msg_N
10611 ("volatile object cannot act as actual in generic instantiation "
10612 & "(SPARK RM 7.1.3(8))", Actual);
10613 end if;
10614
10615 return List;
10616 end Instantiate_Object;
10617
10618 ------------------------------
10619 -- Instantiate_Package_Body --
10620 ------------------------------
10621
10622 procedure Instantiate_Package_Body
10623 (Body_Info : Pending_Body_Info;
10624 Inlined_Body : Boolean := False;
10625 Body_Optional : Boolean := False)
10626 is
10627 Act_Decl : constant Node_Id := Body_Info.Act_Decl;
10628 Inst_Node : constant Node_Id := Body_Info.Inst_Node;
10629 Loc : constant Source_Ptr := Sloc (Inst_Node);
10630
10631 Gen_Id : constant Node_Id := Name (Inst_Node);
10632 Gen_Unit : constant Entity_Id := Get_Generic_Entity (Inst_Node);
10633 Gen_Decl : constant Node_Id := Unit_Declaration_Node (Gen_Unit);
10634 Act_Spec : constant Node_Id := Specification (Act_Decl);
10635 Act_Decl_Id : constant Entity_Id := Defining_Entity (Act_Spec);
10636
10637 Save_IPSM : constant Boolean := Ignore_Pragma_SPARK_Mode;
10638 Save_Style_Check : constant Boolean := Style_Check;
10639
10640 Act_Body : Node_Id;
10641 Act_Body_Id : Entity_Id;
10642 Act_Body_Name : Node_Id;
10643 Gen_Body : Node_Id;
10644 Gen_Body_Id : Node_Id;
10645 Par_Ent : Entity_Id := Empty;
10646 Par_Vis : Boolean := False;
10647
10648 Parent_Installed : Boolean := False;
10649
10650 Vis_Prims_List : Elist_Id := No_Elist;
10651 -- List of primitives made temporarily visible in the instantiation
10652 -- to match the visibility of the formal type
10653
10654 procedure Check_Initialized_Types;
10655 -- In a generic package body, an entity of a generic private type may
10656 -- appear uninitialized. This is suspicious, unless the actual is a
10657 -- fully initialized type.
10658
10659 -----------------------------
10660 -- Check_Initialized_Types --
10661 -----------------------------
10662
10663 procedure Check_Initialized_Types is
10664 Decl : Node_Id;
10665 Formal : Entity_Id;
10666 Actual : Entity_Id;
10667 Uninit_Var : Entity_Id;
10668
10669 begin
10670 Decl := First (Generic_Formal_Declarations (Gen_Decl));
10671 while Present (Decl) loop
10672 Uninit_Var := Empty;
10673
10674 if Nkind (Decl) = N_Private_Extension_Declaration then
10675 Uninit_Var := Uninitialized_Variable (Decl);
10676
10677 elsif Nkind (Decl) = N_Formal_Type_Declaration
10678 and then Nkind (Formal_Type_Definition (Decl)) =
10679 N_Formal_Private_Type_Definition
10680 then
10681 Uninit_Var :=
10682 Uninitialized_Variable (Formal_Type_Definition (Decl));
10683 end if;
10684
10685 if Present (Uninit_Var) then
10686 Formal := Defining_Identifier (Decl);
10687 Actual := First_Entity (Act_Decl_Id);
10688
10689 -- For each formal there is a subtype declaration that renames
10690 -- the actual and has the same name as the formal. Locate the
10691 -- formal for warning message about uninitialized variables
10692 -- in the generic, for which the actual type should be a fully
10693 -- initialized type.
10694
10695 while Present (Actual) loop
10696 exit when Ekind (Actual) = E_Package
10697 and then Present (Renamed_Object (Actual));
10698
10699 if Chars (Actual) = Chars (Formal)
10700 and then not Is_Scalar_Type (Actual)
10701 and then not Is_Fully_Initialized_Type (Actual)
10702 and then Warn_On_No_Value_Assigned
10703 then
10704 Error_Msg_Node_2 := Formal;
10705 Error_Msg_NE
10706 ("generic unit has uninitialized variable& of "
10707 & "formal private type &?v?", Actual, Uninit_Var);
10708 Error_Msg_NE
10709 ("actual type for& should be fully initialized type?v?",
10710 Actual, Formal);
10711 exit;
10712 end if;
10713
10714 Next_Entity (Actual);
10715 end loop;
10716 end if;
10717
10718 Next (Decl);
10719 end loop;
10720 end Check_Initialized_Types;
10721
10722 -- Start of processing for Instantiate_Package_Body
10723
10724 begin
10725 Gen_Body_Id := Corresponding_Body (Gen_Decl);
10726
10727 -- The instance body may already have been processed, as the parent of
10728 -- another instance that is inlined (Load_Parent_Of_Generic).
10729
10730 if Present (Corresponding_Body (Instance_Spec (Inst_Node))) then
10731 return;
10732 end if;
10733
10734 Expander_Mode_Save_And_Set (Body_Info.Expander_Status);
10735
10736 -- Re-establish the state of information on which checks are suppressed.
10737 -- This information was set in Body_Info at the point of instantiation,
10738 -- and now we restore it so that the instance is compiled using the
10739 -- check status at the instantiation (RM 11.5(7.2/2), AI95-00224-01).
10740
10741 Local_Suppress_Stack_Top := Body_Info.Local_Suppress_Stack_Top;
10742 Scope_Suppress := Body_Info.Scope_Suppress;
10743 Opt.Ada_Version := Body_Info.Version;
10744 Opt.Ada_Version_Pragma := Body_Info.Version_Pragma;
10745 Restore_Warnings (Body_Info.Warnings);
10746 Opt.SPARK_Mode := Body_Info.SPARK_Mode;
10747 Opt.SPARK_Mode_Pragma := Body_Info.SPARK_Mode_Pragma;
10748
10749 if No (Gen_Body_Id) then
10750
10751 -- Do not look for parent of generic body if none is required.
10752 -- This may happen when the routine is called as part of the
10753 -- Pending_Instantiations processing, when nested instances
10754 -- may precede the one generated from the main unit.
10755
10756 if not Unit_Requires_Body (Defining_Entity (Gen_Decl))
10757 and then Body_Optional
10758 then
10759 return;
10760 else
10761 Load_Parent_Of_Generic
10762 (Inst_Node, Specification (Gen_Decl), Body_Optional);
10763 Gen_Body_Id := Corresponding_Body (Gen_Decl);
10764 end if;
10765 end if;
10766
10767 -- Establish global variable for sloc adjustment and for error recovery
10768 -- In the case of an instance body for an instantiation with actuals
10769 -- from a limited view, the instance body is placed at the beginning
10770 -- of the enclosing package body: use the body entity as the source
10771 -- location for nodes of the instance body.
10772
10773 if not Is_Empty_Elmt_List (Incomplete_Actuals (Act_Decl_Id)) then
10774 declare
10775 Scop : constant Entity_Id := Scope (Act_Decl_Id);
10776 Body_Id : constant Node_Id :=
10777 Corresponding_Body (Unit_Declaration_Node (Scop));
10778
10779 begin
10780 Instantiation_Node := Body_Id;
10781 end;
10782 else
10783 Instantiation_Node := Inst_Node;
10784 end if;
10785
10786 if Present (Gen_Body_Id) then
10787 Save_Env (Gen_Unit, Act_Decl_Id);
10788 Style_Check := False;
10789
10790 -- If the context of the instance is subject to SPARK_Mode "off" or
10791 -- the annotation is altogether missing, set the global flag which
10792 -- signals Analyze_Pragma to ignore all SPARK_Mode pragmas within
10793 -- the instance.
10794
10795 if SPARK_Mode /= On then
10796 Ignore_Pragma_SPARK_Mode := True;
10797 end if;
10798
10799 Current_Sem_Unit := Body_Info.Current_Sem_Unit;
10800 Gen_Body := Unit_Declaration_Node (Gen_Body_Id);
10801
10802 Create_Instantiation_Source
10803 (Inst_Node, Gen_Body_Id, False, S_Adjustment);
10804
10805 Act_Body :=
10806 Copy_Generic_Node
10807 (Original_Node (Gen_Body), Empty, Instantiating => True);
10808
10809 -- Build new name (possibly qualified) for body declaration
10810
10811 Act_Body_Id := New_Copy (Act_Decl_Id);
10812
10813 -- Some attributes of spec entity are not inherited by body entity
10814
10815 Set_Handler_Records (Act_Body_Id, No_List);
10816
10817 if Nkind (Defining_Unit_Name (Act_Spec)) =
10818 N_Defining_Program_Unit_Name
10819 then
10820 Act_Body_Name :=
10821 Make_Defining_Program_Unit_Name (Loc,
10822 Name => New_Copy_Tree (Name (Defining_Unit_Name (Act_Spec))),
10823 Defining_Identifier => Act_Body_Id);
10824 else
10825 Act_Body_Name := Act_Body_Id;
10826 end if;
10827
10828 Set_Defining_Unit_Name (Act_Body, Act_Body_Name);
10829
10830 Set_Corresponding_Spec (Act_Body, Act_Decl_Id);
10831 Check_Generic_Actuals (Act_Decl_Id, False);
10832 Check_Initialized_Types;
10833
10834 -- Install primitives hidden at the point of the instantiation but
10835 -- visible when processing the generic formals
10836
10837 declare
10838 E : Entity_Id;
10839
10840 begin
10841 E := First_Entity (Act_Decl_Id);
10842 while Present (E) loop
10843 if Is_Type (E)
10844 and then Is_Generic_Actual_Type (E)
10845 and then Is_Tagged_Type (E)
10846 then
10847 Install_Hidden_Primitives
10848 (Prims_List => Vis_Prims_List,
10849 Gen_T => Generic_Parent_Type (Parent (E)),
10850 Act_T => E);
10851 end if;
10852
10853 Next_Entity (E);
10854 end loop;
10855 end;
10856
10857 -- If it is a child unit, make the parent instance (which is an
10858 -- instance of the parent of the generic) visible. The parent
10859 -- instance is the prefix of the name of the generic unit.
10860
10861 if Ekind (Scope (Gen_Unit)) = E_Generic_Package
10862 and then Nkind (Gen_Id) = N_Expanded_Name
10863 then
10864 Par_Ent := Entity (Prefix (Gen_Id));
10865 Par_Vis := Is_Immediately_Visible (Par_Ent);
10866 Install_Parent (Par_Ent, In_Body => True);
10867 Parent_Installed := True;
10868
10869 elsif Is_Child_Unit (Gen_Unit) then
10870 Par_Ent := Scope (Gen_Unit);
10871 Par_Vis := Is_Immediately_Visible (Par_Ent);
10872 Install_Parent (Par_Ent, In_Body => True);
10873 Parent_Installed := True;
10874 end if;
10875
10876 -- If the instantiation is a library unit, and this is the main unit,
10877 -- then build the resulting compilation unit nodes for the instance.
10878 -- If this is a compilation unit but it is not the main unit, then it
10879 -- is the body of a unit in the context, that is being compiled
10880 -- because it is encloses some inlined unit or another generic unit
10881 -- being instantiated. In that case, this body is not part of the
10882 -- current compilation, and is not attached to the tree, but its
10883 -- parent must be set for analysis.
10884
10885 if Nkind (Parent (Inst_Node)) = N_Compilation_Unit then
10886
10887 -- Replace instance node with body of instance, and create new
10888 -- node for corresponding instance declaration.
10889
10890 Build_Instance_Compilation_Unit_Nodes
10891 (Inst_Node, Act_Body, Act_Decl);
10892 Analyze (Inst_Node);
10893
10894 if Parent (Inst_Node) = Cunit (Main_Unit) then
10895
10896 -- If the instance is a child unit itself, then set the scope
10897 -- of the expanded body to be the parent of the instantiation
10898 -- (ensuring that the fully qualified name will be generated
10899 -- for the elaboration subprogram).
10900
10901 if Nkind (Defining_Unit_Name (Act_Spec)) =
10902 N_Defining_Program_Unit_Name
10903 then
10904 Set_Scope (Defining_Entity (Inst_Node), Scope (Act_Decl_Id));
10905 end if;
10906 end if;
10907
10908 -- Case where instantiation is not a library unit
10909
10910 else
10911 -- If this is an early instantiation, i.e. appears textually
10912 -- before the corresponding body and must be elaborated first,
10913 -- indicate that the body instance is to be delayed.
10914
10915 Install_Body (Act_Body, Inst_Node, Gen_Body, Gen_Decl);
10916
10917 -- Now analyze the body. We turn off all checks if this is an
10918 -- internal unit, since there is no reason to have checks on for
10919 -- any predefined run-time library code. All such code is designed
10920 -- to be compiled with checks off.
10921
10922 -- Note that we do NOT apply this criterion to children of GNAT
10923 -- The latter units must suppress checks explicitly if needed.
10924
10925 if Is_Predefined_File_Name
10926 (Unit_File_Name (Get_Source_Unit (Gen_Decl)))
10927 then
10928 Analyze (Act_Body, Suppress => All_Checks);
10929 else
10930 Analyze (Act_Body);
10931 end if;
10932 end if;
10933
10934 Inherit_Context (Gen_Body, Inst_Node);
10935
10936 -- Remove the parent instances if they have been placed on the scope
10937 -- stack to compile the body.
10938
10939 if Parent_Installed then
10940 Remove_Parent (In_Body => True);
10941
10942 -- Restore the previous visibility of the parent
10943
10944 Set_Is_Immediately_Visible (Par_Ent, Par_Vis);
10945 end if;
10946
10947 Restore_Hidden_Primitives (Vis_Prims_List);
10948 Restore_Private_Views (Act_Decl_Id);
10949
10950 -- Remove the current unit from visibility if this is an instance
10951 -- that is not elaborated on the fly for inlining purposes.
10952
10953 if not Inlined_Body then
10954 Set_Is_Immediately_Visible (Act_Decl_Id, False);
10955 end if;
10956
10957 Restore_Env;
10958 Ignore_Pragma_SPARK_Mode := Save_IPSM;
10959 Style_Check := Save_Style_Check;
10960
10961 -- If we have no body, and the unit requires a body, then complain. This
10962 -- complaint is suppressed if we have detected other errors (since a
10963 -- common reason for missing the body is that it had errors).
10964 -- In CodePeer mode, a warning has been emitted already, no need for
10965 -- further messages.
10966
10967 elsif Unit_Requires_Body (Gen_Unit)
10968 and then not Body_Optional
10969 then
10970 if CodePeer_Mode then
10971 null;
10972
10973 elsif Serious_Errors_Detected = 0 then
10974 Error_Msg_NE
10975 ("cannot find body of generic package &", Inst_Node, Gen_Unit);
10976
10977 -- Don't attempt to perform any cleanup actions if some other error
10978 -- was already detected, since this can cause blowups.
10979
10980 else
10981 return;
10982 end if;
10983
10984 -- Case of package that does not need a body
10985
10986 else
10987 -- If the instantiation of the declaration is a library unit, rewrite
10988 -- the original package instantiation as a package declaration in the
10989 -- compilation unit node.
10990
10991 if Nkind (Parent (Inst_Node)) = N_Compilation_Unit then
10992 Set_Parent_Spec (Act_Decl, Parent_Spec (Inst_Node));
10993 Rewrite (Inst_Node, Act_Decl);
10994
10995 -- Generate elaboration entity, in case spec has elaboration code.
10996 -- This cannot be done when the instance is analyzed, because it
10997 -- is not known yet whether the body exists.
10998
10999 Set_Elaboration_Entity_Required (Act_Decl_Id, False);
11000 Build_Elaboration_Entity (Parent (Inst_Node), Act_Decl_Id);
11001
11002 -- If the instantiation is not a library unit, then append the
11003 -- declaration to the list of implicitly generated entities, unless
11004 -- it is already a list member which means that it was already
11005 -- processed
11006
11007 elsif not Is_List_Member (Act_Decl) then
11008 Mark_Rewrite_Insertion (Act_Decl);
11009 Insert_Before (Inst_Node, Act_Decl);
11010 end if;
11011 end if;
11012
11013 Expander_Mode_Restore;
11014 end Instantiate_Package_Body;
11015
11016 ---------------------------------
11017 -- Instantiate_Subprogram_Body --
11018 ---------------------------------
11019
11020 procedure Instantiate_Subprogram_Body
11021 (Body_Info : Pending_Body_Info;
11022 Body_Optional : Boolean := False)
11023 is
11024 Act_Decl : constant Node_Id := Body_Info.Act_Decl;
11025 Inst_Node : constant Node_Id := Body_Info.Inst_Node;
11026 Loc : constant Source_Ptr := Sloc (Inst_Node);
11027 Gen_Id : constant Node_Id := Name (Inst_Node);
11028 Gen_Unit : constant Entity_Id := Get_Generic_Entity (Inst_Node);
11029 Gen_Decl : constant Node_Id := Unit_Declaration_Node (Gen_Unit);
11030 Anon_Id : constant Entity_Id :=
11031 Defining_Unit_Name (Specification (Act_Decl));
11032 Pack_Id : constant Entity_Id :=
11033 Defining_Unit_Name (Parent (Act_Decl));
11034
11035 Saved_IPSM : constant Boolean := Ignore_Pragma_SPARK_Mode;
11036 Saved_Style_Check : constant Boolean := Style_Check;
11037 Saved_Warnings : constant Warning_Record := Save_Warnings;
11038
11039 Act_Body : Node_Id;
11040 Gen_Body : Node_Id;
11041 Gen_Body_Id : Node_Id;
11042 Pack_Body : Node_Id;
11043 Par_Ent : Entity_Id := Empty;
11044 Par_Vis : Boolean := False;
11045 Ret_Expr : Node_Id;
11046
11047 Parent_Installed : Boolean := False;
11048
11049 begin
11050 Gen_Body_Id := Corresponding_Body (Gen_Decl);
11051
11052 -- Subprogram body may have been created already because of an inline
11053 -- pragma, or because of multiple elaborations of the enclosing package
11054 -- when several instances of the subprogram appear in the main unit.
11055
11056 if Present (Corresponding_Body (Act_Decl)) then
11057 return;
11058 end if;
11059
11060 Expander_Mode_Save_And_Set (Body_Info.Expander_Status);
11061
11062 -- Re-establish the state of information on which checks are suppressed.
11063 -- This information was set in Body_Info at the point of instantiation,
11064 -- and now we restore it so that the instance is compiled using the
11065 -- check status at the instantiation (RM 11.5(7.2/2), AI95-00224-01).
11066
11067 Local_Suppress_Stack_Top := Body_Info.Local_Suppress_Stack_Top;
11068 Scope_Suppress := Body_Info.Scope_Suppress;
11069 Opt.Ada_Version := Body_Info.Version;
11070 Opt.Ada_Version_Pragma := Body_Info.Version_Pragma;
11071 Restore_Warnings (Body_Info.Warnings);
11072 Opt.SPARK_Mode := Body_Info.SPARK_Mode;
11073 Opt.SPARK_Mode_Pragma := Body_Info.SPARK_Mode_Pragma;
11074
11075 if No (Gen_Body_Id) then
11076
11077 -- For imported generic subprogram, no body to compile, complete
11078 -- the spec entity appropriately.
11079
11080 if Is_Imported (Gen_Unit) then
11081 Set_Is_Imported (Anon_Id);
11082 Set_First_Rep_Item (Anon_Id, First_Rep_Item (Gen_Unit));
11083 Set_Interface_Name (Anon_Id, Interface_Name (Gen_Unit));
11084 Set_Convention (Anon_Id, Convention (Gen_Unit));
11085 Set_Has_Completion (Anon_Id);
11086 return;
11087
11088 -- For other cases, compile the body
11089
11090 else
11091 Load_Parent_Of_Generic
11092 (Inst_Node, Specification (Gen_Decl), Body_Optional);
11093 Gen_Body_Id := Corresponding_Body (Gen_Decl);
11094 end if;
11095 end if;
11096
11097 Instantiation_Node := Inst_Node;
11098
11099 if Present (Gen_Body_Id) then
11100 Gen_Body := Unit_Declaration_Node (Gen_Body_Id);
11101
11102 if Nkind (Gen_Body) = N_Subprogram_Body_Stub then
11103
11104 -- Either body is not present, or context is non-expanding, as
11105 -- when compiling a subunit. Mark the instance as completed, and
11106 -- diagnose a missing body when needed.
11107
11108 if Expander_Active
11109 and then Operating_Mode = Generate_Code
11110 then
11111 Error_Msg_N
11112 ("missing proper body for instantiation", Gen_Body);
11113 end if;
11114
11115 Set_Has_Completion (Anon_Id);
11116 return;
11117 end if;
11118
11119 Save_Env (Gen_Unit, Anon_Id);
11120 Style_Check := False;
11121
11122 -- If the context of the instance is subject to SPARK_Mode "off" or
11123 -- the annotation is altogether missing, set the global flag which
11124 -- signals Analyze_Pragma to ignore all SPARK_Mode pragmas within
11125 -- the instance.
11126
11127 if SPARK_Mode /= On then
11128 Ignore_Pragma_SPARK_Mode := True;
11129 end if;
11130
11131 Current_Sem_Unit := Body_Info.Current_Sem_Unit;
11132 Create_Instantiation_Source
11133 (Inst_Node,
11134 Gen_Body_Id,
11135 False,
11136 S_Adjustment);
11137
11138 Act_Body :=
11139 Copy_Generic_Node
11140 (Original_Node (Gen_Body), Empty, Instantiating => True);
11141
11142 -- Create proper defining name for the body, to correspond to
11143 -- the one in the spec.
11144
11145 Set_Defining_Unit_Name (Specification (Act_Body),
11146 Make_Defining_Identifier
11147 (Sloc (Defining_Entity (Inst_Node)), Chars (Anon_Id)));
11148 Set_Corresponding_Spec (Act_Body, Anon_Id);
11149 Set_Has_Completion (Anon_Id);
11150 Check_Generic_Actuals (Pack_Id, False);
11151
11152 -- Generate a reference to link the visible subprogram instance to
11153 -- the generic body, which for navigation purposes is the only
11154 -- available source for the instance.
11155
11156 Generate_Reference
11157 (Related_Instance (Pack_Id),
11158 Gen_Body_Id, 'b', Set_Ref => False, Force => True);
11159
11160 -- If it is a child unit, make the parent instance (which is an
11161 -- instance of the parent of the generic) visible. The parent
11162 -- instance is the prefix of the name of the generic unit.
11163
11164 if Ekind (Scope (Gen_Unit)) = E_Generic_Package
11165 and then Nkind (Gen_Id) = N_Expanded_Name
11166 then
11167 Par_Ent := Entity (Prefix (Gen_Id));
11168 Par_Vis := Is_Immediately_Visible (Par_Ent);
11169 Install_Parent (Par_Ent, In_Body => True);
11170 Parent_Installed := True;
11171
11172 elsif Is_Child_Unit (Gen_Unit) then
11173 Par_Ent := Scope (Gen_Unit);
11174 Par_Vis := Is_Immediately_Visible (Par_Ent);
11175 Install_Parent (Par_Ent, In_Body => True);
11176 Parent_Installed := True;
11177 end if;
11178
11179 -- Subprogram body is placed in the body of wrapper package,
11180 -- whose spec contains the subprogram declaration as well as
11181 -- the renaming declarations for the generic parameters.
11182
11183 Pack_Body :=
11184 Make_Package_Body (Loc,
11185 Defining_Unit_Name => New_Copy (Pack_Id),
11186 Declarations => New_List (Act_Body));
11187
11188 Set_Corresponding_Spec (Pack_Body, Pack_Id);
11189
11190 -- If the instantiation is a library unit, then build resulting
11191 -- compilation unit nodes for the instance. The declaration of
11192 -- the enclosing package is the grandparent of the subprogram
11193 -- declaration. First replace the instantiation node as the unit
11194 -- of the corresponding compilation.
11195
11196 if Nkind (Parent (Inst_Node)) = N_Compilation_Unit then
11197 if Parent (Inst_Node) = Cunit (Main_Unit) then
11198 Set_Unit (Parent (Inst_Node), Inst_Node);
11199 Build_Instance_Compilation_Unit_Nodes
11200 (Inst_Node, Pack_Body, Parent (Parent (Act_Decl)));
11201 Analyze (Inst_Node);
11202 else
11203 Set_Parent (Pack_Body, Parent (Inst_Node));
11204 Analyze (Pack_Body);
11205 end if;
11206
11207 else
11208 Insert_Before (Inst_Node, Pack_Body);
11209 Mark_Rewrite_Insertion (Pack_Body);
11210 Analyze (Pack_Body);
11211
11212 if Expander_Active then
11213 Freeze_Subprogram_Body (Inst_Node, Gen_Body, Pack_Id);
11214 end if;
11215 end if;
11216
11217 Inherit_Context (Gen_Body, Inst_Node);
11218
11219 Restore_Private_Views (Pack_Id, False);
11220
11221 if Parent_Installed then
11222 Remove_Parent (In_Body => True);
11223
11224 -- Restore the previous visibility of the parent
11225
11226 Set_Is_Immediately_Visible (Par_Ent, Par_Vis);
11227 end if;
11228
11229 Restore_Env;
11230 Ignore_Pragma_SPARK_Mode := Saved_IPSM;
11231 Style_Check := Saved_Style_Check;
11232 Restore_Warnings (Saved_Warnings);
11233
11234 -- Body not found. Error was emitted already. If there were no previous
11235 -- errors, this may be an instance whose scope is a premature instance.
11236 -- In that case we must insure that the (legal) program does raise
11237 -- program error if executed. We generate a subprogram body for this
11238 -- purpose. See DEC ac30vso.
11239
11240 -- Should not reference proprietary DEC tests in comments ???
11241
11242 elsif Serious_Errors_Detected = 0
11243 and then Nkind (Parent (Inst_Node)) /= N_Compilation_Unit
11244 then
11245 if Body_Optional then
11246 return;
11247
11248 elsif Ekind (Anon_Id) = E_Procedure then
11249 Act_Body :=
11250 Make_Subprogram_Body (Loc,
11251 Specification =>
11252 Make_Procedure_Specification (Loc,
11253 Defining_Unit_Name =>
11254 Make_Defining_Identifier (Loc, Chars (Anon_Id)),
11255 Parameter_Specifications =>
11256 New_Copy_List
11257 (Parameter_Specifications (Parent (Anon_Id)))),
11258
11259 Declarations => Empty_List,
11260 Handled_Statement_Sequence =>
11261 Make_Handled_Sequence_Of_Statements (Loc,
11262 Statements =>
11263 New_List (
11264 Make_Raise_Program_Error (Loc,
11265 Reason =>
11266 PE_Access_Before_Elaboration))));
11267
11268 else
11269 Ret_Expr :=
11270 Make_Raise_Program_Error (Loc,
11271 Reason => PE_Access_Before_Elaboration);
11272
11273 Set_Etype (Ret_Expr, (Etype (Anon_Id)));
11274 Set_Analyzed (Ret_Expr);
11275
11276 Act_Body :=
11277 Make_Subprogram_Body (Loc,
11278 Specification =>
11279 Make_Function_Specification (Loc,
11280 Defining_Unit_Name =>
11281 Make_Defining_Identifier (Loc, Chars (Anon_Id)),
11282 Parameter_Specifications =>
11283 New_Copy_List
11284 (Parameter_Specifications (Parent (Anon_Id))),
11285 Result_Definition =>
11286 New_Occurrence_Of (Etype (Anon_Id), Loc)),
11287
11288 Declarations => Empty_List,
11289 Handled_Statement_Sequence =>
11290 Make_Handled_Sequence_Of_Statements (Loc,
11291 Statements =>
11292 New_List
11293 (Make_Simple_Return_Statement (Loc, Ret_Expr))));
11294 end if;
11295
11296 Pack_Body :=
11297 Make_Package_Body (Loc,
11298 Defining_Unit_Name => New_Copy (Pack_Id),
11299 Declarations => New_List (Act_Body));
11300
11301 Insert_After (Inst_Node, Pack_Body);
11302 Set_Corresponding_Spec (Pack_Body, Pack_Id);
11303 Analyze (Pack_Body);
11304 end if;
11305
11306 Expander_Mode_Restore;
11307 end Instantiate_Subprogram_Body;
11308
11309 ----------------------
11310 -- Instantiate_Type --
11311 ----------------------
11312
11313 function Instantiate_Type
11314 (Formal : Node_Id;
11315 Actual : Node_Id;
11316 Analyzed_Formal : Node_Id;
11317 Actual_Decls : List_Id) return List_Id
11318 is
11319 Gen_T : constant Entity_Id := Defining_Identifier (Formal);
11320 A_Gen_T : constant Entity_Id :=
11321 Defining_Identifier (Analyzed_Formal);
11322 Ancestor : Entity_Id := Empty;
11323 Def : constant Node_Id := Formal_Type_Definition (Formal);
11324 Act_T : Entity_Id;
11325 Decl_Node : Node_Id;
11326 Decl_Nodes : List_Id;
11327 Loc : Source_Ptr;
11328 Subt : Entity_Id;
11329
11330 procedure Diagnose_Predicated_Actual;
11331 -- There are a number of constructs in which a discrete type with
11332 -- predicates is illegal, e.g. as an index in an array type declaration.
11333 -- If a generic type is used is such a construct in a generic package
11334 -- declaration, it carries the flag No_Predicate_On_Actual. it is part
11335 -- of the generic contract that the actual cannot have predicates.
11336
11337 procedure Validate_Array_Type_Instance;
11338 procedure Validate_Access_Subprogram_Instance;
11339 procedure Validate_Access_Type_Instance;
11340 procedure Validate_Derived_Type_Instance;
11341 procedure Validate_Derived_Interface_Type_Instance;
11342 procedure Validate_Discriminated_Formal_Type;
11343 procedure Validate_Interface_Type_Instance;
11344 procedure Validate_Private_Type_Instance;
11345 procedure Validate_Incomplete_Type_Instance;
11346 -- These procedures perform validation tests for the named case.
11347 -- Validate_Discriminated_Formal_Type is shared by formal private
11348 -- types and Ada 2012 formal incomplete types.
11349
11350 function Subtypes_Match (Gen_T, Act_T : Entity_Id) return Boolean;
11351 -- Check that base types are the same and that the subtypes match
11352 -- statically. Used in several of the above.
11353
11354 ---------------------------------
11355 -- Diagnose_Predicated_Actual --
11356 ---------------------------------
11357
11358 procedure Diagnose_Predicated_Actual is
11359 begin
11360 if No_Predicate_On_Actual (A_Gen_T)
11361 and then Has_Predicates (Act_T)
11362 then
11363 Error_Msg_NE
11364 ("actual for& cannot be a type with predicate",
11365 Instantiation_Node, A_Gen_T);
11366
11367 elsif No_Dynamic_Predicate_On_Actual (A_Gen_T)
11368 and then Has_Predicates (Act_T)
11369 and then not Has_Static_Predicate_Aspect (Act_T)
11370 then
11371 Error_Msg_NE
11372 ("actual for& cannot be a type with a dynamic predicate",
11373 Instantiation_Node, A_Gen_T);
11374 end if;
11375 end Diagnose_Predicated_Actual;
11376
11377 --------------------
11378 -- Subtypes_Match --
11379 --------------------
11380
11381 function Subtypes_Match (Gen_T, Act_T : Entity_Id) return Boolean is
11382 T : constant Entity_Id := Get_Instance_Of (Gen_T);
11383
11384 begin
11385 -- Some detailed comments would be useful here ???
11386
11387 return ((Base_Type (T) = Act_T
11388 or else Base_Type (T) = Base_Type (Act_T))
11389 and then Subtypes_Statically_Match (T, Act_T))
11390
11391 or else (Is_Class_Wide_Type (Gen_T)
11392 and then Is_Class_Wide_Type (Act_T)
11393 and then Subtypes_Match
11394 (Get_Instance_Of (Root_Type (Gen_T)),
11395 Root_Type (Act_T)))
11396
11397 or else
11398 (Ekind_In (Gen_T, E_Anonymous_Access_Subprogram_Type,
11399 E_Anonymous_Access_Type)
11400 and then Ekind (Act_T) = Ekind (Gen_T)
11401 and then Subtypes_Statically_Match
11402 (Designated_Type (Gen_T), Designated_Type (Act_T)));
11403 end Subtypes_Match;
11404
11405 -----------------------------------------
11406 -- Validate_Access_Subprogram_Instance --
11407 -----------------------------------------
11408
11409 procedure Validate_Access_Subprogram_Instance is
11410 begin
11411 if not Is_Access_Type (Act_T)
11412 or else Ekind (Designated_Type (Act_T)) /= E_Subprogram_Type
11413 then
11414 Error_Msg_NE
11415 ("expect access type in instantiation of &", Actual, Gen_T);
11416 Abandon_Instantiation (Actual);
11417 end if;
11418
11419 -- According to AI05-288, actuals for access_to_subprograms must be
11420 -- subtype conformant with the generic formal. Previous to AI05-288
11421 -- only mode conformance was required.
11422
11423 -- This is a binding interpretation that applies to previous versions
11424 -- of the language, no need to maintain previous weaker checks.
11425
11426 Check_Subtype_Conformant
11427 (Designated_Type (Act_T),
11428 Designated_Type (A_Gen_T),
11429 Actual,
11430 Get_Inst => True);
11431
11432 if Ekind (Base_Type (Act_T)) = E_Access_Protected_Subprogram_Type then
11433 if Ekind (A_Gen_T) = E_Access_Subprogram_Type then
11434 Error_Msg_NE
11435 ("protected access type not allowed for formal &",
11436 Actual, Gen_T);
11437 end if;
11438
11439 elsif Ekind (A_Gen_T) = E_Access_Protected_Subprogram_Type then
11440 Error_Msg_NE
11441 ("expect protected access type for formal &",
11442 Actual, Gen_T);
11443 end if;
11444
11445 -- If the formal has a specified convention (which in most cases
11446 -- will be StdCall) verify that the actual has the same convention.
11447
11448 if Has_Convention_Pragma (A_Gen_T)
11449 and then Convention (A_Gen_T) /= Convention (Act_T)
11450 then
11451 Error_Msg_Name_1 := Get_Convention_Name (Convention (A_Gen_T));
11452 Error_Msg_NE
11453 ("actual for formal & must have convention %", Actual, Gen_T);
11454 end if;
11455 end Validate_Access_Subprogram_Instance;
11456
11457 -----------------------------------
11458 -- Validate_Access_Type_Instance --
11459 -----------------------------------
11460
11461 procedure Validate_Access_Type_Instance is
11462 Desig_Type : constant Entity_Id :=
11463 Find_Actual_Type (Designated_Type (A_Gen_T), A_Gen_T);
11464 Desig_Act : Entity_Id;
11465
11466 begin
11467 if not Is_Access_Type (Act_T) then
11468 Error_Msg_NE
11469 ("expect access type in instantiation of &", Actual, Gen_T);
11470 Abandon_Instantiation (Actual);
11471 end if;
11472
11473 if Is_Access_Constant (A_Gen_T) then
11474 if not Is_Access_Constant (Act_T) then
11475 Error_Msg_N
11476 ("actual type must be access-to-constant type", Actual);
11477 Abandon_Instantiation (Actual);
11478 end if;
11479 else
11480 if Is_Access_Constant (Act_T) then
11481 Error_Msg_N
11482 ("actual type must be access-to-variable type", Actual);
11483 Abandon_Instantiation (Actual);
11484
11485 elsif Ekind (A_Gen_T) = E_General_Access_Type
11486 and then Ekind (Base_Type (Act_T)) /= E_General_Access_Type
11487 then
11488 Error_Msg_N -- CODEFIX
11489 ("actual must be general access type!", Actual);
11490 Error_Msg_NE -- CODEFIX
11491 ("add ALL to }!", Actual, Act_T);
11492 Abandon_Instantiation (Actual);
11493 end if;
11494 end if;
11495
11496 -- The designated subtypes, that is to say the subtypes introduced
11497 -- by an access type declaration (and not by a subtype declaration)
11498 -- must match.
11499
11500 Desig_Act := Designated_Type (Base_Type (Act_T));
11501
11502 -- The designated type may have been introduced through a limited_
11503 -- with clause, in which case retrieve the non-limited view. This
11504 -- applies to incomplete types as well as to class-wide types.
11505
11506 if From_Limited_With (Desig_Act) then
11507 Desig_Act := Available_View (Desig_Act);
11508 end if;
11509
11510 if not Subtypes_Match (Desig_Type, Desig_Act) then
11511 Error_Msg_NE
11512 ("designated type of actual does not match that of formal &",
11513 Actual, Gen_T);
11514
11515 if not Predicates_Match (Desig_Type, Desig_Act) then
11516 Error_Msg_N ("\predicates do not match", Actual);
11517 end if;
11518
11519 Abandon_Instantiation (Actual);
11520
11521 elsif Is_Access_Type (Designated_Type (Act_T))
11522 and then Is_Constrained (Designated_Type (Designated_Type (Act_T)))
11523 /=
11524 Is_Constrained (Designated_Type (Desig_Type))
11525 then
11526 Error_Msg_NE
11527 ("designated type of actual does not match that of formal &",
11528 Actual, Gen_T);
11529
11530 if not Predicates_Match (Desig_Type, Desig_Act) then
11531 Error_Msg_N ("\predicates do not match", Actual);
11532 end if;
11533
11534 Abandon_Instantiation (Actual);
11535 end if;
11536
11537 -- Ada 2005: null-exclusion indicators of the two types must agree
11538
11539 if Can_Never_Be_Null (A_Gen_T) /= Can_Never_Be_Null (Act_T) then
11540 Error_Msg_NE
11541 ("non null exclusion of actual and formal & do not match",
11542 Actual, Gen_T);
11543 end if;
11544 end Validate_Access_Type_Instance;
11545
11546 ----------------------------------
11547 -- Validate_Array_Type_Instance --
11548 ----------------------------------
11549
11550 procedure Validate_Array_Type_Instance is
11551 I1 : Node_Id;
11552 I2 : Node_Id;
11553 T2 : Entity_Id;
11554
11555 function Formal_Dimensions return Int;
11556 -- Count number of dimensions in array type formal
11557
11558 -----------------------
11559 -- Formal_Dimensions --
11560 -----------------------
11561
11562 function Formal_Dimensions return Int is
11563 Num : Int := 0;
11564 Index : Node_Id;
11565
11566 begin
11567 if Nkind (Def) = N_Constrained_Array_Definition then
11568 Index := First (Discrete_Subtype_Definitions (Def));
11569 else
11570 Index := First (Subtype_Marks (Def));
11571 end if;
11572
11573 while Present (Index) loop
11574 Num := Num + 1;
11575 Next_Index (Index);
11576 end loop;
11577
11578 return Num;
11579 end Formal_Dimensions;
11580
11581 -- Start of processing for Validate_Array_Type_Instance
11582
11583 begin
11584 if not Is_Array_Type (Act_T) then
11585 Error_Msg_NE
11586 ("expect array type in instantiation of &", Actual, Gen_T);
11587 Abandon_Instantiation (Actual);
11588
11589 elsif Nkind (Def) = N_Constrained_Array_Definition then
11590 if not (Is_Constrained (Act_T)) then
11591 Error_Msg_NE
11592 ("expect constrained array in instantiation of &",
11593 Actual, Gen_T);
11594 Abandon_Instantiation (Actual);
11595 end if;
11596
11597 else
11598 if Is_Constrained (Act_T) then
11599 Error_Msg_NE
11600 ("expect unconstrained array in instantiation of &",
11601 Actual, Gen_T);
11602 Abandon_Instantiation (Actual);
11603 end if;
11604 end if;
11605
11606 if Formal_Dimensions /= Number_Dimensions (Act_T) then
11607 Error_Msg_NE
11608 ("dimensions of actual do not match formal &", Actual, Gen_T);
11609 Abandon_Instantiation (Actual);
11610 end if;
11611
11612 I1 := First_Index (A_Gen_T);
11613 I2 := First_Index (Act_T);
11614 for J in 1 .. Formal_Dimensions loop
11615
11616 -- If the indexes of the actual were given by a subtype_mark,
11617 -- the index was transformed into a range attribute. Retrieve
11618 -- the original type mark for checking.
11619
11620 if Is_Entity_Name (Original_Node (I2)) then
11621 T2 := Entity (Original_Node (I2));
11622 else
11623 T2 := Etype (I2);
11624 end if;
11625
11626 if not Subtypes_Match
11627 (Find_Actual_Type (Etype (I1), A_Gen_T), T2)
11628 then
11629 Error_Msg_NE
11630 ("index types of actual do not match those of formal &",
11631 Actual, Gen_T);
11632 Abandon_Instantiation (Actual);
11633 end if;
11634
11635 Next_Index (I1);
11636 Next_Index (I2);
11637 end loop;
11638
11639 -- Check matching subtypes. Note that there are complex visibility
11640 -- issues when the generic is a child unit and some aspect of the
11641 -- generic type is declared in a parent unit of the generic. We do
11642 -- the test to handle this special case only after a direct check
11643 -- for static matching has failed. The case where both the component
11644 -- type and the array type are separate formals, and the component
11645 -- type is a private view may also require special checking in
11646 -- Subtypes_Match.
11647
11648 if Subtypes_Match
11649 (Component_Type (A_Gen_T), Component_Type (Act_T))
11650 or else
11651 Subtypes_Match
11652 (Find_Actual_Type (Component_Type (A_Gen_T), A_Gen_T),
11653 Component_Type (Act_T))
11654 then
11655 null;
11656 else
11657 Error_Msg_NE
11658 ("component subtype of actual does not match that of formal &",
11659 Actual, Gen_T);
11660 Abandon_Instantiation (Actual);
11661 end if;
11662
11663 if Has_Aliased_Components (A_Gen_T)
11664 and then not Has_Aliased_Components (Act_T)
11665 then
11666 Error_Msg_NE
11667 ("actual must have aliased components to match formal type &",
11668 Actual, Gen_T);
11669 end if;
11670 end Validate_Array_Type_Instance;
11671
11672 -----------------------------------------------
11673 -- Validate_Derived_Interface_Type_Instance --
11674 -----------------------------------------------
11675
11676 procedure Validate_Derived_Interface_Type_Instance is
11677 Par : constant Entity_Id := Entity (Subtype_Indication (Def));
11678 Elmt : Elmt_Id;
11679
11680 begin
11681 -- First apply interface instance checks
11682
11683 Validate_Interface_Type_Instance;
11684
11685 -- Verify that immediate parent interface is an ancestor of
11686 -- the actual.
11687
11688 if Present (Par)
11689 and then not Interface_Present_In_Ancestor (Act_T, Par)
11690 then
11691 Error_Msg_NE
11692 ("interface actual must include progenitor&", Actual, Par);
11693 end if;
11694
11695 -- Now verify that the actual includes all other ancestors of
11696 -- the formal.
11697
11698 Elmt := First_Elmt (Interfaces (A_Gen_T));
11699 while Present (Elmt) loop
11700 if not Interface_Present_In_Ancestor
11701 (Act_T, Get_Instance_Of (Node (Elmt)))
11702 then
11703 Error_Msg_NE
11704 ("interface actual must include progenitor&",
11705 Actual, Node (Elmt));
11706 end if;
11707
11708 Next_Elmt (Elmt);
11709 end loop;
11710 end Validate_Derived_Interface_Type_Instance;
11711
11712 ------------------------------------
11713 -- Validate_Derived_Type_Instance --
11714 ------------------------------------
11715
11716 procedure Validate_Derived_Type_Instance is
11717 Actual_Discr : Entity_Id;
11718 Ancestor_Discr : Entity_Id;
11719
11720 begin
11721 -- If the parent type in the generic declaration is itself a previous
11722 -- formal type, then it is local to the generic and absent from the
11723 -- analyzed generic definition. In that case the ancestor is the
11724 -- instance of the formal (which must have been instantiated
11725 -- previously), unless the ancestor is itself a formal derived type.
11726 -- In this latter case (which is the subject of Corrigendum 8652/0038
11727 -- (AI-202) the ancestor of the formals is the ancestor of its
11728 -- parent. Otherwise, the analyzed generic carries the parent type.
11729 -- If the parent type is defined in a previous formal package, then
11730 -- the scope of that formal package is that of the generic type
11731 -- itself, and it has already been mapped into the corresponding type
11732 -- in the actual package.
11733
11734 -- Common case: parent type defined outside of the generic
11735
11736 if Is_Entity_Name (Subtype_Mark (Def))
11737 and then Present (Entity (Subtype_Mark (Def)))
11738 then
11739 Ancestor := Get_Instance_Of (Entity (Subtype_Mark (Def)));
11740
11741 -- Check whether parent is defined in a previous formal package
11742
11743 elsif
11744 Scope (Scope (Base_Type (Etype (A_Gen_T)))) = Scope (A_Gen_T)
11745 then
11746 Ancestor :=
11747 Get_Instance_Of (Base_Type (Etype (A_Gen_T)));
11748
11749 -- The type may be a local derivation, or a type extension of a
11750 -- previous formal, or of a formal of a parent package.
11751
11752 elsif Is_Derived_Type (Get_Instance_Of (A_Gen_T))
11753 or else
11754 Ekind (Get_Instance_Of (A_Gen_T)) = E_Record_Type_With_Private
11755 then
11756 -- Check whether the parent is another derived formal type in the
11757 -- same generic unit.
11758
11759 if Etype (A_Gen_T) /= A_Gen_T
11760 and then Is_Generic_Type (Etype (A_Gen_T))
11761 and then Scope (Etype (A_Gen_T)) = Scope (A_Gen_T)
11762 and then Etype (Etype (A_Gen_T)) /= Etype (A_Gen_T)
11763 then
11764 -- Locate ancestor of parent from the subtype declaration
11765 -- created for the actual.
11766
11767 declare
11768 Decl : Node_Id;
11769
11770 begin
11771 Decl := First (Actual_Decls);
11772 while Present (Decl) loop
11773 if Nkind (Decl) = N_Subtype_Declaration
11774 and then Chars (Defining_Identifier (Decl)) =
11775 Chars (Etype (A_Gen_T))
11776 then
11777 Ancestor := Generic_Parent_Type (Decl);
11778 exit;
11779 else
11780 Next (Decl);
11781 end if;
11782 end loop;
11783 end;
11784
11785 pragma Assert (Present (Ancestor));
11786
11787 -- The ancestor itself may be a previous formal that has been
11788 -- instantiated.
11789
11790 Ancestor := Get_Instance_Of (Ancestor);
11791
11792 else
11793 Ancestor :=
11794 Get_Instance_Of (Base_Type (Get_Instance_Of (A_Gen_T)));
11795 end if;
11796
11797 -- Check whether parent is a previous formal of the current generic
11798
11799 elsif Is_Derived_Type (A_Gen_T)
11800 and then Is_Generic_Type (Etype (A_Gen_T))
11801 and then Scope (A_Gen_T) = Scope (Etype (A_Gen_T))
11802 then
11803 Ancestor := Get_Instance_Of (First_Subtype (Etype (A_Gen_T)));
11804
11805 -- An unusual case: the actual is a type declared in a parent unit,
11806 -- but is not a formal type so there is no instance_of for it.
11807 -- Retrieve it by analyzing the record extension.
11808
11809 elsif Is_Child_Unit (Scope (A_Gen_T))
11810 and then In_Open_Scopes (Scope (Act_T))
11811 and then Is_Generic_Instance (Scope (Act_T))
11812 then
11813 Analyze (Subtype_Mark (Def));
11814 Ancestor := Entity (Subtype_Mark (Def));
11815
11816 else
11817 Ancestor := Get_Instance_Of (Etype (Base_Type (A_Gen_T)));
11818 end if;
11819
11820 -- If the formal derived type has pragma Preelaborable_Initialization
11821 -- then the actual type must have preelaborable initialization.
11822
11823 if Known_To_Have_Preelab_Init (A_Gen_T)
11824 and then not Has_Preelaborable_Initialization (Act_T)
11825 then
11826 Error_Msg_NE
11827 ("actual for & must have preelaborable initialization",
11828 Actual, Gen_T);
11829 end if;
11830
11831 -- Ada 2005 (AI-251)
11832
11833 if Ada_Version >= Ada_2005 and then Is_Interface (Ancestor) then
11834 if not Interface_Present_In_Ancestor (Act_T, Ancestor) then
11835 Error_Msg_NE
11836 ("(Ada 2005) expected type implementing & in instantiation",
11837 Actual, Ancestor);
11838 end if;
11839
11840 -- Finally verify that the (instance of) the ancestor is an ancestor
11841 -- of the actual.
11842
11843 elsif not Is_Ancestor (Base_Type (Ancestor), Act_T) then
11844 Error_Msg_NE
11845 ("expect type derived from & in instantiation",
11846 Actual, First_Subtype (Ancestor));
11847 Abandon_Instantiation (Actual);
11848 end if;
11849
11850 -- Ada 2005 (AI-443): Synchronized formal derived type checks. Note
11851 -- that the formal type declaration has been rewritten as a private
11852 -- extension.
11853
11854 if Ada_Version >= Ada_2005
11855 and then Nkind (Parent (A_Gen_T)) = N_Private_Extension_Declaration
11856 and then Synchronized_Present (Parent (A_Gen_T))
11857 then
11858 -- The actual must be a synchronized tagged type
11859
11860 if not Is_Tagged_Type (Act_T) then
11861 Error_Msg_N
11862 ("actual of synchronized type must be tagged", Actual);
11863 Abandon_Instantiation (Actual);
11864
11865 elsif Nkind (Parent (Act_T)) = N_Full_Type_Declaration
11866 and then Nkind (Type_Definition (Parent (Act_T))) =
11867 N_Derived_Type_Definition
11868 and then not Synchronized_Present
11869 (Type_Definition (Parent (Act_T)))
11870 then
11871 Error_Msg_N
11872 ("actual of synchronized type must be synchronized", Actual);
11873 Abandon_Instantiation (Actual);
11874 end if;
11875 end if;
11876
11877 -- Perform atomic/volatile checks (RM C.6(12)). Note that AI05-0218-1
11878 -- removes the second instance of the phrase "or allow pass by copy".
11879
11880 if Is_Atomic (Act_T) and then not Is_Atomic (Ancestor) then
11881 Error_Msg_N
11882 ("cannot have atomic actual type for non-atomic formal type",
11883 Actual);
11884
11885 elsif Is_Volatile (Act_T) and then not Is_Volatile (Ancestor) then
11886 Error_Msg_N
11887 ("cannot have volatile actual type for non-volatile formal type",
11888 Actual);
11889 end if;
11890
11891 -- It should not be necessary to check for unknown discriminants on
11892 -- Formal, but for some reason Has_Unknown_Discriminants is false for
11893 -- A_Gen_T, so Is_Definite_Subtype incorrectly returns True. This
11894 -- needs fixing. ???
11895
11896 if Is_Definite_Subtype (A_Gen_T)
11897 and then not Unknown_Discriminants_Present (Formal)
11898 and then not Is_Definite_Subtype (Act_T)
11899 then
11900 Error_Msg_N ("actual subtype must be constrained", Actual);
11901 Abandon_Instantiation (Actual);
11902 end if;
11903
11904 if not Unknown_Discriminants_Present (Formal) then
11905 if Is_Constrained (Ancestor) then
11906 if not Is_Constrained (Act_T) then
11907 Error_Msg_N ("actual subtype must be constrained", Actual);
11908 Abandon_Instantiation (Actual);
11909 end if;
11910
11911 -- Ancestor is unconstrained, Check if generic formal and actual
11912 -- agree on constrainedness. The check only applies to array types
11913 -- and discriminated types.
11914
11915 elsif Is_Constrained (Act_T) then
11916 if Ekind (Ancestor) = E_Access_Type
11917 or else (not Is_Constrained (A_Gen_T)
11918 and then Is_Composite_Type (A_Gen_T))
11919 then
11920 Error_Msg_N ("actual subtype must be unconstrained", Actual);
11921 Abandon_Instantiation (Actual);
11922 end if;
11923
11924 -- A class-wide type is only allowed if the formal has unknown
11925 -- discriminants.
11926
11927 elsif Is_Class_Wide_Type (Act_T)
11928 and then not Has_Unknown_Discriminants (Ancestor)
11929 then
11930 Error_Msg_NE
11931 ("actual for & cannot be a class-wide type", Actual, Gen_T);
11932 Abandon_Instantiation (Actual);
11933
11934 -- Otherwise, the formal and actual must have the same number
11935 -- of discriminants and each discriminant of the actual must
11936 -- correspond to a discriminant of the formal.
11937
11938 elsif Has_Discriminants (Act_T)
11939 and then not Has_Unknown_Discriminants (Act_T)
11940 and then Has_Discriminants (Ancestor)
11941 then
11942 Actual_Discr := First_Discriminant (Act_T);
11943 Ancestor_Discr := First_Discriminant (Ancestor);
11944 while Present (Actual_Discr)
11945 and then Present (Ancestor_Discr)
11946 loop
11947 if Base_Type (Act_T) /= Base_Type (Ancestor) and then
11948 No (Corresponding_Discriminant (Actual_Discr))
11949 then
11950 Error_Msg_NE
11951 ("discriminant & does not correspond "
11952 & "to ancestor discriminant", Actual, Actual_Discr);
11953 Abandon_Instantiation (Actual);
11954 end if;
11955
11956 Next_Discriminant (Actual_Discr);
11957 Next_Discriminant (Ancestor_Discr);
11958 end loop;
11959
11960 if Present (Actual_Discr) or else Present (Ancestor_Discr) then
11961 Error_Msg_NE
11962 ("actual for & must have same number of discriminants",
11963 Actual, Gen_T);
11964 Abandon_Instantiation (Actual);
11965 end if;
11966
11967 -- This case should be caught by the earlier check for
11968 -- constrainedness, but the check here is added for completeness.
11969
11970 elsif Has_Discriminants (Act_T)
11971 and then not Has_Unknown_Discriminants (Act_T)
11972 then
11973 Error_Msg_NE
11974 ("actual for & must not have discriminants", Actual, Gen_T);
11975 Abandon_Instantiation (Actual);
11976
11977 elsif Has_Discriminants (Ancestor) then
11978 Error_Msg_NE
11979 ("actual for & must have known discriminants", Actual, Gen_T);
11980 Abandon_Instantiation (Actual);
11981 end if;
11982
11983 if not Subtypes_Statically_Compatible
11984 (Act_T, Ancestor, Formal_Derived_Matching => True)
11985 then
11986 Error_Msg_N
11987 ("constraint on actual is incompatible with formal", Actual);
11988 Abandon_Instantiation (Actual);
11989 end if;
11990 end if;
11991
11992 -- If the formal and actual types are abstract, check that there
11993 -- are no abstract primitives of the actual type that correspond to
11994 -- nonabstract primitives of the formal type (second sentence of
11995 -- RM95 3.9.3(9)).
11996
11997 if Is_Abstract_Type (A_Gen_T) and then Is_Abstract_Type (Act_T) then
11998 Check_Abstract_Primitives : declare
11999 Gen_Prims : constant Elist_Id :=
12000 Primitive_Operations (A_Gen_T);
12001 Gen_Elmt : Elmt_Id;
12002 Gen_Subp : Entity_Id;
12003 Anc_Subp : Entity_Id;
12004 Anc_Formal : Entity_Id;
12005 Anc_F_Type : Entity_Id;
12006
12007 Act_Prims : constant Elist_Id := Primitive_Operations (Act_T);
12008 Act_Elmt : Elmt_Id;
12009 Act_Subp : Entity_Id;
12010 Act_Formal : Entity_Id;
12011 Act_F_Type : Entity_Id;
12012
12013 Subprograms_Correspond : Boolean;
12014
12015 function Is_Tagged_Ancestor (T1, T2 : Entity_Id) return Boolean;
12016 -- Returns true if T2 is derived directly or indirectly from
12017 -- T1, including derivations from interfaces. T1 and T2 are
12018 -- required to be specific tagged base types.
12019
12020 ------------------------
12021 -- Is_Tagged_Ancestor --
12022 ------------------------
12023
12024 function Is_Tagged_Ancestor (T1, T2 : Entity_Id) return Boolean
12025 is
12026 Intfc_Elmt : Elmt_Id;
12027
12028 begin
12029 -- The predicate is satisfied if the types are the same
12030
12031 if T1 = T2 then
12032 return True;
12033
12034 -- If we've reached the top of the derivation chain then
12035 -- we know that T1 is not an ancestor of T2.
12036
12037 elsif Etype (T2) = T2 then
12038 return False;
12039
12040 -- Proceed to check T2's immediate parent
12041
12042 elsif Is_Ancestor (T1, Base_Type (Etype (T2))) then
12043 return True;
12044
12045 -- Finally, check to see if T1 is an ancestor of any of T2's
12046 -- progenitors.
12047
12048 else
12049 Intfc_Elmt := First_Elmt (Interfaces (T2));
12050 while Present (Intfc_Elmt) loop
12051 if Is_Ancestor (T1, Node (Intfc_Elmt)) then
12052 return True;
12053 end if;
12054
12055 Next_Elmt (Intfc_Elmt);
12056 end loop;
12057 end if;
12058
12059 return False;
12060 end Is_Tagged_Ancestor;
12061
12062 -- Start of processing for Check_Abstract_Primitives
12063
12064 begin
12065 -- Loop over all of the formal derived type's primitives
12066
12067 Gen_Elmt := First_Elmt (Gen_Prims);
12068 while Present (Gen_Elmt) loop
12069 Gen_Subp := Node (Gen_Elmt);
12070
12071 -- If the primitive of the formal is not abstract, then
12072 -- determine whether there is a corresponding primitive of
12073 -- the actual type that's abstract.
12074
12075 if not Is_Abstract_Subprogram (Gen_Subp) then
12076 Act_Elmt := First_Elmt (Act_Prims);
12077 while Present (Act_Elmt) loop
12078 Act_Subp := Node (Act_Elmt);
12079
12080 -- If we find an abstract primitive of the actual,
12081 -- then we need to test whether it corresponds to the
12082 -- subprogram from which the generic formal primitive
12083 -- is inherited.
12084
12085 if Is_Abstract_Subprogram (Act_Subp) then
12086 Anc_Subp := Alias (Gen_Subp);
12087
12088 -- Test whether we have a corresponding primitive
12089 -- by comparing names, kinds, formal types, and
12090 -- result types.
12091
12092 if Chars (Anc_Subp) = Chars (Act_Subp)
12093 and then Ekind (Anc_Subp) = Ekind (Act_Subp)
12094 then
12095 Anc_Formal := First_Formal (Anc_Subp);
12096 Act_Formal := First_Formal (Act_Subp);
12097 while Present (Anc_Formal)
12098 and then Present (Act_Formal)
12099 loop
12100 Anc_F_Type := Etype (Anc_Formal);
12101 Act_F_Type := Etype (Act_Formal);
12102
12103 if Ekind (Anc_F_Type) =
12104 E_Anonymous_Access_Type
12105 then
12106 Anc_F_Type := Designated_Type (Anc_F_Type);
12107
12108 if Ekind (Act_F_Type) =
12109 E_Anonymous_Access_Type
12110 then
12111 Act_F_Type :=
12112 Designated_Type (Act_F_Type);
12113 else
12114 exit;
12115 end if;
12116
12117 elsif
12118 Ekind (Act_F_Type) = E_Anonymous_Access_Type
12119 then
12120 exit;
12121 end if;
12122
12123 Anc_F_Type := Base_Type (Anc_F_Type);
12124 Act_F_Type := Base_Type (Act_F_Type);
12125
12126 -- If the formal is controlling, then the
12127 -- the type of the actual primitive's formal
12128 -- must be derived directly or indirectly
12129 -- from the type of the ancestor primitive's
12130 -- formal.
12131
12132 if Is_Controlling_Formal (Anc_Formal) then
12133 if not Is_Tagged_Ancestor
12134 (Anc_F_Type, Act_F_Type)
12135 then
12136 exit;
12137 end if;
12138
12139 -- Otherwise the types of the formals must
12140 -- be the same.
12141
12142 elsif Anc_F_Type /= Act_F_Type then
12143 exit;
12144 end if;
12145
12146 Next_Entity (Anc_Formal);
12147 Next_Entity (Act_Formal);
12148 end loop;
12149
12150 -- If we traversed through all of the formals
12151 -- then so far the subprograms correspond, so
12152 -- now check that any result types correspond.
12153
12154 if No (Anc_Formal) and then No (Act_Formal) then
12155 Subprograms_Correspond := True;
12156
12157 if Ekind (Act_Subp) = E_Function then
12158 Anc_F_Type := Etype (Anc_Subp);
12159 Act_F_Type := Etype (Act_Subp);
12160
12161 if Ekind (Anc_F_Type) =
12162 E_Anonymous_Access_Type
12163 then
12164 Anc_F_Type :=
12165 Designated_Type (Anc_F_Type);
12166
12167 if Ekind (Act_F_Type) =
12168 E_Anonymous_Access_Type
12169 then
12170 Act_F_Type :=
12171 Designated_Type (Act_F_Type);
12172 else
12173 Subprograms_Correspond := False;
12174 end if;
12175
12176 elsif
12177 Ekind (Act_F_Type)
12178 = E_Anonymous_Access_Type
12179 then
12180 Subprograms_Correspond := False;
12181 end if;
12182
12183 Anc_F_Type := Base_Type (Anc_F_Type);
12184 Act_F_Type := Base_Type (Act_F_Type);
12185
12186 -- Now either the result types must be
12187 -- the same or, if the result type is
12188 -- controlling, the result type of the
12189 -- actual primitive must descend from the
12190 -- result type of the ancestor primitive.
12191
12192 if Subprograms_Correspond
12193 and then Anc_F_Type /= Act_F_Type
12194 and then
12195 Has_Controlling_Result (Anc_Subp)
12196 and then not Is_Tagged_Ancestor
12197 (Anc_F_Type, Act_F_Type)
12198 then
12199 Subprograms_Correspond := False;
12200 end if;
12201 end if;
12202
12203 -- Found a matching subprogram belonging to
12204 -- formal ancestor type, so actual subprogram
12205 -- corresponds and this violates 3.9.3(9).
12206
12207 if Subprograms_Correspond then
12208 Error_Msg_NE
12209 ("abstract subprogram & overrides "
12210 & "nonabstract subprogram of ancestor",
12211 Actual, Act_Subp);
12212 end if;
12213 end if;
12214 end if;
12215 end if;
12216
12217 Next_Elmt (Act_Elmt);
12218 end loop;
12219 end if;
12220
12221 Next_Elmt (Gen_Elmt);
12222 end loop;
12223 end Check_Abstract_Primitives;
12224 end if;
12225
12226 -- Verify that limitedness matches. If parent is a limited
12227 -- interface then the generic formal is not unless declared
12228 -- explicitly so. If not declared limited, the actual cannot be
12229 -- limited (see AI05-0087).
12230
12231 -- Even though this AI is a binding interpretation, we enable the
12232 -- check only in Ada 2012 mode, because this improper construct
12233 -- shows up in user code and in existing B-tests.
12234
12235 if Is_Limited_Type (Act_T)
12236 and then not Is_Limited_Type (A_Gen_T)
12237 and then Ada_Version >= Ada_2012
12238 then
12239 if In_Instance then
12240 null;
12241 else
12242 Error_Msg_NE
12243 ("actual for non-limited & cannot be a limited type",
12244 Actual, Gen_T);
12245 Explain_Limited_Type (Act_T, Actual);
12246 Abandon_Instantiation (Actual);
12247 end if;
12248 end if;
12249 end Validate_Derived_Type_Instance;
12250
12251 ----------------------------------------
12252 -- Validate_Discriminated_Formal_Type --
12253 ----------------------------------------
12254
12255 procedure Validate_Discriminated_Formal_Type is
12256 Formal_Discr : Entity_Id;
12257 Actual_Discr : Entity_Id;
12258 Formal_Subt : Entity_Id;
12259
12260 begin
12261 if Has_Discriminants (A_Gen_T) then
12262 if not Has_Discriminants (Act_T) then
12263 Error_Msg_NE
12264 ("actual for & must have discriminants", Actual, Gen_T);
12265 Abandon_Instantiation (Actual);
12266
12267 elsif Is_Constrained (Act_T) then
12268 Error_Msg_NE
12269 ("actual for & must be unconstrained", Actual, Gen_T);
12270 Abandon_Instantiation (Actual);
12271
12272 else
12273 Formal_Discr := First_Discriminant (A_Gen_T);
12274 Actual_Discr := First_Discriminant (Act_T);
12275 while Formal_Discr /= Empty loop
12276 if Actual_Discr = Empty then
12277 Error_Msg_NE
12278 ("discriminants on actual do not match formal",
12279 Actual, Gen_T);
12280 Abandon_Instantiation (Actual);
12281 end if;
12282
12283 Formal_Subt := Get_Instance_Of (Etype (Formal_Discr));
12284
12285 -- Access discriminants match if designated types do
12286
12287 if Ekind (Base_Type (Formal_Subt)) = E_Anonymous_Access_Type
12288 and then (Ekind (Base_Type (Etype (Actual_Discr)))) =
12289 E_Anonymous_Access_Type
12290 and then
12291 Get_Instance_Of
12292 (Designated_Type (Base_Type (Formal_Subt))) =
12293 Designated_Type (Base_Type (Etype (Actual_Discr)))
12294 then
12295 null;
12296
12297 elsif Base_Type (Formal_Subt) /=
12298 Base_Type (Etype (Actual_Discr))
12299 then
12300 Error_Msg_NE
12301 ("types of actual discriminants must match formal",
12302 Actual, Gen_T);
12303 Abandon_Instantiation (Actual);
12304
12305 elsif not Subtypes_Statically_Match
12306 (Formal_Subt, Etype (Actual_Discr))
12307 and then Ada_Version >= Ada_95
12308 then
12309 Error_Msg_NE
12310 ("subtypes of actual discriminants must match formal",
12311 Actual, Gen_T);
12312 Abandon_Instantiation (Actual);
12313 end if;
12314
12315 Next_Discriminant (Formal_Discr);
12316 Next_Discriminant (Actual_Discr);
12317 end loop;
12318
12319 if Actual_Discr /= Empty then
12320 Error_Msg_NE
12321 ("discriminants on actual do not match formal",
12322 Actual, Gen_T);
12323 Abandon_Instantiation (Actual);
12324 end if;
12325 end if;
12326 end if;
12327 end Validate_Discriminated_Formal_Type;
12328
12329 ---------------------------------------
12330 -- Validate_Incomplete_Type_Instance --
12331 ---------------------------------------
12332
12333 procedure Validate_Incomplete_Type_Instance is
12334 begin
12335 if not Is_Tagged_Type (Act_T)
12336 and then Is_Tagged_Type (A_Gen_T)
12337 then
12338 Error_Msg_NE
12339 ("actual for & must be a tagged type", Actual, Gen_T);
12340 end if;
12341
12342 Validate_Discriminated_Formal_Type;
12343 end Validate_Incomplete_Type_Instance;
12344
12345 --------------------------------------
12346 -- Validate_Interface_Type_Instance --
12347 --------------------------------------
12348
12349 procedure Validate_Interface_Type_Instance is
12350 begin
12351 if not Is_Interface (Act_T) then
12352 Error_Msg_NE
12353 ("actual for formal interface type must be an interface",
12354 Actual, Gen_T);
12355
12356 elsif Is_Limited_Type (Act_T) /= Is_Limited_Type (A_Gen_T)
12357 or else Is_Task_Interface (A_Gen_T) /= Is_Task_Interface (Act_T)
12358 or else Is_Protected_Interface (A_Gen_T) /=
12359 Is_Protected_Interface (Act_T)
12360 or else Is_Synchronized_Interface (A_Gen_T) /=
12361 Is_Synchronized_Interface (Act_T)
12362 then
12363 Error_Msg_NE
12364 ("actual for interface& does not match (RM 12.5.5(4))",
12365 Actual, Gen_T);
12366 end if;
12367 end Validate_Interface_Type_Instance;
12368
12369 ------------------------------------
12370 -- Validate_Private_Type_Instance --
12371 ------------------------------------
12372
12373 procedure Validate_Private_Type_Instance is
12374 begin
12375 if Is_Limited_Type (Act_T)
12376 and then not Is_Limited_Type (A_Gen_T)
12377 then
12378 if In_Instance then
12379 null;
12380 else
12381 Error_Msg_NE
12382 ("actual for non-limited & cannot be a limited type", Actual,
12383 Gen_T);
12384 Explain_Limited_Type (Act_T, Actual);
12385 Abandon_Instantiation (Actual);
12386 end if;
12387
12388 elsif Known_To_Have_Preelab_Init (A_Gen_T)
12389 and then not Has_Preelaborable_Initialization (Act_T)
12390 then
12391 Error_Msg_NE
12392 ("actual for & must have preelaborable initialization", Actual,
12393 Gen_T);
12394
12395 elsif not Is_Definite_Subtype (Act_T)
12396 and then Is_Definite_Subtype (A_Gen_T)
12397 and then Ada_Version >= Ada_95
12398 then
12399 Error_Msg_NE
12400 ("actual for & must be a definite subtype", Actual, Gen_T);
12401
12402 elsif not Is_Tagged_Type (Act_T)
12403 and then Is_Tagged_Type (A_Gen_T)
12404 then
12405 Error_Msg_NE
12406 ("actual for & must be a tagged type", Actual, Gen_T);
12407 end if;
12408
12409 Validate_Discriminated_Formal_Type;
12410 Ancestor := Gen_T;
12411 end Validate_Private_Type_Instance;
12412
12413 -- Start of processing for Instantiate_Type
12414
12415 begin
12416 if Get_Instance_Of (A_Gen_T) /= A_Gen_T then
12417 Error_Msg_N ("duplicate instantiation of generic type", Actual);
12418 return New_List (Error);
12419
12420 elsif not Is_Entity_Name (Actual)
12421 or else not Is_Type (Entity (Actual))
12422 then
12423 Error_Msg_NE
12424 ("expect valid subtype mark to instantiate &", Actual, Gen_T);
12425 Abandon_Instantiation (Actual);
12426
12427 else
12428 Act_T := Entity (Actual);
12429
12430 -- Ada 2005 (AI-216): An Unchecked_Union subtype shall only be passed
12431 -- as a generic actual parameter if the corresponding formal type
12432 -- does not have a known_discriminant_part, or is a formal derived
12433 -- type that is an Unchecked_Union type.
12434
12435 if Is_Unchecked_Union (Base_Type (Act_T)) then
12436 if not Has_Discriminants (A_Gen_T)
12437 or else (Is_Derived_Type (A_Gen_T)
12438 and then Is_Unchecked_Union (A_Gen_T))
12439 then
12440 null;
12441 else
12442 Error_Msg_N ("unchecked union cannot be the actual for a "
12443 & "discriminated formal type", Act_T);
12444
12445 end if;
12446 end if;
12447
12448 -- Deal with fixed/floating restrictions
12449
12450 if Is_Floating_Point_Type (Act_T) then
12451 Check_Restriction (No_Floating_Point, Actual);
12452 elsif Is_Fixed_Point_Type (Act_T) then
12453 Check_Restriction (No_Fixed_Point, Actual);
12454 end if;
12455
12456 -- Deal with error of using incomplete type as generic actual.
12457 -- This includes limited views of a type, even if the non-limited
12458 -- view may be available.
12459
12460 if Ekind (Act_T) = E_Incomplete_Type
12461 or else (Is_Class_Wide_Type (Act_T)
12462 and then Ekind (Root_Type (Act_T)) = E_Incomplete_Type)
12463 then
12464 -- If the formal is an incomplete type, the actual can be
12465 -- incomplete as well.
12466
12467 if Ekind (A_Gen_T) = E_Incomplete_Type then
12468 null;
12469
12470 elsif Is_Class_Wide_Type (Act_T)
12471 or else No (Full_View (Act_T))
12472 then
12473 Error_Msg_N ("premature use of incomplete type", Actual);
12474 Abandon_Instantiation (Actual);
12475 else
12476 Act_T := Full_View (Act_T);
12477 Set_Entity (Actual, Act_T);
12478
12479 if Has_Private_Component (Act_T) then
12480 Error_Msg_N
12481 ("premature use of type with private component", Actual);
12482 end if;
12483 end if;
12484
12485 -- Deal with error of premature use of private type as generic actual
12486
12487 elsif Is_Private_Type (Act_T)
12488 and then Is_Private_Type (Base_Type (Act_T))
12489 and then not Is_Generic_Type (Act_T)
12490 and then not Is_Derived_Type (Act_T)
12491 and then No (Full_View (Root_Type (Act_T)))
12492 then
12493 -- If the formal is an incomplete type, the actual can be
12494 -- private or incomplete as well.
12495
12496 if Ekind (A_Gen_T) = E_Incomplete_Type then
12497 null;
12498 else
12499 Error_Msg_N ("premature use of private type", Actual);
12500 end if;
12501
12502 elsif Has_Private_Component (Act_T) then
12503 Error_Msg_N
12504 ("premature use of type with private component", Actual);
12505 end if;
12506
12507 Set_Instance_Of (A_Gen_T, Act_T);
12508
12509 -- If the type is generic, the class-wide type may also be used
12510
12511 if Is_Tagged_Type (A_Gen_T)
12512 and then Is_Tagged_Type (Act_T)
12513 and then not Is_Class_Wide_Type (A_Gen_T)
12514 then
12515 Set_Instance_Of (Class_Wide_Type (A_Gen_T),
12516 Class_Wide_Type (Act_T));
12517 end if;
12518
12519 if not Is_Abstract_Type (A_Gen_T)
12520 and then Is_Abstract_Type (Act_T)
12521 then
12522 Error_Msg_N
12523 ("actual of non-abstract formal cannot be abstract", Actual);
12524 end if;
12525
12526 -- A generic scalar type is a first subtype for which we generate
12527 -- an anonymous base type. Indicate that the instance of this base
12528 -- is the base type of the actual.
12529
12530 if Is_Scalar_Type (A_Gen_T) then
12531 Set_Instance_Of (Etype (A_Gen_T), Etype (Act_T));
12532 end if;
12533 end if;
12534
12535 if Error_Posted (Act_T) then
12536 null;
12537 else
12538 case Nkind (Def) is
12539 when N_Formal_Private_Type_Definition =>
12540 Validate_Private_Type_Instance;
12541
12542 when N_Formal_Incomplete_Type_Definition =>
12543 Validate_Incomplete_Type_Instance;
12544
12545 when N_Formal_Derived_Type_Definition =>
12546 Validate_Derived_Type_Instance;
12547
12548 when N_Formal_Discrete_Type_Definition =>
12549 if not Is_Discrete_Type (Act_T) then
12550 Error_Msg_NE
12551 ("expect discrete type in instantiation of&",
12552 Actual, Gen_T);
12553 Abandon_Instantiation (Actual);
12554 end if;
12555
12556 Diagnose_Predicated_Actual;
12557
12558 when N_Formal_Signed_Integer_Type_Definition =>
12559 if not Is_Signed_Integer_Type (Act_T) then
12560 Error_Msg_NE
12561 ("expect signed integer type in instantiation of&",
12562 Actual, Gen_T);
12563 Abandon_Instantiation (Actual);
12564 end if;
12565
12566 Diagnose_Predicated_Actual;
12567
12568 when N_Formal_Modular_Type_Definition =>
12569 if not Is_Modular_Integer_Type (Act_T) then
12570 Error_Msg_NE
12571 ("expect modular type in instantiation of &",
12572 Actual, Gen_T);
12573 Abandon_Instantiation (Actual);
12574 end if;
12575
12576 Diagnose_Predicated_Actual;
12577
12578 when N_Formal_Floating_Point_Definition =>
12579 if not Is_Floating_Point_Type (Act_T) then
12580 Error_Msg_NE
12581 ("expect float type in instantiation of &", Actual, Gen_T);
12582 Abandon_Instantiation (Actual);
12583 end if;
12584
12585 when N_Formal_Ordinary_Fixed_Point_Definition =>
12586 if not Is_Ordinary_Fixed_Point_Type (Act_T) then
12587 Error_Msg_NE
12588 ("expect ordinary fixed point type in instantiation of &",
12589 Actual, Gen_T);
12590 Abandon_Instantiation (Actual);
12591 end if;
12592
12593 when N_Formal_Decimal_Fixed_Point_Definition =>
12594 if not Is_Decimal_Fixed_Point_Type (Act_T) then
12595 Error_Msg_NE
12596 ("expect decimal type in instantiation of &",
12597 Actual, Gen_T);
12598 Abandon_Instantiation (Actual);
12599 end if;
12600
12601 when N_Array_Type_Definition =>
12602 Validate_Array_Type_Instance;
12603
12604 when N_Access_To_Object_Definition =>
12605 Validate_Access_Type_Instance;
12606
12607 when N_Access_Function_Definition |
12608 N_Access_Procedure_Definition =>
12609 Validate_Access_Subprogram_Instance;
12610
12611 when N_Record_Definition =>
12612 Validate_Interface_Type_Instance;
12613
12614 when N_Derived_Type_Definition =>
12615 Validate_Derived_Interface_Type_Instance;
12616
12617 when others =>
12618 raise Program_Error;
12619
12620 end case;
12621 end if;
12622
12623 Subt := New_Copy (Gen_T);
12624
12625 -- Use adjusted sloc of subtype name as the location for other nodes in
12626 -- the subtype declaration.
12627
12628 Loc := Sloc (Subt);
12629
12630 Decl_Node :=
12631 Make_Subtype_Declaration (Loc,
12632 Defining_Identifier => Subt,
12633 Subtype_Indication => New_Occurrence_Of (Act_T, Loc));
12634
12635 if Is_Private_Type (Act_T) then
12636 Set_Has_Private_View (Subtype_Indication (Decl_Node));
12637
12638 elsif Is_Access_Type (Act_T)
12639 and then Is_Private_Type (Designated_Type (Act_T))
12640 then
12641 Set_Has_Private_View (Subtype_Indication (Decl_Node));
12642 end if;
12643
12644 -- In Ada 2012 the actual may be a limited view. Indicate that
12645 -- the local subtype must be treated as such.
12646
12647 if From_Limited_With (Act_T) then
12648 Set_Ekind (Subt, E_Incomplete_Subtype);
12649 Set_From_Limited_With (Subt);
12650 end if;
12651
12652 Decl_Nodes := New_List (Decl_Node);
12653
12654 -- Flag actual derived types so their elaboration produces the
12655 -- appropriate renamings for the primitive operations of the ancestor.
12656 -- Flag actual for formal private types as well, to determine whether
12657 -- operations in the private part may override inherited operations.
12658 -- If the formal has an interface list, the ancestor is not the
12659 -- parent, but the analyzed formal that includes the interface
12660 -- operations of all its progenitors.
12661
12662 -- Same treatment for formal private types, so we can check whether the
12663 -- type is tagged limited when validating derivations in the private
12664 -- part. (See AI05-096).
12665
12666 if Nkind (Def) = N_Formal_Derived_Type_Definition then
12667 if Present (Interface_List (Def)) then
12668 Set_Generic_Parent_Type (Decl_Node, A_Gen_T);
12669 else
12670 Set_Generic_Parent_Type (Decl_Node, Ancestor);
12671 end if;
12672
12673 elsif Nkind_In (Def, N_Formal_Private_Type_Definition,
12674 N_Formal_Incomplete_Type_Definition)
12675 then
12676 Set_Generic_Parent_Type (Decl_Node, A_Gen_T);
12677 end if;
12678
12679 -- If the actual is a synchronized type that implements an interface,
12680 -- the primitive operations are attached to the corresponding record,
12681 -- and we have to treat it as an additional generic actual, so that its
12682 -- primitive operations become visible in the instance. The task or
12683 -- protected type itself does not carry primitive operations.
12684
12685 if Is_Concurrent_Type (Act_T)
12686 and then Is_Tagged_Type (Act_T)
12687 and then Present (Corresponding_Record_Type (Act_T))
12688 and then Present (Ancestor)
12689 and then Is_Interface (Ancestor)
12690 then
12691 declare
12692 Corr_Rec : constant Entity_Id :=
12693 Corresponding_Record_Type (Act_T);
12694 New_Corr : Entity_Id;
12695 Corr_Decl : Node_Id;
12696
12697 begin
12698 New_Corr := Make_Temporary (Loc, 'S');
12699 Corr_Decl :=
12700 Make_Subtype_Declaration (Loc,
12701 Defining_Identifier => New_Corr,
12702 Subtype_Indication =>
12703 New_Occurrence_Of (Corr_Rec, Loc));
12704 Append_To (Decl_Nodes, Corr_Decl);
12705
12706 if Ekind (Act_T) = E_Task_Type then
12707 Set_Ekind (Subt, E_Task_Subtype);
12708 else
12709 Set_Ekind (Subt, E_Protected_Subtype);
12710 end if;
12711
12712 Set_Corresponding_Record_Type (Subt, Corr_Rec);
12713 Set_Generic_Parent_Type (Corr_Decl, Ancestor);
12714 Set_Generic_Parent_Type (Decl_Node, Empty);
12715 end;
12716 end if;
12717
12718 -- For a floating-point type, capture dimension info if any, because
12719 -- the generated subtype declaration does not come from source and
12720 -- will not process dimensions.
12721
12722 if Is_Floating_Point_Type (Act_T) then
12723 Copy_Dimensions (Act_T, Subt);
12724 end if;
12725
12726 return Decl_Nodes;
12727 end Instantiate_Type;
12728
12729 ---------------------
12730 -- Is_In_Main_Unit --
12731 ---------------------
12732
12733 function Is_In_Main_Unit (N : Node_Id) return Boolean is
12734 Unum : constant Unit_Number_Type := Get_Source_Unit (N);
12735 Current_Unit : Node_Id;
12736
12737 begin
12738 if Unum = Main_Unit then
12739 return True;
12740
12741 -- If the current unit is a subunit then it is either the main unit or
12742 -- is being compiled as part of the main unit.
12743
12744 elsif Nkind (N) = N_Compilation_Unit then
12745 return Nkind (Unit (N)) = N_Subunit;
12746 end if;
12747
12748 Current_Unit := Parent (N);
12749 while Present (Current_Unit)
12750 and then Nkind (Current_Unit) /= N_Compilation_Unit
12751 loop
12752 Current_Unit := Parent (Current_Unit);
12753 end loop;
12754
12755 -- The instantiation node is in the main unit, or else the current node
12756 -- (perhaps as the result of nested instantiations) is in the main unit,
12757 -- or in the declaration of the main unit, which in this last case must
12758 -- be a body.
12759
12760 return Unum = Main_Unit
12761 or else Current_Unit = Cunit (Main_Unit)
12762 or else Current_Unit = Library_Unit (Cunit (Main_Unit))
12763 or else (Present (Library_Unit (Current_Unit))
12764 and then Is_In_Main_Unit (Library_Unit (Current_Unit)));
12765 end Is_In_Main_Unit;
12766
12767 ----------------------------
12768 -- Load_Parent_Of_Generic --
12769 ----------------------------
12770
12771 procedure Load_Parent_Of_Generic
12772 (N : Node_Id;
12773 Spec : Node_Id;
12774 Body_Optional : Boolean := False)
12775 is
12776 Comp_Unit : constant Node_Id := Cunit (Get_Source_Unit (Spec));
12777 Saved_Style_Check : constant Boolean := Style_Check;
12778 Saved_Warnings : constant Warning_Record := Save_Warnings;
12779 True_Parent : Node_Id;
12780 Inst_Node : Node_Id;
12781 OK : Boolean;
12782 Previous_Instances : constant Elist_Id := New_Elmt_List;
12783
12784 procedure Collect_Previous_Instances (Decls : List_Id);
12785 -- Collect all instantiations in the given list of declarations, that
12786 -- precede the generic that we need to load. If the bodies of these
12787 -- instantiations are available, we must analyze them, to ensure that
12788 -- the public symbols generated are the same when the unit is compiled
12789 -- to generate code, and when it is compiled in the context of a unit
12790 -- that needs a particular nested instance. This process is applied to
12791 -- both package and subprogram instances.
12792
12793 --------------------------------
12794 -- Collect_Previous_Instances --
12795 --------------------------------
12796
12797 procedure Collect_Previous_Instances (Decls : List_Id) is
12798 Decl : Node_Id;
12799
12800 begin
12801 Decl := First (Decls);
12802 while Present (Decl) loop
12803 if Sloc (Decl) >= Sloc (Inst_Node) then
12804 return;
12805
12806 -- If Decl is an instantiation, then record it as requiring
12807 -- instantiation of the corresponding body, except if it is an
12808 -- abbreviated instantiation generated internally for conformance
12809 -- checking purposes only for the case of a formal package
12810 -- declared without a box (see Instantiate_Formal_Package). Such
12811 -- an instantiation does not generate any code (the actual code
12812 -- comes from actual) and thus does not need to be analyzed here.
12813 -- If the instantiation appears with a generic package body it is
12814 -- not analyzed here either.
12815
12816 elsif Nkind (Decl) = N_Package_Instantiation
12817 and then not Is_Internal (Defining_Entity (Decl))
12818 then
12819 Append_Elmt (Decl, Previous_Instances);
12820
12821 -- For a subprogram instantiation, omit instantiations intrinsic
12822 -- operations (Unchecked_Conversions, etc.) that have no bodies.
12823
12824 elsif Nkind_In (Decl, N_Function_Instantiation,
12825 N_Procedure_Instantiation)
12826 and then not Is_Intrinsic_Subprogram (Entity (Name (Decl)))
12827 then
12828 Append_Elmt (Decl, Previous_Instances);
12829
12830 elsif Nkind (Decl) = N_Package_Declaration then
12831 Collect_Previous_Instances
12832 (Visible_Declarations (Specification (Decl)));
12833 Collect_Previous_Instances
12834 (Private_Declarations (Specification (Decl)));
12835
12836 -- Previous non-generic bodies may contain instances as well
12837
12838 elsif Nkind (Decl) = N_Package_Body
12839 and then Ekind (Corresponding_Spec (Decl)) /= E_Generic_Package
12840 then
12841 Collect_Previous_Instances (Declarations (Decl));
12842
12843 elsif Nkind (Decl) = N_Subprogram_Body
12844 and then not Acts_As_Spec (Decl)
12845 and then not Is_Generic_Subprogram (Corresponding_Spec (Decl))
12846 then
12847 Collect_Previous_Instances (Declarations (Decl));
12848 end if;
12849
12850 Next (Decl);
12851 end loop;
12852 end Collect_Previous_Instances;
12853
12854 -- Start of processing for Load_Parent_Of_Generic
12855
12856 begin
12857 if not In_Same_Source_Unit (N, Spec)
12858 or else Nkind (Unit (Comp_Unit)) = N_Package_Declaration
12859 or else (Nkind (Unit (Comp_Unit)) = N_Package_Body
12860 and then not Is_In_Main_Unit (Spec))
12861 then
12862 -- Find body of parent of spec, and analyze it. A special case arises
12863 -- when the parent is an instantiation, that is to say when we are
12864 -- currently instantiating a nested generic. In that case, there is
12865 -- no separate file for the body of the enclosing instance. Instead,
12866 -- the enclosing body must be instantiated as if it were a pending
12867 -- instantiation, in order to produce the body for the nested generic
12868 -- we require now. Note that in that case the generic may be defined
12869 -- in a package body, the instance defined in the same package body,
12870 -- and the original enclosing body may not be in the main unit.
12871
12872 Inst_Node := Empty;
12873
12874 True_Parent := Parent (Spec);
12875 while Present (True_Parent)
12876 and then Nkind (True_Parent) /= N_Compilation_Unit
12877 loop
12878 if Nkind (True_Parent) = N_Package_Declaration
12879 and then
12880 Nkind (Original_Node (True_Parent)) = N_Package_Instantiation
12881 then
12882 -- Parent is a compilation unit that is an instantiation.
12883 -- Instantiation node has been replaced with package decl.
12884
12885 Inst_Node := Original_Node (True_Parent);
12886 exit;
12887
12888 elsif Nkind (True_Parent) = N_Package_Declaration
12889 and then Present (Generic_Parent (Specification (True_Parent)))
12890 and then Nkind (Parent (True_Parent)) /= N_Compilation_Unit
12891 then
12892 -- Parent is an instantiation within another specification.
12893 -- Declaration for instance has been inserted before original
12894 -- instantiation node. A direct link would be preferable?
12895
12896 Inst_Node := Next (True_Parent);
12897 while Present (Inst_Node)
12898 and then Nkind (Inst_Node) /= N_Package_Instantiation
12899 loop
12900 Next (Inst_Node);
12901 end loop;
12902
12903 -- If the instance appears within a generic, and the generic
12904 -- unit is defined within a formal package of the enclosing
12905 -- generic, there is no generic body available, and none
12906 -- needed. A more precise test should be used ???
12907
12908 if No (Inst_Node) then
12909 return;
12910 end if;
12911
12912 exit;
12913
12914 else
12915 True_Parent := Parent (True_Parent);
12916 end if;
12917 end loop;
12918
12919 -- Case where we are currently instantiating a nested generic
12920
12921 if Present (Inst_Node) then
12922 if Nkind (Parent (True_Parent)) = N_Compilation_Unit then
12923
12924 -- Instantiation node and declaration of instantiated package
12925 -- were exchanged when only the declaration was needed.
12926 -- Restore instantiation node before proceeding with body.
12927
12928 Set_Unit (Parent (True_Parent), Inst_Node);
12929 end if;
12930
12931 -- Now complete instantiation of enclosing body, if it appears in
12932 -- some other unit. If it appears in the current unit, the body
12933 -- will have been instantiated already.
12934
12935 if No (Corresponding_Body (Instance_Spec (Inst_Node))) then
12936
12937 -- We need to determine the expander mode to instantiate the
12938 -- enclosing body. Because the generic body we need may use
12939 -- global entities declared in the enclosing package (including
12940 -- aggregates) it is in general necessary to compile this body
12941 -- with expansion enabled, except if we are within a generic
12942 -- package, in which case the usual generic rule applies.
12943
12944 declare
12945 Exp_Status : Boolean := True;
12946 Scop : Entity_Id;
12947
12948 begin
12949 -- Loop through scopes looking for generic package
12950
12951 Scop := Scope (Defining_Entity (Instance_Spec (Inst_Node)));
12952 while Present (Scop)
12953 and then Scop /= Standard_Standard
12954 loop
12955 if Ekind (Scop) = E_Generic_Package then
12956 Exp_Status := False;
12957 exit;
12958 end if;
12959
12960 Scop := Scope (Scop);
12961 end loop;
12962
12963 -- Collect previous instantiations in the unit that contains
12964 -- the desired generic.
12965
12966 if Nkind (Parent (True_Parent)) /= N_Compilation_Unit
12967 and then not Body_Optional
12968 then
12969 declare
12970 Decl : Elmt_Id;
12971 Info : Pending_Body_Info;
12972 Par : Node_Id;
12973
12974 begin
12975 Par := Parent (Inst_Node);
12976 while Present (Par) loop
12977 exit when Nkind (Parent (Par)) = N_Compilation_Unit;
12978 Par := Parent (Par);
12979 end loop;
12980
12981 pragma Assert (Present (Par));
12982
12983 if Nkind (Par) = N_Package_Body then
12984 Collect_Previous_Instances (Declarations (Par));
12985
12986 elsif Nkind (Par) = N_Package_Declaration then
12987 Collect_Previous_Instances
12988 (Visible_Declarations (Specification (Par)));
12989 Collect_Previous_Instances
12990 (Private_Declarations (Specification (Par)));
12991
12992 else
12993 -- Enclosing unit is a subprogram body. In this
12994 -- case all instance bodies are processed in order
12995 -- and there is no need to collect them separately.
12996
12997 null;
12998 end if;
12999
13000 Decl := First_Elmt (Previous_Instances);
13001 while Present (Decl) loop
13002 Info :=
13003 (Inst_Node => Node (Decl),
13004 Act_Decl =>
13005 Instance_Spec (Node (Decl)),
13006 Expander_Status => Exp_Status,
13007 Current_Sem_Unit =>
13008 Get_Code_Unit (Sloc (Node (Decl))),
13009 Scope_Suppress => Scope_Suppress,
13010 Local_Suppress_Stack_Top =>
13011 Local_Suppress_Stack_Top,
13012 Version => Ada_Version,
13013 Version_Pragma => Ada_Version_Pragma,
13014 Warnings => Save_Warnings,
13015 SPARK_Mode => SPARK_Mode,
13016 SPARK_Mode_Pragma => SPARK_Mode_Pragma);
13017
13018 -- Package instance
13019
13020 if
13021 Nkind (Node (Decl)) = N_Package_Instantiation
13022 then
13023 Instantiate_Package_Body
13024 (Info, Body_Optional => True);
13025
13026 -- Subprogram instance
13027
13028 else
13029 -- The instance_spec is in the wrapper package,
13030 -- usually followed by its local renaming
13031 -- declaration. See Build_Subprogram_Renaming
13032 -- for details.
13033
13034 declare
13035 Decl : Node_Id :=
13036 (Last (Visible_Declarations
13037 (Specification (Info.Act_Decl))));
13038 begin
13039 if Nkind (Decl) =
13040 N_Subprogram_Renaming_Declaration
13041 then
13042 Decl := Prev (Decl);
13043 end if;
13044
13045 Info.Act_Decl := Decl;
13046 end;
13047
13048 Instantiate_Subprogram_Body
13049 (Info, Body_Optional => True);
13050 end if;
13051
13052 Next_Elmt (Decl);
13053 end loop;
13054 end;
13055 end if;
13056
13057 Instantiate_Package_Body
13058 (Body_Info =>
13059 ((Inst_Node => Inst_Node,
13060 Act_Decl => True_Parent,
13061 Expander_Status => Exp_Status,
13062 Current_Sem_Unit => Get_Code_Unit
13063 (Sloc (Inst_Node)),
13064 Scope_Suppress => Scope_Suppress,
13065 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
13066 Version => Ada_Version,
13067 Version_Pragma => Ada_Version_Pragma,
13068 Warnings => Save_Warnings,
13069 SPARK_Mode => SPARK_Mode,
13070 SPARK_Mode_Pragma => SPARK_Mode_Pragma)),
13071 Body_Optional => Body_Optional);
13072 end;
13073 end if;
13074
13075 -- Case where we are not instantiating a nested generic
13076
13077 else
13078 Opt.Style_Check := False;
13079 Expander_Mode_Save_And_Set (True);
13080 Load_Needed_Body (Comp_Unit, OK);
13081 Opt.Style_Check := Saved_Style_Check;
13082 Restore_Warnings (Saved_Warnings);
13083 Expander_Mode_Restore;
13084
13085 if not OK
13086 and then Unit_Requires_Body (Defining_Entity (Spec))
13087 and then not Body_Optional
13088 then
13089 declare
13090 Bname : constant Unit_Name_Type :=
13091 Get_Body_Name (Get_Unit_Name (Unit (Comp_Unit)));
13092
13093 begin
13094 -- In CodePeer mode, the missing body may make the analysis
13095 -- incomplete, but we do not treat it as fatal.
13096
13097 if CodePeer_Mode then
13098 return;
13099
13100 else
13101 Error_Msg_Unit_1 := Bname;
13102 Error_Msg_N ("this instantiation requires$!", N);
13103 Error_Msg_File_1 :=
13104 Get_File_Name (Bname, Subunit => False);
13105 Error_Msg_N ("\but file{ was not found!", N);
13106 raise Unrecoverable_Error;
13107 end if;
13108 end;
13109 end if;
13110 end if;
13111 end if;
13112
13113 -- If loading parent of the generic caused an instantiation circularity,
13114 -- we abandon compilation at this point, because otherwise in some cases
13115 -- we get into trouble with infinite recursions after this point.
13116
13117 if Circularity_Detected then
13118 raise Unrecoverable_Error;
13119 end if;
13120 end Load_Parent_Of_Generic;
13121
13122 ---------------------------------
13123 -- Map_Formal_Package_Entities --
13124 ---------------------------------
13125
13126 procedure Map_Formal_Package_Entities (Form : Entity_Id; Act : Entity_Id) is
13127 E1 : Entity_Id;
13128 E2 : Entity_Id;
13129
13130 begin
13131 Set_Instance_Of (Form, Act);
13132
13133 -- Traverse formal and actual package to map the corresponding entities.
13134 -- We skip over internal entities that may be generated during semantic
13135 -- analysis, and find the matching entities by name, given that they
13136 -- must appear in the same order.
13137
13138 E1 := First_Entity (Form);
13139 E2 := First_Entity (Act);
13140 while Present (E1) and then E1 /= First_Private_Entity (Form) loop
13141 -- Could this test be a single condition??? Seems like it could, and
13142 -- isn't FPE (Form) a constant anyway???
13143
13144 if not Is_Internal (E1)
13145 and then Present (Parent (E1))
13146 and then not Is_Class_Wide_Type (E1)
13147 and then not Is_Internal_Name (Chars (E1))
13148 then
13149 while Present (E2) and then Chars (E2) /= Chars (E1) loop
13150 Next_Entity (E2);
13151 end loop;
13152
13153 if No (E2) then
13154 exit;
13155 else
13156 Set_Instance_Of (E1, E2);
13157
13158 if Is_Type (E1) and then Is_Tagged_Type (E2) then
13159 Set_Instance_Of (Class_Wide_Type (E1), Class_Wide_Type (E2));
13160 end if;
13161
13162 if Is_Constrained (E1) then
13163 Set_Instance_Of (Base_Type (E1), Base_Type (E2));
13164 end if;
13165
13166 if Ekind (E1) = E_Package and then No (Renamed_Object (E1)) then
13167 Map_Formal_Package_Entities (E1, E2);
13168 end if;
13169 end if;
13170 end if;
13171
13172 Next_Entity (E1);
13173 end loop;
13174 end Map_Formal_Package_Entities;
13175
13176 -----------------------
13177 -- Move_Freeze_Nodes --
13178 -----------------------
13179
13180 procedure Move_Freeze_Nodes
13181 (Out_Of : Entity_Id;
13182 After : Node_Id;
13183 L : List_Id)
13184 is
13185 Decl : Node_Id;
13186 Next_Decl : Node_Id;
13187 Next_Node : Node_Id := After;
13188 Spec : Node_Id;
13189
13190 function Is_Outer_Type (T : Entity_Id) return Boolean;
13191 -- Check whether entity is declared in a scope external to that of the
13192 -- generic unit.
13193
13194 -------------------
13195 -- Is_Outer_Type --
13196 -------------------
13197
13198 function Is_Outer_Type (T : Entity_Id) return Boolean is
13199 Scop : Entity_Id := Scope (T);
13200
13201 begin
13202 if Scope_Depth (Scop) < Scope_Depth (Out_Of) then
13203 return True;
13204
13205 else
13206 while Scop /= Standard_Standard loop
13207 if Scop = Out_Of then
13208 return False;
13209 else
13210 Scop := Scope (Scop);
13211 end if;
13212 end loop;
13213
13214 return True;
13215 end if;
13216 end Is_Outer_Type;
13217
13218 -- Start of processing for Move_Freeze_Nodes
13219
13220 begin
13221 if No (L) then
13222 return;
13223 end if;
13224
13225 -- First remove the freeze nodes that may appear before all other
13226 -- declarations.
13227
13228 Decl := First (L);
13229 while Present (Decl)
13230 and then Nkind (Decl) = N_Freeze_Entity
13231 and then Is_Outer_Type (Entity (Decl))
13232 loop
13233 Decl := Remove_Head (L);
13234 Insert_After (Next_Node, Decl);
13235 Set_Analyzed (Decl, False);
13236 Next_Node := Decl;
13237 Decl := First (L);
13238 end loop;
13239
13240 -- Next scan the list of declarations and remove each freeze node that
13241 -- appears ahead of the current node.
13242
13243 while Present (Decl) loop
13244 while Present (Next (Decl))
13245 and then Nkind (Next (Decl)) = N_Freeze_Entity
13246 and then Is_Outer_Type (Entity (Next (Decl)))
13247 loop
13248 Next_Decl := Remove_Next (Decl);
13249 Insert_After (Next_Node, Next_Decl);
13250 Set_Analyzed (Next_Decl, False);
13251 Next_Node := Next_Decl;
13252 end loop;
13253
13254 -- If the declaration is a nested package or concurrent type, then
13255 -- recurse. Nested generic packages will have been processed from the
13256 -- inside out.
13257
13258 case Nkind (Decl) is
13259 when N_Package_Declaration =>
13260 Spec := Specification (Decl);
13261
13262 when N_Task_Type_Declaration =>
13263 Spec := Task_Definition (Decl);
13264
13265 when N_Protected_Type_Declaration =>
13266 Spec := Protected_Definition (Decl);
13267
13268 when others =>
13269 Spec := Empty;
13270 end case;
13271
13272 if Present (Spec) then
13273 Move_Freeze_Nodes (Out_Of, Next_Node, Visible_Declarations (Spec));
13274 Move_Freeze_Nodes (Out_Of, Next_Node, Private_Declarations (Spec));
13275 end if;
13276
13277 Next (Decl);
13278 end loop;
13279 end Move_Freeze_Nodes;
13280
13281 ----------------
13282 -- Next_Assoc --
13283 ----------------
13284
13285 function Next_Assoc (E : Assoc_Ptr) return Assoc_Ptr is
13286 begin
13287 return Generic_Renamings.Table (E).Next_In_HTable;
13288 end Next_Assoc;
13289
13290 ------------------------
13291 -- Preanalyze_Actuals --
13292 ------------------------
13293
13294 procedure Preanalyze_Actuals (N : Node_Id; Inst : Entity_Id := Empty) is
13295 Assoc : Node_Id;
13296 Act : Node_Id;
13297 Errs : constant Int := Serious_Errors_Detected;
13298
13299 Cur : Entity_Id := Empty;
13300 -- Current homograph of the instance name
13301
13302 Vis : Boolean;
13303 -- Saved visibility status of the current homograph
13304
13305 begin
13306 Assoc := First (Generic_Associations (N));
13307
13308 -- If the instance is a child unit, its name may hide an outer homonym,
13309 -- so make it invisible to perform name resolution on the actuals.
13310
13311 if Nkind (Defining_Unit_Name (N)) = N_Defining_Program_Unit_Name
13312 and then Present
13313 (Current_Entity (Defining_Identifier (Defining_Unit_Name (N))))
13314 then
13315 Cur := Current_Entity (Defining_Identifier (Defining_Unit_Name (N)));
13316
13317 if Is_Compilation_Unit (Cur) then
13318 Vis := Is_Immediately_Visible (Cur);
13319 Set_Is_Immediately_Visible (Cur, False);
13320 else
13321 Cur := Empty;
13322 end if;
13323 end if;
13324
13325 while Present (Assoc) loop
13326 if Nkind (Assoc) /= N_Others_Choice then
13327 Act := Explicit_Generic_Actual_Parameter (Assoc);
13328
13329 -- Within a nested instantiation, a defaulted actual is an empty
13330 -- association, so nothing to analyze. If the subprogram actual
13331 -- is an attribute, analyze prefix only, because actual is not a
13332 -- complete attribute reference.
13333
13334 -- If actual is an allocator, analyze expression only. The full
13335 -- analysis can generate code, and if instance is a compilation
13336 -- unit we have to wait until the package instance is installed
13337 -- to have a proper place to insert this code.
13338
13339 -- String literals may be operators, but at this point we do not
13340 -- know whether the actual is a formal subprogram or a string.
13341
13342 if No (Act) then
13343 null;
13344
13345 elsif Nkind (Act) = N_Attribute_Reference then
13346 Analyze (Prefix (Act));
13347
13348 elsif Nkind (Act) = N_Explicit_Dereference then
13349 Analyze (Prefix (Act));
13350
13351 elsif Nkind (Act) = N_Allocator then
13352 declare
13353 Expr : constant Node_Id := Expression (Act);
13354
13355 begin
13356 if Nkind (Expr) = N_Subtype_Indication then
13357 Analyze (Subtype_Mark (Expr));
13358
13359 -- Analyze separately each discriminant constraint, when
13360 -- given with a named association.
13361
13362 declare
13363 Constr : Node_Id;
13364
13365 begin
13366 Constr := First (Constraints (Constraint (Expr)));
13367 while Present (Constr) loop
13368 if Nkind (Constr) = N_Discriminant_Association then
13369 Analyze (Expression (Constr));
13370 else
13371 Analyze (Constr);
13372 end if;
13373
13374 Next (Constr);
13375 end loop;
13376 end;
13377
13378 else
13379 Analyze (Expr);
13380 end if;
13381 end;
13382
13383 elsif Nkind (Act) /= N_Operator_Symbol then
13384 Analyze (Act);
13385
13386 if Is_Entity_Name (Act)
13387 and then Is_Type (Entity (Act))
13388 and then From_Limited_With (Entity (Act))
13389 then
13390 Append_Elmt (Entity (Act), Incomplete_Actuals (Inst));
13391 end if;
13392 end if;
13393
13394 if Errs /= Serious_Errors_Detected then
13395
13396 -- Do a minimal analysis of the generic, to prevent spurious
13397 -- warnings complaining about the generic being unreferenced,
13398 -- before abandoning the instantiation.
13399
13400 Analyze (Name (N));
13401
13402 if Is_Entity_Name (Name (N))
13403 and then Etype (Name (N)) /= Any_Type
13404 then
13405 Generate_Reference (Entity (Name (N)), Name (N));
13406 Set_Is_Instantiated (Entity (Name (N)));
13407 end if;
13408
13409 if Present (Cur) then
13410
13411 -- For the case of a child instance hiding an outer homonym,
13412 -- provide additional warning which might explain the error.
13413
13414 Set_Is_Immediately_Visible (Cur, Vis);
13415 Error_Msg_NE
13416 ("& hides outer unit with the same name??",
13417 N, Defining_Unit_Name (N));
13418 end if;
13419
13420 Abandon_Instantiation (Act);
13421 end if;
13422 end if;
13423
13424 Next (Assoc);
13425 end loop;
13426
13427 if Present (Cur) then
13428 Set_Is_Immediately_Visible (Cur, Vis);
13429 end if;
13430 end Preanalyze_Actuals;
13431
13432 -------------------
13433 -- Remove_Parent --
13434 -------------------
13435
13436 procedure Remove_Parent (In_Body : Boolean := False) is
13437 S : Entity_Id := Current_Scope;
13438 -- S is the scope containing the instantiation just completed. The scope
13439 -- stack contains the parent instances of the instantiation, followed by
13440 -- the original S.
13441
13442 Cur_P : Entity_Id;
13443 E : Entity_Id;
13444 P : Entity_Id;
13445 Hidden : Elmt_Id;
13446
13447 begin
13448 -- After child instantiation is complete, remove from scope stack the
13449 -- extra copy of the current scope, and then remove parent instances.
13450
13451 if not In_Body then
13452 Pop_Scope;
13453
13454 while Current_Scope /= S loop
13455 P := Current_Scope;
13456 End_Package_Scope (Current_Scope);
13457
13458 if In_Open_Scopes (P) then
13459 E := First_Entity (P);
13460 while Present (E) loop
13461 Set_Is_Immediately_Visible (E, True);
13462 Next_Entity (E);
13463 end loop;
13464
13465 -- If instantiation is declared in a block, it is the enclosing
13466 -- scope that might be a parent instance. Note that only one
13467 -- block can be involved, because the parent instances have
13468 -- been installed within it.
13469
13470 if Ekind (P) = E_Block then
13471 Cur_P := Scope (P);
13472 else
13473 Cur_P := P;
13474 end if;
13475
13476 if Is_Generic_Instance (Cur_P) and then P /= Current_Scope then
13477 -- We are within an instance of some sibling. Retain
13478 -- visibility of parent, for proper subsequent cleanup, and
13479 -- reinstall private declarations as well.
13480
13481 Set_In_Private_Part (P);
13482 Install_Private_Declarations (P);
13483 end if;
13484
13485 -- If the ultimate parent is a top-level unit recorded in
13486 -- Instance_Parent_Unit, then reset its visibility to what it was
13487 -- before instantiation. (It's not clear what the purpose is of
13488 -- testing whether Scope (P) is In_Open_Scopes, but that test was
13489 -- present before the ultimate parent test was added.???)
13490
13491 elsif not In_Open_Scopes (Scope (P))
13492 or else (P = Instance_Parent_Unit
13493 and then not Parent_Unit_Visible)
13494 then
13495 Set_Is_Immediately_Visible (P, False);
13496
13497 -- If the current scope is itself an instantiation of a generic
13498 -- nested within P, and we are in the private part of body of this
13499 -- instantiation, restore the full views of P, that were removed
13500 -- in End_Package_Scope above. This obscure case can occur when a
13501 -- subunit of a generic contains an instance of a child unit of
13502 -- its generic parent unit.
13503
13504 elsif S = Current_Scope and then Is_Generic_Instance (S) then
13505 declare
13506 Par : constant Entity_Id :=
13507 Generic_Parent (Package_Specification (S));
13508 begin
13509 if Present (Par)
13510 and then P = Scope (Par)
13511 and then (In_Package_Body (S) or else In_Private_Part (S))
13512 then
13513 Set_In_Private_Part (P);
13514 Install_Private_Declarations (P);
13515 end if;
13516 end;
13517 end if;
13518 end loop;
13519
13520 -- Reset visibility of entities in the enclosing scope
13521
13522 Set_Is_Hidden_Open_Scope (Current_Scope, False);
13523
13524 Hidden := First_Elmt (Hidden_Entities);
13525 while Present (Hidden) loop
13526 Set_Is_Immediately_Visible (Node (Hidden), True);
13527 Next_Elmt (Hidden);
13528 end loop;
13529
13530 else
13531 -- Each body is analyzed separately, and there is no context that
13532 -- needs preserving from one body instance to the next, so remove all
13533 -- parent scopes that have been installed.
13534
13535 while Present (S) loop
13536 End_Package_Scope (S);
13537 Set_Is_Immediately_Visible (S, False);
13538 S := Current_Scope;
13539 exit when S = Standard_Standard;
13540 end loop;
13541 end if;
13542 end Remove_Parent;
13543
13544 -----------------
13545 -- Restore_Env --
13546 -----------------
13547
13548 procedure Restore_Env is
13549 Saved : Instance_Env renames Instance_Envs.Table (Instance_Envs.Last);
13550
13551 begin
13552 if No (Current_Instantiated_Parent.Act_Id) then
13553 -- Restore environment after subprogram inlining
13554
13555 Restore_Private_Views (Empty);
13556 end if;
13557
13558 Current_Instantiated_Parent := Saved.Instantiated_Parent;
13559 Exchanged_Views := Saved.Exchanged_Views;
13560 Hidden_Entities := Saved.Hidden_Entities;
13561 Current_Sem_Unit := Saved.Current_Sem_Unit;
13562 Parent_Unit_Visible := Saved.Parent_Unit_Visible;
13563 Instance_Parent_Unit := Saved.Instance_Parent_Unit;
13564
13565 Restore_Opt_Config_Switches (Saved.Switches);
13566
13567 Instance_Envs.Decrement_Last;
13568 end Restore_Env;
13569
13570 ---------------------------
13571 -- Restore_Private_Views --
13572 ---------------------------
13573
13574 procedure Restore_Private_Views
13575 (Pack_Id : Entity_Id;
13576 Is_Package : Boolean := True)
13577 is
13578 M : Elmt_Id;
13579 E : Entity_Id;
13580 Typ : Entity_Id;
13581 Dep_Elmt : Elmt_Id;
13582 Dep_Typ : Node_Id;
13583
13584 procedure Restore_Nested_Formal (Formal : Entity_Id);
13585 -- Hide the generic formals of formal packages declared with box which
13586 -- were reachable in the current instantiation.
13587
13588 ---------------------------
13589 -- Restore_Nested_Formal --
13590 ---------------------------
13591
13592 procedure Restore_Nested_Formal (Formal : Entity_Id) is
13593 Ent : Entity_Id;
13594
13595 begin
13596 if Present (Renamed_Object (Formal))
13597 and then Denotes_Formal_Package (Renamed_Object (Formal), True)
13598 then
13599 return;
13600
13601 elsif Present (Associated_Formal_Package (Formal)) then
13602 Ent := First_Entity (Formal);
13603 while Present (Ent) loop
13604 exit when Ekind (Ent) = E_Package
13605 and then Renamed_Entity (Ent) = Renamed_Entity (Formal);
13606
13607 Set_Is_Hidden (Ent);
13608 Set_Is_Potentially_Use_Visible (Ent, False);
13609
13610 -- If package, then recurse
13611
13612 if Ekind (Ent) = E_Package then
13613 Restore_Nested_Formal (Ent);
13614 end if;
13615
13616 Next_Entity (Ent);
13617 end loop;
13618 end if;
13619 end Restore_Nested_Formal;
13620
13621 -- Start of processing for Restore_Private_Views
13622
13623 begin
13624 M := First_Elmt (Exchanged_Views);
13625 while Present (M) loop
13626 Typ := Node (M);
13627
13628 -- Subtypes of types whose views have been exchanged, and that are
13629 -- defined within the instance, were not on the Private_Dependents
13630 -- list on entry to the instance, so they have to be exchanged
13631 -- explicitly now, in order to remain consistent with the view of the
13632 -- parent type.
13633
13634 if Ekind_In (Typ, E_Private_Type,
13635 E_Limited_Private_Type,
13636 E_Record_Type_With_Private)
13637 then
13638 Dep_Elmt := First_Elmt (Private_Dependents (Typ));
13639 while Present (Dep_Elmt) loop
13640 Dep_Typ := Node (Dep_Elmt);
13641
13642 if Scope (Dep_Typ) = Pack_Id
13643 and then Present (Full_View (Dep_Typ))
13644 then
13645 Replace_Elmt (Dep_Elmt, Full_View (Dep_Typ));
13646 Exchange_Declarations (Dep_Typ);
13647 end if;
13648
13649 Next_Elmt (Dep_Elmt);
13650 end loop;
13651 end if;
13652
13653 Exchange_Declarations (Node (M));
13654 Next_Elmt (M);
13655 end loop;
13656
13657 if No (Pack_Id) then
13658 return;
13659 end if;
13660
13661 -- Make the generic formal parameters private, and make the formal types
13662 -- into subtypes of the actuals again.
13663
13664 E := First_Entity (Pack_Id);
13665 while Present (E) loop
13666 Set_Is_Hidden (E, True);
13667
13668 if Is_Type (E)
13669 and then Nkind (Parent (E)) = N_Subtype_Declaration
13670 then
13671 -- If the actual for E is itself a generic actual type from
13672 -- an enclosing instance, E is still a generic actual type
13673 -- outside of the current instance. This matter when resolving
13674 -- an overloaded call that may be ambiguous in the enclosing
13675 -- instance, when two of its actuals coincide.
13676
13677 if Is_Entity_Name (Subtype_Indication (Parent (E)))
13678 and then Is_Generic_Actual_Type
13679 (Entity (Subtype_Indication (Parent (E))))
13680 then
13681 null;
13682 else
13683 Set_Is_Generic_Actual_Type (E, False);
13684 end if;
13685
13686 -- An unusual case of aliasing: the actual may also be directly
13687 -- visible in the generic, and be private there, while it is fully
13688 -- visible in the context of the instance. The internal subtype
13689 -- is private in the instance but has full visibility like its
13690 -- parent in the enclosing scope. This enforces the invariant that
13691 -- the privacy status of all private dependents of a type coincide
13692 -- with that of the parent type. This can only happen when a
13693 -- generic child unit is instantiated within a sibling.
13694
13695 if Is_Private_Type (E)
13696 and then not Is_Private_Type (Etype (E))
13697 then
13698 Exchange_Declarations (E);
13699 end if;
13700
13701 elsif Ekind (E) = E_Package then
13702
13703 -- The end of the renaming list is the renaming of the generic
13704 -- package itself. If the instance is a subprogram, all entities
13705 -- in the corresponding package are renamings. If this entity is
13706 -- a formal package, make its own formals private as well. The
13707 -- actual in this case is itself the renaming of an instantiation.
13708 -- If the entity is not a package renaming, it is the entity
13709 -- created to validate formal package actuals: ignore it.
13710
13711 -- If the actual is itself a formal package for the enclosing
13712 -- generic, or the actual for such a formal package, it remains
13713 -- visible on exit from the instance, and therefore nothing needs
13714 -- to be done either, except to keep it accessible.
13715
13716 if Is_Package and then Renamed_Object (E) = Pack_Id then
13717 exit;
13718
13719 elsif Nkind (Parent (E)) /= N_Package_Renaming_Declaration then
13720 null;
13721
13722 elsif
13723 Denotes_Formal_Package (Renamed_Object (E), True, Pack_Id)
13724 then
13725 Set_Is_Hidden (E, False);
13726
13727 else
13728 declare
13729 Act_P : constant Entity_Id := Renamed_Object (E);
13730 Id : Entity_Id;
13731
13732 begin
13733 Id := First_Entity (Act_P);
13734 while Present (Id)
13735 and then Id /= First_Private_Entity (Act_P)
13736 loop
13737 exit when Ekind (Id) = E_Package
13738 and then Renamed_Object (Id) = Act_P;
13739
13740 Set_Is_Hidden (Id, True);
13741 Set_Is_Potentially_Use_Visible (Id, In_Use (Act_P));
13742
13743 if Ekind (Id) = E_Package then
13744 Restore_Nested_Formal (Id);
13745 end if;
13746
13747 Next_Entity (Id);
13748 end loop;
13749 end;
13750 end if;
13751 end if;
13752
13753 Next_Entity (E);
13754 end loop;
13755 end Restore_Private_Views;
13756
13757 --------------
13758 -- Save_Env --
13759 --------------
13760
13761 procedure Save_Env
13762 (Gen_Unit : Entity_Id;
13763 Act_Unit : Entity_Id)
13764 is
13765 begin
13766 Init_Env;
13767 Set_Instance_Env (Gen_Unit, Act_Unit);
13768 end Save_Env;
13769
13770 ----------------------------
13771 -- Save_Global_References --
13772 ----------------------------
13773
13774 procedure Save_Global_References (Templ : Node_Id) is
13775
13776 -- ??? it is horrible to use global variables in highly recursive code
13777
13778 E : Entity_Id;
13779 -- The entity of the current associated node
13780
13781 Gen_Scope : Entity_Id;
13782 -- The scope of the generic for which references are being saved
13783
13784 N2 : Node_Id;
13785 -- The current associated node
13786
13787 function Is_Global (E : Entity_Id) return Boolean;
13788 -- Check whether entity is defined outside of generic unit. Examine the
13789 -- scope of an entity, and the scope of the scope, etc, until we find
13790 -- either Standard, in which case the entity is global, or the generic
13791 -- unit itself, which indicates that the entity is local. If the entity
13792 -- is the generic unit itself, as in the case of a recursive call, or
13793 -- the enclosing generic unit, if different from the current scope, then
13794 -- it is local as well, because it will be replaced at the point of
13795 -- instantiation. On the other hand, if it is a reference to a child
13796 -- unit of a common ancestor, which appears in an instantiation, it is
13797 -- global because it is used to denote a specific compilation unit at
13798 -- the time the instantiations will be analyzed.
13799
13800 procedure Reset_Entity (N : Node_Id);
13801 -- Save semantic information on global entity so that it is not resolved
13802 -- again at instantiation time.
13803
13804 procedure Save_Entity_Descendants (N : Node_Id);
13805 -- Apply Save_Global_References to the two syntactic descendants of
13806 -- non-terminal nodes that carry an Associated_Node and are processed
13807 -- through Reset_Entity. Once the global entity (if any) has been
13808 -- captured together with its type, only two syntactic descendants need
13809 -- to be traversed to complete the processing of the tree rooted at N.
13810 -- This applies to Selected_Components, Expanded_Names, and to Operator
13811 -- nodes. N can also be a character literal, identifier, or operator
13812 -- symbol node, but the call has no effect in these cases.
13813
13814 procedure Save_Global_Defaults (N1 : Node_Id; N2 : Node_Id);
13815 -- Default actuals in nested instances must be handled specially
13816 -- because there is no link to them from the original tree. When an
13817 -- actual subprogram is given by a default, we add an explicit generic
13818 -- association for it in the instantiation node. When we save the
13819 -- global references on the name of the instance, we recover the list
13820 -- of generic associations, and add an explicit one to the original
13821 -- generic tree, through which a global actual can be preserved.
13822 -- Similarly, if a child unit is instantiated within a sibling, in the
13823 -- context of the parent, we must preserve the identifier of the parent
13824 -- so that it can be properly resolved in a subsequent instantiation.
13825
13826 procedure Save_Global_Descendant (D : Union_Id);
13827 -- Apply Save_References recursively to the descendents of node D
13828
13829 procedure Save_References (N : Node_Id);
13830 -- This is the recursive procedure that does the work, once the
13831 -- enclosing generic scope has been established.
13832
13833 ---------------
13834 -- Is_Global --
13835 ---------------
13836
13837 function Is_Global (E : Entity_Id) return Boolean is
13838 Se : Entity_Id;
13839
13840 function Is_Instance_Node (Decl : Node_Id) return Boolean;
13841 -- Determine whether the parent node of a reference to a child unit
13842 -- denotes an instantiation or a formal package, in which case the
13843 -- reference to the child unit is global, even if it appears within
13844 -- the current scope (e.g. when the instance appears within the body
13845 -- of an ancestor).
13846
13847 ----------------------
13848 -- Is_Instance_Node --
13849 ----------------------
13850
13851 function Is_Instance_Node (Decl : Node_Id) return Boolean is
13852 begin
13853 return Nkind (Decl) in N_Generic_Instantiation
13854 or else
13855 Nkind (Original_Node (Decl)) = N_Formal_Package_Declaration;
13856 end Is_Instance_Node;
13857
13858 -- Start of processing for Is_Global
13859
13860 begin
13861 if E = Gen_Scope then
13862 return False;
13863
13864 elsif E = Standard_Standard then
13865 return True;
13866
13867 elsif Is_Child_Unit (E)
13868 and then (Is_Instance_Node (Parent (N2))
13869 or else (Nkind (Parent (N2)) = N_Expanded_Name
13870 and then N2 = Selector_Name (Parent (N2))
13871 and then
13872 Is_Instance_Node (Parent (Parent (N2)))))
13873 then
13874 return True;
13875
13876 else
13877 Se := Scope (E);
13878 while Se /= Gen_Scope loop
13879 if Se = Standard_Standard then
13880 return True;
13881 else
13882 Se := Scope (Se);
13883 end if;
13884 end loop;
13885
13886 return False;
13887 end if;
13888 end Is_Global;
13889
13890 ------------------
13891 -- Reset_Entity --
13892 ------------------
13893
13894 procedure Reset_Entity (N : Node_Id) is
13895 procedure Set_Global_Type (N : Node_Id; N2 : Node_Id);
13896 -- If the type of N2 is global to the generic unit, save the type in
13897 -- the generic node. Just as we perform name capture for explicit
13898 -- references within the generic, we must capture the global types
13899 -- of local entities because they may participate in resolution in
13900 -- the instance.
13901
13902 function Top_Ancestor (E : Entity_Id) return Entity_Id;
13903 -- Find the ultimate ancestor of the current unit. If it is not a
13904 -- generic unit, then the name of the current unit in the prefix of
13905 -- an expanded name must be replaced with its generic homonym to
13906 -- ensure that it will be properly resolved in an instance.
13907
13908 ---------------------
13909 -- Set_Global_Type --
13910 ---------------------
13911
13912 procedure Set_Global_Type (N : Node_Id; N2 : Node_Id) is
13913 Typ : constant Entity_Id := Etype (N2);
13914
13915 begin
13916 Set_Etype (N, Typ);
13917
13918 -- If the entity of N is not the associated node, this is a
13919 -- nested generic and it has an associated node as well, whose
13920 -- type is already the full view (see below). Indicate that the
13921 -- original node has a private view.
13922
13923 if Entity (N) /= N2 and then Has_Private_View (Entity (N)) then
13924 Set_Has_Private_View (N);
13925 end if;
13926
13927 -- If not a private type, nothing else to do
13928
13929 if not Is_Private_Type (Typ) then
13930 if Is_Array_Type (Typ)
13931 and then Is_Private_Type (Component_Type (Typ))
13932 then
13933 Set_Has_Private_View (N);
13934 end if;
13935
13936 -- If it is a derivation of a private type in a context where no
13937 -- full view is needed, nothing to do either.
13938
13939 elsif No (Full_View (Typ)) and then Typ /= Etype (Typ) then
13940 null;
13941
13942 -- Otherwise mark the type for flipping and use the full view when
13943 -- available.
13944
13945 else
13946 Set_Has_Private_View (N);
13947
13948 if Present (Full_View (Typ)) then
13949 Set_Etype (N2, Full_View (Typ));
13950 end if;
13951 end if;
13952 end Set_Global_Type;
13953
13954 ------------------
13955 -- Top_Ancestor --
13956 ------------------
13957
13958 function Top_Ancestor (E : Entity_Id) return Entity_Id is
13959 Par : Entity_Id;
13960
13961 begin
13962 Par := E;
13963 while Is_Child_Unit (Par) loop
13964 Par := Scope (Par);
13965 end loop;
13966
13967 return Par;
13968 end Top_Ancestor;
13969
13970 -- Start of processing for Reset_Entity
13971
13972 begin
13973 N2 := Get_Associated_Node (N);
13974 E := Entity (N2);
13975
13976 if Present (E) then
13977
13978 -- If the node is an entry call to an entry in an enclosing task,
13979 -- it is rewritten as a selected component. No global entity to
13980 -- preserve in this case, since the expansion will be redone in
13981 -- the instance.
13982
13983 if not Nkind_In (E, N_Defining_Character_Literal,
13984 N_Defining_Identifier,
13985 N_Defining_Operator_Symbol)
13986 then
13987 Set_Associated_Node (N, Empty);
13988 Set_Etype (N, Empty);
13989 return;
13990 end if;
13991
13992 -- If the entity is an itype created as a subtype of an access
13993 -- type with a null exclusion restore source entity for proper
13994 -- visibility. The itype will be created anew in the instance.
13995
13996 if Is_Itype (E)
13997 and then Ekind (E) = E_Access_Subtype
13998 and then Is_Entity_Name (N)
13999 and then Chars (Etype (E)) = Chars (N)
14000 then
14001 E := Etype (E);
14002 Set_Entity (N2, E);
14003 Set_Etype (N2, E);
14004 end if;
14005
14006 if Is_Global (E) then
14007
14008 -- If the entity is a package renaming that is the prefix of
14009 -- an expanded name, it has been rewritten as the renamed
14010 -- package, which is necessary semantically but complicates
14011 -- ASIS tree traversal, so we recover the original entity to
14012 -- expose the renaming. Take into account that the context may
14013 -- be a nested generic, that the original node may itself have
14014 -- an associated node that had better be an entity, and that
14015 -- the current node is still a selected component.
14016
14017 if Ekind (E) = E_Package
14018 and then Nkind (N) = N_Selected_Component
14019 and then Nkind (Parent (N)) = N_Expanded_Name
14020 and then Present (Original_Node (N2))
14021 and then Is_Entity_Name (Original_Node (N2))
14022 and then Present (Entity (Original_Node (N2)))
14023 then
14024 if Is_Global (Entity (Original_Node (N2))) then
14025 N2 := Original_Node (N2);
14026 Set_Associated_Node (N, N2);
14027 Set_Global_Type (N, N2);
14028
14029 -- Renaming is local, and will be resolved in instance
14030
14031 else
14032 Set_Associated_Node (N, Empty);
14033 Set_Etype (N, Empty);
14034 end if;
14035
14036 else
14037 Set_Global_Type (N, N2);
14038 end if;
14039
14040 elsif Nkind (N) = N_Op_Concat
14041 and then Is_Generic_Type (Etype (N2))
14042 and then (Base_Type (Etype (Right_Opnd (N2))) = Etype (N2)
14043 or else
14044 Base_Type (Etype (Left_Opnd (N2))) = Etype (N2))
14045 and then Is_Intrinsic_Subprogram (E)
14046 then
14047 null;
14048
14049 -- Entity is local. Mark generic node as unresolved. Note that now
14050 -- it does not have an entity.
14051
14052 else
14053 Set_Associated_Node (N, Empty);
14054 Set_Etype (N, Empty);
14055 end if;
14056
14057 if Nkind (Parent (N)) in N_Generic_Instantiation
14058 and then N = Name (Parent (N))
14059 then
14060 Save_Global_Defaults (Parent (N), Parent (N2));
14061 end if;
14062
14063 elsif Nkind (Parent (N)) = N_Selected_Component
14064 and then Nkind (Parent (N2)) = N_Expanded_Name
14065 then
14066 if Is_Global (Entity (Parent (N2))) then
14067 Change_Selected_Component_To_Expanded_Name (Parent (N));
14068 Set_Associated_Node (Parent (N), Parent (N2));
14069 Set_Global_Type (Parent (N), Parent (N2));
14070 Save_Entity_Descendants (N);
14071
14072 -- If this is a reference to the current generic entity, replace
14073 -- by the name of the generic homonym of the current package. This
14074 -- is because in an instantiation Par.P.Q will not resolve to the
14075 -- name of the instance, whose enclosing scope is not necessarily
14076 -- Par. We use the generic homonym rather that the name of the
14077 -- generic itself because it may be hidden by a local declaration.
14078
14079 elsif In_Open_Scopes (Entity (Parent (N2)))
14080 and then not
14081 Is_Generic_Unit (Top_Ancestor (Entity (Prefix (Parent (N2)))))
14082 then
14083 if Ekind (Entity (Parent (N2))) = E_Generic_Package then
14084 Rewrite (Parent (N),
14085 Make_Identifier (Sloc (N),
14086 Chars =>
14087 Chars (Generic_Homonym (Entity (Parent (N2))))));
14088 else
14089 Rewrite (Parent (N),
14090 Make_Identifier (Sloc (N),
14091 Chars => Chars (Selector_Name (Parent (N2)))));
14092 end if;
14093 end if;
14094
14095 if Nkind (Parent (Parent (N))) in N_Generic_Instantiation
14096 and then Parent (N) = Name (Parent (Parent (N)))
14097 then
14098 Save_Global_Defaults
14099 (Parent (Parent (N)), Parent (Parent (N2)));
14100 end if;
14101
14102 -- A selected component may denote a static constant that has been
14103 -- folded. If the static constant is global to the generic, capture
14104 -- its value. Otherwise the folding will happen in any instantiation.
14105
14106 elsif Nkind (Parent (N)) = N_Selected_Component
14107 and then Nkind_In (Parent (N2), N_Integer_Literal, N_Real_Literal)
14108 then
14109 if Present (Entity (Original_Node (Parent (N2))))
14110 and then Is_Global (Entity (Original_Node (Parent (N2))))
14111 then
14112 Rewrite (Parent (N), New_Copy (Parent (N2)));
14113 Set_Analyzed (Parent (N), False);
14114 end if;
14115
14116 -- A selected component may be transformed into a parameterless
14117 -- function call. If the called entity is global, rewrite the node
14118 -- appropriately, i.e. as an extended name for the global entity.
14119
14120 elsif Nkind (Parent (N)) = N_Selected_Component
14121 and then Nkind (Parent (N2)) = N_Function_Call
14122 and then N = Selector_Name (Parent (N))
14123 then
14124 if No (Parameter_Associations (Parent (N2))) then
14125 if Is_Global (Entity (Name (Parent (N2)))) then
14126 Change_Selected_Component_To_Expanded_Name (Parent (N));
14127 Set_Associated_Node (Parent (N), Name (Parent (N2)));
14128 Set_Global_Type (Parent (N), Name (Parent (N2)));
14129 Save_Entity_Descendants (N);
14130
14131 else
14132 Set_Is_Prefixed_Call (Parent (N));
14133 Set_Associated_Node (N, Empty);
14134 Set_Etype (N, Empty);
14135 end if;
14136
14137 -- In Ada 2005, X.F may be a call to a primitive operation,
14138 -- rewritten as F (X). This rewriting will be done again in an
14139 -- instance, so keep the original node. Global entities will be
14140 -- captured as for other constructs. Indicate that this must
14141 -- resolve as a call, to prevent accidental overloading in the
14142 -- instance, if both a component and a primitive operation appear
14143 -- as candidates.
14144
14145 else
14146 Set_Is_Prefixed_Call (Parent (N));
14147 end if;
14148
14149 -- Entity is local. Reset in generic unit, so that node is resolved
14150 -- anew at the point of instantiation.
14151
14152 else
14153 Set_Associated_Node (N, Empty);
14154 Set_Etype (N, Empty);
14155 end if;
14156 end Reset_Entity;
14157
14158 -----------------------------
14159 -- Save_Entity_Descendants --
14160 -----------------------------
14161
14162 procedure Save_Entity_Descendants (N : Node_Id) is
14163 begin
14164 case Nkind (N) is
14165 when N_Binary_Op =>
14166 Save_Global_Descendant (Union_Id (Left_Opnd (N)));
14167 Save_Global_Descendant (Union_Id (Right_Opnd (N)));
14168
14169 when N_Unary_Op =>
14170 Save_Global_Descendant (Union_Id (Right_Opnd (N)));
14171
14172 when N_Expanded_Name |
14173 N_Selected_Component =>
14174 Save_Global_Descendant (Union_Id (Prefix (N)));
14175 Save_Global_Descendant (Union_Id (Selector_Name (N)));
14176
14177 when N_Identifier |
14178 N_Character_Literal |
14179 N_Operator_Symbol =>
14180 null;
14181
14182 when others =>
14183 raise Program_Error;
14184 end case;
14185 end Save_Entity_Descendants;
14186
14187 --------------------------
14188 -- Save_Global_Defaults --
14189 --------------------------
14190
14191 procedure Save_Global_Defaults (N1 : Node_Id; N2 : Node_Id) is
14192 Loc : constant Source_Ptr := Sloc (N1);
14193 Assoc2 : constant List_Id := Generic_Associations (N2);
14194 Gen_Id : constant Entity_Id := Get_Generic_Entity (N2);
14195 Assoc1 : List_Id;
14196 Act1 : Node_Id;
14197 Act2 : Node_Id;
14198 Def : Node_Id;
14199 Ndec : Node_Id;
14200 Subp : Entity_Id;
14201 Actual : Entity_Id;
14202
14203 begin
14204 Assoc1 := Generic_Associations (N1);
14205
14206 if Present (Assoc1) then
14207 Act1 := First (Assoc1);
14208 else
14209 Act1 := Empty;
14210 Set_Generic_Associations (N1, New_List);
14211 Assoc1 := Generic_Associations (N1);
14212 end if;
14213
14214 if Present (Assoc2) then
14215 Act2 := First (Assoc2);
14216 else
14217 return;
14218 end if;
14219
14220 while Present (Act1) and then Present (Act2) loop
14221 Next (Act1);
14222 Next (Act2);
14223 end loop;
14224
14225 -- Find the associations added for default subprograms
14226
14227 if Present (Act2) then
14228 while Nkind (Act2) /= N_Generic_Association
14229 or else No (Entity (Selector_Name (Act2)))
14230 or else not Is_Overloadable (Entity (Selector_Name (Act2)))
14231 loop
14232 Next (Act2);
14233 end loop;
14234
14235 -- Add a similar association if the default is global. The
14236 -- renaming declaration for the actual has been analyzed, and
14237 -- its alias is the program it renames. Link the actual in the
14238 -- original generic tree with the node in the analyzed tree.
14239
14240 while Present (Act2) loop
14241 Subp := Entity (Selector_Name (Act2));
14242 Def := Explicit_Generic_Actual_Parameter (Act2);
14243
14244 -- Following test is defence against rubbish errors
14245
14246 if No (Alias (Subp)) then
14247 return;
14248 end if;
14249
14250 -- Retrieve the resolved actual from the renaming declaration
14251 -- created for the instantiated formal.
14252
14253 Actual := Entity (Name (Parent (Parent (Subp))));
14254 Set_Entity (Def, Actual);
14255 Set_Etype (Def, Etype (Actual));
14256
14257 if Is_Global (Actual) then
14258 Ndec :=
14259 Make_Generic_Association (Loc,
14260 Selector_Name =>
14261 New_Occurrence_Of (Subp, Loc),
14262 Explicit_Generic_Actual_Parameter =>
14263 New_Occurrence_Of (Actual, Loc));
14264
14265 Set_Associated_Node
14266 (Explicit_Generic_Actual_Parameter (Ndec), Def);
14267
14268 Append (Ndec, Assoc1);
14269
14270 -- If there are other defaults, add a dummy association in case
14271 -- there are other defaulted formals with the same name.
14272
14273 elsif Present (Next (Act2)) then
14274 Ndec :=
14275 Make_Generic_Association (Loc,
14276 Selector_Name =>
14277 New_Occurrence_Of (Subp, Loc),
14278 Explicit_Generic_Actual_Parameter => Empty);
14279
14280 Append (Ndec, Assoc1);
14281 end if;
14282
14283 Next (Act2);
14284 end loop;
14285 end if;
14286
14287 if Nkind (Name (N1)) = N_Identifier
14288 and then Is_Child_Unit (Gen_Id)
14289 and then Is_Global (Gen_Id)
14290 and then Is_Generic_Unit (Scope (Gen_Id))
14291 and then In_Open_Scopes (Scope (Gen_Id))
14292 then
14293 -- This is an instantiation of a child unit within a sibling, so
14294 -- that the generic parent is in scope. An eventual instance must
14295 -- occur within the scope of an instance of the parent. Make name
14296 -- in instance into an expanded name, to preserve the identifier
14297 -- of the parent, so it can be resolved subsequently.
14298
14299 Rewrite (Name (N2),
14300 Make_Expanded_Name (Loc,
14301 Chars => Chars (Gen_Id),
14302 Prefix => New_Occurrence_Of (Scope (Gen_Id), Loc),
14303 Selector_Name => New_Occurrence_Of (Gen_Id, Loc)));
14304 Set_Entity (Name (N2), Gen_Id);
14305
14306 Rewrite (Name (N1),
14307 Make_Expanded_Name (Loc,
14308 Chars => Chars (Gen_Id),
14309 Prefix => New_Occurrence_Of (Scope (Gen_Id), Loc),
14310 Selector_Name => New_Occurrence_Of (Gen_Id, Loc)));
14311
14312 Set_Associated_Node (Name (N1), Name (N2));
14313 Set_Associated_Node (Prefix (Name (N1)), Empty);
14314 Set_Associated_Node
14315 (Selector_Name (Name (N1)), Selector_Name (Name (N2)));
14316 Set_Etype (Name (N1), Etype (Gen_Id));
14317 end if;
14318 end Save_Global_Defaults;
14319
14320 ----------------------------
14321 -- Save_Global_Descendant --
14322 ----------------------------
14323
14324 procedure Save_Global_Descendant (D : Union_Id) is
14325 N1 : Node_Id;
14326
14327 begin
14328 if D in Node_Range then
14329 if D = Union_Id (Empty) then
14330 null;
14331
14332 elsif Nkind (Node_Id (D)) /= N_Compilation_Unit then
14333 Save_References (Node_Id (D));
14334 end if;
14335
14336 elsif D in List_Range then
14337 if D = Union_Id (No_List) or else Is_Empty_List (List_Id (D)) then
14338 null;
14339
14340 else
14341 N1 := First (List_Id (D));
14342 while Present (N1) loop
14343 Save_References (N1);
14344 Next (N1);
14345 end loop;
14346 end if;
14347
14348 -- Element list or other non-node field, nothing to do
14349
14350 else
14351 null;
14352 end if;
14353 end Save_Global_Descendant;
14354
14355 ---------------------
14356 -- Save_References --
14357 ---------------------
14358
14359 -- This is the recursive procedure that does the work once the enclosing
14360 -- generic scope has been established. We have to treat specially a
14361 -- number of node rewritings that are required by semantic processing
14362 -- and which change the kind of nodes in the generic copy: typically
14363 -- constant-folding, replacing an operator node by a string literal, or
14364 -- a selected component by an expanded name. In each of those cases, the
14365 -- transformation is propagated to the generic unit.
14366
14367 procedure Save_References (N : Node_Id) is
14368 Loc : constant Source_Ptr := Sloc (N);
14369
14370 function Requires_Delayed_Save (Nod : Node_Id) return Boolean;
14371 -- Determine whether arbitrary node Nod requires delayed capture of
14372 -- global references within its aspect specifications.
14373
14374 procedure Save_References_In_Aggregate (N : Node_Id);
14375 -- Save all global references in [extension] aggregate node N
14376
14377 procedure Save_References_In_Char_Lit_Or_Op_Symbol (N : Node_Id);
14378 -- Save all global references in a character literal or operator
14379 -- symbol denoted by N.
14380
14381 procedure Save_References_In_Descendants (N : Node_Id);
14382 -- Save all global references in all descendants of node N
14383
14384 procedure Save_References_In_Identifier (N : Node_Id);
14385 -- Save all global references in identifier node N
14386
14387 procedure Save_References_In_Operator (N : Node_Id);
14388 -- Save all global references in operator node N
14389
14390 procedure Save_References_In_Pragma (Prag : Node_Id);
14391 -- Save all global references found within the expression of pragma
14392 -- Prag.
14393
14394 ---------------------------
14395 -- Requires_Delayed_Save --
14396 ---------------------------
14397
14398 function Requires_Delayed_Save (Nod : Node_Id) return Boolean is
14399 begin
14400 -- Generic packages and subprograms require delayed capture of
14401 -- global references within their aspects due to the timing of
14402 -- annotation analysis.
14403
14404 if Nkind_In (Nod, N_Generic_Package_Declaration,
14405 N_Generic_Subprogram_Declaration,
14406 N_Package_Body,
14407 N_Package_Body_Stub,
14408 N_Subprogram_Body,
14409 N_Subprogram_Body_Stub)
14410 then
14411 -- Since the capture of global references is done on the
14412 -- unanalyzed generic template, there is no information around
14413 -- to infer the context. Use the Associated_Entity linkages to
14414 -- peek into the analyzed generic copy and determine what the
14415 -- template corresponds to.
14416
14417 if Nod = Templ then
14418 return
14419 Is_Generic_Declaration_Or_Body
14420 (Unit_Declaration_Node
14421 (Associated_Entity (Defining_Entity (Nod))));
14422
14423 -- Otherwise the generic unit being processed is not the top
14424 -- level template. It is safe to capture of global references
14425 -- within the generic unit because at this point the top level
14426 -- copy is fully analyzed.
14427
14428 else
14429 return False;
14430 end if;
14431
14432 -- Otherwise capture the global references without interference
14433
14434 else
14435 return False;
14436 end if;
14437 end Requires_Delayed_Save;
14438
14439 ----------------------------------
14440 -- Save_References_In_Aggregate --
14441 ----------------------------------
14442
14443 procedure Save_References_In_Aggregate (N : Node_Id) is
14444 Nam : Node_Id;
14445 Qual : Node_Id := Empty;
14446 Typ : Entity_Id := Empty;
14447
14448 use Atree.Unchecked_Access;
14449 -- This code section is part of implementing an untyped tree
14450 -- traversal, so it needs direct access to node fields.
14451
14452 begin
14453 N2 := Get_Associated_Node (N);
14454
14455 if Present (N2) then
14456 Typ := Etype (N2);
14457
14458 -- In an instance within a generic, use the name of the actual
14459 -- and not the original generic parameter. If the actual is
14460 -- global in the current generic it must be preserved for its
14461 -- instantiation.
14462
14463 if Nkind (Parent (Typ)) = N_Subtype_Declaration
14464 and then Present (Generic_Parent_Type (Parent (Typ)))
14465 then
14466 Typ := Base_Type (Typ);
14467 Set_Etype (N2, Typ);
14468 end if;
14469 end if;
14470
14471 if No (N2) or else No (Typ) or else not Is_Global (Typ) then
14472 Set_Associated_Node (N, Empty);
14473
14474 -- If the aggregate is an actual in a call, it has been
14475 -- resolved in the current context, to some local type. The
14476 -- enclosing call may have been disambiguated by the aggregate,
14477 -- and this disambiguation might fail at instantiation time
14478 -- because the type to which the aggregate did resolve is not
14479 -- preserved. In order to preserve some of this information,
14480 -- wrap the aggregate in a qualified expression, using the id
14481 -- of its type. For further disambiguation we qualify the type
14482 -- name with its scope (if visible) because both id's will have
14483 -- corresponding entities in an instance. This resolves most of
14484 -- the problems with missing type information on aggregates in
14485 -- instances.
14486
14487 if Present (N2)
14488 and then Nkind (N2) = Nkind (N)
14489 and then Nkind (Parent (N2)) in N_Subprogram_Call
14490 and then Present (Typ)
14491 and then Comes_From_Source (Typ)
14492 then
14493 Nam := Make_Identifier (Loc, Chars (Typ));
14494
14495 if Is_Immediately_Visible (Scope (Typ)) then
14496 Nam :=
14497 Make_Selected_Component (Loc,
14498 Prefix =>
14499 Make_Identifier (Loc, Chars (Scope (Typ))),
14500 Selector_Name => Nam);
14501 end if;
14502
14503 Qual :=
14504 Make_Qualified_Expression (Loc,
14505 Subtype_Mark => Nam,
14506 Expression => Relocate_Node (N));
14507 end if;
14508 end if;
14509
14510 Save_Global_Descendant (Field1 (N));
14511 Save_Global_Descendant (Field2 (N));
14512 Save_Global_Descendant (Field3 (N));
14513 Save_Global_Descendant (Field5 (N));
14514
14515 if Present (Qual) then
14516 Rewrite (N, Qual);
14517 end if;
14518 end Save_References_In_Aggregate;
14519
14520 ----------------------------------------------
14521 -- Save_References_In_Char_Lit_Or_Op_Symbol --
14522 ----------------------------------------------
14523
14524 procedure Save_References_In_Char_Lit_Or_Op_Symbol (N : Node_Id) is
14525 begin
14526 if Nkind (N) = Nkind (Get_Associated_Node (N)) then
14527 Reset_Entity (N);
14528
14529 elsif Nkind (N) = N_Operator_Symbol
14530 and then Nkind (Get_Associated_Node (N)) = N_String_Literal
14531 then
14532 Change_Operator_Symbol_To_String_Literal (N);
14533 end if;
14534 end Save_References_In_Char_Lit_Or_Op_Symbol;
14535
14536 ------------------------------------
14537 -- Save_References_In_Descendants --
14538 ------------------------------------
14539
14540 procedure Save_References_In_Descendants (N : Node_Id) is
14541 use Atree.Unchecked_Access;
14542 -- This code section is part of implementing an untyped tree
14543 -- traversal, so it needs direct access to node fields.
14544
14545 begin
14546 Save_Global_Descendant (Field1 (N));
14547 Save_Global_Descendant (Field2 (N));
14548 Save_Global_Descendant (Field3 (N));
14549 Save_Global_Descendant (Field4 (N));
14550 Save_Global_Descendant (Field5 (N));
14551 end Save_References_In_Descendants;
14552
14553 -----------------------------------
14554 -- Save_References_In_Identifier --
14555 -----------------------------------
14556
14557 procedure Save_References_In_Identifier (N : Node_Id) is
14558 begin
14559 -- The node did not undergo a transformation
14560
14561 if Nkind (N) = Nkind (Get_Associated_Node (N)) then
14562
14563 -- If this is a discriminant reference, always save it. It is
14564 -- used in the instance to find the corresponding discriminant
14565 -- positionally rather than by name.
14566
14567 Set_Original_Discriminant
14568 (N, Original_Discriminant (Get_Associated_Node (N)));
14569 Reset_Entity (N);
14570
14571 -- The analysis of the generic copy transformed the identifier
14572 -- into another construct. Propagate the changes to the template.
14573
14574 else
14575 N2 := Get_Associated_Node (N);
14576
14577 -- The identifier denotes a call to a parameterless function.
14578 -- Mark the node as resolved when the function is external.
14579
14580 if Nkind (N2) = N_Function_Call then
14581 E := Entity (Name (N2));
14582
14583 if Present (E) and then Is_Global (E) then
14584 Set_Etype (N, Etype (N2));
14585 else
14586 Set_Associated_Node (N, Empty);
14587 Set_Etype (N, Empty);
14588 end if;
14589
14590 -- The identifier denotes a named number that was constant
14591 -- folded. Preserve the original name for ASIS and undo the
14592 -- constant folding which will be repeated in the instance.
14593
14594 elsif Nkind_In (N2, N_Integer_Literal, N_Real_Literal)
14595 and then Is_Entity_Name (Original_Node (N2))
14596 then
14597 Set_Associated_Node (N, Original_Node (N2));
14598 Reset_Entity (N);
14599
14600 -- The identifier resolved to a string literal. Propagate this
14601 -- information to the generic template.
14602
14603 elsif Nkind (N2) = N_String_Literal then
14604 Rewrite (N, New_Copy (N2));
14605
14606 -- The identifier is rewritten as a dereference if it is the
14607 -- prefix of an implicit dereference. Preserve the original
14608 -- tree as the analysis of the instance will expand the node
14609 -- again, but preserve the resolved entity if it is global.
14610
14611 elsif Nkind (N2) = N_Explicit_Dereference then
14612 if Is_Entity_Name (Prefix (N2))
14613 and then Present (Entity (Prefix (N2)))
14614 and then Is_Global (Entity (Prefix (N2)))
14615 then
14616 Set_Associated_Node (N, Prefix (N2));
14617
14618 elsif Nkind (Prefix (N2)) = N_Function_Call
14619 and then Present (Entity (Name (Prefix (N2))))
14620 and then Is_Global (Entity (Name (Prefix (N2))))
14621 then
14622 Rewrite (N,
14623 Make_Explicit_Dereference (Loc,
14624 Prefix =>
14625 Make_Function_Call (Loc,
14626 Name =>
14627 New_Occurrence_Of
14628 (Entity (Name (Prefix (N2))), Loc))));
14629
14630 else
14631 Set_Associated_Node (N, Empty);
14632 Set_Etype (N, Empty);
14633 end if;
14634
14635 -- The subtype mark of a nominally unconstrained object is
14636 -- rewritten as a subtype indication using the bounds of the
14637 -- expression. Recover the original subtype mark.
14638
14639 elsif Nkind (N2) = N_Subtype_Indication
14640 and then Is_Entity_Name (Original_Node (N2))
14641 then
14642 Set_Associated_Node (N, Original_Node (N2));
14643 Reset_Entity (N);
14644 end if;
14645 end if;
14646 end Save_References_In_Identifier;
14647
14648 ---------------------------------
14649 -- Save_References_In_Operator --
14650 ---------------------------------
14651
14652 procedure Save_References_In_Operator (N : Node_Id) is
14653 begin
14654 -- The node did not undergo a transformation
14655
14656 if Nkind (N) = Nkind (Get_Associated_Node (N)) then
14657 if Nkind (N) = N_Op_Concat then
14658 Set_Is_Component_Left_Opnd (N,
14659 Is_Component_Left_Opnd (Get_Associated_Node (N)));
14660
14661 Set_Is_Component_Right_Opnd (N,
14662 Is_Component_Right_Opnd (Get_Associated_Node (N)));
14663 end if;
14664
14665 Reset_Entity (N);
14666
14667 -- The analysis of the generic copy transformed the operator into
14668 -- some other construct. Propagate the changes to the template.
14669
14670 else
14671 N2 := Get_Associated_Node (N);
14672
14673 -- The operator resoved to a function call
14674
14675 if Nkind (N2) = N_Function_Call then
14676 E := Entity (Name (N2));
14677
14678 if Present (E) and then Is_Global (E) then
14679 Set_Etype (N, Etype (N2));
14680 else
14681 Set_Associated_Node (N, Empty);
14682 Set_Etype (N, Empty);
14683 end if;
14684
14685 -- The operator was folded into a literal
14686
14687 elsif Nkind_In (N2, N_Integer_Literal,
14688 N_Real_Literal,
14689 N_String_Literal)
14690 then
14691 if Present (Original_Node (N2))
14692 and then Nkind (Original_Node (N2)) = Nkind (N)
14693 then
14694 -- Operation was constant-folded. Whenever possible,
14695 -- recover semantic information from unfolded node,
14696 -- for ASIS use.
14697
14698 Set_Associated_Node (N, Original_Node (N2));
14699
14700 if Nkind (N) = N_Op_Concat then
14701 Set_Is_Component_Left_Opnd (N,
14702 Is_Component_Left_Opnd (Get_Associated_Node (N)));
14703 Set_Is_Component_Right_Opnd (N,
14704 Is_Component_Right_Opnd (Get_Associated_Node (N)));
14705 end if;
14706
14707 Reset_Entity (N);
14708
14709 -- Propagate the constant folding back to the template
14710
14711 else
14712 Rewrite (N, New_Copy (N2));
14713 Set_Analyzed (N, False);
14714 end if;
14715
14716 -- The operator was folded into an enumeration literal. Retain
14717 -- the entity to avoid spurious ambiguities if it is overloaded
14718 -- at the point of instantiation or inlining.
14719
14720 elsif Nkind (N2) = N_Identifier
14721 and then Ekind (Entity (N2)) = E_Enumeration_Literal
14722 then
14723 Rewrite (N, New_Copy (N2));
14724 Set_Analyzed (N, False);
14725 end if;
14726 end if;
14727
14728 -- Complete the operands check if node has not been constant
14729 -- folded.
14730
14731 if Nkind (N) in N_Op then
14732 Save_Entity_Descendants (N);
14733 end if;
14734 end Save_References_In_Operator;
14735
14736 -------------------------------
14737 -- Save_References_In_Pragma --
14738 -------------------------------
14739
14740 procedure Save_References_In_Pragma (Prag : Node_Id) is
14741 Context : Node_Id;
14742 Do_Save : Boolean := True;
14743
14744 use Atree.Unchecked_Access;
14745 -- This code section is part of implementing an untyped tree
14746 -- traversal, so it needs direct access to node fields.
14747
14748 begin
14749 -- Do not save global references in pragmas generated from aspects
14750 -- because the pragmas will be regenerated at instantiation time.
14751
14752 if From_Aspect_Specification (Prag) then
14753 Do_Save := False;
14754
14755 -- The capture of global references within contract-related source
14756 -- pragmas associated with generic packages, subprograms or their
14757 -- respective bodies must be delayed due to timing of annotation
14758 -- analysis. Global references are still captured in routine
14759 -- Save_Global_References_In_Contract.
14760
14761 elsif Is_Generic_Contract_Pragma (Prag) and then Prag /= Templ then
14762 if Is_Package_Contract_Annotation (Prag) then
14763 Context := Find_Related_Package_Or_Body (Prag);
14764
14765 else
14766 pragma Assert (Is_Subprogram_Contract_Annotation (Prag));
14767 Context := Find_Related_Subprogram_Or_Body (Prag);
14768 end if;
14769
14770 -- The use of Original_Node accounts for the case when the
14771 -- related context is generic template.
14772
14773 if Requires_Delayed_Save (Original_Node (Context)) then
14774 Do_Save := False;
14775 end if;
14776 end if;
14777
14778 -- For all other cases, save all global references within the
14779 -- descendants, but skip the following semantic fields:
14780
14781 -- Field1 - Next_Pragma
14782 -- Field3 - Corresponding_Aspect
14783 -- Field5 - Next_Rep_Item
14784
14785 if Do_Save then
14786 Save_Global_Descendant (Field2 (Prag));
14787 Save_Global_Descendant (Field4 (Prag));
14788 end if;
14789 end Save_References_In_Pragma;
14790
14791 -- Start of processing for Save_References
14792
14793 begin
14794 if N = Empty then
14795 null;
14796
14797 -- Aggregates
14798
14799 elsif Nkind_In (N, N_Aggregate, N_Extension_Aggregate) then
14800 Save_References_In_Aggregate (N);
14801
14802 -- Character literals, operator symbols
14803
14804 elsif Nkind_In (N, N_Character_Literal, N_Operator_Symbol) then
14805 Save_References_In_Char_Lit_Or_Op_Symbol (N);
14806
14807 -- Defining identifiers
14808
14809 elsif Nkind (N) in N_Entity then
14810 null;
14811
14812 -- Identifiers
14813
14814 elsif Nkind (N) = N_Identifier then
14815 Save_References_In_Identifier (N);
14816
14817 -- Operators
14818
14819 elsif Nkind (N) in N_Op then
14820 Save_References_In_Operator (N);
14821
14822 -- Pragmas
14823
14824 elsif Nkind (N) = N_Pragma then
14825 Save_References_In_Pragma (N);
14826
14827 else
14828 Save_References_In_Descendants (N);
14829 end if;
14830
14831 -- Save all global references found within the aspect specifications
14832 -- of the related node.
14833
14834 if Permits_Aspect_Specifications (N) and then Has_Aspects (N) then
14835
14836 -- The capture of global references within aspects associated with
14837 -- generic packages, subprograms or their bodies must be delayed
14838 -- due to timing of annotation analysis. Global references are
14839 -- still captured in routine Save_Global_References_In_Contract.
14840
14841 if Requires_Delayed_Save (N) then
14842 null;
14843
14844 -- Otherwise save all global references within the aspects
14845
14846 else
14847 Save_Global_References_In_Aspects (N);
14848 end if;
14849 end if;
14850 end Save_References;
14851
14852 -- Start of processing for Save_Global_References
14853
14854 begin
14855 Gen_Scope := Current_Scope;
14856
14857 -- If the generic unit is a child unit, references to entities in the
14858 -- parent are treated as local, because they will be resolved anew in
14859 -- the context of the instance of the parent.
14860
14861 while Is_Child_Unit (Gen_Scope)
14862 and then Ekind (Scope (Gen_Scope)) = E_Generic_Package
14863 loop
14864 Gen_Scope := Scope (Gen_Scope);
14865 end loop;
14866
14867 Save_References (Templ);
14868 end Save_Global_References;
14869
14870 ---------------------------------------
14871 -- Save_Global_References_In_Aspects --
14872 ---------------------------------------
14873
14874 procedure Save_Global_References_In_Aspects (N : Node_Id) is
14875 Asp : Node_Id;
14876 Expr : Node_Id;
14877
14878 begin
14879 Asp := First (Aspect_Specifications (N));
14880 while Present (Asp) loop
14881 Expr := Expression (Asp);
14882
14883 if Present (Expr) then
14884 Save_Global_References (Expr);
14885 end if;
14886
14887 Next (Asp);
14888 end loop;
14889 end Save_Global_References_In_Aspects;
14890
14891 ----------------------------------------
14892 -- Save_Global_References_In_Contract --
14893 ----------------------------------------
14894
14895 procedure Save_Global_References_In_Contract
14896 (Templ : Node_Id;
14897 Gen_Id : Entity_Id)
14898 is
14899 procedure Save_Global_References_In_List (First_Prag : Node_Id);
14900 -- Save all global references in contract-related source pragmas found
14901 -- in the list starting with pragma First_Prag.
14902
14903 ------------------------------------
14904 -- Save_Global_References_In_List --
14905 ------------------------------------
14906
14907 procedure Save_Global_References_In_List (First_Prag : Node_Id) is
14908 Prag : Node_Id;
14909
14910 begin
14911 Prag := First_Prag;
14912 while Present (Prag) loop
14913 if Is_Generic_Contract_Pragma (Prag) then
14914 Save_Global_References (Prag);
14915 end if;
14916
14917 Prag := Next_Pragma (Prag);
14918 end loop;
14919 end Save_Global_References_In_List;
14920
14921 -- Local variables
14922
14923 Items : constant Node_Id := Contract (Defining_Entity (Templ));
14924
14925 -- Start of processing for Save_Global_References_In_Contract
14926
14927 begin
14928 -- The entity of the analyzed generic copy must be on the scope stack
14929 -- to ensure proper detection of global references.
14930
14931 Push_Scope (Gen_Id);
14932
14933 if Permits_Aspect_Specifications (Templ)
14934 and then Has_Aspects (Templ)
14935 then
14936 Save_Global_References_In_Aspects (Templ);
14937 end if;
14938
14939 if Present (Items) then
14940 Save_Global_References_In_List (Pre_Post_Conditions (Items));
14941 Save_Global_References_In_List (Contract_Test_Cases (Items));
14942 Save_Global_References_In_List (Classifications (Items));
14943 end if;
14944
14945 Pop_Scope;
14946 end Save_Global_References_In_Contract;
14947
14948 --------------------------------------
14949 -- Set_Copied_Sloc_For_Inlined_Body --
14950 --------------------------------------
14951
14952 procedure Set_Copied_Sloc_For_Inlined_Body (N : Node_Id; E : Entity_Id) is
14953 begin
14954 Create_Instantiation_Source (N, E, True, S_Adjustment);
14955 end Set_Copied_Sloc_For_Inlined_Body;
14956
14957 ---------------------
14958 -- Set_Instance_Of --
14959 ---------------------
14960
14961 procedure Set_Instance_Of (A : Entity_Id; B : Entity_Id) is
14962 begin
14963 Generic_Renamings.Table (Generic_Renamings.Last) := (A, B, Assoc_Null);
14964 Generic_Renamings_HTable.Set (Generic_Renamings.Last);
14965 Generic_Renamings.Increment_Last;
14966 end Set_Instance_Of;
14967
14968 --------------------
14969 -- Set_Next_Assoc --
14970 --------------------
14971
14972 procedure Set_Next_Assoc (E : Assoc_Ptr; Next : Assoc_Ptr) is
14973 begin
14974 Generic_Renamings.Table (E).Next_In_HTable := Next;
14975 end Set_Next_Assoc;
14976
14977 -------------------
14978 -- Start_Generic --
14979 -------------------
14980
14981 procedure Start_Generic is
14982 begin
14983 -- ??? More things could be factored out in this routine.
14984 -- Should probably be done at a later stage.
14985
14986 Generic_Flags.Append (Inside_A_Generic);
14987 Inside_A_Generic := True;
14988
14989 Expander_Mode_Save_And_Set (False);
14990 end Start_Generic;
14991
14992 ----------------------
14993 -- Set_Instance_Env --
14994 ----------------------
14995
14996 procedure Set_Instance_Env
14997 (Gen_Unit : Entity_Id;
14998 Act_Unit : Entity_Id)
14999 is
15000 Assertion_Status : constant Boolean := Assertions_Enabled;
15001 Save_SPARK_Mode : constant SPARK_Mode_Type := SPARK_Mode;
15002 Save_SPARK_Mode_Pragma : constant Node_Id := SPARK_Mode_Pragma;
15003
15004 begin
15005 -- Regardless of the current mode, predefined units are analyzed in the
15006 -- most current Ada mode, and earlier version Ada checks do not apply
15007 -- to predefined units. Nothing needs to be done for non-internal units.
15008 -- These are always analyzed in the current mode.
15009
15010 if Is_Internal_File_Name
15011 (Fname => Unit_File_Name (Get_Source_Unit (Gen_Unit)),
15012 Renamings_Included => True)
15013 then
15014 Set_Opt_Config_Switches (True, Current_Sem_Unit = Main_Unit);
15015
15016 -- In Ada2012 we may want to enable assertions in an instance of a
15017 -- predefined unit, in which case we need to preserve the current
15018 -- setting for the Assertions_Enabled flag. This will become more
15019 -- critical when pre/postconditions are added to predefined units,
15020 -- as is already the case for some numeric libraries.
15021
15022 if Ada_Version >= Ada_2012 then
15023 Assertions_Enabled := Assertion_Status;
15024 end if;
15025
15026 -- SPARK_Mode for an instance is the one applicable at the point of
15027 -- instantiation.
15028
15029 SPARK_Mode := Save_SPARK_Mode;
15030 SPARK_Mode_Pragma := Save_SPARK_Mode_Pragma;
15031
15032 -- Make sure dynamic elaboration checks are off in SPARK Mode
15033
15034 if SPARK_Mode = On then
15035 Dynamic_Elaboration_Checks := False;
15036 end if;
15037 end if;
15038
15039 Current_Instantiated_Parent :=
15040 (Gen_Id => Gen_Unit,
15041 Act_Id => Act_Unit,
15042 Next_In_HTable => Assoc_Null);
15043 end Set_Instance_Env;
15044
15045 -----------------
15046 -- Switch_View --
15047 -----------------
15048
15049 procedure Switch_View (T : Entity_Id) is
15050 BT : constant Entity_Id := Base_Type (T);
15051 Priv_Elmt : Elmt_Id := No_Elmt;
15052 Priv_Sub : Entity_Id;
15053
15054 begin
15055 -- T may be private but its base type may have been exchanged through
15056 -- some other occurrence, in which case there is nothing to switch
15057 -- besides T itself. Note that a private dependent subtype of a private
15058 -- type might not have been switched even if the base type has been,
15059 -- because of the last branch of Check_Private_View (see comment there).
15060
15061 if not Is_Private_Type (BT) then
15062 Prepend_Elmt (Full_View (T), Exchanged_Views);
15063 Exchange_Declarations (T);
15064 return;
15065 end if;
15066
15067 Priv_Elmt := First_Elmt (Private_Dependents (BT));
15068
15069 if Present (Full_View (BT)) then
15070 Prepend_Elmt (Full_View (BT), Exchanged_Views);
15071 Exchange_Declarations (BT);
15072 end if;
15073
15074 while Present (Priv_Elmt) loop
15075 Priv_Sub := (Node (Priv_Elmt));
15076
15077 -- We avoid flipping the subtype if the Etype of its full view is
15078 -- private because this would result in a malformed subtype. This
15079 -- occurs when the Etype of the subtype full view is the full view of
15080 -- the base type (and since the base types were just switched, the
15081 -- subtype is pointing to the wrong view). This is currently the case
15082 -- for tagged record types, access types (maybe more?) and needs to
15083 -- be resolved. ???
15084
15085 if Present (Full_View (Priv_Sub))
15086 and then not Is_Private_Type (Etype (Full_View (Priv_Sub)))
15087 then
15088 Prepend_Elmt (Full_View (Priv_Sub), Exchanged_Views);
15089 Exchange_Declarations (Priv_Sub);
15090 end if;
15091
15092 Next_Elmt (Priv_Elmt);
15093 end loop;
15094 end Switch_View;
15095
15096 -----------------
15097 -- True_Parent --
15098 -----------------
15099
15100 function True_Parent (N : Node_Id) return Node_Id is
15101 begin
15102 if Nkind (Parent (N)) = N_Subunit then
15103 return Parent (Corresponding_Stub (Parent (N)));
15104 else
15105 return Parent (N);
15106 end if;
15107 end True_Parent;
15108
15109 -----------------------------
15110 -- Valid_Default_Attribute --
15111 -----------------------------
15112
15113 procedure Valid_Default_Attribute (Nam : Entity_Id; Def : Node_Id) is
15114 Attr_Id : constant Attribute_Id :=
15115 Get_Attribute_Id (Attribute_Name (Def));
15116 T : constant Entity_Id := Entity (Prefix (Def));
15117 Is_Fun : constant Boolean := (Ekind (Nam) = E_Function);
15118 F : Entity_Id;
15119 Num_F : Int;
15120 OK : Boolean;
15121
15122 begin
15123 if No (T) or else T = Any_Id then
15124 return;
15125 end if;
15126
15127 Num_F := 0;
15128 F := First_Formal (Nam);
15129 while Present (F) loop
15130 Num_F := Num_F + 1;
15131 Next_Formal (F);
15132 end loop;
15133
15134 case Attr_Id is
15135 when Attribute_Adjacent | Attribute_Ceiling | Attribute_Copy_Sign |
15136 Attribute_Floor | Attribute_Fraction | Attribute_Machine |
15137 Attribute_Model | Attribute_Remainder | Attribute_Rounding |
15138 Attribute_Unbiased_Rounding =>
15139 OK := Is_Fun
15140 and then Num_F = 1
15141 and then Is_Floating_Point_Type (T);
15142
15143 when Attribute_Image | Attribute_Pred | Attribute_Succ |
15144 Attribute_Value | Attribute_Wide_Image |
15145 Attribute_Wide_Value =>
15146 OK := (Is_Fun and then Num_F = 1 and then Is_Scalar_Type (T));
15147
15148 when Attribute_Max | Attribute_Min =>
15149 OK := (Is_Fun and then Num_F = 2 and then Is_Scalar_Type (T));
15150
15151 when Attribute_Input =>
15152 OK := (Is_Fun and then Num_F = 1);
15153
15154 when Attribute_Output | Attribute_Read | Attribute_Write =>
15155 OK := (not Is_Fun and then Num_F = 2);
15156
15157 when others =>
15158 OK := False;
15159 end case;
15160
15161 if not OK then
15162 Error_Msg_N
15163 ("attribute reference has wrong profile for subprogram", Def);
15164 end if;
15165 end Valid_Default_Attribute;
15166
15167 end Sem_Ch12;