OSDN Git Service

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