[multiple changes]
[gcc.git] / gcc / ada / sem_ch12.adb
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S E M _ C H 1 2 --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2016, 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 -- Adjust_Inherited_Pragma_Sloc --
1057 ----------------------------------
1058
1059 procedure Adjust_Inherited_Pragma_Sloc (N : Node_Id) is
1060 begin
1061 Adjust_Instantiation_Sloc (N, S_Adjustment);
1062 end Adjust_Inherited_Pragma_Sloc;
1063
1064 --------------------------
1065 -- Analyze_Associations --
1066 --------------------------
1067
1068 function Analyze_Associations
1069 (I_Node : Node_Id;
1070 Formals : List_Id;
1071 F_Copy : List_Id) return List_Id
1072 is
1073 Actuals_To_Freeze : constant Elist_Id := New_Elmt_List;
1074 Assoc : constant List_Id := New_List;
1075 Default_Actuals : constant List_Id := New_List;
1076 Gen_Unit : constant Entity_Id :=
1077 Defining_Entity (Parent (F_Copy));
1078
1079 Actuals : List_Id;
1080 Actual : Node_Id;
1081 Analyzed_Formal : Node_Id;
1082 First_Named : Node_Id := Empty;
1083 Formal : Node_Id;
1084 Match : Node_Id;
1085 Named : Node_Id;
1086 Saved_Formal : Node_Id;
1087
1088 Default_Formals : constant List_Id := New_List;
1089 -- If an Others_Choice is present, some of the formals may be defaulted.
1090 -- To simplify the treatment of visibility in an instance, we introduce
1091 -- individual defaults for each such formal. These defaults are
1092 -- appended to the list of associations and replace the Others_Choice.
1093
1094 Found_Assoc : Node_Id;
1095 -- Association for the current formal being match. Empty if there are
1096 -- no remaining actuals, or if there is no named association with the
1097 -- name of the formal.
1098
1099 Is_Named_Assoc : Boolean;
1100 Num_Matched : Nat := 0;
1101 Num_Actuals : Nat := 0;
1102
1103 Others_Present : Boolean := False;
1104 Others_Choice : Node_Id := Empty;
1105 -- In Ada 2005, indicates partial parameterization of a formal
1106 -- package. As usual an other association must be last in the list.
1107
1108 procedure Check_Overloaded_Formal_Subprogram (Formal : Entity_Id);
1109 -- Apply RM 12.3(9): if a formal subprogram is overloaded, the instance
1110 -- cannot have a named association for it. AI05-0025 extends this rule
1111 -- to formals of formal packages by AI05-0025, and it also applies to
1112 -- box-initialized formals.
1113
1114 function Has_Fully_Defined_Profile (Subp : Entity_Id) return Boolean;
1115 -- Determine whether the parameter types and the return type of Subp
1116 -- are fully defined at the point of instantiation.
1117
1118 function Matching_Actual
1119 (F : Entity_Id;
1120 A_F : Entity_Id) return Node_Id;
1121 -- Find actual that corresponds to a given a formal parameter. If the
1122 -- actuals are positional, return the next one, if any. If the actuals
1123 -- are named, scan the parameter associations to find the right one.
1124 -- A_F is the corresponding entity in the analyzed generic, which is
1125 -- placed on the selector name for ASIS use.
1126 --
1127 -- In Ada 2005, a named association may be given with a box, in which
1128 -- case Matching_Actual sets Found_Assoc to the generic association,
1129 -- but return Empty for the actual itself. In this case the code below
1130 -- creates a corresponding declaration for the formal.
1131
1132 function Partial_Parameterization return Boolean;
1133 -- Ada 2005: if no match is found for a given formal, check if the
1134 -- association for it includes a box, or whether the associations
1135 -- include an Others clause.
1136
1137 procedure Process_Default (F : Entity_Id);
1138 -- Add a copy of the declaration of generic formal F to the list of
1139 -- associations, and add an explicit box association for F if there
1140 -- is none yet, and the default comes from an Others_Choice.
1141
1142 function Renames_Standard_Subprogram (Subp : Entity_Id) return Boolean;
1143 -- Determine whether Subp renames one of the subprograms defined in the
1144 -- generated package Standard.
1145
1146 procedure Set_Analyzed_Formal;
1147 -- Find the node in the generic copy that corresponds to a given formal.
1148 -- The semantic information on this node is used to perform legality
1149 -- checks on the actuals. Because semantic analysis can introduce some
1150 -- anonymous entities or modify the declaration node itself, the
1151 -- correspondence between the two lists is not one-one. In addition to
1152 -- anonymous types, the presence a formal equality will introduce an
1153 -- implicit declaration for the corresponding inequality.
1154
1155 ----------------------------------------
1156 -- Check_Overloaded_Formal_Subprogram --
1157 ----------------------------------------
1158
1159 procedure Check_Overloaded_Formal_Subprogram (Formal : Entity_Id) is
1160 Temp_Formal : Entity_Id;
1161
1162 begin
1163 Temp_Formal := First (Formals);
1164 while Present (Temp_Formal) loop
1165 if Nkind (Temp_Formal) in N_Formal_Subprogram_Declaration
1166 and then Temp_Formal /= Formal
1167 and then
1168 Chars (Defining_Unit_Name (Specification (Formal))) =
1169 Chars (Defining_Unit_Name (Specification (Temp_Formal)))
1170 then
1171 if Present (Found_Assoc) then
1172 Error_Msg_N
1173 ("named association not allowed for overloaded formal",
1174 Found_Assoc);
1175
1176 else
1177 Error_Msg_N
1178 ("named association not allowed for overloaded formal",
1179 Others_Choice);
1180 end if;
1181
1182 Abandon_Instantiation (Instantiation_Node);
1183 end if;
1184
1185 Next (Temp_Formal);
1186 end loop;
1187 end Check_Overloaded_Formal_Subprogram;
1188
1189 -------------------------------
1190 -- Has_Fully_Defined_Profile --
1191 -------------------------------
1192
1193 function Has_Fully_Defined_Profile (Subp : Entity_Id) return Boolean is
1194 function Is_Fully_Defined_Type (Typ : Entity_Id) return Boolean;
1195 -- Determine whethet type Typ is fully defined
1196
1197 ---------------------------
1198 -- Is_Fully_Defined_Type --
1199 ---------------------------
1200
1201 function Is_Fully_Defined_Type (Typ : Entity_Id) return Boolean is
1202 begin
1203 -- A private type without a full view is not fully defined
1204
1205 if Is_Private_Type (Typ)
1206 and then No (Full_View (Typ))
1207 then
1208 return False;
1209
1210 -- An incomplete type is never fully defined
1211
1212 elsif Is_Incomplete_Type (Typ) then
1213 return False;
1214
1215 -- All other types are fully defined
1216
1217 else
1218 return True;
1219 end if;
1220 end Is_Fully_Defined_Type;
1221
1222 -- Local declarations
1223
1224 Param : Entity_Id;
1225
1226 -- Start of processing for Has_Fully_Defined_Profile
1227
1228 begin
1229 -- Check the parameters
1230
1231 Param := First_Formal (Subp);
1232 while Present (Param) loop
1233 if not Is_Fully_Defined_Type (Etype (Param)) then
1234 return False;
1235 end if;
1236
1237 Next_Formal (Param);
1238 end loop;
1239
1240 -- Check the return type
1241
1242 return Is_Fully_Defined_Type (Etype (Subp));
1243 end Has_Fully_Defined_Profile;
1244
1245 ---------------------
1246 -- Matching_Actual --
1247 ---------------------
1248
1249 function Matching_Actual
1250 (F : Entity_Id;
1251 A_F : Entity_Id) return Node_Id
1252 is
1253 Prev : Node_Id;
1254 Act : Node_Id;
1255
1256 begin
1257 Is_Named_Assoc := False;
1258
1259 -- End of list of purely positional parameters
1260
1261 if No (Actual) or else Nkind (Actual) = N_Others_Choice then
1262 Found_Assoc := Empty;
1263 Act := Empty;
1264
1265 -- Case of positional parameter corresponding to current formal
1266
1267 elsif No (Selector_Name (Actual)) then
1268 Found_Assoc := Actual;
1269 Act := Explicit_Generic_Actual_Parameter (Actual);
1270 Num_Matched := Num_Matched + 1;
1271 Next (Actual);
1272
1273 -- Otherwise scan list of named actuals to find the one with the
1274 -- desired name. All remaining actuals have explicit names.
1275
1276 else
1277 Is_Named_Assoc := True;
1278 Found_Assoc := Empty;
1279 Act := Empty;
1280 Prev := Empty;
1281
1282 while Present (Actual) loop
1283 if Nkind (Actual) = N_Others_Choice then
1284 Found_Assoc := Empty;
1285 Act := Empty;
1286
1287 elsif Chars (Selector_Name (Actual)) = Chars (F) then
1288 Set_Entity (Selector_Name (Actual), A_F);
1289 Set_Etype (Selector_Name (Actual), Etype (A_F));
1290 Generate_Reference (A_F, Selector_Name (Actual));
1291
1292 Found_Assoc := Actual;
1293 Act := Explicit_Generic_Actual_Parameter (Actual);
1294 Num_Matched := Num_Matched + 1;
1295 exit;
1296 end if;
1297
1298 Prev := Actual;
1299 Next (Actual);
1300 end loop;
1301
1302 -- Reset for subsequent searches. In most cases the named
1303 -- associations are in order. If they are not, we reorder them
1304 -- to avoid scanning twice the same actual. This is not just a
1305 -- question of efficiency: there may be multiple defaults with
1306 -- boxes that have the same name. In a nested instantiation we
1307 -- insert actuals for those defaults, and cannot rely on their
1308 -- names to disambiguate them.
1309
1310 if Actual = First_Named then
1311 Next (First_Named);
1312
1313 elsif Present (Actual) then
1314 Insert_Before (First_Named, Remove_Next (Prev));
1315 end if;
1316
1317 Actual := First_Named;
1318 end if;
1319
1320 if Is_Entity_Name (Act) and then Present (Entity (Act)) then
1321 Set_Used_As_Generic_Actual (Entity (Act));
1322 end if;
1323
1324 return Act;
1325 end Matching_Actual;
1326
1327 ------------------------------
1328 -- Partial_Parameterization --
1329 ------------------------------
1330
1331 function Partial_Parameterization return Boolean is
1332 begin
1333 return Others_Present
1334 or else (Present (Found_Assoc) and then Box_Present (Found_Assoc));
1335 end Partial_Parameterization;
1336
1337 ---------------------
1338 -- Process_Default --
1339 ---------------------
1340
1341 procedure Process_Default (F : Entity_Id) is
1342 Loc : constant Source_Ptr := Sloc (I_Node);
1343 F_Id : constant Entity_Id := Defining_Entity (F);
1344 Decl : Node_Id;
1345 Default : Node_Id;
1346 Id : Entity_Id;
1347
1348 begin
1349 -- Append copy of formal declaration to associations, and create new
1350 -- defining identifier for it.
1351
1352 Decl := New_Copy_Tree (F);
1353 Id := Make_Defining_Identifier (Sloc (F_Id), Chars (F_Id));
1354
1355 if Nkind (F) in N_Formal_Subprogram_Declaration then
1356 Set_Defining_Unit_Name (Specification (Decl), Id);
1357
1358 else
1359 Set_Defining_Identifier (Decl, Id);
1360 end if;
1361
1362 Append (Decl, Assoc);
1363
1364 if No (Found_Assoc) then
1365 Default :=
1366 Make_Generic_Association (Loc,
1367 Selector_Name =>
1368 New_Occurrence_Of (Id, Loc),
1369 Explicit_Generic_Actual_Parameter => Empty);
1370 Set_Box_Present (Default);
1371 Append (Default, Default_Formals);
1372 end if;
1373 end Process_Default;
1374
1375 ---------------------------------
1376 -- Renames_Standard_Subprogram --
1377 ---------------------------------
1378
1379 function Renames_Standard_Subprogram (Subp : Entity_Id) return Boolean is
1380 Id : Entity_Id;
1381
1382 begin
1383 Id := Alias (Subp);
1384 while Present (Id) loop
1385 if Scope (Id) = Standard_Standard then
1386 return True;
1387 end if;
1388
1389 Id := Alias (Id);
1390 end loop;
1391
1392 return False;
1393 end Renames_Standard_Subprogram;
1394
1395 -------------------------
1396 -- Set_Analyzed_Formal --
1397 -------------------------
1398
1399 procedure Set_Analyzed_Formal is
1400 Kind : Node_Kind;
1401
1402 begin
1403 while Present (Analyzed_Formal) loop
1404 Kind := Nkind (Analyzed_Formal);
1405
1406 case Nkind (Formal) is
1407
1408 when N_Formal_Subprogram_Declaration =>
1409 exit when Kind in N_Formal_Subprogram_Declaration
1410 and then
1411 Chars
1412 (Defining_Unit_Name (Specification (Formal))) =
1413 Chars
1414 (Defining_Unit_Name (Specification (Analyzed_Formal)));
1415
1416 when N_Formal_Package_Declaration =>
1417 exit when Nkind_In (Kind, N_Formal_Package_Declaration,
1418 N_Generic_Package_Declaration,
1419 N_Package_Declaration);
1420
1421 when N_Use_Package_Clause | N_Use_Type_Clause => exit;
1422
1423 when others =>
1424
1425 -- Skip freeze nodes, and nodes inserted to replace
1426 -- unrecognized pragmas.
1427
1428 exit when
1429 Kind not in N_Formal_Subprogram_Declaration
1430 and then not Nkind_In (Kind, N_Subprogram_Declaration,
1431 N_Freeze_Entity,
1432 N_Null_Statement,
1433 N_Itype_Reference)
1434 and then Chars (Defining_Identifier (Formal)) =
1435 Chars (Defining_Identifier (Analyzed_Formal));
1436 end case;
1437
1438 Next (Analyzed_Formal);
1439 end loop;
1440 end Set_Analyzed_Formal;
1441
1442 -- Start of processing for Analyze_Associations
1443
1444 begin
1445 Actuals := Generic_Associations (I_Node);
1446
1447 if Present (Actuals) then
1448
1449 -- Check for an Others choice, indicating a partial parameterization
1450 -- for a formal package.
1451
1452 Actual := First (Actuals);
1453 while Present (Actual) loop
1454 if Nkind (Actual) = N_Others_Choice then
1455 Others_Present := True;
1456 Others_Choice := Actual;
1457
1458 if Present (Next (Actual)) then
1459 Error_Msg_N ("others must be last association", Actual);
1460 end if;
1461
1462 -- This subprogram is used both for formal packages and for
1463 -- instantiations. For the latter, associations must all be
1464 -- explicit.
1465
1466 if Nkind (I_Node) /= N_Formal_Package_Declaration
1467 and then Comes_From_Source (I_Node)
1468 then
1469 Error_Msg_N
1470 ("others association not allowed in an instance",
1471 Actual);
1472 end if;
1473
1474 -- In any case, nothing to do after the others association
1475
1476 exit;
1477
1478 elsif Box_Present (Actual)
1479 and then Comes_From_Source (I_Node)
1480 and then Nkind (I_Node) /= N_Formal_Package_Declaration
1481 then
1482 Error_Msg_N
1483 ("box association not allowed in an instance", Actual);
1484 end if;
1485
1486 Next (Actual);
1487 end loop;
1488
1489 -- If named associations are present, save first named association
1490 -- (it may of course be Empty) to facilitate subsequent name search.
1491
1492 First_Named := First (Actuals);
1493 while Present (First_Named)
1494 and then Nkind (First_Named) /= N_Others_Choice
1495 and then No (Selector_Name (First_Named))
1496 loop
1497 Num_Actuals := Num_Actuals + 1;
1498 Next (First_Named);
1499 end loop;
1500 end if;
1501
1502 Named := First_Named;
1503 while Present (Named) loop
1504 if Nkind (Named) /= N_Others_Choice
1505 and then No (Selector_Name (Named))
1506 then
1507 Error_Msg_N ("invalid positional actual after named one", Named);
1508 Abandon_Instantiation (Named);
1509 end if;
1510
1511 -- A named association may lack an actual parameter, if it was
1512 -- introduced for a default subprogram that turns out to be local
1513 -- to the outer instantiation. If it has a box association it must
1514 -- correspond to some formal in the generic.
1515
1516 if Nkind (Named) /= N_Others_Choice
1517 and then (Present (Explicit_Generic_Actual_Parameter (Named))
1518 or else Box_Present (Named))
1519 then
1520 Num_Actuals := Num_Actuals + 1;
1521 end if;
1522
1523 Next (Named);
1524 end loop;
1525
1526 if Present (Formals) then
1527 Formal := First_Non_Pragma (Formals);
1528 Analyzed_Formal := First_Non_Pragma (F_Copy);
1529
1530 if Present (Actuals) then
1531 Actual := First (Actuals);
1532
1533 -- All formals should have default values
1534
1535 else
1536 Actual := Empty;
1537 end if;
1538
1539 while Present (Formal) loop
1540 Set_Analyzed_Formal;
1541 Saved_Formal := Next_Non_Pragma (Formal);
1542
1543 case Nkind (Formal) is
1544 when N_Formal_Object_Declaration =>
1545 Match :=
1546 Matching_Actual
1547 (Defining_Identifier (Formal),
1548 Defining_Identifier (Analyzed_Formal));
1549
1550 if No (Match) and then Partial_Parameterization then
1551 Process_Default (Formal);
1552
1553 else
1554 Append_List
1555 (Instantiate_Object (Formal, Match, Analyzed_Formal),
1556 Assoc);
1557
1558 -- For a defaulted in_parameter, create an entry in the
1559 -- the list of defaulted actuals, for GNATProve use. Do
1560 -- not included these defaults for an instance nested
1561 -- within a generic, because the defaults are also used
1562 -- in the analysis of the enclosing generic, and only
1563 -- defaulted subprograms are relevant there.
1564
1565 if No (Match) and then not Inside_A_Generic then
1566 Append_To (Default_Actuals,
1567 Make_Generic_Association (Sloc (I_Node),
1568 Selector_Name =>
1569 New_Occurrence_Of
1570 (Defining_Identifier (Formal), Sloc (I_Node)),
1571 Explicit_Generic_Actual_Parameter =>
1572 New_Copy_Tree (Default_Expression (Formal))));
1573 end if;
1574 end if;
1575
1576 -- If the object is a call to an expression function, this
1577 -- is a freezing point for it.
1578
1579 if Is_Entity_Name (Match)
1580 and then Present (Entity (Match))
1581 and then Nkind
1582 (Original_Node (Unit_Declaration_Node (Entity (Match))))
1583 = N_Expression_Function
1584 then
1585 Append_Elmt (Entity (Match), Actuals_To_Freeze);
1586 end if;
1587
1588 when N_Formal_Type_Declaration =>
1589 Match :=
1590 Matching_Actual
1591 (Defining_Identifier (Formal),
1592 Defining_Identifier (Analyzed_Formal));
1593
1594 if No (Match) then
1595 if Partial_Parameterization then
1596 Process_Default (Formal);
1597
1598 else
1599 Error_Msg_Sloc := Sloc (Gen_Unit);
1600 Error_Msg_NE
1601 ("missing actual&",
1602 Instantiation_Node, Defining_Identifier (Formal));
1603 Error_Msg_NE
1604 ("\in instantiation of & declared#",
1605 Instantiation_Node, Gen_Unit);
1606 Abandon_Instantiation (Instantiation_Node);
1607 end if;
1608
1609 else
1610 Analyze (Match);
1611 Append_List
1612 (Instantiate_Type
1613 (Formal, Match, Analyzed_Formal, Assoc),
1614 Assoc);
1615
1616 -- An instantiation is a freeze point for the actuals,
1617 -- unless this is a rewritten formal package, or the
1618 -- formal is an Ada 2012 formal incomplete type.
1619
1620 if Nkind (I_Node) = N_Formal_Package_Declaration
1621 or else
1622 (Ada_Version >= Ada_2012
1623 and then
1624 Ekind (Defining_Identifier (Analyzed_Formal)) =
1625 E_Incomplete_Type)
1626 then
1627 null;
1628
1629 else
1630 Append_Elmt (Entity (Match), Actuals_To_Freeze);
1631 end if;
1632 end if;
1633
1634 -- A remote access-to-class-wide type is not a legal actual
1635 -- for a generic formal of an access type (E.2.2(17/2)).
1636 -- In GNAT an exception to this rule is introduced when
1637 -- the formal is marked as remote using implementation
1638 -- defined aspect/pragma Remote_Access_Type. In that case
1639 -- the actual must be remote as well.
1640
1641 -- If the current instantiation is the construction of a
1642 -- local copy for a formal package the actuals may be
1643 -- defaulted, and there is no matching actual to check.
1644
1645 if Nkind (Analyzed_Formal) = N_Formal_Type_Declaration
1646 and then
1647 Nkind (Formal_Type_Definition (Analyzed_Formal)) =
1648 N_Access_To_Object_Definition
1649 and then Present (Match)
1650 then
1651 declare
1652 Formal_Ent : constant Entity_Id :=
1653 Defining_Identifier (Analyzed_Formal);
1654 begin
1655 if Is_Remote_Access_To_Class_Wide_Type (Entity (Match))
1656 = Is_Remote_Types (Formal_Ent)
1657 then
1658 -- Remoteness of formal and actual match
1659
1660 null;
1661
1662 elsif Is_Remote_Types (Formal_Ent) then
1663
1664 -- Remote formal, non-remote actual
1665
1666 Error_Msg_NE
1667 ("actual for& must be remote", Match, Formal_Ent);
1668
1669 else
1670 -- Non-remote formal, remote actual
1671
1672 Error_Msg_NE
1673 ("actual for& may not be remote",
1674 Match, Formal_Ent);
1675 end if;
1676 end;
1677 end if;
1678
1679 when N_Formal_Subprogram_Declaration =>
1680 Match :=
1681 Matching_Actual
1682 (Defining_Unit_Name (Specification (Formal)),
1683 Defining_Unit_Name (Specification (Analyzed_Formal)));
1684
1685 -- If the formal subprogram has the same name as another
1686 -- formal subprogram of the generic, then a named
1687 -- association is illegal (12.3(9)). Exclude named
1688 -- associations that are generated for a nested instance.
1689
1690 if Present (Match)
1691 and then Is_Named_Assoc
1692 and then Comes_From_Source (Found_Assoc)
1693 then
1694 Check_Overloaded_Formal_Subprogram (Formal);
1695 end if;
1696
1697 -- If there is no corresponding actual, this may be case
1698 -- of partial parameterization, or else the formal has a
1699 -- default or a box.
1700
1701 if No (Match) and then Partial_Parameterization then
1702 Process_Default (Formal);
1703
1704 if Nkind (I_Node) = N_Formal_Package_Declaration then
1705 Check_Overloaded_Formal_Subprogram (Formal);
1706 end if;
1707
1708 else
1709 Append_To (Assoc,
1710 Instantiate_Formal_Subprogram
1711 (Formal, Match, Analyzed_Formal));
1712
1713 -- An instantiation is a freeze point for the actuals,
1714 -- unless this is a rewritten formal package.
1715
1716 if Nkind (I_Node) /= N_Formal_Package_Declaration
1717 and then Nkind (Match) = N_Identifier
1718 and then Is_Subprogram (Entity (Match))
1719
1720 -- The actual subprogram may rename a routine defined
1721 -- in Standard. Avoid freezing such renamings because
1722 -- subprograms coming from Standard cannot be frozen.
1723
1724 and then
1725 not Renames_Standard_Subprogram (Entity (Match))
1726
1727 -- If the actual subprogram comes from a different
1728 -- unit, it is already frozen, either by a body in
1729 -- that unit or by the end of the declarative part
1730 -- of the unit. This check avoids the freezing of
1731 -- subprograms defined in Standard which are used
1732 -- as generic actuals.
1733
1734 and then In_Same_Code_Unit (Entity (Match), I_Node)
1735 and then Has_Fully_Defined_Profile (Entity (Match))
1736 then
1737 -- Mark the subprogram as having a delayed freeze
1738 -- since this may be an out-of-order action.
1739
1740 Set_Has_Delayed_Freeze (Entity (Match));
1741 Append_Elmt (Entity (Match), Actuals_To_Freeze);
1742 end if;
1743 end if;
1744
1745 -- If this is a nested generic, preserve default for later
1746 -- instantiations. We do this as well for GNATProve use,
1747 -- so that the list of generic associations is complete.
1748
1749 if No (Match) and then Box_Present (Formal) then
1750 declare
1751 Subp : constant Entity_Id :=
1752 Defining_Unit_Name (Specification (Last (Assoc)));
1753
1754 begin
1755 Append_To (Default_Actuals,
1756 Make_Generic_Association (Sloc (I_Node),
1757 Selector_Name =>
1758 New_Occurrence_Of (Subp, Sloc (I_Node)),
1759 Explicit_Generic_Actual_Parameter =>
1760 New_Occurrence_Of (Subp, Sloc (I_Node))));
1761 end;
1762 end if;
1763
1764 when N_Formal_Package_Declaration =>
1765 Match :=
1766 Matching_Actual
1767 (Defining_Identifier (Formal),
1768 Defining_Identifier (Original_Node (Analyzed_Formal)));
1769
1770 if No (Match) then
1771 if Partial_Parameterization then
1772 Process_Default (Formal);
1773
1774 else
1775 Error_Msg_Sloc := Sloc (Gen_Unit);
1776 Error_Msg_NE
1777 ("missing actual&",
1778 Instantiation_Node, Defining_Identifier (Formal));
1779 Error_Msg_NE
1780 ("\in instantiation of & declared#",
1781 Instantiation_Node, Gen_Unit);
1782
1783 Abandon_Instantiation (Instantiation_Node);
1784 end if;
1785
1786 else
1787 Analyze (Match);
1788 Append_List
1789 (Instantiate_Formal_Package
1790 (Formal, Match, Analyzed_Formal),
1791 Assoc);
1792 end if;
1793
1794 -- For use type and use package appearing in the generic part,
1795 -- we have already copied them, so we can just move them where
1796 -- they belong (we mustn't recopy them since this would mess up
1797 -- the Sloc values).
1798
1799 when N_Use_Package_Clause |
1800 N_Use_Type_Clause =>
1801 if Nkind (Original_Node (I_Node)) =
1802 N_Formal_Package_Declaration
1803 then
1804 Append (New_Copy_Tree (Formal), Assoc);
1805 else
1806 Remove (Formal);
1807 Append (Formal, Assoc);
1808 end if;
1809
1810 when others =>
1811 raise Program_Error;
1812
1813 end case;
1814
1815 Formal := Saved_Formal;
1816 Next_Non_Pragma (Analyzed_Formal);
1817 end loop;
1818
1819 if Num_Actuals > Num_Matched then
1820 Error_Msg_Sloc := Sloc (Gen_Unit);
1821
1822 if Present (Selector_Name (Actual)) then
1823 Error_Msg_NE
1824 ("unmatched actual &", Actual, Selector_Name (Actual));
1825 Error_Msg_NE
1826 ("\in instantiation of & declared#", Actual, Gen_Unit);
1827 else
1828 Error_Msg_NE
1829 ("unmatched actual in instantiation of & declared#",
1830 Actual, Gen_Unit);
1831 end if;
1832 end if;
1833
1834 elsif Present (Actuals) then
1835 Error_Msg_N
1836 ("too many actuals in generic instantiation", Instantiation_Node);
1837 end if;
1838
1839 -- An instantiation freezes all generic actuals. The only exceptions
1840 -- to this are incomplete types and subprograms which are not fully
1841 -- defined at the point of instantiation.
1842
1843 declare
1844 Elmt : Elmt_Id := First_Elmt (Actuals_To_Freeze);
1845 begin
1846 while Present (Elmt) loop
1847 Freeze_Before (I_Node, Node (Elmt));
1848 Next_Elmt (Elmt);
1849 end loop;
1850 end;
1851
1852 -- If there are default subprograms, normalize the tree by adding
1853 -- explicit associations for them. This is required if the instance
1854 -- appears within a generic.
1855
1856 if not Is_Empty_List (Default_Actuals) then
1857 declare
1858 Default : Node_Id;
1859
1860 begin
1861 Default := First (Default_Actuals);
1862 while Present (Default) loop
1863 Mark_Rewrite_Insertion (Default);
1864 Next (Default);
1865 end loop;
1866
1867 if No (Actuals) then
1868 Set_Generic_Associations (I_Node, Default_Actuals);
1869 else
1870 Append_List_To (Actuals, Default_Actuals);
1871 end if;
1872 end;
1873 end if;
1874
1875 -- If this is a formal package, normalize the parameter list by adding
1876 -- explicit box associations for the formals that are covered by an
1877 -- Others_Choice.
1878
1879 if not Is_Empty_List (Default_Formals) then
1880 Append_List (Default_Formals, Formals);
1881 end if;
1882
1883 return Assoc;
1884 end Analyze_Associations;
1885
1886 -------------------------------
1887 -- Analyze_Formal_Array_Type --
1888 -------------------------------
1889
1890 procedure Analyze_Formal_Array_Type
1891 (T : in out Entity_Id;
1892 Def : Node_Id)
1893 is
1894 DSS : Node_Id;
1895
1896 begin
1897 -- Treated like a non-generic array declaration, with additional
1898 -- semantic checks.
1899
1900 Enter_Name (T);
1901
1902 if Nkind (Def) = N_Constrained_Array_Definition then
1903 DSS := First (Discrete_Subtype_Definitions (Def));
1904 while Present (DSS) loop
1905 if Nkind_In (DSS, N_Subtype_Indication,
1906 N_Range,
1907 N_Attribute_Reference)
1908 then
1909 Error_Msg_N ("only a subtype mark is allowed in a formal", DSS);
1910 end if;
1911
1912 Next (DSS);
1913 end loop;
1914 end if;
1915
1916 Array_Type_Declaration (T, Def);
1917 Set_Is_Generic_Type (Base_Type (T));
1918
1919 if Ekind (Component_Type (T)) = E_Incomplete_Type
1920 and then No (Full_View (Component_Type (T)))
1921 then
1922 Error_Msg_N ("premature usage of incomplete type", Def);
1923
1924 -- Check that range constraint is not allowed on the component type
1925 -- of a generic formal array type (AARM 12.5.3(3))
1926
1927 elsif Is_Internal (Component_Type (T))
1928 and then Present (Subtype_Indication (Component_Definition (Def)))
1929 and then Nkind (Original_Node
1930 (Subtype_Indication (Component_Definition (Def)))) =
1931 N_Subtype_Indication
1932 then
1933 Error_Msg_N
1934 ("in a formal, a subtype indication can only be "
1935 & "a subtype mark (RM 12.5.3(3))",
1936 Subtype_Indication (Component_Definition (Def)));
1937 end if;
1938
1939 end Analyze_Formal_Array_Type;
1940
1941 ---------------------------------------------
1942 -- Analyze_Formal_Decimal_Fixed_Point_Type --
1943 ---------------------------------------------
1944
1945 -- As for other generic types, we create a valid type representation with
1946 -- legal but arbitrary attributes, whose values are never considered
1947 -- static. For all scalar types we introduce an anonymous base type, with
1948 -- the same attributes. We choose the corresponding integer type to be
1949 -- Standard_Integer.
1950 -- Here and in other similar routines, the Sloc of the generated internal
1951 -- type must be the same as the sloc of the defining identifier of the
1952 -- formal type declaration, to provide proper source navigation.
1953
1954 procedure Analyze_Formal_Decimal_Fixed_Point_Type
1955 (T : Entity_Id;
1956 Def : Node_Id)
1957 is
1958 Loc : constant Source_Ptr := Sloc (Def);
1959
1960 Base : constant Entity_Id :=
1961 New_Internal_Entity
1962 (E_Decimal_Fixed_Point_Type,
1963 Current_Scope,
1964 Sloc (Defining_Identifier (Parent (Def))), 'G');
1965
1966 Int_Base : constant Entity_Id := Standard_Integer;
1967 Delta_Val : constant Ureal := Ureal_1;
1968 Digs_Val : constant Uint := Uint_6;
1969
1970 function Make_Dummy_Bound return Node_Id;
1971 -- Return a properly typed universal real literal to use as a bound
1972
1973 ----------------------
1974 -- Make_Dummy_Bound --
1975 ----------------------
1976
1977 function Make_Dummy_Bound return Node_Id is
1978 Bound : constant Node_Id := Make_Real_Literal (Loc, Ureal_1);
1979 begin
1980 Set_Etype (Bound, Universal_Real);
1981 return Bound;
1982 end Make_Dummy_Bound;
1983
1984 -- Start of processing for Analyze_Formal_Decimal_Fixed_Point_Type
1985
1986 begin
1987 Enter_Name (T);
1988
1989 Set_Etype (Base, Base);
1990 Set_Size_Info (Base, Int_Base);
1991 Set_RM_Size (Base, RM_Size (Int_Base));
1992 Set_First_Rep_Item (Base, First_Rep_Item (Int_Base));
1993 Set_Digits_Value (Base, Digs_Val);
1994 Set_Delta_Value (Base, Delta_Val);
1995 Set_Small_Value (Base, Delta_Val);
1996 Set_Scalar_Range (Base,
1997 Make_Range (Loc,
1998 Low_Bound => Make_Dummy_Bound,
1999 High_Bound => Make_Dummy_Bound));
2000
2001 Set_Is_Generic_Type (Base);
2002 Set_Parent (Base, Parent (Def));
2003
2004 Set_Ekind (T, E_Decimal_Fixed_Point_Subtype);
2005 Set_Etype (T, Base);
2006 Set_Size_Info (T, Int_Base);
2007 Set_RM_Size (T, RM_Size (Int_Base));
2008 Set_First_Rep_Item (T, First_Rep_Item (Int_Base));
2009 Set_Digits_Value (T, Digs_Val);
2010 Set_Delta_Value (T, Delta_Val);
2011 Set_Small_Value (T, Delta_Val);
2012 Set_Scalar_Range (T, Scalar_Range (Base));
2013 Set_Is_Constrained (T);
2014
2015 Check_Restriction (No_Fixed_Point, Def);
2016 end Analyze_Formal_Decimal_Fixed_Point_Type;
2017
2018 -------------------------------------------
2019 -- Analyze_Formal_Derived_Interface_Type --
2020 -------------------------------------------
2021
2022 procedure Analyze_Formal_Derived_Interface_Type
2023 (N : Node_Id;
2024 T : Entity_Id;
2025 Def : Node_Id)
2026 is
2027 Loc : constant Source_Ptr := Sloc (Def);
2028
2029 begin
2030 -- Rewrite as a type declaration of a derived type. This ensures that
2031 -- the interface list and primitive operations are properly captured.
2032
2033 Rewrite (N,
2034 Make_Full_Type_Declaration (Loc,
2035 Defining_Identifier => T,
2036 Type_Definition => Def));
2037 Analyze (N);
2038 Set_Is_Generic_Type (T);
2039 end Analyze_Formal_Derived_Interface_Type;
2040
2041 ---------------------------------
2042 -- Analyze_Formal_Derived_Type --
2043 ---------------------------------
2044
2045 procedure Analyze_Formal_Derived_Type
2046 (N : Node_Id;
2047 T : Entity_Id;
2048 Def : Node_Id)
2049 is
2050 Loc : constant Source_Ptr := Sloc (Def);
2051 Unk_Disc : constant Boolean := Unknown_Discriminants_Present (N);
2052 New_N : Node_Id;
2053
2054 begin
2055 Set_Is_Generic_Type (T);
2056
2057 if Private_Present (Def) then
2058 New_N :=
2059 Make_Private_Extension_Declaration (Loc,
2060 Defining_Identifier => T,
2061 Discriminant_Specifications => Discriminant_Specifications (N),
2062 Unknown_Discriminants_Present => Unk_Disc,
2063 Subtype_Indication => Subtype_Mark (Def),
2064 Interface_List => Interface_List (Def));
2065
2066 Set_Abstract_Present (New_N, Abstract_Present (Def));
2067 Set_Limited_Present (New_N, Limited_Present (Def));
2068 Set_Synchronized_Present (New_N, Synchronized_Present (Def));
2069
2070 else
2071 New_N :=
2072 Make_Full_Type_Declaration (Loc,
2073 Defining_Identifier => T,
2074 Discriminant_Specifications =>
2075 Discriminant_Specifications (Parent (T)),
2076 Type_Definition =>
2077 Make_Derived_Type_Definition (Loc,
2078 Subtype_Indication => Subtype_Mark (Def)));
2079
2080 Set_Abstract_Present
2081 (Type_Definition (New_N), Abstract_Present (Def));
2082 Set_Limited_Present
2083 (Type_Definition (New_N), Limited_Present (Def));
2084 end if;
2085
2086 Rewrite (N, New_N);
2087 Analyze (N);
2088
2089 if Unk_Disc then
2090 if not Is_Composite_Type (T) then
2091 Error_Msg_N
2092 ("unknown discriminants not allowed for elementary types", N);
2093 else
2094 Set_Has_Unknown_Discriminants (T);
2095 Set_Is_Constrained (T, False);
2096 end if;
2097 end if;
2098
2099 -- If the parent type has a known size, so does the formal, which makes
2100 -- legal representation clauses that involve the formal.
2101
2102 Set_Size_Known_At_Compile_Time
2103 (T, Size_Known_At_Compile_Time (Entity (Subtype_Mark (Def))));
2104 end Analyze_Formal_Derived_Type;
2105
2106 ----------------------------------
2107 -- Analyze_Formal_Discrete_Type --
2108 ----------------------------------
2109
2110 -- The operations defined for a discrete types are those of an enumeration
2111 -- type. The size is set to an arbitrary value, for use in analyzing the
2112 -- generic unit.
2113
2114 procedure Analyze_Formal_Discrete_Type (T : Entity_Id; Def : Node_Id) is
2115 Loc : constant Source_Ptr := Sloc (Def);
2116 Lo : Node_Id;
2117 Hi : Node_Id;
2118
2119 Base : constant Entity_Id :=
2120 New_Internal_Entity
2121 (E_Floating_Point_Type, Current_Scope,
2122 Sloc (Defining_Identifier (Parent (Def))), 'G');
2123
2124 begin
2125 Enter_Name (T);
2126 Set_Ekind (T, E_Enumeration_Subtype);
2127 Set_Etype (T, Base);
2128 Init_Size (T, 8);
2129 Init_Alignment (T);
2130 Set_Is_Generic_Type (T);
2131 Set_Is_Constrained (T);
2132
2133 -- For semantic analysis, the bounds of the type must be set to some
2134 -- non-static value. The simplest is to create attribute nodes for those
2135 -- bounds, that refer to the type itself. These bounds are never
2136 -- analyzed but serve as place-holders.
2137
2138 Lo :=
2139 Make_Attribute_Reference (Loc,
2140 Attribute_Name => Name_First,
2141 Prefix => New_Occurrence_Of (T, Loc));
2142 Set_Etype (Lo, T);
2143
2144 Hi :=
2145 Make_Attribute_Reference (Loc,
2146 Attribute_Name => Name_Last,
2147 Prefix => New_Occurrence_Of (T, Loc));
2148 Set_Etype (Hi, T);
2149
2150 Set_Scalar_Range (T,
2151 Make_Range (Loc,
2152 Low_Bound => Lo,
2153 High_Bound => Hi));
2154
2155 Set_Ekind (Base, E_Enumeration_Type);
2156 Set_Etype (Base, Base);
2157 Init_Size (Base, 8);
2158 Init_Alignment (Base);
2159 Set_Is_Generic_Type (Base);
2160 Set_Scalar_Range (Base, Scalar_Range (T));
2161 Set_Parent (Base, Parent (Def));
2162 end Analyze_Formal_Discrete_Type;
2163
2164 ----------------------------------
2165 -- Analyze_Formal_Floating_Type --
2166 ---------------------------------
2167
2168 procedure Analyze_Formal_Floating_Type (T : Entity_Id; Def : Node_Id) is
2169 Base : constant Entity_Id :=
2170 New_Internal_Entity
2171 (E_Floating_Point_Type, Current_Scope,
2172 Sloc (Defining_Identifier (Parent (Def))), 'G');
2173
2174 begin
2175 -- The various semantic attributes are taken from the predefined type
2176 -- Float, just so that all of them are initialized. Their values are
2177 -- never used because no constant folding or expansion takes place in
2178 -- the generic itself.
2179
2180 Enter_Name (T);
2181 Set_Ekind (T, E_Floating_Point_Subtype);
2182 Set_Etype (T, Base);
2183 Set_Size_Info (T, (Standard_Float));
2184 Set_RM_Size (T, RM_Size (Standard_Float));
2185 Set_Digits_Value (T, Digits_Value (Standard_Float));
2186 Set_Scalar_Range (T, Scalar_Range (Standard_Float));
2187 Set_Is_Constrained (T);
2188
2189 Set_Is_Generic_Type (Base);
2190 Set_Etype (Base, Base);
2191 Set_Size_Info (Base, (Standard_Float));
2192 Set_RM_Size (Base, RM_Size (Standard_Float));
2193 Set_Digits_Value (Base, Digits_Value (Standard_Float));
2194 Set_Scalar_Range (Base, Scalar_Range (Standard_Float));
2195 Set_Parent (Base, Parent (Def));
2196
2197 Check_Restriction (No_Floating_Point, Def);
2198 end Analyze_Formal_Floating_Type;
2199
2200 -----------------------------------
2201 -- Analyze_Formal_Interface_Type;--
2202 -----------------------------------
2203
2204 procedure Analyze_Formal_Interface_Type
2205 (N : Node_Id;
2206 T : Entity_Id;
2207 Def : Node_Id)
2208 is
2209 Loc : constant Source_Ptr := Sloc (N);
2210 New_N : Node_Id;
2211
2212 begin
2213 New_N :=
2214 Make_Full_Type_Declaration (Loc,
2215 Defining_Identifier => T,
2216 Type_Definition => Def);
2217
2218 Rewrite (N, New_N);
2219 Analyze (N);
2220 Set_Is_Generic_Type (T);
2221 end Analyze_Formal_Interface_Type;
2222
2223 ---------------------------------
2224 -- Analyze_Formal_Modular_Type --
2225 ---------------------------------
2226
2227 procedure Analyze_Formal_Modular_Type (T : Entity_Id; Def : Node_Id) is
2228 begin
2229 -- Apart from their entity kind, generic modular types are treated like
2230 -- signed integer types, and have the same attributes.
2231
2232 Analyze_Formal_Signed_Integer_Type (T, Def);
2233 Set_Ekind (T, E_Modular_Integer_Subtype);
2234 Set_Ekind (Etype (T), E_Modular_Integer_Type);
2235
2236 end Analyze_Formal_Modular_Type;
2237
2238 ---------------------------------------
2239 -- Analyze_Formal_Object_Declaration --
2240 ---------------------------------------
2241
2242 procedure Analyze_Formal_Object_Declaration (N : Node_Id) is
2243 E : constant Node_Id := Default_Expression (N);
2244 Id : constant Node_Id := Defining_Identifier (N);
2245 K : Entity_Kind;
2246 T : Node_Id;
2247
2248 begin
2249 Enter_Name (Id);
2250
2251 -- Determine the mode of the formal object
2252
2253 if Out_Present (N) then
2254 K := E_Generic_In_Out_Parameter;
2255
2256 if not In_Present (N) then
2257 Error_Msg_N ("formal generic objects cannot have mode OUT", N);
2258 end if;
2259
2260 else
2261 K := E_Generic_In_Parameter;
2262 end if;
2263
2264 if Present (Subtype_Mark (N)) then
2265 Find_Type (Subtype_Mark (N));
2266 T := Entity (Subtype_Mark (N));
2267
2268 -- Verify that there is no redundant null exclusion
2269
2270 if Null_Exclusion_Present (N) then
2271 if not Is_Access_Type (T) then
2272 Error_Msg_N
2273 ("null exclusion can only apply to an access type", N);
2274
2275 elsif Can_Never_Be_Null (T) then
2276 Error_Msg_NE
2277 ("`NOT NULL` not allowed (& already excludes null)", N, T);
2278 end if;
2279 end if;
2280
2281 -- Ada 2005 (AI-423): Formal object with an access definition
2282
2283 else
2284 Check_Access_Definition (N);
2285 T := Access_Definition
2286 (Related_Nod => N,
2287 N => Access_Definition (N));
2288 end if;
2289
2290 if Ekind (T) = E_Incomplete_Type then
2291 declare
2292 Error_Node : Node_Id;
2293
2294 begin
2295 if Present (Subtype_Mark (N)) then
2296 Error_Node := Subtype_Mark (N);
2297 else
2298 Check_Access_Definition (N);
2299 Error_Node := Access_Definition (N);
2300 end if;
2301
2302 Error_Msg_N ("premature usage of incomplete type", Error_Node);
2303 end;
2304 end if;
2305
2306 if K = E_Generic_In_Parameter then
2307
2308 -- Ada 2005 (AI-287): Limited aggregates allowed in generic formals
2309
2310 if Ada_Version < Ada_2005 and then Is_Limited_Type (T) then
2311 Error_Msg_N
2312 ("generic formal of mode IN must not be of limited type", N);
2313 Explain_Limited_Type (T, N);
2314 end if;
2315
2316 if Is_Abstract_Type (T) then
2317 Error_Msg_N
2318 ("generic formal of mode IN must not be of abstract type", N);
2319 end if;
2320
2321 if Present (E) then
2322 Preanalyze_Spec_Expression (E, T);
2323
2324 if Is_Limited_Type (T) and then not OK_For_Limited_Init (T, E) then
2325 Error_Msg_N
2326 ("initialization not allowed for limited types", E);
2327 Explain_Limited_Type (T, E);
2328 end if;
2329 end if;
2330
2331 Set_Ekind (Id, K);
2332 Set_Etype (Id, T);
2333
2334 -- Case of generic IN OUT parameter
2335
2336 else
2337 -- If the formal has an unconstrained type, construct its actual
2338 -- subtype, as is done for subprogram formals. In this fashion, all
2339 -- its uses can refer to specific bounds.
2340
2341 Set_Ekind (Id, K);
2342 Set_Etype (Id, T);
2343
2344 if (Is_Array_Type (T) and then not Is_Constrained (T))
2345 or else (Ekind (T) = E_Record_Type and then Has_Discriminants (T))
2346 then
2347 declare
2348 Non_Freezing_Ref : constant Node_Id :=
2349 New_Occurrence_Of (Id, Sloc (Id));
2350 Decl : Node_Id;
2351
2352 begin
2353 -- Make sure the actual subtype doesn't generate bogus freezing
2354
2355 Set_Must_Not_Freeze (Non_Freezing_Ref);
2356 Decl := Build_Actual_Subtype (T, Non_Freezing_Ref);
2357 Insert_Before_And_Analyze (N, Decl);
2358 Set_Actual_Subtype (Id, Defining_Identifier (Decl));
2359 end;
2360 else
2361 Set_Actual_Subtype (Id, T);
2362 end if;
2363
2364 if Present (E) then
2365 Error_Msg_N
2366 ("initialization not allowed for `IN OUT` formals", N);
2367 end if;
2368 end if;
2369
2370 if Has_Aspects (N) then
2371 Analyze_Aspect_Specifications (N, Id);
2372 end if;
2373 end Analyze_Formal_Object_Declaration;
2374
2375 ----------------------------------------------
2376 -- Analyze_Formal_Ordinary_Fixed_Point_Type --
2377 ----------------------------------------------
2378
2379 procedure Analyze_Formal_Ordinary_Fixed_Point_Type
2380 (T : Entity_Id;
2381 Def : Node_Id)
2382 is
2383 Loc : constant Source_Ptr := Sloc (Def);
2384 Base : constant Entity_Id :=
2385 New_Internal_Entity
2386 (E_Ordinary_Fixed_Point_Type, Current_Scope,
2387 Sloc (Defining_Identifier (Parent (Def))), 'G');
2388
2389 begin
2390 -- The semantic attributes are set for completeness only, their values
2391 -- will never be used, since all properties of the type are non-static.
2392
2393 Enter_Name (T);
2394 Set_Ekind (T, E_Ordinary_Fixed_Point_Subtype);
2395 Set_Etype (T, Base);
2396 Set_Size_Info (T, Standard_Integer);
2397 Set_RM_Size (T, RM_Size (Standard_Integer));
2398 Set_Small_Value (T, Ureal_1);
2399 Set_Delta_Value (T, Ureal_1);
2400 Set_Scalar_Range (T,
2401 Make_Range (Loc,
2402 Low_Bound => Make_Real_Literal (Loc, Ureal_1),
2403 High_Bound => Make_Real_Literal (Loc, Ureal_1)));
2404 Set_Is_Constrained (T);
2405
2406 Set_Is_Generic_Type (Base);
2407 Set_Etype (Base, Base);
2408 Set_Size_Info (Base, Standard_Integer);
2409 Set_RM_Size (Base, RM_Size (Standard_Integer));
2410 Set_Small_Value (Base, Ureal_1);
2411 Set_Delta_Value (Base, Ureal_1);
2412 Set_Scalar_Range (Base, Scalar_Range (T));
2413 Set_Parent (Base, Parent (Def));
2414
2415 Check_Restriction (No_Fixed_Point, Def);
2416 end Analyze_Formal_Ordinary_Fixed_Point_Type;
2417
2418 ----------------------------------------
2419 -- Analyze_Formal_Package_Declaration --
2420 ----------------------------------------
2421
2422 procedure Analyze_Formal_Package_Declaration (N : Node_Id) is
2423 Gen_Id : constant Node_Id := Name (N);
2424 Loc : constant Source_Ptr := Sloc (N);
2425 Pack_Id : constant Entity_Id := Defining_Identifier (N);
2426 Formal : Entity_Id;
2427 Gen_Decl : Node_Id;
2428 Gen_Unit : Entity_Id;
2429 Renaming : Node_Id;
2430
2431 Vis_Prims_List : Elist_Id := No_Elist;
2432 -- List of primitives made temporarily visible in the instantiation
2433 -- to match the visibility of the formal type.
2434
2435 function Build_Local_Package return Node_Id;
2436 -- The formal package is rewritten so that its parameters are replaced
2437 -- with corresponding declarations. For parameters with bona fide
2438 -- associations these declarations are created by Analyze_Associations
2439 -- as for a regular instantiation. For boxed parameters, we preserve
2440 -- the formal declarations and analyze them, in order to introduce
2441 -- entities of the right kind in the environment of the formal.
2442
2443 -------------------------
2444 -- Build_Local_Package --
2445 -------------------------
2446
2447 function Build_Local_Package return Node_Id is
2448 Decls : List_Id;
2449 Pack_Decl : Node_Id;
2450
2451 begin
2452 -- Within the formal, the name of the generic package is a renaming
2453 -- of the formal (as for a regular instantiation).
2454
2455 Pack_Decl :=
2456 Make_Package_Declaration (Loc,
2457 Specification =>
2458 Copy_Generic_Node
2459 (Specification (Original_Node (Gen_Decl)),
2460 Empty, Instantiating => True));
2461
2462 Renaming :=
2463 Make_Package_Renaming_Declaration (Loc,
2464 Defining_Unit_Name =>
2465 Make_Defining_Identifier (Loc, Chars (Gen_Unit)),
2466 Name => New_Occurrence_Of (Formal, Loc));
2467
2468 if Nkind (Gen_Id) = N_Identifier
2469 and then Chars (Gen_Id) = Chars (Pack_Id)
2470 then
2471 Error_Msg_NE
2472 ("& is hidden within declaration of instance", Gen_Id, Gen_Unit);
2473 end if;
2474
2475 -- If the formal is declared with a box, or with an others choice,
2476 -- create corresponding declarations for all entities in the formal
2477 -- part, so that names with the proper types are available in the
2478 -- specification of the formal package.
2479
2480 -- On the other hand, if there are no associations, then all the
2481 -- formals must have defaults, and this will be checked by the
2482 -- call to Analyze_Associations.
2483
2484 if Box_Present (N)
2485 or else Nkind (First (Generic_Associations (N))) = N_Others_Choice
2486 then
2487 declare
2488 Formal_Decl : Node_Id;
2489
2490 begin
2491 -- TBA : for a formal package, need to recurse ???
2492
2493 Decls := New_List;
2494 Formal_Decl :=
2495 First
2496 (Generic_Formal_Declarations (Original_Node (Gen_Decl)));
2497 while Present (Formal_Decl) loop
2498 Append_To
2499 (Decls, Copy_Generic_Node (Formal_Decl, Empty, True));
2500 Next (Formal_Decl);
2501 end loop;
2502 end;
2503
2504 -- If generic associations are present, use Analyze_Associations to
2505 -- create the proper renaming declarations.
2506
2507 else
2508 declare
2509 Act_Tree : constant Node_Id :=
2510 Copy_Generic_Node
2511 (Original_Node (Gen_Decl), Empty,
2512 Instantiating => True);
2513
2514 begin
2515 Generic_Renamings.Set_Last (0);
2516 Generic_Renamings_HTable.Reset;
2517 Instantiation_Node := N;
2518
2519 Decls :=
2520 Analyze_Associations
2521 (I_Node => Original_Node (N),
2522 Formals => Generic_Formal_Declarations (Act_Tree),
2523 F_Copy => Generic_Formal_Declarations (Gen_Decl));
2524
2525 Vis_Prims_List := Check_Hidden_Primitives (Decls);
2526 end;
2527 end if;
2528
2529 Append (Renaming, To => Decls);
2530
2531 -- Add generated declarations ahead of local declarations in
2532 -- the package.
2533
2534 if No (Visible_Declarations (Specification (Pack_Decl))) then
2535 Set_Visible_Declarations (Specification (Pack_Decl), Decls);
2536 else
2537 Insert_List_Before
2538 (First (Visible_Declarations (Specification (Pack_Decl))),
2539 Decls);
2540 end if;
2541
2542 return Pack_Decl;
2543 end Build_Local_Package;
2544
2545 -- Local variables
2546
2547 Save_IPSM : constant Boolean := Ignore_Pragma_SPARK_Mode;
2548 -- Save flag Ignore_Pragma_SPARK_Mode for restore on exit
2549
2550 Associations : Boolean := True;
2551 New_N : Node_Id;
2552 Parent_Installed : Boolean := False;
2553 Parent_Instance : Entity_Id;
2554 Renaming_In_Par : Entity_Id;
2555
2556 -- Start of processing for Analyze_Formal_Package_Declaration
2557
2558 begin
2559 Check_Text_IO_Special_Unit (Gen_Id);
2560
2561 Init_Env;
2562 Check_Generic_Child_Unit (Gen_Id, Parent_Installed);
2563 Gen_Unit := Entity (Gen_Id);
2564
2565 -- Check for a formal package that is a package renaming
2566
2567 if Present (Renamed_Object (Gen_Unit)) then
2568
2569 -- Indicate that unit is used, before replacing it with renamed
2570 -- entity for use below.
2571
2572 if In_Extended_Main_Source_Unit (N) then
2573 Set_Is_Instantiated (Gen_Unit);
2574 Generate_Reference (Gen_Unit, N);
2575 end if;
2576
2577 Gen_Unit := Renamed_Object (Gen_Unit);
2578 end if;
2579
2580 if Ekind (Gen_Unit) /= E_Generic_Package then
2581 Error_Msg_N ("expect generic package name", Gen_Id);
2582 Restore_Env;
2583 goto Leave;
2584
2585 elsif Gen_Unit = Current_Scope then
2586 Error_Msg_N
2587 ("generic package cannot be used as a formal package of itself",
2588 Gen_Id);
2589 Restore_Env;
2590 goto Leave;
2591
2592 elsif In_Open_Scopes (Gen_Unit) then
2593 if Is_Compilation_Unit (Gen_Unit)
2594 and then Is_Child_Unit (Current_Scope)
2595 then
2596 -- Special-case the error when the formal is a parent, and
2597 -- continue analysis to minimize cascaded errors.
2598
2599 Error_Msg_N
2600 ("generic parent cannot be used as formal package "
2601 & "of a child unit", Gen_Id);
2602
2603 else
2604 Error_Msg_N
2605 ("generic package cannot be used as a formal package "
2606 & "within itself", Gen_Id);
2607 Restore_Env;
2608 goto Leave;
2609 end if;
2610 end if;
2611
2612 -- Check that name of formal package does not hide name of generic,
2613 -- or its leading prefix. This check must be done separately because
2614 -- the name of the generic has already been analyzed.
2615
2616 declare
2617 Gen_Name : Entity_Id;
2618
2619 begin
2620 Gen_Name := Gen_Id;
2621 while Nkind (Gen_Name) = N_Expanded_Name loop
2622 Gen_Name := Prefix (Gen_Name);
2623 end loop;
2624
2625 if Chars (Gen_Name) = Chars (Pack_Id) then
2626 Error_Msg_NE
2627 ("& is hidden within declaration of formal package",
2628 Gen_Id, Gen_Name);
2629 end if;
2630 end;
2631
2632 if Box_Present (N)
2633 or else No (Generic_Associations (N))
2634 or else Nkind (First (Generic_Associations (N))) = N_Others_Choice
2635 then
2636 Associations := False;
2637 end if;
2638
2639 -- If there are no generic associations, the generic parameters appear
2640 -- as local entities and are instantiated like them. We copy the generic
2641 -- package declaration as if it were an instantiation, and analyze it
2642 -- like a regular package, except that we treat the formals as
2643 -- additional visible components.
2644
2645 Gen_Decl := Unit_Declaration_Node (Gen_Unit);
2646
2647 if In_Extended_Main_Source_Unit (N) then
2648 Set_Is_Instantiated (Gen_Unit);
2649 Generate_Reference (Gen_Unit, N);
2650 end if;
2651
2652 Formal := New_Copy (Pack_Id);
2653 Create_Instantiation_Source (N, Gen_Unit, S_Adjustment);
2654
2655 -- Make local generic without formals. The formals will be replaced with
2656 -- internal declarations.
2657
2658 begin
2659 New_N := Build_Local_Package;
2660
2661 -- If there are errors in the parameter list, Analyze_Associations
2662 -- raises Instantiation_Error. Patch the declaration to prevent further
2663 -- exception propagation.
2664
2665 exception
2666 when Instantiation_Error =>
2667 Enter_Name (Formal);
2668 Set_Ekind (Formal, E_Variable);
2669 Set_Etype (Formal, Any_Type);
2670 Restore_Hidden_Primitives (Vis_Prims_List);
2671
2672 if Parent_Installed then
2673 Remove_Parent;
2674 end if;
2675
2676 goto Leave;
2677 end;
2678
2679 Rewrite (N, New_N);
2680 Set_Defining_Unit_Name (Specification (New_N), Formal);
2681 Set_Generic_Parent (Specification (N), Gen_Unit);
2682 Set_Instance_Env (Gen_Unit, Formal);
2683 Set_Is_Generic_Instance (Formal);
2684
2685 Enter_Name (Formal);
2686 Set_Ekind (Formal, E_Package);
2687 Set_Etype (Formal, Standard_Void_Type);
2688 Set_Inner_Instances (Formal, New_Elmt_List);
2689 Push_Scope (Formal);
2690
2691 -- Manually set the SPARK_Mode from the context because the package
2692 -- declaration is never analyzed.
2693
2694 Set_SPARK_Pragma (Formal, SPARK_Mode_Pragma);
2695 Set_SPARK_Aux_Pragma (Formal, SPARK_Mode_Pragma);
2696 Set_SPARK_Pragma_Inherited (Formal);
2697 Set_SPARK_Aux_Pragma_Inherited (Formal);
2698
2699 if Is_Child_Unit (Gen_Unit) and then Parent_Installed then
2700
2701 -- Similarly, we have to make the name of the formal visible in the
2702 -- parent instance, to resolve properly fully qualified names that
2703 -- may appear in the generic unit. The parent instance has been
2704 -- placed on the scope stack ahead of the current scope.
2705
2706 Parent_Instance := Scope_Stack.Table (Scope_Stack.Last - 1).Entity;
2707
2708 Renaming_In_Par :=
2709 Make_Defining_Identifier (Loc, Chars (Gen_Unit));
2710 Set_Ekind (Renaming_In_Par, E_Package);
2711 Set_Etype (Renaming_In_Par, Standard_Void_Type);
2712 Set_Scope (Renaming_In_Par, Parent_Instance);
2713 Set_Parent (Renaming_In_Par, Parent (Formal));
2714 Set_Renamed_Object (Renaming_In_Par, Formal);
2715 Append_Entity (Renaming_In_Par, Parent_Instance);
2716 end if;
2717
2718 -- A formal package declaration behaves as a package instantiation with
2719 -- respect to SPARK_Mode "off". If the annotation is "off" or altogether
2720 -- missing, set the global flag which signals Analyze_Pragma to ingnore
2721 -- all SPARK_Mode pragmas within the generic_package_name.
2722
2723 if SPARK_Mode /= On then
2724 Ignore_Pragma_SPARK_Mode := True;
2725 end if;
2726
2727 Analyze (Specification (N));
2728
2729 -- The formals for which associations are provided are not visible
2730 -- outside of the formal package. The others are still declared by a
2731 -- formal parameter declaration.
2732
2733 -- If there are no associations, the only local entity to hide is the
2734 -- generated package renaming itself.
2735
2736 declare
2737 E : Entity_Id;
2738
2739 begin
2740 E := First_Entity (Formal);
2741 while Present (E) loop
2742 if Associations and then not Is_Generic_Formal (E) then
2743 Set_Is_Hidden (E);
2744 end if;
2745
2746 if Ekind (E) = E_Package and then Renamed_Entity (E) = Formal then
2747 Set_Is_Hidden (E);
2748 exit;
2749 end if;
2750
2751 Next_Entity (E);
2752 end loop;
2753 end;
2754
2755 End_Package_Scope (Formal);
2756 Restore_Hidden_Primitives (Vis_Prims_List);
2757
2758 if Parent_Installed then
2759 Remove_Parent;
2760 end if;
2761
2762 Restore_Env;
2763
2764 -- Inside the generic unit, the formal package is a regular package, but
2765 -- no body is needed for it. Note that after instantiation, the defining
2766 -- unit name we need is in the new tree and not in the original (see
2767 -- Package_Instantiation). A generic formal package is an instance, and
2768 -- can be used as an actual for an inner instance.
2769
2770 Set_Has_Completion (Formal, True);
2771
2772 -- Add semantic information to the original defining identifier for ASIS
2773 -- use.
2774
2775 Set_Ekind (Pack_Id, E_Package);
2776 Set_Etype (Pack_Id, Standard_Void_Type);
2777 Set_Scope (Pack_Id, Scope (Formal));
2778 Set_Has_Completion (Pack_Id, True);
2779
2780 <<Leave>>
2781 if Has_Aspects (N) then
2782 Analyze_Aspect_Specifications (N, Pack_Id);
2783 end if;
2784
2785 Ignore_Pragma_SPARK_Mode := Save_IPSM;
2786 end Analyze_Formal_Package_Declaration;
2787
2788 ---------------------------------
2789 -- Analyze_Formal_Private_Type --
2790 ---------------------------------
2791
2792 procedure Analyze_Formal_Private_Type
2793 (N : Node_Id;
2794 T : Entity_Id;
2795 Def : Node_Id)
2796 is
2797 begin
2798 New_Private_Type (N, T, Def);
2799
2800 -- Set the size to an arbitrary but legal value
2801
2802 Set_Size_Info (T, Standard_Integer);
2803 Set_RM_Size (T, RM_Size (Standard_Integer));
2804 end Analyze_Formal_Private_Type;
2805
2806 ------------------------------------
2807 -- Analyze_Formal_Incomplete_Type --
2808 ------------------------------------
2809
2810 procedure Analyze_Formal_Incomplete_Type
2811 (T : Entity_Id;
2812 Def : Node_Id)
2813 is
2814 begin
2815 Enter_Name (T);
2816 Set_Ekind (T, E_Incomplete_Type);
2817 Set_Etype (T, T);
2818 Set_Private_Dependents (T, New_Elmt_List);
2819
2820 if Tagged_Present (Def) then
2821 Set_Is_Tagged_Type (T);
2822 Make_Class_Wide_Type (T);
2823 Set_Direct_Primitive_Operations (T, New_Elmt_List);
2824 end if;
2825 end Analyze_Formal_Incomplete_Type;
2826
2827 ----------------------------------------
2828 -- Analyze_Formal_Signed_Integer_Type --
2829 ----------------------------------------
2830
2831 procedure Analyze_Formal_Signed_Integer_Type
2832 (T : Entity_Id;
2833 Def : Node_Id)
2834 is
2835 Base : constant Entity_Id :=
2836 New_Internal_Entity
2837 (E_Signed_Integer_Type,
2838 Current_Scope,
2839 Sloc (Defining_Identifier (Parent (Def))), 'G');
2840
2841 begin
2842 Enter_Name (T);
2843
2844 Set_Ekind (T, E_Signed_Integer_Subtype);
2845 Set_Etype (T, Base);
2846 Set_Size_Info (T, Standard_Integer);
2847 Set_RM_Size (T, RM_Size (Standard_Integer));
2848 Set_Scalar_Range (T, Scalar_Range (Standard_Integer));
2849 Set_Is_Constrained (T);
2850
2851 Set_Is_Generic_Type (Base);
2852 Set_Size_Info (Base, Standard_Integer);
2853 Set_RM_Size (Base, RM_Size (Standard_Integer));
2854 Set_Etype (Base, Base);
2855 Set_Scalar_Range (Base, Scalar_Range (Standard_Integer));
2856 Set_Parent (Base, Parent (Def));
2857 end Analyze_Formal_Signed_Integer_Type;
2858
2859 -------------------------------------------
2860 -- Analyze_Formal_Subprogram_Declaration --
2861 -------------------------------------------
2862
2863 procedure Analyze_Formal_Subprogram_Declaration (N : Node_Id) is
2864 Spec : constant Node_Id := Specification (N);
2865 Def : constant Node_Id := Default_Name (N);
2866 Nam : constant Entity_Id := Defining_Unit_Name (Spec);
2867 Subp : Entity_Id;
2868
2869 begin
2870 if Nam = Error then
2871 return;
2872 end if;
2873
2874 if Nkind (Nam) = N_Defining_Program_Unit_Name then
2875 Error_Msg_N ("name of formal subprogram must be a direct name", Nam);
2876 goto Leave;
2877 end if;
2878
2879 Analyze_Subprogram_Declaration (N);
2880 Set_Is_Formal_Subprogram (Nam);
2881 Set_Has_Completion (Nam);
2882
2883 if Nkind (N) = N_Formal_Abstract_Subprogram_Declaration then
2884 Set_Is_Abstract_Subprogram (Nam);
2885
2886 Set_Is_Dispatching_Operation (Nam);
2887
2888 -- A formal abstract procedure cannot have a null default
2889 -- (RM 12.6(4.1/2)).
2890
2891 if Nkind (Spec) = N_Procedure_Specification
2892 and then Null_Present (Spec)
2893 then
2894 Error_Msg_N
2895 ("a formal abstract subprogram cannot default to null", Spec);
2896 end if;
2897
2898 declare
2899 Ctrl_Type : constant Entity_Id := Find_Dispatching_Type (Nam);
2900 begin
2901 if No (Ctrl_Type) then
2902 Error_Msg_N
2903 ("abstract formal subprogram must have a controlling type",
2904 N);
2905
2906 elsif Ada_Version >= Ada_2012
2907 and then Is_Incomplete_Type (Ctrl_Type)
2908 then
2909 Error_Msg_NE
2910 ("controlling type of abstract formal subprogram cannot "
2911 & "be incomplete type", N, Ctrl_Type);
2912
2913 else
2914 Check_Controlling_Formals (Ctrl_Type, Nam);
2915 end if;
2916 end;
2917 end if;
2918
2919 -- Default name is resolved at the point of instantiation
2920
2921 if Box_Present (N) then
2922 null;
2923
2924 -- Else default is bound at the point of generic declaration
2925
2926 elsif Present (Def) then
2927 if Nkind (Def) = N_Operator_Symbol then
2928 Find_Direct_Name (Def);
2929
2930 elsif Nkind (Def) /= N_Attribute_Reference then
2931 Analyze (Def);
2932
2933 else
2934 -- For an attribute reference, analyze the prefix and verify
2935 -- that it has the proper profile for the subprogram.
2936
2937 Analyze (Prefix (Def));
2938 Valid_Default_Attribute (Nam, Def);
2939 goto Leave;
2940 end if;
2941
2942 -- Default name may be overloaded, in which case the interpretation
2943 -- with the correct profile must be selected, as for a renaming.
2944 -- If the definition is an indexed component, it must denote a
2945 -- member of an entry family. If it is a selected component, it
2946 -- can be a protected operation.
2947
2948 if Etype (Def) = Any_Type then
2949 goto Leave;
2950
2951 elsif Nkind (Def) = N_Selected_Component then
2952 if not Is_Overloadable (Entity (Selector_Name (Def))) then
2953 Error_Msg_N ("expect valid subprogram name as default", Def);
2954 end if;
2955
2956 elsif Nkind (Def) = N_Indexed_Component then
2957 if Is_Entity_Name (Prefix (Def)) then
2958 if Ekind (Entity (Prefix (Def))) /= E_Entry_Family then
2959 Error_Msg_N ("expect valid subprogram name as default", Def);
2960 end if;
2961
2962 elsif Nkind (Prefix (Def)) = N_Selected_Component then
2963 if Ekind (Entity (Selector_Name (Prefix (Def)))) /=
2964 E_Entry_Family
2965 then
2966 Error_Msg_N ("expect valid subprogram name as default", Def);
2967 end if;
2968
2969 else
2970 Error_Msg_N ("expect valid subprogram name as default", Def);
2971 goto Leave;
2972 end if;
2973
2974 elsif Nkind (Def) = N_Character_Literal then
2975
2976 -- Needs some type checks: subprogram should be parameterless???
2977
2978 Resolve (Def, (Etype (Nam)));
2979
2980 elsif not Is_Entity_Name (Def)
2981 or else not Is_Overloadable (Entity (Def))
2982 then
2983 Error_Msg_N ("expect valid subprogram name as default", Def);
2984 goto Leave;
2985
2986 elsif not Is_Overloaded (Def) then
2987 Subp := Entity (Def);
2988
2989 if Subp = Nam then
2990 Error_Msg_N ("premature usage of formal subprogram", Def);
2991
2992 elsif not Entity_Matches_Spec (Subp, Nam) then
2993 Error_Msg_N ("no visible entity matches specification", Def);
2994 end if;
2995
2996 -- More than one interpretation, so disambiguate as for a renaming
2997
2998 else
2999 declare
3000 I : Interp_Index;
3001 I1 : Interp_Index := 0;
3002 It : Interp;
3003 It1 : Interp;
3004
3005 begin
3006 Subp := Any_Id;
3007 Get_First_Interp (Def, I, It);
3008 while Present (It.Nam) loop
3009 if Entity_Matches_Spec (It.Nam, Nam) then
3010 if Subp /= Any_Id then
3011 It1 := Disambiguate (Def, I1, I, Etype (Subp));
3012
3013 if It1 = No_Interp then
3014 Error_Msg_N ("ambiguous default subprogram", Def);
3015 else
3016 Subp := It1.Nam;
3017 end if;
3018
3019 exit;
3020
3021 else
3022 I1 := I;
3023 Subp := It.Nam;
3024 end if;
3025 end if;
3026
3027 Get_Next_Interp (I, It);
3028 end loop;
3029 end;
3030
3031 if Subp /= Any_Id then
3032
3033 -- Subprogram found, generate reference to it
3034
3035 Set_Entity (Def, Subp);
3036 Generate_Reference (Subp, Def);
3037
3038 if Subp = Nam then
3039 Error_Msg_N ("premature usage of formal subprogram", Def);
3040
3041 elsif Ekind (Subp) /= E_Operator then
3042 Check_Mode_Conformant (Subp, Nam);
3043 end if;
3044
3045 else
3046 Error_Msg_N ("no visible subprogram matches specification", N);
3047 end if;
3048 end if;
3049 end if;
3050
3051 <<Leave>>
3052 if Has_Aspects (N) then
3053 Analyze_Aspect_Specifications (N, Nam);
3054 end if;
3055
3056 end Analyze_Formal_Subprogram_Declaration;
3057
3058 -------------------------------------
3059 -- Analyze_Formal_Type_Declaration --
3060 -------------------------------------
3061
3062 procedure Analyze_Formal_Type_Declaration (N : Node_Id) is
3063 Def : constant Node_Id := Formal_Type_Definition (N);
3064 T : Entity_Id;
3065
3066 begin
3067 T := Defining_Identifier (N);
3068
3069 if Present (Discriminant_Specifications (N))
3070 and then Nkind (Def) /= N_Formal_Private_Type_Definition
3071 then
3072 Error_Msg_N
3073 ("discriminants not allowed for this formal type", T);
3074 end if;
3075
3076 -- Enter the new name, and branch to specific routine
3077
3078 case Nkind (Def) is
3079 when N_Formal_Private_Type_Definition =>
3080 Analyze_Formal_Private_Type (N, T, Def);
3081
3082 when N_Formal_Derived_Type_Definition =>
3083 Analyze_Formal_Derived_Type (N, T, Def);
3084
3085 when N_Formal_Incomplete_Type_Definition =>
3086 Analyze_Formal_Incomplete_Type (T, Def);
3087
3088 when N_Formal_Discrete_Type_Definition =>
3089 Analyze_Formal_Discrete_Type (T, Def);
3090
3091 when N_Formal_Signed_Integer_Type_Definition =>
3092 Analyze_Formal_Signed_Integer_Type (T, Def);
3093
3094 when N_Formal_Modular_Type_Definition =>
3095 Analyze_Formal_Modular_Type (T, Def);
3096
3097 when N_Formal_Floating_Point_Definition =>
3098 Analyze_Formal_Floating_Type (T, Def);
3099
3100 when N_Formal_Ordinary_Fixed_Point_Definition =>
3101 Analyze_Formal_Ordinary_Fixed_Point_Type (T, Def);
3102
3103 when N_Formal_Decimal_Fixed_Point_Definition =>
3104 Analyze_Formal_Decimal_Fixed_Point_Type (T, Def);
3105
3106 when N_Array_Type_Definition =>
3107 Analyze_Formal_Array_Type (T, Def);
3108
3109 when N_Access_To_Object_Definition |
3110 N_Access_Function_Definition |
3111 N_Access_Procedure_Definition =>
3112 Analyze_Generic_Access_Type (T, Def);
3113
3114 -- Ada 2005: a interface declaration is encoded as an abstract
3115 -- record declaration or a abstract type derivation.
3116
3117 when N_Record_Definition =>
3118 Analyze_Formal_Interface_Type (N, T, Def);
3119
3120 when N_Derived_Type_Definition =>
3121 Analyze_Formal_Derived_Interface_Type (N, T, Def);
3122
3123 when N_Error =>
3124 null;
3125
3126 when others =>
3127 raise Program_Error;
3128
3129 end case;
3130
3131 Set_Is_Generic_Type (T);
3132
3133 if Has_Aspects (N) then
3134 Analyze_Aspect_Specifications (N, T);
3135 end if;
3136 end Analyze_Formal_Type_Declaration;
3137
3138 ------------------------------------
3139 -- Analyze_Function_Instantiation --
3140 ------------------------------------
3141
3142 procedure Analyze_Function_Instantiation (N : Node_Id) is
3143 begin
3144 Analyze_Subprogram_Instantiation (N, E_Function);
3145 end Analyze_Function_Instantiation;
3146
3147 ---------------------------------
3148 -- Analyze_Generic_Access_Type --
3149 ---------------------------------
3150
3151 procedure Analyze_Generic_Access_Type (T : Entity_Id; Def : Node_Id) is
3152 begin
3153 Enter_Name (T);
3154
3155 if Nkind (Def) = N_Access_To_Object_Definition then
3156 Access_Type_Declaration (T, Def);
3157
3158 if Is_Incomplete_Or_Private_Type (Designated_Type (T))
3159 and then No (Full_View (Designated_Type (T)))
3160 and then not Is_Generic_Type (Designated_Type (T))
3161 then
3162 Error_Msg_N ("premature usage of incomplete type", Def);
3163
3164 elsif not Is_Entity_Name (Subtype_Indication (Def)) then
3165 Error_Msg_N
3166 ("only a subtype mark is allowed in a formal", Def);
3167 end if;
3168
3169 else
3170 Access_Subprogram_Declaration (T, Def);
3171 end if;
3172 end Analyze_Generic_Access_Type;
3173
3174 ---------------------------------
3175 -- Analyze_Generic_Formal_Part --
3176 ---------------------------------
3177
3178 procedure Analyze_Generic_Formal_Part (N : Node_Id) is
3179 Gen_Parm_Decl : Node_Id;
3180
3181 begin
3182 -- The generic formals are processed in the scope of the generic unit,
3183 -- where they are immediately visible. The scope is installed by the
3184 -- caller.
3185
3186 Gen_Parm_Decl := First (Generic_Formal_Declarations (N));
3187 while Present (Gen_Parm_Decl) loop
3188 Analyze (Gen_Parm_Decl);
3189 Next (Gen_Parm_Decl);
3190 end loop;
3191
3192 Generate_Reference_To_Generic_Formals (Current_Scope);
3193 end Analyze_Generic_Formal_Part;
3194
3195 ------------------------------------------
3196 -- Analyze_Generic_Package_Declaration --
3197 ------------------------------------------
3198
3199 procedure Analyze_Generic_Package_Declaration (N : Node_Id) is
3200 Loc : constant Source_Ptr := Sloc (N);
3201 Decls : constant List_Id :=
3202 Visible_Declarations (Specification (N));
3203 Decl : Node_Id;
3204 Id : Entity_Id;
3205 New_N : Node_Id;
3206 Renaming : Node_Id;
3207 Save_Parent : Node_Id;
3208
3209 begin
3210 Check_SPARK_05_Restriction ("generic is not allowed", N);
3211
3212 -- We introduce a renaming of the enclosing package, to have a usable
3213 -- entity as the prefix of an expanded name for a local entity of the
3214 -- form Par.P.Q, where P is the generic package. This is because a local
3215 -- entity named P may hide it, so that the usual visibility rules in
3216 -- the instance will not resolve properly.
3217
3218 Renaming :=
3219 Make_Package_Renaming_Declaration (Loc,
3220 Defining_Unit_Name =>
3221 Make_Defining_Identifier (Loc,
3222 Chars => New_External_Name (Chars (Defining_Entity (N)), "GH")),
3223 Name =>
3224 Make_Identifier (Loc, Chars (Defining_Entity (N))));
3225
3226 if Present (Decls) then
3227 Decl := First (Decls);
3228 while Present (Decl) and then Nkind (Decl) = N_Pragma loop
3229 Next (Decl);
3230 end loop;
3231
3232 if Present (Decl) then
3233 Insert_Before (Decl, Renaming);
3234 else
3235 Append (Renaming, Visible_Declarations (Specification (N)));
3236 end if;
3237
3238 else
3239 Set_Visible_Declarations (Specification (N), New_List (Renaming));
3240 end if;
3241
3242 -- Create copy of generic unit, and save for instantiation. If the unit
3243 -- is a child unit, do not copy the specifications for the parent, which
3244 -- are not part of the generic tree.
3245
3246 Save_Parent := Parent_Spec (N);
3247 Set_Parent_Spec (N, Empty);
3248
3249 New_N := Copy_Generic_Node (N, Empty, Instantiating => False);
3250 Set_Parent_Spec (New_N, Save_Parent);
3251 Rewrite (N, New_N);
3252
3253 -- Once the contents of the generic copy and the template are swapped,
3254 -- do the same for their respective aspect specifications.
3255
3256 Exchange_Aspects (N, New_N);
3257
3258 -- Collect all contract-related source pragmas found within the template
3259 -- and attach them to the contract of the package spec. This contract is
3260 -- used in the capture of global references within annotations.
3261
3262 Create_Generic_Contract (N);
3263
3264 Id := Defining_Entity (N);
3265 Generate_Definition (Id);
3266
3267 -- Expansion is not applied to generic units
3268
3269 Start_Generic;
3270
3271 Enter_Name (Id);
3272 Set_Ekind (Id, E_Generic_Package);
3273 Set_Etype (Id, Standard_Void_Type);
3274
3275 -- A generic package declared within a Ghost region is rendered Ghost
3276 -- (SPARK RM 6.9(2)).
3277
3278 if Ghost_Mode > None then
3279 Set_Is_Ghost_Entity (Id);
3280 end if;
3281
3282 -- Analyze aspects now, so that generated pragmas appear in the
3283 -- declarations before building and analyzing the generic copy.
3284
3285 if Has_Aspects (N) then
3286 Analyze_Aspect_Specifications (N, Id);
3287 end if;
3288
3289 Push_Scope (Id);
3290 Enter_Generic_Scope (Id);
3291 Set_Inner_Instances (Id, New_Elmt_List);
3292
3293 Set_Categorization_From_Pragmas (N);
3294 Set_Is_Pure (Id, Is_Pure (Current_Scope));
3295
3296 -- Link the declaration of the generic homonym in the generic copy to
3297 -- the package it renames, so that it is always resolved properly.
3298
3299 Set_Generic_Homonym (Id, Defining_Unit_Name (Renaming));
3300 Set_Entity (Associated_Node (Name (Renaming)), Id);
3301
3302 -- For a library unit, we have reconstructed the entity for the unit,
3303 -- and must reset it in the library tables.
3304
3305 if Nkind (Parent (N)) = N_Compilation_Unit then
3306 Set_Cunit_Entity (Current_Sem_Unit, Id);
3307 end if;
3308
3309 Analyze_Generic_Formal_Part (N);
3310
3311 -- After processing the generic formals, analysis proceeds as for a
3312 -- non-generic package.
3313
3314 Analyze (Specification (N));
3315
3316 Validate_Categorization_Dependency (N, Id);
3317
3318 End_Generic;
3319
3320 End_Package_Scope (Id);
3321 Exit_Generic_Scope (Id);
3322
3323 if Nkind (Parent (N)) /= N_Compilation_Unit then
3324 Move_Freeze_Nodes (Id, N, Visible_Declarations (Specification (N)));
3325 Move_Freeze_Nodes (Id, N, Private_Declarations (Specification (N)));
3326 Move_Freeze_Nodes (Id, N, Generic_Formal_Declarations (N));
3327
3328 else
3329 Set_Body_Required (Parent (N), Unit_Requires_Body (Id));
3330 Validate_RT_RAT_Component (N);
3331
3332 -- If this is a spec without a body, check that generic parameters
3333 -- are referenced.
3334
3335 if not Body_Required (Parent (N)) then
3336 Check_References (Id);
3337 end if;
3338 end if;
3339
3340 -- If there is a specified storage pool in the context, create an
3341 -- aspect on the package declaration, so that it is used in any
3342 -- instance that does not override it.
3343
3344 if Present (Default_Pool) then
3345 declare
3346 ASN : Node_Id;
3347
3348 begin
3349 ASN :=
3350 Make_Aspect_Specification (Loc,
3351 Identifier => Make_Identifier (Loc, Name_Default_Storage_Pool),
3352 Expression => New_Copy (Default_Pool));
3353
3354 if No (Aspect_Specifications (Specification (N))) then
3355 Set_Aspect_Specifications (Specification (N), New_List (ASN));
3356 else
3357 Append (ASN, Aspect_Specifications (Specification (N)));
3358 end if;
3359 end;
3360 end if;
3361 end Analyze_Generic_Package_Declaration;
3362
3363 --------------------------------------------
3364 -- Analyze_Generic_Subprogram_Declaration --
3365 --------------------------------------------
3366
3367 procedure Analyze_Generic_Subprogram_Declaration (N : Node_Id) is
3368 Formals : List_Id;
3369 Id : Entity_Id;
3370 New_N : Node_Id;
3371 Result_Type : Entity_Id;
3372 Save_Parent : Node_Id;
3373 Spec : Node_Id;
3374 Typ : Entity_Id;
3375
3376 begin
3377 Check_SPARK_05_Restriction ("generic is not allowed", N);
3378
3379 -- Create copy of generic unit, and save for instantiation. If the unit
3380 -- is a child unit, do not copy the specifications for the parent, which
3381 -- are not part of the generic tree.
3382
3383 Save_Parent := Parent_Spec (N);
3384 Set_Parent_Spec (N, Empty);
3385
3386 New_N := Copy_Generic_Node (N, Empty, Instantiating => False);
3387 Set_Parent_Spec (New_N, Save_Parent);
3388 Rewrite (N, New_N);
3389
3390 -- Once the contents of the generic copy and the template are swapped,
3391 -- do the same for their respective aspect specifications.
3392
3393 Exchange_Aspects (N, New_N);
3394
3395 -- Collect all contract-related source pragmas found within the template
3396 -- and attach them to the contract of the subprogram spec. This contract
3397 -- is used in the capture of global references within annotations.
3398
3399 Create_Generic_Contract (N);
3400
3401 Spec := Specification (N);
3402 Id := Defining_Entity (Spec);
3403 Generate_Definition (Id);
3404
3405 if Nkind (Id) = N_Defining_Operator_Symbol then
3406 Error_Msg_N
3407 ("operator symbol not allowed for generic subprogram", Id);
3408 end if;
3409
3410 Start_Generic;
3411
3412 Enter_Name (Id);
3413 Set_Scope_Depth_Value (Id, Scope_Depth (Current_Scope) + 1);
3414
3415 -- Analyze the aspects of the generic copy to ensure that all generated
3416 -- pragmas (if any) perform their semantic effects.
3417
3418 if Has_Aspects (N) then
3419 Analyze_Aspect_Specifications (N, Id);
3420 end if;
3421
3422 Push_Scope (Id);
3423 Enter_Generic_Scope (Id);
3424 Set_Inner_Instances (Id, New_Elmt_List);
3425 Set_Is_Pure (Id, Is_Pure (Current_Scope));
3426
3427 Analyze_Generic_Formal_Part (N);
3428
3429 Formals := Parameter_Specifications (Spec);
3430
3431 if Nkind (Spec) = N_Function_Specification then
3432 Set_Ekind (Id, E_Generic_Function);
3433 else
3434 Set_Ekind (Id, E_Generic_Procedure);
3435 end if;
3436
3437 if Present (Formals) then
3438 Process_Formals (Formals, Spec);
3439 end if;
3440
3441 if Nkind (Spec) = N_Function_Specification then
3442 if Nkind (Result_Definition (Spec)) = N_Access_Definition then
3443 Result_Type := Access_Definition (Spec, Result_Definition (Spec));
3444 Set_Etype (Id, Result_Type);
3445
3446 -- Check restriction imposed by AI05-073: a generic function
3447 -- cannot return an abstract type or an access to such.
3448
3449 -- This is a binding interpretation should it apply to earlier
3450 -- versions of Ada as well as Ada 2012???
3451
3452 if Is_Abstract_Type (Designated_Type (Result_Type))
3453 and then Ada_Version >= Ada_2012
3454 then
3455 Error_Msg_N
3456 ("generic function cannot have an access result "
3457 & "that designates an abstract type", Spec);
3458 end if;
3459
3460 else
3461 Find_Type (Result_Definition (Spec));
3462 Typ := Entity (Result_Definition (Spec));
3463
3464 if Is_Abstract_Type (Typ)
3465 and then Ada_Version >= Ada_2012
3466 then
3467 Error_Msg_N
3468 ("generic function cannot have abstract result type", Spec);
3469 end if;
3470
3471 -- If a null exclusion is imposed on the result type, then create
3472 -- a null-excluding itype (an access subtype) and use it as the
3473 -- function's Etype.
3474
3475 if Is_Access_Type (Typ)
3476 and then Null_Exclusion_Present (Spec)
3477 then
3478 Set_Etype (Id,
3479 Create_Null_Excluding_Itype
3480 (T => Typ,
3481 Related_Nod => Spec,
3482 Scope_Id => Defining_Unit_Name (Spec)));
3483 else
3484 Set_Etype (Id, Typ);
3485 end if;
3486 end if;
3487
3488 else
3489 Set_Etype (Id, Standard_Void_Type);
3490 end if;
3491
3492 -- A generic subprogram declared within a Ghost region is rendered Ghost
3493 -- (SPARK RM 6.9(2)).
3494
3495 if Ghost_Mode > None then
3496 Set_Is_Ghost_Entity (Id);
3497 end if;
3498
3499 -- For a library unit, we have reconstructed the entity for the unit,
3500 -- and must reset it in the library tables. We also make sure that
3501 -- Body_Required is set properly in the original compilation unit node.
3502
3503 if Nkind (Parent (N)) = N_Compilation_Unit then
3504 Set_Cunit_Entity (Current_Sem_Unit, Id);
3505 Set_Body_Required (Parent (N), Unit_Requires_Body (Id));
3506 end if;
3507
3508 Set_Categorization_From_Pragmas (N);
3509 Validate_Categorization_Dependency (N, Id);
3510
3511 -- Capture all global references that occur within the profile of the
3512 -- generic subprogram. Aspects are not part of this processing because
3513 -- they must be delayed. If processed now, Save_Global_References will
3514 -- destroy the Associated_Node links and prevent the capture of global
3515 -- references when the contract of the generic subprogram is analyzed.
3516
3517 Save_Global_References (Original_Node (N));
3518
3519 End_Generic;
3520 End_Scope;
3521 Exit_Generic_Scope (Id);
3522 Generate_Reference_To_Formals (Id);
3523
3524 List_Inherited_Pre_Post_Aspects (Id);
3525 end Analyze_Generic_Subprogram_Declaration;
3526
3527 -----------------------------------
3528 -- Analyze_Package_Instantiation --
3529 -----------------------------------
3530
3531 procedure Analyze_Package_Instantiation (N : Node_Id) is
3532 Loc : constant Source_Ptr := Sloc (N);
3533 Gen_Id : constant Node_Id := Name (N);
3534
3535 Act_Decl : Node_Id;
3536 Act_Decl_Name : Node_Id;
3537 Act_Decl_Id : Entity_Id;
3538 Act_Spec : Node_Id;
3539 Act_Tree : Node_Id;
3540
3541 Gen_Decl : Node_Id;
3542 Gen_Spec : Node_Id;
3543 Gen_Unit : Entity_Id;
3544
3545 Is_Actual_Pack : constant Boolean :=
3546 Is_Internal (Defining_Entity (N));
3547
3548 Env_Installed : Boolean := False;
3549 Parent_Installed : Boolean := False;
3550 Renaming_List : List_Id;
3551 Unit_Renaming : Node_Id;
3552 Needs_Body : Boolean;
3553 Inline_Now : Boolean := False;
3554 Has_Inline_Always : Boolean := False;
3555
3556 Save_IPSM : constant Boolean := Ignore_Pragma_SPARK_Mode;
3557 -- Save flag Ignore_Pragma_SPARK_Mode for restore on exit
3558
3559 Save_SM : constant SPARK_Mode_Type := SPARK_Mode;
3560 Save_SMP : constant Node_Id := SPARK_Mode_Pragma;
3561 -- Save the SPARK_Mode-related data for restore on exit
3562
3563 Save_Style_Check : constant Boolean := Style_Check;
3564 -- Save style check mode for restore on exit
3565
3566 procedure Delay_Descriptors (E : Entity_Id);
3567 -- Delay generation of subprogram descriptors for given entity
3568
3569 function Might_Inline_Subp return Boolean;
3570 -- If inlining is active and the generic contains inlined subprograms,
3571 -- we instantiate the body. This may cause superfluous instantiations,
3572 -- but it is simpler than detecting the need for the body at the point
3573 -- of inlining, when the context of the instance is not available.
3574
3575 -----------------------
3576 -- Delay_Descriptors --
3577 -----------------------
3578
3579 procedure Delay_Descriptors (E : Entity_Id) is
3580 begin
3581 if not Delay_Subprogram_Descriptors (E) then
3582 Set_Delay_Subprogram_Descriptors (E);
3583 Pending_Descriptor.Append (E);
3584 end if;
3585 end Delay_Descriptors;
3586
3587 -----------------------
3588 -- Might_Inline_Subp --
3589 -----------------------
3590
3591 function Might_Inline_Subp return Boolean is
3592 E : Entity_Id;
3593
3594 begin
3595 if not Inline_Processing_Required then
3596 return False;
3597
3598 else
3599 E := First_Entity (Gen_Unit);
3600 while Present (E) loop
3601 if Is_Subprogram (E) and then Is_Inlined (E) then
3602 -- Remember if there are any subprograms with Inline_Always
3603
3604 if Has_Pragma_Inline_Always (E) then
3605 Has_Inline_Always := True;
3606 end if;
3607
3608 return True;
3609 end if;
3610
3611 Next_Entity (E);
3612 end loop;
3613 end if;
3614
3615 return False;
3616 end Might_Inline_Subp;
3617
3618 -- Local declarations
3619
3620 Vis_Prims_List : Elist_Id := No_Elist;
3621 -- List of primitives made temporarily visible in the instantiation
3622 -- to match the visibility of the formal type
3623
3624 -- Start of processing for Analyze_Package_Instantiation
3625
3626 begin
3627 Check_SPARK_05_Restriction ("generic is not allowed", N);
3628
3629 -- Very first thing: check for Text_IO special unit in case we are
3630 -- instantiating one of the children of [[Wide_]Wide_]Text_IO.
3631
3632 Check_Text_IO_Special_Unit (Name (N));
3633
3634 -- Make node global for error reporting
3635
3636 Instantiation_Node := N;
3637
3638 -- Turn off style checking in instances. If the check is enabled on the
3639 -- generic unit, a warning in an instance would just be noise. If not
3640 -- enabled on the generic, then a warning in an instance is just wrong.
3641
3642 Style_Check := False;
3643
3644 -- Case of instantiation of a generic package
3645
3646 if Nkind (N) = N_Package_Instantiation then
3647 Act_Decl_Id := New_Copy (Defining_Entity (N));
3648 Set_Comes_From_Source (Act_Decl_Id, True);
3649
3650 if Nkind (Defining_Unit_Name (N)) = N_Defining_Program_Unit_Name then
3651 Act_Decl_Name :=
3652 Make_Defining_Program_Unit_Name (Loc,
3653 Name =>
3654 New_Copy_Tree (Name (Defining_Unit_Name (N))),
3655 Defining_Identifier => Act_Decl_Id);
3656 else
3657 Act_Decl_Name := Act_Decl_Id;
3658 end if;
3659
3660 -- Case of instantiation of a formal package
3661
3662 else
3663 Act_Decl_Id := Defining_Identifier (N);
3664 Act_Decl_Name := Act_Decl_Id;
3665 end if;
3666
3667 Generate_Definition (Act_Decl_Id);
3668 Set_Ekind (Act_Decl_Id, E_Package);
3669
3670 -- Initialize list of incomplete actuals before analysis
3671
3672 Set_Incomplete_Actuals (Act_Decl_Id, New_Elmt_List);
3673
3674 Preanalyze_Actuals (N, Act_Decl_Id);
3675
3676 Init_Env;
3677 Env_Installed := True;
3678
3679 -- Reset renaming map for formal types. The mapping is established
3680 -- when analyzing the generic associations, but some mappings are
3681 -- inherited from formal packages of parent units, and these are
3682 -- constructed when the parents are installed.
3683
3684 Generic_Renamings.Set_Last (0);
3685 Generic_Renamings_HTable.Reset;
3686
3687 Check_Generic_Child_Unit (Gen_Id, Parent_Installed);
3688 Gen_Unit := Entity (Gen_Id);
3689
3690 -- Verify that it is the name of a generic package
3691
3692 -- A visibility glitch: if the instance is a child unit and the generic
3693 -- is the generic unit of a parent instance (i.e. both the parent and
3694 -- the child units are instances of the same package) the name now
3695 -- denotes the renaming within the parent, not the intended generic
3696 -- unit. See if there is a homonym that is the desired generic. The
3697 -- renaming declaration must be visible inside the instance of the
3698 -- child, but not when analyzing the name in the instantiation itself.
3699
3700 if Ekind (Gen_Unit) = E_Package
3701 and then Present (Renamed_Entity (Gen_Unit))
3702 and then In_Open_Scopes (Renamed_Entity (Gen_Unit))
3703 and then Is_Generic_Instance (Renamed_Entity (Gen_Unit))
3704 and then Present (Homonym (Gen_Unit))
3705 then
3706 Gen_Unit := Homonym (Gen_Unit);
3707 end if;
3708
3709 if Etype (Gen_Unit) = Any_Type then
3710 Restore_Env;
3711 goto Leave;
3712
3713 elsif Ekind (Gen_Unit) /= E_Generic_Package then
3714
3715 -- Ada 2005 (AI-50217): Cannot use instance in limited with_clause
3716
3717 if From_Limited_With (Gen_Unit) then
3718 Error_Msg_N
3719 ("cannot instantiate a limited withed package", Gen_Id);
3720 else
3721 Error_Msg_NE
3722 ("& is not the name of a generic package", Gen_Id, Gen_Unit);
3723 end if;
3724
3725 Restore_Env;
3726 goto Leave;
3727 end if;
3728
3729 if In_Extended_Main_Source_Unit (N) then
3730 Set_Is_Instantiated (Gen_Unit);
3731 Generate_Reference (Gen_Unit, N);
3732
3733 if Present (Renamed_Object (Gen_Unit)) then
3734 Set_Is_Instantiated (Renamed_Object (Gen_Unit));
3735 Generate_Reference (Renamed_Object (Gen_Unit), N);
3736 end if;
3737 end if;
3738
3739 if Nkind (Gen_Id) = N_Identifier
3740 and then Chars (Gen_Unit) = Chars (Defining_Entity (N))
3741 then
3742 Error_Msg_NE
3743 ("& is hidden within declaration of instance", Gen_Id, Gen_Unit);
3744
3745 elsif Nkind (Gen_Id) = N_Expanded_Name
3746 and then Is_Child_Unit (Gen_Unit)
3747 and then Nkind (Prefix (Gen_Id)) = N_Identifier
3748 and then Chars (Act_Decl_Id) = Chars (Prefix (Gen_Id))
3749 then
3750 Error_Msg_N
3751 ("& is hidden within declaration of instance ", Prefix (Gen_Id));
3752 end if;
3753
3754 Set_Entity (Gen_Id, Gen_Unit);
3755
3756 -- If generic is a renaming, get original generic unit
3757
3758 if Present (Renamed_Object (Gen_Unit))
3759 and then Ekind (Renamed_Object (Gen_Unit)) = E_Generic_Package
3760 then
3761 Gen_Unit := Renamed_Object (Gen_Unit);
3762 end if;
3763
3764 -- Verify that there are no circular instantiations
3765
3766 if In_Open_Scopes (Gen_Unit) then
3767 Error_Msg_NE ("instantiation of & within itself", N, Gen_Unit);
3768 Restore_Env;
3769 goto Leave;
3770
3771 elsif Contains_Instance_Of (Gen_Unit, Current_Scope, Gen_Id) then
3772 Error_Msg_Node_2 := Current_Scope;
3773 Error_Msg_NE
3774 ("circular Instantiation: & instantiated in &!", N, Gen_Unit);
3775 Circularity_Detected := True;
3776 Restore_Env;
3777 goto Leave;
3778
3779 else
3780 -- If the context of the instance is subject to SPARK_Mode "off" or
3781 -- the annotation is altogether missing, set the global flag which
3782 -- signals Analyze_Pragma to ignore all SPARK_Mode pragmas within
3783 -- the instance.
3784
3785 if SPARK_Mode /= On then
3786 Ignore_Pragma_SPARK_Mode := True;
3787 end if;
3788
3789 Gen_Decl := Unit_Declaration_Node (Gen_Unit);
3790 Gen_Spec := Specification (Gen_Decl);
3791
3792 -- Initialize renamings map, for error checking, and the list that
3793 -- holds private entities whose views have changed between generic
3794 -- definition and instantiation. If this is the instance created to
3795 -- validate an actual package, the instantiation environment is that
3796 -- of the enclosing instance.
3797
3798 Create_Instantiation_Source (N, Gen_Unit, S_Adjustment);
3799
3800 -- Copy original generic tree, to produce text for instantiation
3801
3802 Act_Tree :=
3803 Copy_Generic_Node
3804 (Original_Node (Gen_Decl), Empty, Instantiating => True);
3805
3806 Act_Spec := Specification (Act_Tree);
3807
3808 -- If this is the instance created to validate an actual package,
3809 -- only the formals matter, do not examine the package spec itself.
3810
3811 if Is_Actual_Pack then
3812 Set_Visible_Declarations (Act_Spec, New_List);
3813 Set_Private_Declarations (Act_Spec, New_List);
3814 end if;
3815
3816 Renaming_List :=
3817 Analyze_Associations
3818 (I_Node => N,
3819 Formals => Generic_Formal_Declarations (Act_Tree),
3820 F_Copy => Generic_Formal_Declarations (Gen_Decl));
3821
3822 Vis_Prims_List := Check_Hidden_Primitives (Renaming_List);
3823
3824 Set_Instance_Env (Gen_Unit, Act_Decl_Id);
3825 Set_Defining_Unit_Name (Act_Spec, Act_Decl_Name);
3826 Set_Is_Generic_Instance (Act_Decl_Id);
3827 Set_Generic_Parent (Act_Spec, Gen_Unit);
3828
3829 -- References to the generic in its own declaration or its body are
3830 -- references to the instance. Add a renaming declaration for the
3831 -- generic unit itself. This declaration, as well as the renaming
3832 -- declarations for the generic formals, must remain private to the
3833 -- unit: the formals, because this is the language semantics, and
3834 -- the unit because its use is an artifact of the implementation.
3835
3836 Unit_Renaming :=
3837 Make_Package_Renaming_Declaration (Loc,
3838 Defining_Unit_Name =>
3839 Make_Defining_Identifier (Loc, Chars (Gen_Unit)),
3840 Name => New_Occurrence_Of (Act_Decl_Id, Loc));
3841
3842 Append (Unit_Renaming, Renaming_List);
3843
3844 -- The renaming declarations are the first local declarations of the
3845 -- new unit.
3846
3847 if Is_Non_Empty_List (Visible_Declarations (Act_Spec)) then
3848 Insert_List_Before
3849 (First (Visible_Declarations (Act_Spec)), Renaming_List);
3850 else
3851 Set_Visible_Declarations (Act_Spec, Renaming_List);
3852 end if;
3853
3854 Act_Decl := Make_Package_Declaration (Loc, Specification => Act_Spec);
3855
3856 -- Propagate the aspect specifications from the package declaration
3857 -- template to the instantiated version of the package declaration.
3858
3859 if Has_Aspects (Act_Tree) then
3860 Set_Aspect_Specifications (Act_Decl,
3861 New_Copy_List_Tree (Aspect_Specifications (Act_Tree)));
3862 end if;
3863
3864 -- The generic may have a generated Default_Storage_Pool aspect,
3865 -- set at the point of generic declaration. If the instance has
3866 -- that aspect, it overrides the one inherited from the generic.
3867
3868 if Has_Aspects (Gen_Spec) then
3869 if No (Aspect_Specifications (N)) then
3870 Set_Aspect_Specifications (N,
3871 (New_Copy_List_Tree
3872 (Aspect_Specifications (Gen_Spec))));
3873
3874 else
3875 declare
3876 ASN1, ASN2 : Node_Id;
3877
3878 begin
3879 ASN1 := First (Aspect_Specifications (N));
3880 while Present (ASN1) loop
3881 if Chars (Identifier (ASN1)) = Name_Default_Storage_Pool
3882 then
3883 -- If generic carries a default storage pool, remove
3884 -- it in favor of the instance one.
3885
3886 ASN2 := First (Aspect_Specifications (Gen_Spec));
3887 while Present (ASN2) loop
3888 if Chars (Identifier (ASN2)) =
3889 Name_Default_Storage_Pool
3890 then
3891 Remove (ASN2);
3892 exit;
3893 end if;
3894
3895 Next (ASN2);
3896 end loop;
3897 end if;
3898
3899 Next (ASN1);
3900 end loop;
3901
3902 Prepend_List_To (Aspect_Specifications (N),
3903 (New_Copy_List_Tree
3904 (Aspect_Specifications (Gen_Spec))));
3905 end;
3906 end if;
3907 end if;
3908
3909 -- Save the instantiation node, for subsequent instantiation of the
3910 -- body, if there is one and we are generating code for the current
3911 -- unit. Mark unit as having a body (avoids premature error message).
3912
3913 -- We instantiate the body if we are generating code, if we are
3914 -- generating cross-reference information, or if we are building
3915 -- trees for ASIS use or GNATprove use.
3916
3917 declare
3918 Enclosing_Body_Present : Boolean := False;
3919 -- If the generic unit is not a compilation unit, then a body may
3920 -- be present in its parent even if none is required. We create a
3921 -- tentative pending instantiation for the body, which will be
3922 -- discarded if none is actually present.
3923
3924 Scop : Entity_Id;
3925
3926 begin
3927 if Scope (Gen_Unit) /= Standard_Standard
3928 and then not Is_Child_Unit (Gen_Unit)
3929 then
3930 Scop := Scope (Gen_Unit);
3931 while Present (Scop) and then Scop /= Standard_Standard loop
3932 if Unit_Requires_Body (Scop) then
3933 Enclosing_Body_Present := True;
3934 exit;
3935
3936 elsif In_Open_Scopes (Scop)
3937 and then In_Package_Body (Scop)
3938 then
3939 Enclosing_Body_Present := True;
3940 exit;
3941 end if;
3942
3943 exit when Is_Compilation_Unit (Scop);
3944 Scop := Scope (Scop);
3945 end loop;
3946 end if;
3947
3948 -- If front-end inlining is enabled or there are any subprograms
3949 -- marked with Inline_Always, and this is a unit for which code
3950 -- will be generated, we instantiate the body at once.
3951
3952 -- This is done if the instance is not the main unit, and if the
3953 -- generic is not a child unit of another generic, to avoid scope
3954 -- problems and the reinstallation of parent instances.
3955
3956 if Expander_Active
3957 and then (not Is_Child_Unit (Gen_Unit)
3958 or else not Is_Generic_Unit (Scope (Gen_Unit)))
3959 and then Might_Inline_Subp
3960 and then not Is_Actual_Pack
3961 then
3962 if not Back_End_Inlining
3963 and then (Front_End_Inlining or else Has_Inline_Always)
3964 and then (Is_In_Main_Unit (N)
3965 or else In_Main_Context (Current_Scope))
3966 and then Nkind (Parent (N)) /= N_Compilation_Unit
3967 then
3968 Inline_Now := True;
3969
3970 -- In configurable_run_time mode we force the inlining of
3971 -- predefined subprograms marked Inline_Always, to minimize
3972 -- the use of the run-time library.
3973
3974 elsif Is_Predefined_File_Name
3975 (Unit_File_Name (Get_Source_Unit (Gen_Decl)))
3976 and then Configurable_Run_Time_Mode
3977 and then Nkind (Parent (N)) /= N_Compilation_Unit
3978 then
3979 Inline_Now := True;
3980 end if;
3981
3982 -- If the current scope is itself an instance within a child
3983 -- unit, there will be duplications in the scope stack, and the
3984 -- unstacking mechanism in Inline_Instance_Body will fail.
3985 -- This loses some rare cases of optimization, and might be
3986 -- improved some day, if we can find a proper abstraction for
3987 -- "the complete compilation context" that can be saved and
3988 -- restored. ???
3989
3990 if Is_Generic_Instance (Current_Scope) then
3991 declare
3992 Curr_Unit : constant Entity_Id :=
3993 Cunit_Entity (Current_Sem_Unit);
3994 begin
3995 if Curr_Unit /= Current_Scope
3996 and then Is_Child_Unit (Curr_Unit)
3997 then
3998 Inline_Now := False;
3999 end if;
4000 end;
4001 end if;
4002 end if;
4003
4004 Needs_Body :=
4005 (Unit_Requires_Body (Gen_Unit)
4006 or else Enclosing_Body_Present
4007 or else Present (Corresponding_Body (Gen_Decl)))
4008 and then (Is_In_Main_Unit (N) or else Might_Inline_Subp)
4009 and then not Is_Actual_Pack
4010 and then not Inline_Now
4011 and then (Operating_Mode = Generate_Code
4012
4013 -- Need comment for this check ???
4014
4015 or else (Operating_Mode = Check_Semantics
4016 and then (ASIS_Mode or GNATprove_Mode)));
4017
4018 -- If front-end inlining is enabled or there are any subprograms
4019 -- marked with Inline_Always, do not instantiate body when within
4020 -- a generic context.
4021
4022 if ((Front_End_Inlining or else Has_Inline_Always)
4023 and then not Expander_Active)
4024 or else Is_Generic_Unit (Cunit_Entity (Main_Unit))
4025 then
4026 Needs_Body := False;
4027 end if;
4028
4029 -- If the current context is generic, and the package being
4030 -- instantiated is declared within a formal package, there is no
4031 -- body to instantiate until the enclosing generic is instantiated
4032 -- and there is an actual for the formal package. If the formal
4033 -- package has parameters, we build a regular package instance for
4034 -- it, that precedes the original formal package declaration.
4035
4036 if In_Open_Scopes (Scope (Scope (Gen_Unit))) then
4037 declare
4038 Decl : constant Node_Id :=
4039 Original_Node
4040 (Unit_Declaration_Node (Scope (Gen_Unit)));
4041 begin
4042 if Nkind (Decl) = N_Formal_Package_Declaration
4043 or else (Nkind (Decl) = N_Package_Declaration
4044 and then Is_List_Member (Decl)
4045 and then Present (Next (Decl))
4046 and then
4047 Nkind (Next (Decl)) =
4048 N_Formal_Package_Declaration)
4049 then
4050 Needs_Body := False;
4051 end if;
4052 end;
4053 end if;
4054 end;
4055
4056 -- For RCI unit calling stubs, we omit the instance body if the
4057 -- instance is the RCI library unit itself.
4058
4059 -- However there is a special case for nested instances: in this case
4060 -- we do generate the instance body, as it might be required, e.g.
4061 -- because it provides stream attributes for some type used in the
4062 -- profile of a remote subprogram. This is consistent with 12.3(12),
4063 -- which indicates that the instance body occurs at the place of the
4064 -- instantiation, and thus is part of the RCI declaration, which is
4065 -- present on all client partitions (this is E.2.3(18)).
4066
4067 -- Note that AI12-0002 may make it illegal at some point to have
4068 -- stream attributes defined in an RCI unit, in which case this
4069 -- special case will become unnecessary. In the meantime, there
4070 -- is known application code in production that depends on this
4071 -- being possible, so we definitely cannot eliminate the body in
4072 -- the case of nested instances for the time being.
4073
4074 -- When we generate a nested instance body, calling stubs for any
4075 -- relevant subprogram will be be inserted immediately after the
4076 -- subprogram declarations, and will take precedence over the
4077 -- subsequent (original) body. (The stub and original body will be
4078 -- complete homographs, but this is permitted in an instance).
4079 -- (Could we do better and remove the original body???)
4080
4081 if Distribution_Stub_Mode = Generate_Caller_Stub_Body
4082 and then Comes_From_Source (N)
4083 and then Nkind (Parent (N)) = N_Compilation_Unit
4084 then
4085 Needs_Body := False;
4086 end if;
4087
4088 if Needs_Body then
4089
4090 -- Here is a defence against a ludicrous number of instantiations
4091 -- caused by a circular set of instantiation attempts.
4092
4093 if Pending_Instantiations.Last > Maximum_Instantiations then
4094 Error_Msg_Uint_1 := UI_From_Int (Maximum_Instantiations);
4095 Error_Msg_N ("too many instantiations, exceeds max of^", N);
4096 Error_Msg_N ("\limit can be changed using -gnateinn switch", N);
4097 raise Unrecoverable_Error;
4098 end if;
4099
4100 -- Indicate that the enclosing scopes contain an instantiation,
4101 -- and that cleanup actions should be delayed until after the
4102 -- instance body is expanded.
4103
4104 Check_Forward_Instantiation (Gen_Decl);
4105 if Nkind (N) = N_Package_Instantiation then
4106 declare
4107 Enclosing_Master : Entity_Id;
4108
4109 begin
4110 -- Loop to search enclosing masters
4111
4112 Enclosing_Master := Current_Scope;
4113 Scope_Loop : while Enclosing_Master /= Standard_Standard loop
4114 if Ekind (Enclosing_Master) = E_Package then
4115 if Is_Compilation_Unit (Enclosing_Master) then
4116 if In_Package_Body (Enclosing_Master) then
4117 Delay_Descriptors
4118 (Body_Entity (Enclosing_Master));
4119 else
4120 Delay_Descriptors
4121 (Enclosing_Master);
4122 end if;
4123
4124 exit Scope_Loop;
4125
4126 else
4127 Enclosing_Master := Scope (Enclosing_Master);
4128 end if;
4129
4130 elsif Is_Generic_Unit (Enclosing_Master)
4131 or else Ekind (Enclosing_Master) = E_Void
4132 then
4133 -- Cleanup actions will eventually be performed on the
4134 -- enclosing subprogram or package instance, if any.
4135 -- Enclosing scope is void in the formal part of a
4136 -- generic subprogram.
4137
4138 exit Scope_Loop;
4139
4140 else
4141 if Ekind (Enclosing_Master) = E_Entry
4142 and then
4143 Ekind (Scope (Enclosing_Master)) = E_Protected_Type
4144 then
4145 if not Expander_Active then
4146 exit Scope_Loop;
4147 else
4148 Enclosing_Master :=
4149 Protected_Body_Subprogram (Enclosing_Master);
4150 end if;
4151 end if;
4152
4153 Set_Delay_Cleanups (Enclosing_Master);
4154
4155 while Ekind (Enclosing_Master) = E_Block loop
4156 Enclosing_Master := Scope (Enclosing_Master);
4157 end loop;
4158
4159 if Is_Subprogram (Enclosing_Master) then
4160 Delay_Descriptors (Enclosing_Master);
4161
4162 elsif Is_Task_Type (Enclosing_Master) then
4163 declare
4164 TBP : constant Node_Id :=
4165 Get_Task_Body_Procedure
4166 (Enclosing_Master);
4167 begin
4168 if Present (TBP) then
4169 Delay_Descriptors (TBP);
4170 Set_Delay_Cleanups (TBP);
4171 end if;
4172 end;
4173 end if;
4174
4175 exit Scope_Loop;
4176 end if;
4177 end loop Scope_Loop;
4178 end;
4179
4180 -- Make entry in table
4181
4182 Add_Pending_Instantiation (N, Act_Decl);
4183 end if;
4184 end if;
4185
4186 Set_Categorization_From_Pragmas (Act_Decl);
4187
4188 if Parent_Installed then
4189 Hide_Current_Scope;
4190 end if;
4191
4192 Set_Instance_Spec (N, Act_Decl);
4193
4194 -- If not a compilation unit, insert the package declaration before
4195 -- the original instantiation node.
4196
4197 if Nkind (Parent (N)) /= N_Compilation_Unit then
4198 Mark_Rewrite_Insertion (Act_Decl);
4199 Insert_Before (N, Act_Decl);
4200
4201 if Has_Aspects (N) then
4202 Analyze_Aspect_Specifications (N, Act_Decl_Id);
4203
4204 -- The pragma created for a Default_Storage_Pool aspect must
4205 -- appear ahead of the declarations in the instance spec.
4206 -- Analysis has placed it after the instance node, so remove
4207 -- it and reinsert it properly now.
4208
4209 declare
4210 ASN : constant Node_Id := First (Aspect_Specifications (N));
4211 A_Name : constant Name_Id := Chars (Identifier (ASN));
4212 Decl : Node_Id;
4213
4214 begin
4215 if A_Name = Name_Default_Storage_Pool then
4216 if No (Visible_Declarations (Act_Spec)) then
4217 Set_Visible_Declarations (Act_Spec, New_List);
4218 end if;
4219
4220 Decl := Next (N);
4221 while Present (Decl) loop
4222 if Nkind (Decl) = N_Pragma then
4223 Remove (Decl);
4224 Prepend (Decl, Visible_Declarations (Act_Spec));
4225 exit;
4226 end if;
4227
4228 Next (Decl);
4229 end loop;
4230 end if;
4231 end;
4232 end if;
4233
4234 Analyze (Act_Decl);
4235
4236 -- For an instantiation that is a compilation unit, place
4237 -- declaration on current node so context is complete for analysis
4238 -- (including nested instantiations). If this is the main unit,
4239 -- the declaration eventually replaces the instantiation node.
4240 -- If the instance body is created later, it replaces the
4241 -- instance node, and the declaration is attached to it
4242 -- (see Build_Instance_Compilation_Unit_Nodes).
4243
4244 else
4245 if Cunit_Entity (Current_Sem_Unit) = Defining_Entity (N) then
4246
4247 -- The entity for the current unit is the newly created one,
4248 -- and all semantic information is attached to it.
4249
4250 Set_Cunit_Entity (Current_Sem_Unit, Act_Decl_Id);
4251
4252 -- If this is the main unit, replace the main entity as well
4253
4254 if Current_Sem_Unit = Main_Unit then
4255 Main_Unit_Entity := Act_Decl_Id;
4256 end if;
4257 end if;
4258
4259 Set_Unit (Parent (N), Act_Decl);
4260 Set_Parent_Spec (Act_Decl, Parent_Spec (N));
4261 Set_Package_Instantiation (Act_Decl_Id, N);
4262
4263 -- Process aspect specifications of the instance node, if any, to
4264 -- take into account categorization pragmas before analyzing the
4265 -- instance.
4266
4267 if Has_Aspects (N) then
4268 Analyze_Aspect_Specifications (N, Act_Decl_Id);
4269 end if;
4270
4271 Analyze (Act_Decl);
4272 Set_Unit (Parent (N), N);
4273 Set_Body_Required (Parent (N), False);
4274
4275 -- We never need elaboration checks on instantiations, since by
4276 -- definition, the body instantiation is elaborated at the same
4277 -- time as the spec instantiation.
4278
4279 Set_Suppress_Elaboration_Warnings (Act_Decl_Id);
4280 Set_Kill_Elaboration_Checks (Act_Decl_Id);
4281 end if;
4282
4283 Check_Elab_Instantiation (N);
4284
4285 if ABE_Is_Certain (N) and then Needs_Body then
4286 Pending_Instantiations.Decrement_Last;
4287 end if;
4288
4289 Check_Hidden_Child_Unit (N, Gen_Unit, Act_Decl_Id);
4290
4291 Set_First_Private_Entity (Defining_Unit_Name (Unit_Renaming),
4292 First_Private_Entity (Act_Decl_Id));
4293
4294 -- If the instantiation will receive a body, the unit will be
4295 -- transformed into a package body, and receive its own elaboration
4296 -- entity. Otherwise, the nature of the unit is now a package
4297 -- declaration.
4298
4299 if Nkind (Parent (N)) = N_Compilation_Unit
4300 and then not Needs_Body
4301 then
4302 Rewrite (N, Act_Decl);
4303 end if;
4304
4305 if Present (Corresponding_Body (Gen_Decl))
4306 or else Unit_Requires_Body (Gen_Unit)
4307 then
4308 Set_Has_Completion (Act_Decl_Id);
4309 end if;
4310
4311 Check_Formal_Packages (Act_Decl_Id);
4312
4313 Restore_Hidden_Primitives (Vis_Prims_List);
4314 Restore_Private_Views (Act_Decl_Id);
4315
4316 Inherit_Context (Gen_Decl, N);
4317
4318 if Parent_Installed then
4319 Remove_Parent;
4320 end if;
4321
4322 Restore_Env;
4323 Env_Installed := False;
4324 end if;
4325
4326 Validate_Categorization_Dependency (N, Act_Decl_Id);
4327
4328 -- There used to be a check here to prevent instantiations in local
4329 -- contexts if the No_Local_Allocators restriction was active. This
4330 -- check was removed by a binding interpretation in AI-95-00130/07,
4331 -- but we retain the code for documentation purposes.
4332
4333 -- if Ekind (Act_Decl_Id) /= E_Void
4334 -- and then not Is_Library_Level_Entity (Act_Decl_Id)
4335 -- then
4336 -- Check_Restriction (No_Local_Allocators, N);
4337 -- end if;
4338
4339 if Inline_Now then
4340 Inline_Instance_Body (N, Gen_Unit, Act_Decl);
4341 end if;
4342
4343 -- The following is a tree patch for ASIS: ASIS needs separate nodes to
4344 -- be used as defining identifiers for a formal package and for the
4345 -- corresponding expanded package.
4346
4347 if Nkind (N) = N_Formal_Package_Declaration then
4348 Act_Decl_Id := New_Copy (Defining_Entity (N));
4349 Set_Comes_From_Source (Act_Decl_Id, True);
4350 Set_Is_Generic_Instance (Act_Decl_Id, False);
4351 Set_Defining_Identifier (N, Act_Decl_Id);
4352 end if;
4353
4354 Ignore_Pragma_SPARK_Mode := Save_IPSM;
4355 SPARK_Mode := Save_SM;
4356 SPARK_Mode_Pragma := Save_SMP;
4357 Style_Check := Save_Style_Check;
4358
4359 -- Check that if N is an instantiation of System.Dim_Float_IO or
4360 -- System.Dim_Integer_IO, the formal type has a dimension system.
4361
4362 if Nkind (N) = N_Package_Instantiation
4363 and then Is_Dim_IO_Package_Instantiation (N)
4364 then
4365 declare
4366 Assoc : constant Node_Id := First (Generic_Associations (N));
4367 begin
4368 if not Has_Dimension_System
4369 (Etype (Explicit_Generic_Actual_Parameter (Assoc)))
4370 then
4371 Error_Msg_N ("type with a dimension system expected", Assoc);
4372 end if;
4373 end;
4374 end if;
4375
4376 <<Leave>>
4377 if Has_Aspects (N) and then Nkind (Parent (N)) /= N_Compilation_Unit then
4378 Analyze_Aspect_Specifications (N, Act_Decl_Id);
4379 end if;
4380
4381 exception
4382 when Instantiation_Error =>
4383 if Parent_Installed then
4384 Remove_Parent;
4385 end if;
4386
4387 if Env_Installed then
4388 Restore_Env;
4389 end if;
4390
4391 Ignore_Pragma_SPARK_Mode := Save_IPSM;
4392 SPARK_Mode := Save_SM;
4393 SPARK_Mode_Pragma := Save_SMP;
4394 Style_Check := Save_Style_Check;
4395 end Analyze_Package_Instantiation;
4396
4397 --------------------------
4398 -- Inline_Instance_Body --
4399 --------------------------
4400
4401 procedure Inline_Instance_Body
4402 (N : Node_Id;
4403 Gen_Unit : Entity_Id;
4404 Act_Decl : Node_Id)
4405 is
4406 Curr_Comp : constant Node_Id := Cunit (Current_Sem_Unit);
4407 Curr_Unit : constant Entity_Id := Cunit_Entity (Current_Sem_Unit);
4408 Gen_Comp : constant Entity_Id :=
4409 Cunit_Entity (Get_Source_Unit (Gen_Unit));
4410
4411 Save_SM : constant SPARK_Mode_Type := SPARK_Mode;
4412 Save_SMP : constant Node_Id := SPARK_Mode_Pragma;
4413 -- Save all SPARK_Mode-related attributes as removing enclosing scopes
4414 -- to provide a clean environment for analysis of the inlined body will
4415 -- eliminate any previously set SPARK_Mode.
4416
4417 Scope_Stack_Depth : constant Pos :=
4418 Scope_Stack.Last - Scope_Stack.First + 1;
4419
4420 Use_Clauses : array (1 .. Scope_Stack_Depth) of Node_Id;
4421 Instances : array (1 .. Scope_Stack_Depth) of Entity_Id;
4422 Inner_Scopes : array (1 .. Scope_Stack_Depth) of Entity_Id;
4423 Curr_Scope : Entity_Id := Empty;
4424 List : Elist_Id;
4425 Num_Inner : Nat := 0;
4426 Num_Scopes : Nat := 0;
4427 N_Instances : Nat := 0;
4428 Removed : Boolean := False;
4429 S : Entity_Id;
4430 Vis : Boolean;
4431
4432 begin
4433 -- Case of generic unit defined in another unit. We must remove the
4434 -- complete context of the current unit to install that of the generic.
4435
4436 if Gen_Comp /= Cunit_Entity (Current_Sem_Unit) then
4437
4438 -- Add some comments for the following two loops ???
4439
4440 S := Current_Scope;
4441 while Present (S) and then S /= Standard_Standard loop
4442 loop
4443 Num_Scopes := Num_Scopes + 1;
4444
4445 Use_Clauses (Num_Scopes) :=
4446 (Scope_Stack.Table
4447 (Scope_Stack.Last - Num_Scopes + 1).
4448 First_Use_Clause);
4449 End_Use_Clauses (Use_Clauses (Num_Scopes));
4450
4451 exit when Scope_Stack.Last - Num_Scopes + 1 = Scope_Stack.First
4452 or else Scope_Stack.Table
4453 (Scope_Stack.Last - Num_Scopes).Entity = Scope (S);
4454 end loop;
4455
4456 exit when Is_Generic_Instance (S)
4457 and then (In_Package_Body (S)
4458 or else Ekind (S) = E_Procedure
4459 or else Ekind (S) = E_Function);
4460 S := Scope (S);
4461 end loop;
4462
4463 Vis := Is_Immediately_Visible (Gen_Comp);
4464
4465 -- Find and save all enclosing instances
4466
4467 S := Current_Scope;
4468
4469 while Present (S)
4470 and then S /= Standard_Standard
4471 loop
4472 if Is_Generic_Instance (S) then
4473 N_Instances := N_Instances + 1;
4474 Instances (N_Instances) := S;
4475
4476 exit when In_Package_Body (S);
4477 end if;
4478
4479 S := Scope (S);
4480 end loop;
4481
4482 -- Remove context of current compilation unit, unless we are within a
4483 -- nested package instantiation, in which case the context has been
4484 -- removed previously.
4485
4486 -- If current scope is the body of a child unit, remove context of
4487 -- spec as well. If an enclosing scope is an instance body, the
4488 -- context has already been removed, but the entities in the body
4489 -- must be made invisible as well.
4490
4491 S := Current_Scope;
4492 while Present (S) and then S /= Standard_Standard loop
4493 if Is_Generic_Instance (S)
4494 and then (In_Package_Body (S)
4495 or else Ekind_In (S, E_Procedure, E_Function))
4496 then
4497 -- We still have to remove the entities of the enclosing
4498 -- instance from direct visibility.
4499
4500 declare
4501 E : Entity_Id;
4502 begin
4503 E := First_Entity (S);
4504 while Present (E) loop
4505 Set_Is_Immediately_Visible (E, False);
4506 Next_Entity (E);
4507 end loop;
4508 end;
4509
4510 exit;
4511 end if;
4512
4513 if S = Curr_Unit
4514 or else (Ekind (Curr_Unit) = E_Package_Body
4515 and then S = Spec_Entity (Curr_Unit))
4516 or else (Ekind (Curr_Unit) = E_Subprogram_Body
4517 and then S = Corresponding_Spec
4518 (Unit_Declaration_Node (Curr_Unit)))
4519 then
4520 Removed := True;
4521
4522 -- Remove entities in current scopes from visibility, so that
4523 -- instance body is compiled in a clean environment.
4524
4525 List := Save_Scope_Stack (Handle_Use => False);
4526
4527 if Is_Child_Unit (S) then
4528
4529 -- Remove child unit from stack, as well as inner scopes.
4530 -- Removing the context of a child unit removes parent units
4531 -- as well.
4532
4533 while Current_Scope /= S loop
4534 Num_Inner := Num_Inner + 1;
4535 Inner_Scopes (Num_Inner) := Current_Scope;
4536 Pop_Scope;
4537 end loop;
4538
4539 Pop_Scope;
4540 Remove_Context (Curr_Comp);
4541 Curr_Scope := S;
4542
4543 else
4544 Remove_Context (Curr_Comp);
4545 end if;
4546
4547 if Ekind (Curr_Unit) = E_Package_Body then
4548 Remove_Context (Library_Unit (Curr_Comp));
4549 end if;
4550 end if;
4551
4552 S := Scope (S);
4553 end loop;
4554
4555 pragma Assert (Num_Inner < Num_Scopes);
4556
4557 -- The inlined package body must be analyzed with the SPARK_Mode of
4558 -- the enclosing context, otherwise the body may cause bogus errors
4559 -- if a configuration SPARK_Mode pragma in in effect.
4560
4561 Push_Scope (Standard_Standard);
4562 Scope_Stack.Table (Scope_Stack.Last).Is_Active_Stack_Base := True;
4563 Instantiate_Package_Body
4564 (Body_Info =>
4565 ((Inst_Node => N,
4566 Act_Decl => Act_Decl,
4567 Expander_Status => Expander_Active,
4568 Current_Sem_Unit => Current_Sem_Unit,
4569 Scope_Suppress => Scope_Suppress,
4570 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
4571 Version => Ada_Version,
4572 Version_Pragma => Ada_Version_Pragma,
4573 Warnings => Save_Warnings,
4574 SPARK_Mode => Save_SM,
4575 SPARK_Mode_Pragma => Save_SMP)),
4576 Inlined_Body => True);
4577
4578 Pop_Scope;
4579
4580 -- Restore context
4581
4582 Set_Is_Immediately_Visible (Gen_Comp, Vis);
4583
4584 -- Reset Generic_Instance flag so that use clauses can be installed
4585 -- in the proper order. (See Use_One_Package for effect of enclosing
4586 -- instances on processing of use clauses).
4587
4588 for J in 1 .. N_Instances loop
4589 Set_Is_Generic_Instance (Instances (J), False);
4590 end loop;
4591
4592 if Removed then
4593 Install_Context (Curr_Comp);
4594
4595 if Present (Curr_Scope)
4596 and then Is_Child_Unit (Curr_Scope)
4597 then
4598 Push_Scope (Curr_Scope);
4599 Set_Is_Immediately_Visible (Curr_Scope);
4600
4601 -- Finally, restore inner scopes as well
4602
4603 for J in reverse 1 .. Num_Inner loop
4604 Push_Scope (Inner_Scopes (J));
4605 end loop;
4606 end if;
4607
4608 Restore_Scope_Stack (List, Handle_Use => False);
4609
4610 if Present (Curr_Scope)
4611 and then
4612 (In_Private_Part (Curr_Scope)
4613 or else In_Package_Body (Curr_Scope))
4614 then
4615 -- Install private declaration of ancestor units, which are
4616 -- currently available. Restore_Scope_Stack and Install_Context
4617 -- only install the visible part of parents.
4618
4619 declare
4620 Par : Entity_Id;
4621 begin
4622 Par := Scope (Curr_Scope);
4623 while (Present (Par)) and then Par /= Standard_Standard loop
4624 Install_Private_Declarations (Par);
4625 Par := Scope (Par);
4626 end loop;
4627 end;
4628 end if;
4629 end if;
4630
4631 -- Restore use clauses. For a child unit, use clauses in the parents
4632 -- are restored when installing the context, so only those in inner
4633 -- scopes (and those local to the child unit itself) need to be
4634 -- installed explicitly.
4635
4636 if Is_Child_Unit (Curr_Unit) and then Removed then
4637 for J in reverse 1 .. Num_Inner + 1 loop
4638 Scope_Stack.Table (Scope_Stack.Last - J + 1).First_Use_Clause :=
4639 Use_Clauses (J);
4640 Install_Use_Clauses (Use_Clauses (J));
4641 end loop;
4642
4643 else
4644 for J in reverse 1 .. Num_Scopes loop
4645 Scope_Stack.Table (Scope_Stack.Last - J + 1).First_Use_Clause :=
4646 Use_Clauses (J);
4647 Install_Use_Clauses (Use_Clauses (J));
4648 end loop;
4649 end if;
4650
4651 -- Restore status of instances. If one of them is a body, make its
4652 -- local entities visible again.
4653
4654 declare
4655 E : Entity_Id;
4656 Inst : Entity_Id;
4657
4658 begin
4659 for J in 1 .. N_Instances loop
4660 Inst := Instances (J);
4661 Set_Is_Generic_Instance (Inst, True);
4662
4663 if In_Package_Body (Inst)
4664 or else Ekind_In (S, E_Procedure, E_Function)
4665 then
4666 E := First_Entity (Instances (J));
4667 while Present (E) loop
4668 Set_Is_Immediately_Visible (E);
4669 Next_Entity (E);
4670 end loop;
4671 end if;
4672 end loop;
4673 end;
4674
4675 -- If generic unit is in current unit, current context is correct. Note
4676 -- that the context is guaranteed to carry the correct SPARK_Mode as no
4677 -- enclosing scopes were removed.
4678
4679 else
4680 Instantiate_Package_Body
4681 (Body_Info =>
4682 ((Inst_Node => N,
4683 Act_Decl => Act_Decl,
4684 Expander_Status => Expander_Active,
4685 Current_Sem_Unit => Current_Sem_Unit,
4686 Scope_Suppress => Scope_Suppress,
4687 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
4688 Version => Ada_Version,
4689 Version_Pragma => Ada_Version_Pragma,
4690 Warnings => Save_Warnings,
4691 SPARK_Mode => SPARK_Mode,
4692 SPARK_Mode_Pragma => SPARK_Mode_Pragma)),
4693 Inlined_Body => True);
4694 end if;
4695 end Inline_Instance_Body;
4696
4697 -------------------------------------
4698 -- Analyze_Procedure_Instantiation --
4699 -------------------------------------
4700
4701 procedure Analyze_Procedure_Instantiation (N : Node_Id) is
4702 begin
4703 Analyze_Subprogram_Instantiation (N, E_Procedure);
4704 end Analyze_Procedure_Instantiation;
4705
4706 -----------------------------------
4707 -- Need_Subprogram_Instance_Body --
4708 -----------------------------------
4709
4710 function Need_Subprogram_Instance_Body
4711 (N : Node_Id;
4712 Subp : Entity_Id) return Boolean
4713 is
4714
4715 function Is_Inlined_Or_Child_Of_Inlined (E : Entity_Id) return Boolean;
4716 -- Return True if E is an inlined subprogram, an inlined renaming or a
4717 -- subprogram nested in an inlined subprogram. The inlining machinery
4718 -- totally disregards nested subprograms since it considers that they
4719 -- will always be compiled if the parent is (see Inline.Is_Nested).
4720
4721 ------------------------------------
4722 -- Is_Inlined_Or_Child_Of_Inlined --
4723 ------------------------------------
4724
4725 function Is_Inlined_Or_Child_Of_Inlined (E : Entity_Id) return Boolean is
4726 Scop : Entity_Id;
4727
4728 begin
4729 if Is_Inlined (E) or else Is_Inlined (Alias (E)) then
4730 return True;
4731 end if;
4732
4733 Scop := Scope (E);
4734 while Scop /= Standard_Standard loop
4735 if Ekind (Scop) in Subprogram_Kind and then Is_Inlined (Scop) then
4736 return True;
4737 end if;
4738
4739 Scop := Scope (Scop);
4740 end loop;
4741
4742 return False;
4743 end Is_Inlined_Or_Child_Of_Inlined;
4744
4745 begin
4746 -- Must be in the main unit or inlined (or child of inlined)
4747
4748 if (Is_In_Main_Unit (N) or else Is_Inlined_Or_Child_Of_Inlined (Subp))
4749
4750 -- Must be generating code or analyzing code in ASIS/GNATprove mode
4751
4752 and then (Operating_Mode = Generate_Code
4753 or else (Operating_Mode = Check_Semantics
4754 and then (ASIS_Mode or GNATprove_Mode)))
4755
4756 -- The body is needed when generating code (full expansion), in ASIS
4757 -- mode for other tools, and in GNATprove mode (special expansion) for
4758 -- formal verification of the body itself.
4759
4760 and then (Expander_Active or ASIS_Mode or GNATprove_Mode)
4761
4762 -- No point in inlining if ABE is inevitable
4763
4764 and then not ABE_Is_Certain (N)
4765
4766 -- Or if subprogram is eliminated
4767
4768 and then not Is_Eliminated (Subp)
4769 then
4770 Add_Pending_Instantiation (N, Unit_Declaration_Node (Subp));
4771 return True;
4772
4773 -- Here if not inlined, or we ignore the inlining
4774
4775 else
4776 return False;
4777 end if;
4778 end Need_Subprogram_Instance_Body;
4779
4780 --------------------------------------
4781 -- Analyze_Subprogram_Instantiation --
4782 --------------------------------------
4783
4784 procedure Analyze_Subprogram_Instantiation
4785 (N : Node_Id;
4786 K : Entity_Kind)
4787 is
4788 Loc : constant Source_Ptr := Sloc (N);
4789 Gen_Id : constant Node_Id := Name (N);
4790
4791 Anon_Id : constant Entity_Id :=
4792 Make_Defining_Identifier (Sloc (Defining_Entity (N)),
4793 Chars => New_External_Name
4794 (Chars (Defining_Entity (N)), 'R'));
4795
4796 Act_Decl_Id : Entity_Id;
4797 Act_Decl : Node_Id;
4798 Act_Spec : Node_Id;
4799 Act_Tree : Node_Id;
4800
4801 Env_Installed : Boolean := False;
4802 Gen_Unit : Entity_Id;
4803 Gen_Decl : Node_Id;
4804 Pack_Id : Entity_Id;
4805 Parent_Installed : Boolean := False;
4806
4807 Renaming_List : List_Id;
4808 -- The list of declarations that link formals and actuals of the
4809 -- instance. These are subtype declarations for formal types, and
4810 -- renaming declarations for other formals. The subprogram declaration
4811 -- for the instance is then appended to the list, and the last item on
4812 -- the list is the renaming declaration for the instance.
4813
4814 procedure Analyze_Instance_And_Renamings;
4815 -- The instance must be analyzed in a context that includes the mappings
4816 -- of generic parameters into actuals. We create a package declaration
4817 -- for this purpose, and a subprogram with an internal name within the
4818 -- package. The subprogram instance is simply an alias for the internal
4819 -- subprogram, declared in the current scope.
4820
4821 procedure Build_Subprogram_Renaming;
4822 -- If the subprogram is recursive, there are occurrences of the name of
4823 -- the generic within the body, which must resolve to the current
4824 -- instance. We add a renaming declaration after the declaration, which
4825 -- is available in the instance body, as well as in the analysis of
4826 -- aspects that appear in the generic. This renaming declaration is
4827 -- inserted after the instance declaration which it renames.
4828
4829 ------------------------------------
4830 -- Analyze_Instance_And_Renamings --
4831 ------------------------------------
4832
4833 procedure Analyze_Instance_And_Renamings is
4834 Def_Ent : constant Entity_Id := Defining_Entity (N);
4835 Pack_Decl : Node_Id;
4836
4837 begin
4838 if Nkind (Parent (N)) = N_Compilation_Unit then
4839
4840 -- For the case of a compilation unit, the container package has
4841 -- the same name as the instantiation, to insure that the binder
4842 -- calls the elaboration procedure with the right name. Copy the
4843 -- entity of the instance, which may have compilation level flags
4844 -- (e.g. Is_Child_Unit) set.
4845
4846 Pack_Id := New_Copy (Def_Ent);
4847
4848 else
4849 -- Otherwise we use the name of the instantiation concatenated
4850 -- with its source position to ensure uniqueness if there are
4851 -- several instantiations with the same name.
4852
4853 Pack_Id :=
4854 Make_Defining_Identifier (Loc,
4855 Chars => New_External_Name
4856 (Related_Id => Chars (Def_Ent),
4857 Suffix => "GP",
4858 Suffix_Index => Source_Offset (Sloc (Def_Ent))));
4859 end if;
4860
4861 Pack_Decl :=
4862 Make_Package_Declaration (Loc,
4863 Specification => Make_Package_Specification (Loc,
4864 Defining_Unit_Name => Pack_Id,
4865 Visible_Declarations => Renaming_List,
4866 End_Label => Empty));
4867
4868 Set_Instance_Spec (N, Pack_Decl);
4869 Set_Is_Generic_Instance (Pack_Id);
4870 Set_Debug_Info_Needed (Pack_Id);
4871
4872 -- Case of not a compilation unit
4873
4874 if Nkind (Parent (N)) /= N_Compilation_Unit then
4875 Mark_Rewrite_Insertion (Pack_Decl);
4876 Insert_Before (N, Pack_Decl);
4877 Set_Has_Completion (Pack_Id);
4878
4879 -- Case of an instantiation that is a compilation unit
4880
4881 -- Place declaration on current node so context is complete for
4882 -- analysis (including nested instantiations), and for use in a
4883 -- context_clause (see Analyze_With_Clause).
4884
4885 else
4886 Set_Unit (Parent (N), Pack_Decl);
4887 Set_Parent_Spec (Pack_Decl, Parent_Spec (N));
4888 end if;
4889
4890 Analyze (Pack_Decl);
4891 Check_Formal_Packages (Pack_Id);
4892 Set_Is_Generic_Instance (Pack_Id, False);
4893
4894 -- Why do we clear Is_Generic_Instance??? We set it 20 lines
4895 -- above???
4896
4897 -- Body of the enclosing package is supplied when instantiating the
4898 -- subprogram body, after semantic analysis is completed.
4899
4900 if Nkind (Parent (N)) = N_Compilation_Unit then
4901
4902 -- Remove package itself from visibility, so it does not
4903 -- conflict with subprogram.
4904
4905 Set_Name_Entity_Id (Chars (Pack_Id), Homonym (Pack_Id));
4906
4907 -- Set name and scope of internal subprogram so that the proper
4908 -- external name will be generated. The proper scope is the scope
4909 -- of the wrapper package. We need to generate debugging info for
4910 -- the internal subprogram, so set flag accordingly.
4911
4912 Set_Chars (Anon_Id, Chars (Defining_Entity (N)));
4913 Set_Scope (Anon_Id, Scope (Pack_Id));
4914
4915 -- Mark wrapper package as referenced, to avoid spurious warnings
4916 -- if the instantiation appears in various with_ clauses of
4917 -- subunits of the main unit.
4918
4919 Set_Referenced (Pack_Id);
4920 end if;
4921
4922 Set_Is_Generic_Instance (Anon_Id);
4923 Set_Debug_Info_Needed (Anon_Id);
4924 Act_Decl_Id := New_Copy (Anon_Id);
4925
4926 Set_Parent (Act_Decl_Id, Parent (Anon_Id));
4927 Set_Chars (Act_Decl_Id, Chars (Defining_Entity (N)));
4928 Set_Sloc (Act_Decl_Id, Sloc (Defining_Entity (N)));
4929
4930 -- Subprogram instance comes from source only if generic does
4931
4932 Set_Comes_From_Source (Act_Decl_Id, Comes_From_Source (Gen_Unit));
4933
4934 -- If the instance is a child unit, mark the Id accordingly. Mark
4935 -- the anonymous entity as well, which is the real subprogram and
4936 -- which is used when the instance appears in a context clause.
4937 -- Similarly, propagate the Is_Eliminated flag to handle properly
4938 -- nested eliminated subprograms.
4939
4940 Set_Is_Child_Unit (Act_Decl_Id, Is_Child_Unit (Defining_Entity (N)));
4941 Set_Is_Child_Unit (Anon_Id, Is_Child_Unit (Defining_Entity (N)));
4942 New_Overloaded_Entity (Act_Decl_Id);
4943 Check_Eliminated (Act_Decl_Id);
4944 Set_Is_Eliminated (Anon_Id, Is_Eliminated (Act_Decl_Id));
4945
4946 -- In compilation unit case, kill elaboration checks on the
4947 -- instantiation, since they are never needed -- the body is
4948 -- instantiated at the same point as the spec.
4949
4950 if Nkind (Parent (N)) = N_Compilation_Unit then
4951 Set_Suppress_Elaboration_Warnings (Act_Decl_Id);
4952 Set_Kill_Elaboration_Checks (Act_Decl_Id);
4953 Set_Is_Compilation_Unit (Anon_Id);
4954
4955 Set_Cunit_Entity (Current_Sem_Unit, Pack_Id);
4956 end if;
4957
4958 -- The instance is not a freezing point for the new subprogram.
4959 -- The anonymous subprogram may have a freeze node, created for
4960 -- some delayed aspects. This freeze node must not be inherited
4961 -- by the visible subprogram entity.
4962
4963 Set_Is_Frozen (Act_Decl_Id, False);
4964 Set_Freeze_Node (Act_Decl_Id, Empty);
4965
4966 if Nkind (Defining_Entity (N)) = N_Defining_Operator_Symbol then
4967 Valid_Operator_Definition (Act_Decl_Id);
4968 end if;
4969
4970 Set_Alias (Act_Decl_Id, Anon_Id);
4971 Set_Parent (Act_Decl_Id, Parent (Anon_Id));
4972 Set_Has_Completion (Act_Decl_Id);
4973 Set_Related_Instance (Pack_Id, Act_Decl_Id);
4974
4975 if Nkind (Parent (N)) = N_Compilation_Unit then
4976 Set_Body_Required (Parent (N), False);
4977 end if;
4978 end Analyze_Instance_And_Renamings;
4979
4980 -------------------------------
4981 -- Build_Subprogram_Renaming --
4982 -------------------------------
4983
4984 procedure Build_Subprogram_Renaming is
4985 Renaming_Decl : Node_Id;
4986 Unit_Renaming : Node_Id;
4987
4988 begin
4989 Unit_Renaming :=
4990 Make_Subprogram_Renaming_Declaration (Loc,
4991 Specification =>
4992 Copy_Generic_Node
4993 (Specification (Original_Node (Gen_Decl)),
4994 Empty,
4995 Instantiating => True),
4996 Name => New_Occurrence_Of (Anon_Id, Loc));
4997
4998 -- The generic may be a a child unit. The renaming needs an
4999 -- identifier with the proper name.
5000
5001 Set_Defining_Unit_Name (Specification (Unit_Renaming),
5002 Make_Defining_Identifier (Loc, Chars (Gen_Unit)));
5003
5004 -- If there is a formal subprogram with the same name as the unit
5005 -- itself, do not add this renaming declaration, to prevent
5006 -- ambiguities when there is a call with that name in the body.
5007 -- This is a partial and ugly fix for one ACATS test. ???
5008
5009 Renaming_Decl := First (Renaming_List);
5010 while Present (Renaming_Decl) loop
5011 if Nkind (Renaming_Decl) = N_Subprogram_Renaming_Declaration
5012 and then
5013 Chars (Defining_Entity (Renaming_Decl)) = Chars (Gen_Unit)
5014 then
5015 exit;
5016 end if;
5017
5018 Next (Renaming_Decl);
5019 end loop;
5020
5021 if No (Renaming_Decl) then
5022 Append (Unit_Renaming, Renaming_List);
5023 end if;
5024 end Build_Subprogram_Renaming;
5025
5026 -- Local variables
5027
5028 Save_IPSM : constant Boolean := Ignore_Pragma_SPARK_Mode;
5029 -- Save flag Ignore_Pragma_SPARK_Mode for restore on exit
5030
5031 Save_SM : constant SPARK_Mode_Type := SPARK_Mode;
5032 Save_SMP : constant Node_Id := SPARK_Mode_Pragma;
5033 -- Save the SPARK_Mode-related data for restore on exit
5034
5035 Vis_Prims_List : Elist_Id := No_Elist;
5036 -- List of primitives made temporarily visible in the instantiation
5037 -- to match the visibility of the formal type
5038
5039 -- Start of processing for Analyze_Subprogram_Instantiation
5040
5041 begin
5042 Check_SPARK_05_Restriction ("generic is not allowed", N);
5043
5044 -- Very first thing: check for special Text_IO unit in case we are
5045 -- instantiating one of the children of [[Wide_]Wide_]Text_IO. Of course
5046 -- such an instantiation is bogus (these are packages, not subprograms),
5047 -- but we get a better error message if we do this.
5048
5049 Check_Text_IO_Special_Unit (Gen_Id);
5050
5051 -- Make node global for error reporting
5052
5053 Instantiation_Node := N;
5054
5055 -- For package instantiations we turn off style checks, because they
5056 -- will have been emitted in the generic. For subprogram instantiations
5057 -- we want to apply at least the check on overriding indicators so we
5058 -- do not modify the style check status.
5059
5060 -- The renaming declarations for the actuals do not come from source and
5061 -- will not generate spurious warnings.
5062
5063 Preanalyze_Actuals (N);
5064
5065 Init_Env;
5066 Env_Installed := True;
5067 Check_Generic_Child_Unit (Gen_Id, Parent_Installed);
5068 Gen_Unit := Entity (Gen_Id);
5069
5070 Generate_Reference (Gen_Unit, Gen_Id);
5071
5072 if Nkind (Gen_Id) = N_Identifier
5073 and then Chars (Gen_Unit) = Chars (Defining_Entity (N))
5074 then
5075 Error_Msg_NE
5076 ("& is hidden within declaration of instance", Gen_Id, Gen_Unit);
5077 end if;
5078
5079 if Etype (Gen_Unit) = Any_Type then
5080 Restore_Env;
5081 return;
5082 end if;
5083
5084 -- Verify that it is a generic subprogram of the right kind, and that
5085 -- it does not lead to a circular instantiation.
5086
5087 if K = E_Procedure and then Ekind (Gen_Unit) /= E_Generic_Procedure then
5088 Error_Msg_NE
5089 ("& is not the name of a generic procedure", Gen_Id, Gen_Unit);
5090
5091 elsif K = E_Function and then Ekind (Gen_Unit) /= E_Generic_Function then
5092 Error_Msg_NE
5093 ("& is not the name of a generic function", Gen_Id, Gen_Unit);
5094
5095 elsif In_Open_Scopes (Gen_Unit) then
5096 Error_Msg_NE ("instantiation of & within itself", N, Gen_Unit);
5097
5098 else
5099 -- If the context of the instance is subject to SPARK_Mode "off" or
5100 -- the annotation is altogether missing, set the global flag which
5101 -- signals Analyze_Pragma to ignore all SPARK_Mode pragmas within
5102 -- the instance.
5103
5104 if SPARK_Mode /= On then
5105 Ignore_Pragma_SPARK_Mode := True;
5106 end if;
5107
5108 Set_Entity (Gen_Id, Gen_Unit);
5109 Set_Is_Instantiated (Gen_Unit);
5110
5111 if In_Extended_Main_Source_Unit (N) then
5112 Generate_Reference (Gen_Unit, N);
5113 end if;
5114
5115 -- If renaming, get original unit
5116
5117 if Present (Renamed_Object (Gen_Unit))
5118 and then Ekind_In (Renamed_Object (Gen_Unit), E_Generic_Procedure,
5119 E_Generic_Function)
5120 then
5121 Gen_Unit := Renamed_Object (Gen_Unit);
5122 Set_Is_Instantiated (Gen_Unit);
5123 Generate_Reference (Gen_Unit, N);
5124 end if;
5125
5126 if Contains_Instance_Of (Gen_Unit, Current_Scope, Gen_Id) then
5127 Error_Msg_Node_2 := Current_Scope;
5128 Error_Msg_NE
5129 ("circular Instantiation: & instantiated in &!", N, Gen_Unit);
5130 Circularity_Detected := True;
5131 Restore_Hidden_Primitives (Vis_Prims_List);
5132 goto Leave;
5133 end if;
5134
5135 Gen_Decl := Unit_Declaration_Node (Gen_Unit);
5136
5137 -- Initialize renamings map, for error checking
5138
5139 Generic_Renamings.Set_Last (0);
5140 Generic_Renamings_HTable.Reset;
5141
5142 Create_Instantiation_Source (N, Gen_Unit, S_Adjustment);
5143
5144 -- Copy original generic tree, to produce text for instantiation
5145
5146 Act_Tree :=
5147 Copy_Generic_Node
5148 (Original_Node (Gen_Decl), Empty, Instantiating => True);
5149
5150 -- Inherit overriding indicator from instance node
5151
5152 Act_Spec := Specification (Act_Tree);
5153 Set_Must_Override (Act_Spec, Must_Override (N));
5154 Set_Must_Not_Override (Act_Spec, Must_Not_Override (N));
5155
5156 Renaming_List :=
5157 Analyze_Associations
5158 (I_Node => N,
5159 Formals => Generic_Formal_Declarations (Act_Tree),
5160 F_Copy => Generic_Formal_Declarations (Gen_Decl));
5161
5162 Vis_Prims_List := Check_Hidden_Primitives (Renaming_List);
5163
5164 -- The subprogram itself cannot contain a nested instance, so the
5165 -- current parent is left empty.
5166
5167 Set_Instance_Env (Gen_Unit, Empty);
5168
5169 -- Build the subprogram declaration, which does not appear in the
5170 -- generic template, and give it a sloc consistent with that of the
5171 -- template.
5172
5173 Set_Defining_Unit_Name (Act_Spec, Anon_Id);
5174 Set_Generic_Parent (Act_Spec, Gen_Unit);
5175 Act_Decl :=
5176 Make_Subprogram_Declaration (Sloc (Act_Spec),
5177 Specification => Act_Spec);
5178
5179 -- The aspects have been copied previously, but they have to be
5180 -- linked explicitly to the new subprogram declaration. Explicit
5181 -- pre/postconditions on the instance are analyzed below, in a
5182 -- separate step.
5183
5184 Move_Aspects (Act_Tree, To => Act_Decl);
5185 Set_Categorization_From_Pragmas (Act_Decl);
5186
5187 if Parent_Installed then
5188 Hide_Current_Scope;
5189 end if;
5190
5191 Append (Act_Decl, Renaming_List);
5192
5193 -- Contract-related source pragmas that follow a generic subprogram
5194 -- must be instantiated explicitly because they are not part of the
5195 -- subprogram template.
5196
5197 Instantiate_Subprogram_Contract
5198 (Original_Node (Gen_Decl), Renaming_List);
5199
5200 Build_Subprogram_Renaming;
5201 Analyze_Instance_And_Renamings;
5202
5203 -- If the generic is marked Import (Intrinsic), then so is the
5204 -- instance. This indicates that there is no body to instantiate. If
5205 -- generic is marked inline, so it the instance, and the anonymous
5206 -- subprogram it renames. If inlined, or else if inlining is enabled
5207 -- for the compilation, we generate the instance body even if it is
5208 -- not within the main unit.
5209
5210 if Is_Intrinsic_Subprogram (Gen_Unit) then
5211 Set_Is_Intrinsic_Subprogram (Anon_Id);
5212 Set_Is_Intrinsic_Subprogram (Act_Decl_Id);
5213
5214 if Chars (Gen_Unit) = Name_Unchecked_Conversion then
5215 Validate_Unchecked_Conversion (N, Act_Decl_Id);
5216 end if;
5217 end if;
5218
5219 -- Inherit convention from generic unit. Intrinsic convention, as for
5220 -- an instance of unchecked conversion, is not inherited because an
5221 -- explicit Ada instance has been created.
5222
5223 if Has_Convention_Pragma (Gen_Unit)
5224 and then Convention (Gen_Unit) /= Convention_Intrinsic
5225 then
5226 Set_Convention (Act_Decl_Id, Convention (Gen_Unit));
5227 Set_Is_Exported (Act_Decl_Id, Is_Exported (Gen_Unit));
5228 end if;
5229
5230 Generate_Definition (Act_Decl_Id);
5231
5232 -- Inherit all inlining-related flags which apply to the generic in
5233 -- the subprogram and its declaration.
5234
5235 Set_Is_Inlined (Act_Decl_Id, Is_Inlined (Gen_Unit));
5236 Set_Is_Inlined (Anon_Id, Is_Inlined (Gen_Unit));
5237
5238 Set_Has_Pragma_Inline (Act_Decl_Id, Has_Pragma_Inline (Gen_Unit));
5239 Set_Has_Pragma_Inline (Anon_Id, Has_Pragma_Inline (Gen_Unit));
5240
5241 Set_Has_Pragma_Inline_Always
5242 (Act_Decl_Id, Has_Pragma_Inline_Always (Gen_Unit));
5243 Set_Has_Pragma_Inline_Always
5244 (Anon_Id, Has_Pragma_Inline_Always (Gen_Unit));
5245
5246 if not Is_Intrinsic_Subprogram (Gen_Unit) then
5247 Check_Elab_Instantiation (N);
5248 end if;
5249
5250 if Is_Dispatching_Operation (Act_Decl_Id)
5251 and then Ada_Version >= Ada_2005
5252 then
5253 declare
5254 Formal : Entity_Id;
5255
5256 begin
5257 Formal := First_Formal (Act_Decl_Id);
5258 while Present (Formal) loop
5259 if Ekind (Etype (Formal)) = E_Anonymous_Access_Type
5260 and then Is_Controlling_Formal (Formal)
5261 and then not Can_Never_Be_Null (Formal)
5262 then
5263 Error_Msg_NE
5264 ("access parameter& is controlling,", N, Formal);
5265 Error_Msg_NE
5266 ("\corresponding parameter of & must be "
5267 & "explicitly null-excluding", N, Gen_Id);
5268 end if;
5269
5270 Next_Formal (Formal);
5271 end loop;
5272 end;
5273 end if;
5274
5275 Check_Hidden_Child_Unit (N, Gen_Unit, Act_Decl_Id);
5276
5277 Validate_Categorization_Dependency (N, Act_Decl_Id);
5278
5279 if not Is_Intrinsic_Subprogram (Act_Decl_Id) then
5280 Inherit_Context (Gen_Decl, N);
5281
5282 Restore_Private_Views (Pack_Id, False);
5283
5284 -- If the context requires a full instantiation, mark node for
5285 -- subsequent construction of the body.
5286
5287 if Need_Subprogram_Instance_Body (N, Act_Decl_Id) then
5288 Check_Forward_Instantiation (Gen_Decl);
5289
5290 -- The wrapper package is always delayed, because it does not
5291 -- constitute a freeze point, but to insure that the freeze node
5292 -- is placed properly, it is created directly when instantiating
5293 -- the body (otherwise the freeze node might appear to early for
5294 -- nested instantiations). For ASIS purposes, indicate that the
5295 -- wrapper package has replaced the instantiation node.
5296
5297 elsif Nkind (Parent (N)) = N_Compilation_Unit then
5298 Rewrite (N, Unit (Parent (N)));
5299 Set_Unit (Parent (N), N);
5300 end if;
5301
5302 -- Replace instance node for library-level instantiations of
5303 -- intrinsic subprograms, for ASIS use.
5304
5305 elsif Nkind (Parent (N)) = N_Compilation_Unit then
5306 Rewrite (N, Unit (Parent (N)));
5307 Set_Unit (Parent (N), N);
5308 end if;
5309
5310 if Parent_Installed then
5311 Remove_Parent;
5312 end if;
5313
5314 Restore_Hidden_Primitives (Vis_Prims_List);
5315 Restore_Env;
5316 Env_Installed := False;
5317 Generic_Renamings.Set_Last (0);
5318 Generic_Renamings_HTable.Reset;
5319
5320 Ignore_Pragma_SPARK_Mode := Save_IPSM;
5321 SPARK_Mode := Save_SM;
5322 SPARK_Mode_Pragma := Save_SMP;
5323 end if;
5324
5325 <<Leave>>
5326 if Has_Aspects (N) then
5327 Analyze_Aspect_Specifications (N, Act_Decl_Id);
5328 end if;
5329
5330 exception
5331 when Instantiation_Error =>
5332 if Parent_Installed then
5333 Remove_Parent;
5334 end if;
5335
5336 if Env_Installed then
5337 Restore_Env;
5338 end if;
5339
5340 Ignore_Pragma_SPARK_Mode := Save_IPSM;
5341 SPARK_Mode := Save_SM;
5342 SPARK_Mode_Pragma := Save_SMP;
5343 end Analyze_Subprogram_Instantiation;
5344
5345 -------------------------
5346 -- Get_Associated_Node --
5347 -------------------------
5348
5349 function Get_Associated_Node (N : Node_Id) return Node_Id is
5350 Assoc : Node_Id;
5351
5352 begin
5353 Assoc := Associated_Node (N);
5354
5355 if Nkind (Assoc) /= Nkind (N) then
5356 return Assoc;
5357
5358 elsif Nkind_In (Assoc, N_Aggregate, N_Extension_Aggregate) then
5359 return Assoc;
5360
5361 else
5362 -- If the node is part of an inner generic, it may itself have been
5363 -- remapped into a further generic copy. Associated_Node is otherwise
5364 -- used for the entity of the node, and will be of a different node
5365 -- kind, or else N has been rewritten as a literal or function call.
5366
5367 while Present (Associated_Node (Assoc))
5368 and then Nkind (Associated_Node (Assoc)) = Nkind (Assoc)
5369 loop
5370 Assoc := Associated_Node (Assoc);
5371 end loop;
5372
5373 -- Follow and additional link in case the final node was rewritten.
5374 -- This can only happen with nested generic units.
5375
5376 if (Nkind (Assoc) = N_Identifier or else Nkind (Assoc) in N_Op)
5377 and then Present (Associated_Node (Assoc))
5378 and then (Nkind_In (Associated_Node (Assoc), N_Function_Call,
5379 N_Explicit_Dereference,
5380 N_Integer_Literal,
5381 N_Real_Literal,
5382 N_String_Literal))
5383 then
5384 Assoc := Associated_Node (Assoc);
5385 end if;
5386
5387 -- An additional special case: an unconstrained type in an object
5388 -- declaration may have been rewritten as a local subtype constrained
5389 -- by the expression in the declaration. We need to recover the
5390 -- original entity which may be global.
5391
5392 if Present (Original_Node (Assoc))
5393 and then Nkind (Parent (N)) = N_Object_Declaration
5394 then
5395 Assoc := Original_Node (Assoc);
5396 end if;
5397
5398 return Assoc;
5399 end if;
5400 end Get_Associated_Node;
5401
5402 ----------------------------
5403 -- Build_Function_Wrapper --
5404 ----------------------------
5405
5406 function Build_Function_Wrapper
5407 (Formal_Subp : Entity_Id;
5408 Actual_Subp : Entity_Id) return Node_Id
5409 is
5410 Loc : constant Source_Ptr := Sloc (Current_Scope);
5411 Ret_Type : constant Entity_Id := Get_Instance_Of (Etype (Formal_Subp));
5412 Actuals : List_Id;
5413 Decl : Node_Id;
5414 Func_Name : Node_Id;
5415 Func : Entity_Id;
5416 Parm_Type : Node_Id;
5417 Profile : List_Id := New_List;
5418 Spec : Node_Id;
5419 Act_F : Entity_Id;
5420 Form_F : Entity_Id;
5421 New_F : Entity_Id;
5422
5423 begin
5424 Func_Name := New_Occurrence_Of (Actual_Subp, Loc);
5425
5426 Func := Make_Defining_Identifier (Loc, Chars (Formal_Subp));
5427 Set_Ekind (Func, E_Function);
5428 Set_Is_Generic_Actual_Subprogram (Func);
5429
5430 Actuals := New_List;
5431 Profile := New_List;
5432
5433 Act_F := First_Formal (Actual_Subp);
5434 Form_F := First_Formal (Formal_Subp);
5435 while Present (Form_F) loop
5436
5437 -- Create new formal for profile of wrapper, and add a reference
5438 -- to it in the list of actuals for the enclosing call. The name
5439 -- must be that of the formal in the formal subprogram, because
5440 -- calls to it in the generic body may use named associations.
5441
5442 New_F := Make_Defining_Identifier (Loc, Chars (Form_F));
5443
5444 Parm_Type :=
5445 New_Occurrence_Of (Get_Instance_Of (Etype (Form_F)), Loc);
5446
5447 Append_To (Profile,
5448 Make_Parameter_Specification (Loc,
5449 Defining_Identifier => New_F,
5450 Parameter_Type => Parm_Type));
5451
5452 Append_To (Actuals, New_Occurrence_Of (New_F, Loc));
5453 Next_Formal (Form_F);
5454
5455 if Present (Act_F) then
5456 Next_Formal (Act_F);
5457 end if;
5458 end loop;
5459
5460 Spec :=
5461 Make_Function_Specification (Loc,
5462 Defining_Unit_Name => Func,
5463 Parameter_Specifications => Profile,
5464 Result_Definition => New_Occurrence_Of (Ret_Type, Loc));
5465
5466 Decl :=
5467 Make_Expression_Function (Loc,
5468 Specification => Spec,
5469 Expression =>
5470 Make_Function_Call (Loc,
5471 Name => Func_Name,
5472 Parameter_Associations => Actuals));
5473
5474 return Decl;
5475 end Build_Function_Wrapper;
5476
5477 ----------------------------
5478 -- Build_Operator_Wrapper --
5479 ----------------------------
5480
5481 function Build_Operator_Wrapper
5482 (Formal_Subp : Entity_Id;
5483 Actual_Subp : Entity_Id) return Node_Id
5484 is
5485 Loc : constant Source_Ptr := Sloc (Current_Scope);
5486 Ret_Type : constant Entity_Id :=
5487 Get_Instance_Of (Etype (Formal_Subp));
5488 Op_Type : constant Entity_Id :=
5489 Get_Instance_Of (Etype (First_Formal (Formal_Subp)));
5490 Is_Binary : constant Boolean :=
5491 Present (Next_Formal (First_Formal (Formal_Subp)));
5492
5493 Decl : Node_Id;
5494 Expr : Node_Id;
5495 F1, F2 : Entity_Id;
5496 Func : Entity_Id;
5497 Op_Name : Name_Id;
5498 Spec : Node_Id;
5499 L, R : Node_Id;
5500
5501 begin
5502 Op_Name := Chars (Actual_Subp);
5503
5504 -- Create entities for wrapper function and its formals
5505
5506 F1 := Make_Temporary (Loc, 'A');
5507 F2 := Make_Temporary (Loc, 'B');
5508 L := New_Occurrence_Of (F1, Loc);
5509 R := New_Occurrence_Of (F2, Loc);
5510
5511 Func := Make_Defining_Identifier (Loc, Chars (Formal_Subp));
5512 Set_Ekind (Func, E_Function);
5513 Set_Is_Generic_Actual_Subprogram (Func);
5514
5515 Spec :=
5516 Make_Function_Specification (Loc,
5517 Defining_Unit_Name => Func,
5518 Parameter_Specifications => New_List (
5519 Make_Parameter_Specification (Loc,
5520 Defining_Identifier => F1,
5521 Parameter_Type => New_Occurrence_Of (Op_Type, Loc))),
5522 Result_Definition => New_Occurrence_Of (Ret_Type, Loc));
5523
5524 if Is_Binary then
5525 Append_To (Parameter_Specifications (Spec),
5526 Make_Parameter_Specification (Loc,
5527 Defining_Identifier => F2,
5528 Parameter_Type => New_Occurrence_Of (Op_Type, Loc)));
5529 end if;
5530
5531 -- Build expression as a function call, or as an operator node
5532 -- that corresponds to the name of the actual, starting with
5533 -- binary operators.
5534
5535 if Op_Name not in Any_Operator_Name then
5536 Expr :=
5537 Make_Function_Call (Loc,
5538 Name =>
5539 New_Occurrence_Of (Actual_Subp, Loc),
5540 Parameter_Associations => New_List (L));
5541
5542 if Is_Binary then
5543 Append_To (Parameter_Associations (Expr), R);
5544 end if;
5545
5546 -- Binary operators
5547
5548 elsif Is_Binary then
5549 if Op_Name = Name_Op_And then
5550 Expr := Make_Op_And (Loc, Left_Opnd => L, Right_Opnd => R);
5551 elsif Op_Name = Name_Op_Or then
5552 Expr := Make_Op_Or (Loc, Left_Opnd => L, Right_Opnd => R);
5553 elsif Op_Name = Name_Op_Xor then
5554 Expr := Make_Op_Xor (Loc, Left_Opnd => L, Right_Opnd => R);
5555 elsif Op_Name = Name_Op_Eq then
5556 Expr := Make_Op_Eq (Loc, Left_Opnd => L, Right_Opnd => R);
5557 elsif Op_Name = Name_Op_Ne then
5558 Expr := Make_Op_Ne (Loc, Left_Opnd => L, Right_Opnd => R);
5559 elsif Op_Name = Name_Op_Le then
5560 Expr := Make_Op_Le (Loc, Left_Opnd => L, Right_Opnd => R);
5561 elsif Op_Name = Name_Op_Gt then
5562 Expr := Make_Op_Gt (Loc, Left_Opnd => L, Right_Opnd => R);
5563 elsif Op_Name = Name_Op_Ge then
5564 Expr := Make_Op_Ge (Loc, Left_Opnd => L, Right_Opnd => R);
5565 elsif Op_Name = Name_Op_Lt then
5566 Expr := Make_Op_Lt (Loc, Left_Opnd => L, Right_Opnd => R);
5567 elsif Op_Name = Name_Op_Add then
5568 Expr := Make_Op_Add (Loc, Left_Opnd => L, Right_Opnd => R);
5569 elsif Op_Name = Name_Op_Subtract then
5570 Expr := Make_Op_Subtract (Loc, Left_Opnd => L, Right_Opnd => R);
5571 elsif Op_Name = Name_Op_Concat then
5572 Expr := Make_Op_Concat (Loc, Left_Opnd => L, Right_Opnd => R);
5573 elsif Op_Name = Name_Op_Multiply then
5574 Expr := Make_Op_Multiply (Loc, Left_Opnd => L, Right_Opnd => R);
5575 elsif Op_Name = Name_Op_Divide then
5576 Expr := Make_Op_Divide (Loc, Left_Opnd => L, Right_Opnd => R);
5577 elsif Op_Name = Name_Op_Mod then
5578 Expr := Make_Op_Mod (Loc, Left_Opnd => L, Right_Opnd => R);
5579 elsif Op_Name = Name_Op_Rem then
5580 Expr := Make_Op_Rem (Loc, Left_Opnd => L, Right_Opnd => R);
5581 elsif Op_Name = Name_Op_Expon then
5582 Expr := Make_Op_Expon (Loc, Left_Opnd => L, Right_Opnd => R);
5583 end if;
5584
5585 -- Unary operators
5586
5587 else
5588 if Op_Name = Name_Op_Add then
5589 Expr := Make_Op_Plus (Loc, Right_Opnd => L);
5590 elsif Op_Name = Name_Op_Subtract then
5591 Expr := Make_Op_Minus (Loc, Right_Opnd => L);
5592 elsif Op_Name = Name_Op_Abs then
5593 Expr := Make_Op_Abs (Loc, Right_Opnd => L);
5594 elsif Op_Name = Name_Op_Not then
5595 Expr := Make_Op_Not (Loc, Right_Opnd => L);
5596 end if;
5597 end if;
5598
5599 Decl :=
5600 Make_Expression_Function (Loc,
5601 Specification => Spec,
5602 Expression => Expr);
5603
5604 return Decl;
5605 end Build_Operator_Wrapper;
5606
5607 -------------------------------------------
5608 -- Build_Instance_Compilation_Unit_Nodes --
5609 -------------------------------------------
5610
5611 procedure Build_Instance_Compilation_Unit_Nodes
5612 (N : Node_Id;
5613 Act_Body : Node_Id;
5614 Act_Decl : Node_Id)
5615 is
5616 Decl_Cunit : Node_Id;
5617 Body_Cunit : Node_Id;
5618 Citem : Node_Id;
5619 New_Main : constant Entity_Id := Defining_Entity (Act_Decl);
5620 Old_Main : constant Entity_Id := Cunit_Entity (Main_Unit);
5621
5622 begin
5623 -- A new compilation unit node is built for the instance declaration
5624
5625 Decl_Cunit :=
5626 Make_Compilation_Unit (Sloc (N),
5627 Context_Items => Empty_List,
5628 Unit => Act_Decl,
5629 Aux_Decls_Node => Make_Compilation_Unit_Aux (Sloc (N)));
5630
5631 Set_Parent_Spec (Act_Decl, Parent_Spec (N));
5632
5633 -- The new compilation unit is linked to its body, but both share the
5634 -- same file, so we do not set Body_Required on the new unit so as not
5635 -- to create a spurious dependency on a non-existent body in the ali.
5636 -- This simplifies CodePeer unit traversal.
5637
5638 -- We use the original instantiation compilation unit as the resulting
5639 -- compilation unit of the instance, since this is the main unit.
5640
5641 Rewrite (N, Act_Body);
5642
5643 -- Propagate the aspect specifications from the package body template to
5644 -- the instantiated version of the package body.
5645
5646 if Has_Aspects (Act_Body) then
5647 Set_Aspect_Specifications
5648 (N, New_Copy_List_Tree (Aspect_Specifications (Act_Body)));
5649 end if;
5650
5651 Body_Cunit := Parent (N);
5652
5653 -- The two compilation unit nodes are linked by the Library_Unit field
5654
5655 Set_Library_Unit (Decl_Cunit, Body_Cunit);
5656 Set_Library_Unit (Body_Cunit, Decl_Cunit);
5657
5658 -- Preserve the private nature of the package if needed
5659
5660 Set_Private_Present (Decl_Cunit, Private_Present (Body_Cunit));
5661
5662 -- If the instance is not the main unit, its context, categorization
5663 -- and elaboration entity are not relevant to the compilation.
5664
5665 if Body_Cunit /= Cunit (Main_Unit) then
5666 Make_Instance_Unit (Body_Cunit, In_Main => False);
5667 return;
5668 end if;
5669
5670 -- The context clause items on the instantiation, which are now attached
5671 -- to the body compilation unit (since the body overwrote the original
5672 -- instantiation node), semantically belong on the spec, so copy them
5673 -- there. It's harmless to leave them on the body as well. In fact one
5674 -- could argue that they belong in both places.
5675
5676 Citem := First (Context_Items (Body_Cunit));
5677 while Present (Citem) loop
5678 Append (New_Copy (Citem), Context_Items (Decl_Cunit));
5679 Next (Citem);
5680 end loop;
5681
5682 -- Propagate categorization flags on packages, so that they appear in
5683 -- the ali file for the spec of the unit.
5684
5685 if Ekind (New_Main) = E_Package then
5686 Set_Is_Pure (Old_Main, Is_Pure (New_Main));
5687 Set_Is_Preelaborated (Old_Main, Is_Preelaborated (New_Main));
5688 Set_Is_Remote_Types (Old_Main, Is_Remote_Types (New_Main));
5689 Set_Is_Shared_Passive (Old_Main, Is_Shared_Passive (New_Main));
5690 Set_Is_Remote_Call_Interface
5691 (Old_Main, Is_Remote_Call_Interface (New_Main));
5692 end if;
5693
5694 -- Make entry in Units table, so that binder can generate call to
5695 -- elaboration procedure for body, if any.
5696
5697 Make_Instance_Unit (Body_Cunit, In_Main => True);
5698 Main_Unit_Entity := New_Main;
5699 Set_Cunit_Entity (Main_Unit, Main_Unit_Entity);
5700
5701 -- Build elaboration entity, since the instance may certainly generate
5702 -- elaboration code requiring a flag for protection.
5703
5704 Build_Elaboration_Entity (Decl_Cunit, New_Main);
5705 end Build_Instance_Compilation_Unit_Nodes;
5706
5707 -----------------------------
5708 -- Check_Access_Definition --
5709 -----------------------------
5710
5711 procedure Check_Access_Definition (N : Node_Id) is
5712 begin
5713 pragma Assert
5714 (Ada_Version >= Ada_2005 and then Present (Access_Definition (N)));
5715 null;
5716 end Check_Access_Definition;
5717
5718 -----------------------------------
5719 -- Check_Formal_Package_Instance --
5720 -----------------------------------
5721
5722 -- If the formal has specific parameters, they must match those of the
5723 -- actual. Both of them are instances, and the renaming declarations for
5724 -- their formal parameters appear in the same order in both. The analyzed
5725 -- formal has been analyzed in the context of the current instance.
5726
5727 procedure Check_Formal_Package_Instance
5728 (Formal_Pack : Entity_Id;
5729 Actual_Pack : Entity_Id)
5730 is
5731 E1 : Entity_Id := First_Entity (Actual_Pack);
5732 E2 : Entity_Id := First_Entity (Formal_Pack);
5733
5734 Expr1 : Node_Id;
5735 Expr2 : Node_Id;
5736
5737 procedure Check_Mismatch (B : Boolean);
5738 -- Common error routine for mismatch between the parameters of the
5739 -- actual instance and those of the formal package.
5740
5741 function Same_Instantiated_Constant (E1, E2 : Entity_Id) return Boolean;
5742 -- The formal may come from a nested formal package, and the actual may
5743 -- have been constant-folded. To determine whether the two denote the
5744 -- same entity we may have to traverse several definitions to recover
5745 -- the ultimate entity that they refer to.
5746
5747 function Same_Instantiated_Function (E1, E2 : Entity_Id) return Boolean;
5748 -- The formal and the actual must be identical, but if both are
5749 -- given by attributes they end up renaming different generated bodies,
5750 -- and we must verify that the attributes themselves match.
5751
5752 function Same_Instantiated_Variable (E1, E2 : Entity_Id) return Boolean;
5753 -- Similarly, if the formal comes from a nested formal package, the
5754 -- actual may designate the formal through multiple renamings, which
5755 -- have to be followed to determine the original variable in question.
5756
5757 --------------------
5758 -- Check_Mismatch --
5759 --------------------
5760
5761 procedure Check_Mismatch (B : Boolean) is
5762 -- A Formal_Type_Declaration for a derived private type is rewritten
5763 -- as a private extension decl. (see Analyze_Formal_Derived_Type),
5764 -- which is why we examine the original node.
5765
5766 Kind : constant Node_Kind := Nkind (Original_Node (Parent (E2)));
5767
5768 begin
5769 if Kind = N_Formal_Type_Declaration then
5770 return;
5771
5772 elsif Nkind_In (Kind, N_Formal_Object_Declaration,
5773 N_Formal_Package_Declaration)
5774 or else Kind in N_Formal_Subprogram_Declaration
5775 then
5776 null;
5777
5778 -- Ada 2012: If both formal and actual are incomplete types they
5779 -- are conformant.
5780
5781 elsif Is_Incomplete_Type (E1) and then Is_Incomplete_Type (E2) then
5782 null;
5783
5784 elsif B then
5785 Error_Msg_NE
5786 ("actual for & in actual instance does not match formal",
5787 Parent (Actual_Pack), E1);
5788 end if;
5789 end Check_Mismatch;
5790
5791 --------------------------------
5792 -- Same_Instantiated_Constant --
5793 --------------------------------
5794
5795 function Same_Instantiated_Constant
5796 (E1, E2 : Entity_Id) return Boolean
5797 is
5798 Ent : Entity_Id;
5799
5800 begin
5801 Ent := E2;
5802 while Present (Ent) loop
5803 if E1 = Ent then
5804 return True;
5805
5806 elsif Ekind (Ent) /= E_Constant then
5807 return False;
5808
5809 elsif Is_Entity_Name (Constant_Value (Ent)) then
5810 if Entity (Constant_Value (Ent)) = E1 then
5811 return True;
5812 else
5813 Ent := Entity (Constant_Value (Ent));
5814 end if;
5815
5816 -- The actual may be a constant that has been folded. Recover
5817 -- original name.
5818
5819 elsif Is_Entity_Name (Original_Node (Constant_Value (Ent))) then
5820 Ent := Entity (Original_Node (Constant_Value (Ent)));
5821
5822 else
5823 return False;
5824 end if;
5825 end loop;
5826
5827 return False;
5828 end Same_Instantiated_Constant;
5829
5830 --------------------------------
5831 -- Same_Instantiated_Function --
5832 --------------------------------
5833
5834 function Same_Instantiated_Function
5835 (E1, E2 : Entity_Id) return Boolean
5836 is
5837 U1, U2 : Node_Id;
5838 begin
5839 if Alias (E1) = Alias (E2) then
5840 return True;
5841
5842 elsif Present (Alias (E2)) then
5843 U1 := Original_Node (Unit_Declaration_Node (E1));
5844 U2 := Original_Node (Unit_Declaration_Node (Alias (E2)));
5845
5846 return Nkind (U1) = N_Subprogram_Renaming_Declaration
5847 and then Nkind (Name (U1)) = N_Attribute_Reference
5848
5849 and then Nkind (U2) = N_Subprogram_Renaming_Declaration
5850 and then Nkind (Name (U2)) = N_Attribute_Reference
5851
5852 and then
5853 Attribute_Name (Name (U1)) = Attribute_Name (Name (U2));
5854 else
5855 return False;
5856 end if;
5857 end Same_Instantiated_Function;
5858
5859 --------------------------------
5860 -- Same_Instantiated_Variable --
5861 --------------------------------
5862
5863 function Same_Instantiated_Variable
5864 (E1, E2 : Entity_Id) return Boolean
5865 is
5866 function Original_Entity (E : Entity_Id) return Entity_Id;
5867 -- Follow chain of renamings to the ultimate ancestor
5868
5869 ---------------------
5870 -- Original_Entity --
5871 ---------------------
5872
5873 function Original_Entity (E : Entity_Id) return Entity_Id is
5874 Orig : Entity_Id;
5875
5876 begin
5877 Orig := E;
5878 while Nkind (Parent (Orig)) = N_Object_Renaming_Declaration
5879 and then Present (Renamed_Object (Orig))
5880 and then Is_Entity_Name (Renamed_Object (Orig))
5881 loop
5882 Orig := Entity (Renamed_Object (Orig));
5883 end loop;
5884
5885 return Orig;
5886 end Original_Entity;
5887
5888 -- Start of processing for Same_Instantiated_Variable
5889
5890 begin
5891 return Ekind (E1) = Ekind (E2)
5892 and then Original_Entity (E1) = Original_Entity (E2);
5893 end Same_Instantiated_Variable;
5894
5895 -- Start of processing for Check_Formal_Package_Instance
5896
5897 begin
5898 while Present (E1) and then Present (E2) loop
5899 exit when Ekind (E1) = E_Package
5900 and then Renamed_Entity (E1) = Renamed_Entity (Actual_Pack);
5901
5902 -- If the formal is the renaming of the formal package, this
5903 -- is the end of its formal part, which may occur before the
5904 -- end of the formal part in the actual in the presence of
5905 -- defaulted parameters in the formal package.
5906
5907 exit when Nkind (Parent (E2)) = N_Package_Renaming_Declaration
5908 and then Renamed_Entity (E2) = Scope (E2);
5909
5910 -- The analysis of the actual may generate additional internal
5911 -- entities. If the formal is defaulted, there is no corresponding
5912 -- analysis and the internal entities must be skipped, until we
5913 -- find corresponding entities again.
5914
5915 if Comes_From_Source (E2)
5916 and then not Comes_From_Source (E1)
5917 and then Chars (E1) /= Chars (E2)
5918 then
5919 while Present (E1) and then Chars (E1) /= Chars (E2) loop
5920 Next_Entity (E1);
5921 end loop;
5922 end if;
5923
5924 if No (E1) then
5925 return;
5926
5927 -- If the formal entity comes from a formal declaration, it was
5928 -- defaulted in the formal package, and no check is needed on it.
5929
5930 elsif Nkind_In (Original_Node (Parent (E2)),
5931 N_Formal_Object_Declaration,
5932 N_Formal_Type_Declaration)
5933 then
5934 goto Next_E;
5935
5936 -- Ditto for defaulted formal subprograms.
5937
5938 elsif Is_Overloadable (E1)
5939 and then Nkind (Unit_Declaration_Node (E2)) in
5940 N_Formal_Subprogram_Declaration
5941 then
5942 goto Next_E;
5943
5944 elsif Is_Type (E1) then
5945
5946 -- Subtypes must statically match. E1, E2 are the local entities
5947 -- that are subtypes of the actuals. Itypes generated for other
5948 -- parameters need not be checked, the check will be performed
5949 -- on the parameters themselves.
5950
5951 -- If E2 is a formal type declaration, it is a defaulted parameter
5952 -- and needs no checking.
5953
5954 if not Is_Itype (E1) and then not Is_Itype (E2) then
5955 Check_Mismatch
5956 (not Is_Type (E2)
5957 or else Etype (E1) /= Etype (E2)
5958 or else not Subtypes_Statically_Match (E1, E2));
5959 end if;
5960
5961 elsif Ekind (E1) = E_Constant then
5962
5963 -- IN parameters must denote the same static value, or the same
5964 -- constant, or the literal null.
5965
5966 Expr1 := Expression (Parent (E1));
5967
5968 if Ekind (E2) /= E_Constant then
5969 Check_Mismatch (True);
5970 goto Next_E;
5971 else
5972 Expr2 := Expression (Parent (E2));
5973 end if;
5974
5975 if Is_OK_Static_Expression (Expr1) then
5976 if not Is_OK_Static_Expression (Expr2) then
5977 Check_Mismatch (True);
5978
5979 elsif Is_Discrete_Type (Etype (E1)) then
5980 declare
5981 V1 : constant Uint := Expr_Value (Expr1);
5982 V2 : constant Uint := Expr_Value (Expr2);
5983 begin
5984 Check_Mismatch (V1 /= V2);
5985 end;
5986
5987 elsif Is_Real_Type (Etype (E1)) then
5988 declare
5989 V1 : constant Ureal := Expr_Value_R (Expr1);
5990 V2 : constant Ureal := Expr_Value_R (Expr2);
5991 begin
5992 Check_Mismatch (V1 /= V2);
5993 end;
5994
5995 elsif Is_String_Type (Etype (E1))
5996 and then Nkind (Expr1) = N_String_Literal
5997 then
5998 if Nkind (Expr2) /= N_String_Literal then
5999 Check_Mismatch (True);
6000 else
6001 Check_Mismatch
6002 (not String_Equal (Strval (Expr1), Strval (Expr2)));
6003 end if;
6004 end if;
6005
6006 elsif Is_Entity_Name (Expr1) then
6007 if Is_Entity_Name (Expr2) then
6008 if Entity (Expr1) = Entity (Expr2) then
6009 null;
6010 else
6011 Check_Mismatch
6012 (not Same_Instantiated_Constant
6013 (Entity (Expr1), Entity (Expr2)));
6014 end if;
6015
6016 else
6017 Check_Mismatch (True);
6018 end if;
6019
6020 elsif Is_Entity_Name (Original_Node (Expr1))
6021 and then Is_Entity_Name (Expr2)
6022 and then Same_Instantiated_Constant
6023 (Entity (Original_Node (Expr1)), Entity (Expr2))
6024 then
6025 null;
6026
6027 elsif Nkind (Expr1) = N_Null then
6028 Check_Mismatch (Nkind (Expr1) /= N_Null);
6029
6030 else
6031 Check_Mismatch (True);
6032 end if;
6033
6034 elsif Ekind (E1) = E_Variable then
6035 Check_Mismatch (not Same_Instantiated_Variable (E1, E2));
6036
6037 elsif Ekind (E1) = E_Package then
6038 Check_Mismatch
6039 (Ekind (E1) /= Ekind (E2)
6040 or else Renamed_Object (E1) /= Renamed_Object (E2));
6041
6042 elsif Is_Overloadable (E1) then
6043
6044 -- Verify that the actual subprograms match. Note that actuals
6045 -- that are attributes are rewritten as subprograms. If the
6046 -- subprogram in the formal package is defaulted, no check is
6047 -- needed. Note that this can only happen in Ada 2005 when the
6048 -- formal package can be partially parameterized.
6049
6050 if Nkind (Unit_Declaration_Node (E1)) =
6051 N_Subprogram_Renaming_Declaration
6052 and then From_Default (Unit_Declaration_Node (E1))
6053 then
6054 null;
6055
6056 -- If the formal package has an "others" box association that
6057 -- covers this formal, there is no need for a check either.
6058
6059 elsif Nkind (Unit_Declaration_Node (E2)) in
6060 N_Formal_Subprogram_Declaration
6061 and then Box_Present (Unit_Declaration_Node (E2))
6062 then
6063 null;
6064
6065 -- No check needed if subprogram is a defaulted null procedure
6066
6067 elsif No (Alias (E2))
6068 and then Ekind (E2) = E_Procedure
6069 and then
6070 Null_Present (Specification (Unit_Declaration_Node (E2)))
6071 then
6072 null;
6073
6074 -- Otherwise the actual in the formal and the actual in the
6075 -- instantiation of the formal must match, up to renamings.
6076
6077 else
6078 Check_Mismatch
6079 (Ekind (E2) /= Ekind (E1)
6080 or else not Same_Instantiated_Function (E1, E2));
6081 end if;
6082
6083 else
6084 raise Program_Error;
6085 end if;
6086
6087 <<Next_E>>
6088 Next_Entity (E1);
6089 Next_Entity (E2);
6090 end loop;
6091 end Check_Formal_Package_Instance;
6092
6093 ---------------------------
6094 -- Check_Formal_Packages --
6095 ---------------------------
6096
6097 procedure Check_Formal_Packages (P_Id : Entity_Id) is
6098 E : Entity_Id;
6099 Formal_P : Entity_Id;
6100 Formal_Decl : Node_Id;
6101
6102 begin
6103 -- Iterate through the declarations in the instance, looking for package
6104 -- renaming declarations that denote instances of formal packages. Stop
6105 -- when we find the renaming of the current package itself. The
6106 -- declaration for a formal package without a box is followed by an
6107 -- internal entity that repeats the instantiation.
6108
6109 E := First_Entity (P_Id);
6110 while Present (E) loop
6111 if Ekind (E) = E_Package then
6112 if Renamed_Object (E) = P_Id then
6113 exit;
6114
6115 elsif Nkind (Parent (E)) /= N_Package_Renaming_Declaration then
6116 null;
6117
6118 else
6119 Formal_Decl := Parent (Associated_Formal_Package (E));
6120
6121 -- Nothing to check if the formal has a box or an others_clause
6122 -- (necessarily with a box).
6123
6124 if Box_Present (Formal_Decl) then
6125 null;
6126
6127 elsif Nkind (First (Generic_Associations (Formal_Decl))) =
6128 N_Others_Choice
6129 then
6130 -- The internal validating package was generated but formal
6131 -- and instance are known to be compatible.
6132
6133 Formal_P := Next_Entity (E);
6134 Remove (Unit_Declaration_Node (Formal_P));
6135
6136 else
6137 Formal_P := Next_Entity (E);
6138 Check_Formal_Package_Instance (Formal_P, E);
6139
6140 -- After checking, remove the internal validating package.
6141 -- It is only needed for semantic checks, and as it may
6142 -- contain generic formal declarations it should not reach
6143 -- gigi.
6144
6145 Remove (Unit_Declaration_Node (Formal_P));
6146 end if;
6147 end if;
6148 end if;
6149
6150 Next_Entity (E);
6151 end loop;
6152 end Check_Formal_Packages;
6153
6154 ---------------------------------
6155 -- Check_Forward_Instantiation --
6156 ---------------------------------
6157
6158 procedure Check_Forward_Instantiation (Decl : Node_Id) is
6159 S : Entity_Id;
6160 Gen_Comp : Entity_Id := Cunit_Entity (Get_Source_Unit (Decl));
6161
6162 begin
6163 -- The instantiation appears before the generic body if we are in the
6164 -- scope of the unit containing the generic, either in its spec or in
6165 -- the package body, and before the generic body.
6166
6167 if Ekind (Gen_Comp) = E_Package_Body then
6168 Gen_Comp := Spec_Entity (Gen_Comp);
6169 end if;
6170
6171 if In_Open_Scopes (Gen_Comp)
6172 and then No (Corresponding_Body (Decl))
6173 then
6174 S := Current_Scope;
6175
6176 while Present (S)
6177 and then not Is_Compilation_Unit (S)
6178 and then not Is_Child_Unit (S)
6179 loop
6180 if Ekind (S) = E_Package then
6181 Set_Has_Forward_Instantiation (S);
6182 end if;
6183
6184 S := Scope (S);
6185 end loop;
6186 end if;
6187 end Check_Forward_Instantiation;
6188
6189 ---------------------------
6190 -- Check_Generic_Actuals --
6191 ---------------------------
6192
6193 -- The visibility of the actuals may be different between the point of
6194 -- generic instantiation and the instantiation of the body.
6195
6196 procedure Check_Generic_Actuals
6197 (Instance : Entity_Id;
6198 Is_Formal_Box : Boolean)
6199 is
6200 E : Entity_Id;
6201 Astype : Entity_Id;
6202
6203 function Denotes_Previous_Actual (Typ : Entity_Id) return Boolean;
6204 -- For a formal that is an array type, the component type is often a
6205 -- previous formal in the same unit. The privacy status of the component
6206 -- type will have been examined earlier in the traversal of the
6207 -- corresponding actuals, and this status should not be modified for
6208 -- the array (sub)type itself. However, if the base type of the array
6209 -- (sub)type is private, its full view must be restored in the body to
6210 -- be consistent with subsequent index subtypes, etc.
6211 --
6212 -- To detect this case we have to rescan the list of formals, which is
6213 -- usually short enough to ignore the resulting inefficiency.
6214
6215 -----------------------------
6216 -- Denotes_Previous_Actual --
6217 -----------------------------
6218
6219 function Denotes_Previous_Actual (Typ : Entity_Id) return Boolean is
6220 Prev : Entity_Id;
6221
6222 begin
6223 Prev := First_Entity (Instance);
6224 while Present (Prev) loop
6225 if Is_Type (Prev)
6226 and then Nkind (Parent (Prev)) = N_Subtype_Declaration
6227 and then Is_Entity_Name (Subtype_Indication (Parent (Prev)))
6228 and then Entity (Subtype_Indication (Parent (Prev))) = Typ
6229 then
6230 return True;
6231
6232 elsif Prev = E then
6233 return False;
6234
6235 else
6236 Next_Entity (Prev);
6237 end if;
6238 end loop;
6239
6240 return False;
6241 end Denotes_Previous_Actual;
6242
6243 -- Start of processing for Check_Generic_Actuals
6244
6245 begin
6246 E := First_Entity (Instance);
6247 while Present (E) loop
6248 if Is_Type (E)
6249 and then Nkind (Parent (E)) = N_Subtype_Declaration
6250 and then Scope (Etype (E)) /= Instance
6251 and then Is_Entity_Name (Subtype_Indication (Parent (E)))
6252 then
6253 if Is_Array_Type (E)
6254 and then not Is_Private_Type (Etype (E))
6255 and then Denotes_Previous_Actual (Component_Type (E))
6256 then
6257 null;
6258 else
6259 Check_Private_View (Subtype_Indication (Parent (E)));
6260 end if;
6261
6262 Set_Is_Generic_Actual_Type (E, True);
6263 Set_Is_Hidden (E, False);
6264 Set_Is_Potentially_Use_Visible (E,
6265 In_Use (Instance));
6266
6267 -- We constructed the generic actual type as a subtype of the
6268 -- supplied type. This means that it normally would not inherit
6269 -- subtype specific attributes of the actual, which is wrong for
6270 -- the generic case.
6271
6272 Astype := Ancestor_Subtype (E);
6273
6274 if No (Astype) then
6275
6276 -- This can happen when E is an itype that is the full view of
6277 -- a private type completed, e.g. with a constrained array. In
6278 -- that case, use the first subtype, which will carry size
6279 -- information. The base type itself is unconstrained and will
6280 -- not carry it.
6281
6282 Astype := First_Subtype (E);
6283 end if;
6284
6285 Set_Size_Info (E, (Astype));
6286 Set_RM_Size (E, RM_Size (Astype));
6287 Set_First_Rep_Item (E, First_Rep_Item (Astype));
6288
6289 if Is_Discrete_Or_Fixed_Point_Type (E) then
6290 Set_RM_Size (E, RM_Size (Astype));
6291
6292 -- In nested instances, the base type of an access actual may
6293 -- itself be private, and need to be exchanged.
6294
6295 elsif Is_Access_Type (E)
6296 and then Is_Private_Type (Etype (E))
6297 then
6298 Check_Private_View
6299 (New_Occurrence_Of (Etype (E), Sloc (Instance)));
6300 end if;
6301
6302 elsif Ekind (E) = E_Package then
6303
6304 -- If this is the renaming for the current instance, we're done.
6305 -- Otherwise it is a formal package. If the corresponding formal
6306 -- was declared with a box, the (instantiations of the) generic
6307 -- formal part are also visible. Otherwise, ignore the entity
6308 -- created to validate the actuals.
6309
6310 if Renamed_Object (E) = Instance then
6311 exit;
6312
6313 elsif Nkind (Parent (E)) /= N_Package_Renaming_Declaration then
6314 null;
6315
6316 -- The visibility of a formal of an enclosing generic is already
6317 -- correct.
6318
6319 elsif Denotes_Formal_Package (E) then
6320 null;
6321
6322 elsif Present (Associated_Formal_Package (E))
6323 and then not Is_Generic_Formal (E)
6324 then
6325 if Box_Present (Parent (Associated_Formal_Package (E))) then
6326 Check_Generic_Actuals (Renamed_Object (E), True);
6327
6328 else
6329 Check_Generic_Actuals (Renamed_Object (E), False);
6330 end if;
6331
6332 Set_Is_Hidden (E, False);
6333 end if;
6334
6335 -- If this is a subprogram instance (in a wrapper package) the
6336 -- actual is fully visible.
6337
6338 elsif Is_Wrapper_Package (Instance) then
6339 Set_Is_Hidden (E, False);
6340
6341 -- If the formal package is declared with a box, or if the formal
6342 -- parameter is defaulted, it is visible in the body.
6343
6344 elsif Is_Formal_Box or else Is_Visible_Formal (E) then
6345 Set_Is_Hidden (E, False);
6346 end if;
6347
6348 if Ekind (E) = E_Constant then
6349
6350 -- If the type of the actual is a private type declared in the
6351 -- enclosing scope of the generic unit, the body of the generic
6352 -- sees the full view of the type (because it has to appear in
6353 -- the corresponding package body). If the type is private now,
6354 -- exchange views to restore the proper visiblity in the instance.
6355
6356 declare
6357 Typ : constant Entity_Id := Base_Type (Etype (E));
6358 -- The type of the actual
6359
6360 Gen_Id : Entity_Id;
6361 -- The generic unit
6362
6363 Parent_Scope : Entity_Id;
6364 -- The enclosing scope of the generic unit
6365
6366 begin
6367 if Is_Wrapper_Package (Instance) then
6368 Gen_Id :=
6369 Generic_Parent
6370 (Specification
6371 (Unit_Declaration_Node
6372 (Related_Instance (Instance))));
6373 else
6374 Gen_Id :=
6375 Generic_Parent (Package_Specification (Instance));
6376 end if;
6377
6378 Parent_Scope := Scope (Gen_Id);
6379
6380 -- The exchange is only needed if the generic is defined
6381 -- within a package which is not a common ancestor of the
6382 -- scope of the instance, and is not already in scope.
6383
6384 if Is_Private_Type (Typ)
6385 and then Scope (Typ) = Parent_Scope
6386 and then Scope (Instance) /= Parent_Scope
6387 and then Ekind (Parent_Scope) = E_Package
6388 and then not Is_Child_Unit (Gen_Id)
6389 then
6390 Switch_View (Typ);
6391
6392 -- If the type of the entity is a subtype, it may also have
6393 -- to be made visible, together with the base type of its
6394 -- full view, after exchange.
6395
6396 if Is_Private_Type (Etype (E)) then
6397 Switch_View (Etype (E));
6398 Switch_View (Base_Type (Etype (E)));
6399 end if;
6400 end if;
6401 end;
6402 end if;
6403
6404 Next_Entity (E);
6405 end loop;
6406 end Check_Generic_Actuals;
6407
6408 ------------------------------
6409 -- Check_Generic_Child_Unit --
6410 ------------------------------
6411
6412 procedure Check_Generic_Child_Unit
6413 (Gen_Id : Node_Id;
6414 Parent_Installed : in out Boolean)
6415 is
6416 Loc : constant Source_Ptr := Sloc (Gen_Id);
6417 Gen_Par : Entity_Id := Empty;
6418 E : Entity_Id;
6419 Inst_Par : Entity_Id;
6420 S : Node_Id;
6421
6422 function Find_Generic_Child
6423 (Scop : Entity_Id;
6424 Id : Node_Id) return Entity_Id;
6425 -- Search generic parent for possible child unit with the given name
6426
6427 function In_Enclosing_Instance return Boolean;
6428 -- Within an instance of the parent, the child unit may be denoted by
6429 -- a simple name, or an abbreviated expanded name. Examine enclosing
6430 -- scopes to locate a possible parent instantiation.
6431
6432 ------------------------
6433 -- Find_Generic_Child --
6434 ------------------------
6435
6436 function Find_Generic_Child
6437 (Scop : Entity_Id;
6438 Id : Node_Id) return Entity_Id
6439 is
6440 E : Entity_Id;
6441
6442 begin
6443 -- If entity of name is already set, instance has already been
6444 -- resolved, e.g. in an enclosing instantiation.
6445
6446 if Present (Entity (Id)) then
6447 if Scope (Entity (Id)) = Scop then
6448 return Entity (Id);
6449 else
6450 return Empty;
6451 end if;
6452
6453 else
6454 E := First_Entity (Scop);
6455 while Present (E) loop
6456 if Chars (E) = Chars (Id)
6457 and then Is_Child_Unit (E)
6458 then
6459 if Is_Child_Unit (E)
6460 and then not Is_Visible_Lib_Unit (E)
6461 then
6462 Error_Msg_NE
6463 ("generic child unit& is not visible", Gen_Id, E);
6464 end if;
6465
6466 Set_Entity (Id, E);
6467 return E;
6468 end if;
6469
6470 Next_Entity (E);
6471 end loop;
6472
6473 return Empty;
6474 end if;
6475 end Find_Generic_Child;
6476
6477 ---------------------------
6478 -- In_Enclosing_Instance --
6479 ---------------------------
6480
6481 function In_Enclosing_Instance return Boolean is
6482 Enclosing_Instance : Node_Id;
6483 Instance_Decl : Node_Id;
6484
6485 begin
6486 -- We do not inline any call that contains instantiations, except
6487 -- for instantiations of Unchecked_Conversion, so if we are within
6488 -- an inlined body the current instance does not require parents.
6489
6490 if In_Inlined_Body then
6491 pragma Assert (Chars (Gen_Id) = Name_Unchecked_Conversion);
6492 return False;
6493 end if;
6494
6495 -- Loop to check enclosing scopes
6496
6497 Enclosing_Instance := Current_Scope;
6498 while Present (Enclosing_Instance) loop
6499 Instance_Decl := Unit_Declaration_Node (Enclosing_Instance);
6500
6501 if Ekind (Enclosing_Instance) = E_Package
6502 and then Is_Generic_Instance (Enclosing_Instance)
6503 and then Present
6504 (Generic_Parent (Specification (Instance_Decl)))
6505 then
6506 -- Check whether the generic we are looking for is a child of
6507 -- this instance.
6508
6509 E := Find_Generic_Child
6510 (Generic_Parent (Specification (Instance_Decl)), Gen_Id);
6511 exit when Present (E);
6512
6513 else
6514 E := Empty;
6515 end if;
6516
6517 Enclosing_Instance := Scope (Enclosing_Instance);
6518 end loop;
6519
6520 if No (E) then
6521
6522 -- Not a child unit
6523
6524 Analyze (Gen_Id);
6525 return False;
6526
6527 else
6528 Rewrite (Gen_Id,
6529 Make_Expanded_Name (Loc,
6530 Chars => Chars (E),
6531 Prefix => New_Occurrence_Of (Enclosing_Instance, Loc),
6532 Selector_Name => New_Occurrence_Of (E, Loc)));
6533
6534 Set_Entity (Gen_Id, E);
6535 Set_Etype (Gen_Id, Etype (E));
6536 Parent_Installed := False; -- Already in scope.
6537 return True;
6538 end if;
6539 end In_Enclosing_Instance;
6540
6541 -- Start of processing for Check_Generic_Child_Unit
6542
6543 begin
6544 -- If the name of the generic is given by a selected component, it may
6545 -- be the name of a generic child unit, and the prefix is the name of an
6546 -- instance of the parent, in which case the child unit must be visible.
6547 -- If this instance is not in scope, it must be placed there and removed
6548 -- after instantiation, because what is being instantiated is not the
6549 -- original child, but the corresponding child present in the instance
6550 -- of the parent.
6551
6552 -- If the child is instantiated within the parent, it can be given by
6553 -- a simple name. In this case the instance is already in scope, but
6554 -- the child generic must be recovered from the generic parent as well.
6555
6556 if Nkind (Gen_Id) = N_Selected_Component then
6557 S := Selector_Name (Gen_Id);
6558 Analyze (Prefix (Gen_Id));
6559 Inst_Par := Entity (Prefix (Gen_Id));
6560
6561 if Ekind (Inst_Par) = E_Package
6562 and then Present (Renamed_Object (Inst_Par))
6563 then
6564 Inst_Par := Renamed_Object (Inst_Par);
6565 end if;
6566
6567 if Ekind (Inst_Par) = E_Package then
6568 if Nkind (Parent (Inst_Par)) = N_Package_Specification then
6569 Gen_Par := Generic_Parent (Parent (Inst_Par));
6570
6571 elsif Nkind (Parent (Inst_Par)) = N_Defining_Program_Unit_Name
6572 and then
6573 Nkind (Parent (Parent (Inst_Par))) = N_Package_Specification
6574 then
6575 Gen_Par := Generic_Parent (Parent (Parent (Inst_Par)));
6576 end if;
6577
6578 elsif Ekind (Inst_Par) = E_Generic_Package
6579 and then Nkind (Parent (Gen_Id)) = N_Formal_Package_Declaration
6580 then
6581 -- A formal package may be a real child package, and not the
6582 -- implicit instance within a parent. In this case the child is
6583 -- not visible and has to be retrieved explicitly as well.
6584
6585 Gen_Par := Inst_Par;
6586 end if;
6587
6588 if Present (Gen_Par) then
6589
6590 -- The prefix denotes an instantiation. The entity itself may be a
6591 -- nested generic, or a child unit.
6592
6593 E := Find_Generic_Child (Gen_Par, S);
6594
6595 if Present (E) then
6596 Change_Selected_Component_To_Expanded_Name (Gen_Id);
6597 Set_Entity (Gen_Id, E);
6598 Set_Etype (Gen_Id, Etype (E));
6599 Set_Entity (S, E);
6600 Set_Etype (S, Etype (E));
6601
6602 -- Indicate that this is a reference to the parent
6603
6604 if In_Extended_Main_Source_Unit (Gen_Id) then
6605 Set_Is_Instantiated (Inst_Par);
6606 end if;
6607
6608 -- A common mistake is to replicate the naming scheme of a
6609 -- hierarchy by instantiating a generic child directly, rather
6610 -- than the implicit child in a parent instance:
6611
6612 -- generic .. package Gpar is ..
6613 -- generic .. package Gpar.Child is ..
6614 -- package Par is new Gpar ();
6615
6616 -- with Gpar.Child;
6617 -- package Par.Child is new Gpar.Child ();
6618 -- rather than Par.Child
6619
6620 -- In this case the instantiation is within Par, which is an
6621 -- instance, but Gpar does not denote Par because we are not IN
6622 -- the instance of Gpar, so this is illegal. The test below
6623 -- recognizes this particular case.
6624
6625 if Is_Child_Unit (E)
6626 and then not Comes_From_Source (Entity (Prefix (Gen_Id)))
6627 and then (not In_Instance
6628 or else Nkind (Parent (Parent (Gen_Id))) =
6629 N_Compilation_Unit)
6630 then
6631 Error_Msg_N
6632 ("prefix of generic child unit must be instance of parent",
6633 Gen_Id);
6634 end if;
6635
6636 if not In_Open_Scopes (Inst_Par)
6637 and then Nkind (Parent (Gen_Id)) not in
6638 N_Generic_Renaming_Declaration
6639 then
6640 Install_Parent (Inst_Par);
6641 Parent_Installed := True;
6642
6643 elsif In_Open_Scopes (Inst_Par) then
6644
6645 -- If the parent is already installed, install the actuals
6646 -- for its formal packages. This is necessary when the child
6647 -- instance is a child of the parent instance: in this case,
6648 -- the parent is placed on the scope stack but the formal
6649 -- packages are not made visible.
6650
6651 Install_Formal_Packages (Inst_Par);
6652 end if;
6653
6654 else
6655 -- If the generic parent does not contain an entity that
6656 -- corresponds to the selector, the instance doesn't either.
6657 -- Analyzing the node will yield the appropriate error message.
6658 -- If the entity is not a child unit, then it is an inner
6659 -- generic in the parent.
6660
6661 Analyze (Gen_Id);
6662 end if;
6663
6664 else
6665 Analyze (Gen_Id);
6666
6667 if Is_Child_Unit (Entity (Gen_Id))
6668 and then
6669 Nkind (Parent (Gen_Id)) not in N_Generic_Renaming_Declaration
6670 and then not In_Open_Scopes (Inst_Par)
6671 then
6672 Install_Parent (Inst_Par);
6673 Parent_Installed := True;
6674
6675 -- The generic unit may be the renaming of the implicit child
6676 -- present in an instance. In that case the parent instance is
6677 -- obtained from the name of the renamed entity.
6678
6679 elsif Ekind (Entity (Gen_Id)) = E_Generic_Package
6680 and then Present (Renamed_Entity (Entity (Gen_Id)))
6681 and then Is_Child_Unit (Renamed_Entity (Entity (Gen_Id)))
6682 then
6683 declare
6684 Renamed_Package : constant Node_Id :=
6685 Name (Parent (Entity (Gen_Id)));
6686 begin
6687 if Nkind (Renamed_Package) = N_Expanded_Name then
6688 Inst_Par := Entity (Prefix (Renamed_Package));
6689 Install_Parent (Inst_Par);
6690 Parent_Installed := True;
6691 end if;
6692 end;
6693 end if;
6694 end if;
6695
6696 elsif Nkind (Gen_Id) = N_Expanded_Name then
6697
6698 -- Entity already present, analyze prefix, whose meaning may be
6699 -- an instance in the current context. If it is an instance of
6700 -- a relative within another, the proper parent may still have
6701 -- to be installed, if they are not of the same generation.
6702
6703 Analyze (Prefix (Gen_Id));
6704
6705 -- In the unlikely case that a local declaration hides the name
6706 -- of the parent package, locate it on the homonym chain. If the
6707 -- context is an instance of the parent, the renaming entity is
6708 -- flagged as such.
6709
6710 Inst_Par := Entity (Prefix (Gen_Id));
6711 while Present (Inst_Par)
6712 and then not Is_Package_Or_Generic_Package (Inst_Par)
6713 loop
6714 Inst_Par := Homonym (Inst_Par);
6715 end loop;
6716
6717 pragma Assert (Present (Inst_Par));
6718 Set_Entity (Prefix (Gen_Id), Inst_Par);
6719
6720 if In_Enclosing_Instance then
6721 null;
6722
6723 elsif Present (Entity (Gen_Id))
6724 and then Is_Child_Unit (Entity (Gen_Id))
6725 and then not In_Open_Scopes (Inst_Par)
6726 then
6727 Install_Parent (Inst_Par);
6728 Parent_Installed := True;
6729 end if;
6730
6731 elsif In_Enclosing_Instance then
6732
6733 -- The child unit is found in some enclosing scope
6734
6735 null;
6736
6737 else
6738 Analyze (Gen_Id);
6739
6740 -- If this is the renaming of the implicit child in a parent
6741 -- instance, recover the parent name and install it.
6742
6743 if Is_Entity_Name (Gen_Id) then
6744 E := Entity (Gen_Id);
6745
6746 if Is_Generic_Unit (E)
6747 and then Nkind (Parent (E)) in N_Generic_Renaming_Declaration
6748 and then Is_Child_Unit (Renamed_Object (E))
6749 and then Is_Generic_Unit (Scope (Renamed_Object (E)))
6750 and then Nkind (Name (Parent (E))) = N_Expanded_Name
6751 then
6752 Rewrite (Gen_Id, New_Copy_Tree (Name (Parent (E))));
6753 Inst_Par := Entity (Prefix (Gen_Id));
6754
6755 if not In_Open_Scopes (Inst_Par) then
6756 Install_Parent (Inst_Par);
6757 Parent_Installed := True;
6758 end if;
6759
6760 -- If it is a child unit of a non-generic parent, it may be
6761 -- use-visible and given by a direct name. Install parent as
6762 -- for other cases.
6763
6764 elsif Is_Generic_Unit (E)
6765 and then Is_Child_Unit (E)
6766 and then
6767 Nkind (Parent (Gen_Id)) not in N_Generic_Renaming_Declaration
6768 and then not Is_Generic_Unit (Scope (E))
6769 then
6770 if not In_Open_Scopes (Scope (E)) then
6771 Install_Parent (Scope (E));
6772 Parent_Installed := True;
6773 end if;
6774 end if;
6775 end if;
6776 end if;
6777 end Check_Generic_Child_Unit;
6778
6779 -----------------------------
6780 -- Check_Hidden_Child_Unit --
6781 -----------------------------
6782
6783 procedure Check_Hidden_Child_Unit
6784 (N : Node_Id;
6785 Gen_Unit : Entity_Id;
6786 Act_Decl_Id : Entity_Id)
6787 is
6788 Gen_Id : constant Node_Id := Name (N);
6789
6790 begin
6791 if Is_Child_Unit (Gen_Unit)
6792 and then Is_Child_Unit (Act_Decl_Id)
6793 and then Nkind (Gen_Id) = N_Expanded_Name
6794 and then Entity (Prefix (Gen_Id)) = Scope (Act_Decl_Id)
6795 and then Chars (Gen_Unit) = Chars (Act_Decl_Id)
6796 then
6797 Error_Msg_Node_2 := Scope (Act_Decl_Id);
6798 Error_Msg_NE
6799 ("generic unit & is implicitly declared in &",
6800 Defining_Unit_Name (N), Gen_Unit);
6801 Error_Msg_N ("\instance must have different name",
6802 Defining_Unit_Name (N));
6803 end if;
6804 end Check_Hidden_Child_Unit;
6805
6806 ------------------------
6807 -- Check_Private_View --
6808 ------------------------
6809
6810 procedure Check_Private_View (N : Node_Id) is
6811 T : constant Entity_Id := Etype (N);
6812 BT : Entity_Id;
6813
6814 begin
6815 -- Exchange views if the type was not private in the generic but is
6816 -- private at the point of instantiation. Do not exchange views if
6817 -- the scope of the type is in scope. This can happen if both generic
6818 -- and instance are sibling units, or if type is defined in a parent.
6819 -- In this case the visibility of the type will be correct for all
6820 -- semantic checks.
6821
6822 if Present (T) then
6823 BT := Base_Type (T);
6824
6825 if Is_Private_Type (T)
6826 and then not Has_Private_View (N)
6827 and then Present (Full_View (T))
6828 and then not In_Open_Scopes (Scope (T))
6829 then
6830 -- In the generic, the full type was visible. Save the private
6831 -- entity, for subsequent exchange.
6832
6833 Switch_View (T);
6834
6835 elsif Has_Private_View (N)
6836 and then not Is_Private_Type (T)
6837 and then not Has_Been_Exchanged (T)
6838 and then Etype (Get_Associated_Node (N)) /= T
6839 then
6840 -- Only the private declaration was visible in the generic. If
6841 -- the type appears in a subtype declaration, the subtype in the
6842 -- instance must have a view compatible with that of its parent,
6843 -- which must be exchanged (see corresponding code in Restore_
6844 -- Private_Views). Otherwise, if the type is defined in a parent
6845 -- unit, leave full visibility within instance, which is safe.
6846
6847 if In_Open_Scopes (Scope (Base_Type (T)))
6848 and then not Is_Private_Type (Base_Type (T))
6849 and then Comes_From_Source (Base_Type (T))
6850 then
6851 null;
6852
6853 elsif Nkind (Parent (N)) = N_Subtype_Declaration
6854 or else not In_Private_Part (Scope (Base_Type (T)))
6855 then
6856 Prepend_Elmt (T, Exchanged_Views);
6857 Exchange_Declarations (Etype (Get_Associated_Node (N)));
6858 end if;
6859
6860 -- For composite types with inconsistent representation exchange
6861 -- component types accordingly.
6862
6863 elsif Is_Access_Type (T)
6864 and then Is_Private_Type (Designated_Type (T))
6865 and then not Has_Private_View (N)
6866 and then Present (Full_View (Designated_Type (T)))
6867 then
6868 Switch_View (Designated_Type (T));
6869
6870 elsif Is_Array_Type (T) then
6871 if Is_Private_Type (Component_Type (T))
6872 and then not Has_Private_View (N)
6873 and then Present (Full_View (Component_Type (T)))
6874 then
6875 Switch_View (Component_Type (T));
6876 end if;
6877
6878 -- The normal exchange mechanism relies on the setting of a
6879 -- flag on the reference in the generic. However, an additional
6880 -- mechanism is needed for types that are not explicitly
6881 -- mentioned in the generic, but may be needed in expanded code
6882 -- in the instance. This includes component types of arrays and
6883 -- designated types of access types. This processing must also
6884 -- include the index types of arrays which we take care of here.
6885
6886 declare
6887 Indx : Node_Id;
6888 Typ : Entity_Id;
6889
6890 begin
6891 Indx := First_Index (T);
6892 while Present (Indx) loop
6893 Typ := Base_Type (Etype (Indx));
6894
6895 if Is_Private_Type (Typ)
6896 and then Present (Full_View (Typ))
6897 then
6898 Switch_View (Typ);
6899 end if;
6900
6901 Next_Index (Indx);
6902 end loop;
6903 end;
6904
6905 elsif Is_Private_Type (T)
6906 and then Present (Full_View (T))
6907 and then Is_Array_Type (Full_View (T))
6908 and then Is_Private_Type (Component_Type (Full_View (T)))
6909 then
6910 Switch_View (T);
6911
6912 -- Finally, a non-private subtype may have a private base type, which
6913 -- must be exchanged for consistency. This can happen when a package
6914 -- body is instantiated, when the scope stack is empty but in fact
6915 -- the subtype and the base type are declared in an enclosing scope.
6916
6917 -- Note that in this case we introduce an inconsistency in the view
6918 -- set, because we switch the base type BT, but there could be some
6919 -- private dependent subtypes of BT which remain unswitched. Such
6920 -- subtypes might need to be switched at a later point (see specific
6921 -- provision for that case in Switch_View).
6922
6923 elsif not Is_Private_Type (T)
6924 and then not Has_Private_View (N)
6925 and then Is_Private_Type (BT)
6926 and then Present (Full_View (BT))
6927 and then not Is_Generic_Type (BT)
6928 and then not In_Open_Scopes (BT)
6929 then
6930 Prepend_Elmt (Full_View (BT), Exchanged_Views);
6931 Exchange_Declarations (BT);
6932 end if;
6933 end if;
6934 end Check_Private_View;
6935
6936 -----------------------------
6937 -- Check_Hidden_Primitives --
6938 -----------------------------
6939
6940 function Check_Hidden_Primitives (Assoc_List : List_Id) return Elist_Id is
6941 Actual : Node_Id;
6942 Gen_T : Entity_Id;
6943 Result : Elist_Id := No_Elist;
6944
6945 begin
6946 if No (Assoc_List) then
6947 return No_Elist;
6948 end if;
6949
6950 -- Traverse the list of associations between formals and actuals
6951 -- searching for renamings of tagged types
6952
6953 Actual := First (Assoc_List);
6954 while Present (Actual) loop
6955 if Nkind (Actual) = N_Subtype_Declaration then
6956 Gen_T := Generic_Parent_Type (Actual);
6957
6958 if Present (Gen_T) and then Is_Tagged_Type (Gen_T) then
6959
6960 -- Traverse the list of primitives of the actual types
6961 -- searching for hidden primitives that are visible in the
6962 -- corresponding generic formal; leave them visible and
6963 -- append them to Result to restore their decoration later.
6964
6965 Install_Hidden_Primitives
6966 (Prims_List => Result,
6967 Gen_T => Gen_T,
6968 Act_T => Entity (Subtype_Indication (Actual)));
6969 end if;
6970 end if;
6971
6972 Next (Actual);
6973 end loop;
6974
6975 return Result;
6976 end Check_Hidden_Primitives;
6977
6978 --------------------------
6979 -- Contains_Instance_Of --
6980 --------------------------
6981
6982 function Contains_Instance_Of
6983 (Inner : Entity_Id;
6984 Outer : Entity_Id;
6985 N : Node_Id) return Boolean
6986 is
6987 Elmt : Elmt_Id;
6988 Scop : Entity_Id;
6989
6990 begin
6991 Scop := Outer;
6992
6993 -- Verify that there are no circular instantiations. We check whether
6994 -- the unit contains an instance of the current scope or some enclosing
6995 -- scope (in case one of the instances appears in a subunit). Longer
6996 -- circularities involving subunits might seem too pathological to
6997 -- consider, but they were not too pathological for the authors of
6998 -- DEC bc30vsq, so we loop over all enclosing scopes, and mark all
6999 -- enclosing generic scopes as containing an instance.
7000
7001 loop
7002 -- Within a generic subprogram body, the scope is not generic, to
7003 -- allow for recursive subprograms. Use the declaration to determine
7004 -- whether this is a generic unit.
7005
7006 if Ekind (Scop) = E_Generic_Package
7007 or else (Is_Subprogram (Scop)
7008 and then Nkind (Unit_Declaration_Node (Scop)) =
7009 N_Generic_Subprogram_Declaration)
7010 then
7011 Elmt := First_Elmt (Inner_Instances (Inner));
7012
7013 while Present (Elmt) loop
7014 if Node (Elmt) = Scop then
7015 Error_Msg_Node_2 := Inner;
7016 Error_Msg_NE
7017 ("circular Instantiation: & instantiated within &!",
7018 N, Scop);
7019 return True;
7020
7021 elsif Node (Elmt) = Inner then
7022 return True;
7023
7024 elsif Contains_Instance_Of (Node (Elmt), Scop, N) then
7025 Error_Msg_Node_2 := Inner;
7026 Error_Msg_NE
7027 ("circular Instantiation: & instantiated within &!",
7028 N, Node (Elmt));
7029 return True;
7030 end if;
7031
7032 Next_Elmt (Elmt);
7033 end loop;
7034
7035 -- Indicate that Inner is being instantiated within Scop
7036
7037 Append_Elmt (Inner, Inner_Instances (Scop));
7038 end if;
7039
7040 if Scop = Standard_Standard then
7041 exit;
7042 else
7043 Scop := Scope (Scop);
7044 end if;
7045 end loop;
7046
7047 return False;
7048 end Contains_Instance_Of;
7049
7050 -----------------------
7051 -- Copy_Generic_Node --
7052 -----------------------
7053
7054 function Copy_Generic_Node
7055 (N : Node_Id;
7056 Parent_Id : Node_Id;
7057 Instantiating : Boolean) return Node_Id
7058 is
7059 Ent : Entity_Id;
7060 New_N : Node_Id;
7061
7062 function Copy_Generic_Descendant (D : Union_Id) return Union_Id;
7063 -- Check the given value of one of the Fields referenced by the current
7064 -- node to determine whether to copy it recursively. The field may hold
7065 -- a Node_Id, a List_Id, or an Elist_Id, or a plain value (Sloc, Uint,
7066 -- Char) in which case it need not be copied.
7067
7068 procedure Copy_Descendants;
7069 -- Common utility for various nodes
7070
7071 function Copy_Generic_Elist (E : Elist_Id) return Elist_Id;
7072 -- Make copy of element list
7073
7074 function Copy_Generic_List
7075 (L : List_Id;
7076 Parent_Id : Node_Id) return List_Id;
7077 -- Apply Copy_Node recursively to the members of a node list
7078
7079 function In_Defining_Unit_Name (Nam : Node_Id) return Boolean;
7080 -- True if an identifier is part of the defining program unit name of
7081 -- a child unit. The entity of such an identifier must be kept (for
7082 -- ASIS use) even though as the name of an enclosing generic it would
7083 -- otherwise not be preserved in the generic tree.
7084
7085 ----------------------
7086 -- Copy_Descendants --
7087 ----------------------
7088
7089 procedure Copy_Descendants is
7090 use Atree.Unchecked_Access;
7091 -- This code section is part of the implementation of an untyped
7092 -- tree traversal, so it needs direct access to node fields.
7093
7094 begin
7095 Set_Field1 (New_N, Copy_Generic_Descendant (Field1 (N)));
7096 Set_Field2 (New_N, Copy_Generic_Descendant (Field2 (N)));
7097 Set_Field3 (New_N, Copy_Generic_Descendant (Field3 (N)));
7098 Set_Field4 (New_N, Copy_Generic_Descendant (Field4 (N)));
7099 Set_Field5 (New_N, Copy_Generic_Descendant (Field5 (N)));
7100 end Copy_Descendants;
7101
7102 -----------------------------
7103 -- Copy_Generic_Descendant --
7104 -----------------------------
7105
7106 function Copy_Generic_Descendant (D : Union_Id) return Union_Id is
7107 begin
7108 if D = Union_Id (Empty) then
7109 return D;
7110
7111 elsif D in Node_Range then
7112 return Union_Id
7113 (Copy_Generic_Node (Node_Id (D), New_N, Instantiating));
7114
7115 elsif D in List_Range then
7116 return Union_Id (Copy_Generic_List (List_Id (D), New_N));
7117
7118 elsif D in Elist_Range then
7119 return Union_Id (Copy_Generic_Elist (Elist_Id (D)));
7120
7121 -- Nothing else is copyable (e.g. Uint values), return as is
7122
7123 else
7124 return D;
7125 end if;
7126 end Copy_Generic_Descendant;
7127
7128 ------------------------
7129 -- Copy_Generic_Elist --
7130 ------------------------
7131
7132 function Copy_Generic_Elist (E : Elist_Id) return Elist_Id is
7133 M : Elmt_Id;
7134 L : Elist_Id;
7135
7136 begin
7137 if Present (E) then
7138 L := New_Elmt_List;
7139 M := First_Elmt (E);
7140 while Present (M) loop
7141 Append_Elmt
7142 (Copy_Generic_Node (Node (M), Empty, Instantiating), L);
7143 Next_Elmt (M);
7144 end loop;
7145
7146 return L;
7147
7148 else
7149 return No_Elist;
7150 end if;
7151 end Copy_Generic_Elist;
7152
7153 -----------------------
7154 -- Copy_Generic_List --
7155 -----------------------
7156
7157 function Copy_Generic_List
7158 (L : List_Id;
7159 Parent_Id : Node_Id) return List_Id
7160 is
7161 N : Node_Id;
7162 New_L : List_Id;
7163
7164 begin
7165 if Present (L) then
7166 New_L := New_List;
7167 Set_Parent (New_L, Parent_Id);
7168
7169 N := First (L);
7170 while Present (N) loop
7171 Append (Copy_Generic_Node (N, Empty, Instantiating), New_L);
7172 Next (N);
7173 end loop;
7174
7175 return New_L;
7176
7177 else
7178 return No_List;
7179 end if;
7180 end Copy_Generic_List;
7181
7182 ---------------------------
7183 -- In_Defining_Unit_Name --
7184 ---------------------------
7185
7186 function In_Defining_Unit_Name (Nam : Node_Id) return Boolean is
7187 begin
7188 return
7189 Present (Parent (Nam))
7190 and then (Nkind (Parent (Nam)) = N_Defining_Program_Unit_Name
7191 or else
7192 (Nkind (Parent (Nam)) = N_Expanded_Name
7193 and then In_Defining_Unit_Name (Parent (Nam))));
7194 end In_Defining_Unit_Name;
7195
7196 -- Start of processing for Copy_Generic_Node
7197
7198 begin
7199 if N = Empty then
7200 return N;
7201 end if;
7202
7203 New_N := New_Copy (N);
7204
7205 -- Copy aspects if present
7206
7207 if Has_Aspects (N) then
7208 Set_Has_Aspects (New_N, False);
7209 Set_Aspect_Specifications
7210 (New_N, Copy_Generic_List (Aspect_Specifications (N), Parent_Id));
7211 end if;
7212
7213 if Instantiating then
7214 Adjust_Instantiation_Sloc (New_N, S_Adjustment);
7215 end if;
7216
7217 if not Is_List_Member (N) then
7218 Set_Parent (New_N, Parent_Id);
7219 end if;
7220
7221 -- Special casing for identifiers and other entity names and operators
7222
7223 if Nkind_In (New_N, N_Character_Literal,
7224 N_Expanded_Name,
7225 N_Identifier,
7226 N_Operator_Symbol)
7227 or else Nkind (New_N) in N_Op
7228 then
7229 if not Instantiating then
7230
7231 -- Link both nodes in order to assign subsequently the entity of
7232 -- the copy to the original node, in case this is a global
7233 -- reference.
7234
7235 Set_Associated_Node (N, New_N);
7236
7237 -- If we are within an instantiation, this is a nested generic
7238 -- that has already been analyzed at the point of definition.
7239 -- We must preserve references that were global to the enclosing
7240 -- parent at that point. Other occurrences, whether global or
7241 -- local to the current generic, must be resolved anew, so we
7242 -- reset the entity in the generic copy. A global reference has a
7243 -- smaller depth than the parent, or else the same depth in case
7244 -- both are distinct compilation units.
7245
7246 -- A child unit is implicitly declared within the enclosing parent
7247 -- but is in fact global to it, and must be preserved.
7248
7249 -- It is also possible for Current_Instantiated_Parent to be
7250 -- defined, and for this not to be a nested generic, namely if
7251 -- the unit is loaded through Rtsfind. In that case, the entity of
7252 -- New_N is only a link to the associated node, and not a defining
7253 -- occurrence.
7254
7255 -- The entities for parent units in the defining_program_unit of a
7256 -- generic child unit are established when the context of the unit
7257 -- is first analyzed, before the generic copy is made. They are
7258 -- preserved in the copy for use in ASIS queries.
7259
7260 Ent := Entity (New_N);
7261
7262 if No (Current_Instantiated_Parent.Gen_Id) then
7263 if No (Ent)
7264 or else Nkind (Ent) /= N_Defining_Identifier
7265 or else not In_Defining_Unit_Name (N)
7266 then
7267 Set_Associated_Node (New_N, Empty);
7268 end if;
7269
7270 elsif No (Ent)
7271 or else
7272 not Nkind_In (Ent, N_Defining_Identifier,
7273 N_Defining_Character_Literal,
7274 N_Defining_Operator_Symbol)
7275 or else No (Scope (Ent))
7276 or else
7277 (Scope (Ent) = Current_Instantiated_Parent.Gen_Id
7278 and then not Is_Child_Unit (Ent))
7279 or else
7280 (Scope_Depth (Scope (Ent)) >
7281 Scope_Depth (Current_Instantiated_Parent.Gen_Id)
7282 and then
7283 Get_Source_Unit (Ent) =
7284 Get_Source_Unit (Current_Instantiated_Parent.Gen_Id))
7285 then
7286 Set_Associated_Node (New_N, Empty);
7287 end if;
7288
7289 -- Case of instantiating identifier or some other name or operator
7290
7291 else
7292 -- If the associated node is still defined, the entity in it
7293 -- is global, and must be copied to the instance. If this copy
7294 -- is being made for a body to inline, it is applied to an
7295 -- instantiated tree, and the entity is already present and
7296 -- must be also preserved.
7297
7298 declare
7299 Assoc : constant Node_Id := Get_Associated_Node (N);
7300
7301 begin
7302 if Present (Assoc) then
7303 if Nkind (Assoc) = Nkind (N) then
7304 Set_Entity (New_N, Entity (Assoc));
7305 Check_Private_View (N);
7306
7307 -- The node is a reference to a global type and acts as the
7308 -- subtype mark of a qualified expression created in order
7309 -- to aid resolution of accidental overloading in instances.
7310 -- Since N is a reference to a type, the Associated_Node of
7311 -- N denotes an entity rather than another identifier. See
7312 -- Qualify_Universal_Operands for details.
7313
7314 elsif Nkind (N) = N_Identifier
7315 and then Nkind (Parent (N)) = N_Qualified_Expression
7316 and then Subtype_Mark (Parent (N)) = N
7317 and then Is_Qualified_Universal_Literal (Parent (N))
7318 then
7319 Set_Entity (New_N, Assoc);
7320
7321 -- The name in the call may be a selected component if the
7322 -- call has not been analyzed yet, as may be the case for
7323 -- pre/post conditions in a generic unit.
7324
7325 elsif Nkind (Assoc) = N_Function_Call
7326 and then Is_Entity_Name (Name (Assoc))
7327 then
7328 Set_Entity (New_N, Entity (Name (Assoc)));
7329
7330 elsif Nkind_In (Assoc, N_Defining_Identifier,
7331 N_Defining_Character_Literal,
7332 N_Defining_Operator_Symbol)
7333 and then Expander_Active
7334 then
7335 -- Inlining case: we are copying a tree that contains
7336 -- global entities, which are preserved in the copy to be
7337 -- used for subsequent inlining.
7338
7339 null;
7340
7341 else
7342 Set_Entity (New_N, Empty);
7343 end if;
7344 end if;
7345 end;
7346 end if;
7347
7348 -- For expanded name, we must copy the Prefix and Selector_Name
7349
7350 if Nkind (N) = N_Expanded_Name then
7351 Set_Prefix
7352 (New_N, Copy_Generic_Node (Prefix (N), New_N, Instantiating));
7353
7354 Set_Selector_Name (New_N,
7355 Copy_Generic_Node (Selector_Name (N), New_N, Instantiating));
7356
7357 -- For operators, we must copy the right operand
7358
7359 elsif Nkind (N) in N_Op then
7360 Set_Right_Opnd (New_N,
7361 Copy_Generic_Node (Right_Opnd (N), New_N, Instantiating));
7362
7363 -- And for binary operators, the left operand as well
7364
7365 if Nkind (N) in N_Binary_Op then
7366 Set_Left_Opnd (New_N,
7367 Copy_Generic_Node (Left_Opnd (N), New_N, Instantiating));
7368 end if;
7369 end if;
7370
7371 -- Establish a link between an entity from the generic template and the
7372 -- corresponding entity in the generic copy to be analyzed.
7373
7374 elsif Nkind (N) in N_Entity then
7375 if not Instantiating then
7376 Set_Associated_Entity (N, New_N);
7377 end if;
7378
7379 -- Clear any existing link the copy may inherit from the replicated
7380 -- generic template entity.
7381
7382 Set_Associated_Entity (New_N, Empty);
7383
7384 -- Special casing for stubs
7385
7386 elsif Nkind (N) in N_Body_Stub then
7387
7388 -- In any case, we must copy the specification or defining
7389 -- identifier as appropriate.
7390
7391 if Nkind (N) = N_Subprogram_Body_Stub then
7392 Set_Specification (New_N,
7393 Copy_Generic_Node (Specification (N), New_N, Instantiating));
7394
7395 else
7396 Set_Defining_Identifier (New_N,
7397 Copy_Generic_Node
7398 (Defining_Identifier (N), New_N, Instantiating));
7399 end if;
7400
7401 -- If we are not instantiating, then this is where we load and
7402 -- analyze subunits, i.e. at the point where the stub occurs. A
7403 -- more permissive system might defer this analysis to the point
7404 -- of instantiation, but this seems too complicated for now.
7405
7406 if not Instantiating then
7407 declare
7408 Subunit_Name : constant Unit_Name_Type := Get_Unit_Name (N);
7409 Subunit : Node_Id;
7410 Unum : Unit_Number_Type;
7411 New_Body : Node_Id;
7412
7413 begin
7414 -- Make sure that, if it is a subunit of the main unit that is
7415 -- preprocessed and if -gnateG is specified, the preprocessed
7416 -- file will be written.
7417
7418 Lib.Analysing_Subunit_Of_Main :=
7419 Lib.In_Extended_Main_Source_Unit (N);
7420 Unum :=
7421 Load_Unit
7422 (Load_Name => Subunit_Name,
7423 Required => False,
7424 Subunit => True,
7425 Error_Node => N);
7426 Lib.Analysing_Subunit_Of_Main := False;
7427
7428 -- If the proper body is not found, a warning message will be
7429 -- emitted when analyzing the stub, or later at the point of
7430 -- instantiation. Here we just leave the stub as is.
7431
7432 if Unum = No_Unit then
7433 Subunits_Missing := True;
7434 goto Subunit_Not_Found;
7435 end if;
7436
7437 Subunit := Cunit (Unum);
7438
7439 if Nkind (Unit (Subunit)) /= N_Subunit then
7440 Error_Msg_N
7441 ("found child unit instead of expected SEPARATE subunit",
7442 Subunit);
7443 Error_Msg_Sloc := Sloc (N);
7444 Error_Msg_N ("\to complete stub #", Subunit);
7445 goto Subunit_Not_Found;
7446 end if;
7447
7448 -- We must create a generic copy of the subunit, in order to
7449 -- perform semantic analysis on it, and we must replace the
7450 -- stub in the original generic unit with the subunit, in order
7451 -- to preserve non-local references within.
7452
7453 -- Only the proper body needs to be copied. Library_Unit and
7454 -- context clause are simply inherited by the generic copy.
7455 -- Note that the copy (which may be recursive if there are
7456 -- nested subunits) must be done first, before attaching it to
7457 -- the enclosing generic.
7458
7459 New_Body :=
7460 Copy_Generic_Node
7461 (Proper_Body (Unit (Subunit)),
7462 Empty, Instantiating => False);
7463
7464 -- Now place the original proper body in the original generic
7465 -- unit. This is a body, not a compilation unit.
7466
7467 Rewrite (N, Proper_Body (Unit (Subunit)));
7468 Set_Is_Compilation_Unit (Defining_Entity (N), False);
7469 Set_Was_Originally_Stub (N);
7470
7471 -- Finally replace the body of the subunit with its copy, and
7472 -- make this new subunit into the library unit of the generic
7473 -- copy, which does not have stubs any longer.
7474
7475 Set_Proper_Body (Unit (Subunit), New_Body);
7476 Set_Library_Unit (New_N, Subunit);
7477 Inherit_Context (Unit (Subunit), N);
7478 end;
7479
7480 -- If we are instantiating, this must be an error case, since
7481 -- otherwise we would have replaced the stub node by the proper body
7482 -- that corresponds. So just ignore it in the copy (i.e. we have
7483 -- copied it, and that is good enough).
7484
7485 else
7486 null;
7487 end if;
7488
7489 <<Subunit_Not_Found>> null;
7490
7491 -- If the node is a compilation unit, it is the subunit of a stub, which
7492 -- has been loaded already (see code below). In this case, the library
7493 -- unit field of N points to the parent unit (which is a compilation
7494 -- unit) and need not (and cannot) be copied.
7495
7496 -- When the proper body of the stub is analyzed, the library_unit link
7497 -- is used to establish the proper context (see sem_ch10).
7498
7499 -- The other fields of a compilation unit are copied as usual
7500
7501 elsif Nkind (N) = N_Compilation_Unit then
7502
7503 -- This code can only be executed when not instantiating, because in
7504 -- the copy made for an instantiation, the compilation unit node has
7505 -- disappeared at the point that a stub is replaced by its proper
7506 -- body.
7507
7508 pragma Assert (not Instantiating);
7509
7510 Set_Context_Items (New_N,
7511 Copy_Generic_List (Context_Items (N), New_N));
7512
7513 Set_Unit (New_N,
7514 Copy_Generic_Node (Unit (N), New_N, False));
7515
7516 Set_First_Inlined_Subprogram (New_N,
7517 Copy_Generic_Node
7518 (First_Inlined_Subprogram (N), New_N, False));
7519
7520 Set_Aux_Decls_Node (New_N,
7521 Copy_Generic_Node (Aux_Decls_Node (N), New_N, False));
7522
7523 -- For an assignment node, the assignment is known to be semantically
7524 -- legal if we are instantiating the template. This avoids incorrect
7525 -- diagnostics in generated code.
7526
7527 elsif Nkind (N) = N_Assignment_Statement then
7528
7529 -- Copy name and expression fields in usual manner
7530
7531 Set_Name (New_N,
7532 Copy_Generic_Node (Name (N), New_N, Instantiating));
7533
7534 Set_Expression (New_N,
7535 Copy_Generic_Node (Expression (N), New_N, Instantiating));
7536
7537 if Instantiating then
7538 Set_Assignment_OK (Name (New_N), True);
7539 end if;
7540
7541 elsif Nkind_In (N, N_Aggregate, N_Extension_Aggregate) then
7542 if not Instantiating then
7543 Set_Associated_Node (N, New_N);
7544
7545 else
7546 if Present (Get_Associated_Node (N))
7547 and then Nkind (Get_Associated_Node (N)) = Nkind (N)
7548 then
7549 -- In the generic the aggregate has some composite type. If at
7550 -- the point of instantiation the type has a private view,
7551 -- install the full view (and that of its ancestors, if any).
7552
7553 declare
7554 T : Entity_Id := (Etype (Get_Associated_Node (New_N)));
7555 Rt : Entity_Id;
7556
7557 begin
7558 if Present (T) and then Is_Private_Type (T) then
7559 Switch_View (T);
7560 end if;
7561
7562 if Present (T)
7563 and then Is_Tagged_Type (T)
7564 and then Is_Derived_Type (T)
7565 then
7566 Rt := Root_Type (T);
7567
7568 loop
7569 T := Etype (T);
7570
7571 if Is_Private_Type (T) then
7572 Switch_View (T);
7573 end if;
7574
7575 exit when T = Rt;
7576 end loop;
7577 end if;
7578 end;
7579 end if;
7580 end if;
7581
7582 -- Do not copy the associated node, which points to the generic copy
7583 -- of the aggregate.
7584
7585 declare
7586 use Atree.Unchecked_Access;
7587 -- This code section is part of the implementation of an untyped
7588 -- tree traversal, so it needs direct access to node fields.
7589
7590 begin
7591 Set_Field1 (New_N, Copy_Generic_Descendant (Field1 (N)));
7592 Set_Field2 (New_N, Copy_Generic_Descendant (Field2 (N)));
7593 Set_Field3 (New_N, Copy_Generic_Descendant (Field3 (N)));
7594 Set_Field5 (New_N, Copy_Generic_Descendant (Field5 (N)));
7595 end;
7596
7597 -- Allocators do not have an identifier denoting the access type, so we
7598 -- must locate it through the expression to check whether the views are
7599 -- consistent.
7600
7601 elsif Nkind (N) = N_Allocator
7602 and then Nkind (Expression (N)) = N_Qualified_Expression
7603 and then Is_Entity_Name (Subtype_Mark (Expression (N)))
7604 and then Instantiating
7605 then
7606 declare
7607 T : constant Node_Id :=
7608 Get_Associated_Node (Subtype_Mark (Expression (N)));
7609 Acc_T : Entity_Id;
7610
7611 begin
7612 if Present (T) then
7613
7614 -- Retrieve the allocator node in the generic copy
7615
7616 Acc_T := Etype (Parent (Parent (T)));
7617
7618 if Present (Acc_T) and then Is_Private_Type (Acc_T) then
7619 Switch_View (Acc_T);
7620 end if;
7621 end if;
7622
7623 Copy_Descendants;
7624 end;
7625
7626 -- For a proper body, we must catch the case of a proper body that
7627 -- replaces a stub. This represents the point at which a separate
7628 -- compilation unit, and hence template file, may be referenced, so we
7629 -- must make a new source instantiation entry for the template of the
7630 -- subunit, and ensure that all nodes in the subunit are adjusted using
7631 -- this new source instantiation entry.
7632
7633 elsif Nkind (N) in N_Proper_Body then
7634 declare
7635 Save_Adjustment : constant Sloc_Adjustment := S_Adjustment;
7636
7637 begin
7638 if Instantiating and then Was_Originally_Stub (N) then
7639 Create_Instantiation_Source
7640 (Instantiation_Node,
7641 Defining_Entity (N),
7642 S_Adjustment);
7643 end if;
7644
7645 -- Now copy the fields of the proper body, using the new
7646 -- adjustment factor if one was needed as per test above.
7647
7648 Copy_Descendants;
7649
7650 -- Restore the original adjustment factor in case changed
7651
7652 S_Adjustment := Save_Adjustment;
7653 end;
7654
7655 elsif Nkind (N) = N_Pragma and then Instantiating then
7656
7657 -- Do not copy Comment or Ident pragmas their content is relevant to
7658 -- the generic unit, not to the instantiating unit.
7659
7660 if Nam_In (Pragma_Name (N), Name_Comment, Name_Ident) then
7661 New_N := Make_Null_Statement (Sloc (N));
7662
7663 -- Do not copy pragmas generated from aspects because the pragmas do
7664 -- not carry any semantic information, plus they will be regenerated
7665 -- in the instance.
7666
7667 -- However, generating C we need to copy them since postconditions
7668 -- are inlined by the front end, and the front-end inlining machinery
7669 -- relies on this routine to perform inlining.
7670
7671 elsif From_Aspect_Specification (N)
7672 and then not Modify_Tree_For_C
7673 then
7674 New_N := Make_Null_Statement (Sloc (N));
7675
7676 else
7677 Copy_Descendants;
7678 end if;
7679
7680 elsif Nkind_In (N, N_Integer_Literal, N_Real_Literal) then
7681
7682 -- No descendant fields need traversing
7683
7684 null;
7685
7686 elsif Nkind (N) = N_String_Literal
7687 and then Present (Etype (N))
7688 and then Instantiating
7689 then
7690 -- If the string is declared in an outer scope, the string_literal
7691 -- subtype created for it may have the wrong scope. Force reanalysis
7692 -- of the constant to generate a new itype in the proper context.
7693
7694 Set_Etype (New_N, Empty);
7695 Set_Analyzed (New_N, False);
7696
7697 -- For the remaining nodes, copy their descendants recursively
7698
7699 else
7700 Copy_Descendants;
7701
7702 if Instantiating and then Nkind (N) = N_Subprogram_Body then
7703 Set_Generic_Parent (Specification (New_N), N);
7704
7705 -- Should preserve Corresponding_Spec??? (12.3(14))
7706 end if;
7707 end if;
7708
7709 -- Propagate dimensions if present, so that they are reflected in the
7710 -- instance.
7711
7712 if Nkind (N) in N_Has_Etype
7713 and then (Nkind (N) in N_Op or else Is_Entity_Name (N))
7714 and then Present (Etype (N))
7715 and then Is_Floating_Point_Type (Etype (N))
7716 and then Has_Dimension_System (Etype (N))
7717 then
7718 Copy_Dimensions (N, New_N);
7719 end if;
7720
7721 return New_N;
7722 end Copy_Generic_Node;
7723
7724 ----------------------------
7725 -- Denotes_Formal_Package --
7726 ----------------------------
7727
7728 function Denotes_Formal_Package
7729 (Pack : Entity_Id;
7730 On_Exit : Boolean := False;
7731 Instance : Entity_Id := Empty) return Boolean
7732 is
7733 Par : Entity_Id;
7734 Scop : constant Entity_Id := Scope (Pack);
7735 E : Entity_Id;
7736
7737 function Is_Actual_Of_Previous_Formal (P : Entity_Id) return Boolean;
7738 -- The package in question may be an actual for a previous formal
7739 -- package P of the current instance, so examine its actuals as well.
7740 -- This must be recursive over other formal packages.
7741
7742 ----------------------------------
7743 -- Is_Actual_Of_Previous_Formal --
7744 ----------------------------------
7745
7746 function Is_Actual_Of_Previous_Formal (P : Entity_Id) return Boolean is
7747 E1 : Entity_Id;
7748
7749 begin
7750 E1 := First_Entity (P);
7751 while Present (E1) and then E1 /= Instance loop
7752 if Ekind (E1) = E_Package
7753 and then Nkind (Parent (E1)) = N_Package_Renaming_Declaration
7754 then
7755 if Renamed_Object (E1) = Pack then
7756 return True;
7757
7758 elsif E1 = P or else Renamed_Object (E1) = P then
7759 return False;
7760
7761 elsif Is_Actual_Of_Previous_Formal (E1) then
7762 return True;
7763 end if;
7764 end if;
7765
7766 Next_Entity (E1);
7767 end loop;
7768
7769 return False;
7770 end Is_Actual_Of_Previous_Formal;
7771
7772 -- Start of processing for Denotes_Formal_Package
7773
7774 begin
7775 if On_Exit then
7776 Par :=
7777 Instance_Envs.Table
7778 (Instance_Envs.Last).Instantiated_Parent.Act_Id;
7779 else
7780 Par := Current_Instantiated_Parent.Act_Id;
7781 end if;
7782
7783 if Ekind (Scop) = E_Generic_Package
7784 or else Nkind (Unit_Declaration_Node (Scop)) =
7785 N_Generic_Subprogram_Declaration
7786 then
7787 return True;
7788
7789 elsif Nkind (Original_Node (Unit_Declaration_Node (Pack))) =
7790 N_Formal_Package_Declaration
7791 then
7792 return True;
7793
7794 elsif No (Par) then
7795 return False;
7796
7797 else
7798 -- Check whether this package is associated with a formal package of
7799 -- the enclosing instantiation. Iterate over the list of renamings.
7800
7801 E := First_Entity (Par);
7802 while Present (E) loop
7803 if Ekind (E) /= E_Package
7804 or else Nkind (Parent (E)) /= N_Package_Renaming_Declaration
7805 then
7806 null;
7807
7808 elsif Renamed_Object (E) = Par then
7809 return False;
7810
7811 elsif Renamed_Object (E) = Pack then
7812 return True;
7813
7814 elsif Is_Actual_Of_Previous_Formal (E) then
7815 return True;
7816
7817 end if;
7818
7819 Next_Entity (E);
7820 end loop;
7821
7822 return False;
7823 end if;
7824 end Denotes_Formal_Package;
7825
7826 -----------------
7827 -- End_Generic --
7828 -----------------
7829
7830 procedure End_Generic is
7831 begin
7832 -- ??? More things could be factored out in this routine. Should
7833 -- probably be done at a later stage.
7834
7835 Inside_A_Generic := Generic_Flags.Table (Generic_Flags.Last);
7836 Generic_Flags.Decrement_Last;
7837
7838 Expander_Mode_Restore;
7839 end End_Generic;
7840
7841 -------------
7842 -- Earlier --
7843 -------------
7844
7845 function Earlier (N1, N2 : Node_Id) return Boolean is
7846 procedure Find_Depth (P : in out Node_Id; D : in out Integer);
7847 -- Find distance from given node to enclosing compilation unit
7848
7849 ----------------
7850 -- Find_Depth --
7851 ----------------
7852
7853 procedure Find_Depth (P : in out Node_Id; D : in out Integer) is
7854 begin
7855 while Present (P)
7856 and then Nkind (P) /= N_Compilation_Unit
7857 loop
7858 P := True_Parent (P);
7859 D := D + 1;
7860 end loop;
7861 end Find_Depth;
7862
7863 -- Local declarations
7864
7865 D1 : Integer := 0;
7866 D2 : Integer := 0;
7867 P1 : Node_Id := N1;
7868 P2 : Node_Id := N2;
7869 T1 : Source_Ptr;
7870 T2 : Source_Ptr;
7871
7872 -- Start of processing for Earlier
7873
7874 begin
7875 Find_Depth (P1, D1);
7876 Find_Depth (P2, D2);
7877
7878 if P1 /= P2 then
7879 return False;
7880 else
7881 P1 := N1;
7882 P2 := N2;
7883 end if;
7884
7885 while D1 > D2 loop
7886 P1 := True_Parent (P1);
7887 D1 := D1 - 1;
7888 end loop;
7889
7890 while D2 > D1 loop
7891 P2 := True_Parent (P2);
7892 D2 := D2 - 1;
7893 end loop;
7894
7895 -- At this point P1 and P2 are at the same distance from the root.
7896 -- We examine their parents until we find a common declarative list.
7897 -- If we reach the root, N1 and N2 do not descend from the same
7898 -- declarative list (e.g. one is nested in the declarative part and
7899 -- the other is in a block in the statement part) and the earlier
7900 -- one is already frozen.
7901
7902 while not Is_List_Member (P1)
7903 or else not Is_List_Member (P2)
7904 or else List_Containing (P1) /= List_Containing (P2)
7905 loop
7906 P1 := True_Parent (P1);
7907 P2 := True_Parent (P2);
7908
7909 if Nkind (Parent (P1)) = N_Subunit then
7910 P1 := Corresponding_Stub (Parent (P1));
7911 end if;
7912
7913 if Nkind (Parent (P2)) = N_Subunit then
7914 P2 := Corresponding_Stub (Parent (P2));
7915 end if;
7916
7917 if P1 = P2 then
7918 return False;
7919 end if;
7920 end loop;
7921
7922 -- Expanded code usually shares the source location of the original
7923 -- construct it was generated for. This however may not necessarily
7924 -- reflect the true location of the code within the tree.
7925
7926 -- Before comparing the slocs of the two nodes, make sure that we are
7927 -- working with correct source locations. Assume that P1 is to the left
7928 -- of P2. If either one does not come from source, traverse the common
7929 -- list heading towards the other node and locate the first source
7930 -- statement.
7931
7932 -- P1 P2
7933 -- ----+===+===+--------------+===+===+----
7934 -- expanded code expanded code
7935
7936 if not Comes_From_Source (P1) then
7937 while Present (P1) loop
7938
7939 -- Neither P2 nor a source statement were located during the
7940 -- search. If we reach the end of the list, then P1 does not
7941 -- occur earlier than P2.
7942
7943 -- ---->
7944 -- start --- P2 ----- P1 --- end
7945
7946 if No (Next (P1)) then
7947 return False;
7948
7949 -- We encounter P2 while going to the right of the list. This
7950 -- means that P1 does indeed appear earlier.
7951
7952 -- ---->
7953 -- start --- P1 ===== P2 --- end
7954 -- expanded code in between
7955
7956 elsif P1 = P2 then
7957 return True;
7958
7959 -- No need to look any further since we have located a source
7960 -- statement.
7961
7962 elsif Comes_From_Source (P1) then
7963 exit;
7964 end if;
7965
7966 -- Keep going right
7967
7968 Next (P1);
7969 end loop;
7970 end if;
7971
7972 if not Comes_From_Source (P2) then
7973 while Present (P2) loop
7974
7975 -- Neither P1 nor a source statement were located during the
7976 -- search. If we reach the start of the list, then P1 does not
7977 -- occur earlier than P2.
7978
7979 -- <----
7980 -- start --- P2 --- P1 --- end
7981
7982 if No (Prev (P2)) then
7983 return False;
7984
7985 -- We encounter P1 while going to the left of the list. This
7986 -- means that P1 does indeed appear earlier.
7987
7988 -- <----
7989 -- start --- P1 ===== P2 --- end
7990 -- expanded code in between
7991
7992 elsif P2 = P1 then
7993 return True;
7994
7995 -- No need to look any further since we have located a source
7996 -- statement.
7997
7998 elsif Comes_From_Source (P2) then
7999 exit;
8000 end if;
8001
8002 -- Keep going left
8003
8004 Prev (P2);
8005 end loop;
8006 end if;
8007
8008 -- At this point either both nodes came from source or we approximated
8009 -- their source locations through neighboring source statements.
8010
8011 T1 := Top_Level_Location (Sloc (P1));
8012 T2 := Top_Level_Location (Sloc (P2));
8013
8014 -- When two nodes come from the same instance, they have identical top
8015 -- level locations. To determine proper relation within the tree, check
8016 -- their locations within the template.
8017
8018 if T1 = T2 then
8019 return Sloc (P1) < Sloc (P2);
8020
8021 -- The two nodes either come from unrelated instances or do not come
8022 -- from instantiated code at all.
8023
8024 else
8025 return T1 < T2;
8026 end if;
8027 end Earlier;
8028
8029 ----------------------
8030 -- Find_Actual_Type --
8031 ----------------------
8032
8033 function Find_Actual_Type
8034 (Typ : Entity_Id;
8035 Gen_Type : Entity_Id) return Entity_Id
8036 is
8037 Gen_Scope : constant Entity_Id := Scope (Gen_Type);
8038 T : Entity_Id;
8039
8040 begin
8041 -- Special processing only applies to child units
8042
8043 if not Is_Child_Unit (Gen_Scope) then
8044 return Get_Instance_Of (Typ);
8045
8046 -- If designated or component type is itself a formal of the child unit,
8047 -- its instance is available.
8048
8049 elsif Scope (Typ) = Gen_Scope then
8050 return Get_Instance_Of (Typ);
8051
8052 -- If the array or access type is not declared in the parent unit,
8053 -- no special processing needed.
8054
8055 elsif not Is_Generic_Type (Typ)
8056 and then Scope (Gen_Scope) /= Scope (Typ)
8057 then
8058 return Get_Instance_Of (Typ);
8059
8060 -- Otherwise, retrieve designated or component type by visibility
8061
8062 else
8063 T := Current_Entity (Typ);
8064 while Present (T) loop
8065 if In_Open_Scopes (Scope (T)) then
8066 return T;
8067 elsif Is_Generic_Actual_Type (T) then
8068 return T;
8069 end if;
8070
8071 T := Homonym (T);
8072 end loop;
8073
8074 return Typ;
8075 end if;
8076 end Find_Actual_Type;
8077
8078 ----------------------------
8079 -- Freeze_Subprogram_Body --
8080 ----------------------------
8081
8082 procedure Freeze_Subprogram_Body
8083 (Inst_Node : Node_Id;
8084 Gen_Body : Node_Id;
8085 Pack_Id : Entity_Id)
8086 is
8087 Gen_Unit : constant Entity_Id := Get_Generic_Entity (Inst_Node);
8088 Par : constant Entity_Id := Scope (Gen_Unit);
8089 E_G_Id : Entity_Id;
8090 Enc_G : Entity_Id;
8091 Enc_I : Node_Id;
8092 F_Node : Node_Id;
8093
8094 function Enclosing_Package_Body (N : Node_Id) return Node_Id;
8095 -- Find innermost package body that encloses the given node, and which
8096 -- is not a compilation unit. Freeze nodes for the instance, or for its
8097 -- enclosing body, may be inserted after the enclosing_body of the
8098 -- generic unit. Used to determine proper placement of freeze node for
8099 -- both package and subprogram instances.
8100
8101 function Package_Freeze_Node (B : Node_Id) return Node_Id;
8102 -- Find entity for given package body, and locate or create a freeze
8103 -- node for it.
8104
8105 ----------------------------
8106 -- Enclosing_Package_Body --
8107 ----------------------------
8108
8109 function Enclosing_Package_Body (N : Node_Id) return Node_Id is
8110 P : Node_Id;
8111
8112 begin
8113 P := Parent (N);
8114 while Present (P)
8115 and then Nkind (Parent (P)) /= N_Compilation_Unit
8116 loop
8117 if Nkind (P) = N_Package_Body then
8118 if Nkind (Parent (P)) = N_Subunit then
8119 return Corresponding_Stub (Parent (P));
8120 else
8121 return P;
8122 end if;
8123 end if;
8124
8125 P := True_Parent (P);
8126 end loop;
8127
8128 return Empty;
8129 end Enclosing_Package_Body;
8130
8131 -------------------------
8132 -- Package_Freeze_Node --
8133 -------------------------
8134
8135 function Package_Freeze_Node (B : Node_Id) return Node_Id is
8136 Id : Entity_Id;
8137
8138 begin
8139 if Nkind (B) = N_Package_Body then
8140 Id := Corresponding_Spec (B);
8141 else pragma Assert (Nkind (B) = N_Package_Body_Stub);
8142 Id := Corresponding_Spec (Proper_Body (Unit (Library_Unit (B))));
8143 end if;
8144
8145 Ensure_Freeze_Node (Id);
8146 return Freeze_Node (Id);
8147 end Package_Freeze_Node;
8148
8149 -- Start of processing for Freeze_Subprogram_Body
8150
8151 begin
8152 -- If the instance and the generic body appear within the same unit, and
8153 -- the instance precedes the generic, the freeze node for the instance
8154 -- must appear after that of the generic. If the generic is nested
8155 -- within another instance I2, then current instance must be frozen
8156 -- after I2. In both cases, the freeze nodes are those of enclosing
8157 -- packages. Otherwise, the freeze node is placed at the end of the
8158 -- current declarative part.
8159
8160 Enc_G := Enclosing_Package_Body (Gen_Body);
8161 Enc_I := Enclosing_Package_Body (Inst_Node);
8162 Ensure_Freeze_Node (Pack_Id);
8163 F_Node := Freeze_Node (Pack_Id);
8164
8165 if Is_Generic_Instance (Par)
8166 and then Present (Freeze_Node (Par))
8167 and then In_Same_Declarative_Part (Freeze_Node (Par), Inst_Node)
8168 then
8169 -- The parent was a premature instantiation. Insert freeze node at
8170 -- the end the current declarative part.
8171
8172 if ABE_Is_Certain (Get_Package_Instantiation_Node (Par)) then
8173 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8174
8175 -- Handle the following case:
8176 --
8177 -- package Parent_Inst is new ...
8178 -- Parent_Inst []
8179 --
8180 -- procedure P ... -- this body freezes Parent_Inst
8181 --
8182 -- package Inst is new ...
8183 --
8184 -- In this particular scenario, the freeze node for Inst must be
8185 -- inserted in the same manner as that of Parent_Inst - before the
8186 -- next source body or at the end of the declarative list (body not
8187 -- available). If body P did not exist and Parent_Inst was frozen
8188 -- after Inst, either by a body following Inst or at the end of the
8189 -- declarative region, the freeze node for Inst must be inserted
8190 -- after that of Parent_Inst. This relation is established by
8191 -- comparing the Slocs of Parent_Inst freeze node and Inst.
8192
8193 elsif List_Containing (Get_Package_Instantiation_Node (Par)) =
8194 List_Containing (Inst_Node)
8195 and then Sloc (Freeze_Node (Par)) < Sloc (Inst_Node)
8196 then
8197 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8198
8199 else
8200 Insert_After (Freeze_Node (Par), F_Node);
8201 end if;
8202
8203 -- The body enclosing the instance should be frozen after the body that
8204 -- includes the generic, because the body of the instance may make
8205 -- references to entities therein. If the two are not in the same
8206 -- declarative part, or if the one enclosing the instance is frozen
8207 -- already, freeze the instance at the end of the current declarative
8208 -- part.
8209
8210 elsif Is_Generic_Instance (Par)
8211 and then Present (Freeze_Node (Par))
8212 and then Present (Enc_I)
8213 then
8214 if In_Same_Declarative_Part (Freeze_Node (Par), Enc_I)
8215 or else
8216 (Nkind (Enc_I) = N_Package_Body
8217 and then
8218 In_Same_Declarative_Part (Freeze_Node (Par), Parent (Enc_I)))
8219 then
8220 -- The enclosing package may contain several instances. Rather
8221 -- than computing the earliest point at which to insert its freeze
8222 -- node, we place it at the end of the declarative part of the
8223 -- parent of the generic.
8224
8225 Insert_Freeze_Node_For_Instance
8226 (Freeze_Node (Par), Package_Freeze_Node (Enc_I));
8227 end if;
8228
8229 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8230
8231 elsif Present (Enc_G)
8232 and then Present (Enc_I)
8233 and then Enc_G /= Enc_I
8234 and then Earlier (Inst_Node, Gen_Body)
8235 then
8236 if Nkind (Enc_G) = N_Package_Body then
8237 E_G_Id :=
8238 Corresponding_Spec (Enc_G);
8239 else pragma Assert (Nkind (Enc_G) = N_Package_Body_Stub);
8240 E_G_Id :=
8241 Corresponding_Spec (Proper_Body (Unit (Library_Unit (Enc_G))));
8242 end if;
8243
8244 -- Freeze package that encloses instance, and place node after the
8245 -- package that encloses generic. If enclosing package is already
8246 -- frozen we have to assume it is at the proper place. This may be a
8247 -- potential ABE that requires dynamic checking. Do not add a freeze
8248 -- node if the package that encloses the generic is inside the body
8249 -- that encloses the instance, because the freeze node would be in
8250 -- the wrong scope. Additional contortions needed if the bodies are
8251 -- within a subunit.
8252
8253 declare
8254 Enclosing_Body : Node_Id;
8255
8256 begin
8257 if Nkind (Enc_I) = N_Package_Body_Stub then
8258 Enclosing_Body := Proper_Body (Unit (Library_Unit (Enc_I)));
8259 else
8260 Enclosing_Body := Enc_I;
8261 end if;
8262
8263 if Parent (List_Containing (Enc_G)) /= Enclosing_Body then
8264 Insert_Freeze_Node_For_Instance
8265 (Enc_G, Package_Freeze_Node (Enc_I));
8266 end if;
8267 end;
8268
8269 -- Freeze enclosing subunit before instance
8270
8271 Ensure_Freeze_Node (E_G_Id);
8272
8273 if not Is_List_Member (Freeze_Node (E_G_Id)) then
8274 Insert_After (Enc_G, Freeze_Node (E_G_Id));
8275 end if;
8276
8277 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8278
8279 else
8280 -- If none of the above, insert freeze node at the end of the current
8281 -- declarative part.
8282
8283 Insert_Freeze_Node_For_Instance (Inst_Node, F_Node);
8284 end if;
8285 end Freeze_Subprogram_Body;
8286
8287 ----------------
8288 -- Get_Gen_Id --
8289 ----------------
8290
8291 function Get_Gen_Id (E : Assoc_Ptr) return Entity_Id is
8292 begin
8293 return Generic_Renamings.Table (E).Gen_Id;
8294 end Get_Gen_Id;
8295
8296 ---------------------
8297 -- Get_Instance_Of --
8298 ---------------------
8299
8300 function Get_Instance_Of (A : Entity_Id) return Entity_Id is
8301 Res : constant Assoc_Ptr := Generic_Renamings_HTable.Get (A);
8302
8303 begin
8304 if Res /= Assoc_Null then
8305 return Generic_Renamings.Table (Res).Act_Id;
8306
8307 else
8308 -- On exit, entity is not instantiated: not a generic parameter, or
8309 -- else parameter of an inner generic unit.
8310
8311 return A;
8312 end if;
8313 end Get_Instance_Of;
8314
8315 ------------------------------------
8316 -- Get_Package_Instantiation_Node --
8317 ------------------------------------
8318
8319 function Get_Package_Instantiation_Node (A : Entity_Id) return Node_Id is
8320 Decl : Node_Id := Unit_Declaration_Node (A);
8321 Inst : Node_Id;
8322
8323 begin
8324 -- If the Package_Instantiation attribute has been set on the package
8325 -- entity, then use it directly when it (or its Original_Node) refers
8326 -- to an N_Package_Instantiation node. In principle it should be
8327 -- possible to have this field set in all cases, which should be
8328 -- investigated, and would allow this function to be significantly
8329 -- simplified. ???
8330
8331 Inst := Package_Instantiation (A);
8332
8333 if Present (Inst) then
8334 if Nkind (Inst) = N_Package_Instantiation then
8335 return Inst;
8336
8337 elsif Nkind (Original_Node (Inst)) = N_Package_Instantiation then
8338 return Original_Node (Inst);
8339 end if;
8340 end if;
8341
8342 -- If the instantiation is a compilation unit that does not need body
8343 -- then the instantiation node has been rewritten as a package
8344 -- declaration for the instance, and we return the original node.
8345
8346 -- If it is a compilation unit and the instance node has not been
8347 -- rewritten, then it is still the unit of the compilation. Finally, if
8348 -- a body is present, this is a parent of the main unit whose body has
8349 -- been compiled for inlining purposes, and the instantiation node has
8350 -- been rewritten with the instance body.
8351
8352 -- Otherwise the instantiation node appears after the declaration. If
8353 -- the entity is a formal package, the declaration may have been
8354 -- rewritten as a generic declaration (in the case of a formal with box)
8355 -- or left as a formal package declaration if it has actuals, and is
8356 -- found with a forward search.
8357
8358 if Nkind (Parent (Decl)) = N_Compilation_Unit then
8359 if Nkind (Decl) = N_Package_Declaration
8360 and then Present (Corresponding_Body (Decl))
8361 then
8362 Decl := Unit_Declaration_Node (Corresponding_Body (Decl));
8363 end if;
8364
8365 if Nkind (Original_Node (Decl)) = N_Package_Instantiation then
8366 return Original_Node (Decl);
8367 else
8368 return Unit (Parent (Decl));
8369 end if;
8370
8371 elsif Nkind (Decl) = N_Package_Declaration
8372 and then Nkind (Original_Node (Decl)) = N_Formal_Package_Declaration
8373 then
8374 return Original_Node (Decl);
8375
8376 else
8377 Inst := Next (Decl);
8378 while not Nkind_In (Inst, N_Package_Instantiation,
8379 N_Formal_Package_Declaration)
8380 loop
8381 Next (Inst);
8382 end loop;
8383
8384 return Inst;
8385 end if;
8386 end Get_Package_Instantiation_Node;
8387
8388 ------------------------
8389 -- Has_Been_Exchanged --
8390 ------------------------
8391
8392 function Has_Been_Exchanged (E : Entity_Id) return Boolean is
8393 Next : Elmt_Id;
8394
8395 begin
8396 Next := First_Elmt (Exchanged_Views);
8397 while Present (Next) loop
8398 if Full_View (Node (Next)) = E then
8399 return True;
8400 end if;
8401
8402 Next_Elmt (Next);
8403 end loop;
8404
8405 return False;
8406 end Has_Been_Exchanged;
8407
8408 ----------
8409 -- Hash --
8410 ----------
8411
8412 function Hash (F : Entity_Id) return HTable_Range is
8413 begin
8414 return HTable_Range (F mod HTable_Size);
8415 end Hash;
8416
8417 ------------------------
8418 -- Hide_Current_Scope --
8419 ------------------------
8420
8421 procedure Hide_Current_Scope is
8422 C : constant Entity_Id := Current_Scope;
8423 E : Entity_Id;
8424
8425 begin
8426 Set_Is_Hidden_Open_Scope (C);
8427
8428 E := First_Entity (C);
8429 while Present (E) loop
8430 if Is_Immediately_Visible (E) then
8431 Set_Is_Immediately_Visible (E, False);
8432 Append_Elmt (E, Hidden_Entities);
8433 end if;
8434
8435 Next_Entity (E);
8436 end loop;
8437
8438 -- Make the scope name invisible as well. This is necessary, but might
8439 -- conflict with calls to Rtsfind later on, in case the scope is a
8440 -- predefined one. There is no clean solution to this problem, so for
8441 -- now we depend on the user not redefining Standard itself in one of
8442 -- the parent units.
8443
8444 if Is_Immediately_Visible (C) and then C /= Standard_Standard then
8445 Set_Is_Immediately_Visible (C, False);
8446 Append_Elmt (C, Hidden_Entities);
8447 end if;
8448
8449 end Hide_Current_Scope;
8450
8451 --------------
8452 -- Init_Env --
8453 --------------
8454
8455 procedure Init_Env is
8456 Saved : Instance_Env;
8457
8458 begin
8459 Saved.Instantiated_Parent := Current_Instantiated_Parent;
8460 Saved.Exchanged_Views := Exchanged_Views;
8461 Saved.Hidden_Entities := Hidden_Entities;
8462 Saved.Current_Sem_Unit := Current_Sem_Unit;
8463 Saved.Parent_Unit_Visible := Parent_Unit_Visible;
8464 Saved.Instance_Parent_Unit := Instance_Parent_Unit;
8465
8466 -- Save configuration switches. These may be reset if the unit is a
8467 -- predefined unit, and the current mode is not Ada 2005.
8468
8469 Save_Opt_Config_Switches (Saved.Switches);
8470
8471 Instance_Envs.Append (Saved);
8472
8473 Exchanged_Views := New_Elmt_List;
8474 Hidden_Entities := New_Elmt_List;
8475
8476 -- Make dummy entry for Instantiated parent. If generic unit is legal,
8477 -- this is set properly in Set_Instance_Env.
8478
8479 Current_Instantiated_Parent :=
8480 (Current_Scope, Current_Scope, Assoc_Null);
8481 end Init_Env;
8482
8483 ------------------------------
8484 -- In_Same_Declarative_Part --
8485 ------------------------------
8486
8487 function In_Same_Declarative_Part
8488 (F_Node : Node_Id;
8489 Inst : Node_Id) return Boolean
8490 is
8491 Decls : constant Node_Id := Parent (F_Node);
8492 Nod : Node_Id;
8493
8494 begin
8495 Nod := Parent (Inst);
8496 while Present (Nod) loop
8497 if Nod = Decls then
8498 return True;
8499
8500 elsif Nkind_In (Nod, N_Subprogram_Body,
8501 N_Package_Body,
8502 N_Package_Declaration,
8503 N_Task_Body,
8504 N_Protected_Body,
8505 N_Block_Statement)
8506 then
8507 return False;
8508
8509 elsif Nkind (Nod) = N_Subunit then
8510 Nod := Corresponding_Stub (Nod);
8511
8512 elsif Nkind (Nod) = N_Compilation_Unit then
8513 return False;
8514
8515 else
8516 Nod := Parent (Nod);
8517 end if;
8518 end loop;
8519
8520 return False;
8521 end In_Same_Declarative_Part;
8522
8523 ---------------------
8524 -- In_Main_Context --
8525 ---------------------
8526
8527 function In_Main_Context (E : Entity_Id) return Boolean is
8528 Context : List_Id;
8529 Clause : Node_Id;
8530 Nam : Node_Id;
8531
8532 begin
8533 if not Is_Compilation_Unit (E)
8534 or else Ekind (E) /= E_Package
8535 or else In_Private_Part (E)
8536 then
8537 return False;
8538 end if;
8539
8540 Context := Context_Items (Cunit (Main_Unit));
8541
8542 Clause := First (Context);
8543 while Present (Clause) loop
8544 if Nkind (Clause) = N_With_Clause then
8545 Nam := Name (Clause);
8546
8547 -- If the current scope is part of the context of the main unit,
8548 -- analysis of the corresponding with_clause is not complete, and
8549 -- the entity is not set. We use the Chars field directly, which
8550 -- might produce false positives in rare cases, but guarantees
8551 -- that we produce all the instance bodies we will need.
8552
8553 if (Is_Entity_Name (Nam) and then Chars (Nam) = Chars (E))
8554 or else (Nkind (Nam) = N_Selected_Component
8555 and then Chars (Selector_Name (Nam)) = Chars (E))
8556 then
8557 return True;
8558 end if;
8559 end if;
8560
8561 Next (Clause);
8562 end loop;
8563
8564 return False;
8565 end In_Main_Context;
8566
8567 ---------------------
8568 -- Inherit_Context --
8569 ---------------------
8570
8571 procedure Inherit_Context (Gen_Decl : Node_Id; Inst : Node_Id) is
8572 Current_Context : List_Id;
8573 Current_Unit : Node_Id;
8574 Item : Node_Id;
8575 New_I : Node_Id;
8576
8577 Clause : Node_Id;
8578 OK : Boolean;
8579 Lib_Unit : Node_Id;
8580
8581 begin
8582 if Nkind (Parent (Gen_Decl)) = N_Compilation_Unit then
8583
8584 -- The inherited context is attached to the enclosing compilation
8585 -- unit. This is either the main unit, or the declaration for the
8586 -- main unit (in case the instantiation appears within the package
8587 -- declaration and the main unit is its body).
8588
8589 Current_Unit := Parent (Inst);
8590 while Present (Current_Unit)
8591 and then Nkind (Current_Unit) /= N_Compilation_Unit
8592 loop
8593 Current_Unit := Parent (Current_Unit);
8594 end loop;
8595
8596 Current_Context := Context_Items (Current_Unit);
8597
8598 Item := First (Context_Items (Parent (Gen_Decl)));
8599 while Present (Item) loop
8600 if Nkind (Item) = N_With_Clause then
8601 Lib_Unit := Library_Unit (Item);
8602
8603 -- Take care to prevent direct cyclic with's
8604
8605 if Lib_Unit /= Current_Unit then
8606
8607 -- Do not add a unit if it is already in the context
8608
8609 Clause := First (Current_Context);
8610 OK := True;
8611 while Present (Clause) loop
8612 if Nkind (Clause) = N_With_Clause and then
8613 Library_Unit (Clause) = Lib_Unit
8614 then
8615 OK := False;
8616 exit;
8617 end if;
8618
8619 Next (Clause);
8620 end loop;
8621
8622 if OK then
8623 New_I := New_Copy (Item);
8624 Set_Implicit_With (New_I, True);
8625 Set_Implicit_With_From_Instantiation (New_I, True);
8626 Append (New_I, Current_Context);
8627 end if;
8628 end if;
8629 end if;
8630
8631 Next (Item);
8632 end loop;
8633 end if;
8634 end Inherit_Context;
8635
8636 ----------------
8637 -- Initialize --
8638 ----------------
8639
8640 procedure Initialize is
8641 begin
8642 Generic_Renamings.Init;
8643 Instance_Envs.Init;
8644 Generic_Flags.Init;
8645 Generic_Renamings_HTable.Reset;
8646 Circularity_Detected := False;
8647 Exchanged_Views := No_Elist;
8648 Hidden_Entities := No_Elist;
8649 end Initialize;
8650
8651 -------------------------------------
8652 -- Insert_Freeze_Node_For_Instance --
8653 -------------------------------------
8654
8655 procedure Insert_Freeze_Node_For_Instance
8656 (N : Node_Id;
8657 F_Node : Node_Id)
8658 is
8659 Decl : Node_Id;
8660 Decls : List_Id;
8661 Inst : Entity_Id;
8662 Par_N : Node_Id;
8663
8664 function Enclosing_Body (N : Node_Id) return Node_Id;
8665 -- Find enclosing package or subprogram body, if any. Freeze node may
8666 -- be placed at end of current declarative list if previous instance
8667 -- and current one have different enclosing bodies.
8668
8669 function Previous_Instance (Gen : Entity_Id) return Entity_Id;
8670 -- Find the local instance, if any, that declares the generic that is
8671 -- being instantiated. If present, the freeze node for this instance
8672 -- must follow the freeze node for the previous instance.
8673
8674 --------------------
8675 -- Enclosing_Body --
8676 --------------------
8677
8678 function Enclosing_Body (N : Node_Id) return Node_Id is
8679 P : Node_Id;
8680
8681 begin
8682 P := Parent (N);
8683 while Present (P)
8684 and then Nkind (Parent (P)) /= N_Compilation_Unit
8685 loop
8686 if Nkind_In (P, N_Package_Body, N_Subprogram_Body) then
8687 if Nkind (Parent (P)) = N_Subunit then
8688 return Corresponding_Stub (Parent (P));
8689 else
8690 return P;
8691 end if;
8692 end if;
8693
8694 P := True_Parent (P);
8695 end loop;
8696
8697 return Empty;
8698 end Enclosing_Body;
8699
8700 -----------------------
8701 -- Previous_Instance --
8702 -----------------------
8703
8704 function Previous_Instance (Gen : Entity_Id) return Entity_Id is
8705 S : Entity_Id;
8706
8707 begin
8708 S := Scope (Gen);
8709 while Present (S) and then S /= Standard_Standard loop
8710 if Is_Generic_Instance (S)
8711 and then In_Same_Source_Unit (S, N)
8712 then
8713 return S;
8714 end if;
8715
8716 S := Scope (S);
8717 end loop;
8718
8719 return Empty;
8720 end Previous_Instance;
8721
8722 -- Start of processing for Insert_Freeze_Node_For_Instance
8723
8724 begin
8725 if not Is_List_Member (F_Node) then
8726 Decl := N;
8727 Decls := List_Containing (N);
8728 Inst := Entity (F_Node);
8729 Par_N := Parent (Decls);
8730
8731 -- When processing a subprogram instantiation, utilize the actual
8732 -- subprogram instantiation rather than its package wrapper as it
8733 -- carries all the context information.
8734
8735 if Is_Wrapper_Package (Inst) then
8736 Inst := Related_Instance (Inst);
8737 end if;
8738
8739 -- If this is a package instance, check whether the generic is
8740 -- declared in a previous instance and the current instance is
8741 -- not within the previous one.
8742
8743 if Present (Generic_Parent (Parent (Inst)))
8744 and then Is_In_Main_Unit (N)
8745 then
8746 declare
8747 Enclosing_N : constant Node_Id := Enclosing_Body (N);
8748 Par_I : constant Entity_Id :=
8749 Previous_Instance
8750 (Generic_Parent (Parent (Inst)));
8751 Scop : Entity_Id;
8752
8753 begin
8754 if Present (Par_I)
8755 and then Earlier (N, Freeze_Node (Par_I))
8756 then
8757 Scop := Scope (Inst);
8758
8759 -- If the current instance is within the one that contains
8760 -- the generic, the freeze node for the current one must
8761 -- appear in the current declarative part. Ditto, if the
8762 -- current instance is within another package instance or
8763 -- within a body that does not enclose the current instance.
8764 -- In these three cases the freeze node of the previous
8765 -- instance is not relevant.
8766
8767 while Present (Scop) and then Scop /= Standard_Standard loop
8768 exit when Scop = Par_I
8769 or else
8770 (Is_Generic_Instance (Scop)
8771 and then Scope_Depth (Scop) > Scope_Depth (Par_I));
8772 Scop := Scope (Scop);
8773 end loop;
8774
8775 -- Previous instance encloses current instance
8776
8777 if Scop = Par_I then
8778 null;
8779
8780 -- If the next node is a source body we must freeze in
8781 -- the current scope as well.
8782
8783 elsif Present (Next (N))
8784 and then Nkind_In (Next (N), N_Subprogram_Body,
8785 N_Package_Body)
8786 and then Comes_From_Source (Next (N))
8787 then
8788 null;
8789
8790 -- Current instance is within an unrelated instance
8791
8792 elsif Is_Generic_Instance (Scop) then
8793 null;
8794
8795 -- Current instance is within an unrelated body
8796
8797 elsif Present (Enclosing_N)
8798 and then Enclosing_N /= Enclosing_Body (Par_I)
8799 then
8800 null;
8801
8802 else
8803 Insert_After (Freeze_Node (Par_I), F_Node);
8804 return;
8805 end if;
8806 end if;
8807 end;
8808 end if;
8809
8810 -- When the instantiation occurs in a package declaration, append the
8811 -- freeze node to the private declarations (if any).
8812
8813 if Nkind (Par_N) = N_Package_Specification
8814 and then Decls = Visible_Declarations (Par_N)
8815 and then Present (Private_Declarations (Par_N))
8816 and then not Is_Empty_List (Private_Declarations (Par_N))
8817 then
8818 Decls := Private_Declarations (Par_N);
8819 Decl := First (Decls);
8820 end if;
8821
8822 -- Determine the proper freeze point of a package instantiation. We
8823 -- adhere to the general rule of a package or subprogram body causing
8824 -- freezing of anything before it in the same declarative region. In
8825 -- this case, the proper freeze point of a package instantiation is
8826 -- before the first source body which follows, or before a stub. This
8827 -- ensures that entities coming from the instance are already frozen
8828 -- and usable in source bodies.
8829
8830 if Nkind (Par_N) /= N_Package_Declaration
8831 and then Ekind (Inst) = E_Package
8832 and then Is_Generic_Instance (Inst)
8833 and then
8834 not In_Same_Source_Unit (Generic_Parent (Parent (Inst)), Inst)
8835 then
8836 while Present (Decl) loop
8837 if (Nkind (Decl) in N_Unit_Body
8838 or else
8839 Nkind (Decl) in N_Body_Stub)
8840 and then Comes_From_Source (Decl)
8841 then
8842 Insert_Before (Decl, F_Node);
8843 return;
8844 end if;
8845
8846 Next (Decl);
8847 end loop;
8848 end if;
8849
8850 -- In a package declaration, or if no previous body, insert at end
8851 -- of list.
8852
8853 Set_Sloc (F_Node, Sloc (Last (Decls)));
8854 Insert_After (Last (Decls), F_Node);
8855 end if;
8856 end Insert_Freeze_Node_For_Instance;
8857
8858 ------------------
8859 -- Install_Body --
8860 ------------------
8861
8862 procedure Install_Body
8863 (Act_Body : Node_Id;
8864 N : Node_Id;
8865 Gen_Body : Node_Id;
8866 Gen_Decl : Node_Id)
8867 is
8868 Act_Id : constant Entity_Id := Corresponding_Spec (Act_Body);
8869 Act_Unit : constant Node_Id := Unit (Cunit (Get_Source_Unit (N)));
8870 Gen_Id : constant Entity_Id := Corresponding_Spec (Gen_Body);
8871 Par : constant Entity_Id := Scope (Gen_Id);
8872 Gen_Unit : constant Node_Id :=
8873 Unit (Cunit (Get_Source_Unit (Gen_Decl)));
8874 Orig_Body : Node_Id := Gen_Body;
8875 F_Node : Node_Id;
8876 Body_Unit : Node_Id;
8877
8878 Must_Delay : Boolean;
8879
8880 function In_Same_Enclosing_Subp return Boolean;
8881 -- Check whether instance and generic body are within same subprogram.
8882
8883 function True_Sloc (N : Node_Id) return Source_Ptr;
8884 -- If the instance is nested inside a generic unit, the Sloc of the
8885 -- instance indicates the place of the original definition, not the
8886 -- point of the current enclosing instance. Pending a better usage of
8887 -- Slocs to indicate instantiation places, we determine the place of
8888 -- origin of a node by finding the maximum sloc of any ancestor node.
8889 -- Why is this not equivalent to Top_Level_Location ???
8890
8891 ----------------------------
8892 -- In_Same_Enclosing_Subp --
8893 ----------------------------
8894
8895 function In_Same_Enclosing_Subp return Boolean is
8896 Scop : Entity_Id;
8897 Subp : Entity_Id;
8898
8899 begin
8900 Scop := Scope (Act_Id);
8901 while Scop /= Standard_Standard
8902 and then not Is_Overloadable (Scop)
8903 loop
8904 Scop := Scope (Scop);
8905 end loop;
8906
8907 if Scop = Standard_Standard then
8908 return False;
8909 else
8910 Subp := Scop;
8911 end if;
8912
8913 Scop := Scope (Gen_Id);
8914 while Scop /= Standard_Standard loop
8915 if Scop = Subp then
8916 return True;
8917 else
8918 Scop := Scope (Scop);
8919 end if;
8920 end loop;
8921
8922 return False;
8923 end In_Same_Enclosing_Subp;
8924
8925 ---------------
8926 -- True_Sloc --
8927 ---------------
8928
8929 function True_Sloc (N : Node_Id) return Source_Ptr is
8930 Res : Source_Ptr;
8931 N1 : Node_Id;
8932
8933 begin
8934 Res := Sloc (N);
8935 N1 := N;
8936 while Present (N1) and then N1 /= Act_Unit loop
8937 if Sloc (N1) > Res then
8938 Res := Sloc (N1);
8939 end if;
8940
8941 N1 := Parent (N1);
8942 end loop;
8943
8944 return Res;
8945 end True_Sloc;
8946
8947 -- Start of processing for Install_Body
8948
8949 begin
8950 -- Handle first the case of an instance with incomplete actual types.
8951 -- The instance body cannot be placed after the declaration because
8952 -- full views have not been seen yet. Any use of the non-limited views
8953 -- in the instance body requires the presence of a regular with_clause
8954 -- in the enclosing unit, and will fail if this with_clause is missing.
8955 -- We place the instance body at the beginning of the enclosing body,
8956 -- which is the unit being compiled. The freeze node for the instance
8957 -- is then placed after the instance body.
8958
8959 if not Is_Empty_Elmt_List (Incomplete_Actuals (Act_Id))
8960 and then Expander_Active
8961 and then Ekind (Scope (Act_Id)) = E_Package
8962 then
8963 declare
8964 Scop : constant Entity_Id := Scope (Act_Id);
8965 Body_Id : constant Node_Id :=
8966 Corresponding_Body (Unit_Declaration_Node (Scop));
8967
8968 begin
8969 Ensure_Freeze_Node (Act_Id);
8970 F_Node := Freeze_Node (Act_Id);
8971 if Present (Body_Id) then
8972 Set_Is_Frozen (Act_Id, False);
8973 Prepend (Act_Body, Declarations (Parent (Body_Id)));
8974 if Is_List_Member (F_Node) then
8975 Remove (F_Node);
8976 end if;
8977
8978 Insert_After (Act_Body, F_Node);
8979 end if;
8980 end;
8981 return;
8982 end if;
8983
8984 -- If the body is a subunit, the freeze point is the corresponding stub
8985 -- in the current compilation, not the subunit itself.
8986
8987 if Nkind (Parent (Gen_Body)) = N_Subunit then
8988 Orig_Body := Corresponding_Stub (Parent (Gen_Body));
8989 else
8990 Orig_Body := Gen_Body;
8991 end if;
8992
8993 Body_Unit := Unit (Cunit (Get_Source_Unit (Orig_Body)));
8994
8995 -- If the instantiation and the generic definition appear in the same
8996 -- package declaration, this is an early instantiation. If they appear
8997 -- in the same declarative part, it is an early instantiation only if
8998 -- the generic body appears textually later, and the generic body is
8999 -- also in the main unit.
9000
9001 -- If instance is nested within a subprogram, and the generic body
9002 -- is not, the instance is delayed because the enclosing body is. If
9003 -- instance and body are within the same scope, or the same subprogram
9004 -- body, indicate explicitly that the instance is delayed.
9005
9006 Must_Delay :=
9007 (Gen_Unit = Act_Unit
9008 and then (Nkind_In (Gen_Unit, N_Package_Declaration,
9009 N_Generic_Package_Declaration)
9010 or else (Gen_Unit = Body_Unit
9011 and then True_Sloc (N) < Sloc (Orig_Body)))
9012 and then Is_In_Main_Unit (Gen_Unit)
9013 and then (Scope (Act_Id) = Scope (Gen_Id)
9014 or else In_Same_Enclosing_Subp));
9015
9016 -- If this is an early instantiation, the freeze node is placed after
9017 -- the generic body. Otherwise, if the generic appears in an instance,
9018 -- we cannot freeze the current instance until the outer one is frozen.
9019 -- This is only relevant if the current instance is nested within some
9020 -- inner scope not itself within the outer instance. If this scope is
9021 -- a package body in the same declarative part as the outer instance,
9022 -- then that body needs to be frozen after the outer instance. Finally,
9023 -- if no delay is needed, we place the freeze node at the end of the
9024 -- current declarative part.
9025
9026 if Expander_Active then
9027 Ensure_Freeze_Node (Act_Id);
9028 F_Node := Freeze_Node (Act_Id);
9029
9030 if Must_Delay then
9031 Insert_After (Orig_Body, F_Node);
9032
9033 elsif Is_Generic_Instance (Par)
9034 and then Present (Freeze_Node (Par))
9035 and then Scope (Act_Id) /= Par
9036 then
9037 -- Freeze instance of inner generic after instance of enclosing
9038 -- generic.
9039
9040 if In_Same_Declarative_Part (Freeze_Node (Par), N) then
9041
9042 -- Handle the following case:
9043
9044 -- package Parent_Inst is new ...
9045 -- Parent_Inst []
9046
9047 -- procedure P ... -- this body freezes Parent_Inst
9048
9049 -- package Inst is new ...
9050
9051 -- In this particular scenario, the freeze node for Inst must
9052 -- be inserted in the same manner as that of Parent_Inst,
9053 -- before the next source body or at the end of the declarative
9054 -- list (body not available). If body P did not exist and
9055 -- Parent_Inst was frozen after Inst, either by a body
9056 -- following Inst or at the end of the declarative region,
9057 -- the freeze node for Inst must be inserted after that of
9058 -- Parent_Inst. This relation is established by comparing
9059 -- the Slocs of Parent_Inst freeze node and Inst.
9060
9061 if List_Containing (Get_Package_Instantiation_Node (Par)) =
9062 List_Containing (N)
9063 and then Sloc (Freeze_Node (Par)) < Sloc (N)
9064 then
9065 Insert_Freeze_Node_For_Instance (N, F_Node);
9066 else
9067 Insert_After (Freeze_Node (Par), F_Node);
9068 end if;
9069
9070 -- Freeze package enclosing instance of inner generic after
9071 -- instance of enclosing generic.
9072
9073 elsif Nkind_In (Parent (N), N_Package_Body, N_Subprogram_Body)
9074 and then In_Same_Declarative_Part (Freeze_Node (Par), Parent (N))
9075 then
9076 declare
9077 Enclosing : Entity_Id;
9078
9079 begin
9080 Enclosing := Corresponding_Spec (Parent (N));
9081
9082 if No (Enclosing) then
9083 Enclosing := Defining_Entity (Parent (N));
9084 end if;
9085
9086 Insert_Freeze_Node_For_Instance (N, F_Node);
9087 Ensure_Freeze_Node (Enclosing);
9088
9089 if not Is_List_Member (Freeze_Node (Enclosing)) then
9090
9091 -- The enclosing context is a subunit, insert the freeze
9092 -- node after the stub.
9093
9094 if Nkind (Parent (Parent (N))) = N_Subunit then
9095 Insert_Freeze_Node_For_Instance
9096 (Corresponding_Stub (Parent (Parent (N))),
9097 Freeze_Node (Enclosing));
9098
9099 -- The enclosing context is a package with a stub body
9100 -- which has already been replaced by the real body.
9101 -- Insert the freeze node after the actual body.
9102
9103 elsif Ekind (Enclosing) = E_Package
9104 and then Present (Body_Entity (Enclosing))
9105 and then Was_Originally_Stub
9106 (Parent (Body_Entity (Enclosing)))
9107 then
9108 Insert_Freeze_Node_For_Instance
9109 (Parent (Body_Entity (Enclosing)),
9110 Freeze_Node (Enclosing));
9111
9112 -- The parent instance has been frozen before the body of
9113 -- the enclosing package, insert the freeze node after
9114 -- the body.
9115
9116 elsif List_Containing (Freeze_Node (Par)) =
9117 List_Containing (Parent (N))
9118 and then Sloc (Freeze_Node (Par)) < Sloc (Parent (N))
9119 then
9120 Insert_Freeze_Node_For_Instance
9121 (Parent (N), Freeze_Node (Enclosing));
9122
9123 else
9124 Insert_After
9125 (Freeze_Node (Par), Freeze_Node (Enclosing));
9126 end if;
9127 end if;
9128 end;
9129
9130 else
9131 Insert_Freeze_Node_For_Instance (N, F_Node);
9132 end if;
9133
9134 else
9135 Insert_Freeze_Node_For_Instance (N, F_Node);
9136 end if;
9137 end if;
9138
9139 Set_Is_Frozen (Act_Id);
9140 Insert_Before (N, Act_Body);
9141 Mark_Rewrite_Insertion (Act_Body);
9142 end Install_Body;
9143
9144 -----------------------------
9145 -- Install_Formal_Packages --
9146 -----------------------------
9147
9148 procedure Install_Formal_Packages (Par : Entity_Id) is
9149 E : Entity_Id;
9150 Gen : Entity_Id;
9151 Gen_E : Entity_Id := Empty;
9152
9153 begin
9154 E := First_Entity (Par);
9155
9156 -- If we are installing an instance parent, locate the formal packages
9157 -- of its generic parent.
9158
9159 if Is_Generic_Instance (Par) then
9160 Gen := Generic_Parent (Package_Specification (Par));
9161 Gen_E := First_Entity (Gen);
9162 end if;
9163
9164 while Present (E) loop
9165 if Ekind (E) = E_Package
9166 and then Nkind (Parent (E)) = N_Package_Renaming_Declaration
9167 then
9168 -- If this is the renaming for the parent instance, done
9169
9170 if Renamed_Object (E) = Par then
9171 exit;
9172
9173 -- The visibility of a formal of an enclosing generic is already
9174 -- correct.
9175
9176 elsif Denotes_Formal_Package (E) then
9177 null;
9178
9179 elsif Present (Associated_Formal_Package (E)) then
9180 Check_Generic_Actuals (Renamed_Object (E), True);
9181 Set_Is_Hidden (E, False);
9182
9183 -- Find formal package in generic unit that corresponds to
9184 -- (instance of) formal package in instance.
9185
9186 while Present (Gen_E) and then Chars (Gen_E) /= Chars (E) loop
9187 Next_Entity (Gen_E);
9188 end loop;
9189
9190 if Present (Gen_E) then
9191 Map_Formal_Package_Entities (Gen_E, E);
9192 end if;
9193 end if;
9194 end if;
9195
9196 Next_Entity (E);
9197
9198 if Present (Gen_E) then
9199 Next_Entity (Gen_E);
9200 end if;
9201 end loop;
9202 end Install_Formal_Packages;
9203
9204 --------------------
9205 -- Install_Parent --
9206 --------------------
9207
9208 procedure Install_Parent (P : Entity_Id; In_Body : Boolean := False) is
9209 Ancestors : constant Elist_Id := New_Elmt_List;
9210 S : constant Entity_Id := Current_Scope;
9211 Inst_Par : Entity_Id;
9212 First_Par : Entity_Id;
9213 Inst_Node : Node_Id;
9214 Gen_Par : Entity_Id;
9215 First_Gen : Entity_Id;
9216 Elmt : Elmt_Id;
9217
9218 procedure Install_Noninstance_Specs (Par : Entity_Id);
9219 -- Install the scopes of noninstance parent units ending with Par
9220
9221 procedure Install_Spec (Par : Entity_Id);
9222 -- The child unit is within the declarative part of the parent, so the
9223 -- declarations within the parent are immediately visible.
9224
9225 -------------------------------
9226 -- Install_Noninstance_Specs --
9227 -------------------------------
9228
9229 procedure Install_Noninstance_Specs (Par : Entity_Id) is
9230 begin
9231 if Present (Par)
9232 and then Par /= Standard_Standard
9233 and then not In_Open_Scopes (Par)
9234 then
9235 Install_Noninstance_Specs (Scope (Par));
9236 Install_Spec (Par);
9237 end if;
9238 end Install_Noninstance_Specs;
9239
9240 ------------------
9241 -- Install_Spec --
9242 ------------------
9243
9244 procedure Install_Spec (Par : Entity_Id) is
9245 Spec : constant Node_Id := Package_Specification (Par);
9246
9247 begin
9248 -- If this parent of the child instance is a top-level unit,
9249 -- then record the unit and its visibility for later resetting in
9250 -- Remove_Parent. We exclude units that are generic instances, as we
9251 -- only want to record this information for the ultimate top-level
9252 -- noninstance parent (is that always correct???).
9253
9254 if Scope (Par) = Standard_Standard
9255 and then not Is_Generic_Instance (Par)
9256 then
9257 Parent_Unit_Visible := Is_Immediately_Visible (Par);
9258 Instance_Parent_Unit := Par;
9259 end if;
9260
9261 -- Open the parent scope and make it and its declarations visible.
9262 -- If this point is not within a body, then only the visible
9263 -- declarations should be made visible, and installation of the
9264 -- private declarations is deferred until the appropriate point
9265 -- within analysis of the spec being instantiated (see the handling
9266 -- of parent visibility in Analyze_Package_Specification). This is
9267 -- relaxed in the case where the parent unit is Ada.Tags, to avoid
9268 -- private view problems that occur when compiling instantiations of
9269 -- a generic child of that package (Generic_Dispatching_Constructor).
9270 -- If the instance freezes a tagged type, inlinings of operations
9271 -- from Ada.Tags may need the full view of type Tag. If inlining took
9272 -- proper account of establishing visibility of inlined subprograms'
9273 -- parents then it should be possible to remove this
9274 -- special check. ???
9275
9276 Push_Scope (Par);
9277 Set_Is_Immediately_Visible (Par);
9278 Install_Visible_Declarations (Par);
9279 Set_Use (Visible_Declarations (Spec));
9280
9281 if In_Body or else Is_RTU (Par, Ada_Tags) then
9282 Install_Private_Declarations (Par);
9283 Set_Use (Private_Declarations (Spec));
9284 end if;
9285 end Install_Spec;
9286
9287 -- Start of processing for Install_Parent
9288
9289 begin
9290 -- We need to install the parent instance to compile the instantiation
9291 -- of the child, but the child instance must appear in the current
9292 -- scope. Given that we cannot place the parent above the current scope
9293 -- in the scope stack, we duplicate the current scope and unstack both
9294 -- after the instantiation is complete.
9295
9296 -- If the parent is itself the instantiation of a child unit, we must
9297 -- also stack the instantiation of its parent, and so on. Each such
9298 -- ancestor is the prefix of the name in a prior instantiation.
9299
9300 -- If this is a nested instance, the parent unit itself resolves to
9301 -- a renaming of the parent instance, whose declaration we need.
9302
9303 -- Finally, the parent may be a generic (not an instance) when the
9304 -- child unit appears as a formal package.
9305
9306 Inst_Par := P;
9307
9308 if Present (Renamed_Entity (Inst_Par)) then
9309 Inst_Par := Renamed_Entity (Inst_Par);
9310 end if;
9311
9312 First_Par := Inst_Par;
9313
9314 Gen_Par := Generic_Parent (Package_Specification (Inst_Par));
9315
9316 First_Gen := Gen_Par;
9317
9318 while Present (Gen_Par) and then Is_Child_Unit (Gen_Par) loop
9319
9320 -- Load grandparent instance as well
9321
9322 Inst_Node := Get_Package_Instantiation_Node (Inst_Par);
9323
9324 if Nkind (Name (Inst_Node)) = N_Expanded_Name then
9325 Inst_Par := Entity (Prefix (Name (Inst_Node)));
9326
9327 if Present (Renamed_Entity (Inst_Par)) then
9328 Inst_Par := Renamed_Entity (Inst_Par);
9329 end if;
9330
9331 Gen_Par := Generic_Parent (Package_Specification (Inst_Par));
9332
9333 if Present (Gen_Par) then
9334 Prepend_Elmt (Inst_Par, Ancestors);
9335
9336 else
9337 -- Parent is not the name of an instantiation
9338
9339 Install_Noninstance_Specs (Inst_Par);
9340 exit;
9341 end if;
9342
9343 else
9344 -- Previous error
9345
9346 exit;
9347 end if;
9348 end loop;
9349
9350 if Present (First_Gen) then
9351 Append_Elmt (First_Par, Ancestors);
9352 else
9353 Install_Noninstance_Specs (First_Par);
9354 end if;
9355
9356 if not Is_Empty_Elmt_List (Ancestors) then
9357 Elmt := First_Elmt (Ancestors);
9358 while Present (Elmt) loop
9359 Install_Spec (Node (Elmt));
9360 Install_Formal_Packages (Node (Elmt));
9361 Next_Elmt (Elmt);
9362 end loop;
9363 end if;
9364
9365 if not In_Body then
9366 Push_Scope (S);
9367 end if;
9368 end Install_Parent;
9369
9370 -------------------------------
9371 -- Install_Hidden_Primitives --
9372 -------------------------------
9373
9374 procedure Install_Hidden_Primitives
9375 (Prims_List : in out Elist_Id;
9376 Gen_T : Entity_Id;
9377 Act_T : Entity_Id)
9378 is
9379 Elmt : Elmt_Id;
9380 List : Elist_Id := No_Elist;
9381 Prim_G_Elmt : Elmt_Id;
9382 Prim_A_Elmt : Elmt_Id;
9383 Prim_G : Node_Id;
9384 Prim_A : Node_Id;
9385
9386 begin
9387 -- No action needed in case of serious errors because we cannot trust
9388 -- in the order of primitives
9389
9390 if Serious_Errors_Detected > 0 then
9391 return;
9392
9393 -- No action possible if we don't have available the list of primitive
9394 -- operations
9395
9396 elsif No (Gen_T)
9397 or else not Is_Record_Type (Gen_T)
9398 or else not Is_Tagged_Type (Gen_T)
9399 or else not Is_Record_Type (Act_T)
9400 or else not Is_Tagged_Type (Act_T)
9401 then
9402 return;
9403
9404 -- There is no need to handle interface types since their primitives
9405 -- cannot be hidden
9406
9407 elsif Is_Interface (Gen_T) then
9408 return;
9409 end if;
9410
9411 Prim_G_Elmt := First_Elmt (Primitive_Operations (Gen_T));
9412
9413 if not Is_Class_Wide_Type (Act_T) then
9414 Prim_A_Elmt := First_Elmt (Primitive_Operations (Act_T));
9415 else
9416 Prim_A_Elmt := First_Elmt (Primitive_Operations (Root_Type (Act_T)));
9417 end if;
9418
9419 loop
9420 -- Skip predefined primitives in the generic formal
9421
9422 while Present (Prim_G_Elmt)
9423 and then Is_Predefined_Dispatching_Operation (Node (Prim_G_Elmt))
9424 loop
9425 Next_Elmt (Prim_G_Elmt);
9426 end loop;
9427
9428 -- Skip predefined primitives in the generic actual
9429
9430 while Present (Prim_A_Elmt)
9431 and then Is_Predefined_Dispatching_Operation (Node (Prim_A_Elmt))
9432 loop
9433 Next_Elmt (Prim_A_Elmt);
9434 end loop;
9435
9436 exit when No (Prim_G_Elmt) or else No (Prim_A_Elmt);
9437
9438 Prim_G := Node (Prim_G_Elmt);
9439 Prim_A := Node (Prim_A_Elmt);
9440
9441 -- There is no need to handle interface primitives because their
9442 -- primitives are not hidden
9443
9444 exit when Present (Interface_Alias (Prim_G));
9445
9446 -- Here we install one hidden primitive
9447
9448 if Chars (Prim_G) /= Chars (Prim_A)
9449 and then Has_Suffix (Prim_A, 'P')
9450 and then Remove_Suffix (Prim_A, 'P') = Chars (Prim_G)
9451 then
9452 Set_Chars (Prim_A, Chars (Prim_G));
9453 Append_New_Elmt (Prim_A, To => List);
9454 end if;
9455
9456 Next_Elmt (Prim_A_Elmt);
9457 Next_Elmt (Prim_G_Elmt);
9458 end loop;
9459
9460 -- Append the elements to the list of temporarily visible primitives
9461 -- avoiding duplicates.
9462
9463 if Present (List) then
9464 if No (Prims_List) then
9465 Prims_List := New_Elmt_List;
9466 end if;
9467
9468 Elmt := First_Elmt (List);
9469 while Present (Elmt) loop
9470 Append_Unique_Elmt (Node (Elmt), Prims_List);
9471 Next_Elmt (Elmt);
9472 end loop;
9473 end if;
9474 end Install_Hidden_Primitives;
9475
9476 -------------------------------
9477 -- Restore_Hidden_Primitives --
9478 -------------------------------
9479
9480 procedure Restore_Hidden_Primitives (Prims_List : in out Elist_Id) is
9481 Prim_Elmt : Elmt_Id;
9482 Prim : Node_Id;
9483
9484 begin
9485 if Prims_List /= No_Elist then
9486 Prim_Elmt := First_Elmt (Prims_List);
9487 while Present (Prim_Elmt) loop
9488 Prim := Node (Prim_Elmt);
9489 Set_Chars (Prim, Add_Suffix (Prim, 'P'));
9490 Next_Elmt (Prim_Elmt);
9491 end loop;
9492
9493 Prims_List := No_Elist;
9494 end if;
9495 end Restore_Hidden_Primitives;
9496
9497 --------------------------------
9498 -- Instantiate_Formal_Package --
9499 --------------------------------
9500
9501 function Instantiate_Formal_Package
9502 (Formal : Node_Id;
9503 Actual : Node_Id;
9504 Analyzed_Formal : Node_Id) return List_Id
9505 is
9506 Loc : constant Source_Ptr := Sloc (Actual);
9507 Actual_Pack : Entity_Id;
9508 Formal_Pack : Entity_Id;
9509 Gen_Parent : Entity_Id;
9510 Decls : List_Id;
9511 Nod : Node_Id;
9512 Parent_Spec : Node_Id;
9513
9514 procedure Find_Matching_Actual
9515 (F : Node_Id;
9516 Act : in out Entity_Id);
9517 -- We need to associate each formal entity in the formal package with
9518 -- the corresponding entity in the actual package. The actual package
9519 -- has been analyzed and possibly expanded, and as a result there is
9520 -- no one-to-one correspondence between the two lists (for example,
9521 -- the actual may include subtypes, itypes, and inherited primitive
9522 -- operations, interspersed among the renaming declarations for the
9523 -- actuals). We retrieve the corresponding actual by name because each
9524 -- actual has the same name as the formal, and they do appear in the
9525 -- same order.
9526
9527 function Get_Formal_Entity (N : Node_Id) return Entity_Id;
9528 -- Retrieve entity of defining entity of generic formal parameter.
9529 -- Only the declarations of formals need to be considered when
9530 -- linking them to actuals, but the declarative list may include
9531 -- internal entities generated during analysis, and those are ignored.
9532
9533 procedure Match_Formal_Entity
9534 (Formal_Node : Node_Id;
9535 Formal_Ent : Entity_Id;
9536 Actual_Ent : Entity_Id);
9537 -- Associates the formal entity with the actual. In the case where
9538 -- Formal_Ent is a formal package, this procedure iterates through all
9539 -- of its formals and enters associations between the actuals occurring
9540 -- in the formal package's corresponding actual package (given by
9541 -- Actual_Ent) and the formal package's formal parameters. This
9542 -- procedure recurses if any of the parameters is itself a package.
9543
9544 function Is_Instance_Of
9545 (Act_Spec : Entity_Id;
9546 Gen_Anc : Entity_Id) return Boolean;
9547 -- The actual can be an instantiation of a generic within another
9548 -- instance, in which case there is no direct link from it to the
9549 -- original generic ancestor. In that case, we recognize that the
9550 -- ultimate ancestor is the same by examining names and scopes.
9551
9552 procedure Process_Nested_Formal (Formal : Entity_Id);
9553 -- If the current formal is declared with a box, its own formals are
9554 -- visible in the instance, as they were in the generic, and their
9555 -- Hidden flag must be reset. If some of these formals are themselves
9556 -- packages declared with a box, the processing must be recursive.
9557
9558 --------------------------
9559 -- Find_Matching_Actual --
9560 --------------------------
9561
9562 procedure Find_Matching_Actual
9563 (F : Node_Id;
9564 Act : in out Entity_Id)
9565 is
9566 Formal_Ent : Entity_Id;
9567
9568 begin
9569 case Nkind (Original_Node (F)) is
9570 when N_Formal_Object_Declaration |
9571 N_Formal_Type_Declaration =>
9572 Formal_Ent := Defining_Identifier (F);
9573
9574 while Chars (Act) /= Chars (Formal_Ent) loop
9575 Next_Entity (Act);
9576 end loop;
9577
9578 when N_Formal_Subprogram_Declaration |
9579 N_Formal_Package_Declaration |
9580 N_Package_Declaration |
9581 N_Generic_Package_Declaration =>
9582 Formal_Ent := Defining_Entity (F);
9583
9584 while Chars (Act) /= Chars (Formal_Ent) loop
9585 Next_Entity (Act);
9586 end loop;
9587
9588 when others =>
9589 raise Program_Error;
9590 end case;
9591 end Find_Matching_Actual;
9592
9593 -------------------------
9594 -- Match_Formal_Entity --
9595 -------------------------
9596
9597 procedure Match_Formal_Entity
9598 (Formal_Node : Node_Id;
9599 Formal_Ent : Entity_Id;
9600 Actual_Ent : Entity_Id)
9601 is
9602 Act_Pkg : Entity_Id;
9603
9604 begin
9605 Set_Instance_Of (Formal_Ent, Actual_Ent);
9606
9607 if Ekind (Actual_Ent) = E_Package then
9608
9609 -- Record associations for each parameter
9610
9611 Act_Pkg := Actual_Ent;
9612
9613 declare
9614 A_Ent : Entity_Id := First_Entity (Act_Pkg);
9615 F_Ent : Entity_Id;
9616 F_Node : Node_Id;
9617
9618 Gen_Decl : Node_Id;
9619 Formals : List_Id;
9620 Actual : Entity_Id;
9621
9622 begin
9623 -- Retrieve the actual given in the formal package declaration
9624
9625 Actual := Entity (Name (Original_Node (Formal_Node)));
9626
9627 -- The actual in the formal package declaration may be a
9628 -- renamed generic package, in which case we want to retrieve
9629 -- the original generic in order to traverse its formal part.
9630
9631 if Present (Renamed_Entity (Actual)) then
9632 Gen_Decl := Unit_Declaration_Node (Renamed_Entity (Actual));
9633 else
9634 Gen_Decl := Unit_Declaration_Node (Actual);
9635 end if;
9636
9637 Formals := Generic_Formal_Declarations (Gen_Decl);
9638
9639 if Present (Formals) then
9640 F_Node := First_Non_Pragma (Formals);
9641 else
9642 F_Node := Empty;
9643 end if;
9644
9645 while Present (A_Ent)
9646 and then Present (F_Node)
9647 and then A_Ent /= First_Private_Entity (Act_Pkg)
9648 loop
9649 F_Ent := Get_Formal_Entity (F_Node);
9650
9651 if Present (F_Ent) then
9652
9653 -- This is a formal of the original package. Record
9654 -- association and recurse.
9655
9656 Find_Matching_Actual (F_Node, A_Ent);
9657 Match_Formal_Entity (F_Node, F_Ent, A_Ent);
9658 Next_Entity (A_Ent);
9659 end if;
9660
9661 Next_Non_Pragma (F_Node);
9662 end loop;
9663 end;
9664 end if;
9665 end Match_Formal_Entity;
9666
9667 -----------------------
9668 -- Get_Formal_Entity --
9669 -----------------------
9670
9671 function Get_Formal_Entity (N : Node_Id) return Entity_Id is
9672 Kind : constant Node_Kind := Nkind (Original_Node (N));
9673 begin
9674 case Kind is
9675 when N_Formal_Object_Declaration =>
9676 return Defining_Identifier (N);
9677
9678 when N_Formal_Type_Declaration =>
9679 return Defining_Identifier (N);
9680
9681 when N_Formal_Subprogram_Declaration =>
9682 return Defining_Unit_Name (Specification (N));
9683
9684 when N_Formal_Package_Declaration =>
9685 return Defining_Identifier (Original_Node (N));
9686
9687 when N_Generic_Package_Declaration =>
9688 return Defining_Identifier (Original_Node (N));
9689
9690 -- All other declarations are introduced by semantic analysis and
9691 -- have no match in the actual.
9692
9693 when others =>
9694 return Empty;
9695 end case;
9696 end Get_Formal_Entity;
9697
9698 --------------------
9699 -- Is_Instance_Of --
9700 --------------------
9701
9702 function Is_Instance_Of
9703 (Act_Spec : Entity_Id;
9704 Gen_Anc : Entity_Id) return Boolean
9705 is
9706 Gen_Par : constant Entity_Id := Generic_Parent (Act_Spec);
9707
9708 begin
9709 if No (Gen_Par) then
9710 return False;
9711
9712 -- Simplest case: the generic parent of the actual is the formal
9713
9714 elsif Gen_Par = Gen_Anc then
9715 return True;
9716
9717 elsif Chars (Gen_Par) /= Chars (Gen_Anc) then
9718 return False;
9719
9720 -- The actual may be obtained through several instantiations. Its
9721 -- scope must itself be an instance of a generic declared in the
9722 -- same scope as the formal. Any other case is detected above.
9723
9724 elsif not Is_Generic_Instance (Scope (Gen_Par)) then
9725 return False;
9726
9727 else
9728 return Generic_Parent (Parent (Scope (Gen_Par))) = Scope (Gen_Anc);
9729 end if;
9730 end Is_Instance_Of;
9731
9732 ---------------------------
9733 -- Process_Nested_Formal --
9734 ---------------------------
9735
9736 procedure Process_Nested_Formal (Formal : Entity_Id) is
9737 Ent : Entity_Id;
9738
9739 begin
9740 if Present (Associated_Formal_Package (Formal))
9741 and then Box_Present (Parent (Associated_Formal_Package (Formal)))
9742 then
9743 Ent := First_Entity (Formal);
9744 while Present (Ent) loop
9745 Set_Is_Hidden (Ent, False);
9746 Set_Is_Visible_Formal (Ent);
9747 Set_Is_Potentially_Use_Visible
9748 (Ent, Is_Potentially_Use_Visible (Formal));
9749
9750 if Ekind (Ent) = E_Package then
9751 exit when Renamed_Entity (Ent) = Renamed_Entity (Formal);
9752 Process_Nested_Formal (Ent);
9753 end if;
9754
9755 Next_Entity (Ent);
9756 end loop;
9757 end if;
9758 end Process_Nested_Formal;
9759
9760 -- Start of processing for Instantiate_Formal_Package
9761
9762 begin
9763 Analyze (Actual);
9764
9765 if not Is_Entity_Name (Actual)
9766 or else Ekind (Entity (Actual)) /= E_Package
9767 then
9768 Error_Msg_N
9769 ("expect package instance to instantiate formal", Actual);
9770 Abandon_Instantiation (Actual);
9771 raise Program_Error;
9772
9773 else
9774 Actual_Pack := Entity (Actual);
9775 Set_Is_Instantiated (Actual_Pack);
9776
9777 -- The actual may be a renamed package, or an outer generic formal
9778 -- package whose instantiation is converted into a renaming.
9779
9780 if Present (Renamed_Object (Actual_Pack)) then
9781 Actual_Pack := Renamed_Object (Actual_Pack);
9782 end if;
9783
9784 if Nkind (Analyzed_Formal) = N_Formal_Package_Declaration then
9785 Gen_Parent := Get_Instance_Of (Entity (Name (Analyzed_Formal)));
9786 Formal_Pack := Defining_Identifier (Analyzed_Formal);
9787 else
9788 Gen_Parent :=
9789 Generic_Parent (Specification (Analyzed_Formal));
9790 Formal_Pack :=
9791 Defining_Unit_Name (Specification (Analyzed_Formal));
9792 end if;
9793
9794 if Nkind (Parent (Actual_Pack)) = N_Defining_Program_Unit_Name then
9795 Parent_Spec := Package_Specification (Actual_Pack);
9796 else
9797 Parent_Spec := Parent (Actual_Pack);
9798 end if;
9799
9800 if Gen_Parent = Any_Id then
9801 Error_Msg_N
9802 ("previous error in declaration of formal package", Actual);
9803 Abandon_Instantiation (Actual);
9804
9805 elsif
9806 Is_Instance_Of (Parent_Spec, Get_Instance_Of (Gen_Parent))
9807 then
9808 null;
9809
9810 else
9811 Error_Msg_NE
9812 ("actual parameter must be instance of&", Actual, Gen_Parent);
9813 Abandon_Instantiation (Actual);
9814 end if;
9815
9816 Set_Instance_Of (Defining_Identifier (Formal), Actual_Pack);
9817 Map_Formal_Package_Entities (Formal_Pack, Actual_Pack);
9818
9819 Nod :=
9820 Make_Package_Renaming_Declaration (Loc,
9821 Defining_Unit_Name => New_Copy (Defining_Identifier (Formal)),
9822 Name => New_Occurrence_Of (Actual_Pack, Loc));
9823
9824 Set_Associated_Formal_Package
9825 (Defining_Unit_Name (Nod), Defining_Identifier (Formal));
9826 Decls := New_List (Nod);
9827
9828 -- If the formal F has a box, then the generic declarations are
9829 -- visible in the generic G. In an instance of G, the corresponding
9830 -- entities in the actual for F (which are the actuals for the
9831 -- instantiation of the generic that F denotes) must also be made
9832 -- visible for analysis of the current instance. On exit from the
9833 -- current instance, those entities are made private again. If the
9834 -- actual is currently in use, these entities are also use-visible.
9835
9836 -- The loop through the actual entities also steps through the formal
9837 -- entities and enters associations from formals to actuals into the
9838 -- renaming map. This is necessary to properly handle checking of
9839 -- actual parameter associations for later formals that depend on
9840 -- actuals declared in the formal package.
9841
9842 -- In Ada 2005, partial parameterization requires that we make
9843 -- visible the actuals corresponding to formals that were defaulted
9844 -- in the formal package. There formals are identified because they
9845 -- remain formal generics within the formal package, rather than
9846 -- being renamings of the actuals supplied.
9847
9848 declare
9849 Gen_Decl : constant Node_Id :=
9850 Unit_Declaration_Node (Gen_Parent);
9851 Formals : constant List_Id :=
9852 Generic_Formal_Declarations (Gen_Decl);
9853
9854 Actual_Ent : Entity_Id;
9855 Actual_Of_Formal : Node_Id;
9856 Formal_Node : Node_Id;
9857 Formal_Ent : Entity_Id;
9858
9859 begin
9860 if Present (Formals) then
9861 Formal_Node := First_Non_Pragma (Formals);
9862 else
9863 Formal_Node := Empty;
9864 end if;
9865
9866 Actual_Ent := First_Entity (Actual_Pack);
9867 Actual_Of_Formal :=
9868 First (Visible_Declarations (Specification (Analyzed_Formal)));
9869 while Present (Actual_Ent)
9870 and then Actual_Ent /= First_Private_Entity (Actual_Pack)
9871 loop
9872 if Present (Formal_Node) then
9873 Formal_Ent := Get_Formal_Entity (Formal_Node);
9874
9875 if Present (Formal_Ent) then
9876 Find_Matching_Actual (Formal_Node, Actual_Ent);
9877 Match_Formal_Entity (Formal_Node, Formal_Ent, Actual_Ent);
9878
9879 -- We iterate at the same time over the actuals of the
9880 -- local package created for the formal, to determine
9881 -- which one of the formals of the original generic were
9882 -- defaulted in the formal. The corresponding actual
9883 -- entities are visible in the enclosing instance.
9884
9885 if Box_Present (Formal)
9886 or else
9887 (Present (Actual_Of_Formal)
9888 and then
9889 Is_Generic_Formal
9890 (Get_Formal_Entity (Actual_Of_Formal)))
9891 then
9892 Set_Is_Hidden (Actual_Ent, False);
9893 Set_Is_Visible_Formal (Actual_Ent);
9894 Set_Is_Potentially_Use_Visible
9895 (Actual_Ent, In_Use (Actual_Pack));
9896
9897 if Ekind (Actual_Ent) = E_Package then
9898 Process_Nested_Formal (Actual_Ent);
9899 end if;
9900
9901 else
9902 Set_Is_Hidden (Actual_Ent);
9903 Set_Is_Potentially_Use_Visible (Actual_Ent, False);
9904 end if;
9905 end if;
9906
9907 Next_Non_Pragma (Formal_Node);
9908 Next (Actual_Of_Formal);
9909
9910 else
9911 -- No further formals to match, but the generic part may
9912 -- contain inherited operation that are not hidden in the
9913 -- enclosing instance.
9914
9915 Next_Entity (Actual_Ent);
9916 end if;
9917 end loop;
9918
9919 -- Inherited subprograms generated by formal derived types are
9920 -- also visible if the types are.
9921
9922 Actual_Ent := First_Entity (Actual_Pack);
9923 while Present (Actual_Ent)
9924 and then Actual_Ent /= First_Private_Entity (Actual_Pack)
9925 loop
9926 if Is_Overloadable (Actual_Ent)
9927 and then
9928 Nkind (Parent (Actual_Ent)) = N_Subtype_Declaration
9929 and then
9930 not Is_Hidden (Defining_Identifier (Parent (Actual_Ent)))
9931 then
9932 Set_Is_Hidden (Actual_Ent, False);
9933 Set_Is_Potentially_Use_Visible
9934 (Actual_Ent, In_Use (Actual_Pack));
9935 end if;
9936
9937 Next_Entity (Actual_Ent);
9938 end loop;
9939 end;
9940
9941 -- If the formal is not declared with a box, reanalyze it as an
9942 -- abbreviated instantiation, to verify the matching rules of 12.7.
9943 -- The actual checks are performed after the generic associations
9944 -- have been analyzed, to guarantee the same visibility for this
9945 -- instantiation and for the actuals.
9946
9947 -- In Ada 2005, the generic associations for the formal can include
9948 -- defaulted parameters. These are ignored during check. This
9949 -- internal instantiation is removed from the tree after conformance
9950 -- checking, because it contains formal declarations for those
9951 -- defaulted parameters, and those should not reach the back-end.
9952
9953 if not Box_Present (Formal) then
9954 declare
9955 I_Pack : constant Entity_Id :=
9956 Make_Temporary (Sloc (Actual), 'P');
9957
9958 begin
9959 Set_Is_Internal (I_Pack);
9960
9961 Append_To (Decls,
9962 Make_Package_Instantiation (Sloc (Actual),
9963 Defining_Unit_Name => I_Pack,
9964 Name =>
9965 New_Occurrence_Of
9966 (Get_Instance_Of (Gen_Parent), Sloc (Actual)),
9967 Generic_Associations => Generic_Associations (Formal)));
9968 end;
9969 end if;
9970
9971 return Decls;
9972 end if;
9973 end Instantiate_Formal_Package;
9974
9975 -----------------------------------
9976 -- Instantiate_Formal_Subprogram --
9977 -----------------------------------
9978
9979 function Instantiate_Formal_Subprogram
9980 (Formal : Node_Id;
9981 Actual : Node_Id;
9982 Analyzed_Formal : Node_Id) return Node_Id
9983 is
9984 Analyzed_S : constant Entity_Id :=
9985 Defining_Unit_Name (Specification (Analyzed_Formal));
9986 Formal_Sub : constant Entity_Id :=
9987 Defining_Unit_Name (Specification (Formal));
9988
9989 function From_Parent_Scope (Subp : Entity_Id) return Boolean;
9990 -- If the generic is a child unit, the parent has been installed on the
9991 -- scope stack, but a default subprogram cannot resolve to something
9992 -- on the parent because that parent is not really part of the visible
9993 -- context (it is there to resolve explicit local entities). If the
9994 -- default has resolved in this way, we remove the entity from immediate
9995 -- visibility and analyze the node again to emit an error message or
9996 -- find another visible candidate.
9997
9998 procedure Valid_Actual_Subprogram (Act : Node_Id);
9999 -- Perform legality check and raise exception on failure
10000
10001 -----------------------
10002 -- From_Parent_Scope --
10003 -----------------------
10004
10005 function From_Parent_Scope (Subp : Entity_Id) return Boolean is
10006 Gen_Scope : Node_Id;
10007
10008 begin
10009 Gen_Scope := Scope (Analyzed_S);
10010 while Present (Gen_Scope) and then Is_Child_Unit (Gen_Scope) loop
10011 if Scope (Subp) = Scope (Gen_Scope) then
10012 return True;
10013 end if;
10014
10015 Gen_Scope := Scope (Gen_Scope);
10016 end loop;
10017
10018 return False;
10019 end From_Parent_Scope;
10020
10021 -----------------------------
10022 -- Valid_Actual_Subprogram --
10023 -----------------------------
10024
10025 procedure Valid_Actual_Subprogram (Act : Node_Id) is
10026 Act_E : Entity_Id;
10027
10028 begin
10029 if Is_Entity_Name (Act) then
10030 Act_E := Entity (Act);
10031
10032 elsif Nkind (Act) = N_Selected_Component
10033 and then Is_Entity_Name (Selector_Name (Act))
10034 then
10035 Act_E := Entity (Selector_Name (Act));
10036
10037 else
10038 Act_E := Empty;
10039 end if;
10040
10041 if (Present (Act_E) and then Is_Overloadable (Act_E))
10042 or else Nkind_In (Act, N_Attribute_Reference,
10043 N_Indexed_Component,
10044 N_Character_Literal,
10045 N_Explicit_Dereference)
10046 then
10047 return;
10048 end if;
10049
10050 Error_Msg_NE
10051 ("expect subprogram or entry name in instantiation of &",
10052 Instantiation_Node, Formal_Sub);
10053 Abandon_Instantiation (Instantiation_Node);
10054 end Valid_Actual_Subprogram;
10055
10056 -- Local variables
10057
10058 Decl_Node : Node_Id;
10059 Loc : Source_Ptr;
10060 Nam : Node_Id;
10061 New_Spec : Node_Id;
10062 New_Subp : Entity_Id;
10063
10064 -- Start of processing for Instantiate_Formal_Subprogram
10065
10066 begin
10067 New_Spec := New_Copy_Tree (Specification (Formal));
10068
10069 -- The tree copy has created the proper instantiation sloc for the
10070 -- new specification. Use this location for all other constructed
10071 -- declarations.
10072
10073 Loc := Sloc (Defining_Unit_Name (New_Spec));
10074
10075 -- Create new entity for the actual (New_Copy_Tree does not), and
10076 -- indicate that it is an actual.
10077
10078 New_Subp := Make_Defining_Identifier (Loc, Chars (Formal_Sub));
10079 Set_Ekind (New_Subp, Ekind (Analyzed_S));
10080 Set_Is_Generic_Actual_Subprogram (New_Subp);
10081 Set_Defining_Unit_Name (New_Spec, New_Subp);
10082
10083 -- Create new entities for the each of the formals in the specification
10084 -- of the renaming declaration built for the actual.
10085
10086 if Present (Parameter_Specifications (New_Spec)) then
10087 declare
10088 F : Node_Id;
10089 F_Id : Entity_Id;
10090
10091 begin
10092 F := First (Parameter_Specifications (New_Spec));
10093 while Present (F) loop
10094 F_Id := Defining_Identifier (F);
10095
10096 Set_Defining_Identifier (F,
10097 Make_Defining_Identifier (Sloc (F_Id), Chars (F_Id)));
10098 Next (F);
10099 end loop;
10100 end;
10101 end if;
10102
10103 -- Find entity of actual. If the actual is an attribute reference, it
10104 -- cannot be resolved here (its formal is missing) but is handled
10105 -- instead in Attribute_Renaming. If the actual is overloaded, it is
10106 -- fully resolved subsequently, when the renaming declaration for the
10107 -- formal is analyzed. If it is an explicit dereference, resolve the
10108 -- prefix but not the actual itself, to prevent interpretation as call.
10109
10110 if Present (Actual) then
10111 Loc := Sloc (Actual);
10112 Set_Sloc (New_Spec, Loc);
10113
10114 if Nkind (Actual) = N_Operator_Symbol then
10115 Find_Direct_Name (Actual);
10116
10117 elsif Nkind (Actual) = N_Explicit_Dereference then
10118 Analyze (Prefix (Actual));
10119
10120 elsif Nkind (Actual) /= N_Attribute_Reference then
10121 Analyze (Actual);
10122 end if;
10123
10124 Valid_Actual_Subprogram (Actual);
10125 Nam := Actual;
10126
10127 elsif Present (Default_Name (Formal)) then
10128 if not Nkind_In (Default_Name (Formal), N_Attribute_Reference,
10129 N_Selected_Component,
10130 N_Indexed_Component,
10131 N_Character_Literal)
10132 and then Present (Entity (Default_Name (Formal)))
10133 then
10134 Nam := New_Occurrence_Of (Entity (Default_Name (Formal)), Loc);
10135 else
10136 Nam := New_Copy (Default_Name (Formal));
10137 Set_Sloc (Nam, Loc);
10138 end if;
10139
10140 elsif Box_Present (Formal) then
10141
10142 -- Actual is resolved at the point of instantiation. Create an
10143 -- identifier or operator with the same name as the formal.
10144
10145 if Nkind (Formal_Sub) = N_Defining_Operator_Symbol then
10146 Nam :=
10147 Make_Operator_Symbol (Loc,
10148 Chars => Chars (Formal_Sub),
10149 Strval => No_String);
10150 else
10151 Nam := Make_Identifier (Loc, Chars (Formal_Sub));
10152 end if;
10153
10154 elsif Nkind (Specification (Formal)) = N_Procedure_Specification
10155 and then Null_Present (Specification (Formal))
10156 then
10157 -- Generate null body for procedure, for use in the instance
10158
10159 Decl_Node :=
10160 Make_Subprogram_Body (Loc,
10161 Specification => New_Spec,
10162 Declarations => New_List,
10163 Handled_Statement_Sequence =>
10164 Make_Handled_Sequence_Of_Statements (Loc,
10165 Statements => New_List (Make_Null_Statement (Loc))));
10166
10167 Set_Is_Intrinsic_Subprogram (Defining_Unit_Name (New_Spec));
10168 return Decl_Node;
10169
10170 else
10171 Error_Msg_Sloc := Sloc (Scope (Analyzed_S));
10172 Error_Msg_NE
10173 ("missing actual&", Instantiation_Node, Formal_Sub);
10174 Error_Msg_NE
10175 ("\in instantiation of & declared#",
10176 Instantiation_Node, Scope (Analyzed_S));
10177 Abandon_Instantiation (Instantiation_Node);
10178 end if;
10179
10180 Decl_Node :=
10181 Make_Subprogram_Renaming_Declaration (Loc,
10182 Specification => New_Spec,
10183 Name => Nam);
10184
10185 -- If we do not have an actual and the formal specified <> then set to
10186 -- get proper default.
10187
10188 if No (Actual) and then Box_Present (Formal) then
10189 Set_From_Default (Decl_Node);
10190 end if;
10191
10192 -- Gather possible interpretations for the actual before analyzing the
10193 -- instance. If overloaded, it will be resolved when analyzing the
10194 -- renaming declaration.
10195
10196 if Box_Present (Formal) and then No (Actual) then
10197 Analyze (Nam);
10198
10199 if Is_Child_Unit (Scope (Analyzed_S))
10200 and then Present (Entity (Nam))
10201 then
10202 if not Is_Overloaded (Nam) then
10203 if From_Parent_Scope (Entity (Nam)) then
10204 Set_Is_Immediately_Visible (Entity (Nam), False);
10205 Set_Entity (Nam, Empty);
10206 Set_Etype (Nam, Empty);
10207
10208 Analyze (Nam);
10209 Set_Is_Immediately_Visible (Entity (Nam));
10210 end if;
10211
10212 else
10213 declare
10214 I : Interp_Index;
10215 It : Interp;
10216
10217 begin
10218 Get_First_Interp (Nam, I, It);
10219 while Present (It.Nam) loop
10220 if From_Parent_Scope (It.Nam) then
10221 Remove_Interp (I);
10222 end if;
10223
10224 Get_Next_Interp (I, It);
10225 end loop;
10226 end;
10227 end if;
10228 end if;
10229 end if;
10230
10231 -- The generic instantiation freezes the actual. This can only be done
10232 -- once the actual is resolved, in the analysis of the renaming
10233 -- declaration. To make the formal subprogram entity available, we set
10234 -- Corresponding_Formal_Spec to point to the formal subprogram entity.
10235 -- This is also needed in Analyze_Subprogram_Renaming for the processing
10236 -- of formal abstract subprograms.
10237
10238 Set_Corresponding_Formal_Spec (Decl_Node, Analyzed_S);
10239
10240 -- We cannot analyze the renaming declaration, and thus find the actual,
10241 -- until all the actuals are assembled in the instance. For subsequent
10242 -- checks of other actuals, indicate the node that will hold the
10243 -- instance of this formal.
10244
10245 Set_Instance_Of (Analyzed_S, Nam);
10246
10247 if Nkind (Actual) = N_Selected_Component
10248 and then Is_Task_Type (Etype (Prefix (Actual)))
10249 and then not Is_Frozen (Etype (Prefix (Actual)))
10250 then
10251 -- The renaming declaration will create a body, which must appear
10252 -- outside of the instantiation, We move the renaming declaration
10253 -- out of the instance, and create an additional renaming inside,
10254 -- to prevent freezing anomalies.
10255
10256 declare
10257 Anon_Id : constant Entity_Id := Make_Temporary (Loc, 'E');
10258
10259 begin
10260 Set_Defining_Unit_Name (New_Spec, Anon_Id);
10261 Insert_Before (Instantiation_Node, Decl_Node);
10262 Analyze (Decl_Node);
10263
10264 -- Now create renaming within the instance
10265
10266 Decl_Node :=
10267 Make_Subprogram_Renaming_Declaration (Loc,
10268 Specification => New_Copy_Tree (New_Spec),
10269 Name => New_Occurrence_Of (Anon_Id, Loc));
10270
10271 Set_Defining_Unit_Name (Specification (Decl_Node),
10272 Make_Defining_Identifier (Loc, Chars (Formal_Sub)));
10273 end;
10274 end if;
10275
10276 return Decl_Node;
10277 end Instantiate_Formal_Subprogram;
10278
10279 ------------------------
10280 -- Instantiate_Object --
10281 ------------------------
10282
10283 function Instantiate_Object
10284 (Formal : Node_Id;
10285 Actual : Node_Id;
10286 Analyzed_Formal : Node_Id) return List_Id
10287 is
10288 Gen_Obj : constant Entity_Id := Defining_Identifier (Formal);
10289 A_Gen_Obj : constant Entity_Id :=
10290 Defining_Identifier (Analyzed_Formal);
10291 Acc_Def : Node_Id := Empty;
10292 Act_Assoc : constant Node_Id := Parent (Actual);
10293 Actual_Decl : Node_Id := Empty;
10294 Decl_Node : Node_Id;
10295 Def : Node_Id;
10296 Ftyp : Entity_Id;
10297 List : constant List_Id := New_List;
10298 Loc : constant Source_Ptr := Sloc (Actual);
10299 Orig_Ftyp : constant Entity_Id := Etype (A_Gen_Obj);
10300 Subt_Decl : Node_Id := Empty;
10301 Subt_Mark : Node_Id := Empty;
10302
10303 function Copy_Access_Def return Node_Id;
10304 -- If formal is an anonymous access, copy access definition of formal
10305 -- for generated object declaration.
10306
10307 ---------------------
10308 -- Copy_Access_Def --
10309 ---------------------
10310
10311 function Copy_Access_Def return Node_Id is
10312 begin
10313 Def := New_Copy_Tree (Acc_Def);
10314
10315 -- In addition, if formal is an access to subprogram we need to
10316 -- generate new formals for the signature of the default, so that
10317 -- the tree is properly formatted for ASIS use.
10318
10319 if Present (Access_To_Subprogram_Definition (Acc_Def)) then
10320 declare
10321 Par_Spec : Node_Id;
10322 begin
10323 Par_Spec :=
10324 First (Parameter_Specifications
10325 (Access_To_Subprogram_Definition (Def)));
10326 while Present (Par_Spec) loop
10327 Set_Defining_Identifier (Par_Spec,
10328 Make_Defining_Identifier (Sloc (Acc_Def),
10329 Chars => Chars (Defining_Identifier (Par_Spec))));
10330 Next (Par_Spec);
10331 end loop;
10332 end;
10333 end if;
10334
10335 return Def;
10336 end Copy_Access_Def;
10337
10338 -- Start of processing for Instantiate_Object
10339
10340 begin
10341 -- Formal may be an anonymous access
10342
10343 if Present (Subtype_Mark (Formal)) then
10344 Subt_Mark := Subtype_Mark (Formal);
10345 else
10346 Check_Access_Definition (Formal);
10347 Acc_Def := Access_Definition (Formal);
10348 end if;
10349
10350 -- Sloc for error message on missing actual
10351
10352 Error_Msg_Sloc := Sloc (Scope (A_Gen_Obj));
10353
10354 if Get_Instance_Of (Gen_Obj) /= Gen_Obj then
10355 Error_Msg_N ("duplicate instantiation of generic parameter", Actual);
10356 end if;
10357
10358 Set_Parent (List, Parent (Actual));
10359
10360 -- OUT present
10361
10362 if Out_Present (Formal) then
10363
10364 -- An IN OUT generic actual must be a name. The instantiation is a
10365 -- renaming declaration. The actual is the name being renamed. We
10366 -- use the actual directly, rather than a copy, because it is not
10367 -- used further in the list of actuals, and because a copy or a use
10368 -- of relocate_node is incorrect if the instance is nested within a
10369 -- generic. In order to simplify ASIS searches, the Generic_Parent
10370 -- field links the declaration to the generic association.
10371
10372 if No (Actual) then
10373 Error_Msg_NE
10374 ("missing actual &",
10375 Instantiation_Node, Gen_Obj);
10376 Error_Msg_NE
10377 ("\in instantiation of & declared#",
10378 Instantiation_Node, Scope (A_Gen_Obj));
10379 Abandon_Instantiation (Instantiation_Node);
10380 end if;
10381
10382 if Present (Subt_Mark) then
10383 Decl_Node :=
10384 Make_Object_Renaming_Declaration (Loc,
10385 Defining_Identifier => New_Copy (Gen_Obj),
10386 Subtype_Mark => New_Copy_Tree (Subt_Mark),
10387 Name => Actual);
10388
10389 else pragma Assert (Present (Acc_Def));
10390 Decl_Node :=
10391 Make_Object_Renaming_Declaration (Loc,
10392 Defining_Identifier => New_Copy (Gen_Obj),
10393 Access_Definition => New_Copy_Tree (Acc_Def),
10394 Name => Actual);
10395 end if;
10396
10397 Set_Corresponding_Generic_Association (Decl_Node, Act_Assoc);
10398
10399 -- The analysis of the actual may produce Insert_Action nodes, so
10400 -- the declaration must have a context in which to attach them.
10401
10402 Append (Decl_Node, List);
10403 Analyze (Actual);
10404
10405 -- Return if the analysis of the actual reported some error
10406
10407 if Etype (Actual) = Any_Type then
10408 return List;
10409 end if;
10410
10411 -- This check is performed here because Analyze_Object_Renaming will
10412 -- not check it when Comes_From_Source is False. Note though that the
10413 -- check for the actual being the name of an object will be performed
10414 -- in Analyze_Object_Renaming.
10415
10416 if Is_Object_Reference (Actual)
10417 and then Is_Dependent_Component_Of_Mutable_Object (Actual)
10418 then
10419 Error_Msg_N
10420 ("illegal discriminant-dependent component for in out parameter",
10421 Actual);
10422 end if;
10423
10424 -- The actual has to be resolved in order to check that it is a
10425 -- variable (due to cases such as F (1), where F returns access to
10426 -- an array, and for overloaded prefixes).
10427
10428 Ftyp := Get_Instance_Of (Etype (A_Gen_Obj));
10429
10430 -- If the type of the formal is not itself a formal, and the current
10431 -- unit is a child unit, the formal type must be declared in a
10432 -- parent, and must be retrieved by visibility.
10433
10434 if Ftyp = Orig_Ftyp
10435 and then Is_Generic_Unit (Scope (Ftyp))
10436 and then Is_Child_Unit (Scope (A_Gen_Obj))
10437 then
10438 declare
10439 Temp : constant Node_Id :=
10440 New_Copy_Tree (Subtype_Mark (Analyzed_Formal));
10441 begin
10442 Set_Entity (Temp, Empty);
10443 Find_Type (Temp);
10444 Ftyp := Entity (Temp);
10445 end;
10446 end if;
10447
10448 if Is_Private_Type (Ftyp)
10449 and then not Is_Private_Type (Etype (Actual))
10450 and then (Base_Type (Full_View (Ftyp)) = Base_Type (Etype (Actual))
10451 or else Base_Type (Etype (Actual)) = Ftyp)
10452 then
10453 -- If the actual has the type of the full view of the formal, or
10454 -- else a non-private subtype of the formal, then the visibility
10455 -- of the formal type has changed. Add to the actuals a subtype
10456 -- declaration that will force the exchange of views in the body
10457 -- of the instance as well.
10458
10459 Subt_Decl :=
10460 Make_Subtype_Declaration (Loc,
10461 Defining_Identifier => Make_Temporary (Loc, 'P'),
10462 Subtype_Indication => New_Occurrence_Of (Ftyp, Loc));
10463
10464 Prepend (Subt_Decl, List);
10465
10466 Prepend_Elmt (Full_View (Ftyp), Exchanged_Views);
10467 Exchange_Declarations (Ftyp);
10468 end if;
10469
10470 Resolve (Actual, Ftyp);
10471
10472 if not Denotes_Variable (Actual) then
10473 Error_Msg_NE ("actual for& must be a variable", Actual, Gen_Obj);
10474
10475 elsif Base_Type (Ftyp) /= Base_Type (Etype (Actual)) then
10476
10477 -- Ada 2005 (AI-423): For a generic formal object of mode in out,
10478 -- the type of the actual shall resolve to a specific anonymous
10479 -- access type.
10480
10481 if Ada_Version < Ada_2005
10482 or else Ekind (Base_Type (Ftyp)) /=
10483 E_Anonymous_Access_Type
10484 or else Ekind (Base_Type (Etype (Actual))) /=
10485 E_Anonymous_Access_Type
10486 then
10487 Error_Msg_NE
10488 ("type of actual does not match type of&", Actual, Gen_Obj);
10489 end if;
10490 end if;
10491
10492 Note_Possible_Modification (Actual, Sure => True);
10493
10494 -- Check for instantiation of atomic/volatile actual for
10495 -- non-atomic/volatile formal (RM C.6 (12)).
10496
10497 if Is_Atomic_Object (Actual) and then not Is_Atomic (Orig_Ftyp) then
10498 Error_Msg_N
10499 ("cannot instantiate non-atomic formal object "
10500 & "with atomic actual", Actual);
10501
10502 elsif Is_Volatile_Object (Actual) and then not Is_Volatile (Orig_Ftyp)
10503 then
10504 Error_Msg_N
10505 ("cannot instantiate non-volatile formal object "
10506 & "with volatile actual", Actual);
10507 end if;
10508
10509 -- Formal in-parameter
10510
10511 else
10512 -- The instantiation of a generic formal in-parameter is constant
10513 -- declaration. The actual is the expression for that declaration.
10514 -- Its type is a full copy of the type of the formal. This may be
10515 -- an access to subprogram, for which we need to generate entities
10516 -- for the formals in the new signature.
10517
10518 if Present (Actual) then
10519 if Present (Subt_Mark) then
10520 Def := New_Copy_Tree (Subt_Mark);
10521 else pragma Assert (Present (Acc_Def));
10522 Def := Copy_Access_Def;
10523 end if;
10524
10525 Decl_Node :=
10526 Make_Object_Declaration (Loc,
10527 Defining_Identifier => New_Copy (Gen_Obj),
10528 Constant_Present => True,
10529 Null_Exclusion_Present => Null_Exclusion_Present (Formal),
10530 Object_Definition => Def,
10531 Expression => Actual);
10532
10533 Set_Corresponding_Generic_Association (Decl_Node, Act_Assoc);
10534
10535 -- A generic formal object of a tagged type is defined to be
10536 -- aliased so the new constant must also be treated as aliased.
10537
10538 if Is_Tagged_Type (Etype (A_Gen_Obj)) then
10539 Set_Aliased_Present (Decl_Node);
10540 end if;
10541
10542 Append (Decl_Node, List);
10543
10544 -- No need to repeat (pre-)analysis of some expression nodes
10545 -- already handled in Preanalyze_Actuals.
10546
10547 if Nkind (Actual) /= N_Allocator then
10548 Analyze (Actual);
10549
10550 -- Return if the analysis of the actual reported some error
10551
10552 if Etype (Actual) = Any_Type then
10553 return List;
10554 end if;
10555 end if;
10556
10557 declare
10558 Formal_Type : constant Entity_Id := Etype (A_Gen_Obj);
10559 Typ : Entity_Id;
10560
10561 begin
10562 Typ := Get_Instance_Of (Formal_Type);
10563
10564 -- If the actual appears in the current or an enclosing scope,
10565 -- use its type directly. This is relevant if it has an actual
10566 -- subtype that is distinct from its nominal one. This cannot
10567 -- be done in general because the type of the actual may
10568 -- depend on other actuals, and only be fully determined when
10569 -- the enclosing instance is analyzed.
10570
10571 if Present (Etype (Actual))
10572 and then Is_Constr_Subt_For_U_Nominal (Etype (Actual))
10573 then
10574 Freeze_Before (Instantiation_Node, Etype (Actual));
10575 else
10576 Freeze_Before (Instantiation_Node, Typ);
10577 end if;
10578
10579 -- If the actual is an aggregate, perform name resolution on
10580 -- its components (the analysis of an aggregate does not do it)
10581 -- to capture local names that may be hidden if the generic is
10582 -- a child unit.
10583
10584 if Nkind (Actual) = N_Aggregate then
10585 Preanalyze_And_Resolve (Actual, Typ);
10586 end if;
10587
10588 if Is_Limited_Type (Typ)
10589 and then not OK_For_Limited_Init (Typ, Actual)
10590 then
10591 Error_Msg_N
10592 ("initialization not allowed for limited types", Actual);
10593 Explain_Limited_Type (Typ, Actual);
10594 end if;
10595 end;
10596
10597 elsif Present (Default_Expression (Formal)) then
10598
10599 -- Use default to construct declaration
10600
10601 if Present (Subt_Mark) then
10602 Def := New_Copy (Subt_Mark);
10603 else pragma Assert (Present (Acc_Def));
10604 Def := Copy_Access_Def;
10605 end if;
10606
10607 Decl_Node :=
10608 Make_Object_Declaration (Sloc (Formal),
10609 Defining_Identifier => New_Copy (Gen_Obj),
10610 Constant_Present => True,
10611 Null_Exclusion_Present => Null_Exclusion_Present (Formal),
10612 Object_Definition => Def,
10613 Expression => New_Copy_Tree
10614 (Default_Expression (Formal)));
10615
10616 Append (Decl_Node, List);
10617 Set_Analyzed (Expression (Decl_Node), False);
10618
10619 else
10620 Error_Msg_NE ("missing actual&", Instantiation_Node, Gen_Obj);
10621 Error_Msg_NE ("\in instantiation of & declared#",
10622 Instantiation_Node, Scope (A_Gen_Obj));
10623
10624 if Is_Scalar_Type (Etype (A_Gen_Obj)) then
10625
10626 -- Create dummy constant declaration so that instance can be
10627 -- analyzed, to minimize cascaded visibility errors.
10628
10629 if Present (Subt_Mark) then
10630 Def := Subt_Mark;
10631 else pragma Assert (Present (Acc_Def));
10632 Def := Acc_Def;
10633 end if;
10634
10635 Decl_Node :=
10636 Make_Object_Declaration (Loc,
10637 Defining_Identifier => New_Copy (Gen_Obj),
10638 Constant_Present => True,
10639 Null_Exclusion_Present => Null_Exclusion_Present (Formal),
10640 Object_Definition => New_Copy (Def),
10641 Expression =>
10642 Make_Attribute_Reference (Sloc (Gen_Obj),
10643 Attribute_Name => Name_First,
10644 Prefix => New_Copy (Def)));
10645
10646 Append (Decl_Node, List);
10647
10648 else
10649 Abandon_Instantiation (Instantiation_Node);
10650 end if;
10651 end if;
10652 end if;
10653
10654 if Nkind (Actual) in N_Has_Entity then
10655 Actual_Decl := Parent (Entity (Actual));
10656 end if;
10657
10658 -- Ada 2005 (AI-423): For a formal object declaration with a null
10659 -- exclusion or an access definition that has a null exclusion: If the
10660 -- actual matching the formal object declaration denotes a generic
10661 -- formal object of another generic unit G, and the instantiation
10662 -- containing the actual occurs within the body of G or within the body
10663 -- of a generic unit declared within the declarative region of G, then
10664 -- the declaration of the formal object of G must have a null exclusion.
10665 -- Otherwise, the subtype of the actual matching the formal object
10666 -- declaration shall exclude null.
10667
10668 if Ada_Version >= Ada_2005
10669 and then Present (Actual_Decl)
10670 and then Nkind_In (Actual_Decl, N_Formal_Object_Declaration,
10671 N_Object_Declaration)
10672 and then Nkind (Analyzed_Formal) = N_Formal_Object_Declaration
10673 and then not Has_Null_Exclusion (Actual_Decl)
10674 and then Has_Null_Exclusion (Analyzed_Formal)
10675 then
10676 Error_Msg_Sloc := Sloc (Analyzed_Formal);
10677 Error_Msg_N
10678 ("actual must exclude null to match generic formal#", Actual);
10679 end if;
10680
10681 -- An effectively volatile object cannot be used as an actual in a
10682 -- generic instantiation (SPARK RM 7.1.3(7)). The following check is
10683 -- relevant only when SPARK_Mode is on as it is not a standard Ada
10684 -- legality rule.
10685
10686 if SPARK_Mode = On
10687 and then Present (Actual)
10688 and then Is_Effectively_Volatile_Object (Actual)
10689 then
10690 Error_Msg_N
10691 ("volatile object cannot act as actual in generic instantiation",
10692 Actual);
10693 end if;
10694
10695 return List;
10696 end Instantiate_Object;
10697
10698 ------------------------------
10699 -- Instantiate_Package_Body --
10700 ------------------------------
10701
10702 procedure Instantiate_Package_Body
10703 (Body_Info : Pending_Body_Info;
10704 Inlined_Body : Boolean := False;
10705 Body_Optional : Boolean := False)
10706 is
10707 Act_Decl : constant Node_Id := Body_Info.Act_Decl;
10708 Inst_Node : constant Node_Id := Body_Info.Inst_Node;
10709 Loc : constant Source_Ptr := Sloc (Inst_Node);
10710
10711 Gen_Id : constant Node_Id := Name (Inst_Node);
10712 Gen_Unit : constant Entity_Id := Get_Generic_Entity (Inst_Node);
10713 Gen_Decl : constant Node_Id := Unit_Declaration_Node (Gen_Unit);
10714 Act_Spec : constant Node_Id := Specification (Act_Decl);
10715 Act_Decl_Id : constant Entity_Id := Defining_Entity (Act_Spec);
10716
10717 Save_IPSM : constant Boolean := Ignore_Pragma_SPARK_Mode;
10718 Save_Style_Check : constant Boolean := Style_Check;
10719
10720 Act_Body : Node_Id;
10721 Act_Body_Id : Entity_Id;
10722 Act_Body_Name : Node_Id;
10723 Gen_Body : Node_Id;
10724 Gen_Body_Id : Node_Id;
10725 Par_Ent : Entity_Id := Empty;
10726 Par_Vis : Boolean := False;
10727
10728 Parent_Installed : Boolean := False;
10729
10730 Vis_Prims_List : Elist_Id := No_Elist;
10731 -- List of primitives made temporarily visible in the instantiation
10732 -- to match the visibility of the formal type
10733
10734 procedure Check_Initialized_Types;
10735 -- In a generic package body, an entity of a generic private type may
10736 -- appear uninitialized. This is suspicious, unless the actual is a
10737 -- fully initialized type.
10738
10739 -----------------------------
10740 -- Check_Initialized_Types --
10741 -----------------------------
10742
10743 procedure Check_Initialized_Types is
10744 Decl : Node_Id;
10745 Formal : Entity_Id;
10746 Actual : Entity_Id;
10747 Uninit_Var : Entity_Id;
10748
10749 begin
10750 Decl := First (Generic_Formal_Declarations (Gen_Decl));
10751 while Present (Decl) loop
10752 Uninit_Var := Empty;
10753
10754 if Nkind (Decl) = N_Private_Extension_Declaration then
10755 Uninit_Var := Uninitialized_Variable (Decl);
10756
10757 elsif Nkind (Decl) = N_Formal_Type_Declaration
10758 and then Nkind (Formal_Type_Definition (Decl)) =
10759 N_Formal_Private_Type_Definition
10760 then
10761 Uninit_Var :=
10762 Uninitialized_Variable (Formal_Type_Definition (Decl));
10763 end if;
10764
10765 if Present (Uninit_Var) then
10766 Formal := Defining_Identifier (Decl);
10767 Actual := First_Entity (Act_Decl_Id);
10768
10769 -- For each formal there is a subtype declaration that renames
10770 -- the actual and has the same name as the formal. Locate the
10771 -- formal for warning message about uninitialized variables
10772 -- in the generic, for which the actual type should be a fully
10773 -- initialized type.
10774
10775 while Present (Actual) loop
10776 exit when Ekind (Actual) = E_Package
10777 and then Present (Renamed_Object (Actual));
10778
10779 if Chars (Actual) = Chars (Formal)
10780 and then not Is_Scalar_Type (Actual)
10781 and then not Is_Fully_Initialized_Type (Actual)
10782 and then Warn_On_No_Value_Assigned
10783 then
10784 Error_Msg_Node_2 := Formal;
10785 Error_Msg_NE
10786 ("generic unit has uninitialized variable& of "
10787 & "formal private type &?v?", Actual, Uninit_Var);
10788 Error_Msg_NE
10789 ("actual type for& should be fully initialized type?v?",
10790 Actual, Formal);
10791 exit;
10792 end if;
10793
10794 Next_Entity (Actual);
10795 end loop;
10796 end if;
10797
10798 Next (Decl);
10799 end loop;
10800 end Check_Initialized_Types;
10801
10802 -- Start of processing for Instantiate_Package_Body
10803
10804 begin
10805 Gen_Body_Id := Corresponding_Body (Gen_Decl);
10806
10807 -- The instance body may already have been processed, as the parent of
10808 -- another instance that is inlined (Load_Parent_Of_Generic).
10809
10810 if Present (Corresponding_Body (Instance_Spec (Inst_Node))) then
10811 return;
10812 end if;
10813
10814 Expander_Mode_Save_And_Set (Body_Info.Expander_Status);
10815
10816 -- Re-establish the state of information on which checks are suppressed.
10817 -- This information was set in Body_Info at the point of instantiation,
10818 -- and now we restore it so that the instance is compiled using the
10819 -- check status at the instantiation (RM 11.5(7.2/2), AI95-00224-01).
10820
10821 Local_Suppress_Stack_Top := Body_Info.Local_Suppress_Stack_Top;
10822 Scope_Suppress := Body_Info.Scope_Suppress;
10823 Opt.Ada_Version := Body_Info.Version;
10824 Opt.Ada_Version_Pragma := Body_Info.Version_Pragma;
10825 Restore_Warnings (Body_Info.Warnings);
10826 Opt.SPARK_Mode := Body_Info.SPARK_Mode;
10827 Opt.SPARK_Mode_Pragma := Body_Info.SPARK_Mode_Pragma;
10828
10829 if No (Gen_Body_Id) then
10830
10831 -- Do not look for parent of generic body if none is required.
10832 -- This may happen when the routine is called as part of the
10833 -- Pending_Instantiations processing, when nested instances
10834 -- may precede the one generated from the main unit.
10835
10836 if not Unit_Requires_Body (Defining_Entity (Gen_Decl))
10837 and then Body_Optional
10838 then
10839 return;
10840 else
10841 Load_Parent_Of_Generic
10842 (Inst_Node, Specification (Gen_Decl), Body_Optional);
10843 Gen_Body_Id := Corresponding_Body (Gen_Decl);
10844 end if;
10845 end if;
10846
10847 -- Establish global variable for sloc adjustment and for error recovery
10848 -- In the case of an instance body for an instantiation with actuals
10849 -- from a limited view, the instance body is placed at the beginning
10850 -- of the enclosing package body: use the body entity as the source
10851 -- location for nodes of the instance body.
10852
10853 if not Is_Empty_Elmt_List (Incomplete_Actuals (Act_Decl_Id)) then
10854 declare
10855 Scop : constant Entity_Id := Scope (Act_Decl_Id);
10856 Body_Id : constant Node_Id :=
10857 Corresponding_Body (Unit_Declaration_Node (Scop));
10858
10859 begin
10860 Instantiation_Node := Body_Id;
10861 end;
10862 else
10863 Instantiation_Node := Inst_Node;
10864 end if;
10865
10866 if Present (Gen_Body_Id) then
10867 Save_Env (Gen_Unit, Act_Decl_Id);
10868 Style_Check := False;
10869
10870 -- If the context of the instance is subject to SPARK_Mode "off" or
10871 -- the annotation is altogether missing, set the global flag which
10872 -- signals Analyze_Pragma to ignore all SPARK_Mode pragmas within
10873 -- the instance.
10874
10875 if SPARK_Mode /= On then
10876 Ignore_Pragma_SPARK_Mode := True;
10877 end if;
10878
10879 Current_Sem_Unit := Body_Info.Current_Sem_Unit;
10880 Gen_Body := Unit_Declaration_Node (Gen_Body_Id);
10881
10882 Create_Instantiation_Source
10883 (Inst_Node, Gen_Body_Id, S_Adjustment);
10884
10885 Act_Body :=
10886 Copy_Generic_Node
10887 (Original_Node (Gen_Body), Empty, Instantiating => True);
10888
10889 -- Create proper (possibly qualified) defining name for the body, to
10890 -- correspond to the one in the spec.
10891
10892 Act_Body_Id :=
10893 Make_Defining_Identifier (Sloc (Act_Decl_Id), Chars (Act_Decl_Id));
10894 Set_Comes_From_Source (Act_Body_Id, Comes_From_Source (Act_Decl_Id));
10895
10896 -- Some attributes of spec entity are not inherited by body entity
10897
10898 Set_Handler_Records (Act_Body_Id, No_List);
10899
10900 if Nkind (Defining_Unit_Name (Act_Spec)) =
10901 N_Defining_Program_Unit_Name
10902 then
10903 Act_Body_Name :=
10904 Make_Defining_Program_Unit_Name (Loc,
10905 Name =>
10906 New_Copy_Tree (Name (Defining_Unit_Name (Act_Spec))),
10907 Defining_Identifier => Act_Body_Id);
10908 else
10909 Act_Body_Name := Act_Body_Id;
10910 end if;
10911
10912 Set_Defining_Unit_Name (Act_Body, Act_Body_Name);
10913
10914 Set_Corresponding_Spec (Act_Body, Act_Decl_Id);
10915 Check_Generic_Actuals (Act_Decl_Id, False);
10916 Check_Initialized_Types;
10917
10918 -- Install primitives hidden at the point of the instantiation but
10919 -- visible when processing the generic formals
10920
10921 declare
10922 E : Entity_Id;
10923
10924 begin
10925 E := First_Entity (Act_Decl_Id);
10926 while Present (E) loop
10927 if Is_Type (E)
10928 and then Is_Generic_Actual_Type (E)
10929 and then Is_Tagged_Type (E)
10930 then
10931 Install_Hidden_Primitives
10932 (Prims_List => Vis_Prims_List,
10933 Gen_T => Generic_Parent_Type (Parent (E)),
10934 Act_T => E);
10935 end if;
10936
10937 Next_Entity (E);
10938 end loop;
10939 end;
10940
10941 -- If it is a child unit, make the parent instance (which is an
10942 -- instance of the parent of the generic) visible. The parent
10943 -- instance is the prefix of the name of the generic unit.
10944
10945 if Ekind (Scope (Gen_Unit)) = E_Generic_Package
10946 and then Nkind (Gen_Id) = N_Expanded_Name
10947 then
10948 Par_Ent := Entity (Prefix (Gen_Id));
10949 Par_Vis := Is_Immediately_Visible (Par_Ent);
10950 Install_Parent (Par_Ent, In_Body => True);
10951 Parent_Installed := True;
10952
10953 elsif Is_Child_Unit (Gen_Unit) then
10954 Par_Ent := Scope (Gen_Unit);
10955 Par_Vis := Is_Immediately_Visible (Par_Ent);
10956 Install_Parent (Par_Ent, In_Body => True);
10957 Parent_Installed := True;
10958 end if;
10959
10960 -- If the instantiation is a library unit, and this is the main unit,
10961 -- then build the resulting compilation unit nodes for the instance.
10962 -- If this is a compilation unit but it is not the main unit, then it
10963 -- is the body of a unit in the context, that is being compiled
10964 -- because it is encloses some inlined unit or another generic unit
10965 -- being instantiated. In that case, this body is not part of the
10966 -- current compilation, and is not attached to the tree, but its
10967 -- parent must be set for analysis.
10968
10969 if Nkind (Parent (Inst_Node)) = N_Compilation_Unit then
10970
10971 -- Replace instance node with body of instance, and create new
10972 -- node for corresponding instance declaration.
10973
10974 Build_Instance_Compilation_Unit_Nodes
10975 (Inst_Node, Act_Body, Act_Decl);
10976 Analyze (Inst_Node);
10977
10978 if Parent (Inst_Node) = Cunit (Main_Unit) then
10979
10980 -- If the instance is a child unit itself, then set the scope
10981 -- of the expanded body to be the parent of the instantiation
10982 -- (ensuring that the fully qualified name will be generated
10983 -- for the elaboration subprogram).
10984
10985 if Nkind (Defining_Unit_Name (Act_Spec)) =
10986 N_Defining_Program_Unit_Name
10987 then
10988 Set_Scope (Defining_Entity (Inst_Node), Scope (Act_Decl_Id));
10989 end if;
10990 end if;
10991
10992 -- Case where instantiation is not a library unit
10993
10994 else
10995 -- If this is an early instantiation, i.e. appears textually
10996 -- before the corresponding body and must be elaborated first,
10997 -- indicate that the body instance is to be delayed.
10998
10999 Install_Body (Act_Body, Inst_Node, Gen_Body, Gen_Decl);
11000
11001 -- Now analyze the body. We turn off all checks if this is an
11002 -- internal unit, since there is no reason to have checks on for
11003 -- any predefined run-time library code. All such code is designed
11004 -- to be compiled with checks off.
11005
11006 -- Note that we do NOT apply this criterion to children of GNAT
11007 -- The latter units must suppress checks explicitly if needed.
11008
11009 -- We also do not suppress checks in CodePeer mode where we are
11010 -- interested in finding possible runtime errors.
11011
11012 if not CodePeer_Mode
11013 and then Is_Predefined_File_Name
11014 (Unit_File_Name (Get_Source_Unit (Gen_Decl)))
11015 then
11016 Analyze (Act_Body, Suppress => All_Checks);
11017 else
11018 Analyze (Act_Body);
11019 end if;
11020 end if;
11021
11022 Inherit_Context (Gen_Body, Inst_Node);
11023
11024 -- Remove the parent instances if they have been placed on the scope
11025 -- stack to compile the body.
11026
11027 if Parent_Installed then
11028 Remove_Parent (In_Body => True);
11029
11030 -- Restore the previous visibility of the parent
11031
11032 Set_Is_Immediately_Visible (Par_Ent, Par_Vis);
11033 end if;
11034
11035 Restore_Hidden_Primitives (Vis_Prims_List);
11036 Restore_Private_Views (Act_Decl_Id);
11037
11038 -- Remove the current unit from visibility if this is an instance
11039 -- that is not elaborated on the fly for inlining purposes.
11040
11041 if not Inlined_Body then
11042 Set_Is_Immediately_Visible (Act_Decl_Id, False);
11043 end if;
11044
11045 Restore_Env;
11046 Ignore_Pragma_SPARK_Mode := Save_IPSM;
11047 Style_Check := Save_Style_Check;
11048
11049 -- If we have no body, and the unit requires a body, then complain. This
11050 -- complaint is suppressed if we have detected other errors (since a
11051 -- common reason for missing the body is that it had errors).
11052 -- In CodePeer mode, a warning has been emitted already, no need for
11053 -- further messages.
11054
11055 elsif Unit_Requires_Body (Gen_Unit)
11056 and then not Body_Optional
11057 then
11058 if CodePeer_Mode then
11059 null;
11060
11061 elsif Serious_Errors_Detected = 0 then
11062 Error_Msg_NE
11063 ("cannot find body of generic package &", Inst_Node, Gen_Unit);
11064
11065 -- Don't attempt to perform any cleanup actions if some other error
11066 -- was already detected, since this can cause blowups.
11067
11068 else
11069 return;
11070 end if;
11071
11072 -- Case of package that does not need a body
11073
11074 else
11075 -- If the instantiation of the declaration is a library unit, rewrite
11076 -- the original package instantiation as a package declaration in the
11077 -- compilation unit node.
11078
11079 if Nkind (Parent (Inst_Node)) = N_Compilation_Unit then
11080 Set_Parent_Spec (Act_Decl, Parent_Spec (Inst_Node));
11081 Rewrite (Inst_Node, Act_Decl);
11082
11083 -- Generate elaboration entity, in case spec has elaboration code.
11084 -- This cannot be done when the instance is analyzed, because it
11085 -- is not known yet whether the body exists.
11086
11087 Set_Elaboration_Entity_Required (Act_Decl_Id, False);
11088 Build_Elaboration_Entity (Parent (Inst_Node), Act_Decl_Id);
11089
11090 -- If the instantiation is not a library unit, then append the
11091 -- declaration to the list of implicitly generated entities, unless
11092 -- it is already a list member which means that it was already
11093 -- processed
11094
11095 elsif not Is_List_Member (Act_Decl) then
11096 Mark_Rewrite_Insertion (Act_Decl);
11097 Insert_Before (Inst_Node, Act_Decl);
11098 end if;
11099 end if;
11100
11101 Expander_Mode_Restore;
11102 end Instantiate_Package_Body;
11103
11104 ---------------------------------
11105 -- Instantiate_Subprogram_Body --
11106 ---------------------------------
11107
11108 procedure Instantiate_Subprogram_Body
11109 (Body_Info : Pending_Body_Info;
11110 Body_Optional : Boolean := False)
11111 is
11112 Act_Decl : constant Node_Id := Body_Info.Act_Decl;
11113 Inst_Node : constant Node_Id := Body_Info.Inst_Node;
11114 Loc : constant Source_Ptr := Sloc (Inst_Node);
11115 Gen_Id : constant Node_Id := Name (Inst_Node);
11116 Gen_Unit : constant Entity_Id := Get_Generic_Entity (Inst_Node);
11117 Gen_Decl : constant Node_Id := Unit_Declaration_Node (Gen_Unit);
11118 Act_Decl_Id : constant Entity_Id :=
11119 Defining_Unit_Name (Specification (Act_Decl));
11120 Pack_Id : constant Entity_Id :=
11121 Defining_Unit_Name (Parent (Act_Decl));
11122
11123 Saved_IPSM : constant Boolean := Ignore_Pragma_SPARK_Mode;
11124 Saved_Style_Check : constant Boolean := Style_Check;
11125 Saved_Warnings : constant Warning_Record := Save_Warnings;
11126
11127 Act_Body : Node_Id;
11128 Act_Body_Id : Entity_Id;
11129 Gen_Body : Node_Id;
11130 Gen_Body_Id : Node_Id;
11131 Pack_Body : Node_Id;
11132 Par_Ent : Entity_Id := Empty;
11133 Par_Vis : Boolean := False;
11134 Ret_Expr : Node_Id;
11135
11136 Parent_Installed : Boolean := False;
11137
11138 begin
11139 Gen_Body_Id := Corresponding_Body (Gen_Decl);
11140
11141 -- Subprogram body may have been created already because of an inline
11142 -- pragma, or because of multiple elaborations of the enclosing package
11143 -- when several instances of the subprogram appear in the main unit.
11144
11145 if Present (Corresponding_Body (Act_Decl)) then
11146 return;
11147 end if;
11148
11149 Expander_Mode_Save_And_Set (Body_Info.Expander_Status);
11150
11151 -- Re-establish the state of information on which checks are suppressed.
11152 -- This information was set in Body_Info at the point of instantiation,
11153 -- and now we restore it so that the instance is compiled using the
11154 -- check status at the instantiation (RM 11.5(7.2/2), AI95-00224-01).
11155
11156 Local_Suppress_Stack_Top := Body_Info.Local_Suppress_Stack_Top;
11157 Scope_Suppress := Body_Info.Scope_Suppress;
11158 Opt.Ada_Version := Body_Info.Version;
11159 Opt.Ada_Version_Pragma := Body_Info.Version_Pragma;
11160 Restore_Warnings (Body_Info.Warnings);
11161 Opt.SPARK_Mode := Body_Info.SPARK_Mode;
11162 Opt.SPARK_Mode_Pragma := Body_Info.SPARK_Mode_Pragma;
11163
11164 if No (Gen_Body_Id) then
11165
11166 -- For imported generic subprogram, no body to compile, complete
11167 -- the spec entity appropriately.
11168
11169 if Is_Imported (Gen_Unit) then
11170 Set_Is_Imported (Act_Decl_Id);
11171 Set_First_Rep_Item (Act_Decl_Id, First_Rep_Item (Gen_Unit));
11172 Set_Interface_Name (Act_Decl_Id, Interface_Name (Gen_Unit));
11173 Set_Convention (Act_Decl_Id, Convention (Gen_Unit));
11174 Set_Has_Completion (Act_Decl_Id);
11175 return;
11176
11177 -- For other cases, compile the body
11178
11179 else
11180 Load_Parent_Of_Generic
11181 (Inst_Node, Specification (Gen_Decl), Body_Optional);
11182 Gen_Body_Id := Corresponding_Body (Gen_Decl);
11183 end if;
11184 end if;
11185
11186 Instantiation_Node := Inst_Node;
11187
11188 if Present (Gen_Body_Id) then
11189 Gen_Body := Unit_Declaration_Node (Gen_Body_Id);
11190
11191 if Nkind (Gen_Body) = N_Subprogram_Body_Stub then
11192
11193 -- Either body is not present, or context is non-expanding, as
11194 -- when compiling a subunit. Mark the instance as completed, and
11195 -- diagnose a missing body when needed.
11196
11197 if Expander_Active
11198 and then Operating_Mode = Generate_Code
11199 then
11200 Error_Msg_N
11201 ("missing proper body for instantiation", Gen_Body);
11202 end if;
11203
11204 Set_Has_Completion (Act_Decl_Id);
11205 return;
11206 end if;
11207
11208 Save_Env (Gen_Unit, Act_Decl_Id);
11209 Style_Check := False;
11210
11211 -- If the context of the instance is subject to SPARK_Mode "off" or
11212 -- the annotation is altogether missing, set the global flag which
11213 -- signals Analyze_Pragma to ignore all SPARK_Mode pragmas within
11214 -- the instance.
11215
11216 if SPARK_Mode /= On then
11217 Ignore_Pragma_SPARK_Mode := True;
11218 end if;
11219
11220 Current_Sem_Unit := Body_Info.Current_Sem_Unit;
11221 Create_Instantiation_Source
11222 (Inst_Node,
11223 Gen_Body_Id,
11224 S_Adjustment);
11225
11226 Act_Body :=
11227 Copy_Generic_Node
11228 (Original_Node (Gen_Body), Empty, Instantiating => True);
11229
11230 -- Create proper defining name for the body, to correspond to the one
11231 -- in the spec.
11232
11233 Act_Body_Id :=
11234 Make_Defining_Identifier (Sloc (Act_Decl_Id), Chars (Act_Decl_Id));
11235
11236 Set_Comes_From_Source (Act_Body_Id, Comes_From_Source (Act_Decl_Id));
11237 Set_Defining_Unit_Name (Specification (Act_Body), Act_Body_Id);
11238
11239 Set_Corresponding_Spec (Act_Body, Act_Decl_Id);
11240 Set_Has_Completion (Act_Decl_Id);
11241 Check_Generic_Actuals (Pack_Id, False);
11242
11243 -- Generate a reference to link the visible subprogram instance to
11244 -- the generic body, which for navigation purposes is the only
11245 -- available source for the instance.
11246
11247 Generate_Reference
11248 (Related_Instance (Pack_Id),
11249 Gen_Body_Id, 'b', Set_Ref => False, Force => True);
11250
11251 -- If it is a child unit, make the parent instance (which is an
11252 -- instance of the parent of the generic) visible. The parent
11253 -- instance is the prefix of the name of the generic unit.
11254
11255 if Ekind (Scope (Gen_Unit)) = E_Generic_Package
11256 and then Nkind (Gen_Id) = N_Expanded_Name
11257 then
11258 Par_Ent := Entity (Prefix (Gen_Id));
11259 Par_Vis := Is_Immediately_Visible (Par_Ent);
11260 Install_Parent (Par_Ent, In_Body => True);
11261 Parent_Installed := True;
11262
11263 elsif Is_Child_Unit (Gen_Unit) then
11264 Par_Ent := Scope (Gen_Unit);
11265 Par_Vis := Is_Immediately_Visible (Par_Ent);
11266 Install_Parent (Par_Ent, In_Body => True);
11267 Parent_Installed := True;
11268 end if;
11269
11270 -- Subprogram body is placed in the body of wrapper package,
11271 -- whose spec contains the subprogram declaration as well as
11272 -- the renaming declarations for the generic parameters.
11273
11274 Pack_Body :=
11275 Make_Package_Body (Loc,
11276 Defining_Unit_Name => New_Copy (Pack_Id),
11277 Declarations => New_List (Act_Body));
11278
11279 Set_Corresponding_Spec (Pack_Body, Pack_Id);
11280
11281 -- If the instantiation is a library unit, then build resulting
11282 -- compilation unit nodes for the instance. The declaration of
11283 -- the enclosing package is the grandparent of the subprogram
11284 -- declaration. First replace the instantiation node as the unit
11285 -- of the corresponding compilation.
11286
11287 if Nkind (Parent (Inst_Node)) = N_Compilation_Unit then
11288 if Parent (Inst_Node) = Cunit (Main_Unit) then
11289 Set_Unit (Parent (Inst_Node), Inst_Node);
11290 Build_Instance_Compilation_Unit_Nodes
11291 (Inst_Node, Pack_Body, Parent (Parent (Act_Decl)));
11292 Analyze (Inst_Node);
11293 else
11294 Set_Parent (Pack_Body, Parent (Inst_Node));
11295 Analyze (Pack_Body);
11296 end if;
11297
11298 else
11299 Insert_Before (Inst_Node, Pack_Body);
11300 Mark_Rewrite_Insertion (Pack_Body);
11301 Analyze (Pack_Body);
11302
11303 if Expander_Active then
11304 Freeze_Subprogram_Body (Inst_Node, Gen_Body, Pack_Id);
11305 end if;
11306 end if;
11307
11308 Inherit_Context (Gen_Body, Inst_Node);
11309
11310 Restore_Private_Views (Pack_Id, False);
11311
11312 if Parent_Installed then
11313 Remove_Parent (In_Body => True);
11314
11315 -- Restore the previous visibility of the parent
11316
11317 Set_Is_Immediately_Visible (Par_Ent, Par_Vis);
11318 end if;
11319
11320 Restore_Env;
11321 Ignore_Pragma_SPARK_Mode := Saved_IPSM;
11322 Style_Check := Saved_Style_Check;
11323 Restore_Warnings (Saved_Warnings);
11324
11325 -- Body not found. Error was emitted already. If there were no previous
11326 -- errors, this may be an instance whose scope is a premature instance.
11327 -- In that case we must insure that the (legal) program does raise
11328 -- program error if executed. We generate a subprogram body for this
11329 -- purpose. See DEC ac30vso.
11330
11331 -- Should not reference proprietary DEC tests in comments ???
11332
11333 elsif Serious_Errors_Detected = 0
11334 and then Nkind (Parent (Inst_Node)) /= N_Compilation_Unit
11335 then
11336 if Body_Optional then
11337 return;
11338
11339 elsif Ekind (Act_Decl_Id) = E_Procedure then
11340 Act_Body :=
11341 Make_Subprogram_Body (Loc,
11342 Specification =>
11343 Make_Procedure_Specification (Loc,
11344 Defining_Unit_Name =>
11345 Make_Defining_Identifier (Loc, Chars (Act_Decl_Id)),
11346 Parameter_Specifications =>
11347 New_Copy_List
11348 (Parameter_Specifications (Parent (Act_Decl_Id)))),
11349
11350 Declarations => Empty_List,
11351 Handled_Statement_Sequence =>
11352 Make_Handled_Sequence_Of_Statements (Loc,
11353 Statements =>
11354 New_List (
11355 Make_Raise_Program_Error (Loc,
11356 Reason =>
11357 PE_Access_Before_Elaboration))));
11358
11359 else
11360 Ret_Expr :=
11361 Make_Raise_Program_Error (Loc,
11362 Reason => PE_Access_Before_Elaboration);
11363
11364 Set_Etype (Ret_Expr, (Etype (Act_Decl_Id)));
11365 Set_Analyzed (Ret_Expr);
11366
11367 Act_Body :=
11368 Make_Subprogram_Body (Loc,
11369 Specification =>
11370 Make_Function_Specification (Loc,
11371 Defining_Unit_Name =>
11372 Make_Defining_Identifier (Loc, Chars (Act_Decl_Id)),
11373 Parameter_Specifications =>
11374 New_Copy_List
11375 (Parameter_Specifications (Parent (Act_Decl_Id))),
11376 Result_Definition =>
11377 New_Occurrence_Of (Etype (Act_Decl_Id), Loc)),
11378
11379 Declarations => Empty_List,
11380 Handled_Statement_Sequence =>
11381 Make_Handled_Sequence_Of_Statements (Loc,
11382 Statements =>
11383 New_List
11384 (Make_Simple_Return_Statement (Loc, Ret_Expr))));
11385 end if;
11386
11387 Pack_Body :=
11388 Make_Package_Body (Loc,
11389 Defining_Unit_Name => New_Copy (Pack_Id),
11390 Declarations => New_List (Act_Body));
11391
11392 Insert_After (Inst_Node, Pack_Body);
11393 Set_Corresponding_Spec (Pack_Body, Pack_Id);
11394 Analyze (Pack_Body);
11395 end if;
11396
11397 Expander_Mode_Restore;
11398 end Instantiate_Subprogram_Body;
11399
11400 ----------------------
11401 -- Instantiate_Type --
11402 ----------------------
11403
11404 function Instantiate_Type
11405 (Formal : Node_Id;
11406 Actual : Node_Id;
11407 Analyzed_Formal : Node_Id;
11408 Actual_Decls : List_Id) return List_Id
11409 is
11410 Gen_T : constant Entity_Id := Defining_Identifier (Formal);
11411 A_Gen_T : constant Entity_Id :=
11412 Defining_Identifier (Analyzed_Formal);
11413 Ancestor : Entity_Id := Empty;
11414 Def : constant Node_Id := Formal_Type_Definition (Formal);
11415 Act_T : Entity_Id;
11416 Decl_Node : Node_Id;
11417 Decl_Nodes : List_Id;
11418 Loc : Source_Ptr;
11419 Subt : Entity_Id;
11420
11421 procedure Diagnose_Predicated_Actual;
11422 -- There are a number of constructs in which a discrete type with
11423 -- predicates is illegal, e.g. as an index in an array type declaration.
11424 -- If a generic type is used is such a construct in a generic package
11425 -- declaration, it carries the flag No_Predicate_On_Actual. it is part
11426 -- of the generic contract that the actual cannot have predicates.
11427
11428 procedure Validate_Array_Type_Instance;
11429 procedure Validate_Access_Subprogram_Instance;
11430 procedure Validate_Access_Type_Instance;
11431 procedure Validate_Derived_Type_Instance;
11432 procedure Validate_Derived_Interface_Type_Instance;
11433 procedure Validate_Discriminated_Formal_Type;
11434 procedure Validate_Interface_Type_Instance;
11435 procedure Validate_Private_Type_Instance;
11436 procedure Validate_Incomplete_Type_Instance;
11437 -- These procedures perform validation tests for the named case.
11438 -- Validate_Discriminated_Formal_Type is shared by formal private
11439 -- types and Ada 2012 formal incomplete types.
11440
11441 function Subtypes_Match (Gen_T, Act_T : Entity_Id) return Boolean;
11442 -- Check that base types are the same and that the subtypes match
11443 -- statically. Used in several of the above.
11444
11445 ---------------------------------
11446 -- Diagnose_Predicated_Actual --
11447 ---------------------------------
11448
11449 procedure Diagnose_Predicated_Actual is
11450 begin
11451 if No_Predicate_On_Actual (A_Gen_T)
11452 and then Has_Predicates (Act_T)
11453 then
11454 Error_Msg_NE
11455 ("actual for& cannot be a type with predicate",
11456 Instantiation_Node, A_Gen_T);
11457
11458 elsif No_Dynamic_Predicate_On_Actual (A_Gen_T)
11459 and then Has_Predicates (Act_T)
11460 and then not Has_Static_Predicate_Aspect (Act_T)
11461 then
11462 Error_Msg_NE
11463 ("actual for& cannot be a type with a dynamic predicate",
11464 Instantiation_Node, A_Gen_T);
11465 end if;
11466 end Diagnose_Predicated_Actual;
11467
11468 --------------------
11469 -- Subtypes_Match --
11470 --------------------
11471
11472 function Subtypes_Match (Gen_T, Act_T : Entity_Id) return Boolean is
11473 T : constant Entity_Id := Get_Instance_Of (Gen_T);
11474
11475 begin
11476 -- Some detailed comments would be useful here ???
11477
11478 return ((Base_Type (T) = Act_T
11479 or else Base_Type (T) = Base_Type (Act_T))
11480 and then Subtypes_Statically_Match (T, Act_T))
11481
11482 or else (Is_Class_Wide_Type (Gen_T)
11483 and then Is_Class_Wide_Type (Act_T)
11484 and then Subtypes_Match
11485 (Get_Instance_Of (Root_Type (Gen_T)),
11486 Root_Type (Act_T)))
11487
11488 or else
11489 (Ekind_In (Gen_T, E_Anonymous_Access_Subprogram_Type,
11490 E_Anonymous_Access_Type)
11491 and then Ekind (Act_T) = Ekind (Gen_T)
11492 and then Subtypes_Statically_Match
11493 (Designated_Type (Gen_T), Designated_Type (Act_T)));
11494 end Subtypes_Match;
11495
11496 -----------------------------------------
11497 -- Validate_Access_Subprogram_Instance --
11498 -----------------------------------------
11499
11500 procedure Validate_Access_Subprogram_Instance is
11501 begin
11502 if not Is_Access_Type (Act_T)
11503 or else Ekind (Designated_Type (Act_T)) /= E_Subprogram_Type
11504 then
11505 Error_Msg_NE
11506 ("expect access type in instantiation of &", Actual, Gen_T);
11507 Abandon_Instantiation (Actual);
11508 end if;
11509
11510 -- According to AI05-288, actuals for access_to_subprograms must be
11511 -- subtype conformant with the generic formal. Previous to AI05-288
11512 -- only mode conformance was required.
11513
11514 -- This is a binding interpretation that applies to previous versions
11515 -- of the language, no need to maintain previous weaker checks.
11516
11517 Check_Subtype_Conformant
11518 (Designated_Type (Act_T),
11519 Designated_Type (A_Gen_T),
11520 Actual,
11521 Get_Inst => True);
11522
11523 if Ekind (Base_Type (Act_T)) = E_Access_Protected_Subprogram_Type then
11524 if Ekind (A_Gen_T) = E_Access_Subprogram_Type then
11525 Error_Msg_NE
11526 ("protected access type not allowed for formal &",
11527 Actual, Gen_T);
11528 end if;
11529
11530 elsif Ekind (A_Gen_T) = E_Access_Protected_Subprogram_Type then
11531 Error_Msg_NE
11532 ("expect protected access type for formal &",
11533 Actual, Gen_T);
11534 end if;
11535
11536 -- If the formal has a specified convention (which in most cases
11537 -- will be StdCall) verify that the actual has the same convention.
11538
11539 if Has_Convention_Pragma (A_Gen_T)
11540 and then Convention (A_Gen_T) /= Convention (Act_T)
11541 then
11542 Error_Msg_Name_1 := Get_Convention_Name (Convention (A_Gen_T));
11543 Error_Msg_NE
11544 ("actual for formal & must have convention %", Actual, Gen_T);
11545 end if;
11546 end Validate_Access_Subprogram_Instance;
11547
11548 -----------------------------------
11549 -- Validate_Access_Type_Instance --
11550 -----------------------------------
11551
11552 procedure Validate_Access_Type_Instance is
11553 Desig_Type : constant Entity_Id :=
11554 Find_Actual_Type (Designated_Type (A_Gen_T), A_Gen_T);
11555 Desig_Act : Entity_Id;
11556
11557 begin
11558 if not Is_Access_Type (Act_T) then
11559 Error_Msg_NE
11560 ("expect access type in instantiation of &", Actual, Gen_T);
11561 Abandon_Instantiation (Actual);
11562 end if;
11563
11564 if Is_Access_Constant (A_Gen_T) then
11565 if not Is_Access_Constant (Act_T) then
11566 Error_Msg_N
11567 ("actual type must be access-to-constant type", Actual);
11568 Abandon_Instantiation (Actual);
11569 end if;
11570 else
11571 if Is_Access_Constant (Act_T) then
11572 Error_Msg_N
11573 ("actual type must be access-to-variable type", Actual);
11574 Abandon_Instantiation (Actual);
11575
11576 elsif Ekind (A_Gen_T) = E_General_Access_Type
11577 and then Ekind (Base_Type (Act_T)) /= E_General_Access_Type
11578 then
11579 Error_Msg_N -- CODEFIX
11580 ("actual must be general access type!", Actual);
11581 Error_Msg_NE -- CODEFIX
11582 ("add ALL to }!", Actual, Act_T);
11583 Abandon_Instantiation (Actual);
11584 end if;
11585 end if;
11586
11587 -- The designated subtypes, that is to say the subtypes introduced
11588 -- by an access type declaration (and not by a subtype declaration)
11589 -- must match.
11590
11591 Desig_Act := Designated_Type (Base_Type (Act_T));
11592
11593 -- The designated type may have been introduced through a limited_
11594 -- with clause, in which case retrieve the non-limited view. This
11595 -- applies to incomplete types as well as to class-wide types.
11596
11597 if From_Limited_With (Desig_Act) then
11598 Desig_Act := Available_View (Desig_Act);
11599 end if;
11600
11601 if not Subtypes_Match (Desig_Type, Desig_Act) then
11602 Error_Msg_NE
11603 ("designated type of actual does not match that of formal &",
11604 Actual, Gen_T);
11605
11606 if not Predicates_Match (Desig_Type, Desig_Act) then
11607 Error_Msg_N ("\predicates do not match", Actual);
11608 end if;
11609
11610 Abandon_Instantiation (Actual);
11611
11612 elsif Is_Access_Type (Designated_Type (Act_T))
11613 and then Is_Constrained (Designated_Type (Designated_Type (Act_T)))
11614 /=
11615 Is_Constrained (Designated_Type (Desig_Type))
11616 then
11617 Error_Msg_NE
11618 ("designated type of actual does not match that of formal &",
11619 Actual, Gen_T);
11620
11621 if not Predicates_Match (Desig_Type, Desig_Act) then
11622 Error_Msg_N ("\predicates do not match", Actual);
11623 end if;
11624
11625 Abandon_Instantiation (Actual);
11626 end if;
11627
11628 -- Ada 2005: null-exclusion indicators of the two types must agree
11629
11630 if Can_Never_Be_Null (A_Gen_T) /= Can_Never_Be_Null (Act_T) then
11631 Error_Msg_NE
11632 ("non null exclusion of actual and formal & do not match",
11633 Actual, Gen_T);
11634 end if;
11635 end Validate_Access_Type_Instance;
11636
11637 ----------------------------------
11638 -- Validate_Array_Type_Instance --
11639 ----------------------------------
11640
11641 procedure Validate_Array_Type_Instance is
11642 I1 : Node_Id;
11643 I2 : Node_Id;
11644 T2 : Entity_Id;
11645
11646 function Formal_Dimensions return Nat;
11647 -- Count number of dimensions in array type formal
11648
11649 -----------------------
11650 -- Formal_Dimensions --
11651 -----------------------
11652
11653 function Formal_Dimensions return Nat is
11654 Num : Nat := 0;
11655 Index : Node_Id;
11656
11657 begin
11658 if Nkind (Def) = N_Constrained_Array_Definition then
11659 Index := First (Discrete_Subtype_Definitions (Def));
11660 else
11661 Index := First (Subtype_Marks (Def));
11662 end if;
11663
11664 while Present (Index) loop
11665 Num := Num + 1;
11666 Next_Index (Index);
11667 end loop;
11668
11669 return Num;
11670 end Formal_Dimensions;
11671
11672 -- Start of processing for Validate_Array_Type_Instance
11673
11674 begin
11675 if not Is_Array_Type (Act_T) then
11676 Error_Msg_NE
11677 ("expect array type in instantiation of &", Actual, Gen_T);
11678 Abandon_Instantiation (Actual);
11679
11680 elsif Nkind (Def) = N_Constrained_Array_Definition then
11681 if not (Is_Constrained (Act_T)) then
11682 Error_Msg_NE
11683 ("expect constrained array in instantiation of &",
11684 Actual, Gen_T);
11685 Abandon_Instantiation (Actual);
11686 end if;
11687
11688 else
11689 if Is_Constrained (Act_T) then
11690 Error_Msg_NE
11691 ("expect unconstrained array in instantiation of &",
11692 Actual, Gen_T);
11693 Abandon_Instantiation (Actual);
11694 end if;
11695 end if;
11696
11697 if Formal_Dimensions /= Number_Dimensions (Act_T) then
11698 Error_Msg_NE
11699 ("dimensions of actual do not match formal &", Actual, Gen_T);
11700 Abandon_Instantiation (Actual);
11701 end if;
11702
11703 I1 := First_Index (A_Gen_T);
11704 I2 := First_Index (Act_T);
11705 for J in 1 .. Formal_Dimensions loop
11706
11707 -- If the indexes of the actual were given by a subtype_mark,
11708 -- the index was transformed into a range attribute. Retrieve
11709 -- the original type mark for checking.
11710
11711 if Is_Entity_Name (Original_Node (I2)) then
11712 T2 := Entity (Original_Node (I2));
11713 else
11714 T2 := Etype (I2);
11715 end if;
11716
11717 if not Subtypes_Match
11718 (Find_Actual_Type (Etype (I1), A_Gen_T), T2)
11719 then
11720 Error_Msg_NE
11721 ("index types of actual do not match those of formal &",
11722 Actual, Gen_T);
11723 Abandon_Instantiation (Actual);
11724 end if;
11725
11726 Next_Index (I1);
11727 Next_Index (I2);
11728 end loop;
11729
11730 -- Check matching subtypes. Note that there are complex visibility
11731 -- issues when the generic is a child unit and some aspect of the
11732 -- generic type is declared in a parent unit of the generic. We do
11733 -- the test to handle this special case only after a direct check
11734 -- for static matching has failed. The case where both the component
11735 -- type and the array type are separate formals, and the component
11736 -- type is a private view may also require special checking in
11737 -- Subtypes_Match.
11738
11739 if Subtypes_Match
11740 (Component_Type (A_Gen_T), Component_Type (Act_T))
11741 or else
11742 Subtypes_Match
11743 (Find_Actual_Type (Component_Type (A_Gen_T), A_Gen_T),
11744 Component_Type (Act_T))
11745 then
11746 null;
11747 else
11748 Error_Msg_NE
11749 ("component subtype of actual does not match that of formal &",
11750 Actual, Gen_T);
11751 Abandon_Instantiation (Actual);
11752 end if;
11753
11754 if Has_Aliased_Components (A_Gen_T)
11755 and then not Has_Aliased_Components (Act_T)
11756 then
11757 Error_Msg_NE
11758 ("actual must have aliased components to match formal type &",
11759 Actual, Gen_T);
11760 end if;
11761 end Validate_Array_Type_Instance;
11762
11763 -----------------------------------------------
11764 -- Validate_Derived_Interface_Type_Instance --
11765 -----------------------------------------------
11766
11767 procedure Validate_Derived_Interface_Type_Instance is
11768 Par : constant Entity_Id := Entity (Subtype_Indication (Def));
11769 Elmt : Elmt_Id;
11770
11771 begin
11772 -- First apply interface instance checks
11773
11774 Validate_Interface_Type_Instance;
11775
11776 -- Verify that immediate parent interface is an ancestor of
11777 -- the actual.
11778
11779 if Present (Par)
11780 and then not Interface_Present_In_Ancestor (Act_T, Par)
11781 then
11782 Error_Msg_NE
11783 ("interface actual must include progenitor&", Actual, Par);
11784 end if;
11785
11786 -- Now verify that the actual includes all other ancestors of
11787 -- the formal.
11788
11789 Elmt := First_Elmt (Interfaces (A_Gen_T));
11790 while Present (Elmt) loop
11791 if not Interface_Present_In_Ancestor
11792 (Act_T, Get_Instance_Of (Node (Elmt)))
11793 then
11794 Error_Msg_NE
11795 ("interface actual must include progenitor&",
11796 Actual, Node (Elmt));
11797 end if;
11798
11799 Next_Elmt (Elmt);
11800 end loop;
11801 end Validate_Derived_Interface_Type_Instance;
11802
11803 ------------------------------------
11804 -- Validate_Derived_Type_Instance --
11805 ------------------------------------
11806
11807 procedure Validate_Derived_Type_Instance is
11808 Actual_Discr : Entity_Id;
11809 Ancestor_Discr : Entity_Id;
11810
11811 begin
11812 -- If the parent type in the generic declaration is itself a previous
11813 -- formal type, then it is local to the generic and absent from the
11814 -- analyzed generic definition. In that case the ancestor is the
11815 -- instance of the formal (which must have been instantiated
11816 -- previously), unless the ancestor is itself a formal derived type.
11817 -- In this latter case (which is the subject of Corrigendum 8652/0038
11818 -- (AI-202) the ancestor of the formals is the ancestor of its
11819 -- parent. Otherwise, the analyzed generic carries the parent type.
11820 -- If the parent type is defined in a previous formal package, then
11821 -- the scope of that formal package is that of the generic type
11822 -- itself, and it has already been mapped into the corresponding type
11823 -- in the actual package.
11824
11825 -- Common case: parent type defined outside of the generic
11826
11827 if Is_Entity_Name (Subtype_Mark (Def))
11828 and then Present (Entity (Subtype_Mark (Def)))
11829 then
11830 Ancestor := Get_Instance_Of (Entity (Subtype_Mark (Def)));
11831
11832 -- Check whether parent is defined in a previous formal package
11833
11834 elsif
11835 Scope (Scope (Base_Type (Etype (A_Gen_T)))) = Scope (A_Gen_T)
11836 then
11837 Ancestor :=
11838 Get_Instance_Of (Base_Type (Etype (A_Gen_T)));
11839
11840 -- The type may be a local derivation, or a type extension of a
11841 -- previous formal, or of a formal of a parent package.
11842
11843 elsif Is_Derived_Type (Get_Instance_Of (A_Gen_T))
11844 or else
11845 Ekind (Get_Instance_Of (A_Gen_T)) = E_Record_Type_With_Private
11846 then
11847 -- Check whether the parent is another derived formal type in the
11848 -- same generic unit.
11849
11850 if Etype (A_Gen_T) /= A_Gen_T
11851 and then Is_Generic_Type (Etype (A_Gen_T))
11852 and then Scope (Etype (A_Gen_T)) = Scope (A_Gen_T)
11853 and then Etype (Etype (A_Gen_T)) /= Etype (A_Gen_T)
11854 then
11855 -- Locate ancestor of parent from the subtype declaration
11856 -- created for the actual.
11857
11858 declare
11859 Decl : Node_Id;
11860
11861 begin
11862 Decl := First (Actual_Decls);
11863 while Present (Decl) loop
11864 if Nkind (Decl) = N_Subtype_Declaration
11865 and then Chars (Defining_Identifier (Decl)) =
11866 Chars (Etype (A_Gen_T))
11867 then
11868 Ancestor := Generic_Parent_Type (Decl);
11869 exit;
11870 else
11871 Next (Decl);
11872 end if;
11873 end loop;
11874 end;
11875
11876 pragma Assert (Present (Ancestor));
11877
11878 -- The ancestor itself may be a previous formal that has been
11879 -- instantiated.
11880
11881 Ancestor := Get_Instance_Of (Ancestor);
11882
11883 else
11884 Ancestor :=
11885 Get_Instance_Of (Base_Type (Get_Instance_Of (A_Gen_T)));
11886 end if;
11887
11888 -- Check whether parent is a previous formal of the current generic
11889
11890 elsif Is_Derived_Type (A_Gen_T)
11891 and then Is_Generic_Type (Etype (A_Gen_T))
11892 and then Scope (A_Gen_T) = Scope (Etype (A_Gen_T))
11893 then
11894 Ancestor := Get_Instance_Of (First_Subtype (Etype (A_Gen_T)));
11895
11896 -- An unusual case: the actual is a type declared in a parent unit,
11897 -- but is not a formal type so there is no instance_of for it.
11898 -- Retrieve it by analyzing the record extension.
11899
11900 elsif Is_Child_Unit (Scope (A_Gen_T))
11901 and then In_Open_Scopes (Scope (Act_T))
11902 and then Is_Generic_Instance (Scope (Act_T))
11903 then
11904 Analyze (Subtype_Mark (Def));
11905 Ancestor := Entity (Subtype_Mark (Def));
11906
11907 else
11908 Ancestor := Get_Instance_Of (Etype (Base_Type (A_Gen_T)));
11909 end if;
11910
11911 -- If the formal derived type has pragma Preelaborable_Initialization
11912 -- then the actual type must have preelaborable initialization.
11913
11914 if Known_To_Have_Preelab_Init (A_Gen_T)
11915 and then not Has_Preelaborable_Initialization (Act_T)
11916 then
11917 Error_Msg_NE
11918 ("actual for & must have preelaborable initialization",
11919 Actual, Gen_T);
11920 end if;
11921
11922 -- Ada 2005 (AI-251)
11923
11924 if Ada_Version >= Ada_2005 and then Is_Interface (Ancestor) then
11925 if not Interface_Present_In_Ancestor (Act_T, Ancestor) then
11926 Error_Msg_NE
11927 ("(Ada 2005) expected type implementing & in instantiation",
11928 Actual, Ancestor);
11929 end if;
11930
11931 -- Finally verify that the (instance of) the ancestor is an ancestor
11932 -- of the actual.
11933
11934 elsif not Is_Ancestor (Base_Type (Ancestor), Act_T) then
11935 Error_Msg_NE
11936 ("expect type derived from & in instantiation",
11937 Actual, First_Subtype (Ancestor));
11938 Abandon_Instantiation (Actual);
11939 end if;
11940
11941 -- Ada 2005 (AI-443): Synchronized formal derived type checks. Note
11942 -- that the formal type declaration has been rewritten as a private
11943 -- extension.
11944
11945 if Ada_Version >= Ada_2005
11946 and then Nkind (Parent (A_Gen_T)) = N_Private_Extension_Declaration
11947 and then Synchronized_Present (Parent (A_Gen_T))
11948 then
11949 -- The actual must be a synchronized tagged type
11950
11951 if not Is_Tagged_Type (Act_T) then
11952 Error_Msg_N
11953 ("actual of synchronized type must be tagged", Actual);
11954 Abandon_Instantiation (Actual);
11955
11956 elsif Nkind (Parent (Act_T)) = N_Full_Type_Declaration
11957 and then Nkind (Type_Definition (Parent (Act_T))) =
11958 N_Derived_Type_Definition
11959 and then not Synchronized_Present
11960 (Type_Definition (Parent (Act_T)))
11961 then
11962 Error_Msg_N
11963 ("actual of synchronized type must be synchronized", Actual);
11964 Abandon_Instantiation (Actual);
11965 end if;
11966 end if;
11967
11968 -- Perform atomic/volatile checks (RM C.6(12)). Note that AI05-0218-1
11969 -- removes the second instance of the phrase "or allow pass by copy".
11970
11971 if Is_Atomic (Act_T) and then not Is_Atomic (Ancestor) then
11972 Error_Msg_N
11973 ("cannot have atomic actual type for non-atomic formal type",
11974 Actual);
11975
11976 elsif Is_Volatile (Act_T) and then not Is_Volatile (Ancestor) then
11977 Error_Msg_N
11978 ("cannot have volatile actual type for non-volatile formal type",
11979 Actual);
11980 end if;
11981
11982 -- It should not be necessary to check for unknown discriminants on
11983 -- Formal, but for some reason Has_Unknown_Discriminants is false for
11984 -- A_Gen_T, so Is_Definite_Subtype incorrectly returns True. This
11985 -- needs fixing. ???
11986
11987 if Is_Definite_Subtype (A_Gen_T)
11988 and then not Unknown_Discriminants_Present (Formal)
11989 and then not Is_Definite_Subtype (Act_T)
11990 then
11991 Error_Msg_N ("actual subtype must be constrained", Actual);
11992 Abandon_Instantiation (Actual);
11993 end if;
11994
11995 if not Unknown_Discriminants_Present (Formal) then
11996 if Is_Constrained (Ancestor) then
11997 if not Is_Constrained (Act_T) then
11998 Error_Msg_N ("actual subtype must be constrained", Actual);
11999 Abandon_Instantiation (Actual);
12000 end if;
12001
12002 -- Ancestor is unconstrained, Check if generic formal and actual
12003 -- agree on constrainedness. The check only applies to array types
12004 -- and discriminated types.
12005
12006 elsif Is_Constrained (Act_T) then
12007 if Ekind (Ancestor) = E_Access_Type
12008 or else (not Is_Constrained (A_Gen_T)
12009 and then Is_Composite_Type (A_Gen_T))
12010 then
12011 Error_Msg_N ("actual subtype must be unconstrained", Actual);
12012 Abandon_Instantiation (Actual);
12013 end if;
12014
12015 -- A class-wide type is only allowed if the formal has unknown
12016 -- discriminants.
12017
12018 elsif Is_Class_Wide_Type (Act_T)
12019 and then not Has_Unknown_Discriminants (Ancestor)
12020 then
12021 Error_Msg_NE
12022 ("actual for & cannot be a class-wide type", Actual, Gen_T);
12023 Abandon_Instantiation (Actual);
12024
12025 -- Otherwise, the formal and actual must have the same number
12026 -- of discriminants and each discriminant of the actual must
12027 -- correspond to a discriminant of the formal.
12028
12029 elsif Has_Discriminants (Act_T)
12030 and then not Has_Unknown_Discriminants (Act_T)
12031 and then Has_Discriminants (Ancestor)
12032 then
12033 Actual_Discr := First_Discriminant (Act_T);
12034 Ancestor_Discr := First_Discriminant (Ancestor);
12035 while Present (Actual_Discr)
12036 and then Present (Ancestor_Discr)
12037 loop
12038 if Base_Type (Act_T) /= Base_Type (Ancestor) and then
12039 No (Corresponding_Discriminant (Actual_Discr))
12040 then
12041 Error_Msg_NE
12042 ("discriminant & does not correspond "
12043 & "to ancestor discriminant", Actual, Actual_Discr);
12044 Abandon_Instantiation (Actual);
12045 end if;
12046
12047 Next_Discriminant (Actual_Discr);
12048 Next_Discriminant (Ancestor_Discr);
12049 end loop;
12050
12051 if Present (Actual_Discr) or else Present (Ancestor_Discr) then
12052 Error_Msg_NE
12053 ("actual for & must have same number of discriminants",
12054 Actual, Gen_T);
12055 Abandon_Instantiation (Actual);
12056 end if;
12057
12058 -- This case should be caught by the earlier check for
12059 -- constrainedness, but the check here is added for completeness.
12060
12061 elsif Has_Discriminants (Act_T)
12062 and then not Has_Unknown_Discriminants (Act_T)
12063 then
12064 Error_Msg_NE
12065 ("actual for & must not have discriminants", Actual, Gen_T);
12066 Abandon_Instantiation (Actual);
12067
12068 elsif Has_Discriminants (Ancestor) then
12069 Error_Msg_NE
12070 ("actual for & must have known discriminants", Actual, Gen_T);
12071 Abandon_Instantiation (Actual);
12072 end if;
12073
12074 if not Subtypes_Statically_Compatible
12075 (Act_T, Ancestor, Formal_Derived_Matching => True)
12076 then
12077 Error_Msg_N
12078 ("constraint on actual is incompatible with formal", Actual);
12079 Abandon_Instantiation (Actual);
12080 end if;
12081 end if;
12082
12083 -- If the formal and actual types are abstract, check that there
12084 -- are no abstract primitives of the actual type that correspond to
12085 -- nonabstract primitives of the formal type (second sentence of
12086 -- RM95 3.9.3(9)).
12087
12088 if Is_Abstract_Type (A_Gen_T) and then Is_Abstract_Type (Act_T) then
12089 Check_Abstract_Primitives : declare
12090 Gen_Prims : constant Elist_Id :=
12091 Primitive_Operations (A_Gen_T);
12092 Gen_Elmt : Elmt_Id;
12093 Gen_Subp : Entity_Id;
12094 Anc_Subp : Entity_Id;
12095 Anc_Formal : Entity_Id;
12096 Anc_F_Type : Entity_Id;
12097
12098 Act_Prims : constant Elist_Id := Primitive_Operations (Act_T);
12099 Act_Elmt : Elmt_Id;
12100 Act_Subp : Entity_Id;
12101 Act_Formal : Entity_Id;
12102 Act_F_Type : Entity_Id;
12103
12104 Subprograms_Correspond : Boolean;
12105
12106 function Is_Tagged_Ancestor (T1, T2 : Entity_Id) return Boolean;
12107 -- Returns true if T2 is derived directly or indirectly from
12108 -- T1, including derivations from interfaces. T1 and T2 are
12109 -- required to be specific tagged base types.
12110
12111 ------------------------
12112 -- Is_Tagged_Ancestor --
12113 ------------------------
12114
12115 function Is_Tagged_Ancestor (T1, T2 : Entity_Id) return Boolean
12116 is
12117 Intfc_Elmt : Elmt_Id;
12118
12119 begin
12120 -- The predicate is satisfied if the types are the same
12121
12122 if T1 = T2 then
12123 return True;
12124
12125 -- If we've reached the top of the derivation chain then
12126 -- we know that T1 is not an ancestor of T2.
12127
12128 elsif Etype (T2) = T2 then
12129 return False;
12130
12131 -- Proceed to check T2's immediate parent
12132
12133 elsif Is_Ancestor (T1, Base_Type (Etype (T2))) then
12134 return True;
12135
12136 -- Finally, check to see if T1 is an ancestor of any of T2's
12137 -- progenitors.
12138
12139 else
12140 Intfc_Elmt := First_Elmt (Interfaces (T2));
12141 while Present (Intfc_Elmt) loop
12142 if Is_Ancestor (T1, Node (Intfc_Elmt)) then
12143 return True;
12144 end if;
12145
12146 Next_Elmt (Intfc_Elmt);
12147 end loop;
12148 end if;
12149
12150 return False;
12151 end Is_Tagged_Ancestor;
12152
12153 -- Start of processing for Check_Abstract_Primitives
12154
12155 begin
12156 -- Loop over all of the formal derived type's primitives
12157
12158 Gen_Elmt := First_Elmt (Gen_Prims);
12159 while Present (Gen_Elmt) loop
12160 Gen_Subp := Node (Gen_Elmt);
12161
12162 -- If the primitive of the formal is not abstract, then
12163 -- determine whether there is a corresponding primitive of
12164 -- the actual type that's abstract.
12165
12166 if not Is_Abstract_Subprogram (Gen_Subp) then
12167 Act_Elmt := First_Elmt (Act_Prims);
12168 while Present (Act_Elmt) loop
12169 Act_Subp := Node (Act_Elmt);
12170
12171 -- If we find an abstract primitive of the actual,
12172 -- then we need to test whether it corresponds to the
12173 -- subprogram from which the generic formal primitive
12174 -- is inherited.
12175
12176 if Is_Abstract_Subprogram (Act_Subp) then
12177 Anc_Subp := Alias (Gen_Subp);
12178
12179 -- Test whether we have a corresponding primitive
12180 -- by comparing names, kinds, formal types, and
12181 -- result types.
12182
12183 if Chars (Anc_Subp) = Chars (Act_Subp)
12184 and then Ekind (Anc_Subp) = Ekind (Act_Subp)
12185 then
12186 Anc_Formal := First_Formal (Anc_Subp);
12187 Act_Formal := First_Formal (Act_Subp);
12188 while Present (Anc_Formal)
12189 and then Present (Act_Formal)
12190 loop
12191 Anc_F_Type := Etype (Anc_Formal);
12192 Act_F_Type := Etype (Act_Formal);
12193
12194 if Ekind (Anc_F_Type) =
12195 E_Anonymous_Access_Type
12196 then
12197 Anc_F_Type := Designated_Type (Anc_F_Type);
12198
12199 if Ekind (Act_F_Type) =
12200 E_Anonymous_Access_Type
12201 then
12202 Act_F_Type :=
12203 Designated_Type (Act_F_Type);
12204 else
12205 exit;
12206 end if;
12207
12208 elsif
12209 Ekind (Act_F_Type) = E_Anonymous_Access_Type
12210 then
12211 exit;
12212 end if;
12213
12214 Anc_F_Type := Base_Type (Anc_F_Type);
12215 Act_F_Type := Base_Type (Act_F_Type);
12216
12217 -- If the formal is controlling, then the
12218 -- the type of the actual primitive's formal
12219 -- must be derived directly or indirectly
12220 -- from the type of the ancestor primitive's
12221 -- formal.
12222
12223 if Is_Controlling_Formal (Anc_Formal) then
12224 if not Is_Tagged_Ancestor
12225 (Anc_F_Type, Act_F_Type)
12226 then
12227 exit;
12228 end if;
12229
12230 -- Otherwise the types of the formals must
12231 -- be the same.
12232
12233 elsif Anc_F_Type /= Act_F_Type then
12234 exit;
12235 end if;
12236
12237 Next_Entity (Anc_Formal);
12238 Next_Entity (Act_Formal);
12239 end loop;
12240
12241 -- If we traversed through all of the formals
12242 -- then so far the subprograms correspond, so
12243 -- now check that any result types correspond.
12244
12245 if No (Anc_Formal) and then No (Act_Formal) then
12246 Subprograms_Correspond := True;
12247
12248 if Ekind (Act_Subp) = E_Function then
12249 Anc_F_Type := Etype (Anc_Subp);
12250 Act_F_Type := Etype (Act_Subp);
12251
12252 if Ekind (Anc_F_Type) =
12253 E_Anonymous_Access_Type
12254 then
12255 Anc_F_Type :=
12256 Designated_Type (Anc_F_Type);
12257
12258 if Ekind (Act_F_Type) =
12259 E_Anonymous_Access_Type
12260 then
12261 Act_F_Type :=
12262 Designated_Type (Act_F_Type);
12263 else
12264 Subprograms_Correspond := False;
12265 end if;
12266
12267 elsif
12268 Ekind (Act_F_Type)
12269 = E_Anonymous_Access_Type
12270 then
12271 Subprograms_Correspond := False;
12272 end if;
12273
12274 Anc_F_Type := Base_Type (Anc_F_Type);
12275 Act_F_Type := Base_Type (Act_F_Type);
12276
12277 -- Now either the result types must be
12278 -- the same or, if the result type is
12279 -- controlling, the result type of the
12280 -- actual primitive must descend from the
12281 -- result type of the ancestor primitive.
12282
12283 if Subprograms_Correspond
12284 and then Anc_F_Type /= Act_F_Type
12285 and then
12286 Has_Controlling_Result (Anc_Subp)
12287 and then not Is_Tagged_Ancestor
12288 (Anc_F_Type, Act_F_Type)
12289 then
12290 Subprograms_Correspond := False;
12291 end if;
12292 end if;
12293
12294 -- Found a matching subprogram belonging to
12295 -- formal ancestor type, so actual subprogram
12296 -- corresponds and this violates 3.9.3(9).
12297
12298 if Subprograms_Correspond then
12299 Error_Msg_NE
12300 ("abstract subprogram & overrides "
12301 & "nonabstract subprogram of ancestor",
12302 Actual, Act_Subp);
12303 end if;
12304 end if;
12305 end if;
12306 end if;
12307
12308 Next_Elmt (Act_Elmt);
12309 end loop;
12310 end if;
12311
12312 Next_Elmt (Gen_Elmt);
12313 end loop;
12314 end Check_Abstract_Primitives;
12315 end if;
12316
12317 -- Verify that limitedness matches. If parent is a limited
12318 -- interface then the generic formal is not unless declared
12319 -- explicitly so. If not declared limited, the actual cannot be
12320 -- limited (see AI05-0087).
12321
12322 -- Even though this AI is a binding interpretation, we enable the
12323 -- check only in Ada 2012 mode, because this improper construct
12324 -- shows up in user code and in existing B-tests.
12325
12326 if Is_Limited_Type (Act_T)
12327 and then not Is_Limited_Type (A_Gen_T)
12328 and then Ada_Version >= Ada_2012
12329 then
12330 if In_Instance then
12331 null;
12332 else
12333 Error_Msg_NE
12334 ("actual for non-limited & cannot be a limited type",
12335 Actual, Gen_T);
12336 Explain_Limited_Type (Act_T, Actual);
12337 Abandon_Instantiation (Actual);
12338 end if;
12339 end if;
12340 end Validate_Derived_Type_Instance;
12341
12342 ----------------------------------------
12343 -- Validate_Discriminated_Formal_Type --
12344 ----------------------------------------
12345
12346 procedure Validate_Discriminated_Formal_Type is
12347 Formal_Discr : Entity_Id;
12348 Actual_Discr : Entity_Id;
12349 Formal_Subt : Entity_Id;
12350
12351 begin
12352 if Has_Discriminants (A_Gen_T) then
12353 if not Has_Discriminants (Act_T) then
12354 Error_Msg_NE
12355 ("actual for & must have discriminants", Actual, Gen_T);
12356 Abandon_Instantiation (Actual);
12357
12358 elsif Is_Constrained (Act_T) then
12359 Error_Msg_NE
12360 ("actual for & must be unconstrained", Actual, Gen_T);
12361 Abandon_Instantiation (Actual);
12362
12363 else
12364 Formal_Discr := First_Discriminant (A_Gen_T);
12365 Actual_Discr := First_Discriminant (Act_T);
12366 while Formal_Discr /= Empty loop
12367 if Actual_Discr = Empty then
12368 Error_Msg_NE
12369 ("discriminants on actual do not match formal",
12370 Actual, Gen_T);
12371 Abandon_Instantiation (Actual);
12372 end if;
12373
12374 Formal_Subt := Get_Instance_Of (Etype (Formal_Discr));
12375
12376 -- Access discriminants match if designated types do
12377
12378 if Ekind (Base_Type (Formal_Subt)) = E_Anonymous_Access_Type
12379 and then (Ekind (Base_Type (Etype (Actual_Discr)))) =
12380 E_Anonymous_Access_Type
12381 and then
12382 Get_Instance_Of
12383 (Designated_Type (Base_Type (Formal_Subt))) =
12384 Designated_Type (Base_Type (Etype (Actual_Discr)))
12385 then
12386 null;
12387
12388 elsif Base_Type (Formal_Subt) /=
12389 Base_Type (Etype (Actual_Discr))
12390 then
12391 Error_Msg_NE
12392 ("types of actual discriminants must match formal",
12393 Actual, Gen_T);
12394 Abandon_Instantiation (Actual);
12395
12396 elsif not Subtypes_Statically_Match
12397 (Formal_Subt, Etype (Actual_Discr))
12398 and then Ada_Version >= Ada_95
12399 then
12400 Error_Msg_NE
12401 ("subtypes of actual discriminants must match formal",
12402 Actual, Gen_T);
12403 Abandon_Instantiation (Actual);
12404 end if;
12405
12406 Next_Discriminant (Formal_Discr);
12407 Next_Discriminant (Actual_Discr);
12408 end loop;
12409
12410 if Actual_Discr /= Empty then
12411 Error_Msg_NE
12412 ("discriminants on actual do not match formal",
12413 Actual, Gen_T);
12414 Abandon_Instantiation (Actual);
12415 end if;
12416 end if;
12417 end if;
12418 end Validate_Discriminated_Formal_Type;
12419
12420 ---------------------------------------
12421 -- Validate_Incomplete_Type_Instance --
12422 ---------------------------------------
12423
12424 procedure Validate_Incomplete_Type_Instance is
12425 begin
12426 if not Is_Tagged_Type (Act_T)
12427 and then Is_Tagged_Type (A_Gen_T)
12428 then
12429 Error_Msg_NE
12430 ("actual for & must be a tagged type", Actual, Gen_T);
12431 end if;
12432
12433 Validate_Discriminated_Formal_Type;
12434 end Validate_Incomplete_Type_Instance;
12435
12436 --------------------------------------
12437 -- Validate_Interface_Type_Instance --
12438 --------------------------------------
12439
12440 procedure Validate_Interface_Type_Instance is
12441 begin
12442 if not Is_Interface (Act_T) then
12443 Error_Msg_NE
12444 ("actual for formal interface type must be an interface",
12445 Actual, Gen_T);
12446
12447 elsif Is_Limited_Type (Act_T) /= Is_Limited_Type (A_Gen_T)
12448 or else Is_Task_Interface (A_Gen_T) /= Is_Task_Interface (Act_T)
12449 or else Is_Protected_Interface (A_Gen_T) /=
12450 Is_Protected_Interface (Act_T)
12451 or else Is_Synchronized_Interface (A_Gen_T) /=
12452 Is_Synchronized_Interface (Act_T)
12453 then
12454 Error_Msg_NE
12455 ("actual for interface& does not match (RM 12.5.5(4))",
12456 Actual, Gen_T);
12457 end if;
12458 end Validate_Interface_Type_Instance;
12459
12460 ------------------------------------
12461 -- Validate_Private_Type_Instance --
12462 ------------------------------------
12463
12464 procedure Validate_Private_Type_Instance is
12465 begin
12466 if Is_Limited_Type (Act_T)
12467 and then not Is_Limited_Type (A_Gen_T)
12468 then
12469 if In_Instance then
12470 null;
12471 else
12472 Error_Msg_NE
12473 ("actual for non-limited & cannot be a limited type", Actual,
12474 Gen_T);
12475 Explain_Limited_Type (Act_T, Actual);
12476 Abandon_Instantiation (Actual);
12477 end if;
12478
12479 elsif Known_To_Have_Preelab_Init (A_Gen_T)
12480 and then not Has_Preelaborable_Initialization (Act_T)
12481 then
12482 Error_Msg_NE
12483 ("actual for & must have preelaborable initialization", Actual,
12484 Gen_T);
12485
12486 elsif not Is_Definite_Subtype (Act_T)
12487 and then Is_Definite_Subtype (A_Gen_T)
12488 and then Ada_Version >= Ada_95
12489 then
12490 Error_Msg_NE
12491 ("actual for & must be a definite subtype", Actual, Gen_T);
12492
12493 elsif not Is_Tagged_Type (Act_T)
12494 and then Is_Tagged_Type (A_Gen_T)
12495 then
12496 Error_Msg_NE
12497 ("actual for & must be a tagged type", Actual, Gen_T);
12498 end if;
12499
12500 Validate_Discriminated_Formal_Type;
12501 Ancestor := Gen_T;
12502 end Validate_Private_Type_Instance;
12503
12504 -- Start of processing for Instantiate_Type
12505
12506 begin
12507 if Get_Instance_Of (A_Gen_T) /= A_Gen_T then
12508 Error_Msg_N ("duplicate instantiation of generic type", Actual);
12509 return New_List (Error);
12510
12511 elsif not Is_Entity_Name (Actual)
12512 or else not Is_Type (Entity (Actual))
12513 then
12514 Error_Msg_NE
12515 ("expect valid subtype mark to instantiate &", Actual, Gen_T);
12516 Abandon_Instantiation (Actual);
12517
12518 else
12519 Act_T := Entity (Actual);
12520
12521 -- Ada 2005 (AI-216): An Unchecked_Union subtype shall only be passed
12522 -- as a generic actual parameter if the corresponding formal type
12523 -- does not have a known_discriminant_part, or is a formal derived
12524 -- type that is an Unchecked_Union type.
12525
12526 if Is_Unchecked_Union (Base_Type (Act_T)) then
12527 if not Has_Discriminants (A_Gen_T)
12528 or else (Is_Derived_Type (A_Gen_T)
12529 and then Is_Unchecked_Union (A_Gen_T))
12530 then
12531 null;
12532 else
12533 Error_Msg_N ("unchecked union cannot be the actual for a "
12534 & "discriminated formal type", Act_T);
12535
12536 end if;
12537 end if;
12538
12539 -- Deal with fixed/floating restrictions
12540
12541 if Is_Floating_Point_Type (Act_T) then
12542 Check_Restriction (No_Floating_Point, Actual);
12543 elsif Is_Fixed_Point_Type (Act_T) then
12544 Check_Restriction (No_Fixed_Point, Actual);
12545 end if;
12546
12547 -- Deal with error of using incomplete type as generic actual.
12548 -- This includes limited views of a type, even if the non-limited
12549 -- view may be available.
12550
12551 if Ekind (Act_T) = E_Incomplete_Type
12552 or else (Is_Class_Wide_Type (Act_T)
12553 and then Ekind (Root_Type (Act_T)) = E_Incomplete_Type)
12554 then
12555 -- If the formal is an incomplete type, the actual can be
12556 -- incomplete as well.
12557
12558 if Ekind (A_Gen_T) = E_Incomplete_Type then
12559 null;
12560
12561 elsif Is_Class_Wide_Type (Act_T)
12562 or else No (Full_View (Act_T))
12563 then
12564 Error_Msg_N ("premature use of incomplete type", Actual);
12565 Abandon_Instantiation (Actual);
12566 else
12567 Act_T := Full_View (Act_T);
12568 Set_Entity (Actual, Act_T);
12569
12570 if Has_Private_Component (Act_T) then
12571 Error_Msg_N
12572 ("premature use of type with private component", Actual);
12573 end if;
12574 end if;
12575
12576 -- Deal with error of premature use of private type as generic actual
12577
12578 elsif Is_Private_Type (Act_T)
12579 and then Is_Private_Type (Base_Type (Act_T))
12580 and then not Is_Generic_Type (Act_T)
12581 and then not Is_Derived_Type (Act_T)
12582 and then No (Full_View (Root_Type (Act_T)))
12583 then
12584 -- If the formal is an incomplete type, the actual can be
12585 -- private or incomplete as well.
12586
12587 if Ekind (A_Gen_T) = E_Incomplete_Type then
12588 null;
12589 else
12590 Error_Msg_N ("premature use of private type", Actual);
12591 end if;
12592
12593 elsif Has_Private_Component (Act_T) then
12594 Error_Msg_N
12595 ("premature use of type with private component", Actual);
12596 end if;
12597
12598 Set_Instance_Of (A_Gen_T, Act_T);
12599
12600 -- If the type is generic, the class-wide type may also be used
12601
12602 if Is_Tagged_Type (A_Gen_T)
12603 and then Is_Tagged_Type (Act_T)
12604 and then not Is_Class_Wide_Type (A_Gen_T)
12605 then
12606 Set_Instance_Of (Class_Wide_Type (A_Gen_T),
12607 Class_Wide_Type (Act_T));
12608 end if;
12609
12610 if not Is_Abstract_Type (A_Gen_T)
12611 and then Is_Abstract_Type (Act_T)
12612 then
12613 Error_Msg_N
12614 ("actual of non-abstract formal cannot be abstract", Actual);
12615 end if;
12616
12617 -- A generic scalar type is a first subtype for which we generate
12618 -- an anonymous base type. Indicate that the instance of this base
12619 -- is the base type of the actual.
12620
12621 if Is_Scalar_Type (A_Gen_T) then
12622 Set_Instance_Of (Etype (A_Gen_T), Etype (Act_T));
12623 end if;
12624 end if;
12625
12626 if Error_Posted (Act_T) then
12627 null;
12628 else
12629 case Nkind (Def) is
12630 when N_Formal_Private_Type_Definition =>
12631 Validate_Private_Type_Instance;
12632
12633 when N_Formal_Incomplete_Type_Definition =>
12634 Validate_Incomplete_Type_Instance;
12635
12636 when N_Formal_Derived_Type_Definition =>
12637 Validate_Derived_Type_Instance;
12638
12639 when N_Formal_Discrete_Type_Definition =>
12640 if not Is_Discrete_Type (Act_T) then
12641 Error_Msg_NE
12642 ("expect discrete type in instantiation of&",
12643 Actual, Gen_T);
12644 Abandon_Instantiation (Actual);
12645 end if;
12646
12647 Diagnose_Predicated_Actual;
12648
12649 when N_Formal_Signed_Integer_Type_Definition =>
12650 if not Is_Signed_Integer_Type (Act_T) then
12651 Error_Msg_NE
12652 ("expect signed integer type in instantiation of&",
12653 Actual, Gen_T);
12654 Abandon_Instantiation (Actual);
12655 end if;
12656
12657 Diagnose_Predicated_Actual;
12658
12659 when N_Formal_Modular_Type_Definition =>
12660 if not Is_Modular_Integer_Type (Act_T) then
12661 Error_Msg_NE
12662 ("expect modular type in instantiation of &",
12663 Actual, Gen_T);
12664 Abandon_Instantiation (Actual);
12665 end if;
12666
12667 Diagnose_Predicated_Actual;
12668
12669 when N_Formal_Floating_Point_Definition =>
12670 if not Is_Floating_Point_Type (Act_T) then
12671 Error_Msg_NE
12672 ("expect float type in instantiation of &", Actual, Gen_T);
12673 Abandon_Instantiation (Actual);
12674 end if;
12675
12676 when N_Formal_Ordinary_Fixed_Point_Definition =>
12677 if not Is_Ordinary_Fixed_Point_Type (Act_T) then
12678 Error_Msg_NE
12679 ("expect ordinary fixed point type in instantiation of &",
12680 Actual, Gen_T);
12681 Abandon_Instantiation (Actual);
12682 end if;
12683
12684 when N_Formal_Decimal_Fixed_Point_Definition =>
12685 if not Is_Decimal_Fixed_Point_Type (Act_T) then
12686 Error_Msg_NE
12687 ("expect decimal type in instantiation of &",
12688 Actual, Gen_T);
12689 Abandon_Instantiation (Actual);
12690 end if;
12691
12692 when N_Array_Type_Definition =>
12693 Validate_Array_Type_Instance;
12694
12695 when N_Access_To_Object_Definition =>
12696 Validate_Access_Type_Instance;
12697
12698 when N_Access_Function_Definition |
12699 N_Access_Procedure_Definition =>
12700 Validate_Access_Subprogram_Instance;
12701
12702 when N_Record_Definition =>
12703 Validate_Interface_Type_Instance;
12704
12705 when N_Derived_Type_Definition =>
12706 Validate_Derived_Interface_Type_Instance;
12707
12708 when others =>
12709 raise Program_Error;
12710
12711 end case;
12712 end if;
12713
12714 Subt := New_Copy (Gen_T);
12715
12716 -- Use adjusted sloc of subtype name as the location for other nodes in
12717 -- the subtype declaration.
12718
12719 Loc := Sloc (Subt);
12720
12721 Decl_Node :=
12722 Make_Subtype_Declaration (Loc,
12723 Defining_Identifier => Subt,
12724 Subtype_Indication => New_Occurrence_Of (Act_T, Loc));
12725
12726 if Is_Private_Type (Act_T) then
12727 Set_Has_Private_View (Subtype_Indication (Decl_Node));
12728
12729 elsif Is_Access_Type (Act_T)
12730 and then Is_Private_Type (Designated_Type (Act_T))
12731 then
12732 Set_Has_Private_View (Subtype_Indication (Decl_Node));
12733 end if;
12734
12735 -- In Ada 2012 the actual may be a limited view. Indicate that
12736 -- the local subtype must be treated as such.
12737
12738 if From_Limited_With (Act_T) then
12739 Set_Ekind (Subt, E_Incomplete_Subtype);
12740 Set_From_Limited_With (Subt);
12741 end if;
12742
12743 Decl_Nodes := New_List (Decl_Node);
12744
12745 -- Flag actual derived types so their elaboration produces the
12746 -- appropriate renamings for the primitive operations of the ancestor.
12747 -- Flag actual for formal private types as well, to determine whether
12748 -- operations in the private part may override inherited operations.
12749 -- If the formal has an interface list, the ancestor is not the
12750 -- parent, but the analyzed formal that includes the interface
12751 -- operations of all its progenitors.
12752
12753 -- Same treatment for formal private types, so we can check whether the
12754 -- type is tagged limited when validating derivations in the private
12755 -- part. (See AI05-096).
12756
12757 if Nkind (Def) = N_Formal_Derived_Type_Definition then
12758 if Present (Interface_List (Def)) then
12759 Set_Generic_Parent_Type (Decl_Node, A_Gen_T);
12760 else
12761 Set_Generic_Parent_Type (Decl_Node, Ancestor);
12762 end if;
12763
12764 elsif Nkind_In (Def, N_Formal_Private_Type_Definition,
12765 N_Formal_Incomplete_Type_Definition)
12766 then
12767 Set_Generic_Parent_Type (Decl_Node, A_Gen_T);
12768 end if;
12769
12770 -- If the actual is a synchronized type that implements an interface,
12771 -- the primitive operations are attached to the corresponding record,
12772 -- and we have to treat it as an additional generic actual, so that its
12773 -- primitive operations become visible in the instance. The task or
12774 -- protected type itself does not carry primitive operations.
12775
12776 if Is_Concurrent_Type (Act_T)
12777 and then Is_Tagged_Type (Act_T)
12778 and then Present (Corresponding_Record_Type (Act_T))
12779 and then Present (Ancestor)
12780 and then Is_Interface (Ancestor)
12781 then
12782 declare
12783 Corr_Rec : constant Entity_Id :=
12784 Corresponding_Record_Type (Act_T);
12785 New_Corr : Entity_Id;
12786 Corr_Decl : Node_Id;
12787
12788 begin
12789 New_Corr := Make_Temporary (Loc, 'S');
12790 Corr_Decl :=
12791 Make_Subtype_Declaration (Loc,
12792 Defining_Identifier => New_Corr,
12793 Subtype_Indication =>
12794 New_Occurrence_Of (Corr_Rec, Loc));
12795 Append_To (Decl_Nodes, Corr_Decl);
12796
12797 if Ekind (Act_T) = E_Task_Type then
12798 Set_Ekind (Subt, E_Task_Subtype);
12799 else
12800 Set_Ekind (Subt, E_Protected_Subtype);
12801 end if;
12802
12803 Set_Corresponding_Record_Type (Subt, Corr_Rec);
12804 Set_Generic_Parent_Type (Corr_Decl, Ancestor);
12805 Set_Generic_Parent_Type (Decl_Node, Empty);
12806 end;
12807 end if;
12808
12809 -- For a floating-point type, capture dimension info if any, because
12810 -- the generated subtype declaration does not come from source and
12811 -- will not process dimensions.
12812
12813 if Is_Floating_Point_Type (Act_T) then
12814 Copy_Dimensions (Act_T, Subt);
12815 end if;
12816
12817 return Decl_Nodes;
12818 end Instantiate_Type;
12819
12820 ---------------------
12821 -- Is_In_Main_Unit --
12822 ---------------------
12823
12824 function Is_In_Main_Unit (N : Node_Id) return Boolean is
12825 Unum : constant Unit_Number_Type := Get_Source_Unit (N);
12826 Current_Unit : Node_Id;
12827
12828 begin
12829 if Unum = Main_Unit then
12830 return True;
12831
12832 -- If the current unit is a subunit then it is either the main unit or
12833 -- is being compiled as part of the main unit.
12834
12835 elsif Nkind (N) = N_Compilation_Unit then
12836 return Nkind (Unit (N)) = N_Subunit;
12837 end if;
12838
12839 Current_Unit := Parent (N);
12840 while Present (Current_Unit)
12841 and then Nkind (Current_Unit) /= N_Compilation_Unit
12842 loop
12843 Current_Unit := Parent (Current_Unit);
12844 end loop;
12845
12846 -- The instantiation node is in the main unit, or else the current node
12847 -- (perhaps as the result of nested instantiations) is in the main unit,
12848 -- or in the declaration of the main unit, which in this last case must
12849 -- be a body.
12850
12851 return Unum = Main_Unit
12852 or else Current_Unit = Cunit (Main_Unit)
12853 or else Current_Unit = Library_Unit (Cunit (Main_Unit))
12854 or else (Present (Library_Unit (Current_Unit))
12855 and then Is_In_Main_Unit (Library_Unit (Current_Unit)));
12856 end Is_In_Main_Unit;
12857
12858 ----------------------------
12859 -- Load_Parent_Of_Generic --
12860 ----------------------------
12861
12862 procedure Load_Parent_Of_Generic
12863 (N : Node_Id;
12864 Spec : Node_Id;
12865 Body_Optional : Boolean := False)
12866 is
12867 Comp_Unit : constant Node_Id := Cunit (Get_Source_Unit (Spec));
12868 Saved_Style_Check : constant Boolean := Style_Check;
12869 Saved_Warnings : constant Warning_Record := Save_Warnings;
12870 True_Parent : Node_Id;
12871 Inst_Node : Node_Id;
12872 OK : Boolean;
12873 Previous_Instances : constant Elist_Id := New_Elmt_List;
12874
12875 procedure Collect_Previous_Instances (Decls : List_Id);
12876 -- Collect all instantiations in the given list of declarations, that
12877 -- precede the generic that we need to load. If the bodies of these
12878 -- instantiations are available, we must analyze them, to ensure that
12879 -- the public symbols generated are the same when the unit is compiled
12880 -- to generate code, and when it is compiled in the context of a unit
12881 -- that needs a particular nested instance. This process is applied to
12882 -- both package and subprogram instances.
12883
12884 --------------------------------
12885 -- Collect_Previous_Instances --
12886 --------------------------------
12887
12888 procedure Collect_Previous_Instances (Decls : List_Id) is
12889 Decl : Node_Id;
12890
12891 begin
12892 Decl := First (Decls);
12893 while Present (Decl) loop
12894 if Sloc (Decl) >= Sloc (Inst_Node) then
12895 return;
12896
12897 -- If Decl is an instantiation, then record it as requiring
12898 -- instantiation of the corresponding body, except if it is an
12899 -- abbreviated instantiation generated internally for conformance
12900 -- checking purposes only for the case of a formal package
12901 -- declared without a box (see Instantiate_Formal_Package). Such
12902 -- an instantiation does not generate any code (the actual code
12903 -- comes from actual) and thus does not need to be analyzed here.
12904 -- If the instantiation appears with a generic package body it is
12905 -- not analyzed here either.
12906
12907 elsif Nkind (Decl) = N_Package_Instantiation
12908 and then not Is_Internal (Defining_Entity (Decl))
12909 then
12910 Append_Elmt (Decl, Previous_Instances);
12911
12912 -- For a subprogram instantiation, omit instantiations intrinsic
12913 -- operations (Unchecked_Conversions, etc.) that have no bodies.
12914
12915 elsif Nkind_In (Decl, N_Function_Instantiation,
12916 N_Procedure_Instantiation)
12917 and then not Is_Intrinsic_Subprogram (Entity (Name (Decl)))
12918 then
12919 Append_Elmt (Decl, Previous_Instances);
12920
12921 elsif Nkind (Decl) = N_Package_Declaration then
12922 Collect_Previous_Instances
12923 (Visible_Declarations (Specification (Decl)));
12924 Collect_Previous_Instances
12925 (Private_Declarations (Specification (Decl)));
12926
12927 -- Previous non-generic bodies may contain instances as well
12928
12929 elsif Nkind (Decl) = N_Package_Body
12930 and then Ekind (Corresponding_Spec (Decl)) /= E_Generic_Package
12931 then
12932 Collect_Previous_Instances (Declarations (Decl));
12933
12934 elsif Nkind (Decl) = N_Subprogram_Body
12935 and then not Acts_As_Spec (Decl)
12936 and then not Is_Generic_Subprogram (Corresponding_Spec (Decl))
12937 then
12938 Collect_Previous_Instances (Declarations (Decl));
12939 end if;
12940
12941 Next (Decl);
12942 end loop;
12943 end Collect_Previous_Instances;
12944
12945 -- Start of processing for Load_Parent_Of_Generic
12946
12947 begin
12948 if not In_Same_Source_Unit (N, Spec)
12949 or else Nkind (Unit (Comp_Unit)) = N_Package_Declaration
12950 or else (Nkind (Unit (Comp_Unit)) = N_Package_Body
12951 and then not Is_In_Main_Unit (Spec))
12952 then
12953 -- Find body of parent of spec, and analyze it. A special case arises
12954 -- when the parent is an instantiation, that is to say when we are
12955 -- currently instantiating a nested generic. In that case, there is
12956 -- no separate file for the body of the enclosing instance. Instead,
12957 -- the enclosing body must be instantiated as if it were a pending
12958 -- instantiation, in order to produce the body for the nested generic
12959 -- we require now. Note that in that case the generic may be defined
12960 -- in a package body, the instance defined in the same package body,
12961 -- and the original enclosing body may not be in the main unit.
12962
12963 Inst_Node := Empty;
12964
12965 True_Parent := Parent (Spec);
12966 while Present (True_Parent)
12967 and then Nkind (True_Parent) /= N_Compilation_Unit
12968 loop
12969 if Nkind (True_Parent) = N_Package_Declaration
12970 and then
12971 Nkind (Original_Node (True_Parent)) = N_Package_Instantiation
12972 then
12973 -- Parent is a compilation unit that is an instantiation.
12974 -- Instantiation node has been replaced with package decl.
12975
12976 Inst_Node := Original_Node (True_Parent);
12977 exit;
12978
12979 elsif Nkind (True_Parent) = N_Package_Declaration
12980 and then Present (Generic_Parent (Specification (True_Parent)))
12981 and then Nkind (Parent (True_Parent)) /= N_Compilation_Unit
12982 then
12983 -- Parent is an instantiation within another specification.
12984 -- Declaration for instance has been inserted before original
12985 -- instantiation node. A direct link would be preferable?
12986
12987 Inst_Node := Next (True_Parent);
12988 while Present (Inst_Node)
12989 and then Nkind (Inst_Node) /= N_Package_Instantiation
12990 loop
12991 Next (Inst_Node);
12992 end loop;
12993
12994 -- If the instance appears within a generic, and the generic
12995 -- unit is defined within a formal package of the enclosing
12996 -- generic, there is no generic body available, and none
12997 -- needed. A more precise test should be used ???
12998
12999 if No (Inst_Node) then
13000 return;
13001 end if;
13002
13003 exit;
13004
13005 else
13006 True_Parent := Parent (True_Parent);
13007 end if;
13008 end loop;
13009
13010 -- Case where we are currently instantiating a nested generic
13011
13012 if Present (Inst_Node) then
13013 if Nkind (Parent (True_Parent)) = N_Compilation_Unit then
13014
13015 -- Instantiation node and declaration of instantiated package
13016 -- were exchanged when only the declaration was needed.
13017 -- Restore instantiation node before proceeding with body.
13018
13019 Set_Unit (Parent (True_Parent), Inst_Node);
13020 end if;
13021
13022 -- Now complete instantiation of enclosing body, if it appears in
13023 -- some other unit. If it appears in the current unit, the body
13024 -- will have been instantiated already.
13025
13026 if No (Corresponding_Body (Instance_Spec (Inst_Node))) then
13027
13028 -- We need to determine the expander mode to instantiate the
13029 -- enclosing body. Because the generic body we need may use
13030 -- global entities declared in the enclosing package (including
13031 -- aggregates) it is in general necessary to compile this body
13032 -- with expansion enabled, except if we are within a generic
13033 -- package, in which case the usual generic rule applies.
13034
13035 declare
13036 Exp_Status : Boolean := True;
13037 Scop : Entity_Id;
13038
13039 begin
13040 -- Loop through scopes looking for generic package
13041
13042 Scop := Scope (Defining_Entity (Instance_Spec (Inst_Node)));
13043 while Present (Scop)
13044 and then Scop /= Standard_Standard
13045 loop
13046 if Ekind (Scop) = E_Generic_Package then
13047 Exp_Status := False;
13048 exit;
13049 end if;
13050
13051 Scop := Scope (Scop);
13052 end loop;
13053
13054 -- Collect previous instantiations in the unit that contains
13055 -- the desired generic.
13056
13057 if Nkind (Parent (True_Parent)) /= N_Compilation_Unit
13058 and then not Body_Optional
13059 then
13060 declare
13061 Decl : Elmt_Id;
13062 Info : Pending_Body_Info;
13063 Par : Node_Id;
13064
13065 begin
13066 Par := Parent (Inst_Node);
13067 while Present (Par) loop
13068 exit when Nkind (Parent (Par)) = N_Compilation_Unit;
13069 Par := Parent (Par);
13070 end loop;
13071
13072 pragma Assert (Present (Par));
13073
13074 if Nkind (Par) = N_Package_Body then
13075 Collect_Previous_Instances (Declarations (Par));
13076
13077 elsif Nkind (Par) = N_Package_Declaration then
13078 Collect_Previous_Instances
13079 (Visible_Declarations (Specification (Par)));
13080 Collect_Previous_Instances
13081 (Private_Declarations (Specification (Par)));
13082
13083 else
13084 -- Enclosing unit is a subprogram body. In this
13085 -- case all instance bodies are processed in order
13086 -- and there is no need to collect them separately.
13087
13088 null;
13089 end if;
13090
13091 Decl := First_Elmt (Previous_Instances);
13092 while Present (Decl) loop
13093 Info :=
13094 (Inst_Node => Node (Decl),
13095 Act_Decl =>
13096 Instance_Spec (Node (Decl)),
13097 Expander_Status => Exp_Status,
13098 Current_Sem_Unit =>
13099 Get_Code_Unit (Sloc (Node (Decl))),
13100 Scope_Suppress => Scope_Suppress,
13101 Local_Suppress_Stack_Top =>
13102 Local_Suppress_Stack_Top,
13103 Version => Ada_Version,
13104 Version_Pragma => Ada_Version_Pragma,
13105 Warnings => Save_Warnings,
13106 SPARK_Mode => SPARK_Mode,
13107 SPARK_Mode_Pragma => SPARK_Mode_Pragma);
13108
13109 -- Package instance
13110
13111 if
13112 Nkind (Node (Decl)) = N_Package_Instantiation
13113 then
13114 Instantiate_Package_Body
13115 (Info, Body_Optional => True);
13116
13117 -- Subprogram instance
13118
13119 else
13120 -- The instance_spec is in the wrapper package,
13121 -- usually followed by its local renaming
13122 -- declaration. See Build_Subprogram_Renaming
13123 -- for details. If the instance carries aspects,
13124 -- these result in the corresponding pragmas,
13125 -- inserted after the subprogram declaration.
13126 -- They must be skipped as well when retrieving
13127 -- the desired spec. A direct link would be
13128 -- more robust ???
13129
13130 declare
13131 Decl : Node_Id :=
13132 (Last (Visible_Declarations
13133 (Specification (Info.Act_Decl))));
13134 begin
13135 while Nkind_In (Decl,
13136 N_Subprogram_Renaming_Declaration, N_Pragma)
13137 loop
13138 Decl := Prev (Decl);
13139 end loop;
13140
13141 Info.Act_Decl := Decl;
13142 end;
13143
13144 Instantiate_Subprogram_Body
13145 (Info, Body_Optional => True);
13146 end if;
13147
13148 Next_Elmt (Decl);
13149 end loop;
13150 end;
13151 end if;
13152
13153 Instantiate_Package_Body
13154 (Body_Info =>
13155 ((Inst_Node => Inst_Node,
13156 Act_Decl => True_Parent,
13157 Expander_Status => Exp_Status,
13158 Current_Sem_Unit => Get_Code_Unit
13159 (Sloc (Inst_Node)),
13160 Scope_Suppress => Scope_Suppress,
13161 Local_Suppress_Stack_Top => Local_Suppress_Stack_Top,
13162 Version => Ada_Version,
13163 Version_Pragma => Ada_Version_Pragma,
13164 Warnings => Save_Warnings,
13165 SPARK_Mode => SPARK_Mode,
13166 SPARK_Mode_Pragma => SPARK_Mode_Pragma)),
13167 Body_Optional => Body_Optional);
13168 end;
13169 end if;
13170
13171 -- Case where we are not instantiating a nested generic
13172
13173 else
13174 Opt.Style_Check := False;
13175 Expander_Mode_Save_And_Set (True);
13176 Load_Needed_Body (Comp_Unit, OK);
13177 Opt.Style_Check := Saved_Style_Check;
13178 Restore_Warnings (Saved_Warnings);
13179 Expander_Mode_Restore;
13180
13181 if not OK
13182 and then Unit_Requires_Body (Defining_Entity (Spec))
13183 and then not Body_Optional
13184 then
13185 declare
13186 Bname : constant Unit_Name_Type :=
13187 Get_Body_Name (Get_Unit_Name (Unit (Comp_Unit)));
13188
13189 begin
13190 -- In CodePeer mode, the missing body may make the analysis
13191 -- incomplete, but we do not treat it as fatal.
13192
13193 if CodePeer_Mode then
13194 return;
13195
13196 else
13197 Error_Msg_Unit_1 := Bname;
13198 Error_Msg_N ("this instantiation requires$!", N);
13199 Error_Msg_File_1 :=
13200 Get_File_Name (Bname, Subunit => False);
13201 Error_Msg_N ("\but file{ was not found!", N);
13202 raise Unrecoverable_Error;
13203 end if;
13204 end;
13205 end if;
13206 end if;
13207 end if;
13208
13209 -- If loading parent of the generic caused an instantiation circularity,
13210 -- we abandon compilation at this point, because otherwise in some cases
13211 -- we get into trouble with infinite recursions after this point.
13212
13213 if Circularity_Detected then
13214 raise Unrecoverable_Error;
13215 end if;
13216 end Load_Parent_Of_Generic;
13217
13218 ---------------------------------
13219 -- Map_Formal_Package_Entities --
13220 ---------------------------------
13221
13222 procedure Map_Formal_Package_Entities (Form : Entity_Id; Act : Entity_Id) is
13223 E1 : Entity_Id;
13224 E2 : Entity_Id;
13225
13226 begin
13227 Set_Instance_Of (Form, Act);
13228
13229 -- Traverse formal and actual package to map the corresponding entities.
13230 -- We skip over internal entities that may be generated during semantic
13231 -- analysis, and find the matching entities by name, given that they
13232 -- must appear in the same order.
13233
13234 E1 := First_Entity (Form);
13235 E2 := First_Entity (Act);
13236 while Present (E1) and then E1 /= First_Private_Entity (Form) loop
13237 -- Could this test be a single condition??? Seems like it could, and
13238 -- isn't FPE (Form) a constant anyway???
13239
13240 if not Is_Internal (E1)
13241 and then Present (Parent (E1))
13242 and then not Is_Class_Wide_Type (E1)
13243 and then not Is_Internal_Name (Chars (E1))
13244 then
13245 while Present (E2) and then Chars (E2) /= Chars (E1) loop
13246 Next_Entity (E2);
13247 end loop;
13248
13249 if No (E2) then
13250 exit;
13251 else
13252 Set_Instance_Of (E1, E2);
13253
13254 if Is_Type (E1) and then Is_Tagged_Type (E2) then
13255 Set_Instance_Of (Class_Wide_Type (E1), Class_Wide_Type (E2));
13256 end if;
13257
13258 if Is_Constrained (E1) then
13259 Set_Instance_Of (Base_Type (E1), Base_Type (E2));
13260 end if;
13261
13262 if Ekind (E1) = E_Package and then No (Renamed_Object (E1)) then
13263 Map_Formal_Package_Entities (E1, E2);
13264 end if;
13265 end if;
13266 end if;
13267
13268 Next_Entity (E1);
13269 end loop;
13270 end Map_Formal_Package_Entities;
13271
13272 -----------------------
13273 -- Move_Freeze_Nodes --
13274 -----------------------
13275
13276 procedure Move_Freeze_Nodes
13277 (Out_Of : Entity_Id;
13278 After : Node_Id;
13279 L : List_Id)
13280 is
13281 Decl : Node_Id;
13282 Next_Decl : Node_Id;
13283 Next_Node : Node_Id := After;
13284 Spec : Node_Id;
13285
13286 function Is_Outer_Type (T : Entity_Id) return Boolean;
13287 -- Check whether entity is declared in a scope external to that of the
13288 -- generic unit.
13289
13290 -------------------
13291 -- Is_Outer_Type --
13292 -------------------
13293
13294 function Is_Outer_Type (T : Entity_Id) return Boolean is
13295 Scop : Entity_Id := Scope (T);
13296
13297 begin
13298 if Scope_Depth (Scop) < Scope_Depth (Out_Of) then
13299 return True;
13300
13301 else
13302 while Scop /= Standard_Standard loop
13303 if Scop = Out_Of then
13304 return False;
13305 else
13306 Scop := Scope (Scop);
13307 end if;
13308 end loop;
13309
13310 return True;
13311 end if;
13312 end Is_Outer_Type;
13313
13314 -- Start of processing for Move_Freeze_Nodes
13315
13316 begin
13317 if No (L) then
13318 return;
13319 end if;
13320
13321 -- First remove the freeze nodes that may appear before all other
13322 -- declarations.
13323
13324 Decl := First (L);
13325 while Present (Decl)
13326 and then Nkind (Decl) = N_Freeze_Entity
13327 and then Is_Outer_Type (Entity (Decl))
13328 loop
13329 Decl := Remove_Head (L);
13330 Insert_After (Next_Node, Decl);
13331 Set_Analyzed (Decl, False);
13332 Next_Node := Decl;
13333 Decl := First (L);
13334 end loop;
13335
13336 -- Next scan the list of declarations and remove each freeze node that
13337 -- appears ahead of the current node.
13338
13339 while Present (Decl) loop
13340 while Present (Next (Decl))
13341 and then Nkind (Next (Decl)) = N_Freeze_Entity
13342 and then Is_Outer_Type (Entity (Next (Decl)))
13343 loop
13344 Next_Decl := Remove_Next (Decl);
13345 Insert_After (Next_Node, Next_Decl);
13346 Set_Analyzed (Next_Decl, False);
13347 Next_Node := Next_Decl;
13348 end loop;
13349
13350 -- If the declaration is a nested package or concurrent type, then
13351 -- recurse. Nested generic packages will have been processed from the
13352 -- inside out.
13353
13354 case Nkind (Decl) is
13355 when N_Package_Declaration =>
13356 Spec := Specification (Decl);
13357
13358 when N_Task_Type_Declaration =>
13359 Spec := Task_Definition (Decl);
13360
13361 when N_Protected_Type_Declaration =>
13362 Spec := Protected_Definition (Decl);
13363
13364 when others =>
13365 Spec := Empty;
13366 end case;
13367
13368 if Present (Spec) then
13369 Move_Freeze_Nodes (Out_Of, Next_Node, Visible_Declarations (Spec));
13370 Move_Freeze_Nodes (Out_Of, Next_Node, Private_Declarations (Spec));
13371 end if;
13372
13373 Next (Decl);
13374 end loop;
13375 end Move_Freeze_Nodes;
13376
13377 ----------------
13378 -- Next_Assoc --
13379 ----------------
13380
13381 function Next_Assoc (E : Assoc_Ptr) return Assoc_Ptr is
13382 begin
13383 return Generic_Renamings.Table (E).Next_In_HTable;
13384 end Next_Assoc;
13385
13386 ------------------------
13387 -- Preanalyze_Actuals --
13388 ------------------------
13389
13390 procedure Preanalyze_Actuals (N : Node_Id; Inst : Entity_Id := Empty) is
13391 Assoc : Node_Id;
13392 Act : Node_Id;
13393 Errs : constant Nat := Serious_Errors_Detected;
13394
13395 Cur : Entity_Id := Empty;
13396 -- Current homograph of the instance name
13397
13398 Vis : Boolean;
13399 -- Saved visibility status of the current homograph
13400
13401 begin
13402 Assoc := First (Generic_Associations (N));
13403
13404 -- If the instance is a child unit, its name may hide an outer homonym,
13405 -- so make it invisible to perform name resolution on the actuals.
13406
13407 if Nkind (Defining_Unit_Name (N)) = N_Defining_Program_Unit_Name
13408 and then Present
13409 (Current_Entity (Defining_Identifier (Defining_Unit_Name (N))))
13410 then
13411 Cur := Current_Entity (Defining_Identifier (Defining_Unit_Name (N)));
13412
13413 if Is_Compilation_Unit (Cur) then
13414 Vis := Is_Immediately_Visible (Cur);
13415 Set_Is_Immediately_Visible (Cur, False);
13416 else
13417 Cur := Empty;
13418 end if;
13419 end if;
13420
13421 while Present (Assoc) loop
13422 if Nkind (Assoc) /= N_Others_Choice then
13423 Act := Explicit_Generic_Actual_Parameter (Assoc);
13424
13425 -- Within a nested instantiation, a defaulted actual is an empty
13426 -- association, so nothing to analyze. If the subprogram actual
13427 -- is an attribute, analyze prefix only, because actual is not a
13428 -- complete attribute reference.
13429
13430 -- If actual is an allocator, analyze expression only. The full
13431 -- analysis can generate code, and if instance is a compilation
13432 -- unit we have to wait until the package instance is installed
13433 -- to have a proper place to insert this code.
13434
13435 -- String literals may be operators, but at this point we do not
13436 -- know whether the actual is a formal subprogram or a string.
13437
13438 if No (Act) then
13439 null;
13440
13441 elsif Nkind (Act) = N_Attribute_Reference then
13442 Analyze (Prefix (Act));
13443
13444 elsif Nkind (Act) = N_Explicit_Dereference then
13445 Analyze (Prefix (Act));
13446
13447 elsif Nkind (Act) = N_Allocator then
13448 declare
13449 Expr : constant Node_Id := Expression (Act);
13450
13451 begin
13452 if Nkind (Expr) = N_Subtype_Indication then
13453 Analyze (Subtype_Mark (Expr));
13454
13455 -- Analyze separately each discriminant constraint, when
13456 -- given with a named association.
13457
13458 declare
13459 Constr : Node_Id;
13460
13461 begin
13462 Constr := First (Constraints (Constraint (Expr)));
13463 while Present (Constr) loop
13464 if Nkind (Constr) = N_Discriminant_Association then
13465 Analyze (Expression (Constr));
13466 else
13467 Analyze (Constr);
13468 end if;
13469
13470 Next (Constr);
13471 end loop;
13472 end;
13473
13474 else
13475 Analyze (Expr);
13476 end if;
13477 end;
13478
13479 elsif Nkind (Act) /= N_Operator_Symbol then
13480 Analyze (Act);
13481
13482 -- Within a package instance, mark actuals that are limited
13483 -- views, so their use can be moved to the body of the
13484 -- enclosing unit.
13485
13486 if Is_Entity_Name (Act)
13487 and then Is_Type (Entity (Act))
13488 and then From_Limited_With (Entity (Act))
13489 and then Present (Inst)
13490 then
13491 Append_Elmt (Entity (Act), Incomplete_Actuals (Inst));
13492 end if;
13493 end if;
13494
13495 if Errs /= Serious_Errors_Detected then
13496
13497 -- Do a minimal analysis of the generic, to prevent spurious
13498 -- warnings complaining about the generic being unreferenced,
13499 -- before abandoning the instantiation.
13500
13501 Analyze (Name (N));
13502
13503 if Is_Entity_Name (Name (N))
13504 and then Etype (Name (N)) /= Any_Type
13505 then
13506 Generate_Reference (Entity (Name (N)), Name (N));
13507 Set_Is_Instantiated (Entity (Name (N)));
13508 end if;
13509
13510 if Present (Cur) then
13511
13512 -- For the case of a child instance hiding an outer homonym,
13513 -- provide additional warning which might explain the error.
13514
13515 Set_Is_Immediately_Visible (Cur, Vis);
13516 Error_Msg_NE
13517 ("& hides outer unit with the same name??",
13518 N, Defining_Unit_Name (N));
13519 end if;
13520
13521 Abandon_Instantiation (Act);
13522 end if;
13523 end if;
13524
13525 Next (Assoc);
13526 end loop;
13527
13528 if Present (Cur) then
13529 Set_Is_Immediately_Visible (Cur, Vis);
13530 end if;
13531 end Preanalyze_Actuals;
13532
13533 -------------------
13534 -- Remove_Parent --
13535 -------------------
13536
13537 procedure Remove_Parent (In_Body : Boolean := False) is
13538 S : Entity_Id := Current_Scope;
13539 -- S is the scope containing the instantiation just completed. The scope
13540 -- stack contains the parent instances of the instantiation, followed by
13541 -- the original S.
13542
13543 Cur_P : Entity_Id;
13544 E : Entity_Id;
13545 P : Entity_Id;
13546 Hidden : Elmt_Id;
13547
13548 begin
13549 -- After child instantiation is complete, remove from scope stack the
13550 -- extra copy of the current scope, and then remove parent instances.
13551
13552 if not In_Body then
13553 Pop_Scope;
13554
13555 while Current_Scope /= S loop
13556 P := Current_Scope;
13557 End_Package_Scope (Current_Scope);
13558
13559 if In_Open_Scopes (P) then
13560 E := First_Entity (P);
13561 while Present (E) loop
13562 Set_Is_Immediately_Visible (E, True);
13563 Next_Entity (E);
13564 end loop;
13565
13566 -- If instantiation is declared in a block, it is the enclosing
13567 -- scope that might be a parent instance. Note that only one
13568 -- block can be involved, because the parent instances have
13569 -- been installed within it.
13570
13571 if Ekind (P) = E_Block then
13572 Cur_P := Scope (P);
13573 else
13574 Cur_P := P;
13575 end if;
13576
13577 if Is_Generic_Instance (Cur_P) and then P /= Current_Scope then
13578 -- We are within an instance of some sibling. Retain
13579 -- visibility of parent, for proper subsequent cleanup, and
13580 -- reinstall private declarations as well.
13581
13582 Set_In_Private_Part (P);
13583 Install_Private_Declarations (P);
13584 end if;
13585
13586 -- If the ultimate parent is a top-level unit recorded in
13587 -- Instance_Parent_Unit, then reset its visibility to what it was
13588 -- before instantiation. (It's not clear what the purpose is of
13589 -- testing whether Scope (P) is In_Open_Scopes, but that test was
13590 -- present before the ultimate parent test was added.???)
13591
13592 elsif not In_Open_Scopes (Scope (P))
13593 or else (P = Instance_Parent_Unit
13594 and then not Parent_Unit_Visible)
13595 then
13596 Set_Is_Immediately_Visible (P, False);
13597
13598 -- If the current scope is itself an instantiation of a generic
13599 -- nested within P, and we are in the private part of body of this
13600 -- instantiation, restore the full views of P, that were removed
13601 -- in End_Package_Scope above. This obscure case can occur when a
13602 -- subunit of a generic contains an instance of a child unit of
13603 -- its generic parent unit.
13604
13605 elsif S = Current_Scope and then Is_Generic_Instance (S) then
13606 declare
13607 Par : constant Entity_Id :=
13608 Generic_Parent (Package_Specification (S));
13609 begin
13610 if Present (Par)
13611 and then P = Scope (Par)
13612 and then (In_Package_Body (S) or else In_Private_Part (S))
13613 then
13614 Set_In_Private_Part (P);
13615 Install_Private_Declarations (P);
13616 end if;
13617 end;
13618 end if;
13619 end loop;
13620
13621 -- Reset visibility of entities in the enclosing scope
13622
13623 Set_Is_Hidden_Open_Scope (Current_Scope, False);
13624
13625 Hidden := First_Elmt (Hidden_Entities);
13626 while Present (Hidden) loop
13627 Set_Is_Immediately_Visible (Node (Hidden), True);
13628 Next_Elmt (Hidden);
13629 end loop;
13630
13631 else
13632 -- Each body is analyzed separately, and there is no context that
13633 -- needs preserving from one body instance to the next, so remove all
13634 -- parent scopes that have been installed.
13635
13636 while Present (S) loop
13637 End_Package_Scope (S);
13638 Set_Is_Immediately_Visible (S, False);
13639 S := Current_Scope;
13640 exit when S = Standard_Standard;
13641 end loop;
13642 end if;
13643 end Remove_Parent;
13644
13645 -----------------
13646 -- Restore_Env --
13647 -----------------
13648
13649 procedure Restore_Env is
13650 Saved : Instance_Env renames Instance_Envs.Table (Instance_Envs.Last);
13651
13652 begin
13653 if No (Current_Instantiated_Parent.Act_Id) then
13654 -- Restore environment after subprogram inlining
13655
13656 Restore_Private_Views (Empty);
13657 end if;
13658
13659 Current_Instantiated_Parent := Saved.Instantiated_Parent;
13660 Exchanged_Views := Saved.Exchanged_Views;
13661 Hidden_Entities := Saved.Hidden_Entities;
13662 Current_Sem_Unit := Saved.Current_Sem_Unit;
13663 Parent_Unit_Visible := Saved.Parent_Unit_Visible;
13664 Instance_Parent_Unit := Saved.Instance_Parent_Unit;
13665
13666 Restore_Opt_Config_Switches (Saved.Switches);
13667
13668 Instance_Envs.Decrement_Last;
13669 end Restore_Env;
13670
13671 ---------------------------
13672 -- Restore_Private_Views --
13673 ---------------------------
13674
13675 procedure Restore_Private_Views
13676 (Pack_Id : Entity_Id;
13677 Is_Package : Boolean := True)
13678 is
13679 M : Elmt_Id;
13680 E : Entity_Id;
13681 Typ : Entity_Id;
13682 Dep_Elmt : Elmt_Id;
13683 Dep_Typ : Node_Id;
13684
13685 procedure Restore_Nested_Formal (Formal : Entity_Id);
13686 -- Hide the generic formals of formal packages declared with box which
13687 -- were reachable in the current instantiation.
13688
13689 ---------------------------
13690 -- Restore_Nested_Formal --
13691 ---------------------------
13692
13693 procedure Restore_Nested_Formal (Formal : Entity_Id) is
13694 Ent : Entity_Id;
13695
13696 begin
13697 if Present (Renamed_Object (Formal))
13698 and then Denotes_Formal_Package (Renamed_Object (Formal), True)
13699 then
13700 return;
13701
13702 elsif Present (Associated_Formal_Package (Formal)) then
13703 Ent := First_Entity (Formal);
13704 while Present (Ent) loop
13705 exit when Ekind (Ent) = E_Package
13706 and then Renamed_Entity (Ent) = Renamed_Entity (Formal);
13707
13708 Set_Is_Hidden (Ent);
13709 Set_Is_Potentially_Use_Visible (Ent, False);
13710
13711 -- If package, then recurse
13712
13713 if Ekind (Ent) = E_Package then
13714 Restore_Nested_Formal (Ent);
13715 end if;
13716
13717 Next_Entity (Ent);
13718 end loop;
13719 end if;
13720 end Restore_Nested_Formal;
13721
13722 -- Start of processing for Restore_Private_Views
13723
13724 begin
13725 M := First_Elmt (Exchanged_Views);
13726 while Present (M) loop
13727 Typ := Node (M);
13728
13729 -- Subtypes of types whose views have been exchanged, and that are
13730 -- defined within the instance, were not on the Private_Dependents
13731 -- list on entry to the instance, so they have to be exchanged
13732 -- explicitly now, in order to remain consistent with the view of the
13733 -- parent type.
13734
13735 if Ekind_In (Typ, E_Private_Type,
13736 E_Limited_Private_Type,
13737 E_Record_Type_With_Private)
13738 then
13739 Dep_Elmt := First_Elmt (Private_Dependents (Typ));
13740 while Present (Dep_Elmt) loop
13741 Dep_Typ := Node (Dep_Elmt);
13742
13743 if Scope (Dep_Typ) = Pack_Id
13744 and then Present (Full_View (Dep_Typ))
13745 then
13746 Replace_Elmt (Dep_Elmt, Full_View (Dep_Typ));
13747 Exchange_Declarations (Dep_Typ);
13748 end if;
13749
13750 Next_Elmt (Dep_Elmt);
13751 end loop;
13752 end if;
13753
13754 Exchange_Declarations (Node (M));
13755 Next_Elmt (M);
13756 end loop;
13757
13758 if No (Pack_Id) then
13759 return;
13760 end if;
13761
13762 -- Make the generic formal parameters private, and make the formal types
13763 -- into subtypes of the actuals again.
13764
13765 E := First_Entity (Pack_Id);
13766 while Present (E) loop
13767 Set_Is_Hidden (E, True);
13768
13769 if Is_Type (E)
13770 and then Nkind (Parent (E)) = N_Subtype_Declaration
13771 then
13772 -- If the actual for E is itself a generic actual type from
13773 -- an enclosing instance, E is still a generic actual type
13774 -- outside of the current instance. This matter when resolving
13775 -- an overloaded call that may be ambiguous in the enclosing
13776 -- instance, when two of its actuals coincide.
13777
13778 if Is_Entity_Name (Subtype_Indication (Parent (E)))
13779 and then Is_Generic_Actual_Type
13780 (Entity (Subtype_Indication (Parent (E))))
13781 then
13782 null;
13783 else
13784 Set_Is_Generic_Actual_Type (E, False);
13785 end if;
13786
13787 -- An unusual case of aliasing: the actual may also be directly
13788 -- visible in the generic, and be private there, while it is fully
13789 -- visible in the context of the instance. The internal subtype
13790 -- is private in the instance but has full visibility like its
13791 -- parent in the enclosing scope. This enforces the invariant that
13792 -- the privacy status of all private dependents of a type coincide
13793 -- with that of the parent type. This can only happen when a
13794 -- generic child unit is instantiated within a sibling.
13795
13796 if Is_Private_Type (E)
13797 and then not Is_Private_Type (Etype (E))
13798 then
13799 Exchange_Declarations (E);
13800 end if;
13801
13802 elsif Ekind (E) = E_Package then
13803
13804 -- The end of the renaming list is the renaming of the generic
13805 -- package itself. If the instance is a subprogram, all entities
13806 -- in the corresponding package are renamings. If this entity is
13807 -- a formal package, make its own formals private as well. The
13808 -- actual in this case is itself the renaming of an instantiation.
13809 -- If the entity is not a package renaming, it is the entity
13810 -- created to validate formal package actuals: ignore it.
13811
13812 -- If the actual is itself a formal package for the enclosing
13813 -- generic, or the actual for such a formal package, it remains
13814 -- visible on exit from the instance, and therefore nothing needs
13815 -- to be done either, except to keep it accessible.
13816
13817 if Is_Package and then Renamed_Object (E) = Pack_Id then
13818 exit;
13819
13820 elsif Nkind (Parent (E)) /= N_Package_Renaming_Declaration then
13821 null;
13822
13823 elsif
13824 Denotes_Formal_Package (Renamed_Object (E), True, Pack_Id)
13825 then
13826 Set_Is_Hidden (E, False);
13827
13828 else
13829 declare
13830 Act_P : constant Entity_Id := Renamed_Object (E);
13831 Id : Entity_Id;
13832
13833 begin
13834 Id := First_Entity (Act_P);
13835 while Present (Id)
13836 and then Id /= First_Private_Entity (Act_P)
13837 loop
13838 exit when Ekind (Id) = E_Package
13839 and then Renamed_Object (Id) = Act_P;
13840
13841 Set_Is_Hidden (Id, True);
13842 Set_Is_Potentially_Use_Visible (Id, In_Use (Act_P));
13843
13844 if Ekind (Id) = E_Package then
13845 Restore_Nested_Formal (Id);
13846 end if;
13847
13848 Next_Entity (Id);
13849 end loop;
13850 end;
13851 end if;
13852 end if;
13853
13854 Next_Entity (E);
13855 end loop;
13856 end Restore_Private_Views;
13857
13858 --------------
13859 -- Save_Env --
13860 --------------
13861
13862 procedure Save_Env
13863 (Gen_Unit : Entity_Id;
13864 Act_Unit : Entity_Id)
13865 is
13866 begin
13867 Init_Env;
13868 Set_Instance_Env (Gen_Unit, Act_Unit);
13869 end Save_Env;
13870
13871 ----------------------------
13872 -- Save_Global_References --
13873 ----------------------------
13874
13875 procedure Save_Global_References (Templ : Node_Id) is
13876
13877 -- ??? it is horrible to use global variables in highly recursive code
13878
13879 E : Entity_Id;
13880 -- The entity of the current associated node
13881
13882 Gen_Scope : Entity_Id;
13883 -- The scope of the generic for which references are being saved
13884
13885 N2 : Node_Id;
13886 -- The current associated node
13887
13888 function Is_Global (E : Entity_Id) return Boolean;
13889 -- Check whether entity is defined outside of generic unit. Examine the
13890 -- scope of an entity, and the scope of the scope, etc, until we find
13891 -- either Standard, in which case the entity is global, or the generic
13892 -- unit itself, which indicates that the entity is local. If the entity
13893 -- is the generic unit itself, as in the case of a recursive call, or
13894 -- the enclosing generic unit, if different from the current scope, then
13895 -- it is local as well, because it will be replaced at the point of
13896 -- instantiation. On the other hand, if it is a reference to a child
13897 -- unit of a common ancestor, which appears in an instantiation, it is
13898 -- global because it is used to denote a specific compilation unit at
13899 -- the time the instantiations will be analyzed.
13900
13901 procedure Qualify_Universal_Operands
13902 (Op : Node_Id;
13903 Func_Call : Node_Id);
13904 -- Op denotes a binary or unary operator in generic template Templ. Node
13905 -- Func_Call is the function call alternative of the operator within the
13906 -- the analyzed copy of the template. Change each operand which yields a
13907 -- universal type by wrapping it into a qualified expression
13908 --
13909 -- Actual_Typ'(Operand)
13910 --
13911 -- where Actual_Typ is the type of corresponding actual parameter of
13912 -- Operand in Func_Call.
13913
13914 procedure Reset_Entity (N : Node_Id);
13915 -- Save semantic information on global entity so that it is not resolved
13916 -- again at instantiation time.
13917
13918 procedure Save_Entity_Descendants (N : Node_Id);
13919 -- Apply Save_Global_References to the two syntactic descendants of
13920 -- non-terminal nodes that carry an Associated_Node and are processed
13921 -- through Reset_Entity. Once the global entity (if any) has been
13922 -- captured together with its type, only two syntactic descendants need
13923 -- to be traversed to complete the processing of the tree rooted at N.
13924 -- This applies to Selected_Components, Expanded_Names, and to Operator
13925 -- nodes. N can also be a character literal, identifier, or operator
13926 -- symbol node, but the call has no effect in these cases.
13927
13928 procedure Save_Global_Defaults (N1 : Node_Id; N2 : Node_Id);
13929 -- Default actuals in nested instances must be handled specially
13930 -- because there is no link to them from the original tree. When an
13931 -- actual subprogram is given by a default, we add an explicit generic
13932 -- association for it in the instantiation node. When we save the
13933 -- global references on the name of the instance, we recover the list
13934 -- of generic associations, and add an explicit one to the original
13935 -- generic tree, through which a global actual can be preserved.
13936 -- Similarly, if a child unit is instantiated within a sibling, in the
13937 -- context of the parent, we must preserve the identifier of the parent
13938 -- so that it can be properly resolved in a subsequent instantiation.
13939
13940 procedure Save_Global_Descendant (D : Union_Id);
13941 -- Apply Save_References recursively to the descendants of node D
13942
13943 procedure Save_References (N : Node_Id);
13944 -- This is the recursive procedure that does the work, once the
13945 -- enclosing generic scope has been established.
13946
13947 ---------------
13948 -- Is_Global --
13949 ---------------
13950
13951 function Is_Global (E : Entity_Id) return Boolean is
13952 Se : Entity_Id;
13953
13954 function Is_Instance_Node (Decl : Node_Id) return Boolean;
13955 -- Determine whether the parent node of a reference to a child unit
13956 -- denotes an instantiation or a formal package, in which case the
13957 -- reference to the child unit is global, even if it appears within
13958 -- the current scope (e.g. when the instance appears within the body
13959 -- of an ancestor).
13960
13961 ----------------------
13962 -- Is_Instance_Node --
13963 ----------------------
13964
13965 function Is_Instance_Node (Decl : Node_Id) return Boolean is
13966 begin
13967 return Nkind (Decl) in N_Generic_Instantiation
13968 or else
13969 Nkind (Original_Node (Decl)) = N_Formal_Package_Declaration;
13970 end Is_Instance_Node;
13971
13972 -- Start of processing for Is_Global
13973
13974 begin
13975 if E = Gen_Scope then
13976 return False;
13977
13978 elsif E = Standard_Standard then
13979 return True;
13980
13981 elsif Is_Child_Unit (E)
13982 and then (Is_Instance_Node (Parent (N2))
13983 or else (Nkind (Parent (N2)) = N_Expanded_Name
13984 and then N2 = Selector_Name (Parent (N2))
13985 and then
13986 Is_Instance_Node (Parent (Parent (N2)))))
13987 then
13988 return True;
13989
13990 else
13991 Se := Scope (E);
13992 while Se /= Gen_Scope loop
13993 if Se = Standard_Standard then
13994 return True;
13995 else
13996 Se := Scope (Se);
13997 end if;
13998 end loop;
13999
14000 return False;
14001 end if;
14002 end Is_Global;
14003
14004 --------------------------------
14005 -- Qualify_Universal_Operands --
14006 --------------------------------
14007
14008 procedure Qualify_Universal_Operands
14009 (Op : Node_Id;
14010 Func_Call : Node_Id)
14011 is
14012 procedure Qualify_Operand (Opnd : Node_Id; Actual : Node_Id);
14013 -- Rewrite operand Opnd as a qualified expression of the form
14014 --
14015 -- Actual_Typ'(Opnd)
14016 --
14017 -- where Actual is the corresponding actual parameter of Opnd in
14018 -- function call Func_Call.
14019
14020 function Qualify_Type
14021 (Loc : Source_Ptr;
14022 Typ : Entity_Id) return Node_Id;
14023 -- Qualify type Typ by creating a selected component of the form
14024 --
14025 -- Scope_Of_Typ.Typ
14026
14027 ---------------------
14028 -- Qualify_Operand --
14029 ---------------------
14030
14031 procedure Qualify_Operand (Opnd : Node_Id; Actual : Node_Id) is
14032 Loc : constant Source_Ptr := Sloc (Opnd);
14033 Typ : constant Entity_Id := Etype (Actual);
14034 Mark : Node_Id;
14035 Qual : Node_Id;
14036
14037 begin
14038 -- Qualify the operand when it is of a universal type. Note that
14039 -- the template is unanalyzed and it is not possible to directly
14040 -- query the type. This transformation is not done when the type
14041 -- of the actual is internally generated because the type will be
14042 -- regenerated in the instance.
14043
14044 if Yields_Universal_Type (Opnd)
14045 and then Comes_From_Source (Typ)
14046 and then not Is_Hidden (Typ)
14047 then
14048 -- The type of the actual may be a global reference. Save this
14049 -- information by creating a reference to it.
14050
14051 if Is_Global (Typ) then
14052 Mark := New_Occurrence_Of (Typ, Loc);
14053
14054 -- Otherwise rely on resolution to find the proper type within
14055 -- the instance.
14056
14057 else
14058 Mark := Qualify_Type (Loc, Typ);
14059 end if;
14060
14061 Qual :=
14062 Make_Qualified_Expression (Loc,
14063 Subtype_Mark => Mark,
14064 Expression => Relocate_Node (Opnd));
14065
14066 -- Mark the qualification to distinguish it from other source
14067 -- constructs and signal the instantiation mechanism that this
14068 -- node requires special processing. See Copy_Generic_Node for
14069 -- details.
14070
14071 Set_Is_Qualified_Universal_Literal (Qual);
14072
14073 Rewrite (Opnd, Qual);
14074 end if;
14075 end Qualify_Operand;
14076
14077 ------------------
14078 -- Qualify_Type --
14079 ------------------
14080
14081 function Qualify_Type
14082 (Loc : Source_Ptr;
14083 Typ : Entity_Id) return Node_Id
14084 is
14085 Scop : constant Entity_Id := Scope (Typ);
14086 Result : Node_Id;
14087
14088 begin
14089 Result := Make_Identifier (Loc, Chars (Typ));
14090
14091 if Present (Scop) and then not Is_Generic_Unit (Scop) then
14092 Result :=
14093 Make_Selected_Component (Loc,
14094 Prefix => Make_Identifier (Loc, Chars (Scop)),
14095 Selector_Name => Result);
14096 end if;
14097
14098 return Result;
14099 end Qualify_Type;
14100
14101 -- Local variables
14102
14103 Actuals : constant List_Id := Parameter_Associations (Func_Call);
14104
14105 -- Start of processing for Qualify_Universal_Operands
14106
14107 begin
14108 if Nkind (Op) in N_Binary_Op then
14109 Qualify_Operand (Left_Opnd (Op), First (Actuals));
14110 Qualify_Operand (Right_Opnd (Op), Next (First (Actuals)));
14111
14112 elsif Nkind (Op) in N_Unary_Op then
14113 Qualify_Operand (Right_Opnd (Op), First (Actuals));
14114 end if;
14115 end Qualify_Universal_Operands;
14116
14117 ------------------
14118 -- Reset_Entity --
14119 ------------------
14120
14121 procedure Reset_Entity (N : Node_Id) is
14122 procedure Set_Global_Type (N : Node_Id; N2 : Node_Id);
14123 -- If the type of N2 is global to the generic unit, save the type in
14124 -- the generic node. Just as we perform name capture for explicit
14125 -- references within the generic, we must capture the global types
14126 -- of local entities because they may participate in resolution in
14127 -- the instance.
14128
14129 function Top_Ancestor (E : Entity_Id) return Entity_Id;
14130 -- Find the ultimate ancestor of the current unit. If it is not a
14131 -- generic unit, then the name of the current unit in the prefix of
14132 -- an expanded name must be replaced with its generic homonym to
14133 -- ensure that it will be properly resolved in an instance.
14134
14135 ---------------------
14136 -- Set_Global_Type --
14137 ---------------------
14138
14139 procedure Set_Global_Type (N : Node_Id; N2 : Node_Id) is
14140 Typ : constant Entity_Id := Etype (N2);
14141
14142 begin
14143 Set_Etype (N, Typ);
14144
14145 -- If the entity of N is not the associated node, this is a
14146 -- nested generic and it has an associated node as well, whose
14147 -- type is already the full view (see below). Indicate that the
14148 -- original node has a private view.
14149
14150 if Entity (N) /= N2 and then Has_Private_View (Entity (N)) then
14151 Set_Has_Private_View (N);
14152 end if;
14153
14154 -- If not a private type, nothing else to do
14155
14156 if not Is_Private_Type (Typ) then
14157 if Is_Array_Type (Typ)
14158 and then Is_Private_Type (Component_Type (Typ))
14159 then
14160 Set_Has_Private_View (N);
14161 end if;
14162
14163 -- If it is a derivation of a private type in a context where no
14164 -- full view is needed, nothing to do either.
14165
14166 elsif No (Full_View (Typ)) and then Typ /= Etype (Typ) then
14167 null;
14168
14169 -- Otherwise mark the type for flipping and use the full view when
14170 -- available.
14171
14172 else
14173 Set_Has_Private_View (N);
14174
14175 if Present (Full_View (Typ)) then
14176 Set_Etype (N2, Full_View (Typ));
14177 end if;
14178 end if;
14179
14180 if Is_Floating_Point_Type (Typ)
14181 and then Has_Dimension_System (Typ)
14182 then
14183 Copy_Dimensions (N2, N);
14184 end if;
14185
14186 end Set_Global_Type;
14187
14188 ------------------
14189 -- Top_Ancestor --
14190 ------------------
14191
14192 function Top_Ancestor (E : Entity_Id) return Entity_Id is
14193 Par : Entity_Id;
14194
14195 begin
14196 Par := E;
14197 while Is_Child_Unit (Par) loop
14198 Par := Scope (Par);
14199 end loop;
14200
14201 return Par;
14202 end Top_Ancestor;
14203
14204 -- Start of processing for Reset_Entity
14205
14206 begin
14207 N2 := Get_Associated_Node (N);
14208 E := Entity (N2);
14209
14210 if Present (E) then
14211
14212 -- If the node is an entry call to an entry in an enclosing task,
14213 -- it is rewritten as a selected component. No global entity to
14214 -- preserve in this case, since the expansion will be redone in
14215 -- the instance.
14216
14217 if not Nkind_In (E, N_Defining_Character_Literal,
14218 N_Defining_Identifier,
14219 N_Defining_Operator_Symbol)
14220 then
14221 Set_Associated_Node (N, Empty);
14222 Set_Etype (N, Empty);
14223 return;
14224 end if;
14225
14226 -- If the entity is an itype created as a subtype of an access
14227 -- type with a null exclusion restore source entity for proper
14228 -- visibility. The itype will be created anew in the instance.
14229
14230 if Is_Itype (E)
14231 and then Ekind (E) = E_Access_Subtype
14232 and then Is_Entity_Name (N)
14233 and then Chars (Etype (E)) = Chars (N)
14234 then
14235 E := Etype (E);
14236 Set_Entity (N2, E);
14237 Set_Etype (N2, E);
14238 end if;
14239
14240 if Is_Global (E) then
14241
14242 -- If the entity is a package renaming that is the prefix of
14243 -- an expanded name, it has been rewritten as the renamed
14244 -- package, which is necessary semantically but complicates
14245 -- ASIS tree traversal, so we recover the original entity to
14246 -- expose the renaming. Take into account that the context may
14247 -- be a nested generic, that the original node may itself have
14248 -- an associated node that had better be an entity, and that
14249 -- the current node is still a selected component.
14250
14251 if Ekind (E) = E_Package
14252 and then Nkind (N) = N_Selected_Component
14253 and then Nkind (Parent (N)) = N_Expanded_Name
14254 and then Present (Original_Node (N2))
14255 and then Is_Entity_Name (Original_Node (N2))
14256 and then Present (Entity (Original_Node (N2)))
14257 then
14258 if Is_Global (Entity (Original_Node (N2))) then
14259 N2 := Original_Node (N2);
14260 Set_Associated_Node (N, N2);
14261 Set_Global_Type (N, N2);
14262
14263 -- Renaming is local, and will be resolved in instance
14264
14265 else
14266 Set_Associated_Node (N, Empty);
14267 Set_Etype (N, Empty);
14268 end if;
14269
14270 else
14271 Set_Global_Type (N, N2);
14272 end if;
14273
14274 elsif Nkind (N) = N_Op_Concat
14275 and then Is_Generic_Type (Etype (N2))
14276 and then (Base_Type (Etype (Right_Opnd (N2))) = Etype (N2)
14277 or else
14278 Base_Type (Etype (Left_Opnd (N2))) = Etype (N2))
14279 and then Is_Intrinsic_Subprogram (E)
14280 then
14281 null;
14282
14283 -- Entity is local. Mark generic node as unresolved. Note that now
14284 -- it does not have an entity.
14285
14286 else
14287 Set_Associated_Node (N, Empty);
14288 Set_Etype (N, Empty);
14289 end if;
14290
14291 if Nkind (Parent (N)) in N_Generic_Instantiation
14292 and then N = Name (Parent (N))
14293 then
14294 Save_Global_Defaults (Parent (N), Parent (N2));
14295 end if;
14296
14297 elsif Nkind (Parent (N)) = N_Selected_Component
14298 and then Nkind (Parent (N2)) = N_Expanded_Name
14299 then
14300 if Is_Global (Entity (Parent (N2))) then
14301 Change_Selected_Component_To_Expanded_Name (Parent (N));
14302 Set_Associated_Node (Parent (N), Parent (N2));
14303 Set_Global_Type (Parent (N), Parent (N2));
14304 Save_Entity_Descendants (N);
14305
14306 -- If this is a reference to the current generic entity, replace
14307 -- by the name of the generic homonym of the current package. This
14308 -- is because in an instantiation Par.P.Q will not resolve to the
14309 -- name of the instance, whose enclosing scope is not necessarily
14310 -- Par. We use the generic homonym rather that the name of the
14311 -- generic itself because it may be hidden by a local declaration.
14312
14313 elsif In_Open_Scopes (Entity (Parent (N2)))
14314 and then not
14315 Is_Generic_Unit (Top_Ancestor (Entity (Prefix (Parent (N2)))))
14316 then
14317 if Ekind (Entity (Parent (N2))) = E_Generic_Package then
14318 Rewrite (Parent (N),
14319 Make_Identifier (Sloc (N),
14320 Chars =>
14321 Chars (Generic_Homonym (Entity (Parent (N2))))));
14322 else
14323 Rewrite (Parent (N),
14324 Make_Identifier (Sloc (N),
14325 Chars => Chars (Selector_Name (Parent (N2)))));
14326 end if;
14327 end if;
14328
14329 if Nkind (Parent (Parent (N))) in N_Generic_Instantiation
14330 and then Parent (N) = Name (Parent (Parent (N)))
14331 then
14332 Save_Global_Defaults
14333 (Parent (Parent (N)), Parent (Parent (N2)));
14334 end if;
14335
14336 -- A selected component may denote a static constant that has been
14337 -- folded. If the static constant is global to the generic, capture
14338 -- its value. Otherwise the folding will happen in any instantiation.
14339
14340 elsif Nkind (Parent (N)) = N_Selected_Component
14341 and then Nkind_In (Parent (N2), N_Integer_Literal, N_Real_Literal)
14342 then
14343 if Present (Entity (Original_Node (Parent (N2))))
14344 and then Is_Global (Entity (Original_Node (Parent (N2))))
14345 then
14346 Rewrite (Parent (N), New_Copy (Parent (N2)));
14347 Set_Analyzed (Parent (N), False);
14348 end if;
14349
14350 -- A selected component may be transformed into a parameterless
14351 -- function call. If the called entity is global, rewrite the node
14352 -- appropriately, i.e. as an extended name for the global entity.
14353
14354 elsif Nkind (Parent (N)) = N_Selected_Component
14355 and then Nkind (Parent (N2)) = N_Function_Call
14356 and then N = Selector_Name (Parent (N))
14357 then
14358 if No (Parameter_Associations (Parent (N2))) then
14359 if Is_Global (Entity (Name (Parent (N2)))) then
14360 Change_Selected_Component_To_Expanded_Name (Parent (N));
14361 Set_Associated_Node (Parent (N), Name (Parent (N2)));
14362 Set_Global_Type (Parent (N), Name (Parent (N2)));
14363 Save_Entity_Descendants (N);
14364
14365 else
14366 Set_Is_Prefixed_Call (Parent (N));
14367 Set_Associated_Node (N, Empty);
14368 Set_Etype (N, Empty);
14369 end if;
14370
14371 -- In Ada 2005, X.F may be a call to a primitive operation,
14372 -- rewritten as F (X). This rewriting will be done again in an
14373 -- instance, so keep the original node. Global entities will be
14374 -- captured as for other constructs. Indicate that this must
14375 -- resolve as a call, to prevent accidental overloading in the
14376 -- instance, if both a component and a primitive operation appear
14377 -- as candidates.
14378
14379 else
14380 Set_Is_Prefixed_Call (Parent (N));
14381 end if;
14382
14383 -- Entity is local. Reset in generic unit, so that node is resolved
14384 -- anew at the point of instantiation.
14385
14386 else
14387 Set_Associated_Node (N, Empty);
14388 Set_Etype (N, Empty);
14389 end if;
14390 end Reset_Entity;
14391
14392 -----------------------------
14393 -- Save_Entity_Descendants --
14394 -----------------------------
14395
14396 procedure Save_Entity_Descendants (N : Node_Id) is
14397 begin
14398 case Nkind (N) is
14399 when N_Binary_Op =>
14400 Save_Global_Descendant (Union_Id (Left_Opnd (N)));
14401 Save_Global_Descendant (Union_Id (Right_Opnd (N)));
14402
14403 when N_Unary_Op =>
14404 Save_Global_Descendant (Union_Id (Right_Opnd (N)));
14405
14406 when N_Expanded_Name |
14407 N_Selected_Component =>
14408 Save_Global_Descendant (Union_Id (Prefix (N)));
14409 Save_Global_Descendant (Union_Id (Selector_Name (N)));
14410
14411 when N_Identifier |
14412 N_Character_Literal |
14413 N_Operator_Symbol =>
14414 null;
14415
14416 when others =>
14417 raise Program_Error;
14418 end case;
14419 end Save_Entity_Descendants;
14420
14421 --------------------------
14422 -- Save_Global_Defaults --
14423 --------------------------
14424
14425 procedure Save_Global_Defaults (N1 : Node_Id; N2 : Node_Id) is
14426 Loc : constant Source_Ptr := Sloc (N1);
14427 Assoc2 : constant List_Id := Generic_Associations (N2);
14428 Gen_Id : constant Entity_Id := Get_Generic_Entity (N2);
14429 Assoc1 : List_Id;
14430 Act1 : Node_Id;
14431 Act2 : Node_Id;
14432 Def : Node_Id;
14433 Ndec : Node_Id;
14434 Subp : Entity_Id;
14435 Actual : Entity_Id;
14436
14437 begin
14438 Assoc1 := Generic_Associations (N1);
14439
14440 if Present (Assoc1) then
14441 Act1 := First (Assoc1);
14442 else
14443 Act1 := Empty;
14444 Set_Generic_Associations (N1, New_List);
14445 Assoc1 := Generic_Associations (N1);
14446 end if;
14447
14448 if Present (Assoc2) then
14449 Act2 := First (Assoc2);
14450 else
14451 return;
14452 end if;
14453
14454 while Present (Act1) and then Present (Act2) loop
14455 Next (Act1);
14456 Next (Act2);
14457 end loop;
14458
14459 -- Find the associations added for default subprograms
14460
14461 if Present (Act2) then
14462 while Nkind (Act2) /= N_Generic_Association
14463 or else No (Entity (Selector_Name (Act2)))
14464 or else not Is_Overloadable (Entity (Selector_Name (Act2)))
14465 loop
14466 Next (Act2);
14467 end loop;
14468
14469 -- Add a similar association if the default is global. The
14470 -- renaming declaration for the actual has been analyzed, and
14471 -- its alias is the program it renames. Link the actual in the
14472 -- original generic tree with the node in the analyzed tree.
14473
14474 while Present (Act2) loop
14475 Subp := Entity (Selector_Name (Act2));
14476 Def := Explicit_Generic_Actual_Parameter (Act2);
14477
14478 -- Following test is defence against rubbish errors
14479
14480 if No (Alias (Subp)) then
14481 return;
14482 end if;
14483
14484 -- Retrieve the resolved actual from the renaming declaration
14485 -- created for the instantiated formal.
14486
14487 Actual := Entity (Name (Parent (Parent (Subp))));
14488 Set_Entity (Def, Actual);
14489 Set_Etype (Def, Etype (Actual));
14490
14491 if Is_Global (Actual) then
14492 Ndec :=
14493 Make_Generic_Association (Loc,
14494 Selector_Name =>
14495 New_Occurrence_Of (Subp, Loc),
14496 Explicit_Generic_Actual_Parameter =>
14497 New_Occurrence_Of (Actual, Loc));
14498
14499 Set_Associated_Node
14500 (Explicit_Generic_Actual_Parameter (Ndec), Def);
14501
14502 Append (Ndec, Assoc1);
14503
14504 -- If there are other defaults, add a dummy association in case
14505 -- there are other defaulted formals with the same name.
14506
14507 elsif Present (Next (Act2)) then
14508 Ndec :=
14509 Make_Generic_Association (Loc,
14510 Selector_Name =>
14511 New_Occurrence_Of (Subp, Loc),
14512 Explicit_Generic_Actual_Parameter => Empty);
14513
14514 Append (Ndec, Assoc1);
14515 end if;
14516
14517 Next (Act2);
14518 end loop;
14519 end if;
14520
14521 if Nkind (Name (N1)) = N_Identifier
14522 and then Is_Child_Unit (Gen_Id)
14523 and then Is_Global (Gen_Id)
14524 and then Is_Generic_Unit (Scope (Gen_Id))
14525 and then In_Open_Scopes (Scope (Gen_Id))
14526 then
14527 -- This is an instantiation of a child unit within a sibling, so
14528 -- that the generic parent is in scope. An eventual instance must
14529 -- occur within the scope of an instance of the parent. Make name
14530 -- in instance into an expanded name, to preserve the identifier
14531 -- of the parent, so it can be resolved subsequently.
14532
14533 Rewrite (Name (N2),
14534 Make_Expanded_Name (Loc,
14535 Chars => Chars (Gen_Id),
14536 Prefix => New_Occurrence_Of (Scope (Gen_Id), Loc),
14537 Selector_Name => New_Occurrence_Of (Gen_Id, Loc)));
14538 Set_Entity (Name (N2), Gen_Id);
14539
14540 Rewrite (Name (N1),
14541 Make_Expanded_Name (Loc,
14542 Chars => Chars (Gen_Id),
14543 Prefix => New_Occurrence_Of (Scope (Gen_Id), Loc),
14544 Selector_Name => New_Occurrence_Of (Gen_Id, Loc)));
14545
14546 Set_Associated_Node (Name (N1), Name (N2));
14547 Set_Associated_Node (Prefix (Name (N1)), Empty);
14548 Set_Associated_Node
14549 (Selector_Name (Name (N1)), Selector_Name (Name (N2)));
14550 Set_Etype (Name (N1), Etype (Gen_Id));
14551 end if;
14552 end Save_Global_Defaults;
14553
14554 ----------------------------
14555 -- Save_Global_Descendant --
14556 ----------------------------
14557
14558 procedure Save_Global_Descendant (D : Union_Id) is
14559 N1 : Node_Id;
14560
14561 begin
14562 if D in Node_Range then
14563 if D = Union_Id (Empty) then
14564 null;
14565
14566 elsif Nkind (Node_Id (D)) /= N_Compilation_Unit then
14567 Save_References (Node_Id (D));
14568 end if;
14569
14570 elsif D in List_Range then
14571 if D = Union_Id (No_List) or else Is_Empty_List (List_Id (D)) then
14572 null;
14573
14574 else
14575 N1 := First (List_Id (D));
14576 while Present (N1) loop
14577 Save_References (N1);
14578 Next (N1);
14579 end loop;
14580 end if;
14581
14582 -- Element list or other non-node field, nothing to do
14583
14584 else
14585 null;
14586 end if;
14587 end Save_Global_Descendant;
14588
14589 ---------------------
14590 -- Save_References --
14591 ---------------------
14592
14593 -- This is the recursive procedure that does the work once the enclosing
14594 -- generic scope has been established. We have to treat specially a
14595 -- number of node rewritings that are required by semantic processing
14596 -- and which change the kind of nodes in the generic copy: typically
14597 -- constant-folding, replacing an operator node by a string literal, or
14598 -- a selected component by an expanded name. In each of those cases, the
14599 -- transformation is propagated to the generic unit.
14600
14601 procedure Save_References (N : Node_Id) is
14602 Loc : constant Source_Ptr := Sloc (N);
14603
14604 function Requires_Delayed_Save (Nod : Node_Id) return Boolean;
14605 -- Determine whether arbitrary node Nod requires delayed capture of
14606 -- global references within its aspect specifications.
14607
14608 procedure Save_References_In_Aggregate (N : Node_Id);
14609 -- Save all global references in [extension] aggregate node N
14610
14611 procedure Save_References_In_Char_Lit_Or_Op_Symbol (N : Node_Id);
14612 -- Save all global references in a character literal or operator
14613 -- symbol denoted by N.
14614
14615 procedure Save_References_In_Descendants (N : Node_Id);
14616 -- Save all global references in all descendants of node N
14617
14618 procedure Save_References_In_Identifier (N : Node_Id);
14619 -- Save all global references in identifier node N
14620
14621 procedure Save_References_In_Operator (N : Node_Id);
14622 -- Save all global references in operator node N
14623
14624 procedure Save_References_In_Pragma (Prag : Node_Id);
14625 -- Save all global references found within the expression of pragma
14626 -- Prag.
14627
14628 ---------------------------
14629 -- Requires_Delayed_Save --
14630 ---------------------------
14631
14632 function Requires_Delayed_Save (Nod : Node_Id) return Boolean is
14633 begin
14634 -- Generic packages and subprograms require delayed capture of
14635 -- global references within their aspects due to the timing of
14636 -- annotation analysis.
14637
14638 if Nkind_In (Nod, N_Generic_Package_Declaration,
14639 N_Generic_Subprogram_Declaration,
14640 N_Package_Body,
14641 N_Package_Body_Stub,
14642 N_Subprogram_Body,
14643 N_Subprogram_Body_Stub)
14644 then
14645 -- Since the capture of global references is done on the
14646 -- unanalyzed generic template, there is no information around
14647 -- to infer the context. Use the Associated_Entity linkages to
14648 -- peek into the analyzed generic copy and determine what the
14649 -- template corresponds to.
14650
14651 if Nod = Templ then
14652 return
14653 Is_Generic_Declaration_Or_Body
14654 (Unit_Declaration_Node
14655 (Associated_Entity (Defining_Entity (Nod))));
14656
14657 -- Otherwise the generic unit being processed is not the top
14658 -- level template. It is safe to capture of global references
14659 -- within the generic unit because at this point the top level
14660 -- copy is fully analyzed.
14661
14662 else
14663 return False;
14664 end if;
14665
14666 -- Otherwise capture the global references without interference
14667
14668 else
14669 return False;
14670 end if;
14671 end Requires_Delayed_Save;
14672
14673 ----------------------------------
14674 -- Save_References_In_Aggregate --
14675 ----------------------------------
14676
14677 procedure Save_References_In_Aggregate (N : Node_Id) is
14678 Nam : Node_Id;
14679 Qual : Node_Id := Empty;
14680 Typ : Entity_Id := Empty;
14681
14682 use Atree.Unchecked_Access;
14683 -- This code section is part of implementing an untyped tree
14684 -- traversal, so it needs direct access to node fields.
14685
14686 begin
14687 N2 := Get_Associated_Node (N);
14688
14689 if Present (N2) then
14690 Typ := Etype (N2);
14691
14692 -- In an instance within a generic, use the name of the actual
14693 -- and not the original generic parameter. If the actual is
14694 -- global in the current generic it must be preserved for its
14695 -- instantiation.
14696
14697 if Nkind (Parent (Typ)) = N_Subtype_Declaration
14698 and then Present (Generic_Parent_Type (Parent (Typ)))
14699 then
14700 Typ := Base_Type (Typ);
14701 Set_Etype (N2, Typ);
14702 end if;
14703 end if;
14704
14705 if No (N2) or else No (Typ) or else not Is_Global (Typ) then
14706 Set_Associated_Node (N, Empty);
14707
14708 -- If the aggregate is an actual in a call, it has been
14709 -- resolved in the current context, to some local type. The
14710 -- enclosing call may have been disambiguated by the aggregate,
14711 -- and this disambiguation might fail at instantiation time
14712 -- because the type to which the aggregate did resolve is not
14713 -- preserved. In order to preserve some of this information,
14714 -- wrap the aggregate in a qualified expression, using the id
14715 -- of its type. For further disambiguation we qualify the type
14716 -- name with its scope (if visible) because both id's will have
14717 -- corresponding entities in an instance. This resolves most of
14718 -- the problems with missing type information on aggregates in
14719 -- instances.
14720
14721 if Present (N2)
14722 and then Nkind (N2) = Nkind (N)
14723 and then Nkind (Parent (N2)) in N_Subprogram_Call
14724 and then Present (Typ)
14725 and then Comes_From_Source (Typ)
14726 then
14727 Nam := Make_Identifier (Loc, Chars (Typ));
14728
14729 if Is_Immediately_Visible (Scope (Typ)) then
14730 Nam :=
14731 Make_Selected_Component (Loc,
14732 Prefix =>
14733 Make_Identifier (Loc, Chars (Scope (Typ))),
14734 Selector_Name => Nam);
14735 end if;
14736
14737 Qual :=
14738 Make_Qualified_Expression (Loc,
14739 Subtype_Mark => Nam,
14740 Expression => Relocate_Node (N));
14741 end if;
14742 end if;
14743
14744 Save_Global_Descendant (Field1 (N));
14745 Save_Global_Descendant (Field2 (N));
14746 Save_Global_Descendant (Field3 (N));
14747 Save_Global_Descendant (Field5 (N));
14748
14749 if Present (Qual) then
14750 Rewrite (N, Qual);
14751 end if;
14752 end Save_References_In_Aggregate;
14753
14754 ----------------------------------------------
14755 -- Save_References_In_Char_Lit_Or_Op_Symbol --
14756 ----------------------------------------------
14757
14758 procedure Save_References_In_Char_Lit_Or_Op_Symbol (N : Node_Id) is
14759 begin
14760 if Nkind (N) = Nkind (Get_Associated_Node (N)) then
14761 Reset_Entity (N);
14762
14763 elsif Nkind (N) = N_Operator_Symbol
14764 and then Nkind (Get_Associated_Node (N)) = N_String_Literal
14765 then
14766 Change_Operator_Symbol_To_String_Literal (N);
14767 end if;
14768 end Save_References_In_Char_Lit_Or_Op_Symbol;
14769
14770 ------------------------------------
14771 -- Save_References_In_Descendants --
14772 ------------------------------------
14773
14774 procedure Save_References_In_Descendants (N : Node_Id) is
14775 use Atree.Unchecked_Access;
14776 -- This code section is part of implementing an untyped tree
14777 -- traversal, so it needs direct access to node fields.
14778
14779 begin
14780 Save_Global_Descendant (Field1 (N));
14781 Save_Global_Descendant (Field2 (N));
14782 Save_Global_Descendant (Field3 (N));
14783 Save_Global_Descendant (Field4 (N));
14784 Save_Global_Descendant (Field5 (N));
14785 end Save_References_In_Descendants;
14786
14787 -----------------------------------
14788 -- Save_References_In_Identifier --
14789 -----------------------------------
14790
14791 procedure Save_References_In_Identifier (N : Node_Id) is
14792 begin
14793 -- The node did not undergo a transformation
14794
14795 if Nkind (N) = Nkind (Get_Associated_Node (N)) then
14796
14797 -- If this is a discriminant reference, always save it. It is
14798 -- used in the instance to find the corresponding discriminant
14799 -- positionally rather than by name.
14800
14801 Set_Original_Discriminant
14802 (N, Original_Discriminant (Get_Associated_Node (N)));
14803 Reset_Entity (N);
14804
14805 -- The analysis of the generic copy transformed the identifier
14806 -- into another construct. Propagate the changes to the template.
14807
14808 else
14809 N2 := Get_Associated_Node (N);
14810
14811 -- The identifier denotes a call to a parameterless function.
14812 -- Mark the node as resolved when the function is external.
14813
14814 if Nkind (N2) = N_Function_Call then
14815 E := Entity (Name (N2));
14816
14817 if Present (E) and then Is_Global (E) then
14818 Set_Etype (N, Etype (N2));
14819 else
14820 Set_Associated_Node (N, Empty);
14821 Set_Etype (N, Empty);
14822 end if;
14823
14824 -- The identifier denotes a named number that was constant
14825 -- folded. Preserve the original name for ASIS and undo the
14826 -- constant folding which will be repeated in the instance.
14827
14828 elsif Nkind_In (N2, N_Integer_Literal, N_Real_Literal)
14829 and then Is_Entity_Name (Original_Node (N2))
14830 then
14831 Set_Associated_Node (N, Original_Node (N2));
14832 Reset_Entity (N);
14833
14834 -- The identifier resolved to a string literal. Propagate this
14835 -- information to the generic template.
14836
14837 elsif Nkind (N2) = N_String_Literal then
14838 Rewrite (N, New_Copy (N2));
14839
14840 -- The identifier is rewritten as a dereference if it is the
14841 -- prefix of an implicit dereference. Preserve the original
14842 -- tree as the analysis of the instance will expand the node
14843 -- again, but preserve the resolved entity if it is global.
14844
14845 elsif Nkind (N2) = N_Explicit_Dereference then
14846 if Is_Entity_Name (Prefix (N2))
14847 and then Present (Entity (Prefix (N2)))
14848 and then Is_Global (Entity (Prefix (N2)))
14849 then
14850 Set_Associated_Node (N, Prefix (N2));
14851
14852 elsif Nkind (Prefix (N2)) = N_Function_Call
14853 and then Present (Entity (Name (Prefix (N2))))
14854 and then Is_Global (Entity (Name (Prefix (N2))))
14855 then
14856 Rewrite (N,
14857 Make_Explicit_Dereference (Loc,
14858 Prefix =>
14859 Make_Function_Call (Loc,
14860 Name =>
14861 New_Occurrence_Of
14862 (Entity (Name (Prefix (N2))), Loc))));
14863
14864 else
14865 Set_Associated_Node (N, Empty);
14866 Set_Etype (N, Empty);
14867 end if;
14868
14869 -- The subtype mark of a nominally unconstrained object is
14870 -- rewritten as a subtype indication using the bounds of the
14871 -- expression. Recover the original subtype mark.
14872
14873 elsif Nkind (N2) = N_Subtype_Indication
14874 and then Is_Entity_Name (Original_Node (N2))
14875 then
14876 Set_Associated_Node (N, Original_Node (N2));
14877 Reset_Entity (N);
14878 end if;
14879 end if;
14880 end Save_References_In_Identifier;
14881
14882 ---------------------------------
14883 -- Save_References_In_Operator --
14884 ---------------------------------
14885
14886 procedure Save_References_In_Operator (N : Node_Id) is
14887 begin
14888 -- The node did not undergo a transformation
14889
14890 if Nkind (N) = Nkind (Get_Associated_Node (N)) then
14891 if Nkind (N) = N_Op_Concat then
14892 Set_Is_Component_Left_Opnd (N,
14893 Is_Component_Left_Opnd (Get_Associated_Node (N)));
14894
14895 Set_Is_Component_Right_Opnd (N,
14896 Is_Component_Right_Opnd (Get_Associated_Node (N)));
14897 end if;
14898
14899 Reset_Entity (N);
14900
14901 -- The analysis of the generic copy transformed the operator into
14902 -- some other construct. Propagate the changes to the template if
14903 -- applicable.
14904
14905 else
14906 N2 := Get_Associated_Node (N);
14907
14908 -- The operator resoved to a function call
14909
14910 if Nkind (N2) = N_Function_Call then
14911
14912 -- Add explicit qualifications in the generic template for
14913 -- all operands of universal type. This aids resolution by
14914 -- preserving the actual type of a literal or an attribute
14915 -- that yields a universal result.
14916
14917 Qualify_Universal_Operands (N, N2);
14918
14919 E := Entity (Name (N2));
14920
14921 if Present (E) and then Is_Global (E) then
14922 Set_Etype (N, Etype (N2));
14923 else
14924 Set_Associated_Node (N, Empty);
14925 Set_Etype (N, Empty);
14926 end if;
14927
14928 -- The operator was folded into a literal
14929
14930 elsif Nkind_In (N2, N_Integer_Literal,
14931 N_Real_Literal,
14932 N_String_Literal)
14933 then
14934 if Present (Original_Node (N2))
14935 and then Nkind (Original_Node (N2)) = Nkind (N)
14936 then
14937 -- Operation was constant-folded. Whenever possible,
14938 -- recover semantic information from unfolded node,
14939 -- for ASIS use.
14940
14941 Set_Associated_Node (N, Original_Node (N2));
14942
14943 if Nkind (N) = N_Op_Concat then
14944 Set_Is_Component_Left_Opnd (N,
14945 Is_Component_Left_Opnd (Get_Associated_Node (N)));
14946 Set_Is_Component_Right_Opnd (N,
14947 Is_Component_Right_Opnd (Get_Associated_Node (N)));
14948 end if;
14949
14950 Reset_Entity (N);
14951
14952 -- Propagate the constant folding back to the template
14953
14954 else
14955 Rewrite (N, New_Copy (N2));
14956 Set_Analyzed (N, False);
14957 end if;
14958
14959 -- The operator was folded into an enumeration literal. Retain
14960 -- the entity to avoid spurious ambiguities if it is overloaded
14961 -- at the point of instantiation or inlining.
14962
14963 elsif Nkind (N2) = N_Identifier
14964 and then Ekind (Entity (N2)) = E_Enumeration_Literal
14965 then
14966 Rewrite (N, New_Copy (N2));
14967 Set_Analyzed (N, False);
14968 end if;
14969 end if;
14970
14971 -- Complete the operands check if node has not been constant
14972 -- folded.
14973
14974 if Nkind (N) in N_Op then
14975 Save_Entity_Descendants (N);
14976 end if;
14977 end Save_References_In_Operator;
14978
14979 -------------------------------
14980 -- Save_References_In_Pragma --
14981 -------------------------------
14982
14983 procedure Save_References_In_Pragma (Prag : Node_Id) is
14984 Context : Node_Id;
14985 Do_Save : Boolean := True;
14986
14987 use Atree.Unchecked_Access;
14988 -- This code section is part of implementing an untyped tree
14989 -- traversal, so it needs direct access to node fields.
14990
14991 begin
14992 -- Do not save global references in pragmas generated from aspects
14993 -- because the pragmas will be regenerated at instantiation time.
14994
14995 if From_Aspect_Specification (Prag) then
14996 Do_Save := False;
14997
14998 -- The capture of global references within contract-related source
14999 -- pragmas associated with generic packages, subprograms or their
15000 -- respective bodies must be delayed due to timing of annotation
15001 -- analysis. Global references are still captured in routine
15002 -- Save_Global_References_In_Contract.
15003
15004 elsif Is_Generic_Contract_Pragma (Prag) and then Prag /= Templ then
15005 if Is_Package_Contract_Annotation (Prag) then
15006 Context := Find_Related_Package_Or_Body (Prag);
15007 else
15008 pragma Assert (Is_Subprogram_Contract_Annotation (Prag));
15009 Context := Find_Related_Declaration_Or_Body (Prag);
15010 end if;
15011
15012 -- The use of Original_Node accounts for the case when the
15013 -- related context is generic template.
15014
15015 if Requires_Delayed_Save (Original_Node (Context)) then
15016 Do_Save := False;
15017 end if;
15018 end if;
15019
15020 -- For all other cases, save all global references within the
15021 -- descendants, but skip the following semantic fields:
15022
15023 -- Field1 - Next_Pragma
15024 -- Field3 - Corresponding_Aspect
15025 -- Field5 - Next_Rep_Item
15026
15027 if Do_Save then
15028 Save_Global_Descendant (Field2 (Prag));
15029 Save_Global_Descendant (Field4 (Prag));
15030 end if;
15031 end Save_References_In_Pragma;
15032
15033 -- Start of processing for Save_References
15034
15035 begin
15036 if N = Empty then
15037 null;
15038
15039 -- Aggregates
15040
15041 elsif Nkind_In (N, N_Aggregate, N_Extension_Aggregate) then
15042 Save_References_In_Aggregate (N);
15043
15044 -- Character literals, operator symbols
15045
15046 elsif Nkind_In (N, N_Character_Literal, N_Operator_Symbol) then
15047 Save_References_In_Char_Lit_Or_Op_Symbol (N);
15048
15049 -- Defining identifiers
15050
15051 elsif Nkind (N) in N_Entity then
15052 null;
15053
15054 -- Identifiers
15055
15056 elsif Nkind (N) = N_Identifier then
15057 Save_References_In_Identifier (N);
15058
15059 -- Operators
15060
15061 elsif Nkind (N) in N_Op then
15062 Save_References_In_Operator (N);
15063
15064 -- Pragmas
15065
15066 elsif Nkind (N) = N_Pragma then
15067 Save_References_In_Pragma (N);
15068
15069 else
15070 Save_References_In_Descendants (N);
15071 end if;
15072
15073 -- Save all global references found within the aspect specifications
15074 -- of the related node.
15075
15076 if Permits_Aspect_Specifications (N) and then Has_Aspects (N) then
15077
15078 -- The capture of global references within aspects associated with
15079 -- generic packages, subprograms or their bodies must be delayed
15080 -- due to timing of annotation analysis. Global references are
15081 -- still captured in routine Save_Global_References_In_Contract.
15082
15083 if Requires_Delayed_Save (N) then
15084 null;
15085
15086 -- Otherwise save all global references within the aspects
15087
15088 else
15089 Save_Global_References_In_Aspects (N);
15090 end if;
15091 end if;
15092 end Save_References;
15093
15094 -- Start of processing for Save_Global_References
15095
15096 begin
15097 Gen_Scope := Current_Scope;
15098
15099 -- If the generic unit is a child unit, references to entities in the
15100 -- parent are treated as local, because they will be resolved anew in
15101 -- the context of the instance of the parent.
15102
15103 while Is_Child_Unit (Gen_Scope)
15104 and then Ekind (Scope (Gen_Scope)) = E_Generic_Package
15105 loop
15106 Gen_Scope := Scope (Gen_Scope);
15107 end loop;
15108
15109 Save_References (Templ);
15110 end Save_Global_References;
15111
15112 ---------------------------------------
15113 -- Save_Global_References_In_Aspects --
15114 ---------------------------------------
15115
15116 procedure Save_Global_References_In_Aspects (N : Node_Id) is
15117 Asp : Node_Id;
15118 Expr : Node_Id;
15119
15120 begin
15121 Asp := First (Aspect_Specifications (N));
15122 while Present (Asp) loop
15123 Expr := Expression (Asp);
15124
15125 if Present (Expr) then
15126 Save_Global_References (Expr);
15127 end if;
15128
15129 Next (Asp);
15130 end loop;
15131 end Save_Global_References_In_Aspects;
15132
15133 ------------------------------------------
15134 -- Set_Copied_Sloc_For_Inherited_Pragma --
15135 ------------------------------------------
15136
15137 procedure Set_Copied_Sloc_For_Inherited_Pragma
15138 (N : Node_Id;
15139 E : Entity_Id)
15140 is
15141 begin
15142 Create_Instantiation_Source (N, E,
15143 Inlined_Body => False,
15144 Inherited_Pragma => True,
15145 Factor => S_Adjustment);
15146 end Set_Copied_Sloc_For_Inherited_Pragma;
15147
15148 --------------------------------------
15149 -- Set_Copied_Sloc_For_Inlined_Body --
15150 --------------------------------------
15151
15152 procedure Set_Copied_Sloc_For_Inlined_Body (N : Node_Id; E : Entity_Id) is
15153 begin
15154 Create_Instantiation_Source (N, E,
15155 Inlined_Body => True,
15156 Inherited_Pragma => False,
15157 Factor => S_Adjustment);
15158 end Set_Copied_Sloc_For_Inlined_Body;
15159
15160 ---------------------
15161 -- Set_Instance_Of --
15162 ---------------------
15163
15164 procedure Set_Instance_Of (A : Entity_Id; B : Entity_Id) is
15165 begin
15166 Generic_Renamings.Table (Generic_Renamings.Last) := (A, B, Assoc_Null);
15167 Generic_Renamings_HTable.Set (Generic_Renamings.Last);
15168 Generic_Renamings.Increment_Last;
15169 end Set_Instance_Of;
15170
15171 --------------------
15172 -- Set_Next_Assoc --
15173 --------------------
15174
15175 procedure Set_Next_Assoc (E : Assoc_Ptr; Next : Assoc_Ptr) is
15176 begin
15177 Generic_Renamings.Table (E).Next_In_HTable := Next;
15178 end Set_Next_Assoc;
15179
15180 -------------------
15181 -- Start_Generic --
15182 -------------------
15183
15184 procedure Start_Generic is
15185 begin
15186 -- ??? More things could be factored out in this routine.
15187 -- Should probably be done at a later stage.
15188
15189 Generic_Flags.Append (Inside_A_Generic);
15190 Inside_A_Generic := True;
15191
15192 Expander_Mode_Save_And_Set (False);
15193 end Start_Generic;
15194
15195 ----------------------
15196 -- Set_Instance_Env --
15197 ----------------------
15198
15199 procedure Set_Instance_Env
15200 (Gen_Unit : Entity_Id;
15201 Act_Unit : Entity_Id)
15202 is
15203 Assertion_Status : constant Boolean := Assertions_Enabled;
15204 Save_SPARK_Mode : constant SPARK_Mode_Type := SPARK_Mode;
15205 Save_SPARK_Mode_Pragma : constant Node_Id := SPARK_Mode_Pragma;
15206
15207 begin
15208 -- Regardless of the current mode, predefined units are analyzed in the
15209 -- most current Ada mode, and earlier version Ada checks do not apply
15210 -- to predefined units. Nothing needs to be done for non-internal units.
15211 -- These are always analyzed in the current mode.
15212
15213 if Is_Internal_File_Name
15214 (Fname => Unit_File_Name (Get_Source_Unit (Gen_Unit)),
15215 Renamings_Included => True)
15216 then
15217 Set_Opt_Config_Switches (True, Current_Sem_Unit = Main_Unit);
15218
15219 -- In Ada2012 we may want to enable assertions in an instance of a
15220 -- predefined unit, in which case we need to preserve the current
15221 -- setting for the Assertions_Enabled flag. This will become more
15222 -- critical when pre/postconditions are added to predefined units,
15223 -- as is already the case for some numeric libraries.
15224
15225 if Ada_Version >= Ada_2012 then
15226 Assertions_Enabled := Assertion_Status;
15227 end if;
15228
15229 -- SPARK_Mode for an instance is the one applicable at the point of
15230 -- instantiation.
15231
15232 SPARK_Mode := Save_SPARK_Mode;
15233 SPARK_Mode_Pragma := Save_SPARK_Mode_Pragma;
15234 end if;
15235
15236 Current_Instantiated_Parent :=
15237 (Gen_Id => Gen_Unit,
15238 Act_Id => Act_Unit,
15239 Next_In_HTable => Assoc_Null);
15240 end Set_Instance_Env;
15241
15242 -----------------
15243 -- Switch_View --
15244 -----------------
15245
15246 procedure Switch_View (T : Entity_Id) is
15247 BT : constant Entity_Id := Base_Type (T);
15248 Priv_Elmt : Elmt_Id := No_Elmt;
15249 Priv_Sub : Entity_Id;
15250
15251 begin
15252 -- T may be private but its base type may have been exchanged through
15253 -- some other occurrence, in which case there is nothing to switch
15254 -- besides T itself. Note that a private dependent subtype of a private
15255 -- type might not have been switched even if the base type has been,
15256 -- because of the last branch of Check_Private_View (see comment there).
15257
15258 if not Is_Private_Type (BT) then
15259 Prepend_Elmt (Full_View (T), Exchanged_Views);
15260 Exchange_Declarations (T);
15261 return;
15262 end if;
15263
15264 Priv_Elmt := First_Elmt (Private_Dependents (BT));
15265
15266 if Present (Full_View (BT)) then
15267 Prepend_Elmt (Full_View (BT), Exchanged_Views);
15268 Exchange_Declarations (BT);
15269 end if;
15270
15271 while Present (Priv_Elmt) loop
15272 Priv_Sub := (Node (Priv_Elmt));
15273
15274 -- We avoid flipping the subtype if the Etype of its full view is
15275 -- private because this would result in a malformed subtype. This
15276 -- occurs when the Etype of the subtype full view is the full view of
15277 -- the base type (and since the base types were just switched, the
15278 -- subtype is pointing to the wrong view). This is currently the case
15279 -- for tagged record types, access types (maybe more?) and needs to
15280 -- be resolved. ???
15281
15282 if Present (Full_View (Priv_Sub))
15283 and then not Is_Private_Type (Etype (Full_View (Priv_Sub)))
15284 then
15285 Prepend_Elmt (Full_View (Priv_Sub), Exchanged_Views);
15286 Exchange_Declarations (Priv_Sub);
15287 end if;
15288
15289 Next_Elmt (Priv_Elmt);
15290 end loop;
15291 end Switch_View;
15292
15293 -----------------
15294 -- True_Parent --
15295 -----------------
15296
15297 function True_Parent (N : Node_Id) return Node_Id is
15298 begin
15299 if Nkind (Parent (N)) = N_Subunit then
15300 return Parent (Corresponding_Stub (Parent (N)));
15301 else
15302 return Parent (N);
15303 end if;
15304 end True_Parent;
15305
15306 -----------------------------
15307 -- Valid_Default_Attribute --
15308 -----------------------------
15309
15310 procedure Valid_Default_Attribute (Nam : Entity_Id; Def : Node_Id) is
15311 Attr_Id : constant Attribute_Id :=
15312 Get_Attribute_Id (Attribute_Name (Def));
15313 T : constant Entity_Id := Entity (Prefix (Def));
15314 Is_Fun : constant Boolean := (Ekind (Nam) = E_Function);
15315 F : Entity_Id;
15316 Num_F : Nat;
15317 OK : Boolean;
15318
15319 begin
15320 if No (T) or else T = Any_Id then
15321 return;
15322 end if;
15323
15324 Num_F := 0;
15325 F := First_Formal (Nam);
15326 while Present (F) loop
15327 Num_F := Num_F + 1;
15328 Next_Formal (F);
15329 end loop;
15330
15331 case Attr_Id is
15332 when Attribute_Adjacent | Attribute_Ceiling | Attribute_Copy_Sign |
15333 Attribute_Floor | Attribute_Fraction | Attribute_Machine |
15334 Attribute_Model | Attribute_Remainder | Attribute_Rounding |
15335 Attribute_Unbiased_Rounding =>
15336 OK := Is_Fun
15337 and then Num_F = 1
15338 and then Is_Floating_Point_Type (T);
15339
15340 when Attribute_Image | Attribute_Pred | Attribute_Succ |
15341 Attribute_Value | Attribute_Wide_Image |
15342 Attribute_Wide_Value =>
15343 OK := (Is_Fun and then Num_F = 1 and then Is_Scalar_Type (T));
15344
15345 when Attribute_Max | Attribute_Min =>
15346 OK := (Is_Fun and then Num_F = 2 and then Is_Scalar_Type (T));
15347
15348 when Attribute_Input =>
15349 OK := (Is_Fun and then Num_F = 1);
15350
15351 when Attribute_Output | Attribute_Read | Attribute_Write =>
15352 OK := (not Is_Fun and then Num_F = 2);
15353
15354 when others =>
15355 OK := False;
15356 end case;
15357
15358 if not OK then
15359 Error_Msg_N
15360 ("attribute reference has wrong profile for subprogram", Def);
15361 end if;
15362 end Valid_Default_Attribute;
15363
15364 end Sem_Ch12;