* gimplify.c (find_single_pointer_decl_1): New static function.
[official-gcc.git] / gcc / ada / sem_elab.adb
blob25b5fd36624f67f1930d7fc036f28b6d010753ee
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, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, 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 ------------------------------------------------------------------------------
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;
60 package body Sem_Elab is
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.
68 type Elab_Call_Entry is record
69 Cloc : Source_Ptr;
70 Ent : Entity_Id;
71 end record;
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");
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
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");
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.
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).
105 E : Entity_Id;
106 -- The parameter E from the call to Check_Internal_Call
108 Orig_Ent : Entity_Id;
109 -- The parameter Orig_Ent from the call to Check_Internal_Call
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.
115 From_Elab_Code : Boolean;
116 -- Save indication of whether this call is from elaboration code
118 Outer_Scope : Entity_Id;
119 -- Save scope of outer level call
121 end record;
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");
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.
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.
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.
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.
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
158 -----------------------
159 -- Local Subprograms --
160 -----------------------
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.
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.
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.
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.
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.
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:
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.
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.
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.
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).
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.
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.
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.
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.
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
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.
298 procedure Supply_Bodies (L : List_Id);
299 -- Calls Supply_Bodies for all elements of the given list L
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 is one
303 -- of its contained scopes, False otherwise.
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 U to
308 -- which the pragma applies. This prevents spurious warnings when the
309 -- called entity is renamed within U.
311 ------------------
312 -- Check_A_Call --
313 ------------------
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)
322 Loc : constant Source_Ptr := Sloc (N);
323 Ent : Entity_Id;
324 Decl : Node_Id;
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.
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.
345 Body_Acts_As_Spec : Boolean;
346 -- Set to true if call is to body acting as spec (no separate spec)
348 Inst_Case : constant Boolean := Nkind (N) in N_Generic_Instantiation;
349 -- Indicates if we have instantiation case
351 Caller_Unit_Internal : Boolean;
352 Callee_Unit_Internal : Boolean;
354 Inst_Caller : Source_Ptr;
355 Inst_Callee : Source_Ptr;
357 Unit_Caller : Unit_Number_Type;
358 Unit_Callee : Unit_Number_Type;
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.
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.
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;
378 -- Go to parent for derived subprogram, or to original subprogram
379 -- in the case of a renaming (Alias covers both these cases)
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;
390 -- Nothing to do for imported entities
392 if Is_Imported (Ent) then
393 return;
394 end if;
396 exit when Inst_Case or else No (Alias (Ent));
397 Ent := Alias (Ent);
398 end loop;
400 Decl := Unit_Declaration_Node (Ent);
402 if Nkind (Decl) = N_Subprogram_Body then
403 Body_Acts_As_Spec := True;
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;
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).
416 else
417 return;
418 end if;
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;
428 -- Exit when we get to compilation unit, not counting subunits
430 exit when Is_Compilation_Unit (E_Scope)
431 and then (Is_Child_Unit (E_Scope)
432 or else Scope (E_Scope) = Standard_Standard);
434 -- If we did not find a compilation unit, other than standard,
435 -- then nothing to check (happens in some instantiation cases)
437 if E_Scope = Standard_Standard then
438 return;
440 -- Otherwise move up a scope looking for compilation unit
442 else
443 E_Scope := Scope (E_Scope);
444 end if;
445 end loop;
447 -- No checks needed for pure or preelaborated compilation units
449 if Is_Pure (E_Scope)
450 or else Is_Preelaborated (E_Scope)
451 then
452 return;
453 end if;
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.
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;
468 -- Do not give a warning for a package with no body
470 if Ekind (Ent) = E_Generic_Package
471 and then not Has_Generic_Body (N)
472 then
473 return;
474 end if;
476 -- Case of entity is not in current unit (i.e. with'ed unit case)
478 if E_Scope /= C_Scope then
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.
483 if not From_Elab_Code and then not Dynamic_Elaboration_Checks then
484 return;
485 end if;
487 -- Nothing to do if some scope said that no checks were required
489 if Cunit_SC then
490 return;
491 end if;
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.
497 if Is_Generic_Instance (Ent) and not Dynamic_Elaboration_Checks then
498 return;
499 end if;
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.
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)));
515 if not Is_Controlled (Typ) then
516 return;
517 else
518 Init := Find_Prim_Op (Typ, Name_Initialize);
520 if Comes_From_Source (Init) then
521 Ent := Init;
522 else
523 return;
524 end if;
525 end if;
526 end;
528 else
529 return;
530 end if;
531 end if;
533 -- Check cases of internal units
535 Callee_Unit_Internal :=
536 Is_Internal_File_Name
537 (Unit_File_Name (Get_Source_Unit (E_Scope)));
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)
543 if Callee_Unit_Internal and Inst_Case then
544 return;
545 end if;
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;
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).
559 if Callee_Unit_Internal and (not Caller_Unit_Internal) then
560 return;
561 end if;
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 ???
567 if (Callee_Unit_Internal and Caller_Unit_Internal)
568 and then not Debug_Flag_EE
569 then
570 return;
571 end if;
573 if Is_TSS (E, TSS_Deep_Initialize) then
574 Ent := E;
575 end if;
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.
582 -- However, if we are doing dynamic elaboration, we need to
583 -- chase the call in the usual manner.
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 ???
588 Inst_Caller := Instantiation (Get_Source_File_Index (Sloc (N)));
589 Inst_Callee := Instantiation (Get_Source_File_Index (Sloc (Ent)));
591 if Inst_Caller = No_Location then
592 Unit_Caller := No_Unit;
593 else
594 Unit_Caller := Get_Source_Unit (N);
595 end if;
597 if Inst_Callee = No_Location then
598 Unit_Callee := No_Unit;
599 else
600 Unit_Callee := Get_Source_Unit (Ent);
601 end if;
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));
609 -- If we don't get a spec entity, just ignore call. Not
610 -- quite clear why this check is necessary.
612 if No (E_Scope) then
613 return;
614 end if;
616 -- Otherwise step to enclosing compilation unit
618 while not Is_Compilation_Unit (E_Scope) loop
619 E_Scope := Scope (E_Scope);
620 end loop;
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.
629 else
630 -- Loop to carefully follow renamings and derivations
631 -- one step outside the current unit, but not further.
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;
641 loop
642 while not Is_Compilation_Unit (E_Scope) loop
643 E_Scope := Scope (E_Scope);
644 end loop;
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.
650 exit when E_Scope /= C_Scope;
651 Ent := Alias (Ent);
652 E_Scope := Ent;
654 -- If no alias, there is a previous error
656 if No (Ent) then
657 return;
658 end if;
659 end loop;
660 end if;
662 if Within_Elaborate_All (E_Scope) then
663 return;
664 end if;
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.
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;
682 while not Is_Compilation_Unit (W_Scope) loop
683 W_Scope := Scope (W_Scope);
684 end loop;
686 -- Now check if an elaborate_all (or dynamic check) is needed
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);
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);
706 else
707 Error_Msg_NE
708 ("call to & may raise Program_Error?", N, Ent);
709 end if;
710 end if;
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);
718 -- Set flag to prevent further warnings for same unit
719 -- unless in All_Errors_Mode.
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;
726 -- Check for runtime elaboration check required
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.
737 -- Note that for this case, we do check the real unit (the
738 -- one from following renamings, since that is the issue!)
740 -- Could this possibly miss a useless but required PE???
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;
750 -- Case of static elaboration model
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.
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;
764 -- Here we need to generate an implicit elaborate all
766 else
767 -- Generate elaborate_all warning unless suppressed
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;
780 -- Set indication for binder to generate Elaborate_All
782 Set_Elaboration_Constraint (N, E, W_Scope);
783 end if;
784 end if;
786 -- Case of entity is in same unit as call or instantiation
788 elsif not Inter_Unit_Only then
789 Check_Internal_Call (N, Ent, Outer_Scope, E);
790 end if;
791 end Check_A_Call;
793 -----------------------------
794 -- Check_Bad_Instantiation --
795 -----------------------------
797 procedure Check_Bad_Instantiation (N : Node_Id) is
798 Ent : Entity_Id;
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)
804 if Nkind (N) not in N_Generic_Instantiation then
805 return;
807 -- Nothing to do if serious errors detected (avoid cascaded errors)
809 elsif Serious_Errors_Detected /= 0 then
810 return;
812 -- Nothing to do if not in full analysis mode
814 elsif not Full_Analysis then
815 return;
817 -- Nothing to do if inside a generic template
819 elsif Inside_A_Generic then
820 return;
822 -- Nothing to do if a library level instantiation
824 elsif Nkind (Parent (N)) = N_Compilation_Unit then
825 return;
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.
830 elsif
831 Nkind (Parent (Unit_Declaration_Node (Main_Unit_Entity))) = N_Subunit
832 then
833 return;
834 end if;
836 Ent := Get_Generic_Entity (N);
838 -- The case we are interested in is when the generic spec is in the
839 -- current declarative part
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;
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.
854 declare
855 D1 : constant Int := Instantiation_Depth (Sloc (Ent));
856 D2 : constant Int := Instantiation_Depth (Sloc (N));
858 begin
859 if D1 > D2 then
860 return;
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;
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.
873 if Has_Completion (Ent) then
874 return;
875 end if;
877 -- If there is no body, then nothing to do
879 if not Has_Generic_Body (N) then
880 return;
881 end if;
883 -- Here we definitely have a bad instantiation
885 Error_Msg_NE
886 ("?cannot instantiate& before body seen", N, Ent);
888 if Present (Instance_Spec (N)) then
889 Supply_Bodies (Instance_Spec (N));
890 end if;
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);
897 end Check_Bad_Instantiation;
899 ---------------------
900 -- Check_Elab_Call --
901 ---------------------
903 procedure Check_Elab_Call
904 (N : Node_Id;
905 Outer_Scope : Entity_Id := Empty)
907 Ent : Entity_Id;
908 P : Node_Id;
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.
916 --------------------
917 -- Get_Called_Ent --
918 --------------------
920 function Get_Called_Ent return Entity_Id is
921 Nam : Node_Id;
923 begin
924 Nam := Name (N);
926 if No (Nam) then
927 return Empty;
929 elsif Nkind (Nam) = N_Selected_Component then
930 return Entity (Selector_Name (Nam));
932 elsif not Is_Entity_Name (Nam) then
933 return Empty;
935 else
936 return Entity (Nam);
937 end if;
938 end Get_Called_Ent;
940 -- Start of processing for Check_Elab_Call
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.
947 if not In_Extended_Main_Code_Unit (N) then
948 return;
949 end if;
951 -- For an entry call, check relevant restriction
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);
958 -- Nothing to do if this is not a call (happens in some error
959 -- conditions, and in some cases where rewriting occurs).
961 elsif Nkind (N) /= N_Function_Call
962 and then Nkind (N) /= N_Procedure_Call_Statement
963 then
964 return;
966 -- Nothing to do if this is a call already rewritten for elab checking
968 elsif Nkind (Parent (N)) = N_Conditional_Expression then
969 return;
971 -- Nothing to do if inside a generic template
973 elsif Inside_A_Generic
974 and then not Present (Enclosing_Generic_Body (N))
975 then
976 return;
977 end if;
979 -- Here we have a call at elaboration time which must be checked
981 if Debug_Flag_LL then
982 Write_Str (" Check_Elab_Call: ");
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;
992 Write_Str (" call at ");
993 Write_Location (Sloc (N));
994 Write_Eol;
995 end if;
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.
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;
1016 -- The call occurs within the constraint of a component,
1017 -- so it must be checked.
1019 elsif Nkind (P) = N_Component_Definition then
1020 exit;
1022 else
1023 P := Parent (P);
1024 end if;
1025 end loop;
1027 -- Stuff that happens only at the outer level
1029 if No (Outer_Scope) then
1030 Elab_Visited.Set_Last (0);
1032 -- Nothing to do if current scope is Standard (this is a bit
1033 -- odd, but it happens in the case of generic instantiations).
1035 C_Scope := Current_Scope;
1037 if C_Scope = Standard_Standard then
1038 return;
1039 end if;
1041 -- First case, we are in elaboration code
1043 From_Elab_Code := not In_Subprogram_Or_Concurrent_Unit;
1044 if From_Elab_Code then
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)
1050 if Comes_From_Source (N)
1051 and then In_Preelaborated_Unit
1052 and then not In_Inlined_Body
1053 then
1054 -- This is a warning in GNAT mode allowing such calls to be
1055 -- used in the predefined library with appropriate care.
1057 Error_Msg_Warn := GNAT_Mode;
1058 Error_Msg_N
1059 ("<non-static call not allowed in preelaborated unit", N);
1060 return;
1061 end if;
1063 -- Second case, we are inside a subprogram or concurrent unit, which
1064 -- means we are not in elaboration code.
1066 else
1067 -- In this case, the issue is whether we are inside the
1068 -- declarative part of the unit in which we live, or inside its
1069 -- statements. In the latter case, there is no issue of ABE calls
1070 -- at this level (a call from outside to the unit in which we live
1071 -- might cause an ABE, but that will be detected when we analyze
1072 -- that outer level call, as it recurses into the called unit).
1074 -- Climb up the tree, doing this test, and also testing for being
1075 -- inside a default expression, which, as discussed above, is not
1076 -- checked at this stage.
1078 declare
1079 P : Node_Id;
1080 L : List_Id;
1082 begin
1083 P := N;
1084 loop
1085 -- If we find a parentless subtree, it seems safe to assume
1086 -- that we are not in a declarative part and that no
1087 -- checking is required.
1089 if No (P) then
1090 return;
1091 end if;
1093 if Is_List_Member (P) then
1094 L := List_Containing (P);
1095 P := Parent (L);
1096 else
1097 L := No_List;
1098 P := Parent (P);
1099 end if;
1101 exit when Nkind (P) = N_Subunit;
1103 -- Filter out case of default expressions, where we do not
1104 -- do the check at this stage.
1106 if Nkind (P) = N_Parameter_Specification
1107 or else
1108 Nkind (P) = N_Component_Declaration
1109 then
1110 return;
1111 end if;
1113 if Nkind (P) = N_Subprogram_Body
1114 or else
1115 Nkind (P) = N_Protected_Body
1116 or else
1117 Nkind (P) = N_Task_Body
1118 or else
1119 Nkind (P) = N_Block_Statement
1120 then
1121 if L = Declarations (P) then
1122 exit;
1124 -- We are not in elaboration code, but we are doing
1125 -- dynamic elaboration checks, in this case, we still
1126 -- need to do the call, since the subprogram we are in
1127 -- could be called from another unit, also in dynamic
1128 -- elaboration check mode, at elaboration time.
1130 elsif Dynamic_Elaboration_Checks then
1132 -- This is a rather new check, going into version
1133 -- 3.14a1 for the first time (V1.80 of this unit), so
1134 -- we provide a debug flag to enable it. That way we
1135 -- have an easy work around for regressions that are
1136 -- caused by this new check. This debug flag can be
1137 -- removed later.
1139 if Debug_Flag_DD then
1140 return;
1141 end if;
1143 -- Do the check in this case
1145 exit;
1147 elsif Nkind (P) = N_Task_Body then
1149 -- The check is deferred until Check_Task_Activation
1150 -- but we need to capture local suppress pragmas
1151 -- that may inhibit checks on this call.
1153 Ent := Get_Called_Ent;
1155 if No (Ent) then
1156 return;
1158 elsif Elaboration_Checks_Suppressed (Current_Scope)
1159 or else Elaboration_Checks_Suppressed (Ent)
1160 or else Elaboration_Checks_Suppressed (Scope (Ent))
1161 then
1162 Set_No_Elaboration_Check (N);
1163 end if;
1165 return;
1167 -- Static model, call is not in elaboration code, we
1168 -- never need to worry, because in the static model
1169 -- the top level caller always takes care of things.
1171 else
1172 return;
1173 end if;
1174 end if;
1175 end loop;
1176 end;
1177 end if;
1178 end if;
1180 Ent := Get_Called_Ent;
1182 if No (Ent) then
1183 return;
1184 end if;
1186 -- Nothing to do if this is a recursive call (i.e. a call to
1187 -- an entity that is already in the Elab_Call stack)
1189 for J in 1 .. Elab_Visited.Last loop
1190 if Ent = Elab_Visited.Table (J) then
1191 return;
1192 end if;
1193 end loop;
1195 -- See if we need to analyze this call. We analyze it if either of
1196 -- the following conditions is met:
1198 -- It is an inner level call (since in this case it was triggered
1199 -- by an outer level call from elaboration code), but only if the
1200 -- call is within the scope of the original outer level call.
1202 -- It is an outer level call from elaboration code, or the called
1203 -- entity is in the same elaboration scope.
1205 -- And in these cases, we will check both inter-unit calls and
1206 -- intra-unit (within a single unit) calls.
1208 C_Scope := Current_Scope;
1210 -- If not outer level call, then we follow it if it is within
1211 -- the original scope of the outer call.
1213 if Present (Outer_Scope)
1214 and then Within (Scope (Ent), Outer_Scope)
1215 then
1216 Set_C_Scope;
1217 Check_A_Call (N, Ent, Outer_Scope, Inter_Unit_Only => False);
1219 elsif Elaboration_Checks_Suppressed (Current_Scope) then
1220 null;
1222 elsif From_Elab_Code then
1223 Set_C_Scope;
1224 Check_A_Call (N, Ent, Standard_Standard, Inter_Unit_Only => False);
1226 elsif Same_Elaboration_Scope (C_Scope, Scope (Ent)) then
1227 Set_C_Scope;
1228 Check_A_Call (N, Ent, Scope (Ent), Inter_Unit_Only => False);
1230 -- If none of those cases holds, but Dynamic_Elaboration_Checks mode
1231 -- is set, then we will do the check, but only in the inter-unit case
1232 -- (this is to accommodate unguarded elaboration calls from other units
1233 -- in which this same mode is set). We don't want warnings in this case,
1234 -- it would generate warnings having nothing to do with elaboration.
1236 elsif Dynamic_Elaboration_Checks then
1237 Set_C_Scope;
1238 Check_A_Call
1240 Ent,
1241 Standard_Standard,
1242 Inter_Unit_Only => True,
1243 Generate_Warnings => False);
1245 -- Otherwise nothing to do
1247 else
1248 return;
1249 end if;
1251 -- A call to an Init_Proc in elaboration code may bring additional
1252 -- dependencies, if some of the record components thereof have
1253 -- initializations that are function calls that come from source.
1254 -- We treat the current node as a call to each of these functions,
1255 -- to check their elaboration impact.
1257 if Is_Init_Proc (Ent)
1258 and then From_Elab_Code
1259 then
1260 Process_Init_Proc : declare
1261 Unit_Decl : constant Node_Id := Unit_Declaration_Node (Ent);
1263 function Process (Nod : Node_Id) return Traverse_Result;
1264 -- Find subprogram calls within body of init_proc for
1265 -- Traverse instantiation below.
1267 function Process (Nod : Node_Id) return Traverse_Result is
1268 Func : Entity_Id;
1270 begin
1271 if (Nkind (Nod) = N_Function_Call
1272 or else Nkind (Nod) = N_Procedure_Call_Statement)
1273 and then Is_Entity_Name (Name (Nod))
1274 then
1275 Func := Entity (Name (Nod));
1277 if Comes_From_Source (Func) then
1278 Check_A_Call
1279 (N, Func, Standard_Standard, Inter_Unit_Only => True);
1280 end if;
1282 return OK;
1284 else
1285 return OK;
1286 end if;
1287 end Process;
1289 procedure Traverse_Body is new Traverse_Proc (Process);
1291 -- Start of processing for Process_Init_Proc
1293 begin
1294 if Nkind (Unit_Decl) = N_Subprogram_Body then
1295 Traverse_Body (Handled_Statement_Sequence (Unit_Decl));
1296 end if;
1297 end Process_Init_Proc;
1298 end if;
1299 end Check_Elab_Call;
1301 ----------------------
1302 -- Check_Elab_Calls --
1303 ----------------------
1305 procedure Check_Elab_Calls is
1306 begin
1307 -- If expansion is disabled, do not generate any checks. Also
1308 -- skip checks if any subunits are missing because in either
1309 -- case we lack the full information that we need, and no object
1310 -- file will be created in any case.
1312 if not Expander_Active
1313 or else Is_Generic_Unit (Cunit_Entity (Main_Unit))
1314 or else Subunits_Missing
1315 then
1316 return;
1317 end if;
1319 -- Skip delayed calls if we had any errors
1321 if Serious_Errors_Detected = 0 then
1322 Delaying_Elab_Checks := False;
1323 Expander_Mode_Save_And_Set (True);
1325 for J in Delay_Check.First .. Delay_Check.Last loop
1326 New_Scope (Delay_Check.Table (J).Curscop);
1327 From_Elab_Code := Delay_Check.Table (J).From_Elab_Code;
1329 Check_Internal_Call_Continue (
1330 N => Delay_Check.Table (J).N,
1331 E => Delay_Check.Table (J).E,
1332 Outer_Scope => Delay_Check.Table (J).Outer_Scope,
1333 Orig_Ent => Delay_Check.Table (J).Orig_Ent);
1335 Pop_Scope;
1336 end loop;
1338 -- Set Delaying_Elab_Checks back on for next main compilation
1340 Expander_Mode_Restore;
1341 Delaying_Elab_Checks := True;
1342 end if;
1343 end Check_Elab_Calls;
1345 ------------------------------
1346 -- Check_Elab_Instantiation --
1347 ------------------------------
1349 procedure Check_Elab_Instantiation
1350 (N : Node_Id;
1351 Outer_Scope : Entity_Id := Empty)
1353 Ent : Entity_Id;
1355 begin
1356 -- Check for and deal with bad instantiation case. There is some
1357 -- duplicated code here, but we will worry about this later ???
1359 Check_Bad_Instantiation (N);
1361 if ABE_Is_Certain (N) then
1362 return;
1363 end if;
1365 -- Nothing to do if we do not have an instantiation (happens in some
1366 -- error cases, and also in the formal package declaration case)
1368 if Nkind (N) not in N_Generic_Instantiation then
1369 return;
1370 end if;
1372 -- Nothing to do if inside a generic template
1374 if Inside_A_Generic then
1375 return;
1376 end if;
1378 -- Nothing to do if the instantiation is not in the main unit
1380 if not In_Extended_Main_Code_Unit (N) then
1381 return;
1382 end if;
1384 Ent := Get_Generic_Entity (N);
1385 From_Elab_Code := not In_Subprogram_Or_Concurrent_Unit;
1387 -- See if we need to analyze this instantiation. We analyze it if
1388 -- either of the following conditions is met:
1390 -- It is an inner level instantiation (since in this case it was
1391 -- triggered by an outer level call from elaboration code), but
1392 -- only if the instantiation is within the scope of the original
1393 -- outer level call.
1395 -- It is an outer level instantiation from elaboration code, or the
1396 -- instantiated entity is in the same elaboratoin scope.
1398 -- And in these cases, we will check both the inter-unit case and
1399 -- the intra-unit (within a single unit) case.
1401 C_Scope := Current_Scope;
1403 if Present (Outer_Scope)
1404 and then Within (Scope (Ent), Outer_Scope)
1405 then
1406 Set_C_Scope;
1407 Check_A_Call (N, Ent, Outer_Scope, Inter_Unit_Only => False);
1409 elsif From_Elab_Code then
1410 Set_C_Scope;
1411 Check_A_Call (N, Ent, Standard_Standard, Inter_Unit_Only => False);
1413 elsif Same_Elaboration_Scope (C_Scope, Scope (Ent)) then
1414 Set_C_Scope;
1415 Check_A_Call (N, Ent, Scope (Ent), Inter_Unit_Only => False);
1417 -- If none of those cases holds, but Dynamic_Elaboration_Checks mode
1418 -- is set, then we will do the check, but only in the inter-unit case
1419 -- (this is to accommodate unguarded elaboration calls from other units
1420 -- in which this same mode is set). We inhibit warnings in this case,
1421 -- since this instantiation is not occurring in elaboration code.
1423 elsif Dynamic_Elaboration_Checks then
1424 Set_C_Scope;
1425 Check_A_Call
1427 Ent,
1428 Standard_Standard,
1429 Inter_Unit_Only => True,
1430 Generate_Warnings => False);
1432 else
1433 return;
1434 end if;
1435 end Check_Elab_Instantiation;
1437 -------------------------
1438 -- Check_Internal_Call --
1439 -------------------------
1441 procedure Check_Internal_Call
1442 (N : Node_Id;
1443 E : Entity_Id;
1444 Outer_Scope : Entity_Id;
1445 Orig_Ent : Entity_Id)
1447 Inst_Case : constant Boolean := Nkind (N) in N_Generic_Instantiation;
1449 begin
1450 -- If not function or procedure call or instantiation, then ignore
1451 -- call (this happens in some error case and rewriting cases)
1453 if Nkind (N) /= N_Function_Call
1454 and then
1455 Nkind (N) /= N_Procedure_Call_Statement
1456 and then
1457 not Inst_Case
1458 then
1459 return;
1461 -- Nothing to do if this is a call or instantiation that has
1462 -- already been found to be a sure ABE
1464 elsif ABE_Is_Certain (N) then
1465 return;
1467 -- Nothing to do if errors already detected (avoid cascaded errors)
1469 elsif Serious_Errors_Detected /= 0 then
1470 return;
1472 -- Nothing to do if not in full analysis mode
1474 elsif not Full_Analysis then
1475 return;
1477 -- Nothing to do if within a default expression, since the call
1478 -- is not actualy being made at this time.
1480 elsif In_Default_Expression then
1481 return;
1483 -- Nothing to do for call to intrinsic subprogram
1485 elsif Is_Intrinsic_Subprogram (E) then
1486 return;
1488 -- No need to trace local calls if checking task activation, because
1489 -- other local bodies are elaborated already.
1491 elsif In_Task_Activation then
1492 return;
1493 end if;
1495 -- Delay this call if we are still delaying calls
1497 if Delaying_Elab_Checks then
1498 Delay_Check.Increment_Last;
1499 Delay_Check.Table (Delay_Check.Last) :=
1500 (N => N,
1501 E => E,
1502 Orig_Ent => Orig_Ent,
1503 Curscop => Current_Scope,
1504 Outer_Scope => Outer_Scope,
1505 From_Elab_Code => From_Elab_Code);
1506 return;
1508 -- Otherwise, call phase 2 continuation right now
1510 else
1511 Check_Internal_Call_Continue (N, E, Outer_Scope, Orig_Ent);
1512 end if;
1514 end Check_Internal_Call;
1516 ----------------------------------
1517 -- Check_Internal_Call_Continue --
1518 ----------------------------------
1520 procedure Check_Internal_Call_Continue
1521 (N : Node_Id;
1522 E : Entity_Id;
1523 Outer_Scope : Entity_Id;
1524 Orig_Ent : Entity_Id)
1526 Loc : constant Source_Ptr := Sloc (N);
1527 Inst_Case : constant Boolean := Is_Generic_Unit (E);
1529 Sbody : Node_Id;
1530 Ebody : Entity_Id;
1532 function Process (N : Node_Id) return Traverse_Result;
1533 -- Function applied to each node as we traverse the body.
1534 -- Checks for call that needs checking, and if so checks
1535 -- it. Always returns OK, so entire tree is traversed.
1537 -------------
1538 -- Process --
1539 -------------
1541 function Process (N : Node_Id) return Traverse_Result is
1542 begin
1543 -- If user has specified that there are no entry calls in elaboration
1544 -- code, do not trace past an accept statement, because the rendez-
1545 -- vous will happen after elaboration.
1547 if (Nkind (Original_Node (N)) = N_Accept_Statement
1548 or else Nkind (Original_Node (N)) = N_Selective_Accept)
1549 and then Restriction_Active (No_Entry_Calls_In_Elaboration_Code)
1550 then
1551 return Abandon;
1553 -- If we have a subprogram call, check it
1555 elsif Nkind (N) = N_Function_Call
1556 or else Nkind (N) = N_Procedure_Call_Statement
1557 then
1558 Check_Elab_Call (N, Outer_Scope);
1559 return OK;
1561 -- If we have a generic instantiation, check it
1563 elsif Nkind (N) in N_Generic_Instantiation then
1564 Check_Elab_Instantiation (N, Outer_Scope);
1565 return OK;
1567 -- Skip subprogram bodies that come from source (wait for
1568 -- call to analyze these). The reason for the come from
1569 -- source test is to avoid catching task bodies.
1571 -- For task bodies, we should really avoid these too, waiting
1572 -- for the task activation, but that's too much trouble to
1573 -- catch for now, so we go in unconditionally. This is not
1574 -- so terrible, it means the error backtrace is not quite
1575 -- complete, and we are too eager to scan bodies of tasks
1576 -- that are unused, but this is hardly very significant!
1578 elsif Nkind (N) = N_Subprogram_Body
1579 and then Comes_From_Source (N)
1580 then
1581 return Skip;
1583 else
1584 return OK;
1585 end if;
1586 end Process;
1588 procedure Traverse is new Atree.Traverse_Proc;
1589 -- Traverse procedure using above Process function
1591 -- Start of processing for Check_Internal_Call_Continue
1593 begin
1594 -- Save outer level call if at outer level
1596 if Elab_Call.Last = 0 then
1597 Outer_Level_Sloc := Loc;
1598 end if;
1600 Elab_Visited.Increment_Last;
1601 Elab_Visited.Table (Elab_Visited.Last) := E;
1603 -- If the call is to a function that renames a literal, no check
1604 -- is needed.
1606 if Ekind (E) = E_Enumeration_Literal then
1607 return;
1608 end if;
1610 Sbody := Unit_Declaration_Node (E);
1612 if Nkind (Sbody) /= N_Subprogram_Body
1613 and then
1614 Nkind (Sbody) /= N_Package_Body
1615 then
1616 Ebody := Corresponding_Body (Sbody);
1618 if No (Ebody) then
1619 return;
1620 else
1621 Sbody := Unit_Declaration_Node (Ebody);
1622 end if;
1623 end if;
1625 -- If the body appears after the outer level call or
1626 -- instantiation then we have an error case handled below.
1628 if Earlier_In_Extended_Unit (Outer_Level_Sloc, Sloc (Sbody))
1629 and then not In_Task_Activation
1630 then
1631 null;
1633 -- If we have the instantiation case we are done, since we now
1634 -- know that the body of the generic appeared earlier.
1636 elsif Inst_Case then
1637 return;
1639 -- Otherwise we have a call, so we trace through the called
1640 -- body to see if it has any problems ..
1642 else
1643 pragma Assert (Nkind (Sbody) = N_Subprogram_Body);
1645 Elab_Call.Increment_Last;
1646 Elab_Call.Table (Elab_Call.Last).Cloc := Loc;
1647 Elab_Call.Table (Elab_Call.Last).Ent := E;
1649 if Debug_Flag_LL then
1650 Write_Str ("Elab_Call.Last = ");
1651 Write_Int (Int (Elab_Call.Last));
1652 Write_Str (" Ent = ");
1653 Write_Name (Chars (E));
1654 Write_Str (" at ");
1655 Write_Location (Sloc (N));
1656 Write_Eol;
1657 end if;
1659 -- Now traverse declarations and statements of subprogram body.
1660 -- Note that we cannot simply Traverse (Sbody), since traverse
1661 -- does not normally visit subprogram bodies.
1663 declare
1664 Decl : Node_Id := First (Declarations (Sbody));
1666 begin
1667 while Present (Decl) loop
1668 Traverse (Decl);
1669 Next (Decl);
1670 end loop;
1671 end;
1673 Traverse (Handled_Statement_Sequence (Sbody));
1675 Elab_Call.Decrement_Last;
1676 return;
1677 end if;
1679 -- Here is the case of calling a subprogram where the body has
1680 -- not yet been encountered, a warning message is needed.
1682 -- If we have nothing in the call stack, then this is at the
1683 -- outer level, and the ABE is bound to occur.
1685 if Elab_Call.Last = 0 then
1686 if Inst_Case then
1687 Error_Msg_NE
1688 ("?cannot instantiate& before body seen", N, Orig_Ent);
1689 else
1690 Error_Msg_NE
1691 ("?cannot call& before body seen", N, Orig_Ent);
1692 end if;
1694 Error_Msg_N
1695 ("\?Program_Error will be raised at run time", N);
1696 Insert_Elab_Check (N);
1698 -- Call is not at outer level
1700 else
1701 -- Deal with dynamic elaboration check
1703 if not Elaboration_Checks_Suppressed (E) then
1704 Set_Elaboration_Entity_Required (E);
1706 -- Case of no elaboration entity allocated yet
1708 if No (Elaboration_Entity (E)) then
1710 -- Create object declaration for elaboration entity, and put it
1711 -- just in front of the spec of the subprogram or generic unit,
1712 -- in the same scope as this unit.
1714 declare
1715 Loce : constant Source_Ptr := Sloc (E);
1716 Ent : constant Entity_Id :=
1717 Make_Defining_Identifier (Loc,
1718 Chars => New_External_Name (Chars (E), 'E'));
1720 begin
1721 Set_Elaboration_Entity (E, Ent);
1722 New_Scope (Scope (E));
1724 Insert_Action (Declaration_Node (E),
1725 Make_Object_Declaration (Loce,
1726 Defining_Identifier => Ent,
1727 Object_Definition =>
1728 New_Occurrence_Of (Standard_Boolean, Loce),
1729 Expression => New_Occurrence_Of (Standard_False, Loce)));
1731 -- Set elaboration flag at the point of the body
1733 Set_Elaboration_Flag (Sbody, E);
1735 -- Kill current value indication. This is necessary
1736 -- because the tests of this flag are inserted out of
1737 -- sequence and must not pick up bogus indications of
1738 -- the wrong constant value. Also, this is never a true
1739 -- constant, since one way or another, it gets reset.
1741 Set_Current_Value (Ent, Empty);
1742 Set_Is_True_Constant (Ent, False);
1743 Pop_Scope;
1744 end;
1745 end if;
1747 -- Generate check of the elaboration Boolean
1749 Insert_Elab_Check (N,
1750 New_Occurrence_Of (Elaboration_Entity (E), Loc));
1751 end if;
1753 -- Generate the warning
1755 if not Suppress_Elaboration_Warnings (E)
1756 and then not Elaboration_Checks_Suppressed (E)
1757 then
1758 if Inst_Case then
1759 Error_Msg_NE
1760 ("instantiation of& may occur before body is seen?",
1761 N, Orig_Ent);
1762 else
1763 Error_Msg_NE
1764 ("call to& may occur before body is seen?", N, Orig_Ent);
1765 end if;
1767 Error_Msg_N
1768 ("\Program_Error may be raised at run time?", N);
1770 Output_Calls (N);
1771 end if;
1772 end if;
1774 -- Set flag to suppress further warnings on same subprogram
1775 -- unless in all errors mode
1777 if not All_Errors_Mode then
1778 Set_Suppress_Elaboration_Warnings (E);
1779 end if;
1780 end Check_Internal_Call_Continue;
1782 ---------------------------
1783 -- Check_Task_Activation --
1784 ---------------------------
1786 procedure Check_Task_Activation (N : Node_Id) is
1787 Loc : constant Source_Ptr := Sloc (N);
1788 Inter_Procs : constant Elist_Id := New_Elmt_List;
1789 Intra_Procs : constant Elist_Id := New_Elmt_List;
1790 Ent : Entity_Id;
1791 P : Entity_Id;
1792 Task_Scope : Entity_Id;
1793 Cunit_SC : Boolean := False;
1794 Decl : Node_Id;
1795 Elmt : Elmt_Id;
1796 Enclosing : Entity_Id;
1798 procedure Add_Task_Proc (Typ : Entity_Id);
1799 -- Add to Task_Procs the task body procedure(s) of task types in Typ.
1800 -- For record types, this procedure recurses over component types.
1802 procedure Collect_Tasks (Decls : List_Id);
1803 -- Collect the types of the tasks that are to be activated in the given
1804 -- list of declarations, in order to perform elaboration checks on the
1805 -- corresponding task procedures which are called implicitly here.
1807 function Outer_Unit (E : Entity_Id) return Entity_Id;
1808 -- find enclosing compilation unit of Entity, ignoring subunits, or
1809 -- else enclosing subprogram. If E is not a package, there is no need
1810 -- for inter-unit elaboration checks.
1812 -------------------
1813 -- Add_Task_Proc --
1814 -------------------
1816 procedure Add_Task_Proc (Typ : Entity_Id) is
1817 Comp : Entity_Id;
1818 Proc : Entity_Id := Empty;
1820 begin
1821 if Is_Task_Type (Typ) then
1822 Proc := Get_Task_Body_Procedure (Typ);
1824 elsif Is_Array_Type (Typ)
1825 and then Has_Task (Base_Type (Typ))
1826 then
1827 Add_Task_Proc (Component_Type (Typ));
1829 elsif Is_Record_Type (Typ)
1830 and then Has_Task (Base_Type (Typ))
1831 then
1832 Comp := First_Component (Typ);
1834 while Present (Comp) loop
1835 Add_Task_Proc (Etype (Comp));
1836 Comp := Next_Component (Comp);
1837 end loop;
1838 end if;
1840 -- If the task type is another unit, we will perform the usual
1841 -- elaboration check on its enclosing unit. If the type is in the
1842 -- same unit, we can trace the task body as for an internal call,
1843 -- but we only need to examine other external calls, because at
1844 -- the point the task is activated, internal subprogram bodies
1845 -- will have been elaborated already. We keep separate lists for
1846 -- each kind of task.
1848 -- Skip this test if errors have occurred, since in this case
1849 -- we can get false indications.
1851 if Serious_Errors_Detected /= 0 then
1852 return;
1853 end if;
1855 if Present (Proc) then
1856 if Outer_Unit (Scope (Proc)) = Enclosing then
1858 if No (Corresponding_Body (Unit_Declaration_Node (Proc)))
1859 and then
1860 (not Is_Generic_Instance (Scope (Proc))
1861 or else
1862 Scope (Proc) = Scope (Defining_Identifier (Decl)))
1863 then
1864 Error_Msg_N
1865 ("task will be activated before elaboration of its body?",
1866 Decl);
1867 Error_Msg_N
1868 ("Program_Error will be raised at run-time?", Decl);
1870 elsif
1871 Present (Corresponding_Body (Unit_Declaration_Node (Proc)))
1872 then
1873 Append_Elmt (Proc, Intra_Procs);
1874 end if;
1876 else
1877 Elmt := First_Elmt (Inter_Procs);
1879 -- No need for multiple entries of the same type
1881 while Present (Elmt) loop
1882 if Node (Elmt) = Proc then
1883 return;
1884 end if;
1886 Next_Elmt (Elmt);
1887 end loop;
1889 Append_Elmt (Proc, Inter_Procs);
1890 end if;
1891 end if;
1892 end Add_Task_Proc;
1894 -------------------
1895 -- Collect_Tasks --
1896 -------------------
1898 procedure Collect_Tasks (Decls : List_Id) is
1899 begin
1900 if Present (Decls) then
1901 Decl := First (Decls);
1903 while Present (Decl) loop
1905 if Nkind (Decl) = N_Object_Declaration
1906 and then Has_Task (Etype (Defining_Identifier (Decl)))
1907 then
1908 Add_Task_Proc (Etype (Defining_Identifier (Decl)));
1909 end if;
1911 Next (Decl);
1912 end loop;
1913 end if;
1914 end Collect_Tasks;
1916 ----------------
1917 -- Outer_Unit --
1918 ----------------
1920 function Outer_Unit (E : Entity_Id) return Entity_Id is
1921 Outer : Entity_Id := E;
1923 begin
1924 while Present (Outer) loop
1925 if Elaboration_Checks_Suppressed (Outer) then
1926 Cunit_SC := True;
1927 end if;
1929 exit when Is_Child_Unit (Outer)
1930 or else Scope (Outer) = Standard_Standard
1931 or else Ekind (Outer) /= E_Package;
1932 Outer := Scope (Outer);
1933 end loop;
1935 return Outer;
1936 end Outer_Unit;
1938 -- Start of processing for Check_Task_Activation
1940 begin
1941 Enclosing := Outer_Unit (Current_Scope);
1943 -- Find all tasks declared in the current unit
1945 if Nkind (N) = N_Package_Body then
1946 P := Unit_Declaration_Node (Corresponding_Spec (N));
1948 Collect_Tasks (Declarations (N));
1949 Collect_Tasks (Visible_Declarations (Specification (P)));
1950 Collect_Tasks (Private_Declarations (Specification (P)));
1952 elsif Nkind (N) = N_Package_Declaration then
1953 Collect_Tasks (Visible_Declarations (Specification (N)));
1954 Collect_Tasks (Private_Declarations (Specification (N)));
1956 else
1957 Collect_Tasks (Declarations (N));
1958 end if;
1960 -- We only perform detailed checks in all tasks are library level
1961 -- entities. If the master is a subprogram or task, activation will
1962 -- depend on the activation of the master itself.
1963 -- Should dynamic checks be added in the more general case???
1965 if Ekind (Enclosing) /= E_Package then
1966 return;
1967 end if;
1969 -- For task types defined in other units, we want the unit containing
1970 -- the task body to be elaborated before the current one.
1972 Elmt := First_Elmt (Inter_Procs);
1974 while Present (Elmt) loop
1975 Ent := Node (Elmt);
1976 Task_Scope := Outer_Unit (Scope (Ent));
1978 if not Is_Compilation_Unit (Task_Scope) then
1979 null;
1981 elsif Suppress_Elaboration_Warnings (Task_Scope)
1982 or else Elaboration_Checks_Suppressed (Task_Scope)
1983 then
1984 null;
1986 elsif Dynamic_Elaboration_Checks then
1987 if not Elaboration_Checks_Suppressed (Ent)
1988 and then not Cunit_SC
1989 and then
1990 not Restriction_Active (No_Entry_Calls_In_Elaboration_Code)
1991 then
1992 -- Runtime elaboration check required. generate check of the
1993 -- elaboration Boolean for the unit containing the entity.
1995 Insert_Elab_Check (N,
1996 Make_Attribute_Reference (Loc,
1997 Attribute_Name => Name_Elaborated,
1998 Prefix =>
1999 New_Occurrence_Of
2000 (Spec_Entity (Task_Scope), Loc)));
2001 end if;
2003 else
2004 -- Force the binder to elaborate other unit first
2006 if not Suppress_Elaboration_Warnings (Ent)
2007 and then not Elaboration_Checks_Suppressed (Ent)
2008 and then Elab_Warnings
2009 and then not Suppress_Elaboration_Warnings (Task_Scope)
2010 and then not Elaboration_Checks_Suppressed (Task_Scope)
2011 then
2012 Error_Msg_Node_2 := Task_Scope;
2013 Error_Msg_NE ("activation of an instance of task type&" &
2014 " requires pragma Elaborate_All on &?", N, Ent);
2015 end if;
2017 Set_Elaborate_All_Desirable (Task_Scope);
2018 Set_Suppress_Elaboration_Warnings (Task_Scope);
2019 end if;
2021 Next_Elmt (Elmt);
2022 end loop;
2024 -- For tasks declared in the current unit, trace other calls within
2025 -- the task procedure bodies, which are available.
2027 In_Task_Activation := True;
2028 Elmt := First_Elmt (Intra_Procs);
2030 while Present (Elmt) loop
2031 Ent := Node (Elmt);
2032 Check_Internal_Call_Continue (N, Ent, Enclosing, Ent);
2033 Next_Elmt (Elmt);
2034 end loop;
2036 In_Task_Activation := False;
2037 end Check_Task_Activation;
2039 --------------------------------
2040 -- Set_Elaboration_Constraint --
2041 --------------------------------
2043 procedure Set_Elaboration_Constraint
2044 (Call : Node_Id;
2045 Subp : Entity_Id;
2046 Scop : Entity_Id)
2048 Elab_Unit : Entity_Id;
2049 Init_Call : constant Boolean :=
2050 Chars (Subp) = Name_Initialize
2051 and then Comes_From_Source (Subp)
2052 and then Present (Parameter_Associations (Call))
2053 and then Is_Controlled
2054 (Etype (First (Parameter_Associations (Call))));
2055 begin
2056 -- If the unit is mentioned in a with_clause of the current
2057 -- unit, it is visible, and we can set the elaboration flag.
2059 if Is_Immediately_Visible (Scop)
2060 or else
2061 (Is_Child_Unit (Scop) and then Is_Visible_Child_Unit (Scop))
2062 then
2063 Set_Elaborate_All_Desirable (Scop);
2064 Set_Suppress_Elaboration_Warnings (Scop, True);
2065 return;
2066 end if;
2068 -- If this is not an initialization call or a call using object notation
2069 -- we know that the unit of the called entity is in the context, and
2070 -- we can set the flag as well. The unit need not be visible if the call
2071 -- occurs within an instantiation.
2073 if Is_Init_Proc (Subp)
2074 or else Init_Call
2075 or else Nkind (Original_Node (Call)) = N_Selected_Component
2076 then
2077 null; -- detailed processing follows.
2079 else
2080 Set_Elaborate_All_Desirable (Scop);
2081 Set_Suppress_Elaboration_Warnings (Scop, True);
2082 return;
2083 end if;
2085 -- If the unit is not in the context, there must be an intermediate
2086 -- unit that is, on which we need to place to elaboration flag.
2088 if Is_Init_Proc (Subp)
2089 or else Init_Call
2090 then
2091 -- The initialization call is on an object whose type is not
2092 -- declared in the same scope as the subprogram. The type of
2093 -- the object must be a subtype of the type of operation. This
2094 -- object is the first actual in the call.
2096 declare
2097 Typ : constant Entity_Id :=
2098 Etype (First (Parameter_Associations (Call)));
2099 begin
2100 Elab_Unit := Scope (Typ);
2102 while (Present (Elab_Unit))
2103 and then not Is_Compilation_Unit (Elab_Unit)
2104 loop
2105 Elab_Unit := Scope (Elab_Unit);
2106 end loop;
2107 end;
2108 elsif Nkind (Original_Node (Call)) = N_Selected_Component then
2110 -- If original node uses selected component notation, the
2111 -- prefix is visible and determines the scope that must be
2112 -- elaborated. After rewriting, the prefix is the first actual
2113 -- in the call.
2115 Elab_Unit := Scope (Etype (First (Parameter_Associations (Call))));
2117 else
2118 -- Using previously computed scope. If the elaboration check is
2119 -- done after analysis, the scope is not visible any longer, but
2120 -- must still be in the context.
2122 Elab_Unit := Scop;
2123 end if;
2125 Set_Elaborate_All_Desirable (Elab_Unit);
2126 Set_Suppress_Elaboration_Warnings (Elab_Unit, True);
2127 end Set_Elaboration_Constraint;
2129 ----------------------
2130 -- Has_Generic_Body --
2131 ----------------------
2133 function Has_Generic_Body (N : Node_Id) return Boolean is
2134 Ent : constant Entity_Id := Get_Generic_Entity (N);
2135 Decl : constant Node_Id := Unit_Declaration_Node (Ent);
2136 Scop : Entity_Id;
2138 function Find_Body_In (E : Entity_Id; N : Node_Id) return Node_Id;
2139 -- Determine if the list of nodes headed by N and linked by Next
2140 -- contains a package body for the package spec entity E, and if
2141 -- so return the package body. If not, then returns Empty.
2143 function Load_Package_Body (Nam : Unit_Name_Type) return Node_Id;
2144 -- This procedure is called load the unit whose name is given by Nam.
2145 -- This unit is being loaded to see whether it contains an optional
2146 -- generic body. The returned value is the loaded unit, which is
2147 -- always a package body (only package bodies can contain other
2148 -- entities in the sense in which Has_Generic_Body is interested).
2149 -- We only attempt to load bodies if we are generating code. If we
2150 -- are in semantics check only mode, then it would be wrong to load
2151 -- bodies that are not required from a semantic point of view, so
2152 -- in this case we return Empty. The result is that the caller may
2153 -- incorrectly decide that a generic spec does not have a body when
2154 -- in fact it does, but the only harm in this is that some warnings
2155 -- on elaboration problems may be lost in semantic checks only mode,
2156 -- which is not big loss. We also return Empty if we go for a body
2157 -- and it is not there.
2159 function Locate_Corresponding_Body (PE : Entity_Id) return Node_Id;
2160 -- PE is the entity for a package spec. This function locates the
2161 -- corresponding package body, returning Empty if none is found.
2162 -- The package body returned is fully parsed but may not yet be
2163 -- analyzed, so only syntactic fields should be referenced.
2165 ------------------
2166 -- Find_Body_In --
2167 ------------------
2169 function Find_Body_In (E : Entity_Id; N : Node_Id) return Node_Id is
2170 Nod : Node_Id;
2172 begin
2173 Nod := N;
2174 while Present (Nod) loop
2176 -- If we found the package body we are looking for, return it
2178 if Nkind (Nod) = N_Package_Body
2179 and then Chars (Defining_Unit_Name (Nod)) = Chars (E)
2180 then
2181 return Nod;
2183 -- If we found the stub for the body, go after the subunit,
2184 -- loading it if necessary.
2186 elsif Nkind (Nod) = N_Package_Body_Stub
2187 and then Chars (Defining_Identifier (Nod)) = Chars (E)
2188 then
2189 if Present (Library_Unit (Nod)) then
2190 return Unit (Library_Unit (Nod));
2192 else
2193 return Load_Package_Body (Get_Unit_Name (Nod));
2194 end if;
2196 -- If neither package body nor stub, keep looking on chain
2198 else
2199 Next (Nod);
2200 end if;
2201 end loop;
2203 return Empty;
2204 end Find_Body_In;
2206 -----------------------
2207 -- Load_Package_Body --
2208 -----------------------
2210 function Load_Package_Body (Nam : Unit_Name_Type) return Node_Id is
2211 U : Unit_Number_Type;
2213 begin
2214 if Operating_Mode /= Generate_Code then
2215 return Empty;
2216 else
2217 U :=
2218 Load_Unit
2219 (Load_Name => Nam,
2220 Required => False,
2221 Subunit => False,
2222 Error_Node => N);
2224 if U = No_Unit then
2225 return Empty;
2226 else
2227 return Unit (Cunit (U));
2228 end if;
2229 end if;
2230 end Load_Package_Body;
2232 -------------------------------
2233 -- Locate_Corresponding_Body --
2234 -------------------------------
2236 function Locate_Corresponding_Body (PE : Entity_Id) return Node_Id is
2237 Spec : constant Node_Id := Declaration_Node (PE);
2238 Decl : constant Node_Id := Parent (Spec);
2239 Scop : constant Entity_Id := Scope (PE);
2240 PBody : Node_Id;
2242 begin
2243 if Is_Library_Level_Entity (PE) then
2245 -- If package is a library unit that requires a body, we have
2246 -- no choice but to go after that body because it might contain
2247 -- an optional body for the original generic package.
2249 if Unit_Requires_Body (PE) then
2251 -- Load the body. Note that we are a little careful here to
2252 -- use Spec to get the unit number, rather than PE or Decl,
2253 -- since in the case where the package is itself a library
2254 -- level instantiation, Spec will properly reference the
2255 -- generic template, which is what we really want.
2257 return
2258 Load_Package_Body
2259 (Get_Body_Name (Unit_Name (Get_Source_Unit (Spec))));
2261 -- But if the package is a library unit that does NOT require
2262 -- a body, then no body is permitted, so we are sure that there
2263 -- is no body for the original generic package.
2265 else
2266 return Empty;
2267 end if;
2269 -- Otherwise look and see if we are embedded in a further package
2271 elsif Is_Package (Scop) then
2273 -- If so, get the body of the enclosing package, and look in
2274 -- its package body for the package body we are looking for.
2276 PBody := Locate_Corresponding_Body (Scop);
2278 if No (PBody) then
2279 return Empty;
2280 else
2281 return Find_Body_In (PE, First (Declarations (PBody)));
2282 end if;
2284 -- If we are not embedded in a further package, then the body
2285 -- must be in the same declarative part as we are.
2287 else
2288 return Find_Body_In (PE, Next (Decl));
2289 end if;
2290 end Locate_Corresponding_Body;
2292 -- Start of processing for Has_Generic_Body
2294 begin
2295 if Present (Corresponding_Body (Decl)) then
2296 return True;
2298 elsif Unit_Requires_Body (Ent) then
2299 return True;
2301 -- Compilation units cannot have optional bodies
2303 elsif Is_Compilation_Unit (Ent) then
2304 return False;
2306 -- Otherwise look at what scope we are in
2308 else
2309 Scop := Scope (Ent);
2311 -- Case of entity is in other than a package spec, in this case
2312 -- the body, if present, must be in the same declarative part.
2314 if not Is_Package (Scop) then
2315 declare
2316 P : Node_Id;
2318 begin
2319 P := Declaration_Node (Ent);
2321 -- Declaration node may get us a spec, so if so, go to
2322 -- the parent declaration.
2324 while not Is_List_Member (P) loop
2325 P := Parent (P);
2326 end loop;
2328 return Present (Find_Body_In (Ent, Next (P)));
2329 end;
2331 -- If the entity is in a package spec, then we have to locate
2332 -- the corresponding package body, and look there.
2334 else
2335 declare
2336 PBody : constant Node_Id := Locate_Corresponding_Body (Scop);
2338 begin
2339 if No (PBody) then
2340 return False;
2341 else
2342 return
2343 Present
2344 (Find_Body_In (Ent, (First (Declarations (PBody)))));
2345 end if;
2346 end;
2347 end if;
2348 end if;
2349 end Has_Generic_Body;
2351 -----------------------
2352 -- Insert_Elab_Check --
2353 -----------------------
2355 procedure Insert_Elab_Check (N : Node_Id; C : Node_Id := Empty) is
2356 Nod : Node_Id;
2357 Loc : constant Source_Ptr := Sloc (N);
2359 begin
2360 -- If expansion is disabled, do not generate any checks. Also
2361 -- skip checks if any subunits are missing because in either
2362 -- case we lack the full information that we need, and no object
2363 -- file will be created in any case.
2365 if not Expander_Active or else Subunits_Missing then
2366 return;
2367 end if;
2369 -- If we have a generic instantiation, where Instance_Spec is set,
2370 -- then this field points to a generic instance spec that has
2371 -- been inserted before the instantiation node itself, so that
2372 -- is where we want to insert a check.
2374 if Nkind (N) in N_Generic_Instantiation
2375 and then Present (Instance_Spec (N))
2376 then
2377 Nod := Instance_Spec (N);
2378 else
2379 Nod := N;
2380 end if;
2382 -- If we are inserting at the top level, insert in Aux_Decls
2384 if Nkind (Parent (Nod)) = N_Compilation_Unit then
2385 declare
2386 ADN : constant Node_Id := Aux_Decls_Node (Parent (Nod));
2387 R : Node_Id;
2389 begin
2390 if No (C) then
2391 R :=
2392 Make_Raise_Program_Error (Loc,
2393 Reason => PE_Access_Before_Elaboration);
2394 else
2395 R :=
2396 Make_Raise_Program_Error (Loc,
2397 Condition => Make_Op_Not (Loc, C),
2398 Reason => PE_Access_Before_Elaboration);
2399 end if;
2401 if No (Declarations (ADN)) then
2402 Set_Declarations (ADN, New_List (R));
2403 else
2404 Append_To (Declarations (ADN), R);
2405 end if;
2407 Analyze (R);
2408 end;
2410 -- Otherwise just insert before the node in question. However, if
2411 -- the context of the call has already been analyzed, an insertion
2412 -- will not work if it depends on subsequent expansion (e.g. a call in
2413 -- a branch of a short-circuit). In that case we replace the call with
2414 -- a conditional expression, or with a Raise if it is unconditional.
2415 -- Unfortunately this does not work if the call has a dynamic size,
2416 -- because gigi regards it as a dynamic-sized temporary. If such a call
2417 -- appears in a short-circuit expression, the elaboration check will be
2418 -- missed (rare enough ???). Otherwise, the code below inserts the check
2419 -- at the appropriate place before the call. Same applies in the even
2420 -- rarer case the return type has a known size but is unconstrained.
2422 else
2423 if Nkind (N) = N_Function_Call
2424 and then Analyzed (Parent (N))
2425 and then Size_Known_At_Compile_Time (Etype (N))
2426 and then
2427 (not Has_Discriminants (Etype (N))
2428 or else Is_Constrained (Etype (N)))
2430 then
2431 declare
2432 Typ : constant Entity_Id := Etype (N);
2433 Chk : constant Boolean := Do_Range_Check (N);
2435 R : constant Node_Id :=
2436 Make_Raise_Program_Error (Loc,
2437 Reason => PE_Access_Before_Elaboration);
2439 begin
2440 Set_Etype (R, Typ);
2442 if No (C) then
2443 Rewrite (N, R);
2445 else
2446 Rewrite (N,
2447 Make_Conditional_Expression (Loc,
2448 Expressions => New_List (C, Relocate_Node (N), R)));
2449 end if;
2451 Analyze_And_Resolve (N, Typ);
2453 -- If the original call requires a range check, so does the
2454 -- conditional expression.
2456 if Chk then
2457 Enable_Range_Check (N);
2458 else
2459 Set_Do_Range_Check (N, False);
2460 end if;
2461 end;
2463 else
2464 if No (C) then
2465 Insert_Action (Nod,
2466 Make_Raise_Program_Error (Loc,
2467 Reason => PE_Access_Before_Elaboration));
2468 else
2469 Insert_Action (Nod,
2470 Make_Raise_Program_Error (Loc,
2471 Condition =>
2472 Make_Op_Not (Loc,
2473 Right_Opnd => C),
2474 Reason => PE_Access_Before_Elaboration));
2475 end if;
2476 end if;
2477 end if;
2478 end Insert_Elab_Check;
2480 ------------------
2481 -- Output_Calls --
2482 ------------------
2484 procedure Output_Calls (N : Node_Id) is
2485 Ent : Entity_Id;
2487 function Is_Printable_Error_Name (Nm : Name_Id) return Boolean;
2488 -- An internal function, used to determine if a name, Nm, is either
2489 -- a non-internal name, or is an internal name that is printable
2490 -- by the error message circuits (i.e. it has a single upper
2491 -- case letter at the end).
2493 function Is_Printable_Error_Name (Nm : Name_Id) return Boolean is
2494 begin
2495 if not Is_Internal_Name (Nm) then
2496 return True;
2498 elsif Name_Len = 1 then
2499 return False;
2501 else
2502 Name_Len := Name_Len - 1;
2503 return not Is_Internal_Name;
2504 end if;
2505 end Is_Printable_Error_Name;
2507 -- Start of processing for Output_Calls
2509 begin
2510 for J in reverse 1 .. Elab_Call.Last loop
2511 Error_Msg_Sloc := Elab_Call.Table (J).Cloc;
2513 Ent := Elab_Call.Table (J).Ent;
2515 if Is_Generic_Unit (Ent) then
2516 Error_Msg_NE ("\?& instantiated #", N, Ent);
2518 elsif Is_Init_Proc (Ent) then
2519 Error_Msg_N ("\?initialization procedure called #", N);
2521 elsif Is_Printable_Error_Name (Chars (Ent)) then
2522 Error_Msg_NE ("\?& called #", N, Ent);
2524 else
2525 Error_Msg_N ("\? called #", N);
2526 end if;
2527 end loop;
2528 end Output_Calls;
2530 ----------------------------
2531 -- Same_Elaboration_Scope --
2532 ----------------------------
2534 function Same_Elaboration_Scope (Scop1, Scop2 : Entity_Id) return Boolean is
2535 S1 : Entity_Id := Scop1;
2536 S2 : Entity_Id := Scop2;
2538 begin
2539 while S1 /= Standard_Standard
2540 and then (Ekind (S1) = E_Package
2541 or else
2542 Ekind (S1) = E_Block)
2543 loop
2544 S1 := Scope (S1);
2545 end loop;
2547 while S2 /= Standard_Standard
2548 and then (Ekind (S2) = E_Package
2549 or else
2550 Ekind (S2) = E_Protected_Type
2551 or else
2552 Ekind (S2) = E_Block)
2553 loop
2554 S2 := Scope (S2);
2555 end loop;
2557 return S1 = S2;
2558 end Same_Elaboration_Scope;
2560 -----------------
2561 -- Set_C_Scope --
2562 -----------------
2564 procedure Set_C_Scope is
2565 begin
2566 while not Is_Compilation_Unit (C_Scope) loop
2567 C_Scope := Scope (C_Scope);
2568 end loop;
2569 end Set_C_Scope;
2571 -----------------
2572 -- Spec_Entity --
2573 -----------------
2575 function Spec_Entity (E : Entity_Id) return Entity_Id is
2576 Decl : Node_Id;
2578 begin
2579 -- Check for case of body entity
2580 -- Why is the check for E_Void needed???
2582 if Ekind (E) = E_Void
2583 or else Ekind (E) = E_Subprogram_Body
2584 or else Ekind (E) = E_Package_Body
2585 then
2586 Decl := E;
2588 loop
2589 Decl := Parent (Decl);
2590 exit when Nkind (Decl) in N_Proper_Body;
2591 end loop;
2593 return Corresponding_Spec (Decl);
2595 else
2596 return E;
2597 end if;
2598 end Spec_Entity;
2600 -------------------
2601 -- Supply_Bodies --
2602 -------------------
2604 procedure Supply_Bodies (N : Node_Id) is
2605 begin
2606 if Nkind (N) = N_Subprogram_Declaration then
2607 declare
2608 Ent : constant Entity_Id := Defining_Unit_Name (Specification (N));
2610 begin
2611 Set_Is_Imported (Ent);
2612 Set_Convention (Ent, Convention_Stubbed);
2613 end;
2615 elsif Nkind (N) = N_Package_Declaration then
2616 declare
2617 Spec : constant Node_Id := Specification (N);
2619 begin
2620 New_Scope (Defining_Unit_Name (Spec));
2621 Supply_Bodies (Visible_Declarations (Spec));
2622 Supply_Bodies (Private_Declarations (Spec));
2623 Pop_Scope;
2624 end;
2625 end if;
2626 end Supply_Bodies;
2628 procedure Supply_Bodies (L : List_Id) is
2629 Elmt : Node_Id;
2631 begin
2632 if Present (L) then
2633 Elmt := First (L);
2634 while Present (Elmt) loop
2635 Supply_Bodies (Elmt);
2636 Next (Elmt);
2637 end loop;
2638 end if;
2639 end Supply_Bodies;
2641 ------------
2642 -- Within --
2643 ------------
2645 function Within (E1, E2 : Entity_Id) return Boolean is
2646 Scop : Entity_Id;
2648 begin
2649 Scop := E1;
2651 loop
2652 if Scop = E2 then
2653 return True;
2655 elsif Scop = Standard_Standard then
2656 return False;
2658 else
2659 Scop := Scope (Scop);
2660 end if;
2661 end loop;
2663 raise Program_Error;
2664 end Within;
2666 --------------------------
2667 -- Within_Elaborate_All --
2668 --------------------------
2670 function Within_Elaborate_All (E : Entity_Id) return Boolean is
2671 Item : Node_Id;
2672 Item2 : Node_Id;
2673 Elab_Id : Entity_Id;
2674 Par : Node_Id;
2676 begin
2677 Item := First (Context_Items (Cunit (Current_Sem_Unit)));
2679 while Present (Item) loop
2680 if Nkind (Item) = N_Pragma
2681 and then Get_Pragma_Id (Chars (Item)) = Pragma_Elaborate_All
2682 then
2683 if Error_Posted (Item) then
2685 -- Some previous error on the pragma itself
2687 return False;
2688 end if;
2690 Elab_Id :=
2691 Entity (
2692 Expression (First (Pragma_Argument_Associations (Item))));
2694 Par := Parent (Unit_Declaration_Node (Elab_Id));
2695 Item2 := First (Context_Items (Par));
2697 while Present (Item2) loop
2698 if Nkind (Item2) = N_With_Clause
2699 and then Entity (Name (Item2)) = E
2700 then
2701 return True;
2702 end if;
2704 Next (Item2);
2705 end loop;
2706 end if;
2708 Next (Item);
2709 end loop;
2711 return False;
2712 end Within_Elaborate_All;
2714 end Sem_Elab;