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