gcc/ChangeLog:
[official-gcc.git] / gcc / ada / sem.adb
blob3cd073082a9023fb27eb049d79fc2b38ac15d9d5
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S E M --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2016, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
20 -- --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
23 -- --
24 ------------------------------------------------------------------------------
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;
34 with Lib; use Lib;
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)
66 package body Sem is
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.
82 generic
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.
89 generic
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.
96 -------------
97 -- Analyze --
98 -------------
100 procedure Analyze (N : Node_Id) is
101 Save_Ghost_Mode : constant Ghost_Mode_Type := Ghost_Mode;
103 begin
104 Debug_A_Entry ("analyzing ", N);
106 -- Immediate return if already analyzed
108 if Analyzed (N) then
109 Debug_A_Exit ("analyzing ", N, " (done, analyzed already)");
110 return;
111 end if;
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
115 -- marked as Ghost.
117 if Is_Declaration (N) then
118 Set_Ghost_Mode (N);
119 end if;
121 -- Otherwise processing depends on the node kind
123 case Nkind (N) is
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);
136 when N_Aggregate =>
137 Analyze_Aggregate (N);
139 when N_Allocator =>
140 Analyze_Allocator (N);
142 when N_And_Then =>
143 Analyze_Short_Circuit (N);
145 when N_Assignment_Statement =>
146 Analyze_Assignment (N);
148 when N_Asynchronous_Select =>
149 Analyze_Asynchronous_Select (N);
151 when N_At_Clause =>
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);
196 when N_Entry_Body =>
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);
292 when N_Identifier =>
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);
304 when N_In =>
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);
322 when N_Label =>
323 Analyze_Label (N);
325 when N_Loop_Parameter_Specification =>
326 Analyze_Loop_Parameter_Specification (N);
328 when N_Loop_Statement =>
329 Analyze_Loop_Statement (N);
331 when N_Not_In =>
332 Analyze_Membership_Op (N);
334 when N_Null =>
335 Analyze_Null (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);
352 when N_Op_Abs =>
353 Analyze_Unary_Op (N);
355 when N_Op_Add =>
356 Analyze_Arithmetic_Op (N);
358 when N_Op_And =>
359 Analyze_Logical_Op (N);
361 when N_Op_Concat =>
362 Analyze_Concatenation (N);
364 when N_Op_Divide =>
365 Analyze_Arithmetic_Op (N);
367 when N_Op_Eq =>
368 Analyze_Equality_Op (N);
370 when N_Op_Expon =>
371 Analyze_Arithmetic_Op (N);
373 when N_Op_Ge =>
374 Analyze_Comparison_Op (N);
376 when N_Op_Gt =>
377 Analyze_Comparison_Op (N);
379 when N_Op_Le =>
380 Analyze_Comparison_Op (N);
382 when N_Op_Lt =>
383 Analyze_Comparison_Op (N);
385 when N_Op_Minus =>
386 Analyze_Unary_Op (N);
388 when N_Op_Mod =>
389 Analyze_Mod (N);
391 when N_Op_Multiply =>
392 Analyze_Arithmetic_Op (N);
394 when N_Op_Ne =>
395 Analyze_Equality_Op (N);
397 when N_Op_Not =>
398 Analyze_Negation (N);
400 when N_Op_Or =>
401 Analyze_Logical_Op (N);
403 when N_Op_Plus =>
404 Analyze_Unary_Op (N);
406 when N_Op_Rem =>
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);
427 when N_Op_Xor =>
428 Analyze_Logical_Op (N);
430 when N_Or_Else =>
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);
457 when N_Pragma =>
458 Analyze_Pragma (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);
499 when N_Range =>
500 Analyze_Range (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);
511 when N_Reference =>
512 Analyze_Reference (N);
514 when N_Requeue_Statement =>
515 Analyze_Requeue (N);
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);
533 when N_Slice =>
534 Analyze_Slice (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);
557 when N_Subunit =>
558 Analyze_Subunit (N);
560 when N_Task_Body =>
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 =>
597 null;
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.
614 when N_Empty =>
615 pragma Assert (Serious_Errors_Detected /= 0
616 or else Configurable_Run_Time_Violations /= 0);
617 null;
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.
624 when N_Error =>
625 Expander_Mode_Save_And_Set (False);
626 null;
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 =>
633 null;
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
638 -- analyzed.
640 when N_SCIL_Dispatch_Table_Tag_Init |
641 N_SCIL_Dispatching_Call |
642 N_SCIL_Membership_Test =>
643 null;
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 |
662 N_Component_Clause |
663 N_Component_Definition |
664 N_Component_List |
665 N_Constrained_Array_Definition |
666 N_Contract |
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 |
672 N_Delta_Constraint |
673 N_Derived_Type_Definition |
674 N_Designator |
675 N_Digits_Constraint |
676 N_Discriminant_Association |
677 N_Discriminant_Specification |
678 N_Elsif_Part |
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 |
695 N_Iteration_Scheme |
696 N_Mod_Clause |
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 |
706 N_Unused_At_Start |
707 N_Unused_At_End |
708 N_Variant =>
709 raise Program_Error;
710 end case;
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)
731 then
732 Expand (N);
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.
742 elsif GNATprove_Mode
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
746 then
747 Expand_SPARK_Potential_Renaming (N);
748 end if;
750 Ghost_Mode := Save_Ghost_Mode;
751 end Analyze;
753 -- Version with check(s) suppressed
755 procedure Analyze (N : Node_Id; Suppress : Check_Id) is
756 begin
757 if Suppress = All_Checks then
758 declare
759 Svs : constant Suppress_Array := Scope_Suppress.Suppress;
760 begin
761 Scope_Suppress.Suppress := (others => True);
762 Analyze (N);
763 Scope_Suppress.Suppress := Svs;
764 end;
766 elsif Suppress = Overflow_Check then
767 declare
768 Svg : constant Boolean := Scope_Suppress.Suppress (Suppress);
769 begin
770 Scope_Suppress.Suppress (Suppress) := True;
771 Analyze (N);
772 Scope_Suppress.Suppress (Suppress) := Svg;
773 end;
774 end if;
775 end Analyze;
777 ------------------
778 -- Analyze_List --
779 ------------------
781 procedure Analyze_List (L : List_Id) is
782 Node : Node_Id;
784 begin
785 Node := First (L);
786 while Present (Node) loop
787 Analyze (Node);
788 Next (Node);
789 end loop;
790 end Analyze_List;
792 -- Version with check(s) suppressed
794 procedure Analyze_List (L : List_Id; Suppress : Check_Id) is
795 begin
796 if Suppress = All_Checks then
797 declare
798 Svs : constant Suppress_Array := Scope_Suppress.Suppress;
799 begin
800 Scope_Suppress.Suppress := (others => True);
801 Analyze_List (L);
802 Scope_Suppress.Suppress := Svs;
803 end;
805 else
806 declare
807 Svg : constant Boolean := Scope_Suppress.Suppress (Suppress);
808 begin
809 Scope_Suppress.Suppress (Suppress) := True;
810 Analyze_List (L);
811 Scope_Suppress.Suppress (Suppress) := Svg;
812 end;
813 end if;
814 end Analyze_List;
816 --------------------------
817 -- Copy_Suppress_Status --
818 --------------------------
820 procedure Copy_Suppress_Status
821 (C : Check_Id;
822 From : Entity_Id;
823 To : Entity_Id)
825 Found : Boolean;
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.
835 ------------------
836 -- Search_Stack --
837 ------------------
839 procedure Search_Stack
840 (Top : Suppress_Stack_Entry_Ptr;
841 Found : out Boolean)
843 Ptr : Suppress_Stack_Entry_Ptr;
845 begin
846 Ptr := Top;
847 while Ptr /= null loop
848 if Ptr.Entity = From
849 and then (Ptr.Check = All_Checks or else Ptr.Check = C)
850 then
851 if Ptr.Suppress then
852 Set_Checks_May_Be_Suppressed (To, True);
853 Push_Local_Suppress_Stack_Entry
854 (Entity => To,
855 Check => C,
856 Suppress => True);
857 Found := True;
858 return;
859 end if;
860 end if;
862 Ptr := Ptr.Prev;
863 end loop;
865 Found := False;
866 return;
867 end Search_Stack;
869 -- Start of processing for Copy_Suppress_Status
871 begin
872 if not Checks_May_Be_Suppressed (From) then
873 return;
874 end if;
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);
882 if Found then
883 return;
884 end if;
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
900 begin
901 if No (Outer_Generic_Scope) then
902 Outer_Generic_Scope := S;
903 end if;
904 end Enter_Generic_Scope;
906 ------------------------
907 -- Exit_Generic_Scope --
908 ------------------------
910 procedure Exit_Generic_Scope (S : Entity_Id) is
911 begin
912 if S = Outer_Generic_Scope then
913 Outer_Generic_Scope := Empty;
914 end if;
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;
924 begin
925 if not Checks_May_Be_Suppressed (E) then
926 return False;
928 else
929 Ptr := Global_Suppress_Stack_Top;
930 while Ptr /= null loop
931 if Ptr.Entity = E
932 and then (Ptr.Check = All_Checks or else Ptr.Check = C)
933 then
934 return Ptr.Suppress;
935 end if;
937 Ptr := Ptr.Prev;
938 end loop;
939 end if;
941 return False;
942 end Explicit_Suppress;
944 -----------------------------
945 -- External_Ref_In_Generic --
946 -----------------------------
948 function External_Ref_In_Generic (E : Entity_Id) return Boolean is
949 Scop : Entity_Id;
951 begin
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
958 return False;
960 elsif Scope_Depth (Scope (E)) < Scope_Depth (Outer_Generic_Scope)
961 or else not In_Same_Source_Unit (E, Outer_Generic_Scope)
962 then
963 return True;
965 else
966 Scop := Scope (E);
967 while Present (Scop) loop
968 if Scop = Outer_Generic_Scope then
969 return False;
970 elsif Scope_Depth (Scop) < Scope_Depth (Outer_Generic_Scope) then
971 return True;
972 else
973 Scop := Scope (Scop);
974 end if;
975 end loop;
977 return True;
978 end if;
979 end External_Ref_In_Generic;
981 ----------------
982 -- Initialize --
983 ----------------
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);
991 begin
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;
999 end loop;
1001 Local_Suppress_Stack_Top := null;
1002 Global_Suppress_Stack_Top := null;
1004 -- Clear scope stack, and reset global variables
1006 Scope_Stack.Init;
1007 Unloaded_Subunits := False;
1008 end Initialize;
1010 ------------------------------
1011 -- Insert_After_And_Analyze --
1012 ------------------------------
1014 procedure Insert_After_And_Analyze (N : Node_Id; M : Node_Id) is
1015 Node : Node_Id;
1017 begin
1018 if Present (M) then
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
1028 else
1029 -- Capture the Node_Id of the node to be inserted. This Node_Id
1030 -- will still be the same after the insert operation.
1032 Node := M;
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
1041 Analyze (Node);
1042 Mark_Rewrite_Insertion (Node);
1043 Next (Node);
1044 end loop;
1045 end if;
1046 end if;
1047 end Insert_After_And_Analyze;
1049 -- Version with check(s) suppressed
1051 procedure Insert_After_And_Analyze
1052 (N : Node_Id;
1053 M : Node_Id;
1054 Suppress : Check_Id)
1056 begin
1057 if Suppress = All_Checks then
1058 declare
1059 Svs : constant Suppress_Array := Scope_Suppress.Suppress;
1060 begin
1061 Scope_Suppress.Suppress := (others => True);
1062 Insert_After_And_Analyze (N, M);
1063 Scope_Suppress.Suppress := Svs;
1064 end;
1066 else
1067 declare
1068 Svg : constant Boolean := Scope_Suppress.Suppress (Suppress);
1069 begin
1070 Scope_Suppress.Suppress (Suppress) := True;
1071 Insert_After_And_Analyze (N, M);
1072 Scope_Suppress.Suppress (Suppress) := Svg;
1073 end;
1074 end if;
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
1082 Node : Node_Id;
1084 begin
1085 if Present (M) then
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.
1091 Node := M;
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
1102 Analyze (Node);
1103 Mark_Rewrite_Insertion (Node);
1104 Next (Node);
1105 end loop;
1106 end if;
1107 end Insert_Before_And_Analyze;
1109 -- Version with check(s) suppressed
1111 procedure Insert_Before_And_Analyze
1112 (N : Node_Id;
1113 M : Node_Id;
1114 Suppress : Check_Id)
1116 begin
1117 if Suppress = All_Checks then
1118 declare
1119 Svs : constant Suppress_Array := Scope_Suppress.Suppress;
1120 begin
1121 Scope_Suppress.Suppress := (others => True);
1122 Insert_Before_And_Analyze (N, M);
1123 Scope_Suppress.Suppress := Svs;
1124 end;
1126 else
1127 declare
1128 Svg : constant Boolean := Scope_Suppress.Suppress (Suppress);
1129 begin
1130 Scope_Suppress.Suppress (Suppress) := True;
1131 Insert_Before_And_Analyze (N, M);
1132 Scope_Suppress.Suppress (Suppress) := Svg;
1133 end;
1134 end if;
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);
1143 Node : Node_Id;
1145 begin
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.
1152 Node := First (L);
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
1163 Analyze (Node);
1164 Mark_Rewrite_Insertion (Node);
1165 Next (Node);
1166 end loop;
1167 end if;
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)
1175 begin
1176 if Suppress = All_Checks then
1177 declare
1178 Svs : constant Suppress_Array := Scope_Suppress.Suppress;
1179 begin
1180 Scope_Suppress.Suppress := (others => True);
1181 Insert_List_After_And_Analyze (N, L);
1182 Scope_Suppress.Suppress := Svs;
1183 end;
1185 else
1186 declare
1187 Svg : constant Boolean := Scope_Suppress.Suppress (Suppress);
1188 begin
1189 Scope_Suppress.Suppress (Suppress) := True;
1190 Insert_List_After_And_Analyze (N, L);
1191 Scope_Suppress.Suppress (Suppress) := Svg;
1192 end;
1193 end if;
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
1201 Node : Node_Id;
1203 begin
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.
1210 Node := First (L);
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
1221 Analyze (Node);
1222 Mark_Rewrite_Insertion (Node);
1223 Next (Node);
1224 end loop;
1225 end if;
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)
1233 begin
1234 if Suppress = All_Checks then
1235 declare
1236 Svs : constant Suppress_Array := Scope_Suppress.Suppress;
1237 begin
1238 Scope_Suppress.Suppress := (others => True);
1239 Insert_List_Before_And_Analyze (N, L);
1240 Scope_Suppress.Suppress := Svs;
1241 end;
1243 else
1244 declare
1245 Svg : constant Boolean := Scope_Suppress.Suppress (Suppress);
1246 begin
1247 Scope_Suppress.Suppress (Suppress) := True;
1248 Insert_List_Before_And_Analyze (N, L);
1249 Scope_Suppress.Suppress (Suppress) := Svg;
1250 end;
1251 end if;
1252 end Insert_List_Before_And_Analyze;
1254 ----------
1255 -- Lock --
1256 ----------
1258 procedure Lock is
1259 begin
1260 Scope_Stack.Locked := True;
1261 Scope_Stack.Release;
1262 end Lock;
1264 ----------------
1265 -- Preanalyze --
1266 ----------------
1268 procedure Preanalyze (N : Node_Id) is
1269 Save_Full_Analysis : constant Boolean := Full_Analysis;
1271 begin
1272 Full_Analysis := False;
1273 Expander_Mode_Save_And_Set (False);
1275 Analyze (N);
1277 Expander_Mode_Restore;
1278 Full_Analysis := Save_Full_Analysis;
1279 end Preanalyze;
1281 --------------------------------------
1282 -- Push_Global_Suppress_Stack_Entry --
1283 --------------------------------------
1285 procedure Push_Global_Suppress_Stack_Entry
1286 (Entity : Entity_Id;
1287 Check : Check_Id;
1288 Suppress : Boolean)
1290 begin
1291 Global_Suppress_Stack_Top :=
1292 new Suppress_Stack_Entry'
1293 (Entity => Entity,
1294 Check => Check,
1295 Suppress => Suppress,
1296 Prev => Global_Suppress_Stack_Top,
1297 Next => Suppress_Stack_Entries);
1298 Suppress_Stack_Entries := Global_Suppress_Stack_Top;
1299 return;
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;
1308 Check : Check_Id;
1309 Suppress : Boolean)
1311 begin
1312 Local_Suppress_Stack_Top :=
1313 new Suppress_Stack_Entry'
1314 (Entity => Entity,
1315 Check => Check,
1316 Suppress => Suppress,
1317 Prev => Local_Suppress_Stack_Top,
1318 Next => Suppress_Stack_Entries);
1319 Suppress_Stack_Entries := Local_Suppress_Stack_Top;
1321 return;
1322 end Push_Local_Suppress_Stack_Entry;
1324 ---------------
1325 -- Semantics --
1326 ---------------
1328 procedure Semantics (Comp_Unit : Node_Id) is
1329 procedure Do_Analyze;
1330 -- Perform the analysis of the compilation unit
1332 ----------------
1333 -- Do_Analyze --
1334 ----------------
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;
1346 List : Elist_Id;
1348 begin
1349 List := Save_Scope_Stack;
1350 Push_Scope (Standard_Standard);
1352 -- Set up a clean environment before analyzing
1354 Ghost_Mode := None;
1355 Outer_Generic_Scope := Empty;
1356 Scope_Suppress := Suppress_Options;
1357 Scope_Stack.Table
1358 (Scope_Stack.Last).Component_Alignment_Default := Calign_Default;
1359 Scope_Stack.Table
1360 (Scope_Stack.Last).Is_Active_Stack_Base := True;
1362 -- Now analyze the top level compilation unit node
1364 Analyze (Comp_Unit);
1366 -- Check for scope mismatch on exit from compilation
1368 pragma Assert (Current_Scope = Standard_Standard
1369 or else Comp_Unit = Cunit (Main_Unit));
1371 -- Then pop entry for Standard, and pop implicit types
1373 Pop_Scope;
1374 Restore_Scope_Stack (List);
1375 Ghost_Mode := Save_Ghost_Mode;
1376 Style_Max_Line_Length := Save_Max_Line;
1377 end Do_Analyze;
1379 -- Local variables
1381 -- The following locations save the corresponding global flags and
1382 -- variables so that they can be restored on completion. This is needed
1383 -- so that calls to Rtsfind start with the proper default values for
1384 -- these variables, and also that such calls do not disturb the settings
1385 -- for units being analyzed at a higher level.
1387 S_Current_Sem_Unit : constant Unit_Number_Type := Current_Sem_Unit;
1388 S_Full_Analysis : constant Boolean := Full_Analysis;
1389 S_GNAT_Mode : constant Boolean := GNAT_Mode;
1390 S_Global_Dis_Names : constant Boolean := Global_Discard_Names;
1391 S_In_Assertion_Expr : constant Nat := In_Assertion_Expr;
1392 S_In_Default_Expr : constant Boolean := In_Default_Expr;
1393 S_In_Spec_Expr : constant Boolean := In_Spec_Expression;
1394 S_Inside_A_Generic : constant Boolean := Inside_A_Generic;
1395 S_Outer_Gen_Scope : constant Entity_Id := Outer_Generic_Scope;
1396 S_Style_Check : constant Boolean := Style_Check;
1398 Already_Analyzed : constant Boolean := Analyzed (Comp_Unit);
1400 Curunit : constant Unit_Number_Type := Get_Cunit_Unit_Number (Comp_Unit);
1401 -- New value of Current_Sem_Unit
1403 Generic_Main : constant Boolean :=
1404 Nkind (Unit (Cunit (Main_Unit))) in N_Generic_Declaration;
1405 -- If the main unit is generic, every compiled unit, including its
1406 -- context, is compiled with expansion disabled.
1408 Is_Main_Unit_Or_Main_Unit_Spec : constant Boolean :=
1409 Curunit = Main_Unit
1410 or else
1411 (Nkind (Unit (Cunit (Main_Unit))) = N_Package_Body
1412 and then Library_Unit (Cunit (Main_Unit)) = Cunit (Curunit));
1413 -- Configuration flags have special settings when compiling a predefined
1414 -- file as a main unit. This applies to its spec as well.
1416 Ext_Main_Source_Unit : constant Boolean :=
1417 In_Extended_Main_Source_Unit (Comp_Unit);
1418 -- Determine if unit is in extended main source unit
1420 Save_Config_Switches : Config_Switches_Type;
1421 -- Variable used to save values of config switches while we analyze the
1422 -- new unit, to be restored on exit for proper recursive behavior.
1424 Save_Cunit_Restrictions : Save_Cunit_Boolean_Restrictions;
1425 -- Used to save non-partition wide restrictions before processing new
1426 -- unit. All with'ed units are analyzed with config restrictions reset
1427 -- and we need to restore these saved values at the end.
1429 -- Start of processing for Semantics
1431 begin
1432 if Debug_Unit_Walk then
1433 if Already_Analyzed then
1434 Write_Str ("(done)");
1435 end if;
1437 Write_Unit_Info
1438 (Get_Cunit_Unit_Number (Comp_Unit),
1439 Unit (Comp_Unit),
1440 Prefix => "--> ");
1441 Indent;
1442 end if;
1444 Compiler_State := Analyzing;
1445 Current_Sem_Unit := Curunit;
1447 -- Compile predefined units with GNAT_Mode set to True, to properly
1448 -- process the categorization stuff. However, do not set GNAT_Mode
1449 -- to True for the renamings units (Text_IO, IO_Exceptions, Direct_IO,
1450 -- Sequential_IO) as this would prevent pragma Extend_System from being
1451 -- taken into account, for example when Text_IO is renaming DEC.Text_IO.
1453 if Is_Predefined_File_Name
1454 (Unit_File_Name (Current_Sem_Unit), Renamings_Included => False)
1455 then
1456 GNAT_Mode := True;
1457 end if;
1459 -- For generic main, never do expansion
1461 if Generic_Main then
1462 Expander_Mode_Save_And_Set (False);
1464 -- Non generic case
1466 else
1467 Expander_Mode_Save_And_Set
1469 -- Turn on expansion if generating code
1471 (Operating_Mode = Generate_Code
1473 -- Or if special debug flag -gnatdx is set
1475 or else Debug_Flag_X
1477 -- Or if in configuration run-time mode. We do this so we get
1478 -- error messages about missing entities in the run-time even
1479 -- if we are compiling in -gnatc (no code generation) mode.
1480 -- Similar processing applies to No_Run_Time_Mode. However,
1481 -- don't do this if debug flag -gnatd.Z is set or when we are
1482 -- compiling a separate unit (this is to handle a situation
1483 -- where this new processing causes trouble).
1485 or else ((Configurable_Run_Time_Mode or No_Run_Time_Mode)
1486 and not Debug_Flag_Dot_ZZ
1487 and Nkind (Unit (Cunit (Main_Unit))) /= N_Subunit));
1488 end if;
1490 Full_Analysis := True;
1491 Inside_A_Generic := False;
1492 In_Assertion_Expr := 0;
1493 In_Default_Expr := False;
1494 In_Spec_Expression := False;
1495 Set_Comes_From_Source_Default (False);
1497 -- Save current config switches and reset then appropriately
1499 Save_Opt_Config_Switches (Save_Config_Switches);
1500 Set_Opt_Config_Switches
1501 (Is_Internal_File_Name (Unit_File_Name (Current_Sem_Unit)),
1502 Is_Main_Unit_Or_Main_Unit_Spec);
1504 -- Save current non-partition-wide restrictions
1506 Save_Cunit_Restrictions := Cunit_Boolean_Restrictions_Save;
1508 -- For unit in main extended unit, we reset the configuration values
1509 -- for the non-partition-wide restrictions. For other units reset them.
1511 if Ext_Main_Source_Unit then
1512 Restore_Config_Cunit_Boolean_Restrictions;
1513 else
1514 Reset_Cunit_Boolean_Restrictions;
1515 end if;
1517 -- Turn off style checks for unit that is not in the extended main
1518 -- source unit. This improves processing efficiency for such units
1519 -- (for which we don't want style checks anyway, and where they will
1520 -- get suppressed), and is definitely needed to stop some style checks
1521 -- from invading the run-time units (e.g. overriding checks).
1523 if not Ext_Main_Source_Unit then
1524 Style_Check := False;
1526 -- If this is part of the extended main source unit, set style check
1527 -- mode to match the style check mode of the main source unit itself.
1529 else
1530 Style_Check := Style_Check_Main;
1531 end if;
1533 -- Only do analysis of unit that has not already been analyzed
1535 if not Analyzed (Comp_Unit) then
1536 Initialize_Version (Current_Sem_Unit);
1538 -- Do analysis, and then append the compilation unit onto the
1539 -- Comp_Unit_List, if appropriate. This is done after analysis,
1540 -- so if this unit depends on some others, they have already been
1541 -- appended. We ignore bodies, except for the main unit itself, and
1542 -- for subprogram bodies that act as specs. We have also to guard
1543 -- against ill-formed subunits that have an improper context.
1545 Do_Analyze;
1547 if Present (Comp_Unit)
1548 and then Nkind (Unit (Comp_Unit)) in N_Proper_Body
1549 and then (Nkind (Unit (Comp_Unit)) /= N_Subprogram_Body
1550 or else not Acts_As_Spec (Comp_Unit))
1551 and then not In_Extended_Main_Source_Unit (Comp_Unit)
1552 then
1553 null;
1555 else
1556 Append_New_Elmt (Comp_Unit, To => Comp_Unit_List);
1558 if Debug_Unit_Walk then
1559 Write_Str ("Appending ");
1560 Write_Unit_Info
1561 (Get_Cunit_Unit_Number (Comp_Unit), Unit (Comp_Unit));
1562 end if;
1563 end if;
1564 end if;
1566 -- Save indication of dynamic elaboration checks for ALI file
1568 Set_Dynamic_Elab (Current_Sem_Unit, Dynamic_Elaboration_Checks);
1570 -- Restore settings of saved switches to entry values
1572 Current_Sem_Unit := S_Current_Sem_Unit;
1573 Full_Analysis := S_Full_Analysis;
1574 Global_Discard_Names := S_Global_Dis_Names;
1575 GNAT_Mode := S_GNAT_Mode;
1576 In_Assertion_Expr := S_In_Assertion_Expr;
1577 In_Default_Expr := S_In_Default_Expr;
1578 In_Spec_Expression := S_In_Spec_Expr;
1579 Inside_A_Generic := S_Inside_A_Generic;
1580 Outer_Generic_Scope := S_Outer_Gen_Scope;
1581 Style_Check := S_Style_Check;
1583 Restore_Opt_Config_Switches (Save_Config_Switches);
1585 -- Deal with restore of restrictions
1587 Cunit_Boolean_Restrictions_Restore (Save_Cunit_Restrictions);
1589 Expander_Mode_Restore;
1591 if Debug_Unit_Walk then
1592 Outdent;
1594 if Already_Analyzed then
1595 Write_Str ("(done)");
1596 end if;
1598 Write_Unit_Info
1599 (Get_Cunit_Unit_Number (Comp_Unit),
1600 Unit (Comp_Unit),
1601 Prefix => "<-- ");
1602 end if;
1603 end Semantics;
1605 --------
1606 -- ss --
1607 --------
1609 function ss (Index : Int) return Scope_Stack_Entry is
1610 begin
1611 return Scope_Stack.Table (Index);
1612 end ss;
1614 ---------
1615 -- sst --
1616 ---------
1618 function sst return Scope_Stack_Entry is
1619 begin
1620 return ss (Scope_Stack.Last);
1621 end sst;
1623 ------------------------
1624 -- Walk_Library_Items --
1625 ------------------------
1627 procedure Walk_Library_Items is
1628 type Unit_Number_Set is array (Main_Unit .. Last_Unit) of Boolean;
1629 pragma Pack (Unit_Number_Set);
1631 Main_CU : constant Node_Id := Cunit (Main_Unit);
1633 Seen, Done : Unit_Number_Set := (others => False);
1634 -- Seen (X) is True after we have seen unit X in the walk. This is used
1635 -- to prevent processing the same unit more than once. Done (X) is True
1636 -- after we have fully processed X, and is used only for debugging
1637 -- printouts and assertions.
1639 Do_Main : Boolean := False;
1640 -- Flag to delay processing the main body until after all other units.
1641 -- This is needed because the spec of the main unit may appear in the
1642 -- context of some other unit. We do not want this to force processing
1643 -- of the main body before all other units have been processed.
1645 -- Another circularity pattern occurs when the main unit is a child unit
1646 -- and the body of an ancestor has a with-clause of the main unit or on
1647 -- one of its children. In both cases the body in question has a with-
1648 -- clause on the main unit, and must be excluded from the traversal. In
1649 -- some convoluted cases this may lead to a CodePeer error because the
1650 -- spec of a subprogram declared in an instance within the parent will
1651 -- not be seen in the main unit.
1653 function Depends_On_Main (CU : Node_Id) return Boolean;
1654 -- The body of a unit that is withed by the spec of the main unit may in
1655 -- turn have a with_clause on that spec. In that case do not traverse
1656 -- the body, to prevent loops. It can also happen that the main body has
1657 -- a with_clause on a child, which of course has an implicit with on its
1658 -- parent. It's OK to traverse the child body if the main spec has been
1659 -- processed, otherwise we also have a circularity to avoid.
1661 procedure Do_Action (CU : Node_Id; Item : Node_Id);
1662 -- Calls Action, with some validity checks
1664 procedure Do_Unit_And_Dependents (CU : Node_Id; Item : Node_Id);
1665 -- Calls Do_Action, first on the units with'ed by this one, then on
1666 -- this unit. If it's an instance body, do the spec first. If it is
1667 -- an instance spec, do the body last.
1669 procedure Do_Withed_Unit (Withed_Unit : Node_Id);
1670 -- Apply Do_Unit_And_Dependents to a unit in a context clause
1672 procedure Process_Bodies_In_Context (Comp : Node_Id);
1673 -- The main unit and its spec may depend on bodies that contain generics
1674 -- that are instantiated in them. Iterate through the corresponding
1675 -- contexts before processing main (spec/body) itself, to process bodies
1676 -- that may be present, together with their context. The spec of main
1677 -- is processed wherever it appears in the list of units, while the body
1678 -- is processed as the last unit in the list.
1680 ---------------------
1681 -- Depends_On_Main --
1682 ---------------------
1684 function Depends_On_Main (CU : Node_Id) return Boolean is
1685 CL : Node_Id;
1686 MCU : constant Node_Id := Unit (Main_CU);
1688 begin
1689 CL := First (Context_Items (CU));
1691 -- Problem does not arise with main subprograms
1694 not Nkind_In (MCU, N_Package_Body, N_Package_Declaration)
1695 then
1696 return False;
1697 end if;
1699 while Present (CL) loop
1700 if Nkind (CL) = N_With_Clause
1701 and then Library_Unit (CL) = Main_CU
1702 and then not Done (Get_Cunit_Unit_Number (Library_Unit (CL)))
1703 then
1704 return True;
1705 end if;
1707 Next (CL);
1708 end loop;
1710 return False;
1711 end Depends_On_Main;
1713 ---------------
1714 -- Do_Action --
1715 ---------------
1717 procedure Do_Action (CU : Node_Id; Item : Node_Id) is
1718 begin
1719 -- This calls Action at the end. All the preceding code is just
1720 -- assertions and debugging output.
1722 pragma Assert (No (CU) or else Nkind (CU) = N_Compilation_Unit);
1724 case Nkind (Item) is
1725 when N_Generic_Subprogram_Declaration |
1726 N_Generic_Package_Declaration |
1727 N_Package_Declaration |
1728 N_Subprogram_Declaration |
1729 N_Subprogram_Renaming_Declaration |
1730 N_Package_Renaming_Declaration |
1731 N_Generic_Function_Renaming_Declaration |
1732 N_Generic_Package_Renaming_Declaration |
1733 N_Generic_Procedure_Renaming_Declaration =>
1735 -- Specs are OK
1737 null;
1739 when N_Package_Body =>
1741 -- Package bodies are processed separately if the main unit
1742 -- depends on them.
1744 null;
1746 when N_Subprogram_Body =>
1748 -- A subprogram body must be the main unit
1750 pragma Assert (Acts_As_Spec (CU)
1751 or else CU = Cunit (Main_Unit));
1752 null;
1754 when N_Function_Instantiation |
1755 N_Procedure_Instantiation |
1756 N_Package_Instantiation =>
1758 -- Can only happen if some generic body (needed for gnat2scil
1759 -- traversal, but not by GNAT) is not available, ignore.
1761 null;
1763 -- All other cases cannot happen
1765 when N_Subunit =>
1766 pragma Assert (False, "subunit");
1767 null;
1769 when others =>
1770 pragma Assert (False);
1771 null;
1772 end case;
1774 if Present (CU) then
1775 pragma Assert (Item /= Stand.Standard_Package_Node);
1776 pragma Assert (Item = Unit (CU));
1778 declare
1779 Unit_Num : constant Unit_Number_Type :=
1780 Get_Cunit_Unit_Number (CU);
1782 procedure Assert_Done (Withed_Unit : Node_Id);
1783 -- Assert Withed_Unit is already Done, unless it's a body. It
1784 -- might seem strange for a with_clause to refer to a body, but
1785 -- this happens in the case of a generic instantiation, which
1786 -- gets transformed into the instance body (and the instance
1787 -- spec is also created). With clauses pointing to the
1788 -- instantiation end up pointing to the instance body.
1790 -----------------
1791 -- Assert_Done --
1792 -----------------
1794 procedure Assert_Done (Withed_Unit : Node_Id) is
1795 begin
1796 if not Done (Get_Cunit_Unit_Number (Withed_Unit)) then
1797 if not Nkind_In
1798 (Unit (Withed_Unit),
1799 N_Generic_Package_Declaration,
1800 N_Package_Body,
1801 N_Package_Renaming_Declaration,
1802 N_Subprogram_Body)
1803 then
1804 Write_Unit_Name
1805 (Unit_Name (Get_Cunit_Unit_Number (Withed_Unit)));
1806 Write_Str (" not yet walked!");
1808 if Get_Cunit_Unit_Number (Withed_Unit) = Unit_Num then
1809 Write_Str (" (self-ref)");
1810 end if;
1812 Write_Eol;
1814 pragma Assert (False);
1815 end if;
1816 end if;
1817 end Assert_Done;
1819 procedure Assert_Withed_Units_Done is
1820 new Walk_Withs (Assert_Done);
1822 begin
1823 if Debug_Unit_Walk then
1824 Write_Unit_Info (Unit_Num, Item, Withs => True);
1825 end if;
1827 -- Main unit should come last, except in the case where we
1828 -- skipped System_Aux_Id, in which case we missed the things it
1829 -- depends on, and in the case of parent bodies if present.
1831 pragma Assert
1832 (not Done (Main_Unit)
1833 or else Present (System_Aux_Id)
1834 or else Nkind (Item) = N_Package_Body);
1836 -- We shouldn't do the same thing twice
1838 pragma Assert (not Done (Unit_Num));
1840 -- Everything we depend upon should already be done
1842 pragma Debug
1843 (Assert_Withed_Units_Done (CU, Include_Limited => False));
1844 end;
1846 else
1847 -- Must be Standard, which has no entry in the units table
1849 pragma Assert (Item = Stand.Standard_Package_Node);
1851 if Debug_Unit_Walk then
1852 Write_Line ("Standard");
1853 end if;
1854 end if;
1856 Action (Item);
1857 end Do_Action;
1859 --------------------
1860 -- Do_Withed_Unit --
1861 --------------------
1863 procedure Do_Withed_Unit (Withed_Unit : Node_Id) is
1864 begin
1865 Do_Unit_And_Dependents (Withed_Unit, Unit (Withed_Unit));
1867 -- If the unit in the with_clause is a generic instance, the clause
1868 -- now denotes the instance body. Traverse the corresponding spec
1869 -- because there may be no other dependence that will force the
1870 -- traversal of its own context.
1872 if Nkind (Unit (Withed_Unit)) = N_Package_Body
1873 and then Is_Generic_Instance
1874 (Defining_Entity (Unit (Library_Unit (Withed_Unit))))
1875 then
1876 Do_Withed_Unit (Library_Unit (Withed_Unit));
1877 end if;
1878 end Do_Withed_Unit;
1880 ----------------------------
1881 -- Do_Unit_And_Dependents --
1882 ----------------------------
1884 procedure Do_Unit_And_Dependents (CU : Node_Id; Item : Node_Id) is
1885 Unit_Num : constant Unit_Number_Type := Get_Cunit_Unit_Number (CU);
1886 Child : Node_Id;
1887 Body_U : Unit_Number_Type;
1888 Parent_CU : Node_Id;
1890 procedure Do_Withed_Units is new Walk_Withs (Do_Withed_Unit);
1892 begin
1893 if not Seen (Unit_Num) then
1895 -- Process the with clauses
1897 Do_Withed_Units (CU, Include_Limited => False);
1899 -- Process the unit if it is a spec or the main unit, if it
1900 -- has no previous spec or we have done all other units.
1902 if not Nkind_In (Item, N_Package_Body, N_Subprogram_Body)
1903 or else Acts_As_Spec (CU)
1904 then
1905 if CU = Cunit (Main_Unit)
1906 and then not Do_Main
1907 then
1908 Seen (Unit_Num) := False;
1910 else
1911 Seen (Unit_Num) := True;
1913 if CU = Library_Unit (Main_CU) then
1914 Process_Bodies_In_Context (CU);
1916 -- If main is a child unit, examine parent unit contexts
1917 -- to see if they include instantiated units. Also, if
1918 -- the parent itself is an instance, process its body
1919 -- because it may contain subprograms that are called
1920 -- in the main unit.
1922 if Is_Child_Unit (Cunit_Entity (Main_Unit)) then
1923 Child := Cunit_Entity (Main_Unit);
1924 while Is_Child_Unit (Child) loop
1925 Parent_CU :=
1926 Cunit
1927 (Get_Cunit_Entity_Unit_Number (Scope (Child)));
1928 Process_Bodies_In_Context (Parent_CU);
1930 if Nkind (Unit (Parent_CU)) = N_Package_Body
1931 and then
1932 Nkind (Original_Node (Unit (Parent_CU)))
1933 = N_Package_Instantiation
1934 and then
1935 not Seen (Get_Cunit_Unit_Number (Parent_CU))
1936 then
1937 Body_U := Get_Cunit_Unit_Number (Parent_CU);
1938 Seen (Body_U) := True;
1939 Do_Action (Parent_CU, Unit (Parent_CU));
1940 Done (Body_U) := True;
1941 end if;
1943 Child := Scope (Child);
1944 end loop;
1945 end if;
1946 end if;
1948 Do_Action (CU, Item);
1949 Done (Unit_Num) := True;
1950 end if;
1951 end if;
1952 end if;
1953 end Do_Unit_And_Dependents;
1955 -------------------------------
1956 -- Process_Bodies_In_Context --
1957 -------------------------------
1959 procedure Process_Bodies_In_Context (Comp : Node_Id) is
1960 Body_CU : Node_Id;
1961 Body_U : Unit_Number_Type;
1962 Clause : Node_Id;
1963 Spec : Node_Id;
1965 procedure Do_Withed_Units is new Walk_Withs (Do_Withed_Unit);
1967 -- Start of processing for Process_Bodies_In_Context
1969 begin
1970 Clause := First (Context_Items (Comp));
1971 while Present (Clause) loop
1972 if Nkind (Clause) = N_With_Clause then
1973 Spec := Library_Unit (Clause);
1974 Body_CU := Library_Unit (Spec);
1976 -- If we are processing the spec of the main unit, load bodies
1977 -- only if the with_clause indicates that it forced the loading
1978 -- of the body for a generic instantiation. Note that bodies of
1979 -- parents that are instances have been loaded already.
1981 if Present (Body_CU)
1982 and then Body_CU /= Cunit (Main_Unit)
1983 and then Nkind (Unit (Body_CU)) /= N_Subprogram_Body
1984 and then (Nkind (Unit (Comp)) /= N_Package_Declaration
1985 or else Present (Withed_Body (Clause)))
1986 then
1987 Body_U := Get_Cunit_Unit_Number (Body_CU);
1989 if not Seen (Body_U)
1990 and then not Depends_On_Main (Body_CU)
1991 then
1992 Seen (Body_U) := True;
1993 Do_Withed_Units (Body_CU, Include_Limited => False);
1994 Do_Action (Body_CU, Unit (Body_CU));
1995 Done (Body_U) := True;
1996 end if;
1997 end if;
1998 end if;
2000 Next (Clause);
2001 end loop;
2002 end Process_Bodies_In_Context;
2004 -- Local Declarations
2006 Cur : Elmt_Id;
2008 -- Start of processing for Walk_Library_Items
2010 begin
2011 if Debug_Unit_Walk then
2012 Write_Line ("Walk_Library_Items:");
2013 Indent;
2014 end if;
2016 -- Do Standard first, then walk the Comp_Unit_List
2018 Do_Action (Empty, Standard_Package_Node);
2020 -- First place the context of all instance bodies on the corresponding
2021 -- spec, because it may be needed to analyze the code at the place of
2022 -- the instantiation.
2024 Cur := First_Elmt (Comp_Unit_List);
2025 while Present (Cur) loop
2026 declare
2027 CU : constant Node_Id := Node (Cur);
2028 N : constant Node_Id := Unit (CU);
2030 begin
2031 if Nkind (N) = N_Package_Body
2032 and then Is_Generic_Instance (Defining_Entity (N))
2033 then
2034 Append_List
2035 (Context_Items (CU), Context_Items (Library_Unit (CU)));
2036 end if;
2038 Next_Elmt (Cur);
2039 end;
2040 end loop;
2042 -- Now traverse compilation units (specs) in order
2044 Cur := First_Elmt (Comp_Unit_List);
2045 while Present (Cur) loop
2046 declare
2047 CU : constant Node_Id := Node (Cur);
2048 N : constant Node_Id := Unit (CU);
2049 Par : Entity_Id;
2051 begin
2052 pragma Assert (Nkind (CU) = N_Compilation_Unit);
2054 case Nkind (N) is
2056 -- If it is a subprogram body, process it if it has no
2057 -- separate spec.
2059 -- If it's a package body, ignore it, unless it is a body
2060 -- created for an instance that is the main unit. In the case
2061 -- of subprograms, the body is the wrapper package. In case of
2062 -- a package, the original file carries the body, and the spec
2063 -- appears as a later entry in the units list.
2065 -- Otherwise bodies appear in the list only because of inlining
2066 -- or instantiations, and they are processed only if relevant.
2067 -- The flag Withed_Body on a context clause indicates that a
2068 -- unit contains an instantiation that may be needed later,
2069 -- and therefore the body that contains the generic body (and
2070 -- its context) must be traversed immediately after the
2071 -- corresponding spec (see Do_Unit_And_Dependents).
2073 -- The main unit itself is processed separately after all other
2074 -- specs, and relevant bodies are examined in Process_Main.
2076 when N_Subprogram_Body =>
2077 if Acts_As_Spec (N) then
2078 Do_Unit_And_Dependents (CU, N);
2079 end if;
2081 when N_Package_Body =>
2082 if CU = Main_CU
2083 and then Nkind (Original_Node (Unit (Main_CU))) in
2084 N_Generic_Instantiation
2085 and then Present (Library_Unit (Main_CU))
2086 then
2087 Do_Unit_And_Dependents
2088 (Library_Unit (Main_CU),
2089 Unit (Library_Unit (Main_CU)));
2090 end if;
2092 -- It's a spec, process it, and the units it depends on,
2093 -- unless it is a descendant of the main unit. This can
2094 -- happen when the body of a parent depends on some other
2095 -- descendant.
2097 when others =>
2098 Par := Scope (Defining_Entity (Unit (CU)));
2100 if Is_Child_Unit (Defining_Entity (Unit (CU))) then
2101 while Present (Par)
2102 and then Par /= Standard_Standard
2103 and then Par /= Cunit_Entity (Main_Unit)
2104 loop
2105 Par := Scope (Par);
2106 end loop;
2107 end if;
2109 if Par /= Cunit_Entity (Main_Unit) then
2110 Do_Unit_And_Dependents (CU, N);
2111 end if;
2112 end case;
2113 end;
2115 Next_Elmt (Cur);
2116 end loop;
2118 -- Now process package bodies on which main depends, followed by bodies
2119 -- of parents, if present, and finally main itself.
2121 if not Done (Main_Unit) then
2122 Do_Main := True;
2124 Process_Main : declare
2125 Parent_CU : Node_Id;
2126 Body_CU : Node_Id;
2127 Body_U : Unit_Number_Type;
2128 Child : Entity_Id;
2130 function Is_Subunit_Of_Main (U : Node_Id) return Boolean;
2131 -- If the main unit has subunits, their context may include
2132 -- bodies that are needed in the body of main. We must examine
2133 -- the context of the subunits, which are otherwise not made
2134 -- explicit in the main unit.
2136 ------------------------
2137 -- Is_Subunit_Of_Main --
2138 ------------------------
2140 function Is_Subunit_Of_Main (U : Node_Id) return Boolean is
2141 Lib : Node_Id;
2142 begin
2143 if No (U) then
2144 return False;
2145 else
2146 Lib := Library_Unit (U);
2147 return Nkind (Unit (U)) = N_Subunit
2148 and then
2149 (Lib = Cunit (Main_Unit)
2150 or else Is_Subunit_Of_Main (Lib));
2151 end if;
2152 end Is_Subunit_Of_Main;
2154 -- Start of processing for Process_Main
2156 begin
2157 Process_Bodies_In_Context (Main_CU);
2159 for Unit_Num in Done'Range loop
2160 if Is_Subunit_Of_Main (Cunit (Unit_Num)) then
2161 Process_Bodies_In_Context (Cunit (Unit_Num));
2162 end if;
2163 end loop;
2165 -- If the main unit is a child unit, parent bodies may be present
2166 -- because they export instances or inlined subprograms. Check for
2167 -- presence of these, which are not present in context clauses.
2168 -- Note that if the parents are instances, their bodies have been
2169 -- processed before the main spec, because they may be needed
2170 -- therein, so the following loop only affects non-instances.
2172 if Is_Child_Unit (Cunit_Entity (Main_Unit)) then
2173 Child := Cunit_Entity (Main_Unit);
2174 while Is_Child_Unit (Child) loop
2175 Parent_CU :=
2176 Cunit (Get_Cunit_Entity_Unit_Number (Scope (Child)));
2177 Body_CU := Library_Unit (Parent_CU);
2179 if Present (Body_CU)
2180 and then not Seen (Get_Cunit_Unit_Number (Body_CU))
2181 and then not Depends_On_Main (Body_CU)
2182 then
2183 Body_U := Get_Cunit_Unit_Number (Body_CU);
2184 Seen (Body_U) := True;
2185 Do_Action (Body_CU, Unit (Body_CU));
2186 Done (Body_U) := True;
2187 end if;
2189 Child := Scope (Child);
2190 end loop;
2191 end if;
2193 Do_Action (Main_CU, Unit (Main_CU));
2194 Done (Main_Unit) := True;
2195 end Process_Main;
2196 end if;
2198 if Debug_Unit_Walk then
2199 if Done /= (Done'Range => True) then
2200 Write_Eol;
2201 Write_Line ("Ignored units:");
2203 Indent;
2205 for Unit_Num in Done'Range loop
2206 if not Done (Unit_Num) then
2207 Write_Unit_Info
2208 (Unit_Num, Unit (Cunit (Unit_Num)), Withs => True);
2209 end if;
2210 end loop;
2212 Outdent;
2213 end if;
2214 end if;
2216 pragma Assert (Done (Main_Unit));
2218 if Debug_Unit_Walk then
2219 Outdent;
2220 Write_Line ("end Walk_Library_Items.");
2221 end if;
2222 end Walk_Library_Items;
2224 ----------------
2225 -- Walk_Withs --
2226 ----------------
2228 procedure Walk_Withs (CU : Node_Id; Include_Limited : Boolean) is
2229 pragma Assert (Nkind (CU) = N_Compilation_Unit);
2230 pragma Assert (Nkind (Unit (CU)) /= N_Subunit);
2232 procedure Walk_Immediate is new Walk_Withs_Immediate (Action);
2234 begin
2235 -- First walk the withs immediately on the library item
2237 Walk_Immediate (CU, Include_Limited);
2239 -- For a body, we must also check for any subunits which belong to it
2240 -- and which have context clauses of their own, since these with'ed
2241 -- units are part of its own dependencies.
2243 if Nkind (Unit (CU)) in N_Unit_Body then
2244 for S in Main_Unit .. Last_Unit loop
2246 -- We are only interested in subunits. For preproc. data and def.
2247 -- files, Cunit is Empty, so we need to test that first.
2249 if Cunit (S) /= Empty
2250 and then Nkind (Unit (Cunit (S))) = N_Subunit
2251 then
2252 declare
2253 Pnode : Node_Id;
2255 begin
2256 Pnode := Library_Unit (Cunit (S));
2258 -- In -gnatc mode, the errors in the subunits will not have
2259 -- been recorded, but the analysis of the subunit may have
2260 -- failed, so just quit.
2262 if No (Pnode) then
2263 exit;
2264 end if;
2266 -- Find ultimate parent of the subunit
2268 while Nkind (Unit (Pnode)) = N_Subunit loop
2269 Pnode := Library_Unit (Pnode);
2270 end loop;
2272 -- See if it belongs to current unit, and if so, include its
2273 -- with_clauses. Do not process main unit prematurely.
2275 if Pnode = CU and then CU /= Cunit (Main_Unit) then
2276 Walk_Immediate (Cunit (S), Include_Limited);
2277 end if;
2278 end;
2279 end if;
2280 end loop;
2281 end if;
2282 end Walk_Withs;
2284 --------------------------
2285 -- Walk_Withs_Immediate --
2286 --------------------------
2288 procedure Walk_Withs_Immediate (CU : Node_Id; Include_Limited : Boolean) is
2289 pragma Assert (Nkind (CU) = N_Compilation_Unit);
2291 Context_Item : Node_Id;
2292 Lib_Unit : Node_Id;
2293 Body_CU : Node_Id;
2295 begin
2296 Context_Item := First (Context_Items (CU));
2297 while Present (Context_Item) loop
2298 if Nkind (Context_Item) = N_With_Clause
2299 and then (Include_Limited
2300 or else not Limited_Present (Context_Item))
2301 then
2302 Lib_Unit := Library_Unit (Context_Item);
2303 Action (Lib_Unit);
2305 -- If the context item indicates that a package body is needed
2306 -- because of an instantiation in CU, traverse the body now, even
2307 -- if CU is not related to the main unit. If the generic itself
2308 -- appears in a package body, the context item is this body, and
2309 -- it already appears in the traversal order, so we only need to
2310 -- examine the case of a context item being a package declaration.
2312 if Present (Withed_Body (Context_Item))
2313 and then Nkind (Unit (Lib_Unit)) = N_Package_Declaration
2314 and then Present (Corresponding_Body (Unit (Lib_Unit)))
2315 then
2316 Body_CU :=
2317 Parent
2318 (Unit_Declaration_Node
2319 (Corresponding_Body (Unit (Lib_Unit))));
2321 -- A body may have an implicit with on its own spec, in which
2322 -- case we must ignore this context item to prevent looping.
2324 if Unit (CU) /= Unit (Body_CU) then
2325 Action (Body_CU);
2326 end if;
2327 end if;
2328 end if;
2330 Context_Item := Next (Context_Item);
2331 end loop;
2332 end Walk_Withs_Immediate;
2334 end Sem;