]> gcc.gnu.org Git - gcc.git/blob - gcc/ada/sem_ch7.adb
[Ada] Spurious visibility error in generic child unit
[gcc.git] / gcc / ada / sem_ch7.adb
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S E M _ C H 7 --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2019, 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 -- This package contains the routines to process package specifications and
27 -- bodies. The most important semantic aspects of package processing are the
28 -- handling of private and full declarations, and the construction of dispatch
29 -- tables for tagged types.
30
31 with Aspects; use Aspects;
32 with Atree; use Atree;
33 with Contracts; use Contracts;
34 with Debug; use Debug;
35 with Einfo; use Einfo;
36 with Elists; use Elists;
37 with Errout; use Errout;
38 with Exp_Disp; use Exp_Disp;
39 with Exp_Dist; use Exp_Dist;
40 with Exp_Dbug; use Exp_Dbug;
41 with Freeze; use Freeze;
42 with Ghost; use Ghost;
43 with Lib; use Lib;
44 with Lib.Xref; use Lib.Xref;
45 with Namet; use Namet;
46 with Nmake; use Nmake;
47 with Nlists; use Nlists;
48 with Opt; use Opt;
49 with Output; use Output;
50 with Restrict; use Restrict;
51 with Rtsfind; use Rtsfind;
52 with Sem; use Sem;
53 with Sem_Aux; use Sem_Aux;
54 with Sem_Cat; use Sem_Cat;
55 with Sem_Ch3; use Sem_Ch3;
56 with Sem_Ch6; use Sem_Ch6;
57 with Sem_Ch8; use Sem_Ch8;
58 with Sem_Ch10; use Sem_Ch10;
59 with Sem_Ch12; use Sem_Ch12;
60 with Sem_Ch13; use Sem_Ch13;
61 with Sem_Disp; use Sem_Disp;
62 with Sem_Eval; use Sem_Eval;
63 with Sem_Prag; use Sem_Prag;
64 with Sem_Util; use Sem_Util;
65 with Sem_Warn; use Sem_Warn;
66 with Snames; use Snames;
67 with Stand; use Stand;
68 with Sinfo; use Sinfo;
69 with Sinput; use Sinput;
70 with Style;
71 with Uintp; use Uintp;
72
73 with GNAT.HTable;
74
75 package body Sem_Ch7 is
76
77 -----------------------------------
78 -- Handling private declarations --
79 -----------------------------------
80
81 -- The principle that each entity has a single defining occurrence clashes
82 -- with the presence of two separate definitions for private types: the
83 -- first is the private type declaration, and the second is the full type
84 -- declaration. It is important that all references to the type point to
85 -- the same defining occurrence, namely the first one. To enforce the two
86 -- separate views of the entity, the corresponding information is swapped
87 -- between the two declarations. Outside of the package, the defining
88 -- occurrence only contains the private declaration information, while in
89 -- the private part and the body of the package the defining occurrence
90 -- contains the full declaration. To simplify the swap, the defining
91 -- occurrence that currently holds the private declaration points to the
92 -- full declaration. During semantic processing the defining occurrence
93 -- also points to a list of private dependents, that is to say access types
94 -- or composite types whose designated types or component types are
95 -- subtypes or derived types of the private type in question. After the
96 -- full declaration has been seen, the private dependents are updated to
97 -- indicate that they have full definitions.
98
99 -----------------------
100 -- Local Subprograms --
101 -----------------------
102
103 procedure Analyze_Package_Body_Helper (N : Node_Id);
104 -- Does all the real work of Analyze_Package_Body
105
106 procedure Check_Anonymous_Access_Types
107 (Spec_Id : Entity_Id;
108 P_Body : Node_Id);
109 -- If the spec of a package has a limited_with_clause, it may declare
110 -- anonymous access types whose designated type is a limited view, such an
111 -- anonymous access return type for a function. This access type cannot be
112 -- elaborated in the spec itself, but it may need an itype reference if it
113 -- is used within a nested scope. In that case the itype reference is
114 -- created at the beginning of the corresponding package body and inserted
115 -- before other body declarations.
116
117 procedure Declare_Inherited_Private_Subprograms (Id : Entity_Id);
118 -- Called upon entering the private part of a public child package and the
119 -- body of a nested package, to potentially declare certain inherited
120 -- subprograms that were inherited by types in the visible part, but whose
121 -- declaration was deferred because the parent operation was private and
122 -- not visible at that point. These subprograms are located by traversing
123 -- the visible part declarations looking for non-private type extensions
124 -- and then examining each of the primitive operations of such types to
125 -- find those that were inherited but declared with a special internal
126 -- name. Each such operation is now declared as an operation with a normal
127 -- name (using the name of the parent operation) and replaces the previous
128 -- implicit operation in the primitive operations list of the type. If the
129 -- inherited private operation has been overridden, then it's replaced by
130 -- the overriding operation.
131
132 procedure Install_Package_Entity (Id : Entity_Id);
133 -- Supporting procedure for Install_{Visible,Private}_Declarations. Places
134 -- one entity on its visibility chain, and recurses on the visible part if
135 -- the entity is an inner package.
136
137 function Is_Private_Base_Type (E : Entity_Id) return Boolean;
138 -- True for a private type that is not a subtype
139
140 function Is_Visible_Dependent (Dep : Entity_Id) return Boolean;
141 -- If the private dependent is a private type whose full view is derived
142 -- from the parent type, its full properties are revealed only if we are in
143 -- the immediate scope of the private dependent. Should this predicate be
144 -- tightened further???
145
146 function Requires_Completion_In_Body
147 (Id : Entity_Id;
148 Pack_Id : Entity_Id;
149 Do_Abstract_States : Boolean := False) return Boolean;
150 -- Subsidiary to routines Unit_Requires_Body and Unit_Requires_Body_Info.
151 -- Determine whether entity Id declared in package spec Pack_Id requires
152 -- completion in a package body. Flag Do_Abstract_Stats should be set when
153 -- abstract states are to be considered in the completion test.
154
155 procedure Unit_Requires_Body_Info (Pack_Id : Entity_Id);
156 -- Outputs info messages showing why package Pack_Id requires a body. The
157 -- caller has checked that the switch requesting this information is set,
158 -- and that the package does indeed require a body.
159
160 --------------------------
161 -- Analyze_Package_Body --
162 --------------------------
163
164 procedure Analyze_Package_Body (N : Node_Id) is
165 Loc : constant Source_Ptr := Sloc (N);
166
167 begin
168 if Debug_Flag_C then
169 Write_Str ("==> package body ");
170 Write_Name (Chars (Defining_Entity (N)));
171 Write_Str (" from ");
172 Write_Location (Loc);
173 Write_Eol;
174 Indent;
175 end if;
176
177 -- The real work is split out into the helper, so it can do "return;"
178 -- without skipping the debug output.
179
180 Analyze_Package_Body_Helper (N);
181
182 if Debug_Flag_C then
183 Outdent;
184 Write_Str ("<== package body ");
185 Write_Name (Chars (Defining_Entity (N)));
186 Write_Str (" from ");
187 Write_Location (Loc);
188 Write_Eol;
189 end if;
190 end Analyze_Package_Body;
191
192 ------------------------------------------------------
193 -- Analyze_Package_Body_Helper Data and Subprograms --
194 ------------------------------------------------------
195
196 Entity_Table_Size : constant := 4093;
197 -- Number of headers in hash table
198
199 subtype Entity_Header_Num is Integer range 0 .. Entity_Table_Size - 1;
200 -- Range of headers in hash table
201
202 function Node_Hash (Id : Entity_Id) return Entity_Header_Num;
203 -- Simple hash function for Entity_Ids
204
205 package Subprogram_Table is new GNAT.Htable.Simple_HTable
206 (Header_Num => Entity_Header_Num,
207 Element => Boolean,
208 No_Element => False,
209 Key => Entity_Id,
210 Hash => Node_Hash,
211 Equal => "=");
212 -- Hash table to record which subprograms are referenced. It is declared
213 -- at library level to avoid elaborating it for every call to Analyze.
214
215 package Traversed_Table is new GNAT.Htable.Simple_HTable
216 (Header_Num => Entity_Header_Num,
217 Element => Boolean,
218 No_Element => False,
219 Key => Node_Id,
220 Hash => Node_Hash,
221 Equal => "=");
222 -- Hash table to record which nodes we have traversed, so we can avoid
223 -- traversing the same nodes repeatedly.
224
225 -----------------
226 -- Node_Hash --
227 -----------------
228
229 function Node_Hash (Id : Entity_Id) return Entity_Header_Num is
230 begin
231 return Entity_Header_Num (Id mod Entity_Table_Size);
232 end Node_Hash;
233
234 ---------------------------------
235 -- Analyze_Package_Body_Helper --
236 ---------------------------------
237
238 -- WARNING: This routine manages Ghost regions. Return statements must be
239 -- replaced by gotos which jump to the end of the routine and restore the
240 -- Ghost mode.
241
242 procedure Analyze_Package_Body_Helper (N : Node_Id) is
243 procedure Hide_Public_Entities (Decls : List_Id);
244 -- Attempt to hide all public entities found in declarative list Decls
245 -- by resetting their Is_Public flag to False depending on whether the
246 -- entities are not referenced by inlined or generic bodies. This kind
247 -- of processing is a conservative approximation and will still leave
248 -- entities externally visible if the package is not simple enough.
249
250 procedure Install_Composite_Operations (P : Entity_Id);
251 -- Composite types declared in the current scope may depend on types
252 -- that were private at the point of declaration, and whose full view
253 -- is now in scope. Indicate that the corresponding operations on the
254 -- composite type are available.
255
256 --------------------------
257 -- Hide_Public_Entities --
258 --------------------------
259
260 procedure Hide_Public_Entities (Decls : List_Id) is
261 function Has_Referencer
262 (Decls : List_Id;
263 In_Nested_Instance : Boolean;
264 Has_Outer_Referencer_Of_Non_Subprograms : Boolean) return Boolean;
265 -- A "referencer" is a construct which may reference a previous
266 -- declaration. Examine all declarations in list Decls in reverse
267 -- and determine whether one such referencer exists. All entities
268 -- in the range Last (Decls) .. Referencer are hidden from external
269 -- visibility.
270
271 function Scan_Subprogram_Ref (N : Node_Id) return Traverse_Result;
272 -- Determine whether a node denotes a reference to a subprogram
273
274 procedure Traverse_And_Scan_Subprogram_Refs is
275 new Traverse_Proc (Scan_Subprogram_Ref);
276 -- Subsidiary to routine Has_Referencer. Determine whether a node
277 -- contains references to a subprogram and record them.
278 -- WARNING: this is a very expensive routine as it performs a full
279 -- tree traversal.
280
281 procedure Scan_Subprogram_Refs (Node : Node_Id);
282 -- If we haven't already traversed Node, then mark it and traverse
283 -- it.
284
285 --------------------
286 -- Has_Referencer --
287 --------------------
288
289 function Has_Referencer
290 (Decls : List_Id;
291 In_Nested_Instance : Boolean;
292 Has_Outer_Referencer_Of_Non_Subprograms : Boolean) return Boolean
293 is
294 Decl : Node_Id;
295 Decl_Id : Entity_Id;
296 Spec : Node_Id;
297
298 Has_Referencer_Of_Non_Subprograms : Boolean :=
299 Has_Outer_Referencer_Of_Non_Subprograms;
300 -- Set if an inlined subprogram body was detected as a referencer.
301 -- In this case, we do not return True immediately but keep hiding
302 -- subprograms from external visibility.
303
304 begin
305 if No (Decls) then
306 return False;
307 end if;
308
309 -- Examine all declarations in reverse order, hiding all entities
310 -- from external visibility until a referencer has been found. The
311 -- algorithm recurses into nested packages.
312
313 Decl := Last (Decls);
314 while Present (Decl) loop
315
316 -- A stub is always considered a referencer
317
318 if Nkind (Decl) in N_Body_Stub then
319 return True;
320
321 -- Package declaration
322
323 elsif Nkind (Decl) = N_Package_Declaration then
324 Spec := Specification (Decl);
325 Decl_Id := Defining_Entity (Spec);
326
327 -- Inspect the declarations of a non-generic package to try
328 -- and hide more entities from external visibility.
329
330 if not Is_Generic_Unit (Decl_Id) then
331 if Has_Referencer (Private_Declarations (Spec),
332 In_Nested_Instance
333 or else
334 Is_Generic_Instance (Decl_Id),
335 Has_Referencer_Of_Non_Subprograms)
336 or else
337 Has_Referencer (Visible_Declarations (Spec),
338 In_Nested_Instance
339 or else
340 Is_Generic_Instance (Decl_Id),
341 Has_Referencer_Of_Non_Subprograms)
342 then
343 return True;
344 end if;
345 end if;
346
347 -- Package body
348
349 elsif Nkind (Decl) = N_Package_Body
350 and then Present (Corresponding_Spec (Decl))
351 then
352 Decl_Id := Corresponding_Spec (Decl);
353
354 -- A generic package body is a referencer. It would seem
355 -- that we only have to consider generics that can be
356 -- exported, i.e. where the corresponding spec is the
357 -- spec of the current package, but because of nested
358 -- instantiations, a fully private generic body may export
359 -- other private body entities. Furthermore, regardless of
360 -- whether there was a previous inlined subprogram, (an
361 -- instantiation of) the generic package may reference any
362 -- entity declared before it.
363
364 if Is_Generic_Unit (Decl_Id) then
365 return True;
366
367 -- Inspect the declarations of a non-generic package body to
368 -- try and hide more entities from external visibility.
369
370 elsif Has_Referencer (Declarations (Decl),
371 In_Nested_Instance
372 or else
373 Is_Generic_Instance (Decl_Id),
374 Has_Referencer_Of_Non_Subprograms)
375 then
376 return True;
377 end if;
378
379 -- Subprogram body
380
381 elsif Nkind (Decl) = N_Subprogram_Body then
382 if Present (Corresponding_Spec (Decl)) then
383 Decl_Id := Corresponding_Spec (Decl);
384
385 -- A generic subprogram body acts as a referencer
386
387 if Is_Generic_Unit (Decl_Id) then
388 return True;
389 end if;
390
391 -- An inlined subprogram body acts as a referencer
392 -- unless we generate C code since inlining is then
393 -- handled by the C compiler.
394
395 -- Note that we test Has_Pragma_Inline here in addition
396 -- to Is_Inlined. We are doing this for a client, since
397 -- we are computing which entities should be public, and
398 -- it is the client who will decide if actual inlining
399 -- should occur, so we need to catch all cases where the
400 -- subprogram may be inlined by the client.
401
402 if not Generate_C_Code
403 and then (Is_Inlined (Decl_Id)
404 or else Has_Pragma_Inline (Decl_Id))
405 then
406 Has_Referencer_Of_Non_Subprograms := True;
407
408 -- Inspect the statements of the subprogram body
409 -- to determine whether the body references other
410 -- subprograms.
411
412 Scan_Subprogram_Refs (Decl);
413 end if;
414
415 -- Otherwise this is a stand alone subprogram body
416
417 else
418 Decl_Id := Defining_Entity (Decl);
419
420 -- An inlined subprogram body acts as a referencer
421 -- unless we generate C code since inlining is then
422 -- handled by the C compiler.
423
424 if not Generate_C_Code
425 and then (Is_Inlined (Decl_Id)
426 or else Has_Pragma_Inline (Decl_Id))
427 then
428 Has_Referencer_Of_Non_Subprograms := True;
429
430 -- Inspect the statements of the subprogram body
431 -- to determine whether the body references other
432 -- subprograms.
433
434 Scan_Subprogram_Refs (Decl);
435
436 -- Otherwise we can reset Is_Public right away
437
438 elsif not Subprogram_Table.Get (Decl_Id) then
439 Set_Is_Public (Decl_Id, False);
440 end if;
441 end if;
442
443 -- Freeze node
444
445 elsif Nkind (Decl) = N_Freeze_Entity then
446 declare
447 Discard : Boolean;
448 pragma Unreferenced (Discard);
449 begin
450 -- Inspect the actions to find references to subprograms.
451 -- We assume that the actions do not contain other kinds
452 -- of references and, therefore, we do not stop the scan
453 -- or set Has_Referencer_Of_Non_Subprograms here. Doing
454 -- it would pessimize common cases for which the actions
455 -- contain the declaration of an init procedure, since
456 -- such a procedure is automatically marked inline.
457
458 Discard :=
459 Has_Referencer (Actions (Decl),
460 In_Nested_Instance,
461 Has_Referencer_Of_Non_Subprograms);
462 end;
463
464 -- Exceptions, objects and renamings do not need to be public
465 -- if they are not followed by a construct which can reference
466 -- and export them. Likewise for subprograms but we work harder
467 -- for them to see whether they are referenced on an individual
468 -- basis by looking into the table of referenced subprograms.
469 -- But we cannot say anything for entities declared in nested
470 -- instances because instantiations are not done yet so the
471 -- bodies are not visible and could contain references to them.
472 elsif Nkind_In (Decl, N_Exception_Declaration,
473 N_Object_Declaration,
474 N_Object_Renaming_Declaration,
475 N_Subprogram_Declaration,
476 N_Subprogram_Renaming_Declaration)
477 then
478 Decl_Id := Defining_Entity (Decl);
479
480 if not In_Nested_Instance
481 and then not Is_Imported (Decl_Id)
482 and then not Is_Exported (Decl_Id)
483 and then No (Interface_Name (Decl_Id))
484 and then
485 ((Nkind (Decl) /= N_Subprogram_Declaration
486 and then not Has_Referencer_Of_Non_Subprograms)
487 or else (Nkind (Decl) = N_Subprogram_Declaration
488 and then not Subprogram_Table.Get (Decl_Id)))
489 then
490 Set_Is_Public (Decl_Id, False);
491 end if;
492
493 -- For a subprogram renaming, if the entity is referenced,
494 -- then so is the renamed subprogram. But there is an issue
495 -- with generic bodies because instantiations are not done
496 -- yet and, therefore, cannot be scanned for referencers.
497 -- That's why we use an approximation and test that we have
498 -- at least one subprogram referenced by an inlined body
499 -- instead of precisely the entity of this renaming.
500
501 if Nkind (Decl) = N_Subprogram_Renaming_Declaration
502 and then Subprogram_Table.Get_First
503 and then Is_Entity_Name (Name (Decl))
504 and then Present (Entity (Name (Decl)))
505 and then Is_Subprogram (Entity (Name (Decl)))
506 then
507 Subprogram_Table.Set (Entity (Name (Decl)), True);
508 end if;
509 end if;
510
511 Prev (Decl);
512 end loop;
513
514 return Has_Referencer_Of_Non_Subprograms;
515 end Has_Referencer;
516
517 -------------------------
518 -- Scan_Subprogram_Ref --
519 -------------------------
520
521 function Scan_Subprogram_Ref (N : Node_Id) return Traverse_Result is
522 begin
523 -- Detect a reference of the form
524 -- Subp_Call
525
526 if Nkind (N) in N_Subprogram_Call
527 and then Is_Entity_Name (Name (N))
528 and then Present (Entity (Name (N)))
529 and then Is_Subprogram (Entity (Name (N)))
530 then
531 Subprogram_Table.Set (Entity (Name (N)), True);
532
533 -- Detect a reference of the form
534 -- Subp'Some_Attribute
535
536 elsif Nkind (N) = N_Attribute_Reference
537 and then Is_Entity_Name (Prefix (N))
538 and then Present (Entity (Prefix (N)))
539 and then Is_Subprogram (Entity (Prefix (N)))
540 then
541 Subprogram_Table.Set (Entity (Prefix (N)), True);
542
543 -- Constants can be substituted by their value in gigi, which may
544 -- contain a reference, so scan the value recursively.
545
546 elsif Is_Entity_Name (N)
547 and then Present (Entity (N))
548 and then Ekind (Entity (N)) = E_Constant
549 then
550 declare
551 Val : constant Node_Id := Constant_Value (Entity (N));
552 begin
553 if Present (Val)
554 and then not Compile_Time_Known_Value (Val)
555 then
556 Scan_Subprogram_Refs (Val);
557 end if;
558 end;
559 end if;
560
561 return OK;
562 end Scan_Subprogram_Ref;
563
564 --------------------------
565 -- Scan_Subprogram_Refs --
566 --------------------------
567
568 procedure Scan_Subprogram_Refs (Node : Node_Id) is
569 begin
570 if not Traversed_Table.Get (Node) then
571 Traversed_Table.Set (Node, True);
572 Traverse_And_Scan_Subprogram_Refs (Node);
573 end if;
574 end Scan_Subprogram_Refs;
575
576 -- Local variables
577
578 Discard : Boolean;
579 pragma Unreferenced (Discard);
580
581 -- Start of processing for Hide_Public_Entities
582
583 begin
584 -- The algorithm examines the top level declarations of a package
585 -- body in reverse looking for a construct that may export entities
586 -- declared prior to it. If such a scenario is encountered, then all
587 -- entities in the range Last (Decls) .. construct are hidden from
588 -- external visibility. Consider:
589
590 -- package Pack is
591 -- generic
592 -- package Gen is
593 -- end Gen;
594 -- end Pack;
595
596 -- package body Pack is
597 -- External_Obj : ...; -- (1)
598
599 -- package body Gen is -- (2)
600 -- ... External_Obj ... -- (3)
601 -- end Gen;
602
603 -- Local_Obj : ...; -- (4)
604 -- end Pack;
605
606 -- In this example Local_Obj (4) must not be externally visible as
607 -- it cannot be exported by anything in Pack. The body of generic
608 -- package Gen (2) on the other hand acts as a "referencer" and may
609 -- export anything declared before it. Since the compiler does not
610 -- perform flow analysis, it is not possible to determine precisely
611 -- which entities will be exported when Gen is instantiated. In the
612 -- example above External_Obj (1) is exported at (3), but this may
613 -- not always be the case. The algorithm takes a conservative stance
614 -- and leaves entity External_Obj public.
615
616 -- This very conservative algorithm is supplemented by a more precise
617 -- processing for inlined bodies. For them, we traverse the syntactic
618 -- tree and record which subprograms are actually referenced from it.
619 -- This makes it possible to compute a much smaller set of externally
620 -- visible subprograms in the absence of generic bodies, which can
621 -- have a significant impact on the inlining decisions made in the
622 -- back end and the removal of out-of-line bodies from the object
623 -- code. We do it only for inlined bodies because they are supposed
624 -- to be reasonably small and tree traversal is very expensive.
625
626 -- Note that even this special processing is not optimal for inlined
627 -- bodies, because we treat all inlined subprograms alike. An optimal
628 -- algorithm would require computing the transitive closure of the
629 -- inlined subprograms that can really be referenced from other units
630 -- in the source code.
631
632 -- We could extend this processing for inlined bodies and record all
633 -- entities, not just subprograms, referenced from them, which would
634 -- make it possible to compute a much smaller set of all externally
635 -- visible entities in the absence of generic bodies. But this would
636 -- mean implementing a more thorough tree traversal of the bodies,
637 -- i.e. not just syntactic, and the gain would very likely be worth
638 -- neither the hassle nor the slowdown of the compiler.
639
640 -- Finally, an important thing to be aware of is that, at this point,
641 -- instantiations are not done yet so we cannot directly see inlined
642 -- bodies coming from them. That's not catastrophic because only the
643 -- actual parameters of the instantiations matter here, and they are
644 -- present in the declarations list of the instantiated packages.
645
646 Traversed_Table.Reset;
647 Subprogram_Table.Reset;
648 Discard := Has_Referencer (Decls, False, False);
649 end Hide_Public_Entities;
650
651 ----------------------------------
652 -- Install_Composite_Operations --
653 ----------------------------------
654
655 procedure Install_Composite_Operations (P : Entity_Id) is
656 Id : Entity_Id;
657
658 begin
659 Id := First_Entity (P);
660 while Present (Id) loop
661 if Is_Type (Id)
662 and then (Is_Limited_Composite (Id)
663 or else Is_Private_Composite (Id))
664 and then No (Private_Component (Id))
665 then
666 Set_Is_Limited_Composite (Id, False);
667 Set_Is_Private_Composite (Id, False);
668 end if;
669
670 Next_Entity (Id);
671 end loop;
672 end Install_Composite_Operations;
673
674 -- Local variables
675
676 Saved_GM : constant Ghost_Mode_Type := Ghost_Mode;
677 Saved_IGR : constant Node_Id := Ignored_Ghost_Region;
678 Saved_EA : constant Boolean := Expander_Active;
679 Saved_ISMP : constant Boolean :=
680 Ignore_SPARK_Mode_Pragmas_In_Instance;
681 -- Save the Ghost and SPARK mode-related data to restore on exit
682
683 Body_Id : Entity_Id;
684 HSS : Node_Id;
685 Last_Spec_Entity : Entity_Id;
686 New_N : Node_Id;
687 Pack_Decl : Node_Id;
688 Spec_Id : Entity_Id;
689
690 -- Start of processing for Analyze_Package_Body_Helper
691
692 begin
693 -- Find corresponding package specification, and establish the current
694 -- scope. The visible defining entity for the package is the defining
695 -- occurrence in the spec. On exit from the package body, all body
696 -- declarations are attached to the defining entity for the body, but
697 -- the later is never used for name resolution. In this fashion there
698 -- is only one visible entity that denotes the package.
699
700 -- Set Body_Id. Note that this will be reset to point to the generic
701 -- copy later on in the generic case.
702
703 Body_Id := Defining_Entity (N);
704
705 -- Body is body of package instantiation. Corresponding spec has already
706 -- been set.
707
708 if Present (Corresponding_Spec (N)) then
709 Spec_Id := Corresponding_Spec (N);
710 Pack_Decl := Unit_Declaration_Node (Spec_Id);
711
712 else
713 Spec_Id := Current_Entity_In_Scope (Defining_Entity (N));
714
715 if Present (Spec_Id)
716 and then Is_Package_Or_Generic_Package (Spec_Id)
717 then
718 Pack_Decl := Unit_Declaration_Node (Spec_Id);
719
720 if Nkind (Pack_Decl) = N_Package_Renaming_Declaration then
721 Error_Msg_N ("cannot supply body for package renaming", N);
722 return;
723
724 elsif Present (Corresponding_Body (Pack_Decl)) then
725 Error_Msg_N ("redefinition of package body", N);
726 return;
727 end if;
728
729 else
730 Error_Msg_N ("missing specification for package body", N);
731 return;
732 end if;
733
734 if Is_Package_Or_Generic_Package (Spec_Id)
735 and then (Scope (Spec_Id) = Standard_Standard
736 or else Is_Child_Unit (Spec_Id))
737 and then not Unit_Requires_Body (Spec_Id)
738 then
739 if Ada_Version = Ada_83 then
740 Error_Msg_N
741 ("optional package body (not allowed in Ada 95)??", N);
742 else
743 Error_Msg_N ("spec of this package does not allow a body", N);
744 end if;
745 end if;
746 end if;
747
748 -- A [generic] package body freezes the contract of the nearest
749 -- enclosing package body and all other contracts encountered in
750 -- the same declarative part up to and excluding the package body:
751
752 -- package body Nearest_Enclosing_Package
753 -- with Refined_State => (State => Constit)
754 -- is
755 -- Constit : ...;
756
757 -- package body Freezes_Enclosing_Package_Body
758 -- with Refined_State => (State_2 => Constit_2)
759 -- is
760 -- Constit_2 : ...;
761
762 -- procedure Proc
763 -- with Refined_Depends => (Input => (Constit, Constit_2)) ...
764
765 -- This ensures that any annotations referenced by the contract of a
766 -- [generic] subprogram body declared within the current package body
767 -- are available. This form of freezing is decoupled from the usual
768 -- Freeze_xxx mechanism because it must also work in the context of
769 -- generics where normal freezing is disabled.
770
771 -- Only bodies coming from source should cause this type of freezing.
772 -- Instantiated generic bodies are excluded because their processing is
773 -- performed in a separate compilation pass which lacks enough semantic
774 -- information with respect to contract analysis. It is safe to suppress
775 -- the freezing of contracts in this case because this action already
776 -- took place at the end of the enclosing declarative part.
777
778 if Comes_From_Source (N)
779 and then not Is_Generic_Instance (Spec_Id)
780 then
781 Freeze_Previous_Contracts (N);
782 end if;
783
784 -- A package body is Ghost when the corresponding spec is Ghost. Set
785 -- the mode now to ensure that any nodes generated during analysis and
786 -- expansion are properly flagged as ignored Ghost.
787
788 Mark_And_Set_Ghost_Body (N, Spec_Id);
789
790 -- Deactivate expansion inside the body of ignored Ghost entities,
791 -- as this code will ultimately be ignored. This avoids requiring the
792 -- presence of run-time units which are not needed. Only do this for
793 -- user entities, as internally generated entities might still need
794 -- to be expanded (e.g. those generated for types).
795
796 if Present (Ignored_Ghost_Region)
797 and then Comes_From_Source (Body_Id)
798 then
799 Expander_Active := False;
800 end if;
801
802 -- If the body completes the initial declaration of a compilation unit
803 -- which is subject to pragma Elaboration_Checks, set the model of the
804 -- pragma because it applies to all parts of the unit.
805
806 Install_Elaboration_Model (Spec_Id);
807
808 Set_Is_Compilation_Unit (Body_Id, Is_Compilation_Unit (Spec_Id));
809 Style.Check_Identifier (Body_Id, Spec_Id);
810
811 if Is_Child_Unit (Spec_Id) then
812 if Nkind (Parent (N)) /= N_Compilation_Unit then
813 Error_Msg_NE
814 ("body of child unit& cannot be an inner package", N, Spec_Id);
815 end if;
816
817 Set_Is_Child_Unit (Body_Id);
818 end if;
819
820 -- Generic package case
821
822 if Ekind (Spec_Id) = E_Generic_Package then
823
824 -- Disable expansion and perform semantic analysis on copy. The
825 -- unannotated body will be used in all instantiations.
826
827 Body_Id := Defining_Entity (N);
828 Set_Ekind (Body_Id, E_Package_Body);
829 Set_Scope (Body_Id, Scope (Spec_Id));
830 Set_Is_Obsolescent (Body_Id, Is_Obsolescent (Spec_Id));
831 Set_Body_Entity (Spec_Id, Body_Id);
832 Set_Spec_Entity (Body_Id, Spec_Id);
833
834 New_N := Copy_Generic_Node (N, Empty, Instantiating => False);
835 Rewrite (N, New_N);
836
837 -- Once the contents of the generic copy and the template are
838 -- swapped, do the same for their respective aspect specifications.
839
840 Exchange_Aspects (N, New_N);
841
842 -- Collect all contract-related source pragmas found within the
843 -- template and attach them to the contract of the package body.
844 -- This contract is used in the capture of global references within
845 -- annotations.
846
847 Create_Generic_Contract (N);
848
849 -- Update Body_Id to point to the copied node for the remainder of
850 -- the processing.
851
852 Body_Id := Defining_Entity (N);
853 Start_Generic;
854 end if;
855
856 -- The Body_Id is that of the copied node in the generic case, the
857 -- current node otherwise. Note that N was rewritten above, so we must
858 -- be sure to get the latest Body_Id value.
859
860 Set_Ekind (Body_Id, E_Package_Body);
861 Set_Body_Entity (Spec_Id, Body_Id);
862 Set_Spec_Entity (Body_Id, Spec_Id);
863
864 -- Defining name for the package body is not a visible entity: Only the
865 -- defining name for the declaration is visible.
866
867 Set_Etype (Body_Id, Standard_Void_Type);
868 Set_Scope (Body_Id, Scope (Spec_Id));
869 Set_Corresponding_Spec (N, Spec_Id);
870 Set_Corresponding_Body (Pack_Decl, Body_Id);
871
872 -- The body entity is not used for semantics or code generation, but
873 -- it is attached to the entity list of the enclosing scope to simplify
874 -- the listing of back-annotations for the types it main contain.
875
876 if Scope (Spec_Id) /= Standard_Standard then
877 Append_Entity (Body_Id, Scope (Spec_Id));
878 end if;
879
880 -- Indicate that we are currently compiling the body of the package
881
882 Set_In_Package_Body (Spec_Id);
883 Set_Has_Completion (Spec_Id);
884 Last_Spec_Entity := Last_Entity (Spec_Id);
885
886 if Has_Aspects (N) then
887 Analyze_Aspect_Specifications (N, Body_Id);
888 end if;
889
890 Push_Scope (Spec_Id);
891
892 -- Set SPARK_Mode only for non-generic package
893
894 if Ekind (Spec_Id) = E_Package then
895 Set_SPARK_Pragma (Body_Id, SPARK_Mode_Pragma);
896 Set_SPARK_Aux_Pragma (Body_Id, SPARK_Mode_Pragma);
897 Set_SPARK_Pragma_Inherited (Body_Id);
898 Set_SPARK_Aux_Pragma_Inherited (Body_Id);
899
900 -- A package body may be instantiated or inlined at a later pass.
901 -- Restore the state of Ignore_SPARK_Mode_Pragmas_In_Instance when
902 -- it applied to the package spec.
903
904 if Ignore_SPARK_Mode_Pragmas (Spec_Id) then
905 Ignore_SPARK_Mode_Pragmas_In_Instance := True;
906 end if;
907 end if;
908
909 Set_Categorization_From_Pragmas (N);
910
911 Install_Visible_Declarations (Spec_Id);
912 Install_Private_Declarations (Spec_Id);
913 Install_Private_With_Clauses (Spec_Id);
914 Install_Composite_Operations (Spec_Id);
915
916 Check_Anonymous_Access_Types (Spec_Id, N);
917
918 if Ekind (Spec_Id) = E_Generic_Package then
919 Set_Use (Generic_Formal_Declarations (Pack_Decl));
920 end if;
921
922 Set_Use (Visible_Declarations (Specification (Pack_Decl)));
923 Set_Use (Private_Declarations (Specification (Pack_Decl)));
924
925 -- This is a nested package, so it may be necessary to declare certain
926 -- inherited subprograms that are not yet visible because the parent
927 -- type's subprograms are now visible.
928
929 if Ekind (Scope (Spec_Id)) = E_Package
930 and then Scope (Spec_Id) /= Standard_Standard
931 then
932 Declare_Inherited_Private_Subprograms (Spec_Id);
933 end if;
934
935 if Present (Declarations (N)) then
936 Analyze_Declarations (Declarations (N));
937 Inspect_Deferred_Constant_Completion (Declarations (N));
938 end if;
939
940 -- Verify that the SPARK_Mode of the body agrees with that of its spec
941
942 if Present (SPARK_Pragma (Body_Id)) then
943 if Present (SPARK_Aux_Pragma (Spec_Id)) then
944 if Get_SPARK_Mode_From_Annotation (SPARK_Aux_Pragma (Spec_Id)) =
945 Off
946 and then
947 Get_SPARK_Mode_From_Annotation (SPARK_Pragma (Body_Id)) = On
948 then
949 Error_Msg_Sloc := Sloc (SPARK_Pragma (Body_Id));
950 Error_Msg_N ("incorrect application of SPARK_Mode#", N);
951 Error_Msg_Sloc := Sloc (SPARK_Aux_Pragma (Spec_Id));
952 Error_Msg_NE
953 ("\value Off was set for SPARK_Mode on & #", N, Spec_Id);
954 end if;
955
956 else
957 Error_Msg_Sloc := Sloc (SPARK_Pragma (Body_Id));
958 Error_Msg_N ("incorrect application of SPARK_Mode#", N);
959 Error_Msg_Sloc := Sloc (Spec_Id);
960 Error_Msg_NE
961 ("\no value was set for SPARK_Mode on & #", N, Spec_Id);
962 end if;
963 end if;
964
965 -- Analyze_Declarations has caused freezing of all types. Now generate
966 -- bodies for RACW primitives and stream attributes, if any.
967
968 if Ekind (Spec_Id) = E_Package and then Has_RACW (Spec_Id) then
969
970 -- Attach subprogram bodies to support RACWs declared in spec
971
972 Append_RACW_Bodies (Declarations (N), Spec_Id);
973 Analyze_List (Declarations (N));
974 end if;
975
976 HSS := Handled_Statement_Sequence (N);
977
978 if Present (HSS) then
979 Process_End_Label (HSS, 't', Spec_Id);
980 Analyze (HSS);
981
982 -- Check that elaboration code in a preelaborable package body is
983 -- empty other than null statements and labels (RM 10.2.1(6)).
984
985 Validate_Null_Statement_Sequence (N);
986 end if;
987
988 Validate_Categorization_Dependency (N, Spec_Id);
989 Check_Completion (Body_Id);
990
991 -- Generate start of body reference. Note that we do this fairly late,
992 -- because the call will use In_Extended_Main_Source_Unit as a check,
993 -- and we want to make sure that Corresponding_Stub links are set
994
995 Generate_Reference (Spec_Id, Body_Id, 'b', Set_Ref => False);
996
997 -- For a generic package, collect global references and mark them on
998 -- the original body so that they are not resolved again at the point
999 -- of instantiation.
1000
1001 if Ekind (Spec_Id) /= E_Package then
1002 Save_Global_References (Original_Node (N));
1003 End_Generic;
1004 end if;
1005
1006 -- The entities of the package body have so far been chained onto the
1007 -- declaration chain for the spec. That's been fine while we were in the
1008 -- body, since we wanted them to be visible, but now that we are leaving
1009 -- the package body, they are no longer visible, so we remove them from
1010 -- the entity chain of the package spec entity, and copy them to the
1011 -- entity chain of the package body entity, where they will never again
1012 -- be visible.
1013
1014 if Present (Last_Spec_Entity) then
1015 Set_First_Entity (Body_Id, Next_Entity (Last_Spec_Entity));
1016 Set_Next_Entity (Last_Spec_Entity, Empty);
1017 Set_Last_Entity (Body_Id, Last_Entity (Spec_Id));
1018 Set_Last_Entity (Spec_Id, Last_Spec_Entity);
1019
1020 else
1021 Set_First_Entity (Body_Id, First_Entity (Spec_Id));
1022 Set_Last_Entity (Body_Id, Last_Entity (Spec_Id));
1023 Set_First_Entity (Spec_Id, Empty);
1024 Set_Last_Entity (Spec_Id, Empty);
1025 end if;
1026
1027 Update_Use_Clause_Chain;
1028 End_Package_Scope (Spec_Id);
1029
1030 -- All entities declared in body are not visible
1031
1032 declare
1033 E : Entity_Id;
1034
1035 begin
1036 E := First_Entity (Body_Id);
1037 while Present (E) loop
1038 Set_Is_Immediately_Visible (E, False);
1039 Set_Is_Potentially_Use_Visible (E, False);
1040 Set_Is_Hidden (E);
1041
1042 -- Child units may appear on the entity list (e.g. if they appear
1043 -- in the context of a subunit) but they are not body entities.
1044
1045 if not Is_Child_Unit (E) then
1046 Set_Is_Package_Body_Entity (E);
1047 end if;
1048
1049 Next_Entity (E);
1050 end loop;
1051 end;
1052
1053 Check_References (Body_Id);
1054
1055 -- For a generic unit, check that the formal parameters are referenced,
1056 -- and that local variables are used, as for regular packages.
1057
1058 if Ekind (Spec_Id) = E_Generic_Package then
1059 Check_References (Spec_Id);
1060 end if;
1061
1062 -- At this point all entities of the package body are externally visible
1063 -- to the linker as their Is_Public flag is set to True. This proactive
1064 -- approach is necessary because an inlined or a generic body for which
1065 -- code is generated in other units may need to see these entities. Cut
1066 -- down the number of global symbols that do not need public visibility
1067 -- as this has two beneficial effects:
1068 -- (1) It makes the compilation process more efficient.
1069 -- (2) It gives the code generator more leeway to optimize within each
1070 -- unit, especially subprograms.
1071
1072 -- This is done only for top-level library packages or child units as
1073 -- the algorithm does a top-down traversal of the package body.
1074
1075 if (Scope (Spec_Id) = Standard_Standard or else Is_Child_Unit (Spec_Id))
1076 and then not Is_Generic_Unit (Spec_Id)
1077 then
1078 Hide_Public_Entities (Declarations (N));
1079 end if;
1080
1081 -- If expander is not active, then here is where we turn off the
1082 -- In_Package_Body flag, otherwise it is turned off at the end of the
1083 -- corresponding expansion routine. If this is an instance body, we need
1084 -- to qualify names of local entities, because the body may have been
1085 -- compiled as a preliminary to another instantiation.
1086
1087 if not Expander_Active then
1088 Set_In_Package_Body (Spec_Id, False);
1089
1090 if Is_Generic_Instance (Spec_Id)
1091 and then Operating_Mode = Generate_Code
1092 then
1093 Qualify_Entity_Names (N);
1094 end if;
1095 end if;
1096
1097 if Present (Ignored_Ghost_Region) then
1098 Expander_Active := Saved_EA;
1099 end if;
1100
1101 Ignore_SPARK_Mode_Pragmas_In_Instance := Saved_ISMP;
1102 Restore_Ghost_Region (Saved_GM, Saved_IGR);
1103 end Analyze_Package_Body_Helper;
1104
1105 ---------------------------------
1106 -- Analyze_Package_Declaration --
1107 ---------------------------------
1108
1109 procedure Analyze_Package_Declaration (N : Node_Id) is
1110 Id : constant Node_Id := Defining_Entity (N);
1111
1112 Is_Comp_Unit : constant Boolean :=
1113 Nkind (Parent (N)) = N_Compilation_Unit;
1114
1115 Body_Required : Boolean;
1116 -- True when this package declaration requires a corresponding body
1117
1118 begin
1119 if Debug_Flag_C then
1120 Write_Str ("==> package spec ");
1121 Write_Name (Chars (Id));
1122 Write_Str (" from ");
1123 Write_Location (Sloc (N));
1124 Write_Eol;
1125 Indent;
1126 end if;
1127
1128 Generate_Definition (Id);
1129 Enter_Name (Id);
1130 Set_Ekind (Id, E_Package);
1131 Set_Etype (Id, Standard_Void_Type);
1132
1133 -- Set SPARK_Mode from context
1134
1135 Set_SPARK_Pragma (Id, SPARK_Mode_Pragma);
1136 Set_SPARK_Aux_Pragma (Id, SPARK_Mode_Pragma);
1137 Set_SPARK_Pragma_Inherited (Id);
1138 Set_SPARK_Aux_Pragma_Inherited (Id);
1139
1140 -- Save the state of flag Ignore_SPARK_Mode_Pragmas_In_Instance in case
1141 -- the body of this package is instantiated or inlined later and out of
1142 -- context. The body uses this attribute to restore the value of the
1143 -- global flag.
1144
1145 if Ignore_SPARK_Mode_Pragmas_In_Instance then
1146 Set_Ignore_SPARK_Mode_Pragmas (Id);
1147 end if;
1148
1149 -- Analyze aspect specifications immediately, since we need to recognize
1150 -- things like Pure early enough to diagnose violations during analysis.
1151
1152 if Has_Aspects (N) then
1153 Analyze_Aspect_Specifications (N, Id);
1154 end if;
1155
1156 -- Ada 2005 (AI-217): Check if the package has been illegally named in
1157 -- a limited-with clause of its own context. In this case the error has
1158 -- been previously notified by Analyze_Context.
1159
1160 -- limited with Pkg; -- ERROR
1161 -- package Pkg is ...
1162
1163 if From_Limited_With (Id) then
1164 return;
1165 end if;
1166
1167 Push_Scope (Id);
1168
1169 Set_Is_Pure (Id, Is_Pure (Enclosing_Lib_Unit_Entity));
1170 Set_Categorization_From_Pragmas (N);
1171
1172 Analyze (Specification (N));
1173 Validate_Categorization_Dependency (N, Id);
1174
1175 -- Determine whether the package requires a body. Abstract states are
1176 -- intentionally ignored because they do require refinement which can
1177 -- only come in a body, but at the same time they do not force the need
1178 -- for a body on their own (SPARK RM 7.1.4(4) and 7.2.2(3)).
1179
1180 Body_Required := Unit_Requires_Body (Id);
1181
1182 if not Body_Required then
1183
1184 -- If the package spec does not require an explicit body, then there
1185 -- are not entities requiring completion in the language sense. Call
1186 -- Check_Completion now to ensure that nested package declarations
1187 -- that require an implicit body get one. (In the case where a body
1188 -- is required, Check_Completion is called at the end of the body's
1189 -- declarative part.)
1190
1191 Check_Completion;
1192
1193 -- If the package spec does not require an explicit body, then all
1194 -- abstract states declared in nested packages cannot possibly get
1195 -- a proper refinement (SPARK RM 7.2.2(3)). This check is performed
1196 -- only when the compilation unit is the main unit to allow for
1197 -- modular SPARK analysis where packages do not necessarily have
1198 -- bodies.
1199
1200 if Is_Comp_Unit then
1201 Check_State_Refinements
1202 (Context => N,
1203 Is_Main_Unit => Parent (N) = Cunit (Main_Unit));
1204 end if;
1205 end if;
1206
1207 -- Set Body_Required indication on the compilation unit node
1208
1209 if Is_Comp_Unit then
1210 Set_Body_Required (Parent (N), Body_Required);
1211
1212 if Legacy_Elaboration_Checks and not Body_Required then
1213 Set_Suppress_Elaboration_Warnings (Id);
1214 end if;
1215 end if;
1216
1217 End_Package_Scope (Id);
1218
1219 -- For the declaration of a library unit that is a remote types package,
1220 -- check legality rules regarding availability of stream attributes for
1221 -- types that contain non-remote access values. This subprogram performs
1222 -- visibility tests that rely on the fact that we have exited the scope
1223 -- of Id.
1224
1225 if Is_Comp_Unit then
1226 Validate_RT_RAT_Component (N);
1227 end if;
1228
1229 if Debug_Flag_C then
1230 Outdent;
1231 Write_Str ("<== package spec ");
1232 Write_Name (Chars (Id));
1233 Write_Str (" from ");
1234 Write_Location (Sloc (N));
1235 Write_Eol;
1236 end if;
1237 end Analyze_Package_Declaration;
1238
1239 -----------------------------------
1240 -- Analyze_Package_Specification --
1241 -----------------------------------
1242
1243 -- Note that this code is shared for the analysis of generic package specs
1244 -- (see Sem_Ch12.Analyze_Generic_Package_Declaration for details).
1245
1246 procedure Analyze_Package_Specification (N : Node_Id) is
1247 Id : constant Entity_Id := Defining_Entity (N);
1248 Orig_Decl : constant Node_Id := Original_Node (Parent (N));
1249 Vis_Decls : constant List_Id := Visible_Declarations (N);
1250 Priv_Decls : constant List_Id := Private_Declarations (N);
1251 E : Entity_Id;
1252 L : Entity_Id;
1253 Public_Child : Boolean;
1254
1255 Private_With_Clauses_Installed : Boolean := False;
1256 -- In Ada 2005, private with_clauses are visible in the private part
1257 -- of a nested package, even if it appears in the public part of the
1258 -- enclosing package. This requires a separate step to install these
1259 -- private_with_clauses, and remove them at the end of the nested
1260 -- package.
1261
1262 procedure Check_One_Tagged_Type_Or_Extension_At_Most;
1263 -- Issue an error in SPARK mode if a package specification contains
1264 -- more than one tagged type or type extension.
1265
1266 procedure Clear_Constants (Id : Entity_Id; FE : Entity_Id);
1267 -- Clears constant indications (Never_Set_In_Source, Constant_Value, and
1268 -- Is_True_Constant) on all variables that are entities of Id, and on
1269 -- the chain whose first element is FE. A recursive call is made for all
1270 -- packages and generic packages.
1271
1272 procedure Generate_Parent_References;
1273 -- For a child unit, generate references to parent units, for
1274 -- GPS navigation purposes.
1275
1276 function Is_Public_Child (Child, Unit : Entity_Id) return Boolean;
1277 -- Child and Unit are entities of compilation units. True if Child
1278 -- is a public child of Parent as defined in 10.1.1
1279
1280 procedure Inspect_Unchecked_Union_Completion (Decls : List_Id);
1281 -- Reject completion of an incomplete or private type declarations
1282 -- having a known discriminant part by an unchecked union.
1283
1284 procedure Install_Parent_Private_Declarations (Inst_Id : Entity_Id);
1285 -- Given the package entity of a generic package instantiation or
1286 -- formal package whose corresponding generic is a child unit, installs
1287 -- the private declarations of each of the child unit's parents.
1288 -- This has to be done at the point of entering the instance package's
1289 -- private part rather than being done in Sem_Ch12.Install_Parent
1290 -- (which is where the parents' visible declarations are installed).
1291
1292 ------------------------------------------------
1293 -- Check_One_Tagged_Type_Or_Extension_At_Most --
1294 ------------------------------------------------
1295
1296 procedure Check_One_Tagged_Type_Or_Extension_At_Most is
1297 Previous : Node_Id;
1298
1299 procedure Check_Decls (Decls : List_Id);
1300 -- Check that either Previous is Empty and Decls does not contain
1301 -- more than one tagged type or type extension, or Previous is
1302 -- already set and Decls contains no tagged type or type extension.
1303
1304 -----------------
1305 -- Check_Decls --
1306 -----------------
1307
1308 procedure Check_Decls (Decls : List_Id) is
1309 Decl : Node_Id;
1310
1311 begin
1312 Decl := First (Decls);
1313 while Present (Decl) loop
1314 if Nkind (Decl) = N_Full_Type_Declaration
1315 and then Is_Tagged_Type (Defining_Identifier (Decl))
1316 then
1317 if No (Previous) then
1318 Previous := Decl;
1319
1320 else
1321 Error_Msg_Sloc := Sloc (Previous);
1322 Check_SPARK_05_Restriction
1323 ("at most one tagged type or type extension allowed",
1324 "\\ previous declaration#",
1325 Decl);
1326 end if;
1327 end if;
1328
1329 Next (Decl);
1330 end loop;
1331 end Check_Decls;
1332
1333 -- Start of processing for Check_One_Tagged_Type_Or_Extension_At_Most
1334
1335 begin
1336 Previous := Empty;
1337 Check_Decls (Vis_Decls);
1338
1339 if Present (Priv_Decls) then
1340 Check_Decls (Priv_Decls);
1341 end if;
1342 end Check_One_Tagged_Type_Or_Extension_At_Most;
1343
1344 ---------------------
1345 -- Clear_Constants --
1346 ---------------------
1347
1348 procedure Clear_Constants (Id : Entity_Id; FE : Entity_Id) is
1349 E : Entity_Id;
1350
1351 begin
1352 -- Ignore package renamings, not interesting and they can cause self
1353 -- referential loops in the code below.
1354
1355 if Nkind (Parent (Id)) = N_Package_Renaming_Declaration then
1356 return;
1357 end if;
1358
1359 -- Note: in the loop below, the check for Next_Entity pointing back
1360 -- to the package entity may seem odd, but it is needed, because a
1361 -- package can contain a renaming declaration to itself, and such
1362 -- renamings are generated automatically within package instances.
1363
1364 E := FE;
1365 while Present (E) and then E /= Id loop
1366 if Is_Assignable (E) then
1367 Set_Never_Set_In_Source (E, False);
1368 Set_Is_True_Constant (E, False);
1369 Set_Current_Value (E, Empty);
1370 Set_Is_Known_Null (E, False);
1371 Set_Last_Assignment (E, Empty);
1372
1373 if not Can_Never_Be_Null (E) then
1374 Set_Is_Known_Non_Null (E, False);
1375 end if;
1376
1377 elsif Is_Package_Or_Generic_Package (E) then
1378 Clear_Constants (E, First_Entity (E));
1379 Clear_Constants (E, First_Private_Entity (E));
1380 end if;
1381
1382 Next_Entity (E);
1383 end loop;
1384 end Clear_Constants;
1385
1386 --------------------------------
1387 -- Generate_Parent_References --
1388 --------------------------------
1389
1390 procedure Generate_Parent_References is
1391 Decl : constant Node_Id := Parent (N);
1392
1393 begin
1394 if Id = Cunit_Entity (Main_Unit)
1395 or else Parent (Decl) = Library_Unit (Cunit (Main_Unit))
1396 then
1397 Generate_Reference (Id, Scope (Id), 'k', False);
1398
1399 elsif not Nkind_In (Unit (Cunit (Main_Unit)), N_Subprogram_Body,
1400 N_Subunit)
1401 then
1402 -- If current unit is an ancestor of main unit, generate a
1403 -- reference to its own parent.
1404
1405 declare
1406 U : Node_Id;
1407 Main_Spec : Node_Id := Unit (Cunit (Main_Unit));
1408
1409 begin
1410 if Nkind (Main_Spec) = N_Package_Body then
1411 Main_Spec := Unit (Library_Unit (Cunit (Main_Unit)));
1412 end if;
1413
1414 U := Parent_Spec (Main_Spec);
1415 while Present (U) loop
1416 if U = Parent (Decl) then
1417 Generate_Reference (Id, Scope (Id), 'k', False);
1418 exit;
1419
1420 elsif Nkind (Unit (U)) = N_Package_Body then
1421 exit;
1422
1423 else
1424 U := Parent_Spec (Unit (U));
1425 end if;
1426 end loop;
1427 end;
1428 end if;
1429 end Generate_Parent_References;
1430
1431 ---------------------
1432 -- Is_Public_Child --
1433 ---------------------
1434
1435 function Is_Public_Child (Child, Unit : Entity_Id) return Boolean is
1436 begin
1437 if not Is_Private_Descendant (Child) then
1438 return True;
1439 else
1440 if Child = Unit then
1441 return not Private_Present (
1442 Parent (Unit_Declaration_Node (Child)));
1443 else
1444 return Is_Public_Child (Scope (Child), Unit);
1445 end if;
1446 end if;
1447 end Is_Public_Child;
1448
1449 ----------------------------------------
1450 -- Inspect_Unchecked_Union_Completion --
1451 ----------------------------------------
1452
1453 procedure Inspect_Unchecked_Union_Completion (Decls : List_Id) is
1454 Decl : Node_Id;
1455
1456 begin
1457 Decl := First (Decls);
1458 while Present (Decl) loop
1459
1460 -- We are looking at an incomplete or private type declaration
1461 -- with a known_discriminant_part whose full view is an
1462 -- Unchecked_Union. The seemingly useless check with Is_Type
1463 -- prevents cascaded errors when routines defined only for type
1464 -- entities are called with non-type entities.
1465
1466 if Nkind_In (Decl, N_Incomplete_Type_Declaration,
1467 N_Private_Type_Declaration)
1468 and then Is_Type (Defining_Identifier (Decl))
1469 and then Has_Discriminants (Defining_Identifier (Decl))
1470 and then Present (Full_View (Defining_Identifier (Decl)))
1471 and then
1472 Is_Unchecked_Union (Full_View (Defining_Identifier (Decl)))
1473 then
1474 Error_Msg_N
1475 ("completion of discriminated partial view "
1476 & "cannot be an unchecked union",
1477 Full_View (Defining_Identifier (Decl)));
1478 end if;
1479
1480 Next (Decl);
1481 end loop;
1482 end Inspect_Unchecked_Union_Completion;
1483
1484 -----------------------------------------
1485 -- Install_Parent_Private_Declarations --
1486 -----------------------------------------
1487
1488 procedure Install_Parent_Private_Declarations (Inst_Id : Entity_Id) is
1489 Inst_Par : Entity_Id;
1490 Gen_Par : Entity_Id;
1491 Inst_Node : Node_Id;
1492
1493 begin
1494 Inst_Par := Inst_Id;
1495
1496 Gen_Par :=
1497 Generic_Parent (Specification (Unit_Declaration_Node (Inst_Par)));
1498 while Present (Gen_Par) and then Is_Child_Unit (Gen_Par) loop
1499 Inst_Node := Get_Unit_Instantiation_Node (Inst_Par);
1500
1501 if Nkind_In (Inst_Node, N_Package_Instantiation,
1502 N_Formal_Package_Declaration)
1503 and then Nkind (Name (Inst_Node)) = N_Expanded_Name
1504 then
1505 Inst_Par := Entity (Prefix (Name (Inst_Node)));
1506
1507 if Present (Renamed_Entity (Inst_Par)) then
1508 Inst_Par := Renamed_Entity (Inst_Par);
1509 end if;
1510
1511 -- The instance may appear in a sibling generic unit, in
1512 -- which case the prefix must include the common (generic)
1513 -- ancestor, which is treated as a current instance.
1514
1515 if Inside_A_Generic
1516 and then Ekind (Inst_Par) = E_Generic_Package
1517 then
1518 Gen_Par := Inst_Par;
1519 pragma Assert (In_Open_Scopes (Gen_Par));
1520
1521 else
1522 Gen_Par :=
1523 Generic_Parent
1524 (Specification (Unit_Declaration_Node (Inst_Par)));
1525 end if;
1526
1527 -- Install the private declarations and private use clauses
1528 -- of a parent instance of the child instance, unless the
1529 -- parent instance private declarations have already been
1530 -- installed earlier in Analyze_Package_Specification, which
1531 -- happens when a generic child is instantiated, and the
1532 -- instance is a child of the parent instance.
1533
1534 -- Installing the use clauses of the parent instance twice
1535 -- is both unnecessary and wrong, because it would cause the
1536 -- clauses to be chained to themselves in the use clauses
1537 -- list of the scope stack entry. That in turn would cause
1538 -- an endless loop from End_Use_Clauses upon scope exit.
1539
1540 -- The parent is now fully visible. It may be a hidden open
1541 -- scope if we are currently compiling some child instance
1542 -- declared within it, but while the current instance is being
1543 -- compiled the parent is immediately visible. In particular
1544 -- its entities must remain visible if a stack save/restore
1545 -- takes place through a call to Rtsfind.
1546
1547 if Present (Gen_Par) then
1548 if not In_Private_Part (Inst_Par) then
1549 Install_Private_Declarations (Inst_Par);
1550 Set_Use (Private_Declarations
1551 (Specification
1552 (Unit_Declaration_Node (Inst_Par))));
1553 Set_Is_Hidden_Open_Scope (Inst_Par, False);
1554 end if;
1555
1556 -- If we've reached the end of the generic instance parents,
1557 -- then finish off by looping through the nongeneric parents
1558 -- and installing their private declarations.
1559
1560 -- If one of the non-generic parents is itself on the scope
1561 -- stack, do not install its private declarations: they are
1562 -- installed in due time when the private part of that parent
1563 -- is analyzed.
1564
1565 else
1566 while Present (Inst_Par)
1567 and then Inst_Par /= Standard_Standard
1568 and then (not In_Open_Scopes (Inst_Par)
1569 or else not In_Private_Part (Inst_Par))
1570 loop
1571 if Nkind (Inst_Node) = N_Formal_Package_Declaration
1572 or else
1573 not Is_Ancestor_Package
1574 (Inst_Par, Cunit_Entity (Current_Sem_Unit))
1575 then
1576 Install_Private_Declarations (Inst_Par);
1577 Set_Use
1578 (Private_Declarations
1579 (Specification
1580 (Unit_Declaration_Node (Inst_Par))));
1581 Inst_Par := Scope (Inst_Par);
1582 else
1583 exit;
1584 end if;
1585 end loop;
1586
1587 exit;
1588 end if;
1589
1590 else
1591 exit;
1592 end if;
1593 end loop;
1594 end Install_Parent_Private_Declarations;
1595
1596 -- Start of processing for Analyze_Package_Specification
1597
1598 begin
1599 if Present (Vis_Decls) then
1600 Analyze_Declarations (Vis_Decls);
1601 end if;
1602
1603 -- Inspect the entities defined in the package and ensure that all
1604 -- incomplete types have received full declarations. Build default
1605 -- initial condition and invariant procedures for all qualifying types.
1606
1607 E := First_Entity (Id);
1608 while Present (E) loop
1609
1610 -- Check on incomplete types
1611
1612 -- AI05-0213: A formal incomplete type has no completion, and neither
1613 -- does the corresponding subtype in an instance.
1614
1615 if Is_Incomplete_Type (E)
1616 and then No (Full_View (E))
1617 and then not Is_Generic_Type (E)
1618 and then not From_Limited_With (E)
1619 and then not Is_Generic_Actual_Type (E)
1620 then
1621 Error_Msg_N ("no declaration in visible part for incomplete}", E);
1622 end if;
1623
1624 Next_Entity (E);
1625 end loop;
1626
1627 if Is_Remote_Call_Interface (Id)
1628 and then Nkind (Parent (Parent (N))) = N_Compilation_Unit
1629 then
1630 Validate_RCI_Declarations (Id);
1631 end if;
1632
1633 -- Save global references in the visible declarations, before installing
1634 -- private declarations of parent unit if there is one, because the
1635 -- privacy status of types defined in the parent will change. This is
1636 -- only relevant for generic child units, but is done in all cases for
1637 -- uniformity.
1638
1639 if Ekind (Id) = E_Generic_Package
1640 and then Nkind (Orig_Decl) = N_Generic_Package_Declaration
1641 then
1642 declare
1643 Orig_Spec : constant Node_Id := Specification (Orig_Decl);
1644 Save_Priv : constant List_Id := Private_Declarations (Orig_Spec);
1645
1646 begin
1647 -- Insert the freezing nodes after the visible declarations to
1648 -- ensure that we analyze its aspects; needed to ensure that
1649 -- global entities referenced in the aspects are properly handled.
1650
1651 if Ada_Version >= Ada_2012
1652 and then Is_Non_Empty_List (Vis_Decls)
1653 and then Is_Empty_List (Priv_Decls)
1654 then
1655 Insert_List_After_And_Analyze
1656 (Last (Vis_Decls), Freeze_Entity (Id, Last (Vis_Decls)));
1657 end if;
1658
1659 Set_Private_Declarations (Orig_Spec, Empty_List);
1660 Save_Global_References (Orig_Decl);
1661 Set_Private_Declarations (Orig_Spec, Save_Priv);
1662 end;
1663 end if;
1664
1665 -- If package is a public child unit, then make the private declarations
1666 -- of the parent visible.
1667
1668 Public_Child := False;
1669
1670 declare
1671 Par : Entity_Id;
1672 Pack_Decl : Node_Id;
1673 Par_Spec : Node_Id;
1674
1675 begin
1676 Par := Id;
1677 Par_Spec := Parent_Spec (Parent (N));
1678
1679 -- If the package is formal package of an enclosing generic, it is
1680 -- transformed into a local generic declaration, and compiled to make
1681 -- its spec available. We need to retrieve the original generic to
1682 -- determine whether it is a child unit, and install its parents.
1683
1684 if No (Par_Spec)
1685 and then
1686 Nkind (Original_Node (Parent (N))) = N_Formal_Package_Declaration
1687 then
1688 Par := Entity (Name (Original_Node (Parent (N))));
1689 Par_Spec := Parent_Spec (Unit_Declaration_Node (Par));
1690 end if;
1691
1692 if Present (Par_Spec) then
1693 Generate_Parent_References;
1694
1695 while Scope (Par) /= Standard_Standard
1696 and then Is_Public_Child (Id, Par)
1697 and then In_Open_Scopes (Par)
1698 loop
1699 Public_Child := True;
1700 Par := Scope (Par);
1701 Install_Private_Declarations (Par);
1702 Install_Private_With_Clauses (Par);
1703 Pack_Decl := Unit_Declaration_Node (Par);
1704 Set_Use (Private_Declarations (Specification (Pack_Decl)));
1705 end loop;
1706 end if;
1707 end;
1708
1709 if Is_Compilation_Unit (Id) then
1710 Install_Private_With_Clauses (Id);
1711 else
1712 -- The current compilation unit may include private with_clauses,
1713 -- which are visible in the private part of the current nested
1714 -- package, and have to be installed now. This is not done for
1715 -- nested instantiations, where the private with_clauses of the
1716 -- enclosing unit have no effect once the instantiation info is
1717 -- established and we start analyzing the package declaration.
1718
1719 declare
1720 Comp_Unit : constant Entity_Id := Cunit_Entity (Current_Sem_Unit);
1721 begin
1722 if Is_Package_Or_Generic_Package (Comp_Unit)
1723 and then not In_Private_Part (Comp_Unit)
1724 and then not In_Instance
1725 then
1726 Install_Private_With_Clauses (Comp_Unit);
1727 Private_With_Clauses_Installed := True;
1728 end if;
1729 end;
1730 end if;
1731
1732 -- If this is a package associated with a generic instance or formal
1733 -- package, then the private declarations of each of the generic's
1734 -- parents must be installed at this point.
1735
1736 if Is_Generic_Instance (Id) then
1737 Install_Parent_Private_Declarations (Id);
1738 end if;
1739
1740 -- Analyze private part if present. The flag In_Private_Part is reset
1741 -- in End_Package_Scope.
1742
1743 L := Last_Entity (Id);
1744
1745 if Present (Priv_Decls) then
1746 Set_In_Private_Part (Id);
1747
1748 -- Upon entering a public child's private part, it may be necessary
1749 -- to declare subprograms that were derived in the package's visible
1750 -- part but not yet made visible.
1751
1752 if Public_Child then
1753 Declare_Inherited_Private_Subprograms (Id);
1754 end if;
1755
1756 Analyze_Declarations (Priv_Decls);
1757
1758 -- Check the private declarations for incomplete deferred constants
1759
1760 Inspect_Deferred_Constant_Completion (Priv_Decls);
1761
1762 -- The first private entity is the immediate follower of the last
1763 -- visible entity, if there was one.
1764
1765 if Present (L) then
1766 Set_First_Private_Entity (Id, Next_Entity (L));
1767 else
1768 Set_First_Private_Entity (Id, First_Entity (Id));
1769 end if;
1770
1771 -- There may be inherited private subprograms that need to be declared,
1772 -- even in the absence of an explicit private part. If there are any
1773 -- public declarations in the package and the package is a public child
1774 -- unit, then an implicit private part is assumed.
1775
1776 elsif Present (L) and then Public_Child then
1777 Set_In_Private_Part (Id);
1778 Declare_Inherited_Private_Subprograms (Id);
1779 Set_First_Private_Entity (Id, Next_Entity (L));
1780 end if;
1781
1782 E := First_Entity (Id);
1783 while Present (E) loop
1784
1785 -- Check rule of 3.6(11), which in general requires waiting till all
1786 -- full types have been seen.
1787
1788 if Ekind (E) = E_Record_Type or else Ekind (E) = E_Array_Type then
1789 Check_Aliased_Component_Types (E);
1790 end if;
1791
1792 -- Check preelaborable initialization for full type completing a
1793 -- private type for which pragma Preelaborable_Initialization given.
1794
1795 if Is_Type (E)
1796 and then Must_Have_Preelab_Init (E)
1797 and then not Has_Preelaborable_Initialization (E)
1798 then
1799 Error_Msg_N
1800 ("full view of & does not have preelaborable initialization", E);
1801 end if;
1802
1803 Next_Entity (E);
1804 end loop;
1805
1806 -- Ada 2005 (AI-216): The completion of an incomplete or private type
1807 -- declaration having a known_discriminant_part shall not be an
1808 -- unchecked union type.
1809
1810 if Present (Vis_Decls) then
1811 Inspect_Unchecked_Union_Completion (Vis_Decls);
1812 end if;
1813
1814 if Present (Priv_Decls) then
1815 Inspect_Unchecked_Union_Completion (Priv_Decls);
1816 end if;
1817
1818 if Ekind (Id) = E_Generic_Package
1819 and then Nkind (Orig_Decl) = N_Generic_Package_Declaration
1820 and then Present (Priv_Decls)
1821 then
1822 -- Save global references in private declarations, ignoring the
1823 -- visible declarations that were processed earlier.
1824
1825 declare
1826 Orig_Spec : constant Node_Id := Specification (Orig_Decl);
1827 Save_Vis : constant List_Id := Visible_Declarations (Orig_Spec);
1828 Save_Form : constant List_Id :=
1829 Generic_Formal_Declarations (Orig_Decl);
1830
1831 begin
1832 -- Insert the freezing nodes after the private declarations to
1833 -- ensure that we analyze its aspects; needed to ensure that
1834 -- global entities referenced in the aspects are properly handled.
1835
1836 if Ada_Version >= Ada_2012
1837 and then Is_Non_Empty_List (Priv_Decls)
1838 then
1839 Insert_List_After_And_Analyze
1840 (Last (Priv_Decls), Freeze_Entity (Id, Last (Priv_Decls)));
1841 end if;
1842
1843 Set_Visible_Declarations (Orig_Spec, Empty_List);
1844 Set_Generic_Formal_Declarations (Orig_Decl, Empty_List);
1845 Save_Global_References (Orig_Decl);
1846 Set_Generic_Formal_Declarations (Orig_Decl, Save_Form);
1847 Set_Visible_Declarations (Orig_Spec, Save_Vis);
1848 end;
1849 end if;
1850
1851 Process_End_Label (N, 'e', Id);
1852
1853 -- Remove private_with_clauses of enclosing compilation unit, if they
1854 -- were installed.
1855
1856 if Private_With_Clauses_Installed then
1857 Remove_Private_With_Clauses (Cunit (Current_Sem_Unit));
1858 end if;
1859
1860 -- For the case of a library level package, we must go through all the
1861 -- entities clearing the indications that the value may be constant and
1862 -- not modified. Why? Because any client of this package may modify
1863 -- these values freely from anywhere. This also applies to any nested
1864 -- packages or generic packages.
1865
1866 -- For now we unconditionally clear constants for packages that are
1867 -- instances of generic packages. The reason is that we do not have the
1868 -- body yet, and we otherwise think things are unreferenced when they
1869 -- are not. This should be fixed sometime (the effect is not terrible,
1870 -- we just lose some warnings, and also some cases of value propagation)
1871 -- ???
1872
1873 if Is_Library_Level_Entity (Id)
1874 or else Is_Generic_Instance (Id)
1875 then
1876 Clear_Constants (Id, First_Entity (Id));
1877 Clear_Constants (Id, First_Private_Entity (Id));
1878 end if;
1879
1880 -- Issue an error in SPARK mode if a package specification contains
1881 -- more than one tagged type or type extension.
1882
1883 Check_One_Tagged_Type_Or_Extension_At_Most;
1884
1885 -- Output relevant information as to why the package requires a body.
1886 -- Do not consider generated packages as this exposes internal symbols
1887 -- and leads to confusing messages.
1888
1889 if List_Body_Required_Info
1890 and then In_Extended_Main_Source_Unit (Id)
1891 and then Unit_Requires_Body (Id)
1892 and then Comes_From_Source (Id)
1893 then
1894 Unit_Requires_Body_Info (Id);
1895 end if;
1896
1897 -- Nested package specs that do not require bodies are not checked for
1898 -- ineffective use clauses due to the possibility of subunits. This is
1899 -- because at this stage it is impossible to tell whether there will be
1900 -- a separate body.
1901
1902 if not Unit_Requires_Body (Id)
1903 and then Is_Compilation_Unit (Id)
1904 and then not Is_Private_Descendant (Id)
1905 then
1906 Update_Use_Clause_Chain;
1907 end if;
1908 end Analyze_Package_Specification;
1909
1910 --------------------------------------
1911 -- Analyze_Private_Type_Declaration --
1912 --------------------------------------
1913
1914 procedure Analyze_Private_Type_Declaration (N : Node_Id) is
1915 Id : constant Entity_Id := Defining_Identifier (N);
1916 PF : constant Boolean := Is_Pure (Enclosing_Lib_Unit_Entity);
1917
1918 begin
1919 Generate_Definition (Id);
1920 Set_Is_Pure (Id, PF);
1921 Init_Size_Align (Id);
1922
1923 if not Is_Package_Or_Generic_Package (Current_Scope)
1924 or else In_Private_Part (Current_Scope)
1925 then
1926 Error_Msg_N ("invalid context for private declaration", N);
1927 end if;
1928
1929 New_Private_Type (N, Id, N);
1930 Set_Depends_On_Private (Id);
1931
1932 -- Set the SPARK mode from the current context
1933
1934 Set_SPARK_Pragma (Id, SPARK_Mode_Pragma);
1935 Set_SPARK_Pragma_Inherited (Id);
1936
1937 if Has_Aspects (N) then
1938 Analyze_Aspect_Specifications (N, Id);
1939 end if;
1940 end Analyze_Private_Type_Declaration;
1941
1942 ----------------------------------
1943 -- Check_Anonymous_Access_Types --
1944 ----------------------------------
1945
1946 procedure Check_Anonymous_Access_Types
1947 (Spec_Id : Entity_Id;
1948 P_Body : Node_Id)
1949 is
1950 E : Entity_Id;
1951 IR : Node_Id;
1952
1953 begin
1954 -- Itype references are only needed by gigi, to force elaboration of
1955 -- itypes. In the absence of code generation, they are not needed.
1956
1957 if not Expander_Active then
1958 return;
1959 end if;
1960
1961 E := First_Entity (Spec_Id);
1962 while Present (E) loop
1963 if Ekind (E) = E_Anonymous_Access_Type
1964 and then From_Limited_With (E)
1965 then
1966 IR := Make_Itype_Reference (Sloc (P_Body));
1967 Set_Itype (IR, E);
1968
1969 if No (Declarations (P_Body)) then
1970 Set_Declarations (P_Body, New_List (IR));
1971 else
1972 Prepend (IR, Declarations (P_Body));
1973 end if;
1974 end if;
1975
1976 Next_Entity (E);
1977 end loop;
1978 end Check_Anonymous_Access_Types;
1979
1980 -------------------------------------------
1981 -- Declare_Inherited_Private_Subprograms --
1982 -------------------------------------------
1983
1984 procedure Declare_Inherited_Private_Subprograms (Id : Entity_Id) is
1985
1986 function Is_Primitive_Of (T : Entity_Id; S : Entity_Id) return Boolean;
1987 -- Check whether an inherited subprogram S is an operation of an
1988 -- untagged derived type T.
1989
1990 ---------------------
1991 -- Is_Primitive_Of --
1992 ---------------------
1993
1994 function Is_Primitive_Of (T : Entity_Id; S : Entity_Id) return Boolean is
1995 Formal : Entity_Id;
1996
1997 begin
1998 -- If the full view is a scalar type, the type is the anonymous base
1999 -- type, but the operation mentions the first subtype, so check the
2000 -- signature against the base type.
2001
2002 if Base_Type (Etype (S)) = Base_Type (T) then
2003 return True;
2004
2005 else
2006 Formal := First_Formal (S);
2007 while Present (Formal) loop
2008 if Base_Type (Etype (Formal)) = Base_Type (T) then
2009 return True;
2010 end if;
2011
2012 Next_Formal (Formal);
2013 end loop;
2014
2015 return False;
2016 end if;
2017 end Is_Primitive_Of;
2018
2019 -- Local variables
2020
2021 E : Entity_Id;
2022 Op_List : Elist_Id;
2023 Op_Elmt : Elmt_Id;
2024 Op_Elmt_2 : Elmt_Id;
2025 Prim_Op : Entity_Id;
2026 New_Op : Entity_Id := Empty;
2027 Parent_Subp : Entity_Id;
2028 Tag : Entity_Id;
2029
2030 -- Start of processing for Declare_Inherited_Private_Subprograms
2031
2032 begin
2033 E := First_Entity (Id);
2034 while Present (E) loop
2035
2036 -- If the entity is a nonprivate type extension whose parent type
2037 -- is declared in an open scope, then the type may have inherited
2038 -- operations that now need to be made visible. Ditto if the entity
2039 -- is a formal derived type in a child unit.
2040
2041 if ((Is_Derived_Type (E) and then not Is_Private_Type (E))
2042 or else
2043 (Nkind (Parent (E)) = N_Private_Extension_Declaration
2044 and then Is_Generic_Type (E)))
2045 and then In_Open_Scopes (Scope (Etype (E)))
2046 and then Is_Base_Type (E)
2047 then
2048 if Is_Tagged_Type (E) then
2049 Op_List := Primitive_Operations (E);
2050 New_Op := Empty;
2051 Tag := First_Tag_Component (E);
2052
2053 Op_Elmt := First_Elmt (Op_List);
2054 while Present (Op_Elmt) loop
2055 Prim_Op := Node (Op_Elmt);
2056
2057 -- Search primitives that are implicit operations with an
2058 -- internal name whose parent operation has a normal name.
2059
2060 if Present (Alias (Prim_Op))
2061 and then Find_Dispatching_Type (Alias (Prim_Op)) /= E
2062 and then not Comes_From_Source (Prim_Op)
2063 and then Is_Internal_Name (Chars (Prim_Op))
2064 and then not Is_Internal_Name (Chars (Alias (Prim_Op)))
2065 then
2066 Parent_Subp := Alias (Prim_Op);
2067
2068 -- Case 1: Check if the type has also an explicit
2069 -- overriding for this primitive.
2070
2071 Op_Elmt_2 := Next_Elmt (Op_Elmt);
2072 while Present (Op_Elmt_2) loop
2073
2074 -- Skip entities with attribute Interface_Alias since
2075 -- they are not overriding primitives (these entities
2076 -- link an interface primitive with their covering
2077 -- primitive)
2078
2079 if Chars (Node (Op_Elmt_2)) = Chars (Parent_Subp)
2080 and then Type_Conformant (Prim_Op, Node (Op_Elmt_2))
2081 and then No (Interface_Alias (Node (Op_Elmt_2)))
2082 then
2083 -- The private inherited operation has been
2084 -- overridden by an explicit subprogram:
2085 -- replace the former by the latter.
2086
2087 New_Op := Node (Op_Elmt_2);
2088 Replace_Elmt (Op_Elmt, New_Op);
2089 Remove_Elmt (Op_List, Op_Elmt_2);
2090 Set_Overridden_Operation (New_Op, Parent_Subp);
2091
2092 -- We don't need to inherit its dispatching slot.
2093 -- Set_All_DT_Position has previously ensured that
2094 -- the same slot was assigned to the two primitives
2095
2096 if Present (Tag)
2097 and then Present (DTC_Entity (New_Op))
2098 and then Present (DTC_Entity (Prim_Op))
2099 then
2100 pragma Assert
2101 (DT_Position (New_Op) = DT_Position (Prim_Op));
2102 null;
2103 end if;
2104
2105 goto Next_Primitive;
2106 end if;
2107
2108 Next_Elmt (Op_Elmt_2);
2109 end loop;
2110
2111 -- Case 2: We have not found any explicit overriding and
2112 -- hence we need to declare the operation (i.e., make it
2113 -- visible).
2114
2115 Derive_Subprogram (New_Op, Alias (Prim_Op), E, Etype (E));
2116
2117 -- Inherit the dispatching slot if E is already frozen
2118
2119 if Is_Frozen (E)
2120 and then Present (DTC_Entity (Alias (Prim_Op)))
2121 then
2122 Set_DTC_Entity_Value (E, New_Op);
2123 Set_DT_Position_Value (New_Op,
2124 DT_Position (Alias (Prim_Op)));
2125 end if;
2126
2127 pragma Assert
2128 (Is_Dispatching_Operation (New_Op)
2129 and then Node (Last_Elmt (Op_List)) = New_Op);
2130
2131 -- Substitute the new operation for the old one in the
2132 -- type's primitive operations list. Since the new
2133 -- operation was also just added to the end of list,
2134 -- the last element must be removed.
2135
2136 -- (Question: is there a simpler way of declaring the
2137 -- operation, say by just replacing the name of the
2138 -- earlier operation, reentering it in the in the symbol
2139 -- table (how?), and marking it as private???)
2140
2141 Replace_Elmt (Op_Elmt, New_Op);
2142 Remove_Last_Elmt (Op_List);
2143 end if;
2144
2145 <<Next_Primitive>>
2146 Next_Elmt (Op_Elmt);
2147 end loop;
2148
2149 -- Generate listing showing the contents of the dispatch table
2150
2151 if Debug_Flag_ZZ then
2152 Write_DT (E);
2153 end if;
2154
2155 else
2156 -- For untagged type, scan forward to locate inherited hidden
2157 -- operations.
2158
2159 Prim_Op := Next_Entity (E);
2160 while Present (Prim_Op) loop
2161 if Is_Subprogram (Prim_Op)
2162 and then Present (Alias (Prim_Op))
2163 and then not Comes_From_Source (Prim_Op)
2164 and then Is_Internal_Name (Chars (Prim_Op))
2165 and then not Is_Internal_Name (Chars (Alias (Prim_Op)))
2166 and then Is_Primitive_Of (E, Prim_Op)
2167 then
2168 Derive_Subprogram (New_Op, Alias (Prim_Op), E, Etype (E));
2169 end if;
2170
2171 Next_Entity (Prim_Op);
2172
2173 -- Derived operations appear immediately after the type
2174 -- declaration (or the following subtype indication for
2175 -- a derived scalar type). Further declarations cannot
2176 -- include inherited operations of the type.
2177
2178 if Present (Prim_Op) then
2179 exit when Ekind (Prim_Op) not in Overloadable_Kind;
2180 end if;
2181 end loop;
2182 end if;
2183 end if;
2184
2185 Next_Entity (E);
2186 end loop;
2187 end Declare_Inherited_Private_Subprograms;
2188
2189 -----------------------
2190 -- End_Package_Scope --
2191 -----------------------
2192
2193 procedure End_Package_Scope (P : Entity_Id) is
2194 begin
2195 Uninstall_Declarations (P);
2196 Pop_Scope;
2197 end End_Package_Scope;
2198
2199 ---------------------------
2200 -- Exchange_Declarations --
2201 ---------------------------
2202
2203 procedure Exchange_Declarations (Id : Entity_Id) is
2204 Full_Id : constant Entity_Id := Full_View (Id);
2205 H1 : constant Entity_Id := Homonym (Id);
2206 Next1 : constant Entity_Id := Next_Entity (Id);
2207 H2 : Entity_Id;
2208 Next2 : Entity_Id;
2209
2210 begin
2211 -- If missing full declaration for type, nothing to exchange
2212
2213 if No (Full_Id) then
2214 return;
2215 end if;
2216
2217 -- Otherwise complete the exchange, and preserve semantic links
2218
2219 Next2 := Next_Entity (Full_Id);
2220 H2 := Homonym (Full_Id);
2221
2222 -- Reset full declaration pointer to reflect the switched entities and
2223 -- readjust the next entity chains.
2224
2225 Exchange_Entities (Id, Full_Id);
2226
2227 Link_Entities (Id, Next1);
2228 Set_Homonym (Id, H1);
2229
2230 Set_Full_View (Full_Id, Id);
2231 Link_Entities (Full_Id, Next2);
2232 Set_Homonym (Full_Id, H2);
2233 end Exchange_Declarations;
2234
2235 ----------------------------
2236 -- Install_Package_Entity --
2237 ----------------------------
2238
2239 procedure Install_Package_Entity (Id : Entity_Id) is
2240 begin
2241 if not Is_Internal (Id) then
2242 if Debug_Flag_E then
2243 Write_Str ("Install: ");
2244 Write_Name (Chars (Id));
2245 Write_Eol;
2246 end if;
2247
2248 if Is_Child_Unit (Id) then
2249 null;
2250
2251 -- Do not enter implicitly inherited non-overridden subprograms of
2252 -- a tagged type back into visibility if they have non-conformant
2253 -- homographs (Ada RM 8.3 12.3/2).
2254
2255 elsif Is_Hidden_Non_Overridden_Subpgm (Id) then
2256 null;
2257
2258 else
2259 Set_Is_Immediately_Visible (Id);
2260 end if;
2261 end if;
2262 end Install_Package_Entity;
2263
2264 ----------------------------------
2265 -- Install_Private_Declarations --
2266 ----------------------------------
2267
2268 procedure Install_Private_Declarations (P : Entity_Id) is
2269 Id : Entity_Id;
2270 Full : Entity_Id;
2271 Priv_Deps : Elist_Id;
2272
2273 procedure Swap_Private_Dependents (Priv_Deps : Elist_Id);
2274 -- When the full view of a private type is made available, we do the
2275 -- same for its private dependents under proper visibility conditions.
2276 -- When compiling a child unit this needs to be done recursively.
2277
2278 -----------------------------
2279 -- Swap_Private_Dependents --
2280 -----------------------------
2281
2282 procedure Swap_Private_Dependents (Priv_Deps : Elist_Id) is
2283 Cunit : Entity_Id;
2284 Deps : Elist_Id;
2285 Priv : Entity_Id;
2286 Priv_Elmt : Elmt_Id;
2287 Is_Priv : Boolean;
2288
2289 begin
2290 Priv_Elmt := First_Elmt (Priv_Deps);
2291 while Present (Priv_Elmt) loop
2292 Priv := Node (Priv_Elmt);
2293
2294 -- Before the exchange, verify that the presence of the Full_View
2295 -- field. This field will be empty if the entity has already been
2296 -- installed due to a previous call.
2297
2298 if Present (Full_View (Priv)) and then Is_Visible_Dependent (Priv)
2299 then
2300 if Is_Private_Type (Priv) then
2301 Cunit := Cunit_Entity (Current_Sem_Unit);
2302 Deps := Private_Dependents (Priv);
2303 Is_Priv := True;
2304 else
2305 Is_Priv := False;
2306 end if;
2307
2308 -- For each subtype that is swapped, we also swap the reference
2309 -- to it in Private_Dependents, to allow access to it when we
2310 -- swap them out in End_Package_Scope.
2311
2312 Replace_Elmt (Priv_Elmt, Full_View (Priv));
2313
2314 -- Ensure that both views of the dependent private subtype are
2315 -- immediately visible if within some open scope. Check full
2316 -- view before exchanging views.
2317
2318 if In_Open_Scopes (Scope (Full_View (Priv))) then
2319 Set_Is_Immediately_Visible (Priv);
2320 end if;
2321
2322 Exchange_Declarations (Priv);
2323 Set_Is_Immediately_Visible
2324 (Priv, In_Open_Scopes (Scope (Priv)));
2325
2326 Set_Is_Potentially_Use_Visible
2327 (Priv, Is_Potentially_Use_Visible (Node (Priv_Elmt)));
2328
2329 -- Recurse for child units, except in generic child units,
2330 -- which unfortunately handle private_dependents separately.
2331 -- Note that the current unit may not have been analyzed,
2332 -- for example a package body, so we cannot rely solely on
2333 -- the Is_Child_Unit flag, but that's only an optimization.
2334
2335 if Is_Priv
2336 and then (No (Etype (Cunit)) or else Is_Child_Unit (Cunit))
2337 and then not Is_Empty_Elmt_List (Deps)
2338 and then not Inside_A_Generic
2339 then
2340 Swap_Private_Dependents (Deps);
2341 end if;
2342 end if;
2343
2344 Next_Elmt (Priv_Elmt);
2345 end loop;
2346 end Swap_Private_Dependents;
2347
2348 -- Start of processing for Install_Private_Declarations
2349
2350 begin
2351 -- First exchange declarations for private types, so that the full
2352 -- declaration is visible. For each private type, we check its
2353 -- Private_Dependents list and also exchange any subtypes of or derived
2354 -- types from it. Finally, if this is a Taft amendment type, the
2355 -- incomplete declaration is irrelevant, and we want to link the
2356 -- eventual full declaration with the original private one so we
2357 -- also skip the exchange.
2358
2359 Id := First_Entity (P);
2360 while Present (Id) and then Id /= First_Private_Entity (P) loop
2361 if Is_Private_Base_Type (Id)
2362 and then Present (Full_View (Id))
2363 and then Comes_From_Source (Full_View (Id))
2364 and then Scope (Full_View (Id)) = Scope (Id)
2365 and then Ekind (Full_View (Id)) /= E_Incomplete_Type
2366 then
2367 -- If there is a use-type clause on the private type, set the full
2368 -- view accordingly.
2369
2370 Set_In_Use (Full_View (Id), In_Use (Id));
2371 Full := Full_View (Id);
2372
2373 if Is_Private_Base_Type (Full)
2374 and then Has_Private_Declaration (Full)
2375 and then Nkind (Parent (Full)) = N_Full_Type_Declaration
2376 and then In_Open_Scopes (Scope (Etype (Full)))
2377 and then In_Package_Body (Current_Scope)
2378 and then not Is_Private_Type (Etype (Full))
2379 then
2380 -- This is the completion of a private type by a derivation
2381 -- from another private type which is not private anymore. This
2382 -- can only happen in a package nested within a child package,
2383 -- when the parent type is defined in the parent unit. At this
2384 -- point the current type is not private either, and we have
2385 -- to install the underlying full view, which is now visible.
2386 -- Save the current full view as well, so that all views can be
2387 -- restored on exit. It may seem that after compiling the child
2388 -- body there are not environments to restore, but the back-end
2389 -- expects those links to be valid, and freeze nodes depend on
2390 -- them.
2391
2392 if No (Full_View (Full))
2393 and then Present (Underlying_Full_View (Full))
2394 then
2395 Set_Full_View (Id, Underlying_Full_View (Full));
2396 Set_Underlying_Full_View (Id, Full);
2397 Set_Is_Underlying_Full_View (Full);
2398
2399 Set_Underlying_Full_View (Full, Empty);
2400 Set_Is_Frozen (Full_View (Id));
2401 end if;
2402 end if;
2403
2404 Priv_Deps := Private_Dependents (Id);
2405 Exchange_Declarations (Id);
2406 Set_Is_Immediately_Visible (Id);
2407 Swap_Private_Dependents (Priv_Deps);
2408 end if;
2409
2410 Next_Entity (Id);
2411 end loop;
2412
2413 -- Next make other declarations in the private part visible as well
2414
2415 Id := First_Private_Entity (P);
2416 while Present (Id) loop
2417 Install_Package_Entity (Id);
2418 Set_Is_Hidden (Id, False);
2419 Next_Entity (Id);
2420 end loop;
2421
2422 -- An abstract state is partially refined when it has at least one
2423 -- Part_Of constituent. Since these constituents are being installed
2424 -- into visibility, update the partial refinement status of any state
2425 -- defined in the associated package, subject to at least one Part_Of
2426 -- constituent.
2427
2428 if Ekind_In (P, E_Generic_Package, E_Package) then
2429 declare
2430 States : constant Elist_Id := Abstract_States (P);
2431 State_Elmt : Elmt_Id;
2432 State_Id : Entity_Id;
2433
2434 begin
2435 if Present (States) then
2436 State_Elmt := First_Elmt (States);
2437 while Present (State_Elmt) loop
2438 State_Id := Node (State_Elmt);
2439
2440 if Present (Part_Of_Constituents (State_Id)) then
2441 Set_Has_Partial_Visible_Refinement (State_Id);
2442 end if;
2443
2444 Next_Elmt (State_Elmt);
2445 end loop;
2446 end if;
2447 end;
2448 end if;
2449
2450 -- Indicate that the private part is currently visible, so it can be
2451 -- properly reset on exit.
2452
2453 Set_In_Private_Part (P);
2454 end Install_Private_Declarations;
2455
2456 ----------------------------------
2457 -- Install_Visible_Declarations --
2458 ----------------------------------
2459
2460 procedure Install_Visible_Declarations (P : Entity_Id) is
2461 Id : Entity_Id;
2462 Last_Entity : Entity_Id;
2463
2464 begin
2465 pragma Assert
2466 (Is_Package_Or_Generic_Package (P) or else Is_Record_Type (P));
2467
2468 if Is_Package_Or_Generic_Package (P) then
2469 Last_Entity := First_Private_Entity (P);
2470 else
2471 Last_Entity := Empty;
2472 end if;
2473
2474 Id := First_Entity (P);
2475 while Present (Id) and then Id /= Last_Entity loop
2476 Install_Package_Entity (Id);
2477 Next_Entity (Id);
2478 end loop;
2479 end Install_Visible_Declarations;
2480
2481 --------------------------
2482 -- Is_Private_Base_Type --
2483 --------------------------
2484
2485 function Is_Private_Base_Type (E : Entity_Id) return Boolean is
2486 begin
2487 return Ekind (E) = E_Private_Type
2488 or else Ekind (E) = E_Limited_Private_Type
2489 or else Ekind (E) = E_Record_Type_With_Private;
2490 end Is_Private_Base_Type;
2491
2492 --------------------------
2493 -- Is_Visible_Dependent --
2494 --------------------------
2495
2496 function Is_Visible_Dependent (Dep : Entity_Id) return Boolean
2497 is
2498 S : constant Entity_Id := Scope (Dep);
2499
2500 begin
2501 -- Renamings created for actual types have the visibility of the actual
2502
2503 if Ekind (S) = E_Package
2504 and then Is_Generic_Instance (S)
2505 and then (Is_Generic_Actual_Type (Dep)
2506 or else Is_Generic_Actual_Type (Full_View (Dep)))
2507 then
2508 return True;
2509
2510 elsif not (Is_Derived_Type (Dep))
2511 and then Is_Derived_Type (Full_View (Dep))
2512 then
2513 -- When instantiating a package body, the scope stack is empty, so
2514 -- check instead whether the dependent type is defined in the same
2515 -- scope as the instance itself.
2516
2517 return In_Open_Scopes (S)
2518 or else (Is_Generic_Instance (Current_Scope)
2519 and then Scope (Dep) = Scope (Current_Scope));
2520 else
2521 return True;
2522 end if;
2523 end Is_Visible_Dependent;
2524
2525 ----------------------------
2526 -- May_Need_Implicit_Body --
2527 ----------------------------
2528
2529 procedure May_Need_Implicit_Body (E : Entity_Id) is
2530 P : constant Node_Id := Unit_Declaration_Node (E);
2531 S : constant Node_Id := Parent (P);
2532 B : Node_Id;
2533 Decls : List_Id;
2534
2535 begin
2536 if not Has_Completion (E)
2537 and then Nkind (P) = N_Package_Declaration
2538 and then (Present (Activation_Chain_Entity (P)) or else Has_RACW (E))
2539 then
2540 B :=
2541 Make_Package_Body (Sloc (E),
2542 Defining_Unit_Name => Make_Defining_Identifier (Sloc (E),
2543 Chars => Chars (E)),
2544 Declarations => New_List);
2545
2546 if Nkind (S) = N_Package_Specification then
2547 if Present (Private_Declarations (S)) then
2548 Decls := Private_Declarations (S);
2549 else
2550 Decls := Visible_Declarations (S);
2551 end if;
2552 else
2553 Decls := Declarations (S);
2554 end if;
2555
2556 Append (B, Decls);
2557 Analyze (B);
2558 end if;
2559 end May_Need_Implicit_Body;
2560
2561 ----------------------
2562 -- New_Private_Type --
2563 ----------------------
2564
2565 procedure New_Private_Type (N : Node_Id; Id : Entity_Id; Def : Node_Id) is
2566 begin
2567 -- For other than Ada 2012, enter the name in the current scope
2568
2569 if Ada_Version < Ada_2012 then
2570 Enter_Name (Id);
2571
2572 -- Ada 2012 (AI05-0162): Enter the name in the current scope. Note that
2573 -- there may be an incomplete previous view.
2574
2575 else
2576 declare
2577 Prev : Entity_Id;
2578 begin
2579 Prev := Find_Type_Name (N);
2580 pragma Assert (Prev = Id
2581 or else (Ekind (Prev) = E_Incomplete_Type
2582 and then Present (Full_View (Prev))
2583 and then Full_View (Prev) = Id));
2584 end;
2585 end if;
2586
2587 if Limited_Present (Def) then
2588 Set_Ekind (Id, E_Limited_Private_Type);
2589 else
2590 Set_Ekind (Id, E_Private_Type);
2591 end if;
2592
2593 Set_Etype (Id, Id);
2594 Set_Has_Delayed_Freeze (Id);
2595 Set_Is_First_Subtype (Id);
2596 Init_Size_Align (Id);
2597
2598 Set_Is_Constrained (Id,
2599 No (Discriminant_Specifications (N))
2600 and then not Unknown_Discriminants_Present (N));
2601
2602 -- Set tagged flag before processing discriminants, to catch illegal
2603 -- usage.
2604
2605 Set_Is_Tagged_Type (Id, Tagged_Present (Def));
2606
2607 Set_Discriminant_Constraint (Id, No_Elist);
2608 Set_Stored_Constraint (Id, No_Elist);
2609
2610 if Present (Discriminant_Specifications (N)) then
2611 Push_Scope (Id);
2612 Process_Discriminants (N);
2613 End_Scope;
2614
2615 elsif Unknown_Discriminants_Present (N) then
2616 Set_Has_Unknown_Discriminants (Id);
2617 end if;
2618
2619 Set_Private_Dependents (Id, New_Elmt_List);
2620
2621 if Tagged_Present (Def) then
2622 Set_Ekind (Id, E_Record_Type_With_Private);
2623 Set_Direct_Primitive_Operations (Id, New_Elmt_List);
2624 Set_Is_Abstract_Type (Id, Abstract_Present (Def));
2625 Set_Is_Limited_Record (Id, Limited_Present (Def));
2626 Set_Has_Delayed_Freeze (Id, True);
2627
2628 -- Recognize Ada.Real_Time.Timing_Events.Timing_Events here
2629
2630 if Is_RTE (Id, RE_Timing_Event) then
2631 Set_Has_Timing_Event (Id);
2632 end if;
2633
2634 -- Create a class-wide type with the same attributes
2635
2636 Make_Class_Wide_Type (Id);
2637
2638 elsif Abstract_Present (Def) then
2639 Error_Msg_N ("only a tagged type can be abstract", N);
2640 end if;
2641 end New_Private_Type;
2642
2643 ---------------------------------
2644 -- Requires_Completion_In_Body --
2645 ---------------------------------
2646
2647 function Requires_Completion_In_Body
2648 (Id : Entity_Id;
2649 Pack_Id : Entity_Id;
2650 Do_Abstract_States : Boolean := False) return Boolean
2651 is
2652 begin
2653 -- Always ignore child units. Child units get added to the entity list
2654 -- of a parent unit, but are not original entities of the parent, and
2655 -- so do not affect whether the parent needs a body.
2656
2657 if Is_Child_Unit (Id) then
2658 return False;
2659
2660 -- Ignore formal packages and their renamings
2661
2662 elsif Ekind (Id) = E_Package
2663 and then Nkind (Original_Node (Unit_Declaration_Node (Id))) =
2664 N_Formal_Package_Declaration
2665 then
2666 return False;
2667
2668 -- Otherwise test to see if entity requires a completion. Note that
2669 -- subprogram entities whose declaration does not come from source are
2670 -- ignored here on the basis that we assume the expander will provide an
2671 -- implicit completion at some point.
2672
2673 elsif (Is_Overloadable (Id)
2674 and then not Ekind_In (Id, E_Enumeration_Literal, E_Operator)
2675 and then not Is_Abstract_Subprogram (Id)
2676 and then not Has_Completion (Id)
2677 and then Comes_From_Source (Parent (Id)))
2678
2679 or else
2680 (Ekind (Id) = E_Package
2681 and then Id /= Pack_Id
2682 and then not Has_Completion (Id)
2683 and then Unit_Requires_Body (Id, Do_Abstract_States))
2684
2685 or else
2686 (Ekind (Id) = E_Incomplete_Type
2687 and then No (Full_View (Id))
2688 and then not Is_Generic_Type (Id))
2689
2690 or else
2691 (Ekind_In (Id, E_Task_Type, E_Protected_Type)
2692 and then not Has_Completion (Id))
2693
2694 or else
2695 (Ekind (Id) = E_Generic_Package
2696 and then Id /= Pack_Id
2697 and then not Has_Completion (Id)
2698 and then Unit_Requires_Body (Id, Do_Abstract_States))
2699
2700 or else
2701 (Is_Generic_Subprogram (Id)
2702 and then not Has_Completion (Id))
2703 then
2704 return True;
2705
2706 -- Otherwise the entity does not require completion in a package body
2707
2708 else
2709 return False;
2710 end if;
2711 end Requires_Completion_In_Body;
2712
2713 ----------------------------
2714 -- Uninstall_Declarations --
2715 ----------------------------
2716
2717 procedure Uninstall_Declarations (P : Entity_Id) is
2718 Decl : constant Node_Id := Unit_Declaration_Node (P);
2719 Id : Entity_Id;
2720 Full : Entity_Id;
2721
2722 procedure Preserve_Full_Attributes (Priv : Entity_Id; Full : Entity_Id);
2723 -- Copy to the private declaration the attributes of the full view that
2724 -- need to be available for the partial view also.
2725
2726 procedure Swap_Private_Dependents (Priv_Deps : Elist_Id);
2727 -- When the full view of a private type is made unavailable, we do the
2728 -- same for its private dependents under proper visibility conditions.
2729 -- When compiling a child unit this needs to be done recursively.
2730
2731 function Type_In_Use (T : Entity_Id) return Boolean;
2732 -- Check whether type or base type appear in an active use_type clause
2733
2734 ------------------------------
2735 -- Preserve_Full_Attributes --
2736 ------------------------------
2737
2738 procedure Preserve_Full_Attributes
2739 (Priv : Entity_Id;
2740 Full : Entity_Id)
2741 is
2742 Full_Base : constant Entity_Id := Base_Type (Full);
2743 Priv_Is_Base_Type : constant Boolean := Is_Base_Type (Priv);
2744
2745 begin
2746 Set_Size_Info (Priv, Full);
2747 Set_RM_Size (Priv, RM_Size (Full));
2748 Set_Size_Known_At_Compile_Time
2749 (Priv, Size_Known_At_Compile_Time (Full));
2750 Set_Is_Volatile (Priv, Is_Volatile (Full));
2751 Set_Treat_As_Volatile (Priv, Treat_As_Volatile (Full));
2752 Set_Is_Ada_2005_Only (Priv, Is_Ada_2005_Only (Full));
2753 Set_Is_Ada_2012_Only (Priv, Is_Ada_2012_Only (Full));
2754 Set_Has_Pragma_Unmodified (Priv, Has_Pragma_Unmodified (Full));
2755 Set_Has_Pragma_Unreferenced (Priv, Has_Pragma_Unreferenced (Full));
2756 Set_Has_Pragma_Unreferenced_Objects
2757 (Priv, Has_Pragma_Unreferenced_Objects
2758 (Full));
2759 if Is_Unchecked_Union (Full) then
2760 Set_Is_Unchecked_Union (Base_Type (Priv));
2761 end if;
2762 -- Why is atomic not copied here ???
2763
2764 if Referenced (Full) then
2765 Set_Referenced (Priv);
2766 end if;
2767
2768 if Priv_Is_Base_Type then
2769 Set_Is_Controlled_Active
2770 (Priv, Is_Controlled_Active (Full_Base));
2771 Set_Finalize_Storage_Only
2772 (Priv, Finalize_Storage_Only (Full_Base));
2773 Set_Has_Controlled_Component
2774 (Priv, Has_Controlled_Component (Full_Base));
2775
2776 Propagate_Concurrent_Flags (Priv, Base_Type (Full));
2777 end if;
2778
2779 -- As explained in Freeze_Entity, private types are required to point
2780 -- to the same freeze node as their corresponding full view, if any.
2781 -- But we ought not to overwrite a node already inserted in the tree.
2782
2783 pragma Assert
2784 (Serious_Errors_Detected /= 0
2785 or else No (Freeze_Node (Priv))
2786 or else No (Parent (Freeze_Node (Priv)))
2787 or else Freeze_Node (Priv) = Freeze_Node (Full));
2788
2789 Set_Freeze_Node (Priv, Freeze_Node (Full));
2790
2791 -- Propagate Default_Initial_Condition-related attributes from the
2792 -- base type of the full view to the full view and vice versa. This
2793 -- may seem strange, but is necessary depending on which type
2794 -- triggered the generation of the DIC procedure body. As a result,
2795 -- both the full view and its base type carry the same DIC-related
2796 -- information.
2797
2798 Propagate_DIC_Attributes (Full, From_Typ => Full_Base);
2799 Propagate_DIC_Attributes (Full_Base, From_Typ => Full);
2800
2801 -- Propagate Default_Initial_Condition-related attributes from the
2802 -- full view to the private view.
2803
2804 Propagate_DIC_Attributes (Priv, From_Typ => Full);
2805
2806 -- Propagate invariant-related attributes from the base type of the
2807 -- full view to the full view and vice versa. This may seem strange,
2808 -- but is necessary depending on which type triggered the generation
2809 -- of the invariant procedure body. As a result, both the full view
2810 -- and its base type carry the same invariant-related information.
2811
2812 Propagate_Invariant_Attributes (Full, From_Typ => Full_Base);
2813 Propagate_Invariant_Attributes (Full_Base, From_Typ => Full);
2814
2815 -- Propagate invariant-related attributes from the full view to the
2816 -- private view.
2817
2818 Propagate_Invariant_Attributes (Priv, From_Typ => Full);
2819
2820 if Is_Tagged_Type (Priv)
2821 and then Is_Tagged_Type (Full)
2822 and then not Error_Posted (Full)
2823 then
2824 if Is_Tagged_Type (Priv) then
2825
2826 -- If the type is tagged, the tag itself must be available on
2827 -- the partial view, for expansion purposes.
2828
2829 Set_First_Entity (Priv, First_Entity (Full));
2830
2831 -- If there are discriminants in the partial view, these remain
2832 -- visible. Otherwise only the tag itself is visible, and there
2833 -- are no nameable components in the partial view.
2834
2835 if No (Last_Entity (Priv)) then
2836 Set_Last_Entity (Priv, First_Entity (Priv));
2837 end if;
2838 end if;
2839
2840 Set_Has_Discriminants (Priv, Has_Discriminants (Full));
2841
2842 if Has_Discriminants (Full) then
2843 Set_Discriminant_Constraint (Priv,
2844 Discriminant_Constraint (Full));
2845 end if;
2846 end if;
2847 end Preserve_Full_Attributes;
2848
2849 -----------------------------
2850 -- Swap_Private_Dependents --
2851 -----------------------------
2852
2853 procedure Swap_Private_Dependents (Priv_Deps : Elist_Id) is
2854 Cunit : Entity_Id;
2855 Deps : Elist_Id;
2856 Priv : Entity_Id;
2857 Priv_Elmt : Elmt_Id;
2858 Is_Priv : Boolean;
2859
2860 begin
2861 Priv_Elmt := First_Elmt (Priv_Deps);
2862 while Present (Priv_Elmt) loop
2863 Priv := Node (Priv_Elmt);
2864
2865 -- Before we do the swap, we verify the presence of the Full_View
2866 -- field, which may be empty due to a swap by a previous call to
2867 -- End_Package_Scope (e.g. from the freezing mechanism).
2868
2869 if Present (Full_View (Priv)) then
2870 if Is_Private_Type (Priv) then
2871 Cunit := Cunit_Entity (Current_Sem_Unit);
2872 Deps := Private_Dependents (Priv);
2873 Is_Priv := True;
2874 else
2875 Is_Priv := False;
2876 end if;
2877
2878 if Scope (Priv) = P
2879 or else not In_Open_Scopes (Scope (Priv))
2880 then
2881 Set_Is_Immediately_Visible (Priv, False);
2882 end if;
2883
2884 if Is_Visible_Dependent (Priv) then
2885 Preserve_Full_Attributes (Priv, Full_View (Priv));
2886 Replace_Elmt (Priv_Elmt, Full_View (Priv));
2887 Exchange_Declarations (Priv);
2888
2889 -- Recurse for child units, except in generic child units,
2890 -- which unfortunately handle private_dependents separately.
2891 -- Note that the current unit may not have been analyzed,
2892 -- for example a package body, so we cannot rely solely on
2893 -- the Is_Child_Unit flag, but that's only an optimization.
2894
2895 if Is_Priv
2896 and then (No (Etype (Cunit)) or else Is_Child_Unit (Cunit))
2897 and then not Is_Empty_Elmt_List (Deps)
2898 and then not Inside_A_Generic
2899 then
2900 Swap_Private_Dependents (Deps);
2901 end if;
2902 end if;
2903 end if;
2904
2905 Next_Elmt (Priv_Elmt);
2906 end loop;
2907 end Swap_Private_Dependents;
2908
2909 -----------------
2910 -- Type_In_Use --
2911 -----------------
2912
2913 function Type_In_Use (T : Entity_Id) return Boolean is
2914 begin
2915 return Scope (Base_Type (T)) = P
2916 and then (In_Use (T) or else In_Use (Base_Type (T)));
2917 end Type_In_Use;
2918
2919 -- Start of processing for Uninstall_Declarations
2920
2921 begin
2922 Id := First_Entity (P);
2923 while Present (Id) and then Id /= First_Private_Entity (P) loop
2924 if Debug_Flag_E then
2925 Write_Str ("unlinking visible entity ");
2926 Write_Int (Int (Id));
2927 Write_Eol;
2928 end if;
2929
2930 -- On exit from the package scope, we must preserve the visibility
2931 -- established by use clauses in the current scope. Two cases:
2932
2933 -- a) If the entity is an operator, it may be a primitive operator of
2934 -- a type for which there is a visible use-type clause.
2935
2936 -- b) For other entities, their use-visibility is determined by a
2937 -- visible use clause for the package itself or a use-all-type clause
2938 -- applied directly to the entity's type. For a generic instance,
2939 -- the instantiation of the formals appears in the visible part,
2940 -- but the formals are private and remain so.
2941
2942 if Ekind (Id) = E_Function
2943 and then Is_Operator_Symbol_Name (Chars (Id))
2944 and then not Is_Hidden (Id)
2945 and then not Error_Posted (Id)
2946 then
2947 Set_Is_Potentially_Use_Visible (Id,
2948 In_Use (P)
2949 or else Type_In_Use (Etype (Id))
2950 or else Type_In_Use (Etype (First_Formal (Id)))
2951 or else (Present (Next_Formal (First_Formal (Id)))
2952 and then
2953 Type_In_Use
2954 (Etype (Next_Formal (First_Formal (Id))))));
2955 else
2956 if In_Use (P) and then not Is_Hidden (Id) then
2957
2958 -- A child unit of a use-visible package remains use-visible
2959 -- only if it is itself a visible child unit. Otherwise it
2960 -- would remain visible in other contexts where P is use-
2961 -- visible, because once compiled it stays in the entity list
2962 -- of its parent unit.
2963
2964 if Is_Child_Unit (Id) then
2965 Set_Is_Potentially_Use_Visible
2966 (Id, Is_Visible_Lib_Unit (Id));
2967 else
2968 Set_Is_Potentially_Use_Visible (Id);
2969 end if;
2970
2971 -- We need to avoid incorrectly marking enumeration literals as
2972 -- non-visible when a visible use-all-type clause is in effect.
2973
2974 elsif Type_In_Use (Etype (Id))
2975 and then Nkind (Current_Use_Clause (Etype (Id))) =
2976 N_Use_Type_Clause
2977 and then All_Present (Current_Use_Clause (Etype (Id)))
2978 then
2979 null;
2980
2981 else
2982 Set_Is_Potentially_Use_Visible (Id, False);
2983 end if;
2984 end if;
2985
2986 -- Local entities are not immediately visible outside of the package
2987
2988 Set_Is_Immediately_Visible (Id, False);
2989
2990 -- If this is a private type with a full view (for example a local
2991 -- subtype of a private type declared elsewhere), ensure that the
2992 -- full view is also removed from visibility: it may be exposed when
2993 -- swapping views in an instantiation. Similarly, ensure that the
2994 -- use-visibility is properly set on both views.
2995
2996 if Is_Type (Id) and then Present (Full_View (Id)) then
2997 Set_Is_Immediately_Visible (Full_View (Id), False);
2998 Set_Is_Potentially_Use_Visible (Full_View (Id),
2999 Is_Potentially_Use_Visible (Id));
3000 end if;
3001
3002 if Is_Tagged_Type (Id) and then Ekind (Id) = E_Record_Type then
3003 Check_Abstract_Overriding (Id);
3004 Check_Conventions (Id);
3005 end if;
3006
3007 if Ekind_In (Id, E_Private_Type, E_Limited_Private_Type)
3008 and then No (Full_View (Id))
3009 and then not Is_Generic_Type (Id)
3010 and then not Is_Derived_Type (Id)
3011 then
3012 Error_Msg_N ("missing full declaration for private type&", Id);
3013
3014 elsif Ekind (Id) = E_Record_Type_With_Private
3015 and then not Is_Generic_Type (Id)
3016 and then No (Full_View (Id))
3017 then
3018 if Nkind (Parent (Id)) = N_Private_Type_Declaration then
3019 Error_Msg_N ("missing full declaration for private type&", Id);
3020 else
3021 Error_Msg_N
3022 ("missing full declaration for private extension", Id);
3023 end if;
3024
3025 -- Case of constant, check for deferred constant declaration with
3026 -- no full view. Likely just a matter of a missing expression, or
3027 -- accidental use of the keyword constant.
3028
3029 elsif Ekind (Id) = E_Constant
3030
3031 -- OK if constant value present
3032
3033 and then No (Constant_Value (Id))
3034
3035 -- OK if full view present
3036
3037 and then No (Full_View (Id))
3038
3039 -- OK if imported, since that provides the completion
3040
3041 and then not Is_Imported (Id)
3042
3043 -- OK if object declaration replaced by renaming declaration as
3044 -- a result of OK_To_Rename processing (e.g. for concatenation)
3045
3046 and then Nkind (Parent (Id)) /= N_Object_Renaming_Declaration
3047
3048 -- OK if object declaration with the No_Initialization flag set
3049
3050 and then not (Nkind (Parent (Id)) = N_Object_Declaration
3051 and then No_Initialization (Parent (Id)))
3052 then
3053 -- If no private declaration is present, we assume the user did
3054 -- not intend a deferred constant declaration and the problem
3055 -- is simply that the initializing expression is missing.
3056
3057 if not Has_Private_Declaration (Etype (Id)) then
3058
3059 -- We assume that the user did not intend a deferred constant
3060 -- declaration, and the expression is just missing.
3061
3062 Error_Msg_N
3063 ("constant declaration requires initialization expression",
3064 Parent (Id));
3065
3066 if Is_Limited_Type (Etype (Id)) then
3067 Error_Msg_N
3068 ("\if variable intended, remove CONSTANT from declaration",
3069 Parent (Id));
3070 end if;
3071
3072 -- Otherwise if a private declaration is present, then we are
3073 -- missing the full declaration for the deferred constant.
3074
3075 else
3076 Error_Msg_N
3077 ("missing full declaration for deferred constant (RM 7.4)",
3078 Id);
3079
3080 if Is_Limited_Type (Etype (Id)) then
3081 Error_Msg_N
3082 ("\if variable intended, remove CONSTANT from declaration",
3083 Parent (Id));
3084 end if;
3085 end if;
3086 end if;
3087
3088 Next_Entity (Id);
3089 end loop;
3090
3091 -- If the specification was installed as the parent of a public child
3092 -- unit, the private declarations were not installed, and there is
3093 -- nothing to do.
3094
3095 if not In_Private_Part (P) then
3096 return;
3097 else
3098 Set_In_Private_Part (P, False);
3099 end if;
3100
3101 -- Make private entities invisible and exchange full and private
3102 -- declarations for private types. Id is now the first private entity
3103 -- in the package.
3104
3105 while Present (Id) loop
3106 if Debug_Flag_E then
3107 Write_Str ("unlinking private entity ");
3108 Write_Int (Int (Id));
3109 Write_Eol;
3110 end if;
3111
3112 if Is_Tagged_Type (Id) and then Ekind (Id) = E_Record_Type then
3113 Check_Abstract_Overriding (Id);
3114 Check_Conventions (Id);
3115 end if;
3116
3117 Set_Is_Immediately_Visible (Id, False);
3118
3119 if Is_Private_Base_Type (Id) and then Present (Full_View (Id)) then
3120 Full := Full_View (Id);
3121
3122 -- If the partial view is not declared in the visible part of the
3123 -- package (as is the case when it is a type derived from some
3124 -- other private type in the private part of the current package),
3125 -- no exchange takes place.
3126
3127 if No (Parent (Id))
3128 or else List_Containing (Parent (Id)) /=
3129 Visible_Declarations (Specification (Decl))
3130 then
3131 goto Next_Id;
3132 end if;
3133
3134 -- The entry in the private part points to the full declaration,
3135 -- which is currently visible. Exchange them so only the private
3136 -- type declaration remains accessible, and link private and full
3137 -- declaration in the opposite direction. Before the actual
3138 -- exchange, we copy back attributes of the full view that must
3139 -- be available to the partial view too.
3140
3141 Preserve_Full_Attributes (Id, Full);
3142
3143 Set_Is_Potentially_Use_Visible (Id, In_Use (P));
3144
3145 -- The following test may be redundant, as this is already
3146 -- diagnosed in sem_ch3. ???
3147
3148 if not Is_Definite_Subtype (Full)
3149 and then Is_Definite_Subtype (Id)
3150 then
3151 Error_Msg_Sloc := Sloc (Parent (Id));
3152 Error_Msg_NE
3153 ("full view of& not compatible with declaration#", Full, Id);
3154 end if;
3155
3156 -- Swap out the subtypes and derived types of Id that
3157 -- were compiled in this scope, or installed previously
3158 -- by Install_Private_Declarations.
3159
3160 Swap_Private_Dependents (Private_Dependents (Id));
3161
3162 -- Now restore the type itself to its private view
3163
3164 Exchange_Declarations (Id);
3165
3166 -- If we have installed an underlying full view for a type derived
3167 -- from a private type in a child unit, restore the proper views
3168 -- of private and full view. See corresponding code in
3169 -- Install_Private_Declarations.
3170
3171 -- After the exchange, Full denotes the private type in the
3172 -- visible part of the package.
3173
3174 if Is_Private_Base_Type (Full)
3175 and then Present (Full_View (Full))
3176 and then Present (Underlying_Full_View (Full))
3177 and then In_Package_Body (Current_Scope)
3178 then
3179 Set_Full_View (Full, Underlying_Full_View (Full));
3180 Set_Underlying_Full_View (Full, Empty);
3181 end if;
3182
3183 elsif Ekind (Id) = E_Incomplete_Type
3184 and then Comes_From_Source (Id)
3185 and then No (Full_View (Id))
3186 then
3187 -- Mark Taft amendment types. Verify that there are no primitive
3188 -- operations declared for the type (3.10.1(9)).
3189
3190 Set_Has_Completion_In_Body (Id);
3191
3192 declare
3193 Elmt : Elmt_Id;
3194 Subp : Entity_Id;
3195
3196 begin
3197 Elmt := First_Elmt (Private_Dependents (Id));
3198 while Present (Elmt) loop
3199 Subp := Node (Elmt);
3200
3201 -- Is_Primitive is tested because there can be cases where
3202 -- nonprimitive subprograms (in nested packages) are added
3203 -- to the Private_Dependents list.
3204
3205 if Is_Overloadable (Subp) and then Is_Primitive (Subp) then
3206 Error_Msg_NE
3207 ("type& must be completed in the private part",
3208 Parent (Subp), Id);
3209
3210 -- The result type of an access-to-function type cannot be a
3211 -- Taft-amendment type, unless the version is Ada 2012 or
3212 -- later (see AI05-151).
3213
3214 elsif Ada_Version < Ada_2012
3215 and then Ekind (Subp) = E_Subprogram_Type
3216 then
3217 if Etype (Subp) = Id
3218 or else
3219 (Is_Class_Wide_Type (Etype (Subp))
3220 and then Etype (Etype (Subp)) = Id)
3221 then
3222 Error_Msg_NE
3223 ("type& must be completed in the private part",
3224 Associated_Node_For_Itype (Subp), Id);
3225 end if;
3226 end if;
3227
3228 Next_Elmt (Elmt);
3229 end loop;
3230 end;
3231
3232 elsif not Is_Child_Unit (Id)
3233 and then (not Is_Private_Type (Id) or else No (Full_View (Id)))
3234 then
3235 Set_Is_Hidden (Id);
3236 Set_Is_Potentially_Use_Visible (Id, False);
3237 end if;
3238
3239 <<Next_Id>>
3240 Next_Entity (Id);
3241 end loop;
3242 end Uninstall_Declarations;
3243
3244 ------------------------
3245 -- Unit_Requires_Body --
3246 ------------------------
3247
3248 function Unit_Requires_Body
3249 (Pack_Id : Entity_Id;
3250 Do_Abstract_States : Boolean := False) return Boolean
3251 is
3252 E : Entity_Id;
3253
3254 Requires_Body : Boolean := False;
3255 -- Flag set when the unit has at least one construct that requires
3256 -- completion in a body.
3257
3258 begin
3259 -- Imported entity never requires body. Right now, only subprograms can
3260 -- be imported, but perhaps in the future we will allow import of
3261 -- packages.
3262
3263 if Is_Imported (Pack_Id) then
3264 return False;
3265
3266 -- Body required if library package with pragma Elaborate_Body
3267
3268 elsif Has_Pragma_Elaborate_Body (Pack_Id) then
3269 return True;
3270
3271 -- Body required if subprogram
3272
3273 elsif Is_Subprogram_Or_Generic_Subprogram (Pack_Id) then
3274 return True;
3275
3276 -- Treat a block as requiring a body
3277
3278 elsif Ekind (Pack_Id) = E_Block then
3279 return True;
3280
3281 elsif Ekind (Pack_Id) = E_Package
3282 and then Nkind (Parent (Pack_Id)) = N_Package_Specification
3283 and then Present (Generic_Parent (Parent (Pack_Id)))
3284 then
3285 declare
3286 G_P : constant Entity_Id := Generic_Parent (Parent (Pack_Id));
3287 begin
3288 if Has_Pragma_Elaborate_Body (G_P) then
3289 return True;
3290 end if;
3291 end;
3292 end if;
3293
3294 -- Traverse the entity chain of the package and look for constructs that
3295 -- require a completion in a body.
3296
3297 E := First_Entity (Pack_Id);
3298 while Present (E) loop
3299
3300 -- Skip abstract states because their completion depends on several
3301 -- criteria (see below).
3302
3303 if Ekind (E) = E_Abstract_State then
3304 null;
3305
3306 elsif Requires_Completion_In_Body
3307 (E, Pack_Id, Do_Abstract_States)
3308 then
3309 Requires_Body := True;
3310 exit;
3311 end if;
3312
3313 Next_Entity (E);
3314 end loop;
3315
3316 -- A [generic] package that defines at least one non-null abstract state
3317 -- requires a completion only when at least one other construct requires
3318 -- a completion in a body (SPARK RM 7.1.4(4) and (5)). This check is not
3319 -- performed if the caller requests this behavior.
3320
3321 if Do_Abstract_States
3322 and then Ekind_In (Pack_Id, E_Generic_Package, E_Package)
3323 and then Has_Non_Null_Abstract_State (Pack_Id)
3324 and then Requires_Body
3325 then
3326 return True;
3327 end if;
3328
3329 return Requires_Body;
3330 end Unit_Requires_Body;
3331
3332 -----------------------------
3333 -- Unit_Requires_Body_Info --
3334 -----------------------------
3335
3336 procedure Unit_Requires_Body_Info (Pack_Id : Entity_Id) is
3337 E : Entity_Id;
3338
3339 begin
3340 -- An imported entity never requires body. Right now, only subprograms
3341 -- can be imported, but perhaps in the future we will allow import of
3342 -- packages.
3343
3344 if Is_Imported (Pack_Id) then
3345 return;
3346
3347 -- Body required if library package with pragma Elaborate_Body
3348
3349 elsif Has_Pragma_Elaborate_Body (Pack_Id) then
3350 Error_Msg_N ("info: & requires body (Elaborate_Body)?Y?", Pack_Id);
3351
3352 -- Body required if subprogram
3353
3354 elsif Is_Subprogram_Or_Generic_Subprogram (Pack_Id) then
3355 Error_Msg_N ("info: & requires body (subprogram case)?Y?", Pack_Id);
3356
3357 -- Body required if generic parent has Elaborate_Body
3358
3359 elsif Ekind (Pack_Id) = E_Package
3360 and then Nkind (Parent (Pack_Id)) = N_Package_Specification
3361 and then Present (Generic_Parent (Parent (Pack_Id)))
3362 then
3363 declare
3364 G_P : constant Entity_Id := Generic_Parent (Parent (Pack_Id));
3365 begin
3366 if Has_Pragma_Elaborate_Body (G_P) then
3367 Error_Msg_N
3368 ("info: & requires body (generic parent Elaborate_Body)?Y?",
3369 Pack_Id);
3370 end if;
3371 end;
3372
3373 -- A [generic] package that introduces at least one non-null abstract
3374 -- state requires completion. However, there is a separate rule that
3375 -- requires that such a package have a reason other than this for a
3376 -- body being required (if necessary a pragma Elaborate_Body must be
3377 -- provided). If Ignore_Abstract_State is True, we don't do this check
3378 -- (so we can use Unit_Requires_Body to check for some other reason).
3379
3380 elsif Ekind_In (Pack_Id, E_Generic_Package, E_Package)
3381 and then Present (Abstract_States (Pack_Id))
3382 and then not Is_Null_State
3383 (Node (First_Elmt (Abstract_States (Pack_Id))))
3384 then
3385 Error_Msg_N
3386 ("info: & requires body (non-null abstract state aspect)?Y?",
3387 Pack_Id);
3388 end if;
3389
3390 -- Otherwise search entity chain for entity requiring completion
3391
3392 E := First_Entity (Pack_Id);
3393 while Present (E) loop
3394 if Requires_Completion_In_Body (E, Pack_Id) then
3395 Error_Msg_Node_2 := E;
3396 Error_Msg_NE
3397 ("info: & requires body (& requires completion)?Y?", E, Pack_Id);
3398 end if;
3399
3400 Next_Entity (E);
3401 end loop;
3402 end Unit_Requires_Body_Info;
3403
3404 end Sem_Ch7;
This page took 0.22759 seconds and 6 git commands to generate.