1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2016, 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 with Atree
; use Atree
;
27 with Debug
; use Debug
;
28 with Debug_A
; use Debug_A
;
29 with Elists
; use Elists
;
30 with Exp_SPARK
; use Exp_SPARK
;
31 with Expander
; use Expander
;
32 with Fname
; use Fname
;
33 with Ghost
; use Ghost
;
35 with Lib
.Load
; use Lib
.Load
;
36 with Nlists
; use Nlists
;
37 with Output
; use Output
;
38 with Restrict
; use Restrict
;
39 with Sem_Attr
; use Sem_Attr
;
40 with Sem_Aux
; use Sem_Aux
;
41 with Sem_Ch2
; use Sem_Ch2
;
42 with Sem_Ch3
; use Sem_Ch3
;
43 with Sem_Ch4
; use Sem_Ch4
;
44 with Sem_Ch5
; use Sem_Ch5
;
45 with Sem_Ch6
; use Sem_Ch6
;
46 with Sem_Ch7
; use Sem_Ch7
;
47 with Sem_Ch8
; use Sem_Ch8
;
48 with Sem_Ch9
; use Sem_Ch9
;
49 with Sem_Ch10
; use Sem_Ch10
;
50 with Sem_Ch11
; use Sem_Ch11
;
51 with Sem_Ch12
; use Sem_Ch12
;
52 with Sem_Ch13
; use Sem_Ch13
;
53 with Sem_Prag
; use Sem_Prag
;
54 with Sem_Util
; use Sem_Util
;
55 with Sinfo
; use Sinfo
;
56 with Stand
; use Stand
;
57 with Stylesw
; use Stylesw
;
58 with Uintp
; use Uintp
;
59 with Uname
; use Uname
;
61 with Unchecked_Deallocation
;
63 pragma Warnings
(Off
, Sem_Util
);
64 -- Suppress warnings of unused with for Sem_Util (used only in asserts)
68 Debug_Unit_Walk
: Boolean renames Debug_Flag_Dot_WW
;
69 -- Controls debugging printouts for Walk_Library_Items
71 Outer_Generic_Scope
: Entity_Id
:= Empty
;
72 -- Global reference to the outer scope that is generic. In a non-generic
73 -- context, it is empty. At the moment, it is only used for avoiding
74 -- freezing of external references in generics.
76 Comp_Unit_List
: Elist_Id
:= No_Elist
;
77 -- Used by Walk_Library_Items. This is a list of N_Compilation_Unit nodes
78 -- processed by Semantics, in an appropriate order. Initialized to
79 -- No_Elist, because it's too early to call New_Elmt_List; we will set it
80 -- to New_Elmt_List on first use.
83 with procedure Action
(Withed_Unit
: Node_Id
);
84 procedure Walk_Withs_Immediate
(CU
: Node_Id
; Include_Limited
: Boolean);
85 -- Walk all the with clauses of CU, and call Action for the with'ed unit.
86 -- Ignore limited withs, unless Include_Limited is True. CU must be an
87 -- N_Compilation_Unit.
90 with procedure Action
(Withed_Unit
: Node_Id
);
91 procedure Walk_Withs
(CU
: Node_Id
; Include_Limited
: Boolean);
92 -- Same as Walk_Withs_Immediate, but also include with clauses on subunits
93 -- of this unit, since they count as dependences on their parent library
94 -- item. CU must be an N_Compilation_Unit whose Unit is not an N_Subunit.
100 procedure Analyze
(N
: Node_Id
) is
101 Save_Ghost_Mode
: constant Ghost_Mode_Type
:= Ghost_Mode
;
104 Debug_A_Entry
("analyzing ", N
);
106 -- Immediate return if already analyzed
109 Debug_A_Exit
("analyzing ", N
, " (done, analyzed already)");
113 -- A declaration may be subject to pragma Ghost. Set the mode now to
114 -- ensure that any nodes generated during analysis and expansion are
117 if Is_Declaration
(N
) then
121 -- Otherwise processing depends on the node kind
124 when N_Abort_Statement
=>
125 Analyze_Abort_Statement
(N
);
127 when N_Abstract_Subprogram_Declaration
=>
128 Analyze_Abstract_Subprogram_Declaration
(N
);
130 when N_Accept_Alternative
=>
131 Analyze_Accept_Alternative
(N
);
133 when N_Accept_Statement
=>
134 Analyze_Accept_Statement
(N
);
137 Analyze_Aggregate
(N
);
140 Analyze_Allocator
(N
);
143 Analyze_Short_Circuit
(N
);
145 when N_Assignment_Statement
=>
146 Analyze_Assignment
(N
);
148 when N_Asynchronous_Select
=>
149 Analyze_Asynchronous_Select
(N
);
152 Analyze_At_Clause
(N
);
154 when N_Attribute_Reference
=>
155 Analyze_Attribute
(N
);
157 when N_Attribute_Definition_Clause
=>
158 Analyze_Attribute_Definition_Clause
(N
);
160 when N_Block_Statement
=>
161 Analyze_Block_Statement
(N
);
163 when N_Case_Expression
=>
164 Analyze_Case_Expression
(N
);
166 when N_Case_Statement
=>
167 Analyze_Case_Statement
(N
);
169 when N_Character_Literal
=>
170 Analyze_Character_Literal
(N
);
172 when N_Code_Statement
=>
173 Analyze_Code_Statement
(N
);
175 when N_Compilation_Unit
=>
176 Analyze_Compilation_Unit
(N
);
178 when N_Component_Declaration
=>
179 Analyze_Component_Declaration
(N
);
181 when N_Compound_Statement
=>
182 Analyze_Compound_Statement
(N
);
184 when N_Conditional_Entry_Call
=>
185 Analyze_Conditional_Entry_Call
(N
);
187 when N_Delay_Alternative
=>
188 Analyze_Delay_Alternative
(N
);
190 when N_Delay_Relative_Statement
=>
191 Analyze_Delay_Relative
(N
);
193 when N_Delay_Until_Statement
=>
194 Analyze_Delay_Until
(N
);
197 Analyze_Entry_Body
(N
);
199 when N_Entry_Body_Formal_Part
=>
200 Analyze_Entry_Body_Formal_Part
(N
);
202 when N_Entry_Call_Alternative
=>
203 Analyze_Entry_Call_Alternative
(N
);
205 when N_Entry_Declaration
=>
206 Analyze_Entry_Declaration
(N
);
208 when N_Entry_Index_Specification
=>
209 Analyze_Entry_Index_Specification
(N
);
211 when N_Enumeration_Representation_Clause
=>
212 Analyze_Enumeration_Representation_Clause
(N
);
214 when N_Exception_Declaration
=>
215 Analyze_Exception_Declaration
(N
);
217 when N_Exception_Renaming_Declaration
=>
218 Analyze_Exception_Renaming
(N
);
220 when N_Exit_Statement
=>
221 Analyze_Exit_Statement
(N
);
223 when N_Expanded_Name
=>
224 Analyze_Expanded_Name
(N
);
226 when N_Explicit_Dereference
=>
227 Analyze_Explicit_Dereference
(N
);
229 when N_Expression_Function
=>
230 Analyze_Expression_Function
(N
);
232 when N_Expression_With_Actions
=>
233 Analyze_Expression_With_Actions
(N
);
235 when N_Extended_Return_Statement
=>
236 Analyze_Extended_Return_Statement
(N
);
238 when N_Extension_Aggregate
=>
239 Analyze_Aggregate
(N
);
241 when N_Formal_Object_Declaration
=>
242 Analyze_Formal_Object_Declaration
(N
);
244 when N_Formal_Package_Declaration
=>
245 Analyze_Formal_Package_Declaration
(N
);
247 when N_Formal_Subprogram_Declaration
=>
248 Analyze_Formal_Subprogram_Declaration
(N
);
250 when N_Formal_Type_Declaration
=>
251 Analyze_Formal_Type_Declaration
(N
);
253 when N_Free_Statement
=>
254 Analyze_Free_Statement
(N
);
256 when N_Freeze_Entity
=>
257 Analyze_Freeze_Entity
(N
);
259 when N_Freeze_Generic_Entity
=>
260 Analyze_Freeze_Generic_Entity
(N
);
262 when N_Full_Type_Declaration
=>
263 Analyze_Full_Type_Declaration
(N
);
265 when N_Function_Call
=>
266 Analyze_Function_Call
(N
);
268 when N_Function_Instantiation
=>
269 Analyze_Function_Instantiation
(N
);
271 when N_Generic_Function_Renaming_Declaration
=>
272 Analyze_Generic_Function_Renaming
(N
);
274 when N_Generic_Package_Declaration
=>
275 Analyze_Generic_Package_Declaration
(N
);
277 when N_Generic_Package_Renaming_Declaration
=>
278 Analyze_Generic_Package_Renaming
(N
);
280 when N_Generic_Procedure_Renaming_Declaration
=>
281 Analyze_Generic_Procedure_Renaming
(N
);
283 when N_Generic_Subprogram_Declaration
=>
284 Analyze_Generic_Subprogram_Declaration
(N
);
286 when N_Goto_Statement
=>
287 Analyze_Goto_Statement
(N
);
289 when N_Handled_Sequence_Of_Statements
=>
290 Analyze_Handled_Statements
(N
);
293 Analyze_Identifier
(N
);
295 when N_If_Expression
=>
296 Analyze_If_Expression
(N
);
298 when N_If_Statement
=>
299 Analyze_If_Statement
(N
);
301 when N_Implicit_Label_Declaration
=>
302 Analyze_Implicit_Label_Declaration
(N
);
305 Analyze_Membership_Op
(N
);
307 when N_Incomplete_Type_Declaration
=>
308 Analyze_Incomplete_Type_Decl
(N
);
310 when N_Indexed_Component
=>
311 Analyze_Indexed_Component_Form
(N
);
313 when N_Integer_Literal
=>
314 Analyze_Integer_Literal
(N
);
316 when N_Iterator_Specification
=>
317 Analyze_Iterator_Specification
(N
);
319 when N_Itype_Reference
=>
320 Analyze_Itype_Reference
(N
);
325 when N_Loop_Parameter_Specification
=>
326 Analyze_Loop_Parameter_Specification
(N
);
328 when N_Loop_Statement
=>
329 Analyze_Loop_Statement
(N
);
332 Analyze_Membership_Op
(N
);
337 when N_Null_Statement
=>
338 Analyze_Null_Statement
(N
);
340 when N_Number_Declaration
=>
341 Analyze_Number_Declaration
(N
);
343 when N_Object_Declaration
=>
344 Analyze_Object_Declaration
(N
);
346 when N_Object_Renaming_Declaration
=>
347 Analyze_Object_Renaming
(N
);
349 when N_Operator_Symbol
=>
350 Analyze_Operator_Symbol
(N
);
353 Analyze_Unary_Op
(N
);
356 Analyze_Arithmetic_Op
(N
);
359 Analyze_Logical_Op
(N
);
362 Analyze_Concatenation
(N
);
365 Analyze_Arithmetic_Op
(N
);
368 Analyze_Equality_Op
(N
);
371 Analyze_Arithmetic_Op
(N
);
374 Analyze_Comparison_Op
(N
);
377 Analyze_Comparison_Op
(N
);
380 Analyze_Comparison_Op
(N
);
383 Analyze_Comparison_Op
(N
);
386 Analyze_Unary_Op
(N
);
391 when N_Op_Multiply
=>
392 Analyze_Arithmetic_Op
(N
);
395 Analyze_Equality_Op
(N
);
398 Analyze_Negation
(N
);
401 Analyze_Logical_Op
(N
);
404 Analyze_Unary_Op
(N
);
407 Analyze_Arithmetic_Op
(N
);
409 when N_Op_Rotate_Left
=>
410 Analyze_Arithmetic_Op
(N
);
412 when N_Op_Rotate_Right
=>
413 Analyze_Arithmetic_Op
(N
);
415 when N_Op_Shift_Left
=>
416 Analyze_Arithmetic_Op
(N
);
418 when N_Op_Shift_Right
=>
419 Analyze_Arithmetic_Op
(N
);
421 when N_Op_Shift_Right_Arithmetic
=>
422 Analyze_Arithmetic_Op
(N
);
424 when N_Op_Subtract
=>
425 Analyze_Arithmetic_Op
(N
);
428 Analyze_Logical_Op
(N
);
431 Analyze_Short_Circuit
(N
);
433 when N_Others_Choice
=>
434 Analyze_Others_Choice
(N
);
436 when N_Package_Body
=>
437 Analyze_Package_Body
(N
);
439 when N_Package_Body_Stub
=>
440 Analyze_Package_Body_Stub
(N
);
442 when N_Package_Declaration
=>
443 Analyze_Package_Declaration
(N
);
445 when N_Package_Instantiation
=>
446 Analyze_Package_Instantiation
(N
);
448 when N_Package_Renaming_Declaration
=>
449 Analyze_Package_Renaming
(N
);
451 when N_Package_Specification
=>
452 Analyze_Package_Specification
(N
);
454 when N_Parameter_Association
=>
455 Analyze_Parameter_Association
(N
);
460 when N_Private_Extension_Declaration
=>
461 Analyze_Private_Extension_Declaration
(N
);
463 when N_Private_Type_Declaration
=>
464 Analyze_Private_Type_Declaration
(N
);
466 when N_Procedure_Call_Statement
=>
467 Analyze_Procedure_Call
(N
);
469 when N_Procedure_Instantiation
=>
470 Analyze_Procedure_Instantiation
(N
);
472 when N_Protected_Body
=>
473 Analyze_Protected_Body
(N
);
475 when N_Protected_Body_Stub
=>
476 Analyze_Protected_Body_Stub
(N
);
478 when N_Protected_Definition
=>
479 Analyze_Protected_Definition
(N
);
481 when N_Protected_Type_Declaration
=>
482 Analyze_Protected_Type_Declaration
(N
);
484 when N_Qualified_Expression
=>
485 Analyze_Qualified_Expression
(N
);
487 when N_Quantified_Expression
=>
488 Analyze_Quantified_Expression
(N
);
490 when N_Raise_Expression
=>
491 Analyze_Raise_Expression
(N
);
493 when N_Raise_Statement
=>
494 Analyze_Raise_Statement
(N
);
496 when N_Raise_xxx_Error
=>
497 Analyze_Raise_xxx_Error
(N
);
502 when N_Range_Constraint
=>
503 Analyze_Range
(Range_Expression
(N
));
505 when N_Real_Literal
=>
506 Analyze_Real_Literal
(N
);
508 when N_Record_Representation_Clause
=>
509 Analyze_Record_Representation_Clause
(N
);
512 Analyze_Reference
(N
);
514 when N_Requeue_Statement
=>
517 when N_Simple_Return_Statement
=>
518 Analyze_Simple_Return_Statement
(N
);
520 when N_Selected_Component
=>
521 Find_Selected_Component
(N
);
522 -- ??? why not Analyze_Selected_Component, needs comments
524 when N_Selective_Accept
=>
525 Analyze_Selective_Accept
(N
);
527 when N_Single_Protected_Declaration
=>
528 Analyze_Single_Protected_Declaration
(N
);
530 when N_Single_Task_Declaration
=>
531 Analyze_Single_Task_Declaration
(N
);
536 when N_String_Literal
=>
537 Analyze_String_Literal
(N
);
539 when N_Subprogram_Body
=>
540 Analyze_Subprogram_Body
(N
);
542 when N_Subprogram_Body_Stub
=>
543 Analyze_Subprogram_Body_Stub
(N
);
545 when N_Subprogram_Declaration
=>
546 Analyze_Subprogram_Declaration
(N
);
548 when N_Subprogram_Renaming_Declaration
=>
549 Analyze_Subprogram_Renaming
(N
);
551 when N_Subtype_Declaration
=>
552 Analyze_Subtype_Declaration
(N
);
554 when N_Subtype_Indication
=>
555 Analyze_Subtype_Indication
(N
);
561 Analyze_Task_Body
(N
);
563 when N_Task_Body_Stub
=>
564 Analyze_Task_Body_Stub
(N
);
566 when N_Task_Definition
=>
567 Analyze_Task_Definition
(N
);
569 when N_Task_Type_Declaration
=>
570 Analyze_Task_Type_Declaration
(N
);
572 when N_Terminate_Alternative
=>
573 Analyze_Terminate_Alternative
(N
);
575 when N_Timed_Entry_Call
=>
576 Analyze_Timed_Entry_Call
(N
);
578 when N_Triggering_Alternative
=>
579 Analyze_Triggering_Alternative
(N
);
581 when N_Type_Conversion
=>
582 Analyze_Type_Conversion
(N
);
584 when N_Unchecked_Expression
=>
585 Analyze_Unchecked_Expression
(N
);
587 when N_Unchecked_Type_Conversion
=>
588 Analyze_Unchecked_Type_Conversion
(N
);
590 when N_Use_Package_Clause
=>
591 Analyze_Use_Package
(N
);
593 when N_Use_Type_Clause
=>
594 Analyze_Use_Type
(N
);
596 when N_Validate_Unchecked_Conversion
=>
599 when N_Variant_Part
=>
600 Analyze_Variant_Part
(N
);
602 when N_With_Clause
=>
603 Analyze_With_Clause
(N
);
605 -- A call to analyze the Empty node is an error, but most likely it
606 -- is an error caused by an attempt to analyze a malformed piece of
607 -- tree caused by some other error, so if there have been any other
608 -- errors, we just ignore it, otherwise it is a real internal error
609 -- which we complain about.
611 -- We must also consider the case of call to a runtime function that
612 -- is not available in the configurable runtime.
615 pragma Assert
(Serious_Errors_Detected
/= 0
616 or else Configurable_Run_Time_Violations
/= 0);
619 -- A call to analyze the error node is simply ignored, to avoid
620 -- causing cascaded errors (happens of course only in error cases)
621 -- Disable expansion in case it is still enabled, to prevent other
622 -- subsequent compiler glitches.
625 Expander_Mode_Save_And_Set
(False);
628 -- Push/Pop nodes normally don't come through an analyze call. An
629 -- exception is the dummy ones bracketing a subprogram body. In any
630 -- case there is nothing to be done to analyze such nodes.
632 when N_Push_Pop_xxx_Label
=>
635 -- SCIL nodes don't need analysis because they are decorated when
636 -- they are built. They are added to the tree by Insert_Actions and
637 -- the call to analyze them is generated when the full list is
640 when N_SCIL_Dispatch_Table_Tag_Init |
641 N_SCIL_Dispatching_Call |
642 N_SCIL_Membership_Test
=>
645 -- For the remaining node types, we generate compiler abort, because
646 -- these nodes are always analyzed within the Sem_Chn routines and
647 -- there should never be a case of making a call to the main Analyze
648 -- routine for these node kinds. For example, an N_Access_Definition
649 -- node appears only in the context of a type declaration, and is
650 -- processed by the analyze routine for type declarations.
652 when N_Abortable_Part |
653 N_Access_Definition |
654 N_Access_Function_Definition |
655 N_Access_Procedure_Definition |
656 N_Access_To_Object_Definition |
657 N_Aspect_Specification |
658 N_Case_Expression_Alternative |
659 N_Case_Statement_Alternative |
660 N_Compilation_Unit_Aux |
661 N_Component_Association |
663 N_Component_Definition |
665 N_Constrained_Array_Definition |
667 N_Decimal_Fixed_Point_Definition |
668 N_Defining_Character_Literal |
669 N_Defining_Identifier |
670 N_Defining_Operator_Symbol |
671 N_Defining_Program_Unit_Name |
673 N_Derived_Type_Definition |
675 N_Digits_Constraint |
676 N_Discriminant_Association |
677 N_Discriminant_Specification |
679 N_Entry_Call_Statement |
680 N_Enumeration_Type_Definition |
681 N_Exception_Handler |
682 N_Floating_Point_Definition |
683 N_Formal_Decimal_Fixed_Point_Definition |
684 N_Formal_Derived_Type_Definition |
685 N_Formal_Discrete_Type_Definition |
686 N_Formal_Floating_Point_Definition |
687 N_Formal_Modular_Type_Definition |
688 N_Formal_Ordinary_Fixed_Point_Definition |
689 N_Formal_Private_Type_Definition |
690 N_Formal_Incomplete_Type_Definition |
691 N_Formal_Signed_Integer_Type_Definition |
692 N_Function_Specification |
693 N_Generic_Association |
694 N_Index_Or_Discriminant_Constraint |
697 N_Modular_Type_Definition |
698 N_Ordinary_Fixed_Point_Definition |
699 N_Parameter_Specification |
700 N_Pragma_Argument_Association |
701 N_Procedure_Specification |
702 N_Real_Range_Specification |
703 N_Record_Definition |
704 N_Signed_Integer_Type_Definition |
705 N_Unconstrained_Array_Definition |
712 Debug_A_Exit
("analyzing ", N
, " (done)");
714 -- Now that we have analyzed the node, we call the expander to perform
715 -- possible expansion. We skip this for subexpressions, because we don't
716 -- have the type yet, and the expander will need to know the type before
717 -- it can do its job. For subexpression nodes, the call to the expander
718 -- happens in Sem_Res.Resolve. A special exception is Raise_xxx_Error,
719 -- which can appear in a statement context, and needs expanding now in
720 -- the case (distinguished by Etype, as documented in Sinfo).
722 -- The Analyzed flag is also set at this point for non-subexpression
723 -- nodes (in the case of subexpression nodes, we can't set the flag yet,
724 -- since resolution and expansion have not yet been completed). Note
725 -- that for N_Raise_xxx_Error we have to distinguish the expression
726 -- case from the statement case.
728 if Nkind
(N
) not in N_Subexpr
729 or else (Nkind
(N
) in N_Raise_xxx_Error
730 and then Etype
(N
) = Standard_Void_Type
)
734 -- Replace a reference to a renaming with the renamed object for SPARK.
735 -- In general this modification is performed by Expand_SPARK, however
736 -- certain constructs may not reach the resolution or expansion phase
737 -- and thus remain unchanged. The replacement is not performed when the
738 -- construct is overloaded as resolution must first take place. This is
739 -- also not done when analyzing a generic to preserve the original tree
740 -- and because the reference may become overloaded in the instance.
743 and then Nkind_In
(N
, N_Expanded_Name
, N_Identifier
)
744 and then not Is_Overloaded
(N
)
745 and then not Inside_A_Generic
747 Expand_SPARK_Potential_Renaming
(N
);
750 Ghost_Mode
:= Save_Ghost_Mode
;
753 -- Version with check(s) suppressed
755 procedure Analyze
(N
: Node_Id
; Suppress
: Check_Id
) is
757 if Suppress
= All_Checks
then
759 Svs
: constant Suppress_Array
:= Scope_Suppress
.Suppress
;
761 Scope_Suppress
.Suppress
:= (others => True);
763 Scope_Suppress
.Suppress
:= Svs
;
766 elsif Suppress
= Overflow_Check
then
768 Svg
: constant Boolean := Scope_Suppress
.Suppress
(Suppress
);
770 Scope_Suppress
.Suppress
(Suppress
) := True;
772 Scope_Suppress
.Suppress
(Suppress
) := Svg
;
781 procedure Analyze_List
(L
: List_Id
) is
786 while Present
(Node
) loop
792 -- Version with check(s) suppressed
794 procedure Analyze_List
(L
: List_Id
; Suppress
: Check_Id
) is
796 if Suppress
= All_Checks
then
798 Svs
: constant Suppress_Array
:= Scope_Suppress
.Suppress
;
800 Scope_Suppress
.Suppress
:= (others => True);
802 Scope_Suppress
.Suppress
:= Svs
;
807 Svg
: constant Boolean := Scope_Suppress
.Suppress
(Suppress
);
809 Scope_Suppress
.Suppress
(Suppress
) := True;
811 Scope_Suppress
.Suppress
(Suppress
) := Svg
;
816 --------------------------
817 -- Copy_Suppress_Status --
818 --------------------------
820 procedure Copy_Suppress_Status
826 pragma Warnings
(Off
, Found
);
828 procedure Search_Stack
829 (Top
: Suppress_Stack_Entry_Ptr
;
830 Found
: out Boolean);
831 -- Search given suppress stack for matching entry for entity. If found
832 -- then set Checks_May_Be_Suppressed on To, and push an appropriate
833 -- entry for To onto the local suppress stack.
839 procedure Search_Stack
840 (Top
: Suppress_Stack_Entry_Ptr
;
843 Ptr
: Suppress_Stack_Entry_Ptr
;
847 while Ptr
/= null loop
849 and then (Ptr
.Check
= All_Checks
or else Ptr
.Check
= C
)
852 Set_Checks_May_Be_Suppressed
(To
, True);
853 Push_Local_Suppress_Stack_Entry
869 -- Start of processing for Copy_Suppress_Status
872 if not Checks_May_Be_Suppressed
(From
) then
876 -- First search the global entity suppress table for a matching entry.
877 -- We also search this in reverse order so that if there are multiple
878 -- pragmas for the same entity, the last one applies.
880 Search_Stack
(Global_Suppress_Stack_Top
, Found
);
886 -- Now search the local entity suppress stack, we search this in
887 -- reverse order so that we get the innermost entry that applies to
888 -- this case if there are nested entries. Note that for the purpose
889 -- of this procedure we are ONLY looking for entries corresponding
890 -- to a two-argument Suppress, where the second argument matches From.
892 Search_Stack
(Local_Suppress_Stack_Top
, Found
);
893 end Copy_Suppress_Status
;
895 -------------------------
896 -- Enter_Generic_Scope --
897 -------------------------
899 procedure Enter_Generic_Scope
(S
: Entity_Id
) is
901 if No
(Outer_Generic_Scope
) then
902 Outer_Generic_Scope
:= S
;
904 end Enter_Generic_Scope
;
906 ------------------------
907 -- Exit_Generic_Scope --
908 ------------------------
910 procedure Exit_Generic_Scope
(S
: Entity_Id
) is
912 if S
= Outer_Generic_Scope
then
913 Outer_Generic_Scope
:= Empty
;
915 end Exit_Generic_Scope
;
917 -----------------------
918 -- Explicit_Suppress --
919 -----------------------
921 function Explicit_Suppress
(E
: Entity_Id
; C
: Check_Id
) return Boolean is
922 Ptr
: Suppress_Stack_Entry_Ptr
;
925 if not Checks_May_Be_Suppressed
(E
) then
929 Ptr
:= Global_Suppress_Stack_Top
;
930 while Ptr
/= null loop
932 and then (Ptr
.Check
= All_Checks
or else Ptr
.Check
= C
)
942 end Explicit_Suppress
;
944 -----------------------------
945 -- External_Ref_In_Generic --
946 -----------------------------
948 function External_Ref_In_Generic
(E
: Entity_Id
) return Boolean is
952 -- Entity is global if defined outside of current outer_generic_scope:
953 -- Either the entity has a smaller depth that the outer generic, or it
954 -- is in a different compilation unit, or it is defined within a unit
955 -- in the same compilation, that is not within the outer_generic.
957 if No
(Outer_Generic_Scope
) then
960 elsif Scope_Depth
(Scope
(E
)) < Scope_Depth
(Outer_Generic_Scope
)
961 or else not In_Same_Source_Unit
(E
, Outer_Generic_Scope
)
967 while Present
(Scop
) loop
968 if Scop
= Outer_Generic_Scope
then
970 elsif Scope_Depth
(Scop
) < Scope_Depth
(Outer_Generic_Scope
) then
973 Scop
:= Scope
(Scop
);
979 end External_Ref_In_Generic
;
985 procedure Initialize
is
986 Next
: Suppress_Stack_Entry_Ptr
;
988 procedure Free
is new Unchecked_Deallocation
989 (Suppress_Stack_Entry
, Suppress_Stack_Entry_Ptr
);
992 -- Free any global suppress stack entries from a previous invocation
993 -- of the compiler (in the normal case this loop does nothing).
995 while Suppress_Stack_Entries
/= null loop
996 Next
:= Suppress_Stack_Entries
.Next
;
997 Free
(Suppress_Stack_Entries
);
998 Suppress_Stack_Entries
:= Next
;
1001 Local_Suppress_Stack_Top
:= null;
1002 Global_Suppress_Stack_Top
:= null;
1004 -- Clear scope stack, and reset global variables
1007 Unloaded_Subunits
:= False;
1010 ------------------------------
1011 -- Insert_After_And_Analyze --
1012 ------------------------------
1014 procedure Insert_After_And_Analyze
(N
: Node_Id
; M
: Node_Id
) is
1020 -- If we are not at the end of the list, then the easiest
1021 -- coding is simply to insert before our successor.
1023 if Present
(Next
(N
)) then
1024 Insert_Before_And_Analyze
(Next
(N
), M
);
1026 -- Case of inserting at the end of the list
1029 -- Capture the Node_Id of the node to be inserted. This Node_Id
1030 -- will still be the same after the insert operation.
1033 Insert_After
(N
, M
);
1035 -- Now just analyze from the inserted node to the end of
1036 -- the new list (note that this properly handles the case
1037 -- where any of the analyze calls result in the insertion of
1038 -- nodes after the analyzed node, expecting analysis).
1040 while Present
(Node
) loop
1042 Mark_Rewrite_Insertion
(Node
);
1047 end Insert_After_And_Analyze
;
1049 -- Version with check(s) suppressed
1051 procedure Insert_After_And_Analyze
1054 Suppress
: Check_Id
)
1057 if Suppress
= All_Checks
then
1059 Svs
: constant Suppress_Array
:= Scope_Suppress
.Suppress
;
1061 Scope_Suppress
.Suppress
:= (others => True);
1062 Insert_After_And_Analyze
(N
, M
);
1063 Scope_Suppress
.Suppress
:= Svs
;
1068 Svg
: constant Boolean := Scope_Suppress
.Suppress
(Suppress
);
1070 Scope_Suppress
.Suppress
(Suppress
) := True;
1071 Insert_After_And_Analyze
(N
, M
);
1072 Scope_Suppress
.Suppress
(Suppress
) := Svg
;
1075 end Insert_After_And_Analyze
;
1077 -------------------------------
1078 -- Insert_Before_And_Analyze --
1079 -------------------------------
1081 procedure Insert_Before_And_Analyze
(N
: Node_Id
; M
: Node_Id
) is
1087 -- Capture the Node_Id of the first list node to be inserted.
1088 -- This will still be the first node after the insert operation,
1089 -- since Insert_List_After does not modify the Node_Id values.
1092 Insert_Before
(N
, M
);
1094 -- The insertion does not change the Id's of any of the nodes in
1095 -- the list, and they are still linked, so we can simply loop from
1096 -- the original first node until we meet the node before which the
1097 -- insertion is occurring. Note that this properly handles the case
1098 -- where any of the analyzed nodes insert nodes after themselves,
1099 -- expecting them to get analyzed.
1101 while Node
/= N
loop
1103 Mark_Rewrite_Insertion
(Node
);
1107 end Insert_Before_And_Analyze
;
1109 -- Version with check(s) suppressed
1111 procedure Insert_Before_And_Analyze
1114 Suppress
: Check_Id
)
1117 if Suppress
= All_Checks
then
1119 Svs
: constant Suppress_Array
:= Scope_Suppress
.Suppress
;
1121 Scope_Suppress
.Suppress
:= (others => True);
1122 Insert_Before_And_Analyze
(N
, M
);
1123 Scope_Suppress
.Suppress
:= Svs
;
1128 Svg
: constant Boolean := Scope_Suppress
.Suppress
(Suppress
);
1130 Scope_Suppress
.Suppress
(Suppress
) := True;
1131 Insert_Before_And_Analyze
(N
, M
);
1132 Scope_Suppress
.Suppress
(Suppress
) := Svg
;
1135 end Insert_Before_And_Analyze
;
1137 -----------------------------------
1138 -- Insert_List_After_And_Analyze --
1139 -----------------------------------
1141 procedure Insert_List_After_And_Analyze
(N
: Node_Id
; L
: List_Id
) is
1142 After
: constant Node_Id
:= Next
(N
);
1146 if Is_Non_Empty_List
(L
) then
1148 -- Capture the Node_Id of the first list node to be inserted.
1149 -- This will still be the first node after the insert operation,
1150 -- since Insert_List_After does not modify the Node_Id values.
1153 Insert_List_After
(N
, L
);
1155 -- Now just analyze from the original first node until we get to the
1156 -- successor of the original insertion point (which may be Empty if
1157 -- the insertion point was at the end of the list). Note that this
1158 -- properly handles the case where any of the analyze calls result in
1159 -- the insertion of nodes after the analyzed node (possibly calling
1160 -- this routine recursively).
1162 while Node
/= After
loop
1164 Mark_Rewrite_Insertion
(Node
);
1168 end Insert_List_After_And_Analyze
;
1170 -- Version with check(s) suppressed
1172 procedure Insert_List_After_And_Analyze
1173 (N
: Node_Id
; L
: List_Id
; Suppress
: Check_Id
)
1176 if Suppress
= All_Checks
then
1178 Svs
: constant Suppress_Array
:= Scope_Suppress
.Suppress
;
1180 Scope_Suppress
.Suppress
:= (others => True);
1181 Insert_List_After_And_Analyze
(N
, L
);
1182 Scope_Suppress
.Suppress
:= Svs
;
1187 Svg
: constant Boolean := Scope_Suppress
.Suppress
(Suppress
);
1189 Scope_Suppress
.Suppress
(Suppress
) := True;
1190 Insert_List_After_And_Analyze
(N
, L
);
1191 Scope_Suppress
.Suppress
(Suppress
) := Svg
;
1194 end Insert_List_After_And_Analyze
;
1196 ------------------------------------
1197 -- Insert_List_Before_And_Analyze --
1198 ------------------------------------
1200 procedure Insert_List_Before_And_Analyze
(N
: Node_Id
; L
: List_Id
) is
1204 if Is_Non_Empty_List
(L
) then
1206 -- Capture the Node_Id of the first list node to be inserted. This
1207 -- will still be the first node after the insert operation, since
1208 -- Insert_List_After does not modify the Node_Id values.
1211 Insert_List_Before
(N
, L
);
1213 -- The insertion does not change the Id's of any of the nodes in
1214 -- the list, and they are still linked, so we can simply loop from
1215 -- the original first node until we meet the node before which the
1216 -- insertion is occurring. Note that this properly handles the case
1217 -- where any of the analyzed nodes insert nodes after themselves,
1218 -- expecting them to get analyzed.
1220 while Node
/= N
loop
1222 Mark_Rewrite_Insertion
(Node
);
1226 end Insert_List_Before_And_Analyze
;
1228 -- Version with check(s) suppressed
1230 procedure Insert_List_Before_And_Analyze
1231 (N
: Node_Id
; L
: List_Id
; Suppress
: Check_Id
)
1234 if Suppress
= All_Checks
then
1236 Svs
: constant Suppress_Array
:= Scope_Suppress
.Suppress
;
1238 Scope_Suppress
.Suppress
:= (others => True);
1239 Insert_List_Before_And_Analyze
(N
, L
);
1240 Scope_Suppress
.Suppress
:= Svs
;
1245 Svg
: constant Boolean := Scope_Suppress
.Suppress
(Suppress
);
1247 Scope_Suppress
.Suppress
(Suppress
) := True;
1248 Insert_List_Before_And_Analyze
(N
, L
);
1249 Scope_Suppress
.Suppress
(Suppress
) := Svg
;
1252 end Insert_List_Before_And_Analyze
;
1260 Scope_Stack
.Locked
:= True;
1261 Scope_Stack
.Release
;
1268 procedure Preanalyze
(N
: Node_Id
) is
1269 Save_Full_Analysis
: constant Boolean := Full_Analysis
;
1272 Full_Analysis
:= False;
1273 Expander_Mode_Save_And_Set
(False);
1277 Expander_Mode_Restore
;
1278 Full_Analysis
:= Save_Full_Analysis
;
1281 --------------------------------------
1282 -- Push_Global_Suppress_Stack_Entry --
1283 --------------------------------------
1285 procedure Push_Global_Suppress_Stack_Entry
1286 (Entity
: Entity_Id
;
1291 Global_Suppress_Stack_Top
:=
1292 new Suppress_Stack_Entry
'
1295 Suppress => Suppress,
1296 Prev => Global_Suppress_Stack_Top,
1297 Next => Suppress_Stack_Entries);
1298 Suppress_Stack_Entries := Global_Suppress_Stack_Top;
1300 end Push_Global_Suppress_Stack_Entry;
1302 -------------------------------------
1303 -- Push_Local_Suppress_Stack_Entry --
1304 -------------------------------------
1306 procedure Push_Local_Suppress_Stack_Entry
1307 (Entity : Entity_Id;
1312 Local_Suppress_Stack_Top :=
1313 new Suppress_Stack_Entry'
1316 Suppress
=> Suppress
,
1317 Prev
=> Local_Suppress_Stack_Top
,
1318 Next
=> Suppress_Stack_Entries
);
1319 Suppress_Stack_Entries
:= Local_Suppress_Stack_Top
;
1322 end Push_Local_Suppress_Stack_Entry
;
1328 procedure Semantics
(Comp_Unit
: Node_Id
) is
1329 procedure Do_Analyze
;
1330 -- Perform the analysis of the compilation unit
1336 procedure Do_Analyze
is
1337 Save_Ghost_Mode
: constant Ghost_Mode_Type
:= Ghost_Mode
;
1339 -- Generally style checks are preserved across compilations, with
1340 -- one exception: s-oscons.ads, which allows arbitrary long lines
1341 -- unconditionally, and has no restore mechanism, because it is
1342 -- intended as a lowest-level Pure package.
1344 Save_Max_Line
: constant Int
:= Style_Max_Line_Length
;
1349 List
:= Save_Scope_Stack
;
1350 Push_Scope
(Standard_Standard
);
1352 -- Set up a clean environment before analyzing
1355 Outer_Generic_Scope
:= Empty
;
1356 Scope_Suppress
:= Suppress_Options
;
1358 (Scope_Stack
.Last
).Component_Alignment_Default
:=
1359 Configuration_Component_Alignment
;
1361 (Scope_Stack
.Last
).Is_Active_Stack_Base
:= True;
1363 -- Now analyze the top level compilation unit node
1365 Analyze
(Comp_Unit
);
1367 -- Check for scope mismatch on exit from compilation
1369 pragma Assert
(Current_Scope
= Standard_Standard
1370 or else Comp_Unit
= Cunit
(Main_Unit
));
1372 -- Then pop entry for Standard, and pop implicit types
1375 Restore_Scope_Stack
(List
);
1376 Ghost_Mode
:= Save_Ghost_Mode
;
1377 Style_Max_Line_Length
:= Save_Max_Line
;
1382 -- The following locations save the corresponding global flags and
1383 -- variables so that they can be restored on completion. This is needed
1384 -- so that calls to Rtsfind start with the proper default values for
1385 -- these variables, and also that such calls do not disturb the settings
1386 -- for units being analyzed at a higher level.
1388 S_Current_Sem_Unit
: constant Unit_Number_Type
:= Current_Sem_Unit
;
1389 S_Full_Analysis
: constant Boolean := Full_Analysis
;
1390 S_GNAT_Mode
: constant Boolean := GNAT_Mode
;
1391 S_Global_Dis_Names
: constant Boolean := Global_Discard_Names
;
1392 S_In_Assertion_Expr
: constant Nat
:= In_Assertion_Expr
;
1393 S_In_Default_Expr
: constant Boolean := In_Default_Expr
;
1394 S_In_Spec_Expr
: constant Boolean := In_Spec_Expression
;
1395 S_Inside_A_Generic
: constant Boolean := Inside_A_Generic
;
1396 S_Outer_Gen_Scope
: constant Entity_Id
:= Outer_Generic_Scope
;
1397 S_Style_Check
: constant Boolean := Style_Check
;
1399 Already_Analyzed
: constant Boolean := Analyzed
(Comp_Unit
);
1401 Curunit
: constant Unit_Number_Type
:= Get_Cunit_Unit_Number
(Comp_Unit
);
1402 -- New value of Current_Sem_Unit
1404 Generic_Main
: constant Boolean :=
1405 Nkind
(Unit
(Cunit
(Main_Unit
))) in N_Generic_Declaration
;
1406 -- If the main unit is generic, every compiled unit, including its
1407 -- context, is compiled with expansion disabled.
1409 Is_Main_Unit_Or_Main_Unit_Spec
: constant Boolean :=
1412 (Nkind
(Unit
(Cunit
(Main_Unit
))) = N_Package_Body
1413 and then Library_Unit
(Cunit
(Main_Unit
)) = Cunit
(Curunit
));
1414 -- Configuration flags have special settings when compiling a predefined
1415 -- file as a main unit. This applies to its spec as well.
1417 Ext_Main_Source_Unit
: constant Boolean :=
1418 In_Extended_Main_Source_Unit
(Comp_Unit
);
1419 -- Determine if unit is in extended main source unit
1421 Save_Config_Switches
: Config_Switches_Type
;
1422 -- Variable used to save values of config switches while we analyze the
1423 -- new unit, to be restored on exit for proper recursive behavior.
1425 Save_Cunit_Restrictions
: Save_Cunit_Boolean_Restrictions
;
1426 -- Used to save non-partition wide restrictions before processing new
1427 -- unit. All with'ed units are analyzed with config restrictions reset
1428 -- and we need to restore these saved values at the end.
1430 -- Start of processing for Semantics
1433 if Debug_Unit_Walk
then
1434 if Already_Analyzed
then
1435 Write_Str
("(done)");
1439 (Get_Cunit_Unit_Number
(Comp_Unit
),
1445 Compiler_State
:= Analyzing
;
1446 Current_Sem_Unit
:= Curunit
;
1448 -- Compile predefined units with GNAT_Mode set to True, to properly
1449 -- process the categorization stuff. However, do not set GNAT_Mode
1450 -- to True for the renamings units (Text_IO, IO_Exceptions, Direct_IO,
1451 -- Sequential_IO) as this would prevent pragma Extend_System from being
1452 -- taken into account, for example when Text_IO is renaming DEC.Text_IO.
1454 if Is_Predefined_File_Name
1455 (Unit_File_Name
(Current_Sem_Unit
), Renamings_Included
=> False)
1460 -- For generic main, never do expansion
1462 if Generic_Main
then
1463 Expander_Mode_Save_And_Set
(False);
1468 Expander_Mode_Save_And_Set
1470 -- Turn on expansion if generating code
1472 (Operating_Mode
= Generate_Code
1474 -- Or if special debug flag -gnatdx is set
1476 or else Debug_Flag_X
1478 -- Or if in configuration run-time mode. We do this so we get
1479 -- error messages about missing entities in the run-time even
1480 -- if we are compiling in -gnatc (no code generation) mode.
1481 -- Similar processing applies to No_Run_Time_Mode. However,
1482 -- don't do this if debug flag -gnatd.Z is set or when we are
1483 -- compiling a separate unit (this is to handle a situation
1484 -- where this new processing causes trouble).
1486 or else ((Configurable_Run_Time_Mode
or No_Run_Time_Mode
)
1487 and not Debug_Flag_Dot_ZZ
1488 and Nkind
(Unit
(Cunit
(Main_Unit
))) /= N_Subunit
));
1491 Full_Analysis
:= True;
1492 Inside_A_Generic
:= False;
1493 In_Assertion_Expr
:= 0;
1494 In_Default_Expr
:= False;
1495 In_Spec_Expression
:= False;
1496 Set_Comes_From_Source_Default
(False);
1498 -- Save current config switches and reset then appropriately
1500 Save_Opt_Config_Switches
(Save_Config_Switches
);
1501 Set_Opt_Config_Switches
1502 (Is_Internal_File_Name
(Unit_File_Name
(Current_Sem_Unit
)),
1503 Is_Main_Unit_Or_Main_Unit_Spec
);
1505 -- Save current non-partition-wide restrictions
1507 Save_Cunit_Restrictions
:= Cunit_Boolean_Restrictions_Save
;
1509 -- For unit in main extended unit, we reset the configuration values
1510 -- for the non-partition-wide restrictions. For other units reset them.
1512 if Ext_Main_Source_Unit
then
1513 Restore_Config_Cunit_Boolean_Restrictions
;
1515 Reset_Cunit_Boolean_Restrictions
;
1518 -- Turn off style checks for unit that is not in the extended main
1519 -- source unit. This improves processing efficiency for such units
1520 -- (for which we don't want style checks anyway, and where they will
1521 -- get suppressed), and is definitely needed to stop some style checks
1522 -- from invading the run-time units (e.g. overriding checks).
1524 if not Ext_Main_Source_Unit
then
1525 Style_Check
:= False;
1527 -- If this is part of the extended main source unit, set style check
1528 -- mode to match the style check mode of the main source unit itself.
1531 Style_Check
:= Style_Check_Main
;
1534 -- Only do analysis of unit that has not already been analyzed
1536 if not Analyzed
(Comp_Unit
) then
1537 Initialize_Version
(Current_Sem_Unit
);
1539 -- Do analysis, and then append the compilation unit onto the
1540 -- Comp_Unit_List, if appropriate. This is done after analysis,
1541 -- so if this unit depends on some others, they have already been
1542 -- appended. We ignore bodies, except for the main unit itself, and
1543 -- for subprogram bodies that act as specs. We have also to guard
1544 -- against ill-formed subunits that have an improper context.
1548 if Present
(Comp_Unit
)
1549 and then Nkind
(Unit
(Comp_Unit
)) in N_Proper_Body
1550 and then (Nkind
(Unit
(Comp_Unit
)) /= N_Subprogram_Body
1551 or else not Acts_As_Spec
(Comp_Unit
))
1552 and then not In_Extended_Main_Source_Unit
(Comp_Unit
)
1557 Append_New_Elmt
(Comp_Unit
, To
=> Comp_Unit_List
);
1559 if Debug_Unit_Walk
then
1560 Write_Str
("Appending ");
1562 (Get_Cunit_Unit_Number
(Comp_Unit
), Unit
(Comp_Unit
));
1567 -- Save indication of dynamic elaboration checks for ALI file
1569 Set_Dynamic_Elab
(Current_Sem_Unit
, Dynamic_Elaboration_Checks
);
1571 -- Restore settings of saved switches to entry values
1573 Current_Sem_Unit
:= S_Current_Sem_Unit
;
1574 Full_Analysis
:= S_Full_Analysis
;
1575 Global_Discard_Names
:= S_Global_Dis_Names
;
1576 GNAT_Mode
:= S_GNAT_Mode
;
1577 In_Assertion_Expr
:= S_In_Assertion_Expr
;
1578 In_Default_Expr
:= S_In_Default_Expr
;
1579 In_Spec_Expression
:= S_In_Spec_Expr
;
1580 Inside_A_Generic
:= S_Inside_A_Generic
;
1581 Outer_Generic_Scope
:= S_Outer_Gen_Scope
;
1582 Style_Check
:= S_Style_Check
;
1584 Restore_Opt_Config_Switches
(Save_Config_Switches
);
1586 -- Deal with restore of restrictions
1588 Cunit_Boolean_Restrictions_Restore
(Save_Cunit_Restrictions
);
1590 Expander_Mode_Restore
;
1592 if Debug_Unit_Walk
then
1595 if Already_Analyzed
then
1596 Write_Str
("(done)");
1600 (Get_Cunit_Unit_Number
(Comp_Unit
),
1610 function ss
(Index
: Int
) return Scope_Stack_Entry
is
1612 return Scope_Stack
.Table
(Index
);
1619 function sst
return Scope_Stack_Entry
is
1621 return ss
(Scope_Stack
.Last
);
1630 Scope_Stack
.Locked
:= False;
1633 ------------------------
1634 -- Walk_Library_Items --
1635 ------------------------
1637 procedure Walk_Library_Items
is
1638 type Unit_Number_Set
is array (Main_Unit
.. Last_Unit
) of Boolean;
1639 pragma Pack
(Unit_Number_Set
);
1641 Main_CU
: constant Node_Id
:= Cunit
(Main_Unit
);
1643 Seen
, Done
: Unit_Number_Set
:= (others => False);
1644 -- Seen (X) is True after we have seen unit X in the walk. This is used
1645 -- to prevent processing the same unit more than once. Done (X) is True
1646 -- after we have fully processed X, and is used only for debugging
1647 -- printouts and assertions.
1649 Do_Main
: Boolean := False;
1650 -- Flag to delay processing the main body until after all other units.
1651 -- This is needed because the spec of the main unit may appear in the
1652 -- context of some other unit. We do not want this to force processing
1653 -- of the main body before all other units have been processed.
1655 -- Another circularity pattern occurs when the main unit is a child unit
1656 -- and the body of an ancestor has a with-clause of the main unit or on
1657 -- one of its children. In both cases the body in question has a with-
1658 -- clause on the main unit, and must be excluded from the traversal. In
1659 -- some convoluted cases this may lead to a CodePeer error because the
1660 -- spec of a subprogram declared in an instance within the parent will
1661 -- not be seen in the main unit.
1663 function Depends_On_Main
(CU
: Node_Id
) return Boolean;
1664 -- The body of a unit that is withed by the spec of the main unit may in
1665 -- turn have a with_clause on that spec. In that case do not traverse
1666 -- the body, to prevent loops. It can also happen that the main body has
1667 -- a with_clause on a child, which of course has an implicit with on its
1668 -- parent. It's OK to traverse the child body if the main spec has been
1669 -- processed, otherwise we also have a circularity to avoid.
1671 procedure Do_Action
(CU
: Node_Id
; Item
: Node_Id
);
1672 -- Calls Action, with some validity checks
1674 procedure Do_Unit_And_Dependents
(CU
: Node_Id
; Item
: Node_Id
);
1675 -- Calls Do_Action, first on the units with'ed by this one, then on
1676 -- this unit. If it's an instance body, do the spec first. If it is
1677 -- an instance spec, do the body last.
1679 procedure Do_Withed_Unit
(Withed_Unit
: Node_Id
);
1680 -- Apply Do_Unit_And_Dependents to a unit in a context clause
1682 procedure Process_Bodies_In_Context
(Comp
: Node_Id
);
1683 -- The main unit and its spec may depend on bodies that contain generics
1684 -- that are instantiated in them. Iterate through the corresponding
1685 -- contexts before processing main (spec/body) itself, to process bodies
1686 -- that may be present, together with their context. The spec of main
1687 -- is processed wherever it appears in the list of units, while the body
1688 -- is processed as the last unit in the list.
1690 ---------------------
1691 -- Depends_On_Main --
1692 ---------------------
1694 function Depends_On_Main
(CU
: Node_Id
) return Boolean is
1696 MCU
: constant Node_Id
:= Unit
(Main_CU
);
1699 CL
:= First
(Context_Items
(CU
));
1701 -- Problem does not arise with main subprograms
1704 not Nkind_In
(MCU
, N_Package_Body
, N_Package_Declaration
)
1709 while Present
(CL
) loop
1710 if Nkind
(CL
) = N_With_Clause
1711 and then Library_Unit
(CL
) = Main_CU
1712 and then not Done
(Get_Cunit_Unit_Number
(Library_Unit
(CL
)))
1721 end Depends_On_Main
;
1727 procedure Do_Action
(CU
: Node_Id
; Item
: Node_Id
) is
1729 -- This calls Action at the end. All the preceding code is just
1730 -- assertions and debugging output.
1732 pragma Assert
(No
(CU
) or else Nkind
(CU
) = N_Compilation_Unit
);
1734 case Nkind
(Item
) is
1735 when N_Generic_Subprogram_Declaration |
1736 N_Generic_Package_Declaration |
1737 N_Package_Declaration |
1738 N_Subprogram_Declaration |
1739 N_Subprogram_Renaming_Declaration |
1740 N_Package_Renaming_Declaration |
1741 N_Generic_Function_Renaming_Declaration |
1742 N_Generic_Package_Renaming_Declaration |
1743 N_Generic_Procedure_Renaming_Declaration
=>
1749 when N_Package_Body
=>
1751 -- Package bodies are processed separately if the main unit
1756 when N_Subprogram_Body
=>
1758 -- A subprogram body must be the main unit
1760 pragma Assert
(Acts_As_Spec
(CU
)
1761 or else CU
= Cunit
(Main_Unit
));
1764 when N_Function_Instantiation |
1765 N_Procedure_Instantiation |
1766 N_Package_Instantiation
=>
1768 -- Can only happen if some generic body (needed for gnat2scil
1769 -- traversal, but not by GNAT) is not available, ignore.
1773 -- All other cases cannot happen
1776 pragma Assert
(False, "subunit");
1779 when N_Null_Statement
=>
1781 -- Do not call Action for an ignored ghost unit
1783 pragma Assert
(Is_Ignored_Ghost_Node
(Original_Node
(Item
)));
1787 pragma Assert
(False);
1791 if Present
(CU
) then
1792 pragma Assert
(Item
/= Stand
.Standard_Package_Node
);
1793 pragma Assert
(Item
= Unit
(CU
));
1796 Unit_Num
: constant Unit_Number_Type
:=
1797 Get_Cunit_Unit_Number
(CU
);
1799 procedure Assert_Done
(Withed_Unit
: Node_Id
);
1800 -- Assert Withed_Unit is already Done, unless it's a body. It
1801 -- might seem strange for a with_clause to refer to a body, but
1802 -- this happens in the case of a generic instantiation, which
1803 -- gets transformed into the instance body (and the instance
1804 -- spec is also created). With clauses pointing to the
1805 -- instantiation end up pointing to the instance body.
1811 procedure Assert_Done
(Withed_Unit
: Node_Id
) is
1813 if not Done
(Get_Cunit_Unit_Number
(Withed_Unit
)) then
1815 (Unit
(Withed_Unit
),
1816 N_Generic_Package_Declaration
,
1818 N_Package_Renaming_Declaration
,
1822 (Unit_Name
(Get_Cunit_Unit_Number
(Withed_Unit
)));
1823 Write_Str
(" not yet walked!");
1825 if Get_Cunit_Unit_Number
(Withed_Unit
) = Unit_Num
then
1826 Write_Str
(" (self-ref)");
1831 pragma Assert
(False);
1836 procedure Assert_Withed_Units_Done
is
1837 new Walk_Withs
(Assert_Done
);
1840 if Debug_Unit_Walk
then
1841 Write_Unit_Info
(Unit_Num
, Item
, Withs
=> True);
1844 -- Main unit should come last, except in the case where we
1845 -- skipped System_Aux_Id, in which case we missed the things it
1846 -- depends on, and in the case of parent bodies if present.
1849 (not Done
(Main_Unit
)
1850 or else Present
(System_Aux_Id
)
1851 or else Nkind
(Item
) = N_Package_Body
);
1853 -- We shouldn't do the same thing twice
1855 pragma Assert
(not Done
(Unit_Num
));
1857 -- Everything we depend upon should already be done
1860 (Assert_Withed_Units_Done
(CU
, Include_Limited
=> False));
1864 -- Must be Standard, which has no entry in the units table
1866 pragma Assert
(Item
= Stand
.Standard_Package_Node
);
1868 if Debug_Unit_Walk
then
1869 Write_Line
("Standard");
1876 --------------------
1877 -- Do_Withed_Unit --
1878 --------------------
1880 procedure Do_Withed_Unit
(Withed_Unit
: Node_Id
) is
1882 Do_Unit_And_Dependents
(Withed_Unit
, Unit
(Withed_Unit
));
1884 -- If the unit in the with_clause is a generic instance, the clause
1885 -- now denotes the instance body. Traverse the corresponding spec
1886 -- because there may be no other dependence that will force the
1887 -- traversal of its own context.
1889 if Nkind
(Unit
(Withed_Unit
)) = N_Package_Body
1890 and then Is_Generic_Instance
1891 (Defining_Entity
(Unit
(Library_Unit
(Withed_Unit
))))
1893 Do_Withed_Unit
(Library_Unit
(Withed_Unit
));
1897 ----------------------------
1898 -- Do_Unit_And_Dependents --
1899 ----------------------------
1901 procedure Do_Unit_And_Dependents
(CU
: Node_Id
; Item
: Node_Id
) is
1902 Unit_Num
: constant Unit_Number_Type
:= Get_Cunit_Unit_Number
(CU
);
1904 Body_U
: Unit_Number_Type
;
1905 Parent_CU
: Node_Id
;
1907 procedure Do_Withed_Units
is new Walk_Withs
(Do_Withed_Unit
);
1910 if not Seen
(Unit_Num
) then
1912 -- Process the with clauses
1914 Do_Withed_Units
(CU
, Include_Limited
=> False);
1916 -- Process the unit if it is a spec or the main unit, if it
1917 -- has no previous spec or we have done all other units.
1919 if not Nkind_In
(Item
, N_Package_Body
, N_Subprogram_Body
)
1920 or else Acts_As_Spec
(CU
)
1922 if CU
= Cunit
(Main_Unit
)
1923 and then not Do_Main
1925 Seen
(Unit_Num
) := False;
1928 Seen
(Unit_Num
) := True;
1930 if CU
= Library_Unit
(Main_CU
) then
1931 Process_Bodies_In_Context
(CU
);
1933 -- If main is a child unit, examine parent unit contexts
1934 -- to see if they include instantiated units. Also, if
1935 -- the parent itself is an instance, process its body
1936 -- because it may contain subprograms that are called
1937 -- in the main unit.
1939 if Is_Child_Unit
(Cunit_Entity
(Main_Unit
)) then
1940 Child
:= Cunit_Entity
(Main_Unit
);
1941 while Is_Child_Unit
(Child
) loop
1944 (Get_Cunit_Entity_Unit_Number
(Scope
(Child
)));
1945 Process_Bodies_In_Context
(Parent_CU
);
1947 if Nkind
(Unit
(Parent_CU
)) = N_Package_Body
1949 Nkind
(Original_Node
(Unit
(Parent_CU
)))
1950 = N_Package_Instantiation
1952 not Seen
(Get_Cunit_Unit_Number
(Parent_CU
))
1954 Body_U
:= Get_Cunit_Unit_Number
(Parent_CU
);
1955 Seen
(Body_U
) := True;
1956 Do_Action
(Parent_CU
, Unit
(Parent_CU
));
1957 Done
(Body_U
) := True;
1960 Child
:= Scope
(Child
);
1965 Do_Action
(CU
, Item
);
1966 Done
(Unit_Num
) := True;
1970 end Do_Unit_And_Dependents
;
1972 -------------------------------
1973 -- Process_Bodies_In_Context --
1974 -------------------------------
1976 procedure Process_Bodies_In_Context
(Comp
: Node_Id
) is
1978 Body_U
: Unit_Number_Type
;
1982 procedure Do_Withed_Units
is new Walk_Withs
(Do_Withed_Unit
);
1984 -- Start of processing for Process_Bodies_In_Context
1987 Clause
:= First
(Context_Items
(Comp
));
1988 while Present
(Clause
) loop
1989 if Nkind
(Clause
) = N_With_Clause
then
1990 Spec
:= Library_Unit
(Clause
);
1991 Body_CU
:= Library_Unit
(Spec
);
1993 -- If we are processing the spec of the main unit, load bodies
1994 -- only if the with_clause indicates that it forced the loading
1995 -- of the body for a generic instantiation. Note that bodies of
1996 -- parents that are instances have been loaded already.
1998 if Present
(Body_CU
)
1999 and then Body_CU
/= Cunit
(Main_Unit
)
2000 and then Nkind
(Unit
(Body_CU
)) /= N_Subprogram_Body
2001 and then (Nkind
(Unit
(Comp
)) /= N_Package_Declaration
2002 or else Present
(Withed_Body
(Clause
)))
2004 Body_U
:= Get_Cunit_Unit_Number
(Body_CU
);
2006 if not Seen
(Body_U
)
2007 and then not Depends_On_Main
(Body_CU
)
2009 Seen
(Body_U
) := True;
2010 Do_Withed_Units
(Body_CU
, Include_Limited
=> False);
2011 Do_Action
(Body_CU
, Unit
(Body_CU
));
2012 Done
(Body_U
) := True;
2019 end Process_Bodies_In_Context
;
2021 -- Local Declarations
2025 -- Start of processing for Walk_Library_Items
2028 if Debug_Unit_Walk
then
2029 Write_Line
("Walk_Library_Items:");
2033 -- Do Standard first, then walk the Comp_Unit_List
2035 Do_Action
(Empty
, Standard_Package_Node
);
2037 -- First place the context of all instance bodies on the corresponding
2038 -- spec, because it may be needed to analyze the code at the place of
2039 -- the instantiation.
2041 Cur
:= First_Elmt
(Comp_Unit_List
);
2042 while Present
(Cur
) loop
2044 CU
: constant Node_Id
:= Node
(Cur
);
2045 N
: constant Node_Id
:= Unit
(CU
);
2048 if Nkind
(N
) = N_Package_Body
2049 and then Is_Generic_Instance
(Defining_Entity
(N
))
2052 (Context_Items
(CU
), Context_Items
(Library_Unit
(CU
)));
2059 -- Now traverse compilation units (specs) in order
2061 Cur
:= First_Elmt
(Comp_Unit_List
);
2062 while Present
(Cur
) loop
2064 CU
: constant Node_Id
:= Node
(Cur
);
2065 N
: constant Node_Id
:= Unit
(CU
);
2069 pragma Assert
(Nkind
(CU
) = N_Compilation_Unit
);
2073 -- If it is a subprogram body, process it if it has no
2076 -- If it's a package body, ignore it, unless it is a body
2077 -- created for an instance that is the main unit. In the case
2078 -- of subprograms, the body is the wrapper package. In case of
2079 -- a package, the original file carries the body, and the spec
2080 -- appears as a later entry in the units list.
2082 -- Otherwise bodies appear in the list only because of inlining
2083 -- or instantiations, and they are processed only if relevant.
2084 -- The flag Withed_Body on a context clause indicates that a
2085 -- unit contains an instantiation that may be needed later,
2086 -- and therefore the body that contains the generic body (and
2087 -- its context) must be traversed immediately after the
2088 -- corresponding spec (see Do_Unit_And_Dependents).
2090 -- The main unit itself is processed separately after all other
2091 -- specs, and relevant bodies are examined in Process_Main.
2093 when N_Subprogram_Body
=>
2094 if Acts_As_Spec
(N
) then
2095 Do_Unit_And_Dependents
(CU
, N
);
2098 when N_Package_Body
=>
2100 and then Nkind
(Original_Node
(Unit
(Main_CU
))) in
2101 N_Generic_Instantiation
2102 and then Present
(Library_Unit
(Main_CU
))
2104 Do_Unit_And_Dependents
2105 (Library_Unit
(Main_CU
),
2106 Unit
(Library_Unit
(Main_CU
)));
2109 -- It is a spec, process it, and the units it depends on,
2110 -- unless it is a descendant of the main unit. This can happen
2111 -- when the body of a parent depends on some other descendant.
2113 when N_Null_Statement
=>
2115 -- Ignore an ignored ghost unit
2117 pragma Assert
(Is_Ignored_Ghost_Node
(Original_Node
(N
)));
2121 Par
:= Scope
(Defining_Entity
(Unit
(CU
)));
2123 if Is_Child_Unit
(Defining_Entity
(Unit
(CU
))) then
2125 and then Par
/= Standard_Standard
2126 and then Par
/= Cunit_Entity
(Main_Unit
)
2132 if Par
/= Cunit_Entity
(Main_Unit
) then
2133 Do_Unit_And_Dependents
(CU
, N
);
2141 -- Now process package bodies on which main depends, followed by bodies
2142 -- of parents, if present, and finally main itself.
2144 if not Done
(Main_Unit
) then
2147 Process_Main
: declare
2148 Parent_CU
: Node_Id
;
2150 Body_U
: Unit_Number_Type
;
2153 function Is_Subunit_Of_Main
(U
: Node_Id
) return Boolean;
2154 -- If the main unit has subunits, their context may include
2155 -- bodies that are needed in the body of main. We must examine
2156 -- the context of the subunits, which are otherwise not made
2157 -- explicit in the main unit.
2159 ------------------------
2160 -- Is_Subunit_Of_Main --
2161 ------------------------
2163 function Is_Subunit_Of_Main
(U
: Node_Id
) return Boolean is
2169 Lib
:= Library_Unit
(U
);
2170 return Nkind
(Unit
(U
)) = N_Subunit
2172 (Lib
= Cunit
(Main_Unit
)
2173 or else Is_Subunit_Of_Main
(Lib
));
2175 end Is_Subunit_Of_Main
;
2177 -- Start of processing for Process_Main
2180 Process_Bodies_In_Context
(Main_CU
);
2182 for Unit_Num
in Done
'Range loop
2183 if Is_Subunit_Of_Main
(Cunit
(Unit_Num
)) then
2184 Process_Bodies_In_Context
(Cunit
(Unit_Num
));
2188 -- If the main unit is a child unit, parent bodies may be present
2189 -- because they export instances or inlined subprograms. Check for
2190 -- presence of these, which are not present in context clauses.
2191 -- Note that if the parents are instances, their bodies have been
2192 -- processed before the main spec, because they may be needed
2193 -- therein, so the following loop only affects non-instances.
2195 if Is_Child_Unit
(Cunit_Entity
(Main_Unit
)) then
2196 Child
:= Cunit_Entity
(Main_Unit
);
2197 while Is_Child_Unit
(Child
) loop
2199 Cunit
(Get_Cunit_Entity_Unit_Number
(Scope
(Child
)));
2200 Body_CU
:= Library_Unit
(Parent_CU
);
2202 if Present
(Body_CU
)
2203 and then not Seen
(Get_Cunit_Unit_Number
(Body_CU
))
2204 and then not Depends_On_Main
(Body_CU
)
2206 Body_U
:= Get_Cunit_Unit_Number
(Body_CU
);
2207 Seen
(Body_U
) := True;
2208 Do_Action
(Body_CU
, Unit
(Body_CU
));
2209 Done
(Body_U
) := True;
2212 Child
:= Scope
(Child
);
2216 Do_Action
(Main_CU
, Unit
(Main_CU
));
2217 Done
(Main_Unit
) := True;
2221 if Debug_Unit_Walk
then
2222 if Done
/= (Done
'Range => True) then
2224 Write_Line
("Ignored units:");
2228 for Unit_Num
in Done
'Range loop
2229 if not Done
(Unit_Num
) then
2231 (Unit_Num
, Unit
(Cunit
(Unit_Num
)), Withs
=> True);
2239 pragma Assert
(Done
(Main_Unit
));
2241 if Debug_Unit_Walk
then
2243 Write_Line
("end Walk_Library_Items.");
2245 end Walk_Library_Items
;
2251 procedure Walk_Withs
(CU
: Node_Id
; Include_Limited
: Boolean) is
2252 pragma Assert
(Nkind
(CU
) = N_Compilation_Unit
);
2253 pragma Assert
(Nkind
(Unit
(CU
)) /= N_Subunit
);
2255 procedure Walk_Immediate
is new Walk_Withs_Immediate
(Action
);
2258 -- First walk the withs immediately on the library item
2260 Walk_Immediate
(CU
, Include_Limited
);
2262 -- For a body, we must also check for any subunits which belong to it
2263 -- and which have context clauses of their own, since these with'ed
2264 -- units are part of its own dependencies.
2266 if Nkind
(Unit
(CU
)) in N_Unit_Body
then
2267 for S
in Main_Unit
.. Last_Unit
loop
2269 -- We are only interested in subunits. For preproc. data and def.
2270 -- files, Cunit is Empty, so we need to test that first.
2272 if Cunit
(S
) /= Empty
2273 and then Nkind
(Unit
(Cunit
(S
))) = N_Subunit
2279 Pnode
:= Library_Unit
(Cunit
(S
));
2281 -- In -gnatc mode, the errors in the subunits will not have
2282 -- been recorded, but the analysis of the subunit may have
2283 -- failed, so just quit.
2289 -- Find ultimate parent of the subunit
2291 while Nkind
(Unit
(Pnode
)) = N_Subunit
loop
2292 Pnode
:= Library_Unit
(Pnode
);
2295 -- See if it belongs to current unit, and if so, include its
2296 -- with_clauses. Do not process main unit prematurely.
2298 if Pnode
= CU
and then CU
/= Cunit
(Main_Unit
) then
2299 Walk_Immediate
(Cunit
(S
), Include_Limited
);
2307 --------------------------
2308 -- Walk_Withs_Immediate --
2309 --------------------------
2311 procedure Walk_Withs_Immediate
(CU
: Node_Id
; Include_Limited
: Boolean) is
2312 pragma Assert
(Nkind
(CU
) = N_Compilation_Unit
);
2314 Context_Item
: Node_Id
;
2319 Context_Item
:= First
(Context_Items
(CU
));
2320 while Present
(Context_Item
) loop
2321 if Nkind
(Context_Item
) = N_With_Clause
2322 and then (Include_Limited
2323 or else not Limited_Present
(Context_Item
))
2325 Lib_Unit
:= Library_Unit
(Context_Item
);
2328 -- If the context item indicates that a package body is needed
2329 -- because of an instantiation in CU, traverse the body now, even
2330 -- if CU is not related to the main unit. If the generic itself
2331 -- appears in a package body, the context item is this body, and
2332 -- it already appears in the traversal order, so we only need to
2333 -- examine the case of a context item being a package declaration.
2335 if Present
(Withed_Body
(Context_Item
))
2336 and then Nkind
(Unit
(Lib_Unit
)) = N_Package_Declaration
2337 and then Present
(Corresponding_Body
(Unit
(Lib_Unit
)))
2341 (Unit_Declaration_Node
2342 (Corresponding_Body
(Unit
(Lib_Unit
))));
2344 -- A body may have an implicit with on its own spec, in which
2345 -- case we must ignore this context item to prevent looping.
2347 if Unit
(CU
) /= Unit
(Body_CU
) then
2353 Context_Item
:= Next
(Context_Item
);
2355 end Walk_Withs_Immediate
;