OSDN Git Service

2008-08-22 Robert Dewar <dewar@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / sem_ch5.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                              S E M _ C H 5                               --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2008, Free Software Foundation, Inc.         --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 3,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT; see file COPYING3.  If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license.          --
20 --                                                                          --
21 -- GNAT was originally developed  by the GNAT team at  New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
23 --                                                                          --
24 ------------------------------------------------------------------------------
25
26 with Atree;    use Atree;
27 with Checks;   use Checks;
28 with Einfo;    use Einfo;
29 with Errout;   use Errout;
30 with Expander; use Expander;
31 with Exp_Util; use Exp_Util;
32 with Freeze;   use Freeze;
33 with Lib;      use Lib;
34 with Lib.Xref; use Lib.Xref;
35 with Namet;    use Namet;
36 with Nlists;   use Nlists;
37 with Nmake;    use Nmake;
38 with Opt;      use Opt;
39 with Rtsfind;  use Rtsfind;
40 with Sem;      use Sem;
41 with Sem_Case; use Sem_Case;
42 with Sem_Ch3;  use Sem_Ch3;
43 with Sem_Ch8;  use Sem_Ch8;
44 with Sem_Disp; use Sem_Disp;
45 with Sem_Elab; use Sem_Elab;
46 with Sem_Eval; use Sem_Eval;
47 with Sem_Res;  use Sem_Res;
48 with Sem_Type; use Sem_Type;
49 with Sem_Util; use Sem_Util;
50 with Sem_Warn; use Sem_Warn;
51 with Snames;   use Snames;
52 with Stand;    use Stand;
53 with Sinfo;    use Sinfo;
54 with Targparm; use Targparm;
55 with Tbuild;   use Tbuild;
56 with Uintp;    use Uintp;
57
58 package body Sem_Ch5 is
59
60    Unblocked_Exit_Count : Nat := 0;
61    --  This variable is used when processing if statements, case statements,
62    --  and block statements. It counts the number of exit points that are not
63    --  blocked by unconditional transfer instructions: for IF and CASE, these
64    --  are the branches of the conditional; for a block, they are the statement
65    --  sequence of the block, and the statement sequences of any exception
66    --  handlers that are part of the block. When processing is complete, if
67    --  this count is zero, it means that control cannot fall through the IF,
68    --  CASE or block statement. This is used for the generation of warning
69    --  messages. This variable is recursively saved on entry to processing the
70    --  construct, and restored on exit.
71
72    -----------------------
73    -- Local Subprograms --
74    -----------------------
75
76    procedure Analyze_Iteration_Scheme (N : Node_Id);
77
78    ------------------------
79    -- Analyze_Assignment --
80    ------------------------
81
82    procedure Analyze_Assignment (N : Node_Id) is
83       Lhs  : constant Node_Id := Name (N);
84       Rhs  : constant Node_Id := Expression (N);
85       T1   : Entity_Id;
86       T2   : Entity_Id;
87       Decl : Node_Id;
88
89       procedure Diagnose_Non_Variable_Lhs (N : Node_Id);
90       --  N is the node for the left hand side of an assignment, and it
91       --  is not a variable. This routine issues an appropriate diagnostic.
92
93       procedure Kill_Lhs;
94       --  This is called to kill current value settings of a simple variable
95       --  on the left hand side. We call it if we find any error in analyzing
96       --  the assignment, and at the end of processing before setting any new
97       --  current values in place.
98
99       procedure Set_Assignment_Type
100         (Opnd      : Node_Id;
101          Opnd_Type : in out Entity_Id);
102       --  Opnd is either the Lhs or Rhs of the assignment, and Opnd_Type
103       --  is the nominal subtype. This procedure is used to deal with cases
104       --  where the nominal subtype must be replaced by the actual subtype.
105
106       -------------------------------
107       -- Diagnose_Non_Variable_Lhs --
108       -------------------------------
109
110       procedure Diagnose_Non_Variable_Lhs (N : Node_Id) is
111       begin
112          --  Not worth posting another error if left hand side already
113          --  flagged as being illegal in some respect.
114
115          if Error_Posted (N) then
116             return;
117
118          --  Some special bad cases of entity names
119
120          elsif Is_Entity_Name (N) then
121             declare
122                Ent : constant Entity_Id := Entity (N);
123
124             begin
125                if Ekind (Ent) = E_In_Parameter then
126                   Error_Msg_N
127                     ("assignment to IN mode parameter not allowed", N);
128
129                --  Renamings of protected private components are turned into
130                --  constants when compiling a protected function. In the case
131                --  of single protected types, the private component appears
132                --  directly.
133
134                elsif (Is_Prival (Ent)
135                         and then
136                           (Ekind (Current_Scope) = E_Function
137                              or else Ekind (Enclosing_Dynamic_Scope (
138                                        Current_Scope)) = E_Function))
139                    or else
140                      (Ekind (Ent) = E_Component
141                         and then Is_Protected_Type (Scope (Ent)))
142                then
143                   Error_Msg_N
144                     ("protected function cannot modify protected object", N);
145
146                elsif Ekind (Ent) = E_Loop_Parameter then
147                   Error_Msg_N
148                     ("assignment to loop parameter not allowed", N);
149
150                else
151                   Error_Msg_N
152                     ("left hand side of assignment must be a variable", N);
153                end if;
154             end;
155
156          --  For indexed components or selected components, test prefix
157
158          elsif Nkind (N) = N_Indexed_Component then
159             Diagnose_Non_Variable_Lhs (Prefix (N));
160
161          --  Another special case for assignment to discriminant
162
163          elsif Nkind (N) = N_Selected_Component then
164             if Present (Entity (Selector_Name (N)))
165               and then Ekind (Entity (Selector_Name (N))) = E_Discriminant
166             then
167                Error_Msg_N
168                  ("assignment to discriminant not allowed", N);
169             else
170                Diagnose_Non_Variable_Lhs (Prefix (N));
171             end if;
172
173          else
174             --  If we fall through, we have no special message to issue!
175
176             Error_Msg_N ("left hand side of assignment must be a variable", N);
177          end if;
178       end Diagnose_Non_Variable_Lhs;
179
180       --------------
181       -- Kill_LHS --
182       --------------
183
184       procedure Kill_Lhs is
185       begin
186          if Is_Entity_Name (Lhs) then
187             declare
188                Ent : constant Entity_Id := Entity (Lhs);
189             begin
190                if Present (Ent) then
191                   Kill_Current_Values (Ent);
192                end if;
193             end;
194          end if;
195       end Kill_Lhs;
196
197       -------------------------
198       -- Set_Assignment_Type --
199       -------------------------
200
201       procedure Set_Assignment_Type
202         (Opnd      : Node_Id;
203          Opnd_Type : in out Entity_Id)
204       is
205       begin
206          Require_Entity (Opnd);
207
208          --  If the assignment operand is an in-out or out parameter, then we
209          --  get the actual subtype (needed for the unconstrained case).
210          --  If the operand is the actual in an entry declaration, then within
211          --  the accept statement it is replaced with a local renaming, which
212          --  may also have an actual subtype.
213
214          if Is_Entity_Name (Opnd)
215            and then (Ekind (Entity (Opnd)) = E_Out_Parameter
216                       or else Ekind (Entity (Opnd)) =
217                            E_In_Out_Parameter
218                       or else Ekind (Entity (Opnd)) =
219                            E_Generic_In_Out_Parameter
220                       or else
221                         (Ekind (Entity (Opnd)) = E_Variable
222                           and then Nkind (Parent (Entity (Opnd))) =
223                              N_Object_Renaming_Declaration
224                           and then Nkind (Parent (Parent (Entity (Opnd)))) =
225                              N_Accept_Statement))
226          then
227             Opnd_Type := Get_Actual_Subtype (Opnd);
228
229          --  If assignment operand is a component reference, then we get the
230          --  actual subtype of the component for the unconstrained case.
231
232          elsif Nkind_In (Opnd, N_Selected_Component, N_Explicit_Dereference)
233            and then not Is_Unchecked_Union (Opnd_Type)
234          then
235             Decl := Build_Actual_Subtype_Of_Component (Opnd_Type, Opnd);
236
237             if Present (Decl) then
238                Insert_Action (N, Decl);
239                Mark_Rewrite_Insertion (Decl);
240                Analyze (Decl);
241                Opnd_Type := Defining_Identifier (Decl);
242                Set_Etype (Opnd, Opnd_Type);
243                Freeze_Itype (Opnd_Type, N);
244
245             elsif Is_Constrained (Etype (Opnd)) then
246                Opnd_Type := Etype (Opnd);
247             end if;
248
249          --  For slice, use the constrained subtype created for the slice
250
251          elsif Nkind (Opnd) = N_Slice then
252             Opnd_Type := Etype (Opnd);
253          end if;
254       end Set_Assignment_Type;
255
256    --  Start of processing for Analyze_Assignment
257
258    begin
259       Mark_Coextensions (N, Rhs);
260
261       Analyze (Rhs);
262       Analyze (Lhs);
263
264       --  Start type analysis for assignment
265
266       T1 := Etype (Lhs);
267
268       --  In the most general case, both Lhs and Rhs can be overloaded, and we
269       --  must compute the intersection of the possible types on each side.
270
271       if Is_Overloaded (Lhs) then
272          declare
273             I  : Interp_Index;
274             It : Interp;
275
276          begin
277             T1 := Any_Type;
278             Get_First_Interp (Lhs, I, It);
279
280             while Present (It.Typ) loop
281                if Has_Compatible_Type (Rhs, It.Typ) then
282                   if T1 /= Any_Type then
283
284                      --  An explicit dereference is overloaded if the prefix
285                      --  is. Try to remove the ambiguity on the prefix, the
286                      --  error will be posted there if the ambiguity is real.
287
288                      if Nkind (Lhs) = N_Explicit_Dereference then
289                         declare
290                            PI    : Interp_Index;
291                            PI1   : Interp_Index := 0;
292                            PIt   : Interp;
293                            Found : Boolean;
294
295                         begin
296                            Found := False;
297                            Get_First_Interp (Prefix (Lhs), PI, PIt);
298
299                            while Present (PIt.Typ) loop
300                               if Is_Access_Type (PIt.Typ)
301                                 and then Has_Compatible_Type
302                                            (Rhs, Designated_Type (PIt.Typ))
303                               then
304                                  if Found then
305                                     PIt :=
306                                       Disambiguate (Prefix (Lhs),
307                                         PI1, PI, Any_Type);
308
309                                     if PIt = No_Interp then
310                                        Error_Msg_N
311                                          ("ambiguous left-hand side"
312                                             & " in assignment", Lhs);
313                                        exit;
314                                     else
315                                        Resolve (Prefix (Lhs), PIt.Typ);
316                                     end if;
317
318                                     exit;
319                                  else
320                                     Found := True;
321                                     PI1 := PI;
322                                  end if;
323                               end if;
324
325                               Get_Next_Interp (PI, PIt);
326                            end loop;
327                         end;
328
329                      else
330                         Error_Msg_N
331                           ("ambiguous left-hand side in assignment", Lhs);
332                         exit;
333                      end if;
334                   else
335                      T1 := It.Typ;
336                   end if;
337                end if;
338
339                Get_Next_Interp (I, It);
340             end loop;
341          end;
342
343          if T1 = Any_Type then
344             Error_Msg_N
345               ("no valid types for left-hand side for assignment", Lhs);
346             Kill_Lhs;
347             return;
348          end if;
349       end if;
350
351       --  The resulting assignment type is T1, so now we will resolve the
352       --  left hand side of the assignment using this determined type.
353
354       Resolve (Lhs, T1);
355
356       --  Cases where Lhs is not a variable
357
358       if not Is_Variable (Lhs) then
359
360          --  Ada 2005 (AI-327): Check assignment to the attribute Priority of
361          --  a protected object.
362
363          declare
364             Ent : Entity_Id;
365             S   : Entity_Id;
366
367          begin
368             if Ada_Version >= Ada_05 then
369
370                --  Handle chains of renamings
371
372                Ent := Lhs;
373                while Nkind (Ent) in N_Has_Entity
374                  and then Present (Entity (Ent))
375                  and then Present (Renamed_Object (Entity (Ent)))
376                loop
377                   Ent := Renamed_Object (Entity (Ent));
378                end loop;
379
380                if (Nkind (Ent) = N_Attribute_Reference
381                      and then Attribute_Name (Ent) = Name_Priority)
382
383                   --  Renamings of the attribute Priority applied to protected
384                   --  objects have been previously expanded into calls to the
385                   --  Get_Ceiling run-time subprogram.
386
387                  or else
388                   (Nkind (Ent) = N_Function_Call
389                      and then (Entity (Name (Ent)) = RTE (RE_Get_Ceiling)
390                                 or else
391                                Entity (Name (Ent)) = RTE (RO_PE_Get_Ceiling)))
392                then
393                   --  The enclosing subprogram cannot be a protected function
394
395                   S := Current_Scope;
396                   while not (Is_Subprogram (S)
397                                and then Convention (S) = Convention_Protected)
398                      and then S /= Standard_Standard
399                   loop
400                      S := Scope (S);
401                   end loop;
402
403                   if Ekind (S) = E_Function
404                     and then Convention (S) = Convention_Protected
405                   then
406                      Error_Msg_N
407                        ("protected function cannot modify protected object",
408                         Lhs);
409                   end if;
410
411                   --  Changes of the ceiling priority of the protected object
412                   --  are only effective if the Ceiling_Locking policy is in
413                   --  effect (AARM D.5.2 (5/2)).
414
415                   if Locking_Policy /= 'C' then
416                      Error_Msg_N ("assignment to the attribute PRIORITY has " &
417                                   "no effect?", Lhs);
418                      Error_Msg_N ("\since no Locking_Policy has been " &
419                                   "specified", Lhs);
420                   end if;
421
422                   return;
423                end if;
424             end if;
425          end;
426
427          Diagnose_Non_Variable_Lhs (Lhs);
428          return;
429
430       --  Error of assigning to limited type. We do however allow this in
431       --  certain cases where the front end generates the assignments.
432
433       elsif Is_Limited_Type (T1)
434         and then not Assignment_OK (Lhs)
435         and then not Assignment_OK (Original_Node (Lhs))
436         and then not Is_Value_Type (T1)
437       then
438          Error_Msg_N
439            ("left hand of assignment must not be limited type", Lhs);
440          Explain_Limited_Type (T1, Lhs);
441          return;
442
443       --  Enforce RM 3.9.3 (8): left-hand side cannot be abstract
444
445       elsif Is_Interface (T1)
446         and then not Is_Class_Wide_Type (T1)
447       then
448          Error_Msg_N
449            ("target of assignment operation may not be abstract", Lhs);
450          return;
451       end if;
452
453       --  Resolution may have updated the subtype, in case the left-hand
454       --  side is a private protected component. Use the correct subtype
455       --  to avoid scoping issues in the back-end.
456
457       T1 := Etype (Lhs);
458
459       --  Ada 2005 (AI-50217, AI-326): Check wrong dereference of incomplete
460       --  type. For example:
461
462       --    limited with P;
463       --    package Pkg is
464       --      type Acc is access P.T;
465       --    end Pkg;
466
467       --    with Pkg; use Acc;
468       --    procedure Example is
469       --       A, B : Acc;
470       --    begin
471       --       A.all := B.all;  -- ERROR
472       --    end Example;
473
474       if Nkind (Lhs) = N_Explicit_Dereference
475         and then Ekind (T1) = E_Incomplete_Type
476       then
477          Error_Msg_N ("invalid use of incomplete type", Lhs);
478          Kill_Lhs;
479          return;
480       end if;
481
482       --  Now we can complete the resolution of the right hand side
483
484       Set_Assignment_Type (Lhs, T1);
485       Resolve (Rhs, T1);
486
487       --  This is the point at which we check for an unset reference
488
489       Check_Unset_Reference (Rhs);
490       Check_Unprotected_Access (Lhs, Rhs);
491
492       --  Remaining steps are skipped if Rhs was syntactically in error
493
494       if Rhs = Error then
495          Kill_Lhs;
496          return;
497       end if;
498
499       T2 := Etype (Rhs);
500
501       if not Covers (T1, T2) then
502          Wrong_Type (Rhs, Etype (Lhs));
503          Kill_Lhs;
504          return;
505       end if;
506
507       --  Ada 2005 (AI-326): In case of explicit dereference of incomplete
508       --  types, use the non-limited view if available
509
510       if Nkind (Rhs) = N_Explicit_Dereference
511         and then Ekind (T2) = E_Incomplete_Type
512         and then Is_Tagged_Type (T2)
513         and then Present (Non_Limited_View (T2))
514       then
515          T2 := Non_Limited_View (T2);
516       end if;
517
518       Set_Assignment_Type (Rhs, T2);
519
520       if Total_Errors_Detected /= 0 then
521          if No (T1) then
522             T1 := Any_Type;
523          end if;
524
525          if No (T2) then
526             T2 := Any_Type;
527          end if;
528       end if;
529
530       if T1 = Any_Type or else T2 = Any_Type then
531          Kill_Lhs;
532          return;
533       end if;
534
535       --  If the rhs is class-wide or dynamically tagged, then require the lhs
536       --  to be class-wide. The case where the rhs is a dynamically tagged call
537       --  to a dispatching operation with a controlling access result is
538       --  excluded from this check, since the target has an access type (and
539       --  no tag propagation occurs in that case).
540
541       if (Is_Class_Wide_Type (T2)
542            or else (Is_Dynamically_Tagged (Rhs)
543                      and then not Is_Access_Type (T1)))
544         and then not Is_Class_Wide_Type (T1)
545       then
546          Error_Msg_N ("dynamically tagged expression not allowed!", Rhs);
547
548       elsif Is_Class_Wide_Type (T1)
549         and then not Is_Class_Wide_Type (T2)
550         and then not Is_Tag_Indeterminate (Rhs)
551         and then not Is_Dynamically_Tagged (Rhs)
552       then
553          Error_Msg_N ("dynamically tagged expression required!", Rhs);
554       end if;
555
556       --  Propagate the tag from a class-wide target to the rhs when the rhs
557       --  is a tag-indeterminate call.
558
559       if Is_Tag_Indeterminate (Rhs) then
560          if Is_Class_Wide_Type (T1) then
561             Propagate_Tag (Lhs, Rhs);
562
563          elsif Nkind (Rhs) = N_Function_Call
564               and then Is_Entity_Name (Name (Rhs))
565               and then Is_Abstract_Subprogram (Entity (Name (Rhs)))
566          then
567             Error_Msg_N
568               ("call to abstract function must be dispatching", Name (Rhs));
569
570          elsif Nkind (Rhs) = N_Qualified_Expression
571            and then Nkind (Expression (Rhs)) = N_Function_Call
572               and then Is_Entity_Name (Name (Expression (Rhs)))
573               and then
574                 Is_Abstract_Subprogram (Entity (Name (Expression (Rhs))))
575          then
576             Error_Msg_N
577               ("call to abstract function must be dispatching",
578                 Name (Expression (Rhs)));
579          end if;
580       end if;
581
582       --  Ada 2005 (AI-385): When the lhs type is an anonymous access type,
583       --  apply an implicit conversion of the rhs to that type to force
584       --  appropriate static and run-time accessibility checks. This applies
585       --  as well to anonymous access-to-subprogram types that are component
586       --  subtypes or formal parameters.
587
588       if Ada_Version >= Ada_05
589         and then Is_Access_Type (T1)
590       then
591          if Is_Local_Anonymous_Access (T1)
592            or else Ekind (T2) = E_Anonymous_Access_Subprogram_Type
593          then
594             Rewrite (Rhs, Convert_To (T1, Relocate_Node (Rhs)));
595             Analyze_And_Resolve (Rhs, T1);
596          end if;
597       end if;
598
599       --  Ada 2005 (AI-231): Assignment to not null variable
600
601       if Ada_Version >= Ada_05
602         and then Can_Never_Be_Null (T1)
603         and then not Assignment_OK (Lhs)
604       then
605          --  Case where we know the right hand side is null
606
607          if Known_Null (Rhs) then
608             Apply_Compile_Time_Constraint_Error
609               (N   => Rhs,
610                Msg => "(Ada 2005) null not allowed in null-excluding objects?",
611                Reason => CE_Null_Not_Allowed);
612
613             --  We still mark this as a possible modification, that's necessary
614             --  to reset Is_True_Constant, and desirable for xref purposes.
615
616             Note_Possible_Modification (Lhs, Sure => True);
617             return;
618
619          --  If we know the right hand side is non-null, then we convert to the
620          --  target type, since we don't need a run time check in that case.
621
622          elsif not Can_Never_Be_Null (T2) then
623             Rewrite (Rhs, Convert_To (T1, Relocate_Node (Rhs)));
624             Analyze_And_Resolve (Rhs, T1);
625          end if;
626       end if;
627
628       if Is_Scalar_Type (T1) then
629          Apply_Scalar_Range_Check (Rhs, Etype (Lhs));
630
631       --  For array types, verify that lengths match. If the right hand side
632       --  if a function call that has been inlined, the assignment has been
633       --  rewritten as a block, and the constraint check will be applied to the
634       --  assignment within the block.
635
636       elsif Is_Array_Type (T1)
637         and then
638           (Nkind (Rhs) /= N_Type_Conversion
639             or else Is_Constrained (Etype (Rhs)))
640         and then
641           (Nkind (Rhs) /= N_Function_Call
642             or else Nkind (N) /= N_Block_Statement)
643       then
644          --  Assignment verifies that the length of the Lsh and Rhs are equal,
645          --  but of course the indices do not have to match. If the right-hand
646          --  side is a type conversion to an unconstrained type, a length check
647          --  is performed on the expression itself during expansion. In rare
648          --  cases, the redundant length check is computed on an index type
649          --  with a different representation, triggering incorrect code in
650          --  the back end.
651
652          Apply_Length_Check (Rhs, Etype (Lhs));
653
654       else
655          --  Discriminant checks are applied in the course of expansion
656
657          null;
658       end if;
659
660       --  Note: modifications of the Lhs may only be recorded after
661       --  checks have been applied.
662
663       Note_Possible_Modification (Lhs, Sure => True);
664
665       --  ??? a real accessibility check is needed when ???
666
667       --  Post warning for redundant assignment or variable to itself
668
669       if Warn_On_Redundant_Constructs
670
671          --  We only warn for source constructs
672
673          and then Comes_From_Source (N)
674
675          --  Where the object is the same on both sides
676
677          and then Same_Object (Lhs, Original_Node (Rhs))
678
679          --  But exclude the case where the right side was an operation
680          --  that got rewritten (e.g. JUNK + K, where K was known to be
681          --  zero). We don't want to warn in such a case, since it is
682          --  reasonable to write such expressions especially when K is
683          --  defined symbolically in some other package.
684
685         and then Nkind (Original_Node (Rhs)) not in N_Op
686       then
687          if Nkind (Lhs) in N_Has_Entity then
688             Error_Msg_NE
689               ("?useless assignment of & to itself!", N, Entity (Lhs));
690          else
691             Error_Msg_N
692               ("?useless assignment of object to itself!", N);
693          end if;
694       end if;
695
696       --  Check for non-allowed composite assignment
697
698       if not Support_Composite_Assign_On_Target
699         and then (Is_Array_Type (T1) or else Is_Record_Type (T1))
700         and then (not Has_Size_Clause (T1) or else Esize (T1) > 64)
701       then
702          Error_Msg_CRT ("composite assignment", N);
703       end if;
704
705       --  Check elaboration warning for left side if not in elab code
706
707       if not In_Subprogram_Or_Concurrent_Unit then
708          Check_Elab_Assign (Lhs);
709       end if;
710
711       --  Set Referenced_As_LHS if appropriate. We only set this flag if the
712       --  assignment is a source assignment in the extended main source unit.
713       --  We are not interested in any reference information outside this
714       --  context, or in compiler generated assignment statements.
715
716       if Comes_From_Source (N)
717         and then In_Extended_Main_Source_Unit (Lhs)
718       then
719          Set_Referenced_Modified (Lhs, Out_Param => False);
720       end if;
721
722       --  Final step. If left side is an entity, then we may be able to
723       --  reset the current tracked values to new safe values. We only have
724       --  something to do if the left side is an entity name, and expansion
725       --  has not modified the node into something other than an assignment,
726       --  and of course we only capture values if it is safe to do so.
727
728       if Is_Entity_Name (Lhs)
729         and then Nkind (N) = N_Assignment_Statement
730       then
731          declare
732             Ent : constant Entity_Id := Entity (Lhs);
733
734          begin
735             if Safe_To_Capture_Value (N, Ent) then
736
737                --  If simple variable on left side, warn if this assignment
738                --  blots out another one (rendering it useless) and note
739                --  location of assignment in case no one references value.
740                --  We only do this for source assignments, otherwise we can
741                --  generate bogus warnings when an assignment is rewritten as
742                --  another assignment, and gets tied up with itself.
743
744                --  Note: we don't use Record_Last_Assignment here, because we
745                --  have lots of other stuff to do under control of this test.
746
747                if Warn_On_Modified_Unread
748                  and then Is_Assignable (Ent)
749                  and then Comes_From_Source (N)
750                  and then In_Extended_Main_Source_Unit (Ent)
751                then
752                   Warn_On_Useless_Assignment (Ent, N);
753                   Set_Last_Assignment (Ent, Lhs);
754                end if;
755
756                --  If we are assigning an access type and the left side is an
757                --  entity, then make sure that the Is_Known_[Non_]Null flags
758                --  properly reflect the state of the entity after assignment.
759
760                if Is_Access_Type (T1) then
761                   if Known_Non_Null (Rhs) then
762                      Set_Is_Known_Non_Null (Ent, True);
763
764                   elsif Known_Null (Rhs)
765                     and then not Can_Never_Be_Null (Ent)
766                   then
767                      Set_Is_Known_Null (Ent, True);
768
769                   else
770                      Set_Is_Known_Null (Ent, False);
771
772                      if not Can_Never_Be_Null (Ent) then
773                         Set_Is_Known_Non_Null (Ent, False);
774                      end if;
775                   end if;
776
777                --  For discrete types, we may be able to set the current value
778                --  if the value is known at compile time.
779
780                elsif Is_Discrete_Type (T1)
781                  and then Compile_Time_Known_Value (Rhs)
782                then
783                   Set_Current_Value (Ent, Rhs);
784                else
785                   Set_Current_Value (Ent, Empty);
786                end if;
787
788             --  If not safe to capture values, kill them
789
790             else
791                Kill_Lhs;
792             end if;
793          end;
794       end if;
795    end Analyze_Assignment;
796
797    -----------------------------
798    -- Analyze_Block_Statement --
799    -----------------------------
800
801    procedure Analyze_Block_Statement (N : Node_Id) is
802       Decls : constant List_Id := Declarations (N);
803       Id    : constant Node_Id := Identifier (N);
804       HSS   : constant Node_Id := Handled_Statement_Sequence (N);
805
806    begin
807       --  If no handled statement sequence is present, things are really
808       --  messed up, and we just return immediately (this is a defence
809       --  against previous errors).
810
811       if No (HSS) then
812          return;
813       end if;
814
815       --  Normal processing with HSS present
816
817       declare
818          EH  : constant List_Id := Exception_Handlers (HSS);
819          Ent : Entity_Id        := Empty;
820          S   : Entity_Id;
821
822          Save_Unblocked_Exit_Count : constant Nat := Unblocked_Exit_Count;
823          --  Recursively save value of this global, will be restored on exit
824
825       begin
826          --  Initialize unblocked exit count for statements of begin block
827          --  plus one for each exception handler that is present.
828
829          Unblocked_Exit_Count := 1;
830
831          if Present (EH) then
832             Unblocked_Exit_Count := Unblocked_Exit_Count + List_Length (EH);
833          end if;
834
835          --  If a label is present analyze it and mark it as referenced
836
837          if Present (Id) then
838             Analyze (Id);
839             Ent := Entity (Id);
840
841             --  An error defense. If we have an identifier, but no entity,
842             --  then something is wrong. If we have previous errors, then
843             --  just remove the identifier and continue, otherwise raise
844             --  an exception.
845
846             if No (Ent) then
847                if Total_Errors_Detected /= 0 then
848                   Set_Identifier (N, Empty);
849                else
850                   raise Program_Error;
851                end if;
852
853             else
854                Set_Ekind (Ent, E_Block);
855                Generate_Reference (Ent, N, ' ');
856                Generate_Definition (Ent);
857
858                if Nkind (Parent (Ent)) = N_Implicit_Label_Declaration then
859                   Set_Label_Construct (Parent (Ent), N);
860                end if;
861             end if;
862          end if;
863
864          --  If no entity set, create a label entity
865
866          if No (Ent) then
867             Ent := New_Internal_Entity (E_Block, Current_Scope, Sloc (N), 'B');
868             Set_Identifier (N, New_Occurrence_Of (Ent, Sloc (N)));
869             Set_Parent (Ent, N);
870          end if;
871
872          Set_Etype (Ent, Standard_Void_Type);
873          Set_Block_Node (Ent, Identifier (N));
874          Push_Scope (Ent);
875
876          if Present (Decls) then
877             Analyze_Declarations (Decls);
878             Check_Completion;
879             Inspect_Deferred_Constant_Completion (Decls);
880          end if;
881
882          Analyze (HSS);
883          Process_End_Label (HSS, 'e', Ent);
884
885          --  If exception handlers are present, then we indicate that
886          --  enclosing scopes contain a block with handlers. We only
887          --  need to mark non-generic scopes.
888
889          if Present (EH) then
890             S := Scope (Ent);
891             loop
892                Set_Has_Nested_Block_With_Handler (S);
893                exit when Is_Overloadable (S)
894                  or else Ekind (S) = E_Package
895                  or else Is_Generic_Unit (S);
896                S := Scope (S);
897             end loop;
898          end if;
899
900          Check_References (Ent);
901          Warn_On_Useless_Assignments (Ent);
902          End_Scope;
903
904          if Unblocked_Exit_Count = 0 then
905             Unblocked_Exit_Count := Save_Unblocked_Exit_Count;
906             Check_Unreachable_Code (N);
907          else
908             Unblocked_Exit_Count := Save_Unblocked_Exit_Count;
909          end if;
910       end;
911    end Analyze_Block_Statement;
912
913    ----------------------------
914    -- Analyze_Case_Statement --
915    ----------------------------
916
917    procedure Analyze_Case_Statement (N : Node_Id) is
918       Exp            : Node_Id;
919       Exp_Type       : Entity_Id;
920       Exp_Btype      : Entity_Id;
921       Last_Choice    : Nat;
922       Dont_Care      : Boolean;
923       Others_Present : Boolean;
924
925       pragma Warnings (Off, Last_Choice);
926       pragma Warnings (Off, Dont_Care);
927       --  Don't care about assigned values
928
929       Statements_Analyzed : Boolean := False;
930       --  Set True if at least some statement sequences get analyzed.
931       --  If False on exit, means we had a serious error that prevented
932       --  full analysis of the case statement, and as a result it is not
933       --  a good idea to output warning messages about unreachable code.
934
935       Save_Unblocked_Exit_Count : constant Nat := Unblocked_Exit_Count;
936       --  Recursively save value of this global, will be restored on exit
937
938       procedure Non_Static_Choice_Error (Choice : Node_Id);
939       --  Error routine invoked by the generic instantiation below when
940       --  the case statement has a non static choice.
941
942       procedure Process_Statements (Alternative : Node_Id);
943       --  Analyzes all the statements associated to a case alternative.
944       --  Needed by the generic instantiation below.
945
946       package Case_Choices_Processing is new
947         Generic_Choices_Processing
948           (Get_Alternatives          => Alternatives,
949            Get_Choices               => Discrete_Choices,
950            Process_Empty_Choice      => No_OP,
951            Process_Non_Static_Choice => Non_Static_Choice_Error,
952            Process_Associated_Node   => Process_Statements);
953       use Case_Choices_Processing;
954       --  Instantiation of the generic choice processing package
955
956       -----------------------------
957       -- Non_Static_Choice_Error --
958       -----------------------------
959
960       procedure Non_Static_Choice_Error (Choice : Node_Id) is
961       begin
962          Flag_Non_Static_Expr
963            ("choice given in case statement is not static!", Choice);
964       end Non_Static_Choice_Error;
965
966       ------------------------
967       -- Process_Statements --
968       ------------------------
969
970       procedure Process_Statements (Alternative : Node_Id) is
971          Choices : constant List_Id := Discrete_Choices (Alternative);
972          Ent     : Entity_Id;
973
974       begin
975          Unblocked_Exit_Count := Unblocked_Exit_Count + 1;
976          Statements_Analyzed := True;
977
978          --  An interesting optimization. If the case statement expression
979          --  is a simple entity, then we can set the current value within
980          --  an alternative if the alternative has one possible value.
981
982          --    case N is
983          --      when 1      => alpha
984          --      when 2 | 3  => beta
985          --      when others => gamma
986
987          --  Here we know that N is initially 1 within alpha, but for beta
988          --  and gamma, we do not know anything more about the initial value.
989
990          if Is_Entity_Name (Exp) then
991             Ent := Entity (Exp);
992
993             if Ekind (Ent) = E_Variable
994                  or else
995                Ekind (Ent) = E_In_Out_Parameter
996                  or else
997                Ekind (Ent) = E_Out_Parameter
998             then
999                if List_Length (Choices) = 1
1000                  and then Nkind (First (Choices)) in N_Subexpr
1001                  and then Compile_Time_Known_Value (First (Choices))
1002                then
1003                   Set_Current_Value (Entity (Exp), First (Choices));
1004                end if;
1005
1006                Analyze_Statements (Statements (Alternative));
1007
1008                --  After analyzing the case, set the current value to empty
1009                --  since we won't know what it is for the next alternative
1010                --  (unless reset by this same circuit), or after the case.
1011
1012                Set_Current_Value (Entity (Exp), Empty);
1013                return;
1014             end if;
1015          end if;
1016
1017          --  Case where expression is not an entity name of a variable
1018
1019          Analyze_Statements (Statements (Alternative));
1020       end Process_Statements;
1021
1022       --  Table to record choices. Put after subprograms since we make
1023       --  a call to Number_Of_Choices to get the right number of entries.
1024
1025       Case_Table : Choice_Table_Type (1 .. Number_Of_Choices (N));
1026       pragma Warnings (Off, Case_Table);
1027
1028    --  Start of processing for Analyze_Case_Statement
1029
1030    begin
1031       Unblocked_Exit_Count := 0;
1032       Exp := Expression (N);
1033       Analyze (Exp);
1034
1035       --  The expression must be of any discrete type. In rare cases, the
1036       --  expander constructs a case statement whose expression has a private
1037       --  type whose full view is discrete. This can happen when generating
1038       --  a stream operation for a variant type after the type is frozen,
1039       --  when the partial of view of the type of the discriminant is private.
1040       --  In that case, use the full view to analyze case alternatives.
1041
1042       if not Is_Overloaded (Exp)
1043         and then not Comes_From_Source (N)
1044         and then Is_Private_Type (Etype (Exp))
1045         and then Present (Full_View (Etype (Exp)))
1046         and then Is_Discrete_Type (Full_View (Etype (Exp)))
1047       then
1048          Resolve (Exp, Etype (Exp));
1049          Exp_Type := Full_View (Etype (Exp));
1050
1051       else
1052          Analyze_And_Resolve (Exp, Any_Discrete);
1053          Exp_Type := Etype (Exp);
1054       end if;
1055
1056       Check_Unset_Reference (Exp);
1057       Exp_Btype := Base_Type (Exp_Type);
1058
1059       --  The expression must be of a discrete type which must be determinable
1060       --  independently of the context in which the expression occurs, but
1061       --  using the fact that the expression must be of a discrete type.
1062       --  Moreover, the type this expression must not be a character literal
1063       --  (which is always ambiguous) or, for Ada-83, a generic formal type.
1064
1065       --  If error already reported by Resolve, nothing more to do
1066
1067       if Exp_Btype = Any_Discrete
1068         or else Exp_Btype = Any_Type
1069       then
1070          return;
1071
1072       elsif Exp_Btype = Any_Character then
1073          Error_Msg_N
1074            ("character literal as case expression is ambiguous", Exp);
1075          return;
1076
1077       elsif Ada_Version = Ada_83
1078         and then (Is_Generic_Type (Exp_Btype)
1079                     or else Is_Generic_Type (Root_Type (Exp_Btype)))
1080       then
1081          Error_Msg_N
1082            ("(Ada 83) case expression cannot be of a generic type", Exp);
1083          return;
1084       end if;
1085
1086       --  If the case expression is a formal object of mode in out, then
1087       --  treat it as having a nonstatic subtype by forcing use of the base
1088       --  type (which has to get passed to Check_Case_Choices below).  Also
1089       --  use base type when the case expression is parenthesized.
1090
1091       if Paren_Count (Exp) > 0
1092         or else (Is_Entity_Name (Exp)
1093                   and then Ekind (Entity (Exp)) = E_Generic_In_Out_Parameter)
1094       then
1095          Exp_Type := Exp_Btype;
1096       end if;
1097
1098       --  Call instantiated Analyze_Choices which does the rest of the work
1099
1100       Analyze_Choices
1101         (N, Exp_Type, Case_Table, Last_Choice, Dont_Care, Others_Present);
1102
1103       if Exp_Type = Universal_Integer and then not Others_Present then
1104          Error_Msg_N ("case on universal integer requires OTHERS choice", Exp);
1105       end if;
1106
1107       --  If all our exits were blocked by unconditional transfers of control,
1108       --  then the entire CASE statement acts as an unconditional transfer of
1109       --  control, so treat it like one, and check unreachable code. Skip this
1110       --  test if we had serious errors preventing any statement analysis.
1111
1112       if Unblocked_Exit_Count = 0 and then Statements_Analyzed then
1113          Unblocked_Exit_Count := Save_Unblocked_Exit_Count;
1114          Check_Unreachable_Code (N);
1115       else
1116          Unblocked_Exit_Count := Save_Unblocked_Exit_Count;
1117       end if;
1118
1119       if not Expander_Active
1120         and then Compile_Time_Known_Value (Expression (N))
1121         and then Serious_Errors_Detected = 0
1122       then
1123          declare
1124             Chosen : constant Node_Id := Find_Static_Alternative (N);
1125             Alt    : Node_Id;
1126
1127          begin
1128             Alt := First (Alternatives (N));
1129             while Present (Alt) loop
1130                if Alt /= Chosen then
1131                   Remove_Warning_Messages (Statements (Alt));
1132                end if;
1133
1134                Next (Alt);
1135             end loop;
1136          end;
1137       end if;
1138    end Analyze_Case_Statement;
1139
1140    ----------------------------
1141    -- Analyze_Exit_Statement --
1142    ----------------------------
1143
1144    --  If the exit includes a name, it must be the name of a currently open
1145    --  loop. Otherwise there must be an innermost open loop on the stack,
1146    --  to which the statement implicitly refers.
1147
1148    procedure Analyze_Exit_Statement (N : Node_Id) is
1149       Target   : constant Node_Id := Name (N);
1150       Cond     : constant Node_Id := Condition (N);
1151       Scope_Id : Entity_Id;
1152       U_Name   : Entity_Id;
1153       Kind     : Entity_Kind;
1154
1155    begin
1156       if No (Cond) then
1157          Check_Unreachable_Code (N);
1158       end if;
1159
1160       if Present (Target) then
1161          Analyze (Target);
1162          U_Name := Entity (Target);
1163
1164          if not In_Open_Scopes (U_Name) or else Ekind (U_Name) /= E_Loop then
1165             Error_Msg_N ("invalid loop name in exit statement", N);
1166             return;
1167          else
1168             Set_Has_Exit (U_Name);
1169          end if;
1170
1171       else
1172          U_Name := Empty;
1173       end if;
1174
1175       for J in reverse 0 .. Scope_Stack.Last loop
1176          Scope_Id := Scope_Stack.Table (J).Entity;
1177          Kind := Ekind (Scope_Id);
1178
1179          if Kind = E_Loop
1180            and then (No (Target) or else Scope_Id = U_Name) then
1181             Set_Has_Exit (Scope_Id);
1182             exit;
1183
1184          elsif Kind = E_Block
1185            or else Kind = E_Loop
1186            or else Kind = E_Return_Statement
1187          then
1188             null;
1189
1190          else
1191             Error_Msg_N
1192               ("cannot exit from program unit or accept statement", N);
1193             exit;
1194          end if;
1195       end loop;
1196
1197       --  Verify that if present the condition is a Boolean expression
1198
1199       if Present (Cond) then
1200          Analyze_And_Resolve (Cond, Any_Boolean);
1201          Check_Unset_Reference (Cond);
1202       end if;
1203    end Analyze_Exit_Statement;
1204
1205    ----------------------------
1206    -- Analyze_Goto_Statement --
1207    ----------------------------
1208
1209    procedure Analyze_Goto_Statement (N : Node_Id) is
1210       Label       : constant Node_Id := Name (N);
1211       Scope_Id    : Entity_Id;
1212       Label_Scope : Entity_Id;
1213       Label_Ent   : Entity_Id;
1214
1215    begin
1216       Check_Unreachable_Code (N);
1217       Kill_Current_Values (Last_Assignment_Only => True);
1218
1219       Analyze (Label);
1220       Label_Ent := Entity (Label);
1221
1222       --  Ignore previous error
1223
1224       if Label_Ent = Any_Id then
1225          return;
1226
1227       --  We just have a label as the target of a goto
1228
1229       elsif Ekind (Label_Ent) /= E_Label then
1230          Error_Msg_N ("target of goto statement must be a label", Label);
1231          return;
1232
1233       --  Check that the target of the goto is reachable according to Ada
1234       --  scoping rules. Note: the special gotos we generate for optimizing
1235       --  local handling of exceptions would violate these rules, but we mark
1236       --  such gotos as analyzed when built, so this code is never entered.
1237
1238       elsif not Reachable (Label_Ent) then
1239          Error_Msg_N ("target of goto statement is not reachable", Label);
1240          return;
1241       end if;
1242
1243       --  Here if goto passes initial validity checks
1244
1245       Label_Scope := Enclosing_Scope (Label_Ent);
1246
1247       for J in reverse 0 .. Scope_Stack.Last loop
1248          Scope_Id := Scope_Stack.Table (J).Entity;
1249
1250          if Label_Scope = Scope_Id
1251            or else (Ekind (Scope_Id) /= E_Block
1252                      and then Ekind (Scope_Id) /= E_Loop
1253                      and then Ekind (Scope_Id) /= E_Return_Statement)
1254          then
1255             if Scope_Id /= Label_Scope then
1256                Error_Msg_N
1257                  ("cannot exit from program unit or accept statement", N);
1258             end if;
1259
1260             return;
1261          end if;
1262       end loop;
1263
1264       raise Program_Error;
1265    end Analyze_Goto_Statement;
1266
1267    --------------------------
1268    -- Analyze_If_Statement --
1269    --------------------------
1270
1271    --  A special complication arises in the analysis of if statements
1272
1273    --  The expander has circuitry to completely delete code that it
1274    --  can tell will not be executed (as a result of compile time known
1275    --  conditions). In the analyzer, we ensure that code that will be
1276    --  deleted in this manner is analyzed but not expanded. This is
1277    --  obviously more efficient, but more significantly, difficulties
1278    --  arise if code is expanded and then eliminated (e.g. exception
1279    --  table entries disappear). Similarly, itypes generated in deleted
1280    --  code must be frozen from start, because the nodes on which they
1281    --  depend will not be available at the freeze point.
1282
1283    procedure Analyze_If_Statement (N : Node_Id) is
1284       E : Node_Id;
1285
1286       Save_Unblocked_Exit_Count : constant Nat := Unblocked_Exit_Count;
1287       --  Recursively save value of this global, will be restored on exit
1288
1289       Save_In_Deleted_Code : Boolean;
1290
1291       Del : Boolean := False;
1292       --  This flag gets set True if a True condition has been found,
1293       --  which means that remaining ELSE/ELSIF parts are deleted.
1294
1295       procedure Analyze_Cond_Then (Cnode : Node_Id);
1296       --  This is applied to either the N_If_Statement node itself or
1297       --  to an N_Elsif_Part node. It deals with analyzing the condition
1298       --  and the THEN statements associated with it.
1299
1300       -----------------------
1301       -- Analyze_Cond_Then --
1302       -----------------------
1303
1304       procedure Analyze_Cond_Then (Cnode : Node_Id) is
1305          Cond : constant Node_Id := Condition (Cnode);
1306          Tstm : constant List_Id := Then_Statements (Cnode);
1307
1308       begin
1309          Unblocked_Exit_Count := Unblocked_Exit_Count + 1;
1310          Analyze_And_Resolve (Cond, Any_Boolean);
1311          Check_Unset_Reference (Cond);
1312          Set_Current_Value_Condition (Cnode);
1313
1314          --  If already deleting, then just analyze then statements
1315
1316          if Del then
1317             Analyze_Statements (Tstm);
1318
1319          --  Compile time known value, not deleting yet
1320
1321          elsif Compile_Time_Known_Value (Cond) then
1322             Save_In_Deleted_Code := In_Deleted_Code;
1323
1324             --  If condition is True, then analyze the THEN statements
1325             --  and set no expansion for ELSE and ELSIF parts.
1326
1327             if Is_True (Expr_Value (Cond)) then
1328                Analyze_Statements (Tstm);
1329                Del := True;
1330                Expander_Mode_Save_And_Set (False);
1331                In_Deleted_Code := True;
1332
1333             --  If condition is False, analyze THEN with expansion off
1334
1335             else -- Is_False (Expr_Value (Cond))
1336                Expander_Mode_Save_And_Set (False);
1337                In_Deleted_Code := True;
1338                Analyze_Statements (Tstm);
1339                Expander_Mode_Restore;
1340                In_Deleted_Code := Save_In_Deleted_Code;
1341             end if;
1342
1343          --  Not known at compile time, not deleting, normal analysis
1344
1345          else
1346             Analyze_Statements (Tstm);
1347          end if;
1348       end Analyze_Cond_Then;
1349
1350    --  Start of Analyze_If_Statement
1351
1352    begin
1353       --  Initialize exit count for else statements. If there is no else
1354       --  part, this count will stay non-zero reflecting the fact that the
1355       --  uncovered else case is an unblocked exit.
1356
1357       Unblocked_Exit_Count := 1;
1358       Analyze_Cond_Then (N);
1359
1360       --  Now to analyze the elsif parts if any are present
1361
1362       if Present (Elsif_Parts (N)) then
1363          E := First (Elsif_Parts (N));
1364          while Present (E) loop
1365             Analyze_Cond_Then (E);
1366             Next (E);
1367          end loop;
1368       end if;
1369
1370       if Present (Else_Statements (N)) then
1371          Analyze_Statements (Else_Statements (N));
1372       end if;
1373
1374       --  If all our exits were blocked by unconditional transfers of control,
1375       --  then the entire IF statement acts as an unconditional transfer of
1376       --  control, so treat it like one, and check unreachable code.
1377
1378       if Unblocked_Exit_Count = 0 then
1379          Unblocked_Exit_Count := Save_Unblocked_Exit_Count;
1380          Check_Unreachable_Code (N);
1381       else
1382          Unblocked_Exit_Count := Save_Unblocked_Exit_Count;
1383       end if;
1384
1385       if Del then
1386          Expander_Mode_Restore;
1387          In_Deleted_Code := Save_In_Deleted_Code;
1388       end if;
1389
1390       if not Expander_Active
1391         and then Compile_Time_Known_Value (Condition (N))
1392         and then Serious_Errors_Detected = 0
1393       then
1394          if Is_True (Expr_Value (Condition (N))) then
1395             Remove_Warning_Messages (Else_Statements (N));
1396
1397             if Present (Elsif_Parts (N)) then
1398                E := First (Elsif_Parts (N));
1399                while Present (E) loop
1400                   Remove_Warning_Messages (Then_Statements (E));
1401                   Next (E);
1402                end loop;
1403             end if;
1404
1405          else
1406             Remove_Warning_Messages (Then_Statements (N));
1407          end if;
1408       end if;
1409    end Analyze_If_Statement;
1410
1411    ----------------------------------------
1412    -- Analyze_Implicit_Label_Declaration --
1413    ----------------------------------------
1414
1415    --  An implicit label declaration is generated in the innermost
1416    --  enclosing declarative part. This is done for labels as well as
1417    --  block and loop names.
1418
1419    --  Note: any changes in this routine may need to be reflected in
1420    --  Analyze_Label_Entity.
1421
1422    procedure Analyze_Implicit_Label_Declaration (N : Node_Id) is
1423       Id : constant Node_Id := Defining_Identifier (N);
1424    begin
1425       Enter_Name          (Id);
1426       Set_Ekind           (Id, E_Label);
1427       Set_Etype           (Id, Standard_Void_Type);
1428       Set_Enclosing_Scope (Id, Current_Scope);
1429    end Analyze_Implicit_Label_Declaration;
1430
1431    ------------------------------
1432    -- Analyze_Iteration_Scheme --
1433    ------------------------------
1434
1435    procedure Analyze_Iteration_Scheme (N : Node_Id) is
1436
1437       procedure Process_Bounds (R : Node_Id);
1438       --  If the iteration is given by a range, create temporaries and
1439       --  assignment statements block to capture the bounds and perform
1440       --  required finalization actions in case a bound includes a function
1441       --  call that uses the temporary stack. We first pre-analyze a copy of
1442       --  the range in order to determine the expected type, and analyze and
1443       --  resolve the original bounds.
1444
1445       procedure Check_Controlled_Array_Attribute (DS : Node_Id);
1446       --  If the bounds are given by a 'Range reference on a function call
1447       --  that returns a controlled array, introduce an explicit declaration
1448       --  to capture the bounds, so that the function result can be finalized
1449       --  in timely fashion.
1450
1451       --------------------
1452       -- Process_Bounds --
1453       --------------------
1454
1455       procedure Process_Bounds (R : Node_Id) is
1456          Loc          : constant Source_Ptr := Sloc (N);
1457          R_Copy       : constant Node_Id := New_Copy_Tree (R);
1458          Lo           : constant Node_Id := Low_Bound  (R);
1459          Hi           : constant Node_Id := High_Bound (R);
1460          New_Lo_Bound : Node_Id := Empty;
1461          New_Hi_Bound : Node_Id := Empty;
1462          Typ          : Entity_Id;
1463          Save_Analysis : Boolean;
1464
1465          function One_Bound
1466            (Original_Bound : Node_Id;
1467             Analyzed_Bound : Node_Id) return Node_Id;
1468          --  Capture value of bound and return captured value
1469
1470          ---------------
1471          -- One_Bound --
1472          ---------------
1473
1474          function One_Bound
1475            (Original_Bound : Node_Id;
1476             Analyzed_Bound : Node_Id) return Node_Id
1477          is
1478             Assign : Node_Id;
1479             Id     : Entity_Id;
1480             Decl   : Node_Id;
1481
1482          begin
1483             --  If the bound is a constant or an object, no need for a separate
1484             --  declaration. If the bound is the result of previous expansion
1485             --  it is already analyzed and should not be modified. Note that
1486             --  the Bound will be resolved later, if needed, as part of the
1487             --  call to Make_Index (literal bounds may need to be resolved to
1488             --  type Integer).
1489
1490             if Analyzed (Original_Bound) then
1491                return Original_Bound;
1492
1493             elsif Nkind_In (Analyzed_Bound, N_Integer_Literal,
1494                                             N_Character_Literal)
1495               or else Is_Entity_Name (Analyzed_Bound)
1496             then
1497                Analyze_And_Resolve (Original_Bound, Typ);
1498                return Original_Bound;
1499             end if;
1500
1501             --  Here we need to capture the value
1502
1503             Analyze_And_Resolve (Original_Bound, Typ);
1504
1505             Id :=
1506               Make_Defining_Identifier (Loc,
1507                 Chars => New_Internal_Name ('S'));
1508
1509             --  Normally, the best approach is simply to generate a constant
1510             --  declaration that captures the bound. However, there is a nasty
1511             --  case where this is wrong. If the bound is complex, and has a
1512             --  possible use of the secondary stack, we need to generate a
1513             --  separate assignment statement to ensure the creation of a block
1514             --  which will release the secondary stack.
1515
1516             --  We prefer the constant declaration, since it leaves us with a
1517             --  proper trace of the value, useful in optimizations that get rid
1518             --  of junk range checks.
1519
1520             --  Probably we want something like the Side_Effect_Free routine
1521             --  in Exp_Util, but for now, we just optimize the cases of 'Last
1522             --  and 'First applied to an entity, since these are the important
1523             --  cases for range check optimizations.
1524
1525             if Nkind (Original_Bound) = N_Attribute_Reference
1526               and then (Attribute_Name (Original_Bound) = Name_First
1527                           or else
1528                         Attribute_Name (Original_Bound) = Name_Last)
1529               and then Is_Entity_Name (Prefix (Original_Bound))
1530             then
1531                Decl :=
1532                  Make_Object_Declaration (Loc,
1533                    Defining_Identifier => Id,
1534                    Constant_Present    => True,
1535                    Object_Definition   => New_Occurrence_Of (Typ, Loc),
1536                    Expression          => Relocate_Node (Original_Bound));
1537
1538                Insert_Before (Parent (N), Decl);
1539                Analyze (Decl);
1540                Rewrite (Original_Bound, New_Occurrence_Of (Id, Loc));
1541                return Expression (Decl);
1542             end if;
1543
1544             --  Here we make a declaration with a separate assignment statement
1545
1546             Decl :=
1547               Make_Object_Declaration (Loc,
1548                 Defining_Identifier => Id,
1549                 Object_Definition   => New_Occurrence_Of (Typ, Loc));
1550
1551             Insert_Before (Parent (N), Decl);
1552             Analyze (Decl);
1553
1554             Assign :=
1555               Make_Assignment_Statement (Loc,
1556                 Name        => New_Occurrence_Of (Id, Loc),
1557                 Expression  => Relocate_Node (Original_Bound));
1558
1559             Insert_Before (Parent (N), Assign);
1560             Analyze (Assign);
1561
1562             Rewrite (Original_Bound, New_Occurrence_Of (Id, Loc));
1563
1564             if Nkind (Assign) = N_Assignment_Statement then
1565                return Expression (Assign);
1566             else
1567                return Original_Bound;
1568             end if;
1569          end One_Bound;
1570
1571       --  Start of processing for Process_Bounds
1572
1573       begin
1574          --  Determine expected type of range by analyzing separate copy
1575          --  Do the analysis and resolution of the copy of the bounds with
1576          --  expansion disabled, to prevent the generation of finalization
1577          --  actions on each bound. This prevents memory leaks when the
1578          --  bounds contain calls to functions returning controlled arrays.
1579
1580          Set_Parent (R_Copy, Parent (R));
1581          Save_Analysis := Full_Analysis;
1582          Full_Analysis := False;
1583          Expander_Mode_Save_And_Set (False);
1584
1585          Analyze (R_Copy);
1586
1587          if Is_Overloaded (R_Copy) then
1588
1589             --  Apply preference rules for range of predefined integer types,
1590             --  or diagnose true ambiguity.
1591
1592             declare
1593                I     : Interp_Index;
1594                It    : Interp;
1595                Found : Entity_Id := Empty;
1596
1597             begin
1598                Get_First_Interp (R_Copy, I, It);
1599                while Present (It.Typ) loop
1600                   if Is_Discrete_Type (It.Typ) then
1601                      if No (Found) then
1602                         Found := It.Typ;
1603                      else
1604                         if Scope (Found) = Standard_Standard then
1605                            null;
1606
1607                         elsif Scope (It.Typ) = Standard_Standard then
1608                            Found := It.Typ;
1609
1610                         else
1611                            --  Both of them are user-defined
1612
1613                            Error_Msg_N
1614                              ("ambiguous bounds in range of iteration",
1615                                R_Copy);
1616                            Error_Msg_N ("\possible interpretations:", R_Copy);
1617                            Error_Msg_NE ("\\} ", R_Copy, Found);
1618                            Error_Msg_NE ("\\} ", R_Copy, It.Typ);
1619                            exit;
1620                         end if;
1621                      end if;
1622                   end if;
1623
1624                   Get_Next_Interp (I, It);
1625                end loop;
1626             end;
1627          end if;
1628
1629          Resolve (R_Copy);
1630          Expander_Mode_Restore;
1631          Full_Analysis := Save_Analysis;
1632
1633          Typ := Etype (R_Copy);
1634
1635          --  If the type of the discrete range is Universal_Integer, then
1636          --  the bound's type must be resolved to Integer, and any object
1637          --  used to hold the bound must also have type Integer, unless the
1638          --  literal bounds are constant-folded expressions that carry a user-
1639          --  defined type.
1640
1641          if Typ = Universal_Integer then
1642             if Nkind (Lo) = N_Integer_Literal
1643               and then Present (Etype (Lo))
1644               and then Scope (Etype (Lo)) /= Standard_Standard
1645             then
1646                Typ := Etype (Lo);
1647
1648             elsif Nkind (Hi) = N_Integer_Literal
1649               and then Present (Etype (Hi))
1650               and then Scope (Etype (Hi)) /= Standard_Standard
1651             then
1652                Typ := Etype (Hi);
1653
1654             else
1655                Typ := Standard_Integer;
1656             end if;
1657          end if;
1658
1659          Set_Etype (R, Typ);
1660
1661          New_Lo_Bound := One_Bound (Lo, Low_Bound  (R_Copy));
1662          New_Hi_Bound := One_Bound (Hi, High_Bound (R_Copy));
1663
1664          --  Propagate staticness to loop range itself, in case the
1665          --  corresponding subtype is static.
1666
1667          if New_Lo_Bound /= Lo
1668            and then Is_Static_Expression (New_Lo_Bound)
1669          then
1670             Rewrite  (Low_Bound (R), New_Copy (New_Lo_Bound));
1671          end if;
1672
1673          if New_Hi_Bound /= Hi
1674            and then Is_Static_Expression (New_Hi_Bound)
1675          then
1676             Rewrite (High_Bound (R), New_Copy (New_Hi_Bound));
1677          end if;
1678       end Process_Bounds;
1679
1680       --------------------------------------
1681       -- Check_Controlled_Array_Attribute --
1682       --------------------------------------
1683
1684       procedure Check_Controlled_Array_Attribute (DS : Node_Id) is
1685       begin
1686          if Nkind (DS) = N_Attribute_Reference
1687             and then Is_Entity_Name (Prefix (DS))
1688             and then Ekind (Entity (Prefix (DS))) = E_Function
1689             and then Is_Array_Type (Etype (Entity (Prefix (DS))))
1690             and then
1691               Is_Controlled (
1692                 Component_Type (Etype (Entity (Prefix (DS)))))
1693             and then Expander_Active
1694          then
1695             declare
1696                Loc  : constant Source_Ptr := Sloc (N);
1697                Arr  : constant Entity_Id :=
1698                         Etype (Entity (Prefix (DS)));
1699                Indx : constant Entity_Id :=
1700                         Base_Type (Etype (First_Index (Arr)));
1701                Subt : constant Entity_Id :=
1702                         Make_Defining_Identifier
1703                           (Loc, New_Internal_Name ('S'));
1704                Decl : Node_Id;
1705
1706             begin
1707                Decl :=
1708                  Make_Subtype_Declaration (Loc,
1709                    Defining_Identifier => Subt,
1710                    Subtype_Indication  =>
1711                       Make_Subtype_Indication (Loc,
1712                         Subtype_Mark  => New_Reference_To (Indx, Loc),
1713                         Constraint =>
1714                           Make_Range_Constraint (Loc,
1715                             Relocate_Node (DS))));
1716                Insert_Before (Parent (N), Decl);
1717                Analyze (Decl);
1718
1719                Rewrite (DS,
1720                   Make_Attribute_Reference (Loc,
1721                     Prefix => New_Reference_To (Subt, Loc),
1722                     Attribute_Name => Attribute_Name (DS)));
1723                Analyze (DS);
1724             end;
1725          end if;
1726       end Check_Controlled_Array_Attribute;
1727
1728    --  Start of processing for Analyze_Iteration_Scheme
1729
1730    begin
1731       --  For an infinite loop, there is no iteration scheme
1732
1733       if No (N) then
1734          return;
1735
1736       else
1737          declare
1738             Cond : constant Node_Id := Condition (N);
1739
1740          begin
1741             --  For WHILE loop, verify that the condition is a Boolean
1742             --  expression and resolve and check it.
1743
1744             if Present (Cond) then
1745                Analyze_And_Resolve (Cond, Any_Boolean);
1746                Check_Unset_Reference (Cond);
1747                Set_Current_Value_Condition (N);
1748                return;
1749
1750             --  Else we have a FOR loop
1751
1752             else
1753                declare
1754                   LP : constant Node_Id   := Loop_Parameter_Specification (N);
1755                   Id : constant Entity_Id := Defining_Identifier (LP);
1756                   DS : constant Node_Id   := Discrete_Subtype_Definition (LP);
1757
1758                begin
1759                   Enter_Name (Id);
1760
1761                   --  We always consider the loop variable to be referenced,
1762                   --  since the loop may be used just for counting purposes.
1763
1764                   Generate_Reference (Id, N, ' ');
1765
1766                   --  Check for case of loop variable hiding a local
1767                   --  variable (used later on to give a nice warning
1768                   --  if the hidden variable is never assigned).
1769
1770                   declare
1771                      H : constant Entity_Id := Homonym (Id);
1772                   begin
1773                      if Present (H)
1774                        and then Enclosing_Dynamic_Scope (H) =
1775                                 Enclosing_Dynamic_Scope (Id)
1776                        and then Ekind (H) = E_Variable
1777                        and then Is_Discrete_Type (Etype (H))
1778                      then
1779                         Set_Hiding_Loop_Variable (H, Id);
1780                      end if;
1781                   end;
1782
1783                   --  Now analyze the subtype definition. If it is
1784                   --  a range, create temporaries for bounds.
1785
1786                   if Nkind (DS) = N_Range
1787                     and then Expander_Active
1788                   then
1789                      Process_Bounds (DS);
1790                   else
1791                      Analyze (DS);
1792                   end if;
1793
1794                   if DS = Error then
1795                      return;
1796                   end if;
1797
1798                   --  The subtype indication may denote the completion
1799                   --  of an incomplete type declaration.
1800
1801                   if Is_Entity_Name (DS)
1802                     and then Present (Entity (DS))
1803                     and then Is_Type (Entity (DS))
1804                     and then Ekind (Entity (DS)) = E_Incomplete_Type
1805                   then
1806                      Set_Entity (DS, Get_Full_View (Entity (DS)));
1807                      Set_Etype  (DS, Entity (DS));
1808                   end if;
1809
1810                   if not Is_Discrete_Type (Etype (DS)) then
1811                      Wrong_Type (DS, Any_Discrete);
1812                      Set_Etype (DS, Any_Type);
1813                   end if;
1814
1815                   Check_Controlled_Array_Attribute (DS);
1816
1817                   Make_Index (DS, LP);
1818
1819                   Set_Ekind          (Id, E_Loop_Parameter);
1820                   Set_Etype          (Id, Etype (DS));
1821                   Set_Is_Known_Valid (Id, True);
1822
1823                   --  The loop is not a declarative part, so the only entity
1824                   --  declared "within" must be frozen explicitly.
1825
1826                   declare
1827                      Flist : constant List_Id := Freeze_Entity (Id, Sloc (N));
1828                   begin
1829                      if Is_Non_Empty_List (Flist) then
1830                         Insert_Actions (N, Flist);
1831                      end if;
1832                   end;
1833
1834                   --  Check for null or possibly null range and issue warning.
1835                   --  We suppress such messages in generic templates and
1836                   --  instances, because in practice they tend to be dubious
1837                   --  in these cases.
1838
1839                   if Nkind (DS) = N_Range
1840                     and then Comes_From_Source (N)
1841                   then
1842                      declare
1843                         L : constant Node_Id := Low_Bound  (DS);
1844                         H : constant Node_Id := High_Bound (DS);
1845
1846                         Llo : Uint;
1847                         Lhi : Uint;
1848                         LOK : Boolean;
1849                         Hlo : Uint;
1850                         Hhi : Uint;
1851                         HOK : Boolean;
1852
1853                         pragma Warnings (Off, Hlo);
1854
1855                      begin
1856                         Determine_Range (L, LOK, Llo, Lhi);
1857                         Determine_Range (H, HOK, Hlo, Hhi);
1858
1859                         --  If range of loop is null, issue warning
1860
1861                         if (LOK and HOK) and then Llo > Hhi then
1862
1863                            --  Suppress the warning if inside a generic
1864                            --  template or instance, since in practice
1865                            --  they tend to be dubious in these cases since
1866                            --  they can result from intended parametrization.
1867
1868                            if not Inside_A_Generic
1869                               and then not In_Instance
1870                            then
1871                               Error_Msg_N
1872                                 ("?loop range is null, loop will not execute",
1873                                  DS);
1874                            end if;
1875
1876                            --  Since we know the range of the loop is null,
1877                            --  set the appropriate flag to suppress any
1878                            --  warnings that would otherwise be issued in
1879                            --  the body of the loop that will not execute.
1880                            --  We do this even in the generic case, since
1881                            --  if it is dubious to warn on the null loop
1882                            --  itself, it is certainly dubious to warn for
1883                            --  conditions that occur inside it!
1884
1885                            Set_Is_Null_Loop (Parent (N));
1886
1887                         --  The other case for a warning is a reverse loop
1888                         --  where the upper bound is the integer literal
1889                         --  zero or one, and the lower bound can be positive.
1890
1891                         --  For example, we have
1892
1893                         --     for J in reverse N .. 1 loop
1894
1895                         --  In practice, this is very likely to be a case
1896                         --  of reversing the bounds incorrectly in the range.
1897
1898                         elsif Reverse_Present (LP)
1899                           and then Nkind (Original_Node (H)) =
1900                                                           N_Integer_Literal
1901                           and then (Intval (H) = Uint_0
1902                                       or else
1903                                     Intval (H) = Uint_1)
1904                           and then Lhi > Hhi
1905                         then
1906                            Error_Msg_N ("?loop range may be null", DS);
1907                            Error_Msg_N ("\?bounds may be wrong way round", DS);
1908                         end if;
1909                      end;
1910                   end if;
1911                end;
1912             end if;
1913          end;
1914       end if;
1915    end Analyze_Iteration_Scheme;
1916
1917    -------------------
1918    -- Analyze_Label --
1919    -------------------
1920
1921    --  Note: the semantic work required for analyzing labels (setting them as
1922    --  reachable) was done in a prepass through the statements in the block,
1923    --  so that forward gotos would be properly handled. See Analyze_Statements
1924    --  for further details. The only processing required here is to deal with
1925    --  optimizations that depend on an assumption of sequential control flow,
1926    --  since of course the occurrence of a label breaks this assumption.
1927
1928    procedure Analyze_Label (N : Node_Id) is
1929       pragma Warnings (Off, N);
1930    begin
1931       Kill_Current_Values;
1932    end Analyze_Label;
1933
1934    --------------------------
1935    -- Analyze_Label_Entity --
1936    --------------------------
1937
1938    procedure Analyze_Label_Entity (E : Entity_Id) is
1939    begin
1940       Set_Ekind           (E, E_Label);
1941       Set_Etype           (E, Standard_Void_Type);
1942       Set_Enclosing_Scope (E, Current_Scope);
1943       Set_Reachable       (E, True);
1944    end Analyze_Label_Entity;
1945
1946    ----------------------------
1947    -- Analyze_Loop_Statement --
1948    ----------------------------
1949
1950    procedure Analyze_Loop_Statement (N : Node_Id) is
1951       Loop_Statement : constant Node_Id := N;
1952
1953       Id   : constant Node_Id := Identifier (Loop_Statement);
1954       Iter : constant Node_Id := Iteration_Scheme (Loop_Statement);
1955       Ent  : Entity_Id;
1956
1957    begin
1958       if Present (Id) then
1959
1960          --  Make name visible, e.g. for use in exit statements. Loop
1961          --  labels are always considered to be referenced.
1962
1963          Analyze (Id);
1964          Ent := Entity (Id);
1965
1966          --  Guard against serious error (typically, a scope mismatch when
1967          --  semantic analysis is requested) by creating loop entity to
1968          --  continue analysis.
1969
1970          if No (Ent) then
1971             if Total_Errors_Detected /= 0 then
1972                Ent :=
1973                  New_Internal_Entity
1974                    (E_Loop, Current_Scope, Sloc (Loop_Statement), 'L');
1975             else
1976                raise Program_Error;
1977             end if;
1978
1979          else
1980             Generate_Reference  (Ent, Loop_Statement, ' ');
1981             Generate_Definition (Ent);
1982
1983             --  If we found a label, mark its type. If not, ignore it, since it
1984             --  means we have a conflicting declaration, which would already
1985             --  have been diagnosed at declaration time. Set Label_Construct
1986             --  of the implicit label declaration, which is not created by the
1987             --  parser for generic units.
1988
1989             if Ekind (Ent) = E_Label then
1990                Set_Ekind (Ent, E_Loop);
1991
1992                if Nkind (Parent (Ent)) = N_Implicit_Label_Declaration then
1993                   Set_Label_Construct (Parent (Ent), Loop_Statement);
1994                end if;
1995             end if;
1996          end if;
1997
1998       --  Case of no identifier present
1999
2000       else
2001          Ent :=
2002            New_Internal_Entity
2003              (E_Loop, Current_Scope, Sloc (Loop_Statement), 'L');
2004          Set_Etype (Ent,  Standard_Void_Type);
2005          Set_Parent (Ent, Loop_Statement);
2006       end if;
2007
2008       --  Kill current values on entry to loop, since statements in body of
2009       --  loop may have been executed before the loop is entered. Similarly we
2010       --  kill values after the loop, since we do not know that the body of the
2011       --  loop was executed.
2012
2013       Kill_Current_Values;
2014       Push_Scope (Ent);
2015       Analyze_Iteration_Scheme (Iter);
2016       Analyze_Statements (Statements (Loop_Statement));
2017       Process_End_Label (Loop_Statement, 'e', Ent);
2018       End_Scope;
2019       Kill_Current_Values;
2020       Check_Infinite_Loop_Warning (N);
2021
2022       --  Code after loop is unreachable if the loop has no WHILE or FOR
2023       --  and contains no EXIT statements within the body of the loop.
2024
2025       if No (Iter) and then not Has_Exit (Ent) then
2026          Check_Unreachable_Code (N);
2027       end if;
2028    end Analyze_Loop_Statement;
2029
2030    ----------------------------
2031    -- Analyze_Null_Statement --
2032    ----------------------------
2033
2034    --  Note: the semantics of the null statement is implemented by a single
2035    --  null statement, too bad everything isn't as simple as this!
2036
2037    procedure Analyze_Null_Statement (N : Node_Id) is
2038       pragma Warnings (Off, N);
2039    begin
2040       null;
2041    end Analyze_Null_Statement;
2042
2043    ------------------------
2044    -- Analyze_Statements --
2045    ------------------------
2046
2047    procedure Analyze_Statements (L : List_Id) is
2048       S   : Node_Id;
2049       Lab : Entity_Id;
2050
2051    begin
2052       --  The labels declared in the statement list are reachable from
2053       --  statements in the list. We do this as a prepass so that any
2054       --  goto statement will be properly flagged if its target is not
2055       --  reachable. This is not required, but is nice behavior!
2056
2057       S := First (L);
2058       while Present (S) loop
2059          if Nkind (S) = N_Label then
2060             Analyze (Identifier (S));
2061             Lab := Entity (Identifier (S));
2062
2063             --  If we found a label mark it as reachable
2064
2065             if Ekind (Lab) = E_Label then
2066                Generate_Definition (Lab);
2067                Set_Reachable (Lab);
2068
2069                if Nkind (Parent (Lab)) = N_Implicit_Label_Declaration then
2070                   Set_Label_Construct (Parent (Lab), S);
2071                end if;
2072
2073             --  If we failed to find a label, it means the implicit declaration
2074             --  of the label was hidden.  A for-loop parameter can do this to
2075             --  a label with the same name inside the loop, since the implicit
2076             --  label declaration is in the innermost enclosing body or block
2077             --  statement.
2078
2079             else
2080                Error_Msg_Sloc := Sloc (Lab);
2081                Error_Msg_N
2082                  ("implicit label declaration for & is hidden#",
2083                   Identifier (S));
2084             end if;
2085          end if;
2086
2087          Next (S);
2088       end loop;
2089
2090       --  Perform semantic analysis on all statements
2091
2092       Conditional_Statements_Begin;
2093
2094       S := First (L);
2095       while Present (S) loop
2096          Analyze (S);
2097          Next (S);
2098       end loop;
2099
2100       Conditional_Statements_End;
2101
2102       --  Make labels unreachable. Visibility is not sufficient, because
2103       --  labels in one if-branch for example are not reachable from the
2104       --  other branch, even though their declarations are in the enclosing
2105       --  declarative part.
2106
2107       S := First (L);
2108       while Present (S) loop
2109          if Nkind (S) = N_Label then
2110             Set_Reachable (Entity (Identifier (S)), False);
2111          end if;
2112
2113          Next (S);
2114       end loop;
2115    end Analyze_Statements;
2116
2117    ----------------------------
2118    -- Check_Unreachable_Code --
2119    ----------------------------
2120
2121    procedure Check_Unreachable_Code (N : Node_Id) is
2122       Error_Loc : Source_Ptr;
2123       P         : Node_Id;
2124
2125    begin
2126       if Is_List_Member (N)
2127         and then Comes_From_Source (N)
2128       then
2129          declare
2130             Nxt : Node_Id;
2131
2132          begin
2133             Nxt := Original_Node (Next (N));
2134
2135             --  If a label follows us, then we never have dead code, since
2136             --  someone could branch to the label, so we just ignore it.
2137
2138             if Nkind (Nxt) = N_Label then
2139                return;
2140
2141             --  Otherwise see if we have a real statement following us
2142
2143             elsif Present (Nxt)
2144               and then Comes_From_Source (Nxt)
2145               and then Is_Statement (Nxt)
2146             then
2147                --  Special very annoying exception. If we have a return that
2148                --  follows a raise, then we allow it without a warning, since
2149                --  the Ada RM annoyingly requires a useless return here!
2150
2151                if Nkind (Original_Node (N)) /= N_Raise_Statement
2152                  or else Nkind (Nxt) /= N_Simple_Return_Statement
2153                then
2154                   --  The rather strange shenanigans with the warning message
2155                   --  here reflects the fact that Kill_Dead_Code is very good
2156                   --  at removing warnings in deleted code, and this is one
2157                   --  warning we would prefer NOT to have removed.
2158
2159                   Error_Loc := Sloc (Nxt);
2160
2161                   --  If we have unreachable code, analyze and remove the
2162                   --  unreachable code, since it is useless and we don't
2163                   --  want to generate junk warnings.
2164
2165                   --  We skip this step if we are not in code generation mode.
2166                   --  This is the one case where we remove dead code in the
2167                   --  semantics as opposed to the expander, and we do not want
2168                   --  to remove code if we are not in code generation mode,
2169                   --  since this messes up the ASIS trees.
2170
2171                   --  Note that one might react by moving the whole circuit to
2172                   --  exp_ch5, but then we lose the warning in -gnatc mode.
2173
2174                   if Operating_Mode = Generate_Code then
2175                      loop
2176                         Nxt := Next (N);
2177
2178                         --  Quit deleting when we have nothing more to delete
2179                         --  or if we hit a label (since someone could transfer
2180                         --  control to a label, so we should not delete it).
2181
2182                         exit when No (Nxt) or else Nkind (Nxt) = N_Label;
2183
2184                         --  Statement/declaration is to be deleted
2185
2186                         Analyze (Nxt);
2187                         Remove (Nxt);
2188                         Kill_Dead_Code (Nxt);
2189                      end loop;
2190                   end if;
2191
2192                   --  Now issue the warning
2193
2194                   Error_Msg ("?unreachable code!", Error_Loc);
2195                end if;
2196
2197             --  If the unconditional transfer of control instruction is
2198             --  the last statement of a sequence, then see if our parent
2199             --  is one of the constructs for which we count unblocked exits,
2200             --  and if so, adjust the count.
2201
2202             else
2203                P := Parent (N);
2204
2205                --  Statements in THEN part or ELSE part of IF statement
2206
2207                if Nkind (P) = N_If_Statement then
2208                   null;
2209
2210                --  Statements in ELSIF part of an IF statement
2211
2212                elsif Nkind (P) = N_Elsif_Part then
2213                   P := Parent (P);
2214                   pragma Assert (Nkind (P) = N_If_Statement);
2215
2216                --  Statements in CASE statement alternative
2217
2218                elsif Nkind (P) = N_Case_Statement_Alternative then
2219                   P := Parent (P);
2220                   pragma Assert (Nkind (P) = N_Case_Statement);
2221
2222                --  Statements in body of block
2223
2224                elsif Nkind (P) = N_Handled_Sequence_Of_Statements
2225                  and then Nkind (Parent (P)) = N_Block_Statement
2226                then
2227                   null;
2228
2229                --  Statements in exception handler in a block
2230
2231                elsif Nkind (P) = N_Exception_Handler
2232                  and then Nkind (Parent (P)) = N_Handled_Sequence_Of_Statements
2233                  and then Nkind (Parent (Parent (P))) = N_Block_Statement
2234                then
2235                   null;
2236
2237                --  None of these cases, so return
2238
2239                else
2240                   return;
2241                end if;
2242
2243                --  This was one of the cases we are looking for (i.e. the
2244                --  parent construct was IF, CASE or block) so decrement count.
2245
2246                Unblocked_Exit_Count := Unblocked_Exit_Count - 1;
2247             end if;
2248          end;
2249       end if;
2250    end Check_Unreachable_Code;
2251
2252 end Sem_Ch5;