1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2010, Free Software Foundation, Inc. --
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. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
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.
31 with Aspects
; use Aspects
;
32 with Atree
; use Atree
;
33 with Debug
; use Debug
;
34 with Einfo
; use Einfo
;
35 with Elists
; use Elists
;
36 with Errout
; use Errout
;
37 with Exp_Disp
; use Exp_Disp
;
38 with Exp_Dist
; use Exp_Dist
;
39 with Exp_Dbug
; use Exp_Dbug
;
41 with Lib
.Xref
; use Lib
.Xref
;
42 with Namet
; use Namet
;
43 with Nmake
; use Nmake
;
44 with Nlists
; use Nlists
;
46 with Output
; use Output
;
48 with Sem_Aux
; use Sem_Aux
;
49 with Sem_Cat
; use Sem_Cat
;
50 with Sem_Ch3
; use Sem_Ch3
;
51 with Sem_Ch6
; use Sem_Ch6
;
52 with Sem_Ch8
; use Sem_Ch8
;
53 with Sem_Ch10
; use Sem_Ch10
;
54 with Sem_Ch12
; use Sem_Ch12
;
55 with Sem_Ch13
; use Sem_Ch13
;
56 with Sem_Disp
; use Sem_Disp
;
57 with Sem_Eval
; use Sem_Eval
;
58 with Sem_Util
; use Sem_Util
;
59 with Sem_Warn
; use Sem_Warn
;
60 with Snames
; use Snames
;
61 with Stand
; use Stand
;
62 with Sinfo
; use Sinfo
;
63 with Sinput
; use Sinput
;
65 with Uintp
; use Uintp
;
67 package body Sem_Ch7
is
69 -----------------------------------
70 -- Handling private declarations --
71 -----------------------------------
73 -- The principle that each entity has a single defining occurrence clashes
74 -- with the presence of two separate definitions for private types: the
75 -- first is the private type declaration, and the second is the full type
76 -- declaration. It is important that all references to the type point to
77 -- the same defining occurrence, namely the first one. To enforce the two
78 -- separate views of the entity, the corresponding information is swapped
79 -- between the two declarations. Outside of the package, the defining
80 -- occurrence only contains the private declaration information, while in
81 -- the private part and the body of the package the defining occurrence
82 -- contains the full declaration. To simplify the swap, the defining
83 -- occurrence that currently holds the private declaration points to the
84 -- full declaration. During semantic processing the defining occurrence
85 -- also points to a list of private dependents, that is to say access types
86 -- or composite types whose designated types or component types are
87 -- subtypes or derived types of the private type in question. After the
88 -- full declaration has been seen, the private dependents are updated to
89 -- indicate that they have full definitions.
91 -----------------------
92 -- Local Subprograms --
93 -----------------------
95 procedure Analyze_Package_Body_Helper
(N
: Node_Id
);
96 -- Does all the real work of Analyze_Package_Body
98 procedure Check_Anonymous_Access_Types
101 -- If the spec of a package has a limited_with_clause, it may declare
102 -- anonymous access types whose designated type is a limited view, such an
103 -- anonymous access return type for a function. This access type cannot be
104 -- elaborated in the spec itself, but it may need an itype reference if it
105 -- is used within a nested scope. In that case the itype reference is
106 -- created at the beginning of the corresponding package body and inserted
107 -- before other body declarations.
109 procedure Install_Package_Entity
(Id
: Entity_Id
);
110 -- Supporting procedure for Install_{Visible,Private}_Declarations. Places
111 -- one entity on its visibility chain, and recurses on the visible part if
112 -- the entity is an inner package.
114 function Is_Private_Base_Type
(E
: Entity_Id
) return Boolean;
115 -- True for a private type that is not a subtype
117 function Is_Visible_Dependent
(Dep
: Entity_Id
) return Boolean;
118 -- If the private dependent is a private type whose full view is derived
119 -- from the parent type, its full properties are revealed only if we are in
120 -- the immediate scope of the private dependent. Should this predicate be
121 -- tightened further???
123 procedure Declare_Inherited_Private_Subprograms
(Id
: Entity_Id
);
124 -- Called upon entering the private part of a public child package and the
125 -- body of a nested package, to potentially declare certain inherited
126 -- subprograms that were inherited by types in the visible part, but whose
127 -- declaration was deferred because the parent operation was private and
128 -- not visible at that point. These subprograms are located by traversing
129 -- the visible part declarations looking for non-private type extensions
130 -- and then examining each of the primitive operations of such types to
131 -- find those that were inherited but declared with a special internal
132 -- name. Each such operation is now declared as an operation with a normal
133 -- name (using the name of the parent operation) and replaces the previous
134 -- implicit operation in the primitive operations list of the type. If the
135 -- inherited private operation has been overridden, then it's replaced by
136 -- the overriding operation.
138 --------------------------
139 -- Analyze_Package_Body --
140 --------------------------
142 procedure Analyze_Package_Body
(N
: Node_Id
) is
143 Loc
: constant Source_Ptr
:= Sloc
(N
);
147 Write_Str
("==> package body ");
148 Write_Name
(Chars
(Defining_Entity
(N
)));
149 Write_Str
(" from ");
150 Write_Location
(Loc
);
155 -- The real work is split out into the helper, so it can do "return;"
156 -- without skipping the debug output.
158 Analyze_Package_Body_Helper
(N
);
162 Write_Str
("<== package body ");
163 Write_Name
(Chars
(Defining_Entity
(N
)));
164 Write_Str
(" from ");
165 Write_Location
(Loc
);
168 end Analyze_Package_Body
;
170 ---------------------------------
171 -- Analyze_Package_Body_Helper --
172 ---------------------------------
174 procedure Analyze_Package_Body_Helper
(N
: Node_Id
) is
178 Last_Spec_Entity
: Entity_Id
;
182 procedure Install_Composite_Operations
(P
: Entity_Id
);
183 -- Composite types declared in the current scope may depend on types
184 -- that were private at the point of declaration, and whose full view
185 -- is now in scope. Indicate that the corresponding operations on the
186 -- composite type are available.
188 ----------------------------------
189 -- Install_Composite_Operations --
190 ----------------------------------
192 procedure Install_Composite_Operations
(P
: Entity_Id
) is
196 Id
:= First_Entity
(P
);
197 while Present
(Id
) loop
199 and then (Is_Limited_Composite
(Id
)
200 or else Is_Private_Composite
(Id
))
201 and then No
(Private_Component
(Id
))
203 Set_Is_Limited_Composite
(Id
, False);
204 Set_Is_Private_Composite
(Id
, False);
209 end Install_Composite_Operations
;
211 -- Start of processing for Analyze_Package_Body_Helper
214 -- Find corresponding package specification, and establish the current
215 -- scope. The visible defining entity for the package is the defining
216 -- occurrence in the spec. On exit from the package body, all body
217 -- declarations are attached to the defining entity for the body, but
218 -- the later is never used for name resolution. In this fashion there
219 -- is only one visible entity that denotes the package.
221 -- Set Body_Id. Note that this Will be reset to point to the generic
222 -- copy later on in the generic case.
224 Body_Id
:= Defining_Entity
(N
);
226 if Present
(Corresponding_Spec
(N
)) then
228 -- Body is body of package instantiation. Corresponding spec has
231 Spec_Id
:= Corresponding_Spec
(N
);
232 Pack_Decl
:= Unit_Declaration_Node
(Spec_Id
);
235 Spec_Id
:= Current_Entity_In_Scope
(Defining_Entity
(N
));
238 and then Is_Package_Or_Generic_Package
(Spec_Id
)
240 Pack_Decl
:= Unit_Declaration_Node
(Spec_Id
);
242 if Nkind
(Pack_Decl
) = N_Package_Renaming_Declaration
then
243 Error_Msg_N
("cannot supply body for package renaming", N
);
246 elsif Present
(Corresponding_Body
(Pack_Decl
)) then
247 Error_Msg_N
("redefinition of package body", N
);
252 Error_Msg_N
("missing specification for package body", N
);
256 if Is_Package_Or_Generic_Package
(Spec_Id
)
257 and then (Scope
(Spec_Id
) = Standard_Standard
258 or else Is_Child_Unit
(Spec_Id
))
259 and then not Unit_Requires_Body
(Spec_Id
)
261 if Ada_Version
= Ada_83
then
263 ("optional package body (not allowed in Ada 95)?", N
);
265 Error_Msg_N
("spec of this package does not allow a body", N
);
270 Set_Is_Compilation_Unit
(Body_Id
, Is_Compilation_Unit
(Spec_Id
));
271 Style
.Check_Identifier
(Body_Id
, Spec_Id
);
273 if Is_Child_Unit
(Spec_Id
) then
274 if Nkind
(Parent
(N
)) /= N_Compilation_Unit
then
276 ("body of child unit& cannot be an inner package", N
, Spec_Id
);
279 Set_Is_Child_Unit
(Body_Id
);
282 -- Generic package case
284 if Ekind
(Spec_Id
) = E_Generic_Package
then
286 -- Disable expansion and perform semantic analysis on copy. The
287 -- unannotated body will be used in all instantiations.
289 Body_Id
:= Defining_Entity
(N
);
290 Set_Ekind
(Body_Id
, E_Package_Body
);
291 Set_Scope
(Body_Id
, Scope
(Spec_Id
));
292 Set_Is_Obsolescent
(Body_Id
, Is_Obsolescent
(Spec_Id
));
293 Set_Body_Entity
(Spec_Id
, Body_Id
);
294 Set_Spec_Entity
(Body_Id
, Spec_Id
);
296 New_N
:= Copy_Generic_Node
(N
, Empty
, Instantiating
=> False);
299 -- Update Body_Id to point to the copied node for the remainder of
302 Body_Id
:= Defining_Entity
(N
);
306 -- The Body_Id is that of the copied node in the generic case, the
307 -- current node otherwise. Note that N was rewritten above, so we must
308 -- be sure to get the latest Body_Id value.
310 Set_Ekind
(Body_Id
, E_Package_Body
);
311 Set_Body_Entity
(Spec_Id
, Body_Id
);
312 Set_Spec_Entity
(Body_Id
, Spec_Id
);
314 -- Defining name for the package body is not a visible entity: Only the
315 -- defining name for the declaration is visible.
317 Set_Etype
(Body_Id
, Standard_Void_Type
);
318 Set_Scope
(Body_Id
, Scope
(Spec_Id
));
319 Set_Corresponding_Spec
(N
, Spec_Id
);
320 Set_Corresponding_Body
(Pack_Decl
, Body_Id
);
322 -- The body entity is not used for semantics or code generation, but
323 -- it is attached to the entity list of the enclosing scope to simplify
324 -- the listing of back-annotations for the types it main contain.
326 if Scope
(Spec_Id
) /= Standard_Standard
then
327 Append_Entity
(Body_Id
, Scope
(Spec_Id
));
330 -- Indicate that we are currently compiling the body of the package
332 Set_In_Package_Body
(Spec_Id
);
333 Set_Has_Completion
(Spec_Id
);
334 Last_Spec_Entity
:= Last_Entity
(Spec_Id
);
336 Push_Scope
(Spec_Id
);
338 Set_Categorization_From_Pragmas
(N
);
340 Install_Visible_Declarations
(Spec_Id
);
341 Install_Private_Declarations
(Spec_Id
);
342 Install_Private_With_Clauses
(Spec_Id
);
343 Install_Composite_Operations
(Spec_Id
);
345 Check_Anonymous_Access_Types
(Spec_Id
, N
);
347 if Ekind
(Spec_Id
) = E_Generic_Package
then
348 Set_Use
(Generic_Formal_Declarations
(Pack_Decl
));
351 Set_Use
(Visible_Declarations
(Specification
(Pack_Decl
)));
352 Set_Use
(Private_Declarations
(Specification
(Pack_Decl
)));
354 -- This is a nested package, so it may be necessary to declare certain
355 -- inherited subprograms that are not yet visible because the parent
356 -- type's subprograms are now visible.
358 if Ekind
(Scope
(Spec_Id
)) = E_Package
359 and then Scope
(Spec_Id
) /= Standard_Standard
361 Declare_Inherited_Private_Subprograms
(Spec_Id
);
364 if Present
(Declarations
(N
)) then
365 Analyze_Declarations
(Declarations
(N
));
366 Inspect_Deferred_Constant_Completion
(Declarations
(N
));
369 -- Analyze_Declarations has caused freezing of all types. Now generate
370 -- bodies for RACW primitives and stream attributes, if any.
372 if Ekind
(Spec_Id
) = E_Package
and then Has_RACW
(Spec_Id
) then
374 -- Attach subprogram bodies to support RACWs declared in spec
376 Append_RACW_Bodies
(Declarations
(N
), Spec_Id
);
377 Analyze_List
(Declarations
(N
));
380 HSS
:= Handled_Statement_Sequence
(N
);
382 if Present
(HSS
) then
383 Process_End_Label
(HSS
, 't', Spec_Id
);
386 -- Check that elaboration code in a preelaborable package body is
387 -- empty other than null statements and labels (RM 10.2.1(6)).
389 Validate_Null_Statement_Sequence
(N
);
392 Validate_Categorization_Dependency
(N
, Spec_Id
);
393 Check_Completion
(Body_Id
);
395 -- Generate start of body reference. Note that we do this fairly late,
396 -- because the call will use In_Extended_Main_Source_Unit as a check,
397 -- and we want to make sure that Corresponding_Stub links are set
399 Generate_Reference
(Spec_Id
, Body_Id
, 'b', Set_Ref
=> False);
401 -- For a generic package, collect global references and mark them on
402 -- the original body so that they are not resolved again at the point
405 if Ekind
(Spec_Id
) /= E_Package
then
406 Save_Global_References
(Original_Node
(N
));
410 -- The entities of the package body have so far been chained onto the
411 -- declaration chain for the spec. That's been fine while we were in the
412 -- body, since we wanted them to be visible, but now that we are leaving
413 -- the package body, they are no longer visible, so we remove them from
414 -- the entity chain of the package spec entity, and copy them to the
415 -- entity chain of the package body entity, where they will never again
418 if Present
(Last_Spec_Entity
) then
419 Set_First_Entity
(Body_Id
, Next_Entity
(Last_Spec_Entity
));
420 Set_Next_Entity
(Last_Spec_Entity
, Empty
);
421 Set_Last_Entity
(Body_Id
, Last_Entity
(Spec_Id
));
422 Set_Last_Entity
(Spec_Id
, Last_Spec_Entity
);
425 Set_First_Entity
(Body_Id
, First_Entity
(Spec_Id
));
426 Set_Last_Entity
(Body_Id
, Last_Entity
(Spec_Id
));
427 Set_First_Entity
(Spec_Id
, Empty
);
428 Set_Last_Entity
(Spec_Id
, Empty
);
431 End_Package_Scope
(Spec_Id
);
433 -- All entities declared in body are not visible
439 E
:= First_Entity
(Body_Id
);
440 while Present
(E
) loop
441 Set_Is_Immediately_Visible
(E
, False);
442 Set_Is_Potentially_Use_Visible
(E
, False);
445 -- Child units may appear on the entity list (e.g. if they appear
446 -- in the context of a subunit) but they are not body entities.
448 if not Is_Child_Unit
(E
) then
449 Set_Is_Package_Body_Entity
(E
);
456 Check_References
(Body_Id
);
458 -- For a generic unit, check that the formal parameters are referenced,
459 -- and that local variables are used, as for regular packages.
461 if Ekind
(Spec_Id
) = E_Generic_Package
then
462 Check_References
(Spec_Id
);
465 -- The processing so far has made all entities of the package body
466 -- public (i.e. externally visible to the linker). This is in general
467 -- necessary, since inlined or generic bodies, for which code is
468 -- generated in other units, may need to see these entities. The
469 -- following loop runs backwards from the end of the entities of the
470 -- package body making these entities invisible until we reach a
471 -- referencer, i.e. a declaration that could reference a previous
472 -- declaration, a generic body or an inlined body, or a stub (which may
473 -- contain either of these). This is of course an approximation, but it
474 -- is conservative and definitely correct.
476 -- We only do this at the outer (library) level non-generic packages.
477 -- The reason is simply to cut down on the number of global symbols
478 -- generated, which has a double effect: (1) to make the compilation
479 -- process more efficient and (2) to give the code generator more
480 -- freedom to optimize within each unit, especially subprograms.
482 if (Scope
(Spec_Id
) = Standard_Standard
or else Is_Child_Unit
(Spec_Id
))
483 and then not Is_Generic_Unit
(Spec_Id
)
484 and then Present
(Declarations
(N
))
486 Make_Non_Public_Where_Possible
: declare
488 function Has_Referencer
490 Outer
: Boolean) return Boolean;
491 -- Traverse the given list of declarations in reverse order.
492 -- Return True if a referencer is present. Return False if none is
493 -- found. The Outer parameter is True for the outer level call and
494 -- False for inner level calls for nested packages. If Outer is
495 -- True, then any entities up to the point of hitting a referencer
496 -- get their Is_Public flag cleared, so that the entities will be
497 -- treated as static entities in the C sense, and need not have
498 -- fully qualified names. Furthermore, if the referencer is an
499 -- inlined subprogram that doesn't reference other subprograms,
500 -- we keep clearing the Is_Public flag on subprograms. For inner
501 -- levels, we need all names to be fully qualified to deal with
502 -- the same name appearing in parallel packages (right now this
503 -- is tied to their being external).
509 function Has_Referencer
511 Outer
: Boolean) return Boolean
513 Has_Referencer_Except_For_Subprograms
: Boolean := False;
520 function Check_Subprogram_Ref
(N
: Node_Id
)
521 return Traverse_Result
;
522 -- Look for references to subprograms
524 --------------------------
525 -- Check_Subprogram_Ref --
526 --------------------------
528 function Check_Subprogram_Ref
(N
: Node_Id
)
529 return Traverse_Result
534 -- Check name of procedure or function calls
536 if Nkind_In
(N
, N_Procedure_Call_Statement
, N_Function_Call
)
537 and then Is_Entity_Name
(Name
(N
))
542 -- Check prefix of attribute references
544 if Nkind
(N
) = N_Attribute_Reference
545 and then Is_Entity_Name
(Prefix
(N
))
546 and then Present
(Entity
(Prefix
(N
)))
547 and then Ekind
(Entity
(Prefix
(N
))) in Subprogram_Kind
552 -- Check value of constants
554 if Nkind
(N
) = N_Identifier
555 and then Present
(Entity
(N
))
556 and then Ekind
(Entity
(N
)) = E_Constant
558 V
:= Constant_Value
(Entity
(N
));
560 and then not Compile_Time_Known_Value_Or_Aggr
(V
)
567 end Check_Subprogram_Ref
;
569 function Check_Subprogram_Refs
is
570 new Traverse_Func
(Check_Subprogram_Ref
);
572 -- Start of processing for Has_Referencer
580 while Present
(D
) loop
583 if K
in N_Body_Stub
then
586 -- Processing for subprogram bodies
588 elsif K
= N_Subprogram_Body
then
589 if Acts_As_Spec
(D
) then
590 E
:= Defining_Entity
(D
);
592 -- An inlined body acts as a referencer. Note also
593 -- that we never reset Is_Public for an inlined
594 -- subprogram. Gigi requires Is_Public to be set.
596 -- Note that we test Has_Pragma_Inline here rather
597 -- than Is_Inlined. We are compiling this for a
598 -- client, and it is the client who will decide if
599 -- actual inlining should occur, so we need to assume
600 -- that the procedure could be inlined for the purpose
601 -- of accessing global entities.
603 if Has_Pragma_Inline
(E
) then
605 and then Check_Subprogram_Refs
(D
) = OK
607 Has_Referencer_Except_For_Subprograms
:= True;
612 Set_Is_Public
(E
, False);
616 E
:= Corresponding_Spec
(D
);
620 -- A generic subprogram body acts as a referencer
622 if Is_Generic_Unit
(E
) then
626 if Has_Pragma_Inline
(E
) or else Is_Inlined
(E
) then
628 and then Check_Subprogram_Refs
(D
) = OK
630 Has_Referencer_Except_For_Subprograms
:= True;
638 -- Processing for package bodies
640 elsif K
= N_Package_Body
641 and then not Has_Referencer_Except_For_Subprograms
642 and then Present
(Corresponding_Spec
(D
))
644 E
:= Corresponding_Spec
(D
);
646 -- Generic package body is a referencer. It would seem
647 -- that we only have to consider generics that can be
648 -- exported, i.e. where the corresponding spec is the
649 -- spec of the current package, but because of nested
650 -- instantiations, a fully private generic body may
651 -- export other private body entities.
653 if Is_Generic_Unit
(E
) then
656 -- For non-generic package body, recurse into body unless
657 -- this is an instance, we ignore instances since they
658 -- cannot have references that affect outer entities.
660 elsif not Is_Generic_Instance
(E
) then
662 (Declarations
(D
), Outer
=> False)
668 -- Processing for package specs, recurse into declarations.
669 -- Again we skip this for the case of generic instances.
671 elsif K
= N_Package_Declaration
672 and then not Has_Referencer_Except_For_Subprograms
674 S
:= Specification
(D
);
676 if not Is_Generic_Unit
(Defining_Entity
(S
)) then
678 (Private_Declarations
(S
), Outer
=> False)
682 (Visible_Declarations
(S
), Outer
=> False)
688 -- Objects and exceptions need not be public if we have not
689 -- encountered a referencer so far. We only reset the flag
690 -- for outer level entities that are not imported/exported,
691 -- and which have no interface name.
693 elsif Nkind_In
(K
, N_Object_Declaration
,
694 N_Exception_Declaration
,
695 N_Subprogram_Declaration
)
697 E
:= Defining_Entity
(D
);
700 and then (not Has_Referencer_Except_For_Subprograms
701 or else K
= N_Subprogram_Declaration
)
702 and then not Is_Imported
(E
)
703 and then not Is_Exported
(E
)
704 and then No
(Interface_Name
(E
))
706 Set_Is_Public
(E
, False);
713 return Has_Referencer_Except_For_Subprograms
;
716 -- Start of processing for Make_Non_Public_Where_Possible
721 pragma Warnings
(Off
, Discard
);
724 Discard
:= Has_Referencer
(Declarations
(N
), Outer
=> True);
726 end Make_Non_Public_Where_Possible
;
729 -- If expander is not active, then here is where we turn off the
730 -- In_Package_Body flag, otherwise it is turned off at the end of the
731 -- corresponding expansion routine. If this is an instance body, we need
732 -- to qualify names of local entities, because the body may have been
733 -- compiled as a preliminary to another instantiation.
735 if not Expander_Active
then
736 Set_In_Package_Body
(Spec_Id
, False);
738 if Is_Generic_Instance
(Spec_Id
)
739 and then Operating_Mode
= Generate_Code
741 Qualify_Entity_Names
(N
);
744 end Analyze_Package_Body_Helper
;
746 ---------------------------------
747 -- Analyze_Package_Declaration --
748 ---------------------------------
750 procedure Analyze_Package_Declaration
(N
: Node_Id
) is
751 Id
: constant Node_Id
:= Defining_Entity
(N
);
754 -- True when in the context of a declared pure library unit
756 Body_Required
: Boolean;
757 -- True when this package declaration requires a corresponding body
760 -- True when this package declaration is not a nested declaration
763 -- Ada 2005 (AI-217): Check if the package has been erroneously named
764 -- in a limited-with clause of its own context. In this case the error
765 -- has been previously notified by Analyze_Context.
767 -- limited with Pkg; -- ERROR
768 -- package Pkg is ...
770 if From_With_Type
(Id
) then
775 Write_Str
("==> package spec ");
776 Write_Name
(Chars
(Id
));
777 Write_Str
(" from ");
778 Write_Location
(Sloc
(N
));
783 Generate_Definition
(Id
);
785 Set_Ekind
(Id
, E_Package
);
786 Set_Etype
(Id
, Standard_Void_Type
);
790 PF
:= Is_Pure
(Enclosing_Lib_Unit_Entity
);
791 Set_Is_Pure
(Id
, PF
);
793 Set_Categorization_From_Pragmas
(N
);
795 Analyze
(Specification
(N
));
796 Validate_Categorization_Dependency
(N
, Id
);
798 Body_Required
:= Unit_Requires_Body
(Id
);
800 -- When this spec does not require an explicit body, we know that there
801 -- are no entities requiring completion in the language sense; we call
802 -- Check_Completion here only to ensure that any nested package
803 -- declaration that requires an implicit body gets one. (In the case
804 -- where a body is required, Check_Completion is called at the end of
805 -- the body's declarative part.)
807 if not Body_Required
then
811 Comp_Unit
:= Nkind
(Parent
(N
)) = N_Compilation_Unit
;
814 -- Set Body_Required indication on the compilation unit node, and
815 -- determine whether elaboration warnings may be meaningful on it.
817 Set_Body_Required
(Parent
(N
), Body_Required
);
819 if not Body_Required
then
820 Set_Suppress_Elaboration_Warnings
(Id
);
825 End_Package_Scope
(Id
);
827 -- For the declaration of a library unit that is a remote types package,
828 -- check legality rules regarding availability of stream attributes for
829 -- types that contain non-remote access values. This subprogram performs
830 -- visibility tests that rely on the fact that we have exited the scope
834 Validate_RT_RAT_Component
(N
);
839 Write_Str
("<== package spec ");
840 Write_Name
(Chars
(Id
));
841 Write_Str
(" from ");
842 Write_Location
(Sloc
(N
));
847 Analyze_Aspect_Specifications
(N
, Id
, Aspect_Specifications
(N
));
848 end Analyze_Package_Declaration
;
850 -----------------------------------
851 -- Analyze_Package_Specification --
852 -----------------------------------
854 -- Note that this code is shared for the analysis of generic package specs
855 -- (see Sem_Ch12.Analyze_Generic_Package_Declaration for details).
857 procedure Analyze_Package_Specification
(N
: Node_Id
) is
858 Id
: constant Entity_Id
:= Defining_Entity
(N
);
859 Orig_Decl
: constant Node_Id
:= Original_Node
(Parent
(N
));
860 Vis_Decls
: constant List_Id
:= Visible_Declarations
(N
);
861 Priv_Decls
: constant List_Id
:= Private_Declarations
(N
);
864 Public_Child
: Boolean;
866 Private_With_Clauses_Installed
: Boolean := False;
867 -- In Ada 2005, private with_clauses are visible in the private part
868 -- of a nested package, even if it appears in the public part of the
869 -- enclosing package. This requires a separate step to install these
870 -- private_with_clauses, and remove them at the end of the nested
873 procedure Clear_Constants
(Id
: Entity_Id
; FE
: Entity_Id
);
874 -- Clears constant indications (Never_Set_In_Source, Constant_Value, and
875 -- Is_True_Constant) on all variables that are entities of Id, and on
876 -- the chain whose first element is FE. A recursive call is made for all
877 -- packages and generic packages.
879 procedure Generate_Parent_References
;
880 -- For a child unit, generate references to parent units, for
881 -- GPS navigation purposes.
883 function Is_Public_Child
(Child
, Unit
: Entity_Id
) return Boolean;
884 -- Child and Unit are entities of compilation units. True if Child
885 -- is a public child of Parent as defined in 10.1.1
887 procedure Inspect_Unchecked_Union_Completion
(Decls
: List_Id
);
888 -- Detects all incomplete or private type declarations having a known
889 -- discriminant part that are completed by an Unchecked_Union. Emits
890 -- the error message "Unchecked_Union may not complete discriminated
893 procedure Install_Parent_Private_Declarations
(Inst_Id
: Entity_Id
);
894 -- Given the package entity of a generic package instantiation or
895 -- formal package whose corresponding generic is a child unit, installs
896 -- the private declarations of each of the child unit's parents.
897 -- This has to be done at the point of entering the instance package's
898 -- private part rather than being done in Sem_Ch12.Install_Parent
899 -- (which is where the parents' visible declarations are installed).
901 ---------------------
902 -- Clear_Constants --
903 ---------------------
905 procedure Clear_Constants
(Id
: Entity_Id
; FE
: Entity_Id
) is
909 -- Ignore package renamings, not interesting and they can cause self
910 -- referential loops in the code below.
912 if Nkind
(Parent
(Id
)) = N_Package_Renaming_Declaration
then
916 -- Note: in the loop below, the check for Next_Entity pointing back
917 -- to the package entity may seem odd, but it is needed, because a
918 -- package can contain a renaming declaration to itself, and such
919 -- renamings are generated automatically within package instances.
922 while Present
(E
) and then E
/= Id
loop
923 if Is_Assignable
(E
) then
924 Set_Never_Set_In_Source
(E
, False);
925 Set_Is_True_Constant
(E
, False);
926 Set_Current_Value
(E
, Empty
);
927 Set_Is_Known_Null
(E
, False);
928 Set_Last_Assignment
(E
, Empty
);
930 if not Can_Never_Be_Null
(E
) then
931 Set_Is_Known_Non_Null
(E
, False);
934 elsif Is_Package_Or_Generic_Package
(E
) then
935 Clear_Constants
(E
, First_Entity
(E
));
936 Clear_Constants
(E
, First_Private_Entity
(E
));
943 --------------------------------
944 -- Generate_Parent_References --
945 --------------------------------
947 procedure Generate_Parent_References
is
948 Decl
: constant Node_Id
:= Parent
(N
);
951 if Id
= Cunit_Entity
(Main_Unit
)
952 or else Parent
(Decl
) = Library_Unit
(Cunit
(Main_Unit
))
954 Generate_Reference
(Id
, Scope
(Id
), 'k', False);
956 elsif not Nkind_In
(Unit
(Cunit
(Main_Unit
)), N_Subprogram_Body
,
959 -- If current unit is an ancestor of main unit, generate a
960 -- reference to its own parent.
964 Main_Spec
: Node_Id
:= Unit
(Cunit
(Main_Unit
));
967 if Nkind
(Main_Spec
) = N_Package_Body
then
968 Main_Spec
:= Unit
(Library_Unit
(Cunit
(Main_Unit
)));
971 U
:= Parent_Spec
(Main_Spec
);
972 while Present
(U
) loop
973 if U
= Parent
(Decl
) then
974 Generate_Reference
(Id
, Scope
(Id
), 'k', False);
977 elsif Nkind
(Unit
(U
)) = N_Package_Body
then
981 U
:= Parent_Spec
(Unit
(U
));
986 end Generate_Parent_References
;
988 ---------------------
989 -- Is_Public_Child --
990 ---------------------
992 function Is_Public_Child
(Child
, Unit
: Entity_Id
) return Boolean is
994 if not Is_Private_Descendant
(Child
) then
998 return not Private_Present
(
999 Parent
(Unit_Declaration_Node
(Child
)));
1001 return Is_Public_Child
(Scope
(Child
), Unit
);
1004 end Is_Public_Child
;
1006 ----------------------------------------
1007 -- Inspect_Unchecked_Union_Completion --
1008 ----------------------------------------
1010 procedure Inspect_Unchecked_Union_Completion
(Decls
: List_Id
) is
1014 Decl
:= First
(Decls
);
1015 while Present
(Decl
) loop
1017 -- We are looking at an incomplete or private type declaration
1018 -- with a known_discriminant_part whose full view is an
1021 if Nkind_In
(Decl
, N_Incomplete_Type_Declaration
,
1022 N_Private_Type_Declaration
)
1023 and then Has_Discriminants
(Defining_Identifier
(Decl
))
1024 and then Present
(Full_View
(Defining_Identifier
(Decl
)))
1026 Is_Unchecked_Union
(Full_View
(Defining_Identifier
(Decl
)))
1029 ("completion of discriminated partial view "
1030 & "cannot be an Unchecked_Union",
1031 Full_View
(Defining_Identifier
(Decl
)));
1036 end Inspect_Unchecked_Union_Completion
;
1038 -----------------------------------------
1039 -- Install_Parent_Private_Declarations --
1040 -----------------------------------------
1042 procedure Install_Parent_Private_Declarations
(Inst_Id
: Entity_Id
) is
1043 Inst_Par
: Entity_Id
;
1044 Gen_Par
: Entity_Id
;
1045 Inst_Node
: Node_Id
;
1048 Inst_Par
:= Inst_Id
;
1051 Generic_Parent
(Specification
(Unit_Declaration_Node
(Inst_Par
)));
1052 while Present
(Gen_Par
) and then Is_Child_Unit
(Gen_Par
) loop
1053 Inst_Node
:= Get_Package_Instantiation_Node
(Inst_Par
);
1055 if Nkind_In
(Inst_Node
, N_Package_Instantiation
,
1056 N_Formal_Package_Declaration
)
1057 and then Nkind
(Name
(Inst_Node
)) = N_Expanded_Name
1059 Inst_Par
:= Entity
(Prefix
(Name
(Inst_Node
)));
1061 if Present
(Renamed_Entity
(Inst_Par
)) then
1062 Inst_Par
:= Renamed_Entity
(Inst_Par
);
1067 (Specification
(Unit_Declaration_Node
(Inst_Par
)));
1069 -- Install the private declarations and private use clauses
1070 -- of a parent instance of the child instance, unless the
1071 -- parent instance private declarations have already been
1072 -- installed earlier in Analyze_Package_Specification, which
1073 -- happens when a generic child is instantiated, and the
1074 -- instance is a child of the parent instance.
1076 -- Installing the use clauses of the parent instance twice
1077 -- is both unnecessary and wrong, because it would cause the
1078 -- clauses to be chained to themselves in the use clauses
1079 -- list of the scope stack entry. That in turn would cause
1080 -- an endless loop from End_Use_Clauses upon scope exit.
1082 -- The parent is now fully visible. It may be a hidden open
1083 -- scope if we are currently compiling some child instance
1084 -- declared within it, but while the current instance is being
1085 -- compiled the parent is immediately visible. In particular
1086 -- its entities must remain visible if a stack save/restore
1087 -- takes place through a call to Rtsfind.
1089 if Present
(Gen_Par
) then
1090 if not In_Private_Part
(Inst_Par
) then
1091 Install_Private_Declarations
(Inst_Par
);
1092 Set_Use
(Private_Declarations
1094 (Unit_Declaration_Node
(Inst_Par
))));
1095 Set_Is_Hidden_Open_Scope
(Inst_Par
, False);
1098 -- If we've reached the end of the generic instance parents,
1099 -- then finish off by looping through the nongeneric parents
1100 -- and installing their private declarations.
1103 while Present
(Inst_Par
)
1104 and then Inst_Par
/= Standard_Standard
1105 and then (not In_Open_Scopes
(Inst_Par
)
1106 or else not In_Private_Part
(Inst_Par
))
1108 Install_Private_Declarations
(Inst_Par
);
1109 Set_Use
(Private_Declarations
1111 (Unit_Declaration_Node
(Inst_Par
))));
1112 Inst_Par
:= Scope
(Inst_Par
);
1122 end Install_Parent_Private_Declarations
;
1124 -- Start of processing for Analyze_Package_Specification
1127 if Present
(Vis_Decls
) then
1128 Analyze_Declarations
(Vis_Decls
);
1131 -- Verify that incomplete types have received full declarations and
1132 -- also build invariant procedures for any types with invariants.
1134 E
:= First_Entity
(Id
);
1135 while Present
(E
) loop
1137 -- Check on incomplete types
1139 if Ekind
(E
) = E_Incomplete_Type
1140 and then No
(Full_View
(E
))
1142 Error_Msg_N
("no declaration in visible part for incomplete}", E
);
1145 -- Build invariant procedures
1147 if Is_Type
(E
) and then Has_Invariants
(E
) then
1148 Build_Invariant_Procedure
(E
, N
);
1154 if Is_Remote_Call_Interface
(Id
)
1155 and then Nkind
(Parent
(Parent
(N
))) = N_Compilation_Unit
1157 Validate_RCI_Declarations
(Id
);
1160 -- Save global references in the visible declarations, before installing
1161 -- private declarations of parent unit if there is one, because the
1162 -- privacy status of types defined in the parent will change. This is
1163 -- only relevant for generic child units, but is done in all cases for
1166 if Ekind
(Id
) = E_Generic_Package
1167 and then Nkind
(Orig_Decl
) = N_Generic_Package_Declaration
1170 Orig_Spec
: constant Node_Id
:= Specification
(Orig_Decl
);
1171 Save_Priv
: constant List_Id
:= Private_Declarations
(Orig_Spec
);
1173 Set_Private_Declarations
(Orig_Spec
, Empty_List
);
1174 Save_Global_References
(Orig_Decl
);
1175 Set_Private_Declarations
(Orig_Spec
, Save_Priv
);
1179 -- If package is a public child unit, then make the private declarations
1180 -- of the parent visible.
1182 Public_Child
:= False;
1186 Pack_Decl
: Node_Id
;
1191 Par_Spec
:= Parent_Spec
(Parent
(N
));
1193 -- If the package is formal package of an enclosing generic, it is
1194 -- transformed into a local generic declaration, and compiled to make
1195 -- its spec available. We need to retrieve the original generic to
1196 -- determine whether it is a child unit, and install its parents.
1200 Nkind
(Original_Node
(Parent
(N
))) = N_Formal_Package_Declaration
1202 Par
:= Entity
(Name
(Original_Node
(Parent
(N
))));
1203 Par_Spec
:= Parent_Spec
(Unit_Declaration_Node
(Par
));
1206 if Present
(Par_Spec
) then
1207 Generate_Parent_References
;
1209 while Scope
(Par
) /= Standard_Standard
1210 and then Is_Public_Child
(Id
, Par
)
1211 and then In_Open_Scopes
(Par
)
1213 Public_Child
:= True;
1215 Install_Private_Declarations
(Par
);
1216 Install_Private_With_Clauses
(Par
);
1217 Pack_Decl
:= Unit_Declaration_Node
(Par
);
1218 Set_Use
(Private_Declarations
(Specification
(Pack_Decl
)));
1223 if Is_Compilation_Unit
(Id
) then
1224 Install_Private_With_Clauses
(Id
);
1227 -- The current compilation unit may include private with_clauses,
1228 -- which are visible in the private part of the current nested
1229 -- package, and have to be installed now. This is not done for
1230 -- nested instantiations, where the private with_clauses of the
1231 -- enclosing unit have no effect once the instantiation info is
1232 -- established and we start analyzing the package declaration.
1235 Comp_Unit
: constant Entity_Id
:= Cunit_Entity
(Current_Sem_Unit
);
1237 if Is_Package_Or_Generic_Package
(Comp_Unit
)
1238 and then not In_Private_Part
(Comp_Unit
)
1239 and then not In_Instance
1241 Install_Private_With_Clauses
(Comp_Unit
);
1242 Private_With_Clauses_Installed
:= True;
1247 -- If this is a package associated with a generic instance or formal
1248 -- package, then the private declarations of each of the generic's
1249 -- parents must be installed at this point.
1251 if Is_Generic_Instance
(Id
) then
1252 Install_Parent_Private_Declarations
(Id
);
1255 -- Analyze private part if present. The flag In_Private_Part is reset
1256 -- in End_Package_Scope.
1258 L
:= Last_Entity
(Id
);
1260 if Present
(Priv_Decls
) then
1261 Set_In_Private_Part
(Id
);
1263 -- Upon entering a public child's private part, it may be necessary
1264 -- to declare subprograms that were derived in the package's visible
1265 -- part but not yet made visible.
1267 if Public_Child
then
1268 Declare_Inherited_Private_Subprograms
(Id
);
1271 Analyze_Declarations
(Priv_Decls
);
1273 -- Check the private declarations for incomplete deferred constants
1275 Inspect_Deferred_Constant_Completion
(Priv_Decls
);
1277 -- The first private entity is the immediate follower of the last
1278 -- visible entity, if there was one.
1281 Set_First_Private_Entity
(Id
, Next_Entity
(L
));
1283 Set_First_Private_Entity
(Id
, First_Entity
(Id
));
1286 -- There may be inherited private subprograms that need to be declared,
1287 -- even in the absence of an explicit private part. If there are any
1288 -- public declarations in the package and the package is a public child
1289 -- unit, then an implicit private part is assumed.
1291 elsif Present
(L
) and then Public_Child
then
1292 Set_In_Private_Part
(Id
);
1293 Declare_Inherited_Private_Subprograms
(Id
);
1294 Set_First_Private_Entity
(Id
, Next_Entity
(L
));
1297 E
:= First_Entity
(Id
);
1298 while Present
(E
) loop
1300 -- Check rule of 3.6(11), which in general requires waiting till all
1301 -- full types have been seen.
1303 if Ekind
(E
) = E_Record_Type
or else Ekind
(E
) = E_Array_Type
then
1304 Check_Aliased_Component_Types
(E
);
1307 -- Check preelaborable initialization for full type completing a
1308 -- private type for which pragma Preelaborable_Initialization given.
1311 and then Must_Have_Preelab_Init
(E
)
1312 and then not Has_Preelaborable_Initialization
(E
)
1315 ("full view of & does not have preelaborable initialization", E
);
1321 -- Ada 2005 (AI-216): The completion of an incomplete or private type
1322 -- declaration having a known_discriminant_part shall not be an
1323 -- Unchecked_Union type.
1325 if Present
(Vis_Decls
) then
1326 Inspect_Unchecked_Union_Completion
(Vis_Decls
);
1329 if Present
(Priv_Decls
) then
1330 Inspect_Unchecked_Union_Completion
(Priv_Decls
);
1333 if Ekind
(Id
) = E_Generic_Package
1334 and then Nkind
(Orig_Decl
) = N_Generic_Package_Declaration
1335 and then Present
(Priv_Decls
)
1337 -- Save global references in private declarations, ignoring the
1338 -- visible declarations that were processed earlier.
1341 Orig_Spec
: constant Node_Id
:= Specification
(Orig_Decl
);
1342 Save_Vis
: constant List_Id
:= Visible_Declarations
(Orig_Spec
);
1343 Save_Form
: constant List_Id
:=
1344 Generic_Formal_Declarations
(Orig_Decl
);
1347 Set_Visible_Declarations
(Orig_Spec
, Empty_List
);
1348 Set_Generic_Formal_Declarations
(Orig_Decl
, Empty_List
);
1349 Save_Global_References
(Orig_Decl
);
1350 Set_Generic_Formal_Declarations
(Orig_Decl
, Save_Form
);
1351 Set_Visible_Declarations
(Orig_Spec
, Save_Vis
);
1355 Process_End_Label
(N
, 'e', Id
);
1357 -- Remove private_with_clauses of enclosing compilation unit, if they
1360 if Private_With_Clauses_Installed
then
1361 Remove_Private_With_Clauses
(Cunit
(Current_Sem_Unit
));
1364 -- For the case of a library level package, we must go through all the
1365 -- entities clearing the indications that the value may be constant and
1366 -- not modified. Why? Because any client of this package may modify
1367 -- these values freely from anywhere. This also applies to any nested
1368 -- packages or generic packages.
1370 -- For now we unconditionally clear constants for packages that are
1371 -- instances of generic packages. The reason is that we do not have the
1372 -- body yet, and we otherwise think things are unreferenced when they
1373 -- are not. This should be fixed sometime (the effect is not terrible,
1374 -- we just lose some warnings, and also some cases of value propagation)
1377 if Is_Library_Level_Entity
(Id
)
1378 or else Is_Generic_Instance
(Id
)
1380 Clear_Constants
(Id
, First_Entity
(Id
));
1381 Clear_Constants
(Id
, First_Private_Entity
(Id
));
1383 end Analyze_Package_Specification
;
1385 --------------------------------------
1386 -- Analyze_Private_Type_Declaration --
1387 --------------------------------------
1389 procedure Analyze_Private_Type_Declaration
(N
: Node_Id
) is
1390 PF
: constant Boolean := Is_Pure
(Enclosing_Lib_Unit_Entity
);
1391 Id
: constant Entity_Id
:= Defining_Identifier
(N
);
1394 Generate_Definition
(Id
);
1395 Set_Is_Pure
(Id
, PF
);
1396 Init_Size_Align
(Id
);
1398 if not Is_Package_Or_Generic_Package
(Current_Scope
)
1399 or else In_Private_Part
(Current_Scope
)
1401 Error_Msg_N
("invalid context for private declaration", N
);
1404 New_Private_Type
(N
, Id
, N
);
1405 Set_Depends_On_Private
(Id
);
1406 Analyze_Aspect_Specifications
(N
, Id
, Aspect_Specifications
(N
));
1407 end Analyze_Private_Type_Declaration
;
1409 ----------------------------------
1410 -- Check_Anonymous_Access_Types --
1411 ----------------------------------
1413 procedure Check_Anonymous_Access_Types
1414 (Spec_Id
: Entity_Id
;
1421 -- Itype references are only needed by gigi, to force elaboration of
1422 -- itypes. In the absence of code generation, they are not needed.
1424 if not Expander_Active
then
1428 E
:= First_Entity
(Spec_Id
);
1429 while Present
(E
) loop
1430 if Ekind
(E
) = E_Anonymous_Access_Type
1431 and then From_With_Type
(E
)
1433 IR
:= Make_Itype_Reference
(Sloc
(P_Body
));
1436 if No
(Declarations
(P_Body
)) then
1437 Set_Declarations
(P_Body
, New_List
(IR
));
1439 Prepend
(IR
, Declarations
(P_Body
));
1445 end Check_Anonymous_Access_Types
;
1447 -------------------------------------------
1448 -- Declare_Inherited_Private_Subprograms --
1449 -------------------------------------------
1451 procedure Declare_Inherited_Private_Subprograms
(Id
: Entity_Id
) is
1453 function Is_Primitive_Of
(T
: Entity_Id
; S
: Entity_Id
) return Boolean;
1454 -- Check whether an inherited subprogram is an operation of an untagged
1457 ---------------------
1458 -- Is_Primitive_Of --
1459 ---------------------
1461 function Is_Primitive_Of
(T
: Entity_Id
; S
: Entity_Id
) return Boolean is
1465 -- If the full view is a scalar type, the type is the anonymous base
1466 -- type, but the operation mentions the first subtype, so check the
1467 -- signature against the base type.
1469 if Base_Type
(Etype
(S
)) = Base_Type
(T
) then
1473 Formal
:= First_Formal
(S
);
1474 while Present
(Formal
) loop
1475 if Base_Type
(Etype
(Formal
)) = Base_Type
(T
) then
1479 Next_Formal
(Formal
);
1484 end Is_Primitive_Of
;
1491 Op_Elmt_2
: Elmt_Id
;
1492 Prim_Op
: Entity_Id
;
1493 New_Op
: Entity_Id
:= Empty
;
1494 Parent_Subp
: Entity_Id
;
1497 -- Start of processing for Declare_Inherited_Private_Subprograms
1500 E
:= First_Entity
(Id
);
1501 while Present
(E
) loop
1503 -- If the entity is a nonprivate type extension whose parent type
1504 -- is declared in an open scope, then the type may have inherited
1505 -- operations that now need to be made visible. Ditto if the entity
1506 -- is a formal derived type in a child unit.
1508 if ((Is_Derived_Type
(E
) and then not Is_Private_Type
(E
))
1510 (Nkind
(Parent
(E
)) = N_Private_Extension_Declaration
1511 and then Is_Generic_Type
(E
)))
1512 and then In_Open_Scopes
(Scope
(Etype
(E
)))
1513 and then Is_Base_Type
(E
)
1515 if Is_Tagged_Type
(E
) then
1516 Op_List
:= Primitive_Operations
(E
);
1518 Tag
:= First_Tag_Component
(E
);
1520 Op_Elmt
:= First_Elmt
(Op_List
);
1521 while Present
(Op_Elmt
) loop
1522 Prim_Op
:= Node
(Op_Elmt
);
1524 -- Search primitives that are implicit operations with an
1525 -- internal name whose parent operation has a normal name.
1527 if Present
(Alias
(Prim_Op
))
1528 and then Find_Dispatching_Type
(Alias
(Prim_Op
)) /= E
1529 and then not Comes_From_Source
(Prim_Op
)
1530 and then Is_Internal_Name
(Chars
(Prim_Op
))
1531 and then not Is_Internal_Name
(Chars
(Alias
(Prim_Op
)))
1533 Parent_Subp
:= Alias
(Prim_Op
);
1535 -- Case 1: Check if the type has also an explicit
1536 -- overriding for this primitive.
1538 Op_Elmt_2
:= Next_Elmt
(Op_Elmt
);
1539 while Present
(Op_Elmt_2
) loop
1541 -- Skip entities with attribute Interface_Alias since
1542 -- they are not overriding primitives (these entities
1543 -- link an interface primitive with their covering
1546 if Chars
(Node
(Op_Elmt_2
)) = Chars
(Parent_Subp
)
1547 and then Type_Conformant
(Prim_Op
, Node
(Op_Elmt_2
))
1548 and then No
(Interface_Alias
(Node
(Op_Elmt_2
)))
1550 -- The private inherited operation has been
1551 -- overridden by an explicit subprogram: replace
1552 -- the former by the latter.
1554 New_Op
:= Node
(Op_Elmt_2
);
1555 Replace_Elmt
(Op_Elmt
, New_Op
);
1556 Remove_Elmt
(Op_List
, Op_Elmt_2
);
1557 Set_Overridden_Operation
(New_Op
, Parent_Subp
);
1559 -- We don't need to inherit its dispatching slot.
1560 -- Set_All_DT_Position has previously ensured that
1561 -- the same slot was assigned to the two primitives
1564 and then Present
(DTC_Entity
(New_Op
))
1565 and then Present
(DTC_Entity
(Prim_Op
))
1567 pragma Assert
(DT_Position
(New_Op
)
1568 = DT_Position
(Prim_Op
));
1572 goto Next_Primitive
;
1575 Next_Elmt
(Op_Elmt_2
);
1578 -- Case 2: We have not found any explicit overriding and
1579 -- hence we need to declare the operation (i.e., make it
1582 Derive_Subprogram
(New_Op
, Alias
(Prim_Op
), E
, Etype
(E
));
1584 -- Inherit the dispatching slot if E is already frozen
1587 and then Present
(DTC_Entity
(Alias
(Prim_Op
)))
1589 Set_DTC_Entity_Value
(E
, New_Op
);
1590 Set_DT_Position
(New_Op
,
1591 DT_Position
(Alias
(Prim_Op
)));
1595 (Is_Dispatching_Operation
(New_Op
)
1596 and then Node
(Last_Elmt
(Op_List
)) = New_Op
);
1598 -- Substitute the new operation for the old one in the
1599 -- type's primitive operations list. Since the new
1600 -- operation was also just added to the end of list,
1601 -- the last element must be removed.
1603 -- (Question: is there a simpler way of declaring the
1604 -- operation, say by just replacing the name of the
1605 -- earlier operation, reentering it in the in the symbol
1606 -- table (how?), and marking it as private???)
1608 Replace_Elmt
(Op_Elmt
, New_Op
);
1609 Remove_Last_Elmt
(Op_List
);
1613 Next_Elmt
(Op_Elmt
);
1616 -- Generate listing showing the contents of the dispatch table
1618 if Debug_Flag_ZZ
then
1623 -- Non-tagged type, scan forward to locate inherited hidden
1626 Prim_Op
:= Next_Entity
(E
);
1627 while Present
(Prim_Op
) loop
1628 if Is_Subprogram
(Prim_Op
)
1629 and then Present
(Alias
(Prim_Op
))
1630 and then not Comes_From_Source
(Prim_Op
)
1631 and then Is_Internal_Name
(Chars
(Prim_Op
))
1632 and then not Is_Internal_Name
(Chars
(Alias
(Prim_Op
)))
1633 and then Is_Primitive_Of
(E
, Prim_Op
)
1635 Derive_Subprogram
(New_Op
, Alias
(Prim_Op
), E
, Etype
(E
));
1638 Next_Entity
(Prim_Op
);
1645 end Declare_Inherited_Private_Subprograms
;
1647 -----------------------
1648 -- End_Package_Scope --
1649 -----------------------
1651 procedure End_Package_Scope
(P
: Entity_Id
) is
1653 Uninstall_Declarations
(P
);
1655 end End_Package_Scope
;
1657 ---------------------------
1658 -- Exchange_Declarations --
1659 ---------------------------
1661 procedure Exchange_Declarations
(Id
: Entity_Id
) is
1662 Full_Id
: constant Entity_Id
:= Full_View
(Id
);
1663 H1
: constant Entity_Id
:= Homonym
(Id
);
1664 Next1
: constant Entity_Id
:= Next_Entity
(Id
);
1669 -- If missing full declaration for type, nothing to exchange
1671 if No
(Full_Id
) then
1675 -- Otherwise complete the exchange, and preserve semantic links
1677 Next2
:= Next_Entity
(Full_Id
);
1678 H2
:= Homonym
(Full_Id
);
1680 -- Reset full declaration pointer to reflect the switched entities and
1681 -- readjust the next entity chains.
1683 Exchange_Entities
(Id
, Full_Id
);
1685 Set_Next_Entity
(Id
, Next1
);
1686 Set_Homonym
(Id
, H1
);
1688 Set_Full_View
(Full_Id
, Id
);
1689 Set_Next_Entity
(Full_Id
, Next2
);
1690 Set_Homonym
(Full_Id
, H2
);
1691 end Exchange_Declarations
;
1693 ----------------------------
1694 -- Install_Package_Entity --
1695 ----------------------------
1697 procedure Install_Package_Entity
(Id
: Entity_Id
) is
1699 if not Is_Internal
(Id
) then
1700 if Debug_Flag_E
then
1701 Write_Str
("Install: ");
1702 Write_Name
(Chars
(Id
));
1706 if not Is_Child_Unit
(Id
) then
1707 Set_Is_Immediately_Visible
(Id
);
1711 end Install_Package_Entity
;
1713 ----------------------------------
1714 -- Install_Private_Declarations --
1715 ----------------------------------
1717 procedure Install_Private_Declarations
(P
: Entity_Id
) is
1719 Priv_Elmt
: Elmt_Id
;
1724 -- First exchange declarations for private types, so that the full
1725 -- declaration is visible. For each private type, we check its
1726 -- Private_Dependents list and also exchange any subtypes of or derived
1727 -- types from it. Finally, if this is a Taft amendment type, the
1728 -- incomplete declaration is irrelevant, and we want to link the
1729 -- eventual full declaration with the original private one so we also
1730 -- skip the exchange.
1732 Id
:= First_Entity
(P
);
1733 while Present
(Id
) and then Id
/= First_Private_Entity
(P
) loop
1734 if Is_Private_Base_Type
(Id
)
1735 and then Comes_From_Source
(Full_View
(Id
))
1736 and then Present
(Full_View
(Id
))
1737 and then Scope
(Full_View
(Id
)) = Scope
(Id
)
1738 and then Ekind
(Full_View
(Id
)) /= E_Incomplete_Type
1740 -- If there is a use-type clause on the private type, set the
1741 -- full view accordingly.
1743 Set_In_Use
(Full_View
(Id
), In_Use
(Id
));
1744 Full
:= Full_View
(Id
);
1746 if Is_Private_Base_Type
(Full
)
1747 and then Has_Private_Declaration
(Full
)
1748 and then Nkind
(Parent
(Full
)) = N_Full_Type_Declaration
1749 and then In_Open_Scopes
(Scope
(Etype
(Full
)))
1750 and then In_Package_Body
(Current_Scope
)
1751 and then not Is_Private_Type
(Etype
(Full
))
1753 -- This is the completion of a private type by a derivation
1754 -- from another private type which is not private anymore. This
1755 -- can only happen in a package nested within a child package,
1756 -- when the parent type is defined in the parent unit. At this
1757 -- point the current type is not private either, and we have to
1758 -- install the underlying full view, which is now visible. Save
1759 -- the current full view as well, so that all views can be
1760 -- restored on exit. It may seem that after compiling the child
1761 -- body there are not environments to restore, but the back-end
1762 -- expects those links to be valid, and freeze nodes depend on
1765 if No
(Full_View
(Full
))
1766 and then Present
(Underlying_Full_View
(Full
))
1768 Set_Full_View
(Id
, Underlying_Full_View
(Full
));
1769 Set_Underlying_Full_View
(Id
, Full
);
1771 Set_Underlying_Full_View
(Full
, Empty
);
1772 Set_Is_Frozen
(Full_View
(Id
));
1776 Priv_Elmt
:= First_Elmt
(Private_Dependents
(Id
));
1778 Exchange_Declarations
(Id
);
1779 Set_Is_Immediately_Visible
(Id
);
1781 while Present
(Priv_Elmt
) loop
1782 Priv
:= Node
(Priv_Elmt
);
1784 -- Before the exchange, verify that the presence of the
1785 -- Full_View field. It will be empty if the entity has already
1786 -- been installed due to a previous call.
1788 if Present
(Full_View
(Priv
))
1789 and then Is_Visible_Dependent
(Priv
)
1792 -- For each subtype that is swapped, we also swap the
1793 -- reference to it in Private_Dependents, to allow access
1794 -- to it when we swap them out in End_Package_Scope.
1796 Replace_Elmt
(Priv_Elmt
, Full_View
(Priv
));
1797 Exchange_Declarations
(Priv
);
1798 Set_Is_Immediately_Visible
1799 (Priv
, In_Open_Scopes
(Scope
(Priv
)));
1800 Set_Is_Potentially_Use_Visible
1801 (Priv
, Is_Potentially_Use_Visible
(Node
(Priv_Elmt
)));
1804 Next_Elmt
(Priv_Elmt
);
1811 -- Next make other declarations in the private part visible as well
1813 Id
:= First_Private_Entity
(P
);
1814 while Present
(Id
) loop
1815 Install_Package_Entity
(Id
);
1816 Set_Is_Hidden
(Id
, False);
1820 -- Indicate that the private part is currently visible, so it can be
1821 -- properly reset on exit.
1823 Set_In_Private_Part
(P
);
1824 end Install_Private_Declarations
;
1826 ----------------------------------
1827 -- Install_Visible_Declarations --
1828 ----------------------------------
1830 procedure Install_Visible_Declarations
(P
: Entity_Id
) is
1832 Last_Entity
: Entity_Id
;
1836 (Is_Package_Or_Generic_Package
(P
) or else Is_Record_Type
(P
));
1838 if Is_Package_Or_Generic_Package
(P
) then
1839 Last_Entity
:= First_Private_Entity
(P
);
1841 Last_Entity
:= Empty
;
1844 Id
:= First_Entity
(P
);
1845 while Present
(Id
) and then Id
/= Last_Entity
loop
1846 Install_Package_Entity
(Id
);
1849 end Install_Visible_Declarations
;
1851 --------------------------
1852 -- Is_Private_Base_Type --
1853 --------------------------
1855 function Is_Private_Base_Type
(E
: Entity_Id
) return Boolean is
1857 return Ekind
(E
) = E_Private_Type
1858 or else Ekind
(E
) = E_Limited_Private_Type
1859 or else Ekind
(E
) = E_Record_Type_With_Private
;
1860 end Is_Private_Base_Type
;
1862 --------------------------
1863 -- Is_Visible_Dependent --
1864 --------------------------
1866 function Is_Visible_Dependent
(Dep
: Entity_Id
) return Boolean
1868 S
: constant Entity_Id
:= Scope
(Dep
);
1871 -- Renamings created for actual types have the visibility of the actual
1873 if Ekind
(S
) = E_Package
1874 and then Is_Generic_Instance
(S
)
1875 and then (Is_Generic_Actual_Type
(Dep
)
1876 or else Is_Generic_Actual_Type
(Full_View
(Dep
)))
1880 elsif not (Is_Derived_Type
(Dep
))
1881 and then Is_Derived_Type
(Full_View
(Dep
))
1883 -- When instantiating a package body, the scope stack is empty, so
1884 -- check instead whether the dependent type is defined in the same
1885 -- scope as the instance itself.
1887 return In_Open_Scopes
(S
)
1888 or else (Is_Generic_Instance
(Current_Scope
)
1889 and then Scope
(Dep
) = Scope
(Current_Scope
));
1893 end Is_Visible_Dependent
;
1895 ----------------------------
1896 -- May_Need_Implicit_Body --
1897 ----------------------------
1899 procedure May_Need_Implicit_Body
(E
: Entity_Id
) is
1900 P
: constant Node_Id
:= Unit_Declaration_Node
(E
);
1901 S
: constant Node_Id
:= Parent
(P
);
1906 if not Has_Completion
(E
)
1907 and then Nkind
(P
) = N_Package_Declaration
1908 and then (Present
(Activation_Chain_Entity
(P
)) or else Has_RACW
(E
))
1911 Make_Package_Body
(Sloc
(E
),
1912 Defining_Unit_Name
=> Make_Defining_Identifier
(Sloc
(E
),
1913 Chars
=> Chars
(E
)),
1914 Declarations
=> New_List
);
1916 if Nkind
(S
) = N_Package_Specification
then
1917 if Present
(Private_Declarations
(S
)) then
1918 Decls
:= Private_Declarations
(S
);
1920 Decls
:= Visible_Declarations
(S
);
1923 Decls
:= Declarations
(S
);
1929 end May_Need_Implicit_Body
;
1931 ----------------------
1932 -- New_Private_Type --
1933 ----------------------
1935 procedure New_Private_Type
(N
: Node_Id
; Id
: Entity_Id
; Def
: Node_Id
) is
1937 -- For other than Ada 2012, enter tha name in the current scope
1939 if Ada_Version
< Ada_2012
then
1942 -- Ada 2012 (AI05-0162): Enter the name in the current scope handling
1943 -- private type that completes an incomplete type.
1949 Prev
:= Find_Type_Name
(N
);
1950 pragma Assert
(Prev
= Id
1951 or else (Ekind
(Prev
) = E_Incomplete_Type
1952 and then Present
(Full_View
(Prev
))
1953 and then Full_View
(Prev
) = Id
));
1957 if Limited_Present
(Def
) then
1958 Set_Ekind
(Id
, E_Limited_Private_Type
);
1960 Set_Ekind
(Id
, E_Private_Type
);
1964 Set_Has_Delayed_Freeze
(Id
);
1965 Set_Is_First_Subtype
(Id
);
1966 Init_Size_Align
(Id
);
1968 Set_Is_Constrained
(Id
,
1969 No
(Discriminant_Specifications
(N
))
1970 and then not Unknown_Discriminants_Present
(N
));
1972 -- Set tagged flag before processing discriminants, to catch illegal
1975 Set_Is_Tagged_Type
(Id
, Tagged_Present
(Def
));
1977 Set_Discriminant_Constraint
(Id
, No_Elist
);
1978 Set_Stored_Constraint
(Id
, No_Elist
);
1980 if Present
(Discriminant_Specifications
(N
)) then
1982 Process_Discriminants
(N
);
1985 elsif Unknown_Discriminants_Present
(N
) then
1986 Set_Has_Unknown_Discriminants
(Id
);
1989 Set_Private_Dependents
(Id
, New_Elmt_List
);
1991 if Tagged_Present
(Def
) then
1992 Set_Ekind
(Id
, E_Record_Type_With_Private
);
1993 Set_Direct_Primitive_Operations
(Id
, New_Elmt_List
);
1994 Set_Is_Abstract_Type
(Id
, Abstract_Present
(Def
));
1995 Set_Is_Limited_Record
(Id
, Limited_Present
(Def
));
1996 Set_Has_Delayed_Freeze
(Id
, True);
1998 -- Create a class-wide type with the same attributes
2000 Make_Class_Wide_Type
(Id
);
2002 elsif Abstract_Present
(Def
) then
2003 Error_Msg_N
("only a tagged type can be abstract", N
);
2005 end New_Private_Type
;
2007 ----------------------------
2008 -- Uninstall_Declarations --
2009 ----------------------------
2011 procedure Uninstall_Declarations
(P
: Entity_Id
) is
2012 Decl
: constant Node_Id
:= Unit_Declaration_Node
(P
);
2015 Priv_Elmt
: Elmt_Id
;
2016 Priv_Sub
: Entity_Id
;
2018 procedure Preserve_Full_Attributes
(Priv
, Full
: Entity_Id
);
2019 -- Copy to the private declaration the attributes of the full view that
2020 -- need to be available for the partial view also.
2022 function Type_In_Use
(T
: Entity_Id
) return Boolean;
2023 -- Check whether type or base type appear in an active use_type clause
2025 ------------------------------
2026 -- Preserve_Full_Attributes --
2027 ------------------------------
2029 procedure Preserve_Full_Attributes
(Priv
, Full
: Entity_Id
) is
2030 Priv_Is_Base_Type
: constant Boolean := Is_Base_Type
(Priv
);
2033 Set_Size_Info
(Priv
, (Full
));
2034 Set_RM_Size
(Priv
, RM_Size
(Full
));
2035 Set_Size_Known_At_Compile_Time
2036 (Priv
, Size_Known_At_Compile_Time
(Full
));
2037 Set_Is_Volatile
(Priv
, Is_Volatile
(Full
));
2038 Set_Treat_As_Volatile
(Priv
, Treat_As_Volatile
(Full
));
2039 Set_Is_Ada_2005_Only
(Priv
, Is_Ada_2005_Only
(Full
));
2040 Set_Is_Ada_2012_Only
(Priv
, Is_Ada_2012_Only
(Full
));
2041 Set_Has_Pragma_Unmodified
(Priv
, Has_Pragma_Unmodified
(Full
));
2042 Set_Has_Pragma_Unreferenced
(Priv
, Has_Pragma_Unreferenced
(Full
));
2043 Set_Has_Pragma_Unreferenced_Objects
2044 (Priv
, Has_Pragma_Unreferenced_Objects
2046 if Is_Unchecked_Union
(Full
) then
2047 Set_Is_Unchecked_Union
(Base_Type
(Priv
));
2049 -- Why is atomic not copied here ???
2051 if Referenced
(Full
) then
2052 Set_Referenced
(Priv
);
2055 if Priv_Is_Base_Type
then
2056 Set_Is_Controlled
(Priv
, Is_Controlled
(Base_Type
(Full
)));
2057 Set_Finalize_Storage_Only
(Priv
, Finalize_Storage_Only
2058 (Base_Type
(Full
)));
2059 Set_Has_Task
(Priv
, Has_Task
(Base_Type
(Full
)));
2060 Set_Has_Controlled_Component
(Priv
, Has_Controlled_Component
2061 (Base_Type
(Full
)));
2064 Set_Freeze_Node
(Priv
, Freeze_Node
(Full
));
2066 if Is_Tagged_Type
(Priv
)
2067 and then Is_Tagged_Type
(Full
)
2068 and then not Error_Posted
(Full
)
2070 if Priv_Is_Base_Type
then
2072 -- Ada 2005 (AI-345): The full view of a type implementing an
2073 -- interface can be a task type.
2075 -- type T is new I with private;
2077 -- task type T is new I with ...
2079 if Is_Interface
(Etype
(Priv
))
2080 and then Is_Concurrent_Type
(Base_Type
(Full
))
2082 -- Protect the frontend against previous errors
2084 if Present
(Corresponding_Record_Type
2087 Set_Access_Disp_Table
2088 (Priv
, Access_Disp_Table
2089 (Corresponding_Record_Type
(Base_Type
(Full
))));
2091 -- Generic context, or previous errors
2098 Set_Access_Disp_Table
2099 (Priv
, Access_Disp_Table
(Base_Type
(Full
)));
2103 if Is_Tagged_Type
(Priv
) then
2105 -- If the type is tagged, the tag itself must be available on
2106 -- the partial view, for expansion purposes.
2108 Set_First_Entity
(Priv
, First_Entity
(Full
));
2110 -- If there are discriminants in the partial view, these remain
2111 -- visible. Otherwise only the tag itself is visible, and there
2112 -- are no nameable components in the partial view.
2114 if No
(Last_Entity
(Priv
)) then
2115 Set_Last_Entity
(Priv
, First_Entity
(Priv
));
2119 Set_Has_Discriminants
(Priv
, Has_Discriminants
(Full
));
2121 if Has_Discriminants
(Full
) then
2122 Set_Discriminant_Constraint
(Priv
,
2123 Discriminant_Constraint
(Full
));
2126 end Preserve_Full_Attributes
;
2132 function Type_In_Use
(T
: Entity_Id
) return Boolean is
2134 return Scope
(Base_Type
(T
)) = P
2135 and then (In_Use
(T
) or else In_Use
(Base_Type
(T
)));
2138 -- Start of processing for Uninstall_Declarations
2141 Id
:= First_Entity
(P
);
2142 while Present
(Id
) and then Id
/= First_Private_Entity
(P
) loop
2143 if Debug_Flag_E
then
2144 Write_Str
("unlinking visible entity ");
2145 Write_Int
(Int
(Id
));
2149 -- On exit from the package scope, we must preserve the visibility
2150 -- established by use clauses in the current scope. Two cases:
2152 -- a) If the entity is an operator, it may be a primitive operator of
2153 -- a type for which there is a visible use-type clause.
2155 -- b) for other entities, their use-visibility is determined by a
2156 -- visible use clause for the package itself. For a generic instance,
2157 -- the instantiation of the formals appears in the visible part,
2158 -- but the formals are private and remain so.
2160 if Ekind
(Id
) = E_Function
2161 and then Is_Operator_Symbol_Name
(Chars
(Id
))
2162 and then not Is_Hidden
(Id
)
2163 and then not Error_Posted
(Id
)
2165 Set_Is_Potentially_Use_Visible
(Id
,
2167 or else Type_In_Use
(Etype
(Id
))
2168 or else Type_In_Use
(Etype
(First_Formal
(Id
)))
2169 or else (Present
(Next_Formal
(First_Formal
(Id
)))
2172 (Etype
(Next_Formal
(First_Formal
(Id
))))));
2174 if In_Use
(P
) and then not Is_Hidden
(Id
) then
2176 -- A child unit of a use-visible package remains use-visible
2177 -- only if it is itself a visible child unit. Otherwise it
2178 -- would remain visible in other contexts where P is use-
2179 -- visible, because once compiled it stays in the entity list
2180 -- of its parent unit.
2182 if Is_Child_Unit
(Id
) then
2183 Set_Is_Potentially_Use_Visible
(Id
,
2184 Is_Visible_Child_Unit
(Id
));
2186 Set_Is_Potentially_Use_Visible
(Id
);
2190 Set_Is_Potentially_Use_Visible
(Id
, False);
2194 -- Local entities are not immediately visible outside of the package
2196 Set_Is_Immediately_Visible
(Id
, False);
2198 -- If this is a private type with a full view (for example a local
2199 -- subtype of a private type declared elsewhere), ensure that the
2200 -- full view is also removed from visibility: it may be exposed when
2201 -- swapping views in an instantiation.
2204 and then Present
(Full_View
(Id
))
2206 Set_Is_Immediately_Visible
(Full_View
(Id
), False);
2209 if Is_Tagged_Type
(Id
) and then Ekind
(Id
) = E_Record_Type
then
2210 Check_Abstract_Overriding
(Id
);
2211 Check_Conventions
(Id
);
2214 if (Ekind
(Id
) = E_Private_Type
2215 or else Ekind
(Id
) = E_Limited_Private_Type
)
2216 and then No
(Full_View
(Id
))
2217 and then not Is_Generic_Type
(Id
)
2218 and then not Is_Derived_Type
(Id
)
2220 Error_Msg_N
("missing full declaration for private type&", Id
);
2222 elsif Ekind
(Id
) = E_Record_Type_With_Private
2223 and then not Is_Generic_Type
(Id
)
2224 and then No
(Full_View
(Id
))
2226 if Nkind
(Parent
(Id
)) = N_Private_Type_Declaration
then
2227 Error_Msg_N
("missing full declaration for private type&", Id
);
2230 ("missing full declaration for private extension", Id
);
2233 -- Case of constant, check for deferred constant declaration with
2234 -- no full view. Likely just a matter of a missing expression, or
2235 -- accidental use of the keyword constant.
2237 elsif Ekind
(Id
) = E_Constant
2239 -- OK if constant value present
2241 and then No
(Constant_Value
(Id
))
2243 -- OK if full view present
2245 and then No
(Full_View
(Id
))
2247 -- OK if imported, since that provides the completion
2249 and then not Is_Imported
(Id
)
2251 -- OK if object declaration replaced by renaming declaration as
2252 -- a result of OK_To_Rename processing (e.g. for concatenation)
2254 and then Nkind
(Parent
(Id
)) /= N_Object_Renaming_Declaration
2256 -- OK if object declaration with the No_Initialization flag set
2258 and then not (Nkind
(Parent
(Id
)) = N_Object_Declaration
2259 and then No_Initialization
(Parent
(Id
)))
2261 -- If no private declaration is present, we assume the user did
2262 -- not intend a deferred constant declaration and the problem
2263 -- is simply that the initializing expression is missing.
2265 if not Has_Private_Declaration
(Etype
(Id
)) then
2267 -- We assume that the user did not intend a deferred constant
2268 -- declaration, and the expression is just missing.
2271 ("constant declaration requires initialization expression",
2274 if Is_Limited_Type
(Etype
(Id
)) then
2276 ("\if variable intended, remove CONSTANT from declaration",
2280 -- Otherwise if a private declaration is present, then we are
2281 -- missing the full declaration for the deferred constant.
2285 ("missing full declaration for deferred constant (RM 7.4)",
2288 if Is_Limited_Type
(Etype
(Id
)) then
2290 ("\if variable intended, remove CONSTANT from declaration",
2299 -- If the specification was installed as the parent of a public child
2300 -- unit, the private declarations were not installed, and there is
2303 if not In_Private_Part
(P
) then
2306 Set_In_Private_Part
(P
, False);
2309 -- Make private entities invisible and exchange full and private
2310 -- declarations for private types. Id is now the first private entity
2313 while Present
(Id
) loop
2314 if Debug_Flag_E
then
2315 Write_Str
("unlinking private entity ");
2316 Write_Int
(Int
(Id
));
2320 if Is_Tagged_Type
(Id
) and then Ekind
(Id
) = E_Record_Type
then
2321 Check_Abstract_Overriding
(Id
);
2322 Check_Conventions
(Id
);
2325 Set_Is_Immediately_Visible
(Id
, False);
2327 if Is_Private_Base_Type
(Id
)
2328 and then Present
(Full_View
(Id
))
2330 Full
:= Full_View
(Id
);
2332 -- If the partial view is not declared in the visible part of the
2333 -- package (as is the case when it is a type derived from some
2334 -- other private type in the private part of the current package),
2335 -- no exchange takes place.
2338 or else List_Containing
(Parent
(Id
))
2339 /= Visible_Declarations
(Specification
(Decl
))
2344 -- The entry in the private part points to the full declaration,
2345 -- which is currently visible. Exchange them so only the private
2346 -- type declaration remains accessible, and link private and full
2347 -- declaration in the opposite direction. Before the actual
2348 -- exchange, we copy back attributes of the full view that must
2349 -- be available to the partial view too.
2351 Preserve_Full_Attributes
(Id
, Full
);
2353 Set_Is_Potentially_Use_Visible
(Id
, In_Use
(P
));
2355 if Is_Indefinite_Subtype
(Full
)
2356 and then not Is_Indefinite_Subtype
(Id
)
2359 ("full view of type must be definite subtype", Full
);
2362 Priv_Elmt
:= First_Elmt
(Private_Dependents
(Id
));
2364 -- Swap out the subtypes and derived types of Id that were
2365 -- compiled in this scope, or installed previously by
2366 -- Install_Private_Declarations.
2368 -- Before we do the swap, we verify the presence of the Full_View
2369 -- field which may be empty due to a swap by a previous call to
2370 -- End_Package_Scope (e.g. from the freezing mechanism).
2372 while Present
(Priv_Elmt
) loop
2373 Priv_Sub
:= Node
(Priv_Elmt
);
2375 if Present
(Full_View
(Priv_Sub
)) then
2377 if Scope
(Priv_Sub
) = P
2378 or else not In_Open_Scopes
(Scope
(Priv_Sub
))
2380 Set_Is_Immediately_Visible
(Priv_Sub
, False);
2383 if Is_Visible_Dependent
(Priv_Sub
) then
2384 Preserve_Full_Attributes
2385 (Priv_Sub
, Full_View
(Priv_Sub
));
2386 Replace_Elmt
(Priv_Elmt
, Full_View
(Priv_Sub
));
2387 Exchange_Declarations
(Priv_Sub
);
2391 Next_Elmt
(Priv_Elmt
);
2394 -- Now restore the type itself to its private view
2396 Exchange_Declarations
(Id
);
2398 -- If we have installed an underlying full view for a type derived
2399 -- from a private type in a child unit, restore the proper views
2400 -- of private and full view. See corresponding code in
2401 -- Install_Private_Declarations.
2403 -- After the exchange, Full denotes the private type in the
2404 -- visible part of the package.
2406 if Is_Private_Base_Type
(Full
)
2407 and then Present
(Full_View
(Full
))
2408 and then Present
(Underlying_Full_View
(Full
))
2409 and then In_Package_Body
(Current_Scope
)
2411 Set_Full_View
(Full
, Underlying_Full_View
(Full
));
2412 Set_Underlying_Full_View
(Full
, Empty
);
2415 elsif Ekind
(Id
) = E_Incomplete_Type
2416 and then Comes_From_Source
(Id
)
2417 and then No
(Full_View
(Id
))
2419 -- Mark Taft amendment types. Verify that there are no primitive
2420 -- operations declared for the type (3.10.1(9)).
2422 Set_Has_Completion_In_Body
(Id
);
2429 Elmt
:= First_Elmt
(Private_Dependents
(Id
));
2430 while Present
(Elmt
) loop
2431 Subp
:= Node
(Elmt
);
2433 if Is_Overloadable
(Subp
) then
2435 ("type& must be completed in the private part",
2438 -- The return type of an access_to_function cannot be a
2439 -- Taft-amendment type.
2441 elsif Ekind
(Subp
) = E_Subprogram_Type
then
2442 if Etype
(Subp
) = Id
2444 (Is_Class_Wide_Type
(Etype
(Subp
))
2445 and then Etype
(Etype
(Subp
)) = Id
)
2448 ("type& must be completed in the private part",
2449 Associated_Node_For_Itype
(Subp
), Id
);
2457 elsif not Is_Child_Unit
(Id
)
2458 and then (not Is_Private_Type
(Id
)
2459 or else No
(Full_View
(Id
)))
2462 Set_Is_Potentially_Use_Visible
(Id
, False);
2468 end Uninstall_Declarations
;
2470 ------------------------
2471 -- Unit_Requires_Body --
2472 ------------------------
2474 function Unit_Requires_Body
(P
: Entity_Id
) return Boolean is
2478 -- Imported entity never requires body. Right now, only subprograms can
2479 -- be imported, but perhaps in the future we will allow import of
2482 if Is_Imported
(P
) then
2485 -- Body required if library package with pragma Elaborate_Body
2487 elsif Has_Pragma_Elaborate_Body
(P
) then
2490 -- Body required if subprogram
2492 elsif Is_Subprogram
(P
) or else Is_Generic_Subprogram
(P
) then
2495 -- Treat a block as requiring a body
2497 elsif Ekind
(P
) = E_Block
then
2500 elsif Ekind
(P
) = E_Package
2501 and then Nkind
(Parent
(P
)) = N_Package_Specification
2502 and then Present
(Generic_Parent
(Parent
(P
)))
2505 G_P
: constant Entity_Id
:= Generic_Parent
(Parent
(P
));
2507 if Has_Pragma_Elaborate_Body
(G_P
) then
2513 -- Otherwise search entity chain for entity requiring completion
2515 E
:= First_Entity
(P
);
2516 while Present
(E
) loop
2518 -- Always ignore child units. Child units get added to the entity
2519 -- list of a parent unit, but are not original entities of the
2520 -- parent, and so do not affect whether the parent needs a body.
2522 if Is_Child_Unit
(E
) then
2525 -- Ignore formal packages and their renamings
2527 elsif Ekind
(E
) = E_Package
2528 and then Nkind
(Original_Node
(Unit_Declaration_Node
(E
))) =
2529 N_Formal_Package_Declaration
2533 -- Otherwise test to see if entity requires a completion.
2534 -- Note that subprogram entities whose declaration does not come
2535 -- from source are ignored here on the basis that we assume the
2536 -- expander will provide an implicit completion at some point.
2538 elsif (Is_Overloadable
(E
)
2539 and then Ekind
(E
) /= E_Enumeration_Literal
2540 and then Ekind
(E
) /= E_Operator
2541 and then not Is_Abstract_Subprogram
(E
)
2542 and then not Has_Completion
(E
)
2543 and then Comes_From_Source
(Parent
(E
)))
2546 (Ekind
(E
) = E_Package
2548 and then not Has_Completion
(E
)
2549 and then Unit_Requires_Body
(E
))
2552 (Ekind
(E
) = E_Incomplete_Type
and then No
(Full_View
(E
)))
2555 ((Ekind
(E
) = E_Task_Type
or else
2556 Ekind
(E
) = E_Protected_Type
)
2557 and then not Has_Completion
(E
))
2560 (Ekind
(E
) = E_Generic_Package
and then E
/= P
2561 and then not Has_Completion
(E
)
2562 and then Unit_Requires_Body
(E
))
2565 (Is_Generic_Subprogram
(E
)
2566 and then not Has_Completion
(E
))
2571 -- Entity that does not require completion
2581 end Unit_Requires_Body
;