Fix unused warnings.
[official-gcc/graphite-test-results.git] / gcc / ada / sem.adb
blob42447c2357f97febf2e89aa4a3f8b4b9966bc47a
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S E M --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2010, 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. --
17 -- --
18 -- You should have received a copy of the GNU General Public License along --
19 -- with this program; see file COPYING3. If not see --
20 -- <http://www.gnu.org/licenses/>. --
21 -- --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 -- --
25 ------------------------------------------------------------------------------
27 with Atree; use Atree;
28 with Debug; use Debug;
29 with Debug_A; use Debug_A;
30 with Elists; use Elists;
31 with Errout; use Errout;
32 with Expander; use Expander;
33 with Fname; use Fname;
34 with HLO; use HLO;
35 with Lib; use Lib;
36 with Lib.Load; use Lib.Load;
37 with Nlists; use Nlists;
38 with Output; use Output;
39 with Sem_Attr; use Sem_Attr;
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)
64 package body Sem is
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.
80 generic
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.
87 generic
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.
94 procedure Write_Unit_Info
95 (Unit_Num : Unit_Number_Type;
96 Item : Node_Id;
97 Prefix : String := "";
98 Withs : Boolean := False);
99 -- Print out debugging information about the unit. Prefix precedes the rest
100 -- of the printout. If Withs is True, we print out units with'ed by this
101 -- unit (not counting limited withs).
103 -------------
104 -- Analyze --
105 -------------
107 procedure Analyze (N : Node_Id) is
108 begin
109 Debug_A_Entry ("analyzing ", N);
111 -- Immediate return if already analyzed
113 if Analyzed (N) then
114 Debug_A_Exit ("analyzing ", N, " (done, analyzed already)");
115 return;
116 end if;
118 -- Otherwise processing depends on the node kind
120 case Nkind (N) is
122 when N_Abort_Statement =>
123 Analyze_Abort_Statement (N);
125 when N_Abstract_Subprogram_Declaration =>
126 Analyze_Abstract_Subprogram_Declaration (N);
128 when N_Accept_Alternative =>
129 Analyze_Accept_Alternative (N);
131 when N_Accept_Statement =>
132 Analyze_Accept_Statement (N);
134 when N_Aggregate =>
135 Analyze_Aggregate (N);
137 when N_Allocator =>
138 Analyze_Allocator (N);
140 when N_And_Then =>
141 Analyze_Short_Circuit (N);
143 when N_Assignment_Statement =>
144 Analyze_Assignment (N);
146 when N_Asynchronous_Select =>
147 Analyze_Asynchronous_Select (N);
149 when N_At_Clause =>
150 Analyze_At_Clause (N);
152 when N_Attribute_Reference =>
153 Analyze_Attribute (N);
155 when N_Attribute_Definition_Clause =>
156 Analyze_Attribute_Definition_Clause (N);
158 when N_Block_Statement =>
159 Analyze_Block_Statement (N);
161 when N_Case_Expression =>
162 Analyze_Case_Expression (N);
164 when N_Case_Statement =>
165 Analyze_Case_Statement (N);
167 when N_Character_Literal =>
168 Analyze_Character_Literal (N);
170 when N_Code_Statement =>
171 Analyze_Code_Statement (N);
173 when N_Compilation_Unit =>
174 Analyze_Compilation_Unit (N);
176 when N_Component_Declaration =>
177 Analyze_Component_Declaration (N);
179 when N_Conditional_Expression =>
180 Analyze_Conditional_Expression (N);
182 when N_Conditional_Entry_Call =>
183 Analyze_Conditional_Entry_Call (N);
185 when N_Delay_Alternative =>
186 Analyze_Delay_Alternative (N);
188 when N_Delay_Relative_Statement =>
189 Analyze_Delay_Relative (N);
191 when N_Delay_Until_Statement =>
192 Analyze_Delay_Until (N);
194 when N_Entry_Body =>
195 Analyze_Entry_Body (N);
197 when N_Entry_Body_Formal_Part =>
198 Analyze_Entry_Body_Formal_Part (N);
200 when N_Entry_Call_Alternative =>
201 Analyze_Entry_Call_Alternative (N);
203 when N_Entry_Declaration =>
204 Analyze_Entry_Declaration (N);
206 when N_Entry_Index_Specification =>
207 Analyze_Entry_Index_Specification (N);
209 when N_Enumeration_Representation_Clause =>
210 Analyze_Enumeration_Representation_Clause (N);
212 when N_Exception_Declaration =>
213 Analyze_Exception_Declaration (N);
215 when N_Exception_Renaming_Declaration =>
216 Analyze_Exception_Renaming (N);
218 when N_Exit_Statement =>
219 Analyze_Exit_Statement (N);
221 when N_Expanded_Name =>
222 Analyze_Expanded_Name (N);
224 when N_Explicit_Dereference =>
225 Analyze_Explicit_Dereference (N);
227 when N_Expression_With_Actions =>
228 Analyze_Expression_With_Actions (N);
230 when N_Extended_Return_Statement =>
231 Analyze_Extended_Return_Statement (N);
233 when N_Extension_Aggregate =>
234 Analyze_Aggregate (N);
236 when N_Formal_Object_Declaration =>
237 Analyze_Formal_Object_Declaration (N);
239 when N_Formal_Package_Declaration =>
240 Analyze_Formal_Package_Declaration (N);
242 when N_Formal_Subprogram_Declaration =>
243 Analyze_Formal_Subprogram_Declaration (N);
245 when N_Formal_Type_Declaration =>
246 Analyze_Formal_Type_Declaration (N);
248 when N_Free_Statement =>
249 Analyze_Free_Statement (N);
251 when N_Freeze_Entity =>
252 Analyze_Freeze_Entity (N);
254 when N_Full_Type_Declaration =>
255 Analyze_Full_Type_Declaration (N);
257 when N_Function_Call =>
258 Analyze_Function_Call (N);
260 when N_Function_Instantiation =>
261 Analyze_Function_Instantiation (N);
263 when N_Generic_Function_Renaming_Declaration =>
264 Analyze_Generic_Function_Renaming (N);
266 when N_Generic_Package_Declaration =>
267 Analyze_Generic_Package_Declaration (N);
269 when N_Generic_Package_Renaming_Declaration =>
270 Analyze_Generic_Package_Renaming (N);
272 when N_Generic_Procedure_Renaming_Declaration =>
273 Analyze_Generic_Procedure_Renaming (N);
275 when N_Generic_Subprogram_Declaration =>
276 Analyze_Generic_Subprogram_Declaration (N);
278 when N_Goto_Statement =>
279 Analyze_Goto_Statement (N);
281 when N_Handled_Sequence_Of_Statements =>
282 Analyze_Handled_Statements (N);
284 when N_Identifier =>
285 Analyze_Identifier (N);
287 when N_If_Statement =>
288 Analyze_If_Statement (N);
290 when N_Implicit_Label_Declaration =>
291 Analyze_Implicit_Label_Declaration (N);
293 when N_In =>
294 Analyze_Membership_Op (N);
296 when N_Incomplete_Type_Declaration =>
297 Analyze_Incomplete_Type_Decl (N);
299 when N_Indexed_Component =>
300 Analyze_Indexed_Component_Form (N);
302 when N_Integer_Literal =>
303 Analyze_Integer_Literal (N);
305 when N_Itype_Reference =>
306 Analyze_Itype_Reference (N);
308 when N_Label =>
309 Analyze_Label (N);
311 when N_Loop_Statement =>
312 Analyze_Loop_Statement (N);
314 when N_Not_In =>
315 Analyze_Membership_Op (N);
317 when N_Null =>
318 Analyze_Null (N);
320 when N_Null_Statement =>
321 Analyze_Null_Statement (N);
323 when N_Number_Declaration =>
324 Analyze_Number_Declaration (N);
326 when N_Object_Declaration =>
327 Analyze_Object_Declaration (N);
329 when N_Object_Renaming_Declaration =>
330 Analyze_Object_Renaming (N);
332 when N_Operator_Symbol =>
333 Analyze_Operator_Symbol (N);
335 when N_Op_Abs =>
336 Analyze_Unary_Op (N);
338 when N_Op_Add =>
339 Analyze_Arithmetic_Op (N);
341 when N_Op_And =>
342 Analyze_Logical_Op (N);
344 when N_Op_Concat =>
345 Analyze_Concatenation (N);
347 when N_Op_Divide =>
348 Analyze_Arithmetic_Op (N);
350 when N_Op_Eq =>
351 Analyze_Equality_Op (N);
353 when N_Op_Expon =>
354 Analyze_Arithmetic_Op (N);
356 when N_Op_Ge =>
357 Analyze_Comparison_Op (N);
359 when N_Op_Gt =>
360 Analyze_Comparison_Op (N);
362 when N_Op_Le =>
363 Analyze_Comparison_Op (N);
365 when N_Op_Lt =>
366 Analyze_Comparison_Op (N);
368 when N_Op_Minus =>
369 Analyze_Unary_Op (N);
371 when N_Op_Mod =>
372 Analyze_Arithmetic_Op (N);
374 when N_Op_Multiply =>
375 Analyze_Arithmetic_Op (N);
377 when N_Op_Ne =>
378 Analyze_Equality_Op (N);
380 when N_Op_Not =>
381 Analyze_Negation (N);
383 when N_Op_Or =>
384 Analyze_Logical_Op (N);
386 when N_Op_Plus =>
387 Analyze_Unary_Op (N);
389 when N_Op_Rem =>
390 Analyze_Arithmetic_Op (N);
392 when N_Op_Rotate_Left =>
393 Analyze_Arithmetic_Op (N);
395 when N_Op_Rotate_Right =>
396 Analyze_Arithmetic_Op (N);
398 when N_Op_Shift_Left =>
399 Analyze_Arithmetic_Op (N);
401 when N_Op_Shift_Right =>
402 Analyze_Arithmetic_Op (N);
404 when N_Op_Shift_Right_Arithmetic =>
405 Analyze_Arithmetic_Op (N);
407 when N_Op_Subtract =>
408 Analyze_Arithmetic_Op (N);
410 when N_Op_Xor =>
411 Analyze_Logical_Op (N);
413 when N_Or_Else =>
414 Analyze_Short_Circuit (N);
416 when N_Others_Choice =>
417 Analyze_Others_Choice (N);
419 when N_Package_Body =>
420 Analyze_Package_Body (N);
422 when N_Package_Body_Stub =>
423 Analyze_Package_Body_Stub (N);
425 when N_Package_Declaration =>
426 Analyze_Package_Declaration (N);
428 when N_Package_Instantiation =>
429 Analyze_Package_Instantiation (N);
431 when N_Package_Renaming_Declaration =>
432 Analyze_Package_Renaming (N);
434 when N_Package_Specification =>
435 Analyze_Package_Specification (N);
437 when N_Parameter_Association =>
438 Analyze_Parameter_Association (N);
440 when N_Parameterized_Expression =>
441 Analyze_Parameterized_Expression (N);
443 when N_Pragma =>
444 Analyze_Pragma (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_Statement =>
477 Analyze_Raise_Statement (N);
479 when N_Raise_xxx_Error =>
480 Analyze_Raise_xxx_Error (N);
482 when N_Range =>
483 Analyze_Range (N);
485 when N_Range_Constraint =>
486 Analyze_Range (Range_Expression (N));
488 when N_Real_Literal =>
489 Analyze_Real_Literal (N);
491 when N_Record_Representation_Clause =>
492 Analyze_Record_Representation_Clause (N);
494 when N_Reference =>
495 Analyze_Reference (N);
497 when N_Requeue_Statement =>
498 Analyze_Requeue (N);
500 when N_Simple_Return_Statement =>
501 Analyze_Simple_Return_Statement (N);
503 when N_Selected_Component =>
504 Find_Selected_Component (N);
505 -- ??? why not Analyze_Selected_Component, needs comments
507 when N_Selective_Accept =>
508 Analyze_Selective_Accept (N);
510 when N_Single_Protected_Declaration =>
511 Analyze_Single_Protected_Declaration (N);
513 when N_Single_Task_Declaration =>
514 Analyze_Single_Task_Declaration (N);
516 when N_Slice =>
517 Analyze_Slice (N);
519 when N_String_Literal =>
520 Analyze_String_Literal (N);
522 when N_Subprogram_Body =>
523 Analyze_Subprogram_Body (N);
525 when N_Subprogram_Body_Stub =>
526 Analyze_Subprogram_Body_Stub (N);
528 when N_Subprogram_Declaration =>
529 Analyze_Subprogram_Declaration (N);
531 when N_Subprogram_Info =>
532 Analyze_Subprogram_Info (N);
534 when N_Subprogram_Renaming_Declaration =>
535 Analyze_Subprogram_Renaming (N);
537 when N_Subtype_Declaration =>
538 Analyze_Subtype_Declaration (N);
540 when N_Subtype_Indication =>
541 Analyze_Subtype_Indication (N);
543 when N_Subunit =>
544 Analyze_Subunit (N);
546 when N_Task_Body =>
547 Analyze_Task_Body (N);
549 when N_Task_Body_Stub =>
550 Analyze_Task_Body_Stub (N);
552 when N_Task_Definition =>
553 Analyze_Task_Definition (N);
555 when N_Task_Type_Declaration =>
556 Analyze_Task_Type_Declaration (N);
558 when N_Terminate_Alternative =>
559 Analyze_Terminate_Alternative (N);
561 when N_Timed_Entry_Call =>
562 Analyze_Timed_Entry_Call (N);
564 when N_Triggering_Alternative =>
565 Analyze_Triggering_Alternative (N);
567 when N_Type_Conversion =>
568 Analyze_Type_Conversion (N);
570 when N_Unchecked_Expression =>
571 Analyze_Unchecked_Expression (N);
573 when N_Unchecked_Type_Conversion =>
574 Analyze_Unchecked_Type_Conversion (N);
576 when N_Use_Package_Clause =>
577 Analyze_Use_Package (N);
579 when N_Use_Type_Clause =>
580 Analyze_Use_Type (N);
582 when N_Validate_Unchecked_Conversion =>
583 null;
585 when N_Variant_Part =>
586 Analyze_Variant_Part (N);
588 when N_With_Clause =>
589 Analyze_With_Clause (N);
591 -- A call to analyze the Empty node is an error, but most likely it
592 -- is an error caused by an attempt to analyze a malformed piece of
593 -- tree caused by some other error, so if there have been any other
594 -- errors, we just ignore it, otherwise it is a real internal error
595 -- which we complain about.
597 -- We must also consider the case of call to a runtime function that
598 -- is not available in the configurable runtime.
600 when N_Empty =>
601 pragma Assert (Serious_Errors_Detected /= 0
602 or else Configurable_Run_Time_Violations /= 0);
603 null;
605 -- A call to analyze the error node is simply ignored, to avoid
606 -- causing cascaded errors (happens of course only in error cases)
608 when N_Error =>
609 null;
611 -- Push/Pop nodes normally don't come through an analyze call. An
612 -- exception is the dummy ones bracketing a subprogram body. In any
613 -- case there is nothing to be done to analyze such nodes.
615 when N_Push_Pop_xxx_Label =>
616 null;
618 -- SCIL nodes don't need analysis because they are decorated when
619 -- they are built. They are added to the tree by Insert_Actions and
620 -- the call to analyze them is generated when the full list is
621 -- analyzed.
623 when
624 N_SCIL_Dispatch_Table_Tag_Init |
625 N_SCIL_Dispatching_Call |
626 N_SCIL_Membership_Test =>
627 null;
629 -- For the remaining node types, we generate compiler abort, because
630 -- these nodes are always analyzed within the Sem_Chn routines and
631 -- there should never be a case of making a call to the main Analyze
632 -- routine for these node kinds. For example, an N_Access_Definition
633 -- node appears only in the context of a type declaration, and is
634 -- processed by the analyze routine for type declarations.
636 when
637 N_Abortable_Part |
638 N_Access_Definition |
639 N_Access_Function_Definition |
640 N_Access_Procedure_Definition |
641 N_Access_To_Object_Definition |
642 N_Aspect_Specification |
643 N_Case_Expression_Alternative |
644 N_Case_Statement_Alternative |
645 N_Compilation_Unit_Aux |
646 N_Component_Association |
647 N_Component_Clause |
648 N_Component_Definition |
649 N_Component_List |
650 N_Constrained_Array_Definition |
651 N_Decimal_Fixed_Point_Definition |
652 N_Defining_Character_Literal |
653 N_Defining_Identifier |
654 N_Defining_Operator_Symbol |
655 N_Defining_Program_Unit_Name |
656 N_Delta_Constraint |
657 N_Derived_Type_Definition |
658 N_Designator |
659 N_Digits_Constraint |
660 N_Discriminant_Association |
661 N_Discriminant_Specification |
662 N_Elsif_Part |
663 N_Entry_Call_Statement |
664 N_Enumeration_Type_Definition |
665 N_Exception_Handler |
666 N_Floating_Point_Definition |
667 N_Formal_Decimal_Fixed_Point_Definition |
668 N_Formal_Derived_Type_Definition |
669 N_Formal_Discrete_Type_Definition |
670 N_Formal_Floating_Point_Definition |
671 N_Formal_Modular_Type_Definition |
672 N_Formal_Ordinary_Fixed_Point_Definition |
673 N_Formal_Private_Type_Definition |
674 N_Formal_Signed_Integer_Type_Definition |
675 N_Function_Specification |
676 N_Generic_Association |
677 N_Index_Or_Discriminant_Constraint |
678 N_Iteration_Scheme |
679 N_Loop_Parameter_Specification |
680 N_Mod_Clause |
681 N_Modular_Type_Definition |
682 N_Ordinary_Fixed_Point_Definition |
683 N_Parameter_Specification |
684 N_Pragma_Argument_Association |
685 N_Procedure_Specification |
686 N_Real_Range_Specification |
687 N_Record_Definition |
688 N_Signed_Integer_Type_Definition |
689 N_Unconstrained_Array_Definition |
690 N_Unused_At_Start |
691 N_Unused_At_End |
692 N_Variant =>
694 raise Program_Error;
695 end case;
697 Debug_A_Exit ("analyzing ", N, " (done)");
699 -- Now that we have analyzed the node, we call the expander to perform
700 -- possible expansion. We skip this for subexpressions, because we don't
701 -- have the type yet, and the expander will need to know the type before
702 -- it can do its job. For subexpression nodes, the call to the expander
703 -- happens in Sem_Res.Resolve. A special exception is Raise_xxx_Error,
704 -- which can appear in a statement context, and needs expanding now in
705 -- the case (distinguished by Etype, as documented in Sinfo).
707 -- The Analyzed flag is also set at this point for non-subexpression
708 -- nodes (in the case of subexpression nodes, we can't set the flag yet,
709 -- since resolution and expansion have not yet been completed). Note
710 -- that for N_Raise_xxx_Error we have to distinguish the expression
711 -- case from the statement case.
713 if Nkind (N) not in N_Subexpr
714 or else (Nkind (N) in N_Raise_xxx_Error
715 and then Etype (N) = Standard_Void_Type)
716 then
717 Expand (N);
718 end if;
719 end Analyze;
721 -- Version with check(s) suppressed
723 procedure Analyze (N : Node_Id; Suppress : Check_Id) is
724 begin
725 if Suppress = All_Checks then
726 declare
727 Svg : constant Suppress_Array := Scope_Suppress;
728 begin
729 Scope_Suppress := (others => True);
730 Analyze (N);
731 Scope_Suppress := Svg;
732 end;
734 else
735 declare
736 Svg : constant Boolean := Scope_Suppress (Suppress);
737 begin
738 Scope_Suppress (Suppress) := True;
739 Analyze (N);
740 Scope_Suppress (Suppress) := Svg;
741 end;
742 end if;
743 end Analyze;
745 ------------------
746 -- Analyze_List --
747 ------------------
749 procedure Analyze_List (L : List_Id) is
750 Node : Node_Id;
752 begin
753 Node := First (L);
754 while Present (Node) loop
755 Analyze (Node);
756 Next (Node);
757 end loop;
758 end Analyze_List;
760 -- Version with check(s) suppressed
762 procedure Analyze_List (L : List_Id; Suppress : Check_Id) is
763 begin
764 if Suppress = All_Checks then
765 declare
766 Svg : constant Suppress_Array := Scope_Suppress;
767 begin
768 Scope_Suppress := (others => True);
769 Analyze_List (L);
770 Scope_Suppress := Svg;
771 end;
773 else
774 declare
775 Svg : constant Boolean := Scope_Suppress (Suppress);
776 begin
777 Scope_Suppress (Suppress) := True;
778 Analyze_List (L);
779 Scope_Suppress (Suppress) := Svg;
780 end;
781 end if;
782 end Analyze_List;
784 --------------------------
785 -- Copy_Suppress_Status --
786 --------------------------
788 procedure Copy_Suppress_Status
789 (C : Check_Id;
790 From : Entity_Id;
791 To : Entity_Id)
793 Found : Boolean;
794 pragma Warnings (Off, Found);
796 procedure Search_Stack
797 (Top : Suppress_Stack_Entry_Ptr;
798 Found : out Boolean);
799 -- Search given suppress stack for matching entry for entity. If found
800 -- then set Checks_May_Be_Suppressed on To, and push an appropriate
801 -- entry for To onto the local suppress stack.
803 ------------------
804 -- Search_Stack --
805 ------------------
807 procedure Search_Stack
808 (Top : Suppress_Stack_Entry_Ptr;
809 Found : out Boolean)
811 Ptr : Suppress_Stack_Entry_Ptr;
813 begin
814 Ptr := Top;
815 while Ptr /= null loop
816 if Ptr.Entity = From
817 and then (Ptr.Check = All_Checks or else Ptr.Check = C)
818 then
819 if Ptr.Suppress then
820 Set_Checks_May_Be_Suppressed (To, True);
821 Push_Local_Suppress_Stack_Entry
822 (Entity => To,
823 Check => C,
824 Suppress => True);
825 Found := True;
826 return;
827 end if;
828 end if;
830 Ptr := Ptr.Prev;
831 end loop;
833 Found := False;
834 return;
835 end Search_Stack;
837 -- Start of processing for Copy_Suppress_Status
839 begin
840 if not Checks_May_Be_Suppressed (From) then
841 return;
842 end if;
844 -- First search the local entity suppress stack, we search this in
845 -- reverse order so that we get the innermost entry that applies to
846 -- this case if there are nested entries. Note that for the purpose
847 -- of this procedure we are ONLY looking for entries corresponding
848 -- to a two-argument Suppress, where the second argument matches From.
850 Search_Stack (Global_Suppress_Stack_Top, Found);
852 if Found then
853 return;
854 end if;
856 -- Now search the global entity suppress table for a matching entry.
857 -- We also search this in reverse order so that if there are multiple
858 -- pragmas for the same entity, the last one applies.
860 Search_Stack (Local_Suppress_Stack_Top, Found);
861 end Copy_Suppress_Status;
863 -------------------------
864 -- Enter_Generic_Scope --
865 -------------------------
867 procedure Enter_Generic_Scope (S : Entity_Id) is
868 begin
869 if No (Outer_Generic_Scope) then
870 Outer_Generic_Scope := S;
871 end if;
872 end Enter_Generic_Scope;
874 ------------------------
875 -- Exit_Generic_Scope --
876 ------------------------
878 procedure Exit_Generic_Scope (S : Entity_Id) is
879 begin
880 if S = Outer_Generic_Scope then
881 Outer_Generic_Scope := Empty;
882 end if;
883 end Exit_Generic_Scope;
885 -----------------------
886 -- Explicit_Suppress --
887 -----------------------
889 function Explicit_Suppress (E : Entity_Id; C : Check_Id) return Boolean is
890 Ptr : Suppress_Stack_Entry_Ptr;
892 begin
893 if not Checks_May_Be_Suppressed (E) then
894 return False;
896 else
897 Ptr := Global_Suppress_Stack_Top;
898 while Ptr /= null loop
899 if Ptr.Entity = E
900 and then (Ptr.Check = All_Checks or else Ptr.Check = C)
901 then
902 return Ptr.Suppress;
903 end if;
905 Ptr := Ptr.Prev;
906 end loop;
907 end if;
909 return False;
910 end Explicit_Suppress;
912 -----------------------------
913 -- External_Ref_In_Generic --
914 -----------------------------
916 function External_Ref_In_Generic (E : Entity_Id) return Boolean is
917 Scop : Entity_Id;
919 begin
920 -- Entity is global if defined outside of current outer_generic_scope:
921 -- Either the entity has a smaller depth that the outer generic, or it
922 -- is in a different compilation unit, or it is defined within a unit
923 -- in the same compilation, that is not within the outer_generic.
925 if No (Outer_Generic_Scope) then
926 return False;
928 elsif Scope_Depth (Scope (E)) < Scope_Depth (Outer_Generic_Scope)
929 or else not In_Same_Source_Unit (E, Outer_Generic_Scope)
930 then
931 return True;
933 else
934 Scop := Scope (E);
936 while Present (Scop) loop
937 if Scop = Outer_Generic_Scope then
938 return False;
939 elsif Scope_Depth (Scop) < Scope_Depth (Outer_Generic_Scope) then
940 return True;
941 else
942 Scop := Scope (Scop);
943 end if;
944 end loop;
946 return True;
947 end if;
948 end External_Ref_In_Generic;
950 ----------------
951 -- Initialize --
952 ----------------
954 procedure Initialize is
955 Next : Suppress_Stack_Entry_Ptr;
957 procedure Free is new Unchecked_Deallocation
958 (Suppress_Stack_Entry, Suppress_Stack_Entry_Ptr);
960 begin
961 -- Free any global suppress stack entries from a previous invocation
962 -- of the compiler (in the normal case this loop does nothing).
964 while Suppress_Stack_Entries /= null loop
965 Next := Global_Suppress_Stack_Top.Next;
966 Free (Suppress_Stack_Entries);
967 Suppress_Stack_Entries := Next;
968 end loop;
970 Local_Suppress_Stack_Top := null;
971 Global_Suppress_Stack_Top := null;
973 -- Clear scope stack, and reset global variables
975 Scope_Stack.Init;
976 Unloaded_Subunits := False;
977 end Initialize;
979 ------------------------------
980 -- Insert_After_And_Analyze --
981 ------------------------------
983 procedure Insert_After_And_Analyze (N : Node_Id; M : Node_Id) is
984 Node : Node_Id;
986 begin
987 if Present (M) then
989 -- If we are not at the end of the list, then the easiest
990 -- coding is simply to insert before our successor
992 if Present (Next (N)) then
993 Insert_Before_And_Analyze (Next (N), M);
995 -- Case of inserting at the end of the list
997 else
998 -- Capture the Node_Id of the node to be inserted. This Node_Id
999 -- will still be the same after the insert operation.
1001 Node := M;
1002 Insert_After (N, M);
1004 -- Now just analyze from the inserted node to the end of
1005 -- the new list (note that this properly handles the case
1006 -- where any of the analyze calls result in the insertion of
1007 -- nodes after the analyzed node, expecting analysis).
1009 while Present (Node) loop
1010 Analyze (Node);
1011 Mark_Rewrite_Insertion (Node);
1012 Next (Node);
1013 end loop;
1014 end if;
1015 end if;
1016 end Insert_After_And_Analyze;
1018 -- Version with check(s) suppressed
1020 procedure Insert_After_And_Analyze
1021 (N : Node_Id;
1022 M : Node_Id;
1023 Suppress : Check_Id)
1025 begin
1026 if Suppress = All_Checks then
1027 declare
1028 Svg : constant Suppress_Array := Scope_Suppress;
1029 begin
1030 Scope_Suppress := (others => True);
1031 Insert_After_And_Analyze (N, M);
1032 Scope_Suppress := Svg;
1033 end;
1035 else
1036 declare
1037 Svg : constant Boolean := Scope_Suppress (Suppress);
1038 begin
1039 Scope_Suppress (Suppress) := True;
1040 Insert_After_And_Analyze (N, M);
1041 Scope_Suppress (Suppress) := Svg;
1042 end;
1043 end if;
1044 end Insert_After_And_Analyze;
1046 -------------------------------
1047 -- Insert_Before_And_Analyze --
1048 -------------------------------
1050 procedure Insert_Before_And_Analyze (N : Node_Id; M : Node_Id) is
1051 Node : Node_Id;
1053 begin
1054 if Present (M) then
1056 -- Capture the Node_Id of the first list node to be inserted.
1057 -- This will still be the first node after the insert operation,
1058 -- since Insert_List_After does not modify the Node_Id values.
1060 Node := M;
1061 Insert_Before (N, M);
1063 -- The insertion does not change the Id's of any of the nodes in
1064 -- the list, and they are still linked, so we can simply loop from
1065 -- the original first node until we meet the node before which the
1066 -- insertion is occurring. Note that this properly handles the case
1067 -- where any of the analyzed nodes insert nodes after themselves,
1068 -- expecting them to get analyzed.
1070 while Node /= N loop
1071 Analyze (Node);
1072 Mark_Rewrite_Insertion (Node);
1073 Next (Node);
1074 end loop;
1075 end if;
1076 end Insert_Before_And_Analyze;
1078 -- Version with check(s) suppressed
1080 procedure Insert_Before_And_Analyze
1081 (N : Node_Id;
1082 M : Node_Id;
1083 Suppress : Check_Id)
1085 begin
1086 if Suppress = All_Checks then
1087 declare
1088 Svg : constant Suppress_Array := Scope_Suppress;
1089 begin
1090 Scope_Suppress := (others => True);
1091 Insert_Before_And_Analyze (N, M);
1092 Scope_Suppress := Svg;
1093 end;
1095 else
1096 declare
1097 Svg : constant Boolean := Scope_Suppress (Suppress);
1098 begin
1099 Scope_Suppress (Suppress) := True;
1100 Insert_Before_And_Analyze (N, M);
1101 Scope_Suppress (Suppress) := Svg;
1102 end;
1103 end if;
1104 end Insert_Before_And_Analyze;
1106 -----------------------------------
1107 -- Insert_List_After_And_Analyze --
1108 -----------------------------------
1110 procedure Insert_List_After_And_Analyze (N : Node_Id; L : List_Id) is
1111 After : constant Node_Id := Next (N);
1112 Node : Node_Id;
1114 begin
1115 if Is_Non_Empty_List (L) then
1117 -- Capture the Node_Id of the first list node to be inserted.
1118 -- This will still be the first node after the insert operation,
1119 -- since Insert_List_After does not modify the Node_Id values.
1121 Node := First (L);
1122 Insert_List_After (N, L);
1124 -- Now just analyze from the original first node until we get to the
1125 -- successor of the original insertion point (which may be Empty if
1126 -- the insertion point was at the end of the list). Note that this
1127 -- properly handles the case where any of the analyze calls result in
1128 -- the insertion of nodes after the analyzed node (possibly calling
1129 -- this routine recursively).
1131 while Node /= After loop
1132 Analyze (Node);
1133 Mark_Rewrite_Insertion (Node);
1134 Next (Node);
1135 end loop;
1136 end if;
1137 end Insert_List_After_And_Analyze;
1139 -- Version with check(s) suppressed
1141 procedure Insert_List_After_And_Analyze
1142 (N : Node_Id; L : List_Id; Suppress : Check_Id)
1144 begin
1145 if Suppress = All_Checks then
1146 declare
1147 Svg : constant Suppress_Array := Scope_Suppress;
1148 begin
1149 Scope_Suppress := (others => True);
1150 Insert_List_After_And_Analyze (N, L);
1151 Scope_Suppress := Svg;
1152 end;
1154 else
1155 declare
1156 Svg : constant Boolean := Scope_Suppress (Suppress);
1157 begin
1158 Scope_Suppress (Suppress) := True;
1159 Insert_List_After_And_Analyze (N, L);
1160 Scope_Suppress (Suppress) := Svg;
1161 end;
1162 end if;
1163 end Insert_List_After_And_Analyze;
1165 ------------------------------------
1166 -- Insert_List_Before_And_Analyze --
1167 ------------------------------------
1169 procedure Insert_List_Before_And_Analyze (N : Node_Id; L : List_Id) is
1170 Node : Node_Id;
1172 begin
1173 if Is_Non_Empty_List (L) then
1175 -- Capture the Node_Id of the first list node to be inserted. This
1176 -- will still be the first node after the insert operation, since
1177 -- Insert_List_After does not modify the Node_Id values.
1179 Node := First (L);
1180 Insert_List_Before (N, L);
1182 -- The insertion does not change the Id's of any of the nodes in
1183 -- the list, and they are still linked, so we can simply loop from
1184 -- the original first node until we meet the node before which the
1185 -- insertion is occurring. Note that this properly handles the case
1186 -- where any of the analyzed nodes insert nodes after themselves,
1187 -- expecting them to get analyzed.
1189 while Node /= N loop
1190 Analyze (Node);
1191 Mark_Rewrite_Insertion (Node);
1192 Next (Node);
1193 end loop;
1194 end if;
1195 end Insert_List_Before_And_Analyze;
1197 -- Version with check(s) suppressed
1199 procedure Insert_List_Before_And_Analyze
1200 (N : Node_Id; L : List_Id; Suppress : Check_Id)
1202 begin
1203 if Suppress = All_Checks then
1204 declare
1205 Svg : constant Suppress_Array := Scope_Suppress;
1206 begin
1207 Scope_Suppress := (others => True);
1208 Insert_List_Before_And_Analyze (N, L);
1209 Scope_Suppress := Svg;
1210 end;
1212 else
1213 declare
1214 Svg : constant Boolean := Scope_Suppress (Suppress);
1215 begin
1216 Scope_Suppress (Suppress) := True;
1217 Insert_List_Before_And_Analyze (N, L);
1218 Scope_Suppress (Suppress) := Svg;
1219 end;
1220 end if;
1221 end Insert_List_Before_And_Analyze;
1223 -------------------------
1224 -- Is_Check_Suppressed --
1225 -------------------------
1227 function Is_Check_Suppressed (E : Entity_Id; C : Check_Id) return Boolean is
1229 Ptr : Suppress_Stack_Entry_Ptr;
1231 begin
1232 -- First search the local entity suppress stack. We search this from the
1233 -- top of the stack down so that we get the innermost entry that applies
1234 -- to this case if there are nested entries.
1236 Ptr := Local_Suppress_Stack_Top;
1237 while Ptr /= null loop
1238 if (Ptr.Entity = Empty or else Ptr.Entity = E)
1239 and then (Ptr.Check = All_Checks or else Ptr.Check = C)
1240 then
1241 return Ptr.Suppress;
1242 end if;
1244 Ptr := Ptr.Prev;
1245 end loop;
1247 -- Now search the global entity suppress table for a matching entry.
1248 -- We also search this from the top down so that if there are multiple
1249 -- pragmas for the same entity, the last one applies (not clear what
1250 -- or whether the RM specifies this handling, but it seems reasonable).
1252 Ptr := Global_Suppress_Stack_Top;
1253 while Ptr /= null loop
1254 if (Ptr.Entity = Empty or else Ptr.Entity = E)
1255 and then (Ptr.Check = All_Checks or else Ptr.Check = C)
1256 then
1257 return Ptr.Suppress;
1258 end if;
1260 Ptr := Ptr.Prev;
1261 end loop;
1263 -- If we did not find a matching entry, then use the normal scope
1264 -- suppress value after all (actually this will be the global setting
1265 -- since it clearly was not overridden at any point). For a predefined
1266 -- check, we test the specific flag. For a user defined check, we check
1267 -- the All_Checks flag.
1269 if C in Predefined_Check_Id then
1270 return Scope_Suppress (C);
1271 else
1272 return Scope_Suppress (All_Checks);
1273 end if;
1274 end Is_Check_Suppressed;
1276 ----------
1277 -- Lock --
1278 ----------
1280 procedure Lock is
1281 begin
1282 Scope_Stack.Locked := True;
1283 Scope_Stack.Release;
1284 end Lock;
1286 --------------------------------------
1287 -- Push_Global_Suppress_Stack_Entry --
1288 --------------------------------------
1290 procedure Push_Global_Suppress_Stack_Entry
1291 (Entity : Entity_Id;
1292 Check : Check_Id;
1293 Suppress : Boolean)
1295 begin
1296 Global_Suppress_Stack_Top :=
1297 new Suppress_Stack_Entry'
1298 (Entity => Entity,
1299 Check => Check,
1300 Suppress => Suppress,
1301 Prev => Global_Suppress_Stack_Top,
1302 Next => Suppress_Stack_Entries);
1303 Suppress_Stack_Entries := Global_Suppress_Stack_Top;
1304 return;
1306 end Push_Global_Suppress_Stack_Entry;
1308 -------------------------------------
1309 -- Push_Local_Suppress_Stack_Entry --
1310 -------------------------------------
1312 procedure Push_Local_Suppress_Stack_Entry
1313 (Entity : Entity_Id;
1314 Check : Check_Id;
1315 Suppress : Boolean)
1317 begin
1318 Local_Suppress_Stack_Top :=
1319 new Suppress_Stack_Entry'
1320 (Entity => Entity,
1321 Check => Check,
1322 Suppress => Suppress,
1323 Prev => Local_Suppress_Stack_Top,
1324 Next => Suppress_Stack_Entries);
1325 Suppress_Stack_Entries := Local_Suppress_Stack_Top;
1327 return;
1328 end Push_Local_Suppress_Stack_Entry;
1330 ---------------
1331 -- Semantics --
1332 ---------------
1334 procedure Semantics (Comp_Unit : Node_Id) is
1336 -- The following locations save the corresponding global flags and
1337 -- variables so that they can be restored on completion. This is needed
1338 -- so that calls to Rtsfind start with the proper default values for
1339 -- these variables, and also that such calls do not disturb the settings
1340 -- for units being analyzed at a higher level.
1342 S_Current_Sem_Unit : constant Unit_Number_Type := Current_Sem_Unit;
1343 S_Full_Analysis : constant Boolean := Full_Analysis;
1344 S_GNAT_Mode : constant Boolean := GNAT_Mode;
1345 S_Global_Dis_Names : constant Boolean := Global_Discard_Names;
1346 S_In_Spec_Expr : constant Boolean := In_Spec_Expression;
1347 S_Inside_A_Generic : constant Boolean := Inside_A_Generic;
1348 S_New_Nodes_OK : constant Int := New_Nodes_OK;
1349 S_Outer_Gen_Scope : constant Entity_Id := Outer_Generic_Scope;
1351 Generic_Main : constant Boolean :=
1352 Nkind (Unit (Cunit (Main_Unit)))
1353 in N_Generic_Declaration;
1354 -- If the main unit is generic, every compiled unit, including its
1355 -- context, is compiled with expansion disabled.
1357 Save_Config_Switches : Config_Switches_Type;
1358 -- Variable used to save values of config switches while we analyze the
1359 -- new unit, to be restored on exit for proper recursive behavior.
1361 procedure Do_Analyze;
1362 -- Procedure to analyze the compilation unit. This is called more than
1363 -- once when the high level optimizer is activated.
1365 ----------------
1366 -- Do_Analyze --
1367 ----------------
1369 procedure Do_Analyze is
1370 begin
1371 Save_Scope_Stack;
1372 Push_Scope (Standard_Standard);
1373 Scope_Suppress := Suppress_Options;
1374 Scope_Stack.Table
1375 (Scope_Stack.Last).Component_Alignment_Default := Calign_Default;
1376 Scope_Stack.Table
1377 (Scope_Stack.Last).Is_Active_Stack_Base := True;
1378 Outer_Generic_Scope := Empty;
1380 -- Now analyze the top level compilation unit node
1382 Analyze (Comp_Unit);
1384 -- Check for scope mismatch on exit from compilation
1386 pragma Assert (Current_Scope = Standard_Standard
1387 or else Comp_Unit = Cunit (Main_Unit));
1389 -- Then pop entry for Standard, and pop implicit types
1391 Pop_Scope;
1392 Restore_Scope_Stack;
1393 end Do_Analyze;
1395 Already_Analyzed : constant Boolean := Analyzed (Comp_Unit);
1397 -- Start of processing for Semantics
1399 begin
1400 if Debug_Unit_Walk then
1401 if Already_Analyzed then
1402 Write_Str ("(done)");
1403 end if;
1405 Write_Unit_Info
1406 (Get_Cunit_Unit_Number (Comp_Unit),
1407 Unit (Comp_Unit),
1408 Prefix => "--> ");
1409 Indent;
1410 end if;
1412 Compiler_State := Analyzing;
1413 Current_Sem_Unit := Get_Cunit_Unit_Number (Comp_Unit);
1415 -- Compile predefined units with GNAT_Mode set to True, to properly
1416 -- process the categorization stuff. However, do not set GNAT_Mode
1417 -- to True for the renamings units (Text_IO, IO_Exceptions, Direct_IO,
1418 -- Sequential_IO) as this would prevent pragma Extend_System from being
1419 -- taken into account, for example when Text_IO is renaming DEC.Text_IO.
1421 -- Cleaner might be to do the kludge at the point of excluding the
1422 -- pragma (do not exclude for renamings ???)
1424 if Is_Predefined_File_Name
1425 (Unit_File_Name (Current_Sem_Unit), Renamings_Included => False)
1426 then
1427 GNAT_Mode := True;
1428 end if;
1430 if Generic_Main then
1431 Expander_Mode_Save_And_Set (False);
1432 else
1433 Expander_Mode_Save_And_Set
1434 (Operating_Mode = Generate_Code or Debug_Flag_X);
1435 end if;
1437 Full_Analysis := True;
1438 Inside_A_Generic := False;
1439 In_Spec_Expression := False;
1441 Set_Comes_From_Source_Default (False);
1442 Save_Opt_Config_Switches (Save_Config_Switches);
1443 Set_Opt_Config_Switches
1444 (Is_Internal_File_Name (Unit_File_Name (Current_Sem_Unit)),
1445 Current_Sem_Unit = Main_Unit);
1447 -- Only do analysis of unit that has not already been analyzed
1449 if not Analyzed (Comp_Unit) then
1450 Initialize_Version (Current_Sem_Unit);
1451 if HLO_Active then
1452 Expander_Mode_Save_And_Set (False);
1453 New_Nodes_OK := 1;
1454 Do_Analyze;
1455 Reset_Analyzed_Flags (Comp_Unit);
1456 Expander_Mode_Restore;
1457 High_Level_Optimize (Comp_Unit);
1458 New_Nodes_OK := 0;
1459 end if;
1461 -- Do analysis, and then append the compilation unit onto the
1462 -- Comp_Unit_List, if appropriate. This is done after analysis,
1463 -- so if this unit depends on some others, they have already been
1464 -- appended. We ignore bodies, except for the main unit itself, and
1465 -- for subprogram bodies that act as specs. We have also to guard
1466 -- against ill-formed subunits that have an improper context.
1468 Do_Analyze;
1470 if Present (Comp_Unit)
1471 and then Nkind (Unit (Comp_Unit)) in N_Proper_Body
1472 and then (Nkind (Unit (Comp_Unit)) /= N_Subprogram_Body
1473 or else not Acts_As_Spec (Comp_Unit))
1474 and then not In_Extended_Main_Source_Unit (Comp_Unit)
1475 then
1476 null;
1478 else
1479 -- Initialize if first time
1481 if No (Comp_Unit_List) then
1482 Comp_Unit_List := New_Elmt_List;
1483 end if;
1485 Append_Elmt (Comp_Unit, Comp_Unit_List);
1487 if Debug_Unit_Walk then
1488 Write_Str ("Appending ");
1489 Write_Unit_Info
1490 (Get_Cunit_Unit_Number (Comp_Unit), Unit (Comp_Unit));
1491 end if;
1492 end if;
1493 end if;
1495 -- Save indication of dynamic elaboration checks for ALI file
1497 Set_Dynamic_Elab (Current_Sem_Unit, Dynamic_Elaboration_Checks);
1499 -- Restore settings of saved switches to entry values
1501 Current_Sem_Unit := S_Current_Sem_Unit;
1502 Full_Analysis := S_Full_Analysis;
1503 Global_Discard_Names := S_Global_Dis_Names;
1504 GNAT_Mode := S_GNAT_Mode;
1505 In_Spec_Expression := S_In_Spec_Expr;
1506 Inside_A_Generic := S_Inside_A_Generic;
1507 New_Nodes_OK := S_New_Nodes_OK;
1508 Outer_Generic_Scope := S_Outer_Gen_Scope;
1510 Restore_Opt_Config_Switches (Save_Config_Switches);
1511 Expander_Mode_Restore;
1513 if Debug_Unit_Walk then
1514 Outdent;
1516 if Already_Analyzed then
1517 Write_Str ("(done)");
1518 end if;
1520 Write_Unit_Info
1521 (Get_Cunit_Unit_Number (Comp_Unit),
1522 Unit (Comp_Unit),
1523 Prefix => "<-- ");
1524 end if;
1525 end Semantics;
1527 ------------------------
1528 -- Walk_Library_Items --
1529 ------------------------
1531 procedure Walk_Library_Items is
1532 type Unit_Number_Set is array (Main_Unit .. Last_Unit) of Boolean;
1533 pragma Pack (Unit_Number_Set);
1535 Main_CU : constant Node_Id := Cunit (Main_Unit);
1537 Seen, Done : Unit_Number_Set := (others => False);
1538 -- Seen (X) is True after we have seen unit X in the walk. This is used
1539 -- to prevent processing the same unit more than once. Done (X) is True
1540 -- after we have fully processed X, and is used only for debugging
1541 -- printouts and assertions.
1543 Do_Main : Boolean := False;
1544 -- Flag to delay processing the main body until after all other units.
1545 -- This is needed because the spec of the main unit may appear in the
1546 -- context of some other unit. We do not want this to force processing
1547 -- of the main body before all other units have been processed.
1549 -- Another circularity pattern occurs when the main unit is a child unit
1550 -- and the body of an ancestor has a with-clause of the main unit or on
1551 -- one of its children. In both cases the body in question has a with-
1552 -- clause on the main unit, and must be excluded from the traversal. In
1553 -- some convoluted cases this may lead to a CodePeer error because the
1554 -- spec of a subprogram declared in an instance within the parent will
1555 -- not be seen in the main unit.
1557 function Depends_On_Main (CU : Node_Id) return Boolean;
1558 -- The body of a unit that is withed by the spec of the main unit may in
1559 -- turn have a with_clause on that spec. In that case do not traverse
1560 -- the body, to prevent loops. It can also happen that the main body has
1561 -- a with_clause on a child, which of course has an implicit with on its
1562 -- parent. It's OK to traverse the child body if the main spec has been
1563 -- processed, otherwise we also have a circularity to avoid.
1565 procedure Do_Action (CU : Node_Id; Item : Node_Id);
1566 -- Calls Action, with some validity checks
1568 procedure Do_Unit_And_Dependents (CU : Node_Id; Item : Node_Id);
1569 -- Calls Do_Action, first on the units with'ed by this one, then on
1570 -- this unit. If it's an instance body, do the spec first. If it is
1571 -- an instance spec, do the body last.
1573 procedure Do_Withed_Unit (Withed_Unit : Node_Id);
1574 -- Apply Do_Unit_And_Dependents to a unit in a context clause.
1576 procedure Process_Bodies_In_Context (Comp : Node_Id);
1577 -- The main unit and its spec may depend on bodies that contain generics
1578 -- that are instantiated in them. Iterate through the corresponding
1579 -- contexts before processing main (spec/body) itself, to process bodies
1580 -- that may be present, together with their context. The spec of main
1581 -- is processed wherever it appears in the list of units, while the body
1582 -- is processed as the last unit in the list.
1584 ---------------------
1585 -- Depends_On_Main --
1586 ---------------------
1588 function Depends_On_Main (CU : Node_Id) return Boolean is
1589 CL : Node_Id;
1590 MCU : constant Node_Id := Unit (Main_CU);
1592 begin
1593 CL := First (Context_Items (CU));
1595 -- Problem does not arise with main subprograms
1598 not Nkind_In (MCU, N_Package_Body, N_Package_Declaration)
1599 then
1600 return False;
1601 end if;
1603 while Present (CL) loop
1604 if Nkind (CL) = N_With_Clause
1605 and then Library_Unit (CL) = Main_CU
1606 and then not Done (Get_Cunit_Unit_Number (Library_Unit (CL)))
1607 then
1608 return True;
1609 end if;
1611 Next (CL);
1612 end loop;
1614 return False;
1615 end Depends_On_Main;
1617 ---------------
1618 -- Do_Action --
1619 ---------------
1621 procedure Do_Action (CU : Node_Id; Item : Node_Id) is
1622 begin
1623 -- This calls Action at the end. All the preceding code is just
1624 -- assertions and debugging output.
1626 pragma Assert (No (CU) or else Nkind (CU) = N_Compilation_Unit);
1628 case Nkind (Item) is
1629 when N_Generic_Subprogram_Declaration |
1630 N_Generic_Package_Declaration |
1631 N_Package_Declaration |
1632 N_Subprogram_Declaration |
1633 N_Subprogram_Renaming_Declaration |
1634 N_Package_Renaming_Declaration |
1635 N_Generic_Function_Renaming_Declaration |
1636 N_Generic_Package_Renaming_Declaration |
1637 N_Generic_Procedure_Renaming_Declaration =>
1639 -- Specs are OK
1641 null;
1643 when N_Package_Body =>
1645 -- Package bodies are processed separately if the main unit
1646 -- depends on them.
1648 null;
1650 when N_Subprogram_Body =>
1652 -- A subprogram body must be the main unit
1654 pragma Assert (Acts_As_Spec (CU)
1655 or else CU = Cunit (Main_Unit));
1656 null;
1658 when N_Function_Instantiation |
1659 N_Procedure_Instantiation |
1660 N_Package_Instantiation =>
1662 -- Can only happen if some generic body (needed for gnat2scil
1663 -- traversal, but not by GNAT) is not available, ignore.
1665 null;
1667 -- All other cases cannot happen
1669 when N_Subunit =>
1670 pragma Assert (False, "subunit");
1671 null;
1673 when others =>
1674 pragma Assert (False);
1675 null;
1676 end case;
1678 if Present (CU) then
1679 pragma Assert (Item /= Stand.Standard_Package_Node);
1680 pragma Assert (Item = Unit (CU));
1682 declare
1683 Unit_Num : constant Unit_Number_Type :=
1684 Get_Cunit_Unit_Number (CU);
1686 procedure Assert_Done (Withed_Unit : Node_Id);
1687 -- Assert Withed_Unit is already Done, unless it's a body. It
1688 -- might seem strange for a with_clause to refer to a body, but
1689 -- this happens in the case of a generic instantiation, which
1690 -- gets transformed into the instance body (and the instance
1691 -- spec is also created). With clauses pointing to the
1692 -- instantiation end up pointing to the instance body.
1694 -----------------
1695 -- Assert_Done --
1696 -----------------
1698 procedure Assert_Done (Withed_Unit : Node_Id) is
1699 begin
1700 if not Done (Get_Cunit_Unit_Number (Withed_Unit)) then
1701 if not Nkind_In
1702 (Unit (Withed_Unit),
1703 N_Generic_Package_Declaration,
1704 N_Package_Body,
1705 N_Package_Renaming_Declaration,
1706 N_Subprogram_Body)
1707 then
1708 Write_Unit_Name
1709 (Unit_Name (Get_Cunit_Unit_Number (Withed_Unit)));
1710 Write_Str (" not yet walked!");
1712 if Get_Cunit_Unit_Number (Withed_Unit) = Unit_Num then
1713 Write_Str (" (self-ref)");
1714 end if;
1716 Write_Eol;
1718 pragma Assert (False);
1719 end if;
1720 end if;
1721 end Assert_Done;
1723 procedure Assert_Withed_Units_Done is
1724 new Walk_Withs (Assert_Done);
1726 begin
1727 if Debug_Unit_Walk then
1728 Write_Unit_Info (Unit_Num, Item, Withs => True);
1729 end if;
1731 -- Main unit should come last, except in the case where we
1732 -- skipped System_Aux_Id, in which case we missed the things it
1733 -- depends on, and in the case of parent bodies if present.
1735 pragma Assert
1736 (not Done (Main_Unit)
1737 or else Present (System_Aux_Id)
1738 or else Nkind (Item) = N_Package_Body);
1740 -- We shouldn't do the same thing twice
1742 pragma Assert (not Done (Unit_Num));
1744 -- Everything we depend upon should already be done
1746 pragma Debug
1747 (Assert_Withed_Units_Done (CU, Include_Limited => False));
1748 end;
1750 else
1751 -- Must be Standard, which has no entry in the units table
1753 pragma Assert (Item = Stand.Standard_Package_Node);
1755 if Debug_Unit_Walk then
1756 Write_Line ("Standard");
1757 end if;
1758 end if;
1760 Action (Item);
1761 end Do_Action;
1763 --------------------
1764 -- Do_Withed_Unit --
1765 --------------------
1767 procedure Do_Withed_Unit (Withed_Unit : Node_Id) is
1768 begin
1769 Do_Unit_And_Dependents (Withed_Unit, Unit (Withed_Unit));
1771 -- If the unit in the with_clause is a generic instance, the clause
1772 -- now denotes the instance body. Traverse the corresponding spec
1773 -- because there may be no other dependence that will force the
1774 -- traversal of its own context.
1776 if Nkind (Unit (Withed_Unit)) = N_Package_Body
1777 and then Is_Generic_Instance
1778 (Defining_Entity (Unit (Library_Unit (Withed_Unit))))
1779 then
1780 Do_Withed_Unit (Library_Unit (Withed_Unit));
1781 end if;
1782 end Do_Withed_Unit;
1784 ----------------------------
1785 -- Do_Unit_And_Dependents --
1786 ----------------------------
1788 procedure Do_Unit_And_Dependents (CU : Node_Id; Item : Node_Id) is
1789 Unit_Num : constant Unit_Number_Type := Get_Cunit_Unit_Number (CU);
1790 Child : Node_Id;
1791 Body_U : Unit_Number_Type;
1792 Parent_CU : Node_Id;
1794 procedure Do_Withed_Units is new Walk_Withs (Do_Withed_Unit);
1796 begin
1797 if not Seen (Unit_Num) then
1799 -- Process the with clauses
1801 Do_Withed_Units (CU, Include_Limited => False);
1803 -- Process the unit if it is a spec or the the main unit, if it
1804 -- has no previous spec or we have done all other units.
1806 if not Nkind_In (Item, N_Package_Body, N_Subprogram_Body)
1807 or else Acts_As_Spec (CU)
1808 then
1809 if CU = Cunit (Main_Unit)
1810 and then not Do_Main
1811 then
1812 Seen (Unit_Num) := False;
1814 else
1815 Seen (Unit_Num) := True;
1817 if CU = Library_Unit (Main_CU) then
1818 Process_Bodies_In_Context (CU);
1820 -- If main is a child unit, examine parent unit contexts
1821 -- to see if they include instantiated units. Also, if
1822 -- the parent itself is an instance, process its body
1823 -- because it may contain subprograms that are called
1824 -- in the main unit.
1826 if Is_Child_Unit (Cunit_Entity (Main_Unit)) then
1827 Child := Cunit_Entity (Main_Unit);
1828 while Is_Child_Unit (Child) loop
1829 Parent_CU :=
1830 Cunit
1831 (Get_Cunit_Entity_Unit_Number (Scope (Child)));
1832 Process_Bodies_In_Context (Parent_CU);
1834 if Nkind (Unit (Parent_CU)) = N_Package_Body
1835 and then
1836 Nkind (Original_Node (Unit (Parent_CU)))
1837 = N_Package_Instantiation
1838 and then
1839 not Seen (Get_Cunit_Unit_Number (Parent_CU))
1840 then
1841 Body_U := Get_Cunit_Unit_Number (Parent_CU);
1842 Seen (Body_U) := True;
1843 Do_Action (Parent_CU, Unit (Parent_CU));
1844 Done (Body_U) := True;
1845 end if;
1847 Child := Scope (Child);
1848 end loop;
1849 end if;
1850 end if;
1852 Do_Action (CU, Item);
1853 Done (Unit_Num) := True;
1854 end if;
1855 end if;
1856 end if;
1857 end Do_Unit_And_Dependents;
1859 -------------------------------
1860 -- Process_Bodies_In_Context --
1861 -------------------------------
1863 procedure Process_Bodies_In_Context (Comp : Node_Id) is
1864 Body_CU : Node_Id;
1865 Body_U : Unit_Number_Type;
1866 Clause : Node_Id;
1867 Spec : Node_Id;
1869 procedure Do_Withed_Units is new Walk_Withs (Do_Withed_Unit);
1871 -- Start of processing for Process_Bodies_In_Context
1873 begin
1874 Clause := First (Context_Items (Comp));
1875 while Present (Clause) loop
1876 if Nkind (Clause) = N_With_Clause then
1877 Spec := Library_Unit (Clause);
1878 Body_CU := Library_Unit (Spec);
1880 -- If we are processing the spec of the main unit, load bodies
1881 -- only if the with_clause indicates that it forced the loading
1882 -- of the body for a generic instantiation. Note that bodies of
1883 -- parents that are instances have been loaded already.
1885 if Present (Body_CU)
1886 and then Body_CU /= Cunit (Main_Unit)
1887 and then Nkind (Unit (Body_CU)) /= N_Subprogram_Body
1888 and then (Nkind (Unit (Comp)) /= N_Package_Declaration
1889 or else Present (Withed_Body (Clause)))
1890 then
1891 Body_U := Get_Cunit_Unit_Number (Body_CU);
1893 if not Seen (Body_U)
1894 and then not Depends_On_Main (Body_CU)
1895 then
1896 Seen (Body_U) := True;
1897 Do_Withed_Units (Body_CU, Include_Limited => False);
1898 Do_Action (Body_CU, Unit (Body_CU));
1899 Done (Body_U) := True;
1900 end if;
1901 end if;
1902 end if;
1904 Next (Clause);
1905 end loop;
1906 end Process_Bodies_In_Context;
1908 -- Local Declarations
1910 Cur : Elmt_Id;
1912 -- Start of processing for Walk_Library_Items
1914 begin
1915 if Debug_Unit_Walk then
1916 Write_Line ("Walk_Library_Items:");
1917 Indent;
1918 end if;
1920 -- Do Standard first, then walk the Comp_Unit_List
1922 Do_Action (Empty, Standard_Package_Node);
1924 -- First place the context of all instance bodies on the corresponding
1925 -- spec, because it may be needed to analyze the code at the place of
1926 -- the instantiation.
1928 Cur := First_Elmt (Comp_Unit_List);
1929 while Present (Cur) loop
1930 declare
1931 CU : constant Node_Id := Node (Cur);
1932 N : constant Node_Id := Unit (CU);
1934 begin
1935 if Nkind (N) = N_Package_Body
1936 and then Is_Generic_Instance (Defining_Entity (N))
1937 then
1938 Append_List
1939 (Context_Items (CU), Context_Items (Library_Unit (CU)));
1940 end if;
1942 Next_Elmt (Cur);
1943 end;
1944 end loop;
1946 -- Now traverse compilation units (specs) in order
1948 Cur := First_Elmt (Comp_Unit_List);
1949 while Present (Cur) loop
1950 declare
1951 CU : constant Node_Id := Node (Cur);
1952 N : constant Node_Id := Unit (CU);
1953 Par : Entity_Id;
1955 begin
1956 pragma Assert (Nkind (CU) = N_Compilation_Unit);
1958 case Nkind (N) is
1960 -- If it is a subprogram body, process it if it has no
1961 -- separate spec.
1963 -- If it's a package body, ignore it, unless it is a body
1964 -- created for an instance that is the main unit. In the case
1965 -- of subprograms, the body is the wrapper package. In case of
1966 -- a package, the original file carries the body, and the spec
1967 -- appears as a later entry in the units list.
1969 -- Otherwise bodies appear in the list only because of inlining
1970 -- or instantiations, and they are processed only if relevant.
1971 -- The flag Withed_Body on a context clause indicates that a
1972 -- unit contains an instantiation that may be needed later,
1973 -- and therefore the body that contains the generic body (and
1974 -- its context) must be traversed immediately after the
1975 -- corresponding spec (see Do_Unit_And_Dependents).
1977 -- The main unit itself is processed separately after all other
1978 -- specs, and relevant bodies are examined in Process_Main.
1980 when N_Subprogram_Body =>
1981 if Acts_As_Spec (N) then
1982 Do_Unit_And_Dependents (CU, N);
1983 end if;
1985 when N_Package_Body =>
1986 if CU = Main_CU
1987 and then Nkind (Original_Node (Unit (Main_CU))) in
1988 N_Generic_Instantiation
1989 and then Present (Library_Unit (Main_CU))
1990 then
1991 Do_Unit_And_Dependents
1992 (Library_Unit (Main_CU),
1993 Unit (Library_Unit (Main_CU)));
1994 end if;
1996 -- It's a spec, process it, and the units it depends on,
1997 -- unless it is a descendent of the main unit. This can
1998 -- happen when the body of a parent depends on some other
1999 -- descendent.
2001 when others =>
2002 Par := Scope (Defining_Entity (Unit (CU)));
2004 if Is_Child_Unit (Defining_Entity (Unit (CU))) then
2005 while Present (Par)
2006 and then Par /= Standard_Standard
2007 and then Par /= Cunit_Entity (Main_Unit)
2008 loop
2009 Par := Scope (Par);
2010 end loop;
2011 end if;
2013 if Par /= Cunit_Entity (Main_Unit) then
2014 Do_Unit_And_Dependents (CU, N);
2015 end if;
2016 end case;
2017 end;
2019 Next_Elmt (Cur);
2020 end loop;
2022 -- Now process package bodies on which main depends, followed by bodies
2023 -- of parents, if present, and finally main itself.
2025 if not Done (Main_Unit) then
2026 Do_Main := True;
2028 Process_Main : declare
2029 Parent_CU : Node_Id;
2030 Body_CU : Node_Id;
2031 Body_U : Unit_Number_Type;
2032 Child : Entity_Id;
2034 function Is_Subunit_Of_Main (U : Node_Id) return Boolean;
2035 -- If the main unit has subunits, their context may include
2036 -- bodies that are needed in the body of main. We must examine
2037 -- the context of the subunits, which are otherwise not made
2038 -- explicit in the main unit.
2040 ------------------------
2041 -- Is_Subunit_Of_Main --
2042 ------------------------
2044 function Is_Subunit_Of_Main (U : Node_Id) return Boolean is
2045 Lib : Node_Id;
2046 begin
2047 if No (U) then
2048 return False;
2049 else
2050 Lib := Library_Unit (U);
2051 return Nkind (Unit (U)) = N_Subunit
2052 and then
2053 (Lib = Cunit (Main_Unit)
2054 or else Is_Subunit_Of_Main (Lib));
2055 end if;
2056 end Is_Subunit_Of_Main;
2058 -- Start of processing for Process_Main
2060 begin
2061 Process_Bodies_In_Context (Main_CU);
2063 for Unit_Num in Done'Range loop
2064 if Is_Subunit_Of_Main (Cunit (Unit_Num)) then
2065 Process_Bodies_In_Context (Cunit (Unit_Num));
2066 end if;
2067 end loop;
2069 -- If the main unit is a child unit, parent bodies may be present
2070 -- because they export instances or inlined subprograms. Check for
2071 -- presence of these, which are not present in context clauses.
2072 -- Note that if the parents are instances, their bodies have been
2073 -- processed before the main spec, because they may be needed
2074 -- therein, so the following loop only affects non-instances.
2076 if Is_Child_Unit (Cunit_Entity (Main_Unit)) then
2077 Child := Cunit_Entity (Main_Unit);
2078 while Is_Child_Unit (Child) loop
2079 Parent_CU :=
2080 Cunit (Get_Cunit_Entity_Unit_Number (Scope (Child)));
2081 Body_CU := Library_Unit (Parent_CU);
2083 if Present (Body_CU)
2084 and then not Seen (Get_Cunit_Unit_Number (Body_CU))
2085 and then not Depends_On_Main (Body_CU)
2086 then
2087 Body_U := Get_Cunit_Unit_Number (Body_CU);
2088 Seen (Body_U) := True;
2089 Do_Action (Body_CU, Unit (Body_CU));
2090 Done (Body_U) := True;
2091 end if;
2093 Child := Scope (Child);
2094 end loop;
2095 end if;
2097 Do_Action (Main_CU, Unit (Main_CU));
2098 Done (Main_Unit) := True;
2099 end Process_Main;
2100 end if;
2102 if Debug_Unit_Walk then
2103 if Done /= (Done'Range => True) then
2104 Write_Eol;
2105 Write_Line ("Ignored units:");
2107 Indent;
2109 for Unit_Num in Done'Range loop
2110 if not Done (Unit_Num) then
2111 Write_Unit_Info
2112 (Unit_Num, Unit (Cunit (Unit_Num)), Withs => True);
2113 end if;
2114 end loop;
2116 Outdent;
2117 end if;
2118 end if;
2120 pragma Assert (Done (Main_Unit));
2122 if Debug_Unit_Walk then
2123 Outdent;
2124 Write_Line ("end Walk_Library_Items.");
2125 end if;
2126 end Walk_Library_Items;
2128 ----------------
2129 -- Walk_Withs --
2130 ----------------
2132 procedure Walk_Withs (CU : Node_Id; Include_Limited : Boolean) is
2133 pragma Assert (Nkind (CU) = N_Compilation_Unit);
2134 pragma Assert (Nkind (Unit (CU)) /= N_Subunit);
2136 procedure Walk_Immediate is new Walk_Withs_Immediate (Action);
2138 begin
2139 -- First walk the withs immediately on the library item
2141 Walk_Immediate (CU, Include_Limited);
2143 -- For a body, we must also check for any subunits which belong to it
2144 -- and which have context clauses of their own, since these with'ed
2145 -- units are part of its own dependencies.
2147 if Nkind (Unit (CU)) in N_Unit_Body then
2148 for S in Main_Unit .. Last_Unit loop
2150 -- We are only interested in subunits. For preproc. data and def.
2151 -- files, Cunit is Empty, so we need to test that first.
2153 if Cunit (S) /= Empty
2154 and then Nkind (Unit (Cunit (S))) = N_Subunit
2155 then
2156 declare
2157 Pnode : Node_Id;
2159 begin
2160 Pnode := Library_Unit (Cunit (S));
2162 -- In -gnatc mode, the errors in the subunits will not have
2163 -- been recorded, but the analysis of the subunit may have
2164 -- failed, so just quit.
2166 if No (Pnode) then
2167 exit;
2168 end if;
2170 -- Find ultimate parent of the subunit
2172 while Nkind (Unit (Pnode)) = N_Subunit loop
2173 Pnode := Library_Unit (Pnode);
2174 end loop;
2176 -- See if it belongs to current unit, and if so, include its
2177 -- with_clauses. Do not process main unit prematurely.
2179 if Pnode = CU and then CU /= Cunit (Main_Unit) then
2180 Walk_Immediate (Cunit (S), Include_Limited);
2181 end if;
2182 end;
2183 end if;
2184 end loop;
2185 end if;
2186 end Walk_Withs;
2188 --------------------------
2189 -- Walk_Withs_Immediate --
2190 --------------------------
2192 procedure Walk_Withs_Immediate (CU : Node_Id; Include_Limited : Boolean) is
2193 pragma Assert (Nkind (CU) = N_Compilation_Unit);
2195 Context_Item : Node_Id;
2196 Lib_Unit : Node_Id;
2197 Body_CU : Node_Id;
2199 begin
2200 Context_Item := First (Context_Items (CU));
2201 while Present (Context_Item) loop
2202 if Nkind (Context_Item) = N_With_Clause
2203 and then (Include_Limited
2204 or else not Limited_Present (Context_Item))
2205 then
2206 Lib_Unit := Library_Unit (Context_Item);
2207 Action (Lib_Unit);
2209 -- If the context item indicates that a package body is needed
2210 -- because of an instantiation in CU, traverse the body now, even
2211 -- if CU is not related to the main unit. If the generic itself
2212 -- appears in a package body, the context item is this body, and
2213 -- it already appears in the traversal order, so we only need to
2214 -- examine the case of a context item being a package declaration.
2216 if Present (Withed_Body (Context_Item))
2217 and then Nkind (Unit (Lib_Unit)) = N_Package_Declaration
2218 and then Present (Corresponding_Body (Unit (Lib_Unit)))
2219 then
2220 Body_CU :=
2221 Parent
2222 (Unit_Declaration_Node
2223 (Corresponding_Body (Unit (Lib_Unit))));
2225 -- A body may have an implicit with on its own spec, in which
2226 -- case we must ignore this context item to prevent looping.
2228 if Unit (CU) /= Unit (Body_CU) then
2229 Action (Body_CU);
2230 end if;
2231 end if;
2232 end if;
2234 Context_Item := Next (Context_Item);
2235 end loop;
2236 end Walk_Withs_Immediate;
2238 ---------------------
2239 -- Write_Unit_Info --
2240 ---------------------
2242 procedure Write_Unit_Info
2243 (Unit_Num : Unit_Number_Type;
2244 Item : Node_Id;
2245 Prefix : String := "";
2246 Withs : Boolean := False)
2248 begin
2249 Write_Str (Prefix);
2250 Write_Unit_Name (Unit_Name (Unit_Num));
2251 Write_Str (", unit ");
2252 Write_Int (Int (Unit_Num));
2253 Write_Str (", ");
2254 Write_Int (Int (Item));
2255 Write_Str ("=");
2256 Write_Str (Node_Kind'Image (Nkind (Item)));
2258 if Item /= Original_Node (Item) then
2259 Write_Str (", orig = ");
2260 Write_Int (Int (Original_Node (Item)));
2261 Write_Str ("=");
2262 Write_Str (Node_Kind'Image (Nkind (Original_Node (Item))));
2263 end if;
2265 Write_Eol;
2267 -- Skip the rest if we're not supposed to print the withs
2269 if not Withs then
2270 return;
2271 end if;
2273 declare
2274 Context_Item : Node_Id;
2276 begin
2277 Context_Item := First (Context_Items (Cunit (Unit_Num)));
2278 while Present (Context_Item)
2279 and then (Nkind (Context_Item) /= N_With_Clause
2280 or else Limited_Present (Context_Item))
2281 loop
2282 Context_Item := Next (Context_Item);
2283 end loop;
2285 if Present (Context_Item) then
2286 Indent;
2287 Write_Line ("withs:");
2288 Indent;
2290 while Present (Context_Item) loop
2291 if Nkind (Context_Item) = N_With_Clause
2292 and then not Limited_Present (Context_Item)
2293 then
2294 pragma Assert (Present (Library_Unit (Context_Item)));
2295 Write_Unit_Name
2296 (Unit_Name
2297 (Get_Cunit_Unit_Number (Library_Unit (Context_Item))));
2299 if Implicit_With (Context_Item) then
2300 Write_Str (" -- implicit");
2301 end if;
2303 Write_Eol;
2304 end if;
2306 Context_Item := Next (Context_Item);
2307 end loop;
2309 Outdent;
2310 Write_Line ("end withs");
2311 Outdent;
2312 end if;
2313 end;
2314 end Write_Unit_Info;
2316 end Sem;