1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2013, 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 Expander
; use Expander
;
31 with Fname
; use Fname
;
33 with Lib
.Load
; use Lib
.Load
;
34 with Nlists
; use Nlists
;
36 with Output
; use Output
;
37 with Restrict
; use Restrict
;
38 with Sem_Attr
; use Sem_Attr
;
39 with Sem_Aux
; use Sem_Aux
;
40 with Sem_Ch2
; use Sem_Ch2
;
41 with Sem_Ch3
; use Sem_Ch3
;
42 with Sem_Ch4
; use Sem_Ch4
;
43 with Sem_Ch5
; use Sem_Ch5
;
44 with Sem_Ch6
; use Sem_Ch6
;
45 with Sem_Ch7
; use Sem_Ch7
;
46 with Sem_Ch8
; use Sem_Ch8
;
47 with Sem_Ch9
; use Sem_Ch9
;
48 with Sem_Ch10
; use Sem_Ch10
;
49 with Sem_Ch11
; use Sem_Ch11
;
50 with Sem_Ch12
; use Sem_Ch12
;
51 with Sem_Ch13
; use Sem_Ch13
;
52 with Sem_Prag
; use Sem_Prag
;
53 with Sem_Util
; use Sem_Util
;
54 with Sinfo
; use Sinfo
;
55 with Stand
; use Stand
;
56 with Uintp
; use Uintp
;
57 with Uname
; use Uname
;
59 with Unchecked_Deallocation
;
61 pragma Warnings
(Off
, Sem_Util
);
62 -- Suppress warnings of unused with for Sem_Util (used only in asserts)
66 Debug_Unit_Walk
: Boolean renames Debug_Flag_Dot_WW
;
67 -- Controls debugging printouts for Walk_Library_Items
69 Outer_Generic_Scope
: Entity_Id
:= Empty
;
70 -- Global reference to the outer scope that is generic. In a non-generic
71 -- context, it is empty. At the moment, it is only used for avoiding
72 -- freezing of external references in generics.
74 Comp_Unit_List
: Elist_Id
:= No_Elist
;
75 -- Used by Walk_Library_Items. This is a list of N_Compilation_Unit nodes
76 -- processed by Semantics, in an appropriate order. Initialized to
77 -- No_Elist, because it's too early to call New_Elmt_List; we will set it
78 -- to New_Elmt_List on first use.
81 with procedure Action
(Withed_Unit
: Node_Id
);
82 procedure Walk_Withs_Immediate
(CU
: Node_Id
; Include_Limited
: Boolean);
83 -- Walk all the with clauses of CU, and call Action for the with'ed unit.
84 -- Ignore limited withs, unless Include_Limited is True. CU must be an
85 -- N_Compilation_Unit.
88 with procedure Action
(Withed_Unit
: Node_Id
);
89 procedure Walk_Withs
(CU
: Node_Id
; Include_Limited
: Boolean);
90 -- Same as Walk_Withs_Immediate, but also include with clauses on subunits
91 -- of this unit, since they count as dependences on their parent library
92 -- item. CU must be an N_Compilation_Unit whose Unit is not an N_Subunit.
98 procedure Analyze
(N
: Node_Id
) is
100 Debug_A_Entry
("analyzing ", N
);
102 -- Immediate return if already analyzed
105 Debug_A_Exit
("analyzing ", N
, " (done, analyzed already)");
109 -- Otherwise processing depends on the node kind
113 when N_Abort_Statement
=>
114 Analyze_Abort_Statement
(N
);
116 when N_Abstract_Subprogram_Declaration
=>
117 Analyze_Abstract_Subprogram_Declaration
(N
);
119 when N_Accept_Alternative
=>
120 Analyze_Accept_Alternative
(N
);
122 when N_Accept_Statement
=>
123 Analyze_Accept_Statement
(N
);
126 Analyze_Aggregate
(N
);
129 Analyze_Allocator
(N
);
132 Analyze_Short_Circuit
(N
);
134 when N_Assignment_Statement
=>
135 Analyze_Assignment
(N
);
137 when N_Asynchronous_Select
=>
138 Analyze_Asynchronous_Select
(N
);
141 Analyze_At_Clause
(N
);
143 when N_Attribute_Reference
=>
144 Analyze_Attribute
(N
);
146 when N_Attribute_Definition_Clause
=>
147 Analyze_Attribute_Definition_Clause
(N
);
149 when N_Block_Statement
=>
150 Analyze_Block_Statement
(N
);
152 when N_Case_Expression
=>
153 Analyze_Case_Expression
(N
);
155 when N_Case_Statement
=>
156 Analyze_Case_Statement
(N
);
158 when N_Character_Literal
=>
159 Analyze_Character_Literal
(N
);
161 when N_Code_Statement
=>
162 Analyze_Code_Statement
(N
);
164 when N_Compilation_Unit
=>
165 Analyze_Compilation_Unit
(N
);
167 when N_Component_Declaration
=>
168 Analyze_Component_Declaration
(N
);
170 when N_Conditional_Entry_Call
=>
171 Analyze_Conditional_Entry_Call
(N
);
173 when N_Delay_Alternative
=>
174 Analyze_Delay_Alternative
(N
);
176 when N_Delay_Relative_Statement
=>
177 Analyze_Delay_Relative
(N
);
179 when N_Delay_Until_Statement
=>
180 Analyze_Delay_Until
(N
);
183 Analyze_Entry_Body
(N
);
185 when N_Entry_Body_Formal_Part
=>
186 Analyze_Entry_Body_Formal_Part
(N
);
188 when N_Entry_Call_Alternative
=>
189 Analyze_Entry_Call_Alternative
(N
);
191 when N_Entry_Declaration
=>
192 Analyze_Entry_Declaration
(N
);
194 when N_Entry_Index_Specification
=>
195 Analyze_Entry_Index_Specification
(N
);
197 when N_Enumeration_Representation_Clause
=>
198 Analyze_Enumeration_Representation_Clause
(N
);
200 when N_Exception_Declaration
=>
201 Analyze_Exception_Declaration
(N
);
203 when N_Exception_Renaming_Declaration
=>
204 Analyze_Exception_Renaming
(N
);
206 when N_Exit_Statement
=>
207 Analyze_Exit_Statement
(N
);
209 when N_Expanded_Name
=>
210 Analyze_Expanded_Name
(N
);
212 when N_Explicit_Dereference
=>
213 Analyze_Explicit_Dereference
(N
);
215 when N_Expression_Function
=>
216 Analyze_Expression_Function
(N
);
218 when N_Expression_With_Actions
=>
219 Analyze_Expression_With_Actions
(N
);
221 when N_Extended_Return_Statement
=>
222 Analyze_Extended_Return_Statement
(N
);
224 when N_Extension_Aggregate
=>
225 Analyze_Aggregate
(N
);
227 when N_Formal_Object_Declaration
=>
228 Analyze_Formal_Object_Declaration
(N
);
230 when N_Formal_Package_Declaration
=>
231 Analyze_Formal_Package_Declaration
(N
);
233 when N_Formal_Subprogram_Declaration
=>
234 Analyze_Formal_Subprogram_Declaration
(N
);
236 when N_Formal_Type_Declaration
=>
237 Analyze_Formal_Type_Declaration
(N
);
239 when N_Free_Statement
=>
240 Analyze_Free_Statement
(N
);
242 when N_Freeze_Entity
=>
243 Analyze_Freeze_Entity
(N
);
245 when N_Freeze_Generic_Entity
=>
246 Analyze_Freeze_Generic_Entity
(N
);
248 when N_Full_Type_Declaration
=>
249 Analyze_Full_Type_Declaration
(N
);
251 when N_Function_Call
=>
252 Analyze_Function_Call
(N
);
254 when N_Function_Instantiation
=>
255 Analyze_Function_Instantiation
(N
);
257 when N_Generic_Function_Renaming_Declaration
=>
258 Analyze_Generic_Function_Renaming
(N
);
260 when N_Generic_Package_Declaration
=>
261 Analyze_Generic_Package_Declaration
(N
);
263 when N_Generic_Package_Renaming_Declaration
=>
264 Analyze_Generic_Package_Renaming
(N
);
266 when N_Generic_Procedure_Renaming_Declaration
=>
267 Analyze_Generic_Procedure_Renaming
(N
);
269 when N_Generic_Subprogram_Declaration
=>
270 Analyze_Generic_Subprogram_Declaration
(N
);
272 when N_Goto_Statement
=>
273 Analyze_Goto_Statement
(N
);
275 when N_Handled_Sequence_Of_Statements
=>
276 Analyze_Handled_Statements
(N
);
279 Analyze_Identifier
(N
);
281 when N_If_Expression
=>
282 Analyze_If_Expression
(N
);
284 when N_If_Statement
=>
285 Analyze_If_Statement
(N
);
287 when N_Implicit_Label_Declaration
=>
288 Analyze_Implicit_Label_Declaration
(N
);
291 Analyze_Membership_Op
(N
);
293 when N_Incomplete_Type_Declaration
=>
294 Analyze_Incomplete_Type_Decl
(N
);
296 when N_Indexed_Component
=>
297 Analyze_Indexed_Component_Form
(N
);
299 when N_Integer_Literal
=>
300 Analyze_Integer_Literal
(N
);
302 when N_Iterator_Specification
=>
303 Analyze_Iterator_Specification
(N
);
305 when N_Itype_Reference
=>
306 Analyze_Itype_Reference
(N
);
311 when N_Loop_Parameter_Specification
=>
312 Analyze_Loop_Parameter_Specification
(N
);
314 when N_Loop_Statement
=>
315 Analyze_Loop_Statement
(N
);
318 Analyze_Membership_Op
(N
);
323 when N_Null_Statement
=>
324 Analyze_Null_Statement
(N
);
326 when N_Number_Declaration
=>
327 Analyze_Number_Declaration
(N
);
329 when N_Object_Declaration
=>
330 Analyze_Object_Declaration
(N
);
332 when N_Object_Renaming_Declaration
=>
333 Analyze_Object_Renaming
(N
);
335 when N_Operator_Symbol
=>
336 Analyze_Operator_Symbol
(N
);
339 Analyze_Unary_Op
(N
);
342 Analyze_Arithmetic_Op
(N
);
345 Analyze_Logical_Op
(N
);
348 Analyze_Concatenation
(N
);
351 Analyze_Arithmetic_Op
(N
);
354 Analyze_Equality_Op
(N
);
357 Analyze_Arithmetic_Op
(N
);
360 Analyze_Comparison_Op
(N
);
363 Analyze_Comparison_Op
(N
);
366 Analyze_Comparison_Op
(N
);
369 Analyze_Comparison_Op
(N
);
372 Analyze_Unary_Op
(N
);
377 when N_Op_Multiply
=>
378 Analyze_Arithmetic_Op
(N
);
381 Analyze_Equality_Op
(N
);
384 Analyze_Negation
(N
);
387 Analyze_Logical_Op
(N
);
390 Analyze_Unary_Op
(N
);
393 Analyze_Arithmetic_Op
(N
);
395 when N_Op_Rotate_Left
=>
396 Analyze_Arithmetic_Op
(N
);
398 when N_Op_Rotate_Right
=>
399 Analyze_Arithmetic_Op
(N
);
401 when N_Op_Shift_Left
=>
402 Analyze_Arithmetic_Op
(N
);
404 when N_Op_Shift_Right
=>
405 Analyze_Arithmetic_Op
(N
);
407 when N_Op_Shift_Right_Arithmetic
=>
408 Analyze_Arithmetic_Op
(N
);
410 when N_Op_Subtract
=>
411 Analyze_Arithmetic_Op
(N
);
414 Analyze_Logical_Op
(N
);
417 Analyze_Short_Circuit
(N
);
419 when N_Others_Choice
=>
420 Analyze_Others_Choice
(N
);
422 when N_Package_Body
=>
423 Analyze_Package_Body
(N
);
425 when N_Package_Body_Stub
=>
426 Analyze_Package_Body_Stub
(N
);
428 when N_Package_Declaration
=>
429 Analyze_Package_Declaration
(N
);
431 when N_Package_Instantiation
=>
432 Analyze_Package_Instantiation
(N
);
434 when N_Package_Renaming_Declaration
=>
435 Analyze_Package_Renaming
(N
);
437 when N_Package_Specification
=>
438 Analyze_Package_Specification
(N
);
440 when N_Parameter_Association
=>
441 Analyze_Parameter_Association
(N
);
446 when N_Private_Extension_Declaration
=>
447 Analyze_Private_Extension_Declaration
(N
);
449 when N_Private_Type_Declaration
=>
450 Analyze_Private_Type_Declaration
(N
);
452 when N_Procedure_Call_Statement
=>
453 Analyze_Procedure_Call
(N
);
455 when N_Procedure_Instantiation
=>
456 Analyze_Procedure_Instantiation
(N
);
458 when N_Protected_Body
=>
459 Analyze_Protected_Body
(N
);
461 when N_Protected_Body_Stub
=>
462 Analyze_Protected_Body_Stub
(N
);
464 when N_Protected_Definition
=>
465 Analyze_Protected_Definition
(N
);
467 when N_Protected_Type_Declaration
=>
468 Analyze_Protected_Type_Declaration
(N
);
470 when N_Qualified_Expression
=>
471 Analyze_Qualified_Expression
(N
);
473 when N_Quantified_Expression
=>
474 Analyze_Quantified_Expression
(N
);
476 when N_Raise_Expression
=>
477 Analyze_Raise_Expression
(N
);
479 when N_Raise_Statement
=>
480 Analyze_Raise_Statement
(N
);
482 when N_Raise_xxx_Error
=>
483 Analyze_Raise_xxx_Error
(N
);
488 when N_Range_Constraint
=>
489 Analyze_Range
(Range_Expression
(N
));
491 when N_Real_Literal
=>
492 Analyze_Real_Literal
(N
);
494 when N_Record_Representation_Clause
=>
495 Analyze_Record_Representation_Clause
(N
);
498 Analyze_Reference
(N
);
500 when N_Requeue_Statement
=>
503 when N_Simple_Return_Statement
=>
504 Analyze_Simple_Return_Statement
(N
);
506 when N_Selected_Component
=>
507 Find_Selected_Component
(N
);
508 -- ??? why not Analyze_Selected_Component, needs comments
510 when N_Selective_Accept
=>
511 Analyze_Selective_Accept
(N
);
513 when N_Single_Protected_Declaration
=>
514 Analyze_Single_Protected_Declaration
(N
);
516 when N_Single_Task_Declaration
=>
517 Analyze_Single_Task_Declaration
(N
);
522 when N_String_Literal
=>
523 Analyze_String_Literal
(N
);
525 when N_Subprogram_Body
=>
526 Analyze_Subprogram_Body
(N
);
528 when N_Subprogram_Body_Stub
=>
529 Analyze_Subprogram_Body_Stub
(N
);
531 when N_Subprogram_Declaration
=>
532 Analyze_Subprogram_Declaration
(N
);
534 when N_Subprogram_Info
=>
535 Analyze_Subprogram_Info
(N
);
537 when N_Subprogram_Renaming_Declaration
=>
538 Analyze_Subprogram_Renaming
(N
);
540 when N_Subtype_Declaration
=>
541 Analyze_Subtype_Declaration
(N
);
543 when N_Subtype_Indication
=>
544 Analyze_Subtype_Indication
(N
);
550 Analyze_Task_Body
(N
);
552 when N_Task_Body_Stub
=>
553 Analyze_Task_Body_Stub
(N
);
555 when N_Task_Definition
=>
556 Analyze_Task_Definition
(N
);
558 when N_Task_Type_Declaration
=>
559 Analyze_Task_Type_Declaration
(N
);
561 when N_Terminate_Alternative
=>
562 Analyze_Terminate_Alternative
(N
);
564 when N_Timed_Entry_Call
=>
565 Analyze_Timed_Entry_Call
(N
);
567 when N_Triggering_Alternative
=>
568 Analyze_Triggering_Alternative
(N
);
570 when N_Type_Conversion
=>
571 Analyze_Type_Conversion
(N
);
573 when N_Unchecked_Expression
=>
574 Analyze_Unchecked_Expression
(N
);
576 when N_Unchecked_Type_Conversion
=>
577 Analyze_Unchecked_Type_Conversion
(N
);
579 when N_Use_Package_Clause
=>
580 Analyze_Use_Package
(N
);
582 when N_Use_Type_Clause
=>
583 Analyze_Use_Type
(N
);
585 when N_Validate_Unchecked_Conversion
=>
588 when N_Variant_Part
=>
589 Analyze_Variant_Part
(N
);
591 when N_With_Clause
=>
592 Analyze_With_Clause
(N
);
594 -- A call to analyze the Empty node is an error, but most likely it
595 -- is an error caused by an attempt to analyze a malformed piece of
596 -- tree caused by some other error, so if there have been any other
597 -- errors, we just ignore it, otherwise it is a real internal error
598 -- which we complain about.
600 -- We must also consider the case of call to a runtime function that
601 -- is not available in the configurable runtime.
604 pragma Assert
(Serious_Errors_Detected
/= 0
605 or else Configurable_Run_Time_Violations
/= 0);
608 -- A call to analyze the error node is simply ignored, to avoid
609 -- causing cascaded errors (happens of course only in error cases)
614 -- Push/Pop nodes normally don't come through an analyze call. An
615 -- exception is the dummy ones bracketing a subprogram body. In any
616 -- case there is nothing to be done to analyze such nodes.
618 when N_Push_Pop_xxx_Label
=>
621 -- SCIL nodes don't need analysis because they are decorated when
622 -- they are built. They are added to the tree by Insert_Actions and
623 -- the call to analyze them is generated when the full list is
627 N_SCIL_Dispatch_Table_Tag_Init |
628 N_SCIL_Dispatching_Call |
629 N_SCIL_Membership_Test
=>
632 -- For the remaining node types, we generate compiler abort, because
633 -- these nodes are always analyzed within the Sem_Chn routines and
634 -- there should never be a case of making a call to the main Analyze
635 -- routine for these node kinds. For example, an N_Access_Definition
636 -- node appears only in the context of a type declaration, and is
637 -- processed by the analyze routine for type declarations.
641 N_Access_Definition |
642 N_Access_Function_Definition |
643 N_Access_Procedure_Definition |
644 N_Access_To_Object_Definition |
645 N_Aspect_Specification |
646 N_Case_Expression_Alternative |
647 N_Case_Statement_Alternative |
648 N_Compilation_Unit_Aux |
649 N_Component_Association |
651 N_Component_Definition |
653 N_Constrained_Array_Definition |
655 N_Decimal_Fixed_Point_Definition |
656 N_Defining_Character_Literal |
657 N_Defining_Identifier |
658 N_Defining_Operator_Symbol |
659 N_Defining_Program_Unit_Name |
661 N_Derived_Type_Definition |
663 N_Digits_Constraint |
664 N_Discriminant_Association |
665 N_Discriminant_Specification |
667 N_Entry_Call_Statement |
668 N_Enumeration_Type_Definition |
669 N_Exception_Handler |
670 N_Floating_Point_Definition |
671 N_Formal_Decimal_Fixed_Point_Definition |
672 N_Formal_Derived_Type_Definition |
673 N_Formal_Discrete_Type_Definition |
674 N_Formal_Floating_Point_Definition |
675 N_Formal_Modular_Type_Definition |
676 N_Formal_Ordinary_Fixed_Point_Definition |
677 N_Formal_Private_Type_Definition |
678 N_Formal_Incomplete_Type_Definition |
679 N_Formal_Signed_Integer_Type_Definition |
680 N_Function_Specification |
681 N_Generic_Association |
682 N_Index_Or_Discriminant_Constraint |
685 N_Modular_Type_Definition |
686 N_Ordinary_Fixed_Point_Definition |
687 N_Parameter_Specification |
688 N_Pragma_Argument_Association |
689 N_Procedure_Specification |
690 N_Real_Range_Specification |
691 N_Record_Definition |
692 N_Signed_Integer_Type_Definition |
693 N_Unconstrained_Array_Definition |
701 Debug_A_Exit
("analyzing ", N
, " (done)");
703 -- Now that we have analyzed the node, we call the expander to perform
704 -- possible expansion. We skip this for subexpressions, because we don't
705 -- have the type yet, and the expander will need to know the type before
706 -- it can do its job. For subexpression nodes, the call to the expander
707 -- happens in Sem_Res.Resolve. A special exception is Raise_xxx_Error,
708 -- which can appear in a statement context, and needs expanding now in
709 -- the case (distinguished by Etype, as documented in Sinfo).
711 -- The Analyzed flag is also set at this point for non-subexpression
712 -- nodes (in the case of subexpression nodes, we can't set the flag yet,
713 -- since resolution and expansion have not yet been completed). Note
714 -- that for N_Raise_xxx_Error we have to distinguish the expression
715 -- case from the statement case.
717 if Nkind
(N
) not in N_Subexpr
718 or else (Nkind
(N
) in N_Raise_xxx_Error
719 and then Etype
(N
) = Standard_Void_Type
)
725 -- Version with check(s) suppressed
727 procedure Analyze
(N
: Node_Id
; Suppress
: Check_Id
) is
729 if Suppress
= All_Checks
then
731 Svs
: constant Suppress_Array
:= Scope_Suppress
.Suppress
;
733 Scope_Suppress
.Suppress
:= (others => True);
735 Scope_Suppress
.Suppress
:= Svs
;
738 elsif Suppress
= Overflow_Check
then
740 Svg
: constant Boolean := Scope_Suppress
.Suppress
(Suppress
);
742 Scope_Suppress
.Suppress
(Suppress
) := True;
744 Scope_Suppress
.Suppress
(Suppress
) := Svg
;
753 procedure Analyze_List
(L
: List_Id
) is
758 while Present
(Node
) loop
764 -- Version with check(s) suppressed
766 procedure Analyze_List
(L
: List_Id
; Suppress
: Check_Id
) is
768 if Suppress
= All_Checks
then
770 Svs
: constant Suppress_Array
:= Scope_Suppress
.Suppress
;
772 Scope_Suppress
.Suppress
:= (others => True);
774 Scope_Suppress
.Suppress
:= Svs
;
779 Svg
: constant Boolean := Scope_Suppress
.Suppress
(Suppress
);
781 Scope_Suppress
.Suppress
(Suppress
) := True;
783 Scope_Suppress
.Suppress
(Suppress
) := Svg
;
788 --------------------------
789 -- Copy_Suppress_Status --
790 --------------------------
792 procedure Copy_Suppress_Status
798 pragma Warnings
(Off
, Found
);
800 procedure Search_Stack
801 (Top
: Suppress_Stack_Entry_Ptr
;
802 Found
: out Boolean);
803 -- Search given suppress stack for matching entry for entity. If found
804 -- then set Checks_May_Be_Suppressed on To, and push an appropriate
805 -- entry for To onto the local suppress stack.
811 procedure Search_Stack
812 (Top
: Suppress_Stack_Entry_Ptr
;
815 Ptr
: Suppress_Stack_Entry_Ptr
;
819 while Ptr
/= null loop
821 and then (Ptr
.Check
= All_Checks
or else Ptr
.Check
= C
)
824 Set_Checks_May_Be_Suppressed
(To
, True);
825 Push_Local_Suppress_Stack_Entry
841 -- Start of processing for Copy_Suppress_Status
844 if not Checks_May_Be_Suppressed
(From
) then
848 -- First search the global entity suppress table for a matching entry.
849 -- We also search this in reverse order so that if there are multiple
850 -- pragmas for the same entity, the last one applies.
852 Search_Stack
(Global_Suppress_Stack_Top
, Found
);
858 -- Now search the local entity suppress stack, we search this in
859 -- reverse order so that we get the innermost entry that applies to
860 -- this case if there are nested entries. Note that for the purpose
861 -- of this procedure we are ONLY looking for entries corresponding
862 -- to a two-argument Suppress, where the second argument matches From.
864 Search_Stack
(Local_Suppress_Stack_Top
, Found
);
865 end Copy_Suppress_Status
;
867 -------------------------
868 -- Enter_Generic_Scope --
869 -------------------------
871 procedure Enter_Generic_Scope
(S
: Entity_Id
) is
873 if No
(Outer_Generic_Scope
) then
874 Outer_Generic_Scope
:= S
;
876 end Enter_Generic_Scope
;
878 ------------------------
879 -- Exit_Generic_Scope --
880 ------------------------
882 procedure Exit_Generic_Scope
(S
: Entity_Id
) is
884 if S
= Outer_Generic_Scope
then
885 Outer_Generic_Scope
:= Empty
;
887 end Exit_Generic_Scope
;
889 -----------------------
890 -- Explicit_Suppress --
891 -----------------------
893 function Explicit_Suppress
(E
: Entity_Id
; C
: Check_Id
) return Boolean is
894 Ptr
: Suppress_Stack_Entry_Ptr
;
897 if not Checks_May_Be_Suppressed
(E
) then
901 Ptr
:= Global_Suppress_Stack_Top
;
902 while Ptr
/= null loop
904 and then (Ptr
.Check
= All_Checks
or else Ptr
.Check
= C
)
914 end Explicit_Suppress
;
916 -----------------------------
917 -- External_Ref_In_Generic --
918 -----------------------------
920 function External_Ref_In_Generic
(E
: Entity_Id
) return Boolean is
924 -- Entity is global if defined outside of current outer_generic_scope:
925 -- Either the entity has a smaller depth that the outer generic, or it
926 -- is in a different compilation unit, or it is defined within a unit
927 -- in the same compilation, that is not within the outer_generic.
929 if No
(Outer_Generic_Scope
) then
932 elsif Scope_Depth
(Scope
(E
)) < Scope_Depth
(Outer_Generic_Scope
)
933 or else not In_Same_Source_Unit
(E
, Outer_Generic_Scope
)
939 while Present
(Scop
) loop
940 if Scop
= Outer_Generic_Scope
then
942 elsif Scope_Depth
(Scop
) < Scope_Depth
(Outer_Generic_Scope
) then
945 Scop
:= Scope
(Scop
);
951 end External_Ref_In_Generic
;
957 procedure Initialize
is
958 Next
: Suppress_Stack_Entry_Ptr
;
960 procedure Free
is new Unchecked_Deallocation
961 (Suppress_Stack_Entry
, Suppress_Stack_Entry_Ptr
);
964 -- Free any global suppress stack entries from a previous invocation
965 -- of the compiler (in the normal case this loop does nothing).
967 while Suppress_Stack_Entries
/= null loop
968 Next
:= Suppress_Stack_Entries
.Next
;
969 Free
(Suppress_Stack_Entries
);
970 Suppress_Stack_Entries
:= Next
;
973 Local_Suppress_Stack_Top
:= null;
974 Global_Suppress_Stack_Top
:= null;
976 -- Clear scope stack, and reset global variables
979 Unloaded_Subunits
:= False;
982 ------------------------------
983 -- Insert_After_And_Analyze --
984 ------------------------------
986 procedure Insert_After_And_Analyze
(N
: Node_Id
; M
: Node_Id
) is
992 -- If we are not at the end of the list, then the easiest
993 -- coding is simply to insert before our successor
995 if Present
(Next
(N
)) then
996 Insert_Before_And_Analyze
(Next
(N
), M
);
998 -- Case of inserting at the end of the list
1001 -- Capture the Node_Id of the node to be inserted. This Node_Id
1002 -- will still be the same after the insert operation.
1005 Insert_After
(N
, M
);
1007 -- Now just analyze from the inserted node to the end of
1008 -- the new list (note that this properly handles the case
1009 -- where any of the analyze calls result in the insertion of
1010 -- nodes after the analyzed node, expecting analysis).
1012 while Present
(Node
) loop
1014 Mark_Rewrite_Insertion
(Node
);
1019 end Insert_After_And_Analyze
;
1021 -- Version with check(s) suppressed
1023 procedure Insert_After_And_Analyze
1026 Suppress
: Check_Id
)
1029 if Suppress
= All_Checks
then
1031 Svs
: constant Suppress_Array
:= Scope_Suppress
.Suppress
;
1033 Scope_Suppress
.Suppress
:= (others => True);
1034 Insert_After_And_Analyze
(N
, M
);
1035 Scope_Suppress
.Suppress
:= Svs
;
1040 Svg
: constant Boolean := Scope_Suppress
.Suppress
(Suppress
);
1042 Scope_Suppress
.Suppress
(Suppress
) := True;
1043 Insert_After_And_Analyze
(N
, M
);
1044 Scope_Suppress
.Suppress
(Suppress
) := Svg
;
1047 end Insert_After_And_Analyze
;
1049 -------------------------------
1050 -- Insert_Before_And_Analyze --
1051 -------------------------------
1053 procedure Insert_Before_And_Analyze
(N
: Node_Id
; M
: Node_Id
) is
1059 -- Capture the Node_Id of the first list node to be inserted.
1060 -- This will still be the first node after the insert operation,
1061 -- since Insert_List_After does not modify the Node_Id values.
1064 Insert_Before
(N
, M
);
1066 -- The insertion does not change the Id's of any of the nodes in
1067 -- the list, and they are still linked, so we can simply loop from
1068 -- the original first node until we meet the node before which the
1069 -- insertion is occurring. Note that this properly handles the case
1070 -- where any of the analyzed nodes insert nodes after themselves,
1071 -- expecting them to get analyzed.
1073 while Node
/= N
loop
1075 Mark_Rewrite_Insertion
(Node
);
1079 end Insert_Before_And_Analyze
;
1081 -- Version with check(s) suppressed
1083 procedure Insert_Before_And_Analyze
1086 Suppress
: Check_Id
)
1089 if Suppress
= All_Checks
then
1091 Svs
: constant Suppress_Array
:= Scope_Suppress
.Suppress
;
1093 Scope_Suppress
.Suppress
:= (others => True);
1094 Insert_Before_And_Analyze
(N
, M
);
1095 Scope_Suppress
.Suppress
:= Svs
;
1100 Svg
: constant Boolean := Scope_Suppress
.Suppress
(Suppress
);
1102 Scope_Suppress
.Suppress
(Suppress
) := True;
1103 Insert_Before_And_Analyze
(N
, M
);
1104 Scope_Suppress
.Suppress
(Suppress
) := Svg
;
1107 end Insert_Before_And_Analyze
;
1109 -----------------------------------
1110 -- Insert_List_After_And_Analyze --
1111 -----------------------------------
1113 procedure Insert_List_After_And_Analyze
(N
: Node_Id
; L
: List_Id
) is
1114 After
: constant Node_Id
:= Next
(N
);
1118 if Is_Non_Empty_List
(L
) then
1120 -- Capture the Node_Id of the first list node to be inserted.
1121 -- This will still be the first node after the insert operation,
1122 -- since Insert_List_After does not modify the Node_Id values.
1125 Insert_List_After
(N
, L
);
1127 -- Now just analyze from the original first node until we get to the
1128 -- successor of the original insertion point (which may be Empty if
1129 -- the insertion point was at the end of the list). Note that this
1130 -- properly handles the case where any of the analyze calls result in
1131 -- the insertion of nodes after the analyzed node (possibly calling
1132 -- this routine recursively).
1134 while Node
/= After
loop
1136 Mark_Rewrite_Insertion
(Node
);
1140 end Insert_List_After_And_Analyze
;
1142 -- Version with check(s) suppressed
1144 procedure Insert_List_After_And_Analyze
1145 (N
: Node_Id
; L
: List_Id
; Suppress
: Check_Id
)
1148 if Suppress
= All_Checks
then
1150 Svs
: constant Suppress_Array
:= Scope_Suppress
.Suppress
;
1152 Scope_Suppress
.Suppress
:= (others => True);
1153 Insert_List_After_And_Analyze
(N
, L
);
1154 Scope_Suppress
.Suppress
:= Svs
;
1159 Svg
: constant Boolean := Scope_Suppress
.Suppress
(Suppress
);
1161 Scope_Suppress
.Suppress
(Suppress
) := True;
1162 Insert_List_After_And_Analyze
(N
, L
);
1163 Scope_Suppress
.Suppress
(Suppress
) := Svg
;
1166 end Insert_List_After_And_Analyze
;
1168 ------------------------------------
1169 -- Insert_List_Before_And_Analyze --
1170 ------------------------------------
1172 procedure Insert_List_Before_And_Analyze
(N
: Node_Id
; L
: List_Id
) is
1176 if Is_Non_Empty_List
(L
) then
1178 -- Capture the Node_Id of the first list node to be inserted. This
1179 -- will still be the first node after the insert operation, since
1180 -- Insert_List_After does not modify the Node_Id values.
1183 Insert_List_Before
(N
, L
);
1185 -- The insertion does not change the Id's of any of the nodes in
1186 -- the list, and they are still linked, so we can simply loop from
1187 -- the original first node until we meet the node before which the
1188 -- insertion is occurring. Note that this properly handles the case
1189 -- where any of the analyzed nodes insert nodes after themselves,
1190 -- expecting them to get analyzed.
1192 while Node
/= N
loop
1194 Mark_Rewrite_Insertion
(Node
);
1198 end Insert_List_Before_And_Analyze
;
1200 -- Version with check(s) suppressed
1202 procedure Insert_List_Before_And_Analyze
1203 (N
: Node_Id
; L
: List_Id
; Suppress
: Check_Id
)
1206 if Suppress
= All_Checks
then
1208 Svs
: constant Suppress_Array
:= Scope_Suppress
.Suppress
;
1210 Scope_Suppress
.Suppress
:= (others => True);
1211 Insert_List_Before_And_Analyze
(N
, L
);
1212 Scope_Suppress
.Suppress
:= Svs
;
1217 Svg
: constant Boolean := Scope_Suppress
.Suppress
(Suppress
);
1219 Scope_Suppress
.Suppress
(Suppress
) := True;
1220 Insert_List_Before_And_Analyze
(N
, L
);
1221 Scope_Suppress
.Suppress
(Suppress
) := Svg
;
1224 end Insert_List_Before_And_Analyze
;
1232 Scope_Stack
.Locked
:= True;
1233 Scope_Stack
.Release
;
1240 procedure Preanalyze
(N
: Node_Id
) is
1241 Save_Full_Analysis
: constant Boolean := Full_Analysis
;
1244 Full_Analysis
:= False;
1245 Expander_Mode_Save_And_Set
(False);
1249 Expander_Mode_Restore
;
1250 Full_Analysis
:= Save_Full_Analysis
;
1253 --------------------------------------
1254 -- Push_Global_Suppress_Stack_Entry --
1255 --------------------------------------
1257 procedure Push_Global_Suppress_Stack_Entry
1258 (Entity
: Entity_Id
;
1263 Global_Suppress_Stack_Top
:=
1264 new Suppress_Stack_Entry
'
1267 Suppress => Suppress,
1268 Prev => Global_Suppress_Stack_Top,
1269 Next => Suppress_Stack_Entries);
1270 Suppress_Stack_Entries := Global_Suppress_Stack_Top;
1273 end Push_Global_Suppress_Stack_Entry;
1275 -------------------------------------
1276 -- Push_Local_Suppress_Stack_Entry --
1277 -------------------------------------
1279 procedure Push_Local_Suppress_Stack_Entry
1280 (Entity : Entity_Id;
1285 Local_Suppress_Stack_Top :=
1286 new Suppress_Stack_Entry'
1289 Suppress
=> Suppress
,
1290 Prev
=> Local_Suppress_Stack_Top
,
1291 Next
=> Suppress_Stack_Entries
);
1292 Suppress_Stack_Entries
:= Local_Suppress_Stack_Top
;
1295 end Push_Local_Suppress_Stack_Entry
;
1301 procedure Semantics
(Comp_Unit
: Node_Id
) is
1303 -- The following locations save the corresponding global flags and
1304 -- variables so that they can be restored on completion. This is needed
1305 -- so that calls to Rtsfind start with the proper default values for
1306 -- these variables, and also that such calls do not disturb the settings
1307 -- for units being analyzed at a higher level.
1309 S_Current_Sem_Unit
: constant Unit_Number_Type
:= Current_Sem_Unit
;
1310 S_Full_Analysis
: constant Boolean := Full_Analysis
;
1311 S_GNAT_Mode
: constant Boolean := GNAT_Mode
;
1312 S_Global_Dis_Names
: constant Boolean := Global_Discard_Names
;
1313 S_In_Assertion_Expr
: constant Nat
:= In_Assertion_Expr
;
1314 S_In_Spec_Expr
: constant Boolean := In_Spec_Expression
;
1315 S_Inside_A_Generic
: constant Boolean := Inside_A_Generic
;
1316 S_Outer_Gen_Scope
: constant Entity_Id
:= Outer_Generic_Scope
;
1317 S_Style_Check
: constant Boolean := Style_Check
;
1319 Generic_Main
: constant Boolean :=
1320 Nkind
(Unit
(Cunit
(Main_Unit
)))
1321 in N_Generic_Declaration
;
1322 -- If the main unit is generic, every compiled unit, including its
1323 -- context, is compiled with expansion disabled.
1325 Ext_Main_Source_Unit
: constant Boolean :=
1326 In_Extended_Main_Source_Unit
(Comp_Unit
);
1327 -- Determine if unit is in extended main source unit
1329 Save_Config_Switches
: Config_Switches_Type
;
1330 -- Variable used to save values of config switches while we analyze the
1331 -- new unit, to be restored on exit for proper recursive behavior.
1333 Save_Cunit_Restrictions
: Save_Cunit_Boolean_Restrictions
;
1334 -- Used to save non-partition wide restrictions before processing new
1335 -- unit. All with'ed units are analyzed with config restrictions reset
1336 -- and we need to restore these saved values at the end.
1338 procedure Do_Analyze
;
1339 -- Procedure to analyze the compilation unit
1345 procedure Do_Analyze
is
1349 List
:= Save_Scope_Stack
;
1350 Push_Scope
(Standard_Standard
);
1351 Scope_Suppress
:= Suppress_Options
;
1353 (Scope_Stack
.Last
).Component_Alignment_Default
:= Calign_Default
;
1355 (Scope_Stack
.Last
).Is_Active_Stack_Base
:= True;
1356 Outer_Generic_Scope
:= Empty
;
1358 -- Now analyze the top level compilation unit node
1360 Analyze
(Comp_Unit
);
1362 -- Check for scope mismatch on exit from compilation
1364 pragma Assert
(Current_Scope
= Standard_Standard
1365 or else Comp_Unit
= Cunit
(Main_Unit
));
1367 -- Then pop entry for Standard, and pop implicit types
1370 Restore_Scope_Stack
(List
);
1373 Already_Analyzed
: constant Boolean := Analyzed
(Comp_Unit
);
1375 -- Start of processing for Semantics
1378 if Debug_Unit_Walk
then
1379 if Already_Analyzed
then
1380 Write_Str
("(done)");
1384 (Get_Cunit_Unit_Number
(Comp_Unit
),
1390 Compiler_State
:= Analyzing
;
1391 Current_Sem_Unit
:= Get_Cunit_Unit_Number
(Comp_Unit
);
1393 -- Compile predefined units with GNAT_Mode set to True, to properly
1394 -- process the categorization stuff. However, do not set GNAT_Mode
1395 -- to True for the renamings units (Text_IO, IO_Exceptions, Direct_IO,
1396 -- Sequential_IO) as this would prevent pragma Extend_System from being
1397 -- taken into account, for example when Text_IO is renaming DEC.Text_IO.
1399 if Is_Predefined_File_Name
1400 (Unit_File_Name
(Current_Sem_Unit
), Renamings_Included
=> False)
1405 if Generic_Main
then
1406 Expander_Mode_Save_And_Set
(False);
1408 Expander_Mode_Save_And_Set
1409 (Operating_Mode
= Generate_Code
or Debug_Flag_X
);
1412 Full_Analysis
:= True;
1413 Inside_A_Generic
:= False;
1414 In_Assertion_Expr
:= 0;
1415 In_Spec_Expression
:= False;
1417 Set_Comes_From_Source_Default
(False);
1419 -- Save current config switches and reset then appropriately
1421 Save_Opt_Config_Switches
(Save_Config_Switches
);
1422 Set_Opt_Config_Switches
1423 (Is_Internal_File_Name
(Unit_File_Name
(Current_Sem_Unit
)),
1424 Current_Sem_Unit
= Main_Unit
);
1426 -- Save current non-partition-wide restrictions
1428 Save_Cunit_Restrictions
:= Cunit_Boolean_Restrictions_Save
;
1430 -- For unit in main extended unit, we reset the configuration values
1431 -- for the non-partition-wide restrictions. For other units reset them.
1433 if Ext_Main_Source_Unit
then
1434 Restore_Config_Cunit_Boolean_Restrictions
;
1436 Reset_Cunit_Boolean_Restrictions
;
1439 -- Turn off style checks for unit that is not in the extended main
1440 -- source unit. This improves processing efficiency for such units
1441 -- (for which we don't want style checks anyway, and where they will
1442 -- get suppressed), and is definitely needed to stop some style checks
1443 -- from invading the run-time units (e.g. overriding checks).
1445 if not Ext_Main_Source_Unit
then
1446 Style_Check
:= False;
1448 -- If this is part of the extended main source unit, set style check
1449 -- mode to match the style check mode of the main source unit itself.
1452 Style_Check
:= Style_Check_Main
;
1455 -- Only do analysis of unit that has not already been analyzed
1457 if not Analyzed
(Comp_Unit
) then
1458 Initialize_Version
(Current_Sem_Unit
);
1460 -- Do analysis, and then append the compilation unit onto the
1461 -- Comp_Unit_List, if appropriate. This is done after analysis,
1462 -- so if this unit depends on some others, they have already been
1463 -- appended. We ignore bodies, except for the main unit itself, and
1464 -- for subprogram bodies that act as specs. We have also to guard
1465 -- against ill-formed subunits that have an improper context.
1469 if Present
(Comp_Unit
)
1470 and then Nkind
(Unit
(Comp_Unit
)) in N_Proper_Body
1471 and then (Nkind
(Unit
(Comp_Unit
)) /= N_Subprogram_Body
1472 or else not Acts_As_Spec
(Comp_Unit
))
1473 and then not In_Extended_Main_Source_Unit
(Comp_Unit
)
1478 -- Initialize if first time
1480 if No
(Comp_Unit_List
) then
1481 Comp_Unit_List
:= New_Elmt_List
;
1484 Append_Elmt
(Comp_Unit
, Comp_Unit_List
);
1486 if Debug_Unit_Walk
then
1487 Write_Str
("Appending ");
1489 (Get_Cunit_Unit_Number
(Comp_Unit
), Unit
(Comp_Unit
));
1494 -- Save indication of dynamic elaboration checks for ALI file
1496 Set_Dynamic_Elab
(Current_Sem_Unit
, Dynamic_Elaboration_Checks
);
1498 -- Restore settings of saved switches to entry values
1500 Current_Sem_Unit
:= S_Current_Sem_Unit
;
1501 Full_Analysis
:= S_Full_Analysis
;
1502 Global_Discard_Names
:= S_Global_Dis_Names
;
1503 GNAT_Mode
:= S_GNAT_Mode
;
1504 In_Assertion_Expr
:= S_In_Assertion_Expr
;
1505 In_Spec_Expression
:= S_In_Spec_Expr
;
1506 Inside_A_Generic
:= S_Inside_A_Generic
;
1507 Outer_Generic_Scope
:= S_Outer_Gen_Scope
;
1508 Style_Check
:= S_Style_Check
;
1510 Restore_Opt_Config_Switches
(Save_Config_Switches
);
1512 -- Deal with restore of restrictions
1514 Cunit_Boolean_Restrictions_Restore
(Save_Cunit_Restrictions
);
1516 Expander_Mode_Restore
;
1518 if Debug_Unit_Walk
then
1521 if Already_Analyzed
then
1522 Write_Str
("(done)");
1526 (Get_Cunit_Unit_Number
(Comp_Unit
),
1536 function ss
(Index
: Int
) return Scope_Stack_Entry
is
1538 return Scope_Stack
.Table
(Index
);
1545 function sst
return Scope_Stack_Entry
is
1547 return ss
(Scope_Stack
.Last
);
1550 ------------------------
1551 -- Walk_Library_Items --
1552 ------------------------
1554 procedure Walk_Library_Items
is
1555 type Unit_Number_Set
is array (Main_Unit
.. Last_Unit
) of Boolean;
1556 pragma Pack
(Unit_Number_Set
);
1558 Main_CU
: constant Node_Id
:= Cunit
(Main_Unit
);
1560 Seen
, Done
: Unit_Number_Set
:= (others => False);
1561 -- Seen (X) is True after we have seen unit X in the walk. This is used
1562 -- to prevent processing the same unit more than once. Done (X) is True
1563 -- after we have fully processed X, and is used only for debugging
1564 -- printouts and assertions.
1566 Do_Main
: Boolean := False;
1567 -- Flag to delay processing the main body until after all other units.
1568 -- This is needed because the spec of the main unit may appear in the
1569 -- context of some other unit. We do not want this to force processing
1570 -- of the main body before all other units have been processed.
1572 -- Another circularity pattern occurs when the main unit is a child unit
1573 -- and the body of an ancestor has a with-clause of the main unit or on
1574 -- one of its children. In both cases the body in question has a with-
1575 -- clause on the main unit, and must be excluded from the traversal. In
1576 -- some convoluted cases this may lead to a CodePeer error because the
1577 -- spec of a subprogram declared in an instance within the parent will
1578 -- not be seen in the main unit.
1580 function Depends_On_Main
(CU
: Node_Id
) return Boolean;
1581 -- The body of a unit that is withed by the spec of the main unit may in
1582 -- turn have a with_clause on that spec. In that case do not traverse
1583 -- the body, to prevent loops. It can also happen that the main body has
1584 -- a with_clause on a child, which of course has an implicit with on its
1585 -- parent. It's OK to traverse the child body if the main spec has been
1586 -- processed, otherwise we also have a circularity to avoid.
1588 procedure Do_Action
(CU
: Node_Id
; Item
: Node_Id
);
1589 -- Calls Action, with some validity checks
1591 procedure Do_Unit_And_Dependents
(CU
: Node_Id
; Item
: Node_Id
);
1592 -- Calls Do_Action, first on the units with'ed by this one, then on
1593 -- this unit. If it's an instance body, do the spec first. If it is
1594 -- an instance spec, do the body last.
1596 procedure Do_Withed_Unit
(Withed_Unit
: Node_Id
);
1597 -- Apply Do_Unit_And_Dependents to a unit in a context clause
1599 procedure Process_Bodies_In_Context
(Comp
: Node_Id
);
1600 -- The main unit and its spec may depend on bodies that contain generics
1601 -- that are instantiated in them. Iterate through the corresponding
1602 -- contexts before processing main (spec/body) itself, to process bodies
1603 -- that may be present, together with their context. The spec of main
1604 -- is processed wherever it appears in the list of units, while the body
1605 -- is processed as the last unit in the list.
1607 ---------------------
1608 -- Depends_On_Main --
1609 ---------------------
1611 function Depends_On_Main
(CU
: Node_Id
) return Boolean is
1613 MCU
: constant Node_Id
:= Unit
(Main_CU
);
1616 CL
:= First
(Context_Items
(CU
));
1618 -- Problem does not arise with main subprograms
1621 not Nkind_In
(MCU
, N_Package_Body
, N_Package_Declaration
)
1626 while Present
(CL
) loop
1627 if Nkind
(CL
) = N_With_Clause
1628 and then Library_Unit
(CL
) = Main_CU
1629 and then not Done
(Get_Cunit_Unit_Number
(Library_Unit
(CL
)))
1638 end Depends_On_Main
;
1644 procedure Do_Action
(CU
: Node_Id
; Item
: Node_Id
) is
1646 -- This calls Action at the end. All the preceding code is just
1647 -- assertions and debugging output.
1649 pragma Assert
(No
(CU
) or else Nkind
(CU
) = N_Compilation_Unit
);
1651 case Nkind
(Item
) is
1652 when N_Generic_Subprogram_Declaration |
1653 N_Generic_Package_Declaration |
1654 N_Package_Declaration |
1655 N_Subprogram_Declaration |
1656 N_Subprogram_Renaming_Declaration |
1657 N_Package_Renaming_Declaration |
1658 N_Generic_Function_Renaming_Declaration |
1659 N_Generic_Package_Renaming_Declaration |
1660 N_Generic_Procedure_Renaming_Declaration
=>
1666 when N_Package_Body
=>
1668 -- Package bodies are processed separately if the main unit
1673 when N_Subprogram_Body
=>
1675 -- A subprogram body must be the main unit
1677 pragma Assert
(Acts_As_Spec
(CU
)
1678 or else CU
= Cunit
(Main_Unit
));
1681 when N_Function_Instantiation |
1682 N_Procedure_Instantiation |
1683 N_Package_Instantiation
=>
1685 -- Can only happen if some generic body (needed for gnat2scil
1686 -- traversal, but not by GNAT) is not available, ignore.
1690 -- All other cases cannot happen
1693 pragma Assert
(False, "subunit");
1697 pragma Assert
(False);
1701 if Present
(CU
) then
1702 pragma Assert
(Item
/= Stand
.Standard_Package_Node
);
1703 pragma Assert
(Item
= Unit
(CU
));
1706 Unit_Num
: constant Unit_Number_Type
:=
1707 Get_Cunit_Unit_Number
(CU
);
1709 procedure Assert_Done
(Withed_Unit
: Node_Id
);
1710 -- Assert Withed_Unit is already Done, unless it's a body. It
1711 -- might seem strange for a with_clause to refer to a body, but
1712 -- this happens in the case of a generic instantiation, which
1713 -- gets transformed into the instance body (and the instance
1714 -- spec is also created). With clauses pointing to the
1715 -- instantiation end up pointing to the instance body.
1721 procedure Assert_Done
(Withed_Unit
: Node_Id
) is
1723 if not Done
(Get_Cunit_Unit_Number
(Withed_Unit
)) then
1725 (Unit
(Withed_Unit
),
1726 N_Generic_Package_Declaration
,
1728 N_Package_Renaming_Declaration
,
1732 (Unit_Name
(Get_Cunit_Unit_Number
(Withed_Unit
)));
1733 Write_Str
(" not yet walked!");
1735 if Get_Cunit_Unit_Number
(Withed_Unit
) = Unit_Num
then
1736 Write_Str
(" (self-ref)");
1741 pragma Assert
(False);
1746 procedure Assert_Withed_Units_Done
is
1747 new Walk_Withs
(Assert_Done
);
1750 if Debug_Unit_Walk
then
1751 Write_Unit_Info
(Unit_Num
, Item
, Withs
=> True);
1754 -- Main unit should come last, except in the case where we
1755 -- skipped System_Aux_Id, in which case we missed the things it
1756 -- depends on, and in the case of parent bodies if present.
1759 (not Done
(Main_Unit
)
1760 or else Present
(System_Aux_Id
)
1761 or else Nkind
(Item
) = N_Package_Body
);
1763 -- We shouldn't do the same thing twice
1765 pragma Assert
(not Done
(Unit_Num
));
1767 -- Everything we depend upon should already be done
1770 (Assert_Withed_Units_Done
(CU
, Include_Limited
=> False));
1774 -- Must be Standard, which has no entry in the units table
1776 pragma Assert
(Item
= Stand
.Standard_Package_Node
);
1778 if Debug_Unit_Walk
then
1779 Write_Line
("Standard");
1786 --------------------
1787 -- Do_Withed_Unit --
1788 --------------------
1790 procedure Do_Withed_Unit
(Withed_Unit
: Node_Id
) is
1792 Do_Unit_And_Dependents
(Withed_Unit
, Unit
(Withed_Unit
));
1794 -- If the unit in the with_clause is a generic instance, the clause
1795 -- now denotes the instance body. Traverse the corresponding spec
1796 -- because there may be no other dependence that will force the
1797 -- traversal of its own context.
1799 if Nkind
(Unit
(Withed_Unit
)) = N_Package_Body
1800 and then Is_Generic_Instance
1801 (Defining_Entity
(Unit
(Library_Unit
(Withed_Unit
))))
1803 Do_Withed_Unit
(Library_Unit
(Withed_Unit
));
1807 ----------------------------
1808 -- Do_Unit_And_Dependents --
1809 ----------------------------
1811 procedure Do_Unit_And_Dependents
(CU
: Node_Id
; Item
: Node_Id
) is
1812 Unit_Num
: constant Unit_Number_Type
:= Get_Cunit_Unit_Number
(CU
);
1814 Body_U
: Unit_Number_Type
;
1815 Parent_CU
: Node_Id
;
1817 procedure Do_Withed_Units
is new Walk_Withs
(Do_Withed_Unit
);
1820 if not Seen
(Unit_Num
) then
1822 -- Process the with clauses
1824 Do_Withed_Units
(CU
, Include_Limited
=> False);
1826 -- Process the unit if it is a spec or the main unit, if it
1827 -- has no previous spec or we have done all other units.
1829 if not Nkind_In
(Item
, N_Package_Body
, N_Subprogram_Body
)
1830 or else Acts_As_Spec
(CU
)
1832 if CU
= Cunit
(Main_Unit
)
1833 and then not Do_Main
1835 Seen
(Unit_Num
) := False;
1838 Seen
(Unit_Num
) := True;
1840 if CU
= Library_Unit
(Main_CU
) then
1841 Process_Bodies_In_Context
(CU
);
1843 -- If main is a child unit, examine parent unit contexts
1844 -- to see if they include instantiated units. Also, if
1845 -- the parent itself is an instance, process its body
1846 -- because it may contain subprograms that are called
1847 -- in the main unit.
1849 if Is_Child_Unit
(Cunit_Entity
(Main_Unit
)) then
1850 Child
:= Cunit_Entity
(Main_Unit
);
1851 while Is_Child_Unit
(Child
) loop
1854 (Get_Cunit_Entity_Unit_Number
(Scope
(Child
)));
1855 Process_Bodies_In_Context
(Parent_CU
);
1857 if Nkind
(Unit
(Parent_CU
)) = N_Package_Body
1859 Nkind
(Original_Node
(Unit
(Parent_CU
)))
1860 = N_Package_Instantiation
1862 not Seen
(Get_Cunit_Unit_Number
(Parent_CU
))
1864 Body_U
:= Get_Cunit_Unit_Number
(Parent_CU
);
1865 Seen
(Body_U
) := True;
1866 Do_Action
(Parent_CU
, Unit
(Parent_CU
));
1867 Done
(Body_U
) := True;
1870 Child
:= Scope
(Child
);
1875 Do_Action
(CU
, Item
);
1876 Done
(Unit_Num
) := True;
1880 end Do_Unit_And_Dependents
;
1882 -------------------------------
1883 -- Process_Bodies_In_Context --
1884 -------------------------------
1886 procedure Process_Bodies_In_Context
(Comp
: Node_Id
) is
1888 Body_U
: Unit_Number_Type
;
1892 procedure Do_Withed_Units
is new Walk_Withs
(Do_Withed_Unit
);
1894 -- Start of processing for Process_Bodies_In_Context
1897 Clause
:= First
(Context_Items
(Comp
));
1898 while Present
(Clause
) loop
1899 if Nkind
(Clause
) = N_With_Clause
then
1900 Spec
:= Library_Unit
(Clause
);
1901 Body_CU
:= Library_Unit
(Spec
);
1903 -- If we are processing the spec of the main unit, load bodies
1904 -- only if the with_clause indicates that it forced the loading
1905 -- of the body for a generic instantiation. Note that bodies of
1906 -- parents that are instances have been loaded already.
1908 if Present
(Body_CU
)
1909 and then Body_CU
/= Cunit
(Main_Unit
)
1910 and then Nkind
(Unit
(Body_CU
)) /= N_Subprogram_Body
1911 and then (Nkind
(Unit
(Comp
)) /= N_Package_Declaration
1912 or else Present
(Withed_Body
(Clause
)))
1914 Body_U
:= Get_Cunit_Unit_Number
(Body_CU
);
1916 if not Seen
(Body_U
)
1917 and then not Depends_On_Main
(Body_CU
)
1919 Seen
(Body_U
) := True;
1920 Do_Withed_Units
(Body_CU
, Include_Limited
=> False);
1921 Do_Action
(Body_CU
, Unit
(Body_CU
));
1922 Done
(Body_U
) := True;
1929 end Process_Bodies_In_Context
;
1931 -- Local Declarations
1935 -- Start of processing for Walk_Library_Items
1938 if Debug_Unit_Walk
then
1939 Write_Line
("Walk_Library_Items:");
1943 -- Do Standard first, then walk the Comp_Unit_List
1945 Do_Action
(Empty
, Standard_Package_Node
);
1947 -- First place the context of all instance bodies on the corresponding
1948 -- spec, because it may be needed to analyze the code at the place of
1949 -- the instantiation.
1951 Cur
:= First_Elmt
(Comp_Unit_List
);
1952 while Present
(Cur
) loop
1954 CU
: constant Node_Id
:= Node
(Cur
);
1955 N
: constant Node_Id
:= Unit
(CU
);
1958 if Nkind
(N
) = N_Package_Body
1959 and then Is_Generic_Instance
(Defining_Entity
(N
))
1962 (Context_Items
(CU
), Context_Items
(Library_Unit
(CU
)));
1969 -- Now traverse compilation units (specs) in order
1971 Cur
:= First_Elmt
(Comp_Unit_List
);
1972 while Present
(Cur
) loop
1974 CU
: constant Node_Id
:= Node
(Cur
);
1975 N
: constant Node_Id
:= Unit
(CU
);
1979 pragma Assert
(Nkind
(CU
) = N_Compilation_Unit
);
1983 -- If it is a subprogram body, process it if it has no
1986 -- If it's a package body, ignore it, unless it is a body
1987 -- created for an instance that is the main unit. In the case
1988 -- of subprograms, the body is the wrapper package. In case of
1989 -- a package, the original file carries the body, and the spec
1990 -- appears as a later entry in the units list.
1992 -- Otherwise bodies appear in the list only because of inlining
1993 -- or instantiations, and they are processed only if relevant.
1994 -- The flag Withed_Body on a context clause indicates that a
1995 -- unit contains an instantiation that may be needed later,
1996 -- and therefore the body that contains the generic body (and
1997 -- its context) must be traversed immediately after the
1998 -- corresponding spec (see Do_Unit_And_Dependents).
2000 -- The main unit itself is processed separately after all other
2001 -- specs, and relevant bodies are examined in Process_Main.
2003 when N_Subprogram_Body
=>
2004 if Acts_As_Spec
(N
) then
2005 Do_Unit_And_Dependents
(CU
, N
);
2008 when N_Package_Body
=>
2010 and then Nkind
(Original_Node
(Unit
(Main_CU
))) in
2011 N_Generic_Instantiation
2012 and then Present
(Library_Unit
(Main_CU
))
2014 Do_Unit_And_Dependents
2015 (Library_Unit
(Main_CU
),
2016 Unit
(Library_Unit
(Main_CU
)));
2019 -- It's a spec, process it, and the units it depends on,
2020 -- unless it is a descendent of the main unit. This can
2021 -- happen when the body of a parent depends on some other
2025 Par
:= Scope
(Defining_Entity
(Unit
(CU
)));
2027 if Is_Child_Unit
(Defining_Entity
(Unit
(CU
))) then
2029 and then Par
/= Standard_Standard
2030 and then Par
/= Cunit_Entity
(Main_Unit
)
2036 if Par
/= Cunit_Entity
(Main_Unit
) then
2037 Do_Unit_And_Dependents
(CU
, N
);
2045 -- Now process package bodies on which main depends, followed by bodies
2046 -- of parents, if present, and finally main itself.
2048 if not Done
(Main_Unit
) then
2051 Process_Main
: declare
2052 Parent_CU
: Node_Id
;
2054 Body_U
: Unit_Number_Type
;
2057 function Is_Subunit_Of_Main
(U
: Node_Id
) return Boolean;
2058 -- If the main unit has subunits, their context may include
2059 -- bodies that are needed in the body of main. We must examine
2060 -- the context of the subunits, which are otherwise not made
2061 -- explicit in the main unit.
2063 ------------------------
2064 -- Is_Subunit_Of_Main --
2065 ------------------------
2067 function Is_Subunit_Of_Main
(U
: Node_Id
) return Boolean is
2073 Lib
:= Library_Unit
(U
);
2074 return Nkind
(Unit
(U
)) = N_Subunit
2076 (Lib
= Cunit
(Main_Unit
)
2077 or else Is_Subunit_Of_Main
(Lib
));
2079 end Is_Subunit_Of_Main
;
2081 -- Start of processing for Process_Main
2084 Process_Bodies_In_Context
(Main_CU
);
2086 for Unit_Num
in Done
'Range loop
2087 if Is_Subunit_Of_Main
(Cunit
(Unit_Num
)) then
2088 Process_Bodies_In_Context
(Cunit
(Unit_Num
));
2092 -- If the main unit is a child unit, parent bodies may be present
2093 -- because they export instances or inlined subprograms. Check for
2094 -- presence of these, which are not present in context clauses.
2095 -- Note that if the parents are instances, their bodies have been
2096 -- processed before the main spec, because they may be needed
2097 -- therein, so the following loop only affects non-instances.
2099 if Is_Child_Unit
(Cunit_Entity
(Main_Unit
)) then
2100 Child
:= Cunit_Entity
(Main_Unit
);
2101 while Is_Child_Unit
(Child
) loop
2103 Cunit
(Get_Cunit_Entity_Unit_Number
(Scope
(Child
)));
2104 Body_CU
:= Library_Unit
(Parent_CU
);
2106 if Present
(Body_CU
)
2107 and then not Seen
(Get_Cunit_Unit_Number
(Body_CU
))
2108 and then not Depends_On_Main
(Body_CU
)
2110 Body_U
:= Get_Cunit_Unit_Number
(Body_CU
);
2111 Seen
(Body_U
) := True;
2112 Do_Action
(Body_CU
, Unit
(Body_CU
));
2113 Done
(Body_U
) := True;
2116 Child
:= Scope
(Child
);
2120 Do_Action
(Main_CU
, Unit
(Main_CU
));
2121 Done
(Main_Unit
) := True;
2125 if Debug_Unit_Walk
then
2126 if Done
/= (Done
'Range => True) then
2128 Write_Line
("Ignored units:");
2132 for Unit_Num
in Done
'Range loop
2133 if not Done
(Unit_Num
) then
2135 (Unit_Num
, Unit
(Cunit
(Unit_Num
)), Withs
=> True);
2143 pragma Assert
(Done
(Main_Unit
));
2145 if Debug_Unit_Walk
then
2147 Write_Line
("end Walk_Library_Items.");
2149 end Walk_Library_Items
;
2155 procedure Walk_Withs
(CU
: Node_Id
; Include_Limited
: Boolean) is
2156 pragma Assert
(Nkind
(CU
) = N_Compilation_Unit
);
2157 pragma Assert
(Nkind
(Unit
(CU
)) /= N_Subunit
);
2159 procedure Walk_Immediate
is new Walk_Withs_Immediate
(Action
);
2162 -- First walk the withs immediately on the library item
2164 Walk_Immediate
(CU
, Include_Limited
);
2166 -- For a body, we must also check for any subunits which belong to it
2167 -- and which have context clauses of their own, since these with'ed
2168 -- units are part of its own dependencies.
2170 if Nkind
(Unit
(CU
)) in N_Unit_Body
then
2171 for S
in Main_Unit
.. Last_Unit
loop
2173 -- We are only interested in subunits. For preproc. data and def.
2174 -- files, Cunit is Empty, so we need to test that first.
2176 if Cunit
(S
) /= Empty
2177 and then Nkind
(Unit
(Cunit
(S
))) = N_Subunit
2183 Pnode
:= Library_Unit
(Cunit
(S
));
2185 -- In -gnatc mode, the errors in the subunits will not have
2186 -- been recorded, but the analysis of the subunit may have
2187 -- failed, so just quit.
2193 -- Find ultimate parent of the subunit
2195 while Nkind
(Unit
(Pnode
)) = N_Subunit
loop
2196 Pnode
:= Library_Unit
(Pnode
);
2199 -- See if it belongs to current unit, and if so, include its
2200 -- with_clauses. Do not process main unit prematurely.
2202 if Pnode
= CU
and then CU
/= Cunit
(Main_Unit
) then
2203 Walk_Immediate
(Cunit
(S
), Include_Limited
);
2211 --------------------------
2212 -- Walk_Withs_Immediate --
2213 --------------------------
2215 procedure Walk_Withs_Immediate
(CU
: Node_Id
; Include_Limited
: Boolean) is
2216 pragma Assert
(Nkind
(CU
) = N_Compilation_Unit
);
2218 Context_Item
: Node_Id
;
2223 Context_Item
:= First
(Context_Items
(CU
));
2224 while Present
(Context_Item
) loop
2225 if Nkind
(Context_Item
) = N_With_Clause
2226 and then (Include_Limited
2227 or else not Limited_Present
(Context_Item
))
2229 Lib_Unit
:= Library_Unit
(Context_Item
);
2232 -- If the context item indicates that a package body is needed
2233 -- because of an instantiation in CU, traverse the body now, even
2234 -- if CU is not related to the main unit. If the generic itself
2235 -- appears in a package body, the context item is this body, and
2236 -- it already appears in the traversal order, so we only need to
2237 -- examine the case of a context item being a package declaration.
2239 if Present
(Withed_Body
(Context_Item
))
2240 and then Nkind
(Unit
(Lib_Unit
)) = N_Package_Declaration
2241 and then Present
(Corresponding_Body
(Unit
(Lib_Unit
)))
2245 (Unit_Declaration_Node
2246 (Corresponding_Body
(Unit
(Lib_Unit
))));
2248 -- A body may have an implicit with on its own spec, in which
2249 -- case we must ignore this context item to prevent looping.
2251 if Unit
(CU
) /= Unit
(Body_CU
) then
2257 Context_Item
:= Next
(Context_Item
);
2259 end Walk_Withs_Immediate
;