OSDN Git Service

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