OSDN Git Service

Daily bump.
[pf3gnuchains/gcc-fork.git] / gcc / ada / sem_elab.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             S E M _ E L A B                              --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1997-2005 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 2,  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 COPYING.  If not, write --
19 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
20 -- MA 02111-1307, USA.                                                      --
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 Checks;   use Checks;
29 with Debug;    use Debug;
30 with Einfo;    use Einfo;
31 with Elists;   use Elists;
32 with Errout;   use Errout;
33 with Exp_Tss;  use Exp_Tss;
34 with Exp_Util; use Exp_Util;
35 with Expander; use Expander;
36 with Fname;    use Fname;
37 with Lib;      use Lib;
38 with Lib.Load; use Lib.Load;
39 with Namet;    use Namet;
40 with Nlists;   use Nlists;
41 with Nmake;    use Nmake;
42 with Opt;      use Opt;
43 with Output;   use Output;
44 with Restrict; use Restrict;
45 with Rident;   use Rident;
46 with Sem;      use Sem;
47 with Sem_Cat;  use Sem_Cat;
48 with Sem_Ch7;  use Sem_Ch7;
49 with Sem_Ch8;  use Sem_Ch8;
50 with Sem_Res;  use Sem_Res;
51 with Sem_Util; use Sem_Util;
52 with Sinfo;    use Sinfo;
53 with Sinput;   use Sinput;
54 with Snames;   use Snames;
55 with Stand;    use Stand;
56 with Table;
57 with Tbuild;   use Tbuild;
58 with Uname;    use Uname;
59
60 package body Sem_Elab is
61
62    --  The following table records the recursive call chain for output
63    --  in the Output routine. Each entry records the call node and the
64    --  entity of the called routine. The number of entries in the table
65    --  (i.e. the value of Elab_Call.Last) indicates the current depth
66    --  of recursion and is used to identify the outer level.
67
68    type Elab_Call_Entry is record
69       Cloc : Source_Ptr;
70       Ent  : Entity_Id;
71    end record;
72
73    package Elab_Call is new Table.Table (
74      Table_Component_Type => Elab_Call_Entry,
75      Table_Index_Type     => Int,
76      Table_Low_Bound      => 1,
77      Table_Initial        => 50,
78      Table_Increment      => 100,
79      Table_Name           => "Elab_Call");
80
81    --  This table is initialized at the start of each outer level call.
82    --  It holds the entities for all subprograms that have been examined
83    --  for this particular outer level call, and is used to prevent both
84    --  infinite recursion, and useless reanalysis of bodies already seen
85
86    package Elab_Visited is new Table.Table (
87      Table_Component_Type => Entity_Id,
88      Table_Index_Type     => Int,
89      Table_Low_Bound      => 1,
90      Table_Initial        => 200,
91      Table_Increment      => 100,
92      Table_Name           => "Elab_Visited");
93
94    --  This table stores calls to Check_Internal_Call that are delayed
95    --  until all generics are instantiated, and in particular that all
96    --  generic bodies have been inserted. We need to delay, because we
97    --  need to be able to look through the inserted bodies.
98
99    type Delay_Element is record
100       N : Node_Id;
101       --  The parameter N from the call to Check_Internal_Call. Note that
102       --  this node may get rewritten over the delay period by expansion
103       --  in the call case (but not in the instantiation case).
104
105       E : Entity_Id;
106       --  The parameter E from the call to Check_Internal_Call
107
108       Orig_Ent : Entity_Id;
109       --  The parameter Orig_Ent from the call to Check_Internal_Call
110
111       Curscop : Entity_Id;
112       --  The current scope of the call. This is restored when we complete
113       --  the delayed call, so that we do this in the right scope.
114
115       From_Elab_Code : Boolean;
116       --  Save indication of whether this call is from elaboration code
117
118       Outer_Scope : Entity_Id;
119       --  Save scope of outer level call
120
121    end record;
122
123    package Delay_Check is new Table.Table (
124      Table_Component_Type => Delay_Element,
125      Table_Index_Type     => Int,
126      Table_Low_Bound      => 1,
127      Table_Initial        => 1000,
128      Table_Increment      => 100,
129      Table_Name           => "Delay_Check");
130
131    C_Scope : Entity_Id;
132    --  Top level scope of current scope. We need to compute this only
133    --  once at the outer level, i.e. for a call to Check_Elab_Call from
134    --  outside this unit.
135
136    Outer_Level_Sloc : Source_Ptr;
137    --  Save Sloc value for outer level call node for comparisons of source
138    --  locations. A body is too late if it appears after the *outer* level
139    --  call, not the particular call that is being analyzed.
140
141    From_Elab_Code : Boolean;
142    --  This flag shows whether the outer level call currently being examined
143    --  is or is not in elaboration code. We are only interested in calls to
144    --  routines in other units if this flag is True.
145
146    In_Task_Activation : Boolean := False;
147    --  This flag indicates whether we are performing elaboration checks on
148    --  task procedures, at the point of activation. If true, we do not trace
149    --  internal calls in these procedures, because all local bodies are known
150    --  to be elaborated.
151
152    Delaying_Elab_Checks : Boolean := True;
153    --  This is set True till the compilation is complete, including the
154    --  insertion of all instance bodies. Then when Check_Elab_Calls is
155    --  called, the delay table is used to make the delayed calls and
156    --  this flag is reset to False, so that the calls are processed
157
158    -----------------------
159    -- Local Subprograms --
160    -----------------------
161
162    --  Note: Outer_Scope in all following specs represents the scope of
163    --  interest of the outer level call. If it is set to Standard_Standard,
164    --  then it means the outer level call was at elaboration level, and that
165    --  thus all calls are of interest. If it was set to some other scope,
166    --  then the original call was an inner call, and we are not interested
167    --  in calls that go outside this scope.
168
169    procedure Check_A_Call
170      (N                 : Node_Id;
171       E                 : Entity_Id;
172       Outer_Scope       : Entity_Id;
173       Inter_Unit_Only   : Boolean;
174       Generate_Warnings : Boolean := True);
175    --  This is the internal recursive routine that is called to check for
176    --  a possible elaboration error. The argument N is a subprogram call
177    --  or generic instantiation to be checked, and E is the entity of
178    --  the called subprogram, or instantiated generic unit. The flag
179    --  Outer_Scope is the outer level scope for the original call.
180    --  Inter_Unit_Only is set if the call is only to be checked in the
181    --  case where it is to another unit (and skipped if within a unit).
182    --  Generate_Warnings is set to False to suppress warning messages
183    --  about missing pragma Elaborate_All's. These messages are not
184    --  wanted for inner calls in the dynamic model.
185
186    procedure Check_Bad_Instantiation (N : Node_Id);
187    --  N is a node for an instantiation (if called with any other node kind,
188    --  Check_Bad_Instantiation ignores the call). This subprogram checks for
189    --  the special case of a generic instantiation of a generic spec in the
190    --  same declarative part as the instantiation where a body is present and
191    --  has not yet been seen. This is an obvious error, but needs to be checked
192    --  specially at the time of the instantiation, since it is a case where we
193    --  cannot insert the body anywhere. If this case is detected, warnings are
194    --  generated, and a raise of Program_Error is inserted. In addition any
195    --  subprograms in the generic spec are stubbed, and the Bad_Instantiation
196    --  flag is set on the instantiation node. The caller in Sem_Ch12 uses this
197    --  flag as an indication that no attempt should be made to insert an
198    --  instance body.
199
200    procedure Check_Internal_Call
201      (N           : Node_Id;
202       E           : Entity_Id;
203       Outer_Scope : Entity_Id;
204       Orig_Ent    : Entity_Id);
205    --  N is a function call or procedure statement call node and E is
206    --  the entity of the called function, which is within the current
207    --  compilation unit (where subunits count as part of the parent).
208    --  This call checks if this call, or any call within any accessed
209    --  body could cause an ABE, and if so, outputs a warning. Orig_Ent
210    --  differs from E only in the case of renamings, and points to the
211    --  original name of the entity. This is used for error messages.
212    --  Outer_Scope is the outer level scope for the original call.
213
214    procedure Check_Internal_Call_Continue
215      (N           : Node_Id;
216       E           : Entity_Id;
217       Outer_Scope : Entity_Id;
218       Orig_Ent    : Entity_Id);
219    --  The processing for Check_Internal_Call is divided up into two phases,
220    --  and this represents the second phase. The second phase is delayed if
221    --  Delaying_Elab_Calls is set to True. In this delayed case, the first
222    --  phase makes an entry in the Delay_Check table, which is processed
223    --  when Check_Elab_Calls is called. N, E and Orig_Ent are as for the call
224    --  to Check_Internal_Call. Outer_Scope is the outer level scope for
225    --  the original call.
226
227    procedure Set_Elaboration_Constraint
228     (Call : Node_Id;
229      Subp : Entity_Id;
230      Scop : Entity_Id);
231    --  The current unit U may depend semantically on some unit P which is not
232    --  in the current context. If there is an elaboration call that reaches P,
233    --  we need to indicate that P requires an Elaborate_All, but this is not
234    --  effective in U's ali file, if there is no with_clause for P. In this
235    --  case we add the Elaborate_All on the unit Q that directly or indirectly
236    --  makes P available. This can happen in two cases:
237    --
238    --    a) Q declares a subtype of a type declared in P, and the call is an
239    --    initialization call for an object of that subtype.
240    --
241    --    b) Q declares an object of some tagged type whose root type is
242    --    declared in P, and the initialization call uses object notation on
243    --    that object to reach a primitive operation or a classwide operation
244    --    declared in P.
245    --
246    --  If P appears in the context of U, the current processing is correct.
247    --  Otherwise we must identify these two cases to retrieve Q and place the
248    --  Elaborate_All_Desirable on it.
249
250    function Has_Generic_Body (N : Node_Id) return Boolean;
251    --  N is a generic package instantiation node, and this routine determines
252    --  if this package spec does in fact have a generic body. If so, then
253    --  True is returned, otherwise False. Note that this is not at all the
254    --  same as checking if the unit requires a body, since it deals with
255    --  the case of optional bodies accurately (i.e. if a body is optional,
256    --  then it looks to see if a body is actually present). Note: this
257    --  function can only do a fully correct job if in generating code mode
258    --  where all bodies have to be present. If we are operating in semantics
259    --  check only mode, then in some cases of optional bodies, a result of
260    --  False may incorrectly be given. In practice this simply means that
261    --  some cases of warnings for incorrect order of elaboration will only
262    --  be given when generating code, which is not a big problem (and is
263    --  inevitable, given the optional body semantics of Ada).
264
265    procedure Insert_Elab_Check (N : Node_Id; C : Node_Id := Empty);
266    --  Given code for an elaboration check (or unconditional raise if
267    --  the check is not needed), inserts the code in the appropriate
268    --  place. N is the call or instantiation node for which the check
269    --  code is required. C is the test whose failure triggers the raise.
270
271    procedure Output_Calls (N : Node_Id);
272    --  Outputs chain of calls stored in the Elab_Call table. The caller
273    --  has already generated the main warning message, so the warnings
274    --  generated are all continuation messages. The argument is the
275    --  call node at which the messages are to be placed.
276
277    function Same_Elaboration_Scope (Scop1, Scop2 : Entity_Id) return Boolean;
278    --  Given two scopes, determine whether they are the same scope from an
279    --  elaboration point of view, i.e. packages and blocks are ignored.
280
281    procedure Set_C_Scope;
282    --  On entry C_Scope is set to some scope. On return, C_Scope is reset
283    --  to be the enclosing compilation unit of this scope.
284
285    function Spec_Entity (E : Entity_Id) return Entity_Id;
286    --  Given a compilation unit entity, if it is a spec entity, it is
287    --  returned unchanged. If it is a body entity, then the spec for
288    --  the corresponding spec is returned
289
290    procedure Supply_Bodies (N : Node_Id);
291    --  Given a node, N, that is either a subprogram declaration or a package
292    --  declaration, this procedure supplies dummy bodies for the subprogram
293    --  or for all subprograms in the package. If the given node is not one
294    --  of these two possibilities, then Supply_Bodies does nothing. The
295    --  dummy body is supplied by setting the subprogram to be Imported with
296    --  convention Stubbed.
297
298    procedure Supply_Bodies (L : List_Id);
299    --  Calls Supply_Bodies for all elements of the given list L.
300
301    function Within (E1, E2 : Entity_Id) return Boolean;
302    --  Given two scopes E1 and E2, returns True if E1 is equal to E2, or
303    --  is one of its contained scopes, False otherwise.
304
305    function Within_Elaborate_All (E : Entity_Id) return Boolean;
306    --  Before emitting a warning on a scope E for a missing elaborate_all,
307    --  check whether E may be in the context of a directly visible unit
308    --  U to which the pragma applies. This prevents spurious warnings when
309    --  the called entity is renamed within U.
310
311    ------------------
312    -- Check_A_Call --
313    ------------------
314
315    procedure Check_A_Call
316      (N                 : Node_Id;
317       E                 : Entity_Id;
318       Outer_Scope       : Entity_Id;
319       Inter_Unit_Only   : Boolean;
320       Generate_Warnings : Boolean := True)
321    is
322       Loc  : constant Source_Ptr := Sloc (N);
323       Ent  : Entity_Id;
324       Decl : Node_Id;
325
326       E_Scope : Entity_Id;
327       --  Top level scope of entity for called subprogram. This
328       --  value includes following renamings and derivations, so
329       --  this scope can be in a non-visible unit. This is the
330       --  scope that is to be investigated to see whether an
331       --  elaboration check is required.
332
333       W_Scope : Entity_Id;
334       --  Top level scope of directly called entity for subprogram. This
335       --  differs from E_Scope in the case where renamings or derivations
336       --  are involved, since it does not follow these links. W_Scope is
337       --  generally in a visible unit, and it is this scope that may require
338       --  an Elaborate_All. However, there are some cases (initialization
339       --  calls and calls involving object notation) where W_Scope might not
340       --  be in the context of the current unit, and there is an intermediate
341       --  package that is, in which case the Elaborate_All has to be placed
342       --  on this intedermediate package. These special cases are handled in
343       --  Set_Elaboration_Constraint.
344
345       Body_Acts_As_Spec : Boolean;
346       --  Set to true if call is to body acting as spec (no separate spec)
347
348       Inst_Case : constant Boolean := Nkind (N) in N_Generic_Instantiation;
349       --  Indicates if we have instantiation case
350
351       Caller_Unit_Internal : Boolean;
352       Callee_Unit_Internal : Boolean;
353
354       Inst_Caller : Source_Ptr;
355       Inst_Callee : Source_Ptr;
356
357       Unit_Caller : Unit_Number_Type;
358       Unit_Callee : Unit_Number_Type;
359
360       Cunit_SC : Boolean := False;
361       --  Set to suppress dynamic elaboration checks where one of the
362       --  enclosing scopes has Elaboration_Checks_Suppressed set, or else
363       --  if a pragma Elaborate (_All) applies to that scope, in which case
364       --  warnings on the scope are also suppressed. For the internal case,
365       --  we ignore this flag.
366
367    begin
368       --  If the call is known to be within a local Suppress Elaboration
369       --  pragma, nothing to check. This can happen in task bodies.
370
371       if (Nkind (N) = N_Function_Call
372            or else Nkind (N) = N_Procedure_Call_Statement)
373         and then  No_Elaboration_Check (N)
374       then
375          return;
376       end if;
377
378       --  Go to parent for derived subprogram, or to original subprogram
379       --  in the case of a renaming (Alias covers both these cases)
380
381       Ent := E;
382       loop
383          if (Suppress_Elaboration_Warnings (Ent)
384               or else Elaboration_Checks_Suppressed (Ent))
385            and then (Inst_Case or else No (Alias (Ent)))
386          then
387             return;
388          end if;
389
390          --  Nothing to do for imported entities
391
392          if Is_Imported (Ent) then
393             return;
394          end if;
395
396          exit when Inst_Case or else No (Alias (Ent));
397          Ent := Alias (Ent);
398       end loop;
399
400       Decl := Unit_Declaration_Node (Ent);
401
402       if Nkind (Decl) = N_Subprogram_Body then
403          Body_Acts_As_Spec := True;
404
405       elsif Nkind (Decl) = N_Subprogram_Declaration
406         or else Nkind (Decl) = N_Subprogram_Body_Stub
407         or else Inst_Case
408       then
409          Body_Acts_As_Spec := False;
410
411       --  If we have none of an instantiation, subprogram body or
412       --  subprogram declaration, then it is not a case that we want
413       --  to check. (One case is a call to a generic formal subprogram,
414       --  where we do not want the check in the template).
415
416       else
417          return;
418       end if;
419
420       E_Scope := Ent;
421       loop
422          if Elaboration_Checks_Suppressed (E_Scope)
423            or else Suppress_Elaboration_Warnings (E_Scope)
424          then
425             Cunit_SC := True;
426          end if;
427
428          --  Exit when we get to compilation unit, not counting subunits
429
430          exit when Is_Compilation_Unit (E_Scope)
431            and then (Is_Child_Unit (E_Scope)
432                        or else Scope (E_Scope) = Standard_Standard);
433
434          --  If we did not find a compilation unit, other than standard,
435          --  then nothing to check (happens in some instantiation cases)
436
437          if E_Scope = Standard_Standard then
438             return;
439
440          --  Otherwise move up a scope looking for compilation unit
441
442          else
443             E_Scope := Scope (E_Scope);
444          end if;
445       end loop;
446
447       --  No checks needed for pure or preelaborated compilation units
448
449       if Is_Pure (E_Scope)
450         or else Is_Preelaborated (E_Scope)
451       then
452          return;
453       end if;
454
455       --  If the generic entity is within a deeper instance than we are, then
456       --  either the instantiation to which we refer itself caused an ABE, in
457       --  which case that will be handled separately, or else we know that the
458       --  body we need appears as needed at the point of the instantiation.
459       --  However, this assumption is only valid if we are in static mode.
460
461       if not Dynamic_Elaboration_Checks
462         and then Instantiation_Depth (Sloc (Ent)) >
463                  Instantiation_Depth (Sloc (N))
464       then
465          return;
466       end if;
467
468       --  Do not give a warning for a package with no body
469
470       if Ekind (Ent) = E_Generic_Package
471         and then not Has_Generic_Body (N)
472       then
473          return;
474       end if;
475
476       --  Case of entity is not in current unit (i.e. with'ed unit case)
477
478       if E_Scope /= C_Scope then
479
480          --  We are only interested in such calls if the outer call was from
481          --  elaboration code, or if we are in Dynamic_Elaboration_Checks mode.
482
483          if not From_Elab_Code and then not Dynamic_Elaboration_Checks then
484             return;
485          end if;
486
487          --  Nothing to do if some scope said that no checks were required
488
489          if Cunit_SC then
490             return;
491          end if;
492
493          --  Nothing to do for a generic instance, because in this case
494          --  the checking was at the point of instantiation of the generic
495          --  However, this shortcut is only applicable in static mode.
496
497          if Is_Generic_Instance (Ent) and not Dynamic_Elaboration_Checks then
498             return;
499          end if;
500
501          --  Nothing to do if subprogram with no separate spec. However,
502          --  a call to Deep_Initialize may result in a call to a user-defined
503          --  Initialize procedure, which imposes a body dependency. This
504          --  happens only if the type is controlled and the Initialize
505          --  procedure is not inherited.
506
507          if Body_Acts_As_Spec then
508             if Is_TSS (Ent, TSS_Deep_Initialize) then
509                declare
510                   Typ  : Entity_Id;
511                   Init : Entity_Id;
512                begin
513                   Typ  := Etype (Next_Formal (First_Formal (Ent)));
514
515                   if not Is_Controlled (Typ) then
516                      return;
517                   else
518                      Init := Find_Prim_Op (Typ, Name_Initialize);
519
520                      if Comes_From_Source (Init) then
521                         Ent := Init;
522                      else
523                         return;
524                      end if;
525                   end if;
526                end;
527
528             else
529                return;
530             end if;
531          end if;
532
533          --  Check cases of internal units
534
535          Callee_Unit_Internal :=
536            Is_Internal_File_Name
537              (Unit_File_Name (Get_Source_Unit (E_Scope)));
538
539          --  Do not give a warning if the with'ed unit is internal
540          --  and this is the generic instantiation case (this saves a
541          --  lot of hassle dealing with the Text_IO special child units)
542
543          if Callee_Unit_Internal and Inst_Case then
544             return;
545          end if;
546
547          if C_Scope = Standard_Standard then
548             Caller_Unit_Internal := False;
549          else
550             Caller_Unit_Internal :=
551               Is_Internal_File_Name
552                 (Unit_File_Name (Get_Source_Unit (C_Scope)));
553          end if;
554
555          --  Do not give a warning if the with'ed unit is internal
556          --  and the caller is not internal (since the binder always
557          --  elaborates internal units first).
558
559          if Callee_Unit_Internal and (not Caller_Unit_Internal) then
560             return;
561          end if;
562
563          --  For now, if debug flag -gnatdE is not set, do no checking for
564          --  one internal unit withing another. This fixes the problem with
565          --  the sgi build and storage errors. To be resolved later ???
566
567          if (Callee_Unit_Internal and Caller_Unit_Internal)
568             and then not Debug_Flag_EE
569          then
570             return;
571          end if;
572
573          if Is_TSS (E, TSS_Deep_Initialize) then
574             Ent := E;
575          end if;
576
577          --  If the call is in an instance, and the called entity is not
578          --  defined in the same instance, then the elaboration issue
579          --  focuses around the unit containing the template, it is
580          --  this unit which requires an Elaborate_All.
581
582          --  However, if we are doing dynamic elaboration, we need to
583          --  chase the call in the usual manner.
584
585          --  We do not handle the case of calling a generic formal correctly
586          --  in the static case. See test 4703-004 to explore this gap ???
587
588          Inst_Caller := Instantiation (Get_Source_File_Index (Sloc (N)));
589          Inst_Callee := Instantiation (Get_Source_File_Index (Sloc (Ent)));
590
591          if Inst_Caller = No_Location then
592             Unit_Caller := No_Unit;
593          else
594             Unit_Caller := Get_Source_Unit (N);
595          end if;
596
597          if Inst_Callee = No_Location then
598             Unit_Callee := No_Unit;
599          else
600             Unit_Callee := Get_Source_Unit (Ent);
601          end if;
602
603          if Unit_Caller /= No_Unit
604            and then Unit_Callee /= Unit_Caller
605            and then not Dynamic_Elaboration_Checks
606          then
607             E_Scope := Spec_Entity (Cunit_Entity (Unit_Caller));
608
609             --  If we don't get a spec entity, just ignore call. Not
610             --  quite clear why this check is necessary.
611
612             if No (E_Scope) then
613                return;
614             end if;
615
616             --  Otherwise step to enclosing compilation unit
617
618             while not Is_Compilation_Unit (E_Scope) loop
619                E_Scope := Scope (E_Scope);
620             end loop;
621
622          --  For the case N is not an instance, or a call within instance
623          --  We recompute E_Scope for the error message, since we
624          --  do NOT want to go to the unit which has the ultimate
625          --  declaration in the case of renaming and derivation and
626          --  we also want to go to the generic unit in the case of
627          --  an instance, and no further.
628
629          else
630             --  Loop to carefully follow renamings and derivations
631             --  one step outside the current unit, but not further.
632
633             if not Inst_Case
634               and then Present (Alias (Ent))
635             then
636                E_Scope := Alias (Ent);
637             else
638                E_Scope := Ent;
639             end if;
640
641             loop
642                while not Is_Compilation_Unit (E_Scope) loop
643                   E_Scope := Scope (E_Scope);
644                end loop;
645
646                --  If E_Scope is the same as C_Scope, it means that there
647                --  definitely was a local renaming or derivation, and we
648                --  are not yet out of the current unit.
649
650                exit when E_Scope /= C_Scope;
651                Ent := Alias (Ent);
652                E_Scope := Ent;
653
654                --  If no alias, there is a previous error
655
656                if No (Ent) then
657                   return;
658                end if;
659             end loop;
660          end if;
661
662          if Within_Elaborate_All (E_Scope) then
663             return;
664          end if;
665
666          --  Find top level scope for called entity (not following renamings
667          --  or derivations). This is where the Elaborate_All will go if it
668          --  is needed. We start with the called entity, except in the case
669          --  of an initialization procedure outside the current package, where
670          --  the init proc is in the root package, and we start from the entity
671          --  of the name in the call.
672
673          if Is_Entity_Name (Name (N))
674            and then Is_Init_Proc (Entity (Name (N)))
675            and then not In_Same_Extended_Unit (N, Entity (Name (N)))
676          then
677             W_Scope := Scope (Entity (Name (N)));
678          else
679             W_Scope := E;
680          end if;
681
682          while not Is_Compilation_Unit (W_Scope) loop
683             W_Scope := Scope (W_Scope);
684          end loop;
685
686          --  Now check if an elaborate_all (or dynamic check) is needed
687
688          if not Suppress_Elaboration_Warnings (Ent)
689            and then not Elaboration_Checks_Suppressed (Ent)
690            and then not Suppress_Elaboration_Warnings (E_Scope)
691            and then not Elaboration_Checks_Suppressed (E_Scope)
692            and then Elab_Warnings
693            and then Generate_Warnings
694          then
695             if Inst_Case then
696                Error_Msg_NE
697                  ("instantiation of& may raise Program_Error?", N, Ent);
698
699             else
700                if Is_Init_Proc (Entity (Name (N)))
701                  and then Comes_From_Source (Ent)
702                then
703                   Error_Msg_NE
704                     ("implicit call to & may raise Program_Error?", N, Ent);
705
706                else
707                   Error_Msg_NE
708                     ("call to & may raise Program_Error?", N, Ent);
709                end if;
710             end if;
711
712             Error_Msg_Qual_Level := Nat'Last;
713             Error_Msg_NE
714               ("\missing pragma Elaborate_All for&?", N, W_Scope);
715             Error_Msg_Qual_Level := 0;
716             Output_Calls (N);
717
718             --  Set flag to prevent further warnings for same unit
719             --  unless in All_Errors_Mode.
720
721             if not All_Errors_Mode and not Dynamic_Elaboration_Checks then
722                Set_Suppress_Elaboration_Warnings (W_Scope, True);
723             end if;
724          end if;
725
726          --  Check for runtime elaboration check required
727
728          if Dynamic_Elaboration_Checks then
729             if not Elaboration_Checks_Suppressed (Ent)
730               and then not Elaboration_Checks_Suppressed (W_Scope)
731               and then not Elaboration_Checks_Suppressed (E_Scope)
732               and then not Cunit_SC
733             then
734                --  Runtime elaboration check required. Generate check of the
735                --  elaboration Boolean for the unit containing the entity.
736
737                --  Note that for this case, we do check the real unit (the
738                --  one from following renamings, since that is the issue!)
739
740                --  Could this possibly miss a useless but required PE???
741
742                Insert_Elab_Check (N,
743                  Make_Attribute_Reference (Loc,
744                    Attribute_Name => Name_Elaborated,
745                    Prefix =>
746                      New_Occurrence_Of
747                        (Spec_Entity (E_Scope), Loc)));
748             end if;
749
750          --  Case of static elaboration model
751
752          else
753             --  Do not do anything if elaboration checks suppressed. Note
754             --  that we check Ent here, not E, since we want the real entity
755             --  for the body to see if checks are suppressed for it, not the
756             --  dummy entry for renamings or derivations.
757
758             if Elaboration_Checks_Suppressed (Ent)
759               or else Elaboration_Checks_Suppressed (E_Scope)
760               or else Elaboration_Checks_Suppressed (W_Scope)
761             then
762                null;
763
764             --  Here we need to generate an implicit elaborate all
765
766             else
767                --  Generate elaborate_all warning unless suppressed
768
769                if (Elab_Warnings and Generate_Warnings and not Inst_Case)
770                  and then not Suppress_Elaboration_Warnings (Ent)
771                  and then not Suppress_Elaboration_Warnings (E_Scope)
772                  and then not Suppress_Elaboration_Warnings (W_Scope)
773                then
774                   Error_Msg_Node_2 := W_Scope;
775                   Error_Msg_NE
776                     ("call to& in elaboration code " &
777                      "requires pragma Elaborate_All on&?", N, E);
778                end if;
779
780                --  Set indication for binder to generate Elaborate_All
781
782                Set_Elaboration_Constraint (N, E, W_Scope);
783             end if;
784          end if;
785
786       --  Case of entity is in same unit as call or instantiation
787
788       elsif not Inter_Unit_Only then
789          Check_Internal_Call (N, Ent, Outer_Scope, E);
790       end if;
791    end Check_A_Call;
792
793    -----------------------------
794    -- Check_Bad_Instantiation --
795    -----------------------------
796
797    procedure Check_Bad_Instantiation (N : Node_Id) is
798       Ent : Entity_Id;
799
800    begin
801       --  Nothing to do if we do not have an instantiation (happens in some
802       --  error cases, and also in the formal package declaration case)
803
804       if Nkind (N) not in N_Generic_Instantiation then
805          return;
806
807       --  Nothing to do if serious errors detected (avoid cascaded errors)
808
809       elsif Serious_Errors_Detected /= 0 then
810          return;
811
812       --  Nothing to do if not in full analysis mode
813
814       elsif not Full_Analysis then
815          return;
816
817       --  Nothing to do if inside a generic template
818
819       elsif Inside_A_Generic then
820          return;
821
822       --  Nothing to do if a library level instantiation
823
824       elsif Nkind (Parent (N)) = N_Compilation_Unit then
825          return;
826
827       --  Nothing to do if we are compiling a proper body for semantic
828       --  purposes only. The generic body may be in another proper body.
829
830       elsif
831         Nkind (Parent (Unit_Declaration_Node (Main_Unit_Entity))) = N_Subunit
832       then
833          return;
834       end if;
835
836       Ent := Get_Generic_Entity (N);
837
838       --  The case we are interested in is when the generic spec is in the
839       --  current declarative part
840
841       if not Same_Elaboration_Scope (Current_Scope, Scope (Ent))
842         or else not In_Same_Extended_Unit (N, Ent)
843       then
844          return;
845       end if;
846
847       --  If the generic entity is within a deeper instance than we are, then
848       --  either the instantiation to which we refer itself caused an ABE, in
849       --  which case that will be handled separately. Otherwise, we know that
850       --  the body we need appears as needed at the point of the instantiation.
851       --  If they are both at the same level but not within the same instance
852       --  then the body of the generic will be in the earlier instance.
853
854       declare
855          D1 : constant Int := Instantiation_Depth (Sloc (Ent));
856          D2 : constant Int := Instantiation_Depth (Sloc (N));
857
858       begin
859          if D1 > D2 then
860             return;
861
862          elsif D1 = D2
863            and then Is_Generic_Instance (Scope (Ent))
864            and then not In_Open_Scopes (Scope (Ent))
865          then
866             return;
867          end if;
868       end;
869
870       --  Now we can proceed, if the entity being called has a completion,
871       --  then we are definitely OK, since we have already seen the body.
872
873       if Has_Completion (Ent) then
874          return;
875       end if;
876
877       --  If there is no body, then nothing to do
878
879       if not Has_Generic_Body (N) then
880          return;
881       end if;
882
883       --  Here we definitely have a bad instantiation
884
885       Error_Msg_NE
886         ("?cannot instantiate& before body seen", N, Ent);
887
888       if Present (Instance_Spec (N)) then
889          Supply_Bodies (Instance_Spec (N));
890       end if;
891
892       Error_Msg_N
893         ("\?Program_Error will be raised at run time", N);
894       Insert_Elab_Check (N);
895       Set_ABE_Is_Certain (N);
896
897    end Check_Bad_Instantiation;
898
899    ---------------------
900    -- Check_Elab_Call --
901    ---------------------
902
903    procedure Check_Elab_Call
904      (N           : Node_Id;
905       Outer_Scope : Entity_Id := Empty)
906    is
907       Ent : Entity_Id;
908       P   : Node_Id;
909
910       function Get_Called_Ent return Entity_Id;
911       --  Retrieve called entity. If this is a call to a protected subprogram,
912       --  entity is a selected component. The callable entity may be absent,
913       --  in which case there is no check to perform.  This happens with
914       --  non-analyzed calls in nested generics.
915
916       --------------------
917       -- Get_Called_Ent --
918       --------------------
919
920       function Get_Called_Ent return Entity_Id is
921          Nam : Node_Id;
922
923       begin
924          Nam := Name (N);
925
926          if No (Nam) then
927             return Empty;
928
929          elsif Nkind (Nam) = N_Selected_Component then
930             return Entity (Selector_Name (Nam));
931
932          elsif not Is_Entity_Name (Nam) then
933             return Empty;
934
935          else
936             return Entity (Nam);
937          end if;
938       end Get_Called_Ent;
939
940    --  Start of processing for Check_Elab_Call
941
942    begin
943       --  If the call does not come from the main unit, there is nothing to
944       --  check. Elaboration call from units in the context of the main unit
945       --  will lead to semantic dependencies when those units are compiled.
946
947       if not In_Extended_Main_Code_Unit (N) then
948          return;
949       end if;
950
951       --  For an entry call, check relevant restriction
952
953       if Nkind (N) = N_Entry_Call_Statement
954          and then not In_Subprogram_Or_Concurrent_Unit
955       then
956          Check_Restriction (No_Entry_Calls_In_Elaboration_Code, N);
957
958       --  Nothing to do if this is not a call (happens in some error
959       --  conditions, and in some cases where rewriting occurs).
960
961       elsif Nkind (N) /= N_Function_Call
962         and then Nkind (N) /= N_Procedure_Call_Statement
963       then
964          return;
965
966       --  Nothing to do if this is a call already rewritten for elab checking.
967
968       elsif Nkind (Parent (N)) = N_Conditional_Expression then
969          return;
970
971       --  Nothing to do if inside a generic template
972
973       elsif Inside_A_Generic
974         and then not Present (Enclosing_Generic_Body (N))
975       then
976          return;
977       end if;
978
979       --  Here we have a call at elaboration time which must be checked
980
981       if Debug_Flag_LL then
982          Write_Str ("  Check_Elab_Call: ");
983
984          if No (Name (N))
985            or else not Is_Entity_Name (Name (N))
986          then
987             Write_Str ("<<not entity name>> ");
988          else
989             Write_Name (Chars (Entity (Name (N))));
990          end if;
991
992          Write_Str ("  call at ");
993          Write_Location (Sloc (N));
994          Write_Eol;
995       end if;
996
997       --  Climb up the tree to make sure we are not inside a
998       --  default expression of a parameter specification or
999       --  a record component, since in both these cases, we
1000       --  will be doing the actual call later, not now, and it
1001       --  is at the time of the actual call (statically speaking)
1002       --  that we must do our static check, not at the time of
1003       --  its initial analysis). However, we have to check calls
1004       --  within component definitions (e.g., a function call
1005       --  that determines an array component bound), so we
1006       --  terminate the loop in that case.
1007
1008       P := Parent (N);
1009       while Present (P) loop
1010          if Nkind (P) = N_Parameter_Specification
1011               or else
1012             Nkind (P) = N_Component_Declaration
1013          then
1014             return;
1015
1016          --  The call occurs within the constraint of a component,
1017          --  so it must be checked.
1018
1019          elsif Nkind (P) = N_Component_Definition then
1020             exit;
1021
1022          else
1023             P := Parent (P);
1024          end if;
1025       end loop;
1026
1027       --  Stuff that happens only at the outer level
1028
1029       if No (Outer_Scope) then
1030          Elab_Visited.Set_Last (0);
1031
1032          --  Nothing to do if current scope is Standard (this is a bit
1033          --  odd, but it happens in the case of generic instantiations).
1034
1035          C_Scope := Current_Scope;
1036
1037          if C_Scope = Standard_Standard then
1038             return;
1039          end if;
1040
1041          --  First case, we are in elaboration code
1042
1043          From_Elab_Code := not In_Subprogram_Or_Concurrent_Unit;
1044          if From_Elab_Code then
1045
1046             --  Complain if call that comes from source in preelaborated
1047             --  unit and we are not inside a subprogram (i.e. we are in
1048             --  elab code)
1049
1050             if Comes_From_Source (N)
1051               and then In_Preelaborated_Unit
1052               and then not In_Inlined_Body
1053             then
1054                Error_Msg_N
1055                  ("non-static call not allowed in preelaborated unit", N);
1056                return;
1057             end if;
1058
1059          --  Second case, we are inside a subprogram or concurrent unit
1060          --  i.e, we are not in elaboration code.
1061
1062          else
1063             --  In this case, the issue is whether we are inside the
1064             --  declarative part of the unit in which we live, or inside
1065             --  its statements. In the latter case, there is no issue of
1066             --  ABE calls at this level (a call from outside to the unit
1067             --  in which we live might cause an ABE, but that will be
1068             --  detected when we analyze that outer level call, as it
1069             --  recurses into the called unit).
1070
1071             --  Climb up the tree, doing this test, and also testing
1072             --  for being inside a default expression, which, as
1073             --  discussed above, is not checked at this stage.
1074
1075             declare
1076                P : Node_Id;
1077                L : List_Id;
1078
1079             begin
1080                P := N;
1081                loop
1082                   --  If we find a parentless subtree, it seems safe to
1083                   --  assume that we are not in a declarative part and
1084                   --  that no checking is required.
1085
1086                   if No (P) then
1087                      return;
1088                   end if;
1089
1090                   if Is_List_Member (P) then
1091                      L := List_Containing (P);
1092                      P := Parent (L);
1093                   else
1094                      L := No_List;
1095                      P := Parent (P);
1096                   end if;
1097
1098                   exit when Nkind (P) = N_Subunit;
1099
1100                   --  Filter out case of default expressions, where
1101                   --  we do not do the check at this stage.
1102
1103                   if Nkind (P) = N_Parameter_Specification
1104                        or else
1105                      Nkind (P) = N_Component_Declaration
1106                   then
1107                      return;
1108                   end if;
1109
1110                   if Nkind (P) = N_Subprogram_Body
1111                        or else
1112                      Nkind (P) = N_Protected_Body
1113                        or else
1114                      Nkind (P) = N_Task_Body
1115                        or else
1116                      Nkind (P) = N_Block_Statement
1117                   then
1118                      if L = Declarations (P) then
1119                         exit;
1120
1121                      --  We are not in elaboration code, but we are doing
1122                      --  dynamic elaboration checks, in this case, we still
1123                      --  need to do the call, since the subprogram we are in
1124                      --  could be called from another unit, also in dynamic
1125                      --  elaboration check mode, at elaboration time.
1126
1127                      elsif Dynamic_Elaboration_Checks then
1128
1129                         --  This is a rather new check, going into version
1130                         --  3.14a1 for the first time (V1.80 of this unit),
1131                         --  so we provide a debug flag to enable it. That
1132                         --  way we have an easy work around for regressions
1133                         --  that are caused by this new check. This debug
1134                         --  flag can be removed later.
1135
1136                         if Debug_Flag_DD then
1137                            return;
1138                         end if;
1139
1140                         --  Do the check in this case
1141
1142                         exit;
1143
1144                      elsif Nkind (P) = N_Task_Body then
1145
1146                         --  The check is deferred until Check_Task_Activation
1147                         --  but we need to capture local suppress pragmas
1148                         --  that may inhibit checks on this call.
1149
1150                         Ent := Get_Called_Ent;
1151
1152                         if No (Ent) then
1153                            return;
1154
1155                         elsif Elaboration_Checks_Suppressed (Current_Scope)
1156                           or else Elaboration_Checks_Suppressed (Ent)
1157                           or else Elaboration_Checks_Suppressed (Scope (Ent))
1158                         then
1159                            Set_No_Elaboration_Check (N);
1160                         end if;
1161
1162                         return;
1163
1164                      --  Static model, call is not in elaboration code, we
1165                      --  never need to worry, because in the static model
1166                      --  the top level caller always takes care of things.
1167
1168                      else
1169                         return;
1170                      end if;
1171                   end if;
1172                end loop;
1173             end;
1174          end if;
1175       end if;
1176
1177       Ent := Get_Called_Ent;
1178
1179       if No (Ent) then
1180          return;
1181       end if;
1182
1183       --  Nothing to do if this is a recursive call (i.e. a call to
1184       --  an entity that is already in the Elab_Call stack)
1185
1186       for J in 1 .. Elab_Visited.Last loop
1187          if Ent = Elab_Visited.Table (J) then
1188             return;
1189          end if;
1190       end loop;
1191
1192       --  See if we need to analyze this call. We analyze it if either of
1193       --  the following conditions is met:
1194
1195       --    It is an inner level call (since in this case it was triggered
1196       --    by an outer level call from elaboration code), but only if the
1197       --    call is within the scope of the original outer level call.
1198
1199       --    It is an outer level call from elaboration code, or the called
1200       --    entity is in the same elaboration scope.
1201
1202       --  And in these cases, we will check both inter-unit calls and
1203       --  intra-unit (within a single unit) calls.
1204
1205       C_Scope := Current_Scope;
1206
1207       --  If not outer level call, then we follow it if it is within
1208       --  the original scope of the outer call.
1209
1210       if Present (Outer_Scope)
1211         and then Within (Scope (Ent), Outer_Scope)
1212       then
1213          Set_C_Scope;
1214          Check_A_Call (N, Ent, Outer_Scope, Inter_Unit_Only => False);
1215
1216       elsif Elaboration_Checks_Suppressed (Current_Scope) then
1217          null;
1218
1219       elsif From_Elab_Code then
1220          Set_C_Scope;
1221          Check_A_Call (N, Ent, Standard_Standard, Inter_Unit_Only => False);
1222
1223       elsif Same_Elaboration_Scope (C_Scope, Scope (Ent)) then
1224          Set_C_Scope;
1225          Check_A_Call (N, Ent, Scope (Ent), Inter_Unit_Only => False);
1226
1227       --  If none of those cases holds, but Dynamic_Elaboration_Checks mode
1228       --  is set, then we will do the check, but only in the inter-unit case
1229       --  (this is to accommodate unguarded elaboration calls from other units
1230       --  in which this same mode is set). We don't want warnings in this case,
1231       --  it would generate warnings having nothing to do with elaboration.
1232
1233       elsif Dynamic_Elaboration_Checks then
1234          Set_C_Scope;
1235          Check_A_Call
1236            (N,
1237             Ent,
1238             Standard_Standard,
1239             Inter_Unit_Only => True,
1240             Generate_Warnings => False);
1241
1242       --  Otherwise nothing to do
1243
1244       else
1245          return;
1246       end if;
1247
1248       --  A call to an Init_Proc in elaboration code may bring additional
1249       --  dependencies, if some of the record components thereof have
1250       --  initializations that are function calls that come from source.
1251       --  We treat the current node as a call to each of these functions,
1252       --  to check their elaboration impact.
1253
1254       if Is_Init_Proc (Ent)
1255         and then From_Elab_Code
1256       then
1257          Process_Init_Proc : declare
1258             Unit_Decl : constant Node_Id := Unit_Declaration_Node (Ent);
1259
1260             function Process (Nod : Node_Id) return Traverse_Result;
1261             --  Find subprogram calls within body of init_proc for
1262             --  Traverse instantiation below.
1263
1264             function Process (Nod : Node_Id) return Traverse_Result is
1265                Func : Entity_Id;
1266
1267             begin
1268                if (Nkind (Nod) = N_Function_Call
1269                     or else Nkind (Nod) = N_Procedure_Call_Statement)
1270                  and then Is_Entity_Name (Name (Nod))
1271                then
1272                   Func := Entity (Name (Nod));
1273
1274                   if Comes_From_Source (Func) then
1275                      Check_A_Call
1276                        (N, Func, Standard_Standard, Inter_Unit_Only => True);
1277                   end if;
1278
1279                   return OK;
1280
1281                else
1282                   return OK;
1283                end if;
1284             end Process;
1285
1286             procedure Traverse_Body is new Traverse_Proc (Process);
1287
1288          --  Start of processing for Process_Init_Proc
1289
1290          begin
1291             if Nkind (Unit_Decl) = N_Subprogram_Body then
1292                Traverse_Body (Handled_Statement_Sequence (Unit_Decl));
1293             end if;
1294          end Process_Init_Proc;
1295       end if;
1296    end Check_Elab_Call;
1297
1298    ----------------------
1299    -- Check_Elab_Calls --
1300    ----------------------
1301
1302    procedure Check_Elab_Calls is
1303    begin
1304       --  If expansion is disabled, do not generate any checks. Also
1305       --  skip checks if any subunits are missing because in either
1306       --  case we lack the full information that we need, and no object
1307       --  file will be created in any case.
1308
1309       if not Expander_Active
1310         or else Is_Generic_Unit (Cunit_Entity (Main_Unit))
1311         or else Subunits_Missing
1312       then
1313          return;
1314       end if;
1315
1316       --  Skip delayed calls if we had any errors
1317
1318       if Serious_Errors_Detected = 0 then
1319          Delaying_Elab_Checks := False;
1320          Expander_Mode_Save_And_Set (True);
1321
1322          for J in Delay_Check.First .. Delay_Check.Last loop
1323             New_Scope (Delay_Check.Table (J).Curscop);
1324             From_Elab_Code := Delay_Check.Table (J).From_Elab_Code;
1325
1326             Check_Internal_Call_Continue (
1327               N           => Delay_Check.Table (J).N,
1328               E           => Delay_Check.Table (J).E,
1329               Outer_Scope => Delay_Check.Table (J).Outer_Scope,
1330               Orig_Ent    => Delay_Check.Table (J).Orig_Ent);
1331
1332             Pop_Scope;
1333          end loop;
1334
1335          --  Set Delaying_Elab_Checks back on for next main compilation
1336
1337          Expander_Mode_Restore;
1338          Delaying_Elab_Checks := True;
1339       end if;
1340    end Check_Elab_Calls;
1341
1342    ------------------------------
1343    -- Check_Elab_Instantiation --
1344    ------------------------------
1345
1346    procedure Check_Elab_Instantiation
1347      (N           : Node_Id;
1348       Outer_Scope : Entity_Id := Empty)
1349    is
1350       Ent : Entity_Id;
1351
1352    begin
1353       --  Check for and deal with bad instantiation case. There is some
1354       --  duplicated code here, but we will worry about this later ???
1355
1356       Check_Bad_Instantiation (N);
1357
1358       if ABE_Is_Certain (N) then
1359          return;
1360       end if;
1361
1362       --  Nothing to do if we do not have an instantiation (happens in some
1363       --  error cases, and also in the formal package declaration case)
1364
1365       if Nkind (N) not in N_Generic_Instantiation then
1366          return;
1367       end if;
1368
1369       --  Nothing to do if inside a generic template
1370
1371       if Inside_A_Generic then
1372          return;
1373       end if;
1374
1375       --  Nothing to do if the instantiation is not in the main unit.
1376
1377       if not In_Extended_Main_Code_Unit (N) then
1378          return;
1379       end if;
1380
1381       Ent := Get_Generic_Entity (N);
1382       From_Elab_Code := not In_Subprogram_Or_Concurrent_Unit;
1383
1384       --  See if we need to analyze this instantiation. We analyze it if
1385       --  either of the following conditions is met:
1386
1387       --    It is an inner level instantiation (since in this case it was
1388       --    triggered by an outer level call from elaboration code), but
1389       --    only if the instantiation is within the scope of the original
1390       --    outer level call.
1391
1392       --    It is an outer level instantiation from elaboration code, or the
1393       --    instantiated entity is in the same elaboratoin scope.
1394
1395       --  And in these cases, we will check both the inter-unit case and
1396       --  the intra-unit (within a single unit) case.
1397
1398       C_Scope := Current_Scope;
1399
1400       if Present (Outer_Scope)
1401         and then Within (Scope (Ent), Outer_Scope)
1402       then
1403          Set_C_Scope;
1404          Check_A_Call (N, Ent, Outer_Scope, Inter_Unit_Only => False);
1405
1406       elsif From_Elab_Code then
1407          Set_C_Scope;
1408          Check_A_Call (N, Ent, Standard_Standard, Inter_Unit_Only => False);
1409
1410       elsif Same_Elaboration_Scope (C_Scope, Scope (Ent)) then
1411          Set_C_Scope;
1412          Check_A_Call (N, Ent, Scope (Ent), Inter_Unit_Only => False);
1413
1414       --  If none of those cases holds, but Dynamic_Elaboration_Checks mode
1415       --  is set, then we will do the check, but only in the inter-unit case
1416       --  (this is to accommodate unguarded elaboration calls from other units
1417       --  in which this same mode is set). We inhibit warnings in this case,
1418       --  since this instantiation is not occurring in elaboration code.
1419
1420       elsif Dynamic_Elaboration_Checks then
1421          Set_C_Scope;
1422          Check_A_Call
1423            (N,
1424             Ent,
1425             Standard_Standard,
1426             Inter_Unit_Only => True,
1427             Generate_Warnings => False);
1428
1429       else
1430          return;
1431       end if;
1432    end Check_Elab_Instantiation;
1433
1434    -------------------------
1435    -- Check_Internal_Call --
1436    -------------------------
1437
1438    procedure Check_Internal_Call
1439      (N           : Node_Id;
1440       E           : Entity_Id;
1441       Outer_Scope : Entity_Id;
1442       Orig_Ent    : Entity_Id)
1443    is
1444       Inst_Case : constant Boolean := Nkind (N) in N_Generic_Instantiation;
1445
1446    begin
1447       --  If not function or procedure call or instantiation, then ignore
1448       --  call (this happens in some error case and rewriting cases)
1449
1450       if Nkind (N) /= N_Function_Call
1451            and then
1452          Nkind (N) /= N_Procedure_Call_Statement
1453            and then
1454          not Inst_Case
1455       then
1456          return;
1457
1458       --  Nothing to do if this is a call or instantiation that has
1459       --  already been found to be a sure ABE
1460
1461       elsif ABE_Is_Certain (N) then
1462          return;
1463
1464       --  Nothing to do if errors already detected (avoid cascaded errors)
1465
1466       elsif Serious_Errors_Detected /= 0 then
1467          return;
1468
1469       --  Nothing to do if not in full analysis mode
1470
1471       elsif not Full_Analysis then
1472          return;
1473
1474       --  Nothing to do if within a default expression, since the call
1475       --  is not actualy being made at this time.
1476
1477       elsif In_Default_Expression then
1478          return;
1479
1480       --  Nothing to do for call to intrinsic subprogram
1481
1482       elsif Is_Intrinsic_Subprogram (E) then
1483          return;
1484
1485       --  No need to trace local calls if checking task activation, because
1486       --  other local bodies are elaborated already.
1487
1488       elsif In_Task_Activation then
1489          return;
1490       end if;
1491
1492       --  Delay this call if we are still delaying calls
1493
1494       if Delaying_Elab_Checks then
1495          Delay_Check.Increment_Last;
1496          Delay_Check.Table (Delay_Check.Last) :=
1497            (N              => N,
1498             E              => E,
1499             Orig_Ent       => Orig_Ent,
1500             Curscop        => Current_Scope,
1501             Outer_Scope    => Outer_Scope,
1502             From_Elab_Code => From_Elab_Code);
1503          return;
1504
1505       --  Otherwise, call phase 2 continuation right now
1506
1507       else
1508          Check_Internal_Call_Continue (N, E, Outer_Scope, Orig_Ent);
1509       end if;
1510
1511    end Check_Internal_Call;
1512
1513    ----------------------------------
1514    -- Check_Internal_Call_Continue --
1515    ----------------------------------
1516
1517    procedure Check_Internal_Call_Continue
1518      (N           : Node_Id;
1519       E           : Entity_Id;
1520       Outer_Scope : Entity_Id;
1521       Orig_Ent    : Entity_Id)
1522    is
1523       Loc       : constant Source_Ptr := Sloc (N);
1524       Inst_Case : constant Boolean := Is_Generic_Unit (E);
1525
1526       Sbody : Node_Id;
1527       Ebody : Entity_Id;
1528
1529       function Process (N : Node_Id) return Traverse_Result;
1530       --  Function applied to each node as we traverse the body.
1531       --  Checks for call that needs checking, and if so checks
1532       --  it. Always returns OK, so entire tree is traversed.
1533
1534       -------------
1535       -- Process --
1536       -------------
1537
1538       function Process (N : Node_Id) return Traverse_Result is
1539       begin
1540          --  If user has specified that there are no entry calls in elaboration
1541          --  code, do not trace past an accept statement, because the rendez-
1542          --  vous will happen after elaboration.
1543
1544          if (Nkind (Original_Node (N)) = N_Accept_Statement
1545               or else Nkind (Original_Node (N)) = N_Selective_Accept)
1546            and then Restriction_Active (No_Entry_Calls_In_Elaboration_Code)
1547          then
1548             return Abandon;
1549
1550          --  If we have a subprogram call, check it
1551
1552          elsif Nkind (N) = N_Function_Call
1553            or else Nkind (N) = N_Procedure_Call_Statement
1554          then
1555             Check_Elab_Call (N, Outer_Scope);
1556             return OK;
1557
1558          --  If we have a generic instantiation, check it
1559
1560          elsif Nkind (N) in N_Generic_Instantiation then
1561             Check_Elab_Instantiation (N, Outer_Scope);
1562             return OK;
1563
1564          --  Skip subprogram bodies that come from source (wait for
1565          --  call to analyze these). The reason for the come from
1566          --  source test is to avoid catching task bodies.
1567
1568          --  For task bodies, we should really avoid these too, waiting
1569          --  for the task activation, but that's too much trouble to
1570          --  catch for now, so we go in unconditionally. This is not
1571          --  so terrible, it means the error backtrace is not quite
1572          --  complete, and we are too eager to scan bodies of tasks
1573          --  that are unused, but this is hardly very significant!
1574
1575          elsif Nkind (N) = N_Subprogram_Body
1576            and then Comes_From_Source (N)
1577          then
1578             return Skip;
1579
1580          else
1581             return OK;
1582          end if;
1583       end Process;
1584
1585       procedure Traverse is new Atree.Traverse_Proc;
1586       --  Traverse procedure using above Process function
1587
1588    --  Start of processing for Check_Internal_Call_Continue
1589
1590    begin
1591       --  Save outer level call if at outer level
1592
1593       if Elab_Call.Last = 0 then
1594          Outer_Level_Sloc := Loc;
1595       end if;
1596
1597       Elab_Visited.Increment_Last;
1598       Elab_Visited.Table (Elab_Visited.Last) := E;
1599
1600       --  If the call is to a function that renames a literal, no check
1601       --  is needed.
1602
1603       if Ekind (E) = E_Enumeration_Literal then
1604          return;
1605       end if;
1606
1607       Sbody := Unit_Declaration_Node (E);
1608
1609       if Nkind (Sbody) /= N_Subprogram_Body
1610            and then
1611          Nkind (Sbody) /= N_Package_Body
1612       then
1613          Ebody := Corresponding_Body (Sbody);
1614
1615          if No (Ebody) then
1616             return;
1617          else
1618             Sbody := Unit_Declaration_Node (Ebody);
1619          end if;
1620       end if;
1621
1622       --  If the body appears after the outer level call or
1623       --  instantiation then we have an error case handled below.
1624
1625       if Earlier_In_Extended_Unit (Outer_Level_Sloc, Sloc (Sbody))
1626         and then not In_Task_Activation
1627       then
1628          null;
1629
1630       --  If we have the instantiation case we are done, since we now
1631       --  know that the body of the generic appeared earlier.
1632
1633       elsif Inst_Case then
1634          return;
1635
1636       --  Otherwise we have a call, so we trace through the called
1637       --  body to see if it has any problems ..
1638
1639       else
1640          pragma Assert (Nkind (Sbody) = N_Subprogram_Body);
1641
1642          Elab_Call.Increment_Last;
1643          Elab_Call.Table (Elab_Call.Last).Cloc := Loc;
1644          Elab_Call.Table (Elab_Call.Last).Ent  := E;
1645
1646          if Debug_Flag_LL then
1647             Write_Str ("Elab_Call.Last = ");
1648             Write_Int (Int (Elab_Call.Last));
1649             Write_Str ("   Ent = ");
1650             Write_Name (Chars (E));
1651             Write_Str ("   at ");
1652             Write_Location (Sloc (N));
1653             Write_Eol;
1654          end if;
1655
1656          --  Now traverse declarations and statements of subprogram body.
1657          --  Note that we cannot simply Traverse (Sbody), since traverse
1658          --  does not normally visit subprogram bodies.
1659
1660          declare
1661             Decl : Node_Id := First (Declarations (Sbody));
1662
1663          begin
1664             while Present (Decl) loop
1665                Traverse (Decl);
1666                Next (Decl);
1667             end loop;
1668          end;
1669
1670          Traverse (Handled_Statement_Sequence (Sbody));
1671
1672          Elab_Call.Decrement_Last;
1673          return;
1674       end if;
1675
1676       --  Here is the case of calling a subprogram where the body has
1677       --  not yet been encountered, a warning message is needed.
1678
1679       --  If we have nothing in the call stack, then this is at the
1680       --  outer level, and the ABE is bound to occur.
1681
1682       if Elab_Call.Last = 0 then
1683          if Inst_Case then
1684             Error_Msg_NE
1685               ("?cannot instantiate& before body seen", N, Orig_Ent);
1686          else
1687             Error_Msg_NE
1688               ("?cannot call& before body seen", N, Orig_Ent);
1689          end if;
1690
1691          Error_Msg_N
1692            ("\?Program_Error will be raised at run time", N);
1693          Insert_Elab_Check (N);
1694
1695       --  Call is not at outer level
1696
1697       else
1698          --  Deal with dynamic elaboration check
1699
1700          if not Elaboration_Checks_Suppressed (E) then
1701             Set_Elaboration_Entity_Required (E);
1702
1703             --  Case of no elaboration entity allocated yet
1704
1705             if No (Elaboration_Entity (E)) then
1706
1707                --  Create object declaration for elaboration entity, and put it
1708                --  just in front of the spec of the subprogram or generic unit,
1709                --  in the same scope as this unit.
1710
1711                declare
1712                   Loce : constant Source_Ptr := Sloc (E);
1713                   Ent  : constant Entity_Id  :=
1714                            Make_Defining_Identifier (Loc,
1715                              Chars => New_External_Name (Chars (E), 'E'));
1716
1717                begin
1718                   Set_Elaboration_Entity (E, Ent);
1719                   New_Scope (Scope (E));
1720
1721                   Insert_Action (Declaration_Node (E),
1722                     Make_Object_Declaration (Loce,
1723                       Defining_Identifier => Ent,
1724                       Object_Definition =>
1725                         New_Occurrence_Of (Standard_Boolean, Loce),
1726                       Expression => New_Occurrence_Of (Standard_False, Loce)));
1727
1728                   --  Set elaboration flag at the point of the body
1729
1730                   Set_Elaboration_Flag (Sbody, E);
1731
1732                   --  Kill current value indication. This is necessary
1733                   --  because the tests of this flag are inserted out of
1734                   --  sequence and must not pick up bogus indications of
1735                   --  the wrong constant value. Also, this is never a true
1736                   --  constant, since one way or another, it gets reset.
1737
1738                   Set_Current_Value    (Ent, Empty);
1739                   Set_Is_True_Constant (Ent, False);
1740                   Pop_Scope;
1741                end;
1742             end if;
1743
1744             --  Generate check of the elaboration Boolean
1745
1746             Insert_Elab_Check (N,
1747               New_Occurrence_Of (Elaboration_Entity (E), Loc));
1748          end if;
1749
1750          --  Generate the warning
1751
1752          if not Suppress_Elaboration_Warnings (E)
1753            and then not Elaboration_Checks_Suppressed (E)
1754          then
1755             if Inst_Case then
1756                Error_Msg_NE
1757                  ("instantiation of& may occur before body is seen?",
1758                   N, Orig_Ent);
1759             else
1760                Error_Msg_NE
1761                  ("call to& may occur before body is seen?", N, Orig_Ent);
1762             end if;
1763
1764             Error_Msg_N
1765               ("\Program_Error may be raised at run time?", N);
1766
1767             Output_Calls (N);
1768          end if;
1769       end if;
1770
1771       --  Set flag to suppress further warnings on same subprogram
1772       --  unless in all errors mode
1773
1774       if not All_Errors_Mode then
1775          Set_Suppress_Elaboration_Warnings (E);
1776       end if;
1777    end Check_Internal_Call_Continue;
1778
1779    ---------------------------
1780    -- Check_Task_Activation --
1781    ---------------------------
1782
1783    procedure Check_Task_Activation (N : Node_Id) is
1784       Loc         : constant Source_Ptr := Sloc (N);
1785       Inter_Procs : constant Elist_Id   := New_Elmt_List;
1786       Intra_Procs : constant Elist_Id   := New_Elmt_List;
1787       Ent         : Entity_Id;
1788       P           : Entity_Id;
1789       Task_Scope  : Entity_Id;
1790       Cunit_SC    : Boolean := False;
1791       Decl        : Node_Id;
1792       Elmt        : Elmt_Id;
1793       Enclosing   : Entity_Id;
1794
1795       procedure Add_Task_Proc (Typ : Entity_Id);
1796       --  Add to Task_Procs the task body procedure(s) of task types in Typ.
1797       --  For record types, this procedure recurses over component types.
1798
1799       procedure Collect_Tasks (Decls : List_Id);
1800       --  Collect the types of the tasks that are to be activated in the given
1801       --  list of declarations, in order to perform elaboration checks on the
1802       --  corresponding task procedures which are called implicitly here.
1803
1804       function Outer_Unit (E : Entity_Id) return Entity_Id;
1805       --  find enclosing compilation unit of Entity, ignoring subunits, or
1806       --  else enclosing subprogram. If E is not a package, there is no need
1807       --  for inter-unit elaboration checks.
1808
1809       -------------------
1810       -- Add_Task_Proc --
1811       -------------------
1812
1813       procedure Add_Task_Proc (Typ : Entity_Id) is
1814          Comp : Entity_Id;
1815          Proc : Entity_Id := Empty;
1816
1817       begin
1818          if Is_Task_Type (Typ) then
1819             Proc := Get_Task_Body_Procedure (Typ);
1820
1821          elsif Is_Array_Type (Typ)
1822            and then Has_Task (Base_Type (Typ))
1823          then
1824             Add_Task_Proc (Component_Type (Typ));
1825
1826          elsif Is_Record_Type (Typ)
1827            and then Has_Task (Base_Type (Typ))
1828          then
1829             Comp := First_Component (Typ);
1830
1831             while Present (Comp) loop
1832                Add_Task_Proc (Etype (Comp));
1833                Comp := Next_Component (Comp);
1834             end loop;
1835          end if;
1836
1837          --  If the task type is another unit, we will perform the usual
1838          --  elaboration check on its enclosing unit. If the type is in the
1839          --  same unit, we can trace the task body as for an internal call,
1840          --  but we only need to examine other external calls, because at
1841          --  the point the task is activated, internal subprogram bodies
1842          --  will have been elaborated already. We keep separate lists for
1843          --  each kind of task.
1844
1845          --  Skip this test if errors have occurred, since in this case
1846          --  we can get false indications.
1847
1848          if Serious_Errors_Detected /= 0 then
1849             return;
1850          end if;
1851
1852          if Present (Proc) then
1853             if Outer_Unit (Scope (Proc)) = Enclosing then
1854
1855                if No (Corresponding_Body (Unit_Declaration_Node (Proc)))
1856                  and then
1857                    (not Is_Generic_Instance (Scope (Proc))
1858                       or else
1859                     Scope (Proc) = Scope (Defining_Identifier (Decl)))
1860                then
1861                   Error_Msg_N
1862                     ("task will be activated before elaboration of its body?",
1863                       Decl);
1864                   Error_Msg_N
1865                     ("Program_Error will be raised at run-time?", Decl);
1866
1867                elsif
1868                  Present (Corresponding_Body (Unit_Declaration_Node (Proc)))
1869                then
1870                   Append_Elmt (Proc, Intra_Procs);
1871                end if;
1872
1873             else
1874                Elmt := First_Elmt (Inter_Procs);
1875
1876                --  No need for multiple entries of the same type.
1877
1878                while Present (Elmt) loop
1879                   if Node (Elmt) = Proc then
1880                      return;
1881                   end if;
1882
1883                   Next_Elmt (Elmt);
1884                end loop;
1885
1886                Append_Elmt (Proc, Inter_Procs);
1887             end if;
1888          end if;
1889       end Add_Task_Proc;
1890
1891       -------------------
1892       -- Collect_Tasks --
1893       -------------------
1894
1895       procedure Collect_Tasks (Decls : List_Id) is
1896       begin
1897          if Present (Decls) then
1898             Decl := First (Decls);
1899
1900             while Present (Decl) loop
1901
1902                if Nkind (Decl) = N_Object_Declaration
1903                  and then Has_Task (Etype (Defining_Identifier (Decl)))
1904                then
1905                   Add_Task_Proc (Etype (Defining_Identifier (Decl)));
1906                end if;
1907
1908                Next (Decl);
1909             end loop;
1910          end if;
1911       end Collect_Tasks;
1912
1913       ----------------
1914       -- Outer_Unit --
1915       ----------------
1916
1917       function Outer_Unit (E : Entity_Id) return Entity_Id is
1918          Outer : Entity_Id := E;
1919
1920       begin
1921          while Present (Outer) loop
1922             if Elaboration_Checks_Suppressed (Outer) then
1923                Cunit_SC := True;
1924             end if;
1925
1926             exit when Is_Child_Unit (Outer)
1927               or else Scope (Outer) = Standard_Standard
1928               or else Ekind (Outer) /= E_Package;
1929             Outer := Scope (Outer);
1930          end loop;
1931
1932          return Outer;
1933       end Outer_Unit;
1934
1935    --  Start of processing for Check_Task_Activation
1936
1937    begin
1938       Enclosing := Outer_Unit (Current_Scope);
1939
1940       --  Find all tasks declared in the current unit.
1941
1942       if Nkind (N) = N_Package_Body then
1943          P := Unit_Declaration_Node (Corresponding_Spec (N));
1944
1945          Collect_Tasks (Declarations (N));
1946          Collect_Tasks (Visible_Declarations (Specification (P)));
1947          Collect_Tasks (Private_Declarations (Specification (P)));
1948
1949       elsif Nkind (N) = N_Package_Declaration then
1950          Collect_Tasks (Visible_Declarations (Specification (N)));
1951          Collect_Tasks (Private_Declarations (Specification (N)));
1952
1953       else
1954          Collect_Tasks (Declarations (N));
1955       end if;
1956
1957       --  We only perform detailed checks in all tasks are library level
1958       --  entities. If the master is a subprogram or task, activation will
1959       --  depend on the activation of the master itself.
1960       --  Should dynamic checks be added in the more general case???
1961
1962       if Ekind (Enclosing) /= E_Package then
1963          return;
1964       end if;
1965
1966       --  For task types defined in other units, we want the unit containing
1967       --  the task body to be elaborated before the current one.
1968
1969       Elmt := First_Elmt (Inter_Procs);
1970
1971       while Present (Elmt) loop
1972          Ent := Node (Elmt);
1973          Task_Scope := Outer_Unit (Scope (Ent));
1974
1975          if not Is_Compilation_Unit (Task_Scope) then
1976             null;
1977
1978          elsif Suppress_Elaboration_Warnings (Task_Scope)
1979            or else Elaboration_Checks_Suppressed (Task_Scope)
1980          then
1981             null;
1982
1983          elsif Dynamic_Elaboration_Checks then
1984             if not Elaboration_Checks_Suppressed (Ent)
1985               and then not Cunit_SC
1986               and then
1987                 not Restriction_Active (No_Entry_Calls_In_Elaboration_Code)
1988             then
1989                --  Runtime elaboration check required. generate check of the
1990                --  elaboration Boolean for the unit containing the entity.
1991
1992                Insert_Elab_Check (N,
1993                  Make_Attribute_Reference (Loc,
1994                    Attribute_Name => Name_Elaborated,
1995                    Prefix =>
1996                      New_Occurrence_Of
1997                        (Spec_Entity (Task_Scope), Loc)));
1998             end if;
1999
2000          else
2001             --  Force the binder to elaborate other unit first
2002
2003             if not Suppress_Elaboration_Warnings (Ent)
2004               and then not Elaboration_Checks_Suppressed (Ent)
2005               and then Elab_Warnings
2006               and then not Suppress_Elaboration_Warnings (Task_Scope)
2007               and then not Elaboration_Checks_Suppressed (Task_Scope)
2008             then
2009                Error_Msg_Node_2 := Task_Scope;
2010                Error_Msg_NE ("activation of an instance of task type&" &
2011                   " requires pragma Elaborate_All on &?", N, Ent);
2012             end if;
2013
2014             Set_Elaborate_All_Desirable (Task_Scope);
2015             Set_Suppress_Elaboration_Warnings (Task_Scope);
2016          end if;
2017
2018          Next_Elmt (Elmt);
2019       end loop;
2020
2021       --  For tasks declared in the current unit, trace other calls within
2022       --  the task procedure bodies, which are available.
2023
2024       In_Task_Activation := True;
2025       Elmt := First_Elmt (Intra_Procs);
2026
2027       while Present (Elmt) loop
2028          Ent := Node (Elmt);
2029          Check_Internal_Call_Continue (N, Ent, Enclosing, Ent);
2030          Next_Elmt (Elmt);
2031       end loop;
2032
2033       In_Task_Activation := False;
2034    end Check_Task_Activation;
2035
2036    --------------------------------
2037    -- Set_Elaboration_Constraint --
2038    --------------------------------
2039
2040    procedure Set_Elaboration_Constraint
2041     (Call : Node_Id;
2042      Subp : Entity_Id;
2043      Scop : Entity_Id)
2044    is
2045       Elab_Unit  : Entity_Id;
2046       Init_Call  : constant Boolean :=
2047                      Chars (Subp) = Name_Initialize
2048                        and then Comes_From_Source (Subp)
2049                        and then Present (Parameter_Associations (Call))
2050                        and then Is_Controlled
2051                          (Etype (First (Parameter_Associations (Call))));
2052    begin
2053       --  If the unit is mentioned in a with_clause of the current
2054       --  unit, it is visible, and we can set the elaboration flag.
2055
2056       if Is_Immediately_Visible (Scop)
2057         or else
2058           (Is_Child_Unit (Scop) and then Is_Visible_Child_Unit (Scop))
2059       then
2060          Set_Elaborate_All_Desirable (Scop);
2061          Set_Suppress_Elaboration_Warnings (Scop, True);
2062          return;
2063       end if;
2064
2065       --  If this is not an initialization call or a call using object notation
2066       --  we know that the unit of the called entity is in the context, and
2067       --  we can set the flag as well. The unit need not be visible if the call
2068       --  occurs within an instantiation.
2069
2070       if Is_Init_Proc (Subp)
2071         or else Init_Call
2072         or else Nkind (Original_Node (Call)) = N_Selected_Component
2073       then
2074          null;  --  detailed processing follows.
2075
2076       else
2077          Set_Elaborate_All_Desirable (Scop);
2078          Set_Suppress_Elaboration_Warnings (Scop, True);
2079          return;
2080       end if;
2081
2082       --  If the unit is not in the context, there must be an intermediate
2083       --  unit that is, on which we need to place to elaboration flag.
2084
2085       if Is_Init_Proc (Subp)
2086         or else Init_Call
2087       then
2088          --  The initialization call is on an object whose type is not
2089          --  declared in the same scope as the subprogram. The type of
2090          --  the object must be a subtype of the type of operation. This
2091          --  object is the first actual in the call.
2092
2093          declare
2094             Typ  : constant Entity_Id :=
2095                      Etype (First (Parameter_Associations (Call)));
2096          begin
2097             Elab_Unit := Scope (Typ);
2098
2099             while (Present (Elab_Unit))
2100               and then not Is_Compilation_Unit (Elab_Unit)
2101             loop
2102                Elab_Unit := Scope (Elab_Unit);
2103             end loop;
2104          end;
2105       elsif Nkind (Original_Node (Call)) = N_Selected_Component then
2106
2107          --  If original node uses selected component notation, the
2108          --  prefix is visible and determines the scope that must be
2109          --  elaborated. After rewriting, the prefix is the first actual
2110          --  in the call.
2111
2112          Elab_Unit := Scope (Etype (First (Parameter_Associations (Call))));
2113
2114       else
2115          --  Using previously computed scope. If the elaboration check is
2116          --  done after analysis, the scope is not visible any longer, but
2117          --  must still be in the context.
2118
2119          Elab_Unit := Scop;
2120       end if;
2121
2122       Set_Elaborate_All_Desirable (Elab_Unit);
2123       Set_Suppress_Elaboration_Warnings (Elab_Unit, True);
2124    end Set_Elaboration_Constraint;
2125
2126    ----------------------
2127    -- Has_Generic_Body --
2128    ----------------------
2129
2130    function Has_Generic_Body (N : Node_Id) return Boolean is
2131       Ent  : constant Entity_Id := Get_Generic_Entity (N);
2132       Decl : constant Node_Id   := Unit_Declaration_Node (Ent);
2133       Scop : Entity_Id;
2134
2135       function Find_Body_In (E : Entity_Id; N : Node_Id) return Node_Id;
2136       --  Determine if the list of nodes headed by N and linked by Next
2137       --  contains a package body for the package spec entity E, and if
2138       --  so return the package body. If not, then returns Empty.
2139
2140       function Load_Package_Body (Nam : Unit_Name_Type) return Node_Id;
2141       --  This procedure is called load the unit whose name is given by Nam.
2142       --  This unit is being loaded to see whether it contains an optional
2143       --  generic body. The returned value is the loaded unit, which is
2144       --  always a package body (only package bodies can contain other
2145       --  entities in the sense in which Has_Generic_Body is interested).
2146       --  We only attempt to load bodies if we are generating code. If we
2147       --  are in semantics check only mode, then it would be wrong to load
2148       --  bodies that are not required from a semantic point of view, so
2149       --  in this case we return Empty. The result is that the caller may
2150       --  incorrectly decide that a generic spec does not have a body when
2151       --  in fact it does, but the only harm in this is that some warnings
2152       --  on elaboration problems may be lost in semantic checks only mode,
2153       --  which is not big loss. We also return Empty if we go for a body
2154       --  and it is not there.
2155
2156       function Locate_Corresponding_Body (PE : Entity_Id) return Node_Id;
2157       --  PE is the entity for a package spec. This function locates the
2158       --  corresponding package body, returning Empty if none is found.
2159       --  The package body returned is fully parsed but may not yet be
2160       --  analyzed, so only syntactic fields should be referenced.
2161
2162       ------------------
2163       -- Find_Body_In --
2164       ------------------
2165
2166       function Find_Body_In (E : Entity_Id; N : Node_Id) return Node_Id is
2167          Nod : Node_Id;
2168
2169       begin
2170          Nod := N;
2171          while Present (Nod) loop
2172
2173             --  If we found the package body we are looking for, return it
2174
2175             if Nkind (Nod) = N_Package_Body
2176               and then Chars (Defining_Unit_Name (Nod)) = Chars (E)
2177             then
2178                return Nod;
2179
2180             --  If we found the stub for the body, go after the subunit,
2181             --  loading it if necessary.
2182
2183             elsif Nkind (Nod) = N_Package_Body_Stub
2184               and then Chars (Defining_Identifier (Nod)) = Chars (E)
2185             then
2186                if Present (Library_Unit (Nod)) then
2187                   return Unit (Library_Unit (Nod));
2188
2189                else
2190                   return Load_Package_Body (Get_Unit_Name (Nod));
2191                end if;
2192
2193             --  If neither package body nor stub, keep looking on chain
2194
2195             else
2196                Next (Nod);
2197             end if;
2198          end loop;
2199
2200          return Empty;
2201       end Find_Body_In;
2202
2203       -----------------------
2204       -- Load_Package_Body --
2205       -----------------------
2206
2207       function Load_Package_Body (Nam : Unit_Name_Type) return Node_Id is
2208          U : Unit_Number_Type;
2209
2210       begin
2211          if Operating_Mode /= Generate_Code then
2212             return Empty;
2213          else
2214             U :=
2215               Load_Unit
2216                 (Load_Name  => Nam,
2217                  Required   => False,
2218                  Subunit    => False,
2219                  Error_Node => N);
2220
2221             if U = No_Unit then
2222                return Empty;
2223             else
2224                return Unit (Cunit (U));
2225             end if;
2226          end if;
2227       end Load_Package_Body;
2228
2229       -------------------------------
2230       -- Locate_Corresponding_Body --
2231       -------------------------------
2232
2233       function Locate_Corresponding_Body (PE : Entity_Id) return Node_Id is
2234          Spec  : constant Node_Id   := Declaration_Node (PE);
2235          Decl  : constant Node_Id   := Parent (Spec);
2236          Scop  : constant Entity_Id := Scope (PE);
2237          PBody : Node_Id;
2238
2239       begin
2240          if Is_Library_Level_Entity (PE) then
2241
2242             --  If package is a library unit that requires a body, we have
2243             --  no choice but to go after that body because it might contain
2244             --  an optional body for the original generic package.
2245
2246             if Unit_Requires_Body (PE) then
2247
2248                --  Load the body. Note that we are a little careful here to
2249                --  use Spec to get the unit number, rather than PE or Decl,
2250                --  since in the case where the package is itself a library
2251                --  level instantiation, Spec will properly reference the
2252                --  generic template, which is what we really want.
2253
2254                return
2255                  Load_Package_Body
2256                    (Get_Body_Name (Unit_Name (Get_Source_Unit (Spec))));
2257
2258             --  But if the package is a library unit that does NOT require
2259             --  a body, then no body is permitted, so we are sure that there
2260             --  is no body for the original generic package.
2261
2262             else
2263                return Empty;
2264             end if;
2265
2266          --  Otherwise look and see if we are embedded in a further package
2267
2268          elsif Is_Package (Scop) then
2269
2270             --  If so, get the body of the enclosing package, and look in
2271             --  its package body for the package body we are looking for.
2272
2273             PBody := Locate_Corresponding_Body (Scop);
2274
2275             if No (PBody) then
2276                return Empty;
2277             else
2278                return Find_Body_In (PE, First (Declarations (PBody)));
2279             end if;
2280
2281          --  If we are not embedded in a further package, then the body
2282          --  must be in the same declarative part as we are.
2283
2284          else
2285             return Find_Body_In (PE, Next (Decl));
2286          end if;
2287       end Locate_Corresponding_Body;
2288
2289    --  Start of processing for Has_Generic_Body
2290
2291    begin
2292       if Present (Corresponding_Body (Decl)) then
2293          return True;
2294
2295       elsif Unit_Requires_Body (Ent) then
2296          return True;
2297
2298       --  Compilation units cannot have optional bodies
2299
2300       elsif Is_Compilation_Unit (Ent) then
2301          return False;
2302
2303       --  Otherwise look at what scope we are in
2304
2305       else
2306          Scop := Scope (Ent);
2307
2308          --  Case of entity is in other than a package spec, in this case
2309          --  the body, if present, must be in the same declarative part.
2310
2311          if not Is_Package (Scop) then
2312             declare
2313                P : Node_Id;
2314
2315             begin
2316                P := Declaration_Node (Ent);
2317
2318                --  Declaration node may get us a spec, so if so, go to
2319                --  the parent declaration.
2320
2321                while not Is_List_Member (P) loop
2322                   P := Parent (P);
2323                end loop;
2324
2325                return Present (Find_Body_In (Ent, Next (P)));
2326             end;
2327
2328          --  If the entity is in a package spec, then we have to locate
2329          --  the corresponding package body, and look there.
2330
2331          else
2332             declare
2333                PBody : constant Node_Id := Locate_Corresponding_Body (Scop);
2334
2335             begin
2336                if No (PBody) then
2337                   return False;
2338                else
2339                   return
2340                     Present
2341                       (Find_Body_In (Ent, (First (Declarations (PBody)))));
2342                end if;
2343             end;
2344          end if;
2345       end if;
2346    end Has_Generic_Body;
2347
2348    -----------------------
2349    -- Insert_Elab_Check --
2350    -----------------------
2351
2352    procedure Insert_Elab_Check (N : Node_Id; C : Node_Id := Empty) is
2353       Nod : Node_Id;
2354       Loc : constant Source_Ptr := Sloc (N);
2355
2356    begin
2357       --  If expansion is disabled, do not generate any checks. Also
2358       --  skip checks if any subunits are missing because in either
2359       --  case we lack the full information that we need, and no object
2360       --  file will be created in any case.
2361
2362       if not Expander_Active or else Subunits_Missing then
2363          return;
2364       end if;
2365
2366       --  If we have a generic instantiation, where Instance_Spec is set,
2367       --  then this field points to a generic instance spec that has
2368       --  been inserted before the instantiation node itself, so that
2369       --  is where we want to insert a check.
2370
2371       if Nkind (N) in N_Generic_Instantiation
2372         and then Present (Instance_Spec (N))
2373       then
2374          Nod := Instance_Spec (N);
2375       else
2376          Nod := N;
2377       end if;
2378
2379       --  If we are inserting at the top level, insert in Aux_Decls
2380
2381       if Nkind (Parent (Nod)) = N_Compilation_Unit then
2382          declare
2383             ADN : constant Node_Id := Aux_Decls_Node (Parent (Nod));
2384             R   : Node_Id;
2385
2386          begin
2387             if No (C) then
2388                R :=
2389                  Make_Raise_Program_Error (Loc,
2390                    Reason => PE_Access_Before_Elaboration);
2391             else
2392                R :=
2393                  Make_Raise_Program_Error (Loc,
2394                    Condition => Make_Op_Not (Loc, C),
2395                    Reason    => PE_Access_Before_Elaboration);
2396             end if;
2397
2398             if No (Declarations (ADN)) then
2399                Set_Declarations (ADN, New_List (R));
2400             else
2401                Append_To (Declarations (ADN), R);
2402             end if;
2403
2404             Analyze (R);
2405          end;
2406
2407       --  Otherwise just insert before the node in question. However, if
2408       --  the context of the call has already been analyzed, an insertion
2409       --  will not work if it depends on subsequent expansion (e.g. a call in
2410       --  a branch of a short-circuit). In that case we replace the call with
2411       --  a conditional expression, or with a Raise if it is unconditional.
2412       --  Unfortunately this does not work if the call has a dynamic size,
2413       --  because gigi regards it as a dynamic-sized temporary. If such a call
2414       --  appears in a short-circuit expression, the elaboration check will be
2415       --  missed (rare enough ???). Otherwise, the code below inserts the check
2416       --  at the appropriate place before the call. Same applies in the even
2417       --  rarer case the return type has a known size but is unconstrained.
2418
2419       else
2420          if Nkind (N) = N_Function_Call
2421            and then Analyzed (Parent (N))
2422            and then Size_Known_At_Compile_Time (Etype (N))
2423            and then
2424             (not Has_Discriminants (Etype (N))
2425               or else Is_Constrained (Etype (N)))
2426
2427          then
2428             declare
2429                Typ : constant Entity_Id := Etype (N);
2430                Chk : constant Boolean   := Do_Range_Check (N);
2431
2432                R   : constant Node_Id :=
2433                        Make_Raise_Program_Error (Loc,
2434                          Reason => PE_Access_Before_Elaboration);
2435
2436             begin
2437                Set_Etype (R, Typ);
2438
2439                if No (C) then
2440                   Rewrite (N, R);
2441
2442                else
2443                   Rewrite (N,
2444                     Make_Conditional_Expression (Loc,
2445                       Expressions => New_List (C, Relocate_Node (N), R)));
2446                end if;
2447
2448                Analyze_And_Resolve (N, Typ);
2449
2450                --  If the original call requires a range check, so does the
2451                --  conditional expression.
2452
2453                if Chk then
2454                   Enable_Range_Check (N);
2455                else
2456                   Set_Do_Range_Check (N, False);
2457                end if;
2458             end;
2459
2460          else
2461             if No (C) then
2462                Insert_Action (Nod,
2463                   Make_Raise_Program_Error (Loc,
2464                     Reason => PE_Access_Before_Elaboration));
2465             else
2466                Insert_Action (Nod,
2467                   Make_Raise_Program_Error (Loc,
2468                     Condition =>
2469                       Make_Op_Not (Loc,
2470                         Right_Opnd => C),
2471                     Reason => PE_Access_Before_Elaboration));
2472             end if;
2473          end if;
2474       end if;
2475    end Insert_Elab_Check;
2476
2477    ------------------
2478    -- Output_Calls --
2479    ------------------
2480
2481    procedure Output_Calls (N : Node_Id) is
2482       Ent : Entity_Id;
2483
2484       function Is_Printable_Error_Name (Nm : Name_Id) return Boolean;
2485       --  An internal function, used to determine if a name, Nm, is either
2486       --  a non-internal name, or is an internal name that is printable
2487       --  by the error message circuits (i.e. it has a single upper
2488       --  case letter at the end).
2489
2490       function Is_Printable_Error_Name (Nm : Name_Id) return Boolean is
2491       begin
2492          if not Is_Internal_Name (Nm) then
2493             return True;
2494
2495          elsif Name_Len = 1 then
2496             return False;
2497
2498          else
2499             Name_Len := Name_Len - 1;
2500             return not Is_Internal_Name;
2501          end if;
2502       end Is_Printable_Error_Name;
2503
2504    --  Start of processing for Output_Calls
2505
2506    begin
2507       for J in reverse 1 .. Elab_Call.Last loop
2508          Error_Msg_Sloc := Elab_Call.Table (J).Cloc;
2509
2510          Ent := Elab_Call.Table (J).Ent;
2511
2512          if Is_Generic_Unit (Ent) then
2513             Error_Msg_NE ("\?& instantiated #", N, Ent);
2514
2515          elsif Is_Init_Proc (Ent) then
2516             Error_Msg_N ("\?initialization procedure called #", N);
2517
2518          elsif Is_Printable_Error_Name (Chars (Ent)) then
2519             Error_Msg_NE ("\?& called #", N, Ent);
2520
2521          else
2522             Error_Msg_N ("\? called #", N);
2523          end if;
2524       end loop;
2525    end Output_Calls;
2526
2527    ----------------------------
2528    -- Same_Elaboration_Scope --
2529    ----------------------------
2530
2531    function Same_Elaboration_Scope (Scop1, Scop2 : Entity_Id) return Boolean is
2532       S1 : Entity_Id := Scop1;
2533       S2 : Entity_Id := Scop2;
2534
2535    begin
2536       while S1 /= Standard_Standard
2537         and then (Ekind (S1) = E_Package
2538                     or else
2539                   Ekind (S1) = E_Block)
2540       loop
2541          S1 := Scope (S1);
2542       end loop;
2543
2544       while S2 /= Standard_Standard
2545         and then (Ekind (S2) = E_Package
2546                     or else
2547                   Ekind (S2) = E_Protected_Type
2548                     or else
2549                   Ekind (S2) = E_Block)
2550       loop
2551          S2 := Scope (S2);
2552       end loop;
2553
2554       return S1 = S2;
2555    end Same_Elaboration_Scope;
2556
2557    -----------------
2558    -- Set_C_Scope --
2559    -----------------
2560
2561    procedure Set_C_Scope is
2562    begin
2563       while not Is_Compilation_Unit (C_Scope) loop
2564          C_Scope := Scope (C_Scope);
2565       end loop;
2566    end Set_C_Scope;
2567
2568    -----------------
2569    -- Spec_Entity --
2570    -----------------
2571
2572    function Spec_Entity (E : Entity_Id) return Entity_Id is
2573       Decl : Node_Id;
2574
2575    begin
2576       --  Check for case of body entity
2577       --  Why is the check for E_Void needed???
2578
2579       if Ekind (E) = E_Void
2580         or else Ekind (E) = E_Subprogram_Body
2581         or else Ekind (E) = E_Package_Body
2582       then
2583          Decl := E;
2584
2585          loop
2586             Decl := Parent (Decl);
2587             exit when Nkind (Decl) in N_Proper_Body;
2588          end loop;
2589
2590          return Corresponding_Spec (Decl);
2591
2592       else
2593          return E;
2594       end if;
2595    end Spec_Entity;
2596
2597    -------------------
2598    -- Supply_Bodies --
2599    -------------------
2600
2601    procedure Supply_Bodies (N : Node_Id) is
2602    begin
2603       if Nkind (N) = N_Subprogram_Declaration then
2604          declare
2605             Ent : constant Entity_Id := Defining_Unit_Name (Specification (N));
2606
2607          begin
2608             Set_Is_Imported (Ent);
2609             Set_Convention  (Ent, Convention_Stubbed);
2610          end;
2611
2612       elsif Nkind (N) = N_Package_Declaration then
2613          declare
2614             Spec : constant Node_Id := Specification (N);
2615
2616          begin
2617             New_Scope (Defining_Unit_Name (Spec));
2618             Supply_Bodies (Visible_Declarations (Spec));
2619             Supply_Bodies (Private_Declarations (Spec));
2620             Pop_Scope;
2621          end;
2622       end if;
2623    end Supply_Bodies;
2624
2625    procedure Supply_Bodies (L : List_Id) is
2626       Elmt : Node_Id;
2627
2628    begin
2629       if Present (L) then
2630          Elmt := First (L);
2631          while Present (Elmt) loop
2632             Supply_Bodies (Elmt);
2633             Next (Elmt);
2634          end loop;
2635       end if;
2636    end Supply_Bodies;
2637
2638    ------------
2639    -- Within --
2640    ------------
2641
2642    function Within (E1, E2 : Entity_Id) return Boolean is
2643       Scop : Entity_Id;
2644
2645    begin
2646       Scop := E1;
2647
2648       loop
2649          if Scop = E2 then
2650             return True;
2651
2652          elsif Scop = Standard_Standard then
2653             return False;
2654
2655          else
2656             Scop := Scope (Scop);
2657          end if;
2658       end loop;
2659
2660       raise Program_Error;
2661    end Within;
2662
2663    --------------------------
2664    -- Within_Elaborate_All --
2665    --------------------------
2666
2667    function Within_Elaborate_All (E : Entity_Id) return Boolean is
2668       Item    : Node_Id;
2669       Item2   : Node_Id;
2670       Elab_Id : Entity_Id;
2671       Par     : Node_Id;
2672
2673    begin
2674       Item := First (Context_Items (Cunit (Current_Sem_Unit)));
2675
2676       while Present (Item) loop
2677          if Nkind (Item) = N_Pragma
2678            and then Get_Pragma_Id (Chars (Item)) = Pragma_Elaborate_All
2679          then
2680             if Error_Posted (Item) then
2681
2682                --  Some previous error on the pragma itself
2683
2684                return False;
2685             end if;
2686
2687             Elab_Id :=
2688               Entity (
2689                 Expression (First (Pragma_Argument_Associations (Item))));
2690
2691             Par   := Parent (Unit_Declaration_Node (Elab_Id));
2692             Item2 := First (Context_Items (Par));
2693
2694             while Present (Item2) loop
2695                if Nkind (Item2) = N_With_Clause
2696                  and then Entity (Name (Item2)) = E
2697                then
2698                   return True;
2699                end if;
2700
2701                Next (Item2);
2702             end loop;
2703          end if;
2704
2705          Next (Item);
2706       end loop;
2707
2708       return False;
2709    end Within_Elaborate_All;
2710
2711 end Sem_Elab;