OSDN Git Service

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