sem_ch12.adb (Qualify_Universal_Operands): New routine.
[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 Contracts; use Contracts;
29 with Einfo; use Einfo;
30 with Elists; use Elists;
31 with Errout; use Errout;
32 with Expander; use Expander;
33 with Exp_Disp; use Exp_Disp;
34 with Fname; use Fname;
35 with Fname.UF; use Fname.UF;
36 with Freeze; use Freeze;
37 with Ghost; use Ghost;
38 with Itypes; use Itypes;
39 with Lib; use Lib;
40 with Lib.Load; use Lib.Load;
41 with Lib.Xref; use Lib.Xref;
42 with Nlists; use Nlists;
43 with Namet; use Namet;
44 with Nmake; use Nmake;
45 with Opt; use Opt;
46 with Rident; use Rident;
47 with Restrict; use Restrict;
48 with Rtsfind; use Rtsfind;
49 with Sem; use Sem;
50 with Sem_Aux; use Sem_Aux;
51 with Sem_Cat; use Sem_Cat;
52 with Sem_Ch3; use Sem_Ch3;
53 with Sem_Ch6; use Sem_Ch6;
54 with Sem_Ch7; use Sem_Ch7;
55 with Sem_Ch8; use Sem_Ch8;
56 with Sem_Ch10; use Sem_Ch10;
57 with Sem_Ch13; use Sem_Ch13;
58 with Sem_Dim; use Sem_Dim;
59 with Sem_Disp; use Sem_Disp;
60 with Sem_Elab; use Sem_Elab;
61 with Sem_Elim; use Sem_Elim;
62 with Sem_Eval; use Sem_Eval;
63 with Sem_Prag; use Sem_Prag;
64 with Sem_Res; use Sem_Res;
65 with Sem_Type; use Sem_Type;
66 with Sem_Util; use Sem_Util;
67 with Sem_Warn; use Sem_Warn;
68 with Stand; use Stand;
69 with Sinfo; use Sinfo;
70 with Sinfo.CN; use Sinfo.CN;
71 with Sinput; use Sinput;
72 with Sinput.L; use Sinput.L;
73 with Snames; use Snames;
74 with Stringt; use Stringt;
75 with Uname; use Uname;
76 with Table;
77 with Tbuild; use Tbuild;
78 with Uintp; use Uintp;
79 with Urealp; use Urealp;
80 with Warnsw; use Warnsw;
81
82 with GNAT.HTable;
83
84 package body Sem_Ch12 is
85
86 ----------------------------------------------------------
87 -- Implementation of Generic Analysis and Instantiation --
88 ----------------------------------------------------------
89
90 -- GNAT implements generics by macro expansion. No attempt is made to share
91 -- generic instantiations (for now). Analysis of a generic definition does
92 -- not perform any expansion action, but the expander must be called on the
93 -- tree for each instantiation, because the expansion may of course depend
94 -- on the generic actuals. All of this is best achieved as follows:
95 --
96 -- a) Semantic analysis of a generic unit is performed on a copy of the
97 -- tree for the generic unit. All tree modifications that follow analysis
98 -- do not affect the original tree. Links are kept between the original
99 -- tree and the copy, in order to recognize non-local references within
100 -- the generic, and propagate them to each instance (recall that name
101 -- resolution is done on the generic declaration: generics are not really
102 -- macros). This is summarized in the following diagram:
103
104 -- .-----------. .----------.
105 -- | semantic |<--------------| generic |
106 -- | copy | | unit |
107 -- | |==============>| |
108 -- |___________| global |__________|
109 -- references | | |
110 -- | | |
111 -- .-----|--|.
112 -- | .-----|---.
113 -- | | .----------.
114 -- | | | generic |
115 -- |__| | |
116 -- |__| instance |
117 -- |__________|
118
119 -- b) Each instantiation copies the original tree, and inserts into it a
120 -- series of declarations that describe the mapping between generic formals
121 -- and actuals. For example, a generic In OUT parameter is an object
122 -- renaming of the corresponding actual, etc. Generic IN parameters are
123 -- constant declarations.
124
125 -- c) In order to give the right visibility for these renamings, we use
126 -- a different scheme for package and subprogram instantiations. For
127 -- packages, the list of renamings is inserted into the package
128 -- specification, before the visible declarations of the package. The
129 -- renamings are analyzed before any of the text of the instance, and are
130 -- thus visible at the right place. Furthermore, outside of the instance,
131 -- the generic parameters are visible and denote their corresponding
132 -- actuals.
133
134 -- For subprograms, we create a container package to hold the renamings
135 -- and the subprogram instance itself. Analysis of the package makes the
136 -- renaming declarations visible to the subprogram. After analyzing the
137 -- package, the defining entity for the subprogram is touched-up so that
138 -- it appears declared in the current scope, and not inside the container
139 -- package.
140
141 -- If the instantiation is a compilation unit, the container package is
142 -- given the same name as the subprogram instance. This ensures that
143 -- the elaboration procedure called by the binder, using the compilation
144 -- unit name, calls in fact the elaboration procedure for the package.
145
146 -- Not surprisingly, private types complicate this approach. By saving in
147 -- the original generic object the non-local references, we guarantee that
148 -- the proper entities are referenced at the point of instantiation.
149 -- However, for private types, this by itself does not insure that the
150 -- proper VIEW of the entity is used (the full type may be visible at the
151 -- point of generic definition, but not at instantiation, or vice-versa).
152 -- In order to reference the proper view, we special-case any reference
153 -- to private types in the generic object, by saving both views, one in
154 -- the generic and one in the semantic copy. At time of instantiation, we
155 -- check whether the two views are consistent, and exchange declarations if
156 -- necessary, in order to restore the correct visibility. Similarly, if
157 -- the instance view is private when the generic view was not, we perform
158 -- the exchange. After completing the instantiation, we restore the
159 -- current visibility. The flag Has_Private_View marks identifiers in the
160 -- the generic unit that require checking.
161
162 -- Visibility within nested generic units requires special handling.
163 -- Consider the following scheme:
164
165 -- type Global is ... -- outside of generic unit.
166 -- generic ...
167 -- package Outer is
168 -- ...
169 -- type Semi_Global is ... -- global to inner.
170
171 -- generic ... -- 1
172 -- procedure inner (X1 : Global; X2 : Semi_Global);
173
174 -- procedure in2 is new inner (...); -- 4
175 -- end Outer;
176
177 -- package New_Outer is new Outer (...); -- 2
178 -- procedure New_Inner is new New_Outer.Inner (...); -- 3
179
180 -- The semantic analysis of Outer captures all occurrences of Global.
181 -- The semantic analysis of Inner (at 1) captures both occurrences of
182 -- Global and Semi_Global.
183
184 -- At point 2 (instantiation of Outer), we also produce a generic copy
185 -- of Inner, even though Inner is, at that point, not being instantiated.
186 -- (This is just part of the semantic analysis of New_Outer).
187
188 -- Critically, references to Global within Inner must be preserved, while
189 -- references to Semi_Global should not preserved, because they must now
190 -- resolve to an entity within New_Outer. To distinguish between these, we
191 -- use a global variable, Current_Instantiated_Parent, which is set when
192 -- performing a generic copy during instantiation (at 2). This variable is
193 -- used when performing a generic copy that is not an instantiation, but
194 -- that is nested within one, as the occurrence of 1 within 2. The analysis
195 -- of a nested generic only preserves references that are global to the
196 -- enclosing Current_Instantiated_Parent. We use the Scope_Depth value to
197 -- determine whether a reference is external to the given parent.
198
199 -- The instantiation at point 3 requires no special treatment. The method
200 -- works as well for further nestings of generic units, but of course the
201 -- variable Current_Instantiated_Parent must be stacked because nested
202 -- instantiations can occur, e.g. the occurrence of 4 within 2.
203
204 -- The instantiation of package and subprogram bodies is handled in a
205 -- similar manner, except that it is delayed until after semantic
206 -- analysis is complete. In this fashion complex cross-dependencies
207 -- between several package declarations and bodies containing generics
208 -- can be compiled which otherwise would diagnose spurious circularities.
209
210 -- For example, it is possible to compile two packages A and B that
211 -- have the following structure:
212
213 -- package A is package B is
214 -- generic ... generic ...
215 -- package G_A is package G_B is
216
217 -- with B; with A;
218 -- package body A is package body B is
219 -- package N_B is new G_B (..) package N_A is new G_A (..)
220
221 -- The table Pending_Instantiations in package Inline is used to keep
222 -- track of body instantiations that are delayed in this manner. Inline
223 -- handles the actual calls to do the body instantiations. This activity
224 -- is part of Inline, since the processing occurs at the same point, and
225 -- for essentially the same reason, as the handling of inlined routines.
226
227 ----------------------------------------------
228 -- Detection of Instantiation Circularities --
229 ----------------------------------------------
230
231 -- If we have a chain of instantiations that is circular, this is static
232 -- error which must be detected at compile time. The detection of these
233 -- circularities is carried out at the point that we insert a generic
234 -- instance spec or body. If there is a circularity, then the analysis of
235 -- the offending spec or body will eventually result in trying to load the
236 -- same unit again, and we detect this problem as we analyze the package
237 -- instantiation for the second time.
238
239 -- At least in some cases after we have detected the circularity, we get
240 -- into trouble if we try to keep going. The following flag is set if a
241 -- circularity is detected, and used to abandon compilation after the
242 -- messages have been posted.
243
244 -----------------------------------------
245 -- Implementation of Generic Contracts --
246 -----------------------------------------
247
248 -- A "contract" is a collection of aspects and pragmas that either verify a
249 -- property of a construct at runtime or classify the data flow to and from
250 -- the construct in some fashion.
251
252 -- Generic packages, subprograms and their respective bodies may be subject
253 -- to the following contract-related aspects or pragmas collectively known
254 -- as annotations:
255
256 -- package subprogram [body]
257 -- Abstract_State Contract_Cases
258 -- Initial_Condition Depends
259 -- Initializes Extensions_Visible
260 -- Global
261 -- package body Post
262 -- Refined_State Post_Class
263 -- Postcondition
264 -- Pre
265 -- Pre_Class
266 -- Precondition
267 -- Refined_Depends
268 -- Refined_Global
269 -- Refined_Post
270 -- Test_Case
271
272 -- Most package contract annotations utilize forward references to classify
273 -- data declared within the package [body]. Subprogram annotations then use
274 -- the classifications to further refine them. These inter dependencies are
275 -- problematic with respect to the implementation of generics because their
276 -- analysis, capture of global references and instantiation does not mesh
277 -- well with the existing mechanism.
278
279 -- 1) Analysis of generic contracts is carried out the same way non-generic
280 -- contracts are analyzed:
281
282 -- 1.1) General rule - a contract is analyzed after all related aspects
283 -- and pragmas are analyzed. This is done by routines
284
285 -- Analyze_Package_Body_Contract
286 -- Analyze_Package_Contract
287 -- Analyze_Subprogram_Body_Contract
288 -- Analyze_Subprogram_Contract
289
290 -- 1.2) Compilation unit - the contract is analyzed after Pragmas_After
291 -- are processed.
292
293 -- 1.3) Compilation unit body - the contract is analyzed at the end of
294 -- the body declaration list.
295
296 -- 1.4) Package - the contract is analyzed at the end of the private or
297 -- visible declarations, prior to analyzing the contracts of any nested
298 -- packages or subprograms.
299
300 -- 1.5) Package body - the contract is analyzed at the end of the body
301 -- declaration list, prior to analyzing the contracts of any nested
302 -- packages or subprograms.
303
304 -- 1.6) Subprogram - if the subprogram is declared inside a block, a
305 -- package or a subprogram, then its contract is analyzed at the end of
306 -- the enclosing declarations, otherwise the subprogram is a compilation
307 -- unit 1.2).
308
309 -- 1.7) Subprogram body - if the subprogram body is declared inside a
310 -- block, a package body or a subprogram body, then its contract is
311 -- analyzed at the end of the enclosing declarations, otherwise the
312 -- subprogram is a compilation unit 1.3).
313
314 -- 2) Capture of global references within contracts is done after capturing
315 -- global references within the generic template. There are two reasons for
316 -- this delay - pragma annotations are not part of the generic template in
317 -- the case of a generic subprogram declaration, and analysis of contracts
318 -- is delayed.
319
320 -- Contract-related source pragmas within generic templates are prepared
321 -- for delayed capture of global references by routine
322
323 -- Create_Generic_Contract
324
325 -- The routine associates these pragmas with the contract of the template.
326 -- In the case of a generic subprogram declaration, the routine creates
327 -- generic templates for the pragmas declared after the subprogram because
328 -- they are not part of the template.
329
330 -- generic -- template starts
331 -- procedure Gen_Proc (Input : Integer); -- template ends
332 -- pragma Precondition (Input > 0); -- requires own template
333
334 -- 2.1) The capture of global references with aspect specifications and
335 -- source pragmas that apply to a generic unit must be suppressed when
336 -- the generic template is being processed because the contracts have not
337 -- been analyzed yet. Any attempts to capture global references at that
338 -- point will destroy the Associated_Node linkages and leave the template
339 -- undecorated. This delay is controlled by routine
340
341 -- Requires_Delayed_Save
342
343 -- 2.2) The real capture of global references within a contract is done
344 -- after the contract has been analyzed, by routine
345
346 -- Save_Global_References_In_Contract
347
348 -- 3) The instantiation of a generic contract occurs as part of the
349 -- instantiation of the contract owner. Generic subprogram declarations
350 -- require additional processing when the contract is specified by pragmas
351 -- because the pragmas are not part of the generic template. This is done
352 -- by routine
353
354 -- Instantiate_Subprogram_Contract
355
356 Circularity_Detected : Boolean := False;
357 -- This should really be reset on encountering a new main unit, but in
358 -- practice we are not using multiple main units so it is not critical.
359
360 --------------------------------------------------
361 -- Formal packages and partial parameterization --
362 --------------------------------------------------
363
364 -- When compiling a generic, a formal package is a local instantiation. If
365 -- declared with a box, its generic formals are visible in the enclosing
366 -- generic. If declared with a partial list of actuals, those actuals that
367 -- are defaulted (covered by an Others clause, or given an explicit box
368 -- initialization) are also visible in the enclosing generic, while those
369 -- that have a corresponding actual are not.
370
371 -- In our source model of instantiation, the same visibility must be
372 -- present in the spec and body of an instance: the names of the formals
373 -- that are defaulted must be made visible within the instance, and made
374 -- invisible (hidden) after the instantiation is complete, so that they
375 -- are not accessible outside of the instance.
376
377 -- In a generic, a formal package is treated like a special instantiation.
378 -- Our Ada 95 compiler handled formals with and without box in different
379 -- ways. With partial parameterization, we use a single model for both.
380 -- We create a package declaration that consists of the specification of
381 -- the generic package, and a set of declarations that map the actuals
382 -- into local renamings, just as we do for bona fide instantiations. For
383 -- defaulted parameters and formals with a box, we copy directly the
384 -- declarations of the formal into this local package. The result is a
385 -- a package whose visible declarations may include generic formals. This
386 -- package is only used for type checking and visibility analysis, and
387 -- never reaches the back-end, so it can freely violate the placement
388 -- rules for generic formal declarations.
389
390 -- The list of declarations (renamings and copies of formals) is built
391 -- by Analyze_Associations, just as for regular instantiations.
392
393 -- At the point of instantiation, conformance checking must be applied only
394 -- to those parameters that were specified in the formal. We perform this
395 -- checking by creating another internal instantiation, this one including
396 -- only the renamings and the formals (the rest of the package spec is not
397 -- relevant to conformance checking). We can then traverse two lists: the
398 -- list of actuals in the instance that corresponds to the formal package,
399 -- and the list of actuals produced for this bogus instantiation. We apply
400 -- the conformance rules to those actuals that are not defaulted (i.e.
401 -- which still appear as generic formals.
402
403 -- When we compile an instance body we must make the right parameters
404 -- visible again. The predicate Is_Generic_Formal indicates which of the
405 -- formals should have its Is_Hidden flag reset.
406
407 -----------------------
408 -- Local subprograms --
409 -----------------------
410
411 procedure Abandon_Instantiation (N : Node_Id);
412 pragma No_Return (Abandon_Instantiation);
413 -- Posts an error message "instantiation abandoned" at the indicated node
414 -- and then raises the exception Instantiation_Error to do it.
415
416 procedure Analyze_Formal_Array_Type
417 (T : in out Entity_Id;
418 Def : Node_Id);
419 -- A formal array type is treated like an array type declaration, and
420 -- invokes Array_Type_Declaration (sem_ch3) whose first parameter is
421 -- in-out, because in the case of an anonymous type the entity is
422 -- actually created in the procedure.
423
424 -- The following procedures treat other kinds of formal parameters
425
426 procedure Analyze_Formal_Derived_Interface_Type
427 (N : Node_Id;
428 T : Entity_Id;
429 Def : Node_Id);
430
431 procedure Analyze_Formal_Derived_Type
432 (N : Node_Id;
433 T : Entity_Id;
434 Def : Node_Id);
435
436 procedure Analyze_Formal_Interface_Type
437 (N : Node_Id;
438 T : Entity_Id;
439 Def : Node_Id);
440
441 -- The following subprograms create abbreviated declarations for formal
442 -- scalar types. We introduce an anonymous base of the proper class for
443 -- each of them, and define the formals as constrained first subtypes of
444 -- their bases. The bounds are expressions that are non-static in the
445 -- generic.
446
447 procedure Analyze_Formal_Decimal_Fixed_Point_Type
448 (T : Entity_Id; Def : Node_Id);
449 procedure Analyze_Formal_Discrete_Type (T : Entity_Id; Def : Node_Id);
450 procedure Analyze_Formal_Floating_Type (T : Entity_Id; Def : Node_Id);
451 procedure Analyze_Formal_Signed_Integer_Type (T : Entity_Id; Def : Node_Id);
452 procedure Analyze_Formal_Modular_Type (T : Entity_Id; Def : Node_Id);
453 procedure Analyze_Formal_Ordinary_Fixed_Point_Type
454 (T : Entity_Id; Def : Node_Id);
455
456 procedure Analyze_Formal_Private_Type
457 (N : Node_Id;
458 T : Entity_Id;
459 Def : Node_Id);
460 -- Creates a new private type, which does not require completion
461
462 procedure Analyze_Formal_Incomplete_Type (T : Entity_Id; Def : Node_Id);
463 -- Ada 2012: Creates a new incomplete type whose actual does not freeze
464
465 procedure Analyze_Generic_Formal_Part (N : Node_Id);
466 -- Analyze generic formal part
467
468 procedure Analyze_Generic_Access_Type (T : Entity_Id; Def : Node_Id);
469 -- Create a new access type with the given designated type
470
471 function Analyze_Associations
472 (I_Node : Node_Id;
473 Formals : List_Id;
474 F_Copy : List_Id) return List_Id;
475 -- At instantiation time, build the list of associations between formals
476 -- and actuals. Each association becomes a renaming declaration for the
477 -- formal entity. F_Copy is the analyzed list of formals in the generic
478 -- copy. It is used to apply legality checks to the actuals. I_Node is the
479 -- instantiation node itself.
480
481 procedure Analyze_Subprogram_Instantiation
482 (N : Node_Id;
483 K : Entity_Kind);
484
485 procedure Build_Instance_Compilation_Unit_Nodes
486 (N : Node_Id;
487 Act_Body : Node_Id;
488 Act_Decl : Node_Id);
489 -- This procedure is used in the case where the generic instance of a
490 -- subprogram body or package body is a library unit. In this case, the
491 -- original library unit node for the generic instantiation must be
492 -- replaced by the resulting generic body, and a link made to a new
493 -- compilation unit node for the generic declaration. The argument N is
494 -- the original generic instantiation. Act_Body and Act_Decl are the body
495 -- and declaration of the instance (either package body and declaration
496 -- nodes or subprogram body and declaration nodes depending on the case).
497 -- On return, the node N has been rewritten with the actual body.
498
499 procedure Check_Access_Definition (N : Node_Id);
500 -- Subsidiary routine to null exclusion processing. Perform an assertion
501 -- check on Ada version and the presence of an access definition in N.
502
503 procedure Check_Formal_Packages (P_Id : Entity_Id);
504 -- Apply the following to all formal packages in generic associations
505
506 procedure Check_Formal_Package_Instance
507 (Formal_Pack : Entity_Id;
508 Actual_Pack : Entity_Id);
509 -- Verify that the actuals of the actual instance match the actuals of
510 -- the template for a formal package that is not declared with a box.
511
512 procedure Check_Forward_Instantiation (Decl : Node_Id);
513 -- If the generic is a local entity and the corresponding body has not
514 -- been seen yet, flag enclosing packages to indicate that it will be
515 -- elaborated after the generic body. Subprograms declared in the same
516 -- package cannot be inlined by the front-end because front-end inlining
517 -- requires a strict linear order of elaboration.
518
519 function Check_Hidden_Primitives (Assoc_List : List_Id) return Elist_Id;
520 -- Check if some association between formals and actuals requires to make
521 -- visible primitives of a tagged type, and make those primitives visible.
522 -- Return the list of primitives whose visibility is modified (to restore
523 -- their visibility later through Restore_Hidden_Primitives). If no
524 -- candidate is found then return No_Elist.
525
526 procedure Check_Hidden_Child_Unit
527 (N : Node_Id;
528 Gen_Unit : Entity_Id;
529 Act_Decl_Id : Entity_Id);
530 -- If the generic unit is an implicit child instance within a parent
531 -- instance, we need to make an explicit test that it is not hidden by
532 -- a child instance of the same name and parent.
533
534 procedure Check_Generic_Actuals
535 (Instance : Entity_Id;
536 Is_Formal_Box : Boolean);
537 -- Similar to previous one. Check the actuals in the instantiation,
538 -- whose views can change between the point of instantiation and the point
539 -- of instantiation of the body. In addition, mark the generic renamings
540 -- as generic actuals, so that they are not compatible with other actuals.
541 -- Recurse on an actual that is a formal package whose declaration has
542 -- a box.
543
544 function Contains_Instance_Of
545 (Inner : Entity_Id;
546 Outer : Entity_Id;
547 N : Node_Id) return Boolean;
548 -- Inner is instantiated within the generic Outer. Check whether Inner
549 -- directly or indirectly contains an instance of Outer or of one of its
550 -- parents, in the case of a subunit. Each generic unit holds a list of
551 -- the entities instantiated within (at any depth). This procedure
552 -- determines whether the set of such lists contains a cycle, i.e. an
553 -- illegal circular instantiation.
554
555 function Denotes_Formal_Package
556 (Pack : Entity_Id;
557 On_Exit : Boolean := False;
558 Instance : Entity_Id := Empty) return Boolean;
559 -- Returns True if E is a formal package of an enclosing generic, or
560 -- the actual for such a formal in an enclosing instantiation. If such
561 -- a package is used as a formal in an nested generic, or as an actual
562 -- in a nested instantiation, the visibility of ITS formals should not
563 -- be modified. When called from within Restore_Private_Views, the flag
564 -- On_Exit is true, to indicate that the search for a possible enclosing
565 -- instance should ignore the current one. In that case Instance denotes
566 -- the declaration for which this is an actual. This declaration may be
567 -- an instantiation in the source, or the internal instantiation that
568 -- corresponds to the actual for a formal package.
569
570 function Earlier (N1, N2 : Node_Id) return Boolean;
571 -- Yields True if N1 and N2 appear in the same compilation unit,
572 -- ignoring subunits, and if N1 is to the left of N2 in a left-to-right
573 -- traversal of the tree for the unit. Used to determine the placement
574 -- of freeze nodes for instance bodies that may depend on other instances.
575
576 function Find_Actual_Type
577 (Typ : Entity_Id;
578 Gen_Type : Entity_Id) return Entity_Id;
579 -- When validating the actual types of a child instance, check whether
580 -- the formal is a formal type of the parent unit, and retrieve the current
581 -- actual for it. Typ is the entity in the analyzed formal type declaration
582 -- (component or index type of an array type, or designated type of an
583 -- access formal) and Gen_Type is the enclosing analyzed formal array
584 -- or access type. The desired actual may be a formal of a parent, or may
585 -- be declared in a formal package of a parent. In both cases it is a
586 -- generic actual type because it appears within a visible instance.
587 -- Finally, it may be declared in a parent unit without being a formal
588 -- of that unit, in which case it must be retrieved by visibility.
589 -- Ambiguities may still arise if two homonyms are declared in two formal
590 -- packages, and the prefix of the formal type may be needed to resolve
591 -- the ambiguity in the instance ???
592
593 procedure Freeze_Subprogram_Body
594 (Inst_Node : Node_Id;
595 Gen_Body : Node_Id;
596 Pack_Id : Entity_Id);
597 -- The generic body may appear textually after the instance, including
598 -- in the proper body of a stub, or within a different package instance.
599 -- Given that the instance can only be elaborated after the generic, we
600 -- place freeze_nodes for the instance and/or for packages that may enclose
601 -- the instance and the generic, so that the back-end can establish the
602 -- proper order of elaboration.
603
604 function Get_Associated_Node (N : Node_Id) return Node_Id;
605 -- In order to propagate semantic information back from the analyzed copy
606 -- to the original generic, we maintain links between selected nodes in the
607 -- generic and their corresponding copies. At the end of generic analysis,
608 -- the routine Save_Global_References traverses the generic tree, examines
609 -- the semantic information, and preserves the links to those nodes that
610 -- contain global information. At instantiation, the information from the
611 -- associated node is placed on the new copy, so that name resolution is
612 -- not repeated.
613 --
614 -- Three kinds of source nodes have associated nodes:
615 --
616 -- a) those that can reference (denote) entities, that is identifiers,
617 -- character literals, expanded_names, operator symbols, operators,
618 -- and attribute reference nodes. These nodes have an Entity field
619 -- and are the set of nodes that are in N_Has_Entity.
620 --
621 -- b) aggregates (N_Aggregate and N_Extension_Aggregate)
622 --
623 -- c) selected components (N_Selected_Component)
624 --
625 -- For the first class, the associated node preserves the entity if it is
626 -- global. If the generic contains nested instantiations, the associated
627 -- node itself has been recopied, and a chain of them must be followed.
628 --
629 -- For aggregates, the associated node allows retrieval of the type, which
630 -- may otherwise not appear in the generic. The view of this type may be
631 -- different between generic and instantiation, and the full view can be
632 -- installed before the instantiation is analyzed. For aggregates of type
633 -- extensions, the same view exchange may have to be performed for some of
634 -- the ancestor types, if their view is private at the point of
635 -- instantiation.
636 --
637 -- Nodes that are selected components in the parse tree may be rewritten
638 -- as expanded names after resolution, and must be treated as potential
639 -- entity holders, which is why they also have an Associated_Node.
640 --
641 -- Nodes that do not come from source, such as freeze nodes, do not appear
642 -- in the generic tree, and need not have an associated node.
643 --
644 -- The associated node is stored in the Associated_Node field. Note that
645 -- this field overlaps Entity, which is fine, because the whole point is
646 -- that we don't need or want the normal Entity field in this situation.
647
648 function Has_Been_Exchanged (E : Entity_Id) return Boolean;
649 -- Traverse the Exchanged_Views list to see if a type was private
650 -- and has already been flipped during this phase of instantiation.
651
652 procedure Hide_Current_Scope;
653 -- When instantiating a generic child unit, the parent context must be
654 -- present, but the instance and all entities that may be generated
655 -- must be inserted in the current scope. We leave the current scope
656 -- on the stack, but make its entities invisible to avoid visibility
657 -- problems. This is reversed at the end of the instantiation. This is
658 -- not done for the instantiation of the bodies, which only require the
659 -- instances of the generic parents to be in scope.
660
661 function In_Same_Declarative_Part
662 (F_Node : Node_Id;
663 Inst : Node_Id) return Boolean;
664 -- True if the instantiation Inst and the given freeze_node F_Node appear
665 -- within the same declarative part, ignoring subunits, but with no inter-
666 -- vening subprograms or concurrent units. Used to find the proper plave
667 -- for the freeze node of an instance, when the generic is declared in a
668 -- previous instance. If predicate is true, the freeze node of the instance
669 -- can be placed after the freeze node of the previous instance, Otherwise
670 -- it has to be placed at the end of the current declarative part.
671
672 function In_Main_Context (E : Entity_Id) return Boolean;
673 -- Check whether an instantiation is in the context of the main unit.
674 -- Used to determine whether its body should be elaborated to allow
675 -- front-end inlining.
676
677 procedure Inherit_Context (Gen_Decl : Node_Id; Inst : Node_Id);
678 -- Add the context clause of the unit containing a generic unit to a
679 -- compilation unit that is, or contains, an instantiation.
680
681 procedure Init_Env;
682 -- Establish environment for subsequent instantiation. Separated from
683 -- Save_Env because data-structures for visibility handling must be
684 -- initialized before call to Check_Generic_Child_Unit.
685
686 procedure Inline_Instance_Body
687 (N : Node_Id;
688 Gen_Unit : Entity_Id;
689 Act_Decl : Node_Id);
690 -- If front-end inlining is requested, instantiate the package body,
691 -- and preserve the visibility of its compilation unit, to insure
692 -- that successive instantiations succeed.
693
694 procedure Insert_Freeze_Node_For_Instance
695 (N : Node_Id;
696 F_Node : Node_Id);
697 -- N denotes a package or a subprogram instantiation and F_Node is the
698 -- associated freeze node. Insert the freeze node before the first source
699 -- body which follows immediately after N. If no such body is found, the
700 -- freeze node is inserted at the end of the declarative region which
701 -- contains N.
702
703 procedure Install_Body
704 (Act_Body : Node_Id;
705 N : Node_Id;
706 Gen_Body : Node_Id;
707 Gen_Decl : Node_Id);
708 -- If the instantiation happens textually before the body of the generic,
709 -- the instantiation of the body must be analyzed after the generic body,
710 -- and not at the point of instantiation. Such early instantiations can
711 -- happen if the generic and the instance appear in a package declaration
712 -- because the generic body can only appear in the corresponding package
713 -- body. Early instantiations can also appear if generic, instance and
714 -- body are all in the declarative part of a subprogram or entry. Entities
715 -- of packages that are early instantiations are delayed, and their freeze
716 -- node appears after the generic body.
717
718 procedure Install_Formal_Packages (Par : Entity_Id);
719 -- Install the visible part of any formal of the parent that is a formal
720 -- package. Note that for the case of a formal package with a box, this
721 -- includes the formal part of the formal package (12.7(10/2)).
722
723 procedure Install_Hidden_Primitives
724 (Prims_List : in out Elist_Id;
725 Gen_T : Entity_Id;
726 Act_T : Entity_Id);
727 -- Remove suffix 'P' from hidden primitives of Act_T to match the
728 -- visibility of primitives of Gen_T. The list of primitives to which
729 -- the suffix is removed is added to Prims_List to restore them later.
730
731 procedure Install_Parent (P : Entity_Id; In_Body : Boolean := False);
732 -- When compiling an instance of a child unit the parent (which is
733 -- itself an instance) is an enclosing scope that must be made
734 -- immediately visible. This procedure is also used to install the non-
735 -- generic parent of a generic child unit when compiling its body, so
736 -- that full views of types in the parent are made visible.
737
738 -- The functions Instantiate_XXX perform various legality checks and build
739 -- the declarations for instantiated generic parameters. In all of these
740 -- Formal is the entity in the generic unit, Actual is the entity of
741 -- expression in the generic associations, and Analyzed_Formal is the
742 -- formal in the generic copy, which contains the semantic information to
743 -- be used to validate the actual.
744
745 function Instantiate_Object
746 (Formal : Node_Id;
747 Actual : Node_Id;
748 Analyzed_Formal : Node_Id) return List_Id;
749
750 function Instantiate_Type
751 (Formal : Node_Id;
752 Actual : Node_Id;
753 Analyzed_Formal : Node_Id;
754 Actual_Decls : List_Id) return List_Id;
755
756 function Instantiate_Formal_Subprogram
757 (Formal : Node_Id;
758 Actual : Node_Id;
759 Analyzed_Formal : Node_Id) return Node_Id;
760
761 function Instantiate_Formal_Package
762 (Formal : Node_Id;
763 Actual : Node_Id;
764 Analyzed_Formal : Node_Id) return List_Id;
765 -- If the formal package is declared with a box, special visibility rules
766 -- apply to its formals: they are in the visible part of the package. This
767 -- is true in the declarative region of the formal package, that is to say
768 -- in the enclosing generic or instantiation. For an instantiation, the
769 -- parameters of the formal package are made visible in an explicit step.
770 -- Furthermore, if the actual has a visible USE clause, these formals must
771 -- be made potentially use-visible as well. On exit from the enclosing
772 -- instantiation, the reverse must be done.
773
774 -- For a formal package declared without a box, there are conformance rules
775 -- that apply to the actuals in the generic declaration and the actuals of
776 -- the actual package in the enclosing instantiation. The simplest way to
777 -- apply these rules is to repeat the instantiation of the formal package
778 -- in the context of the enclosing instance, and compare the generic
779 -- associations of this instantiation with those of the actual package.
780 -- This internal instantiation only needs to contain the renamings of the
781 -- formals: the visible and private declarations themselves need not be
782 -- created.
783
784 -- In Ada 2005, the formal package may be only partially parameterized.
785 -- In that case the visibility step must make visible those actuals whose
786 -- corresponding formals were given with a box. A final complication
787 -- involves inherited operations from formal derived types, which must
788 -- be visible if the type is.
789
790 function Is_In_Main_Unit (N : Node_Id) return Boolean;
791 -- Test if given node is in the main unit
792
793 procedure Load_Parent_Of_Generic
794 (N : Node_Id;
795 Spec : Node_Id;
796 Body_Optional : Boolean := False);
797 -- If the generic appears in a separate non-generic library unit, load the
798 -- corresponding body to retrieve the body of the generic. N is the node
799 -- for the generic instantiation, Spec is the generic package declaration.
800 --
801 -- Body_Optional is a flag that indicates that the body is being loaded to
802 -- ensure that temporaries are generated consistently when there are other
803 -- instances in the current declarative part that precede the one being
804 -- loaded. In that case a missing body is acceptable.
805
806 procedure Map_Formal_Package_Entities (Form : Entity_Id; Act : Entity_Id);
807 -- Within the generic part, entities in the formal package are
808 -- visible. To validate subsequent type declarations, indicate
809 -- the correspondence between the entities in the analyzed formal,
810 -- and the entities in the actual package. There are three packages
811 -- involved in the instantiation of a formal package: the parent
812 -- generic P1 which appears in the generic declaration, the fake
813 -- instantiation P2 which appears in the analyzed generic, and whose
814 -- visible entities may be used in subsequent formals, and the actual
815 -- P3 in the instance. To validate subsequent formals, me indicate
816 -- that the entities in P2 are mapped into those of P3. The mapping of
817 -- entities has to be done recursively for nested packages.
818
819 procedure Move_Freeze_Nodes
820 (Out_Of : Entity_Id;
821 After : Node_Id;
822 L : List_Id);
823 -- Freeze nodes can be generated in the analysis of a generic unit, but
824 -- will not be seen by the back-end. It is necessary to move those nodes
825 -- to the enclosing scope if they freeze an outer entity. We place them
826 -- at the end of the enclosing generic package, which is semantically
827 -- neutral.
828
829 procedure Preanalyze_Actuals (N : Node_Id; Inst : Entity_Id := Empty);
830 -- Analyze actuals to perform name resolution. Full resolution is done
831 -- later, when the expected types are known, but names have to be captured
832 -- before installing parents of generics, that are not visible for the
833 -- actuals themselves.
834 --
835 -- If Inst is present, it is the entity of the package instance. This
836 -- entity is marked as having a limited_view actual when some actual is
837 -- a limited view. This is used to place the instance body properly.
838
839 procedure Remove_Parent (In_Body : Boolean := False);
840 -- Reverse effect after instantiation of child is complete
841
842 procedure Restore_Hidden_Primitives (Prims_List : in out Elist_Id);
843 -- Restore suffix 'P' to primitives of Prims_List and leave Prims_List
844 -- set to No_Elist.
845
846 procedure Set_Instance_Env
847 (Gen_Unit : Entity_Id;
848 Act_Unit : Entity_Id);
849 -- Save current instance on saved environment, to be used to determine
850 -- the global status of entities in nested instances. Part of Save_Env.
851 -- called after verifying that the generic unit is legal for the instance,
852 -- The procedure also examines whether the generic unit is a predefined
853 -- unit, in order to set configuration switches accordingly. As a result
854 -- the procedure must be called after analyzing and freezing the actuals.
855
856 procedure Set_Instance_Of (A : Entity_Id; B : Entity_Id);
857 -- Associate analyzed generic parameter with corresponding instance. Used
858 -- for semantic checks at instantiation time.
859
860 function True_Parent (N : Node_Id) return Node_Id;
861 -- For a subunit, return parent of corresponding stub, else return
862 -- parent of node.
863
864 procedure Valid_Default_Attribute (Nam : Entity_Id; Def : Node_Id);
865 -- Verify that an attribute that appears as the default for a formal
866 -- subprogram is a function or procedure with the correct profile.
867
868 -------------------------------------------
869 -- Data Structures for Generic Renamings --
870 -------------------------------------------
871
872 -- The map Generic_Renamings associates generic entities with their
873 -- corresponding actuals. Currently used to validate type instances. It
874 -- will eventually be used for all generic parameters to eliminate the
875 -- need for overload resolution in the instance.
876
877 type Assoc_Ptr is new Int;
878
879 Assoc_Null : constant Assoc_Ptr := -1;
880
881 type Assoc is record
882 Gen_Id : Entity_Id;
883 Act_Id : Entity_Id;
884 Next_In_HTable : Assoc_Ptr;
885 end record;
886
887 package Generic_Renamings is new Table.Table
888 (Table_Component_Type => Assoc,
889 Table_Index_Type => Assoc_Ptr,
890 Table_Low_Bound => 0,
891 Table_Initial => 10,
892 Table_Increment => 100,
893 Table_Name => "Generic_Renamings");
894
895 -- Variable to hold enclosing instantiation. When the environment is
896 -- saved for a subprogram inlining, the corresponding Act_Id is empty.
897
898 Current_Instantiated_Parent : Assoc := (Empty, Empty, Assoc_Null);
899
900 -- Hash table for associations
901
902 HTable_Size : constant := 37;
903 type HTable_Range is range 0 .. HTable_Size - 1;
904
905 procedure Set_Next_Assoc (E : Assoc_Ptr; Next : Assoc_Ptr);
906 function Next_Assoc (E : Assoc_Ptr) return Assoc_Ptr;
907 function Get_Gen_Id (E : Assoc_Ptr) return Entity_Id;
908 function Hash (F : Entity_Id) return HTable_Range;
909
910 package Generic_Renamings_HTable is new GNAT.HTable.Static_HTable (
911 Header_Num => HTable_Range,
912 Element => Assoc,
913 Elmt_Ptr => Assoc_Ptr,
914 Null_Ptr => Assoc_Null,
915 Set_Next => Set_Next_Assoc,
916 Next => Next_Assoc,
917 Key => Entity_Id,
918 Get_Key => Get_Gen_Id,
919 Hash => Hash,
920 Equal => "=");
921
922 Exchanged_Views : Elist_Id;
923 -- This list holds the private views that have been exchanged during
924 -- instantiation to restore the visibility of the generic declaration.
925 -- (see comments above). After instantiation, the current visibility is
926 -- reestablished by means of a traversal of this list.
927
928 Hidden_Entities : Elist_Id;
929 -- This list holds the entities of the current scope that are removed
930 -- from immediate visibility when instantiating a child unit. Their
931 -- visibility is restored in Remove_Parent.
932
933 -- Because instantiations can be recursive, the following must be saved
934 -- on entry and restored on exit from an instantiation (spec or body).
935 -- This is done by the two procedures Save_Env and Restore_Env. For
936 -- package and subprogram instantiations (but not for the body instances)
937 -- the action of Save_Env is done in two steps: Init_Env is called before
938 -- Check_Generic_Child_Unit, because setting the parent instances requires
939 -- that the visibility data structures be properly initialized. Once the
940 -- generic is unit is validated, Set_Instance_Env completes Save_Env.
941
942 Parent_Unit_Visible : Boolean := False;
943 -- Parent_Unit_Visible is used when the generic is a child unit, and
944 -- indicates whether the ultimate parent of the generic is visible in the
945 -- instantiation environment. It is used to reset the visibility of the
946 -- parent at the end of the instantiation (see Remove_Parent).
947
948 Instance_Parent_Unit : Entity_Id := Empty;
949 -- This records the ultimate parent unit of an instance of a generic
950 -- child unit and is used in conjunction with Parent_Unit_Visible to
951 -- indicate the unit to which the Parent_Unit_Visible flag corresponds.
952
953 type Instance_Env is record
954 Instantiated_Parent : Assoc;
955 Exchanged_Views : Elist_Id;
956 Hidden_Entities : Elist_Id;
957 Current_Sem_Unit : Unit_Number_Type;
958 Parent_Unit_Visible : Boolean := False;
959 Instance_Parent_Unit : Entity_Id := Empty;
960 Switches : Config_Switches_Type;
961 end record;
962
963 package Instance_Envs is new Table.Table (
964 Table_Component_Type => Instance_Env,
965 Table_Index_Type => Int,
966 Table_Low_Bound => 0,
967 Table_Initial => 32,
968 Table_Increment => 100,
969 Table_Name => "Instance_Envs");
970
971 procedure Restore_Private_Views
972 (Pack_Id : Entity_Id;
973 Is_Package : Boolean := True);
974 -- Restore the private views of external types, and unmark the generic
975 -- renamings of actuals, so that they become compatible subtypes again.
976 -- For subprograms, Pack_Id is the package constructed to hold the
977 -- renamings.
978
979 procedure Switch_View (T : Entity_Id);
980 -- Switch the partial and full views of a type and its private
981 -- dependents (i.e. its subtypes and derived types).
982
983 ------------------------------------
984 -- Structures for Error Reporting --
985 ------------------------------------
986
987 Instantiation_Node : Node_Id;
988 -- Used by subprograms that validate instantiation of formal parameters
989 -- where there might be no actual on which to place the error message.
990 -- Also used to locate the instantiation node for generic subunits.
991
992 Instantiation_Error : exception;
993 -- When there is a semantic error in the generic parameter matching,
994 -- there is no point in continuing the instantiation, because the
995 -- number of cascaded errors is unpredictable. This exception aborts
996 -- the instantiation process altogether.
997
998 S_Adjustment : Sloc_Adjustment;
999 -- Offset created for each node in an instantiation, in order to keep
1000 -- track of the source position of the instantiation in each of its nodes.
1001 -- A subsequent semantic error or warning on a construct of the instance
1002 -- points to both places: the original generic node, and the point of
1003 -- instantiation. See Sinput and Sinput.L for additional details.
1004
1005 ------------------------------------------------------------
1006 -- Data structure for keeping track when inside a Generic --
1007 ------------------------------------------------------------
1008
1009 -- The following table is used to save values of the Inside_A_Generic
1010 -- flag (see spec of Sem) when they are saved by Start_Generic.
1011
1012 package Generic_Flags is new Table.Table (
1013 Table_Component_Type => Boolean,
1014 Table_Index_Type => Int,
1015 Table_Low_Bound => 0,
1016 Table_Initial => 32,
1017 Table_Increment => 200,
1018 Table_Name => "Generic_Flags");
1019
1020 ---------------------------
1021 -- Abandon_Instantiation --
1022 ---------------------------
1023
1024 procedure Abandon_Instantiation (N : Node_Id) is
1025 begin
1026 Error_Msg_N ("\instantiation abandoned!", N);
1027 raise Instantiation_Error;
1028 end Abandon_Instantiation;
1029
1030 --------------------------------
1031 -- Add_Pending_Instantiation --
1032 --------------------------------
1033
1034 procedure Add_Pending_Instantiation (Inst : Node_Id; Act_Decl : Node_Id) is
1035 begin
1036
1037 -- Add to the instantiation node and the corresponding unit declaration
1038 -- the current values of global flags to be used when analyzing the
1039 -- instance body.
1040
1041 Pending_Instantiations.Append
1042 ((Inst_Node => Inst,
1043 Act_Decl => Act_Decl,
1044 Expander_Status => Expander_Active,
1045 Current_Sem_Unit => Current_Sem_Unit,
1046 Scope_Suppress => Scope_Suppress,
1047 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
1048 Version => Ada_Version,
1049 Version_Pragma => Ada_Version_Pragma,
1050 Warnings => Save_Warnings,
1051 SPARK_Mode => SPARK_Mode,
1052 SPARK_Mode_Pragma => SPARK_Mode_Pragma));
1053 end Add_Pending_Instantiation;
1054
1055 --------------------------
1056 -- Analyze_Associations --
1057 --------------------------
1058
1059 function Analyze_Associations
1060 (I_Node : Node_Id;
1061 Formals : List_Id;
1062 F_Copy : List_Id) return List_Id
1063 is
1064 Actuals_To_Freeze : constant Elist_Id := New_Elmt_List;
1065 Assoc : constant List_Id := New_List;
1066 Default_Actuals : constant List_Id := New_List;
1067 Gen_Unit : constant Entity_Id :=
1068 Defining_Entity (Parent (F_Copy));
1069
1070 Actuals : List_Id;
1071 Actual : Node_Id;
1072 Analyzed_Formal : Node_Id;
1073 First_Named : Node_Id := Empty;
1074 Formal : Node_Id;
1075 Match : Node_Id;
1076 Named : Node_Id;
1077 Saved_Formal : Node_Id;
1078
1079 Default_Formals : constant List_Id := New_List;
1080 -- If an Others_Choice is present, some of the formals may be defaulted.
1081 -- To simplify the treatment of visibility in an instance, we introduce
1082 -- individual defaults for each such formal. These defaults are
1083 -- appended to the list of associations and replace the Others_Choice.
1084
1085 Found_Assoc : Node_Id;
1086 -- Association for the current formal being match. Empty if there are
1087 -- no remaining actuals, or if there is no named association with the
1088 -- name of the formal.
1089
1090 Is_Named_Assoc : Boolean;
1091 Num_Matched : Nat := 0;
1092 Num_Actuals : Nat := 0;
1093
1094 Others_Present : Boolean := False;
1095 Others_Choice : Node_Id := Empty;
1096 -- In Ada 2005, indicates partial parameterization of a formal
1097 -- package. As usual an other association must be last in the list.
1098
1099 procedure Check_Overloaded_Formal_Subprogram (Formal : Entity_Id);
1100 -- Apply RM 12.3(9): if a formal subprogram is overloaded, the instance
1101 -- cannot have a named association for it. AI05-0025 extends this rule
1102 -- to formals of formal packages by AI05-0025, and it also applies to
1103 -- box-initialized formals.
1104
1105 function Has_Fully_Defined_Profile (Subp : Entity_Id) return Boolean;
1106 -- Determine whether the parameter types and the return type of Subp
1107 -- are fully defined at the point of instantiation.
1108
1109 function Matching_Actual
1110 (F : Entity_Id;
1111 A_F : Entity_Id) return Node_Id;
1112 -- Find actual that corresponds to a given a formal parameter. If the
1113 -- actuals are positional, return the next one, if any. If the actuals
1114 -- are named, scan the parameter associations to find the right one.
1115 -- A_F is the corresponding entity in the analyzed generic,which is
1116 -- placed on the selector name for ASIS use.
1117 --
1118 -- In Ada 2005, a named association may be given with a box, in which
1119 -- case Matching_Actual sets Found_Assoc to the generic association,
1120 -- but return Empty for the actual itself. In this case the code below
1121 -- creates a corresponding declaration for the formal.
1122
1123 function Partial_Parameterization return Boolean;
1124 -- Ada 2005: if no match is found for a given formal, check if the
1125 -- association for it includes a box, or whether the associations
1126 -- include an Others clause.
1127
1128 procedure Process_Default (F : Entity_Id);
1129 -- Add a copy of the declaration of generic formal F to the list of
1130 -- associations, and add an explicit box association for F if there
1131 -- is none yet, and the default comes from an Others_Choice.
1132
1133 function Renames_Standard_Subprogram (Subp : Entity_Id) return Boolean;
1134 -- Determine whether Subp renames one of the subprograms defined in the
1135 -- generated package Standard.
1136
1137 procedure Set_Analyzed_Formal;
1138 -- Find the node in the generic copy that corresponds to a given formal.
1139 -- The semantic information on this node is used to perform legality
1140 -- checks on the actuals. Because semantic analysis can introduce some
1141 -- anonymous entities or modify the declaration node itself, the
1142 -- correspondence between the two lists is not one-one. In addition to
1143 -- anonymous types, the presence a formal equality will introduce an
1144 -- implicit declaration for the corresponding inequality.
1145
1146 ----------------------------------------
1147 -- Check_Overloaded_Formal_Subprogram --
1148 ----------------------------------------
1149
1150 procedure Check_Overloaded_Formal_Subprogram (Formal : Entity_Id) is
1151 Temp_Formal : Entity_Id;
1152
1153 begin
1154 Temp_Formal := First (Formals);
1155 while Present (Temp_Formal) loop
1156 if Nkind (Temp_Formal) in N_Formal_Subprogram_Declaration
1157 and then Temp_Formal /= Formal
1158 and then
1159 Chars (Defining_Unit_Name (Specification (Formal))) =
1160 Chars (Defining_Unit_Name (Specification (Temp_Formal)))
1161 then
1162 if Present (Found_Assoc) then
1163 Error_Msg_N
1164 ("named association not allowed for overloaded formal",
1165 Found_Assoc);
1166
1167 else
1168 Error_Msg_N
1169 ("named association not allowed for overloaded formal",
1170 Others_Choice);
1171 end if;
1172
1173 Abandon_Instantiation (Instantiation_Node);
1174 end if;
1175
1176 Next (Temp_Formal);
1177 end loop;
1178 end Check_Overloaded_Formal_Subprogram;
1179
1180 -------------------------------
1181 -- Has_Fully_Defined_Profile --
1182 -------------------------------
1183
1184 function Has_Fully_Defined_Profile (Subp : Entity_Id) return Boolean is
1185 function Is_Fully_Defined_Type (Typ : Entity_Id) return Boolean;
1186 -- Determine whethet type Typ is fully defined
1187
1188 ---------------------------
1189 -- Is_Fully_Defined_Type --
1190 ---------------------------
1191
1192 function Is_Fully_Defined_Type (Typ : Entity_Id) return Boolean is
1193 begin
1194 -- A private type without a full view is not fully defined
1195
1196 if Is_Private_Type (Typ)
1197 and then No (Full_View (Typ))
1198 then
1199 return False;
1200
1201 -- An incomplete type is never fully defined
1202
1203 elsif Is_Incomplete_Type (Typ) then
1204 return False;
1205
1206 -- All other types are fully defined
1207
1208 else
1209 return True;
1210 end if;
1211 end Is_Fully_Defined_Type;
1212
1213 -- Local declarations
1214
1215 Param : Entity_Id;
1216
1217 -- Start of processing for Has_Fully_Defined_Profile
1218
1219 begin
1220 -- Check the parameters
1221
1222 Param := First_Formal (Subp);
1223 while Present (Param) loop
1224 if not Is_Fully_Defined_Type (Etype (Param)) then
1225 return False;
1226 end if;
1227
1228 Next_Formal (Param);
1229 end loop;
1230
1231 -- Check the return type
1232
1233 return Is_Fully_Defined_Type (Etype (Subp));
1234 end Has_Fully_Defined_Profile;
1235
1236 ---------------------
1237 -- Matching_Actual --
1238 ---------------------
1239
1240 function Matching_Actual
1241 (F : Entity_Id;
1242 A_F : Entity_Id) return Node_Id
1243 is
1244 Prev : Node_Id;
1245 Act : Node_Id;
1246
1247 begin
1248 Is_Named_Assoc := False;
1249
1250 -- End of list of purely positional parameters
1251
1252 if No (Actual) or else Nkind (Actual) = N_Others_Choice then
1253 Found_Assoc := Empty;
1254 Act := Empty;
1255
1256 -- Case of positional parameter corresponding to current formal
1257
1258 elsif No (Selector_Name (Actual)) then
1259 Found_Assoc := Actual;
1260 Act := Explicit_Generic_Actual_Parameter (Actual);
1261 Num_Matched := Num_Matched + 1;
1262 Next (Actual);
1263
1264 -- Otherwise scan list of named actuals to find the one with the
1265 -- desired name. All remaining actuals have explicit names.
1266
1267 else
1268 Is_Named_Assoc := True;
1269 Found_Assoc := Empty;
1270 Act := Empty;
1271 Prev := Empty;
1272
1273 while Present (Actual) loop
1274 if Chars (Selector_Name (Actual)) = Chars (F) then
1275 Set_Entity (Selector_Name (Actual), A_F);
1276 Set_Etype (Selector_Name (Actual), Etype (A_F));
1277 Generate_Reference (A_F, Selector_Name (Actual));
1278 Found_Assoc := Actual;
1279 Act := Explicit_Generic_Actual_Parameter (Actual);
1280 Num_Matched := Num_Matched + 1;
1281 exit;
1282 end if;
1283
1284 Prev := Actual;
1285 Next (Actual);
1286 end loop;
1287
1288 -- Reset for subsequent searches. In most cases the named
1289 -- associations are in order. If they are not, we reorder them
1290 -- to avoid scanning twice the same actual. This is not just a
1291 -- question of efficiency: there may be multiple defaults with
1292 -- boxes that have the same name. In a nested instantiation we
1293 -- insert actuals for those defaults, and cannot rely on their
1294 -- names to disambiguate them.
1295
1296 if Actual = First_Named then
1297 Next (First_Named);
1298
1299 elsif Present (Actual) then
1300 Insert_Before (First_Named, Remove_Next (Prev));
1301 end if;
1302
1303 Actual := First_Named;
1304 end if;
1305
1306 if Is_Entity_Name (Act) and then Present (Entity (Act)) then
1307 Set_Used_As_Generic_Actual (Entity (Act));
1308 end if;
1309
1310 return Act;
1311 end Matching_Actual;
1312
1313 ------------------------------
1314 -- Partial_Parameterization --
1315 ------------------------------
1316
1317 function Partial_Parameterization return Boolean is
1318 begin
1319 return Others_Present
1320 or else (Present (Found_Assoc) and then Box_Present (Found_Assoc));
1321 end Partial_Parameterization;
1322
1323 ---------------------
1324 -- Process_Default --
1325 ---------------------
1326
1327 procedure Process_Default (F : Entity_Id) is
1328 Loc : constant Source_Ptr := Sloc (I_Node);
1329 F_Id : constant Entity_Id := Defining_Entity (F);
1330 Decl : Node_Id;
1331 Default : Node_Id;
1332 Id : Entity_Id;
1333
1334 begin
1335 -- Append copy of formal declaration to associations, and create new
1336 -- defining identifier for it.
1337
1338 Decl := New_Copy_Tree (F);
1339 Id := Make_Defining_Identifier (Sloc (F_Id), Chars (F_Id));
1340
1341 if Nkind (F) in N_Formal_Subprogram_Declaration then
1342 Set_Defining_Unit_Name (Specification (Decl), Id);
1343
1344 else
1345 Set_Defining_Identifier (Decl, Id);
1346 end if;
1347
1348 Append (Decl, Assoc);
1349
1350 if No (Found_Assoc) then
1351 Default :=
1352 Make_Generic_Association (Loc,
1353 Selector_Name =>
1354 New_Occurrence_Of (Id, Loc),
1355 Explicit_Generic_Actual_Parameter => Empty);
1356 Set_Box_Present (Default);
1357 Append (Default, Default_Formals);
1358 end if;
1359 end Process_Default;
1360
1361 ---------------------------------
1362 -- Renames_Standard_Subprogram --
1363 ---------------------------------
1364
1365 function Renames_Standard_Subprogram (Subp : Entity_Id) return Boolean is
1366 Id : Entity_Id;
1367
1368 begin
1369 Id := Alias (Subp);
1370 while Present (Id) loop
1371 if Scope (Id) = Standard_Standard then
1372 return True;
1373 end if;
1374
1375 Id := Alias (Id);
1376 end loop;
1377
1378 return False;
1379 end Renames_Standard_Subprogram;
1380
1381 -------------------------
1382 -- Set_Analyzed_Formal --
1383 -------------------------
1384
1385 procedure Set_Analyzed_Formal is
1386 Kind : Node_Kind;
1387
1388 begin
1389 while Present (Analyzed_Formal) loop
1390 Kind := Nkind (Analyzed_Formal);
1391
1392 case Nkind (Formal) is
1393
1394 when N_Formal_Subprogram_Declaration =>
1395 exit when Kind in N_Formal_Subprogram_Declaration
1396 and then
1397 Chars
1398 (Defining_Unit_Name (Specification (Formal))) =
1399 Chars
1400 (Defining_Unit_Name (Specification (Analyzed_Formal)));
1401
1402 when N_Formal_Package_Declaration =>
1403 exit when Nkind_In (Kind, N_Formal_Package_Declaration,
1404 N_Generic_Package_Declaration,
1405 N_Package_Declaration);
1406
1407 when N_Use_Package_Clause | N_Use_Type_Clause => exit;
1408
1409 when others =>
1410
1411 -- Skip freeze nodes, and nodes inserted to replace
1412 -- unrecognized pragmas.
1413
1414 exit when
1415 Kind not in N_Formal_Subprogram_Declaration
1416 and then not Nkind_In (Kind, N_Subprogram_Declaration,
1417 N_Freeze_Entity,
1418 N_Null_Statement,
1419 N_Itype_Reference)
1420 and then Chars (Defining_Identifier (Formal)) =
1421 Chars (Defining_Identifier (Analyzed_Formal));
1422 end case;
1423
1424 Next (Analyzed_Formal);
1425 end loop;
1426 end Set_Analyzed_Formal;
1427
1428 -- Start of processing for Analyze_Associations
1429
1430 begin
1431 Actuals := Generic_Associations (I_Node);
1432
1433 if Present (Actuals) then
1434
1435 -- Check for an Others choice, indicating a partial parameterization
1436 -- for a formal package.
1437
1438 Actual := First (Actuals);
1439 while Present (Actual) loop
1440 if Nkind (Actual) = N_Others_Choice then
1441 Others_Present := True;
1442 Others_Choice := Actual;
1443
1444 if Present (Next (Actual)) then
1445 Error_Msg_N ("others must be last association", Actual);
1446 end if;
1447
1448 -- This subprogram is used both for formal packages and for
1449 -- instantiations. For the latter, associations must all be
1450 -- explicit.
1451
1452 if Nkind (I_Node) /= N_Formal_Package_Declaration
1453 and then Comes_From_Source (I_Node)
1454 then
1455 Error_Msg_N
1456 ("others association not allowed in an instance",
1457 Actual);
1458 end if;
1459
1460 -- In any case, nothing to do after the others association
1461
1462 exit;
1463
1464 elsif Box_Present (Actual)
1465 and then Comes_From_Source (I_Node)
1466 and then Nkind (I_Node) /= N_Formal_Package_Declaration
1467 then
1468 Error_Msg_N
1469 ("box association not allowed in an instance", Actual);
1470 end if;
1471
1472 Next (Actual);
1473 end loop;
1474
1475 -- If named associations are present, save first named association
1476 -- (it may of course be Empty) to facilitate subsequent name search.
1477
1478 First_Named := First (Actuals);
1479 while Present (First_Named)
1480 and then Nkind (First_Named) /= N_Others_Choice
1481 and then No (Selector_Name (First_Named))
1482 loop
1483 Num_Actuals := Num_Actuals + 1;
1484 Next (First_Named);
1485 end loop;
1486 end if;
1487
1488 Named := First_Named;
1489 while Present (Named) loop
1490 if Nkind (Named) /= N_Others_Choice
1491 and then No (Selector_Name (Named))
1492 then
1493 Error_Msg_N ("invalid positional actual after named one", Named);
1494 Abandon_Instantiation (Named);
1495 end if;
1496
1497 -- A named association may lack an actual parameter, if it was
1498 -- introduced for a default subprogram that turns out to be local
1499 -- to the outer instantiation.
1500
1501 if Nkind (Named) /= N_Others_Choice
1502 and then Present (Explicit_Generic_Actual_Parameter (Named))
1503 then
1504 Num_Actuals := Num_Actuals + 1;
1505 end if;
1506
1507 Next (Named);
1508 end loop;
1509
1510 if Present (Formals) then
1511 Formal := First_Non_Pragma (Formals);
1512 Analyzed_Formal := First_Non_Pragma (F_Copy);
1513
1514 if Present (Actuals) then
1515 Actual := First (Actuals);
1516
1517 -- All formals should have default values
1518
1519 else
1520 Actual := Empty;
1521 end if;
1522
1523 while Present (Formal) loop
1524 Set_Analyzed_Formal;
1525 Saved_Formal := Next_Non_Pragma (Formal);
1526
1527 case Nkind (Formal) is
1528 when N_Formal_Object_Declaration =>
1529 Match :=
1530 Matching_Actual
1531 (Defining_Identifier (Formal),
1532 Defining_Identifier (Analyzed_Formal));
1533
1534 if No (Match) and then Partial_Parameterization then
1535 Process_Default (Formal);
1536
1537 else
1538 Append_List
1539 (Instantiate_Object (Formal, Match, Analyzed_Formal),
1540 Assoc);
1541
1542 -- For a defaulted in_parameter, create an entry in the
1543 -- the list of defaulted actuals, for GNATProve use. Do
1544 -- not included these defaults for an instance nested
1545 -- within a generic, because the defaults are also used
1546 -- in the analysis of the enclosing generic, and only
1547 -- defaulted subprograms are relevant there.
1548
1549 if No (Match) and then not Inside_A_Generic then
1550 Append_To (Default_Actuals,
1551 Make_Generic_Association (Sloc (I_Node),
1552 Selector_Name =>
1553 New_Occurrence_Of
1554 (Defining_Identifier (Formal), Sloc (I_Node)),
1555 Explicit_Generic_Actual_Parameter =>
1556 New_Copy_Tree (Default_Expression (Formal))));
1557 end if;
1558 end if;
1559
1560 -- If the object is a call to an expression function, this
1561 -- is a freezing point for it.
1562
1563 if Is_Entity_Name (Match)
1564 and then Present (Entity (Match))
1565 and then Nkind
1566 (Original_Node (Unit_Declaration_Node (Entity (Match))))
1567 = N_Expression_Function
1568 then
1569 Append_Elmt (Entity (Match), Actuals_To_Freeze);
1570 end if;
1571
1572 when N_Formal_Type_Declaration =>
1573 Match :=
1574 Matching_Actual
1575 (Defining_Identifier (Formal),
1576 Defining_Identifier (Analyzed_Formal));
1577
1578 if No (Match) then
1579 if Partial_Parameterization then
1580 Process_Default (Formal);
1581
1582 else
1583 Error_Msg_Sloc := Sloc (Gen_Unit);
1584 Error_Msg_NE
1585 ("missing actual&",
1586 Instantiation_Node, Defining_Identifier (Formal));
1587 Error_Msg_NE
1588 ("\in instantiation of & declared#",
1589 Instantiation_Node, Gen_Unit);
1590 Abandon_Instantiation (Instantiation_Node);
1591 end if;
1592
1593 else
1594 Analyze (Match);
1595 Append_List
1596 (Instantiate_Type
1597 (Formal, Match, Analyzed_Formal, Assoc),
1598 Assoc);
1599
1600 -- An instantiation is a freeze point for the actuals,
1601 -- unless this is a rewritten formal package, or the
1602 -- formal is an Ada 2012 formal incomplete type.
1603
1604 if Nkind (I_Node) = N_Formal_Package_Declaration
1605 or else
1606 (Ada_Version >= Ada_2012
1607 and then
1608 Ekind (Defining_Identifier (Analyzed_Formal)) =
1609 E_Incomplete_Type)
1610 then
1611 null;
1612
1613 else
1614 Append_Elmt (Entity (Match), Actuals_To_Freeze);
1615 end if;
1616 end if;
1617
1618 -- A remote access-to-class-wide type is not a legal actual
1619 -- for a generic formal of an access type (E.2.2(17/2)).
1620 -- In GNAT an exception to this rule is introduced when
1621 -- the formal is marked as remote using implementation
1622 -- defined aspect/pragma Remote_Access_Type. In that case
1623 -- the actual must be remote as well.
1624
1625 -- If the current instantiation is the construction of a
1626 -- local copy for a formal package the actuals may be
1627 -- defaulted, and there is no matching actual to check.
1628
1629 if Nkind (Analyzed_Formal) = N_Formal_Type_Declaration
1630 and then
1631 Nkind (Formal_Type_Definition (Analyzed_Formal)) =
1632 N_Access_To_Object_Definition
1633 and then Present (Match)
1634 then
1635 declare
1636 Formal_Ent : constant Entity_Id :=
1637 Defining_Identifier (Analyzed_Formal);
1638 begin
1639 if Is_Remote_Access_To_Class_Wide_Type (Entity (Match))
1640 = Is_Remote_Types (Formal_Ent)
1641 then
1642 -- Remoteness of formal and actual match
1643
1644 null;
1645
1646 elsif Is_Remote_Types (Formal_Ent) then
1647
1648 -- Remote formal, non-remote actual
1649
1650 Error_Msg_NE
1651 ("actual for& must be remote", Match, Formal_Ent);
1652
1653 else
1654 -- Non-remote formal, remote actual
1655
1656 Error_Msg_NE
1657 ("actual for& may not be remote",
1658 Match, Formal_Ent);
1659 end if;
1660 end;
1661 end if;
1662
1663 when N_Formal_Subprogram_Declaration =>
1664 Match :=
1665 Matching_Actual
1666 (Defining_Unit_Name (Specification (Formal)),
1667 Defining_Unit_Name (Specification (Analyzed_Formal)));
1668
1669 -- If the formal subprogram has the same name as another
1670 -- formal subprogram of the generic, then a named
1671 -- association is illegal (12.3(9)). Exclude named
1672 -- associations that are generated for a nested instance.
1673
1674 if Present (Match)
1675 and then Is_Named_Assoc
1676 and then Comes_From_Source (Found_Assoc)
1677 then
1678 Check_Overloaded_Formal_Subprogram (Formal);
1679 end if;
1680
1681 -- If there is no corresponding actual, this may be case
1682 -- of partial parameterization, or else the formal has a
1683 -- default or a box.
1684
1685 if No (Match) and then Partial_Parameterization then
1686 Process_Default (Formal);
1687
1688 if Nkind (I_Node) = N_Formal_Package_Declaration then
1689 Check_Overloaded_Formal_Subprogram (Formal);
1690 end if;
1691
1692 else
1693 Append_To (Assoc,
1694 Instantiate_Formal_Subprogram
1695 (Formal, Match, Analyzed_Formal));
1696
1697 -- An instantiation is a freeze point for the actuals,
1698 -- unless this is a rewritten formal package.
1699
1700 if Nkind (I_Node) /= N_Formal_Package_Declaration
1701 and then Nkind (Match) = N_Identifier
1702 and then Is_Subprogram (Entity (Match))
1703
1704 -- The actual subprogram may rename a routine defined
1705 -- in Standard. Avoid freezing such renamings because
1706 -- subprograms coming from Standard cannot be frozen.
1707
1708 and then
1709 not Renames_Standard_Subprogram (Entity (Match))
1710
1711 -- If the actual subprogram comes from a different
1712 -- unit, it is already frozen, either by a body in
1713 -- that unit or by the end of the declarative part
1714 -- of the unit. This check avoids the freezing of
1715 -- subprograms defined in Standard which are used
1716 -- as generic actuals.
1717
1718 and then In_Same_Code_Unit (Entity (Match), I_Node)
1719 and then Has_Fully_Defined_Profile (Entity (Match))
1720 then
1721 -- Mark the subprogram as having a delayed freeze
1722 -- since this may be an out-of-order action.
1723
1724 Set_Has_Delayed_Freeze (Entity (Match));
1725 Append_Elmt (Entity (Match), Actuals_To_Freeze);
1726 end if;
1727 end if;
1728
1729 -- If this is a nested generic, preserve default for later
1730 -- instantiations. We do this as well for GNATProve use,
1731 -- so that the list of generic associations is complete.
1732
1733 if No (Match) and then Box_Present (Formal) then
1734 declare
1735 Subp : constant Entity_Id :=
1736 Defining_Unit_Name (Specification (Last (Assoc)));
1737
1738 begin
1739 Append_To (Default_Actuals,
1740 Make_Generic_Association (Sloc (I_Node),
1741 Selector_Name =>
1742 New_Occurrence_Of (Subp, Sloc (I_Node)),
1743 Explicit_Generic_Actual_Parameter =>
1744 New_Occurrence_Of (Subp, Sloc (I_Node))));
1745 end;
1746 end if;
1747
1748 when N_Formal_Package_Declaration =>
1749 Match :=
1750 Matching_Actual
1751 (Defining_Identifier (Formal),
1752 Defining_Identifier (Original_Node (Analyzed_Formal)));
1753
1754 if No (Match) then
1755 if Partial_Parameterization then
1756 Process_Default (Formal);
1757
1758 else
1759 Error_Msg_Sloc := Sloc (Gen_Unit);
1760 Error_Msg_NE
1761 ("missing actual&",
1762 Instantiation_Node, Defining_Identifier (Formal));
1763 Error_Msg_NE
1764 ("\in instantiation of & declared#",
1765 Instantiation_Node, Gen_Unit);
1766
1767 Abandon_Instantiation (Instantiation_Node);
1768 end if;
1769
1770 else
1771 Analyze (Match);
1772 Append_List
1773 (Instantiate_Formal_Package
1774 (Formal, Match, Analyzed_Formal),
1775 Assoc);
1776 end if;
1777
1778 -- For use type and use package appearing in the generic part,
1779 -- we have already copied them, so we can just move them where
1780 -- they belong (we mustn't recopy them since this would mess up
1781 -- the Sloc values).
1782
1783 when N_Use_Package_Clause |
1784 N_Use_Type_Clause =>
1785 if Nkind (Original_Node (I_Node)) =
1786 N_Formal_Package_Declaration
1787 then
1788 Append (New_Copy_Tree (Formal), Assoc);
1789 else
1790 Remove (Formal);
1791 Append (Formal, Assoc);
1792 end if;
1793
1794 when others =>
1795 raise Program_Error;
1796
1797 end case;
1798
1799 Formal := Saved_Formal;
1800 Next_Non_Pragma (Analyzed_Formal);
1801 end loop;
1802
1803 if Num_Actuals > Num_Matched then
1804 Error_Msg_Sloc := Sloc (Gen_Unit);
1805
1806 if Present (Selector_Name (Actual)) then
1807 Error_Msg_NE
1808 ("unmatched actual &", Actual, Selector_Name (Actual));
1809 Error_Msg_NE
1810 ("\in instantiation of & declared#", Actual, Gen_Unit);
1811 else
1812 Error_Msg_NE
1813 ("unmatched actual in instantiation of & declared#",
1814 Actual, Gen_Unit);
1815 end if;
1816 end if;
1817
1818 elsif Present (Actuals) then
1819 Error_Msg_N
1820 ("too many actuals in generic instantiation", Instantiation_Node);
1821 end if;
1822
1823 -- An instantiation freezes all generic actuals. The only exceptions
1824 -- to this are incomplete types and subprograms which are not fully
1825 -- defined at the point of instantiation.
1826
1827 declare
1828 Elmt : Elmt_Id := First_Elmt (Actuals_To_Freeze);
1829 begin
1830 while Present (Elmt) loop
1831 Freeze_Before (I_Node, Node (Elmt));
1832 Next_Elmt (Elmt);
1833 end loop;
1834 end;
1835
1836 -- If there are default subprograms, normalize the tree by adding
1837 -- explicit associations for them. This is required if the instance
1838 -- appears within a generic.
1839
1840 if not Is_Empty_List (Default_Actuals) then
1841 declare
1842 Default : Node_Id;
1843
1844 begin
1845 Default := First (Default_Actuals);
1846 while Present (Default) loop
1847 Mark_Rewrite_Insertion (Default);
1848 Next (Default);
1849 end loop;
1850
1851 if No (Actuals) then
1852 Set_Generic_Associations (I_Node, Default_Actuals);
1853 else
1854 Append_List_To (Actuals, Default_Actuals);
1855 end if;
1856 end;
1857 end if;
1858
1859 -- If this is a formal package, normalize the parameter list by adding
1860 -- explicit box associations for the formals that are covered by an
1861 -- Others_Choice.
1862
1863 if not Is_Empty_List (Default_Formals) then
1864 Append_List (Default_Formals, Formals);
1865 end if;
1866
1867 return Assoc;
1868 end Analyze_Associations;
1869
1870 -------------------------------
1871 -- Analyze_Formal_Array_Type --
1872 -------------------------------
1873
1874 procedure Analyze_Formal_Array_Type
1875 (T : in out Entity_Id;
1876 Def : Node_Id)
1877 is
1878 DSS : Node_Id;
1879
1880 begin
1881 -- Treated like a non-generic array declaration, with additional
1882 -- semantic checks.
1883
1884 Enter_Name (T);
1885
1886 if Nkind (Def) = N_Constrained_Array_Definition then
1887 DSS := First (Discrete_Subtype_Definitions (Def));
1888 while Present (DSS) loop
1889 if Nkind_In (DSS, N_Subtype_Indication,
1890 N_Range,
1891 N_Attribute_Reference)
1892 then
1893 Error_Msg_N ("only a subtype mark is allowed in a formal", DSS);
1894 end if;
1895
1896 Next (DSS);
1897 end loop;
1898 end if;
1899
1900 Array_Type_Declaration (T, Def);
1901 Set_Is_Generic_Type (Base_Type (T));
1902
1903 if Ekind (Component_Type (T)) = E_Incomplete_Type
1904 and then No (Full_View (Component_Type (T)))
1905 then
1906 Error_Msg_N ("premature usage of incomplete type", Def);
1907
1908 -- Check that range constraint is not allowed on the component type
1909 -- of a generic formal array type (AARM 12.5.3(3))
1910
1911 elsif Is_Internal (Component_Type (T))
1912 and then Present (Subtype_Indication (Component_Definition (Def)))
1913 and then Nkind (Original_Node
1914 (Subtype_Indication (Component_Definition (Def)))) =
1915 N_Subtype_Indication
1916 then
1917 Error_Msg_N
1918 ("in a formal, a subtype indication can only be "
1919 & "a subtype mark (RM 12.5.3(3))",
1920 Subtype_Indication (Component_Definition (Def)));
1921 end if;
1922
1923 end Analyze_Formal_Array_Type;
1924
1925 ---------------------------------------------
1926 -- Analyze_Formal_Decimal_Fixed_Point_Type --
1927 ---------------------------------------------
1928
1929 -- As for other generic types, we create a valid type representation with
1930 -- legal but arbitrary attributes, whose values are never considered
1931 -- static. For all scalar types we introduce an anonymous base type, with
1932 -- the same attributes. We choose the corresponding integer type to be
1933 -- Standard_Integer.
1934 -- Here and in other similar routines, the Sloc of the generated internal
1935 -- type must be the same as the sloc of the defining identifier of the
1936 -- formal type declaration, to provide proper source navigation.
1937
1938 procedure Analyze_Formal_Decimal_Fixed_Point_Type
1939 (T : Entity_Id;
1940 Def : Node_Id)
1941 is
1942 Loc : constant Source_Ptr := Sloc (Def);
1943
1944 Base : constant Entity_Id :=
1945 New_Internal_Entity
1946 (E_Decimal_Fixed_Point_Type,
1947 Current_Scope,
1948 Sloc (Defining_Identifier (Parent (Def))), 'G');
1949
1950 Int_Base : constant Entity_Id := Standard_Integer;
1951 Delta_Val : constant Ureal := Ureal_1;
1952 Digs_Val : constant Uint := Uint_6;
1953
1954 function Make_Dummy_Bound return Node_Id;
1955 -- Return a properly typed universal real literal to use as a bound
1956
1957 ----------------------
1958 -- Make_Dummy_Bound --
1959 ----------------------
1960
1961 function Make_Dummy_Bound return Node_Id is
1962 Bound : constant Node_Id := Make_Real_Literal (Loc, Ureal_1);
1963 begin
1964 Set_Etype (Bound, Universal_Real);
1965 return Bound;
1966 end Make_Dummy_Bound;
1967
1968 -- Start of processing for Analyze_Formal_Decimal_Fixed_Point_Type
1969
1970 begin
1971 Enter_Name (T);
1972
1973 Set_Etype (Base, Base);
1974 Set_Size_Info (Base, Int_Base);
1975 Set_RM_Size (Base, RM_Size (Int_Base));
1976 Set_First_Rep_Item (Base, First_Rep_Item (Int_Base));
1977 Set_Digits_Value (Base, Digs_Val);
1978 Set_Delta_Value (Base, Delta_Val);
1979 Set_Small_Value (Base, Delta_Val);
1980 Set_Scalar_Range (Base,
1981 Make_Range (Loc,
1982 Low_Bound => Make_Dummy_Bound,
1983 High_Bound => Make_Dummy_Bound));
1984
1985 Set_Is_Generic_Type (Base);
1986 Set_Parent (Base, Parent (Def));
1987
1988 Set_Ekind (T, E_Decimal_Fixed_Point_Subtype);
1989 Set_Etype (T, Base);
1990 Set_Size_Info (T, Int_Base);
1991 Set_RM_Size (T, RM_Size (Int_Base));
1992 Set_First_Rep_Item (T, First_Rep_Item (Int_Base));
1993 Set_Digits_Value (T, Digs_Val);
1994 Set_Delta_Value (T, Delta_Val);
1995 Set_Small_Value (T, Delta_Val);
1996 Set_Scalar_Range (T, Scalar_Range (Base));
1997 Set_Is_Constrained (T);
1998
1999 Check_Restriction (No_Fixed_Point, Def);
2000 end Analyze_Formal_Decimal_Fixed_Point_Type;
2001
2002 -------------------------------------------
2003 -- Analyze_Formal_Derived_Interface_Type --
2004 -------------------------------------------
2005
2006 procedure Analyze_Formal_Derived_Interface_Type
2007 (N : Node_Id;
2008 T : Entity_Id;
2009 Def : Node_Id)
2010 is
2011 Loc : constant Source_Ptr := Sloc (Def);
2012
2013 begin
2014 -- Rewrite as a type declaration of a derived type. This ensures that
2015 -- the interface list and primitive operations are properly captured.
2016
2017 Rewrite (N,
2018 Make_Full_Type_Declaration (Loc,
2019 Defining_Identifier => T,
2020 Type_Definition => Def));
2021 Analyze (N);
2022 Set_Is_Generic_Type (T);
2023 end Analyze_Formal_Derived_Interface_Type;
2024
2025 ---------------------------------
2026 -- Analyze_Formal_Derived_Type --
2027 ---------------------------------
2028
2029 procedure Analyze_Formal_Derived_Type
2030 (N : Node_Id;
2031 T : Entity_Id;
2032 Def : Node_Id)
2033 is
2034 Loc : constant Source_Ptr := Sloc (Def);
2035 Unk_Disc : constant Boolean := Unknown_Discriminants_Present (N);
2036 New_N : Node_Id;
2037
2038 begin
2039 Set_Is_Generic_Type (T);
2040
2041 if Private_Present (Def) then
2042 New_N :=
2043 Make_Private_Extension_Declaration (Loc,
2044 Defining_Identifier => T,
2045 Discriminant_Specifications => Discriminant_Specifications (N),
2046 Unknown_Discriminants_Present => Unk_Disc,
2047 Subtype_Indication => Subtype_Mark (Def),
2048 Interface_List => Interface_List (Def));
2049
2050 Set_Abstract_Present (New_N, Abstract_Present (Def));
2051 Set_Limited_Present (New_N, Limited_Present (Def));
2052 Set_Synchronized_Present (New_N, Synchronized_Present (Def));
2053
2054 else
2055 New_N :=
2056 Make_Full_Type_Declaration (Loc,
2057 Defining_Identifier => T,
2058 Discriminant_Specifications =>
2059 Discriminant_Specifications (Parent (T)),
2060 Type_Definition =>
2061 Make_Derived_Type_Definition (Loc,
2062 Subtype_Indication => Subtype_Mark (Def)));
2063
2064 Set_Abstract_Present
2065 (Type_Definition (New_N), Abstract_Present (Def));
2066 Set_Limited_Present
2067 (Type_Definition (New_N), Limited_Present (Def));
2068 end if;
2069
2070 Rewrite (N, New_N);
2071 Analyze (N);
2072
2073 if Unk_Disc then
2074 if not Is_Composite_Type (T) then
2075 Error_Msg_N
2076 ("unknown discriminants not allowed for elementary types", N);
2077 else
2078 Set_Has_Unknown_Discriminants (T);
2079 Set_Is_Constrained (T, False);
2080 end if;
2081 end if;
2082
2083 -- If the parent type has a known size, so does the formal, which makes
2084 -- legal representation clauses that involve the formal.
2085
2086 Set_Size_Known_At_Compile_Time
2087 (T, Size_Known_At_Compile_Time (Entity (Subtype_Mark (Def))));
2088 end Analyze_Formal_Derived_Type;
2089
2090 ----------------------------------
2091 -- Analyze_Formal_Discrete_Type --
2092 ----------------------------------
2093
2094 -- The operations defined for a discrete types are those of an enumeration
2095 -- type. The size is set to an arbitrary value, for use in analyzing the
2096 -- generic unit.
2097
2098 procedure Analyze_Formal_Discrete_Type (T : Entity_Id; Def : Node_Id) is
2099 Loc : constant Source_Ptr := Sloc (Def);
2100 Lo : Node_Id;
2101 Hi : Node_Id;
2102
2103 Base : constant Entity_Id :=
2104 New_Internal_Entity
2105 (E_Floating_Point_Type, Current_Scope,
2106 Sloc (Defining_Identifier (Parent (Def))), 'G');
2107
2108 begin
2109 Enter_Name (T);
2110 Set_Ekind (T, E_Enumeration_Subtype);
2111 Set_Etype (T, Base);
2112 Init_Size (T, 8);
2113 Init_Alignment (T);
2114 Set_Is_Generic_Type (T);
2115 Set_Is_Constrained (T);
2116
2117 -- For semantic analysis, the bounds of the type must be set to some
2118 -- non-static value. The simplest is to create attribute nodes for those
2119 -- bounds, that refer to the type itself. These bounds are never
2120 -- analyzed but serve as place-holders.
2121
2122 Lo :=
2123 Make_Attribute_Reference (Loc,
2124 Attribute_Name => Name_First,
2125 Prefix => New_Occurrence_Of (T, Loc));
2126 Set_Etype (Lo, T);
2127
2128 Hi :=
2129 Make_Attribute_Reference (Loc,
2130 Attribute_Name => Name_Last,
2131 Prefix => New_Occurrence_Of (T, Loc));
2132 Set_Etype (Hi, T);
2133
2134 Set_Scalar_Range (T,
2135 Make_Range (Loc,
2136 Low_Bound => Lo,
2137 High_Bound => Hi));
2138
2139 Set_Ekind (Base, E_Enumeration_Type);
2140 Set_Etype (Base, Base);
2141 Init_Size (Base, 8);
2142 Init_Alignment (Base);
2143 Set_Is_Generic_Type (Base);
2144 Set_Scalar_Range (Base, Scalar_Range (T));
2145 Set_Parent (Base, Parent (Def));
2146 end Analyze_Formal_Discrete_Type;
2147
2148 ----------------------------------
2149 -- Analyze_Formal_Floating_Type --
2150 ---------------------------------
2151
2152 procedure Analyze_Formal_Floating_Type (T : Entity_Id; Def : Node_Id) is
2153 Base : constant Entity_Id :=
2154 New_Internal_Entity
2155 (E_Floating_Point_Type, Current_Scope,
2156 Sloc (Defining_Identifier (Parent (Def))), 'G');
2157
2158 begin
2159 -- The various semantic attributes are taken from the predefined type
2160 -- Float, just so that all of them are initialized. Their values are
2161 -- never used because no constant folding or expansion takes place in
2162 -- the generic itself.
2163
2164 Enter_Name (T);
2165 Set_Ekind (T, E_Floating_Point_Subtype);
2166 Set_Etype (T, Base);
2167 Set_Size_Info (T, (Standard_Float));
2168 Set_RM_Size (T, RM_Size (Standard_Float));
2169 Set_Digits_Value (T, Digits_Value (Standard_Float));
2170 Set_Scalar_Range (T, Scalar_Range (Standard_Float));
2171 Set_Is_Constrained (T);
2172
2173 Set_Is_Generic_Type (Base);
2174 Set_Etype (Base, Base);
2175 Set_Size_Info (Base, (Standard_Float));
2176 Set_RM_Size (Base, RM_Size (Standard_Float));
2177 Set_Digits_Value (Base, Digits_Value (Standard_Float));
2178 Set_Scalar_Range (Base, Scalar_Range (Standard_Float));
2179 Set_Parent (Base, Parent (Def));
2180
2181 Check_Restriction (No_Floating_Point, Def);
2182 end Analyze_Formal_Floating_Type;
2183
2184 -----------------------------------
2185 -- Analyze_Formal_Interface_Type;--
2186 -----------------------------------
2187
2188 procedure Analyze_Formal_Interface_Type
2189 (N : Node_Id;
2190 T : Entity_Id;
2191 Def : Node_Id)
2192 is
2193 Loc : constant Source_Ptr := Sloc (N);
2194 New_N : Node_Id;
2195
2196 begin
2197 New_N :=
2198 Make_Full_Type_Declaration (Loc,
2199 Defining_Identifier => T,
2200 Type_Definition => Def);
2201
2202 Rewrite (N, New_N);
2203 Analyze (N);
2204 Set_Is_Generic_Type (T);
2205 end Analyze_Formal_Interface_Type;
2206
2207 ---------------------------------
2208 -- Analyze_Formal_Modular_Type --
2209 ---------------------------------
2210
2211 procedure Analyze_Formal_Modular_Type (T : Entity_Id; Def : Node_Id) is
2212 begin
2213 -- Apart from their entity kind, generic modular types are treated like
2214 -- signed integer types, and have the same attributes.
2215
2216 Analyze_Formal_Signed_Integer_Type (T, Def);
2217 Set_Ekind (T, E_Modular_Integer_Subtype);
2218 Set_Ekind (Etype (T), E_Modular_Integer_Type);
2219
2220 end Analyze_Formal_Modular_Type;
2221
2222 ---------------------------------------
2223 -- Analyze_Formal_Object_Declaration --
2224 ---------------------------------------
2225
2226 procedure Analyze_Formal_Object_Declaration (N : Node_Id) is
2227 E : constant Node_Id := Default_Expression (N);
2228 Id : constant Node_Id := Defining_Identifier (N);
2229 K : Entity_Kind;
2230 T : Node_Id;
2231
2232 begin
2233 Enter_Name (Id);
2234
2235 -- Determine the mode of the formal object
2236
2237 if Out_Present (N) then
2238 K := E_Generic_In_Out_Parameter;
2239
2240 if not In_Present (N) then
2241 Error_Msg_N ("formal generic objects cannot have mode OUT", N);
2242 end if;
2243
2244 else
2245 K := E_Generic_In_Parameter;
2246 end if;
2247
2248 if Present (Subtype_Mark (N)) then
2249 Find_Type (Subtype_Mark (N));
2250 T := Entity (Subtype_Mark (N));
2251
2252 -- Verify that there is no redundant null exclusion
2253
2254 if Null_Exclusion_Present (N) then
2255 if not Is_Access_Type (T) then
2256 Error_Msg_N
2257 ("null exclusion can only apply to an access type", N);
2258
2259 elsif Can_Never_Be_Null (T) then
2260 Error_Msg_NE
2261 ("`NOT NULL` not allowed (& already excludes null)", N, T);
2262 end if;
2263 end if;
2264
2265 -- Ada 2005 (AI-423): Formal object with an access definition
2266
2267 else
2268 Check_Access_Definition (N);
2269 T := Access_Definition
2270 (Related_Nod => N,
2271 N => Access_Definition (N));
2272 end if;
2273
2274 if Ekind (T) = E_Incomplete_Type then
2275 declare
2276 Error_Node : Node_Id;
2277
2278 begin
2279 if Present (Subtype_Mark (N)) then
2280 Error_Node := Subtype_Mark (N);
2281 else
2282 Check_Access_Definition (N);
2283 Error_Node := Access_Definition (N);
2284 end if;
2285
2286 Error_Msg_N ("premature usage of incomplete type", Error_Node);
2287 end;
2288 end if;
2289
2290 if K = E_Generic_In_Parameter then
2291
2292 -- Ada 2005 (AI-287): Limited aggregates allowed in generic formals
2293
2294 if Ada_Version < Ada_2005 and then Is_Limited_Type (T) then
2295 Error_Msg_N
2296 ("generic formal of mode IN must not be of limited type", N);
2297 Explain_Limited_Type (T, N);
2298 end if;
2299
2300 if Is_Abstract_Type (T) then
2301 Error_Msg_N
2302 ("generic formal of mode IN must not be of abstract type", N);
2303 end if;
2304
2305 if Present (E) then
2306 Preanalyze_Spec_Expression (E, T);
2307
2308 if Is_Limited_Type (T) and then not OK_For_Limited_Init (T, E) then
2309 Error_Msg_N
2310 ("initialization not allowed for limited types", E);
2311 Explain_Limited_Type (T, E);
2312 end if;
2313 end if;
2314
2315 Set_Ekind (Id, K);
2316 Set_Etype (Id, T);
2317
2318 -- Case of generic IN OUT parameter
2319
2320 else
2321 -- If the formal has an unconstrained type, construct its actual
2322 -- subtype, as is done for subprogram formals. In this fashion, all
2323 -- its uses can refer to specific bounds.
2324
2325 Set_Ekind (Id, K);
2326 Set_Etype (Id, T);
2327
2328 if (Is_Array_Type (T) and then not Is_Constrained (T))
2329 or else (Ekind (T) = E_Record_Type and then Has_Discriminants (T))
2330 then
2331 declare
2332 Non_Freezing_Ref : constant Node_Id :=
2333 New_Occurrence_Of (Id, Sloc (Id));
2334 Decl : Node_Id;
2335
2336 begin
2337 -- Make sure the actual subtype doesn't generate bogus freezing
2338
2339 Set_Must_Not_Freeze (Non_Freezing_Ref);
2340 Decl := Build_Actual_Subtype (T, Non_Freezing_Ref);
2341 Insert_Before_And_Analyze (N, Decl);
2342 Set_Actual_Subtype (Id, Defining_Identifier (Decl));
2343 end;
2344 else
2345 Set_Actual_Subtype (Id, T);
2346 end if;
2347
2348 if Present (E) then
2349 Error_Msg_N
2350 ("initialization not allowed for `IN OUT` formals", N);
2351 end if;
2352 end if;
2353
2354 if Has_Aspects (N) then
2355 Analyze_Aspect_Specifications (N, Id);
2356 end if;
2357 end Analyze_Formal_Object_Declaration;
2358
2359 ----------------------------------------------
2360 -- Analyze_Formal_Ordinary_Fixed_Point_Type --
2361 ----------------------------------------------
2362
2363 procedure Analyze_Formal_Ordinary_Fixed_Point_Type
2364 (T : Entity_Id;
2365 Def : Node_Id)
2366 is
2367 Loc : constant Source_Ptr := Sloc (Def);
2368 Base : constant Entity_Id :=
2369 New_Internal_Entity
2370 (E_Ordinary_Fixed_Point_Type, Current_Scope,
2371 Sloc (Defining_Identifier (Parent (Def))), 'G');
2372
2373 begin
2374 -- The semantic attributes are set for completeness only, their values
2375 -- will never be used, since all properties of the type are non-static.
2376
2377 Enter_Name (T);
2378 Set_Ekind (T, E_Ordinary_Fixed_Point_Subtype);
2379 Set_Etype (T, Base);
2380 Set_Size_Info (T, Standard_Integer);
2381 Set_RM_Size (T, RM_Size (Standard_Integer));
2382 Set_Small_Value (T, Ureal_1);
2383 Set_Delta_Value (T, Ureal_1);
2384 Set_Scalar_Range (T,
2385 Make_Range (Loc,
2386 Low_Bound => Make_Real_Literal (Loc, Ureal_1),
2387 High_Bound => Make_Real_Literal (Loc, Ureal_1)));
2388 Set_Is_Constrained (T);
2389
2390 Set_Is_Generic_Type (Base);
2391 Set_Etype (Base, Base);
2392 Set_Size_Info (Base, Standard_Integer);
2393 Set_RM_Size (Base, RM_Size (Standard_Integer));
2394 Set_Small_Value (Base, Ureal_1);
2395 Set_Delta_Value (Base, Ureal_1);
2396 Set_Scalar_Range (Base, Scalar_Range (T));
2397 Set_Parent (Base, Parent (Def));
2398
2399 Check_Restriction (No_Fixed_Point, Def);
2400 end Analyze_Formal_Ordinary_Fixed_Point_Type;
2401
2402 ----------------------------------------
2403 -- Analyze_Formal_Package_Declaration --
2404 ----------------------------------------
2405
2406 procedure Analyze_Formal_Package_Declaration (N : Node_Id) is
2407 Gen_Id : constant Node_Id := Name (N);
2408 Loc : constant Source_Ptr := Sloc (N);
2409 Pack_Id : constant Entity_Id := Defining_Identifier (N);
2410 Formal : Entity_Id;
2411 Gen_Decl : Node_Id;
2412 Gen_Unit : Entity_Id;
2413 Renaming : Node_Id;
2414
2415 Vis_Prims_List : Elist_Id := No_Elist;
2416 -- List of primitives made temporarily visible in the instantiation
2417 -- to match the visibility of the formal type.
2418
2419 function Build_Local_Package return Node_Id;
2420 -- The formal package is rewritten so that its parameters are replaced
2421 -- with corresponding declarations. For parameters with bona fide
2422 -- associations these declarations are created by Analyze_Associations
2423 -- as for a regular instantiation. For boxed parameters, we preserve
2424 -- the formal declarations and analyze them, in order to introduce
2425 -- entities of the right kind in the environment of the formal.
2426
2427 -------------------------
2428 -- Build_Local_Package --
2429 -------------------------
2430
2431 function Build_Local_Package return Node_Id is
2432 Decls : List_Id;
2433 Pack_Decl : Node_Id;
2434
2435 begin
2436 -- Within the formal, the name of the generic package is a renaming
2437 -- of the formal (as for a regular instantiation).
2438
2439 Pack_Decl :=
2440 Make_Package_Declaration (Loc,
2441 Specification =>
2442 Copy_Generic_Node
2443 (Specification (Original_Node (Gen_Decl)),
2444 Empty, Instantiating => True));
2445
2446 Renaming :=
2447 Make_Package_Renaming_Declaration (Loc,
2448 Defining_Unit_Name =>
2449 Make_Defining_Identifier (Loc, Chars (Gen_Unit)),
2450 Name => New_Occurrence_Of (Formal, Loc));
2451
2452 if Nkind (Gen_Id) = N_Identifier
2453 and then Chars (Gen_Id) = Chars (Pack_Id)
2454 then
2455 Error_Msg_NE
2456 ("& is hidden within declaration of instance", Gen_Id, Gen_Unit);
2457 end if;
2458
2459 -- If the formal is declared with a box, or with an others choice,
2460 -- create corresponding declarations for all entities in the formal
2461 -- part, so that names with the proper types are available in the
2462 -- specification of the formal package.
2463
2464 -- On the other hand, if there are no associations, then all the
2465 -- formals must have defaults, and this will be checked by the
2466 -- call to Analyze_Associations.
2467
2468 if Box_Present (N)
2469 or else Nkind (First (Generic_Associations (N))) = N_Others_Choice
2470 then
2471 declare
2472 Formal_Decl : Node_Id;
2473
2474 begin
2475 -- TBA : for a formal package, need to recurse ???
2476
2477 Decls := New_List;
2478 Formal_Decl :=
2479 First
2480 (Generic_Formal_Declarations (Original_Node (Gen_Decl)));
2481 while Present (Formal_Decl) loop
2482 Append_To
2483 (Decls, Copy_Generic_Node (Formal_Decl, Empty, True));
2484 Next (Formal_Decl);
2485 end loop;
2486 end;
2487
2488 -- If generic associations are present, use Analyze_Associations to
2489 -- create the proper renaming declarations.
2490
2491 else
2492 declare
2493 Act_Tree : constant Node_Id :=
2494 Copy_Generic_Node
2495 (Original_Node (Gen_Decl), Empty,
2496 Instantiating => True);
2497
2498 begin
2499 Generic_Renamings.Set_Last (0);
2500 Generic_Renamings_HTable.Reset;
2501 Instantiation_Node := N;
2502
2503 Decls :=
2504 Analyze_Associations
2505 (I_Node => Original_Node (N),
2506 Formals => Generic_Formal_Declarations (Act_Tree),
2507 F_Copy => Generic_Formal_Declarations (Gen_Decl));
2508
2509 Vis_Prims_List := Check_Hidden_Primitives (Decls);
2510 end;
2511 end if;
2512
2513 Append (Renaming, To => Decls);
2514
2515 -- Add generated declarations ahead of local declarations in
2516 -- the package.
2517
2518 if No (Visible_Declarations (Specification (Pack_Decl))) then
2519 Set_Visible_Declarations (Specification (Pack_Decl), Decls);
2520 else
2521 Insert_List_Before
2522 (First (Visible_Declarations (Specification (Pack_Decl))),
2523 Decls);
2524 end if;
2525
2526 return Pack_Decl;
2527 end Build_Local_Package;
2528
2529 -- Local variables
2530
2531 Save_IPSM : constant Boolean := Ignore_Pragma_SPARK_Mode;
2532 -- Save flag Ignore_Pragma_SPARK_Mode for restore on exit
2533
2534 Associations : Boolean := True;
2535 New_N : Node_Id;
2536 Parent_Installed : Boolean := False;
2537 Parent_Instance : Entity_Id;
2538 Renaming_In_Par : Entity_Id;
2539
2540 -- Start of processing for Analyze_Formal_Package_Declaration
2541
2542 begin
2543 Check_Text_IO_Special_Unit (Gen_Id);
2544
2545 Init_Env;
2546 Check_Generic_Child_Unit (Gen_Id, Parent_Installed);
2547 Gen_Unit := Entity (Gen_Id);
2548
2549 -- Check for a formal package that is a package renaming
2550
2551 if Present (Renamed_Object (Gen_Unit)) then
2552
2553 -- Indicate that unit is used, before replacing it with renamed
2554 -- entity for use below.
2555
2556 if In_Extended_Main_Source_Unit (N) then
2557 Set_Is_Instantiated (Gen_Unit);
2558 Generate_Reference (Gen_Unit, N);
2559 end if;
2560
2561 Gen_Unit := Renamed_Object (Gen_Unit);
2562 end if;
2563
2564 if Ekind (Gen_Unit) /= E_Generic_Package then
2565 Error_Msg_N ("expect generic package name", Gen_Id);
2566 Restore_Env;
2567 goto Leave;
2568
2569 elsif Gen_Unit = Current_Scope then
2570 Error_Msg_N
2571 ("generic package cannot be used as a formal package of itself",
2572 Gen_Id);
2573 Restore_Env;
2574 goto Leave;
2575
2576 elsif In_Open_Scopes (Gen_Unit) then
2577 if Is_Compilation_Unit (Gen_Unit)
2578 and then Is_Child_Unit (Current_Scope)
2579 then
2580 -- Special-case the error when the formal is a parent, and
2581 -- continue analysis to minimize cascaded errors.
2582
2583 Error_Msg_N
2584 ("generic parent cannot be used as formal package "
2585 & "of a child unit", Gen_Id);
2586
2587 else
2588 Error_Msg_N
2589 ("generic package cannot be used as a formal package "
2590 & "within itself", Gen_Id);
2591 Restore_Env;
2592 goto Leave;
2593 end if;
2594 end if;
2595
2596 -- Check that name of formal package does not hide name of generic,
2597 -- or its leading prefix. This check must be done separately because
2598 -- the name of the generic has already been analyzed.
2599
2600 declare
2601 Gen_Name : Entity_Id;
2602
2603 begin
2604 Gen_Name := Gen_Id;
2605 while Nkind (Gen_Name) = N_Expanded_Name loop
2606 Gen_Name := Prefix (Gen_Name);
2607 end loop;
2608
2609 if Chars (Gen_Name) = Chars (Pack_Id) then
2610 Error_Msg_NE
2611 ("& is hidden within declaration of formal package",
2612 Gen_Id, Gen_Name);
2613 end if;
2614 end;
2615
2616 if Box_Present (N)
2617 or else No (Generic_Associations (N))
2618 or else Nkind (First (Generic_Associations (N))) = N_Others_Choice
2619 then
2620 Associations := False;
2621 end if;
2622
2623 -- If there are no generic associations, the generic parameters appear
2624 -- as local entities and are instantiated like them. We copy the generic
2625 -- package declaration as if it were an instantiation, and analyze it
2626 -- like a regular package, except that we treat the formals as
2627 -- additional visible components.
2628
2629 Gen_Decl := Unit_Declaration_Node (Gen_Unit);
2630
2631 if In_Extended_Main_Source_Unit (N) then
2632 Set_Is_Instantiated (Gen_Unit);
2633 Generate_Reference (Gen_Unit, N);
2634 end if;
2635
2636 Formal := New_Copy (Pack_Id);
2637 Create_Instantiation_Source (N, Gen_Unit, False, S_Adjustment);
2638
2639 -- Make local generic without formals. The formals will be replaced with
2640 -- internal declarations.
2641
2642 begin
2643 New_N := Build_Local_Package;
2644
2645 -- If there are errors in the parameter list, Analyze_Associations
2646 -- raises Instantiation_Error. Patch the declaration to prevent further
2647 -- exception propagation.
2648
2649 exception
2650 when Instantiation_Error =>
2651 Enter_Name (Formal);
2652 Set_Ekind (Formal, E_Variable);
2653 Set_Etype (Formal, Any_Type);
2654 Restore_Hidden_Primitives (Vis_Prims_List);
2655
2656 if Parent_Installed then
2657 Remove_Parent;
2658 end if;
2659
2660 goto Leave;
2661 end;
2662
2663 Rewrite (N, New_N);
2664 Set_Defining_Unit_Name (Specification (New_N), Formal);
2665 Set_Generic_Parent (Specification (N), Gen_Unit);
2666 Set_Instance_Env (Gen_Unit, Formal);
2667 Set_Is_Generic_Instance (Formal);
2668
2669 Enter_Name (Formal);
2670 Set_Ekind (Formal, E_Package);
2671 Set_Etype (Formal, Standard_Void_Type);
2672 Set_Inner_Instances (Formal, New_Elmt_List);
2673 Push_Scope (Formal);
2674
2675 -- Manually set the SPARK_Mode from the context because the package
2676 -- declaration is never analyzed.
2677
2678 Set_SPARK_Pragma (Formal, SPARK_Mode_Pragma);
2679 Set_SPARK_Aux_Pragma (Formal, SPARK_Mode_Pragma);
2680 Set_SPARK_Pragma_Inherited (Formal);
2681 Set_SPARK_Aux_Pragma_Inherited (Formal);
2682
2683 if Is_Child_Unit (Gen_Unit) and then Parent_Installed then
2684
2685 -- Similarly, we have to make the name of the formal visible in the
2686 -- parent instance, to resolve properly fully qualified names that
2687 -- may appear in the generic unit. The parent instance has been
2688 -- placed on the scope stack ahead of the current scope.
2689
2690 Parent_Instance := Scope_Stack.Table (Scope_Stack.Last - 1).Entity;
2691
2692 Renaming_In_Par :=
2693 Make_Defining_Identifier (Loc, Chars (Gen_Unit));
2694 Set_Ekind (Renaming_In_Par, E_Package);
2695 Set_Etype (Renaming_In_Par, Standard_Void_Type);
2696 Set_Scope (Renaming_In_Par, Parent_Instance);
2697 Set_Parent (Renaming_In_Par, Parent (Formal));
2698 Set_Renamed_Object (Renaming_In_Par, Formal);
2699 Append_Entity (Renaming_In_Par, Parent_Instance);
2700 end if;
2701
2702 -- A formal package declaration behaves as a package instantiation with
2703 -- respect to SPARK_Mode "off". If the annotation is "off" or altogether
2704 -- missing, set the global flag which signals Analyze_Pragma to ingnore
2705 -- all SPARK_Mode pragmas within the generic_package_name.
2706
2707 if SPARK_Mode /= On then
2708 Ignore_Pragma_SPARK_Mode := True;
2709 end if;
2710
2711 Analyze (Specification (N));
2712
2713 -- The formals for which associations are provided are not visible
2714 -- outside of the formal package. The others are still declared by a
2715 -- formal parameter declaration.
2716
2717 -- If there are no associations, the only local entity to hide is the
2718 -- generated package renaming itself.
2719
2720 declare
2721 E : Entity_Id;
2722
2723 begin
2724 E := First_Entity (Formal);
2725 while Present (E) loop
2726 if Associations and then not Is_Generic_Formal (E) then
2727 Set_Is_Hidden (E);
2728 end if;
2729
2730 if Ekind (E) = E_Package and then Renamed_Entity (E) = Formal then
2731 Set_Is_Hidden (E);
2732 exit;
2733 end if;
2734
2735 Next_Entity (E);
2736 end loop;
2737 end;
2738
2739 End_Package_Scope (Formal);
2740 Restore_Hidden_Primitives (Vis_Prims_List);
2741
2742 if Parent_Installed then
2743 Remove_Parent;
2744 end if;
2745
2746 Restore_Env;
2747
2748 -- Inside the generic unit, the formal package is a regular package, but
2749 -- no body is needed for it. Note that after instantiation, the defining
2750 -- unit name we need is in the new tree and not in the original (see
2751 -- Package_Instantiation). A generic formal package is an instance, and
2752 -- can be used as an actual for an inner instance.
2753
2754 Set_Has_Completion (Formal, True);
2755
2756 -- Add semantic information to the original defining identifier for ASIS
2757 -- use.
2758
2759 Set_Ekind (Pack_Id, E_Package);
2760 Set_Etype (Pack_Id, Standard_Void_Type);
2761 Set_Scope (Pack_Id, Scope (Formal));
2762 Set_Has_Completion (Pack_Id, True);
2763
2764 <<Leave>>
2765 if Has_Aspects (N) then
2766 Analyze_Aspect_Specifications (N, Pack_Id);
2767 end if;
2768
2769 Ignore_Pragma_SPARK_Mode := Save_IPSM;
2770 end Analyze_Formal_Package_Declaration;
2771
2772 ---------------------------------
2773 -- Analyze_Formal_Private_Type --
2774 ---------------------------------
2775
2776 procedure Analyze_Formal_Private_Type
2777 (N : Node_Id;
2778 T : Entity_Id;
2779 Def : Node_Id)
2780 is
2781 begin
2782 New_Private_Type (N, T, Def);
2783
2784 -- Set the size to an arbitrary but legal value
2785
2786 Set_Size_Info (T, Standard_Integer);
2787 Set_RM_Size (T, RM_Size (Standard_Integer));
2788 end Analyze_Formal_Private_Type;
2789
2790 ------------------------------------
2791 -- Analyze_Formal_Incomplete_Type --
2792 ------------------------------------
2793
2794 procedure Analyze_Formal_Incomplete_Type
2795 (T : Entity_Id;
2796 Def : Node_Id)
2797 is
2798 begin
2799 Enter_Name (T);
2800 Set_Ekind (T, E_Incomplete_Type);
2801 Set_Etype (T, T);
2802 Set_Private_Dependents (T, New_Elmt_List);
2803
2804 if Tagged_Present (Def) then
2805 Set_Is_Tagged_Type (T);
2806 Make_Class_Wide_Type (T);
2807 Set_Direct_Primitive_Operations (T, New_Elmt_List);
2808 end if;
2809 end Analyze_Formal_Incomplete_Type;
2810
2811 ----------------------------------------
2812 -- Analyze_Formal_Signed_Integer_Type --
2813 ----------------------------------------
2814
2815 procedure Analyze_Formal_Signed_Integer_Type
2816 (T : Entity_Id;
2817 Def : Node_Id)
2818 is
2819 Base : constant Entity_Id :=
2820 New_Internal_Entity
2821 (E_Signed_Integer_Type,
2822 Current_Scope,
2823 Sloc (Defining_Identifier (Parent (Def))), 'G');
2824
2825 begin
2826 Enter_Name (T);
2827
2828 Set_Ekind (T, E_Signed_Integer_Subtype);
2829 Set_Etype (T, Base);
2830 Set_Size_Info (T, Standard_Integer);
2831 Set_RM_Size (T, RM_Size (Standard_Integer));
2832 Set_Scalar_Range (T, Scalar_Range (Standard_Integer));
2833 Set_Is_Constrained (T);
2834
2835 Set_Is_Generic_Type (Base);
2836 Set_Size_Info (Base, Standard_Integer);
2837 Set_RM_Size (Base, RM_Size (Standard_Integer));
2838 Set_Etype (Base, Base);
2839 Set_Scalar_Range (Base, Scalar_Range (Standard_Integer));
2840 Set_Parent (Base, Parent (Def));
2841 end Analyze_Formal_Signed_Integer_Type;
2842
2843 -------------------------------------------
2844 -- Analyze_Formal_Subprogram_Declaration --
2845 -------------------------------------------
2846
2847 procedure Analyze_Formal_Subprogram_Declaration (N : Node_Id) is
2848 Spec : constant Node_Id := Specification (N);
2849 Def : constant Node_Id := Default_Name (N);
2850 Nam : constant Entity_Id := Defining_Unit_Name (Spec);
2851 Subp : Entity_Id;
2852
2853 begin
2854 if Nam = Error then
2855 return;
2856 end if;
2857
2858 if Nkind (Nam) = N_Defining_Program_Unit_Name then
2859 Error_Msg_N ("name of formal subprogram must be a direct name", Nam);
2860 goto Leave;
2861 end if;
2862
2863 Analyze_Subprogram_Declaration (N);
2864 Set_Is_Formal_Subprogram (Nam);
2865 Set_Has_Completion (Nam);
2866
2867 if Nkind (N) = N_Formal_Abstract_Subprogram_Declaration then
2868 Set_Is_Abstract_Subprogram (Nam);
2869
2870 Set_Is_Dispatching_Operation (Nam);
2871
2872 -- A formal abstract procedure cannot have a null default
2873 -- (RM 12.6(4.1/2)).
2874
2875 if Nkind (Spec) = N_Procedure_Specification
2876 and then Null_Present (Spec)
2877 then
2878 Error_Msg_N
2879 ("a formal abstract subprogram cannot default to null", Spec);
2880 end if;
2881
2882 declare
2883 Ctrl_Type : constant Entity_Id := Find_Dispatching_Type (Nam);
2884 begin
2885 if No (Ctrl_Type) then
2886 Error_Msg_N
2887 ("abstract formal subprogram must have a controlling type",
2888 N);
2889
2890 elsif Ada_Version >= Ada_2012
2891 and then Is_Incomplete_Type (Ctrl_Type)
2892 then
2893 Error_Msg_NE
2894 ("controlling type of abstract formal subprogram cannot "
2895 & "be incomplete type", N, Ctrl_Type);
2896
2897 else
2898 Check_Controlling_Formals (Ctrl_Type, Nam);
2899 end if;
2900 end;
2901 end if;
2902
2903 -- Default name is resolved at the point of instantiation
2904
2905 if Box_Present (N) then
2906 null;
2907
2908 -- Else default is bound at the point of generic declaration
2909
2910 elsif Present (Def) then
2911 if Nkind (Def) = N_Operator_Symbol then
2912 Find_Direct_Name (Def);
2913
2914 elsif Nkind (Def) /= N_Attribute_Reference then
2915 Analyze (Def);
2916
2917 else
2918 -- For an attribute reference, analyze the prefix and verify
2919 -- that it has the proper profile for the subprogram.
2920
2921 Analyze (Prefix (Def));
2922 Valid_Default_Attribute (Nam, Def);
2923 goto Leave;
2924 end if;
2925
2926 -- Default name may be overloaded, in which case the interpretation
2927 -- with the correct profile must be selected, as for a renaming.
2928 -- If the definition is an indexed component, it must denote a
2929 -- member of an entry family. If it is a selected component, it
2930 -- can be a protected operation.
2931
2932 if Etype (Def) = Any_Type then
2933 goto Leave;
2934
2935 elsif Nkind (Def) = N_Selected_Component then
2936 if not Is_Overloadable (Entity (Selector_Name (Def))) then
2937 Error_Msg_N ("expect valid subprogram name as default", Def);
2938 end if;
2939
2940 elsif Nkind (Def) = N_Indexed_Component then
2941 if Is_Entity_Name (Prefix (Def)) then
2942 if Ekind (Entity (Prefix (Def))) /= E_Entry_Family then
2943 Error_Msg_N ("expect valid subprogram name as default", Def);
2944 end if;
2945
2946 elsif Nkind (Prefix (Def)) = N_Selected_Component then
2947 if Ekind (Entity (Selector_Name (Prefix (Def)))) /=
2948 E_Entry_Family
2949 then
2950 Error_Msg_N ("expect valid subprogram name as default", Def);
2951 end if;
2952
2953 else
2954 Error_Msg_N ("expect valid subprogram name as default", Def);
2955 goto Leave;
2956 end if;
2957
2958 elsif Nkind (Def) = N_Character_Literal then
2959
2960 -- Needs some type checks: subprogram should be parameterless???
2961
2962 Resolve (Def, (Etype (Nam)));
2963
2964 elsif not Is_Entity_Name (Def)
2965 or else not Is_Overloadable (Entity (Def))
2966 then
2967 Error_Msg_N ("expect valid subprogram name as default", Def);
2968 goto Leave;
2969
2970 elsif not Is_Overloaded (Def) then
2971 Subp := Entity (Def);
2972
2973 if Subp = Nam then
2974 Error_Msg_N ("premature usage of formal subprogram", Def);
2975
2976 elsif not Entity_Matches_Spec (Subp, Nam) then
2977 Error_Msg_N ("no visible entity matches specification", Def);
2978 end if;
2979
2980 -- More than one interpretation, so disambiguate as for a renaming
2981
2982 else
2983 declare
2984 I : Interp_Index;
2985 I1 : Interp_Index := 0;
2986 It : Interp;
2987 It1 : Interp;
2988
2989 begin
2990 Subp := Any_Id;
2991 Get_First_Interp (Def, I, It);
2992 while Present (It.Nam) loop
2993 if Entity_Matches_Spec (It.Nam, Nam) then
2994 if Subp /= Any_Id then
2995 It1 := Disambiguate (Def, I1, I, Etype (Subp));
2996
2997 if It1 = No_Interp then
2998 Error_Msg_N ("ambiguous default subprogram", Def);
2999 else
3000 Subp := It1.Nam;
3001 end if;
3002
3003 exit;
3004
3005 else
3006 I1 := I;
3007 Subp := It.Nam;
3008 end if;
3009 end if;
3010
3011 Get_Next_Interp (I, It);
3012 end loop;
3013 end;
3014
3015 if Subp /= Any_Id then
3016
3017 -- Subprogram found, generate reference to it
3018
3019 Set_Entity (Def, Subp);
3020 Generate_Reference (Subp, Def);
3021
3022 if Subp = Nam then
3023 Error_Msg_N ("premature usage of formal subprogram", Def);
3024
3025 elsif Ekind (Subp) /= E_Operator then
3026 Check_Mode_Conformant (Subp, Nam);
3027 end if;
3028
3029 else
3030 Error_Msg_N ("no visible subprogram matches specification", N);
3031 end if;
3032 end if;
3033 end if;
3034
3035 <<Leave>>
3036 if Has_Aspects (N) then
3037 Analyze_Aspect_Specifications (N, Nam);
3038 end if;
3039
3040 end Analyze_Formal_Subprogram_Declaration;
3041
3042 -------------------------------------
3043 -- Analyze_Formal_Type_Declaration --
3044 -------------------------------------
3045
3046 procedure Analyze_Formal_Type_Declaration (N : Node_Id) is
3047 Def : constant Node_Id := Formal_Type_Definition (N);
3048 T : Entity_Id;
3049
3050 begin
3051 T := Defining_Identifier (N);
3052
3053 if Present (Discriminant_Specifications (N))
3054 and then Nkind (Def) /= N_Formal_Private_Type_Definition
3055 then
3056 Error_Msg_N
3057 ("discriminants not allowed for this formal type", T);
3058 end if;
3059
3060 -- Enter the new name, and branch to specific routine
3061
3062 case Nkind (Def) is
3063 when N_Formal_Private_Type_Definition =>
3064 Analyze_Formal_Private_Type (N, T, Def);
3065
3066 when N_Formal_Derived_Type_Definition =>
3067 Analyze_Formal_Derived_Type (N, T, Def);
3068
3069 when N_Formal_Incomplete_Type_Definition =>
3070 Analyze_Formal_Incomplete_Type (T, Def);
3071
3072 when N_Formal_Discrete_Type_Definition =>
3073 Analyze_Formal_Discrete_Type (T, Def);
3074
3075 when N_Formal_Signed_Integer_Type_Definition =>
3076 Analyze_Formal_Signed_Integer_Type (T, Def);
3077
3078 when N_Formal_Modular_Type_Definition =>
3079 Analyze_Formal_Modular_Type (T, Def);
3080
3081 when N_Formal_Floating_Point_Definition =>
3082 Analyze_Formal_Floating_Type (T, Def);
3083
3084 when N_Formal_Ordinary_Fixed_Point_Definition =>
3085 Analyze_Formal_Ordinary_Fixed_Point_Type (T, Def);
3086
3087 when N_Formal_Decimal_Fixed_Point_Definition =>
3088 Analyze_Formal_Decimal_Fixed_Point_Type (T, Def);
3089
3090 when N_Array_Type_Definition =>
3091 Analyze_Formal_Array_Type (T, Def);
3092
3093 when N_Access_To_Object_Definition |
3094 N_Access_Function_Definition |
3095 N_Access_Procedure_Definition =>
3096 Analyze_Generic_Access_Type (T, Def);
3097
3098 -- Ada 2005: a interface declaration is encoded as an abstract
3099 -- record declaration or a abstract type derivation.
3100
3101 when N_Record_Definition =>
3102 Analyze_Formal_Interface_Type (N, T, Def);
3103
3104 when N_Derived_Type_Definition =>
3105 Analyze_Formal_Derived_Interface_Type (N, T, Def);
3106
3107 when N_Error =>
3108 null;
3109
3110 when others =>
3111 raise Program_Error;
3112
3113 end case;
3114
3115 Set_Is_Generic_Type (T);
3116
3117 if Has_Aspects (N) then
3118 Analyze_Aspect_Specifications (N, T);
3119 end if;
3120 end Analyze_Formal_Type_Declaration;
3121
3122 ------------------------------------
3123 -- Analyze_Function_Instantiation --
3124 ------------------------------------
3125
3126 procedure Analyze_Function_Instantiation (N : Node_Id) is
3127 begin
3128 Analyze_Subprogram_Instantiation (N, E_Function);
3129 end Analyze_Function_Instantiation;
3130
3131 ---------------------------------
3132 -- Analyze_Generic_Access_Type --
3133 ---------------------------------
3134
3135 procedure Analyze_Generic_Access_Type (T : Entity_Id; Def : Node_Id) is
3136 begin
3137 Enter_Name (T);
3138
3139 if Nkind (Def) = N_Access_To_Object_Definition then
3140 Access_Type_Declaration (T, Def);
3141
3142 if Is_Incomplete_Or_Private_Type (Designated_Type (T))
3143 and then No (Full_View (Designated_Type (T)))
3144 and then not Is_Generic_Type (Designated_Type (T))
3145 then
3146 Error_Msg_N ("premature usage of incomplete type", Def);
3147
3148 elsif not Is_Entity_Name (Subtype_Indication (Def)) then
3149 Error_Msg_N
3150 ("only a subtype mark is allowed in a formal", Def);
3151 end if;
3152
3153 else
3154 Access_Subprogram_Declaration (T, Def);
3155 end if;
3156 end Analyze_Generic_Access_Type;
3157
3158 ---------------------------------
3159 -- Analyze_Generic_Formal_Part --
3160 ---------------------------------
3161
3162 procedure Analyze_Generic_Formal_Part (N : Node_Id) is
3163 Gen_Parm_Decl : Node_Id;
3164
3165 begin
3166 -- The generic formals are processed in the scope of the generic unit,
3167 -- where they are immediately visible. The scope is installed by the
3168 -- caller.
3169
3170 Gen_Parm_Decl := First (Generic_Formal_Declarations (N));
3171 while Present (Gen_Parm_Decl) loop
3172 Analyze (Gen_Parm_Decl);
3173 Next (Gen_Parm_Decl);
3174 end loop;
3175
3176 Generate_Reference_To_Generic_Formals (Current_Scope);
3177 end Analyze_Generic_Formal_Part;
3178
3179 ------------------------------------------
3180 -- Analyze_Generic_Package_Declaration --
3181 ------------------------------------------
3182
3183 procedure Analyze_Generic_Package_Declaration (N : Node_Id) is
3184 Loc : constant Source_Ptr := Sloc (N);
3185 Decls : constant List_Id :=
3186 Visible_Declarations (Specification (N));
3187 Decl : Node_Id;
3188 Id : Entity_Id;
3189 New_N : Node_Id;
3190 Renaming : Node_Id;
3191 Save_Parent : Node_Id;
3192
3193 begin
3194 Check_SPARK_05_Restriction ("generic is not allowed", N);
3195
3196 -- We introduce a renaming of the enclosing package, to have a usable
3197 -- entity as the prefix of an expanded name for a local entity of the
3198 -- form Par.P.Q, where P is the generic package. This is because a local
3199 -- entity named P may hide it, so that the usual visibility rules in
3200 -- the instance will not resolve properly.
3201
3202 Renaming :=
3203 Make_Package_Renaming_Declaration (Loc,
3204 Defining_Unit_Name =>
3205 Make_Defining_Identifier (Loc,
3206 Chars => New_External_Name (Chars (Defining_Entity (N)), "GH")),
3207 Name =>
3208 Make_Identifier (Loc, Chars (Defining_Entity (N))));
3209
3210 if Present (Decls) then
3211 Decl := First (Decls);
3212 while Present (Decl) and then Nkind (Decl) = N_Pragma loop
3213 Next (Decl);
3214 end loop;
3215
3216 if Present (Decl) then
3217 Insert_Before (Decl, Renaming);
3218 else
3219 Append (Renaming, Visible_Declarations (Specification (N)));
3220 end if;
3221
3222 else
3223 Set_Visible_Declarations (Specification (N), New_List (Renaming));
3224 end if;
3225
3226 -- Create copy of generic unit, and save for instantiation. If the unit
3227 -- is a child unit, do not copy the specifications for the parent, which
3228 -- are not part of the generic tree.
3229
3230 Save_Parent := Parent_Spec (N);
3231 Set_Parent_Spec (N, Empty);
3232
3233 New_N := Copy_Generic_Node (N, Empty, Instantiating => False);
3234 Set_Parent_Spec (New_N, Save_Parent);
3235 Rewrite (N, New_N);
3236
3237 -- Once the contents of the generic copy and the template are swapped,
3238 -- do the same for their respective aspect specifications.
3239
3240 Exchange_Aspects (N, New_N);
3241
3242 -- Collect all contract-related source pragmas found within the template
3243 -- and attach them to the contract of the package spec. This contract is
3244 -- used in the capture of global references within annotations.
3245
3246 Create_Generic_Contract (N);
3247
3248 Id := Defining_Entity (N);
3249 Generate_Definition (Id);
3250
3251 -- Expansion is not applied to generic units
3252
3253 Start_Generic;
3254
3255 Enter_Name (Id);
3256 Set_Ekind (Id, E_Generic_Package);
3257 Set_Etype (Id, Standard_Void_Type);
3258
3259 -- A generic package declared within a Ghost region is rendered Ghost
3260 -- (SPARK RM 6.9(2)).
3261
3262 if Ghost_Mode > None then
3263 Set_Is_Ghost_Entity (Id);
3264 end if;
3265
3266 -- Analyze aspects now, so that generated pragmas appear in the
3267 -- declarations before building and analyzing the generic copy.
3268
3269 if Has_Aspects (N) then
3270 Analyze_Aspect_Specifications (N, Id);
3271 end if;
3272
3273 Push_Scope (Id);
3274 Enter_Generic_Scope (Id);
3275 Set_Inner_Instances (Id, New_Elmt_List);
3276
3277 Set_Categorization_From_Pragmas (N);
3278 Set_Is_Pure (Id, Is_Pure (Current_Scope));
3279
3280 -- Link the declaration of the generic homonym in the generic copy to
3281 -- the package it renames, so that it is always resolved properly.
3282
3283 Set_Generic_Homonym (Id, Defining_Unit_Name (Renaming));
3284 Set_Entity (Associated_Node (Name (Renaming)), Id);
3285
3286 -- For a library unit, we have reconstructed the entity for the unit,
3287 -- and must reset it in the library tables.
3288
3289 if Nkind (Parent (N)) = N_Compilation_Unit then
3290 Set_Cunit_Entity (Current_Sem_Unit, Id);
3291 end if;
3292
3293 Analyze_Generic_Formal_Part (N);
3294
3295 -- After processing the generic formals, analysis proceeds as for a
3296 -- non-generic package.
3297
3298 Analyze (Specification (N));
3299
3300 Validate_Categorization_Dependency (N, Id);
3301
3302 End_Generic;
3303
3304 End_Package_Scope (Id);
3305 Exit_Generic_Scope (Id);
3306
3307 if Nkind (Parent (N)) /= N_Compilation_Unit then
3308 Move_Freeze_Nodes (Id, N, Visible_Declarations (Specification (N)));
3309 Move_Freeze_Nodes (Id, N, Private_Declarations (Specification (N)));
3310 Move_Freeze_Nodes (Id, N, Generic_Formal_Declarations (N));
3311
3312 else
3313 Set_Body_Required (Parent (N), Unit_Requires_Body (Id));
3314 Validate_RT_RAT_Component (N);
3315
3316 -- If this is a spec without a body, check that generic parameters
3317 -- are referenced.
3318
3319 if not Body_Required (Parent (N)) then
3320 Check_References (Id);
3321 end if;
3322 end if;
3323
3324 -- If there is a specified storage pool in the context, create an
3325 -- aspect on the package declaration, so that it is used in any
3326 -- instance that does not override it.
3327
3328 if Present (Default_Pool) then
3329 declare
3330 ASN : Node_Id;
3331
3332 begin
3333 ASN :=
3334 Make_Aspect_Specification (Loc,
3335 Identifier => Make_Identifier (Loc, Name_Default_Storage_Pool),
3336 Expression => New_Copy (Default_Pool));
3337
3338 if No (Aspect_Specifications (Specification (N))) then
3339 Set_Aspect_Specifications (Specification (N), New_List (ASN));
3340 else
3341 Append (ASN, Aspect_Specifications (Specification (N)));
3342 end if;
3343 end;
3344 end if;
3345 end Analyze_Generic_Package_Declaration;
3346
3347 --------------------------------------------
3348 -- Analyze_Generic_Subprogram_Declaration --
3349 --------------------------------------------
3350
3351 procedure Analyze_Generic_Subprogram_Declaration (N : Node_Id) is
3352 Formals : List_Id;
3353 Id : Entity_Id;
3354 New_N : Node_Id;
3355 Result_Type : Entity_Id;
3356 Save_Parent : Node_Id;
3357 Spec : Node_Id;
3358 Typ : Entity_Id;
3359
3360 begin
3361 Check_SPARK_05_Restriction ("generic is not allowed", N);
3362
3363 -- Create copy of generic unit, and save for instantiation. If the unit
3364 -- is a child unit, do not copy the specifications for the parent, which
3365 -- are not part of the generic tree.
3366
3367 Save_Parent := Parent_Spec (N);
3368 Set_Parent_Spec (N, Empty);
3369
3370 New_N := Copy_Generic_Node (N, Empty, Instantiating => False);
3371 Set_Parent_Spec (New_N, Save_Parent);
3372 Rewrite (N, New_N);
3373
3374 -- Once the contents of the generic copy and the template are swapped,
3375 -- do the same for their respective aspect specifications.
3376
3377 Exchange_Aspects (N, New_N);
3378
3379 -- Collect all contract-related source pragmas found within the template
3380 -- and attach them to the contract of the subprogram spec. This contract
3381 -- is used in the capture of global references within annotations.
3382
3383 Create_Generic_Contract (N);
3384
3385 Spec := Specification (N);
3386 Id := Defining_Entity (Spec);
3387 Generate_Definition (Id);
3388
3389 if Nkind (Id) = N_Defining_Operator_Symbol then
3390 Error_Msg_N
3391 ("operator symbol not allowed for generic subprogram", Id);
3392 end if;
3393
3394 Start_Generic;
3395
3396 Enter_Name (Id);
3397 Set_Scope_Depth_Value (Id, Scope_Depth (Current_Scope) + 1);
3398
3399 -- Analyze the aspects of the generic copy to ensure that all generated
3400 -- pragmas (if any) perform their semantic effects.
3401
3402 if Has_Aspects (N) then
3403 Analyze_Aspect_Specifications (N, Id);
3404 end if;
3405
3406 Push_Scope (Id);
3407 Enter_Generic_Scope (Id);
3408 Set_Inner_Instances (Id, New_Elmt_List);
3409 Set_Is_Pure (Id, Is_Pure (Current_Scope));
3410
3411 Analyze_Generic_Formal_Part (N);
3412
3413 Formals := Parameter_Specifications (Spec);
3414
3415 if Nkind (Spec) = N_Function_Specification then
3416 Set_Ekind (Id, E_Generic_Function);
3417 else
3418 Set_Ekind (Id, E_Generic_Procedure);
3419 end if;
3420
3421 if Present (Formals) then
3422 Process_Formals (Formals, Spec);
3423 end if;
3424
3425 if Nkind (Spec) = N_Function_Specification then
3426 if Nkind (Result_Definition (Spec)) = N_Access_Definition then
3427 Result_Type := Access_Definition (Spec, Result_Definition (Spec));
3428 Set_Etype (Id, Result_Type);
3429
3430 -- Check restriction imposed by AI05-073: a generic function
3431 -- cannot return an abstract type or an access to such.
3432
3433 -- This is a binding interpretation should it apply to earlier
3434 -- versions of Ada as well as Ada 2012???
3435
3436 if Is_Abstract_Type (Designated_Type (Result_Type))
3437 and then Ada_Version >= Ada_2012
3438 then
3439 Error_Msg_N
3440 ("generic function cannot have an access result "
3441 & "that designates an abstract type", Spec);
3442 end if;
3443
3444 else
3445 Find_Type (Result_Definition (Spec));
3446 Typ := Entity (Result_Definition (Spec));
3447
3448 if Is_Abstract_Type (Typ)
3449 and then Ada_Version >= Ada_2012
3450 then
3451 Error_Msg_N
3452 ("generic function cannot have abstract result type", Spec);
3453 end if;
3454
3455 -- If a null exclusion is imposed on the result type, then create
3456 -- a null-excluding itype (an access subtype) and use it as the
3457 -- function's Etype.
3458
3459 if Is_Access_Type (Typ)
3460 and then Null_Exclusion_Present (Spec)
3461 then
3462 Set_Etype (Id,
3463 Create_Null_Excluding_Itype
3464 (T => Typ,
3465 Related_Nod => Spec,
3466 Scope_Id => Defining_Unit_Name (Spec)));
3467 else
3468 Set_Etype (Id, Typ);
3469 end if;
3470 end if;
3471
3472 else
3473 Set_Etype (Id, Standard_Void_Type);
3474 end if;
3475
3476 -- A generic subprogram declared within a Ghost region is rendered Ghost
3477 -- (SPARK RM 6.9(2)).
3478
3479 if Ghost_Mode > None then
3480 Set_Is_Ghost_Entity (Id);
3481 end if;
3482
3483 -- For a library unit, we have reconstructed the entity for the unit,
3484 -- and must reset it in the library tables. We also make sure that
3485 -- Body_Required is set properly in the original compilation unit node.
3486
3487 if Nkind (Parent (N)) = N_Compilation_Unit then
3488 Set_Cunit_Entity (Current_Sem_Unit, Id);
3489 Set_Body_Required (Parent (N), Unit_Requires_Body (Id));
3490 end if;
3491
3492 Set_Categorization_From_Pragmas (N);
3493 Validate_Categorization_Dependency (N, Id);
3494
3495 -- Capture all global references that occur within the profile of the
3496 -- generic subprogram. Aspects are not part of this processing because
3497 -- they must be delayed. If processed now, Save_Global_References will
3498 -- destroy the Associated_Node links and prevent the capture of global
3499 -- references when the contract of the generic subprogram is analyzed.
3500
3501 Save_Global_References (Original_Node (N));
3502
3503 End_Generic;
3504 End_Scope;
3505 Exit_Generic_Scope (Id);
3506 Generate_Reference_To_Formals (Id);
3507
3508 List_Inherited_Pre_Post_Aspects (Id);
3509 end Analyze_Generic_Subprogram_Declaration;
3510
3511 -----------------------------------
3512 -- Analyze_Package_Instantiation --
3513 -----------------------------------
3514
3515 procedure Analyze_Package_Instantiation (N : Node_Id) is
3516 Loc : constant Source_Ptr := Sloc (N);
3517 Gen_Id : constant Node_Id := Name (N);
3518
3519 Act_Decl : Node_Id;
3520 Act_Decl_Name : Node_Id;
3521 Act_Decl_Id : Entity_Id;
3522 Act_Spec : Node_Id;
3523 Act_Tree : Node_Id;
3524
3525 Gen_Decl : Node_Id;
3526 Gen_Spec : Node_Id;
3527 Gen_Unit : Entity_Id;
3528
3529 Is_Actual_Pack : constant Boolean :=
3530 Is_Internal (Defining_Entity (N));
3531
3532 Env_Installed : Boolean := False;
3533 Parent_Installed : Boolean := False;
3534 Renaming_List : List_Id;
3535 Unit_Renaming : Node_Id;
3536 Needs_Body : Boolean;
3537 Inline_Now : Boolean := False;
3538 Has_Inline_Always : Boolean := False;
3539
3540 Save_IPSM : constant Boolean := Ignore_Pragma_SPARK_Mode;
3541 -- Save flag Ignore_Pragma_SPARK_Mode for restore on exit
3542
3543 Save_SM : constant SPARK_Mode_Type := SPARK_Mode;
3544 Save_SMP : constant Node_Id := SPARK_Mode_Pragma;
3545 -- Save the SPARK_Mode-related data for restore on exit
3546
3547 Save_Style_Check : constant Boolean := Style_Check;
3548 -- Save style check mode for restore on exit
3549
3550 procedure Delay_Descriptors (E : Entity_Id);
3551 -- Delay generation of subprogram descriptors for given entity
3552
3553 function Might_Inline_Subp return Boolean;
3554 -- If inlining is active and the generic contains inlined subprograms,
3555 -- we instantiate the body. This may cause superfluous instantiations,
3556 -- but it is simpler than detecting the need for the body at the point
3557 -- of inlining, when the context of the instance is not available.
3558
3559 -----------------------
3560 -- Delay_Descriptors --
3561 -----------------------
3562
3563 procedure Delay_Descriptors (E : Entity_Id) is
3564 begin
3565 if not Delay_Subprogram_Descriptors (E) then
3566 Set_Delay_Subprogram_Descriptors (E);
3567 Pending_Descriptor.Append (E);
3568 end if;
3569 end Delay_Descriptors;
3570
3571 -----------------------
3572 -- Might_Inline_Subp --
3573 -----------------------
3574
3575 function Might_Inline_Subp return Boolean is
3576 E : Entity_Id;
3577
3578 begin
3579 if not Inline_Processing_Required then
3580 return False;
3581
3582 else
3583 E := First_Entity (Gen_Unit);
3584 while Present (E) loop
3585 if Is_Subprogram (E) and then Is_Inlined (E) then
3586 -- Remember if there are any subprograms with Inline_Always
3587
3588 if Has_Pragma_Inline_Always (E) then
3589 Has_Inline_Always := True;
3590 end if;
3591
3592 return True;
3593 end if;
3594
3595 Next_Entity (E);
3596 end loop;
3597 end if;
3598
3599 return False;
3600 end Might_Inline_Subp;
3601
3602 -- Local declarations
3603
3604 Vis_Prims_List : Elist_Id := No_Elist;
3605 -- List of primitives made temporarily visible in the instantiation
3606 -- to match the visibility of the formal type
3607
3608 -- Start of processing for Analyze_Package_Instantiation
3609
3610 begin
3611 Check_SPARK_05_Restriction ("generic is not allowed", N);
3612
3613 -- Very first thing: check for Text_IO special unit in case we are
3614 -- instantiating one of the children of [[Wide_]Wide_]Text_IO.
3615
3616 Check_Text_IO_Special_Unit (Name (N));
3617
3618 -- Make node global for error reporting
3619
3620 Instantiation_Node := N;
3621
3622 -- Turn off style checking in instances. If the check is enabled on the
3623 -- generic unit, a warning in an instance would just be noise. If not
3624 -- enabled on the generic, then a warning in an instance is just wrong.
3625
3626 Style_Check := False;
3627
3628 -- Case of instantiation of a generic package
3629
3630 if Nkind (N) = N_Package_Instantiation then
3631 Act_Decl_Id := New_Copy (Defining_Entity (N));
3632 Set_Comes_From_Source (Act_Decl_Id, True);
3633
3634 if Nkind (Defining_Unit_Name (N)) = N_Defining_Program_Unit_Name then
3635 Act_Decl_Name :=
3636 Make_Defining_Program_Unit_Name (Loc,
3637 Name =>
3638 New_Copy_Tree (Name (Defining_Unit_Name (N))),
3639 Defining_Identifier => Act_Decl_Id);
3640 else
3641 Act_Decl_Name := Act_Decl_Id;
3642 end if;
3643
3644 -- Case of instantiation of a formal package
3645
3646 else
3647 Act_Decl_Id := Defining_Identifier (N);
3648 Act_Decl_Name := Act_Decl_Id;
3649 end if;
3650
3651 Generate_Definition (Act_Decl_Id);
3652 Set_Ekind (Act_Decl_Id, E_Package);
3653
3654 -- Initialize list of incomplete actuals before analysis
3655
3656 Set_Incomplete_Actuals (Act_Decl_Id, New_Elmt_List);
3657
3658 Preanalyze_Actuals (N, Act_Decl_Id);
3659
3660 Init_Env;
3661 Env_Installed := True;
3662
3663 -- Reset renaming map for formal types. The mapping is established
3664 -- when analyzing the generic associations, but some mappings are
3665 -- inherited from formal packages of parent units, and these are
3666 -- constructed when the parents are installed.
3667
3668 Generic_Renamings.Set_Last (0);
3669 Generic_Renamings_HTable.Reset;
3670
3671 Check_Generic_Child_Unit (Gen_Id, Parent_Installed);
3672 Gen_Unit := Entity (Gen_Id);
3673
3674 -- Verify that it is the name of a generic package
3675
3676 -- A visibility glitch: if the instance is a child unit and the generic
3677 -- is the generic unit of a parent instance (i.e. both the parent and
3678 -- the child units are instances of the same package) the name now
3679 -- denotes the renaming within the parent, not the intended generic
3680 -- unit. See if there is a homonym that is the desired generic. The
3681 -- renaming declaration must be visible inside the instance of the
3682 -- child, but not when analyzing the name in the instantiation itself.
3683
3684 if Ekind (Gen_Unit) = E_Package
3685 and then Present (Renamed_Entity (Gen_Unit))
3686 and then In_Open_Scopes (Renamed_Entity (Gen_Unit))
3687 and then Is_Generic_Instance (Renamed_Entity (Gen_Unit))
3688 and then Present (Homonym (Gen_Unit))
3689 then
3690 Gen_Unit := Homonym (Gen_Unit);
3691 end if;
3692
3693 if Etype (Gen_Unit) = Any_Type then
3694 Restore_Env;
3695 goto Leave;
3696
3697 elsif Ekind (Gen_Unit) /= E_Generic_Package then
3698
3699 -- Ada 2005 (AI-50217): Cannot use instance in limited with_clause
3700
3701 if From_Limited_With (Gen_Unit) then
3702 Error_Msg_N
3703 ("cannot instantiate a limited withed package", Gen_Id);
3704 else
3705 Error_Msg_NE
3706 ("& is not the name of a generic package", Gen_Id, Gen_Unit);
3707 end if;
3708
3709 Restore_Env;
3710 goto Leave;
3711 end if;
3712
3713 if In_Extended_Main_Source_Unit (N) then
3714 Set_Is_Instantiated (Gen_Unit);
3715 Generate_Reference (Gen_Unit, N);
3716
3717 if Present (Renamed_Object (Gen_Unit)) then
3718 Set_Is_Instantiated (Renamed_Object (Gen_Unit));
3719 Generate_Reference (Renamed_Object (Gen_Unit), N);
3720 end if;
3721 end if;
3722
3723 if Nkind (Gen_Id) = N_Identifier
3724 and then Chars (Gen_Unit) = Chars (Defining_Entity (N))
3725 then
3726 Error_Msg_NE
3727 ("& is hidden within declaration of instance", Gen_Id, Gen_Unit);
3728
3729 elsif Nkind (Gen_Id) = N_Expanded_Name
3730 and then Is_Child_Unit (Gen_Unit)
3731 and then Nkind (Prefix (Gen_Id)) = N_Identifier
3732 and then Chars (Act_Decl_Id) = Chars (Prefix (Gen_Id))
3733 then
3734 Error_Msg_N
3735 ("& is hidden within declaration of instance ", Prefix (Gen_Id));
3736 end if;
3737
3738 Set_Entity (Gen_Id, Gen_Unit);
3739
3740 -- If generic is a renaming, get original generic unit
3741
3742 if Present (Renamed_Object (Gen_Unit))
3743 and then Ekind (Renamed_Object (Gen_Unit)) = E_Generic_Package
3744 then
3745 Gen_Unit := Renamed_Object (Gen_Unit);
3746 end if;
3747
3748 -- Verify that there are no circular instantiations
3749
3750 if In_Open_Scopes (Gen_Unit) then
3751 Error_Msg_NE ("instantiation of & within itself", N, Gen_Unit);
3752 Restore_Env;
3753 goto Leave;
3754
3755 elsif Contains_Instance_Of (Gen_Unit, Current_Scope, Gen_Id) then
3756 Error_Msg_Node_2 := Current_Scope;
3757 Error_Msg_NE
3758 ("circular Instantiation: & instantiated in &!", N, Gen_Unit);
3759 Circularity_Detected := True;
3760 Restore_Env;
3761 goto Leave;
3762
3763 else
3764 -- If the context of the instance is subject to SPARK_Mode "off" or
3765 -- the annotation is altogether missing, set the global flag which
3766 -- signals Analyze_Pragma to ignore all SPARK_Mode pragmas within
3767 -- the instance.
3768
3769 if SPARK_Mode /= On then
3770 Ignore_Pragma_SPARK_Mode := True;
3771 end if;
3772
3773 Gen_Decl := Unit_Declaration_Node (Gen_Unit);
3774 Gen_Spec := Specification (Gen_Decl);
3775
3776 -- Initialize renamings map, for error checking, and the list that
3777 -- holds private entities whose views have changed between generic
3778 -- definition and instantiation. If this is the instance created to
3779 -- validate an actual package, the instantiation environment is that
3780 -- of the enclosing instance.
3781
3782 Create_Instantiation_Source (N, Gen_Unit, False, S_Adjustment);
3783
3784 -- Copy original generic tree, to produce text for instantiation
3785
3786 Act_Tree :=
3787 Copy_Generic_Node
3788 (Original_Node (Gen_Decl), Empty, Instantiating => True);
3789
3790 Act_Spec := Specification (Act_Tree);
3791
3792 -- If this is the instance created to validate an actual package,
3793 -- only the formals matter, do not examine the package spec itself.
3794
3795 if Is_Actual_Pack then
3796 Set_Visible_Declarations (Act_Spec, New_List);
3797 Set_Private_Declarations (Act_Spec, New_List);
3798 end if;
3799
3800 Renaming_List :=
3801 Analyze_Associations
3802 (I_Node => N,
3803 Formals => Generic_Formal_Declarations (Act_Tree),
3804 F_Copy => Generic_Formal_Declarations (Gen_Decl));
3805
3806 Vis_Prims_List := Check_Hidden_Primitives (Renaming_List);
3807
3808 Set_Instance_Env (Gen_Unit, Act_Decl_Id);
3809 Set_Defining_Unit_Name (Act_Spec, Act_Decl_Name);
3810 Set_Is_Generic_Instance (Act_Decl_Id);
3811 Set_Generic_Parent (Act_Spec, Gen_Unit);
3812
3813 -- References to the generic in its own declaration or its body are
3814 -- references to the instance. Add a renaming declaration for the
3815 -- generic unit itself. This declaration, as well as the renaming
3816 -- declarations for the generic formals, must remain private to the
3817 -- unit: the formals, because this is the language semantics, and
3818 -- the unit because its use is an artifact of the implementation.
3819
3820 Unit_Renaming :=
3821 Make_Package_Renaming_Declaration (Loc,
3822 Defining_Unit_Name =>
3823 Make_Defining_Identifier (Loc, Chars (Gen_Unit)),
3824 Name => New_Occurrence_Of (Act_Decl_Id, Loc));
3825
3826 Append (Unit_Renaming, Renaming_List);
3827
3828 -- The renaming declarations are the first local declarations of the
3829 -- new unit.
3830
3831 if Is_Non_Empty_List (Visible_Declarations (Act_Spec)) then
3832 Insert_List_Before
3833 (First (Visible_Declarations (Act_Spec)), Renaming_List);
3834 else
3835 Set_Visible_Declarations (Act_Spec, Renaming_List);
3836 end if;
3837
3838 Act_Decl := Make_Package_Declaration (Loc, Specification => Act_Spec);
3839
3840 -- Propagate the aspect specifications from the package declaration
3841 -- template to the instantiated version of the package declaration.
3842
3843 if Has_Aspects (Act_Tree) then
3844 Set_Aspect_Specifications (Act_Decl,
3845 New_Copy_List_Tree (Aspect_Specifications (Act_Tree)));
3846 end if;
3847
3848 -- The generic may have a generated Default_Storage_Pool aspect,
3849 -- set at the point of generic declaration. If the instance has
3850 -- that aspect, it overrides the one inherited from the generic.
3851
3852 if Has_Aspects (Gen_Spec) then
3853 if No (Aspect_Specifications (N)) then
3854 Set_Aspect_Specifications (N,
3855 (New_Copy_List_Tree
3856 (Aspect_Specifications (Gen_Spec))));
3857
3858 else
3859 declare
3860 ASN1, ASN2 : Node_Id;
3861
3862 begin
3863 ASN1 := First (Aspect_Specifications (N));
3864 while Present (ASN1) loop
3865 if Chars (Identifier (ASN1)) = Name_Default_Storage_Pool
3866 then
3867 -- If generic carries a default storage pool, remove
3868 -- it in favor of the instance one.
3869
3870 ASN2 := First (Aspect_Specifications (Gen_Spec));
3871 while Present (ASN2) loop
3872 if Chars (Identifier (ASN2)) =
3873 Name_Default_Storage_Pool
3874 then
3875 Remove (ASN2);
3876 exit;
3877 end if;
3878
3879 Next (ASN2);
3880 end loop;
3881 end if;
3882
3883 Next (ASN1);
3884 end loop;
3885
3886 Prepend_List_To (Aspect_Specifications (N),
3887 (New_Copy_List_Tree
3888 (Aspect_Specifications (Gen_Spec))));
3889 end;
3890 end if;
3891 end if;
3892
3893 -- Save the instantiation node, for subsequent instantiation of the
3894 -- body, if there is one and we are generating code for the current
3895 -- unit. Mark unit as having a body (avoids premature error message).
3896
3897 -- We instantiate the body if we are generating code, if we are
3898 -- generating cross-reference information, or if we are building
3899 -- trees for ASIS use or GNATprove use.
3900
3901 declare
3902 Enclosing_Body_Present : Boolean := False;
3903 -- If the generic unit is not a compilation unit, then a body may
3904 -- be present in its parent even if none is required. We create a
3905 -- tentative pending instantiation for the body, which will be
3906 -- discarded if none is actually present.
3907
3908 Scop : Entity_Id;
3909
3910 begin
3911 if Scope (Gen_Unit) /= Standard_Standard
3912 and then not Is_Child_Unit (Gen_Unit)
3913 then
3914 Scop := Scope (Gen_Unit);
3915 while Present (Scop) and then Scop /= Standard_Standard loop
3916 if Unit_Requires_Body (Scop) then
3917 Enclosing_Body_Present := True;
3918 exit;
3919
3920 elsif In_Open_Scopes (Scop)
3921 and then In_Package_Body (Scop)
3922 then
3923 Enclosing_Body_Present := True;
3924 exit;
3925 end if;
3926
3927 exit when Is_Compilation_Unit (Scop);
3928 Scop := Scope (Scop);
3929 end loop;
3930 end if;
3931
3932 -- If front-end inlining is enabled or there are any subprograms
3933 -- marked with Inline_Always, and this is a unit for which code
3934 -- will be generated, we instantiate the body at once.
3935
3936 -- This is done if the instance is not the main unit, and if the
3937 -- generic is not a child unit of another generic, to avoid scope
3938 -- problems and the reinstallation of parent instances.
3939
3940 if Expander_Active
3941 and then (not Is_Child_Unit (Gen_Unit)
3942 or else not Is_Generic_Unit (Scope (Gen_Unit)))
3943 and then Might_Inline_Subp
3944 and then not Is_Actual_Pack
3945 then
3946 if not Back_End_Inlining
3947 and then (Front_End_Inlining or else Has_Inline_Always)
3948 and then (Is_In_Main_Unit (N)
3949 or else In_Main_Context (Current_Scope))
3950 and then Nkind (Parent (N)) /= N_Compilation_Unit
3951 then
3952 Inline_Now := True;
3953
3954 -- In configurable_run_time mode we force the inlining of
3955 -- predefined subprograms marked Inline_Always, to minimize
3956 -- the use of the run-time library.
3957
3958 elsif Is_Predefined_File_Name
3959 (Unit_File_Name (Get_Source_Unit (Gen_Decl)))
3960 and then Configurable_Run_Time_Mode
3961 and then Nkind (Parent (N)) /= N_Compilation_Unit
3962 then
3963 Inline_Now := True;
3964 end if;
3965
3966 -- If the current scope is itself an instance within a child
3967 -- unit, there will be duplications in the scope stack, and the
3968 -- unstacking mechanism in Inline_Instance_Body will fail.
3969 -- This loses some rare cases of optimization, and might be
3970 -- improved some day, if we can find a proper abstraction for
3971 -- "the complete compilation context" that can be saved and
3972 -- restored. ???
3973
3974 if Is_Generic_Instance (Current_Scope) then
3975 declare
3976 Curr_Unit : constant Entity_Id :=
3977 Cunit_Entity (Current_Sem_Unit);
3978 begin
3979 if Curr_Unit /= Current_Scope
3980 and then Is_Child_Unit (Curr_Unit)
3981 then
3982 Inline_Now := False;
3983 end if;
3984 end;
3985 end if;
3986 end if;
3987
3988 Needs_Body :=
3989 (Unit_Requires_Body (Gen_Unit)
3990 or else Enclosing_Body_Present
3991 or else Present (Corresponding_Body (Gen_Decl)))
3992 and then (Is_In_Main_Unit (N) or else Might_Inline_Subp)
3993 and then not Is_Actual_Pack
3994 and then not Inline_Now
3995 and then (Operating_Mode = Generate_Code
3996
3997 -- Need comment for this check ???
3998
3999 or else (Operating_Mode = Check_Semantics
4000 and then (ASIS_Mode or GNATprove_Mode)));
4001
4002 -- If front-end inlining is enabled or there are any subprograms
4003 -- marked with Inline_Always, do not instantiate body when within
4004 -- a generic context.
4005
4006 if ((Front_End_Inlining or else Has_Inline_Always)
4007 and then not Expander_Active)
4008 or else Is_Generic_Unit (Cunit_Entity (Main_Unit))
4009 then
4010 Needs_Body := False;
4011 end if;
4012
4013 -- If the current context is generic, and the package being
4014 -- instantiated is declared within a formal package, there is no
4015 -- body to instantiate until the enclosing generic is instantiated
4016 -- and there is an actual for the formal package. If the formal
4017 -- package has parameters, we build a regular package instance for
4018 -- it, that precedes the original formal package declaration.
4019
4020 if In_Open_Scopes (Scope (Scope (Gen_Unit))) then
4021 declare
4022 Decl : constant Node_Id :=
4023 Original_Node
4024 (Unit_Declaration_Node (Scope (Gen_Unit)));
4025 begin
4026 if Nkind (Decl) = N_Formal_Package_Declaration
4027 or else (Nkind (Decl) = N_Package_Declaration
4028 and then Is_List_Member (Decl)
4029 and then Present (Next (Decl))
4030 and then
4031 Nkind (Next (Decl)) =
4032 N_Formal_Package_Declaration)
4033 then
4034 Needs_Body := False;
4035 end if;
4036 end;
4037 end if;
4038 end;
4039
4040 -- For RCI unit calling stubs, we omit the instance body if the
4041 -- instance is the RCI library unit itself.
4042
4043 -- However there is a special case for nested instances: in this case
4044 -- we do generate the instance body, as it might be required, e.g.
4045 -- because it provides stream attributes for some type used in the
4046 -- profile of a remote subprogram. This is consistent with 12.3(12),
4047 -- which indicates that the instance body occurs at the place of the
4048 -- instantiation, and thus is part of the RCI declaration, which is
4049 -- present on all client partitions (this is E.2.3(18)).
4050
4051 -- Note that AI12-0002 may make it illegal at some point to have
4052 -- stream attributes defined in an RCI unit, in which case this
4053 -- special case will become unnecessary. In the meantime, there
4054 -- is known application code in production that depends on this
4055 -- being possible, so we definitely cannot eliminate the body in
4056 -- the case of nested instances for the time being.
4057
4058 -- When we generate a nested instance body, calling stubs for any
4059 -- relevant subprogram will be be inserted immediately after the
4060 -- subprogram declarations, and will take precedence over the
4061 -- subsequent (original) body. (The stub and original body will be
4062 -- complete homographs, but this is permitted in an instance).
4063 -- (Could we do better and remove the original body???)
4064
4065 if Distribution_Stub_Mode = Generate_Caller_Stub_Body
4066 and then Comes_From_Source (N)
4067 and then Nkind (Parent (N)) = N_Compilation_Unit
4068 then
4069 Needs_Body := False;
4070 end if;
4071
4072 if Needs_Body then
4073
4074 -- Here is a defence against a ludicrous number of instantiations
4075 -- caused by a circular set of instantiation attempts.
4076
4077 if Pending_Instantiations.Last > Maximum_Instantiations then
4078 Error_Msg_Uint_1 := UI_From_Int (Maximum_Instantiations);
4079 Error_Msg_N ("too many instantiations, exceeds max of^", N);
4080 Error_Msg_N ("\limit can be changed using -gnateinn switch", N);
4081 raise Unrecoverable_Error;
4082 end if;
4083
4084 -- Indicate that the enclosing scopes contain an instantiation,
4085 -- and that cleanup actions should be delayed until after the
4086 -- instance body is expanded.
4087
4088 Check_Forward_Instantiation (Gen_Decl);
4089 if Nkind (N) = N_Package_Instantiation then
4090 declare
4091 Enclosing_Master : Entity_Id;
4092
4093 begin
4094 -- Loop to search enclosing masters
4095
4096 Enclosing_Master := Current_Scope;
4097 Scope_Loop : while Enclosing_Master /= Standard_Standard loop
4098 if Ekind (Enclosing_Master) = E_Package then
4099 if Is_Compilation_Unit (Enclosing_Master) then
4100 if In_Package_Body (Enclosing_Master) then
4101 Delay_Descriptors
4102 (Body_Entity (Enclosing_Master));
4103 else
4104 Delay_Descriptors
4105 (Enclosing_Master);
4106 end if;
4107
4108 exit Scope_Loop;
4109
4110 else
4111 Enclosing_Master := Scope (Enclosing_Master);
4112 end if;
4113
4114 elsif Is_Generic_Unit (Enclosing_Master)
4115 or else Ekind (Enclosing_Master) = E_Void
4116 then
4117 -- Cleanup actions will eventually be performed on the
4118 -- enclosing subprogram or package instance, if any.
4119 -- Enclosing scope is void in the formal part of a
4120 -- generic subprogram.
4121
4122 exit Scope_Loop;
4123
4124 else
4125 if Ekind (Enclosing_Master) = E_Entry
4126 and then
4127 Ekind (Scope (Enclosing_Master)) = E_Protected_Type
4128 then
4129 if not Expander_Active then
4130 exit Scope_Loop;
4131 else
4132 Enclosing_Master :=
4133 Protected_Body_Subprogram (Enclosing_Master);
4134 end if;
4135 end if;
4136
4137 Set_Delay_Cleanups (Enclosing_Master);
4138
4139 while Ekind (Enclosing_Master) = E_Block loop
4140 Enclosing_Master := Scope (Enclosing_Master);
4141 end loop;
4142
4143 if Is_Subprogram (Enclosing_Master) then
4144 Delay_Descriptors (Enclosing_Master);
4145
4146 elsif Is_Task_Type (Enclosing_Master) then
4147 declare
4148 TBP : constant Node_Id :=
4149 Get_Task_Body_Procedure
4150 (Enclosing_Master);
4151 begin
4152 if Present (TBP) then
4153 Delay_Descriptors (TBP);
4154 Set_Delay_Cleanups (TBP);
4155 end if;
4156 end;
4157 end if;
4158
4159 exit Scope_Loop;
4160 end if;
4161 end loop Scope_Loop;
4162 end;
4163
4164 -- Make entry in table
4165
4166 Add_Pending_Instantiation (N, Act_Decl);
4167 end if;
4168 end if;
4169
4170 Set_Categorization_From_Pragmas (Act_Decl);
4171
4172 if Parent_Installed then
4173 Hide_Current_Scope;
4174 end if;
4175
4176 Set_Instance_Spec (N, Act_Decl);
4177
4178 -- If not a compilation unit, insert the package declaration before
4179 -- the original instantiation node.
4180
4181 if Nkind (Parent (N)) /= N_Compilation_Unit then
4182 Mark_Rewrite_Insertion (Act_Decl);
4183 Insert_Before (N, Act_Decl);
4184
4185 if Has_Aspects (N) then
4186 Analyze_Aspect_Specifications (N, Act_Decl_Id);
4187
4188 -- The pragma created for a Default_Storage_Pool aspect must
4189 -- appear ahead of the declarations in the instance spec.
4190 -- Analysis has placed it after the instance node, so remove
4191 -- it and reinsert it properly now.
4192
4193 declare
4194 ASN : constant Node_Id := First (Aspect_Specifications (N));
4195 A_Name : constant Name_Id := Chars (Identifier (ASN));
4196 Decl : Node_Id;
4197
4198 begin
4199 if A_Name = Name_Default_Storage_Pool then
4200 if No (Visible_Declarations (Act_Spec)) then
4201 Set_Visible_Declarations (Act_Spec, New_List);
4202 end if;
4203
4204 Decl := Next (N);
4205 while Present (Decl) loop
4206 if Nkind (Decl) = N_Pragma then
4207 Remove (Decl);
4208 Prepend (Decl, Visible_Declarations (Act_Spec));
4209 exit;
4210 end if;
4211
4212 Next (Decl);
4213 end loop;
4214 end if;
4215 end;
4216 end if;
4217
4218 Analyze (Act_Decl);
4219
4220 -- For an instantiation that is a compilation unit, place
4221 -- declaration on current node so context is complete for analysis
4222 -- (including nested instantiations). If this is the main unit,
4223 -- the declaration eventually replaces the instantiation node.
4224 -- If the instance body is created later, it replaces the
4225 -- instance node, and the declaration is attached to it
4226 -- (see Build_Instance_Compilation_Unit_Nodes).
4227
4228 else
4229 if Cunit_Entity (Current_Sem_Unit) = Defining_Entity (N) then
4230
4231 -- The entity for the current unit is the newly created one,
4232 -- and all semantic information is attached to it.
4233
4234 Set_Cunit_Entity (Current_Sem_Unit, Act_Decl_Id);
4235
4236 -- If this is the main unit, replace the main entity as well
4237
4238 if Current_Sem_Unit = Main_Unit then
4239 Main_Unit_Entity := Act_Decl_Id;
4240 end if;
4241 end if;
4242
4243 Set_Unit (Parent (N), Act_Decl);
4244 Set_Parent_Spec (Act_Decl, Parent_Spec (N));
4245 Set_Package_Instantiation (Act_Decl_Id, N);
4246
4247 -- Process aspect specifications of the instance node, if any, to
4248 -- take into account categorization pragmas before analyzing the
4249 -- instance.
4250
4251 if Has_Aspects (N) then
4252 Analyze_Aspect_Specifications (N, Act_Decl_Id);
4253 end if;
4254
4255 Analyze (Act_Decl);
4256 Set_Unit (Parent (N), N);
4257 Set_Body_Required (Parent (N), False);
4258
4259 -- We never need elaboration checks on instantiations, since by
4260 -- definition, the body instantiation is elaborated at the same
4261 -- time as the spec instantiation.
4262
4263 Set_Suppress_Elaboration_Warnings (Act_Decl_Id);
4264 Set_Kill_Elaboration_Checks (Act_Decl_Id);
4265 end if;
4266
4267 Check_Elab_Instantiation (N);
4268
4269 if ABE_Is_Certain (N) and then Needs_Body then
4270 Pending_Instantiations.Decrement_Last;
4271 end if;
4272
4273 Check_Hidden_Child_Unit (N, Gen_Unit, Act_Decl_Id);
4274
4275 Set_First_Private_Entity (Defining_Unit_Name (Unit_Renaming),
4276 First_Private_Entity (Act_Decl_Id));
4277
4278 -- If the instantiation will receive a body, the unit will be
4279 -- transformed into a package body, and receive its own elaboration
4280 -- entity. Otherwise, the nature of the unit is now a package
4281 -- declaration.
4282
4283 if Nkind (Parent (N)) = N_Compilation_Unit
4284 and then not Needs_Body
4285 then
4286 Rewrite (N, Act_Decl);
4287 end if;
4288
4289 if Present (Corresponding_Body (Gen_Decl))
4290 or else Unit_Requires_Body (Gen_Unit)
4291 then
4292 Set_Has_Completion (Act_Decl_Id);
4293 end if;
4294
4295 Check_Formal_Packages (Act_Decl_Id);
4296
4297 Restore_Hidden_Primitives (Vis_Prims_List);
4298 Restore_Private_Views (Act_Decl_Id);
4299
4300 Inherit_Context (Gen_Decl, N);
4301
4302 if Parent_Installed then
4303 Remove_Parent;
4304 end if;
4305
4306 Restore_Env;
4307 Env_Installed := False;
4308 end if;
4309
4310 Validate_Categorization_Dependency (N, Act_Decl_Id);
4311
4312 -- There used to be a check here to prevent instantiations in local
4313 -- contexts if the No_Local_Allocators restriction was active. This
4314 -- check was removed by a binding interpretation in AI-95-00130/07,
4315 -- but we retain the code for documentation purposes.
4316
4317 -- if Ekind (Act_Decl_Id) /= E_Void
4318 -- and then not Is_Library_Level_Entity (Act_Decl_Id)
4319 -- then
4320 -- Check_Restriction (No_Local_Allocators, N);
4321 -- end if;
4322
4323 if Inline_Now then
4324 Inline_Instance_Body (N, Gen_Unit, Act_Decl);
4325 end if;
4326
4327 -- The following is a tree patch for ASIS: ASIS needs separate nodes to
4328 -- be used as defining identifiers for a formal package and for the
4329 -- corresponding expanded package.
4330
4331 if Nkind (N) = N_Formal_Package_Declaration then
4332 Act_Decl_Id := New_Copy (Defining_Entity (N));
4333 Set_Comes_From_Source (Act_Decl_Id, True);
4334 Set_Is_Generic_Instance (Act_Decl_Id, False);
4335 Set_Defining_Identifier (N, Act_Decl_Id);
4336 end if;
4337
4338 Ignore_Pragma_SPARK_Mode := Save_IPSM;
4339 SPARK_Mode := Save_SM;
4340 SPARK_Mode_Pragma := Save_SMP;
4341 Style_Check := Save_Style_Check;
4342
4343 if SPARK_Mode = On then
4344 Dynamic_Elaboration_Checks := False;
4345 end if;
4346
4347 -- Check that if N is an instantiation of System.Dim_Float_IO or
4348 -- System.Dim_Integer_IO, the formal type has a dimension system.
4349
4350 if Nkind (N) = N_Package_Instantiation
4351 and then Is_Dim_IO_Package_Instantiation (N)
4352 then
4353 declare
4354 Assoc : constant Node_Id := First (Generic_Associations (N));
4355 begin
4356 if not Has_Dimension_System
4357 (Etype (Explicit_Generic_Actual_Parameter (Assoc)))
4358 then
4359 Error_Msg_N ("type with a dimension system expected", Assoc);
4360 end if;
4361 end;
4362 end if;
4363
4364 <<Leave>>
4365 if Has_Aspects (N) and then Nkind (Parent (N)) /= N_Compilation_Unit then
4366 Analyze_Aspect_Specifications (N, Act_Decl_Id);
4367 end if;
4368
4369 exception
4370 when Instantiation_Error =>
4371 if Parent_Installed then
4372 Remove_Parent;
4373 end if;
4374
4375 if Env_Installed then
4376 Restore_Env;
4377 end if;
4378
4379 Ignore_Pragma_SPARK_Mode := Save_IPSM;
4380 SPARK_Mode := Save_SM;
4381 SPARK_Mode_Pragma := Save_SMP;
4382 Style_Check := Save_Style_Check;
4383
4384 if SPARK_Mode = On then
4385 Dynamic_Elaboration_Checks := False;
4386 end if;
4387 end Analyze_Package_Instantiation;
4388
4389 --------------------------
4390 -- Inline_Instance_Body --
4391 --------------------------
4392
4393 procedure Inline_Instance_Body
4394 (N : Node_Id;
4395 Gen_Unit : Entity_Id;
4396 Act_Decl : Node_Id)
4397 is
4398 Curr_Comp : constant Node_Id := Cunit (Current_Sem_Unit);
4399 Curr_Unit : constant Entity_Id := Cunit_Entity (Current_Sem_Unit);
4400 Gen_Comp : constant Entity_Id :=
4401 Cunit_Entity (Get_Source_Unit (Gen_Unit));
4402
4403 Save_SM : constant SPARK_Mode_Type := SPARK_Mode;
4404 Save_SMP : constant Node_Id := SPARK_Mode_Pragma;
4405 -- Save all SPARK_Mode-related attributes as removing enclosing scopes
4406 -- to provide a clean environment for analysis of the inlined body will
4407 -- eliminate any previously set SPARK_Mode.
4408
4409 Scope_Stack_Depth : constant Pos :=
4410 Scope_Stack.Last - Scope_Stack.First + 1;
4411
4412 Use_Clauses : array (1 .. Scope_Stack_Depth) of Node_Id;
4413 Instances : array (1 .. Scope_Stack_Depth) of Entity_Id;
4414 Inner_Scopes : array (1 .. Scope_Stack_Depth) of Entity_Id;
4415 Curr_Scope : Entity_Id := Empty;
4416 List : Elist_Id;
4417 Num_Inner : Nat := 0;
4418 Num_Scopes : Nat := 0;
4419 N_Instances : Nat := 0;
4420 Removed : Boolean := False;
4421 S : Entity_Id;
4422 Vis : Boolean;
4423
4424 begin
4425 -- Case of generic unit defined in another unit. We must remove the
4426 -- complete context of the current unit to install that of the generic.
4427
4428 if Gen_Comp /= Cunit_Entity (Current_Sem_Unit) then
4429
4430 -- Add some comments for the following two loops ???
4431
4432 S := Current_Scope;
4433 while Present (S) and then S /= Standard_Standard loop
4434 loop
4435 Num_Scopes := Num_Scopes + 1;
4436
4437 Use_Clauses (Num_Scopes) :=
4438 (Scope_Stack.Table
4439 (Scope_Stack.Last - Num_Scopes + 1).
4440 First_Use_Clause);
4441 End_Use_Clauses (Use_Clauses (Num_Scopes));
4442
4443 exit when Scope_Stack.Last - Num_Scopes + 1 = Scope_Stack.First
4444 or else Scope_Stack.Table
4445 (Scope_Stack.Last - Num_Scopes).Entity = Scope (S);
4446 end loop;
4447
4448 exit when Is_Generic_Instance (S)
4449 and then (In_Package_Body (S)
4450 or else Ekind (S) = E_Procedure
4451 or else Ekind (S) = E_Function);
4452 S := Scope (S);
4453 end loop;
4454
4455 Vis := Is_Immediately_Visible (Gen_Comp);
4456
4457 -- Find and save all enclosing instances
4458
4459 S := Current_Scope;
4460
4461 while Present (S)
4462 and then S /= Standard_Standard
4463 loop
4464 if Is_Generic_Instance (S) then
4465 N_Instances := N_Instances + 1;
4466 Instances (N_Instances) := S;
4467
4468 exit when In_Package_Body (S);
4469 end if;
4470
4471 S := Scope (S);
4472 end loop;
4473
4474 -- Remove context of current compilation unit, unless we are within a
4475 -- nested package instantiation, in which case the context has been
4476 -- removed previously.
4477
4478 -- If current scope is the body of a child unit, remove context of
4479 -- spec as well. If an enclosing scope is an instance body, the
4480 -- context has already been removed, but the entities in the body
4481 -- must be made invisible as well.
4482
4483 S := Current_Scope;
4484 while Present (S) and then S /= Standard_Standard loop
4485 if Is_Generic_Instance (S)
4486 and then (In_Package_Body (S)
4487 or else Ekind_In (S, E_Procedure, E_Function))
4488 then
4489 -- We still have to remove the entities of the enclosing
4490 -- instance from direct visibility.
4491
4492 declare
4493 E : Entity_Id;
4494 begin
4495 E := First_Entity (S);
4496 while Present (E) loop
4497 Set_Is_Immediately_Visible (E, False);
4498 Next_Entity (E);
4499 end loop;
4500 end;
4501
4502 exit;
4503 end if;
4504
4505 if S = Curr_Unit
4506 or else (Ekind (Curr_Unit) = E_Package_Body
4507 and then S = Spec_Entity (Curr_Unit))
4508 or else (Ekind (Curr_Unit) = E_Subprogram_Body
4509 and then S = Corresponding_Spec
4510 (Unit_Declaration_Node (Curr_Unit)))
4511 then
4512 Removed := True;
4513
4514 -- Remove entities in current scopes from visibility, so that
4515 -- instance body is compiled in a clean environment.
4516
4517 List := Save_Scope_Stack (Handle_Use => False);
4518
4519 if Is_Child_Unit (S) then
4520
4521 -- Remove child unit from stack, as well as inner scopes.
4522 -- Removing the context of a child unit removes parent units
4523 -- as well.
4524
4525 while Current_Scope /= S loop
4526 Num_Inner := Num_Inner + 1;
4527 Inner_Scopes (Num_Inner) := Current_Scope;
4528 Pop_Scope;
4529 end loop;
4530
4531 Pop_Scope;
4532 Remove_Context (Curr_Comp);
4533 Curr_Scope := S;
4534
4535 else
4536 Remove_Context (Curr_Comp);
4537 end if;
4538
4539 if Ekind (Curr_Unit) = E_Package_Body then
4540 Remove_Context (Library_Unit (Curr_Comp));
4541 end if;
4542 end if;
4543
4544 S := Scope (S);
4545 end loop;
4546
4547 pragma Assert (Num_Inner < Num_Scopes);
4548
4549 -- The inlined package body must be analyzed with the SPARK_Mode of
4550 -- the enclosing context, otherwise the body may cause bogus errors
4551 -- if a configuration SPARK_Mode pragma in in effect.
4552
4553 Push_Scope (Standard_Standard);
4554 Scope_Stack.Table (Scope_Stack.Last).Is_Active_Stack_Base := True;
4555 Instantiate_Package_Body
4556 (Body_Info =>
4557 ((Inst_Node => N,
4558 Act_Decl => Act_Decl,
4559 Expander_Status => Expander_Active,
4560 Current_Sem_Unit => Current_Sem_Unit,
4561 Scope_Suppress => Scope_Suppress,
4562 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
4563 Version => Ada_Version,
4564 Version_Pragma => Ada_Version_Pragma,
4565 Warnings => Save_Warnings,
4566 SPARK_Mode => Save_SM,
4567 SPARK_Mode_Pragma => Save_SMP)),
4568 Inlined_Body => True);
4569
4570 Pop_Scope;
4571
4572 -- Restore context
4573
4574 Set_Is_Immediately_Visible (Gen_Comp, Vis);
4575
4576 -- Reset Generic_Instance flag so that use clauses can be installed
4577 -- in the proper order. (See Use_One_Package for effect of enclosing
4578 -- instances on processing of use clauses).
4579
4580 for J in 1 .. N_Instances loop
4581 Set_Is_Generic_Instance (Instances (J), False);
4582 end loop;
4583
4584 if Removed then
4585 Install_Context (Curr_Comp);
4586
4587 if Present (Curr_Scope)
4588 and then Is_Child_Unit (Curr_Scope)
4589 then
4590 Push_Scope (Curr_Scope);
4591 Set_Is_Immediately_Visible (Curr_Scope);
4592
4593 -- Finally, restore inner scopes as well
4594
4595 for J in reverse 1 .. Num_Inner loop
4596 Push_Scope (Inner_Scopes (J));
4597 end loop;
4598 end if;
4599
4600 Restore_Scope_Stack (List, Handle_Use => False);
4601
4602 if Present (Curr_Scope)
4603 and then
4604 (In_Private_Part (Curr_Scope)
4605 or else In_Package_Body (Curr_Scope))
4606 then
4607 -- Install private declaration of ancestor units, which are
4608 -- currently available. Restore_Scope_Stack and Install_Context
4609 -- only install the visible part of parents.
4610
4611 declare
4612 Par : Entity_Id;
4613 begin
4614 Par := Scope (Curr_Scope);
4615 while (Present (Par)) and then Par /= Standard_Standard loop
4616 Install_Private_Declarations (Par);
4617 Par := Scope (Par);
4618 end loop;
4619 end;
4620 end if;
4621 end if;
4622
4623 -- Restore use clauses. For a child unit, use clauses in the parents
4624 -- are restored when installing the context, so only those in inner
4625 -- scopes (and those local to the child unit itself) need to be
4626 -- installed explicitly.
4627
4628 if Is_Child_Unit (Curr_Unit) and then Removed then
4629 for J in reverse 1 .. Num_Inner + 1 loop
4630 Scope_Stack.Table (Scope_Stack.Last - J + 1).First_Use_Clause :=
4631 Use_Clauses (J);
4632 Install_Use_Clauses (Use_Clauses (J));
4633 end loop;
4634
4635 else
4636 for J in reverse 1 .. Num_Scopes loop
4637 Scope_Stack.Table (Scope_Stack.Last - J + 1).First_Use_Clause :=
4638 Use_Clauses (J);
4639 Install_Use_Clauses (Use_Clauses (J));
4640 end loop;
4641 end if;
4642
4643 -- Restore status of instances. If one of them is a body, make its
4644 -- local entities visible again.
4645
4646 declare
4647 E : Entity_Id;
4648 Inst : Entity_Id;
4649
4650 begin
4651 for J in 1 .. N_Instances loop
4652 Inst := Instances (J);
4653 Set_Is_Generic_Instance (Inst, True);
4654
4655 if In_Package_Body (Inst)
4656 or else Ekind_In (S, E_Procedure, E_Function)
4657 then
4658 E := First_Entity (Instances (J));
4659 while Present (E) loop
4660 Set_Is_Immediately_Visible (E);
4661 Next_Entity (E);
4662 end loop;
4663 end if;
4664 end loop;
4665 end;
4666
4667 -- If generic unit is in current unit, current context is correct. Note
4668 -- that the context is guaranteed to carry the correct SPARK_Mode as no
4669 -- enclosing scopes were removed.
4670
4671 else
4672 Instantiate_Package_Body
4673 (Body_Info =>
4674 ((Inst_Node => N,
4675 Act_Decl => Act_Decl,
4676 Expander_Status => Expander_Active,
4677 Current_Sem_Unit => Current_Sem_Unit,
4678 Scope_Suppress => Scope_Suppress,
4679 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
4680 Version => Ada_Version,
4681 Version_Pragma => Ada_Version_Pragma,
4682 Warnings => Save_Warnings,
4683 SPARK_Mode => SPARK_Mode,
4684 SPARK_Mode_Pragma => SPARK_Mode_Pragma)),
4685 Inlined_Body => True);
4686 end if;
4687 end Inline_Instance_Body;
4688
4689 -------------------------------------
4690 -- Analyze_Procedure_Instantiation --
4691 -------------------------------------
4692
4693 procedure Analyze_Procedure_Instantiation (N : Node_Id) is
4694 begin
4695 Analyze_Subprogram_Instantiation (N, E_Procedure);
4696 end Analyze_Procedure_Instantiation;
4697
4698 -----------------------------------
4699 -- Need_Subprogram_Instance_Body --
4700 -----------------------------------
4701
4702 function Need_Subprogram_Instance_Body
4703 (N : Node_Id;
4704 Subp : Entity_Id) return Boolean
4705 is
4706
4707 function Is_Inlined_Or_Child_Of_Inlined (E : Entity_Id) return Boolean;
4708 -- Return True if E is an inlined subprogram, an inlined renaming or a
4709 -- subprogram nested in an inlined subprogram. The inlining machinery
4710 -- totally disregards nested subprograms since it considers that they
4711 -- will always be compiled if the parent is (see Inline.Is_Nested).
4712
4713 ------------------------------------
4714 -- Is_Inlined_Or_Child_Of_Inlined --
4715 ------------------------------------
4716
4717 function Is_Inlined_Or_Child_Of_Inlined (E : Entity_Id) return Boolean is
4718 Scop : Entity_Id;
4719
4720 begin
4721 if Is_Inlined (E) or else Is_Inlined (Alias (E)) then
4722 return True;
4723 end if;
4724
4725 Scop := Scope (E);
4726 while Scop /= Standard_Standard loop
4727 if Ekind (Scop) in Subprogram_Kind and then Is_Inlined (Scop) then
4728 return True;
4729 end if;
4730
4731 Scop := Scope (Scop);
4732 end loop;
4733
4734 return False;
4735 end Is_Inlined_Or_Child_Of_Inlined;
4736
4737 begin
4738 -- Must be in the main unit or inlined (or child of inlined)
4739
4740 if (Is_In_Main_Unit (N) or else Is_Inlined_Or_Child_Of_Inlined (Subp))
4741
4742 -- Must be generating code or analyzing code in ASIS/GNATprove mode
4743
4744 and then (Operating_Mode = Generate_Code
4745 or else (Operating_Mode = Check_Semantics
4746 and then (ASIS_Mode or GNATprove_Mode)))
4747
4748 -- The body is needed when generating code (full expansion), in ASIS
4749 -- mode for other tools, and in GNATprove mode (special expansion) for
4750 -- formal verification of the body itself.
4751
4752 and then (Expander_Active or ASIS_Mode or GNATprove_Mode)
4753
4754 -- No point in inlining if ABE is inevitable
4755
4756 and then not ABE_Is_Certain (N)
4757
4758 -- Or if subprogram is eliminated
4759
4760 and then not Is_Eliminated (Subp)
4761 then
4762 Add_Pending_Instantiation (N, Unit_Declaration_Node (Subp));
4763 return True;
4764
4765 -- Here if not inlined, or we ignore the inlining
4766
4767 else
4768 return False;
4769 end if;
4770 end Need_Subprogram_Instance_Body;
4771
4772 --------------------------------------
4773 -- Analyze_Subprogram_Instantiation --
4774 --------------------------------------
4775
4776 procedure Analyze_Subprogram_Instantiation
4777 (N : Node_Id;
4778 K : Entity_Kind)
4779 is
4780 Loc : constant Source_Ptr := Sloc (N);
4781 Gen_Id : constant Node_Id := Name (N);
4782
4783 Anon_Id : constant Entity_Id :=
4784 Make_Defining_Identifier (Sloc (Defining_Entity (N)),
4785 Chars => New_External_Name
4786 (Chars (Defining_Entity (N)), 'R'));
4787
4788 Act_Decl_Id : Entity_Id;
4789 Act_Decl : Node_Id;
4790 Act_Spec : Node_Id;
4791 Act_Tree : Node_Id;
4792
4793 Env_Installed : Boolean := False;
4794 Gen_Unit : Entity_Id;
4795 Gen_Decl : Node_Id;
4796 Pack_Id : Entity_Id;
4797 Parent_Installed : Boolean := False;
4798
4799 Renaming_List : List_Id;
4800 -- The list of declarations that link formals and actuals of the
4801 -- instance. These are subtype declarations for formal types, and
4802 -- renaming declarations for other formals. The subprogram declaration
4803 -- for the instance is then appended to the list, and the last item on
4804 -- the list is the renaming declaration for the instance.
4805
4806 procedure Analyze_Instance_And_Renamings;
4807 -- The instance must be analyzed in a context that includes the mappings
4808 -- of generic parameters into actuals. We create a package declaration
4809 -- for this purpose, and a subprogram with an internal name within the
4810 -- package. The subprogram instance is simply an alias for the internal
4811 -- subprogram, declared in the current scope.
4812
4813 procedure Build_Subprogram_Renaming;
4814 -- If the subprogram is recursive, there are occurrences of the name of
4815 -- the generic within the body, which must resolve to the current
4816 -- instance. We add a renaming declaration after the declaration, which
4817 -- is available in the instance body, as well as in the analysis of
4818 -- aspects that appear in the generic. This renaming declaration is
4819 -- inserted after the instance declaration which it renames.
4820
4821 ------------------------------------
4822 -- Analyze_Instance_And_Renamings --
4823 ------------------------------------
4824
4825 procedure Analyze_Instance_And_Renamings is
4826 Def_Ent : constant Entity_Id := Defining_Entity (N);
4827 Pack_Decl : Node_Id;
4828
4829 begin
4830 if Nkind (Parent (N)) = N_Compilation_Unit then
4831
4832 -- For the case of a compilation unit, the container package has
4833 -- the same name as the instantiation, to insure that the binder
4834 -- calls the elaboration procedure with the right name. Copy the
4835 -- entity of the instance, which may have compilation level flags
4836 -- (e.g. Is_Child_Unit) set.
4837
4838 Pack_Id := New_Copy (Def_Ent);
4839
4840 else
4841 -- Otherwise we use the name of the instantiation concatenated
4842 -- with its source position to ensure uniqueness if there are
4843 -- several instantiations with the same name.
4844
4845 Pack_Id :=
4846 Make_Defining_Identifier (Loc,
4847 Chars => New_External_Name
4848 (Related_Id => Chars (Def_Ent),
4849 Suffix => "GP",
4850 Suffix_Index => Source_Offset (Sloc (Def_Ent))));
4851 end if;
4852
4853 Pack_Decl :=
4854 Make_Package_Declaration (Loc,
4855 Specification => Make_Package_Specification (Loc,
4856 Defining_Unit_Name => Pack_Id,
4857 Visible_Declarations => Renaming_List,
4858 End_Label => Empty));
4859
4860 Set_Instance_Spec (N, Pack_Decl);
4861 Set_Is_Generic_Instance (Pack_Id);
4862 Set_Debug_Info_Needed (Pack_Id);
4863
4864 -- Case of not a compilation unit
4865
4866 if Nkind (Parent (N)) /= N_Compilation_Unit then
4867 Mark_Rewrite_Insertion (Pack_Decl);
4868 Insert_Before (N, Pack_Decl);
4869 Set_Has_Completion (Pack_Id);
4870
4871 -- Case of an instantiation that is a compilation unit
4872
4873 -- Place declaration on current node so context is complete for
4874 -- analysis (including nested instantiations), and for use in a
4875 -- context_clause (see Analyze_With_Clause).
4876
4877 else
4878 Set_Unit (Parent (N), Pack_Decl);
4879 Set_Parent_Spec (Pack_Decl, Parent_Spec (N));
4880 end if;
4881
4882 Analyze (Pack_Decl);
4883 Check_Formal_Packages (Pack_Id);
4884 Set_Is_Generic_Instance (Pack_Id, False);
4885
4886 -- Why do we clear Is_Generic_Instance??? We set it 20 lines
4887 -- above???
4888
4889 -- Body of the enclosing package is supplied when instantiating the
4890 -- subprogram body, after semantic analysis is completed.
4891
4892 if Nkind (Parent (N)) = N_Compilation_Unit then
4893
4894 -- Remove package itself from visibility, so it does not
4895 -- conflict with subprogram.
4896
4897 Set_Name_Entity_Id (Chars (Pack_Id), Homonym (Pack_Id));
4898
4899 -- Set name and scope of internal subprogram so that the proper
4900 -- external name will be generated. The proper scope is the scope
4901 -- of the wrapper package. We need to generate debugging info for
4902 -- the internal subprogram, so set flag accordingly.
4903
4904 Set_Chars (Anon_Id, Chars (Defining_Entity (N)));
4905 Set_Scope (Anon_Id, Scope (Pack_Id));
4906
4907 -- Mark wrapper package as referenced, to avoid spurious warnings
4908 -- if the instantiation appears in various with_ clauses of
4909 -- subunits of the main unit.
4910
4911 Set_Referenced (Pack_Id);
4912 end if;
4913
4914 Set_Is_Generic_Instance (Anon_Id);
4915 Set_Debug_Info_Needed (Anon_Id);
4916 Act_Decl_Id := New_Copy (Anon_Id);
4917
4918 Set_Parent (Act_Decl_Id, Parent (Anon_Id));
4919 Set_Chars (Act_Decl_Id, Chars (Defining_Entity (N)));
4920 Set_Sloc (Act_Decl_Id, Sloc (Defining_Entity (N)));
4921
4922 -- Subprogram instance comes from source only if generic does
4923
4924 Set_Comes_From_Source (Act_Decl_Id, Comes_From_Source (Gen_Unit));
4925
4926 -- If the instance is a child unit, mark the Id accordingly. Mark
4927 -- the anonymous entity as well, which is the real subprogram and
4928 -- which is used when the instance appears in a context clause.
4929 -- Similarly, propagate the Is_Eliminated flag to handle properly
4930 -- nested eliminated subprograms.
4931
4932 Set_Is_Child_Unit (Act_Decl_Id, Is_Child_Unit (Defining_Entity (N)));
4933 Set_Is_Child_Unit (Anon_Id, Is_Child_Unit (Defining_Entity (N)));
4934 New_Overloaded_Entity (Act_Decl_Id);
4935 Check_Eliminated (Act_Decl_Id);
4936 Set_Is_Eliminated (Anon_Id, Is_Eliminated (Act_Decl_Id));
4937
4938 -- In compilation unit case, kill elaboration checks on the
4939 -- instantiation, since they are never needed -- the body is
4940 -- instantiated at the same point as the spec.
4941
4942 if Nkind (Parent (N)) = N_Compilation_Unit then
4943 Set_Suppress_Elaboration_Warnings (Act_Decl_Id);
4944 Set_Kill_Elaboration_Checks (Act_Decl_Id);
4945 Set_Is_Compilation_Unit (Anon_Id);
4946
4947 Set_Cunit_Entity (Current_Sem_Unit, Pack_Id);
4948 end if;
4949
4950 -- The instance is not a freezing point for the new subprogram
4951
4952 Set_Is_Frozen (Act_Decl_Id, False);
4953
4954 if Nkind (Defining_Entity (N)) = N_Defining_Operator_Symbol then
4955 Valid_Operator_Definition (Act_Decl_Id);
4956 end if;
4957
4958 Set_Alias (Act_Decl_Id, Anon_Id);
4959 Set_Parent (Act_Decl_Id, Parent (Anon_Id));
4960 Set_Has_Completion (Act_Decl_Id);
4961 Set_Related_Instance (Pack_Id, Act_Decl_Id);
4962
4963 if Nkind (Parent (N)) = N_Compilation_Unit then
4964 Set_Body_Required (Parent (N), False);
4965 end if;
4966 end Analyze_Instance_And_Renamings;
4967
4968 -------------------------------
4969 -- Build_Subprogram_Renaming --
4970 -------------------------------
4971
4972 procedure Build_Subprogram_Renaming is
4973 Renaming_Decl : Node_Id;
4974 Unit_Renaming : Node_Id;
4975
4976 begin
4977 Unit_Renaming :=
4978 Make_Subprogram_Renaming_Declaration (Loc,
4979 Specification =>
4980 Copy_Generic_Node
4981 (Specification (Original_Node (Gen_Decl)),
4982 Empty,
4983 Instantiating => True),
4984 Name => New_Occurrence_Of (Anon_Id, Loc));
4985
4986 -- The generic may be a a child unit. The renaming needs an
4987 -- identifier with the proper name.
4988
4989 Set_Defining_Unit_Name (Specification (Unit_Renaming),
4990 Make_Defining_Identifier (Loc, Chars (Gen_Unit)));
4991
4992 -- If there is a formal subprogram with the same name as the unit
4993 -- itself, do not add this renaming declaration, to prevent
4994 -- ambiguities when there is a call with that name in the body.
4995 -- This is a partial and ugly fix for one ACATS test. ???
4996
4997 Renaming_Decl := First (Renaming_List);
4998 while Present (Renaming_Decl) loop
4999 if Nkind (Renaming_Decl) = N_Subprogram_Renaming_Declaration
5000 and then
5001 Chars (Defining_Entity (Renaming_Decl)) = Chars (Gen_Unit)
5002 then
5003 exit;
5004 end if;
5005
5006 Next (Renaming_Decl);
5007 end loop;
5008
5009 if No (Renaming_Decl) then
5010 Append (Unit_Renaming, Renaming_List);
5011 end if;
5012 end Build_Subprogram_Renaming;
5013
5014 -- Local variables
5015
5016 Save_IPSM : constant Boolean := Ignore_Pragma_SPARK_Mode;
5017 -- Save flag Ignore_Pragma_SPARK_Mode for restore on exit
5018
5019 Save_SM : constant SPARK_Mode_Type := SPARK_Mode;
5020 Save_SMP : constant Node_Id := SPARK_Mode_Pragma;
5021 -- Save the SPARK_Mode-related data for restore on exit
5022
5023 Vis_Prims_List : Elist_Id := No_Elist;
5024 -- List of primitives made temporarily visible in the instantiation
5025 -- to match the visibility of the formal type
5026
5027 -- Start of processing for Analyze_Subprogram_Instantiation
5028
5029 begin
5030 Check_SPARK_05_Restriction ("generic is not allowed", N);
5031
5032 -- Very first thing: check for special Text_IO unit in case we are
5033 -- instantiating one of the children of [[Wide_]Wide_]Text_IO. Of course
5034 -- such an instantiation is bogus (these are packages, not subprograms),
5035 -- but we get a better error message if we do this.
5036
5037 Check_Text_IO_Special_Unit (Gen_Id);
5038
5039 -- Make node global for error reporting
5040
5041 Instantiation_Node := N;
5042
5043 -- For package instantiations we turn off style checks, because they
5044 -- will have been emitted in the generic. For subprogram instantiations
5045 -- we want to apply at least the check on overriding indicators so we
5046 -- do not modify the style check status.
5047
5048 -- The renaming declarations for the actuals do not come from source and
5049 -- will not generate spurious warnings.
5050
5051 Preanalyze_Actuals (N);
5052
5053 Init_Env;
5054 Env_Installed := True;
5055 Check_Generic_Child_Unit (Gen_Id, Parent_Installed);
5056 Gen_Unit := Entity (Gen_Id);
5057
5058 Generate_Reference (Gen_Unit, Gen_Id);
5059
5060 if Nkind (Gen_Id) = N_Identifier
5061 and then Chars (Gen_Unit) = Chars (Defining_Entity (N))
5062 then
5063 Error_Msg_NE
5064 ("& is hidden within declaration of instance", Gen_Id, Gen_Unit);
5065 end if;
5066
5067 if Etype (Gen_Unit) = Any_Type then
5068 Restore_Env;
5069 return;
5070 end if;
5071
5072 -- Verify that it is a generic subprogram of the right kind, and that
5073 -- it does not lead to a circular instantiation.
5074
5075 if K = E_Procedure and then Ekind (Gen_Unit) /= E_Generic_Procedure then
5076 Error_Msg_NE
5077 ("& is not the name of a generic procedure", Gen_Id, Gen_Unit);
5078
5079 elsif K = E_Function and then Ekind (Gen_Unit) /= E_Generic_Function then
5080 Error_Msg_NE
5081 ("& is not the name of a generic function", Gen_Id, Gen_Unit);
5082
5083 elsif In_Open_Scopes (Gen_Unit) then
5084 Error_Msg_NE ("instantiation of & within itself", N, Gen_Unit);
5085
5086 else
5087 -- If the context of the instance is subject to SPARK_Mode "off" or
5088 -- the annotation is altogether missing, set the global flag which
5089 -- signals Analyze_Pragma to ignore all SPARK_Mode pragmas within
5090 -- the instance.
5091
5092 if SPARK_Mode /= On then
5093 Ignore_Pragma_SPARK_Mode := True;
5094 end if;
5095
5096 Set_Entity (Gen_Id, Gen_Unit);
5097 Set_Is_Instantiated (Gen_Unit);
5098
5099 if In_Extended_Main_Source_Unit (N) then
5100 Generate_Reference (Gen_Unit, N);
5101 end if;
5102
5103 -- If renaming, get original unit
5104
5105 if Present (Renamed_Object (Gen_Unit))
5106 and then Ekind_In (Renamed_Object (Gen_Unit), E_Generic_Procedure,
5107 E_Generic_Function)
5108 then
5109 Gen_Unit := Renamed_Object (Gen_Unit);
5110 Set_Is_Instantiated (Gen_Unit);
5111 Generate_Reference (Gen_Unit, N);
5112 end if;
5113
5114 if Contains_Instance_Of (Gen_Unit, Current_Scope, Gen_Id) then
5115 Error_Msg_Node_2 := Current_Scope;
5116 Error_Msg_NE
5117 ("circular Instantiation: & instantiated in &!", N, Gen_Unit);
5118 Circularity_Detected := True;
5119 Restore_Hidden_Primitives (Vis_Prims_List);
5120 goto Leave;
5121 end if;
5122
5123 Gen_Decl := Unit_Declaration_Node (Gen_Unit);
5124
5125 -- Initialize renamings map, for error checking
5126
5127 Generic_Renamings.Set_Last (0);
5128 Generic_Renamings_HTable.Reset;
5129
5130 Create_Instantiation_Source (N, Gen_Unit, False, S_Adjustment);
5131
5132 -- Copy original generic tree, to produce text for instantiation
5133
5134 Act_Tree :=
5135 Copy_Generic_Node
5136 (Original_Node (Gen_Decl), Empty, Instantiating => True);
5137
5138 -- Inherit overriding indicator from instance node
5139
5140 Act_Spec := Specification (Act_Tree);
5141 Set_Must_Override (Act_Spec, Must_Override (N));
5142 Set_Must_Not_Override (Act_Spec, Must_Not_Override (N));
5143
5144 Renaming_List :=
5145 Analyze_Associations
5146 (I_Node => N,
5147 Formals => Generic_Formal_Declarations (Act_Tree),
5148 F_Copy => Generic_Formal_Declarations (Gen_Decl));
5149
5150 Vis_Prims_List := Check_Hidden_Primitives (Renaming_List);
5151
5152 -- The subprogram itself cannot contain a nested instance, so the
5153 -- current parent is left empty.
5154
5155 Set_Instance_Env (Gen_Unit, Empty);
5156
5157 -- Build the subprogram declaration, which does not appear in the
5158 -- generic template, and give it a sloc consistent with that of the
5159 -- template.
5160
5161 Set_Defining_Unit_Name (Act_Spec, Anon_Id);
5162 Set_Generic_Parent (Act_Spec, Gen_Unit);
5163 Act_Decl :=
5164 Make_Subprogram_Declaration (Sloc (Act_Spec),
5165 Specification => Act_Spec);
5166
5167 -- The aspects have been copied previously, but they have to be
5168 -- linked explicitly to the new subprogram declaration. Explicit
5169 -- pre/postconditions on the instance are analyzed below, in a
5170 -- separate step.
5171
5172 Move_Aspects (Act_Tree, To => Act_Decl);
5173 Set_Categorization_From_Pragmas (Act_Decl);
5174
5175 if Parent_Installed then
5176 Hide_Current_Scope;
5177 end if;
5178
5179 Append (Act_Decl, Renaming_List);
5180
5181 -- Contract-related source pragmas that follow a generic subprogram
5182 -- must be instantiated explicitly because they are not part of the
5183 -- subprogram template.
5184
5185 Instantiate_Subprogram_Contract
5186 (Original_Node (Gen_Decl), Renaming_List);
5187
5188 Build_Subprogram_Renaming;
5189 Analyze_Instance_And_Renamings;
5190
5191 -- If the generic is marked Import (Intrinsic), then so is the
5192 -- instance. This indicates that there is no body to instantiate. If
5193 -- generic is marked inline, so it the instance, and the anonymous
5194 -- subprogram it renames. If inlined, or else if inlining is enabled
5195 -- for the compilation, we generate the instance body even if it is
5196 -- not within the main unit.
5197
5198 if Is_Intrinsic_Subprogram (Gen_Unit) then
5199 Set_Is_Intrinsic_Subprogram (Anon_Id);
5200 Set_Is_Intrinsic_Subprogram (Act_Decl_Id);
5201
5202 if Chars (Gen_Unit) = Name_Unchecked_Conversion then
5203 Validate_Unchecked_Conversion (N, Act_Decl_Id);
5204 end if;
5205 end if;
5206
5207 -- Inherit convention from generic unit. Intrinsic convention, as for
5208 -- an instance of unchecked conversion, is not inherited because an
5209 -- explicit Ada instance has been created.
5210
5211 if Has_Convention_Pragma (Gen_Unit)
5212 and then Convention (Gen_Unit) /= Convention_Intrinsic
5213 then
5214 Set_Convention (Act_Decl_Id, Convention (Gen_Unit));
5215 Set_Is_Exported (Act_Decl_Id, Is_Exported (Gen_Unit));
5216 end if;
5217
5218 Generate_Definition (Act_Decl_Id);
5219
5220 -- Inherit all inlining-related flags which apply to the generic in
5221 -- the subprogram and its declaration.
5222
5223 Set_Is_Inlined (Act_Decl_Id, Is_Inlined (Gen_Unit));
5224 Set_Is_Inlined (Anon_Id, Is_Inlined (Gen_Unit));
5225
5226 Set_Has_Pragma_Inline (Act_Decl_Id, Has_Pragma_Inline (Gen_Unit));
5227 Set_Has_Pragma_Inline (Anon_Id, Has_Pragma_Inline (Gen_Unit));
5228
5229 Set_Has_Pragma_Inline_Always
5230 (Act_Decl_Id, Has_Pragma_Inline_Always (Gen_Unit));
5231 Set_Has_Pragma_Inline_Always
5232 (Anon_Id, Has_Pragma_Inline_Always (Gen_Unit));
5233
5234 if not Is_Intrinsic_Subprogram (Gen_Unit) then
5235 Check_Elab_Instantiation (N);
5236 end if;
5237
5238 if Is_Dispatching_Operation (Act_Decl_Id)
5239 and then Ada_Version >= Ada_2005
5240 then
5241 declare
5242 Formal : Entity_Id;
5243
5244 begin
5245 Formal := First_Formal (Act_Decl_Id);
5246 while Present (Formal) loop
5247 if Ekind (Etype (Formal)) = E_Anonymous_Access_Type
5248 and then Is_Controlling_Formal (Formal)
5249 and then not Can_Never_Be_Null (Formal)
5250 then
5251 Error_Msg_NE
5252 ("access parameter& is controlling,", N, Formal);
5253 Error_Msg_NE
5254 ("\corresponding parameter of & must be "
5255 & "explicitly null-excluding", N, Gen_Id);
5256 end if;
5257
5258 Next_Formal (Formal);
5259 end loop;
5260 end;
5261 end if;
5262
5263 Check_Hidden_Child_Unit (N, Gen_Unit, Act_Decl_Id);
5264
5265 Validate_Categorization_Dependency (N, Act_Decl_Id);
5266
5267 if not Is_Intrinsic_Subprogram (Act_Decl_Id) then
5268 Inherit_Context (Gen_Decl, N);
5269
5270 Restore_Private_Views (Pack_Id, False);
5271
5272 -- If the context requires a full instantiation, mark node for
5273 -- subsequent construction of the body.
5274
5275 if Need_Subprogram_Instance_Body (N, Act_Decl_Id) then
5276 Check_Forward_Instantiation (Gen_Decl);
5277
5278 -- The wrapper package is always delayed, because it does not
5279 -- constitute a freeze point, but to insure that the freeze node
5280 -- is placed properly, it is created directly when instantiating
5281 -- the body (otherwise the freeze node might appear to early for
5282 -- nested instantiations). For ASIS purposes, indicate that the
5283 -- wrapper package has replaced the instantiation node.
5284
5285 elsif Nkind (Parent (N)) = N_Compilation_Unit then
5286 Rewrite (N, Unit (Parent (N)));
5287 Set_Unit (Parent (N), N);
5288 end if;
5289
5290 -- Replace instance node for library-level instantiations of
5291 -- intrinsic subprograms, for ASIS use.
5292
5293 elsif Nkind (Parent (N)) = N_Compilation_Unit then
5294 Rewrite (N, Unit (Parent (N)));
5295 Set_Unit (Parent (N), N);
5296 end if;
5297
5298 if Parent_Installed then
5299 Remove_Parent;
5300 end if;
5301
5302 Restore_Hidden_Primitives (Vis_Prims_List);
5303 Restore_Env;
5304 Env_Installed := False;
5305 Generic_Renamings.Set_Last (0);
5306 Generic_Renamings_HTable.Reset;
5307
5308 Ignore_Pragma_SPARK_Mode := Save_IPSM;
5309 SPARK_Mode := Save_SM;
5310 SPARK_Mode_Pragma := Save_SMP;
5311
5312 if SPARK_Mode = On then
5313 Dynamic_Elaboration_Checks := False;
5314 end if;
5315 end if;
5316
5317 <<Leave>>
5318 if Has_Aspects (N) then
5319 Analyze_Aspect_Specifications (N, Act_Decl_Id);
5320 end if;
5321
5322 exception
5323 when Instantiation_Error =>
5324 if Parent_Installed then
5325 Remove_Parent;
5326 end if;
5327
5328 if Env_Installed then
5329 Restore_Env;
5330 end if;
5331
5332 Ignore_Pragma_SPARK_Mode := Save_IPSM;
5333 SPARK_Mode := Save_SM;
5334 SPARK_Mode_Pragma := Save_SMP;
5335
5336 if SPARK_Mode = On then
5337 Dynamic_Elaboration_Checks := False;
5338 end if;
5339 end Analyze_Subprogram_Instantiation;
5340
5341 -------------------------
5342 -- Get_Associated_Node --
5343 -------------------------
5344
5345 function Get_Associated_Node (N : Node_Id) return Node_Id is
5346 Assoc : Node_Id;
5347
5348 begin
5349 Assoc := Associated_Node (N);
5350
5351 if Nkind (Assoc) /= Nkind (N) then
5352 return Assoc;
5353
5354 elsif Nkind_In (Assoc, N_Aggregate, N_Extension_Aggregate) then
5355 return Assoc;
5356
5357 else
5358 -- If the node is part of an inner generic, it may itself have been
5359 -- remapped into a further generic copy. Associated_Node is otherwise
5360 -- used for the entity of the node, and will be of a different node
5361 -- kind, or else N has been rewritten as a literal or function call.
5362
5363 while Present (Associated_Node (Assoc))
5364 and then Nkind (Associated_Node (Assoc)) = Nkind (Assoc)
5365 loop
5366 Assoc := Associated_Node (Assoc);
5367 end loop;
5368
5369 -- Follow and additional link in case the final node was rewritten.
5370 -- This can only happen with nested generic units.
5371
5372 if (Nkind (Assoc) = N_Identifier or else Nkind (Assoc) in N_Op)
5373 and then Present (Associated_Node (Assoc))
5374 and then (Nkind_In (Associated_Node (Assoc), N_Function_Call,
5375 N_Explicit_Dereference,
5376 N_Integer_Literal,
5377 N_Real_Literal,
5378 N_String_Literal))
5379 then
5380 Assoc := Associated_Node (Assoc);
5381 end if;
5382
5383 -- An additional special case: an unconstrained type in an object
5384 -- declaration may have been rewritten as a local subtype constrained
5385 -- by the expression in the declaration. We need to recover the
5386 -- original entity which may be global.
5387
5388 if Present (Original_Node (Assoc))
5389 and then Nkind (Parent (N)) = N_Object_Declaration
5390 then
5391 Assoc := Original_Node (Assoc);
5392 end if;
5393
5394 return Assoc;
5395 end if;
5396 end Get_Associated_Node;
5397
5398 ----------------------------
5399 -- Build_Function_Wrapper --
5400 ----------------------------
5401
5402 function Build_Function_Wrapper
5403 (Formal_Subp : Entity_Id;
5404 Actual_Subp : Entity_Id) return Node_Id
5405 is
5406 Loc : constant Source_Ptr := Sloc (Current_Scope);
5407 Ret_Type : constant Entity_Id := Get_Instance_Of (Etype (Formal_Subp));
5408 Actuals : List_Id;
5409 Decl : Node_Id;
5410 Func_Name : Node_Id;
5411 Func : Entity_Id;
5412 Parm_Type : Node_Id;
5413 Profile : List_Id := New_List;
5414 Spec : Node_Id;
5415 Act_F : Entity_Id;
5416 Form_F : Entity_Id;
5417 New_F : Entity_Id;
5418
5419 begin
5420 Func_Name := New_Occurrence_Of (Actual_Subp, Loc);
5421
5422 Func := Make_Defining_Identifier (Loc, Chars (Formal_Subp));
5423 Set_Ekind (Func, E_Function);
5424 Set_Is_Generic_Actual_Subprogram (Func);
5425
5426 Actuals := New_List;
5427 Profile := New_List;
5428
5429 Act_F := First_Formal (Actual_Subp);
5430 Form_F := First_Formal (Formal_Subp);
5431 while Present (Form_F) loop
5432
5433 -- Create new formal for profile of wrapper, and add a reference
5434 -- to it in the list of actuals for the enclosing call. The name
5435 -- must be that of the formal in the formal subprogram, because
5436 -- calls to it in the generic body may use named associations.
5437
5438 New_F := Make_Defining_Identifier (Loc, Chars (Form_F));
5439
5440 Parm_Type :=
5441 New_Occurrence_Of (Get_Instance_Of (Etype (Form_F)), Loc);
5442
5443 Append_To (Profile,
5444 Make_Parameter_Specification (Loc,
5445 Defining_Identifier => New_F,
5446 Parameter_Type => Parm_Type));
5447
5448 Append_To (Actuals, New_Occurrence_Of (New_F, Loc));
5449 Next_Formal (Form_F);
5450
5451 if Present (Act_F) then
5452 Next_Formal (Act_F);
5453 end if;
5454 end loop;
5455
5456 Spec :=
5457 Make_Function_Specification (Loc,
5458 Defining_Unit_Name => Func,
5459 Parameter_Specifications => Profile,
5460 Result_Definition => New_Occurrence_Of (Ret_Type, Loc));
5461
5462 Decl :=
5463 Make_Expression_Function (Loc,
5464 Specification => Spec,
5465 Expression =>
5466 Make_Function_Call (Loc,
5467 Name => Func_Name,
5468 Parameter_Associations => Actuals));
5469
5470 return Decl;
5471 end Build_Function_Wrapper;
5472
5473 ----------------------------
5474 -- Build_Operator_Wrapper --
5475 ----------------------------
5476
5477 function Build_Operator_Wrapper
5478 (Formal_Subp : Entity_Id;
5479 Actual_Subp : Entity_Id) return Node_Id
5480 is
5481 Loc : constant Source_Ptr := Sloc (Current_Scope);
5482 Ret_Type : constant Entity_Id :=
5483 Get_Instance_Of (Etype (Formal_Subp));
5484 Op_Type : constant Entity_Id :=
5485 Get_Instance_Of (Etype (First_Formal (Formal_Subp)));
5486 Is_Binary : constant Boolean :=
5487 Present (Next_Formal (First_Formal (Formal_Subp)));
5488
5489 Decl : Node_Id;
5490 Expr : Node_Id;
5491 F1, F2 : Entity_Id;
5492 Func : Entity_Id;
5493 Op_Name : Name_Id;
5494 Spec : Node_Id;
5495 L, R : Node_Id;
5496
5497 begin
5498 Op_Name := Chars (Actual_Subp);
5499
5500 -- Create entities for wrapper function and its formals
5501
5502 F1 := Make_Temporary (Loc, 'A');
5503 F2 := Make_Temporary (Loc, 'B');
5504 L := New_Occurrence_Of (F1, Loc);
5505 R := New_Occurrence_Of (F2, Loc);
5506
5507 Func := Make_Defining_Identifier (Loc, Chars (Formal_Subp));
5508 Set_Ekind (Func, E_Function);
5509 Set_Is_Generic_Actual_Subprogram (Func);
5510
5511 Spec :=
5512 Make_Function_Specification (Loc,
5513 Defining_Unit_Name => Func,
5514 Parameter_Specifications => New_List (
5515 Make_Parameter_Specification (Loc,
5516 Defining_Identifier => F1,
5517 Parameter_Type => New_Occurrence_Of (Op_Type, Loc))),
5518 Result_Definition => New_Occurrence_Of (Ret_Type, Loc));
5519
5520 if Is_Binary then
5521 Append_To (Parameter_Specifications (Spec),
5522 Make_Parameter_Specification (Loc,
5523 Defining_Identifier => F2,
5524 Parameter_Type => New_Occurrence_Of (Op_Type, Loc)));
5525 end if;
5526
5527 -- Build expression as a function call, or as an operator node
5528 -- that corresponds to the name of the actual, starting with
5529 -- binary operators.
5530
5531 if Op_Name not in Any_Operator_Name then
5532 Expr :=
5533 Make_Function_Call (Loc,
5534 Name =>
5535 New_Occurrence_Of (Actual_Subp, Loc),
5536 Parameter_Associations => New_List (L));
5537
5538 if Is_Binary then
5539 Append_To (Parameter_Associations (Expr), R);
5540 end if;
5541
5542 -- Binary operators
5543
5544 elsif Is_Binary then
5545 if Op_Name = Name_Op_And then
5546 Expr := Make_Op_And (Loc, Left_Opnd => L, Right_Opnd => R);
5547 elsif Op_Name = Name_Op_Or then
5548 Expr := Make_Op_Or (Loc, Left_Opnd => L, Right_Opnd => R);
5549 elsif Op_Name = Name_Op_Xor then
5550 Expr := Make_Op_Xor (Loc, Left_Opnd => L, Right_Opnd => R);
5551 elsif Op_Name = Name_Op_Eq then
5552 Expr := Make_Op_Eq (Loc, Left_Opnd => L, Right_Opnd => R);
5553 elsif Op_Name = Name_Op_Ne then
5554 Expr := Make_Op_Ne (Loc, Left_Opnd => L, Right_Opnd => R);
5555 elsif Op_Name = Name_Op_Le then
5556 Expr := Make_Op_Le (Loc, Left_Opnd => L, Right_Opnd => R);
5557 elsif Op_Name = Name_Op_Gt then
5558 Expr := Make_Op_Gt (Loc, Left_Opnd => L, Right_Opnd => R);
5559 elsif Op_Name = Name_Op_Ge then
5560 Expr := Make_Op_Ge (Loc, Left_Opnd => L, Right_Opnd => R);
5561 elsif Op_Name = Name_Op_Lt then
5562 Expr := Make_Op_Lt (Loc, Left_Opnd => L, Right_Opnd => R);
5563 elsif Op_Name = Name_Op_Add then
5564 Expr := Make_Op_Add (Loc, Left_Opnd => L, Right_Opnd => R);
5565 elsif Op_Name = Name_Op_Subtract then
5566 Expr := Make_Op_Subtract (Loc, Left_Opnd => L, Right_Opnd => R);
5567 elsif Op_Name = Name_Op_Concat then
5568 Expr := Make_Op_Concat (Loc, Left_Opnd => L, Right_Opnd => R);
5569 elsif Op_Name = Name_Op_Multiply then
5570 Expr := Make_Op_Multiply (Loc, Left_Opnd => L, Right_Opnd => R);
5571 elsif Op_Name = Name_Op_Divide then
5572 Expr := Make_Op_Divide (Loc, Left_Opnd => L, Right_Opnd => R);
5573 elsif Op_Name = Name_Op_Mod then
5574 Expr := Make_Op_Mod (Loc, Left_Opnd => L, Right_Opnd => R);
5575 elsif Op_Name = Name_Op_Rem then
5576 Expr := Make_Op_Rem (Loc, Left_Opnd => L, Right_Opnd => R);
5577 elsif Op_Name = Name_Op_Expon then
5578 Expr := Make_Op_Expon (Loc, Left_Opnd => L, Right_Opnd => R);
5579 end if;
5580
5581 -- Unary operators
5582
5583 else
5584 if Op_Name = Name_Op_Add then
5585 Expr := Make_Op_Plus (Loc, Right_Opnd => L);
5586 elsif Op_Name = Name_Op_Subtract then
5587 Expr := Make_Op_Minus (Loc, Right_Opnd => L);
5588 elsif Op_Name = Name_Op_Abs then
5589 Expr := Make_Op_Abs (Loc, Right_Opnd => L);
5590 elsif Op_Name = Name_Op_Not then
5591 Expr := Make_Op_Not (Loc, Right_Opnd => L);
5592 end if;
5593 end if;
5594
5595 Decl :=
5596 Make_Expression_Function (Loc,
5597 Specification => Spec,
5598 Expression => Expr);
5599
5600 return Decl;
5601 end Build_Operator_Wrapper;
5602
5603 -------------------------------------------
5604 -- Build_Instance_Compilation_Unit_Nodes --
5605 -------------------------------------------
5606
5607 procedure Build_Instance_Compilation_Unit_Nodes
5608 (N : Node_Id;
5609 Act_Body : Node_Id;
5610 Act_Decl : Node_Id)
5611 is
5612 Decl_Cunit : Node_Id;
5613 Body_Cunit : Node_Id;
5614 Citem : Node_Id;
5615 New_Main : constant Entity_Id := Defining_Entity (Act_Decl);
5616 Old_Main : constant Entity_Id := Cunit_Entity (Main_Unit);
5617
5618 begin
5619 -- A new compilation unit node is built for the instance declaration
5620
5621 Decl_Cunit :=
5622 Make_Compilation_Unit (Sloc (N),
5623 Context_Items => Empty_List,
5624 Unit => Act_Decl,
5625 Aux_Decls_Node => Make_Compilation_Unit_Aux (Sloc (N)));
5626
5627 Set_Parent_Spec (Act_Decl, Parent_Spec (N));
5628
5629 -- The new compilation unit is linked to its body, but both share the
5630 -- same file, so we do not set Body_Required on the new unit so as not
5631 -- to create a spurious dependency on a non-existent body in the ali.
5632 -- This simplifies CodePeer unit traversal.
5633
5634 -- We use the original instantiation compilation unit as the resulting
5635 -- compilation unit of the instance, since this is the main unit.
5636
5637 Rewrite (N, Act_Body);
5638
5639 -- Propagate the aspect specifications from the package body template to
5640 -- the instantiated version of the package body.
5641
5642 if Has_Aspects (Act_Body) then
5643 Set_Aspect_Specifications
5644 (N, New_Copy_List_Tree (Aspect_Specifications (Act_Body)));
5645 end if;
5646
5647 Body_Cunit := Parent (N);
5648
5649 -- The two compilation unit nodes are linked by the Library_Unit field
5650
5651 Set_Library_Unit (Decl_Cunit, Body_Cunit);
5652 Set_Library_Unit (Body_Cunit, Decl_Cunit);
5653
5654 -- Preserve the private nature of the package if needed
5655
5656 Set_Private_Present (Decl_Cunit, Private_Present (Body_Cunit));
5657
5658 -- If the instance is not the main unit, its context, categorization
5659 -- and elaboration entity are not relevant to the compilation.
5660
5661 if Body_Cunit /= Cunit (Main_Unit) then
5662 Make_Instance_Unit (Body_Cunit, In_Main => False);
5663 return;
5664 end if;
5665
5666 -- The context clause items on the instantiation, which are now attached
5667 -- to the body compilation unit (since the body overwrote the original
5668 -- instantiation node), semantically belong on the spec, so copy them
5669 -- there. It's harmless to leave them on the body as well. In fact one
5670 -- could argue that they belong in both places.
5671
5672 Citem := First (Context_Items (Body_Cunit));
5673 while Present (Citem) loop
5674 Append (New_Copy (Citem), Context_Items (Decl_Cunit));
5675 Next (Citem);
5676 end loop;
5677
5678 -- Propagate categorization flags on packages, so that they appear in
5679 -- the ali file for the spec of the unit.
5680
5681 if Ekind (New_Main) = E_Package then
5682 Set_Is_Pure (Old_Main, Is_Pure (New_Main));
5683 Set_Is_Preelaborated (Old_Main, Is_Preelaborated (New_Main));
5684 Set_Is_Remote_Types (Old_Main, Is_Remote_Types (New_Main));
5685 Set_Is_Shared_Passive (Old_Main, Is_Shared_Passive (New_Main));
5686 Set_Is_Remote_Call_Interface
5687 (Old_Main, Is_Remote_Call_Interface (New_Main));
5688 end if;
5689
5690 -- Make entry in Units table, so that binder can generate call to
5691 -- elaboration procedure for body, if any.
5692
5693 Make_Instance_Unit (Body_Cunit, In_Main => True);
5694 Main_Unit_Entity := New_Main;
5695 Set_Cunit_Entity (Main_Unit, Main_Unit_Entity);
5696
5697 -- Build elaboration entity, since the instance may certainly generate
5698 -- elaboration code requiring a flag for protection.
5699
5700 Build_Elaboration_Entity (Decl_Cunit, New_Main);
5701 end Build_Instance_Compilation_Unit_Nodes;
5702
5703 -----------------------------
5704 -- Check_Access_Definition --
5705 -----------------------------
5706
5707 procedure Check_Access_Definition (N : Node_Id) is
5708 begin
5709 pragma Assert
5710 (Ada_Version >= Ada_2005 and then Present (Access_Definition (N)));
5711 null;
5712 end Check_Access_Definition;
5713
5714 -----------------------------------
5715 -- Check_Formal_Package_Instance --
5716 -----------------------------------
5717
5718 -- If the formal has specific parameters, they must match those of the
5719 -- actual. Both of them are instances, and the renaming declarations for
5720 -- their formal parameters appear in the same order in both. The analyzed
5721 -- formal has been analyzed in the context of the current instance.
5722
5723 procedure Check_Formal_Package_Instance
5724 (Formal_Pack : Entity_Id;
5725 Actual_Pack : Entity_Id)
5726 is
5727 E1 : Entity_Id := First_Entity (Actual_Pack);
5728 E2 : Entity_Id := First_Entity (Formal_Pack);
5729
5730 Expr1 : Node_Id;
5731 Expr2 : Node_Id;
5732
5733 procedure Check_Mismatch (B : Boolean);
5734 -- Common error routine for mismatch between the parameters of the
5735 -- actual instance and those of the formal package.
5736
5737 function Same_Instantiated_Constant (E1, E2 : Entity_Id) return Boolean;
5738 -- The formal may come from a nested formal package, and the actual may
5739 -- have been constant-folded. To determine whether the two denote the
5740 -- same entity we may have to traverse several definitions to recover
5741 -- the ultimate entity that they refer to.
5742
5743 function Same_Instantiated_Function (E1, E2 : Entity_Id) return Boolean;
5744 -- The formal and the actual must be identical, but if both are
5745 -- given by attributes they end up renaming different generated bodies,
5746 -- and we must verify that the attributes themselves match.
5747
5748 function Same_Instantiated_Variable (E1, E2 : Entity_Id) return Boolean;
5749 -- Similarly, if the formal comes from a nested formal package, the
5750 -- actual may designate the formal through multiple renamings, which
5751 -- have to be followed to determine the original variable in question.
5752
5753 --------------------
5754 -- Check_Mismatch --
5755 --------------------
5756
5757 procedure Check_Mismatch (B : Boolean) is
5758 Kind : constant Node_Kind := Nkind (Parent (E2));
5759
5760 begin
5761 if Kind = N_Formal_Type_Declaration then
5762 return;
5763
5764 elsif Nkind_In (Kind, N_Formal_Object_Declaration,
5765 N_Formal_Package_Declaration)
5766 or else Kind in N_Formal_Subprogram_Declaration
5767 then
5768 null;
5769
5770 -- Ada 2012: If both formal and actual are incomplete types they
5771 -- are conformant.
5772
5773 elsif Is_Incomplete_Type (E1) and then Is_Incomplete_Type (E2) then
5774 null;
5775
5776 elsif B then
5777 Error_Msg_NE
5778 ("actual for & in actual instance does not match formal",
5779 Parent (Actual_Pack), E1);
5780 end if;
5781 end Check_Mismatch;
5782
5783 --------------------------------
5784 -- Same_Instantiated_Constant --
5785 --------------------------------
5786
5787 function Same_Instantiated_Constant
5788 (E1, E2 : Entity_Id) return Boolean
5789 is
5790 Ent : Entity_Id;
5791
5792 begin
5793 Ent := E2;
5794 while Present (Ent) loop
5795 if E1 = Ent then
5796 return True;
5797
5798 elsif Ekind (Ent) /= E_Constant then
5799 return False;
5800
5801 elsif Is_Entity_Name (Constant_Value (Ent)) then
5802 if Entity (Constant_Value (Ent)) = E1 then
5803 return True;
5804 else
5805 Ent := Entity (Constant_Value (Ent));
5806 end if;
5807
5808 -- The actual may be a constant that has been folded. Recover
5809 -- original name.
5810
5811 elsif Is_Entity_Name (Original_Node (Constant_Value (Ent))) then
5812 Ent := Entity (Original_Node (Constant_Value (Ent)));
5813
5814 else
5815 return False;
5816 end if;
5817 end loop;
5818
5819 return False;
5820 end Same_Instantiated_Constant;
5821
5822 --------------------------------
5823 -- Same_Instantiated_Function --
5824 --------------------------------
5825
5826 function Same_Instantiated_Function
5827 (E1, E2 : Entity_Id) return Boolean
5828 is
5829 U1, U2 : Node_Id;
5830 begin
5831 if Alias (E1) = Alias (E2) then
5832 return True;
5833
5834 elsif Present (Alias (E2)) then
5835 U1 := Original_Node (Unit_Declaration_Node (E1));
5836 U2 := Original_Node (Unit_Declaration_Node (Alias (E2)));
5837
5838 return Nkind (U1) = N_Subprogram_Renaming_Declaration
5839 and then Nkind (Name (U1)) = N_Attribute_Reference
5840
5841 and then Nkind (U2) = N_Subprogram_Renaming_Declaration
5842 and then Nkind (Name (U2)) = N_Attribute_Reference
5843
5844 and then
5845 Attribute_Name (Name (U1)) = Attribute_Name (Name (U2));
5846 else
5847 return False;
5848 end if;
5849 end Same_Instantiated_Function;
5850
5851 --------------------------------
5852 -- Same_Instantiated_Variable --
5853 --------------------------------
5854
5855 function Same_Instantiated_Variable
5856 (E1, E2 : Entity_Id) return Boolean
5857 is
5858 function Original_Entity (E : Entity_Id) return Entity_Id;
5859 -- Follow chain of renamings to the ultimate ancestor
5860
5861 ---------------------
5862 -- Original_Entity --
5863 ---------------------
5864
5865 function Original_Entity (E : Entity_Id) return Entity_Id is
5866 Orig : Entity_Id;
5867
5868 begin
5869 Orig := E;
5870 while Nkind (Parent (Orig)) = N_Object_Renaming_Declaration
5871 and then Present (Renamed_Object (Orig))
5872 and then Is_Entity_Name (Renamed_Object (Orig))
5873 loop
5874 Orig := Entity (Renamed_Object (Orig));
5875 end loop;
5876
5877 return Orig;
5878 end Original_Entity;
5879
5880 -- Start of processing for Same_Instantiated_Variable
5881
5882 begin
5883 return Ekind (E1) = Ekind (E2)
5884 and then Original_Entity (E1) = Original_Entity (E2);
5885 end Same_Instantiated_Variable;
5886
5887 -- Start of processing for Check_Formal_Package_Instance
5888
5889 begin
5890 while Present (E1) and then Present (E2) loop
5891 exit when Ekind (E1) = E_Package
5892 and then Renamed_Entity (E1) = Renamed_Entity (Actual_Pack);
5893
5894 -- If the formal is the renaming of the formal package, this
5895 -- is the end of its formal part, which may occur before the
5896 -- end of the formal part in the actual in the presence of
5897 -- defaulted parameters in the formal package.
5898
5899 exit when Nkind (Parent (E2)) = N_Package_Renaming_Declaration
5900 and then Renamed_Entity (E2) = Scope (E2);
5901
5902 -- The analysis of the actual may generate additional internal
5903 -- entities. If the formal is defaulted, there is no corresponding
5904 -- analysis and the internal entities must be skipped, until we
5905 -- find corresponding entities again.
5906
5907 if Comes_From_Source (E2)
5908 and then not Comes_From_Source (E1)
5909 and then Chars (E1) /= Chars (E2)
5910 then
5911 while Present (E1) and then Chars (E1) /= Chars (E2) loop
5912 Next_Entity (E1);
5913 end loop;
5914 end if;
5915
5916 if No (E1) then
5917 return;
5918
5919 -- If the formal entity comes from a formal declaration, it was
5920 -- defaulted in the formal package, and no check is needed on it.
5921
5922 elsif Nkind (Parent (E2)) = N_Formal_Object_Declaration then
5923 goto Next_E;
5924
5925 -- Ditto for defaulted formal subprograms.
5926
5927 elsif Is_Overloadable (E1)
5928 and then Nkind (Unit_Declaration_Node (E2)) in
5929 N_Formal_Subprogram_Declaration
5930 then
5931 goto Next_E;
5932
5933 elsif Is_Type (E1) then
5934
5935 -- Subtypes must statically match. E1, E2 are the local entities
5936 -- that are subtypes of the actuals. Itypes generated for other
5937 -- parameters need not be checked, the check will be performed
5938 -- on the parameters themselves.
5939
5940 -- If E2 is a formal type declaration, it is a defaulted parameter
5941 -- and needs no checking.
5942
5943 if not Is_Itype (E1) and then not Is_Itype (E2) then
5944 Check_Mismatch
5945 (not Is_Type (E2)
5946 or else Etype (E1) /= Etype (E2)
5947 or else not Subtypes_Statically_Match (E1, E2));
5948 end if;
5949
5950 elsif Ekind (E1) = E_Constant then
5951
5952 -- IN parameters must denote the same static value, or the same
5953 -- constant, or the literal null.
5954
5955 Expr1 := Expression (Parent (E1));
5956
5957 if Ekind (E2) /= E_Constant then
5958 Check_Mismatch (True);
5959 goto Next_E;
5960 else
5961 Expr2 := Expression (Parent (E2));
5962 end if;
5963
5964 if Is_OK_Static_Expression (Expr1) then
5965 if not Is_OK_Static_Expression (Expr2) then
5966 Check_Mismatch (True);
5967
5968 elsif Is_Discrete_Type (Etype (E1)) then
5969 declare
5970 V1 : constant Uint := Expr_Value (Expr1);
5971 V2 : constant Uint := Expr_Value (Expr2);
5972 begin
5973 Check_Mismatch (V1 /= V2);
5974 end;
5975
5976 elsif Is_Real_Type (Etype (E1)) then
5977 declare
5978 V1 : constant Ureal := Expr_Value_R (Expr1);
5979 V2 : constant Ureal := Expr_Value_R (Expr2);
5980 begin
5981 Check_Mismatch (V1 /= V2);
5982 end;
5983
5984 elsif Is_String_Type (Etype (E1))
5985 and then Nkind (Expr1) = N_String_Literal
5986 then
5987 if Nkind (Expr2) /= N_String_Literal then
5988 Check_Mismatch (True);
5989 else
5990 Check_Mismatch
5991 (not String_Equal (Strval (Expr1), Strval (Expr2)));
5992 end if;
5993 end if;
5994
5995 elsif Is_Entity_Name (Expr1) then
5996 if Is_Entity_Name (Expr2) then
5997 if Entity (Expr1) = Entity (Expr2) then
5998 null;
5999 else
6000 Check_Mismatch
6001 (not Same_Instantiated_Constant
6002 (Entity (Expr1), Entity (Expr2)));
6003 end if;
6004
6005 else
6006 Check_Mismatch (True);
6007 end if;
6008
6009 elsif Is_Entity_Name (Original_Node (Expr1))
6010 and then Is_Entity_Name (Expr2)
6011 and then Same_Instantiated_Constant
6012 (Entity (Original_Node (Expr1)), Entity (Expr2))
6013 then
6014 null;
6015
6016 elsif Nkind (Expr1) = N_Null then
6017 Check_Mismatch (Nkind (Expr1) /= N_Null);
6018
6019 else
6020 Check_Mismatch (True);
6021 end if;
6022
6023 elsif Ekind (E1) = E_Variable then
6024 Check_Mismatch (not Same_Instantiated_Variable (E1, E2));
6025
6026 elsif Ekind (E1) = E_Package then
6027 Check_Mismatch
6028 (Ekind (E1) /= Ekind (E2)
6029 or else Renamed_Object (E1) /= Renamed_Object (E2));
6030
6031 elsif Is_Overloadable (E1) then
6032
6033 -- Verify that the actual subprograms match. Note that actuals
6034 -- that are attributes are rewritten as subprograms. If the
6035 -- subprogram in the formal package is defaulted, no check is
6036 -- needed. Note that this can only happen in Ada 2005 when the
6037 -- formal package can be partially parameterized.
6038
6039 if Nkind (Unit_Declaration_Node (E1)) =
6040 N_Subprogram_Renaming_Declaration
6041 and then From_Default (Unit_Declaration_Node (E1))
6042 then
6043 null;
6044
6045 -- If the formal package has an "others" box association that
6046 -- covers this formal, there is no need for a check either.
6047
6048 elsif Nkind (Unit_Declaration_Node (E2)) in
6049 N_Formal_Subprogram_Declaration
6050 and then Box_Present (Unit_Declaration_Node (E2))
6051 then
6052 null;
6053
6054 -- No check needed if subprogram is a defaulted null procedure
6055
6056 elsif No (Alias (E2))
6057 and then Ekind (E2) = E_Procedure
6058 and then
6059 Null_Present (Specification (Unit_Declaration_Node (E2)))
6060 then
6061 null;
6062
6063 -- Otherwise the actual in the formal and the actual in the
6064 -- instantiation of the formal must match, up to renamings.
6065
6066 else
6067 Check_Mismatch
6068 (Ekind (E2) /= Ekind (E1)
6069 or else not Same_Instantiated_Function (E1, E2));
6070 end if;
6071
6072 else
6073 raise Program_Error;
6074 end if;
6075
6076 <<Next_E>>
6077 Next_Entity (E1);
6078 Next_Entity (E2);
6079 end loop;
6080 end Check_Formal_Package_Instance;
6081
6082 ---------------------------
6083 -- Check_Formal_Packages --
6084 ---------------------------
6085
6086 procedure Check_Formal_Packages (P_Id : Entity_Id) is
6087 E : Entity_Id;
6088 Formal_P : Entity_Id;
6089 Formal_Decl : Node_Id;
6090
6091 begin
6092 -- Iterate through the declarations in the instance, looking for package
6093 -- renaming declarations that denote instances of formal packages. Stop
6094 -- when we find the renaming of the current package itself. The
6095 -- declaration for a formal package without a box is followed by an
6096 -- internal entity that repeats the instantiation.
6097
6098 E := First_Entity (P_Id);
6099 while Present (E) loop
6100 if Ekind (E) = E_Package then
6101 if Renamed_Object (E) = P_Id then
6102 exit;
6103
6104 elsif Nkind (Parent (E)) /= N_Package_Renaming_Declaration then
6105 null;
6106
6107 else
6108 Formal_Decl := Parent (Associated_Formal_Package (E));
6109
6110 -- Nothing to check if the formal has a box or an others_clause
6111 -- (necessarily with a box).
6112
6113 if Box_Present (Formal_Decl) then
6114 null;
6115
6116 elsif Nkind (First (Generic_Associations (Formal_Decl))) =
6117 N_Others_Choice
6118 then
6119 -- The internal validating package was generated but formal
6120 -- and instance are known to be compatible.
6121
6122 Formal_P := Next_Entity (E);
6123 Remove (Unit_Declaration_Node (Formal_P));
6124
6125 else
6126 Formal_P := Next_Entity (E);
6127 Check_Formal_Package_Instance (Formal_P, E);
6128
6129 -- After checking, remove the internal validating package.
6130 -- It is only needed for semantic checks, and as it may
6131 -- contain generic formal declarations it should not reach
6132 -- gigi.
6133
6134 Remove (Unit_Declaration_Node (Formal_P));
6135 end if;
6136 end if;
6137 end if;
6138
6139 Next_Entity (E);
6140 end loop;
6141 end Check_Formal_Packages;
6142
6143 ---------------------------------
6144 -- Check_Forward_Instantiation --
6145 ---------------------------------
6146
6147 procedure Check_Forward_Instantiation (Decl : Node_Id) is
6148 S : Entity_Id;
6149 Gen_Comp : Entity_Id := Cunit_Entity (Get_Source_Unit (Decl));
6150
6151 begin
6152 -- The instantiation appears before the generic body if we are in the
6153 -- scope of the unit containing the generic, either in its spec or in
6154 -- the package body, and before the generic body.
6155
6156 if Ekind (Gen_Comp) = E_Package_Body then
6157 Gen_Comp := Spec_Entity (Gen_Comp);
6158 end if;
6159
6160 if In_Open_Scopes (Gen_Comp)
6161 and then No (Corresponding_Body (Decl))
6162 then
6163 S := Current_Scope;
6164
6165 while Present (S)
6166 and then not Is_Compilation_Unit (S)
6167 and then not Is_Child_Unit (S)
6168 loop
6169 if Ekind (S) = E_Package then
6170 Set_Has_Forward_Instantiation (S);
6171 end if;
6172
6173 S := Scope (S);
6174 end loop;
6175 end if;
6176 end Check_Forward_Instantiation;
6177
6178 ---------------------------
6179 -- Check_Generic_Actuals --
6180 ---------------------------
6181
6182 -- The visibility of the actuals may be different between the point of
6183 -- generic instantiation and the instantiation of the body.
6184
6185 procedure Check_Generic_Actuals
6186 (Instance : Entity_Id;
6187 Is_Formal_Box : Boolean)
6188 is
6189 E : Entity_Id;
6190 Astype : Entity_Id;
6191
6192 function Denotes_Previous_Actual (Typ : Entity_Id) return Boolean;
6193 -- For a formal that is an array type, the component type is often a
6194 -- previous formal in the same unit. The privacy status of the component
6195 -- type will have been examined earlier in the traversal of the
6196 -- corresponding actuals, and this status should not be modified for
6197 -- the array (sub)type itself. However, if the base type of the array
6198 -- (sub)type is private, its full view must be restored in the body to
6199 -- be consistent with subsequent index subtypes, etc.
6200 --
6201 -- To detect this case we have to rescan the list of formals, which is
6202 -- usually short enough to ignore the resulting inefficiency.
6203
6204 -----------------------------
6205 -- Denotes_Previous_Actual --
6206 -----------------------------
6207
6208 function Denotes_Previous_Actual (Typ : Entity_Id) return Boolean is
6209 Prev : Entity_Id;
6210
6211 begin
6212 Prev := First_Entity (Instance);
6213 while Present (Prev) loop
6214 if Is_Type (Prev)
6215 and then Nkind (Parent (Prev)) = N_Subtype_Declaration
6216 and then Is_Entity_Name (Subtype_Indication (Parent (Prev)))
6217 and then Entity (Subtype_Indication (Parent (Prev))) = Typ
6218 then
6219 return True;
6220
6221 elsif Prev = E then
6222 return False;
6223
6224 else
6225 Next_Entity (Prev);
6226 end if;
6227 end loop;
6228
6229 return False;
6230 end Denotes_Previous_Actual;
6231
6232 -- Start of processing for Check_Generic_Actuals
6233
6234 begin
6235 E := First_Entity (Instance);
6236 while Present (E) loop
6237 if Is_Type (E)
6238 and then Nkind (Parent (E)) = N_Subtype_Declaration
6239 and then Scope (Etype (E)) /= Instance
6240 and then Is_Entity_Name (Subtype_Indication (Parent (E)))
6241 then
6242 if Is_Array_Type (E)
6243 and then not Is_Private_Type (Etype (E))
6244 and then Denotes_Previous_Actual (Component_Type (E))
6245 then
6246 null;
6247 else
6248 Check_Private_View (Subtype_Indication (Parent (E)));
6249 end if;
6250
6251 Set_Is_Generic_Actual_Type (E, True);
6252 Set_Is_Hidden (E, False);
6253 Set_Is_Potentially_Use_Visible (E,
6254 In_Use (Instance));
6255
6256 -- We constructed the generic actual type as a subtype of the
6257 -- supplied type. This means that it normally would not inherit
6258 -- subtype specific attributes of the actual, which is wrong for
6259 -- the generic case.
6260
6261 Astype := Ancestor_Subtype (E);
6262
6263 if No (Astype) then
6264
6265 -- This can happen when E is an itype that is the full view of
6266 -- a private type completed, e.g. with a constrained array. In
6267 -- that case, use the first subtype, which will carry size
6268 -- information. The base type itself is unconstrained and will
6269 -- not carry it.
6270
6271 Astype := First_Subtype (E);
6272 end if;
6273
6274 Set_Size_Info (E, (Astype));
6275 Set_RM_Size (E, RM_Size (Astype));
6276 Set_First_Rep_Item (E, First_Rep_Item (Astype));
6277
6278 if Is_Discrete_Or_Fixed_Point_Type (E) then
6279 Set_RM_Size (E, RM_Size (Astype));
6280
6281 -- In nested instances, the base type of an access actual may
6282 -- itself be private, and need to be exchanged.
6283
6284 elsif Is_Access_Type (E)
6285 and then Is_Private_Type (Etype (E))
6286 then
6287 Check_Private_View
6288 (New_Occurrence_Of (Etype (E), Sloc (Instance)));
6289 end if;
6290
6291 elsif Ekind (E) = E_Package then
6292
6293 -- If this is the renaming for the current instance, we're done.
6294 -- Otherwise it is a formal package. If the corresponding formal
6295 -- was declared with a box, the (instantiations of the) generic
6296 -- formal part are also visible. Otherwise, ignore the entity
6297 -- created to validate the actuals.
6298
6299 if Renamed_Object (E) = Instance then
6300 exit;
6301
6302 elsif Nkind (Parent (E)) /= N_Package_Renaming_Declaration then
6303 null;
6304
6305 -- The visibility of a formal of an enclosing generic is already
6306 -- correct.
6307
6308 elsif Denotes_Formal_Package (E) then
6309 null;
6310
6311 elsif Present (Associated_Formal_Package (E))
6312 and then not Is_Generic_Formal (E)
6313 then
6314 if Box_Present (Parent (Associated_Formal_Package (E))) then
6315 Check_Generic_Actuals (Renamed_Object (E), True);
6316
6317 else
6318 Check_Generic_Actuals (Renamed_Object (E), False);
6319 end if;
6320
6321 Set_Is_Hidden (E, False);
6322 end if;
6323
6324 -- If this is a subprogram instance (in a wrapper package) the
6325 -- actual is fully visible.
6326
6327 elsif Is_Wrapper_Package (Instance) then
6328 Set_Is_Hidden (E, False);
6329
6330 -- If the formal package is declared with a box, or if the formal
6331 -- parameter is defaulted, it is visible in the body.
6332
6333 elsif Is_Formal_Box or else Is_Visible_Formal (E) then
6334 Set_Is_Hidden (E, False);
6335 end if;
6336
6337 if Ekind (E) = E_Constant then
6338
6339 -- If the type of the actual is a private type declared in the
6340 -- enclosing scope of the generic unit, the body of the generic
6341 -- sees the full view of the type (because it has to appear in
6342 -- the corresponding package body). If the type is private now,
6343 -- exchange views to restore the proper visiblity in the instance.
6344
6345 declare
6346 Typ : constant Entity_Id := Base_Type (Etype (E));
6347 -- The type of the actual
6348
6349 Gen_Id : Entity_Id;
6350 -- The generic unit
6351
6352 Parent_Scope : Entity_Id;
6353 -- The enclosing scope of the generic unit
6354
6355 begin
6356 if Is_Wrapper_Package (Instance) then
6357 Gen_Id :=
6358 Generic_Parent
6359 (Specification
6360 (Unit_Declaration_Node
6361 (Related_Instance (Instance))));
6362 else
6363 Gen_Id :=
6364 Generic_Parent (Package_Specification (Instance));
6365 end if;
6366
6367 Parent_Scope := Scope (Gen_Id);
6368
6369 -- The exchange is only needed if the generic is defined
6370 -- within a package which is not a common ancestor of the
6371 -- scope of the instance, and is not already in scope.
6372
6373 if Is_Private_Type (Typ)
6374 and then Scope (Typ) = Parent_Scope
6375 and then Scope (Instance) /= Parent_Scope
6376 and then Ekind (Parent_Scope) = E_Package
6377 and then not Is_Child_Unit (Gen_Id)
6378 then
6379 Switch_View (Typ);
6380
6381 -- If the type of the entity is a subtype, it may also have
6382 -- to be made visible, together with the base type of its
6383 -- full view, after exchange.
6384
6385 if Is_Private_Type (Etype (E)) then
6386 Switch_View (Etype (E));
6387 Switch_View (Base_Type (Etype (E)));
6388 end if;
6389 end if;
6390 end;
6391 end if;
6392
6393 Next_Entity (E);
6394 end loop;
6395 end Check_Generic_Actuals;
6396
6397 ------------------------------
6398 -- Check_Generic_Child_Unit --
6399 ------------------------------
6400
6401 procedure Check_Generic_Child_Unit
6402 (Gen_Id : Node_Id;
6403 Parent_Installed : in out Boolean)
6404 is
6405 Loc : constant Source_Ptr := Sloc (Gen_Id);
6406 Gen_Par : Entity_Id := Empty;
6407 E : Entity_Id;
6408 Inst_Par : Entity_Id;
6409 S : Node_Id;
6410
6411 function Find_Generic_Child
6412 (Scop : Entity_Id;
6413 Id : Node_Id) return Entity_Id;
6414 -- Search generic parent for possible child unit with the given name
6415
6416 function In_Enclosing_Instance return Boolean;
6417 -- Within an instance of the parent, the child unit may be denoted by
6418 -- a simple name, or an abbreviated expanded name. Examine enclosing
6419 -- scopes to locate a possible parent instantiation.
6420
6421 ------------------------
6422 -- Find_Generic_Child --
6423 ------------------------
6424
6425 function Find_Generic_Child
6426 (Scop : Entity_Id;
6427 Id : Node_Id) return Entity_Id
6428 is
6429 E : Entity_Id;
6430
6431 begin
6432 -- If entity of name is already set, instance has already been
6433 -- resolved, e.g. in an enclosing instantiation.
6434
6435 if Present (Entity (Id)) then
6436 if Scope (Entity (Id)) = Scop then
6437 return Entity (Id);
6438 else
6439 return Empty;
6440 end if;
6441
6442 else
6443 E := First_Entity (Scop);
6444 while Present (E) loop
6445 if Chars (E) = Chars (Id)
6446 and then Is_Child_Unit (E)
6447 then
6448 if Is_Child_Unit (E)
6449 and then not Is_Visible_Lib_Unit (E)
6450 then
6451 Error_Msg_NE
6452 ("generic child unit& is not visible", Gen_Id, E);
6453 end if;
6454
6455 Set_Entity (Id, E);
6456 return E;
6457 end if;
6458
6459 Next_Entity (E);
6460 end loop;
6461
6462 return Empty;
6463 end if;
6464 end Find_Generic_Child;
6465
6466 ---------------------------
6467 -- In_Enclosing_Instance --
6468 ---------------------------
6469
6470 function In_Enclosing_Instance return Boolean is
6471 Enclosing_Instance : Node_Id;
6472 Instance_Decl : Node_Id;
6473
6474 begin
6475 -- We do not inline any call that contains instantiations, except
6476 -- for instantiations of Unchecked_Conversion, so if we are within
6477 -- an inlined body the current instance does not require parents.
6478
6479 if In_Inlined_Body then
6480 pragma Assert (Chars (Gen_Id) = Name_Unchecked_Conversion);
6481 return False;
6482 end if;
6483
6484 -- Loop to check enclosing scopes
6485
6486 Enclosing_Instance := Current_Scope;
6487 while Present (Enclosing_Instance) loop
6488 Instance_Decl := Unit_Declaration_Node (Enclosing_Instance);
6489
6490 if Ekind (Enclosing_Instance) = E_Package
6491 and then Is_Generic_Instance (Enclosing_Instance)
6492 and then Present
6493 (Generic_Parent (Specification (Instance_Decl)))
6494 then
6495 -- Check whether the generic we are looking for is a child of
6496 -- this instance.
6497
6498 E := Find_Generic_Child
6499 (Generic_Parent (Specification (Instance_Decl)), Gen_Id);
6500 exit when Present (E);
6501
6502 else
6503 E := Empty;
6504 end if;
6505
6506 Enclosing_Instance := Scope (Enclosing_Instance);
6507 end loop;
6508
6509 if No (E) then
6510
6511 -- Not a child unit
6512
6513 Analyze (Gen_Id);
6514 return False;
6515
6516 else
6517 Rewrite (Gen_Id,
6518 Make_Expanded_Name (Loc,
6519 Chars => Chars (E),
6520 Prefix => New_Occurrence_Of (Enclosing_Instance, Loc),
6521 Selector_Name => New_Occurrence_Of (E, Loc)));
6522
6523 Set_Entity (Gen_Id, E);
6524 Set_Etype (Gen_Id, Etype (E));
6525 Parent_Installed := False; -- Already in scope.
6526 return True;
6527 end if;
6528 end In_Enclosing_Instance;
6529
6530 -- Start of processing for Check_Generic_Child_Unit
6531
6532 begin
6533 -- If the name of the generic is given by a selected component, it may
6534 -- be the name of a generic child unit, and the prefix is the name of an
6535 -- instance of the parent, in which case the child unit must be visible.
6536 -- If this instance is not in scope, it must be placed there and removed
6537 -- after instantiation, because what is being instantiated is not the
6538 -- original child, but the corresponding child present in the instance
6539 -- of the parent.
6540
6541 -- If the child is instantiated within the parent, it can be given by
6542 -- a simple name. In this case the instance is already in scope, but
6543 -- the child generic must be recovered from the generic parent as well.
6544
6545 if Nkind (Gen_Id) = N_Selected_Component then
6546 S := Selector_Name (Gen_Id);
6547 Analyze (Prefix (Gen_Id));
6548 Inst_Par := Entity (Prefix (Gen_Id));
6549
6550 if Ekind (Inst_Par) = E_Package
6551 and then Present (Renamed_Object (Inst_Par))
6552 then
6553 Inst_Par := Renamed_Object (Inst_Par);
6554 end if;
6555
6556 if Ekind (Inst_Par) = E_Package then
6557 if Nkind (Parent (Inst_Par)) = N_Package_Specification then
6558 Gen_Par := Generic_Parent (Parent (Inst_Par));
6559
6560 elsif Nkind (Parent (Inst_Par)) = N_Defining_Program_Unit_Name
6561 and then
6562 Nkind (Parent (Parent (Inst_Par))) = N_Package_Specification
6563 then
6564 Gen_Par := Generic_Parent (Parent (Parent (Inst_Par)));
6565 end if;
6566
6567 elsif Ekind (Inst_Par) = E_Generic_Package
6568 and then Nkind (Parent (Gen_Id)) = N_Formal_Package_Declaration
6569 then
6570 -- A formal package may be a real child package, and not the
6571 -- implicit instance within a parent. In this case the child is
6572 -- not visible and has to be retrieved explicitly as well.
6573
6574 Gen_Par := Inst_Par;
6575 end if;
6576
6577 if Present (Gen_Par) then
6578
6579 -- The prefix denotes an instantiation. The entity itself may be a
6580 -- nested generic, or a child unit.
6581
6582 E := Find_Generic_Child (Gen_Par, S);
6583
6584 if Present (E) then
6585 Change_Selected_Component_To_Expanded_Name (Gen_Id);
6586 Set_Entity (Gen_Id, E);
6587 Set_Etype (Gen_Id, Etype (E));
6588 Set_Entity (S, E);
6589 Set_Etype (S, Etype (E));
6590
6591 -- Indicate that this is a reference to the parent
6592
6593 if In_Extended_Main_Source_Unit (Gen_Id) then
6594 Set_Is_Instantiated (Inst_Par);
6595 end if;
6596
6597 -- A common mistake is to replicate the naming scheme of a
6598 -- hierarchy by instantiating a generic child directly, rather
6599 -- than the implicit child in a parent instance:
6600
6601 -- generic .. package Gpar is ..
6602 -- generic .. package Gpar.Child is ..
6603 -- package Par is new Gpar ();
6604
6605 -- with Gpar.Child;
6606 -- package Par.Child is new Gpar.Child ();
6607 -- rather than Par.Child
6608
6609 -- In this case the instantiation is within Par, which is an
6610 -- instance, but Gpar does not denote Par because we are not IN
6611 -- the instance of Gpar, so this is illegal. The test below
6612 -- recognizes this particular case.
6613
6614 if Is_Child_Unit (E)
6615 and then not Comes_From_Source (Entity (Prefix (Gen_Id)))
6616 and then (not In_Instance
6617 or else Nkind (Parent (Parent (Gen_Id))) =
6618 N_Compilation_Unit)
6619 then
6620 Error_Msg_N
6621 ("prefix of generic child unit must be instance of parent",
6622 Gen_Id);
6623 end if;
6624
6625 if not In_Open_Scopes (Inst_Par)
6626 and then Nkind (Parent (Gen_Id)) not in
6627 N_Generic_Renaming_Declaration
6628 then
6629 Install_Parent (Inst_Par);
6630 Parent_Installed := True;
6631
6632 elsif In_Open_Scopes (Inst_Par) then
6633
6634 -- If the parent is already installed, install the actuals
6635 -- for its formal packages. This is necessary when the child
6636 -- instance is a child of the parent instance: in this case,
6637 -- the parent is placed on the scope stack but the formal
6638 -- packages are not made visible.
6639
6640 Install_Formal_Packages (Inst_Par);
6641 end if;
6642
6643 else
6644 -- If the generic parent does not contain an entity that
6645 -- corresponds to the selector, the instance doesn't either.
6646 -- Analyzing the node will yield the appropriate error message.
6647 -- If the entity is not a child unit, then it is an inner
6648 -- generic in the parent.
6649
6650 Analyze (Gen_Id);
6651 end if;
6652
6653 else
6654 Analyze (Gen_Id);
6655
6656 if Is_Child_Unit (Entity (Gen_Id))
6657 and then
6658 Nkind (Parent (Gen_Id)) not in N_Generic_Renaming_Declaration
6659 and then not In_Open_Scopes (Inst_Par)
6660 then
6661 Install_Parent (Inst_Par);
6662 Parent_Installed := True;
6663
6664 -- The generic unit may be the renaming of the implicit child
6665 -- present in an instance. In that case the parent instance is
6666 -- obtained from the name of the renamed entity.
6667
6668 elsif Ekind (Entity (Gen_Id)) = E_Generic_Package
6669 and then Present (Renamed_Entity (Entity (Gen_Id)))
6670 and then Is_Child_Unit (Renamed_Entity (Entity (Gen_Id)))
6671 then
6672 declare
6673 Renamed_Package : constant Node_Id :=
6674 Name (Parent (Entity (Gen_Id)));
6675 begin
6676 if Nkind (Renamed_Package) = N_Expanded_Name then
6677 Inst_Par := Entity (Prefix (Renamed_Package));
6678 Install_Parent (Inst_Par);
6679 Parent_Installed := True;
6680 end if;
6681 end;
6682 end if;
6683 end if;
6684
6685 elsif Nkind (Gen_Id) = N_Expanded_Name then
6686
6687 -- Entity already present, analyze prefix, whose meaning may be
6688 -- an instance in the current context. If it is an instance of
6689 -- a relative within another, the proper parent may still have
6690 -- to be installed, if they are not of the same generation.
6691
6692 Analyze (Prefix (Gen_Id));
6693
6694 -- In the unlikely case that a local declaration hides the name
6695 -- of the parent package, locate it on the homonym chain. If the
6696 -- context is an instance of the parent, the renaming entity is
6697 -- flagged as such.
6698
6699 Inst_Par := Entity (Prefix (Gen_Id));
6700 while Present (Inst_Par)
6701 and then not Is_Package_Or_Generic_Package (Inst_Par)
6702 loop
6703 Inst_Par := Homonym (Inst_Par);
6704 end loop;
6705
6706 pragma Assert (Present (Inst_Par));
6707 Set_Entity (Prefix (Gen_Id), Inst_Par);
6708
6709 if In_Enclosing_Instance then
6710 null;
6711
6712 elsif Present (Entity (Gen_Id))
6713 and then Is_Child_Unit (Entity (Gen_Id))
6714 and then not In_Open_Scopes (Inst_Par)
6715 then
6716 Install_Parent (Inst_Par);
6717 Parent_Installed := True;
6718 end if;
6719
6720 elsif In_Enclosing_Instance then
6721
6722 -- The child unit is found in some enclosing scope
6723
6724 null;
6725
6726 else
6727 Analyze (Gen_Id);
6728
6729 -- If this is the renaming of the implicit child in a parent
6730 -- instance, recover the parent name and install it.
6731
6732 if Is_Entity_Name (Gen_Id) then
6733 E := Entity (Gen_Id);
6734
6735 if Is_Generic_Unit (E)
6736 and then Nkind (Parent (E)) in N_Generic_Renaming_Declaration
6737 and then Is_Child_Unit (Renamed_Object (E))
6738 and then Is_Generic_Unit (Scope (Renamed_Object (E)))
6739 and then Nkind (Name (Parent (E))) = N_Expanded_Name
6740 then
6741 Rewrite (Gen_Id, New_Copy_Tree (Name (Parent (E))));
6742 Inst_Par := Entity (Prefix (Gen_Id));
6743
6744 if not In_Open_Scopes (Inst_Par) then
6745 Install_Parent (Inst_Par);
6746 Parent_Installed := True;
6747 end if;
6748
6749 -- If it is a child unit of a non-generic parent, it may be
6750 -- use-visible and given by a direct name. Install parent as
6751 -- for other cases.
6752
6753 elsif Is_Generic_Unit (E)
6754 and then Is_Child_Unit (E)
6755 and then
6756 Nkind (Parent (Gen_Id)) not in N_Generic_Renaming_Declaration
6757 and then not Is_Generic_Unit (Scope (E))
6758 then
6759 if not In_Open_Scopes (Scope (E)) then
6760 Install_Parent (Scope (E));
6761 Parent_Installed := True;
6762 end if;
6763 end if;
6764 end if;
6765 end if;
6766 end Check_Generic_Child_Unit;
6767
6768 -----------------------------
6769 -- Check_Hidden_Child_Unit --
6770 -----------------------------
6771
6772 procedure Check_Hidden_Child_Unit
6773 (N : Node_Id;
6774 Gen_Unit : Entity_Id;
6775 Act_Decl_Id : Entity_Id)
6776 is
6777 Gen_Id : constant Node_Id := Name (N);
6778
6779 begin
6780 if Is_Child_Unit (Gen_Unit)
6781 and then Is_Child_Unit (Act_Decl_Id)
6782 and then Nkind (Gen_Id) = N_Expanded_Name
6783 and then Entity (Prefix (Gen_Id)) = Scope (Act_Decl_Id)
6784 and then Chars (Gen_Unit) = Chars (Act_Decl_Id)
6785 then
6786 Error_Msg_Node_2 := Scope (Act_Decl_Id);
6787 Error_Msg_NE
6788 ("generic unit & is implicitly declared in &",
6789 Defining_Unit_Name (N), Gen_Unit);
6790 Error_Msg_N ("\instance must have different name",
6791 Defining_Unit_Name (N));
6792 end if;
6793 end Check_Hidden_Child_Unit;
6794
6795 ------------------------
6796 -- Check_Private_View --
6797 ------------------------
6798
6799 procedure Check_Private_View (N : Node_Id) is
6800 T : constant Entity_Id := Etype (N);
6801 BT : Entity_Id;
6802
6803 begin
6804 -- Exchange views if the type was not private in the generic but is
6805 -- private at the point of instantiation. Do not exchange views if
6806 -- the scope of the type is in scope. This can happen if both generic
6807 -- and instance are sibling units, or if type is defined in a parent.
6808 -- In this case the visibility of the type will be correct for all
6809 -- semantic checks.
6810
6811 if Present (T) then
6812 BT := Base_Type (T);
6813
6814 if Is_Private_Type (T)
6815 and then not Has_Private_View (N)
6816 and then Present (Full_View (T))
6817 and then not In_Open_Scopes (Scope (T))
6818 then
6819 -- In the generic, the full type was visible. Save the private
6820 -- entity, for subsequent exchange.
6821
6822 Switch_View (T);
6823
6824 elsif Has_Private_View (N)
6825 and then not Is_Private_Type (T)
6826 and then not Has_Been_Exchanged (T)
6827 and then Etype (Get_Associated_Node (N)) /= T
6828 then
6829 -- Only the private declaration was visible in the generic. If
6830 -- the type appears in a subtype declaration, the subtype in the
6831 -- instance must have a view compatible with that of its parent,
6832 -- which must be exchanged (see corresponding code in Restore_
6833 -- Private_Views). Otherwise, if the type is defined in a parent
6834 -- unit, leave full visibility within instance, which is safe.
6835
6836 if In_Open_Scopes (Scope (Base_Type (T)))
6837 and then not Is_Private_Type (Base_Type (T))
6838 and then Comes_From_Source (Base_Type (T))
6839 then
6840 null;
6841
6842 elsif Nkind (Parent (N)) = N_Subtype_Declaration
6843 or else not In_Private_Part (Scope (Base_Type (T)))
6844 then
6845 Prepend_Elmt (T, Exchanged_Views);
6846 Exchange_Declarations (Etype (Get_Associated_Node (N)));
6847 end if;
6848
6849 -- For composite types with inconsistent representation exchange
6850 -- component types accordingly.
6851
6852 elsif Is_Access_Type (T)
6853 and then Is_Private_Type (Designated_Type (T))
6854 and then not Has_Private_View (N)
6855 and then Present (Full_View (Designated_Type (T)))
6856 then
6857 Switch_View (Designated_Type (T));
6858
6859 elsif Is_Array_Type (T) then
6860 if Is_Private_Type (Component_Type (T))
6861 and then not Has_Private_View (N)
6862 and then Present (Full_View (Component_Type (T)))
6863 then
6864 Switch_View (Component_Type (T));
6865 end if;
6866
6867 -- The normal exchange mechanism relies on the setting of a
6868 -- flag on the reference in the generic. However, an additional
6869 -- mechanism is needed for types that are not explicitly
6870 -- mentioned in the generic, but may be needed in expanded code
6871 -- in the instance. This includes component types of arrays and
6872 -- designated types of access types. This processing must also
6873 -- include the index types of arrays which we take care of here.
6874
6875 declare
6876 Indx : Node_Id;
6877 Typ : Entity_Id;
6878
6879 begin
6880 Indx := First_Index (T);
6881 while Present (Indx) loop
6882 Typ := Base_Type (Etype (Indx));
6883
6884 if Is_Private_Type (Typ)
6885 and then Present (Full_View (Typ))
6886 then
6887 Switch_View (Typ);
6888 end if;
6889
6890 Next_Index (Indx);
6891 end loop;
6892 end;
6893
6894 elsif Is_Private_Type (T)
6895 and then Present (Full_View (T))
6896 and then Is_Array_Type (Full_View (T))
6897 and then Is_Private_Type (Component_Type (Full_View (T)))
6898 then
6899 Switch_View (T);
6900
6901 -- Finally, a non-private subtype may have a private base type, which
6902 -- must be exchanged for consistency. This can happen when a package
6903 -- body is instantiated, when the scope stack is empty but in fact
6904 -- the subtype and the base type are declared in an enclosing scope.
6905
6906 -- Note that in this case we introduce an inconsistency in the view
6907 -- set, because we switch the base type BT, but there could be some
6908 -- private dependent subtypes of BT which remain unswitched. Such
6909 -- subtypes might need to be switched at a later point (see specific
6910 -- provision for that case in Switch_View).
6911
6912 elsif not Is_Private_Type (T)
6913 and then not Has_Private_View (N)
6914 and then Is_Private_Type (BT)
6915 and then Present (Full_View (BT))
6916 and then not Is_Generic_Type (BT)
6917 and then not In_Open_Scopes (BT)
6918 then
6919 Prepend_Elmt (Full_View (BT), Exchanged_Views);
6920 Exchange_Declarations (BT);
6921 end if;
6922 end if;
6923 end Check_Private_View;
6924
6925 -----------------------------
6926 -- Check_Hidden_Primitives --
6927 -----------------------------
6928
6929 function Check_Hidden_Primitives (Assoc_List : List_Id) return Elist_Id is
6930 Actual : Node_Id;
6931 Gen_T : Entity_Id;
6932 Result : Elist_Id := No_Elist;
6933
6934 begin
6935 if No (Assoc_List) then
6936 return No_Elist;
6937 end if;
6938
6939 -- Traverse the list of associations between formals and actuals
6940 -- searching for renamings of tagged types
6941
6942 Actual := First (Assoc_List);
6943 while Present (Actual) loop
6944 if Nkind (Actual) = N_Subtype_Declaration then
6945 Gen_T := Generic_Parent_Type (Actual);
6946
6947 if Present (Gen_T) and then Is_Tagged_Type (Gen_T) then
6948
6949 -- Traverse the list of primitives of the actual types
6950 -- searching for hidden primitives that are visible in the
6951 -- corresponding generic formal; leave them visible and
6952 -- append them to Result to restore their decoration later.
6953
6954 Install_Hidden_Primitives
6955 (Prims_List => Result,
6956 Gen_T => Gen_T,
6957 Act_T => Entity (Subtype_Indication (Actual)));
6958 end if;
6959 end if;
6960
6961 Next (Actual);
6962 end loop;
6963
6964 return Result;
6965 end Check_Hidden_Primitives;
6966
6967 --------------------------
6968 -- Contains_Instance_Of --
6969 --------------------------
6970
6971 function Contains_Instance_Of
6972 (Inner : Entity_Id;
6973 Outer : Entity_Id;
6974 N : Node_Id) return Boolean
6975 is
6976 Elmt : Elmt_Id;
6977 Scop : Entity_Id;
6978
6979 begin
6980 Scop := Outer;
6981
6982 -- Verify that there are no circular instantiations. We check whether
6983 -- the unit contains an instance of the current scope or some enclosing
6984 -- scope (in case one of the instances appears in a subunit). Longer
6985 -- circularities involving subunits might seem too pathological to
6986 -- consider, but they were not too pathological for the authors of
6987 -- DEC bc30vsq, so we loop over all enclosing scopes, and mark all
6988 -- enclosing generic scopes as containing an instance.
6989
6990 loop
6991 -- Within a generic subprogram body, the scope is not generic, to
6992 -- allow for recursive subprograms. Use the declaration to determine
6993 -- whether this is a generic unit.
6994
6995 if Ekind (Scop) = E_Generic_Package
6996 or else (Is_Subprogram (Scop)
6997 and then Nkind (Unit_Declaration_Node (Scop)) =
6998 N_Generic_Subprogram_Declaration)
6999 then
7000 Elmt := First_Elmt (Inner_Instances (Inner));
7001
7002 while Present (Elmt) loop
7003 if Node (Elmt) = Scop then
7004 Error_Msg_Node_2 := Inner;
7005 Error_Msg_NE
7006 ("circular Instantiation: & instantiated within &!",
7007 N, Scop);
7008 return True;
7009
7010 elsif Node (Elmt) = Inner then
7011 return True;
7012
7013 elsif Contains_Instance_Of (Node (Elmt), Scop, N) then
7014 Error_Msg_Node_2 := Inner;
7015 Error_Msg_NE
7016 ("circular Instantiation: & instantiated within &!",
7017 N, Node (Elmt));
7018 return True;
7019 end if;
7020
7021 Next_Elmt (Elmt);
7022 end loop;
7023
7024 -- Indicate that Inner is being instantiated within Scop
7025
7026 Append_Elmt (Inner, Inner_Instances (Scop));
7027 end if;
7028
7029 if Scop = Standard_Standard then
7030 exit;
7031 else
7032 Scop := Scope (Scop);
7033 end if;
7034 end loop;
7035
7036 return False;
7037 end Contains_Instance_Of;
7038
7039 -----------------------
7040 -- Copy_Generic_Node --
7041 -----------------------
7042
7043 function Copy_Generic_Node
7044 (N : Node_Id;
7045 Parent_Id : Node_Id;
7046 Instantiating : Boolean) return Node_Id
7047 is
7048 Ent : Entity_Id;
7049 New_N : Node_Id;
7050
7051 function Copy_Generic_Descendant (D : Union_Id) return Union_Id;
7052 -- Check the given value of one of the Fields referenced by the current
7053 -- node to determine whether to copy it recursively. The field may hold
7054 -- a Node_Id, a List_Id, or an Elist_Id, or a plain value (Sloc, Uint,
7055 -- Char) in which case it need not be copied.
7056
7057 procedure Copy_Descendants;
7058 -- Common utility for various nodes
7059
7060 function Copy_Generic_Elist (E : Elist_Id) return Elist_Id;
7061 -- Make copy of element list
7062
7063 function Copy_Generic_List
7064 (L : List_Id;
7065 Parent_Id : Node_Id) return List_Id;
7066 -- Apply Copy_Node recursively to the members of a node list
7067
7068 function In_Defining_Unit_Name (Nam : Node_Id) return Boolean;
7069 -- True if an identifier is part of the defining program unit name of
7070 -- a child unit. The entity of such an identifier must be kept (for
7071 -- ASIS use) even though as the name of an enclosing generic it would
7072 -- otherwise not be preserved in the generic tree.
7073
7074 ----------------------
7075 -- Copy_Descendants --
7076 ----------------------
7077
7078 procedure Copy_Descendants is
7079 use Atree.Unchecked_Access;
7080 -- This code section is part of the implementation of an untyped
7081 -- tree traversal, so it needs direct access to node fields.
7082
7083 begin
7084 Set_Field1 (New_N, Copy_Generic_Descendant (Field1 (N)));
7085 Set_Field2 (New_N, Copy_Generic_Descendant (Field2 (N)));
7086 Set_Field3 (New_N, Copy_Generic_Descendant (Field3 (N)));
7087 Set_Field4 (New_N, Copy_Generic_Descendant (Field4 (N)));
7088 Set_Field5 (New_N, Copy_Generic_Descendant (Field5 (N)));
7089 end Copy_Descendants;
7090
7091 -----------------------------
7092 -- Copy_Generic_Descendant --
7093 -----------------------------
7094
7095 function Copy_Generic_Descendant (D : Union_Id) return Union_Id is
7096 begin
7097 if D = Union_Id (Empty) then
7098 return D;
7099
7100 elsif D in Node_Range then
7101 return Union_Id
7102 (Copy_Generic_Node (Node_Id (D), New_N, Instantiating));
7103
7104 elsif D in List_Range then
7105 return Union_Id (Copy_Generic_List (List_Id (D), New_N));
7106
7107 elsif D in Elist_Range then
7108 return Union_Id (Copy_Generic_Elist (Elist_Id (D)));
7109
7110 -- Nothing else is copyable (e.g. Uint values), return as is
7111
7112 else
7113 return D;
7114 end if;
7115 end Copy_Generic_Descendant;
7116
7117 ------------------------
7118 -- Copy_Generic_Elist --
7119 ------------------------
7120
7121 function Copy_Generic_Elist (E : Elist_Id) return Elist_Id is
7122 M : Elmt_Id;
7123 L : Elist_Id;
7124
7125 begin
7126 if Present (E) then
7127 L := New_Elmt_List;
7128 M := First_Elmt (E);
7129 while Present (M) loop
7130 Append_Elmt
7131 (Copy_Generic_Node (Node (M), Empty, Instantiating), L);
7132 Next_Elmt (M);
7133 end loop;
7134
7135 return L;
7136
7137 else
7138 return No_Elist;
7139 end if;
7140 end Copy_Generic_Elist;
7141
7142 -----------------------
7143 -- Copy_Generic_List --
7144 -----------------------
7145
7146 function Copy_Generic_List
7147 (L : List_Id;
7148 Parent_Id : Node_Id) return List_Id
7149 is
7150 N : Node_Id;
7151 New_L : List_Id;
7152
7153 begin
7154 if Present (L) then
7155 New_L := New_List;
7156 Set_Parent (New_L, Parent_Id);
7157
7158 N := First (L);
7159 while Present (N) loop
7160 Append (Copy_Generic_Node (N, Empty, Instantiating), New_L);
7161 Next (N);
7162 end loop;
7163
7164 return New_L;
7165
7166 else
7167 return No_List;
7168 end if;
7169 end Copy_Generic_List;
7170
7171 ---------------------------
7172 -- In_Defining_Unit_Name --
7173 ---------------------------
7174
7175 function In_Defining_Unit_Name (Nam : Node_Id) return Boolean is
7176 begin
7177 return
7178 Present (Parent (Nam))
7179 and then (Nkind (Parent (Nam)) = N_Defining_Program_Unit_Name
7180 or else
7181 (Nkind (Parent (Nam)) = N_Expanded_Name
7182 and then In_Defining_Unit_Name (Parent (Nam))));
7183 end In_Defining_Unit_Name;
7184
7185 -- Start of processing for Copy_Generic_Node
7186
7187 begin
7188 if N = Empty then
7189 return N;
7190 end if;
7191
7192 New_N := New_Copy (N);
7193
7194 -- Copy aspects if present
7195
7196 if Has_Aspects (N) then
7197 Set_Has_Aspects (New_N, False);
7198 Set_Aspect_Specifications
7199 (New_N, Copy_Generic_List (Aspect_Specifications (N), Parent_Id));
7200 end if;
7201
7202 if Instantiating then
7203 Adjust_Instantiation_Sloc (New_N, S_Adjustment);
7204 end if;
7205
7206 if not Is_List_Member (N) then
7207 Set_Parent (New_N, Parent_Id);
7208 end if;
7209
7210 -- Special casing for identifiers and other entity names and operators
7211
7212 if Nkind_In (New_N, N_Character_Literal,
7213 N_Expanded_Name,
7214 N_Identifier,
7215 N_Operator_Symbol)
7216 or else Nkind (New_N) in N_Op
7217 then
7218 if not Instantiating then
7219
7220 -- Link both nodes in order to assign subsequently the entity of
7221 -- the copy to the original node, in case this is a global
7222 -- reference.
7223
7224 Set_Associated_Node (N, New_N);
7225
7226 -- If we are within an instantiation, this is a nested generic
7227 -- that has already been analyzed at the point of definition.
7228 -- We must preserve references that were global to the enclosing
7229 -- parent at that point. Other occurrences, whether global or
7230 -- local to the current generic, must be resolved anew, so we
7231 -- reset the entity in the generic copy. A global reference has a
7232 -- smaller depth than the parent, or else the same depth in case
7233 -- both are distinct compilation units.
7234
7235 -- A child unit is implicitly declared within the enclosing parent
7236 -- but is in fact global to it, and must be preserved.
7237
7238 -- It is also possible for Current_Instantiated_Parent to be
7239 -- defined, and for this not to be a nested generic, namely if
7240 -- the unit is loaded through Rtsfind. In that case, the entity of
7241 -- New_N is only a link to the associated node, and not a defining
7242 -- occurrence.
7243
7244 -- The entities for parent units in the defining_program_unit of a
7245 -- generic child unit are established when the context of the unit
7246 -- is first analyzed, before the generic copy is made. They are
7247 -- preserved in the copy for use in ASIS queries.
7248
7249 Ent := Entity (New_N);
7250
7251 if No (Current_Instantiated_Parent.Gen_Id) then
7252 if No (Ent)
7253 or else Nkind (Ent) /= N_Defining_Identifier
7254 or else not In_Defining_Unit_Name (N)
7255 then
7256 Set_Associated_Node (New_N, Empty);
7257 end if;
7258
7259 elsif No (Ent)
7260 or else
7261 not Nkind_In (Ent, N_Defining_Identifier,
7262 N_Defining_Character_Literal,
7263 N_Defining_Operator_Symbol)
7264 or else No (Scope (Ent))
7265 or else
7266 (Scope (Ent) = Current_Instantiated_Parent.Gen_Id
7267 and then not Is_Child_Unit (Ent))
7268 or else
7269 (Scope_Depth (Scope (Ent)) >
7270 Scope_Depth (Current_Instantiated_Parent.Gen_Id)
7271 and then
7272 Get_Source_Unit (Ent) =
7273 Get_Source_Unit (Current_Instantiated_Parent.Gen_Id))
7274 then
7275 Set_Associated_Node (New_N, Empty);
7276 end if;
7277
7278 -- Case of instantiating identifier or some other name or operator
7279
7280 else
7281 -- If the associated node is still defined, the entity in it
7282 -- is global, and must be copied to the instance. If this copy
7283 -- is being made for a body to inline, it is applied to an
7284 -- instantiated tree, and the entity is already present and
7285 -- must be also preserved.
7286
7287 declare
7288 Assoc : constant Node_Id := Get_Associated_Node (N);
7289
7290 begin
7291 if Present (Assoc) then
7292 if Nkind (Assoc) = Nkind (N) then
7293 Set_Entity (New_N, Entity (Assoc));
7294 Check_Private_View (N);
7295
7296 -- The name in the call may be a selected component if the
7297 -- call has not been analyzed yet, as may be the case for
7298 -- pre/post conditions in a generic unit.
7299
7300 elsif Nkind (Assoc) = N_Function_Call
7301 and then Is_Entity_Name (Name (Assoc))
7302 then
7303 Set_Entity (New_N, Entity (Name (Assoc)));
7304
7305 elsif Nkind_In (Assoc, N_Defining_Identifier,
7306 N_Defining_Character_Literal,
7307 N_Defining_Operator_Symbol)
7308 and then Expander_Active
7309 then
7310 -- Inlining case: we are copying a tree that contains
7311 -- global entities, which are preserved in the copy to be
7312 -- used for subsequent inlining.
7313
7314 null;
7315
7316 else
7317 Set_Entity (New_N, Empty);
7318 end if;
7319 end if;
7320 end;
7321 end if;
7322
7323 -- For expanded name, we must copy the Prefix and Selector_Name
7324
7325 if Nkind (N) = N_Expanded_Name then
7326 Set_Prefix
7327 (New_N, Copy_Generic_Node (Prefix (N), New_N, Instantiating));
7328
7329 Set_Selector_Name (New_N,
7330 Copy_Generic_Node (Selector_Name (N), New_N, Instantiating));
7331
7332 -- For operators, we must copy the right operand
7333
7334 elsif Nkind (N) in N_Op then
7335 Set_Right_Opnd (New_N,
7336 Copy_Generic_Node (Right_Opnd (N), New_N, Instantiating));
7337
7338 -- And for binary operators, the left operand as well
7339
7340 if Nkind (N) in N_Binary_Op then
7341 Set_Left_Opnd (New_N,
7342 Copy_Generic_Node (Left_Opnd (N), New_N, Instantiating));
7343 end if;
7344 end if;
7345
7346 -- Establish a link between an entity from the generic template and the
7347 -- corresponding entity in the generic copy to be analyzed.
7348
7349 elsif Nkind (N) in N_Entity then
7350 if not Instantiating then
7351 Set_Associated_Entity (N, New_N);
7352 end if;
7353
7354 -- Clear any existing link the copy may inherit from the replicated
7355 -- generic template entity.
7356
7357 Set_Associated_Entity (New_N, Empty);
7358
7359 -- Special casing for stubs
7360
7361 elsif Nkind (N) in N_Body_Stub then
7362
7363 -- In any case, we must copy the specification or defining
7364 -- identifier as appropriate.
7365
7366 if Nkind (N) = N_Subprogram_Body_Stub then
7367 Set_Specification (New_N,
7368 Copy_Generic_Node (Specification (N), New_N, Instantiating));
7369
7370 else
7371 Set_Defining_Identifier (New_N,
7372 Copy_Generic_Node
7373 (Defining_Identifier (N), New_N, Instantiating));
7374 end if;
7375
7376 -- If we are not instantiating, then this is where we load and
7377 -- analyze subunits, i.e. at the point where the stub occurs. A
7378 -- more permissive system might defer this analysis to the point
7379 -- of instantiation, but this seems too complicated for now.
7380
7381 if not Instantiating then
7382 declare
7383 Subunit_Name : constant Unit_Name_Type := Get_Unit_Name (N);
7384 Subunit : Node_Id;
7385 Unum : Unit_Number_Type;
7386 New_Body : Node_Id;
7387
7388 begin
7389 -- Make sure that, if it is a subunit of the main unit that is
7390 -- preprocessed and if -gnateG is specified, the preprocessed
7391 -- file will be written.
7392
7393 Lib.Analysing_Subunit_Of_Main :=
7394 Lib.In_Extended_Main_Source_Unit (N);
7395 Unum :=
7396 Load_Unit
7397 (Load_Name => Subunit_Name,
7398 Required => False,
7399 Subunit => True,
7400 Error_Node => N);
7401 Lib.Analysing_Subunit_Of_Main := False;
7402
7403 -- If the proper body is not found, a warning message will be
7404 -- emitted when analyzing the stub, or later at the point of
7405 -- instantiation. Here we just leave the stub as is.
7406
7407 if Unum = No_Unit then
7408 Subunits_Missing := True;
7409 goto Subunit_Not_Found;
7410 end if;
7411
7412 Subunit := Cunit (Unum);
7413
7414 if Nkind (Unit (Subunit)) /= N_Subunit then
7415 Error_Msg_N
7416 ("found child unit instead of expected SEPARATE subunit",
7417 Subunit);
7418 Error_Msg_Sloc := Sloc (N);
7419 Error_Msg_N ("\to complete stub #", Subunit);
7420 goto Subunit_Not_Found;
7421 end if;
7422
7423 -- We must create a generic copy of the subunit, in order to
7424 -- perform semantic analysis on it, and we must replace the
7425 -- stub in the original generic unit with the subunit, in order
7426 -- to preserve non-local references within.
7427
7428 -- Only the proper body needs to be copied. Library_Unit and
7429 -- context clause are simply inherited by the generic copy.
7430 -- Note that the copy (which may be recursive if there are
7431 -- nested subunits) must be done first, before attaching it to
7432 -- the enclosing generic.
7433
7434 New_Body :=
7435 Copy_Generic_Node
7436 (Proper_Body (Unit (Subunit)),
7437 Empty, Instantiating => False);
7438
7439 -- Now place the original proper body in the original generic
7440 -- unit. This is a body, not a compilation unit.
7441
7442 Rewrite (N, Proper_Body (Unit (Subunit)));
7443 Set_Is_Compilation_Unit (Defining_Entity (N), False);
7444 Set_Was_Originally_Stub (N);
7445
7446 -- Finally replace the body of the subunit with its copy, and
7447 -- make this new subunit into the library unit of the generic
7448 -- copy, which does not have stubs any longer.
7449
7450 Set_Proper_Body (Unit (Subunit), New_Body);
7451 Set_Library_Unit (New_N, Subunit);
7452 Inherit_Context (Unit (Subunit), N);
7453 end;
7454
7455 -- If we are instantiating, this must be an error case, since
7456 -- otherwise we would have replaced the stub node by the proper body
7457 -- that corresponds. So just ignore it in the copy (i.e. we have
7458 -- copied it, and that is good enough).
7459
7460 else
7461 null;
7462 end if;
7463
7464 <<Subunit_Not_Found>> null;
7465
7466 -- If the node is a compilation unit, it is the subunit of a stub, which
7467 -- has been loaded already (see code below). In this case, the library
7468 -- unit field of N points to the parent unit (which is a compilation
7469 -- unit) and need not (and cannot) be copied.
7470
7471 -- When the proper body of the stub is analyzed, the library_unit link
7472 -- is used to establish the proper context (see sem_ch10).
7473
7474 -- The other fields of a compilation unit are copied as usual
7475
7476 elsif Nkind (N) = N_Compilation_Unit then
7477
7478 -- This code can only be executed when not instantiating, because in
7479 -- the copy made for an instantiation, the compilation unit node has
7480 -- disappeared at the point that a stub is replaced by its proper
7481 -- body.
7482
7483 pragma Assert (not Instantiating);
7484
7485 Set_Context_Items (New_N,
7486 Copy_Generic_List (Context_Items (N), New_N));
7487
7488 Set_Unit (New_N,
7489 Copy_Generic_Node (Unit (N), New_N, False));
7490
7491 Set_First_Inlined_Subprogram (New_N,
7492 Copy_Generic_Node
7493 (First_Inlined_Subprogram (N), New_N, False));
7494
7495 Set_Aux_Decls_Node (New_N,
7496 Copy_Generic_Node (Aux_Decls_Node (N), New_N, False));
7497
7498 -- For an assignment node, the assignment is known to be semantically
7499 -- legal if we are instantiating the template. This avoids incorrect
7500 -- diagnostics in generated code.
7501
7502 elsif Nkind (N) = N_Assignment_Statement then
7503
7504 -- Copy name and expression fields in usual manner
7505
7506 Set_Name (New_N,
7507 Copy_Generic_Node (Name (N), New_N, Instantiating));
7508
7509 Set_Expression (New_N,
7510 Copy_Generic_Node (Expression (N), New_N, Instantiating));
7511
7512 if Instantiating then
7513 Set_Assignment_OK (Name (New_N), True);
7514 end if;
7515
7516 elsif Nkind_In (N, N_Aggregate, N_Extension_Aggregate) then
7517 if not Instantiating then
7518 Set_Associated_Node (N, New_N);
7519
7520 else
7521 if Present (Get_Associated_Node (N))
7522 and then Nkind (Get_Associated_Node (N)) = Nkind (N)
7523 then
7524 -- In the generic the aggregate has some composite type. If at
7525 -- the point of instantiation the type has a private view,
7526 -- install the full view (and that of its ancestors, if any).
7527
7528 declare
7529 T : Entity_Id := (Etype (Get_Associated_Node (New_N)));
7530 Rt : Entity_Id;
7531
7532 begin
7533 if Present (T) and then Is_Private_Type (T) then
7534 Switch_View (T);
7535 end if;
7536
7537 if Present (T)
7538 and then Is_Tagged_Type (T)
7539 and then Is_Derived_Type (T)
7540 then
7541 Rt := Root_Type (T);
7542
7543 loop
7544 T := Etype (T);
7545
7546 if Is_Private_Type (T) then
7547 Switch_View (T);
7548 end if;
7549
7550 exit when T = Rt;
7551 end loop;
7552 end if;
7553 end;
7554 end if;
7555 end if;
7556
7557 -- Do not copy the associated node, which points to the generic copy
7558 -- of the aggregate.
7559
7560 declare
7561 use Atree.Unchecked_Access;
7562 -- This code section is part of the implementation of an untyped
7563 -- tree traversal, so it needs direct access to node fields.
7564
7565 begin
7566 Set_Field1 (New_N, Copy_Generic_Descendant (Field1 (N)));
7567 Set_Field2 (New_N, Copy_Generic_Descendant (Field2 (N)));
7568 Set_Field3 (New_N, Copy_Generic_Descendant (Field3 (N)));
7569 Set_Field5 (New_N, Copy_Generic_Descendant (Field5 (N)));
7570 end;
7571
7572 -- Allocators do not have an identifier denoting the access type, so we
7573 -- must locate it through the expression to check whether the views are
7574 -- consistent.
7575
7576 elsif Nkind (N) = N_Allocator
7577 and then Nkind (Expression (N)) = N_Qualified_Expression
7578 and then Is_Entity_Name (Subtype_Mark (Expression (N)))
7579 and then Instantiating
7580 then
7581 declare
7582 T : constant Node_Id :=
7583 Get_Associated_Node (Subtype_Mark (Expression (N)));
7584 Acc_T : Entity_Id;
7585
7586 begin
7587 if Present (T) then
7588
7589 -- Retrieve the allocator node in the generic copy
7590
7591 Acc_T := Etype (Parent (Parent (T)));
7592
7593 if Present (Acc_T) and then Is_Private_Type (Acc_T) then
7594 Switch_View (Acc_T);
7595 end if;
7596 end if;
7597
7598 Copy_Descendants;
7599 end;
7600
7601 -- For a proper body, we must catch the case of a proper body that
7602 -- replaces a stub. This represents the point at which a separate
7603 -- compilation unit, and hence template file, may be referenced, so we
7604 -- must make a new source instantiation entry for the template of the
7605 -- subunit, and ensure that all nodes in the subunit are adjusted using
7606 -- this new source instantiation entry.
7607
7608 elsif Nkind (N) in N_Proper_Body then
7609 declare
7610 Save_Adjustment : constant Sloc_Adjustment := S_Adjustment;
7611
7612 begin
7613 if Instantiating and then Was_Originally_Stub (N) then
7614 Create_Instantiation_Source
7615 (Instantiation_Node,
7616 Defining_Entity (N),
7617 False,
7618 S_Adjustment);
7619 end if;
7620
7621 -- Now copy the fields of the proper body, using the new
7622 -- adjustment factor if one was needed as per test above.
7623
7624 Copy_Descendants;
7625
7626 -- Restore the original adjustment factor in case changed
7627
7628 S_Adjustment := Save_Adjustment;
7629 end;
7630
7631 elsif Nkind (N) = N_Pragma and then Instantiating then
7632
7633 -- Do not copy Comment or Ident pragmas their content is relevant to
7634 -- the generic unit, not to the instantiating unit.
7635
7636 if Nam_In (Pragma_Name (N), Name_Comment, Name_Ident) then
7637 New_N := Make_Null_Statement (Sloc (N));
7638
7639 -- Do not copy pragmas generated from aspects because the pragmas do
7640 -- not carry any semantic information, plus they will be regenerated
7641 -- in the instance.
7642
7643 elsif From_Aspect_Specification (N) then
7644 New_N := Make_Null_Statement (Sloc (N));
7645
7646 else
7647 Copy_Descendants;
7648 end if;
7649
7650 elsif Nkind_In (N, N_Integer_Literal, N_Real_Literal) then
7651
7652 -- No descendant fields need traversing
7653
7654 null;
7655
7656 elsif Nkind (N) = N_String_Literal
7657 and then Present (Etype (N))
7658 and then Instantiating
7659 then
7660 -- If the string is declared in an outer scope, the string_literal
7661 -- subtype created for it may have the wrong scope. Force reanalysis
7662 -- of the constant to generate a new itype in the proper context.
7663
7664 Set_Etype (New_N, Empty);
7665 Set_Analyzed (New_N, False);
7666
7667 -- For the remaining nodes, copy their descendants recursively
7668
7669 else
7670 Copy_Descendants;
7671
7672 if Instantiating and then Nkind (N) = N_Subprogram_Body then
7673 Set_Generic_Parent (Specification (New_N), N);
7674
7675 -- Should preserve Corresponding_Spec??? (12.3(14))
7676 end if;
7677 end if;
7678
7679 return New_N;
7680 end Copy_Generic_Node;
7681
7682 ----------------------------
7683 -- Denotes_Formal_Package --
7684 ----------------------------
7685
7686 function Denotes_Formal_Package
7687 (Pack : Entity_Id;
7688 On_Exit : Boolean := False;
7689 Instance : Entity_Id := Empty) return Boolean
7690 is
7691 Par : Entity_Id;
7692 Scop : constant Entity_Id := Scope (Pack);
7693 E : Entity_Id;
7694
7695 function Is_Actual_Of_Previous_Formal (P : Entity_Id) return Boolean;
7696 -- The package in question may be an actual for a previous formal
7697 -- package P of the current instance, so examine its actuals as well.
7698 -- This must be recursive over other formal packages.
7699
7700 ----------------------------------
7701 -- Is_Actual_Of_Previous_Formal --
7702 ----------------------------------
7703
7704 function Is_Actual_Of_Previous_Formal (P : Entity_Id) return Boolean is
7705 E1 : Entity_Id;
7706
7707 begin
7708 E1 := First_Entity (P);
7709 while Present (E1) and then E1 /= Instance loop
7710 if Ekind (E1) = E_Package
7711 and then Nkind (Parent (E1)) = N_Package_Renaming_Declaration
7712 then
7713 if Renamed_Object (E1) = Pack then
7714 return True;
7715
7716 elsif E1 = P or else Renamed_Object (E1) = P then
7717 return False;
7718
7719 elsif Is_Actual_Of_Previous_Formal (E1) then
7720 return True;
7721 end if;
7722 end if;
7723
7724 Next_Entity (E1);
7725 end loop;
7726
7727 return False;
7728 end Is_Actual_Of_Previous_Formal;
7729
7730 -- Start of processing for Denotes_Formal_Package
7731
7732 begin
7733 if On_Exit then
7734 Par :=
7735 Instance_Envs.Table
7736 (Instance_Envs.Last).Instantiated_Parent.Act_Id;
7737 else
7738 Par := Current_Instantiated_Parent.Act_Id;
7739 end if;
7740
7741 if Ekind (Scop) = E_Generic_Package
7742 or else Nkind (Unit_Declaration_Node (Scop)) =
7743 N_Generic_Subprogram_Declaration
7744 then
7745 return True;
7746
7747 elsif Nkind (Original_Node (Unit_Declaration_Node (Pack))) =
7748 N_Formal_Package_Declaration
7749 then
7750 return True;
7751
7752 elsif No (Par) then
7753 return False;
7754
7755 else
7756 -- Check whether this package is associated with a formal package of
7757 -- the enclosing instantiation. Iterate over the list of renamings.
7758
7759 E := First_Entity (Par);
7760 while Present (E) loop
7761 if Ekind (E) /= E_Package
7762 or else Nkind (Parent (E)) /= N_Package_Renaming_Declaration
7763 then
7764 null;
7765
7766 elsif Renamed_Object (E) = Par then
7767 return False;
7768
7769 elsif Renamed_Object (E) = Pack then
7770 return True;
7771
7772 elsif Is_Actual_Of_Previous_Formal (E) then
7773 return True;
7774
7775 end if;
7776
7777 Next_Entity (E);
7778 end loop;
7779
7780 return False;
7781 end if;
7782 end Denotes_Formal_Package;
7783
7784 -----------------
7785 -- End_Generic --
7786 -----------------
7787
7788 procedure End_Generic is
7789 begin
7790 -- ??? More things could be factored out in this routine. Should
7791 -- probably be done at a later stage.
7792
7793 Inside_A_Generic := Generic_Flags.Table (Generic_Flags.Last);
7794 Generic_Flags.Decrement_Last;
7795
7796 Expander_Mode_Restore;
7797 end End_Generic;
7798
7799 -------------
7800 -- Earlier --
7801 -------------
7802
7803 function Earlier (N1, N2 : Node_Id) return Boolean is
7804 procedure Find_Depth (P : in out Node_Id; D : in out Integer);
7805 -- Find distance from given node to enclosing compilation unit
7806
7807 ----------------
7808 -- Find_Depth --
7809 ----------------
7810
7811 procedure Find_Depth (P : in out Node_Id; D : in out Integer) is
7812 begin
7813 while Present (P)
7814 and then Nkind (P) /= N_Compilation_Unit
7815 loop
7816 P := True_Parent (P);
7817 D := D + 1;
7818 end loop;
7819 end Find_Depth;
7820
7821 -- Local declarations
7822
7823 D1 : Integer := 0;
7824 D2 : Integer := 0;
7825 P1 : Node_Id := N1;
7826 P2 : Node_Id := N2;
7827 T1 : Source_Ptr;
7828 T2 : Source_Ptr;
7829
7830 -- Start of processing for Earlier
7831
7832 begin
7833 Find_Depth (P1, D1);
7834 Find_Depth (P2, D2);
7835
7836 if P1 /= P2 then
7837 return False;
7838 else
7839 P1 := N1;
7840 P2 := N2;
7841 end if;
7842
7843 while D1 > D2 loop
7844 P1 := True_Parent (P1);
7845 D1 := D1 - 1;
7846 end loop;
7847
7848 while D2 > D1 loop
7849 P2 := True_Parent (P2);
7850 D2 := D2 - 1;
7851 end loop;
7852
7853 -- At this point P1 and P2 are at the same distance from the root.
7854 -- We examine their parents until we find a common declarative list.
7855 -- If we reach the root, N1 and N2 do not descend from the same
7856 -- declarative list (e.g. one is nested in the declarative part and
7857 -- the other is in a block in the statement part) and the earlier
7858 -- one is already frozen.
7859
7860 while not Is_List_Member (P1)
7861 or else not Is_List_Member (P2)
7862 or else List_Containing (P1) /= List_Containing (P2)
7863 loop
7864 P1 := True_Parent (P1);
7865 P2 := True_Parent (P2);
7866
7867 if Nkind (Parent (P1)) = N_Subunit then
7868 P1 := Corresponding_Stub (Parent (P1));
7869 end if;
7870
7871 if Nkind (Parent (P2)) = N_Subunit then
7872 P2 := Corresponding_Stub (Parent (P2));
7873 end if;
7874
7875 if P1 = P2 then
7876 return False;
7877 end if;
7878 end loop;
7879
7880 -- Expanded code usually shares the source location of the original
7881 -- construct it was generated for. This however may not necessarely
7882 -- reflect the true location of the code within the tree.
7883
7884 -- Before comparing the slocs of the two nodes, make sure that we are
7885 -- working with correct source locations. Assume that P1 is to the left
7886 -- of P2. If either one does not come from source, traverse the common
7887 -- list heading towards the other node and locate the first source
7888 -- statement.
7889
7890 -- P1 P2
7891 -- ----+===+===+--------------+===+===+----
7892 -- expanded code expanded code
7893
7894 if not Comes_From_Source (P1) then
7895 while Present (P1) loop
7896
7897 -- Neither P2 nor a source statement were located during the
7898 -- search. If we reach the end of the list, then P1 does not
7899 -- occur earlier than P2.
7900
7901 -- ---->
7902 -- start --- P2 ----- P1 --- end
7903
7904 if No (Next (P1)) then
7905 return False;
7906
7907 -- We encounter P2 while going to the right of the list. This
7908 -- means that P1 does indeed appear earlier.
7909
7910 -- ---->
7911 -- start --- P1 ===== P2 --- end
7912 -- expanded code in between
7913
7914 elsif P1 = P2 then
7915 return True;
7916
7917 -- No need to look any further since we have located a source
7918 -- statement.
7919
7920 elsif Comes_From_Source (P1) then
7921 exit;
7922 end if;
7923
7924 -- Keep going right
7925
7926 Next (P1);
7927 end loop;
7928 end if;
7929
7930 if not Comes_From_Source (P2) then
7931 while Present (P2) loop
7932
7933 -- Neither P1 nor a source statement were located during the
7934 -- search. If we reach the start of the list, then P1 does not
7935 -- occur earlier than P2.
7936
7937 -- <----
7938 -- start --- P2 --- P1 --- end
7939
7940 if No (Prev (P2)) then
7941 return False;
7942
7943 -- We encounter P1 while going to the left of the list. This
7944 -- means that P1 does indeed appear earlier.
7945
7946 -- <----
7947 -- start --- P1 ===== P2 --- end
7948 -- expanded code in between
7949
7950 elsif P2 = P1 then
7951 return True;
7952
7953 -- No need to look any further since we have located a source
7954 -- statement.
7955
7956 elsif Comes_From_Source (P2) then
7957 exit;
7958 end if;
7959
7960 -- Keep going left
7961
7962 Prev (P2);
7963 end loop;
7964 end if;
7965
7966 -- At this point either both nodes came from source or we approximated
7967 -- their source locations through neighboring source statements.
7968
7969 T1 := Top_Level_Location (Sloc (P1));
7970 T2 := Top_Level_Location (Sloc (P2));
7971
7972 -- When two nodes come from the same instance, they have identical top
7973 -- level locations. To determine proper relation within the tree, check
7974 -- their locations within the template.
7975
7976 if T1 = T2 then
7977 return Sloc (P1) < Sloc (P2);
7978
7979 -- The two nodes either come from unrelated instances or do not come
7980 -- from instantiated code at all.
7981
7982 else
7983 return T1 < T2;
7984 end if;
7985 end Earlier;
7986
7987 ----------------------
7988 -- Find_Actual_Type --
7989 ----------------------
7990
7991 function Find_Actual_Type
7992 (Typ : Entity_Id;
7993 Gen_Type : Entity_Id) return Entity_Id
7994 is
7995 Gen_Scope : constant Entity_Id := Scope (Gen_Type);
7996 T : Entity_Id;
7997
7998 begin
7999 -- Special processing only applies to child units
8000
8001 if not Is_Child_Unit (Gen_Scope) then
8002 return Get_Instance_Of (Typ);
8003
8004 -- If designated or component type is itself a formal of the child unit,
8005 -- its instance is available.
8006
8007 elsif Scope (Typ) = Gen_Scope then
8008 return Get_Instance_Of (Typ);
8009
8010 -- If the array or access type is not declared in the parent unit,
8011 -- no special processing needed.
8012
8013 elsif not Is_Generic_Type (Typ)
8014 and then Scope (Gen_Scope) /= Scope (Typ)
8015 then
8016 return Get_Instance_Of (Typ);
8017
8018 -- Otherwise, retrieve designated or component type by visibility
8019
8020 else
8021 T := Current_Entity (Typ);
8022 while Present (T) loop
8023 if In_Open_Scopes (Scope (T)) then
8024 return T;
8025 elsif Is_Generic_Actual_Type (T) then
8026 return T;
8027 end if;
8028
8029 T := Homonym (T);
8030 end loop;
8031
8032 return Typ;
8033 end if;
8034 end Find_Actual_Type;
8035
8036 ----------------------------
8037 -- Freeze_Subprogram_Body --
8038 ----------------------------
8039
8040 procedure Freeze_Subprogram_Body
8041 (Inst_Node : Node_Id;
8042 Gen_Body : Node_Id;
8043 Pack_Id : Entity_Id)
8044 is
8045 Gen_Unit : constant Entity_Id := Get_Generic_Entity (Inst_Node);
8046 Par : constant Entity_Id := Scope (Gen_Unit);
8047 E_G_Id : Entity_Id;
8048 Enc_G : Entity_Id;
8049 Enc_I : Node_Id;
8050 F_Node : Node_Id;
8051
8052 function Enclosing_Package_Body (N : Node_Id) return Node_Id;
8053 -- Find innermost package body that encloses the given node, and which
8054 -- is not a compilation unit. Freeze nodes for the instance, or for its
8055 -- enclosing body, may be inserted after the enclosing_body of the
8056 -- generic unit. Used to determine proper placement of freeze node for
8057 -- both package and subprogram instances.
8058
8059 function Package_Freeze_Node (B : Node_Id) return Node_Id;
8060 -- Find entity for given package body, and locate or create a freeze
8061 -- node for it.
8062
8063 ----------------------------
8064 -- Enclosing_Package_Body --
8065 ----------------------------
8066
8067 function Enclosing_Package_Body (N : Node_Id) return Node_Id is
8068 P : Node_Id;
8069
8070 begin
8071 P := Parent (N);
8072 while Present (P)
8073 and then Nkind (Parent (P)) /= N_Compilation_Unit
8074 loop
8075 if Nkind (P) = N_Package_Body then
8076 if Nkind (Parent (P)) = N_Subunit then
8077 return Corresponding_Stub (Parent (P));
8078 else
8079 return P;
8080 end if;
8081 end if;
8082
8083 P := True_Parent (P);
8084 end loop;
8085
8086 return Empty;
8087 end Enclosing_Package_Body;
8088
8089 -------------------------
8090 -- Package_Freeze_Node --
8091 -------------------------
8092
8093 function Package_Freeze_Node (B : Node_Id) return Node_Id is
8094 Id : Entity_Id;
8095
8096 begin
8097 if Nkind (B) = N_Package_Body then
8098 Id := Corresponding_Spec (B);
8099 else pragma Assert (Nkind (B) = N_Package_Body_Stub);
8100 Id := Corresponding_Spec (Proper_Body (Unit (Library_Unit (B))));
8101 end if;
8102
8103 Ensure_Freeze_Node (Id);
8104 return Freeze_Node (Id);
8105 end Package_Freeze_Node;
8106
8107 -- Start of processing for Freeze_Subprogram_Body
8108
8109 begin
8110 -- If the instance and the generic body appear within the same unit, and
8111 -- the instance precedes the generic, the freeze node for the instance
8112 -- must appear after that of the generic. If the generic is nested
8113 -- within another instance I2, then current instance must be frozen
8114 -- after I2. In both cases, the freeze nodes are those of enclosing
8115 -- packages. Otherwise, the freeze node is placed at the end of the
8116 -- current declarative part.
8117
8118 Enc_G := Enclosing_Package_Body (Gen_Body);
8119 Enc_I := Enclosing_Package_Body (Inst_Node);
8120 Ensure_Freeze_Node (Pack_Id);
8121 F_Node := Freeze_Node (Pack_Id);
8122
8123 if Is_Generic_Instance (Par)
8124 and then Present (Freeze_Node (Par))
8125 and then In_Same_Declarative_Part (Freeze_Node (Par), Inst_Node)
8126 then
8127 -- The parent was a premature instantiation. Insert freeze node at
8128 -- the end the current declarative part.
8129
8130 if ABE_Is_Certain (Get_Package_Instantiation_Node (Par)) then
8131 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8132
8133 -- Handle the following case:
8134 --
8135 -- package Parent_Inst is new ...
8136 -- Parent_Inst []
8137 --
8138 -- procedure P ... -- this body freezes Parent_Inst
8139 --
8140 -- package Inst is new ...
8141 --
8142 -- In this particular scenario, the freeze node for Inst must be
8143 -- inserted in the same manner as that of Parent_Inst - before the
8144 -- next source body or at the end of the declarative list (body not
8145 -- available). If body P did not exist and Parent_Inst was frozen
8146 -- after Inst, either by a body following Inst or at the end of the
8147 -- declarative region, the freeze node for Inst must be inserted
8148 -- after that of Parent_Inst. This relation is established by
8149 -- comparing the Slocs of Parent_Inst freeze node and Inst.
8150
8151 elsif List_Containing (Get_Package_Instantiation_Node (Par)) =
8152 List_Containing (Inst_Node)
8153 and then Sloc (Freeze_Node (Par)) < Sloc (Inst_Node)
8154 then
8155 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8156
8157 else
8158 Insert_After (Freeze_Node (Par), F_Node);
8159 end if;
8160
8161 -- The body enclosing the instance should be frozen after the body that
8162 -- includes the generic, because the body of the instance may make
8163 -- references to entities therein. If the two are not in the same
8164 -- declarative part, or if the one enclosing the instance is frozen
8165 -- already, freeze the instance at the end of the current declarative
8166 -- part.
8167
8168 elsif Is_Generic_Instance (Par)
8169 and then Present (Freeze_Node (Par))
8170 and then Present (Enc_I)
8171 then
8172 if In_Same_Declarative_Part (Freeze_Node (Par), Enc_I)
8173 or else
8174 (Nkind (Enc_I) = N_Package_Body
8175 and then
8176 In_Same_Declarative_Part (Freeze_Node (Par), Parent (Enc_I)))
8177 then
8178 -- The enclosing package may contain several instances. Rather
8179 -- than computing the earliest point at which to insert its freeze
8180 -- node, we place it at the end of the declarative part of the
8181 -- parent of the generic.
8182
8183 Insert_Freeze_Node_For_Instance
8184 (Freeze_Node (Par), Package_Freeze_Node (Enc_I));
8185 end if;
8186
8187 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8188
8189 elsif Present (Enc_G)
8190 and then Present (Enc_I)
8191 and then Enc_G /= Enc_I
8192 and then Earlier (Inst_Node, Gen_Body)
8193 then
8194 if Nkind (Enc_G) = N_Package_Body then
8195 E_G_Id :=
8196 Corresponding_Spec (Enc_G);
8197 else pragma Assert (Nkind (Enc_G) = N_Package_Body_Stub);
8198 E_G_Id :=
8199 Corresponding_Spec (Proper_Body (Unit (Library_Unit (Enc_G))));
8200 end if;
8201
8202 -- Freeze package that encloses instance, and place node after the
8203 -- package that encloses generic. If enclosing package is already
8204 -- frozen we have to assume it is at the proper place. This may be a
8205 -- potential ABE that requires dynamic checking. Do not add a freeze
8206 -- node if the package that encloses the generic is inside the body
8207 -- that encloses the instance, because the freeze node would be in
8208 -- the wrong scope. Additional contortions needed if the bodies are
8209 -- within a subunit.
8210
8211 declare
8212 Enclosing_Body : Node_Id;
8213
8214 begin
8215 if Nkind (Enc_I) = N_Package_Body_Stub then
8216 Enclosing_Body := Proper_Body (Unit (Library_Unit (Enc_I)));
8217 else
8218 Enclosing_Body := Enc_I;
8219 end if;
8220
8221 if Parent (List_Containing (Enc_G)) /= Enclosing_Body then
8222 Insert_Freeze_Node_For_Instance
8223 (Enc_G, Package_Freeze_Node (Enc_I));
8224 end if;
8225 end;
8226
8227 -- Freeze enclosing subunit before instance
8228
8229 Ensure_Freeze_Node (E_G_Id);
8230
8231 if not Is_List_Member (Freeze_Node (E_G_Id)) then
8232 Insert_After (Enc_G, Freeze_Node (E_G_Id));
8233 end if;
8234
8235 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8236
8237 else
8238 -- If none of the above, insert freeze node at the end of the current
8239 -- declarative part.
8240
8241 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8242 end if;
8243 end Freeze_Subprogram_Body;
8244
8245 ----------------
8246 -- Get_Gen_Id --
8247 ----------------
8248
8249 function Get_Gen_Id (E : Assoc_Ptr) return Entity_Id is
8250 begin
8251 return Generic_Renamings.Table (E).Gen_Id;
8252 end Get_Gen_Id;
8253
8254 ---------------------
8255 -- Get_Instance_Of --
8256 ---------------------
8257
8258 function Get_Instance_Of (A : Entity_Id) return Entity_Id is
8259 Res : constant Assoc_Ptr := Generic_Renamings_HTable.Get (A);
8260
8261 begin
8262 if Res /= Assoc_Null then
8263 return Generic_Renamings.Table (Res).Act_Id;
8264
8265 else
8266 -- On exit, entity is not instantiated: not a generic parameter, or
8267 -- else parameter of an inner generic unit.
8268
8269 return A;
8270 end if;
8271 end Get_Instance_Of;
8272
8273 ------------------------------------
8274 -- Get_Package_Instantiation_Node --
8275 ------------------------------------
8276
8277 function Get_Package_Instantiation_Node (A : Entity_Id) return Node_Id is
8278 Decl : Node_Id := Unit_Declaration_Node (A);
8279 Inst : Node_Id;
8280
8281 begin
8282 -- If the Package_Instantiation attribute has been set on the package
8283 -- entity, then use it directly when it (or its Original_Node) refers
8284 -- to an N_Package_Instantiation node. In principle it should be
8285 -- possible to have this field set in all cases, which should be
8286 -- investigated, and would allow this function to be significantly
8287 -- simplified. ???
8288
8289 Inst := Package_Instantiation (A);
8290
8291 if Present (Inst) then
8292 if Nkind (Inst) = N_Package_Instantiation then
8293 return Inst;
8294
8295 elsif Nkind (Original_Node (Inst)) = N_Package_Instantiation then
8296 return Original_Node (Inst);
8297 end if;
8298 end if;
8299
8300 -- If the instantiation is a compilation unit that does not need body
8301 -- then the instantiation node has been rewritten as a package
8302 -- declaration for the instance, and we return the original node.
8303
8304 -- If it is a compilation unit and the instance node has not been
8305 -- rewritten, then it is still the unit of the compilation. Finally, if
8306 -- a body is present, this is a parent of the main unit whose body has
8307 -- been compiled for inlining purposes, and the instantiation node has
8308 -- been rewritten with the instance body.
8309
8310 -- Otherwise the instantiation node appears after the declaration. If
8311 -- the entity is a formal package, the declaration may have been
8312 -- rewritten as a generic declaration (in the case of a formal with box)
8313 -- or left as a formal package declaration if it has actuals, and is
8314 -- found with a forward search.
8315
8316 if Nkind (Parent (Decl)) = N_Compilation_Unit then
8317 if Nkind (Decl) = N_Package_Declaration
8318 and then Present (Corresponding_Body (Decl))
8319 then
8320 Decl := Unit_Declaration_Node (Corresponding_Body (Decl));
8321 end if;
8322
8323 if Nkind (Original_Node (Decl)) = N_Package_Instantiation then
8324 return Original_Node (Decl);
8325 else
8326 return Unit (Parent (Decl));
8327 end if;
8328
8329 elsif Nkind (Decl) = N_Package_Declaration
8330 and then Nkind (Original_Node (Decl)) = N_Formal_Package_Declaration
8331 then
8332 return Original_Node (Decl);
8333
8334 else
8335 Inst := Next (Decl);
8336 while not Nkind_In (Inst, N_Package_Instantiation,
8337 N_Formal_Package_Declaration)
8338 loop
8339 Next (Inst);
8340 end loop;
8341
8342 return Inst;
8343 end if;
8344 end Get_Package_Instantiation_Node;
8345
8346 ------------------------
8347 -- Has_Been_Exchanged --
8348 ------------------------
8349
8350 function Has_Been_Exchanged (E : Entity_Id) return Boolean is
8351 Next : Elmt_Id;
8352
8353 begin
8354 Next := First_Elmt (Exchanged_Views);
8355 while Present (Next) loop
8356 if Full_View (Node (Next)) = E then
8357 return True;
8358 end if;
8359
8360 Next_Elmt (Next);
8361 end loop;
8362
8363 return False;
8364 end Has_Been_Exchanged;
8365
8366 ----------
8367 -- Hash --
8368 ----------
8369
8370 function Hash (F : Entity_Id) return HTable_Range is
8371 begin
8372 return HTable_Range (F mod HTable_Size);
8373 end Hash;
8374
8375 ------------------------
8376 -- Hide_Current_Scope --
8377 ------------------------
8378
8379 procedure Hide_Current_Scope is
8380 C : constant Entity_Id := Current_Scope;
8381 E : Entity_Id;
8382
8383 begin
8384 Set_Is_Hidden_Open_Scope (C);
8385
8386 E := First_Entity (C);
8387 while Present (E) loop
8388 if Is_Immediately_Visible (E) then
8389 Set_Is_Immediately_Visible (E, False);
8390 Append_Elmt (E, Hidden_Entities);
8391 end if;
8392
8393 Next_Entity (E);
8394 end loop;
8395
8396 -- Make the scope name invisible as well. This is necessary, but might
8397 -- conflict with calls to Rtsfind later on, in case the scope is a
8398 -- predefined one. There is no clean solution to this problem, so for
8399 -- now we depend on the user not redefining Standard itself in one of
8400 -- the parent units.
8401
8402 if Is_Immediately_Visible (C) and then C /= Standard_Standard then
8403 Set_Is_Immediately_Visible (C, False);
8404 Append_Elmt (C, Hidden_Entities);
8405 end if;
8406
8407 end Hide_Current_Scope;
8408
8409 --------------
8410 -- Init_Env --
8411 --------------
8412
8413 procedure Init_Env is
8414 Saved : Instance_Env;
8415
8416 begin
8417 Saved.Instantiated_Parent := Current_Instantiated_Parent;
8418 Saved.Exchanged_Views := Exchanged_Views;
8419 Saved.Hidden_Entities := Hidden_Entities;
8420 Saved.Current_Sem_Unit := Current_Sem_Unit;
8421 Saved.Parent_Unit_Visible := Parent_Unit_Visible;
8422 Saved.Instance_Parent_Unit := Instance_Parent_Unit;
8423
8424 -- Save configuration switches. These may be reset if the unit is a
8425 -- predefined unit, and the current mode is not Ada 2005.
8426
8427 Save_Opt_Config_Switches (Saved.Switches);
8428
8429 Instance_Envs.Append (Saved);
8430
8431 Exchanged_Views := New_Elmt_List;
8432 Hidden_Entities := New_Elmt_List;
8433
8434 -- Make dummy entry for Instantiated parent. If generic unit is legal,
8435 -- this is set properly in Set_Instance_Env.
8436
8437 Current_Instantiated_Parent :=
8438 (Current_Scope, Current_Scope, Assoc_Null);
8439 end Init_Env;
8440
8441 ------------------------------
8442 -- In_Same_Declarative_Part --
8443 ------------------------------
8444
8445 function In_Same_Declarative_Part
8446 (F_Node : Node_Id;
8447 Inst : Node_Id) return Boolean
8448 is
8449 Decls : constant Node_Id := Parent (F_Node);
8450 Nod : Node_Id;
8451
8452 begin
8453 Nod := Parent (Inst);
8454 while Present (Nod) loop
8455 if Nod = Decls then
8456 return True;
8457
8458 elsif Nkind_In (Nod, N_Subprogram_Body,
8459 N_Package_Body,
8460 N_Package_Declaration,
8461 N_Task_Body,
8462 N_Protected_Body,
8463 N_Block_Statement)
8464 then
8465 return False;
8466
8467 elsif Nkind (Nod) = N_Subunit then
8468 Nod := Corresponding_Stub (Nod);
8469
8470 elsif Nkind (Nod) = N_Compilation_Unit then
8471 return False;
8472
8473 else
8474 Nod := Parent (Nod);
8475 end if;
8476 end loop;
8477
8478 return False;
8479 end In_Same_Declarative_Part;
8480
8481 ---------------------
8482 -- In_Main_Context --
8483 ---------------------
8484
8485 function In_Main_Context (E : Entity_Id) return Boolean is
8486 Context : List_Id;
8487 Clause : Node_Id;
8488 Nam : Node_Id;
8489
8490 begin
8491 if not Is_Compilation_Unit (E)
8492 or else Ekind (E) /= E_Package
8493 or else In_Private_Part (E)
8494 then
8495 return False;
8496 end if;
8497
8498 Context := Context_Items (Cunit (Main_Unit));
8499
8500 Clause := First (Context);
8501 while Present (Clause) loop
8502 if Nkind (Clause) = N_With_Clause then
8503 Nam := Name (Clause);
8504
8505 -- If the current scope is part of the context of the main unit,
8506 -- analysis of the corresponding with_clause is not complete, and
8507 -- the entity is not set. We use the Chars field directly, which
8508 -- might produce false positives in rare cases, but guarantees
8509 -- that we produce all the instance bodies we will need.
8510
8511 if (Is_Entity_Name (Nam) and then Chars (Nam) = Chars (E))
8512 or else (Nkind (Nam) = N_Selected_Component
8513 and then Chars (Selector_Name (Nam)) = Chars (E))
8514 then
8515 return True;
8516 end if;
8517 end if;
8518
8519 Next (Clause);
8520 end loop;
8521
8522 return False;
8523 end In_Main_Context;
8524
8525 ---------------------
8526 -- Inherit_Context --
8527 ---------------------
8528
8529 procedure Inherit_Context (Gen_Decl : Node_Id; Inst : Node_Id) is
8530 Current_Context : List_Id;
8531 Current_Unit : Node_Id;
8532 Item : Node_Id;
8533 New_I : Node_Id;
8534
8535 Clause : Node_Id;
8536 OK : Boolean;
8537 Lib_Unit : Node_Id;
8538
8539 begin
8540 if Nkind (Parent (Gen_Decl)) = N_Compilation_Unit then
8541
8542 -- The inherited context is attached to the enclosing compilation
8543 -- unit. This is either the main unit, or the declaration for the
8544 -- main unit (in case the instantiation appears within the package
8545 -- declaration and the main unit is its body).
8546
8547 Current_Unit := Parent (Inst);
8548 while Present (Current_Unit)
8549 and then Nkind (Current_Unit) /= N_Compilation_Unit
8550 loop
8551 Current_Unit := Parent (Current_Unit);
8552 end loop;
8553
8554 Current_Context := Context_Items (Current_Unit);
8555
8556 Item := First (Context_Items (Parent (Gen_Decl)));
8557 while Present (Item) loop
8558 if Nkind (Item) = N_With_Clause then
8559 Lib_Unit := Library_Unit (Item);
8560
8561 -- Take care to prevent direct cyclic with's
8562
8563 if Lib_Unit /= Current_Unit then
8564
8565 -- Do not add a unit if it is already in the context
8566
8567 Clause := First (Current_Context);
8568 OK := True;
8569 while Present (Clause) loop
8570 if Nkind (Clause) = N_With_Clause and then
8571 Library_Unit (Clause) = Lib_Unit
8572 then
8573 OK := False;
8574 exit;
8575 end if;
8576
8577 Next (Clause);
8578 end loop;
8579
8580 if OK then
8581 New_I := New_Copy (Item);
8582 Set_Implicit_With (New_I, True);
8583 Set_Implicit_With_From_Instantiation (New_I, True);
8584 Append (New_I, Current_Context);
8585 end if;
8586 end if;
8587 end if;
8588
8589 Next (Item);
8590 end loop;
8591 end if;
8592 end Inherit_Context;
8593
8594 ----------------
8595 -- Initialize --
8596 ----------------
8597
8598 procedure Initialize is
8599 begin
8600 Generic_Renamings.Init;
8601 Instance_Envs.Init;
8602 Generic_Flags.Init;
8603 Generic_Renamings_HTable.Reset;
8604 Circularity_Detected := False;
8605 Exchanged_Views := No_Elist;
8606 Hidden_Entities := No_Elist;
8607 end Initialize;
8608
8609 -------------------------------------
8610 -- Insert_Freeze_Node_For_Instance --
8611 -------------------------------------
8612
8613 procedure Insert_Freeze_Node_For_Instance
8614 (N : Node_Id;
8615 F_Node : Node_Id)
8616 is
8617 Decl : Node_Id;
8618 Decls : List_Id;
8619 Inst : Entity_Id;
8620 Par_N : Node_Id;
8621
8622 function Enclosing_Body (N : Node_Id) return Node_Id;
8623 -- Find enclosing package or subprogram body, if any. Freeze node may
8624 -- be placed at end of current declarative list if previous instance
8625 -- and current one have different enclosing bodies.
8626
8627 function Previous_Instance (Gen : Entity_Id) return Entity_Id;
8628 -- Find the local instance, if any, that declares the generic that is
8629 -- being instantiated. If present, the freeze node for this instance
8630 -- must follow the freeze node for the previous instance.
8631
8632 --------------------
8633 -- Enclosing_Body --
8634 --------------------
8635
8636 function Enclosing_Body (N : Node_Id) return Node_Id is
8637 P : Node_Id;
8638
8639 begin
8640 P := Parent (N);
8641 while Present (P)
8642 and then Nkind (Parent (P)) /= N_Compilation_Unit
8643 loop
8644 if Nkind_In (P, N_Package_Body, N_Subprogram_Body) then
8645 if Nkind (Parent (P)) = N_Subunit then
8646 return Corresponding_Stub (Parent (P));
8647 else
8648 return P;
8649 end if;
8650 end if;
8651
8652 P := True_Parent (P);
8653 end loop;
8654
8655 return Empty;
8656 end Enclosing_Body;
8657
8658 -----------------------
8659 -- Previous_Instance --
8660 -----------------------
8661
8662 function Previous_Instance (Gen : Entity_Id) return Entity_Id is
8663 S : Entity_Id;
8664
8665 begin
8666 S := Scope (Gen);
8667 while Present (S) and then S /= Standard_Standard loop
8668 if Is_Generic_Instance (S)
8669 and then In_Same_Source_Unit (S, N)
8670 then
8671 return S;
8672 end if;
8673
8674 S := Scope (S);
8675 end loop;
8676
8677 return Empty;
8678 end Previous_Instance;
8679
8680 -- Start of processing for Insert_Freeze_Node_For_Instance
8681
8682 begin
8683 if not Is_List_Member (F_Node) then
8684 Decl := N;
8685 Decls := List_Containing (N);
8686 Inst := Entity (F_Node);
8687 Par_N := Parent (Decls);
8688
8689 -- When processing a subprogram instantiation, utilize the actual
8690 -- subprogram instantiation rather than its package wrapper as it
8691 -- carries all the context information.
8692
8693 if Is_Wrapper_Package (Inst) then
8694 Inst := Related_Instance (Inst);
8695 end if;
8696
8697 -- If this is a package instance, check whether the generic is
8698 -- declared in a previous instance and the current instance is
8699 -- not within the previous one.
8700
8701 if Present (Generic_Parent (Parent (Inst)))
8702 and then Is_In_Main_Unit (N)
8703 then
8704 declare
8705 Enclosing_N : constant Node_Id := Enclosing_Body (N);
8706 Par_I : constant Entity_Id :=
8707 Previous_Instance
8708 (Generic_Parent (Parent (Inst)));
8709 Scop : Entity_Id;
8710
8711 begin
8712 if Present (Par_I)
8713 and then Earlier (N, Freeze_Node (Par_I))
8714 then
8715 Scop := Scope (Inst);
8716
8717 -- If the current instance is within the one that contains
8718 -- the generic, the freeze node for the current one must
8719 -- appear in the current declarative part. Ditto, if the
8720 -- current instance is within another package instance or
8721 -- within a body that does not enclose the current instance.
8722 -- In these three cases the freeze node of the previous
8723 -- instance is not relevant.
8724
8725 while Present (Scop) and then Scop /= Standard_Standard loop
8726 exit when Scop = Par_I
8727 or else
8728 (Is_Generic_Instance (Scop)
8729 and then Scope_Depth (Scop) > Scope_Depth (Par_I));
8730 Scop := Scope (Scop);
8731 end loop;
8732
8733 -- Previous instance encloses current instance
8734
8735 if Scop = Par_I then
8736 null;
8737
8738 -- If the next node is a source body we must freeze in
8739 -- the current scope as well.
8740
8741 elsif Present (Next (N))
8742 and then Nkind_In (Next (N), N_Subprogram_Body,
8743 N_Package_Body)
8744 and then Comes_From_Source (Next (N))
8745 then
8746 null;
8747
8748 -- Current instance is within an unrelated instance
8749
8750 elsif Is_Generic_Instance (Scop) then
8751 null;
8752
8753 -- Current instance is within an unrelated body
8754
8755 elsif Present (Enclosing_N)
8756 and then Enclosing_N /= Enclosing_Body (Par_I)
8757 then
8758 null;
8759
8760 else
8761 Insert_After (Freeze_Node (Par_I), F_Node);
8762 return;
8763 end if;
8764 end if;
8765 end;
8766 end if;
8767
8768 -- When the instantiation occurs in a package declaration, append the
8769 -- freeze node to the private declarations (if any).
8770
8771 if Nkind (Par_N) = N_Package_Specification
8772 and then Decls = Visible_Declarations (Par_N)
8773 and then Present (Private_Declarations (Par_N))
8774 and then not Is_Empty_List (Private_Declarations (Par_N))
8775 then
8776 Decls := Private_Declarations (Par_N);
8777 Decl := First (Decls);
8778 end if;
8779
8780 -- Determine the proper freeze point of a package instantiation. We
8781 -- adhere to the general rule of a package or subprogram body causing
8782 -- freezing of anything before it in the same declarative region. In
8783 -- this case, the proper freeze point of a package instantiation is
8784 -- before the first source body which follows, or before a stub. This
8785 -- ensures that entities coming from the instance are already frozen
8786 -- and usable in source bodies.
8787
8788 if Nkind (Par_N) /= N_Package_Declaration
8789 and then Ekind (Inst) = E_Package
8790 and then Is_Generic_Instance (Inst)
8791 and then
8792 not In_Same_Source_Unit (Generic_Parent (Parent (Inst)), Inst)
8793 then
8794 while Present (Decl) loop
8795 if (Nkind (Decl) in N_Unit_Body
8796 or else
8797 Nkind (Decl) in N_Body_Stub)
8798 and then Comes_From_Source (Decl)
8799 then
8800 Insert_Before (Decl, F_Node);
8801 return;
8802 end if;
8803
8804 Next (Decl);
8805 end loop;
8806 end if;
8807
8808 -- In a package declaration, or if no previous body, insert at end
8809 -- of list.
8810
8811 Set_Sloc (F_Node, Sloc (Last (Decls)));
8812 Insert_After (Last (Decls), F_Node);
8813 end if;
8814 end Insert_Freeze_Node_For_Instance;
8815
8816 ------------------
8817 -- Install_Body --
8818 ------------------
8819
8820 procedure Install_Body
8821 (Act_Body : Node_Id;
8822 N : Node_Id;
8823 Gen_Body : Node_Id;
8824 Gen_Decl : Node_Id)
8825 is
8826 Act_Id : constant Entity_Id := Corresponding_Spec (Act_Body);
8827 Act_Unit : constant Node_Id := Unit (Cunit (Get_Source_Unit (N)));
8828 Gen_Id : constant Entity_Id := Corresponding_Spec (Gen_Body);
8829 Par : constant Entity_Id := Scope (Gen_Id);
8830 Gen_Unit : constant Node_Id :=
8831 Unit (Cunit (Get_Source_Unit (Gen_Decl)));
8832 Orig_Body : Node_Id := Gen_Body;
8833 F_Node : Node_Id;
8834 Body_Unit : Node_Id;
8835
8836 Must_Delay : Boolean;
8837
8838 function In_Same_Enclosing_Subp return Boolean;
8839 -- Check whether instance and generic body are within same subprogram.
8840
8841 function True_Sloc (N : Node_Id) return Source_Ptr;
8842 -- If the instance is nested inside a generic unit, the Sloc of the
8843 -- instance indicates the place of the original definition, not the
8844 -- point of the current enclosing instance. Pending a better usage of
8845 -- Slocs to indicate instantiation places, we determine the place of
8846 -- origin of a node by finding the maximum sloc of any ancestor node.
8847 -- Why is this not equivalent to Top_Level_Location ???
8848
8849 ----------------------------
8850 -- In_Same_Enclosing_Subp --
8851 ----------------------------
8852
8853 function In_Same_Enclosing_Subp return Boolean is
8854 Scop : Entity_Id;
8855 Subp : Entity_Id;
8856
8857 begin
8858 Scop := Scope (Act_Id);
8859 while Scop /= Standard_Standard
8860 and then not Is_Overloadable (Scop)
8861 loop
8862 Scop := Scope (Scop);
8863 end loop;
8864
8865 if Scop = Standard_Standard then
8866 return False;
8867 else
8868 Subp := Scop;
8869 end if;
8870
8871 Scop := Scope (Gen_Id);
8872 while Scop /= Standard_Standard loop
8873 if Scop = Subp then
8874 return True;
8875 else
8876 Scop := Scope (Scop);
8877 end if;
8878 end loop;
8879
8880 return False;
8881 end In_Same_Enclosing_Subp;
8882
8883 ---------------
8884 -- True_Sloc --
8885 ---------------
8886
8887 function True_Sloc (N : Node_Id) return Source_Ptr is
8888 Res : Source_Ptr;
8889 N1 : Node_Id;
8890
8891 begin
8892 Res := Sloc (N);
8893 N1 := N;
8894 while Present (N1) and then N1 /= Act_Unit loop
8895 if Sloc (N1) > Res then
8896 Res := Sloc (N1);
8897 end if;
8898
8899 N1 := Parent (N1);
8900 end loop;
8901
8902 return Res;
8903 end True_Sloc;
8904
8905 -- Start of processing for Install_Body
8906
8907 begin
8908 -- Handle first the case of an instance with incomplete actual types.
8909 -- The instance body cannot be placed after the declaration because
8910 -- full views have not been seen yet. Any use of the non-limited views
8911 -- in the instance body requires the presence of a regular with_clause
8912 -- in the enclosing unit, and will fail if this with_clause is missing.
8913 -- We place the instance body at the beginning of the enclosing body,
8914 -- which is the unit being compiled. The freeze node for the instance
8915 -- is then placed after the instance body.
8916
8917 if not Is_Empty_Elmt_List (Incomplete_Actuals (Act_Id))
8918 and then Expander_Active
8919 and then Ekind (Scope (Act_Id)) = E_Package
8920 then
8921 declare
8922 Scop : constant Entity_Id := Scope (Act_Id);
8923 Body_Id : constant Node_Id :=
8924 Corresponding_Body (Unit_Declaration_Node (Scop));
8925
8926 begin
8927 Ensure_Freeze_Node (Act_Id);
8928 F_Node := Freeze_Node (Act_Id);
8929 if Present (Body_Id) then
8930 Set_Is_Frozen (Act_Id, False);
8931 Prepend (Act_Body, Declarations (Parent (Body_Id)));
8932 if Is_List_Member (F_Node) then
8933 Remove (F_Node);
8934 end if;
8935
8936 Insert_After (Act_Body, F_Node);
8937 end if;
8938 end;
8939 return;
8940 end if;
8941
8942 -- If the body is a subunit, the freeze point is the corresponding stub
8943 -- in the current compilation, not the subunit itself.
8944
8945 if Nkind (Parent (Gen_Body)) = N_Subunit then
8946 Orig_Body := Corresponding_Stub (Parent (Gen_Body));
8947 else
8948 Orig_Body := Gen_Body;
8949 end if;
8950
8951 Body_Unit := Unit (Cunit (Get_Source_Unit (Orig_Body)));
8952
8953 -- If the instantiation and the generic definition appear in the same
8954 -- package declaration, this is an early instantiation. If they appear
8955 -- in the same declarative part, it is an early instantiation only if
8956 -- the generic body appears textually later, and the generic body is
8957 -- also in the main unit.
8958
8959 -- If instance is nested within a subprogram, and the generic body
8960 -- is not, the instance is delayed because the enclosing body is. If
8961 -- instance and body are within the same scope, or the same subprogram
8962 -- body, indicate explicitly that the instance is delayed.
8963
8964 Must_Delay :=
8965 (Gen_Unit = Act_Unit
8966 and then (Nkind_In (Gen_Unit, N_Package_Declaration,
8967 N_Generic_Package_Declaration)
8968 or else (Gen_Unit = Body_Unit
8969 and then True_Sloc (N) < Sloc (Orig_Body)))
8970 and then Is_In_Main_Unit (Gen_Unit)
8971 and then (Scope (Act_Id) = Scope (Gen_Id)
8972 or else In_Same_Enclosing_Subp));
8973
8974 -- If this is an early instantiation, the freeze node is placed after
8975 -- the generic body. Otherwise, if the generic appears in an instance,
8976 -- we cannot freeze the current instance until the outer one is frozen.
8977 -- This is only relevant if the current instance is nested within some
8978 -- inner scope not itself within the outer instance. If this scope is
8979 -- a package body in the same declarative part as the outer instance,
8980 -- then that body needs to be frozen after the outer instance. Finally,
8981 -- if no delay is needed, we place the freeze node at the end of the
8982 -- current declarative part.
8983
8984 if Expander_Active then
8985 Ensure_Freeze_Node (Act_Id);
8986 F_Node := Freeze_Node (Act_Id);
8987
8988 if Must_Delay then
8989 Insert_After (Orig_Body, F_Node);
8990
8991 elsif Is_Generic_Instance (Par)
8992 and then Present (Freeze_Node (Par))
8993 and then Scope (Act_Id) /= Par
8994 then
8995 -- Freeze instance of inner generic after instance of enclosing
8996 -- generic.
8997
8998 if In_Same_Declarative_Part (Freeze_Node (Par), N) then
8999
9000 -- Handle the following case:
9001
9002 -- package Parent_Inst is new ...
9003 -- Parent_Inst []
9004
9005 -- procedure P ... -- this body freezes Parent_Inst
9006
9007 -- package Inst is new ...
9008
9009 -- In this particular scenario, the freeze node for Inst must
9010 -- be inserted in the same manner as that of Parent_Inst,
9011 -- before the next source body or at the end of the declarative
9012 -- list (body not available). If body P did not exist and
9013 -- Parent_Inst was frozen after Inst, either by a body
9014 -- following Inst or at the end of the declarative region,
9015 -- the freeze node for Inst must be inserted after that of
9016 -- Parent_Inst. This relation is established by comparing
9017 -- the Slocs of Parent_Inst freeze node and Inst.
9018
9019 if List_Containing (Get_Package_Instantiation_Node (Par)) =
9020 List_Containing (N)
9021 and then Sloc (Freeze_Node (Par)) < Sloc (N)
9022 then
9023 Insert_Freeze_Node_For_Instance (N, F_Node);
9024 else
9025 Insert_After (Freeze_Node (Par), F_Node);
9026 end if;
9027
9028 -- Freeze package enclosing instance of inner generic after
9029 -- instance of enclosing generic.
9030
9031 elsif Nkind_In (Parent (N), N_Package_Body, N_Subprogram_Body)
9032 and then In_Same_Declarative_Part (Freeze_Node (Par), Parent (N))
9033 then
9034 declare
9035 Enclosing : Entity_Id;
9036
9037 begin
9038 Enclosing := Corresponding_Spec (Parent (N));
9039
9040 if No (Enclosing) then
9041 Enclosing := Defining_Entity (Parent (N));
9042 end if;
9043
9044 Insert_Freeze_Node_For_Instance (N, F_Node);
9045 Ensure_Freeze_Node (Enclosing);
9046
9047 if not Is_List_Member (Freeze_Node (Enclosing)) then
9048
9049 -- The enclosing context is a subunit, insert the freeze
9050 -- node after the stub.
9051
9052 if Nkind (Parent (Parent (N))) = N_Subunit then
9053 Insert_Freeze_Node_For_Instance
9054 (Corresponding_Stub (Parent (Parent (N))),
9055 Freeze_Node (Enclosing));
9056
9057 -- The enclosing context is a package with a stub body
9058 -- which has already been replaced by the real body.
9059 -- Insert the freeze node after the actual body.
9060
9061 elsif Ekind (Enclosing) = E_Package
9062 and then Present (Body_Entity (Enclosing))
9063 and then Was_Originally_Stub
9064 (Parent (Body_Entity (Enclosing)))
9065 then
9066 Insert_Freeze_Node_For_Instance
9067 (Parent (Body_Entity (Enclosing)),
9068 Freeze_Node (Enclosing));
9069
9070 -- The parent instance has been frozen before the body of
9071 -- the enclosing package, insert the freeze node after
9072 -- the body.
9073
9074 elsif List_Containing (Freeze_Node (Par)) =
9075 List_Containing (Parent (N))
9076 and then Sloc (Freeze_Node (Par)) < Sloc (Parent (N))
9077 then
9078 Insert_Freeze_Node_For_Instance
9079 (Parent (N), Freeze_Node (Enclosing));
9080
9081 else
9082 Insert_After
9083 (Freeze_Node (Par), Freeze_Node (Enclosing));
9084 end if;
9085 end if;
9086 end;
9087
9088 else
9089 Insert_Freeze_Node_For_Instance (N, F_Node);
9090 end if;
9091
9092 else
9093 Insert_Freeze_Node_For_Instance (N, F_Node);
9094 end if;
9095 end if;
9096
9097 Set_Is_Frozen (Act_Id);
9098 Insert_Before (N, Act_Body);
9099 Mark_Rewrite_Insertion (Act_Body);
9100 end Install_Body;
9101
9102 -----------------------------
9103 -- Install_Formal_Packages --
9104 -----------------------------
9105
9106 procedure Install_Formal_Packages (Par : Entity_Id) is
9107 E : Entity_Id;
9108 Gen : Entity_Id;
9109 Gen_E : Entity_Id := Empty;
9110
9111 begin
9112 E := First_Entity (Par);
9113
9114 -- If we are installing an instance parent, locate the formal packages
9115 -- of its generic parent.
9116
9117 if Is_Generic_Instance (Par) then
9118 Gen := Generic_Parent (Package_Specification (Par));
9119 Gen_E := First_Entity (Gen);
9120 end if;
9121
9122 while Present (E) loop
9123 if Ekind (E) = E_Package
9124 and then Nkind (Parent (E)) = N_Package_Renaming_Declaration
9125 then
9126 -- If this is the renaming for the parent instance, done
9127
9128 if Renamed_Object (E) = Par then
9129 exit;
9130
9131 -- The visibility of a formal of an enclosing generic is already
9132 -- correct.
9133
9134 elsif Denotes_Formal_Package (E) then
9135 null;
9136
9137 elsif Present (Associated_Formal_Package (E)) then
9138 Check_Generic_Actuals (Renamed_Object (E), True);
9139 Set_Is_Hidden (E, False);
9140
9141 -- Find formal package in generic unit that corresponds to
9142 -- (instance of) formal package in instance.
9143
9144 while Present (Gen_E) and then Chars (Gen_E) /= Chars (E) loop
9145 Next_Entity (Gen_E);
9146 end loop;
9147
9148 if Present (Gen_E) then
9149 Map_Formal_Package_Entities (Gen_E, E);
9150 end if;
9151 end if;
9152 end if;
9153
9154 Next_Entity (E);
9155
9156 if Present (Gen_E) then
9157 Next_Entity (Gen_E);
9158 end if;
9159 end loop;
9160 end Install_Formal_Packages;
9161
9162 --------------------
9163 -- Install_Parent --
9164 --------------------
9165
9166 procedure Install_Parent (P : Entity_Id; In_Body : Boolean := False) is
9167 Ancestors : constant Elist_Id := New_Elmt_List;
9168 S : constant Entity_Id := Current_Scope;
9169 Inst_Par : Entity_Id;
9170 First_Par : Entity_Id;
9171 Inst_Node : Node_Id;
9172 Gen_Par : Entity_Id;
9173 First_Gen : Entity_Id;
9174 Elmt : Elmt_Id;
9175
9176 procedure Install_Noninstance_Specs (Par : Entity_Id);
9177 -- Install the scopes of noninstance parent units ending with Par
9178
9179 procedure Install_Spec (Par : Entity_Id);
9180 -- The child unit is within the declarative part of the parent, so the
9181 -- declarations within the parent are immediately visible.
9182
9183 -------------------------------
9184 -- Install_Noninstance_Specs --
9185 -------------------------------
9186
9187 procedure Install_Noninstance_Specs (Par : Entity_Id) is
9188 begin
9189 if Present (Par)
9190 and then Par /= Standard_Standard
9191 and then not In_Open_Scopes (Par)
9192 then
9193 Install_Noninstance_Specs (Scope (Par));
9194 Install_Spec (Par);
9195 end if;
9196 end Install_Noninstance_Specs;
9197
9198 ------------------
9199 -- Install_Spec --
9200 ------------------
9201
9202 procedure Install_Spec (Par : Entity_Id) is
9203 Spec : constant Node_Id := Package_Specification (Par);
9204
9205 begin
9206 -- If this parent of the child instance is a top-level unit,
9207 -- then record the unit and its visibility for later resetting in
9208 -- Remove_Parent. We exclude units that are generic instances, as we
9209 -- only want to record this information for the ultimate top-level
9210 -- noninstance parent (is that always correct???).
9211
9212 if Scope (Par) = Standard_Standard
9213 and then not Is_Generic_Instance (Par)
9214 then
9215 Parent_Unit_Visible := Is_Immediately_Visible (Par);
9216 Instance_Parent_Unit := Par;
9217 end if;
9218
9219 -- Open the parent scope and make it and its declarations visible.
9220 -- If this point is not within a body, then only the visible
9221 -- declarations should be made visible, and installation of the
9222 -- private declarations is deferred until the appropriate point
9223 -- within analysis of the spec being instantiated (see the handling
9224 -- of parent visibility in Analyze_Package_Specification). This is
9225 -- relaxed in the case where the parent unit is Ada.Tags, to avoid
9226 -- private view problems that occur when compiling instantiations of
9227 -- a generic child of that package (Generic_Dispatching_Constructor).
9228 -- If the instance freezes a tagged type, inlinings of operations
9229 -- from Ada.Tags may need the full view of type Tag. If inlining took
9230 -- proper account of establishing visibility of inlined subprograms'
9231 -- parents then it should be possible to remove this
9232 -- special check. ???
9233
9234 Push_Scope (Par);
9235 Set_Is_Immediately_Visible (Par);
9236 Install_Visible_Declarations (Par);
9237 Set_Use (Visible_Declarations (Spec));
9238
9239 if In_Body or else Is_RTU (Par, Ada_Tags) then
9240 Install_Private_Declarations (Par);
9241 Set_Use (Private_Declarations (Spec));
9242 end if;
9243 end Install_Spec;
9244
9245 -- Start of processing for Install_Parent
9246
9247 begin
9248 -- We need to install the parent instance to compile the instantiation
9249 -- of the child, but the child instance must appear in the current
9250 -- scope. Given that we cannot place the parent above the current scope
9251 -- in the scope stack, we duplicate the current scope and unstack both
9252 -- after the instantiation is complete.
9253
9254 -- If the parent is itself the instantiation of a child unit, we must
9255 -- also stack the instantiation of its parent, and so on. Each such
9256 -- ancestor is the prefix of the name in a prior instantiation.
9257
9258 -- If this is a nested instance, the parent unit itself resolves to
9259 -- a renaming of the parent instance, whose declaration we need.
9260
9261 -- Finally, the parent may be a generic (not an instance) when the
9262 -- child unit appears as a formal package.
9263
9264 Inst_Par := P;
9265
9266 if Present (Renamed_Entity (Inst_Par)) then
9267 Inst_Par := Renamed_Entity (Inst_Par);
9268 end if;
9269
9270 First_Par := Inst_Par;
9271
9272 Gen_Par := Generic_Parent (Package_Specification (Inst_Par));
9273
9274 First_Gen := Gen_Par;
9275
9276 while Present (Gen_Par) and then Is_Child_Unit (Gen_Par) loop
9277
9278 -- Load grandparent instance as well
9279
9280 Inst_Node := Get_Package_Instantiation_Node (Inst_Par);
9281
9282 if Nkind (Name (Inst_Node)) = N_Expanded_Name then
9283 Inst_Par := Entity (Prefix (Name (Inst_Node)));
9284
9285 if Present (Renamed_Entity (Inst_Par)) then
9286 Inst_Par := Renamed_Entity (Inst_Par);
9287 end if;
9288
9289 Gen_Par := Generic_Parent (Package_Specification (Inst_Par));
9290
9291 if Present (Gen_Par) then
9292 Prepend_Elmt (Inst_Par, Ancestors);
9293
9294 else
9295 -- Parent is not the name of an instantiation
9296
9297 Install_Noninstance_Specs (Inst_Par);
9298 exit;
9299 end if;
9300
9301 else
9302 -- Previous error
9303
9304 exit;
9305 end if;
9306 end loop;
9307
9308 if Present (First_Gen) then
9309 Append_Elmt (First_Par, Ancestors);
9310 else
9311 Install_Noninstance_Specs (First_Par);
9312 end if;
9313
9314 if not Is_Empty_Elmt_List (Ancestors) then
9315 Elmt := First_Elmt (Ancestors);
9316 while Present (Elmt) loop
9317 Install_Spec (Node (Elmt));
9318 Install_Formal_Packages (Node (Elmt));
9319 Next_Elmt (Elmt);
9320 end loop;
9321 end if;
9322
9323 if not In_Body then
9324 Push_Scope (S);
9325 end if;
9326 end Install_Parent;
9327
9328 -------------------------------
9329 -- Install_Hidden_Primitives --
9330 -------------------------------
9331
9332 procedure Install_Hidden_Primitives
9333 (Prims_List : in out Elist_Id;
9334 Gen_T : Entity_Id;
9335 Act_T : Entity_Id)
9336 is
9337 Elmt : Elmt_Id;
9338 List : Elist_Id := No_Elist;
9339 Prim_G_Elmt : Elmt_Id;
9340 Prim_A_Elmt : Elmt_Id;
9341 Prim_G : Node_Id;
9342 Prim_A : Node_Id;
9343
9344 begin
9345 -- No action needed in case of serious errors because we cannot trust
9346 -- in the order of primitives
9347
9348 if Serious_Errors_Detected > 0 then
9349 return;
9350
9351 -- No action possible if we don't have available the list of primitive
9352 -- operations
9353
9354 elsif No (Gen_T)
9355 or else not Is_Record_Type (Gen_T)
9356 or else not Is_Tagged_Type (Gen_T)
9357 or else not Is_Record_Type (Act_T)
9358 or else not Is_Tagged_Type (Act_T)
9359 then
9360 return;
9361
9362 -- There is no need to handle interface types since their primitives
9363 -- cannot be hidden
9364
9365 elsif Is_Interface (Gen_T) then
9366 return;
9367 end if;
9368
9369 Prim_G_Elmt := First_Elmt (Primitive_Operations (Gen_T));
9370
9371 if not Is_Class_Wide_Type (Act_T) then
9372 Prim_A_Elmt := First_Elmt (Primitive_Operations (Act_T));
9373 else
9374 Prim_A_Elmt := First_Elmt (Primitive_Operations (Root_Type (Act_T)));
9375 end if;
9376
9377 loop
9378 -- Skip predefined primitives in the generic formal
9379
9380 while Present (Prim_G_Elmt)
9381 and then Is_Predefined_Dispatching_Operation (Node (Prim_G_Elmt))
9382 loop
9383 Next_Elmt (Prim_G_Elmt);
9384 end loop;
9385
9386 -- Skip predefined primitives in the generic actual
9387
9388 while Present (Prim_A_Elmt)
9389 and then Is_Predefined_Dispatching_Operation (Node (Prim_A_Elmt))
9390 loop
9391 Next_Elmt (Prim_A_Elmt);
9392 end loop;
9393
9394 exit when No (Prim_G_Elmt) or else No (Prim_A_Elmt);
9395
9396 Prim_G := Node (Prim_G_Elmt);
9397 Prim_A := Node (Prim_A_Elmt);
9398
9399 -- There is no need to handle interface primitives because their
9400 -- primitives are not hidden
9401
9402 exit when Present (Interface_Alias (Prim_G));
9403
9404 -- Here we install one hidden primitive
9405
9406 if Chars (Prim_G) /= Chars (Prim_A)
9407 and then Has_Suffix (Prim_A, 'P')
9408 and then Remove_Suffix (Prim_A, 'P') = Chars (Prim_G)
9409 then
9410 Set_Chars (Prim_A, Chars (Prim_G));
9411 Append_New_Elmt (Prim_A, To => List);
9412 end if;
9413
9414 Next_Elmt (Prim_A_Elmt);
9415 Next_Elmt (Prim_G_Elmt);
9416 end loop;
9417
9418 -- Append the elements to the list of temporarily visible primitives
9419 -- avoiding duplicates.
9420
9421 if Present (List) then
9422 if No (Prims_List) then
9423 Prims_List := New_Elmt_List;
9424 end if;
9425
9426 Elmt := First_Elmt (List);
9427 while Present (Elmt) loop
9428 Append_Unique_Elmt (Node (Elmt), Prims_List);
9429 Next_Elmt (Elmt);
9430 end loop;
9431 end if;
9432 end Install_Hidden_Primitives;
9433
9434 -------------------------------
9435 -- Restore_Hidden_Primitives --
9436 -------------------------------
9437
9438 procedure Restore_Hidden_Primitives (Prims_List : in out Elist_Id) is
9439 Prim_Elmt : Elmt_Id;
9440 Prim : Node_Id;
9441
9442 begin
9443 if Prims_List /= No_Elist then
9444 Prim_Elmt := First_Elmt (Prims_List);
9445 while Present (Prim_Elmt) loop
9446 Prim := Node (Prim_Elmt);
9447 Set_Chars (Prim, Add_Suffix (Prim, 'P'));
9448 Next_Elmt (Prim_Elmt);
9449 end loop;
9450
9451 Prims_List := No_Elist;
9452 end if;
9453 end Restore_Hidden_Primitives;
9454
9455 --------------------------------
9456 -- Instantiate_Formal_Package --
9457 --------------------------------
9458
9459 function Instantiate_Formal_Package
9460 (Formal : Node_Id;
9461 Actual : Node_Id;
9462 Analyzed_Formal : Node_Id) return List_Id
9463 is
9464 Loc : constant Source_Ptr := Sloc (Actual);
9465 Actual_Pack : Entity_Id;
9466 Formal_Pack : Entity_Id;
9467 Gen_Parent : Entity_Id;
9468 Decls : List_Id;
9469 Nod : Node_Id;
9470 Parent_Spec : Node_Id;
9471
9472 procedure Find_Matching_Actual
9473 (F : Node_Id;
9474 Act : in out Entity_Id);
9475 -- We need to associate each formal entity in the formal package with
9476 -- the corresponding entity in the actual package. The actual package
9477 -- has been analyzed and possibly expanded, and as a result there is
9478 -- no one-to-one correspondence between the two lists (for example,
9479 -- the actual may include subtypes, itypes, and inherited primitive
9480 -- operations, interspersed among the renaming declarations for the
9481 -- actuals). We retrieve the corresponding actual by name because each
9482 -- actual has the same name as the formal, and they do appear in the
9483 -- same order.
9484
9485 function Get_Formal_Entity (N : Node_Id) return Entity_Id;
9486 -- Retrieve entity of defining entity of generic formal parameter.
9487 -- Only the declarations of formals need to be considered when
9488 -- linking them to actuals, but the declarative list may include
9489 -- internal entities generated during analysis, and those are ignored.
9490
9491 procedure Match_Formal_Entity
9492 (Formal_Node : Node_Id;
9493 Formal_Ent : Entity_Id;
9494 Actual_Ent : Entity_Id);
9495 -- Associates the formal entity with the actual. In the case where
9496 -- Formal_Ent is a formal package, this procedure iterates through all
9497 -- of its formals and enters associations between the actuals occurring
9498 -- in the formal package's corresponding actual package (given by
9499 -- Actual_Ent) and the formal package's formal parameters. This
9500 -- procedure recurses if any of the parameters is itself a package.
9501
9502 function Is_Instance_Of
9503 (Act_Spec : Entity_Id;
9504 Gen_Anc : Entity_Id) return Boolean;
9505 -- The actual can be an instantiation of a generic within another
9506 -- instance, in which case there is no direct link from it to the
9507 -- original generic ancestor. In that case, we recognize that the
9508 -- ultimate ancestor is the same by examining names and scopes.
9509
9510 procedure Process_Nested_Formal (Formal : Entity_Id);
9511 -- If the current formal is declared with a box, its own formals are
9512 -- visible in the instance, as they were in the generic, and their
9513 -- Hidden flag must be reset. If some of these formals are themselves
9514 -- packages declared with a box, the processing must be recursive.
9515
9516 --------------------------
9517 -- Find_Matching_Actual --
9518 --------------------------
9519
9520 procedure Find_Matching_Actual
9521 (F : Node_Id;
9522 Act : in out Entity_Id)
9523 is
9524 Formal_Ent : Entity_Id;
9525
9526 begin
9527 case Nkind (Original_Node (F)) is
9528 when N_Formal_Object_Declaration |
9529 N_Formal_Type_Declaration =>
9530 Formal_Ent := Defining_Identifier (F);
9531
9532 while Chars (Act) /= Chars (Formal_Ent) loop
9533 Next_Entity (Act);
9534 end loop;
9535
9536 when N_Formal_Subprogram_Declaration |
9537 N_Formal_Package_Declaration |
9538 N_Package_Declaration |
9539 N_Generic_Package_Declaration =>
9540 Formal_Ent := Defining_Entity (F);
9541
9542 while Chars (Act) /= Chars (Formal_Ent) loop
9543 Next_Entity (Act);
9544 end loop;
9545
9546 when others =>
9547 raise Program_Error;
9548 end case;
9549 end Find_Matching_Actual;
9550
9551 -------------------------
9552 -- Match_Formal_Entity --
9553 -------------------------
9554
9555 procedure Match_Formal_Entity
9556 (Formal_Node : Node_Id;
9557 Formal_Ent : Entity_Id;
9558 Actual_Ent : Entity_Id)
9559 is
9560 Act_Pkg : Entity_Id;
9561
9562 begin
9563 Set_Instance_Of (Formal_Ent, Actual_Ent);
9564
9565 if Ekind (Actual_Ent) = E_Package then
9566
9567 -- Record associations for each parameter
9568
9569 Act_Pkg := Actual_Ent;
9570
9571 declare
9572 A_Ent : Entity_Id := First_Entity (Act_Pkg);
9573 F_Ent : Entity_Id;
9574 F_Node : Node_Id;
9575
9576 Gen_Decl : Node_Id;
9577 Formals : List_Id;
9578 Actual : Entity_Id;
9579
9580 begin
9581 -- Retrieve the actual given in the formal package declaration
9582
9583 Actual := Entity (Name (Original_Node (Formal_Node)));
9584
9585 -- The actual in the formal package declaration may be a
9586 -- renamed generic package, in which case we want to retrieve
9587 -- the original generic in order to traverse its formal part.
9588
9589 if Present (Renamed_Entity (Actual)) then
9590 Gen_Decl := Unit_Declaration_Node (Renamed_Entity (Actual));
9591 else
9592 Gen_Decl := Unit_Declaration_Node (Actual);
9593 end if;
9594
9595 Formals := Generic_Formal_Declarations (Gen_Decl);
9596
9597 if Present (Formals) then
9598 F_Node := First_Non_Pragma (Formals);
9599 else
9600 F_Node := Empty;
9601 end if;
9602
9603 while Present (A_Ent)
9604 and then Present (F_Node)
9605 and then A_Ent /= First_Private_Entity (Act_Pkg)
9606 loop
9607 F_Ent := Get_Formal_Entity (F_Node);
9608
9609 if Present (F_Ent) then
9610
9611 -- This is a formal of the original package. Record
9612 -- association and recurse.
9613
9614 Find_Matching_Actual (F_Node, A_Ent);
9615 Match_Formal_Entity (F_Node, F_Ent, A_Ent);
9616 Next_Entity (A_Ent);
9617 end if;
9618
9619 Next_Non_Pragma (F_Node);
9620 end loop;
9621 end;
9622 end if;
9623 end Match_Formal_Entity;
9624
9625 -----------------------
9626 -- Get_Formal_Entity --
9627 -----------------------
9628
9629 function Get_Formal_Entity (N : Node_Id) return Entity_Id is
9630 Kind : constant Node_Kind := Nkind (Original_Node (N));
9631 begin
9632 case Kind is
9633 when N_Formal_Object_Declaration =>
9634 return Defining_Identifier (N);
9635
9636 when N_Formal_Type_Declaration =>
9637 return Defining_Identifier (N);
9638
9639 when N_Formal_Subprogram_Declaration =>
9640 return Defining_Unit_Name (Specification (N));
9641
9642 when N_Formal_Package_Declaration =>
9643 return Defining_Identifier (Original_Node (N));
9644
9645 when N_Generic_Package_Declaration =>
9646 return Defining_Identifier (Original_Node (N));
9647
9648 -- All other declarations are introduced by semantic analysis and
9649 -- have no match in the actual.
9650
9651 when others =>
9652 return Empty;
9653 end case;
9654 end Get_Formal_Entity;
9655
9656 --------------------
9657 -- Is_Instance_Of --
9658 --------------------
9659
9660 function Is_Instance_Of
9661 (Act_Spec : Entity_Id;
9662 Gen_Anc : Entity_Id) return Boolean
9663 is
9664 Gen_Par : constant Entity_Id := Generic_Parent (Act_Spec);
9665
9666 begin
9667 if No (Gen_Par) then
9668 return False;
9669
9670 -- Simplest case: the generic parent of the actual is the formal
9671
9672 elsif Gen_Par = Gen_Anc then
9673 return True;
9674
9675 elsif Chars (Gen_Par) /= Chars (Gen_Anc) then
9676 return False;
9677
9678 -- The actual may be obtained through several instantiations. Its
9679 -- scope must itself be an instance of a generic declared in the
9680 -- same scope as the formal. Any other case is detected above.
9681
9682 elsif not Is_Generic_Instance (Scope (Gen_Par)) then
9683 return False;
9684
9685 else
9686 return Generic_Parent (Parent (Scope (Gen_Par))) = Scope (Gen_Anc);
9687 end if;
9688 end Is_Instance_Of;
9689
9690 ---------------------------
9691 -- Process_Nested_Formal --
9692 ---------------------------
9693
9694 procedure Process_Nested_Formal (Formal : Entity_Id) is
9695 Ent : Entity_Id;
9696
9697 begin
9698 if Present (Associated_Formal_Package (Formal))
9699 and then Box_Present (Parent (Associated_Formal_Package (Formal)))
9700 then
9701 Ent := First_Entity (Formal);
9702 while Present (Ent) loop
9703 Set_Is_Hidden (Ent, False);
9704 Set_Is_Visible_Formal (Ent);
9705 Set_Is_Potentially_Use_Visible
9706 (Ent, Is_Potentially_Use_Visible (Formal));
9707
9708 if Ekind (Ent) = E_Package then
9709 exit when Renamed_Entity (Ent) = Renamed_Entity (Formal);
9710 Process_Nested_Formal (Ent);
9711 end if;
9712
9713 Next_Entity (Ent);
9714 end loop;
9715 end if;
9716 end Process_Nested_Formal;
9717
9718 -- Start of processing for Instantiate_Formal_Package
9719
9720 begin
9721 Analyze (Actual);
9722
9723 if not Is_Entity_Name (Actual)
9724 or else Ekind (Entity (Actual)) /= E_Package
9725 then
9726 Error_Msg_N
9727 ("expect package instance to instantiate formal", Actual);
9728 Abandon_Instantiation (Actual);
9729 raise Program_Error;
9730
9731 else
9732 Actual_Pack := Entity (Actual);
9733 Set_Is_Instantiated (Actual_Pack);
9734
9735 -- The actual may be a renamed package, or an outer generic formal
9736 -- package whose instantiation is converted into a renaming.
9737
9738 if Present (Renamed_Object (Actual_Pack)) then
9739 Actual_Pack := Renamed_Object (Actual_Pack);
9740 end if;
9741
9742 if Nkind (Analyzed_Formal) = N_Formal_Package_Declaration then
9743 Gen_Parent := Get_Instance_Of (Entity (Name (Analyzed_Formal)));
9744 Formal_Pack := Defining_Identifier (Analyzed_Formal);
9745 else
9746 Gen_Parent :=
9747 Generic_Parent (Specification (Analyzed_Formal));
9748 Formal_Pack :=
9749 Defining_Unit_Name (Specification (Analyzed_Formal));
9750 end if;
9751
9752 if Nkind (Parent (Actual_Pack)) = N_Defining_Program_Unit_Name then
9753 Parent_Spec := Package_Specification (Actual_Pack);
9754 else
9755 Parent_Spec := Parent (Actual_Pack);
9756 end if;
9757
9758 if Gen_Parent = Any_Id then
9759 Error_Msg_N
9760 ("previous error in declaration of formal package", Actual);
9761 Abandon_Instantiation (Actual);
9762
9763 elsif
9764 Is_Instance_Of (Parent_Spec, Get_Instance_Of (Gen_Parent))
9765 then
9766 null;
9767
9768 else
9769 Error_Msg_NE
9770 ("actual parameter must be instance of&", Actual, Gen_Parent);
9771 Abandon_Instantiation (Actual);
9772 end if;
9773
9774 Set_Instance_Of (Defining_Identifier (Formal), Actual_Pack);
9775 Map_Formal_Package_Entities (Formal_Pack, Actual_Pack);
9776
9777 Nod :=
9778 Make_Package_Renaming_Declaration (Loc,
9779 Defining_Unit_Name => New_Copy (Defining_Identifier (Formal)),
9780 Name => New_Occurrence_Of (Actual_Pack, Loc));
9781
9782 Set_Associated_Formal_Package
9783 (Defining_Unit_Name (Nod), Defining_Identifier (Formal));
9784 Decls := New_List (Nod);
9785
9786 -- If the formal F has a box, then the generic declarations are
9787 -- visible in the generic G. In an instance of G, the corresponding
9788 -- entities in the actual for F (which are the actuals for the
9789 -- instantiation of the generic that F denotes) must also be made
9790 -- visible for analysis of the current instance. On exit from the
9791 -- current instance, those entities are made private again. If the
9792 -- actual is currently in use, these entities are also use-visible.
9793
9794 -- The loop through the actual entities also steps through the formal
9795 -- entities and enters associations from formals to actuals into the
9796 -- renaming map. This is necessary to properly handle checking of
9797 -- actual parameter associations for later formals that depend on
9798 -- actuals declared in the formal package.
9799
9800 -- In Ada 2005, partial parameterization requires that we make
9801 -- visible the actuals corresponding to formals that were defaulted
9802 -- in the formal package. There formals are identified because they
9803 -- remain formal generics within the formal package, rather than
9804 -- being renamings of the actuals supplied.
9805
9806 declare
9807 Gen_Decl : constant Node_Id :=
9808 Unit_Declaration_Node (Gen_Parent);
9809 Formals : constant List_Id :=
9810 Generic_Formal_Declarations (Gen_Decl);
9811
9812 Actual_Ent : Entity_Id;
9813 Actual_Of_Formal : Node_Id;
9814 Formal_Node : Node_Id;
9815 Formal_Ent : Entity_Id;
9816
9817 begin
9818 if Present (Formals) then
9819 Formal_Node := First_Non_Pragma (Formals);
9820 else
9821 Formal_Node := Empty;
9822 end if;
9823
9824 Actual_Ent := First_Entity (Actual_Pack);
9825 Actual_Of_Formal :=
9826 First (Visible_Declarations (Specification (Analyzed_Formal)));
9827 while Present (Actual_Ent)
9828 and then Actual_Ent /= First_Private_Entity (Actual_Pack)
9829 loop
9830 if Present (Formal_Node) then
9831 Formal_Ent := Get_Formal_Entity (Formal_Node);
9832
9833 if Present (Formal_Ent) then
9834 Find_Matching_Actual (Formal_Node, Actual_Ent);
9835 Match_Formal_Entity (Formal_Node, Formal_Ent, Actual_Ent);
9836
9837 -- We iterate at the same time over the actuals of the
9838 -- local package created for the formal, to determine
9839 -- which one of the formals of the original generic were
9840 -- defaulted in the formal. The corresponding actual
9841 -- entities are visible in the enclosing instance.
9842
9843 if Box_Present (Formal)
9844 or else
9845 (Present (Actual_Of_Formal)
9846 and then
9847 Is_Generic_Formal
9848 (Get_Formal_Entity (Actual_Of_Formal)))
9849 then
9850 Set_Is_Hidden (Actual_Ent, False);
9851 Set_Is_Visible_Formal (Actual_Ent);
9852 Set_Is_Potentially_Use_Visible
9853 (Actual_Ent, In_Use (Actual_Pack));
9854
9855 if Ekind (Actual_Ent) = E_Package then
9856 Process_Nested_Formal (Actual_Ent);
9857 end if;
9858
9859 else
9860 Set_Is_Hidden (Actual_Ent);
9861 Set_Is_Potentially_Use_Visible (Actual_Ent, False);
9862 end if;
9863 end if;
9864
9865 Next_Non_Pragma (Formal_Node);
9866 Next (Actual_Of_Formal);
9867
9868 else
9869 -- No further formals to match, but the generic part may
9870 -- contain inherited operation that are not hidden in the
9871 -- enclosing instance.
9872
9873 Next_Entity (Actual_Ent);
9874 end if;
9875 end loop;
9876
9877 -- Inherited subprograms generated by formal derived types are
9878 -- also visible if the types are.
9879
9880 Actual_Ent := First_Entity (Actual_Pack);
9881 while Present (Actual_Ent)
9882 and then Actual_Ent /= First_Private_Entity (Actual_Pack)
9883 loop
9884 if Is_Overloadable (Actual_Ent)
9885 and then
9886 Nkind (Parent (Actual_Ent)) = N_Subtype_Declaration
9887 and then
9888 not Is_Hidden (Defining_Identifier (Parent (Actual_Ent)))
9889 then
9890 Set_Is_Hidden (Actual_Ent, False);
9891 Set_Is_Potentially_Use_Visible
9892 (Actual_Ent, In_Use (Actual_Pack));
9893 end if;
9894
9895 Next_Entity (Actual_Ent);
9896 end loop;
9897 end;
9898
9899 -- If the formal is not declared with a box, reanalyze it as an
9900 -- abbreviated instantiation, to verify the matching rules of 12.7.
9901 -- The actual checks are performed after the generic associations
9902 -- have been analyzed, to guarantee the same visibility for this
9903 -- instantiation and for the actuals.
9904
9905 -- In Ada 2005, the generic associations for the formal can include
9906 -- defaulted parameters. These are ignored during check. This
9907 -- internal instantiation is removed from the tree after conformance
9908 -- checking, because it contains formal declarations for those
9909 -- defaulted parameters, and those should not reach the back-end.
9910
9911 if not Box_Present (Formal) then
9912 declare
9913 I_Pack : constant Entity_Id :=
9914 Make_Temporary (Sloc (Actual), 'P');
9915
9916 begin
9917 Set_Is_Internal (I_Pack);
9918
9919 Append_To (Decls,
9920 Make_Package_Instantiation (Sloc (Actual),
9921 Defining_Unit_Name => I_Pack,
9922 Name =>
9923 New_Occurrence_Of
9924 (Get_Instance_Of (Gen_Parent), Sloc (Actual)),
9925 Generic_Associations => Generic_Associations (Formal)));
9926 end;
9927 end if;
9928
9929 return Decls;
9930 end if;
9931 end Instantiate_Formal_Package;
9932
9933 -----------------------------------
9934 -- Instantiate_Formal_Subprogram --
9935 -----------------------------------
9936
9937 function Instantiate_Formal_Subprogram
9938 (Formal : Node_Id;
9939 Actual : Node_Id;
9940 Analyzed_Formal : Node_Id) return Node_Id
9941 is
9942 Analyzed_S : constant Entity_Id :=
9943 Defining_Unit_Name (Specification (Analyzed_Formal));
9944 Formal_Sub : constant Entity_Id :=
9945 Defining_Unit_Name (Specification (Formal));
9946
9947 function From_Parent_Scope (Subp : Entity_Id) return Boolean;
9948 -- If the generic is a child unit, the parent has been installed on the
9949 -- scope stack, but a default subprogram cannot resolve to something
9950 -- on the parent because that parent is not really part of the visible
9951 -- context (it is there to resolve explicit local entities). If the
9952 -- default has resolved in this way, we remove the entity from immediate
9953 -- visibility and analyze the node again to emit an error message or
9954 -- find another visible candidate.
9955
9956 procedure Valid_Actual_Subprogram (Act : Node_Id);
9957 -- Perform legality check and raise exception on failure
9958
9959 -----------------------
9960 -- From_Parent_Scope --
9961 -----------------------
9962
9963 function From_Parent_Scope (Subp : Entity_Id) return Boolean is
9964 Gen_Scope : Node_Id;
9965
9966 begin
9967 Gen_Scope := Scope (Analyzed_S);
9968 while Present (Gen_Scope) and then Is_Child_Unit (Gen_Scope) loop
9969 if Scope (Subp) = Scope (Gen_Scope) then
9970 return True;
9971 end if;
9972
9973 Gen_Scope := Scope (Gen_Scope);
9974 end loop;
9975
9976 return False;
9977 end From_Parent_Scope;
9978
9979 -----------------------------
9980 -- Valid_Actual_Subprogram --
9981 -----------------------------
9982
9983 procedure Valid_Actual_Subprogram (Act : Node_Id) is
9984 Act_E : Entity_Id;
9985
9986 begin
9987 if Is_Entity_Name (Act) then
9988 Act_E := Entity (Act);
9989
9990 elsif Nkind (Act) = N_Selected_Component
9991 and then Is_Entity_Name (Selector_Name (Act))
9992 then
9993 Act_E := Entity (Selector_Name (Act));
9994
9995 else
9996 Act_E := Empty;
9997 end if;
9998
9999 if (Present (Act_E) and then Is_Overloadable (Act_E))
10000 or else Nkind_In (Act, N_Attribute_Reference,
10001 N_Indexed_Component,
10002 N_Character_Literal,
10003 N_Explicit_Dereference)
10004 then
10005 return;
10006 end if;
10007
10008 Error_Msg_NE
10009 ("expect subprogram or entry name in instantiation of &",
10010 Instantiation_Node, Formal_Sub);
10011 Abandon_Instantiation (Instantiation_Node);
10012 end Valid_Actual_Subprogram;
10013
10014 -- Local variables
10015
10016 Decl_Node : Node_Id;
10017 Loc : Source_Ptr;
10018 Nam : Node_Id;
10019 New_Spec : Node_Id;
10020 New_Subp : Entity_Id;
10021
10022 -- Start of processing for Instantiate_Formal_Subprogram
10023
10024 begin
10025 New_Spec := New_Copy_Tree (Specification (Formal));
10026
10027 -- The tree copy has created the proper instantiation sloc for the
10028 -- new specification. Use this location for all other constructed
10029 -- declarations.
10030
10031 Loc := Sloc (Defining_Unit_Name (New_Spec));
10032
10033 -- Create new entity for the actual (New_Copy_Tree does not), and
10034 -- indicate that it is an actual.
10035
10036 New_Subp := Make_Defining_Identifier (Loc, Chars (Formal_Sub));
10037 Set_Ekind (New_Subp, Ekind (Analyzed_S));
10038 Set_Is_Generic_Actual_Subprogram (New_Subp);
10039 Set_Defining_Unit_Name (New_Spec, New_Subp);
10040
10041 -- Create new entities for the each of the formals in the specification
10042 -- of the renaming declaration built for the actual.
10043
10044 if Present (Parameter_Specifications (New_Spec)) then
10045 declare
10046 F : Node_Id;
10047 F_Id : Entity_Id;
10048
10049 begin
10050 F := First (Parameter_Specifications (New_Spec));
10051 while Present (F) loop
10052 F_Id := Defining_Identifier (F);
10053
10054 Set_Defining_Identifier (F,
10055 Make_Defining_Identifier (Sloc (F_Id), Chars (F_Id)));
10056 Next (F);
10057 end loop;
10058 end;
10059 end if;
10060
10061 -- Find entity of actual. If the actual is an attribute reference, it
10062 -- cannot be resolved here (its formal is missing) but is handled
10063 -- instead in Attribute_Renaming. If the actual is overloaded, it is
10064 -- fully resolved subsequently, when the renaming declaration for the
10065 -- formal is analyzed. If it is an explicit dereference, resolve the
10066 -- prefix but not the actual itself, to prevent interpretation as call.
10067
10068 if Present (Actual) then
10069 Loc := Sloc (Actual);
10070 Set_Sloc (New_Spec, Loc);
10071
10072 if Nkind (Actual) = N_Operator_Symbol then
10073 Find_Direct_Name (Actual);
10074
10075 elsif Nkind (Actual) = N_Explicit_Dereference then
10076 Analyze (Prefix (Actual));
10077
10078 elsif Nkind (Actual) /= N_Attribute_Reference then
10079 Analyze (Actual);
10080 end if;
10081
10082 Valid_Actual_Subprogram (Actual);
10083 Nam := Actual;
10084
10085 elsif Present (Default_Name (Formal)) then
10086 if not Nkind_In (Default_Name (Formal), N_Attribute_Reference,
10087 N_Selected_Component,
10088 N_Indexed_Component,
10089 N_Character_Literal)
10090 and then Present (Entity (Default_Name (Formal)))
10091 then
10092 Nam := New_Occurrence_Of (Entity (Default_Name (Formal)), Loc);
10093 else
10094 Nam := New_Copy (Default_Name (Formal));
10095 Set_Sloc (Nam, Loc);
10096 end if;
10097
10098 elsif Box_Present (Formal) then
10099
10100 -- Actual is resolved at the point of instantiation. Create an
10101 -- identifier or operator with the same name as the formal.
10102
10103 if Nkind (Formal_Sub) = N_Defining_Operator_Symbol then
10104 Nam :=
10105 Make_Operator_Symbol (Loc,
10106 Chars => Chars (Formal_Sub),
10107 Strval => No_String);
10108 else
10109 Nam := Make_Identifier (Loc, Chars (Formal_Sub));
10110 end if;
10111
10112 elsif Nkind (Specification (Formal)) = N_Procedure_Specification
10113 and then Null_Present (Specification (Formal))
10114 then
10115 -- Generate null body for procedure, for use in the instance
10116
10117 Decl_Node :=
10118 Make_Subprogram_Body (Loc,
10119 Specification => New_Spec,
10120 Declarations => New_List,
10121 Handled_Statement_Sequence =>
10122 Make_Handled_Sequence_Of_Statements (Loc,
10123 Statements => New_List (Make_Null_Statement (Loc))));
10124
10125 Set_Is_Intrinsic_Subprogram (Defining_Unit_Name (New_Spec));
10126 return Decl_Node;
10127
10128 else
10129 Error_Msg_Sloc := Sloc (Scope (Analyzed_S));
10130 Error_Msg_NE
10131 ("missing actual&", Instantiation_Node, Formal_Sub);
10132 Error_Msg_NE
10133 ("\in instantiation of & declared#",
10134 Instantiation_Node, Scope (Analyzed_S));
10135 Abandon_Instantiation (Instantiation_Node);
10136 end if;
10137
10138 Decl_Node :=
10139 Make_Subprogram_Renaming_Declaration (Loc,
10140 Specification => New_Spec,
10141 Name => Nam);
10142
10143 -- If we do not have an actual and the formal specified <> then set to
10144 -- get proper default.
10145
10146 if No (Actual) and then Box_Present (Formal) then
10147 Set_From_Default (Decl_Node);
10148 end if;
10149
10150 -- Gather possible interpretations for the actual before analyzing the
10151 -- instance. If overloaded, it will be resolved when analyzing the
10152 -- renaming declaration.
10153
10154 if Box_Present (Formal) and then No (Actual) then
10155 Analyze (Nam);
10156
10157 if Is_Child_Unit (Scope (Analyzed_S))
10158 and then Present (Entity (Nam))
10159 then
10160 if not Is_Overloaded (Nam) then
10161 if From_Parent_Scope (Entity (Nam)) then
10162 Set_Is_Immediately_Visible (Entity (Nam), False);
10163 Set_Entity (Nam, Empty);
10164 Set_Etype (Nam, Empty);
10165
10166 Analyze (Nam);
10167 Set_Is_Immediately_Visible (Entity (Nam));
10168 end if;
10169
10170 else
10171 declare
10172 I : Interp_Index;
10173 It : Interp;
10174
10175 begin
10176 Get_First_Interp (Nam, I, It);
10177 while Present (It.Nam) loop
10178 if From_Parent_Scope (It.Nam) then
10179 Remove_Interp (I);
10180 end if;
10181
10182 Get_Next_Interp (I, It);
10183 end loop;
10184 end;
10185 end if;
10186 end if;
10187 end if;
10188
10189 -- The generic instantiation freezes the actual. This can only be done
10190 -- once the actual is resolved, in the analysis of the renaming
10191 -- declaration. To make the formal subprogram entity available, we set
10192 -- Corresponding_Formal_Spec to point to the formal subprogram entity.
10193 -- This is also needed in Analyze_Subprogram_Renaming for the processing
10194 -- of formal abstract subprograms.
10195
10196 Set_Corresponding_Formal_Spec (Decl_Node, Analyzed_S);
10197
10198 -- We cannot analyze the renaming declaration, and thus find the actual,
10199 -- until all the actuals are assembled in the instance. For subsequent
10200 -- checks of other actuals, indicate the node that will hold the
10201 -- instance of this formal.
10202
10203 Set_Instance_Of (Analyzed_S, Nam);
10204
10205 if Nkind (Actual) = N_Selected_Component
10206 and then Is_Task_Type (Etype (Prefix (Actual)))
10207 and then not Is_Frozen (Etype (Prefix (Actual)))
10208 then
10209 -- The renaming declaration will create a body, which must appear
10210 -- outside of the instantiation, We move the renaming declaration
10211 -- out of the instance, and create an additional renaming inside,
10212 -- to prevent freezing anomalies.
10213
10214 declare
10215 Anon_Id : constant Entity_Id := Make_Temporary (Loc, 'E');
10216
10217 begin
10218 Set_Defining_Unit_Name (New_Spec, Anon_Id);
10219 Insert_Before (Instantiation_Node, Decl_Node);
10220 Analyze (Decl_Node);
10221
10222 -- Now create renaming within the instance
10223
10224 Decl_Node :=
10225 Make_Subprogram_Renaming_Declaration (Loc,
10226 Specification => New_Copy_Tree (New_Spec),
10227 Name => New_Occurrence_Of (Anon_Id, Loc));
10228
10229 Set_Defining_Unit_Name (Specification (Decl_Node),
10230 Make_Defining_Identifier (Loc, Chars (Formal_Sub)));
10231 end;
10232 end if;
10233
10234 return Decl_Node;
10235 end Instantiate_Formal_Subprogram;
10236
10237 ------------------------
10238 -- Instantiate_Object --
10239 ------------------------
10240
10241 function Instantiate_Object
10242 (Formal : Node_Id;
10243 Actual : Node_Id;
10244 Analyzed_Formal : Node_Id) return List_Id
10245 is
10246 Gen_Obj : constant Entity_Id := Defining_Identifier (Formal);
10247 A_Gen_Obj : constant Entity_Id :=
10248 Defining_Identifier (Analyzed_Formal);
10249 Acc_Def : Node_Id := Empty;
10250 Act_Assoc : constant Node_Id := Parent (Actual);
10251 Actual_Decl : Node_Id := Empty;
10252 Decl_Node : Node_Id;
10253 Def : Node_Id;
10254 Ftyp : Entity_Id;
10255 List : constant List_Id := New_List;
10256 Loc : constant Source_Ptr := Sloc (Actual);
10257 Orig_Ftyp : constant Entity_Id := Etype (A_Gen_Obj);
10258 Subt_Decl : Node_Id := Empty;
10259 Subt_Mark : Node_Id := Empty;
10260
10261 function Copy_Access_Def return Node_Id;
10262 -- If formal is an anonymous access, copy access definition of formal
10263 -- for generated object declaration.
10264
10265 ---------------------
10266 -- Copy_Access_Def --
10267 ---------------------
10268
10269 function Copy_Access_Def return Node_Id is
10270 begin
10271 Def := New_Copy_Tree (Acc_Def);
10272
10273 -- In addition, if formal is an access to subprogram we need to
10274 -- generate new formals for the signature of the default, so that
10275 -- the tree is properly formatted for ASIS use.
10276
10277 if Present (Access_To_Subprogram_Definition (Acc_Def)) then
10278 declare
10279 Par_Spec : Node_Id;
10280 begin
10281 Par_Spec :=
10282 First (Parameter_Specifications
10283 (Access_To_Subprogram_Definition (Def)));
10284 while Present (Par_Spec) loop
10285 Set_Defining_Identifier (Par_Spec,
10286 Make_Defining_Identifier (Sloc (Acc_Def),
10287 Chars => Chars (Defining_Identifier (Par_Spec))));
10288 Next (Par_Spec);
10289 end loop;
10290 end;
10291 end if;
10292
10293 return Def;
10294 end Copy_Access_Def;
10295
10296 -- Start of processing for Instantiate_Object
10297
10298 begin
10299 -- Formal may be an anonymous access
10300
10301 if Present (Subtype_Mark (Formal)) then
10302 Subt_Mark := Subtype_Mark (Formal);
10303 else
10304 Check_Access_Definition (Formal);
10305 Acc_Def := Access_Definition (Formal);
10306 end if;
10307
10308 -- Sloc for error message on missing actual
10309
10310 Error_Msg_Sloc := Sloc (Scope (A_Gen_Obj));
10311
10312 if Get_Instance_Of (Gen_Obj) /= Gen_Obj then
10313 Error_Msg_N ("duplicate instantiation of generic parameter", Actual);
10314 end if;
10315
10316 Set_Parent (List, Parent (Actual));
10317
10318 -- OUT present
10319
10320 if Out_Present (Formal) then
10321
10322 -- An IN OUT generic actual must be a name. The instantiation is a
10323 -- renaming declaration. The actual is the name being renamed. We
10324 -- use the actual directly, rather than a copy, because it is not
10325 -- used further in the list of actuals, and because a copy or a use
10326 -- of relocate_node is incorrect if the instance is nested within a
10327 -- generic. In order to simplify ASIS searches, the Generic_Parent
10328 -- field links the declaration to the generic association.
10329
10330 if No (Actual) then
10331 Error_Msg_NE
10332 ("missing actual &",
10333 Instantiation_Node, Gen_Obj);
10334 Error_Msg_NE
10335 ("\in instantiation of & declared#",
10336 Instantiation_Node, Scope (A_Gen_Obj));
10337 Abandon_Instantiation (Instantiation_Node);
10338 end if;
10339
10340 if Present (Subt_Mark) then
10341 Decl_Node :=
10342 Make_Object_Renaming_Declaration (Loc,
10343 Defining_Identifier => New_Copy (Gen_Obj),
10344 Subtype_Mark => New_Copy_Tree (Subt_Mark),
10345 Name => Actual);
10346
10347 else pragma Assert (Present (Acc_Def));
10348 Decl_Node :=
10349 Make_Object_Renaming_Declaration (Loc,
10350 Defining_Identifier => New_Copy (Gen_Obj),
10351 Access_Definition => New_Copy_Tree (Acc_Def),
10352 Name => Actual);
10353 end if;
10354
10355 Set_Corresponding_Generic_Association (Decl_Node, Act_Assoc);
10356
10357 -- The analysis of the actual may produce Insert_Action nodes, so
10358 -- the declaration must have a context in which to attach them.
10359
10360 Append (Decl_Node, List);
10361 Analyze (Actual);
10362
10363 -- Return if the analysis of the actual reported some error
10364
10365 if Etype (Actual) = Any_Type then
10366 return List;
10367 end if;
10368
10369 -- This check is performed here because Analyze_Object_Renaming will
10370 -- not check it when Comes_From_Source is False. Note though that the
10371 -- check for the actual being the name of an object will be performed
10372 -- in Analyze_Object_Renaming.
10373
10374 if Is_Object_Reference (Actual)
10375 and then Is_Dependent_Component_Of_Mutable_Object (Actual)
10376 then
10377 Error_Msg_N
10378 ("illegal discriminant-dependent component for in out parameter",
10379 Actual);
10380 end if;
10381
10382 -- The actual has to be resolved in order to check that it is a
10383 -- variable (due to cases such as F (1), where F returns access to
10384 -- an array, and for overloaded prefixes).
10385
10386 Ftyp := Get_Instance_Of (Etype (A_Gen_Obj));
10387
10388 -- If the type of the formal is not itself a formal, and the current
10389 -- unit is a child unit, the formal type must be declared in a
10390 -- parent, and must be retrieved by visibility.
10391
10392 if Ftyp = Orig_Ftyp
10393 and then Is_Generic_Unit (Scope (Ftyp))
10394 and then Is_Child_Unit (Scope (A_Gen_Obj))
10395 then
10396 declare
10397 Temp : constant Node_Id :=
10398 New_Copy_Tree (Subtype_Mark (Analyzed_Formal));
10399 begin
10400 Set_Entity (Temp, Empty);
10401 Find_Type (Temp);
10402 Ftyp := Entity (Temp);
10403 end;
10404 end if;
10405
10406 if Is_Private_Type (Ftyp)
10407 and then not Is_Private_Type (Etype (Actual))
10408 and then (Base_Type (Full_View (Ftyp)) = Base_Type (Etype (Actual))
10409 or else Base_Type (Etype (Actual)) = Ftyp)
10410 then
10411 -- If the actual has the type of the full view of the formal, or
10412 -- else a non-private subtype of the formal, then the visibility
10413 -- of the formal type has changed. Add to the actuals a subtype
10414 -- declaration that will force the exchange of views in the body
10415 -- of the instance as well.
10416
10417 Subt_Decl :=
10418 Make_Subtype_Declaration (Loc,
10419 Defining_Identifier => Make_Temporary (Loc, 'P'),
10420 Subtype_Indication => New_Occurrence_Of (Ftyp, Loc));
10421
10422 Prepend (Subt_Decl, List);
10423
10424 Prepend_Elmt (Full_View (Ftyp), Exchanged_Views);
10425 Exchange_Declarations (Ftyp);
10426 end if;
10427
10428 Resolve (Actual, Ftyp);
10429
10430 if not Denotes_Variable (Actual) then
10431 Error_Msg_NE ("actual for& must be a variable", Actual, Gen_Obj);
10432
10433 elsif Base_Type (Ftyp) /= Base_Type (Etype (Actual)) then
10434
10435 -- Ada 2005 (AI-423): For a generic formal object of mode in out,
10436 -- the type of the actual shall resolve to a specific anonymous
10437 -- access type.
10438
10439 if Ada_Version < Ada_2005
10440 or else Ekind (Base_Type (Ftyp)) /=
10441 E_Anonymous_Access_Type
10442 or else Ekind (Base_Type (Etype (Actual))) /=
10443 E_Anonymous_Access_Type
10444 then
10445 Error_Msg_NE
10446 ("type of actual does not match type of&", Actual, Gen_Obj);
10447 end if;
10448 end if;
10449
10450 Note_Possible_Modification (Actual, Sure => True);
10451
10452 -- Check for instantiation of atomic/volatile actual for
10453 -- non-atomic/volatile formal (RM C.6 (12)).
10454
10455 if Is_Atomic_Object (Actual) and then not Is_Atomic (Orig_Ftyp) then
10456 Error_Msg_N
10457 ("cannot instantiate non-atomic formal object "
10458 & "with atomic actual", Actual);
10459
10460 elsif Is_Volatile_Object (Actual) and then not Is_Volatile (Orig_Ftyp)
10461 then
10462 Error_Msg_N
10463 ("cannot instantiate non-volatile formal object "
10464 & "with volatile actual", Actual);
10465 end if;
10466
10467 -- Formal in-parameter
10468
10469 else
10470 -- The instantiation of a generic formal in-parameter is constant
10471 -- declaration. The actual is the expression for that declaration.
10472 -- Its type is a full copy of the type of the formal. This may be
10473 -- an access to subprogram, for which we need to generate entities
10474 -- for the formals in the new signature.
10475
10476 if Present (Actual) then
10477 if Present (Subt_Mark) then
10478 Def := New_Copy_Tree (Subt_Mark);
10479 else pragma Assert (Present (Acc_Def));
10480 Def := Copy_Access_Def;
10481 end if;
10482
10483 Decl_Node :=
10484 Make_Object_Declaration (Loc,
10485 Defining_Identifier => New_Copy (Gen_Obj),
10486 Constant_Present => True,
10487 Null_Exclusion_Present => Null_Exclusion_Present (Formal),
10488 Object_Definition => Def,
10489 Expression => Actual);
10490
10491 Set_Corresponding_Generic_Association (Decl_Node, Act_Assoc);
10492
10493 -- A generic formal object of a tagged type is defined to be
10494 -- aliased so the new constant must also be treated as aliased.
10495
10496 if Is_Tagged_Type (Etype (A_Gen_Obj)) then
10497 Set_Aliased_Present (Decl_Node);
10498 end if;
10499
10500 Append (Decl_Node, List);
10501
10502 -- No need to repeat (pre-)analysis of some expression nodes
10503 -- already handled in Preanalyze_Actuals.
10504
10505 if Nkind (Actual) /= N_Allocator then
10506 Analyze (Actual);
10507
10508 -- Return if the analysis of the actual reported some error
10509
10510 if Etype (Actual) = Any_Type then
10511 return List;
10512 end if;
10513 end if;
10514
10515 declare
10516 Formal_Type : constant Entity_Id := Etype (A_Gen_Obj);
10517 Typ : Entity_Id;
10518
10519 begin
10520 Typ := Get_Instance_Of (Formal_Type);
10521
10522 -- If the actual appears in the current or an enclosing scope,
10523 -- use its type directly. This is relevant if it has an actual
10524 -- subtype that is distinct from its nominal one. This cannot
10525 -- be done in general because the type of the actual may
10526 -- depend on other actuals, and only be fully determined when
10527 -- the enclosing instance is analyzed.
10528
10529 if Present (Etype (Actual))
10530 and then Is_Constr_Subt_For_U_Nominal (Etype (Actual))
10531 then
10532 Freeze_Before (Instantiation_Node, Etype (Actual));
10533 else
10534 Freeze_Before (Instantiation_Node, Typ);
10535 end if;
10536
10537 -- If the actual is an aggregate, perform name resolution on
10538 -- its components (the analysis of an aggregate does not do it)
10539 -- to capture local names that may be hidden if the generic is
10540 -- a child unit.
10541
10542 if Nkind (Actual) = N_Aggregate then
10543 Preanalyze_And_Resolve (Actual, Typ);
10544 end if;
10545
10546 if Is_Limited_Type (Typ)
10547 and then not OK_For_Limited_Init (Typ, Actual)
10548 then
10549 Error_Msg_N
10550 ("initialization not allowed for limited types", Actual);
10551 Explain_Limited_Type (Typ, Actual);
10552 end if;
10553 end;
10554
10555 elsif Present (Default_Expression (Formal)) then
10556
10557 -- Use default to construct declaration
10558
10559 if Present (Subt_Mark) then
10560 Def := New_Copy (Subt_Mark);
10561 else pragma Assert (Present (Acc_Def));
10562 Def := Copy_Access_Def;
10563 end if;
10564
10565 Decl_Node :=
10566 Make_Object_Declaration (Sloc (Formal),
10567 Defining_Identifier => New_Copy (Gen_Obj),
10568 Constant_Present => True,
10569 Null_Exclusion_Present => Null_Exclusion_Present (Formal),
10570 Object_Definition => Def,
10571 Expression => New_Copy_Tree
10572 (Default_Expression (Formal)));
10573
10574 Append (Decl_Node, List);
10575 Set_Analyzed (Expression (Decl_Node), False);
10576
10577 else
10578 Error_Msg_NE ("missing actual&", Instantiation_Node, Gen_Obj);
10579 Error_Msg_NE ("\in instantiation of & declared#",
10580 Instantiation_Node, Scope (A_Gen_Obj));
10581
10582 if Is_Scalar_Type (Etype (A_Gen_Obj)) then
10583
10584 -- Create dummy constant declaration so that instance can be
10585 -- analyzed, to minimize cascaded visibility errors.
10586
10587 if Present (Subt_Mark) then
10588 Def := Subt_Mark;
10589 else pragma Assert (Present (Acc_Def));
10590 Def := Acc_Def;
10591 end if;
10592
10593 Decl_Node :=
10594 Make_Object_Declaration (Loc,
10595 Defining_Identifier => New_Copy (Gen_Obj),
10596 Constant_Present => True,
10597 Null_Exclusion_Present => Null_Exclusion_Present (Formal),
10598 Object_Definition => New_Copy (Def),
10599 Expression =>
10600 Make_Attribute_Reference (Sloc (Gen_Obj),
10601 Attribute_Name => Name_First,
10602 Prefix => New_Copy (Def)));
10603
10604 Append (Decl_Node, List);
10605
10606 else
10607 Abandon_Instantiation (Instantiation_Node);
10608 end if;
10609 end if;
10610 end if;
10611
10612 if Nkind (Actual) in N_Has_Entity then
10613 Actual_Decl := Parent (Entity (Actual));
10614 end if;
10615
10616 -- Ada 2005 (AI-423): For a formal object declaration with a null
10617 -- exclusion or an access definition that has a null exclusion: If the
10618 -- actual matching the formal object declaration denotes a generic
10619 -- formal object of another generic unit G, and the instantiation
10620 -- containing the actual occurs within the body of G or within the body
10621 -- of a generic unit declared within the declarative region of G, then
10622 -- the declaration of the formal object of G must have a null exclusion.
10623 -- Otherwise, the subtype of the actual matching the formal object
10624 -- declaration shall exclude null.
10625
10626 if Ada_Version >= Ada_2005
10627 and then Present (Actual_Decl)
10628 and then Nkind_In (Actual_Decl, N_Formal_Object_Declaration,
10629 N_Object_Declaration)
10630 and then Nkind (Analyzed_Formal) = N_Formal_Object_Declaration
10631 and then not Has_Null_Exclusion (Actual_Decl)
10632 and then Has_Null_Exclusion (Analyzed_Formal)
10633 then
10634 Error_Msg_Sloc := Sloc (Analyzed_Formal);
10635 Error_Msg_N
10636 ("actual must exclude null to match generic formal#", Actual);
10637 end if;
10638
10639 -- An effectively volatile object cannot be used as an actual in a
10640 -- generic instantiation (SPARK RM 7.1.3(7)). The following check is
10641 -- relevant only when SPARK_Mode is on as it is not a standard Ada
10642 -- legality rule.
10643
10644 if SPARK_Mode = On
10645 and then Present (Actual)
10646 and then Is_Effectively_Volatile_Object (Actual)
10647 then
10648 Error_Msg_N
10649 ("volatile object cannot act as actual in generic instantiation",
10650 Actual);
10651 end if;
10652
10653 return List;
10654 end Instantiate_Object;
10655
10656 ------------------------------
10657 -- Instantiate_Package_Body --
10658 ------------------------------
10659
10660 procedure Instantiate_Package_Body
10661 (Body_Info : Pending_Body_Info;
10662 Inlined_Body : Boolean := False;
10663 Body_Optional : Boolean := False)
10664 is
10665 Act_Decl : constant Node_Id := Body_Info.Act_Decl;
10666 Inst_Node : constant Node_Id := Body_Info.Inst_Node;
10667 Loc : constant Source_Ptr := Sloc (Inst_Node);
10668
10669 Gen_Id : constant Node_Id := Name (Inst_Node);
10670 Gen_Unit : constant Entity_Id := Get_Generic_Entity (Inst_Node);
10671 Gen_Decl : constant Node_Id := Unit_Declaration_Node (Gen_Unit);
10672 Act_Spec : constant Node_Id := Specification (Act_Decl);
10673 Act_Decl_Id : constant Entity_Id := Defining_Entity (Act_Spec);
10674
10675 Save_IPSM : constant Boolean := Ignore_Pragma_SPARK_Mode;
10676 Save_Style_Check : constant Boolean := Style_Check;
10677
10678 Act_Body : Node_Id;
10679 Act_Body_Id : Entity_Id;
10680 Act_Body_Name : Node_Id;
10681 Gen_Body : Node_Id;
10682 Gen_Body_Id : Node_Id;
10683 Par_Ent : Entity_Id := Empty;
10684 Par_Vis : Boolean := False;
10685
10686 Parent_Installed : Boolean := False;
10687
10688 Vis_Prims_List : Elist_Id := No_Elist;
10689 -- List of primitives made temporarily visible in the instantiation
10690 -- to match the visibility of the formal type
10691
10692 procedure Check_Initialized_Types;
10693 -- In a generic package body, an entity of a generic private type may
10694 -- appear uninitialized. This is suspicious, unless the actual is a
10695 -- fully initialized type.
10696
10697 -----------------------------
10698 -- Check_Initialized_Types --
10699 -----------------------------
10700
10701 procedure Check_Initialized_Types is
10702 Decl : Node_Id;
10703 Formal : Entity_Id;
10704 Actual : Entity_Id;
10705 Uninit_Var : Entity_Id;
10706
10707 begin
10708 Decl := First (Generic_Formal_Declarations (Gen_Decl));
10709 while Present (Decl) loop
10710 Uninit_Var := Empty;
10711
10712 if Nkind (Decl) = N_Private_Extension_Declaration then
10713 Uninit_Var := Uninitialized_Variable (Decl);
10714
10715 elsif Nkind (Decl) = N_Formal_Type_Declaration
10716 and then Nkind (Formal_Type_Definition (Decl)) =
10717 N_Formal_Private_Type_Definition
10718 then
10719 Uninit_Var :=
10720 Uninitialized_Variable (Formal_Type_Definition (Decl));
10721 end if;
10722
10723 if Present (Uninit_Var) then
10724 Formal := Defining_Identifier (Decl);
10725 Actual := First_Entity (Act_Decl_Id);
10726
10727 -- For each formal there is a subtype declaration that renames
10728 -- the actual and has the same name as the formal. Locate the
10729 -- formal for warning message about uninitialized variables
10730 -- in the generic, for which the actual type should be a fully
10731 -- initialized type.
10732
10733 while Present (Actual) loop
10734 exit when Ekind (Actual) = E_Package
10735 and then Present (Renamed_Object (Actual));
10736
10737 if Chars (Actual) = Chars (Formal)
10738 and then not Is_Scalar_Type (Actual)
10739 and then not Is_Fully_Initialized_Type (Actual)
10740 and then Warn_On_No_Value_Assigned
10741 then
10742 Error_Msg_Node_2 := Formal;
10743 Error_Msg_NE
10744 ("generic unit has uninitialized variable& of "
10745 & "formal private type &?v?", Actual, Uninit_Var);
10746 Error_Msg_NE
10747 ("actual type for& should be fully initialized type?v?",
10748 Actual, Formal);
10749 exit;
10750 end if;
10751
10752 Next_Entity (Actual);
10753 end loop;
10754 end if;
10755
10756 Next (Decl);
10757 end loop;
10758 end Check_Initialized_Types;
10759
10760 -- Start of processing for Instantiate_Package_Body
10761
10762 begin
10763 Gen_Body_Id := Corresponding_Body (Gen_Decl);
10764
10765 -- The instance body may already have been processed, as the parent of
10766 -- another instance that is inlined (Load_Parent_Of_Generic).
10767
10768 if Present (Corresponding_Body (Instance_Spec (Inst_Node))) then
10769 return;
10770 end if;
10771
10772 Expander_Mode_Save_And_Set (Body_Info.Expander_Status);
10773
10774 -- Re-establish the state of information on which checks are suppressed.
10775 -- This information was set in Body_Info at the point of instantiation,
10776 -- and now we restore it so that the instance is compiled using the
10777 -- check status at the instantiation (RM 11.5(7.2/2), AI95-00224-01).
10778
10779 Local_Suppress_Stack_Top := Body_Info.Local_Suppress_Stack_Top;
10780 Scope_Suppress := Body_Info.Scope_Suppress;
10781 Opt.Ada_Version := Body_Info.Version;
10782 Opt.Ada_Version_Pragma := Body_Info.Version_Pragma;
10783 Restore_Warnings (Body_Info.Warnings);
10784 Opt.SPARK_Mode := Body_Info.SPARK_Mode;
10785 Opt.SPARK_Mode_Pragma := Body_Info.SPARK_Mode_Pragma;
10786
10787 if No (Gen_Body_Id) then
10788
10789 -- Do not look for parent of generic body if none is required.
10790 -- This may happen when the routine is called as part of the
10791 -- Pending_Instantiations processing, when nested instances
10792 -- may precede the one generated from the main unit.
10793
10794 if not Unit_Requires_Body (Defining_Entity (Gen_Decl))
10795 and then Body_Optional
10796 then
10797 return;
10798 else
10799 Load_Parent_Of_Generic
10800 (Inst_Node, Specification (Gen_Decl), Body_Optional);
10801 Gen_Body_Id := Corresponding_Body (Gen_Decl);
10802 end if;
10803 end if;
10804
10805 -- Establish global variable for sloc adjustment and for error recovery
10806 -- In the case of an instance body for an instantiation with actuals
10807 -- from a limited view, the instance body is placed at the beginning
10808 -- of the enclosing package body: use the body entity as the source
10809 -- location for nodes of the instance body.
10810
10811 if not Is_Empty_Elmt_List (Incomplete_Actuals (Act_Decl_Id)) then
10812 declare
10813 Scop : constant Entity_Id := Scope (Act_Decl_Id);
10814 Body_Id : constant Node_Id :=
10815 Corresponding_Body (Unit_Declaration_Node (Scop));
10816
10817 begin
10818 Instantiation_Node := Body_Id;
10819 end;
10820 else
10821 Instantiation_Node := Inst_Node;
10822 end if;
10823
10824 if Present (Gen_Body_Id) then
10825 Save_Env (Gen_Unit, Act_Decl_Id);
10826 Style_Check := False;
10827
10828 -- If the context of the instance is subject to SPARK_Mode "off" or
10829 -- the annotation is altogether missing, set the global flag which
10830 -- signals Analyze_Pragma to ignore all SPARK_Mode pragmas within
10831 -- the instance.
10832
10833 if SPARK_Mode /= On then
10834 Ignore_Pragma_SPARK_Mode := True;
10835 end if;
10836
10837 Current_Sem_Unit := Body_Info.Current_Sem_Unit;
10838 Gen_Body := Unit_Declaration_Node (Gen_Body_Id);
10839
10840 Create_Instantiation_Source
10841 (Inst_Node, Gen_Body_Id, False, S_Adjustment);
10842
10843 Act_Body :=
10844 Copy_Generic_Node
10845 (Original_Node (Gen_Body), Empty, Instantiating => True);
10846
10847 -- Create proper (possibly qualified) defining name for the body, to
10848 -- correspond to the one in the spec.
10849
10850 Act_Body_Id :=
10851 Make_Defining_Identifier (Sloc (Act_Decl_Id), Chars (Act_Decl_Id));
10852 Set_Comes_From_Source (Act_Body_Id, Comes_From_Source (Act_Decl_Id));
10853
10854 -- Some attributes of spec entity are not inherited by body entity
10855
10856 Set_Handler_Records (Act_Body_Id, No_List);
10857
10858 if Nkind (Defining_Unit_Name (Act_Spec)) =
10859 N_Defining_Program_Unit_Name
10860 then
10861 Act_Body_Name :=
10862 Make_Defining_Program_Unit_Name (Loc,
10863 Name =>
10864 New_Copy_Tree (Name (Defining_Unit_Name (Act_Spec))),
10865 Defining_Identifier => Act_Body_Id);
10866 else
10867 Act_Body_Name := Act_Body_Id;
10868 end if;
10869
10870 Set_Defining_Unit_Name (Act_Body, Act_Body_Name);
10871
10872 Set_Corresponding_Spec (Act_Body, Act_Decl_Id);
10873 Check_Generic_Actuals (Act_Decl_Id, False);
10874 Check_Initialized_Types;
10875
10876 -- Install primitives hidden at the point of the instantiation but
10877 -- visible when processing the generic formals
10878
10879 declare
10880 E : Entity_Id;
10881
10882 begin
10883 E := First_Entity (Act_Decl_Id);
10884 while Present (E) loop
10885 if Is_Type (E)
10886 and then Is_Generic_Actual_Type (E)
10887 and then Is_Tagged_Type (E)
10888 then
10889 Install_Hidden_Primitives
10890 (Prims_List => Vis_Prims_List,
10891 Gen_T => Generic_Parent_Type (Parent (E)),
10892 Act_T => E);
10893 end if;
10894
10895 Next_Entity (E);
10896 end loop;
10897 end;
10898
10899 -- If it is a child unit, make the parent instance (which is an
10900 -- instance of the parent of the generic) visible. The parent
10901 -- instance is the prefix of the name of the generic unit.
10902
10903 if Ekind (Scope (Gen_Unit)) = E_Generic_Package
10904 and then Nkind (Gen_Id) = N_Expanded_Name
10905 then
10906 Par_Ent := Entity (Prefix (Gen_Id));
10907 Par_Vis := Is_Immediately_Visible (Par_Ent);
10908 Install_Parent (Par_Ent, In_Body => True);
10909 Parent_Installed := True;
10910
10911 elsif Is_Child_Unit (Gen_Unit) then
10912 Par_Ent := Scope (Gen_Unit);
10913 Par_Vis := Is_Immediately_Visible (Par_Ent);
10914 Install_Parent (Par_Ent, In_Body => True);
10915 Parent_Installed := True;
10916 end if;
10917
10918 -- If the instantiation is a library unit, and this is the main unit,
10919 -- then build the resulting compilation unit nodes for the instance.
10920 -- If this is a compilation unit but it is not the main unit, then it
10921 -- is the body of a unit in the context, that is being compiled
10922 -- because it is encloses some inlined unit or another generic unit
10923 -- being instantiated. In that case, this body is not part of the
10924 -- current compilation, and is not attached to the tree, but its
10925 -- parent must be set for analysis.
10926
10927 if Nkind (Parent (Inst_Node)) = N_Compilation_Unit then
10928
10929 -- Replace instance node with body of instance, and create new
10930 -- node for corresponding instance declaration.
10931
10932 Build_Instance_Compilation_Unit_Nodes
10933 (Inst_Node, Act_Body, Act_Decl);
10934 Analyze (Inst_Node);
10935
10936 if Parent (Inst_Node) = Cunit (Main_Unit) then
10937
10938 -- If the instance is a child unit itself, then set the scope
10939 -- of the expanded body to be the parent of the instantiation
10940 -- (ensuring that the fully qualified name will be generated
10941 -- for the elaboration subprogram).
10942
10943 if Nkind (Defining_Unit_Name (Act_Spec)) =
10944 N_Defining_Program_Unit_Name
10945 then
10946 Set_Scope (Defining_Entity (Inst_Node), Scope (Act_Decl_Id));
10947 end if;
10948 end if;
10949
10950 -- Case where instantiation is not a library unit
10951
10952 else
10953 -- If this is an early instantiation, i.e. appears textually
10954 -- before the corresponding body and must be elaborated first,
10955 -- indicate that the body instance is to be delayed.
10956
10957 Install_Body (Act_Body, Inst_Node, Gen_Body, Gen_Decl);
10958
10959 -- Now analyze the body. We turn off all checks if this is an
10960 -- internal unit, since there is no reason to have checks on for
10961 -- any predefined run-time library code. All such code is designed
10962 -- to be compiled with checks off.
10963
10964 -- Note that we do NOT apply this criterion to children of GNAT
10965 -- The latter units must suppress checks explicitly if needed.
10966
10967 if Is_Predefined_File_Name
10968 (Unit_File_Name (Get_Source_Unit (Gen_Decl)))
10969 then
10970 Analyze (Act_Body, Suppress => All_Checks);
10971 else
10972 Analyze (Act_Body);
10973 end if;
10974 end if;
10975
10976 Inherit_Context (Gen_Body, Inst_Node);
10977
10978 -- Remove the parent instances if they have been placed on the scope
10979 -- stack to compile the body.
10980
10981 if Parent_Installed then
10982 Remove_Parent (In_Body => True);
10983
10984 -- Restore the previous visibility of the parent
10985
10986 Set_Is_Immediately_Visible (Par_Ent, Par_Vis);
10987 end if;
10988
10989 Restore_Hidden_Primitives (Vis_Prims_List);
10990 Restore_Private_Views (Act_Decl_Id);
10991
10992 -- Remove the current unit from visibility if this is an instance
10993 -- that is not elaborated on the fly for inlining purposes.
10994
10995 if not Inlined_Body then
10996 Set_Is_Immediately_Visible (Act_Decl_Id, False);
10997 end if;
10998
10999 Restore_Env;
11000 Ignore_Pragma_SPARK_Mode := Save_IPSM;
11001 Style_Check := Save_Style_Check;
11002
11003 -- If we have no body, and the unit requires a body, then complain. This
11004 -- complaint is suppressed if we have detected other errors (since a
11005 -- common reason for missing the body is that it had errors).
11006 -- In CodePeer mode, a warning has been emitted already, no need for
11007 -- further messages.
11008
11009 elsif Unit_Requires_Body (Gen_Unit)
11010 and then not Body_Optional
11011 then
11012 if CodePeer_Mode then
11013 null;
11014
11015 elsif Serious_Errors_Detected = 0 then
11016 Error_Msg_NE
11017 ("cannot find body of generic package &", Inst_Node, Gen_Unit);
11018
11019 -- Don't attempt to perform any cleanup actions if some other error
11020 -- was already detected, since this can cause blowups.
11021
11022 else
11023 return;
11024 end if;
11025
11026 -- Case of package that does not need a body
11027
11028 else
11029 -- If the instantiation of the declaration is a library unit, rewrite
11030 -- the original package instantiation as a package declaration in the
11031 -- compilation unit node.
11032
11033 if Nkind (Parent (Inst_Node)) = N_Compilation_Unit then
11034 Set_Parent_Spec (Act_Decl, Parent_Spec (Inst_Node));
11035 Rewrite (Inst_Node, Act_Decl);
11036
11037 -- Generate elaboration entity, in case spec has elaboration code.
11038 -- This cannot be done when the instance is analyzed, because it
11039 -- is not known yet whether the body exists.
11040
11041 Set_Elaboration_Entity_Required (Act_Decl_Id, False);
11042 Build_Elaboration_Entity (Parent (Inst_Node), Act_Decl_Id);
11043
11044 -- If the instantiation is not a library unit, then append the
11045 -- declaration to the list of implicitly generated entities, unless
11046 -- it is already a list member which means that it was already
11047 -- processed
11048
11049 elsif not Is_List_Member (Act_Decl) then
11050 Mark_Rewrite_Insertion (Act_Decl);
11051 Insert_Before (Inst_Node, Act_Decl);
11052 end if;
11053 end if;
11054
11055 Expander_Mode_Restore;
11056 end Instantiate_Package_Body;
11057
11058 ---------------------------------
11059 -- Instantiate_Subprogram_Body --
11060 ---------------------------------
11061
11062 procedure Instantiate_Subprogram_Body
11063 (Body_Info : Pending_Body_Info;
11064 Body_Optional : Boolean := False)
11065 is
11066 Act_Decl : constant Node_Id := Body_Info.Act_Decl;
11067 Inst_Node : constant Node_Id := Body_Info.Inst_Node;
11068 Loc : constant Source_Ptr := Sloc (Inst_Node);
11069 Gen_Id : constant Node_Id := Name (Inst_Node);
11070 Gen_Unit : constant Entity_Id := Get_Generic_Entity (Inst_Node);
11071 Gen_Decl : constant Node_Id := Unit_Declaration_Node (Gen_Unit);
11072 Act_Decl_Id : constant Entity_Id :=
11073 Defining_Unit_Name (Specification (Act_Decl));
11074 Pack_Id : constant Entity_Id :=
11075 Defining_Unit_Name (Parent (Act_Decl));
11076
11077 Saved_IPSM : constant Boolean := Ignore_Pragma_SPARK_Mode;
11078 Saved_Style_Check : constant Boolean := Style_Check;
11079 Saved_Warnings : constant Warning_Record := Save_Warnings;
11080
11081 Act_Body : Node_Id;
11082 Act_Body_Id : Entity_Id;
11083 Gen_Body : Node_Id;
11084 Gen_Body_Id : Node_Id;
11085 Pack_Body : Node_Id;
11086 Par_Ent : Entity_Id := Empty;
11087 Par_Vis : Boolean := False;
11088 Ret_Expr : Node_Id;
11089
11090 Parent_Installed : Boolean := False;
11091
11092 begin
11093 Gen_Body_Id := Corresponding_Body (Gen_Decl);
11094
11095 -- Subprogram body may have been created already because of an inline
11096 -- pragma, or because of multiple elaborations of the enclosing package
11097 -- when several instances of the subprogram appear in the main unit.
11098
11099 if Present (Corresponding_Body (Act_Decl)) then
11100 return;
11101 end if;
11102
11103 Expander_Mode_Save_And_Set (Body_Info.Expander_Status);
11104
11105 -- Re-establish the state of information on which checks are suppressed.
11106 -- This information was set in Body_Info at the point of instantiation,
11107 -- and now we restore it so that the instance is compiled using the
11108 -- check status at the instantiation (RM 11.5(7.2/2), AI95-00224-01).
11109
11110 Local_Suppress_Stack_Top := Body_Info.Local_Suppress_Stack_Top;
11111 Scope_Suppress := Body_Info.Scope_Suppress;
11112 Opt.Ada_Version := Body_Info.Version;
11113 Opt.Ada_Version_Pragma := Body_Info.Version_Pragma;
11114 Restore_Warnings (Body_Info.Warnings);
11115 Opt.SPARK_Mode := Body_Info.SPARK_Mode;
11116 Opt.SPARK_Mode_Pragma := Body_Info.SPARK_Mode_Pragma;
11117
11118 if No (Gen_Body_Id) then
11119
11120 -- For imported generic subprogram, no body to compile, complete
11121 -- the spec entity appropriately.
11122
11123 if Is_Imported (Gen_Unit) then
11124 Set_Is_Imported (Act_Decl_Id);
11125 Set_First_Rep_Item (Act_Decl_Id, First_Rep_Item (Gen_Unit));
11126 Set_Interface_Name (Act_Decl_Id, Interface_Name (Gen_Unit));
11127 Set_Convention (Act_Decl_Id, Convention (Gen_Unit));
11128 Set_Has_Completion (Act_Decl_Id);
11129 return;
11130
11131 -- For other cases, compile the body
11132
11133 else
11134 Load_Parent_Of_Generic
11135 (Inst_Node, Specification (Gen_Decl), Body_Optional);
11136 Gen_Body_Id := Corresponding_Body (Gen_Decl);
11137 end if;
11138 end if;
11139
11140 Instantiation_Node := Inst_Node;
11141
11142 if Present (Gen_Body_Id) then
11143 Gen_Body := Unit_Declaration_Node (Gen_Body_Id);
11144
11145 if Nkind (Gen_Body) = N_Subprogram_Body_Stub then
11146
11147 -- Either body is not present, or context is non-expanding, as
11148 -- when compiling a subunit. Mark the instance as completed, and
11149 -- diagnose a missing body when needed.
11150
11151 if Expander_Active
11152 and then Operating_Mode = Generate_Code
11153 then
11154 Error_Msg_N
11155 ("missing proper body for instantiation", Gen_Body);
11156 end if;
11157
11158 Set_Has_Completion (Act_Decl_Id);
11159 return;
11160 end if;
11161
11162 Save_Env (Gen_Unit, Act_Decl_Id);
11163 Style_Check := False;
11164
11165 -- If the context of the instance is subject to SPARK_Mode "off" or
11166 -- the annotation is altogether missing, set the global flag which
11167 -- signals Analyze_Pragma to ignore all SPARK_Mode pragmas within
11168 -- the instance.
11169
11170 if SPARK_Mode /= On then
11171 Ignore_Pragma_SPARK_Mode := True;
11172 end if;
11173
11174 Current_Sem_Unit := Body_Info.Current_Sem_Unit;
11175 Create_Instantiation_Source
11176 (Inst_Node,
11177 Gen_Body_Id,
11178 False,
11179 S_Adjustment);
11180
11181 Act_Body :=
11182 Copy_Generic_Node
11183 (Original_Node (Gen_Body), Empty, Instantiating => True);
11184
11185 -- Create proper defining name for the body, to correspond to the one
11186 -- in the spec.
11187
11188 Act_Body_Id :=
11189 Make_Defining_Identifier (Sloc (Act_Decl_Id), Chars (Act_Decl_Id));
11190
11191 Set_Comes_From_Source (Act_Body_Id, Comes_From_Source (Act_Decl_Id));
11192 Set_Defining_Unit_Name (Specification (Act_Body), Act_Body_Id);
11193
11194 Set_Corresponding_Spec (Act_Body, Act_Decl_Id);
11195 Set_Has_Completion (Act_Decl_Id);
11196 Check_Generic_Actuals (Pack_Id, False);
11197
11198 -- Generate a reference to link the visible subprogram instance to
11199 -- the generic body, which for navigation purposes is the only
11200 -- available source for the instance.
11201
11202 Generate_Reference
11203 (Related_Instance (Pack_Id),
11204 Gen_Body_Id, 'b', Set_Ref => False, Force => True);
11205
11206 -- If it is a child unit, make the parent instance (which is an
11207 -- instance of the parent of the generic) visible. The parent
11208 -- instance is the prefix of the name of the generic unit.
11209
11210 if Ekind (Scope (Gen_Unit)) = E_Generic_Package
11211 and then Nkind (Gen_Id) = N_Expanded_Name
11212 then
11213 Par_Ent := Entity (Prefix (Gen_Id));
11214 Par_Vis := Is_Immediately_Visible (Par_Ent);
11215 Install_Parent (Par_Ent, In_Body => True);
11216 Parent_Installed := True;
11217
11218 elsif Is_Child_Unit (Gen_Unit) then
11219 Par_Ent := Scope (Gen_Unit);
11220 Par_Vis := Is_Immediately_Visible (Par_Ent);
11221 Install_Parent (Par_Ent, In_Body => True);
11222 Parent_Installed := True;
11223 end if;
11224
11225 -- Subprogram body is placed in the body of wrapper package,
11226 -- whose spec contains the subprogram declaration as well as
11227 -- the renaming declarations for the generic parameters.
11228
11229 Pack_Body :=
11230 Make_Package_Body (Loc,
11231 Defining_Unit_Name => New_Copy (Pack_Id),
11232 Declarations => New_List (Act_Body));
11233
11234 Set_Corresponding_Spec (Pack_Body, Pack_Id);
11235
11236 -- If the instantiation is a library unit, then build resulting
11237 -- compilation unit nodes for the instance. The declaration of
11238 -- the enclosing package is the grandparent of the subprogram
11239 -- declaration. First replace the instantiation node as the unit
11240 -- of the corresponding compilation.
11241
11242 if Nkind (Parent (Inst_Node)) = N_Compilation_Unit then
11243 if Parent (Inst_Node) = Cunit (Main_Unit) then
11244 Set_Unit (Parent (Inst_Node), Inst_Node);
11245 Build_Instance_Compilation_Unit_Nodes
11246 (Inst_Node, Pack_Body, Parent (Parent (Act_Decl)));
11247 Analyze (Inst_Node);
11248 else
11249 Set_Parent (Pack_Body, Parent (Inst_Node));
11250 Analyze (Pack_Body);
11251 end if;
11252
11253 else
11254 Insert_Before (Inst_Node, Pack_Body);
11255 Mark_Rewrite_Insertion (Pack_Body);
11256 Analyze (Pack_Body);
11257
11258 if Expander_Active then
11259 Freeze_Subprogram_Body (Inst_Node, Gen_Body, Pack_Id);
11260 end if;
11261 end if;
11262
11263 Inherit_Context (Gen_Body, Inst_Node);
11264
11265 Restore_Private_Views (Pack_Id, False);
11266
11267 if Parent_Installed then
11268 Remove_Parent (In_Body => True);
11269
11270 -- Restore the previous visibility of the parent
11271
11272 Set_Is_Immediately_Visible (Par_Ent, Par_Vis);
11273 end if;
11274
11275 Restore_Env;
11276 Ignore_Pragma_SPARK_Mode := Saved_IPSM;
11277 Style_Check := Saved_Style_Check;
11278 Restore_Warnings (Saved_Warnings);
11279
11280 -- Body not found. Error was emitted already. If there were no previous
11281 -- errors, this may be an instance whose scope is a premature instance.
11282 -- In that case we must insure that the (legal) program does raise
11283 -- program error if executed. We generate a subprogram body for this
11284 -- purpose. See DEC ac30vso.
11285
11286 -- Should not reference proprietary DEC tests in comments ???
11287
11288 elsif Serious_Errors_Detected = 0
11289 and then Nkind (Parent (Inst_Node)) /= N_Compilation_Unit
11290 then
11291 if Body_Optional then
11292 return;
11293
11294 elsif Ekind (Act_Decl_Id) = E_Procedure then
11295 Act_Body :=
11296 Make_Subprogram_Body (Loc,
11297 Specification =>
11298 Make_Procedure_Specification (Loc,
11299 Defining_Unit_Name =>
11300 Make_Defining_Identifier (Loc, Chars (Act_Decl_Id)),
11301 Parameter_Specifications =>
11302 New_Copy_List
11303 (Parameter_Specifications (Parent (Act_Decl_Id)))),
11304
11305 Declarations => Empty_List,
11306 Handled_Statement_Sequence =>
11307 Make_Handled_Sequence_Of_Statements (Loc,
11308 Statements =>
11309 New_List (
11310 Make_Raise_Program_Error (Loc,
11311 Reason =>
11312 PE_Access_Before_Elaboration))));
11313
11314 else
11315 Ret_Expr :=
11316 Make_Raise_Program_Error (Loc,
11317 Reason => PE_Access_Before_Elaboration);
11318
11319 Set_Etype (Ret_Expr, (Etype (Act_Decl_Id)));
11320 Set_Analyzed (Ret_Expr);
11321
11322 Act_Body :=
11323 Make_Subprogram_Body (Loc,
11324 Specification =>
11325 Make_Function_Specification (Loc,
11326 Defining_Unit_Name =>
11327 Make_Defining_Identifier (Loc, Chars (Act_Decl_Id)),
11328 Parameter_Specifications =>
11329 New_Copy_List
11330 (Parameter_Specifications (Parent (Act_Decl_Id))),
11331 Result_Definition =>
11332 New_Occurrence_Of (Etype (Act_Decl_Id), Loc)),
11333
11334 Declarations => Empty_List,
11335 Handled_Statement_Sequence =>
11336 Make_Handled_Sequence_Of_Statements (Loc,
11337 Statements =>
11338 New_List
11339 (Make_Simple_Return_Statement (Loc, Ret_Expr))));
11340 end if;
11341
11342 Pack_Body :=
11343 Make_Package_Body (Loc,
11344 Defining_Unit_Name => New_Copy (Pack_Id),
11345 Declarations => New_List (Act_Body));
11346
11347 Insert_After (Inst_Node, Pack_Body);
11348 Set_Corresponding_Spec (Pack_Body, Pack_Id);
11349 Analyze (Pack_Body);
11350 end if;
11351
11352 Expander_Mode_Restore;
11353 end Instantiate_Subprogram_Body;
11354
11355 ----------------------
11356 -- Instantiate_Type --
11357 ----------------------
11358
11359 function Instantiate_Type
11360 (Formal : Node_Id;
11361 Actual : Node_Id;
11362 Analyzed_Formal : Node_Id;
11363 Actual_Decls : List_Id) return List_Id
11364 is
11365 Gen_T : constant Entity_Id := Defining_Identifier (Formal);
11366 A_Gen_T : constant Entity_Id :=
11367 Defining_Identifier (Analyzed_Formal);
11368 Ancestor : Entity_Id := Empty;
11369 Def : constant Node_Id := Formal_Type_Definition (Formal);
11370 Act_T : Entity_Id;
11371 Decl_Node : Node_Id;
11372 Decl_Nodes : List_Id;
11373 Loc : Source_Ptr;
11374 Subt : Entity_Id;
11375
11376 procedure Diagnose_Predicated_Actual;
11377 -- There are a number of constructs in which a discrete type with
11378 -- predicates is illegal, e.g. as an index in an array type declaration.
11379 -- If a generic type is used is such a construct in a generic package
11380 -- declaration, it carries the flag No_Predicate_On_Actual. it is part
11381 -- of the generic contract that the actual cannot have predicates.
11382
11383 procedure Validate_Array_Type_Instance;
11384 procedure Validate_Access_Subprogram_Instance;
11385 procedure Validate_Access_Type_Instance;
11386 procedure Validate_Derived_Type_Instance;
11387 procedure Validate_Derived_Interface_Type_Instance;
11388 procedure Validate_Discriminated_Formal_Type;
11389 procedure Validate_Interface_Type_Instance;
11390 procedure Validate_Private_Type_Instance;
11391 procedure Validate_Incomplete_Type_Instance;
11392 -- These procedures perform validation tests for the named case.
11393 -- Validate_Discriminated_Formal_Type is shared by formal private
11394 -- types and Ada 2012 formal incomplete types.
11395
11396 function Subtypes_Match (Gen_T, Act_T : Entity_Id) return Boolean;
11397 -- Check that base types are the same and that the subtypes match
11398 -- statically. Used in several of the above.
11399
11400 ---------------------------------
11401 -- Diagnose_Predicated_Actual --
11402 ---------------------------------
11403
11404 procedure Diagnose_Predicated_Actual is
11405 begin
11406 if No_Predicate_On_Actual (A_Gen_T)
11407 and then Has_Predicates (Act_T)
11408 then
11409 Error_Msg_NE
11410 ("actual for& cannot be a type with predicate",
11411 Instantiation_Node, A_Gen_T);
11412
11413 elsif No_Dynamic_Predicate_On_Actual (A_Gen_T)
11414 and then Has_Predicates (Act_T)
11415 and then not Has_Static_Predicate_Aspect (Act_T)
11416 then
11417 Error_Msg_NE
11418 ("actual for& cannot be a type with a dynamic predicate",
11419 Instantiation_Node, A_Gen_T);
11420 end if;
11421 end Diagnose_Predicated_Actual;
11422
11423 --------------------
11424 -- Subtypes_Match --
11425 --------------------
11426
11427 function Subtypes_Match (Gen_T, Act_T : Entity_Id) return Boolean is
11428 T : constant Entity_Id := Get_Instance_Of (Gen_T);
11429
11430 begin
11431 -- Some detailed comments would be useful here ???
11432
11433 return ((Base_Type (T) = Act_T
11434 or else Base_Type (T) = Base_Type (Act_T))
11435 and then Subtypes_Statically_Match (T, Act_T))
11436
11437 or else (Is_Class_Wide_Type (Gen_T)
11438 and then Is_Class_Wide_Type (Act_T)
11439 and then Subtypes_Match
11440 (Get_Instance_Of (Root_Type (Gen_T)),
11441 Root_Type (Act_T)))
11442
11443 or else
11444 (Ekind_In (Gen_T, E_Anonymous_Access_Subprogram_Type,
11445 E_Anonymous_Access_Type)
11446 and then Ekind (Act_T) = Ekind (Gen_T)
11447 and then Subtypes_Statically_Match
11448 (Designated_Type (Gen_T), Designated_Type (Act_T)));
11449 end Subtypes_Match;
11450
11451 -----------------------------------------
11452 -- Validate_Access_Subprogram_Instance --
11453 -----------------------------------------
11454
11455 procedure Validate_Access_Subprogram_Instance is
11456 begin
11457 if not Is_Access_Type (Act_T)
11458 or else Ekind (Designated_Type (Act_T)) /= E_Subprogram_Type
11459 then
11460 Error_Msg_NE
11461 ("expect access type in instantiation of &", Actual, Gen_T);
11462 Abandon_Instantiation (Actual);
11463 end if;
11464
11465 -- According to AI05-288, actuals for access_to_subprograms must be
11466 -- subtype conformant with the generic formal. Previous to AI05-288
11467 -- only mode conformance was required.
11468
11469 -- This is a binding interpretation that applies to previous versions
11470 -- of the language, no need to maintain previous weaker checks.
11471
11472 Check_Subtype_Conformant
11473 (Designated_Type (Act_T),
11474 Designated_Type (A_Gen_T),
11475 Actual,
11476 Get_Inst => True);
11477
11478 if Ekind (Base_Type (Act_T)) = E_Access_Protected_Subprogram_Type then
11479 if Ekind (A_Gen_T) = E_Access_Subprogram_Type then
11480 Error_Msg_NE
11481 ("protected access type not allowed for formal &",
11482 Actual, Gen_T);
11483 end if;
11484
11485 elsif Ekind (A_Gen_T) = E_Access_Protected_Subprogram_Type then
11486 Error_Msg_NE
11487 ("expect protected access type for formal &",
11488 Actual, Gen_T);
11489 end if;
11490
11491 -- If the formal has a specified convention (which in most cases
11492 -- will be StdCall) verify that the actual has the same convention.
11493
11494 if Has_Convention_Pragma (A_Gen_T)
11495 and then Convention (A_Gen_T) /= Convention (Act_T)
11496 then
11497 Error_Msg_Name_1 := Get_Convention_Name (Convention (A_Gen_T));
11498 Error_Msg_NE
11499 ("actual for formal & must have convention %", Actual, Gen_T);
11500 end if;
11501 end Validate_Access_Subprogram_Instance;
11502
11503 -----------------------------------
11504 -- Validate_Access_Type_Instance --
11505 -----------------------------------
11506
11507 procedure Validate_Access_Type_Instance is
11508 Desig_Type : constant Entity_Id :=
11509 Find_Actual_Type (Designated_Type (A_Gen_T), A_Gen_T);
11510 Desig_Act : Entity_Id;
11511
11512 begin
11513 if not Is_Access_Type (Act_T) then
11514 Error_Msg_NE
11515 ("expect access type in instantiation of &", Actual, Gen_T);
11516 Abandon_Instantiation (Actual);
11517 end if;
11518
11519 if Is_Access_Constant (A_Gen_T) then
11520 if not Is_Access_Constant (Act_T) then
11521 Error_Msg_N
11522 ("actual type must be access-to-constant type", Actual);
11523 Abandon_Instantiation (Actual);
11524 end if;
11525 else
11526 if Is_Access_Constant (Act_T) then
11527 Error_Msg_N
11528 ("actual type must be access-to-variable type", Actual);
11529 Abandon_Instantiation (Actual);
11530
11531 elsif Ekind (A_Gen_T) = E_General_Access_Type
11532 and then Ekind (Base_Type (Act_T)) /= E_General_Access_Type
11533 then
11534 Error_Msg_N -- CODEFIX
11535 ("actual must be general access type!", Actual);
11536 Error_Msg_NE -- CODEFIX
11537 ("add ALL to }!", Actual, Act_T);
11538 Abandon_Instantiation (Actual);
11539 end if;
11540 end if;
11541
11542 -- The designated subtypes, that is to say the subtypes introduced
11543 -- by an access type declaration (and not by a subtype declaration)
11544 -- must match.
11545
11546 Desig_Act := Designated_Type (Base_Type (Act_T));
11547
11548 -- The designated type may have been introduced through a limited_
11549 -- with clause, in which case retrieve the non-limited view. This
11550 -- applies to incomplete types as well as to class-wide types.
11551
11552 if From_Limited_With (Desig_Act) then
11553 Desig_Act := Available_View (Desig_Act);
11554 end if;
11555
11556 if not Subtypes_Match (Desig_Type, Desig_Act) then
11557 Error_Msg_NE
11558 ("designated type of actual does not match that of formal &",
11559 Actual, Gen_T);
11560
11561 if not Predicates_Match (Desig_Type, Desig_Act) then
11562 Error_Msg_N ("\predicates do not match", Actual);
11563 end if;
11564
11565 Abandon_Instantiation (Actual);
11566
11567 elsif Is_Access_Type (Designated_Type (Act_T))
11568 and then Is_Constrained (Designated_Type (Designated_Type (Act_T)))
11569 /=
11570 Is_Constrained (Designated_Type (Desig_Type))
11571 then
11572 Error_Msg_NE
11573 ("designated type of actual does not match that of formal &",
11574 Actual, Gen_T);
11575
11576 if not Predicates_Match (Desig_Type, Desig_Act) then
11577 Error_Msg_N ("\predicates do not match", Actual);
11578 end if;
11579
11580 Abandon_Instantiation (Actual);
11581 end if;
11582
11583 -- Ada 2005: null-exclusion indicators of the two types must agree
11584
11585 if Can_Never_Be_Null (A_Gen_T) /= Can_Never_Be_Null (Act_T) then
11586 Error_Msg_NE
11587 ("non null exclusion of actual and formal & do not match",
11588 Actual, Gen_T);
11589 end if;
11590 end Validate_Access_Type_Instance;
11591
11592 ----------------------------------
11593 -- Validate_Array_Type_Instance --
11594 ----------------------------------
11595
11596 procedure Validate_Array_Type_Instance is
11597 I1 : Node_Id;
11598 I2 : Node_Id;
11599 T2 : Entity_Id;
11600
11601 function Formal_Dimensions return Nat;
11602 -- Count number of dimensions in array type formal
11603
11604 -----------------------
11605 -- Formal_Dimensions --
11606 -----------------------
11607
11608 function Formal_Dimensions return Nat is
11609 Num : Nat := 0;
11610 Index : Node_Id;
11611
11612 begin
11613 if Nkind (Def) = N_Constrained_Array_Definition then
11614 Index := First (Discrete_Subtype_Definitions (Def));
11615 else
11616 Index := First (Subtype_Marks (Def));
11617 end if;
11618
11619 while Present (Index) loop
11620 Num := Num + 1;
11621 Next_Index (Index);
11622 end loop;
11623
11624 return Num;
11625 end Formal_Dimensions;
11626
11627 -- Start of processing for Validate_Array_Type_Instance
11628
11629 begin
11630 if not Is_Array_Type (Act_T) then
11631 Error_Msg_NE
11632 ("expect array type in instantiation of &", Actual, Gen_T);
11633 Abandon_Instantiation (Actual);
11634
11635 elsif Nkind (Def) = N_Constrained_Array_Definition then
11636 if not (Is_Constrained (Act_T)) then
11637 Error_Msg_NE
11638 ("expect constrained array in instantiation of &",
11639 Actual, Gen_T);
11640 Abandon_Instantiation (Actual);
11641 end if;
11642
11643 else
11644 if Is_Constrained (Act_T) then
11645 Error_Msg_NE
11646 ("expect unconstrained array in instantiation of &",
11647 Actual, Gen_T);
11648 Abandon_Instantiation (Actual);
11649 end if;
11650 end if;
11651
11652 if Formal_Dimensions /= Number_Dimensions (Act_T) then
11653 Error_Msg_NE
11654 ("dimensions of actual do not match formal &", Actual, Gen_T);
11655 Abandon_Instantiation (Actual);
11656 end if;
11657
11658 I1 := First_Index (A_Gen_T);
11659 I2 := First_Index (Act_T);
11660 for J in 1 .. Formal_Dimensions loop
11661
11662 -- If the indexes of the actual were given by a subtype_mark,
11663 -- the index was transformed into a range attribute. Retrieve
11664 -- the original type mark for checking.
11665
11666 if Is_Entity_Name (Original_Node (I2)) then
11667 T2 := Entity (Original_Node (I2));
11668 else
11669 T2 := Etype (I2);
11670 end if;
11671
11672 if not Subtypes_Match
11673 (Find_Actual_Type (Etype (I1), A_Gen_T), T2)
11674 then
11675 Error_Msg_NE
11676 ("index types of actual do not match those of formal &",
11677 Actual, Gen_T);
11678 Abandon_Instantiation (Actual);
11679 end if;
11680
11681 Next_Index (I1);
11682 Next_Index (I2);
11683 end loop;
11684
11685 -- Check matching subtypes. Note that there are complex visibility
11686 -- issues when the generic is a child unit and some aspect of the
11687 -- generic type is declared in a parent unit of the generic. We do
11688 -- the test to handle this special case only after a direct check
11689 -- for static matching has failed. The case where both the component
11690 -- type and the array type are separate formals, and the component
11691 -- type is a private view may also require special checking in
11692 -- Subtypes_Match.
11693
11694 if Subtypes_Match
11695 (Component_Type (A_Gen_T), Component_Type (Act_T))
11696 or else
11697 Subtypes_Match
11698 (Find_Actual_Type (Component_Type (A_Gen_T), A_Gen_T),
11699 Component_Type (Act_T))
11700 then
11701 null;
11702 else
11703 Error_Msg_NE
11704 ("component subtype of actual does not match that of formal &",
11705 Actual, Gen_T);
11706 Abandon_Instantiation (Actual);
11707 end if;
11708
11709 if Has_Aliased_Components (A_Gen_T)
11710 and then not Has_Aliased_Components (Act_T)
11711 then
11712 Error_Msg_NE
11713 ("actual must have aliased components to match formal type &",
11714 Actual, Gen_T);
11715 end if;
11716 end Validate_Array_Type_Instance;
11717
11718 -----------------------------------------------
11719 -- Validate_Derived_Interface_Type_Instance --
11720 -----------------------------------------------
11721
11722 procedure Validate_Derived_Interface_Type_Instance is
11723 Par : constant Entity_Id := Entity (Subtype_Indication (Def));
11724 Elmt : Elmt_Id;
11725
11726 begin
11727 -- First apply interface instance checks
11728
11729 Validate_Interface_Type_Instance;
11730
11731 -- Verify that immediate parent interface is an ancestor of
11732 -- the actual.
11733
11734 if Present (Par)
11735 and then not Interface_Present_In_Ancestor (Act_T, Par)
11736 then
11737 Error_Msg_NE
11738 ("interface actual must include progenitor&", Actual, Par);
11739 end if;
11740
11741 -- Now verify that the actual includes all other ancestors of
11742 -- the formal.
11743
11744 Elmt := First_Elmt (Interfaces (A_Gen_T));
11745 while Present (Elmt) loop
11746 if not Interface_Present_In_Ancestor
11747 (Act_T, Get_Instance_Of (Node (Elmt)))
11748 then
11749 Error_Msg_NE
11750 ("interface actual must include progenitor&",
11751 Actual, Node (Elmt));
11752 end if;
11753
11754 Next_Elmt (Elmt);
11755 end loop;
11756 end Validate_Derived_Interface_Type_Instance;
11757
11758 ------------------------------------
11759 -- Validate_Derived_Type_Instance --
11760 ------------------------------------
11761
11762 procedure Validate_Derived_Type_Instance is
11763 Actual_Discr : Entity_Id;
11764 Ancestor_Discr : Entity_Id;
11765
11766 begin
11767 -- If the parent type in the generic declaration is itself a previous
11768 -- formal type, then it is local to the generic and absent from the
11769 -- analyzed generic definition. In that case the ancestor is the
11770 -- instance of the formal (which must have been instantiated
11771 -- previously), unless the ancestor is itself a formal derived type.
11772 -- In this latter case (which is the subject of Corrigendum 8652/0038
11773 -- (AI-202) the ancestor of the formals is the ancestor of its
11774 -- parent. Otherwise, the analyzed generic carries the parent type.
11775 -- If the parent type is defined in a previous formal package, then
11776 -- the scope of that formal package is that of the generic type
11777 -- itself, and it has already been mapped into the corresponding type
11778 -- in the actual package.
11779
11780 -- Common case: parent type defined outside of the generic
11781
11782 if Is_Entity_Name (Subtype_Mark (Def))
11783 and then Present (Entity (Subtype_Mark (Def)))
11784 then
11785 Ancestor := Get_Instance_Of (Entity (Subtype_Mark (Def)));
11786
11787 -- Check whether parent is defined in a previous formal package
11788
11789 elsif
11790 Scope (Scope (Base_Type (Etype (A_Gen_T)))) = Scope (A_Gen_T)
11791 then
11792 Ancestor :=
11793 Get_Instance_Of (Base_Type (Etype (A_Gen_T)));
11794
11795 -- The type may be a local derivation, or a type extension of a
11796 -- previous formal, or of a formal of a parent package.
11797
11798 elsif Is_Derived_Type (Get_Instance_Of (A_Gen_T))
11799 or else
11800 Ekind (Get_Instance_Of (A_Gen_T)) = E_Record_Type_With_Private
11801 then
11802 -- Check whether the parent is another derived formal type in the
11803 -- same generic unit.
11804
11805 if Etype (A_Gen_T) /= A_Gen_T
11806 and then Is_Generic_Type (Etype (A_Gen_T))
11807 and then Scope (Etype (A_Gen_T)) = Scope (A_Gen_T)
11808 and then Etype (Etype (A_Gen_T)) /= Etype (A_Gen_T)
11809 then
11810 -- Locate ancestor of parent from the subtype declaration
11811 -- created for the actual.
11812
11813 declare
11814 Decl : Node_Id;
11815
11816 begin
11817 Decl := First (Actual_Decls);
11818 while Present (Decl) loop
11819 if Nkind (Decl) = N_Subtype_Declaration
11820 and then Chars (Defining_Identifier (Decl)) =
11821 Chars (Etype (A_Gen_T))
11822 then
11823 Ancestor := Generic_Parent_Type (Decl);
11824 exit;
11825 else
11826 Next (Decl);
11827 end if;
11828 end loop;
11829 end;
11830
11831 pragma Assert (Present (Ancestor));
11832
11833 -- The ancestor itself may be a previous formal that has been
11834 -- instantiated.
11835
11836 Ancestor := Get_Instance_Of (Ancestor);
11837
11838 else
11839 Ancestor :=
11840 Get_Instance_Of (Base_Type (Get_Instance_Of (A_Gen_T)));
11841 end if;
11842
11843 -- Check whether parent is a previous formal of the current generic
11844
11845 elsif Is_Derived_Type (A_Gen_T)
11846 and then Is_Generic_Type (Etype (A_Gen_T))
11847 and then Scope (A_Gen_T) = Scope (Etype (A_Gen_T))
11848 then
11849 Ancestor := Get_Instance_Of (First_Subtype (Etype (A_Gen_T)));
11850
11851 -- An unusual case: the actual is a type declared in a parent unit,
11852 -- but is not a formal type so there is no instance_of for it.
11853 -- Retrieve it by analyzing the record extension.
11854
11855 elsif Is_Child_Unit (Scope (A_Gen_T))
11856 and then In_Open_Scopes (Scope (Act_T))
11857 and then Is_Generic_Instance (Scope (Act_T))
11858 then
11859 Analyze (Subtype_Mark (Def));
11860 Ancestor := Entity (Subtype_Mark (Def));
11861
11862 else
11863 Ancestor := Get_Instance_Of (Etype (Base_Type (A_Gen_T)));
11864 end if;
11865
11866 -- If the formal derived type has pragma Preelaborable_Initialization
11867 -- then the actual type must have preelaborable initialization.
11868
11869 if Known_To_Have_Preelab_Init (A_Gen_T)
11870 and then not Has_Preelaborable_Initialization (Act_T)
11871 then
11872 Error_Msg_NE
11873 ("actual for & must have preelaborable initialization",
11874 Actual, Gen_T);
11875 end if;
11876
11877 -- Ada 2005 (AI-251)
11878
11879 if Ada_Version >= Ada_2005 and then Is_Interface (Ancestor) then
11880 if not Interface_Present_In_Ancestor (Act_T, Ancestor) then
11881 Error_Msg_NE
11882 ("(Ada 2005) expected type implementing & in instantiation",
11883 Actual, Ancestor);
11884 end if;
11885
11886 -- Finally verify that the (instance of) the ancestor is an ancestor
11887 -- of the actual.
11888
11889 elsif not Is_Ancestor (Base_Type (Ancestor), Act_T) then
11890 Error_Msg_NE
11891 ("expect type derived from & in instantiation",
11892 Actual, First_Subtype (Ancestor));
11893 Abandon_Instantiation (Actual);
11894 end if;
11895
11896 -- Ada 2005 (AI-443): Synchronized formal derived type checks. Note
11897 -- that the formal type declaration has been rewritten as a private
11898 -- extension.
11899
11900 if Ada_Version >= Ada_2005
11901 and then Nkind (Parent (A_Gen_T)) = N_Private_Extension_Declaration
11902 and then Synchronized_Present (Parent (A_Gen_T))
11903 then
11904 -- The actual must be a synchronized tagged type
11905
11906 if not Is_Tagged_Type (Act_T) then
11907 Error_Msg_N
11908 ("actual of synchronized type must be tagged", Actual);
11909 Abandon_Instantiation (Actual);
11910
11911 elsif Nkind (Parent (Act_T)) = N_Full_Type_Declaration
11912 and then Nkind (Type_Definition (Parent (Act_T))) =
11913 N_Derived_Type_Definition
11914 and then not Synchronized_Present
11915 (Type_Definition (Parent (Act_T)))
11916 then
11917 Error_Msg_N
11918 ("actual of synchronized type must be synchronized", Actual);
11919 Abandon_Instantiation (Actual);
11920 end if;
11921 end if;
11922
11923 -- Perform atomic/volatile checks (RM C.6(12)). Note that AI05-0218-1
11924 -- removes the second instance of the phrase "or allow pass by copy".
11925
11926 if Is_Atomic (Act_T) and then not Is_Atomic (Ancestor) then
11927 Error_Msg_N
11928 ("cannot have atomic actual type for non-atomic formal type",
11929 Actual);
11930
11931 elsif Is_Volatile (Act_T) and then not Is_Volatile (Ancestor) then
11932 Error_Msg_N
11933 ("cannot have volatile actual type for non-volatile formal type",
11934 Actual);
11935 end if;
11936
11937 -- It should not be necessary to check for unknown discriminants on
11938 -- Formal, but for some reason Has_Unknown_Discriminants is false for
11939 -- A_Gen_T, so Is_Definite_Subtype incorrectly returns True. This
11940 -- needs fixing. ???
11941
11942 if Is_Definite_Subtype (A_Gen_T)
11943 and then not Unknown_Discriminants_Present (Formal)
11944 and then not Is_Definite_Subtype (Act_T)
11945 then
11946 Error_Msg_N ("actual subtype must be constrained", Actual);
11947 Abandon_Instantiation (Actual);
11948 end if;
11949
11950 if not Unknown_Discriminants_Present (Formal) then
11951 if Is_Constrained (Ancestor) then
11952 if not Is_Constrained (Act_T) then
11953 Error_Msg_N ("actual subtype must be constrained", Actual);
11954 Abandon_Instantiation (Actual);
11955 end if;
11956
11957 -- Ancestor is unconstrained, Check if generic formal and actual
11958 -- agree on constrainedness. The check only applies to array types
11959 -- and discriminated types.
11960
11961 elsif Is_Constrained (Act_T) then
11962 if Ekind (Ancestor) = E_Access_Type
11963 or else (not Is_Constrained (A_Gen_T)
11964 and then Is_Composite_Type (A_Gen_T))
11965 then
11966 Error_Msg_N ("actual subtype must be unconstrained", Actual);
11967 Abandon_Instantiation (Actual);
11968 end if;
11969
11970 -- A class-wide type is only allowed if the formal has unknown
11971 -- discriminants.
11972
11973 elsif Is_Class_Wide_Type (Act_T)
11974 and then not Has_Unknown_Discriminants (Ancestor)
11975 then
11976 Error_Msg_NE
11977 ("actual for & cannot be a class-wide type", Actual, Gen_T);
11978 Abandon_Instantiation (Actual);
11979
11980 -- Otherwise, the formal and actual must have the same number
11981 -- of discriminants and each discriminant of the actual must
11982 -- correspond to a discriminant of the formal.
11983
11984 elsif Has_Discriminants (Act_T)
11985 and then not Has_Unknown_Discriminants (Act_T)
11986 and then Has_Discriminants (Ancestor)
11987 then
11988 Actual_Discr := First_Discriminant (Act_T);
11989 Ancestor_Discr := First_Discriminant (Ancestor);
11990 while Present (Actual_Discr)
11991 and then Present (Ancestor_Discr)
11992 loop
11993 if Base_Type (Act_T) /= Base_Type (Ancestor) and then
11994 No (Corresponding_Discriminant (Actual_Discr))
11995 then
11996 Error_Msg_NE
11997 ("discriminant & does not correspond "
11998 & "to ancestor discriminant", Actual, Actual_Discr);
11999 Abandon_Instantiation (Actual);
12000 end if;
12001
12002 Next_Discriminant (Actual_Discr);
12003 Next_Discriminant (Ancestor_Discr);
12004 end loop;
12005
12006 if Present (Actual_Discr) or else Present (Ancestor_Discr) then
12007 Error_Msg_NE
12008 ("actual for & must have same number of discriminants",
12009 Actual, Gen_T);
12010 Abandon_Instantiation (Actual);
12011 end if;
12012
12013 -- This case should be caught by the earlier check for
12014 -- constrainedness, but the check here is added for completeness.
12015
12016 elsif Has_Discriminants (Act_T)
12017 and then not Has_Unknown_Discriminants (Act_T)
12018 then
12019 Error_Msg_NE
12020 ("actual for & must not have discriminants", Actual, Gen_T);
12021 Abandon_Instantiation (Actual);
12022
12023 elsif Has_Discriminants (Ancestor) then
12024 Error_Msg_NE
12025 ("actual for & must have known discriminants", Actual, Gen_T);
12026 Abandon_Instantiation (Actual);
12027 end if;
12028
12029 if not Subtypes_Statically_Compatible
12030 (Act_T, Ancestor, Formal_Derived_Matching => True)
12031 then
12032 Error_Msg_N
12033 ("constraint on actual is incompatible with formal", Actual);
12034 Abandon_Instantiation (Actual);
12035 end if;
12036 end if;
12037
12038 -- If the formal and actual types are abstract, check that there
12039 -- are no abstract primitives of the actual type that correspond to
12040 -- nonabstract primitives of the formal type (second sentence of
12041 -- RM95 3.9.3(9)).
12042
12043 if Is_Abstract_Type (A_Gen_T) and then Is_Abstract_Type (Act_T) then
12044 Check_Abstract_Primitives : declare
12045 Gen_Prims : constant Elist_Id :=
12046 Primitive_Operations (A_Gen_T);
12047 Gen_Elmt : Elmt_Id;
12048 Gen_Subp : Entity_Id;
12049 Anc_Subp : Entity_Id;
12050 Anc_Formal : Entity_Id;
12051 Anc_F_Type : Entity_Id;
12052
12053 Act_Prims : constant Elist_Id := Primitive_Operations (Act_T);
12054 Act_Elmt : Elmt_Id;
12055 Act_Subp : Entity_Id;
12056 Act_Formal : Entity_Id;
12057 Act_F_Type : Entity_Id;
12058
12059 Subprograms_Correspond : Boolean;
12060
12061 function Is_Tagged_Ancestor (T1, T2 : Entity_Id) return Boolean;
12062 -- Returns true if T2 is derived directly or indirectly from
12063 -- T1, including derivations from interfaces. T1 and T2 are
12064 -- required to be specific tagged base types.
12065
12066 ------------------------
12067 -- Is_Tagged_Ancestor --
12068 ------------------------
12069
12070 function Is_Tagged_Ancestor (T1, T2 : Entity_Id) return Boolean
12071 is
12072 Intfc_Elmt : Elmt_Id;
12073
12074 begin
12075 -- The predicate is satisfied if the types are the same
12076
12077 if T1 = T2 then
12078 return True;
12079
12080 -- If we've reached the top of the derivation chain then
12081 -- we know that T1 is not an ancestor of T2.
12082
12083 elsif Etype (T2) = T2 then
12084 return False;
12085
12086 -- Proceed to check T2's immediate parent
12087
12088 elsif Is_Ancestor (T1, Base_Type (Etype (T2))) then
12089 return True;
12090
12091 -- Finally, check to see if T1 is an ancestor of any of T2's
12092 -- progenitors.
12093
12094 else
12095 Intfc_Elmt := First_Elmt (Interfaces (T2));
12096 while Present (Intfc_Elmt) loop
12097 if Is_Ancestor (T1, Node (Intfc_Elmt)) then
12098 return True;
12099 end if;
12100
12101 Next_Elmt (Intfc_Elmt);
12102 end loop;
12103 end if;
12104
12105 return False;
12106 end Is_Tagged_Ancestor;
12107
12108 -- Start of processing for Check_Abstract_Primitives
12109
12110 begin
12111 -- Loop over all of the formal derived type's primitives
12112
12113 Gen_Elmt := First_Elmt (Gen_Prims);
12114 while Present (Gen_Elmt) loop
12115 Gen_Subp := Node (Gen_Elmt);
12116
12117 -- If the primitive of the formal is not abstract, then
12118 -- determine whether there is a corresponding primitive of
12119 -- the actual type that's abstract.
12120
12121 if not Is_Abstract_Subprogram (Gen_Subp) then
12122 Act_Elmt := First_Elmt (Act_Prims);
12123 while Present (Act_Elmt) loop
12124 Act_Subp := Node (Act_Elmt);
12125
12126 -- If we find an abstract primitive of the actual,
12127 -- then we need to test whether it corresponds to the
12128 -- subprogram from which the generic formal primitive
12129 -- is inherited.
12130
12131 if Is_Abstract_Subprogram (Act_Subp) then
12132 Anc_Subp := Alias (Gen_Subp);
12133
12134 -- Test whether we have a corresponding primitive
12135 -- by comparing names, kinds, formal types, and
12136 -- result types.
12137
12138 if Chars (Anc_Subp) = Chars (Act_Subp)
12139 and then Ekind (Anc_Subp) = Ekind (Act_Subp)
12140 then
12141 Anc_Formal := First_Formal (Anc_Subp);
12142 Act_Formal := First_Formal (Act_Subp);
12143 while Present (Anc_Formal)
12144 and then Present (Act_Formal)
12145 loop
12146 Anc_F_Type := Etype (Anc_Formal);
12147 Act_F_Type := Etype (Act_Formal);
12148
12149 if Ekind (Anc_F_Type) =
12150 E_Anonymous_Access_Type
12151 then
12152 Anc_F_Type := Designated_Type (Anc_F_Type);
12153
12154 if Ekind (Act_F_Type) =
12155 E_Anonymous_Access_Type
12156 then
12157 Act_F_Type :=
12158 Designated_Type (Act_F_Type);
12159 else
12160 exit;
12161 end if;
12162
12163 elsif
12164 Ekind (Act_F_Type) = E_Anonymous_Access_Type
12165 then
12166 exit;
12167 end if;
12168
12169 Anc_F_Type := Base_Type (Anc_F_Type);
12170 Act_F_Type := Base_Type (Act_F_Type);
12171
12172 -- If the formal is controlling, then the
12173 -- the type of the actual primitive's formal
12174 -- must be derived directly or indirectly
12175 -- from the type of the ancestor primitive's
12176 -- formal.
12177
12178 if Is_Controlling_Formal (Anc_Formal) then
12179 if not Is_Tagged_Ancestor
12180 (Anc_F_Type, Act_F_Type)
12181 then
12182 exit;
12183 end if;
12184
12185 -- Otherwise the types of the formals must
12186 -- be the same.
12187
12188 elsif Anc_F_Type /= Act_F_Type then
12189 exit;
12190 end if;
12191
12192 Next_Entity (Anc_Formal);
12193 Next_Entity (Act_Formal);
12194 end loop;
12195
12196 -- If we traversed through all of the formals
12197 -- then so far the subprograms correspond, so
12198 -- now check that any result types correspond.
12199
12200 if No (Anc_Formal) and then No (Act_Formal) then
12201 Subprograms_Correspond := True;
12202
12203 if Ekind (Act_Subp) = E_Function then
12204 Anc_F_Type := Etype (Anc_Subp);
12205 Act_F_Type := Etype (Act_Subp);
12206
12207 if Ekind (Anc_F_Type) =
12208 E_Anonymous_Access_Type
12209 then
12210 Anc_F_Type :=
12211 Designated_Type (Anc_F_Type);
12212
12213 if Ekind (Act_F_Type) =
12214 E_Anonymous_Access_Type
12215 then
12216 Act_F_Type :=
12217 Designated_Type (Act_F_Type);
12218 else
12219 Subprograms_Correspond := False;
12220 end if;
12221
12222 elsif
12223 Ekind (Act_F_Type)
12224 = E_Anonymous_Access_Type
12225 then
12226 Subprograms_Correspond := False;
12227 end if;
12228
12229 Anc_F_Type := Base_Type (Anc_F_Type);
12230 Act_F_Type := Base_Type (Act_F_Type);
12231
12232 -- Now either the result types must be
12233 -- the same or, if the result type is
12234 -- controlling, the result type of the
12235 -- actual primitive must descend from the
12236 -- result type of the ancestor primitive.
12237
12238 if Subprograms_Correspond
12239 and then Anc_F_Type /= Act_F_Type
12240 and then
12241 Has_Controlling_Result (Anc_Subp)
12242 and then not Is_Tagged_Ancestor
12243 (Anc_F_Type, Act_F_Type)
12244 then
12245 Subprograms_Correspond := False;
12246 end if;
12247 end if;
12248
12249 -- Found a matching subprogram belonging to
12250 -- formal ancestor type, so actual subprogram
12251 -- corresponds and this violates 3.9.3(9).
12252
12253 if Subprograms_Correspond then
12254 Error_Msg_NE
12255 ("abstract subprogram & overrides "
12256 & "nonabstract subprogram of ancestor",
12257 Actual, Act_Subp);
12258 end if;
12259 end if;
12260 end if;
12261 end if;
12262
12263 Next_Elmt (Act_Elmt);
12264 end loop;
12265 end if;
12266
12267 Next_Elmt (Gen_Elmt);
12268 end loop;
12269 end Check_Abstract_Primitives;
12270 end if;
12271
12272 -- Verify that limitedness matches. If parent is a limited
12273 -- interface then the generic formal is not unless declared
12274 -- explicitly so. If not declared limited, the actual cannot be
12275 -- limited (see AI05-0087).
12276
12277 -- Even though this AI is a binding interpretation, we enable the
12278 -- check only in Ada 2012 mode, because this improper construct
12279 -- shows up in user code and in existing B-tests.
12280
12281 if Is_Limited_Type (Act_T)
12282 and then not Is_Limited_Type (A_Gen_T)
12283 and then Ada_Version >= Ada_2012
12284 then
12285 if In_Instance then
12286 null;
12287 else
12288 Error_Msg_NE
12289 ("actual for non-limited & cannot be a limited type",
12290 Actual, Gen_T);
12291 Explain_Limited_Type (Act_T, Actual);
12292 Abandon_Instantiation (Actual);
12293 end if;
12294 end if;
12295 end Validate_Derived_Type_Instance;
12296
12297 ----------------------------------------
12298 -- Validate_Discriminated_Formal_Type --
12299 ----------------------------------------
12300
12301 procedure Validate_Discriminated_Formal_Type is
12302 Formal_Discr : Entity_Id;
12303 Actual_Discr : Entity_Id;
12304 Formal_Subt : Entity_Id;
12305
12306 begin
12307 if Has_Discriminants (A_Gen_T) then
12308 if not Has_Discriminants (Act_T) then
12309 Error_Msg_NE
12310 ("actual for & must have discriminants", Actual, Gen_T);
12311 Abandon_Instantiation (Actual);
12312
12313 elsif Is_Constrained (Act_T) then
12314 Error_Msg_NE
12315 ("actual for & must be unconstrained", Actual, Gen_T);
12316 Abandon_Instantiation (Actual);
12317
12318 else
12319 Formal_Discr := First_Discriminant (A_Gen_T);
12320 Actual_Discr := First_Discriminant (Act_T);
12321 while Formal_Discr /= Empty loop
12322 if Actual_Discr = Empty then
12323 Error_Msg_NE
12324 ("discriminants on actual do not match formal",
12325 Actual, Gen_T);
12326 Abandon_Instantiation (Actual);
12327 end if;
12328
12329 Formal_Subt := Get_Instance_Of (Etype (Formal_Discr));
12330
12331 -- Access discriminants match if designated types do
12332
12333 if Ekind (Base_Type (Formal_Subt)) = E_Anonymous_Access_Type
12334 and then (Ekind (Base_Type (Etype (Actual_Discr)))) =
12335 E_Anonymous_Access_Type
12336 and then
12337 Get_Instance_Of
12338 (Designated_Type (Base_Type (Formal_Subt))) =
12339 Designated_Type (Base_Type (Etype (Actual_Discr)))
12340 then
12341 null;
12342
12343 elsif Base_Type (Formal_Subt) /=
12344 Base_Type (Etype (Actual_Discr))
12345 then
12346 Error_Msg_NE
12347 ("types of actual discriminants must match formal",
12348 Actual, Gen_T);
12349 Abandon_Instantiation (Actual);
12350
12351 elsif not Subtypes_Statically_Match
12352 (Formal_Subt, Etype (Actual_Discr))
12353 and then Ada_Version >= Ada_95
12354 then
12355 Error_Msg_NE
12356 ("subtypes of actual discriminants must match formal",
12357 Actual, Gen_T);
12358 Abandon_Instantiation (Actual);
12359 end if;
12360
12361 Next_Discriminant (Formal_Discr);
12362 Next_Discriminant (Actual_Discr);
12363 end loop;
12364
12365 if Actual_Discr /= Empty then
12366 Error_Msg_NE
12367 ("discriminants on actual do not match formal",
12368 Actual, Gen_T);
12369 Abandon_Instantiation (Actual);
12370 end if;
12371 end if;
12372 end if;
12373 end Validate_Discriminated_Formal_Type;
12374
12375 ---------------------------------------
12376 -- Validate_Incomplete_Type_Instance --
12377 ---------------------------------------
12378
12379 procedure Validate_Incomplete_Type_Instance is
12380 begin
12381 if not Is_Tagged_Type (Act_T)
12382 and then Is_Tagged_Type (A_Gen_T)
12383 then
12384 Error_Msg_NE
12385 ("actual for & must be a tagged type", Actual, Gen_T);
12386 end if;
12387
12388 Validate_Discriminated_Formal_Type;
12389 end Validate_Incomplete_Type_Instance;
12390
12391 --------------------------------------
12392 -- Validate_Interface_Type_Instance --
12393 --------------------------------------
12394
12395 procedure Validate_Interface_Type_Instance is
12396 begin
12397 if not Is_Interface (Act_T) then
12398 Error_Msg_NE
12399 ("actual for formal interface type must be an interface",
12400 Actual, Gen_T);
12401
12402 elsif Is_Limited_Type (Act_T) /= Is_Limited_Type (A_Gen_T)
12403 or else Is_Task_Interface (A_Gen_T) /= Is_Task_Interface (Act_T)
12404 or else Is_Protected_Interface (A_Gen_T) /=
12405 Is_Protected_Interface (Act_T)
12406 or else Is_Synchronized_Interface (A_Gen_T) /=
12407 Is_Synchronized_Interface (Act_T)
12408 then
12409 Error_Msg_NE
12410 ("actual for interface& does not match (RM 12.5.5(4))",
12411 Actual, Gen_T);
12412 end if;
12413 end Validate_Interface_Type_Instance;
12414
12415 ------------------------------------
12416 -- Validate_Private_Type_Instance --
12417 ------------------------------------
12418
12419 procedure Validate_Private_Type_Instance is
12420 begin
12421 if Is_Limited_Type (Act_T)
12422 and then not Is_Limited_Type (A_Gen_T)
12423 then
12424 if In_Instance then
12425 null;
12426 else
12427 Error_Msg_NE
12428 ("actual for non-limited & cannot be a limited type", Actual,
12429 Gen_T);
12430 Explain_Limited_Type (Act_T, Actual);
12431 Abandon_Instantiation (Actual);
12432 end if;
12433
12434 elsif Known_To_Have_Preelab_Init (A_Gen_T)
12435 and then not Has_Preelaborable_Initialization (Act_T)
12436 then
12437 Error_Msg_NE
12438 ("actual for & must have preelaborable initialization", Actual,
12439 Gen_T);
12440
12441 elsif not Is_Definite_Subtype (Act_T)
12442 and then Is_Definite_Subtype (A_Gen_T)
12443 and then Ada_Version >= Ada_95
12444 then
12445 Error_Msg_NE
12446 ("actual for & must be a definite subtype", Actual, Gen_T);
12447
12448 elsif not Is_Tagged_Type (Act_T)
12449 and then Is_Tagged_Type (A_Gen_T)
12450 then
12451 Error_Msg_NE
12452 ("actual for & must be a tagged type", Actual, Gen_T);
12453 end if;
12454
12455 Validate_Discriminated_Formal_Type;
12456 Ancestor := Gen_T;
12457 end Validate_Private_Type_Instance;
12458
12459 -- Start of processing for Instantiate_Type
12460
12461 begin
12462 if Get_Instance_Of (A_Gen_T) /= A_Gen_T then
12463 Error_Msg_N ("duplicate instantiation of generic type", Actual);
12464 return New_List (Error);
12465
12466 elsif not Is_Entity_Name (Actual)
12467 or else not Is_Type (Entity (Actual))
12468 then
12469 Error_Msg_NE
12470 ("expect valid subtype mark to instantiate &", Actual, Gen_T);
12471 Abandon_Instantiation (Actual);
12472
12473 else
12474 Act_T := Entity (Actual);
12475
12476 -- Ada 2005 (AI-216): An Unchecked_Union subtype shall only be passed
12477 -- as a generic actual parameter if the corresponding formal type
12478 -- does not have a known_discriminant_part, or is a formal derived
12479 -- type that is an Unchecked_Union type.
12480
12481 if Is_Unchecked_Union (Base_Type (Act_T)) then
12482 if not Has_Discriminants (A_Gen_T)
12483 or else (Is_Derived_Type (A_Gen_T)
12484 and then Is_Unchecked_Union (A_Gen_T))
12485 then
12486 null;
12487 else
12488 Error_Msg_N ("unchecked union cannot be the actual for a "
12489 & "discriminated formal type", Act_T);
12490
12491 end if;
12492 end if;
12493
12494 -- Deal with fixed/floating restrictions
12495
12496 if Is_Floating_Point_Type (Act_T) then
12497 Check_Restriction (No_Floating_Point, Actual);
12498 elsif Is_Fixed_Point_Type (Act_T) then
12499 Check_Restriction (No_Fixed_Point, Actual);
12500 end if;
12501
12502 -- Deal with error of using incomplete type as generic actual.
12503 -- This includes limited views of a type, even if the non-limited
12504 -- view may be available.
12505
12506 if Ekind (Act_T) = E_Incomplete_Type
12507 or else (Is_Class_Wide_Type (Act_T)
12508 and then Ekind (Root_Type (Act_T)) = E_Incomplete_Type)
12509 then
12510 -- If the formal is an incomplete type, the actual can be
12511 -- incomplete as well.
12512
12513 if Ekind (A_Gen_T) = E_Incomplete_Type then
12514 null;
12515
12516 elsif Is_Class_Wide_Type (Act_T)
12517 or else No (Full_View (Act_T))
12518 then
12519 Error_Msg_N ("premature use of incomplete type", Actual);
12520 Abandon_Instantiation (Actual);
12521 else
12522 Act_T := Full_View (Act_T);
12523 Set_Entity (Actual, Act_T);
12524
12525 if Has_Private_Component (Act_T) then
12526 Error_Msg_N
12527 ("premature use of type with private component", Actual);
12528 end if;
12529 end if;
12530
12531 -- Deal with error of premature use of private type as generic actual
12532
12533 elsif Is_Private_Type (Act_T)
12534 and then Is_Private_Type (Base_Type (Act_T))
12535 and then not Is_Generic_Type (Act_T)
12536 and then not Is_Derived_Type (Act_T)
12537 and then No (Full_View (Root_Type (Act_T)))
12538 then
12539 -- If the formal is an incomplete type, the actual can be
12540 -- private or incomplete as well.
12541
12542 if Ekind (A_Gen_T) = E_Incomplete_Type then
12543 null;
12544 else
12545 Error_Msg_N ("premature use of private type", Actual);
12546 end if;
12547
12548 elsif Has_Private_Component (Act_T) then
12549 Error_Msg_N
12550 ("premature use of type with private component", Actual);
12551 end if;
12552
12553 Set_Instance_Of (A_Gen_T, Act_T);
12554
12555 -- If the type is generic, the class-wide type may also be used
12556
12557 if Is_Tagged_Type (A_Gen_T)
12558 and then Is_Tagged_Type (Act_T)
12559 and then not Is_Class_Wide_Type (A_Gen_T)
12560 then
12561 Set_Instance_Of (Class_Wide_Type (A_Gen_T),
12562 Class_Wide_Type (Act_T));
12563 end if;
12564
12565 if not Is_Abstract_Type (A_Gen_T)
12566 and then Is_Abstract_Type (Act_T)
12567 then
12568 Error_Msg_N
12569 ("actual of non-abstract formal cannot be abstract", Actual);
12570 end if;
12571
12572 -- A generic scalar type is a first subtype for which we generate
12573 -- an anonymous base type. Indicate that the instance of this base
12574 -- is the base type of the actual.
12575
12576 if Is_Scalar_Type (A_Gen_T) then
12577 Set_Instance_Of (Etype (A_Gen_T), Etype (Act_T));
12578 end if;
12579 end if;
12580
12581 if Error_Posted (Act_T) then
12582 null;
12583 else
12584 case Nkind (Def) is
12585 when N_Formal_Private_Type_Definition =>
12586 Validate_Private_Type_Instance;
12587
12588 when N_Formal_Incomplete_Type_Definition =>
12589 Validate_Incomplete_Type_Instance;
12590
12591 when N_Formal_Derived_Type_Definition =>
12592 Validate_Derived_Type_Instance;
12593
12594 when N_Formal_Discrete_Type_Definition =>
12595 if not Is_Discrete_Type (Act_T) then
12596 Error_Msg_NE
12597 ("expect discrete type in instantiation of&",
12598 Actual, Gen_T);
12599 Abandon_Instantiation (Actual);
12600 end if;
12601
12602 Diagnose_Predicated_Actual;
12603
12604 when N_Formal_Signed_Integer_Type_Definition =>
12605 if not Is_Signed_Integer_Type (Act_T) then
12606 Error_Msg_NE
12607 ("expect signed integer type in instantiation of&",
12608 Actual, Gen_T);
12609 Abandon_Instantiation (Actual);
12610 end if;
12611
12612 Diagnose_Predicated_Actual;
12613
12614 when N_Formal_Modular_Type_Definition =>
12615 if not Is_Modular_Integer_Type (Act_T) then
12616 Error_Msg_NE
12617 ("expect modular type in instantiation of &",
12618 Actual, Gen_T);
12619 Abandon_Instantiation (Actual);
12620 end if;
12621
12622 Diagnose_Predicated_Actual;
12623
12624 when N_Formal_Floating_Point_Definition =>
12625 if not Is_Floating_Point_Type (Act_T) then
12626 Error_Msg_NE
12627 ("expect float type in instantiation of &", Actual, Gen_T);
12628 Abandon_Instantiation (Actual);
12629 end if;
12630
12631 when N_Formal_Ordinary_Fixed_Point_Definition =>
12632 if not Is_Ordinary_Fixed_Point_Type (Act_T) then
12633 Error_Msg_NE
12634 ("expect ordinary fixed point type in instantiation of &",
12635 Actual, Gen_T);
12636 Abandon_Instantiation (Actual);
12637 end if;
12638
12639 when N_Formal_Decimal_Fixed_Point_Definition =>
12640 if not Is_Decimal_Fixed_Point_Type (Act_T) then
12641 Error_Msg_NE
12642 ("expect decimal type in instantiation of &",
12643 Actual, Gen_T);
12644 Abandon_Instantiation (Actual);
12645 end if;
12646
12647 when N_Array_Type_Definition =>
12648 Validate_Array_Type_Instance;
12649
12650 when N_Access_To_Object_Definition =>
12651 Validate_Access_Type_Instance;
12652
12653 when N_Access_Function_Definition |
12654 N_Access_Procedure_Definition =>
12655 Validate_Access_Subprogram_Instance;
12656
12657 when N_Record_Definition =>
12658 Validate_Interface_Type_Instance;
12659
12660 when N_Derived_Type_Definition =>
12661 Validate_Derived_Interface_Type_Instance;
12662
12663 when others =>
12664 raise Program_Error;
12665
12666 end case;
12667 end if;
12668
12669 Subt := New_Copy (Gen_T);
12670
12671 -- Use adjusted sloc of subtype name as the location for other nodes in
12672 -- the subtype declaration.
12673
12674 Loc := Sloc (Subt);
12675
12676 Decl_Node :=
12677 Make_Subtype_Declaration (Loc,
12678 Defining_Identifier => Subt,
12679 Subtype_Indication => New_Occurrence_Of (Act_T, Loc));
12680
12681 if Is_Private_Type (Act_T) then
12682 Set_Has_Private_View (Subtype_Indication (Decl_Node));
12683
12684 elsif Is_Access_Type (Act_T)
12685 and then Is_Private_Type (Designated_Type (Act_T))
12686 then
12687 Set_Has_Private_View (Subtype_Indication (Decl_Node));
12688 end if;
12689
12690 -- In Ada 2012 the actual may be a limited view. Indicate that
12691 -- the local subtype must be treated as such.
12692
12693 if From_Limited_With (Act_T) then
12694 Set_Ekind (Subt, E_Incomplete_Subtype);
12695 Set_From_Limited_With (Subt);
12696 end if;
12697
12698 Decl_Nodes := New_List (Decl_Node);
12699
12700 -- Flag actual derived types so their elaboration produces the
12701 -- appropriate renamings for the primitive operations of the ancestor.
12702 -- Flag actual for formal private types as well, to determine whether
12703 -- operations in the private part may override inherited operations.
12704 -- If the formal has an interface list, the ancestor is not the
12705 -- parent, but the analyzed formal that includes the interface
12706 -- operations of all its progenitors.
12707
12708 -- Same treatment for formal private types, so we can check whether the
12709 -- type is tagged limited when validating derivations in the private
12710 -- part. (See AI05-096).
12711
12712 if Nkind (Def) = N_Formal_Derived_Type_Definition then
12713 if Present (Interface_List (Def)) then
12714 Set_Generic_Parent_Type (Decl_Node, A_Gen_T);
12715 else
12716 Set_Generic_Parent_Type (Decl_Node, Ancestor);
12717 end if;
12718
12719 elsif Nkind_In (Def, N_Formal_Private_Type_Definition,
12720 N_Formal_Incomplete_Type_Definition)
12721 then
12722 Set_Generic_Parent_Type (Decl_Node, A_Gen_T);
12723 end if;
12724
12725 -- If the actual is a synchronized type that implements an interface,
12726 -- the primitive operations are attached to the corresponding record,
12727 -- and we have to treat it as an additional generic actual, so that its
12728 -- primitive operations become visible in the instance. The task or
12729 -- protected type itself does not carry primitive operations.
12730
12731 if Is_Concurrent_Type (Act_T)
12732 and then Is_Tagged_Type (Act_T)
12733 and then Present (Corresponding_Record_Type (Act_T))
12734 and then Present (Ancestor)
12735 and then Is_Interface (Ancestor)
12736 then
12737 declare
12738 Corr_Rec : constant Entity_Id :=
12739 Corresponding_Record_Type (Act_T);
12740 New_Corr : Entity_Id;
12741 Corr_Decl : Node_Id;
12742
12743 begin
12744 New_Corr := Make_Temporary (Loc, 'S');
12745 Corr_Decl :=
12746 Make_Subtype_Declaration (Loc,
12747 Defining_Identifier => New_Corr,
12748 Subtype_Indication =>
12749 New_Occurrence_Of (Corr_Rec, Loc));
12750 Append_To (Decl_Nodes, Corr_Decl);
12751
12752 if Ekind (Act_T) = E_Task_Type then
12753 Set_Ekind (Subt, E_Task_Subtype);
12754 else
12755 Set_Ekind (Subt, E_Protected_Subtype);
12756 end if;
12757
12758 Set_Corresponding_Record_Type (Subt, Corr_Rec);
12759 Set_Generic_Parent_Type (Corr_Decl, Ancestor);
12760 Set_Generic_Parent_Type (Decl_Node, Empty);
12761 end;
12762 end if;
12763
12764 -- For a floating-point type, capture dimension info if any, because
12765 -- the generated subtype declaration does not come from source and
12766 -- will not process dimensions.
12767
12768 if Is_Floating_Point_Type (Act_T) then
12769 Copy_Dimensions (Act_T, Subt);
12770 end if;
12771
12772 return Decl_Nodes;
12773 end Instantiate_Type;
12774
12775 ---------------------
12776 -- Is_In_Main_Unit --
12777 ---------------------
12778
12779 function Is_In_Main_Unit (N : Node_Id) return Boolean is
12780 Unum : constant Unit_Number_Type := Get_Source_Unit (N);
12781 Current_Unit : Node_Id;
12782
12783 begin
12784 if Unum = Main_Unit then
12785 return True;
12786
12787 -- If the current unit is a subunit then it is either the main unit or
12788 -- is being compiled as part of the main unit.
12789
12790 elsif Nkind (N) = N_Compilation_Unit then
12791 return Nkind (Unit (N)) = N_Subunit;
12792 end if;
12793
12794 Current_Unit := Parent (N);
12795 while Present (Current_Unit)
12796 and then Nkind (Current_Unit) /= N_Compilation_Unit
12797 loop
12798 Current_Unit := Parent (Current_Unit);
12799 end loop;
12800
12801 -- The instantiation node is in the main unit, or else the current node
12802 -- (perhaps as the result of nested instantiations) is in the main unit,
12803 -- or in the declaration of the main unit, which in this last case must
12804 -- be a body.
12805
12806 return Unum = Main_Unit
12807 or else Current_Unit = Cunit (Main_Unit)
12808 or else Current_Unit = Library_Unit (Cunit (Main_Unit))
12809 or else (Present (Library_Unit (Current_Unit))
12810 and then Is_In_Main_Unit (Library_Unit (Current_Unit)));
12811 end Is_In_Main_Unit;
12812
12813 ----------------------------
12814 -- Load_Parent_Of_Generic --
12815 ----------------------------
12816
12817 procedure Load_Parent_Of_Generic
12818 (N : Node_Id;
12819 Spec : Node_Id;
12820 Body_Optional : Boolean := False)
12821 is
12822 Comp_Unit : constant Node_Id := Cunit (Get_Source_Unit (Spec));
12823 Saved_Style_Check : constant Boolean := Style_Check;
12824 Saved_Warnings : constant Warning_Record := Save_Warnings;
12825 True_Parent : Node_Id;
12826 Inst_Node : Node_Id;
12827 OK : Boolean;
12828 Previous_Instances : constant Elist_Id := New_Elmt_List;
12829
12830 procedure Collect_Previous_Instances (Decls : List_Id);
12831 -- Collect all instantiations in the given list of declarations, that
12832 -- precede the generic that we need to load. If the bodies of these
12833 -- instantiations are available, we must analyze them, to ensure that
12834 -- the public symbols generated are the same when the unit is compiled
12835 -- to generate code, and when it is compiled in the context of a unit
12836 -- that needs a particular nested instance. This process is applied to
12837 -- both package and subprogram instances.
12838
12839 --------------------------------
12840 -- Collect_Previous_Instances --
12841 --------------------------------
12842
12843 procedure Collect_Previous_Instances (Decls : List_Id) is
12844 Decl : Node_Id;
12845
12846 begin
12847 Decl := First (Decls);
12848 while Present (Decl) loop
12849 if Sloc (Decl) >= Sloc (Inst_Node) then
12850 return;
12851
12852 -- If Decl is an instantiation, then record it as requiring
12853 -- instantiation of the corresponding body, except if it is an
12854 -- abbreviated instantiation generated internally for conformance
12855 -- checking purposes only for the case of a formal package
12856 -- declared without a box (see Instantiate_Formal_Package). Such
12857 -- an instantiation does not generate any code (the actual code
12858 -- comes from actual) and thus does not need to be analyzed here.
12859 -- If the instantiation appears with a generic package body it is
12860 -- not analyzed here either.
12861
12862 elsif Nkind (Decl) = N_Package_Instantiation
12863 and then not Is_Internal (Defining_Entity (Decl))
12864 then
12865 Append_Elmt (Decl, Previous_Instances);
12866
12867 -- For a subprogram instantiation, omit instantiations intrinsic
12868 -- operations (Unchecked_Conversions, etc.) that have no bodies.
12869
12870 elsif Nkind_In (Decl, N_Function_Instantiation,
12871 N_Procedure_Instantiation)
12872 and then not Is_Intrinsic_Subprogram (Entity (Name (Decl)))
12873 then
12874 Append_Elmt (Decl, Previous_Instances);
12875
12876 elsif Nkind (Decl) = N_Package_Declaration then
12877 Collect_Previous_Instances
12878 (Visible_Declarations (Specification (Decl)));
12879 Collect_Previous_Instances
12880 (Private_Declarations (Specification (Decl)));
12881
12882 -- Previous non-generic bodies may contain instances as well
12883
12884 elsif Nkind (Decl) = N_Package_Body
12885 and then Ekind (Corresponding_Spec (Decl)) /= E_Generic_Package
12886 then
12887 Collect_Previous_Instances (Declarations (Decl));
12888
12889 elsif Nkind (Decl) = N_Subprogram_Body
12890 and then not Acts_As_Spec (Decl)
12891 and then not Is_Generic_Subprogram (Corresponding_Spec (Decl))
12892 then
12893 Collect_Previous_Instances (Declarations (Decl));
12894 end if;
12895
12896 Next (Decl);
12897 end loop;
12898 end Collect_Previous_Instances;
12899
12900 -- Start of processing for Load_Parent_Of_Generic
12901
12902 begin
12903 if not In_Same_Source_Unit (N, Spec)
12904 or else Nkind (Unit (Comp_Unit)) = N_Package_Declaration
12905 or else (Nkind (Unit (Comp_Unit)) = N_Package_Body
12906 and then not Is_In_Main_Unit (Spec))
12907 then
12908 -- Find body of parent of spec, and analyze it. A special case arises
12909 -- when the parent is an instantiation, that is to say when we are
12910 -- currently instantiating a nested generic. In that case, there is
12911 -- no separate file for the body of the enclosing instance. Instead,
12912 -- the enclosing body must be instantiated as if it were a pending
12913 -- instantiation, in order to produce the body for the nested generic
12914 -- we require now. Note that in that case the generic may be defined
12915 -- in a package body, the instance defined in the same package body,
12916 -- and the original enclosing body may not be in the main unit.
12917
12918 Inst_Node := Empty;
12919
12920 True_Parent := Parent (Spec);
12921 while Present (True_Parent)
12922 and then Nkind (True_Parent) /= N_Compilation_Unit
12923 loop
12924 if Nkind (True_Parent) = N_Package_Declaration
12925 and then
12926 Nkind (Original_Node (True_Parent)) = N_Package_Instantiation
12927 then
12928 -- Parent is a compilation unit that is an instantiation.
12929 -- Instantiation node has been replaced with package decl.
12930
12931 Inst_Node := Original_Node (True_Parent);
12932 exit;
12933
12934 elsif Nkind (True_Parent) = N_Package_Declaration
12935 and then Present (Generic_Parent (Specification (True_Parent)))
12936 and then Nkind (Parent (True_Parent)) /= N_Compilation_Unit
12937 then
12938 -- Parent is an instantiation within another specification.
12939 -- Declaration for instance has been inserted before original
12940 -- instantiation node. A direct link would be preferable?
12941
12942 Inst_Node := Next (True_Parent);
12943 while Present (Inst_Node)
12944 and then Nkind (Inst_Node) /= N_Package_Instantiation
12945 loop
12946 Next (Inst_Node);
12947 end loop;
12948
12949 -- If the instance appears within a generic, and the generic
12950 -- unit is defined within a formal package of the enclosing
12951 -- generic, there is no generic body available, and none
12952 -- needed. A more precise test should be used ???
12953
12954 if No (Inst_Node) then
12955 return;
12956 end if;
12957
12958 exit;
12959
12960 else
12961 True_Parent := Parent (True_Parent);
12962 end if;
12963 end loop;
12964
12965 -- Case where we are currently instantiating a nested generic
12966
12967 if Present (Inst_Node) then
12968 if Nkind (Parent (True_Parent)) = N_Compilation_Unit then
12969
12970 -- Instantiation node and declaration of instantiated package
12971 -- were exchanged when only the declaration was needed.
12972 -- Restore instantiation node before proceeding with body.
12973
12974 Set_Unit (Parent (True_Parent), Inst_Node);
12975 end if;
12976
12977 -- Now complete instantiation of enclosing body, if it appears in
12978 -- some other unit. If it appears in the current unit, the body
12979 -- will have been instantiated already.
12980
12981 if No (Corresponding_Body (Instance_Spec (Inst_Node))) then
12982
12983 -- We need to determine the expander mode to instantiate the
12984 -- enclosing body. Because the generic body we need may use
12985 -- global entities declared in the enclosing package (including
12986 -- aggregates) it is in general necessary to compile this body
12987 -- with expansion enabled, except if we are within a generic
12988 -- package, in which case the usual generic rule applies.
12989
12990 declare
12991 Exp_Status : Boolean := True;
12992 Scop : Entity_Id;
12993
12994 begin
12995 -- Loop through scopes looking for generic package
12996
12997 Scop := Scope (Defining_Entity (Instance_Spec (Inst_Node)));
12998 while Present (Scop)
12999 and then Scop /= Standard_Standard
13000 loop
13001 if Ekind (Scop) = E_Generic_Package then
13002 Exp_Status := False;
13003 exit;
13004 end if;
13005
13006 Scop := Scope (Scop);
13007 end loop;
13008
13009 -- Collect previous instantiations in the unit that contains
13010 -- the desired generic.
13011
13012 if Nkind (Parent (True_Parent)) /= N_Compilation_Unit
13013 and then not Body_Optional
13014 then
13015 declare
13016 Decl : Elmt_Id;
13017 Info : Pending_Body_Info;
13018 Par : Node_Id;
13019
13020 begin
13021 Par := Parent (Inst_Node);
13022 while Present (Par) loop
13023 exit when Nkind (Parent (Par)) = N_Compilation_Unit;
13024 Par := Parent (Par);
13025 end loop;
13026
13027 pragma Assert (Present (Par));
13028
13029 if Nkind (Par) = N_Package_Body then
13030 Collect_Previous_Instances (Declarations (Par));
13031
13032 elsif Nkind (Par) = N_Package_Declaration then
13033 Collect_Previous_Instances
13034 (Visible_Declarations (Specification (Par)));
13035 Collect_Previous_Instances
13036 (Private_Declarations (Specification (Par)));
13037
13038 else
13039 -- Enclosing unit is a subprogram body. In this
13040 -- case all instance bodies are processed in order
13041 -- and there is no need to collect them separately.
13042
13043 null;
13044 end if;
13045
13046 Decl := First_Elmt (Previous_Instances);
13047 while Present (Decl) loop
13048 Info :=
13049 (Inst_Node => Node (Decl),
13050 Act_Decl =>
13051 Instance_Spec (Node (Decl)),
13052 Expander_Status => Exp_Status,
13053 Current_Sem_Unit =>
13054 Get_Code_Unit (Sloc (Node (Decl))),
13055 Scope_Suppress => Scope_Suppress,
13056 Local_Suppress_Stack_Top =>
13057 Local_Suppress_Stack_Top,
13058 Version => Ada_Version,
13059 Version_Pragma => Ada_Version_Pragma,
13060 Warnings => Save_Warnings,
13061 SPARK_Mode => SPARK_Mode,
13062 SPARK_Mode_Pragma => SPARK_Mode_Pragma);
13063
13064 -- Package instance
13065
13066 if
13067 Nkind (Node (Decl)) = N_Package_Instantiation
13068 then
13069 Instantiate_Package_Body
13070 (Info, Body_Optional => True);
13071
13072 -- Subprogram instance
13073
13074 else
13075 -- The instance_spec is in the wrapper package,
13076 -- usually followed by its local renaming
13077 -- declaration. See Build_Subprogram_Renaming
13078 -- for details.
13079
13080 declare
13081 Decl : Node_Id :=
13082 (Last (Visible_Declarations
13083 (Specification (Info.Act_Decl))));
13084 begin
13085 if Nkind (Decl) =
13086 N_Subprogram_Renaming_Declaration
13087 then
13088 Decl := Prev (Decl);
13089 end if;
13090
13091 Info.Act_Decl := Decl;
13092 end;
13093
13094 Instantiate_Subprogram_Body
13095 (Info, Body_Optional => True);
13096 end if;
13097
13098 Next_Elmt (Decl);
13099 end loop;
13100 end;
13101 end if;
13102
13103 Instantiate_Package_Body
13104 (Body_Info =>
13105 ((Inst_Node => Inst_Node,
13106 Act_Decl => True_Parent,
13107 Expander_Status => Exp_Status,
13108 Current_Sem_Unit => Get_Code_Unit
13109 (Sloc (Inst_Node)),
13110 Scope_Suppress => Scope_Suppress,
13111 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
13112 Version => Ada_Version,
13113 Version_Pragma => Ada_Version_Pragma,
13114 Warnings => Save_Warnings,
13115 SPARK_Mode => SPARK_Mode,
13116 SPARK_Mode_Pragma => SPARK_Mode_Pragma)),
13117 Body_Optional => Body_Optional);
13118 end;
13119 end if;
13120
13121 -- Case where we are not instantiating a nested generic
13122
13123 else
13124 Opt.Style_Check := False;
13125 Expander_Mode_Save_And_Set (True);
13126 Load_Needed_Body (Comp_Unit, OK);
13127 Opt.Style_Check := Saved_Style_Check;
13128 Restore_Warnings (Saved_Warnings);
13129 Expander_Mode_Restore;
13130
13131 if not OK
13132 and then Unit_Requires_Body (Defining_Entity (Spec))
13133 and then not Body_Optional
13134 then
13135 declare
13136 Bname : constant Unit_Name_Type :=
13137 Get_Body_Name (Get_Unit_Name (Unit (Comp_Unit)));
13138
13139 begin
13140 -- In CodePeer mode, the missing body may make the analysis
13141 -- incomplete, but we do not treat it as fatal.
13142
13143 if CodePeer_Mode then
13144 return;
13145
13146 else
13147 Error_Msg_Unit_1 := Bname;
13148 Error_Msg_N ("this instantiation requires$!", N);
13149 Error_Msg_File_1 :=
13150 Get_File_Name (Bname, Subunit => False);
13151 Error_Msg_N ("\but file{ was not found!", N);
13152 raise Unrecoverable_Error;
13153 end if;
13154 end;
13155 end if;
13156 end if;
13157 end if;
13158
13159 -- If loading parent of the generic caused an instantiation circularity,
13160 -- we abandon compilation at this point, because otherwise in some cases
13161 -- we get into trouble with infinite recursions after this point.
13162
13163 if Circularity_Detected then
13164 raise Unrecoverable_Error;
13165 end if;
13166 end Load_Parent_Of_Generic;
13167
13168 ---------------------------------
13169 -- Map_Formal_Package_Entities --
13170 ---------------------------------
13171
13172 procedure Map_Formal_Package_Entities (Form : Entity_Id; Act : Entity_Id) is
13173 E1 : Entity_Id;
13174 E2 : Entity_Id;
13175
13176 begin
13177 Set_Instance_Of (Form, Act);
13178
13179 -- Traverse formal and actual package to map the corresponding entities.
13180 -- We skip over internal entities that may be generated during semantic
13181 -- analysis, and find the matching entities by name, given that they
13182 -- must appear in the same order.
13183
13184 E1 := First_Entity (Form);
13185 E2 := First_Entity (Act);
13186 while Present (E1) and then E1 /= First_Private_Entity (Form) loop
13187 -- Could this test be a single condition??? Seems like it could, and
13188 -- isn't FPE (Form) a constant anyway???
13189
13190 if not Is_Internal (E1)
13191 and then Present (Parent (E1))
13192 and then not Is_Class_Wide_Type (E1)
13193 and then not Is_Internal_Name (Chars (E1))
13194 then
13195 while Present (E2) and then Chars (E2) /= Chars (E1) loop
13196 Next_Entity (E2);
13197 end loop;
13198
13199 if No (E2) then
13200 exit;
13201 else
13202 Set_Instance_Of (E1, E2);
13203
13204 if Is_Type (E1) and then Is_Tagged_Type (E2) then
13205 Set_Instance_Of (Class_Wide_Type (E1), Class_Wide_Type (E2));
13206 end if;
13207
13208 if Is_Constrained (E1) then
13209 Set_Instance_Of (Base_Type (E1), Base_Type (E2));
13210 end if;
13211
13212 if Ekind (E1) = E_Package and then No (Renamed_Object (E1)) then
13213 Map_Formal_Package_Entities (E1, E2);
13214 end if;
13215 end if;
13216 end if;
13217
13218 Next_Entity (E1);
13219 end loop;
13220 end Map_Formal_Package_Entities;
13221
13222 -----------------------
13223 -- Move_Freeze_Nodes --
13224 -----------------------
13225
13226 procedure Move_Freeze_Nodes
13227 (Out_Of : Entity_Id;
13228 After : Node_Id;
13229 L : List_Id)
13230 is
13231 Decl : Node_Id;
13232 Next_Decl : Node_Id;
13233 Next_Node : Node_Id := After;
13234 Spec : Node_Id;
13235
13236 function Is_Outer_Type (T : Entity_Id) return Boolean;
13237 -- Check whether entity is declared in a scope external to that of the
13238 -- generic unit.
13239
13240 -------------------
13241 -- Is_Outer_Type --
13242 -------------------
13243
13244 function Is_Outer_Type (T : Entity_Id) return Boolean is
13245 Scop : Entity_Id := Scope (T);
13246
13247 begin
13248 if Scope_Depth (Scop) < Scope_Depth (Out_Of) then
13249 return True;
13250
13251 else
13252 while Scop /= Standard_Standard loop
13253 if Scop = Out_Of then
13254 return False;
13255 else
13256 Scop := Scope (Scop);
13257 end if;
13258 end loop;
13259
13260 return True;
13261 end if;
13262 end Is_Outer_Type;
13263
13264 -- Start of processing for Move_Freeze_Nodes
13265
13266 begin
13267 if No (L) then
13268 return;
13269 end if;
13270
13271 -- First remove the freeze nodes that may appear before all other
13272 -- declarations.
13273
13274 Decl := First (L);
13275 while Present (Decl)
13276 and then Nkind (Decl) = N_Freeze_Entity
13277 and then Is_Outer_Type (Entity (Decl))
13278 loop
13279 Decl := Remove_Head (L);
13280 Insert_After (Next_Node, Decl);
13281 Set_Analyzed (Decl, False);
13282 Next_Node := Decl;
13283 Decl := First (L);
13284 end loop;
13285
13286 -- Next scan the list of declarations and remove each freeze node that
13287 -- appears ahead of the current node.
13288
13289 while Present (Decl) loop
13290 while Present (Next (Decl))
13291 and then Nkind (Next (Decl)) = N_Freeze_Entity
13292 and then Is_Outer_Type (Entity (Next (Decl)))
13293 loop
13294 Next_Decl := Remove_Next (Decl);
13295 Insert_After (Next_Node, Next_Decl);
13296 Set_Analyzed (Next_Decl, False);
13297 Next_Node := Next_Decl;
13298 end loop;
13299
13300 -- If the declaration is a nested package or concurrent type, then
13301 -- recurse. Nested generic packages will have been processed from the
13302 -- inside out.
13303
13304 case Nkind (Decl) is
13305 when N_Package_Declaration =>
13306 Spec := Specification (Decl);
13307
13308 when N_Task_Type_Declaration =>
13309 Spec := Task_Definition (Decl);
13310
13311 when N_Protected_Type_Declaration =>
13312 Spec := Protected_Definition (Decl);
13313
13314 when others =>
13315 Spec := Empty;
13316 end case;
13317
13318 if Present (Spec) then
13319 Move_Freeze_Nodes (Out_Of, Next_Node, Visible_Declarations (Spec));
13320 Move_Freeze_Nodes (Out_Of, Next_Node, Private_Declarations (Spec));
13321 end if;
13322
13323 Next (Decl);
13324 end loop;
13325 end Move_Freeze_Nodes;
13326
13327 ----------------
13328 -- Next_Assoc --
13329 ----------------
13330
13331 function Next_Assoc (E : Assoc_Ptr) return Assoc_Ptr is
13332 begin
13333 return Generic_Renamings.Table (E).Next_In_HTable;
13334 end Next_Assoc;
13335
13336 ------------------------
13337 -- Preanalyze_Actuals --
13338 ------------------------
13339
13340 procedure Preanalyze_Actuals (N : Node_Id; Inst : Entity_Id := Empty) is
13341 Assoc : Node_Id;
13342 Act : Node_Id;
13343 Errs : constant Nat := Serious_Errors_Detected;
13344
13345 Cur : Entity_Id := Empty;
13346 -- Current homograph of the instance name
13347
13348 Vis : Boolean;
13349 -- Saved visibility status of the current homograph
13350
13351 begin
13352 Assoc := First (Generic_Associations (N));
13353
13354 -- If the instance is a child unit, its name may hide an outer homonym,
13355 -- so make it invisible to perform name resolution on the actuals.
13356
13357 if Nkind (Defining_Unit_Name (N)) = N_Defining_Program_Unit_Name
13358 and then Present
13359 (Current_Entity (Defining_Identifier (Defining_Unit_Name (N))))
13360 then
13361 Cur := Current_Entity (Defining_Identifier (Defining_Unit_Name (N)));
13362
13363 if Is_Compilation_Unit (Cur) then
13364 Vis := Is_Immediately_Visible (Cur);
13365 Set_Is_Immediately_Visible (Cur, False);
13366 else
13367 Cur := Empty;
13368 end if;
13369 end if;
13370
13371 while Present (Assoc) loop
13372 if Nkind (Assoc) /= N_Others_Choice then
13373 Act := Explicit_Generic_Actual_Parameter (Assoc);
13374
13375 -- Within a nested instantiation, a defaulted actual is an empty
13376 -- association, so nothing to analyze. If the subprogram actual
13377 -- is an attribute, analyze prefix only, because actual is not a
13378 -- complete attribute reference.
13379
13380 -- If actual is an allocator, analyze expression only. The full
13381 -- analysis can generate code, and if instance is a compilation
13382 -- unit we have to wait until the package instance is installed
13383 -- to have a proper place to insert this code.
13384
13385 -- String literals may be operators, but at this point we do not
13386 -- know whether the actual is a formal subprogram or a string.
13387
13388 if No (Act) then
13389 null;
13390
13391 elsif Nkind (Act) = N_Attribute_Reference then
13392 Analyze (Prefix (Act));
13393
13394 elsif Nkind (Act) = N_Explicit_Dereference then
13395 Analyze (Prefix (Act));
13396
13397 elsif Nkind (Act) = N_Allocator then
13398 declare
13399 Expr : constant Node_Id := Expression (Act);
13400
13401 begin
13402 if Nkind (Expr) = N_Subtype_Indication then
13403 Analyze (Subtype_Mark (Expr));
13404
13405 -- Analyze separately each discriminant constraint, when
13406 -- given with a named association.
13407
13408 declare
13409 Constr : Node_Id;
13410
13411 begin
13412 Constr := First (Constraints (Constraint (Expr)));
13413 while Present (Constr) loop
13414 if Nkind (Constr) = N_Discriminant_Association then
13415 Analyze (Expression (Constr));
13416 else
13417 Analyze (Constr);
13418 end if;
13419
13420 Next (Constr);
13421 end loop;
13422 end;
13423
13424 else
13425 Analyze (Expr);
13426 end if;
13427 end;
13428
13429 elsif Nkind (Act) /= N_Operator_Symbol then
13430 Analyze (Act);
13431
13432 -- Within a package instance, mark actuals that are limited
13433 -- views, so their use can be moved to the body of the
13434 -- enclosing unit.
13435
13436 if Is_Entity_Name (Act)
13437 and then Is_Type (Entity (Act))
13438 and then From_Limited_With (Entity (Act))
13439 and then Present (Inst)
13440 then
13441 Append_Elmt (Entity (Act), Incomplete_Actuals (Inst));
13442 end if;
13443 end if;
13444
13445 if Errs /= Serious_Errors_Detected then
13446
13447 -- Do a minimal analysis of the generic, to prevent spurious
13448 -- warnings complaining about the generic being unreferenced,
13449 -- before abandoning the instantiation.
13450
13451 Analyze (Name (N));
13452
13453 if Is_Entity_Name (Name (N))
13454 and then Etype (Name (N)) /= Any_Type
13455 then
13456 Generate_Reference (Entity (Name (N)), Name (N));
13457 Set_Is_Instantiated (Entity (Name (N)));
13458 end if;
13459
13460 if Present (Cur) then
13461
13462 -- For the case of a child instance hiding an outer homonym,
13463 -- provide additional warning which might explain the error.
13464
13465 Set_Is_Immediately_Visible (Cur, Vis);
13466 Error_Msg_NE
13467 ("& hides outer unit with the same name??",
13468 N, Defining_Unit_Name (N));
13469 end if;
13470
13471 Abandon_Instantiation (Act);
13472 end if;
13473 end if;
13474
13475 Next (Assoc);
13476 end loop;
13477
13478 if Present (Cur) then
13479 Set_Is_Immediately_Visible (Cur, Vis);
13480 end if;
13481 end Preanalyze_Actuals;
13482
13483 -------------------
13484 -- Remove_Parent --
13485 -------------------
13486
13487 procedure Remove_Parent (In_Body : Boolean := False) is
13488 S : Entity_Id := Current_Scope;
13489 -- S is the scope containing the instantiation just completed. The scope
13490 -- stack contains the parent instances of the instantiation, followed by
13491 -- the original S.
13492
13493 Cur_P : Entity_Id;
13494 E : Entity_Id;
13495 P : Entity_Id;
13496 Hidden : Elmt_Id;
13497
13498 begin
13499 -- After child instantiation is complete, remove from scope stack the
13500 -- extra copy of the current scope, and then remove parent instances.
13501
13502 if not In_Body then
13503 Pop_Scope;
13504
13505 while Current_Scope /= S loop
13506 P := Current_Scope;
13507 End_Package_Scope (Current_Scope);
13508
13509 if In_Open_Scopes (P) then
13510 E := First_Entity (P);
13511 while Present (E) loop
13512 Set_Is_Immediately_Visible (E, True);
13513 Next_Entity (E);
13514 end loop;
13515
13516 -- If instantiation is declared in a block, it is the enclosing
13517 -- scope that might be a parent instance. Note that only one
13518 -- block can be involved, because the parent instances have
13519 -- been installed within it.
13520
13521 if Ekind (P) = E_Block then
13522 Cur_P := Scope (P);
13523 else
13524 Cur_P := P;
13525 end if;
13526
13527 if Is_Generic_Instance (Cur_P) and then P /= Current_Scope then
13528 -- We are within an instance of some sibling. Retain
13529 -- visibility of parent, for proper subsequent cleanup, and
13530 -- reinstall private declarations as well.
13531
13532 Set_In_Private_Part (P);
13533 Install_Private_Declarations (P);
13534 end if;
13535
13536 -- If the ultimate parent is a top-level unit recorded in
13537 -- Instance_Parent_Unit, then reset its visibility to what it was
13538 -- before instantiation. (It's not clear what the purpose is of
13539 -- testing whether Scope (P) is In_Open_Scopes, but that test was
13540 -- present before the ultimate parent test was added.???)
13541
13542 elsif not In_Open_Scopes (Scope (P))
13543 or else (P = Instance_Parent_Unit
13544 and then not Parent_Unit_Visible)
13545 then
13546 Set_Is_Immediately_Visible (P, False);
13547
13548 -- If the current scope is itself an instantiation of a generic
13549 -- nested within P, and we are in the private part of body of this
13550 -- instantiation, restore the full views of P, that were removed
13551 -- in End_Package_Scope above. This obscure case can occur when a
13552 -- subunit of a generic contains an instance of a child unit of
13553 -- its generic parent unit.
13554
13555 elsif S = Current_Scope and then Is_Generic_Instance (S) then
13556 declare
13557 Par : constant Entity_Id :=
13558 Generic_Parent (Package_Specification (S));
13559 begin
13560 if Present (Par)
13561 and then P = Scope (Par)
13562 and then (In_Package_Body (S) or else In_Private_Part (S))
13563 then
13564 Set_In_Private_Part (P);
13565 Install_Private_Declarations (P);
13566 end if;
13567 end;
13568 end if;
13569 end loop;
13570
13571 -- Reset visibility of entities in the enclosing scope
13572
13573 Set_Is_Hidden_Open_Scope (Current_Scope, False);
13574
13575 Hidden := First_Elmt (Hidden_Entities);
13576 while Present (Hidden) loop
13577 Set_Is_Immediately_Visible (Node (Hidden), True);
13578 Next_Elmt (Hidden);
13579 end loop;
13580
13581 else
13582 -- Each body is analyzed separately, and there is no context that
13583 -- needs preserving from one body instance to the next, so remove all
13584 -- parent scopes that have been installed.
13585
13586 while Present (S) loop
13587 End_Package_Scope (S);
13588 Set_Is_Immediately_Visible (S, False);
13589 S := Current_Scope;
13590 exit when S = Standard_Standard;
13591 end loop;
13592 end if;
13593 end Remove_Parent;
13594
13595 -----------------
13596 -- Restore_Env --
13597 -----------------
13598
13599 procedure Restore_Env is
13600 Saved : Instance_Env renames Instance_Envs.Table (Instance_Envs.Last);
13601
13602 begin
13603 if No (Current_Instantiated_Parent.Act_Id) then
13604 -- Restore environment after subprogram inlining
13605
13606 Restore_Private_Views (Empty);
13607 end if;
13608
13609 Current_Instantiated_Parent := Saved.Instantiated_Parent;
13610 Exchanged_Views := Saved.Exchanged_Views;
13611 Hidden_Entities := Saved.Hidden_Entities;
13612 Current_Sem_Unit := Saved.Current_Sem_Unit;
13613 Parent_Unit_Visible := Saved.Parent_Unit_Visible;
13614 Instance_Parent_Unit := Saved.Instance_Parent_Unit;
13615
13616 Restore_Opt_Config_Switches (Saved.Switches);
13617
13618 Instance_Envs.Decrement_Last;
13619 end Restore_Env;
13620
13621 ---------------------------
13622 -- Restore_Private_Views --
13623 ---------------------------
13624
13625 procedure Restore_Private_Views
13626 (Pack_Id : Entity_Id;
13627 Is_Package : Boolean := True)
13628 is
13629 M : Elmt_Id;
13630 E : Entity_Id;
13631 Typ : Entity_Id;
13632 Dep_Elmt : Elmt_Id;
13633 Dep_Typ : Node_Id;
13634
13635 procedure Restore_Nested_Formal (Formal : Entity_Id);
13636 -- Hide the generic formals of formal packages declared with box which
13637 -- were reachable in the current instantiation.
13638
13639 ---------------------------
13640 -- Restore_Nested_Formal --
13641 ---------------------------
13642
13643 procedure Restore_Nested_Formal (Formal : Entity_Id) is
13644 Ent : Entity_Id;
13645
13646 begin
13647 if Present (Renamed_Object (Formal))
13648 and then Denotes_Formal_Package (Renamed_Object (Formal), True)
13649 then
13650 return;
13651
13652 elsif Present (Associated_Formal_Package (Formal)) then
13653 Ent := First_Entity (Formal);
13654 while Present (Ent) loop
13655 exit when Ekind (Ent) = E_Package
13656 and then Renamed_Entity (Ent) = Renamed_Entity (Formal);
13657
13658 Set_Is_Hidden (Ent);
13659 Set_Is_Potentially_Use_Visible (Ent, False);
13660
13661 -- If package, then recurse
13662
13663 if Ekind (Ent) = E_Package then
13664 Restore_Nested_Formal (Ent);
13665 end if;
13666
13667 Next_Entity (Ent);
13668 end loop;
13669 end if;
13670 end Restore_Nested_Formal;
13671
13672 -- Start of processing for Restore_Private_Views
13673
13674 begin
13675 M := First_Elmt (Exchanged_Views);
13676 while Present (M) loop
13677 Typ := Node (M);
13678
13679 -- Subtypes of types whose views have been exchanged, and that are
13680 -- defined within the instance, were not on the Private_Dependents
13681 -- list on entry to the instance, so they have to be exchanged
13682 -- explicitly now, in order to remain consistent with the view of the
13683 -- parent type.
13684
13685 if Ekind_In (Typ, E_Private_Type,
13686 E_Limited_Private_Type,
13687 E_Record_Type_With_Private)
13688 then
13689 Dep_Elmt := First_Elmt (Private_Dependents (Typ));
13690 while Present (Dep_Elmt) loop
13691 Dep_Typ := Node (Dep_Elmt);
13692
13693 if Scope (Dep_Typ) = Pack_Id
13694 and then Present (Full_View (Dep_Typ))
13695 then
13696 Replace_Elmt (Dep_Elmt, Full_View (Dep_Typ));
13697 Exchange_Declarations (Dep_Typ);
13698 end if;
13699
13700 Next_Elmt (Dep_Elmt);
13701 end loop;
13702 end if;
13703
13704 Exchange_Declarations (Node (M));
13705 Next_Elmt (M);
13706 end loop;
13707
13708 if No (Pack_Id) then
13709 return;
13710 end if;
13711
13712 -- Make the generic formal parameters private, and make the formal types
13713 -- into subtypes of the actuals again.
13714
13715 E := First_Entity (Pack_Id);
13716 while Present (E) loop
13717 Set_Is_Hidden (E, True);
13718
13719 if Is_Type (E)
13720 and then Nkind (Parent (E)) = N_Subtype_Declaration
13721 then
13722 -- If the actual for E is itself a generic actual type from
13723 -- an enclosing instance, E is still a generic actual type
13724 -- outside of the current instance. This matter when resolving
13725 -- an overloaded call that may be ambiguous in the enclosing
13726 -- instance, when two of its actuals coincide.
13727
13728 if Is_Entity_Name (Subtype_Indication (Parent (E)))
13729 and then Is_Generic_Actual_Type
13730 (Entity (Subtype_Indication (Parent (E))))
13731 then
13732 null;
13733 else
13734 Set_Is_Generic_Actual_Type (E, False);
13735 end if;
13736
13737 -- An unusual case of aliasing: the actual may also be directly
13738 -- visible in the generic, and be private there, while it is fully
13739 -- visible in the context of the instance. The internal subtype
13740 -- is private in the instance but has full visibility like its
13741 -- parent in the enclosing scope. This enforces the invariant that
13742 -- the privacy status of all private dependents of a type coincide
13743 -- with that of the parent type. This can only happen when a
13744 -- generic child unit is instantiated within a sibling.
13745
13746 if Is_Private_Type (E)
13747 and then not Is_Private_Type (Etype (E))
13748 then
13749 Exchange_Declarations (E);
13750 end if;
13751
13752 elsif Ekind (E) = E_Package then
13753
13754 -- The end of the renaming list is the renaming of the generic
13755 -- package itself. If the instance is a subprogram, all entities
13756 -- in the corresponding package are renamings. If this entity is
13757 -- a formal package, make its own formals private as well. The
13758 -- actual in this case is itself the renaming of an instantiation.
13759 -- If the entity is not a package renaming, it is the entity
13760 -- created to validate formal package actuals: ignore it.
13761
13762 -- If the actual is itself a formal package for the enclosing
13763 -- generic, or the actual for such a formal package, it remains
13764 -- visible on exit from the instance, and therefore nothing needs
13765 -- to be done either, except to keep it accessible.
13766
13767 if Is_Package and then Renamed_Object (E) = Pack_Id then
13768 exit;
13769
13770 elsif Nkind (Parent (E)) /= N_Package_Renaming_Declaration then
13771 null;
13772
13773 elsif
13774 Denotes_Formal_Package (Renamed_Object (E), True, Pack_Id)
13775 then
13776 Set_Is_Hidden (E, False);
13777
13778 else
13779 declare
13780 Act_P : constant Entity_Id := Renamed_Object (E);
13781 Id : Entity_Id;
13782
13783 begin
13784 Id := First_Entity (Act_P);
13785 while Present (Id)
13786 and then Id /= First_Private_Entity (Act_P)
13787 loop
13788 exit when Ekind (Id) = E_Package
13789 and then Renamed_Object (Id) = Act_P;
13790
13791 Set_Is_Hidden (Id, True);
13792 Set_Is_Potentially_Use_Visible (Id, In_Use (Act_P));
13793
13794 if Ekind (Id) = E_Package then
13795 Restore_Nested_Formal (Id);
13796 end if;
13797
13798 Next_Entity (Id);
13799 end loop;
13800 end;
13801 end if;
13802 end if;
13803
13804 Next_Entity (E);
13805 end loop;
13806 end Restore_Private_Views;
13807
13808 --------------
13809 -- Save_Env --
13810 --------------
13811
13812 procedure Save_Env
13813 (Gen_Unit : Entity_Id;
13814 Act_Unit : Entity_Id)
13815 is
13816 begin
13817 Init_Env;
13818 Set_Instance_Env (Gen_Unit, Act_Unit);
13819 end Save_Env;
13820
13821 ----------------------------
13822 -- Save_Global_References --
13823 ----------------------------
13824
13825 procedure Save_Global_References (Templ : Node_Id) is
13826
13827 -- ??? it is horrible to use global variables in highly recursive code
13828
13829 E : Entity_Id;
13830 -- The entity of the current associated node
13831
13832 Gen_Scope : Entity_Id;
13833 -- The scope of the generic for which references are being saved
13834
13835 N2 : Node_Id;
13836 -- The current associated node
13837
13838 function Is_Global (E : Entity_Id) return Boolean;
13839 -- Check whether entity is defined outside of generic unit. Examine the
13840 -- scope of an entity, and the scope of the scope, etc, until we find
13841 -- either Standard, in which case the entity is global, or the generic
13842 -- unit itself, which indicates that the entity is local. If the entity
13843 -- is the generic unit itself, as in the case of a recursive call, or
13844 -- the enclosing generic unit, if different from the current scope, then
13845 -- it is local as well, because it will be replaced at the point of
13846 -- instantiation. On the other hand, if it is a reference to a child
13847 -- unit of a common ancestor, which appears in an instantiation, it is
13848 -- global because it is used to denote a specific compilation unit at
13849 -- the time the instantiations will be analyzed.
13850
13851 procedure Qualify_Universal_Operands
13852 (Op : Node_Id;
13853 Func_Call : Node_Id);
13854 -- Op denotes a binary or unary operator in generic template Templ. Node
13855 -- Func_Call is the function call alternative of the operator within the
13856 -- the analyzed copy of the template. Change each operand which yields a
13857 -- universal type by wrapping it into a qualified expression
13858 --
13859 -- Actual_Typ'(Operand)
13860 --
13861 -- where Actual_Typ is the type of corresponding actual parameter of
13862 -- Operand in Func_Call.
13863
13864 procedure Reset_Entity (N : Node_Id);
13865 -- Save semantic information on global entity so that it is not resolved
13866 -- again at instantiation time.
13867
13868 procedure Save_Entity_Descendants (N : Node_Id);
13869 -- Apply Save_Global_References to the two syntactic descendants of
13870 -- non-terminal nodes that carry an Associated_Node and are processed
13871 -- through Reset_Entity. Once the global entity (if any) has been
13872 -- captured together with its type, only two syntactic descendants need
13873 -- to be traversed to complete the processing of the tree rooted at N.
13874 -- This applies to Selected_Components, Expanded_Names, and to Operator
13875 -- nodes. N can also be a character literal, identifier, or operator
13876 -- symbol node, but the call has no effect in these cases.
13877
13878 procedure Save_Global_Defaults (N1 : Node_Id; N2 : Node_Id);
13879 -- Default actuals in nested instances must be handled specially
13880 -- because there is no link to them from the original tree. When an
13881 -- actual subprogram is given by a default, we add an explicit generic
13882 -- association for it in the instantiation node. When we save the
13883 -- global references on the name of the instance, we recover the list
13884 -- of generic associations, and add an explicit one to the original
13885 -- generic tree, through which a global actual can be preserved.
13886 -- Similarly, if a child unit is instantiated within a sibling, in the
13887 -- context of the parent, we must preserve the identifier of the parent
13888 -- so that it can be properly resolved in a subsequent instantiation.
13889
13890 procedure Save_Global_Descendant (D : Union_Id);
13891 -- Apply Save_References recursively to the descendants of node D
13892
13893 procedure Save_References (N : Node_Id);
13894 -- This is the recursive procedure that does the work, once the
13895 -- enclosing generic scope has been established.
13896
13897 ---------------
13898 -- Is_Global --
13899 ---------------
13900
13901 function Is_Global (E : Entity_Id) return Boolean is
13902 Se : Entity_Id;
13903
13904 function Is_Instance_Node (Decl : Node_Id) return Boolean;
13905 -- Determine whether the parent node of a reference to a child unit
13906 -- denotes an instantiation or a formal package, in which case the
13907 -- reference to the child unit is global, even if it appears within
13908 -- the current scope (e.g. when the instance appears within the body
13909 -- of an ancestor).
13910
13911 ----------------------
13912 -- Is_Instance_Node --
13913 ----------------------
13914
13915 function Is_Instance_Node (Decl : Node_Id) return Boolean is
13916 begin
13917 return Nkind (Decl) in N_Generic_Instantiation
13918 or else
13919 Nkind (Original_Node (Decl)) = N_Formal_Package_Declaration;
13920 end Is_Instance_Node;
13921
13922 -- Start of processing for Is_Global
13923
13924 begin
13925 if E = Gen_Scope then
13926 return False;
13927
13928 elsif E = Standard_Standard then
13929 return True;
13930
13931 elsif Is_Child_Unit (E)
13932 and then (Is_Instance_Node (Parent (N2))
13933 or else (Nkind (Parent (N2)) = N_Expanded_Name
13934 and then N2 = Selector_Name (Parent (N2))
13935 and then
13936 Is_Instance_Node (Parent (Parent (N2)))))
13937 then
13938 return True;
13939
13940 else
13941 Se := Scope (E);
13942 while Se /= Gen_Scope loop
13943 if Se = Standard_Standard then
13944 return True;
13945 else
13946 Se := Scope (Se);
13947 end if;
13948 end loop;
13949
13950 return False;
13951 end if;
13952 end Is_Global;
13953
13954 --------------------------------
13955 -- Qualify_Universal_Operands --
13956 --------------------------------
13957
13958 procedure Qualify_Universal_Operands
13959 (Op : Node_Id;
13960 Func_Call : Node_Id)
13961 is
13962 procedure Qualify_Operand (Opnd : Node_Id; Actual : Node_Id);
13963 -- Rewrite operand Opnd as a qualified expression of the form
13964 --
13965 -- Actual_Typ'(Opnd)
13966 --
13967 -- where Actual is the corresponding actual parameter of Opnd in
13968 -- function call Func_Call.
13969
13970 function Qualify_Type
13971 (Loc : Source_Ptr;
13972 Typ : Entity_Id) return Node_Id;
13973 -- Qualify type Typ by creating a selected component of the form
13974 --
13975 -- Scope_Of_Typ.Typ
13976
13977 ---------------------
13978 -- Qualify_Operand --
13979 ---------------------
13980
13981 procedure Qualify_Operand (Opnd : Node_Id; Actual : Node_Id) is
13982 Loc : constant Source_Ptr := Sloc (Opnd);
13983 Typ : constant Entity_Id := Etype (Actual);
13984 Mark : Node_Id;
13985
13986 begin
13987 -- Qualify the operand when it is of a universal type. Note that
13988 -- the template is unanalyzed and it is not possible to directly
13989 -- query the type. This transformation is not done when the type
13990 -- of the actual is internally generated because the type will be
13991 -- regenerated in the instance.
13992
13993 if Yields_Universal_Type (Opnd)
13994 and then Comes_From_Source (Typ)
13995 and then not Is_Hidden (Typ)
13996 then
13997 -- The type of the actual may be a global reference. Save this
13998 -- information by creating a reference to it.
13999
14000 if Is_Global (Typ) then
14001 Mark := New_Occurrence_Of (Typ, Loc);
14002
14003 -- Otherwise rely on resolution to find the proper type within
14004 -- the instance.
14005
14006 else
14007 Mark := Qualify_Type (Loc, Typ);
14008 end if;
14009
14010 Rewrite (Opnd,
14011 Make_Qualified_Expression (Loc,
14012 Subtype_Mark => Mark,
14013 Expression => Relocate_Node (Opnd)));
14014 end if;
14015 end Qualify_Operand;
14016
14017 ------------------
14018 -- Qualify_Type --
14019 ------------------
14020
14021 function Qualify_Type
14022 (Loc : Source_Ptr;
14023 Typ : Entity_Id) return Node_Id
14024 is
14025 Scop : constant Entity_Id := Scope (Typ);
14026 Result : Node_Id;
14027
14028 begin
14029 Result := Make_Identifier (Loc, Chars (Typ));
14030
14031 if Present (Scop) and then Scop /= Standard_Standard then
14032 Result :=
14033 Make_Selected_Component (Loc,
14034 Prefix => Make_Identifier (Loc, Chars (Scop)),
14035 Selector_Name => Result);
14036 end if;
14037
14038 return Result;
14039 end Qualify_Type;
14040
14041 -- Local variables
14042
14043 Actuals : constant List_Id := Parameter_Associations (Func_Call);
14044
14045 -- Start of processing for Qualify_Universal_Operands
14046
14047 begin
14048 if Nkind (Op) in N_Binary_Op then
14049 Qualify_Operand (Left_Opnd (Op), First (Actuals));
14050 Qualify_Operand (Right_Opnd (Op), Next (First (Actuals)));
14051
14052 elsif Nkind (Op) in N_Unary_Op then
14053 Qualify_Operand (Right_Opnd (Op), First (Actuals));
14054 end if;
14055 end Qualify_Universal_Operands;
14056
14057 ------------------
14058 -- Reset_Entity --
14059 ------------------
14060
14061 procedure Reset_Entity (N : Node_Id) is
14062 procedure Set_Global_Type (N : Node_Id; N2 : Node_Id);
14063 -- If the type of N2 is global to the generic unit, save the type in
14064 -- the generic node. Just as we perform name capture for explicit
14065 -- references within the generic, we must capture the global types
14066 -- of local entities because they may participate in resolution in
14067 -- the instance.
14068
14069 function Top_Ancestor (E : Entity_Id) return Entity_Id;
14070 -- Find the ultimate ancestor of the current unit. If it is not a
14071 -- generic unit, then the name of the current unit in the prefix of
14072 -- an expanded name must be replaced with its generic homonym to
14073 -- ensure that it will be properly resolved in an instance.
14074
14075 ---------------------
14076 -- Set_Global_Type --
14077 ---------------------
14078
14079 procedure Set_Global_Type (N : Node_Id; N2 : Node_Id) is
14080 Typ : constant Entity_Id := Etype (N2);
14081
14082 begin
14083 Set_Etype (N, Typ);
14084
14085 -- If the entity of N is not the associated node, this is a
14086 -- nested generic and it has an associated node as well, whose
14087 -- type is already the full view (see below). Indicate that the
14088 -- original node has a private view.
14089
14090 if Entity (N) /= N2 and then Has_Private_View (Entity (N)) then
14091 Set_Has_Private_View (N);
14092 end if;
14093
14094 -- If not a private type, nothing else to do
14095
14096 if not Is_Private_Type (Typ) then
14097 if Is_Array_Type (Typ)
14098 and then Is_Private_Type (Component_Type (Typ))
14099 then
14100 Set_Has_Private_View (N);
14101 end if;
14102
14103 -- If it is a derivation of a private type in a context where no
14104 -- full view is needed, nothing to do either.
14105
14106 elsif No (Full_View (Typ)) and then Typ /= Etype (Typ) then
14107 null;
14108
14109 -- Otherwise mark the type for flipping and use the full view when
14110 -- available.
14111
14112 else
14113 Set_Has_Private_View (N);
14114
14115 if Present (Full_View (Typ)) then
14116 Set_Etype (N2, Full_View (Typ));
14117 end if;
14118 end if;
14119 end Set_Global_Type;
14120
14121 ------------------
14122 -- Top_Ancestor --
14123 ------------------
14124
14125 function Top_Ancestor (E : Entity_Id) return Entity_Id is
14126 Par : Entity_Id;
14127
14128 begin
14129 Par := E;
14130 while Is_Child_Unit (Par) loop
14131 Par := Scope (Par);
14132 end loop;
14133
14134 return Par;
14135 end Top_Ancestor;
14136
14137 -- Start of processing for Reset_Entity
14138
14139 begin
14140 N2 := Get_Associated_Node (N);
14141 E := Entity (N2);
14142
14143 if Present (E) then
14144
14145 -- If the node is an entry call to an entry in an enclosing task,
14146 -- it is rewritten as a selected component. No global entity to
14147 -- preserve in this case, since the expansion will be redone in
14148 -- the instance.
14149
14150 if not Nkind_In (E, N_Defining_Character_Literal,
14151 N_Defining_Identifier,
14152 N_Defining_Operator_Symbol)
14153 then
14154 Set_Associated_Node (N, Empty);
14155 Set_Etype (N, Empty);
14156 return;
14157 end if;
14158
14159 -- If the entity is an itype created as a subtype of an access
14160 -- type with a null exclusion restore source entity for proper
14161 -- visibility. The itype will be created anew in the instance.
14162
14163 if Is_Itype (E)
14164 and then Ekind (E) = E_Access_Subtype
14165 and then Is_Entity_Name (N)
14166 and then Chars (Etype (E)) = Chars (N)
14167 then
14168 E := Etype (E);
14169 Set_Entity (N2, E);
14170 Set_Etype (N2, E);
14171 end if;
14172
14173 if Is_Global (E) then
14174
14175 -- If the entity is a package renaming that is the prefix of
14176 -- an expanded name, it has been rewritten as the renamed
14177 -- package, which is necessary semantically but complicates
14178 -- ASIS tree traversal, so we recover the original entity to
14179 -- expose the renaming. Take into account that the context may
14180 -- be a nested generic, that the original node may itself have
14181 -- an associated node that had better be an entity, and that
14182 -- the current node is still a selected component.
14183
14184 if Ekind (E) = E_Package
14185 and then Nkind (N) = N_Selected_Component
14186 and then Nkind (Parent (N)) = N_Expanded_Name
14187 and then Present (Original_Node (N2))
14188 and then Is_Entity_Name (Original_Node (N2))
14189 and then Present (Entity (Original_Node (N2)))
14190 then
14191 if Is_Global (Entity (Original_Node (N2))) then
14192 N2 := Original_Node (N2);
14193 Set_Associated_Node (N, N2);
14194 Set_Global_Type (N, N2);
14195
14196 -- Renaming is local, and will be resolved in instance
14197
14198 else
14199 Set_Associated_Node (N, Empty);
14200 Set_Etype (N, Empty);
14201 end if;
14202
14203 else
14204 Set_Global_Type (N, N2);
14205 end if;
14206
14207 elsif Nkind (N) = N_Op_Concat
14208 and then Is_Generic_Type (Etype (N2))
14209 and then (Base_Type (Etype (Right_Opnd (N2))) = Etype (N2)
14210 or else
14211 Base_Type (Etype (Left_Opnd (N2))) = Etype (N2))
14212 and then Is_Intrinsic_Subprogram (E)
14213 then
14214 null;
14215
14216 -- Entity is local. Mark generic node as unresolved. Note that now
14217 -- it does not have an entity.
14218
14219 else
14220 Set_Associated_Node (N, Empty);
14221 Set_Etype (N, Empty);
14222 end if;
14223
14224 if Nkind (Parent (N)) in N_Generic_Instantiation
14225 and then N = Name (Parent (N))
14226 then
14227 Save_Global_Defaults (Parent (N), Parent (N2));
14228 end if;
14229
14230 elsif Nkind (Parent (N)) = N_Selected_Component
14231 and then Nkind (Parent (N2)) = N_Expanded_Name
14232 then
14233 if Is_Global (Entity (Parent (N2))) then
14234 Change_Selected_Component_To_Expanded_Name (Parent (N));
14235 Set_Associated_Node (Parent (N), Parent (N2));
14236 Set_Global_Type (Parent (N), Parent (N2));
14237 Save_Entity_Descendants (N);
14238
14239 -- If this is a reference to the current generic entity, replace
14240 -- by the name of the generic homonym of the current package. This
14241 -- is because in an instantiation Par.P.Q will not resolve to the
14242 -- name of the instance, whose enclosing scope is not necessarily
14243 -- Par. We use the generic homonym rather that the name of the
14244 -- generic itself because it may be hidden by a local declaration.
14245
14246 elsif In_Open_Scopes (Entity (Parent (N2)))
14247 and then not
14248 Is_Generic_Unit (Top_Ancestor (Entity (Prefix (Parent (N2)))))
14249 then
14250 if Ekind (Entity (Parent (N2))) = E_Generic_Package then
14251 Rewrite (Parent (N),
14252 Make_Identifier (Sloc (N),
14253 Chars =>
14254 Chars (Generic_Homonym (Entity (Parent (N2))))));
14255 else
14256 Rewrite (Parent (N),
14257 Make_Identifier (Sloc (N),
14258 Chars => Chars (Selector_Name (Parent (N2)))));
14259 end if;
14260 end if;
14261
14262 if Nkind (Parent (Parent (N))) in N_Generic_Instantiation
14263 and then Parent (N) = Name (Parent (Parent (N)))
14264 then
14265 Save_Global_Defaults
14266 (Parent (Parent (N)), Parent (Parent (N2)));
14267 end if;
14268
14269 -- A selected component may denote a static constant that has been
14270 -- folded. If the static constant is global to the generic, capture
14271 -- its value. Otherwise the folding will happen in any instantiation.
14272
14273 elsif Nkind (Parent (N)) = N_Selected_Component
14274 and then Nkind_In (Parent (N2), N_Integer_Literal, N_Real_Literal)
14275 then
14276 if Present (Entity (Original_Node (Parent (N2))))
14277 and then Is_Global (Entity (Original_Node (Parent (N2))))
14278 then
14279 Rewrite (Parent (N), New_Copy (Parent (N2)));
14280 Set_Analyzed (Parent (N), False);
14281 end if;
14282
14283 -- A selected component may be transformed into a parameterless
14284 -- function call. If the called entity is global, rewrite the node
14285 -- appropriately, i.e. as an extended name for the global entity.
14286
14287 elsif Nkind (Parent (N)) = N_Selected_Component
14288 and then Nkind (Parent (N2)) = N_Function_Call
14289 and then N = Selector_Name (Parent (N))
14290 then
14291 if No (Parameter_Associations (Parent (N2))) then
14292 if Is_Global (Entity (Name (Parent (N2)))) then
14293 Change_Selected_Component_To_Expanded_Name (Parent (N));
14294 Set_Associated_Node (Parent (N), Name (Parent (N2)));
14295 Set_Global_Type (Parent (N), Name (Parent (N2)));
14296 Save_Entity_Descendants (N);
14297
14298 else
14299 Set_Is_Prefixed_Call (Parent (N));
14300 Set_Associated_Node (N, Empty);
14301 Set_Etype (N, Empty);
14302 end if;
14303
14304 -- In Ada 2005, X.F may be a call to a primitive operation,
14305 -- rewritten as F (X). This rewriting will be done again in an
14306 -- instance, so keep the original node. Global entities will be
14307 -- captured as for other constructs. Indicate that this must
14308 -- resolve as a call, to prevent accidental overloading in the
14309 -- instance, if both a component and a primitive operation appear
14310 -- as candidates.
14311
14312 else
14313 Set_Is_Prefixed_Call (Parent (N));
14314 end if;
14315
14316 -- Entity is local. Reset in generic unit, so that node is resolved
14317 -- anew at the point of instantiation.
14318
14319 else
14320 Set_Associated_Node (N, Empty);
14321 Set_Etype (N, Empty);
14322 end if;
14323 end Reset_Entity;
14324
14325 -----------------------------
14326 -- Save_Entity_Descendants --
14327 -----------------------------
14328
14329 procedure Save_Entity_Descendants (N : Node_Id) is
14330 begin
14331 case Nkind (N) is
14332 when N_Binary_Op =>
14333 Save_Global_Descendant (Union_Id (Left_Opnd (N)));
14334 Save_Global_Descendant (Union_Id (Right_Opnd (N)));
14335
14336 when N_Unary_Op =>
14337 Save_Global_Descendant (Union_Id (Right_Opnd (N)));
14338
14339 when N_Expanded_Name |
14340 N_Selected_Component =>
14341 Save_Global_Descendant (Union_Id (Prefix (N)));
14342 Save_Global_Descendant (Union_Id (Selector_Name (N)));
14343
14344 when N_Identifier |
14345 N_Character_Literal |
14346 N_Operator_Symbol =>
14347 null;
14348
14349 when others =>
14350 raise Program_Error;
14351 end case;
14352 end Save_Entity_Descendants;
14353
14354 --------------------------
14355 -- Save_Global_Defaults --
14356 --------------------------
14357
14358 procedure Save_Global_Defaults (N1 : Node_Id; N2 : Node_Id) is
14359 Loc : constant Source_Ptr := Sloc (N1);
14360 Assoc2 : constant List_Id := Generic_Associations (N2);
14361 Gen_Id : constant Entity_Id := Get_Generic_Entity (N2);
14362 Assoc1 : List_Id;
14363 Act1 : Node_Id;
14364 Act2 : Node_Id;
14365 Def : Node_Id;
14366 Ndec : Node_Id;
14367 Subp : Entity_Id;
14368 Actual : Entity_Id;
14369
14370 begin
14371 Assoc1 := Generic_Associations (N1);
14372
14373 if Present (Assoc1) then
14374 Act1 := First (Assoc1);
14375 else
14376 Act1 := Empty;
14377 Set_Generic_Associations (N1, New_List);
14378 Assoc1 := Generic_Associations (N1);
14379 end if;
14380
14381 if Present (Assoc2) then
14382 Act2 := First (Assoc2);
14383 else
14384 return;
14385 end if;
14386
14387 while Present (Act1) and then Present (Act2) loop
14388 Next (Act1);
14389 Next (Act2);
14390 end loop;
14391
14392 -- Find the associations added for default subprograms
14393
14394 if Present (Act2) then
14395 while Nkind (Act2) /= N_Generic_Association
14396 or else No (Entity (Selector_Name (Act2)))
14397 or else not Is_Overloadable (Entity (Selector_Name (Act2)))
14398 loop
14399 Next (Act2);
14400 end loop;
14401
14402 -- Add a similar association if the default is global. The
14403 -- renaming declaration for the actual has been analyzed, and
14404 -- its alias is the program it renames. Link the actual in the
14405 -- original generic tree with the node in the analyzed tree.
14406
14407 while Present (Act2) loop
14408 Subp := Entity (Selector_Name (Act2));
14409 Def := Explicit_Generic_Actual_Parameter (Act2);
14410
14411 -- Following test is defence against rubbish errors
14412
14413 if No (Alias (Subp)) then
14414 return;
14415 end if;
14416
14417 -- Retrieve the resolved actual from the renaming declaration
14418 -- created for the instantiated formal.
14419
14420 Actual := Entity (Name (Parent (Parent (Subp))));
14421 Set_Entity (Def, Actual);
14422 Set_Etype (Def, Etype (Actual));
14423
14424 if Is_Global (Actual) then
14425 Ndec :=
14426 Make_Generic_Association (Loc,
14427 Selector_Name =>
14428 New_Occurrence_Of (Subp, Loc),
14429 Explicit_Generic_Actual_Parameter =>
14430 New_Occurrence_Of (Actual, Loc));
14431
14432 Set_Associated_Node
14433 (Explicit_Generic_Actual_Parameter (Ndec), Def);
14434
14435 Append (Ndec, Assoc1);
14436
14437 -- If there are other defaults, add a dummy association in case
14438 -- there are other defaulted formals with the same name.
14439
14440 elsif Present (Next (Act2)) then
14441 Ndec :=
14442 Make_Generic_Association (Loc,
14443 Selector_Name =>
14444 New_Occurrence_Of (Subp, Loc),
14445 Explicit_Generic_Actual_Parameter => Empty);
14446
14447 Append (Ndec, Assoc1);
14448 end if;
14449
14450 Next (Act2);
14451 end loop;
14452 end if;
14453
14454 if Nkind (Name (N1)) = N_Identifier
14455 and then Is_Child_Unit (Gen_Id)
14456 and then Is_Global (Gen_Id)
14457 and then Is_Generic_Unit (Scope (Gen_Id))
14458 and then In_Open_Scopes (Scope (Gen_Id))
14459 then
14460 -- This is an instantiation of a child unit within a sibling, so
14461 -- that the generic parent is in scope. An eventual instance must
14462 -- occur within the scope of an instance of the parent. Make name
14463 -- in instance into an expanded name, to preserve the identifier
14464 -- of the parent, so it can be resolved subsequently.
14465
14466 Rewrite (Name (N2),
14467 Make_Expanded_Name (Loc,
14468 Chars => Chars (Gen_Id),
14469 Prefix => New_Occurrence_Of (Scope (Gen_Id), Loc),
14470 Selector_Name => New_Occurrence_Of (Gen_Id, Loc)));
14471 Set_Entity (Name (N2), Gen_Id);
14472
14473 Rewrite (Name (N1),
14474 Make_Expanded_Name (Loc,
14475 Chars => Chars (Gen_Id),
14476 Prefix => New_Occurrence_Of (Scope (Gen_Id), Loc),
14477 Selector_Name => New_Occurrence_Of (Gen_Id, Loc)));
14478
14479 Set_Associated_Node (Name (N1), Name (N2));
14480 Set_Associated_Node (Prefix (Name (N1)), Empty);
14481 Set_Associated_Node
14482 (Selector_Name (Name (N1)), Selector_Name (Name (N2)));
14483 Set_Etype (Name (N1), Etype (Gen_Id));
14484 end if;
14485 end Save_Global_Defaults;
14486
14487 ----------------------------
14488 -- Save_Global_Descendant --
14489 ----------------------------
14490
14491 procedure Save_Global_Descendant (D : Union_Id) is
14492 N1 : Node_Id;
14493
14494 begin
14495 if D in Node_Range then
14496 if D = Union_Id (Empty) then
14497 null;
14498
14499 elsif Nkind (Node_Id (D)) /= N_Compilation_Unit then
14500 Save_References (Node_Id (D));
14501 end if;
14502
14503 elsif D in List_Range then
14504 if D = Union_Id (No_List) or else Is_Empty_List (List_Id (D)) then
14505 null;
14506
14507 else
14508 N1 := First (List_Id (D));
14509 while Present (N1) loop
14510 Save_References (N1);
14511 Next (N1);
14512 end loop;
14513 end if;
14514
14515 -- Element list or other non-node field, nothing to do
14516
14517 else
14518 null;
14519 end if;
14520 end Save_Global_Descendant;
14521
14522 ---------------------
14523 -- Save_References --
14524 ---------------------
14525
14526 -- This is the recursive procedure that does the work once the enclosing
14527 -- generic scope has been established. We have to treat specially a
14528 -- number of node rewritings that are required by semantic processing
14529 -- and which change the kind of nodes in the generic copy: typically
14530 -- constant-folding, replacing an operator node by a string literal, or
14531 -- a selected component by an expanded name. In each of those cases, the
14532 -- transformation is propagated to the generic unit.
14533
14534 procedure Save_References (N : Node_Id) is
14535 Loc : constant Source_Ptr := Sloc (N);
14536
14537 function Requires_Delayed_Save (Nod : Node_Id) return Boolean;
14538 -- Determine whether arbitrary node Nod requires delayed capture of
14539 -- global references within its aspect specifications.
14540
14541 procedure Save_References_In_Aggregate (N : Node_Id);
14542 -- Save all global references in [extension] aggregate node N
14543
14544 procedure Save_References_In_Char_Lit_Or_Op_Symbol (N : Node_Id);
14545 -- Save all global references in a character literal or operator
14546 -- symbol denoted by N.
14547
14548 procedure Save_References_In_Descendants (N : Node_Id);
14549 -- Save all global references in all descendants of node N
14550
14551 procedure Save_References_In_Identifier (N : Node_Id);
14552 -- Save all global references in identifier node N
14553
14554 procedure Save_References_In_Operator (N : Node_Id);
14555 -- Save all global references in operator node N
14556
14557 procedure Save_References_In_Pragma (Prag : Node_Id);
14558 -- Save all global references found within the expression of pragma
14559 -- Prag.
14560
14561 ---------------------------
14562 -- Requires_Delayed_Save --
14563 ---------------------------
14564
14565 function Requires_Delayed_Save (Nod : Node_Id) return Boolean is
14566 begin
14567 -- Generic packages and subprograms require delayed capture of
14568 -- global references within their aspects due to the timing of
14569 -- annotation analysis.
14570
14571 if Nkind_In (Nod, N_Generic_Package_Declaration,
14572 N_Generic_Subprogram_Declaration,
14573 N_Package_Body,
14574 N_Package_Body_Stub,
14575 N_Subprogram_Body,
14576 N_Subprogram_Body_Stub)
14577 then
14578 -- Since the capture of global references is done on the
14579 -- unanalyzed generic template, there is no information around
14580 -- to infer the context. Use the Associated_Entity linkages to
14581 -- peek into the analyzed generic copy and determine what the
14582 -- template corresponds to.
14583
14584 if Nod = Templ then
14585 return
14586 Is_Generic_Declaration_Or_Body
14587 (Unit_Declaration_Node
14588 (Associated_Entity (Defining_Entity (Nod))));
14589
14590 -- Otherwise the generic unit being processed is not the top
14591 -- level template. It is safe to capture of global references
14592 -- within the generic unit because at this point the top level
14593 -- copy is fully analyzed.
14594
14595 else
14596 return False;
14597 end if;
14598
14599 -- Otherwise capture the global references without interference
14600
14601 else
14602 return False;
14603 end if;
14604 end Requires_Delayed_Save;
14605
14606 ----------------------------------
14607 -- Save_References_In_Aggregate --
14608 ----------------------------------
14609
14610 procedure Save_References_In_Aggregate (N : Node_Id) is
14611 Nam : Node_Id;
14612 Qual : Node_Id := Empty;
14613 Typ : Entity_Id := Empty;
14614
14615 use Atree.Unchecked_Access;
14616 -- This code section is part of implementing an untyped tree
14617 -- traversal, so it needs direct access to node fields.
14618
14619 begin
14620 N2 := Get_Associated_Node (N);
14621
14622 if Present (N2) then
14623 Typ := Etype (N2);
14624
14625 -- In an instance within a generic, use the name of the actual
14626 -- and not the original generic parameter. If the actual is
14627 -- global in the current generic it must be preserved for its
14628 -- instantiation.
14629
14630 if Nkind (Parent (Typ)) = N_Subtype_Declaration
14631 and then Present (Generic_Parent_Type (Parent (Typ)))
14632 then
14633 Typ := Base_Type (Typ);
14634 Set_Etype (N2, Typ);
14635 end if;
14636 end if;
14637
14638 if No (N2) or else No (Typ) or else not Is_Global (Typ) then
14639 Set_Associated_Node (N, Empty);
14640
14641 -- If the aggregate is an actual in a call, it has been
14642 -- resolved in the current context, to some local type. The
14643 -- enclosing call may have been disambiguated by the aggregate,
14644 -- and this disambiguation might fail at instantiation time
14645 -- because the type to which the aggregate did resolve is not
14646 -- preserved. In order to preserve some of this information,
14647 -- wrap the aggregate in a qualified expression, using the id
14648 -- of its type. For further disambiguation we qualify the type
14649 -- name with its scope (if visible) because both id's will have
14650 -- corresponding entities in an instance. This resolves most of
14651 -- the problems with missing type information on aggregates in
14652 -- instances.
14653
14654 if Present (N2)
14655 and then Nkind (N2) = Nkind (N)
14656 and then Nkind (Parent (N2)) in N_Subprogram_Call
14657 and then Present (Typ)
14658 and then Comes_From_Source (Typ)
14659 then
14660 Nam := Make_Identifier (Loc, Chars (Typ));
14661
14662 if Is_Immediately_Visible (Scope (Typ)) then
14663 Nam :=
14664 Make_Selected_Component (Loc,
14665 Prefix =>
14666 Make_Identifier (Loc, Chars (Scope (Typ))),
14667 Selector_Name => Nam);
14668 end if;
14669
14670 Qual :=
14671 Make_Qualified_Expression (Loc,
14672 Subtype_Mark => Nam,
14673 Expression => Relocate_Node (N));
14674 end if;
14675 end if;
14676
14677 Save_Global_Descendant (Field1 (N));
14678 Save_Global_Descendant (Field2 (N));
14679 Save_Global_Descendant (Field3 (N));
14680 Save_Global_Descendant (Field5 (N));
14681
14682 if Present (Qual) then
14683 Rewrite (N, Qual);
14684 end if;
14685 end Save_References_In_Aggregate;
14686
14687 ----------------------------------------------
14688 -- Save_References_In_Char_Lit_Or_Op_Symbol --
14689 ----------------------------------------------
14690
14691 procedure Save_References_In_Char_Lit_Or_Op_Symbol (N : Node_Id) is
14692 begin
14693 if Nkind (N) = Nkind (Get_Associated_Node (N)) then
14694 Reset_Entity (N);
14695
14696 elsif Nkind (N) = N_Operator_Symbol
14697 and then Nkind (Get_Associated_Node (N)) = N_String_Literal
14698 then
14699 Change_Operator_Symbol_To_String_Literal (N);
14700 end if;
14701 end Save_References_In_Char_Lit_Or_Op_Symbol;
14702
14703 ------------------------------------
14704 -- Save_References_In_Descendants --
14705 ------------------------------------
14706
14707 procedure Save_References_In_Descendants (N : Node_Id) is
14708 use Atree.Unchecked_Access;
14709 -- This code section is part of implementing an untyped tree
14710 -- traversal, so it needs direct access to node fields.
14711
14712 begin
14713 Save_Global_Descendant (Field1 (N));
14714 Save_Global_Descendant (Field2 (N));
14715 Save_Global_Descendant (Field3 (N));
14716 Save_Global_Descendant (Field4 (N));
14717 Save_Global_Descendant (Field5 (N));
14718 end Save_References_In_Descendants;
14719
14720 -----------------------------------
14721 -- Save_References_In_Identifier --
14722 -----------------------------------
14723
14724 procedure Save_References_In_Identifier (N : Node_Id) is
14725 begin
14726 -- The node did not undergo a transformation
14727
14728 if Nkind (N) = Nkind (Get_Associated_Node (N)) then
14729
14730 -- If this is a discriminant reference, always save it. It is
14731 -- used in the instance to find the corresponding discriminant
14732 -- positionally rather than by name.
14733
14734 Set_Original_Discriminant
14735 (N, Original_Discriminant (Get_Associated_Node (N)));
14736 Reset_Entity (N);
14737
14738 -- The analysis of the generic copy transformed the identifier
14739 -- into another construct. Propagate the changes to the template.
14740
14741 else
14742 N2 := Get_Associated_Node (N);
14743
14744 -- The identifier denotes a call to a parameterless function.
14745 -- Mark the node as resolved when the function is external.
14746
14747 if Nkind (N2) = N_Function_Call then
14748 E := Entity (Name (N2));
14749
14750 if Present (E) and then Is_Global (E) then
14751 Set_Etype (N, Etype (N2));
14752 else
14753 Set_Associated_Node (N, Empty);
14754 Set_Etype (N, Empty);
14755 end if;
14756
14757 -- The identifier denotes a named number that was constant
14758 -- folded. Preserve the original name for ASIS and undo the
14759 -- constant folding which will be repeated in the instance.
14760
14761 elsif Nkind_In (N2, N_Integer_Literal, N_Real_Literal)
14762 and then Is_Entity_Name (Original_Node (N2))
14763 then
14764 Set_Associated_Node (N, Original_Node (N2));
14765 Reset_Entity (N);
14766
14767 -- The identifier resolved to a string literal. Propagate this
14768 -- information to the generic template.
14769
14770 elsif Nkind (N2) = N_String_Literal then
14771 Rewrite (N, New_Copy (N2));
14772
14773 -- The identifier is rewritten as a dereference if it is the
14774 -- prefix of an implicit dereference. Preserve the original
14775 -- tree as the analysis of the instance will expand the node
14776 -- again, but preserve the resolved entity if it is global.
14777
14778 elsif Nkind (N2) = N_Explicit_Dereference then
14779 if Is_Entity_Name (Prefix (N2))
14780 and then Present (Entity (Prefix (N2)))
14781 and then Is_Global (Entity (Prefix (N2)))
14782 then
14783 Set_Associated_Node (N, Prefix (N2));
14784
14785 elsif Nkind (Prefix (N2)) = N_Function_Call
14786 and then Present (Entity (Name (Prefix (N2))))
14787 and then Is_Global (Entity (Name (Prefix (N2))))
14788 then
14789 Rewrite (N,
14790 Make_Explicit_Dereference (Loc,
14791 Prefix =>
14792 Make_Function_Call (Loc,
14793 Name =>
14794 New_Occurrence_Of
14795 (Entity (Name (Prefix (N2))), Loc))));
14796
14797 else
14798 Set_Associated_Node (N, Empty);
14799 Set_Etype (N, Empty);
14800 end if;
14801
14802 -- The subtype mark of a nominally unconstrained object is
14803 -- rewritten as a subtype indication using the bounds of the
14804 -- expression. Recover the original subtype mark.
14805
14806 elsif Nkind (N2) = N_Subtype_Indication
14807 and then Is_Entity_Name (Original_Node (N2))
14808 then
14809 Set_Associated_Node (N, Original_Node (N2));
14810 Reset_Entity (N);
14811 end if;
14812 end if;
14813 end Save_References_In_Identifier;
14814
14815 ---------------------------------
14816 -- Save_References_In_Operator --
14817 ---------------------------------
14818
14819 procedure Save_References_In_Operator (N : Node_Id) is
14820 begin
14821 -- The node did not undergo a transformation
14822
14823 if Nkind (N) = Nkind (Get_Associated_Node (N)) then
14824 if Nkind (N) = N_Op_Concat then
14825 Set_Is_Component_Left_Opnd (N,
14826 Is_Component_Left_Opnd (Get_Associated_Node (N)));
14827
14828 Set_Is_Component_Right_Opnd (N,
14829 Is_Component_Right_Opnd (Get_Associated_Node (N)));
14830 end if;
14831
14832 Reset_Entity (N);
14833
14834 -- The analysis of the generic copy transformed the operator into
14835 -- some other construct. Propagate the changes to the template if
14836 -- applicable.
14837
14838 else
14839 N2 := Get_Associated_Node (N);
14840
14841 -- The operator resoved to a function call
14842
14843 if Nkind (N2) = N_Function_Call then
14844
14845 -- Add explicit qualifications in the generic template for
14846 -- all operands of universal type. This aids resolution by
14847 -- preserving the actual type of a literal or an attribute
14848 -- that yields a universal result.
14849
14850 Qualify_Universal_Operands (N, N2);
14851
14852 E := Entity (Name (N2));
14853
14854 if Present (E) and then Is_Global (E) then
14855 Set_Etype (N, Etype (N2));
14856 else
14857 Set_Associated_Node (N, Empty);
14858 Set_Etype (N, Empty);
14859 end if;
14860
14861 -- The operator was folded into a literal
14862
14863 elsif Nkind_In (N2, N_Integer_Literal,
14864 N_Real_Literal,
14865 N_String_Literal)
14866 then
14867 if Present (Original_Node (N2))
14868 and then Nkind (Original_Node (N2)) = Nkind (N)
14869 then
14870 -- Operation was constant-folded. Whenever possible,
14871 -- recover semantic information from unfolded node,
14872 -- for ASIS use.
14873
14874 Set_Associated_Node (N, Original_Node (N2));
14875
14876 if Nkind (N) = N_Op_Concat then
14877 Set_Is_Component_Left_Opnd (N,
14878 Is_Component_Left_Opnd (Get_Associated_Node (N)));
14879 Set_Is_Component_Right_Opnd (N,
14880 Is_Component_Right_Opnd (Get_Associated_Node (N)));
14881 end if;
14882
14883 Reset_Entity (N);
14884
14885 -- Propagate the constant folding back to the template
14886
14887 else
14888 Rewrite (N, New_Copy (N2));
14889 Set_Analyzed (N, False);
14890 end if;
14891
14892 -- The operator was folded into an enumeration literal. Retain
14893 -- the entity to avoid spurious ambiguities if it is overloaded
14894 -- at the point of instantiation or inlining.
14895
14896 elsif Nkind (N2) = N_Identifier
14897 and then Ekind (Entity (N2)) = E_Enumeration_Literal
14898 then
14899 Rewrite (N, New_Copy (N2));
14900 Set_Analyzed (N, False);
14901 end if;
14902 end if;
14903
14904 -- Complete the operands check if node has not been constant
14905 -- folded.
14906
14907 if Nkind (N) in N_Op then
14908 Save_Entity_Descendants (N);
14909 end if;
14910 end Save_References_In_Operator;
14911
14912 -------------------------------
14913 -- Save_References_In_Pragma --
14914 -------------------------------
14915
14916 procedure Save_References_In_Pragma (Prag : Node_Id) is
14917 Context : Node_Id;
14918 Do_Save : Boolean := True;
14919
14920 use Atree.Unchecked_Access;
14921 -- This code section is part of implementing an untyped tree
14922 -- traversal, so it needs direct access to node fields.
14923
14924 begin
14925 -- Do not save global references in pragmas generated from aspects
14926 -- because the pragmas will be regenerated at instantiation time.
14927
14928 if From_Aspect_Specification (Prag) then
14929 Do_Save := False;
14930
14931 -- The capture of global references within contract-related source
14932 -- pragmas associated with generic packages, subprograms or their
14933 -- respective bodies must be delayed due to timing of annotation
14934 -- analysis. Global references are still captured in routine
14935 -- Save_Global_References_In_Contract.
14936
14937 elsif Is_Generic_Contract_Pragma (Prag) and then Prag /= Templ then
14938 if Is_Package_Contract_Annotation (Prag) then
14939 Context := Find_Related_Package_Or_Body (Prag);
14940 else
14941 pragma Assert (Is_Subprogram_Contract_Annotation (Prag));
14942 Context := Find_Related_Declaration_Or_Body (Prag);
14943 end if;
14944
14945 -- The use of Original_Node accounts for the case when the
14946 -- related context is generic template.
14947
14948 if Requires_Delayed_Save (Original_Node (Context)) then
14949 Do_Save := False;
14950 end if;
14951 end if;
14952
14953 -- For all other cases, save all global references within the
14954 -- descendants, but skip the following semantic fields:
14955
14956 -- Field1 - Next_Pragma
14957 -- Field3 - Corresponding_Aspect
14958 -- Field5 - Next_Rep_Item
14959
14960 if Do_Save then
14961 Save_Global_Descendant (Field2 (Prag));
14962 Save_Global_Descendant (Field4 (Prag));
14963 end if;
14964 end Save_References_In_Pragma;
14965
14966 -- Start of processing for Save_References
14967
14968 begin
14969 if N = Empty then
14970 null;
14971
14972 -- Aggregates
14973
14974 elsif Nkind_In (N, N_Aggregate, N_Extension_Aggregate) then
14975 Save_References_In_Aggregate (N);
14976
14977 -- Character literals, operator symbols
14978
14979 elsif Nkind_In (N, N_Character_Literal, N_Operator_Symbol) then
14980 Save_References_In_Char_Lit_Or_Op_Symbol (N);
14981
14982 -- Defining identifiers
14983
14984 elsif Nkind (N) in N_Entity then
14985 null;
14986
14987 -- Identifiers
14988
14989 elsif Nkind (N) = N_Identifier then
14990 Save_References_In_Identifier (N);
14991
14992 -- Operators
14993
14994 elsif Nkind (N) in N_Op then
14995 Save_References_In_Operator (N);
14996
14997 -- Pragmas
14998
14999 elsif Nkind (N) = N_Pragma then
15000 Save_References_In_Pragma (N);
15001
15002 else
15003 Save_References_In_Descendants (N);
15004 end if;
15005
15006 -- Save all global references found within the aspect specifications
15007 -- of the related node.
15008
15009 if Permits_Aspect_Specifications (N) and then Has_Aspects (N) then
15010
15011 -- The capture of global references within aspects associated with
15012 -- generic packages, subprograms or their bodies must be delayed
15013 -- due to timing of annotation analysis. Global references are
15014 -- still captured in routine Save_Global_References_In_Contract.
15015
15016 if Requires_Delayed_Save (N) then
15017 null;
15018
15019 -- Otherwise save all global references within the aspects
15020
15021 else
15022 Save_Global_References_In_Aspects (N);
15023 end if;
15024 end if;
15025 end Save_References;
15026
15027 -- Start of processing for Save_Global_References
15028
15029 begin
15030 Gen_Scope := Current_Scope;
15031
15032 -- If the generic unit is a child unit, references to entities in the
15033 -- parent are treated as local, because they will be resolved anew in
15034 -- the context of the instance of the parent.
15035
15036 while Is_Child_Unit (Gen_Scope)
15037 and then Ekind (Scope (Gen_Scope)) = E_Generic_Package
15038 loop
15039 Gen_Scope := Scope (Gen_Scope);
15040 end loop;
15041
15042 Save_References (Templ);
15043 end Save_Global_References;
15044
15045 ---------------------------------------
15046 -- Save_Global_References_In_Aspects --
15047 ---------------------------------------
15048
15049 procedure Save_Global_References_In_Aspects (N : Node_Id) is
15050 Asp : Node_Id;
15051 Expr : Node_Id;
15052
15053 begin
15054 Asp := First (Aspect_Specifications (N));
15055 while Present (Asp) loop
15056 Expr := Expression (Asp);
15057
15058 if Present (Expr) then
15059 Save_Global_References (Expr);
15060 end if;
15061
15062 Next (Asp);
15063 end loop;
15064 end Save_Global_References_In_Aspects;
15065
15066 --------------------------------------
15067 -- Set_Copied_Sloc_For_Inlined_Body --
15068 --------------------------------------
15069
15070 procedure Set_Copied_Sloc_For_Inlined_Body (N : Node_Id; E : Entity_Id) is
15071 begin
15072 Create_Instantiation_Source (N, E, True, S_Adjustment);
15073 end Set_Copied_Sloc_For_Inlined_Body;
15074
15075 ---------------------
15076 -- Set_Instance_Of --
15077 ---------------------
15078
15079 procedure Set_Instance_Of (A : Entity_Id; B : Entity_Id) is
15080 begin
15081 Generic_Renamings.Table (Generic_Renamings.Last) := (A, B, Assoc_Null);
15082 Generic_Renamings_HTable.Set (Generic_Renamings.Last);
15083 Generic_Renamings.Increment_Last;
15084 end Set_Instance_Of;
15085
15086 --------------------
15087 -- Set_Next_Assoc --
15088 --------------------
15089
15090 procedure Set_Next_Assoc (E : Assoc_Ptr; Next : Assoc_Ptr) is
15091 begin
15092 Generic_Renamings.Table (E).Next_In_HTable := Next;
15093 end Set_Next_Assoc;
15094
15095 -------------------
15096 -- Start_Generic --
15097 -------------------
15098
15099 procedure Start_Generic is
15100 begin
15101 -- ??? More things could be factored out in this routine.
15102 -- Should probably be done at a later stage.
15103
15104 Generic_Flags.Append (Inside_A_Generic);
15105 Inside_A_Generic := True;
15106
15107 Expander_Mode_Save_And_Set (False);
15108 end Start_Generic;
15109
15110 ----------------------
15111 -- Set_Instance_Env --
15112 ----------------------
15113
15114 procedure Set_Instance_Env
15115 (Gen_Unit : Entity_Id;
15116 Act_Unit : Entity_Id)
15117 is
15118 Assertion_Status : constant Boolean := Assertions_Enabled;
15119 Save_SPARK_Mode : constant SPARK_Mode_Type := SPARK_Mode;
15120 Save_SPARK_Mode_Pragma : constant Node_Id := SPARK_Mode_Pragma;
15121
15122 begin
15123 -- Regardless of the current mode, predefined units are analyzed in the
15124 -- most current Ada mode, and earlier version Ada checks do not apply
15125 -- to predefined units. Nothing needs to be done for non-internal units.
15126 -- These are always analyzed in the current mode.
15127
15128 if Is_Internal_File_Name
15129 (Fname => Unit_File_Name (Get_Source_Unit (Gen_Unit)),
15130 Renamings_Included => True)
15131 then
15132 Set_Opt_Config_Switches (True, Current_Sem_Unit = Main_Unit);
15133
15134 -- In Ada2012 we may want to enable assertions in an instance of a
15135 -- predefined unit, in which case we need to preserve the current
15136 -- setting for the Assertions_Enabled flag. This will become more
15137 -- critical when pre/postconditions are added to predefined units,
15138 -- as is already the case for some numeric libraries.
15139
15140 if Ada_Version >= Ada_2012 then
15141 Assertions_Enabled := Assertion_Status;
15142 end if;
15143
15144 -- SPARK_Mode for an instance is the one applicable at the point of
15145 -- instantiation.
15146
15147 SPARK_Mode := Save_SPARK_Mode;
15148 SPARK_Mode_Pragma := Save_SPARK_Mode_Pragma;
15149
15150 -- Make sure dynamic elaboration checks are off in SPARK Mode
15151
15152 if SPARK_Mode = On then
15153 Dynamic_Elaboration_Checks := False;
15154 end if;
15155 end if;
15156
15157 Current_Instantiated_Parent :=
15158 (Gen_Id => Gen_Unit,
15159 Act_Id => Act_Unit,
15160 Next_In_HTable => Assoc_Null);
15161 end Set_Instance_Env;
15162
15163 -----------------
15164 -- Switch_View --
15165 -----------------
15166
15167 procedure Switch_View (T : Entity_Id) is
15168 BT : constant Entity_Id := Base_Type (T);
15169 Priv_Elmt : Elmt_Id := No_Elmt;
15170 Priv_Sub : Entity_Id;
15171
15172 begin
15173 -- T may be private but its base type may have been exchanged through
15174 -- some other occurrence, in which case there is nothing to switch
15175 -- besides T itself. Note that a private dependent subtype of a private
15176 -- type might not have been switched even if the base type has been,
15177 -- because of the last branch of Check_Private_View (see comment there).
15178
15179 if not Is_Private_Type (BT) then
15180 Prepend_Elmt (Full_View (T), Exchanged_Views);
15181 Exchange_Declarations (T);
15182 return;
15183 end if;
15184
15185 Priv_Elmt := First_Elmt (Private_Dependents (BT));
15186
15187 if Present (Full_View (BT)) then
15188 Prepend_Elmt (Full_View (BT), Exchanged_Views);
15189 Exchange_Declarations (BT);
15190 end if;
15191
15192 while Present (Priv_Elmt) loop
15193 Priv_Sub := (Node (Priv_Elmt));
15194
15195 -- We avoid flipping the subtype if the Etype of its full view is
15196 -- private because this would result in a malformed subtype. This
15197 -- occurs when the Etype of the subtype full view is the full view of
15198 -- the base type (and since the base types were just switched, the
15199 -- subtype is pointing to the wrong view). This is currently the case
15200 -- for tagged record types, access types (maybe more?) and needs to
15201 -- be resolved. ???
15202
15203 if Present (Full_View (Priv_Sub))
15204 and then not Is_Private_Type (Etype (Full_View (Priv_Sub)))
15205 then
15206 Prepend_Elmt (Full_View (Priv_Sub), Exchanged_Views);
15207 Exchange_Declarations (Priv_Sub);
15208 end if;
15209
15210 Next_Elmt (Priv_Elmt);
15211 end loop;
15212 end Switch_View;
15213
15214 -----------------
15215 -- True_Parent --
15216 -----------------
15217
15218 function True_Parent (N : Node_Id) return Node_Id is
15219 begin
15220 if Nkind (Parent (N)) = N_Subunit then
15221 return Parent (Corresponding_Stub (Parent (N)));
15222 else
15223 return Parent (N);
15224 end if;
15225 end True_Parent;
15226
15227 -----------------------------
15228 -- Valid_Default_Attribute --
15229 -----------------------------
15230
15231 procedure Valid_Default_Attribute (Nam : Entity_Id; Def : Node_Id) is
15232 Attr_Id : constant Attribute_Id :=
15233 Get_Attribute_Id (Attribute_Name (Def));
15234 T : constant Entity_Id := Entity (Prefix (Def));
15235 Is_Fun : constant Boolean := (Ekind (Nam) = E_Function);
15236 F : Entity_Id;
15237 Num_F : Nat;
15238 OK : Boolean;
15239
15240 begin
15241 if No (T) or else T = Any_Id then
15242 return;
15243 end if;
15244
15245 Num_F := 0;
15246 F := First_Formal (Nam);
15247 while Present (F) loop
15248 Num_F := Num_F + 1;
15249 Next_Formal (F);
15250 end loop;
15251
15252 case Attr_Id is
15253 when Attribute_Adjacent | Attribute_Ceiling | Attribute_Copy_Sign |
15254 Attribute_Floor | Attribute_Fraction | Attribute_Machine |
15255 Attribute_Model | Attribute_Remainder | Attribute_Rounding |
15256 Attribute_Unbiased_Rounding =>
15257 OK := Is_Fun
15258 and then Num_F = 1
15259 and then Is_Floating_Point_Type (T);
15260
15261 when Attribute_Image | Attribute_Pred | Attribute_Succ |
15262 Attribute_Value | Attribute_Wide_Image |
15263 Attribute_Wide_Value =>
15264 OK := (Is_Fun and then Num_F = 1 and then Is_Scalar_Type (T));
15265
15266 when Attribute_Max | Attribute_Min =>
15267 OK := (Is_Fun and then Num_F = 2 and then Is_Scalar_Type (T));
15268
15269 when Attribute_Input =>
15270 OK := (Is_Fun and then Num_F = 1);
15271
15272 when Attribute_Output | Attribute_Read | Attribute_Write =>
15273 OK := (not Is_Fun and then Num_F = 2);
15274
15275 when others =>
15276 OK := False;
15277 end case;
15278
15279 if not OK then
15280 Error_Msg_N
15281 ("attribute reference has wrong profile for subprogram", Def);
15282 end if;
15283 end Valid_Default_Attribute;
15284
15285 end Sem_Ch12;