Small ChangeLog tweak.
[official-gcc.git] / gcc / ada / freeze.adb
blobe072824a4867d65035137adcc5013057fd310c8c
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- F R E E Z E --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2017, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
20 -- --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
23 -- --
24 ------------------------------------------------------------------------------
26 with Aspects; use Aspects;
27 with Atree; use Atree;
28 with Checks; use Checks;
29 with Contracts; use Contracts;
30 with Debug; use Debug;
31 with Einfo; use Einfo;
32 with Elists; use Elists;
33 with Errout; use Errout;
34 with Exp_Ch3; use Exp_Ch3;
35 with Exp_Ch7; use Exp_Ch7;
36 with Exp_Disp; use Exp_Disp;
37 with Exp_Pakd; use Exp_Pakd;
38 with Exp_Util; use Exp_Util;
39 with Exp_Tss; use Exp_Tss;
40 with Ghost; use Ghost;
41 with Layout; use Layout;
42 with Lib; use Lib;
43 with Namet; use Namet;
44 with Nlists; use Nlists;
45 with Nmake; use Nmake;
46 with Opt; use Opt;
47 with Restrict; use Restrict;
48 with Rident; use Rident;
49 with Rtsfind; use Rtsfind;
50 with Sem; use Sem;
51 with Sem_Aux; use Sem_Aux;
52 with Sem_Cat; use Sem_Cat;
53 with Sem_Ch6; use Sem_Ch6;
54 with Sem_Ch7; use Sem_Ch7;
55 with Sem_Ch8; use Sem_Ch8;
56 with Sem_Ch13; use Sem_Ch13;
57 with Sem_Eval; use Sem_Eval;
58 with Sem_Mech; use Sem_Mech;
59 with Sem_Prag; use Sem_Prag;
60 with Sem_Res; use Sem_Res;
61 with Sem_Util; use Sem_Util;
62 with Sinfo; use Sinfo;
63 with Snames; use Snames;
64 with Stand; use Stand;
65 with Targparm; use Targparm;
66 with Tbuild; use Tbuild;
67 with Ttypes; use Ttypes;
68 with Uintp; use Uintp;
69 with Urealp; use Urealp;
70 with Warnsw; use Warnsw;
72 package body Freeze is
74 -----------------------
75 -- Local Subprograms --
76 -----------------------
78 procedure Adjust_Esize_For_Alignment (Typ : Entity_Id);
79 -- Typ is a type that is being frozen. If no size clause is given,
80 -- but a default Esize has been computed, then this default Esize is
81 -- adjusted up if necessary to be consistent with a given alignment,
82 -- but never to a value greater than Long_Long_Integer'Size. This
83 -- is used for all discrete types and for fixed-point types.
85 procedure Build_And_Analyze_Renamed_Body
86 (Decl : Node_Id;
87 New_S : Entity_Id;
88 After : in out Node_Id);
89 -- Build body for a renaming declaration, insert in tree and analyze
91 procedure Check_Address_Clause (E : Entity_Id);
92 -- Apply legality checks to address clauses for object declarations,
93 -- at the point the object is frozen. Also ensure any initialization is
94 -- performed only after the object has been frozen.
96 procedure Check_Component_Storage_Order
97 (Encl_Type : Entity_Id;
98 Comp : Entity_Id;
99 ADC : Node_Id;
100 Comp_ADC_Present : out Boolean);
101 -- For an Encl_Type that has a Scalar_Storage_Order attribute definition
102 -- clause, verify that the component type has an explicit and compatible
103 -- attribute/aspect. For arrays, Comp is Empty; for records, it is the
104 -- entity of the component under consideration. For an Encl_Type that
105 -- does not have a Scalar_Storage_Order attribute definition clause,
106 -- verify that the component also does not have such a clause.
107 -- ADC is the attribute definition clause if present (or Empty). On return,
108 -- Comp_ADC_Present is set True if the component has a Scalar_Storage_Order
109 -- attribute definition clause.
111 procedure Check_Debug_Info_Needed (T : Entity_Id);
112 -- As each entity is frozen, this routine is called to deal with the
113 -- setting of Debug_Info_Needed for the entity. This flag is set if
114 -- the entity comes from source, or if we are in Debug_Generated_Code
115 -- mode or if the -gnatdV debug flag is set. However, it never sets
116 -- the flag if Debug_Info_Off is set. This procedure also ensures that
117 -- subsidiary entities have the flag set as required.
119 procedure Check_Expression_Function (N : Node_Id; Nam : Entity_Id);
120 -- When an expression function is frozen by a use of it, the expression
121 -- itself is frozen. Check that the expression does not include references
122 -- to deferred constants without completion. We report this at the freeze
123 -- point of the function, to provide a better error message.
125 -- In most cases the expression itself is frozen by the time the function
126 -- itself is frozen, because the formals will be frozen by then. However,
127 -- Attribute references to outer types are freeze points for those types;
128 -- this routine generates the required freeze nodes for them.
130 procedure Check_Inherited_Conditions (R : Entity_Id);
131 -- For a tagged derived type, create wrappers for inherited operations
132 -- that have a class-wide condition, so it can be properly rewritten if
133 -- it involves calls to other overriding primitives.
135 procedure Check_Strict_Alignment (E : Entity_Id);
136 -- E is a base type. If E is tagged or has a component that is aliased
137 -- or tagged or contains something this is aliased or tagged, set
138 -- Strict_Alignment.
140 procedure Check_Unsigned_Type (E : Entity_Id);
141 pragma Inline (Check_Unsigned_Type);
142 -- If E is a fixed-point or discrete type, then all the necessary work
143 -- to freeze it is completed except for possible setting of the flag
144 -- Is_Unsigned_Type, which is done by this procedure. The call has no
145 -- effect if the entity E is not a discrete or fixed-point type.
147 procedure Freeze_And_Append
148 (Ent : Entity_Id;
149 N : Node_Id;
150 Result : in out List_Id);
151 -- Freezes Ent using Freeze_Entity, and appends the resulting list of
152 -- nodes to Result, modifying Result from No_List if necessary. N has
153 -- the same usage as in Freeze_Entity.
155 procedure Freeze_Enumeration_Type (Typ : Entity_Id);
156 -- Freeze enumeration type. The Esize field is set as processing
157 -- proceeds (i.e. set by default when the type is declared and then
158 -- adjusted by rep clauses. What this procedure does is to make sure
159 -- that if a foreign convention is specified, and no specific size
160 -- is given, then the size must be at least Integer'Size.
162 procedure Freeze_Static_Object (E : Entity_Id);
163 -- If an object is frozen which has Is_Statically_Allocated set, then
164 -- all referenced types must also be marked with this flag. This routine
165 -- is in charge of meeting this requirement for the object entity E.
167 procedure Freeze_Subprogram (E : Entity_Id);
168 -- Perform freezing actions for a subprogram (create extra formals,
169 -- and set proper default mechanism values). Note that this routine
170 -- is not called for internal subprograms, for which neither of these
171 -- actions is needed (or desirable, we do not want for example to have
172 -- these extra formals present in initialization procedures, where they
173 -- would serve no purpose). In this call E is either a subprogram or
174 -- a subprogram type (i.e. an access to a subprogram).
176 function Is_Fully_Defined (T : Entity_Id) return Boolean;
177 -- True if T is not private and has no private components, or has a full
178 -- view. Used to determine whether the designated type of an access type
179 -- should be frozen when the access type is frozen. This is done when an
180 -- allocator is frozen, or an expression that may involve attributes of
181 -- the designated type. Otherwise freezing the access type does not freeze
182 -- the designated type.
184 procedure Process_Default_Expressions
185 (E : Entity_Id;
186 After : in out Node_Id);
187 -- This procedure is called for each subprogram to complete processing of
188 -- default expressions at the point where all types are known to be frozen.
189 -- The expressions must be analyzed in full, to make sure that all error
190 -- processing is done (they have only been pre-analyzed). If the expression
191 -- is not an entity or literal, its analysis may generate code which must
192 -- not be executed. In that case we build a function body to hold that
193 -- code. This wrapper function serves no other purpose (it used to be
194 -- called to evaluate the default, but now the default is inlined at each
195 -- point of call).
197 procedure Set_Component_Alignment_If_Not_Set (Typ : Entity_Id);
198 -- Typ is a record or array type that is being frozen. This routine sets
199 -- the default component alignment from the scope stack values if the
200 -- alignment is otherwise not specified.
202 procedure Set_SSO_From_Default (T : Entity_Id);
203 -- T is a record or array type that is being frozen. If it is a base type,
204 -- and if SSO_Set_Low/High_By_Default is set, then Reverse_Storage order
205 -- will be set appropriately. Note that an explicit occurrence of aspect
206 -- Scalar_Storage_Order or an explicit setting of this aspect with an
207 -- attribute definition clause occurs, then these two flags are reset in
208 -- any case, so call will have no effect.
210 procedure Undelay_Type (T : Entity_Id);
211 -- T is a type of a component that we know to be an Itype. We don't want
212 -- this to have a Freeze_Node, so ensure it doesn't. Do the same for any
213 -- Full_View or Corresponding_Record_Type.
215 procedure Warn_Overlay (Expr : Node_Id; Typ : Entity_Id; Nam : Node_Id);
216 -- Expr is the expression for an address clause for entity Nam whose type
217 -- is Typ. If Typ has a default initialization, and there is no explicit
218 -- initialization in the source declaration, check whether the address
219 -- clause might cause overlaying of an entity, and emit a warning on the
220 -- side effect that the initialization will cause.
222 -------------------------------
223 -- Adjust_Esize_For_Alignment --
224 -------------------------------
226 procedure Adjust_Esize_For_Alignment (Typ : Entity_Id) is
227 Align : Uint;
229 begin
230 if Known_Esize (Typ) and then Known_Alignment (Typ) then
231 Align := Alignment_In_Bits (Typ);
233 if Align > Esize (Typ)
234 and then Align <= Standard_Long_Long_Integer_Size
235 then
236 Set_Esize (Typ, Align);
237 end if;
238 end if;
239 end Adjust_Esize_For_Alignment;
241 ------------------------------------
242 -- Build_And_Analyze_Renamed_Body --
243 ------------------------------------
245 procedure Build_And_Analyze_Renamed_Body
246 (Decl : Node_Id;
247 New_S : Entity_Id;
248 After : in out Node_Id)
250 Body_Decl : constant Node_Id := Unit_Declaration_Node (New_S);
251 Ent : constant Entity_Id := Defining_Entity (Decl);
252 Body_Node : Node_Id;
253 Renamed_Subp : Entity_Id;
255 begin
256 -- If the renamed subprogram is intrinsic, there is no need for a
257 -- wrapper body: we set the alias that will be called and expanded which
258 -- completes the declaration. This transformation is only legal if the
259 -- renamed entity has already been elaborated.
261 -- Note that it is legal for a renaming_as_body to rename an intrinsic
262 -- subprogram, as long as the renaming occurs before the new entity
263 -- is frozen (RM 8.5.4 (5)).
265 if Nkind (Body_Decl) = N_Subprogram_Renaming_Declaration
266 and then Is_Entity_Name (Name (Body_Decl))
267 then
268 Renamed_Subp := Entity (Name (Body_Decl));
269 else
270 Renamed_Subp := Empty;
271 end if;
273 if Present (Renamed_Subp)
274 and then Is_Intrinsic_Subprogram (Renamed_Subp)
275 and then
276 (not In_Same_Source_Unit (Renamed_Subp, Ent)
277 or else Sloc (Renamed_Subp) < Sloc (Ent))
279 -- We can make the renaming entity intrinsic if the renamed function
280 -- has an interface name, or if it is one of the shift/rotate
281 -- operations known to the compiler.
283 and then
284 (Present (Interface_Name (Renamed_Subp))
285 or else Nam_In (Chars (Renamed_Subp), Name_Rotate_Left,
286 Name_Rotate_Right,
287 Name_Shift_Left,
288 Name_Shift_Right,
289 Name_Shift_Right_Arithmetic))
290 then
291 Set_Interface_Name (Ent, Interface_Name (Renamed_Subp));
293 if Present (Alias (Renamed_Subp)) then
294 Set_Alias (Ent, Alias (Renamed_Subp));
295 else
296 Set_Alias (Ent, Renamed_Subp);
297 end if;
299 Set_Is_Intrinsic_Subprogram (Ent);
300 Set_Has_Completion (Ent);
302 else
303 Body_Node := Build_Renamed_Body (Decl, New_S);
304 Insert_After (After, Body_Node);
305 Mark_Rewrite_Insertion (Body_Node);
306 Analyze (Body_Node);
307 After := Body_Node;
308 end if;
309 end Build_And_Analyze_Renamed_Body;
311 ------------------------
312 -- Build_Renamed_Body --
313 ------------------------
315 function Build_Renamed_Body
316 (Decl : Node_Id;
317 New_S : Entity_Id) return Node_Id
319 Loc : constant Source_Ptr := Sloc (New_S);
320 -- We use for the source location of the renamed body, the location of
321 -- the spec entity. It might seem more natural to use the location of
322 -- the renaming declaration itself, but that would be wrong, since then
323 -- the body we create would look as though it was created far too late,
324 -- and this could cause problems with elaboration order analysis,
325 -- particularly in connection with instantiations.
327 N : constant Node_Id := Unit_Declaration_Node (New_S);
328 Nam : constant Node_Id := Name (N);
329 Old_S : Entity_Id;
330 Spec : constant Node_Id := New_Copy_Tree (Specification (Decl));
331 Actuals : List_Id := No_List;
332 Call_Node : Node_Id;
333 Call_Name : Node_Id;
334 Body_Node : Node_Id;
335 Formal : Entity_Id;
336 O_Formal : Entity_Id;
337 Param_Spec : Node_Id;
339 Pref : Node_Id := Empty;
340 -- If the renamed entity is a primitive operation given in prefix form,
341 -- the prefix is the target object and it has to be added as the first
342 -- actual in the generated call.
344 begin
345 -- Determine the entity being renamed, which is the target of the call
346 -- statement. If the name is an explicit dereference, this is a renaming
347 -- of a subprogram type rather than a subprogram. The name itself is
348 -- fully analyzed.
350 if Nkind (Nam) = N_Selected_Component then
351 Old_S := Entity (Selector_Name (Nam));
353 elsif Nkind (Nam) = N_Explicit_Dereference then
354 Old_S := Etype (Nam);
356 elsif Nkind (Nam) = N_Indexed_Component then
357 if Is_Entity_Name (Prefix (Nam)) then
358 Old_S := Entity (Prefix (Nam));
359 else
360 Old_S := Entity (Selector_Name (Prefix (Nam)));
361 end if;
363 elsif Nkind (Nam) = N_Character_Literal then
364 Old_S := Etype (New_S);
366 else
367 Old_S := Entity (Nam);
368 end if;
370 if Is_Entity_Name (Nam) then
372 -- If the renamed entity is a predefined operator, retain full name
373 -- to ensure its visibility.
375 if Ekind (Old_S) = E_Operator
376 and then Nkind (Nam) = N_Expanded_Name
377 then
378 Call_Name := New_Copy (Name (N));
379 else
380 Call_Name := New_Occurrence_Of (Old_S, Loc);
381 end if;
383 else
384 if Nkind (Nam) = N_Selected_Component
385 and then Present (First_Formal (Old_S))
386 and then
387 (Is_Controlling_Formal (First_Formal (Old_S))
388 or else Is_Class_Wide_Type (Etype (First_Formal (Old_S))))
389 then
391 -- Retrieve the target object, to be added as a first actual
392 -- in the call.
394 Call_Name := New_Occurrence_Of (Old_S, Loc);
395 Pref := Prefix (Nam);
397 else
398 Call_Name := New_Copy (Name (N));
399 end if;
401 -- Original name may have been overloaded, but is fully resolved now
403 Set_Is_Overloaded (Call_Name, False);
404 end if;
406 -- For simple renamings, subsequent calls can be expanded directly as
407 -- calls to the renamed entity. The body must be generated in any case
408 -- for calls that may appear elsewhere. This is not done in the case
409 -- where the subprogram is an instantiation because the actual proper
410 -- body has not been built yet.
412 if Ekind_In (Old_S, E_Function, E_Procedure)
413 and then Nkind (Decl) = N_Subprogram_Declaration
414 and then not Is_Generic_Instance (Old_S)
415 then
416 Set_Body_To_Inline (Decl, Old_S);
417 end if;
419 -- Check whether the return type is a limited view. If the subprogram
420 -- is already frozen the generated body may have a non-limited view
421 -- of the type, that must be used, because it is the one in the spec
422 -- of the renaming declaration.
424 if Ekind (Old_S) = E_Function
425 and then Is_Entity_Name (Result_Definition (Spec))
426 then
427 declare
428 Ret_Type : constant Entity_Id := Etype (Result_Definition (Spec));
429 begin
430 if Has_Non_Limited_View (Ret_Type) then
431 Set_Result_Definition
432 (Spec, New_Occurrence_Of (Non_Limited_View (Ret_Type), Loc));
433 end if;
434 end;
435 end if;
437 -- The body generated for this renaming is an internal artifact, and
438 -- does not constitute a freeze point for the called entity.
440 Set_Must_Not_Freeze (Call_Name);
442 Formal := First_Formal (Defining_Entity (Decl));
444 if Present (Pref) then
445 declare
446 Pref_Type : constant Entity_Id := Etype (Pref);
447 Form_Type : constant Entity_Id := Etype (First_Formal (Old_S));
449 begin
450 -- The controlling formal may be an access parameter, or the
451 -- actual may be an access value, so adjust accordingly.
453 if Is_Access_Type (Pref_Type)
454 and then not Is_Access_Type (Form_Type)
455 then
456 Actuals := New_List
457 (Make_Explicit_Dereference (Loc, Relocate_Node (Pref)));
459 elsif Is_Access_Type (Form_Type)
460 and then not Is_Access_Type (Pref)
461 then
462 Actuals :=
463 New_List (
464 Make_Attribute_Reference (Loc,
465 Attribute_Name => Name_Access,
466 Prefix => Relocate_Node (Pref)));
467 else
468 Actuals := New_List (Pref);
469 end if;
470 end;
472 elsif Present (Formal) then
473 Actuals := New_List;
475 else
476 Actuals := No_List;
477 end if;
479 if Present (Formal) then
480 while Present (Formal) loop
481 Append (New_Occurrence_Of (Formal, Loc), Actuals);
482 Next_Formal (Formal);
483 end loop;
484 end if;
486 -- If the renamed entity is an entry, inherit its profile. For other
487 -- renamings as bodies, both profiles must be subtype conformant, so it
488 -- is not necessary to replace the profile given in the declaration.
489 -- However, default values that are aggregates are rewritten when
490 -- partially analyzed, so we recover the original aggregate to insure
491 -- that subsequent conformity checking works. Similarly, if the default
492 -- expression was constant-folded, recover the original expression.
494 Formal := First_Formal (Defining_Entity (Decl));
496 if Present (Formal) then
497 O_Formal := First_Formal (Old_S);
498 Param_Spec := First (Parameter_Specifications (Spec));
499 while Present (Formal) loop
500 if Is_Entry (Old_S) then
501 if Nkind (Parameter_Type (Param_Spec)) /=
502 N_Access_Definition
503 then
504 Set_Etype (Formal, Etype (O_Formal));
505 Set_Entity (Parameter_Type (Param_Spec), Etype (O_Formal));
506 end if;
508 elsif Nkind (Default_Value (O_Formal)) = N_Aggregate
509 or else Nkind (Original_Node (Default_Value (O_Formal))) /=
510 Nkind (Default_Value (O_Formal))
511 then
512 Set_Expression (Param_Spec,
513 New_Copy_Tree (Original_Node (Default_Value (O_Formal))));
514 end if;
516 Next_Formal (Formal);
517 Next_Formal (O_Formal);
518 Next (Param_Spec);
519 end loop;
520 end if;
522 -- If the renamed entity is a function, the generated body contains a
523 -- return statement. Otherwise, build a procedure call. If the entity is
524 -- an entry, subsequent analysis of the call will transform it into the
525 -- proper entry or protected operation call. If the renamed entity is
526 -- a character literal, return it directly.
528 if Ekind (Old_S) = E_Function
529 or else Ekind (Old_S) = E_Operator
530 or else (Ekind (Old_S) = E_Subprogram_Type
531 and then Etype (Old_S) /= Standard_Void_Type)
532 then
533 Call_Node :=
534 Make_Simple_Return_Statement (Loc,
535 Expression =>
536 Make_Function_Call (Loc,
537 Name => Call_Name,
538 Parameter_Associations => Actuals));
540 elsif Ekind (Old_S) = E_Enumeration_Literal then
541 Call_Node :=
542 Make_Simple_Return_Statement (Loc,
543 Expression => New_Occurrence_Of (Old_S, Loc));
545 elsif Nkind (Nam) = N_Character_Literal then
546 Call_Node :=
547 Make_Simple_Return_Statement (Loc, Expression => Call_Name);
549 else
550 Call_Node :=
551 Make_Procedure_Call_Statement (Loc,
552 Name => Call_Name,
553 Parameter_Associations => Actuals);
554 end if;
556 -- Create entities for subprogram body and formals
558 Set_Defining_Unit_Name (Spec,
559 Make_Defining_Identifier (Loc, Chars => Chars (New_S)));
561 Param_Spec := First (Parameter_Specifications (Spec));
562 while Present (Param_Spec) loop
563 Set_Defining_Identifier (Param_Spec,
564 Make_Defining_Identifier (Loc,
565 Chars => Chars (Defining_Identifier (Param_Spec))));
566 Next (Param_Spec);
567 end loop;
569 Body_Node :=
570 Make_Subprogram_Body (Loc,
571 Specification => Spec,
572 Declarations => New_List,
573 Handled_Statement_Sequence =>
574 Make_Handled_Sequence_Of_Statements (Loc,
575 Statements => New_List (Call_Node)));
577 if Nkind (Decl) /= N_Subprogram_Declaration then
578 Rewrite (N,
579 Make_Subprogram_Declaration (Loc,
580 Specification => Specification (N)));
581 end if;
583 -- Link the body to the entity whose declaration it completes. If
584 -- the body is analyzed when the renamed entity is frozen, it may
585 -- be necessary to restore the proper scope (see package Exp_Ch13).
587 if Nkind (N) = N_Subprogram_Renaming_Declaration
588 and then Present (Corresponding_Spec (N))
589 then
590 Set_Corresponding_Spec (Body_Node, Corresponding_Spec (N));
591 else
592 Set_Corresponding_Spec (Body_Node, New_S);
593 end if;
595 return Body_Node;
596 end Build_Renamed_Body;
598 --------------------------
599 -- Check_Address_Clause --
600 --------------------------
602 procedure Check_Address_Clause (E : Entity_Id) is
603 Addr : constant Node_Id := Address_Clause (E);
604 Typ : constant Entity_Id := Etype (E);
605 Decl : Node_Id;
606 Expr : Node_Id;
607 Init : Node_Id;
608 Lhs : Node_Id;
609 Tag_Assign : Node_Id;
611 begin
612 if Present (Addr) then
614 -- For a deferred constant, the initialization value is on full view
616 if Ekind (E) = E_Constant and then Present (Full_View (E)) then
617 Decl := Declaration_Node (Full_View (E));
618 else
619 Decl := Declaration_Node (E);
620 end if;
622 Expr := Expression (Addr);
624 if Needs_Constant_Address (Decl, Typ) then
625 Check_Constant_Address_Clause (Expr, E);
627 -- Has_Delayed_Freeze was set on E when the address clause was
628 -- analyzed, and must remain set because we want the address
629 -- clause to be elaborated only after any entity it references
630 -- has been elaborated.
631 end if;
633 -- If Rep_Clauses are to be ignored, remove address clause from
634 -- list attached to entity, because it may be illegal for gigi,
635 -- for example by breaking order of elaboration..
637 if Ignore_Rep_Clauses then
638 declare
639 Rep : Node_Id;
641 begin
642 Rep := First_Rep_Item (E);
644 if Rep = Addr then
645 Set_First_Rep_Item (E, Next_Rep_Item (Addr));
647 else
648 while Present (Rep)
649 and then Next_Rep_Item (Rep) /= Addr
650 loop
651 Rep := Next_Rep_Item (Rep);
652 end loop;
653 end if;
655 if Present (Rep) then
656 Set_Next_Rep_Item (Rep, Next_Rep_Item (Addr));
657 end if;
658 end;
660 -- And now remove the address clause
662 Kill_Rep_Clause (Addr);
664 elsif not Error_Posted (Expr)
665 and then not Needs_Finalization (Typ)
666 then
667 Warn_Overlay (Expr, Typ, Name (Addr));
668 end if;
670 Init := Expression (Decl);
672 -- If a variable, or a non-imported constant, overlays a constant
673 -- object and has an initialization value, then the initialization
674 -- may end up writing into read-only memory. Detect the cases of
675 -- statically identical values and remove the initialization. In
676 -- the other cases, give a warning. We will give other warnings
677 -- later for the variable if it is assigned.
679 if (Ekind (E) = E_Variable
680 or else (Ekind (E) = E_Constant
681 and then not Is_Imported (E)))
682 and then Overlays_Constant (E)
683 and then Present (Init)
684 then
685 declare
686 O_Ent : Entity_Id;
687 Off : Boolean;
689 begin
690 Find_Overlaid_Entity (Addr, O_Ent, Off);
692 if Ekind (O_Ent) = E_Constant
693 and then Etype (O_Ent) = Typ
694 and then Present (Constant_Value (O_Ent))
695 and then Compile_Time_Compare
696 (Init,
697 Constant_Value (O_Ent),
698 Assume_Valid => True) = EQ
699 then
700 Set_No_Initialization (Decl);
701 return;
703 elsif Comes_From_Source (Init)
704 and then Address_Clause_Overlay_Warnings
705 then
706 Error_Msg_Sloc := Sloc (Addr);
707 Error_Msg_NE
708 ("??constant& may be modified via address clause#",
709 Decl, O_Ent);
710 end if;
711 end;
712 end if;
714 if Present (Init) then
716 -- Capture initialization value at point of declaration,
717 -- and make explicit assignment legal, because object may
718 -- be a constant.
720 Remove_Side_Effects (Init);
721 Lhs := New_Occurrence_Of (E, Sloc (Decl));
722 Set_Assignment_OK (Lhs);
724 -- Move initialization to freeze actions, once the object has
725 -- been frozen and the address clause alignment check has been
726 -- performed.
728 Append_Freeze_Action (E,
729 Make_Assignment_Statement (Sloc (Decl),
730 Name => Lhs,
731 Expression => Expression (Decl)));
733 Set_No_Initialization (Decl);
735 -- If the objet is tagged, check whether the tag must be
736 -- reassigned explicitly.
738 Tag_Assign := Make_Tag_Assignment (Decl);
739 if Present (Tag_Assign) then
740 Append_Freeze_Action (E, Tag_Assign);
741 end if;
742 end if;
743 end if;
744 end Check_Address_Clause;
746 -----------------------------
747 -- Check_Compile_Time_Size --
748 -----------------------------
750 procedure Check_Compile_Time_Size (T : Entity_Id) is
752 procedure Set_Small_Size (T : Entity_Id; S : Uint);
753 -- Sets the compile time known size (64 bits or less) in the RM_Size
754 -- field of T, checking for a size clause that was given which attempts
755 -- to give a smaller size.
757 function Size_Known (T : Entity_Id) return Boolean;
758 -- Recursive function that does all the work
760 function Static_Discriminated_Components (T : Entity_Id) return Boolean;
761 -- If T is a constrained subtype, its size is not known if any of its
762 -- discriminant constraints is not static and it is not a null record.
763 -- The test is conservative and doesn't check that the components are
764 -- in fact constrained by non-static discriminant values. Could be made
765 -- more precise ???
767 --------------------
768 -- Set_Small_Size --
769 --------------------
771 procedure Set_Small_Size (T : Entity_Id; S : Uint) is
772 begin
773 if S > 64 then
774 return;
776 -- Check for bad size clause given
778 elsif Has_Size_Clause (T) then
779 if RM_Size (T) < S then
780 Error_Msg_Uint_1 := S;
781 Error_Msg_NE
782 ("size for& too small, minimum allowed is ^",
783 Size_Clause (T), T);
784 end if;
786 -- Set size if not set already
788 elsif Unknown_RM_Size (T) then
789 Set_RM_Size (T, S);
790 end if;
791 end Set_Small_Size;
793 ----------------
794 -- Size_Known --
795 ----------------
797 function Size_Known (T : Entity_Id) return Boolean is
798 Index : Entity_Id;
799 Comp : Entity_Id;
800 Ctyp : Entity_Id;
801 Low : Node_Id;
802 High : Node_Id;
804 begin
805 if Size_Known_At_Compile_Time (T) then
806 return True;
808 -- Always True for elementary types, even generic formal elementary
809 -- types. We used to return False in the latter case, but the size
810 -- is known at compile time, even in the template, we just do not
811 -- know the exact size but that's not the point of this routine.
813 elsif Is_Elementary_Type (T) or else Is_Task_Type (T) then
814 return True;
816 -- Array types
818 elsif Is_Array_Type (T) then
820 -- String literals always have known size, and we can set it
822 if Ekind (T) = E_String_Literal_Subtype then
823 Set_Small_Size
824 (T, Component_Size (T) * String_Literal_Length (T));
825 return True;
827 -- Unconstrained types never have known at compile time size
829 elsif not Is_Constrained (T) then
830 return False;
832 -- Don't do any recursion on type with error posted, since we may
833 -- have a malformed type that leads us into a loop.
835 elsif Error_Posted (T) then
836 return False;
838 -- Otherwise if component size unknown, then array size unknown
840 elsif not Size_Known (Component_Type (T)) then
841 return False;
842 end if;
844 -- Check for all indexes static, and also compute possible size
845 -- (in case it is not greater than 64 and may be packable).
847 declare
848 Size : Uint := Component_Size (T);
849 Dim : Uint;
851 begin
852 Index := First_Index (T);
853 while Present (Index) loop
854 if Nkind (Index) = N_Range then
855 Get_Index_Bounds (Index, Low, High);
857 elsif Error_Posted (Scalar_Range (Etype (Index))) then
858 return False;
860 else
861 Low := Type_Low_Bound (Etype (Index));
862 High := Type_High_Bound (Etype (Index));
863 end if;
865 if not Compile_Time_Known_Value (Low)
866 or else not Compile_Time_Known_Value (High)
867 or else Etype (Index) = Any_Type
868 then
869 return False;
871 else
872 Dim := Expr_Value (High) - Expr_Value (Low) + 1;
874 if Dim >= 0 then
875 Size := Size * Dim;
876 else
877 Size := Uint_0;
878 end if;
879 end if;
881 Next_Index (Index);
882 end loop;
884 Set_Small_Size (T, Size);
885 return True;
886 end;
888 -- For non-generic private types, go to underlying type if present
890 elsif Is_Private_Type (T)
891 and then not Is_Generic_Type (T)
892 and then Present (Underlying_Type (T))
893 then
894 -- Don't do any recursion on type with error posted, since we may
895 -- have a malformed type that leads us into a loop.
897 if Error_Posted (T) then
898 return False;
899 else
900 return Size_Known (Underlying_Type (T));
901 end if;
903 -- Record types
905 elsif Is_Record_Type (T) then
907 -- A class-wide type is never considered to have a known size
909 if Is_Class_Wide_Type (T) then
910 return False;
912 -- A subtype of a variant record must not have non-static
913 -- discriminated components.
915 elsif T /= Base_Type (T)
916 and then not Static_Discriminated_Components (T)
917 then
918 return False;
920 -- Don't do any recursion on type with error posted, since we may
921 -- have a malformed type that leads us into a loop.
923 elsif Error_Posted (T) then
924 return False;
925 end if;
927 -- Now look at the components of the record
929 declare
930 -- The following two variables are used to keep track of the
931 -- size of packed records if we can tell the size of the packed
932 -- record in the front end. Packed_Size_Known is True if so far
933 -- we can figure out the size. It is initialized to True for a
934 -- packed record, unless the record has discriminants or atomic
935 -- components or independent components.
937 -- The reason we eliminate the discriminated case is that
938 -- we don't know the way the back end lays out discriminated
939 -- packed records. If Packed_Size_Known is True, then
940 -- Packed_Size is the size in bits so far.
942 Packed_Size_Known : Boolean :=
943 Is_Packed (T)
944 and then not Has_Discriminants (T)
945 and then not Has_Atomic_Components (T)
946 and then not Has_Independent_Components (T);
948 Packed_Size : Uint := Uint_0;
949 -- Size in bits so far
951 begin
952 -- Test for variant part present
954 if Has_Discriminants (T)
955 and then Present (Parent (T))
956 and then Nkind (Parent (T)) = N_Full_Type_Declaration
957 and then Nkind (Type_Definition (Parent (T))) =
958 N_Record_Definition
959 and then not Null_Present (Type_Definition (Parent (T)))
960 and then
961 Present (Variant_Part
962 (Component_List (Type_Definition (Parent (T)))))
963 then
964 -- If variant part is present, and type is unconstrained,
965 -- then we must have defaulted discriminants, or a size
966 -- clause must be present for the type, or else the size
967 -- is definitely not known at compile time.
969 if not Is_Constrained (T)
970 and then
971 No (Discriminant_Default_Value (First_Discriminant (T)))
972 and then Unknown_RM_Size (T)
973 then
974 return False;
975 end if;
976 end if;
978 -- Loop through components
980 Comp := First_Component_Or_Discriminant (T);
981 while Present (Comp) loop
982 Ctyp := Etype (Comp);
984 -- We do not know the packed size if there is a component
985 -- clause present (we possibly could, but this would only
986 -- help in the case of a record with partial rep clauses.
987 -- That's because in the case of full rep clauses, the
988 -- size gets figured out anyway by a different circuit).
990 if Present (Component_Clause (Comp)) then
991 Packed_Size_Known := False;
992 end if;
994 -- We do not know the packed size for an atomic/VFA type
995 -- or component, or an independent type or component, or a
996 -- by-reference type or aliased component (because packing
997 -- does not touch these).
999 if Is_Atomic_Or_VFA (Ctyp)
1000 or else Is_Atomic_Or_VFA (Comp)
1001 or else Is_Independent (Ctyp)
1002 or else Is_Independent (Comp)
1003 or else Is_By_Reference_Type (Ctyp)
1004 or else Is_Aliased (Comp)
1005 then
1006 Packed_Size_Known := False;
1007 end if;
1009 -- We need to identify a component that is an array where
1010 -- the index type is an enumeration type with non-standard
1011 -- representation, and some bound of the type depends on a
1012 -- discriminant.
1014 -- This is because gigi computes the size by doing a
1015 -- substitution of the appropriate discriminant value in
1016 -- the size expression for the base type, and gigi is not
1017 -- clever enough to evaluate the resulting expression (which
1018 -- involves a call to rep_to_pos) at compile time.
1020 -- It would be nice if gigi would either recognize that
1021 -- this expression can be computed at compile time, or
1022 -- alternatively figured out the size from the subtype
1023 -- directly, where all the information is at hand ???
1025 if Is_Array_Type (Etype (Comp))
1026 and then Present (Packed_Array_Impl_Type (Etype (Comp)))
1027 then
1028 declare
1029 Ocomp : constant Entity_Id :=
1030 Original_Record_Component (Comp);
1031 OCtyp : constant Entity_Id := Etype (Ocomp);
1032 Ind : Node_Id;
1033 Indtyp : Entity_Id;
1034 Lo, Hi : Node_Id;
1036 begin
1037 Ind := First_Index (OCtyp);
1038 while Present (Ind) loop
1039 Indtyp := Etype (Ind);
1041 if Is_Enumeration_Type (Indtyp)
1042 and then Has_Non_Standard_Rep (Indtyp)
1043 then
1044 Lo := Type_Low_Bound (Indtyp);
1045 Hi := Type_High_Bound (Indtyp);
1047 if Is_Entity_Name (Lo)
1048 and then Ekind (Entity (Lo)) = E_Discriminant
1049 then
1050 return False;
1052 elsif Is_Entity_Name (Hi)
1053 and then Ekind (Entity (Hi)) = E_Discriminant
1054 then
1055 return False;
1056 end if;
1057 end if;
1059 Next_Index (Ind);
1060 end loop;
1061 end;
1062 end if;
1064 -- Clearly size of record is not known if the size of one of
1065 -- the components is not known.
1067 if not Size_Known (Ctyp) then
1068 return False;
1069 end if;
1071 -- Accumulate packed size if possible
1073 if Packed_Size_Known then
1075 -- We can deal with elementary types, small packed arrays
1076 -- if the representation is a modular type and also small
1077 -- record types (if the size is not greater than 64, but
1078 -- the condition is checked by Set_Small_Size).
1080 if Is_Elementary_Type (Ctyp)
1081 or else (Is_Array_Type (Ctyp)
1082 and then Present
1083 (Packed_Array_Impl_Type (Ctyp))
1084 and then Is_Modular_Integer_Type
1085 (Packed_Array_Impl_Type (Ctyp)))
1086 or else Is_Record_Type (Ctyp)
1087 then
1088 -- If RM_Size is known and static, then we can keep
1089 -- accumulating the packed size.
1091 if Known_Static_RM_Size (Ctyp) then
1093 Packed_Size := Packed_Size + RM_Size (Ctyp);
1095 -- If we have a field whose RM_Size is not known then
1096 -- we can't figure out the packed size here.
1098 else
1099 Packed_Size_Known := False;
1100 end if;
1102 -- For other types we can't figure out the packed size
1104 else
1105 Packed_Size_Known := False;
1106 end if;
1107 end if;
1109 Next_Component_Or_Discriminant (Comp);
1110 end loop;
1112 if Packed_Size_Known then
1113 Set_Small_Size (T, Packed_Size);
1114 end if;
1116 return True;
1117 end;
1119 -- All other cases, size not known at compile time
1121 else
1122 return False;
1123 end if;
1124 end Size_Known;
1126 -------------------------------------
1127 -- Static_Discriminated_Components --
1128 -------------------------------------
1130 function Static_Discriminated_Components
1131 (T : Entity_Id) return Boolean
1133 Constraint : Elmt_Id;
1135 begin
1136 if Has_Discriminants (T)
1137 and then Present (Discriminant_Constraint (T))
1138 and then Present (First_Component (T))
1139 then
1140 Constraint := First_Elmt (Discriminant_Constraint (T));
1141 while Present (Constraint) loop
1142 if not Compile_Time_Known_Value (Node (Constraint)) then
1143 return False;
1144 end if;
1146 Next_Elmt (Constraint);
1147 end loop;
1148 end if;
1150 return True;
1151 end Static_Discriminated_Components;
1153 -- Start of processing for Check_Compile_Time_Size
1155 begin
1156 Set_Size_Known_At_Compile_Time (T, Size_Known (T));
1157 end Check_Compile_Time_Size;
1159 -----------------------------------
1160 -- Check_Component_Storage_Order --
1161 -----------------------------------
1163 procedure Check_Component_Storage_Order
1164 (Encl_Type : Entity_Id;
1165 Comp : Entity_Id;
1166 ADC : Node_Id;
1167 Comp_ADC_Present : out Boolean)
1169 Comp_Base : Entity_Id;
1170 Comp_ADC : Node_Id;
1171 Encl_Base : Entity_Id;
1172 Err_Node : Node_Id;
1174 Component_Aliased : Boolean;
1176 Comp_Byte_Aligned : Boolean;
1177 pragma Warnings (Off, Comp_Byte_Aligned);
1178 -- Set for the record case, True if Comp is aligned on byte boundaries
1179 -- (in which case it is allowed to have different storage order).
1181 Comp_SSO_Differs : Boolean;
1182 -- Set True when the component is a nested composite, and it does not
1183 -- have the same scalar storage order as Encl_Type.
1185 begin
1186 -- Record case
1188 if Present (Comp) then
1189 Err_Node := Comp;
1190 Comp_Base := Etype (Comp);
1192 if Is_Tag (Comp) then
1193 Comp_Byte_Aligned := True;
1194 Component_Aliased := False;
1196 else
1197 -- If a component clause is present, check if the component starts
1198 -- and ends on byte boundaries. Otherwise conservatively assume it
1199 -- does so only in the case where the record is not packed.
1201 if Present (Component_Clause (Comp)) then
1202 Comp_Byte_Aligned :=
1203 (Normalized_First_Bit (Comp) mod System_Storage_Unit = 0)
1204 and then
1205 (Esize (Comp) mod System_Storage_Unit = 0);
1206 else
1207 Comp_Byte_Aligned := not Is_Packed (Encl_Type);
1208 end if;
1210 Component_Aliased := Is_Aliased (Comp);
1211 end if;
1213 -- Array case
1215 else
1216 Err_Node := Encl_Type;
1217 Comp_Base := Component_Type (Encl_Type);
1219 Component_Aliased := Has_Aliased_Components (Encl_Type);
1220 end if;
1222 -- Note: the Reverse_Storage_Order flag is set on the base type, but
1223 -- the attribute definition clause is attached to the first subtype.
1224 -- Also, if the base type is incomplete or private, go to full view
1225 -- if known
1227 Encl_Base := Base_Type (Encl_Type);
1228 if Present (Underlying_Type (Encl_Base)) then
1229 Encl_Base := Underlying_Type (Encl_Base);
1230 end if;
1232 Comp_Base := Base_Type (Comp_Base);
1233 if Present (Underlying_Type (Comp_Base)) then
1234 Comp_Base := Underlying_Type (Comp_Base);
1235 end if;
1237 Comp_ADC :=
1238 Get_Attribute_Definition_Clause
1239 (First_Subtype (Comp_Base), Attribute_Scalar_Storage_Order);
1240 Comp_ADC_Present := Present (Comp_ADC);
1242 -- Case of record or array component: check storage order compatibility.
1243 -- But, if the record has Complex_Representation, then it is treated as
1244 -- a scalar in the back end so the storage order is irrelevant.
1246 if (Is_Record_Type (Comp_Base)
1247 and then not Has_Complex_Representation (Comp_Base))
1248 or else Is_Array_Type (Comp_Base)
1249 then
1250 Comp_SSO_Differs :=
1251 Reverse_Storage_Order (Encl_Base) /=
1252 Reverse_Storage_Order (Comp_Base);
1254 -- Parent and extension must have same storage order
1256 if Present (Comp) and then Chars (Comp) = Name_uParent then
1257 if Comp_SSO_Differs then
1258 Error_Msg_N
1259 ("record extension must have same scalar storage order as "
1260 & "parent", Err_Node);
1261 end if;
1263 -- If component and composite SSO differs, check that component
1264 -- falls on byte boundaries and isn't bit packed.
1266 elsif Comp_SSO_Differs then
1268 -- Component SSO differs from enclosing composite:
1270 -- Reject if composite is a bit-packed array, as it is rewritten
1271 -- into an array of scalars.
1273 if Is_Bit_Packed_Array (Encl_Base) then
1274 Error_Msg_N
1275 ("type of packed array must have same scalar storage order "
1276 & "as component", Err_Node);
1278 -- Reject if not byte aligned
1280 elsif Is_Record_Type (Encl_Base)
1281 and then not Comp_Byte_Aligned
1282 then
1283 Error_Msg_N
1284 ("type of non-byte-aligned component must have same scalar "
1285 & "storage order as enclosing composite", Err_Node);
1287 -- Warn if specified only for the outer composite
1289 elsif Present (ADC) and then No (Comp_ADC) then
1290 Error_Msg_NE
1291 ("scalar storage order specified for & does not apply to "
1292 & "component?", Err_Node, Encl_Base);
1293 end if;
1294 end if;
1296 -- Enclosing type has explicit SSO: non-composite component must not
1297 -- be aliased.
1299 elsif Present (ADC) and then Component_Aliased then
1300 Error_Msg_N
1301 ("aliased component not permitted for type with explicit "
1302 & "Scalar_Storage_Order", Err_Node);
1303 end if;
1304 end Check_Component_Storage_Order;
1306 -----------------------------
1307 -- Check_Debug_Info_Needed --
1308 -----------------------------
1310 procedure Check_Debug_Info_Needed (T : Entity_Id) is
1311 begin
1312 if Debug_Info_Off (T) then
1313 return;
1315 elsif Comes_From_Source (T)
1316 or else Debug_Generated_Code
1317 or else Debug_Flag_VV
1318 or else Needs_Debug_Info (T)
1319 then
1320 Set_Debug_Info_Needed (T);
1321 end if;
1322 end Check_Debug_Info_Needed;
1324 -------------------------------
1325 -- Check_Expression_Function --
1326 -------------------------------
1328 procedure Check_Expression_Function (N : Node_Id; Nam : Entity_Id) is
1329 function Find_Constant (Nod : Node_Id) return Traverse_Result;
1330 -- Function to search for deferred constant
1332 -------------------
1333 -- Find_Constant --
1334 -------------------
1336 function Find_Constant (Nod : Node_Id) return Traverse_Result is
1337 begin
1338 -- When a constant is initialized with the result of a dispatching
1339 -- call, the constant declaration is rewritten as a renaming of the
1340 -- displaced function result. This scenario is not a premature use of
1341 -- a constant even though the Has_Completion flag is not set.
1343 if Is_Entity_Name (Nod)
1344 and then Present (Entity (Nod))
1345 and then Ekind (Entity (Nod)) = E_Constant
1346 and then Scope (Entity (Nod)) = Current_Scope
1347 and then Nkind (Declaration_Node (Entity (Nod))) =
1348 N_Object_Declaration
1349 and then not Is_Imported (Entity (Nod))
1350 and then not Has_Completion (Entity (Nod))
1351 and then not Is_Frozen (Entity (Nod))
1352 then
1353 Error_Msg_NE
1354 ("premature use of& in call or instance", N, Entity (Nod));
1356 elsif Nkind (Nod) = N_Attribute_Reference then
1357 Analyze (Prefix (Nod));
1359 if Is_Entity_Name (Prefix (Nod))
1360 and then Is_Type (Entity (Prefix (Nod)))
1361 then
1362 Freeze_Before (N, Entity (Prefix (Nod)));
1363 end if;
1364 end if;
1366 return OK;
1367 end Find_Constant;
1369 procedure Check_Deferred is new Traverse_Proc (Find_Constant);
1371 -- Local variables
1373 Decl : Node_Id;
1375 -- Start of processing for Check_Expression_Function
1377 begin
1378 Decl := Original_Node (Unit_Declaration_Node (Nam));
1380 -- The subprogram body created for the expression function is not
1381 -- itself a freeze point.
1383 if Scope (Nam) = Current_Scope
1384 and then Nkind (Decl) = N_Expression_Function
1385 and then Nkind (N) /= N_Subprogram_Body
1386 then
1387 Check_Deferred (Expression (Decl));
1388 end if;
1389 end Check_Expression_Function;
1391 --------------------------------
1392 -- Check_Inherited_Conditions --
1393 --------------------------------
1395 procedure Check_Inherited_Conditions (R : Entity_Id) is
1396 Prim_Ops : constant Elist_Id := Primitive_Operations (R);
1397 Decls : List_Id;
1398 Needs_Wrapper : Boolean;
1399 Op_Node : Elmt_Id;
1400 Par_Prim : Entity_Id;
1401 Prim : Entity_Id;
1403 procedure Build_Inherited_Condition_Pragmas (Subp : Entity_Id);
1404 -- Build corresponding pragmas for an operation whose ancestor has
1405 -- class-wide pre/postconditions. If the operation is inherited, the
1406 -- pragmas force the creation of a wrapper for the inherited operation.
1407 -- If the ancestor is being overridden, the pragmas are constructed only
1408 -- to verify their legality, in case they contain calls to other
1409 -- primitives that may haven been overridden.
1411 ---------------------------------------
1412 -- Build_Inherited_Condition_Pragmas --
1413 ---------------------------------------
1415 procedure Build_Inherited_Condition_Pragmas (Subp : Entity_Id) is
1416 A_Post : Node_Id;
1417 A_Pre : Node_Id;
1418 New_Prag : Node_Id;
1420 begin
1421 A_Pre := Get_Pragma (Par_Prim, Pragma_Precondition);
1422 if Present (A_Pre) and then Class_Present (A_Pre) then
1423 New_Prag := New_Copy_Tree (A_Pre);
1424 Build_Class_Wide_Expression
1425 (Prag => New_Prag,
1426 Subp => Prim,
1427 Par_Subp => Par_Prim,
1428 Adjust_Sloc => False,
1429 Needs_Wrapper => Needs_Wrapper);
1431 if Needs_Wrapper
1432 and then not Comes_From_Source (Subp)
1433 and then Expander_Active
1434 then
1435 Append (New_Prag, Decls);
1436 end if;
1437 end if;
1439 A_Post := Get_Pragma (Par_Prim, Pragma_Postcondition);
1441 if Present (A_Post) and then Class_Present (A_Post) then
1442 New_Prag := New_Copy_Tree (A_Post);
1443 Build_Class_Wide_Expression
1444 (Prag => New_Prag,
1445 Subp => Prim,
1446 Par_Subp => Par_Prim,
1447 Adjust_Sloc => False,
1448 Needs_Wrapper => Needs_Wrapper);
1450 if Needs_Wrapper
1451 and then not Comes_From_Source (Subp)
1452 and then Expander_Active
1453 then
1454 Append (New_Prag, Decls);
1455 end if;
1456 end if;
1457 end Build_Inherited_Condition_Pragmas;
1459 -- Start of processing for Check_Inherited_Conditions
1461 begin
1462 Op_Node := First_Elmt (Prim_Ops);
1463 while Present (Op_Node) loop
1464 Prim := Node (Op_Node);
1466 -- Map the overridden primitive to the overriding one. This takes
1467 -- care of all overridings and is done only once.
1469 if Present (Overridden_Operation (Prim))
1470 and then Comes_From_Source (Prim)
1471 then
1472 Par_Prim := Overridden_Operation (Prim);
1473 Update_Primitives_Mapping (Par_Prim, Prim);
1474 end if;
1476 Next_Elmt (Op_Node);
1477 end loop;
1479 -- Perform validity checks on the inherited conditions of overriding
1480 -- operations, for conformance with LSP, and apply SPARK-specific
1481 -- restrictions on inherited conditions.
1483 Op_Node := First_Elmt (Prim_Ops);
1484 while Present (Op_Node) loop
1485 Prim := Node (Op_Node);
1487 if Present (Overridden_Operation (Prim))
1488 and then Comes_From_Source (Prim)
1489 then
1490 Par_Prim := Overridden_Operation (Prim);
1492 -- Analyze the contract items of the overridden operation, before
1493 -- they are rewritten as pragmas.
1495 Analyze_Entry_Or_Subprogram_Contract (Par_Prim);
1497 -- In SPARK mode this is where we can collect the inherited
1498 -- conditions, because we do not create the Check pragmas that
1499 -- normally convey the the modified class-wide conditions on
1500 -- overriding operations.
1502 if SPARK_Mode = On then
1503 Collect_Inherited_Class_Wide_Conditions (Prim);
1505 -- Otherwise build the corresponding pragmas to check for legality
1506 -- of the inherited condition.
1508 else
1509 Build_Inherited_Condition_Pragmas (Prim);
1510 end if;
1511 end if;
1513 Next_Elmt (Op_Node);
1514 end loop;
1516 -- Now examine the inherited operations to check whether they require
1517 -- a wrapper to handle inherited conditions that call other primitives,
1518 -- so that LSP can be verified/enforced.
1520 Op_Node := First_Elmt (Prim_Ops);
1521 Needs_Wrapper := False;
1523 while Present (Op_Node) loop
1524 Decls := Empty_List;
1525 Prim := Node (Op_Node);
1527 if not Comes_From_Source (Prim) and then Present (Alias (Prim)) then
1528 Par_Prim := Alias (Prim);
1530 -- Analyze the contract items of the parent operation, and
1531 -- determine whether a wrapper is needed. This is determined
1532 -- when the condition is rewritten in sem_prag, using the
1533 -- mapping between overridden and overriding operations built
1534 -- in the loop above.
1536 Analyze_Entry_Or_Subprogram_Contract (Par_Prim);
1537 Build_Inherited_Condition_Pragmas (Prim);
1538 end if;
1540 if Needs_Wrapper
1541 and then not Is_Abstract_Subprogram (Par_Prim)
1542 and then Expander_Active
1543 then
1544 -- We need to build a new primitive that overrides the inherited
1545 -- one, and whose inherited expression has been updated above.
1546 -- These expressions are the arguments of pragmas that are part
1547 -- of the declarations of the wrapper. The wrapper holds a single
1548 -- statement that is a call to the class-wide clone, where the
1549 -- controlling actuals are conversions to the corresponding type
1550 -- in the parent primitive:
1552 -- procedure New_Prim (F1 : T1; ...);
1553 -- procedure New_Prim (F1 : T1; ...) is
1554 -- pragma Check (Precondition, Expr);
1555 -- begin
1556 -- Par_Prim_Clone (Par_Type (F1), ...);
1557 -- end;
1559 -- If the primitive is a function the statement is a return
1560 -- statement with a call.
1562 declare
1563 Loc : constant Source_Ptr := Sloc (R);
1564 Par_R : constant Node_Id := Parent (R);
1565 New_Body : Node_Id;
1566 New_Decl : Node_Id;
1567 New_Spec : Node_Id;
1569 begin
1570 New_Spec := Build_Overriding_Spec (Par_Prim, R);
1571 New_Decl :=
1572 Make_Subprogram_Declaration (Loc,
1573 Specification => New_Spec);
1575 -- Insert the declaration and the body of the wrapper after
1576 -- type declaration that generates inherited operation. For
1577 -- a null procedure, the declaration implies a null body.
1579 if Nkind (New_Spec) = N_Procedure_Specification
1580 and then Null_Present (New_Spec)
1581 then
1582 Insert_After_And_Analyze (Par_R, New_Decl);
1584 else
1585 -- Build body as wrapper to a call to the already built
1586 -- class-wide clone.
1588 New_Body :=
1589 Build_Class_Wide_Clone_Call
1590 (Loc, Decls, Par_Prim, New_Spec);
1592 Insert_List_After_And_Analyze
1593 (Par_R, New_List (New_Decl, New_Body));
1594 end if;
1595 end;
1597 Needs_Wrapper := False;
1598 end if;
1600 Next_Elmt (Op_Node);
1601 end loop;
1602 end Check_Inherited_Conditions;
1604 ----------------------------
1605 -- Check_Strict_Alignment --
1606 ----------------------------
1608 procedure Check_Strict_Alignment (E : Entity_Id) is
1609 Comp : Entity_Id;
1611 begin
1612 if Is_Tagged_Type (E) or else Is_Concurrent_Type (E) then
1613 Set_Strict_Alignment (E);
1615 elsif Is_Array_Type (E) then
1616 Set_Strict_Alignment (E, Strict_Alignment (Component_Type (E)));
1618 elsif Is_Record_Type (E) then
1619 if Is_Limited_Record (E) then
1620 Set_Strict_Alignment (E);
1621 return;
1622 end if;
1624 Comp := First_Component (E);
1625 while Present (Comp) loop
1626 if not Is_Type (Comp)
1627 and then (Strict_Alignment (Etype (Comp))
1628 or else Is_Aliased (Comp))
1629 then
1630 Set_Strict_Alignment (E);
1631 return;
1632 end if;
1634 Next_Component (Comp);
1635 end loop;
1636 end if;
1637 end Check_Strict_Alignment;
1639 -------------------------
1640 -- Check_Unsigned_Type --
1641 -------------------------
1643 procedure Check_Unsigned_Type (E : Entity_Id) is
1644 Ancestor : Entity_Id;
1645 Lo_Bound : Node_Id;
1646 Btyp : Entity_Id;
1648 begin
1649 if not Is_Discrete_Or_Fixed_Point_Type (E) then
1650 return;
1651 end if;
1653 -- Do not attempt to analyze case where range was in error
1655 if No (Scalar_Range (E)) or else Error_Posted (Scalar_Range (E)) then
1656 return;
1657 end if;
1659 -- The situation that is nontrivial is something like:
1661 -- subtype x1 is integer range -10 .. +10;
1662 -- subtype x2 is x1 range 0 .. V1;
1663 -- subtype x3 is x2 range V2 .. V3;
1664 -- subtype x4 is x3 range V4 .. V5;
1666 -- where Vn are variables. Here the base type is signed, but we still
1667 -- know that x4 is unsigned because of the lower bound of x2.
1669 -- The only way to deal with this is to look up the ancestor chain
1671 Ancestor := E;
1672 loop
1673 if Ancestor = Any_Type or else Etype (Ancestor) = Any_Type then
1674 return;
1675 end if;
1677 Lo_Bound := Type_Low_Bound (Ancestor);
1679 if Compile_Time_Known_Value (Lo_Bound) then
1680 if Expr_Rep_Value (Lo_Bound) >= 0 then
1681 Set_Is_Unsigned_Type (E, True);
1682 end if;
1684 return;
1686 else
1687 Ancestor := Ancestor_Subtype (Ancestor);
1689 -- If no ancestor had a static lower bound, go to base type
1691 if No (Ancestor) then
1693 -- Note: the reason we still check for a compile time known
1694 -- value for the base type is that at least in the case of
1695 -- generic formals, we can have bounds that fail this test,
1696 -- and there may be other cases in error situations.
1698 Btyp := Base_Type (E);
1700 if Btyp = Any_Type or else Etype (Btyp) = Any_Type then
1701 return;
1702 end if;
1704 Lo_Bound := Type_Low_Bound (Base_Type (E));
1706 if Compile_Time_Known_Value (Lo_Bound)
1707 and then Expr_Rep_Value (Lo_Bound) >= 0
1708 then
1709 Set_Is_Unsigned_Type (E, True);
1710 end if;
1712 return;
1713 end if;
1714 end if;
1715 end loop;
1716 end Check_Unsigned_Type;
1718 -----------------------------
1719 -- Is_Atomic_VFA_Aggregate --
1720 -----------------------------
1722 function Is_Atomic_VFA_Aggregate (N : Node_Id) return Boolean is
1723 Loc : constant Source_Ptr := Sloc (N);
1724 New_N : Node_Id;
1725 Par : Node_Id;
1726 Temp : Entity_Id;
1727 Typ : Entity_Id;
1729 begin
1730 Par := Parent (N);
1732 -- Array may be qualified, so find outer context
1734 if Nkind (Par) = N_Qualified_Expression then
1735 Par := Parent (Par);
1736 end if;
1738 if not Comes_From_Source (Par) then
1739 return False;
1740 end if;
1742 case Nkind (Par) is
1743 when N_Assignment_Statement =>
1744 Typ := Etype (Name (Par));
1746 if not Is_Atomic_Or_VFA (Typ)
1747 and then not (Is_Entity_Name (Name (Par))
1748 and then Is_Atomic_Or_VFA (Entity (Name (Par))))
1749 then
1750 return False;
1751 end if;
1753 when N_Object_Declaration =>
1754 Typ := Etype (Defining_Identifier (Par));
1756 if not Is_Atomic_Or_VFA (Typ)
1757 and then not Is_Atomic_Or_VFA (Defining_Identifier (Par))
1758 then
1759 return False;
1760 end if;
1762 when others =>
1763 return False;
1764 end case;
1766 Temp := Make_Temporary (Loc, 'T', N);
1767 New_N :=
1768 Make_Object_Declaration (Loc,
1769 Defining_Identifier => Temp,
1770 Object_Definition => New_Occurrence_Of (Typ, Loc),
1771 Expression => Relocate_Node (N));
1772 Insert_Before (Par, New_N);
1773 Analyze (New_N);
1775 Set_Expression (Par, New_Occurrence_Of (Temp, Loc));
1776 return True;
1777 end Is_Atomic_VFA_Aggregate;
1779 -----------------------------------------------
1780 -- Explode_Initialization_Compound_Statement --
1781 -----------------------------------------------
1783 procedure Explode_Initialization_Compound_Statement (E : Entity_Id) is
1784 Init_Stmts : constant Node_Id := Initialization_Statements (E);
1786 begin
1787 if Present (Init_Stmts)
1788 and then Nkind (Init_Stmts) = N_Compound_Statement
1789 then
1790 Insert_List_Before (Init_Stmts, Actions (Init_Stmts));
1792 -- Note that we rewrite Init_Stmts into a NULL statement, rather than
1793 -- just removing it, because Freeze_All may rely on this particular
1794 -- Node_Id still being present in the enclosing list to know where to
1795 -- stop freezing.
1797 Rewrite (Init_Stmts, Make_Null_Statement (Sloc (Init_Stmts)));
1799 Set_Initialization_Statements (E, Empty);
1800 end if;
1801 end Explode_Initialization_Compound_Statement;
1803 ----------------
1804 -- Freeze_All --
1805 ----------------
1807 -- Note: the easy coding for this procedure would be to just build a
1808 -- single list of freeze nodes and then insert them and analyze them
1809 -- all at once. This won't work, because the analysis of earlier freeze
1810 -- nodes may recursively freeze types which would otherwise appear later
1811 -- on in the freeze list. So we must analyze and expand the freeze nodes
1812 -- as they are generated.
1814 procedure Freeze_All (From : Entity_Id; After : in out Node_Id) is
1815 procedure Freeze_All_Ent (From : Entity_Id; After : in out Node_Id);
1816 -- This is the internal recursive routine that does freezing of entities
1817 -- (but NOT the analysis of default expressions, which should not be
1818 -- recursive, we don't want to analyze those till we are sure that ALL
1819 -- the types are frozen).
1821 --------------------
1822 -- Freeze_All_Ent --
1823 --------------------
1825 procedure Freeze_All_Ent (From : Entity_Id; After : in out Node_Id) is
1826 E : Entity_Id;
1827 Flist : List_Id;
1828 Lastn : Node_Id;
1830 procedure Process_Flist;
1831 -- If freeze nodes are present, insert and analyze, and reset cursor
1832 -- for next insertion.
1834 -------------------
1835 -- Process_Flist --
1836 -------------------
1838 procedure Process_Flist is
1839 begin
1840 if Is_Non_Empty_List (Flist) then
1841 Lastn := Next (After);
1842 Insert_List_After_And_Analyze (After, Flist);
1844 if Present (Lastn) then
1845 After := Prev (Lastn);
1846 else
1847 After := Last (List_Containing (After));
1848 end if;
1849 end if;
1850 end Process_Flist;
1852 -- Start of processing for Freeze_All_Ent
1854 begin
1855 E := From;
1856 while Present (E) loop
1858 -- If the entity is an inner package which is not a package
1859 -- renaming, then its entities must be frozen at this point. Note
1860 -- that such entities do NOT get frozen at the end of the nested
1861 -- package itself (only library packages freeze).
1863 -- Same is true for task declarations, where anonymous records
1864 -- created for entry parameters must be frozen.
1866 if Ekind (E) = E_Package
1867 and then No (Renamed_Object (E))
1868 and then not Is_Child_Unit (E)
1869 and then not Is_Frozen (E)
1870 then
1871 Push_Scope (E);
1873 Install_Visible_Declarations (E);
1874 Install_Private_Declarations (E);
1875 Freeze_All (First_Entity (E), After);
1877 End_Package_Scope (E);
1879 if Is_Generic_Instance (E)
1880 and then Has_Delayed_Freeze (E)
1881 then
1882 Set_Has_Delayed_Freeze (E, False);
1883 Expand_N_Package_Declaration (Unit_Declaration_Node (E));
1884 end if;
1886 elsif Ekind (E) in Task_Kind
1887 and then Nkind_In (Parent (E), N_Single_Task_Declaration,
1888 N_Task_Type_Declaration)
1889 then
1890 Push_Scope (E);
1891 Freeze_All (First_Entity (E), After);
1892 End_Scope;
1894 -- For a derived tagged type, we must ensure that all the
1895 -- primitive operations of the parent have been frozen, so that
1896 -- their addresses will be in the parent's dispatch table at the
1897 -- point it is inherited.
1899 elsif Ekind (E) = E_Record_Type
1900 and then Is_Tagged_Type (E)
1901 and then Is_Tagged_Type (Etype (E))
1902 and then Is_Derived_Type (E)
1903 then
1904 declare
1905 Prim_List : constant Elist_Id :=
1906 Primitive_Operations (Etype (E));
1908 Prim : Elmt_Id;
1909 Subp : Entity_Id;
1911 begin
1912 Prim := First_Elmt (Prim_List);
1913 while Present (Prim) loop
1914 Subp := Node (Prim);
1916 if Comes_From_Source (Subp)
1917 and then not Is_Frozen (Subp)
1918 then
1919 Flist := Freeze_Entity (Subp, After);
1920 Process_Flist;
1921 end if;
1923 Next_Elmt (Prim);
1924 end loop;
1925 end;
1926 end if;
1928 if not Is_Frozen (E) then
1929 Flist := Freeze_Entity (E, After);
1930 Process_Flist;
1932 -- If already frozen, and there are delayed aspects, this is where
1933 -- we do the visibility check for these aspects (see Sem_Ch13 spec
1934 -- for a description of how we handle aspect visibility).
1936 elsif Has_Delayed_Aspects (E) then
1938 -- Retrieve the visibility to the discriminants in order to
1939 -- analyze properly the aspects.
1941 Push_Scope_And_Install_Discriminants (E);
1943 declare
1944 Ritem : Node_Id;
1946 begin
1947 Ritem := First_Rep_Item (E);
1948 while Present (Ritem) loop
1949 if Nkind (Ritem) = N_Aspect_Specification
1950 and then Entity (Ritem) = E
1951 and then Is_Delayed_Aspect (Ritem)
1952 then
1953 Check_Aspect_At_End_Of_Declarations (Ritem);
1954 end if;
1956 Ritem := Next_Rep_Item (Ritem);
1957 end loop;
1958 end;
1960 Uninstall_Discriminants_And_Pop_Scope (E);
1961 end if;
1963 -- If an incomplete type is still not frozen, this may be a
1964 -- premature freezing because of a body declaration that follows.
1965 -- Indicate where the freezing took place. Freezing will happen
1966 -- if the body comes from source, but not if it is internally
1967 -- generated, for example as the body of a type invariant.
1969 -- If the freezing is caused by the end of the current declarative
1970 -- part, it is a Taft Amendment type, and there is no error.
1972 if not Is_Frozen (E)
1973 and then Ekind (E) = E_Incomplete_Type
1974 then
1975 declare
1976 Bod : constant Node_Id := Next (After);
1978 begin
1979 -- The presence of a body freezes all entities previously
1980 -- declared in the current list of declarations, but this
1981 -- does not apply if the body does not come from source.
1982 -- A type invariant is transformed into a subprogram body
1983 -- which is placed at the end of the private part of the
1984 -- current package, but this body does not freeze incomplete
1985 -- types that may be declared in this private part.
1987 if (Nkind_In (Bod, N_Entry_Body,
1988 N_Package_Body,
1989 N_Protected_Body,
1990 N_Subprogram_Body,
1991 N_Task_Body)
1992 or else Nkind (Bod) in N_Body_Stub)
1993 and then
1994 List_Containing (After) = List_Containing (Parent (E))
1995 and then Comes_From_Source (Bod)
1996 then
1997 Error_Msg_Sloc := Sloc (Next (After));
1998 Error_Msg_NE
1999 ("type& is frozen# before its full declaration",
2000 Parent (E), E);
2001 end if;
2002 end;
2003 end if;
2005 Next_Entity (E);
2006 end loop;
2007 end Freeze_All_Ent;
2009 -- Local variables
2011 Decl : Node_Id;
2012 E : Entity_Id;
2013 Item : Entity_Id;
2015 -- Start of processing for Freeze_All
2017 begin
2018 Freeze_All_Ent (From, After);
2020 -- Now that all types are frozen, we can deal with default expressions
2021 -- that require us to build a default expression functions. This is the
2022 -- point at which such functions are constructed (after all types that
2023 -- might be used in such expressions have been frozen).
2025 -- For subprograms that are renaming_as_body, we create the wrapper
2026 -- bodies as needed.
2028 -- We also add finalization chains to access types whose designated
2029 -- types are controlled. This is normally done when freezing the type,
2030 -- but this misses recursive type definitions where the later members
2031 -- of the recursion introduce controlled components.
2033 -- Loop through entities
2035 E := From;
2036 while Present (E) loop
2037 if Is_Subprogram (E) then
2038 if not Default_Expressions_Processed (E) then
2039 Process_Default_Expressions (E, After);
2040 end if;
2042 if not Has_Completion (E) then
2043 Decl := Unit_Declaration_Node (E);
2045 if Nkind (Decl) = N_Subprogram_Renaming_Declaration then
2046 if Error_Posted (Decl) then
2047 Set_Has_Completion (E);
2048 else
2049 Build_And_Analyze_Renamed_Body (Decl, E, After);
2050 end if;
2052 elsif Nkind (Decl) = N_Subprogram_Declaration
2053 and then Present (Corresponding_Body (Decl))
2054 and then
2055 Nkind (Unit_Declaration_Node (Corresponding_Body (Decl))) =
2056 N_Subprogram_Renaming_Declaration
2057 then
2058 Build_And_Analyze_Renamed_Body
2059 (Decl, Corresponding_Body (Decl), After);
2060 end if;
2061 end if;
2063 -- Freeze the default expressions of entries, entry families, and
2064 -- protected subprograms.
2066 elsif Is_Concurrent_Type (E) then
2067 Item := First_Entity (E);
2068 while Present (Item) loop
2069 if (Is_Entry (Item) or else Is_Subprogram (Item))
2070 and then not Default_Expressions_Processed (Item)
2071 then
2072 Process_Default_Expressions (Item, After);
2073 end if;
2075 Next_Entity (Item);
2076 end loop;
2077 end if;
2079 -- Historical note: We used to create a finalization master for an
2080 -- access type whose designated type is not controlled, but contains
2081 -- private controlled compoments. This form of postprocessing is no
2082 -- longer needed because the finalization master is now created when
2083 -- the access type is frozen (see Exp_Ch3.Freeze_Type).
2085 Next_Entity (E);
2086 end loop;
2087 end Freeze_All;
2089 -----------------------
2090 -- Freeze_And_Append --
2091 -----------------------
2093 procedure Freeze_And_Append
2094 (Ent : Entity_Id;
2095 N : Node_Id;
2096 Result : in out List_Id)
2098 L : constant List_Id := Freeze_Entity (Ent, N);
2099 begin
2100 if Is_Non_Empty_List (L) then
2101 if Result = No_List then
2102 Result := L;
2103 else
2104 Append_List (L, Result);
2105 end if;
2106 end if;
2107 end Freeze_And_Append;
2109 -------------------
2110 -- Freeze_Before --
2111 -------------------
2113 procedure Freeze_Before
2114 (N : Node_Id;
2115 T : Entity_Id;
2116 Do_Freeze_Profile : Boolean := True)
2118 -- Freeze T, then insert the generated Freeze nodes before the node N.
2119 -- Flag Freeze_Profile is used when T is an overloadable entity, and
2120 -- indicates whether its profile should be frozen at the same time.
2122 Freeze_Nodes : constant List_Id :=
2123 Freeze_Entity (T, N, Do_Freeze_Profile);
2124 Pack : constant Entity_Id := Scope (T);
2126 begin
2127 if Ekind (T) = E_Function then
2128 Check_Expression_Function (N, T);
2129 end if;
2131 if Is_Non_Empty_List (Freeze_Nodes) then
2133 -- If the entity is a type declared in an inner package, it may be
2134 -- frozen by an outer declaration before the package itself is
2135 -- frozen. Install the package scope to analyze the freeze nodes,
2136 -- which may include generated subprograms such as predicate
2137 -- functions, etc.
2139 if Is_Type (T) and then From_Nested_Package (T) then
2140 Push_Scope (Pack);
2141 Install_Visible_Declarations (Pack);
2142 Install_Private_Declarations (Pack);
2143 Insert_Actions (N, Freeze_Nodes);
2144 End_Package_Scope (Pack);
2146 else
2147 Insert_Actions (N, Freeze_Nodes);
2148 end if;
2149 end if;
2150 end Freeze_Before;
2152 -------------------
2153 -- Freeze_Entity --
2154 -------------------
2156 -- WARNING: This routine manages Ghost regions. Return statements must be
2157 -- replaced by gotos which jump to the end of the routine and restore the
2158 -- Ghost mode.
2160 function Freeze_Entity
2161 (E : Entity_Id;
2162 N : Node_Id;
2163 Do_Freeze_Profile : Boolean := True) return List_Id
2165 Loc : constant Source_Ptr := Sloc (N);
2166 Atype : Entity_Id;
2167 Comp : Entity_Id;
2168 F_Node : Node_Id;
2169 Formal : Entity_Id;
2170 Indx : Node_Id;
2172 Has_Default_Initialization : Boolean := False;
2173 -- This flag gets set to true for a variable with default initialization
2175 Result : List_Id := No_List;
2176 -- List of freezing actions, left at No_List if none
2178 Test_E : Entity_Id := E;
2179 -- This could use a comment ???
2181 procedure Add_To_Result (N : Node_Id);
2182 -- N is a freezing action to be appended to the Result
2184 function After_Last_Declaration return Boolean;
2185 -- If Loc is a freeze_entity that appears after the last declaration
2186 -- in the scope, inhibit error messages on late completion.
2188 procedure Check_Current_Instance (Comp_Decl : Node_Id);
2189 -- Check that an Access or Unchecked_Access attribute with a prefix
2190 -- which is the current instance type can only be applied when the type
2191 -- is limited.
2193 procedure Check_Suspicious_Convention (Rec_Type : Entity_Id);
2194 -- Give a warning for pragma Convention with language C or C++ applied
2195 -- to a discriminated record type. This is suppressed for the unchecked
2196 -- union case, since the whole point in this case is interface C. We
2197 -- also do not generate this within instantiations, since we will have
2198 -- generated a message on the template.
2200 procedure Check_Suspicious_Modulus (Utype : Entity_Id);
2201 -- Give warning for modulus of 8, 16, 32, or 64 given as an explicit
2202 -- integer literal without an explicit corresponding size clause. The
2203 -- caller has checked that Utype is a modular integer type.
2205 procedure Freeze_Array_Type (Arr : Entity_Id);
2206 -- Freeze array type, including freezing index and component types
2208 procedure Freeze_Object_Declaration (E : Entity_Id);
2209 -- Perform checks and generate freeze node if needed for a constant or
2210 -- variable declared by an object declaration.
2212 function Freeze_Generic_Entities (Pack : Entity_Id) return List_Id;
2213 -- Create Freeze_Generic_Entity nodes for types declared in a generic
2214 -- package. Recurse on inner generic packages.
2216 function Freeze_Profile (E : Entity_Id) return Boolean;
2217 -- Freeze formals and return type of subprogram. If some type in the
2218 -- profile is incomplete and we are in an instance, freezing of the
2219 -- entity will take place elsewhere, and the function returns False.
2221 procedure Freeze_Record_Type (Rec : Entity_Id);
2222 -- Freeze record type, including freezing component types, and freezing
2223 -- primitive operations if this is a tagged type.
2225 function Has_Boolean_Aspect_Import (E : Entity_Id) return Boolean;
2226 -- Determine whether an arbitrary entity is subject to Boolean aspect
2227 -- Import and its value is specified as True.
2229 procedure Inherit_Freeze_Node
2230 (Fnod : Node_Id;
2231 Typ : Entity_Id);
2232 -- Set type Typ's freeze node to refer to Fnode. This routine ensures
2233 -- that any attributes attached to Typ's original node are preserved.
2235 procedure Wrap_Imported_Subprogram (E : Entity_Id);
2236 -- If E is an entity for an imported subprogram with pre/post-conditions
2237 -- then this procedure will create a wrapper to ensure that proper run-
2238 -- time checking of the pre/postconditions. See body for details.
2240 -------------------
2241 -- Add_To_Result --
2242 -------------------
2244 procedure Add_To_Result (N : Node_Id) is
2245 begin
2246 if No (Result) then
2247 Result := New_List (N);
2248 else
2249 Append (N, Result);
2250 end if;
2251 end Add_To_Result;
2253 ----------------------------
2254 -- After_Last_Declaration --
2255 ----------------------------
2257 function After_Last_Declaration return Boolean is
2258 Spec : constant Node_Id := Parent (Current_Scope);
2260 begin
2261 if Nkind (Spec) = N_Package_Specification then
2262 if Present (Private_Declarations (Spec)) then
2263 return Loc >= Sloc (Last (Private_Declarations (Spec)));
2264 elsif Present (Visible_Declarations (Spec)) then
2265 return Loc >= Sloc (Last (Visible_Declarations (Spec)));
2266 else
2267 return False;
2268 end if;
2270 else
2271 return False;
2272 end if;
2273 end After_Last_Declaration;
2275 ----------------------------
2276 -- Check_Current_Instance --
2277 ----------------------------
2279 procedure Check_Current_Instance (Comp_Decl : Node_Id) is
2281 function Is_Aliased_View_Of_Type (Typ : Entity_Id) return Boolean;
2282 -- Determine whether Typ is compatible with the rules for aliased
2283 -- views of types as defined in RM 3.10 in the various dialects.
2285 function Process (N : Node_Id) return Traverse_Result;
2286 -- Process routine to apply check to given node
2288 -----------------------------
2289 -- Is_Aliased_View_Of_Type --
2290 -----------------------------
2292 function Is_Aliased_View_Of_Type (Typ : Entity_Id) return Boolean is
2293 Typ_Decl : constant Node_Id := Parent (Typ);
2295 begin
2296 -- Common case
2298 if Nkind (Typ_Decl) = N_Full_Type_Declaration
2299 and then Limited_Present (Type_Definition (Typ_Decl))
2300 then
2301 return True;
2303 -- The following paragraphs describe what a legal aliased view of
2304 -- a type is in the various dialects of Ada.
2306 -- Ada 95
2308 -- The current instance of a limited type, and a formal parameter
2309 -- or generic formal object of a tagged type.
2311 -- Ada 95 limited type
2312 -- * Type with reserved word "limited"
2313 -- * A protected or task type
2314 -- * A composite type with limited component
2316 elsif Ada_Version <= Ada_95 then
2317 return Is_Limited_Type (Typ);
2319 -- Ada 2005
2321 -- The current instance of a limited tagged type, a protected
2322 -- type, a task type, or a type that has the reserved word
2323 -- "limited" in its full definition ... a formal parameter or
2324 -- generic formal object of a tagged type.
2326 -- Ada 2005 limited type
2327 -- * Type with reserved word "limited", "synchronized", "task"
2328 -- or "protected"
2329 -- * A composite type with limited component
2330 -- * A derived type whose parent is a non-interface limited type
2332 elsif Ada_Version = Ada_2005 then
2333 return
2334 (Is_Limited_Type (Typ) and then Is_Tagged_Type (Typ))
2335 or else
2336 (Is_Derived_Type (Typ)
2337 and then not Is_Interface (Etype (Typ))
2338 and then Is_Limited_Type (Etype (Typ)));
2340 -- Ada 2012 and beyond
2342 -- The current instance of an immutably limited type ... a formal
2343 -- parameter or generic formal object of a tagged type.
2345 -- Ada 2012 limited type
2346 -- * Type with reserved word "limited", "synchronized", "task"
2347 -- or "protected"
2348 -- * A composite type with limited component
2349 -- * A derived type whose parent is a non-interface limited type
2350 -- * An incomplete view
2352 -- Ada 2012 immutably limited type
2353 -- * Explicitly limited record type
2354 -- * Record extension with "limited" present
2355 -- * Non-formal limited private type that is either tagged
2356 -- or has at least one access discriminant with a default
2357 -- expression
2358 -- * Task type, protected type or synchronized interface
2359 -- * Type derived from immutably limited type
2361 else
2362 return
2363 Is_Immutably_Limited_Type (Typ)
2364 or else Is_Incomplete_Type (Typ);
2365 end if;
2366 end Is_Aliased_View_Of_Type;
2368 -------------
2369 -- Process --
2370 -------------
2372 function Process (N : Node_Id) return Traverse_Result is
2373 begin
2374 case Nkind (N) is
2375 when N_Attribute_Reference =>
2376 if Nam_In (Attribute_Name (N), Name_Access,
2377 Name_Unchecked_Access)
2378 and then Is_Entity_Name (Prefix (N))
2379 and then Is_Type (Entity (Prefix (N)))
2380 and then Entity (Prefix (N)) = E
2381 then
2382 if Ada_Version < Ada_2012 then
2383 Error_Msg_N
2384 ("current instance must be a limited type",
2385 Prefix (N));
2386 else
2387 Error_Msg_N
2388 ("current instance must be an immutably limited "
2389 & "type (RM-2012, 7.5 (8.1/3))", Prefix (N));
2390 end if;
2392 return Abandon;
2394 else
2395 return OK;
2396 end if;
2398 when others =>
2399 return OK;
2400 end case;
2401 end Process;
2403 procedure Traverse is new Traverse_Proc (Process);
2405 -- Local variables
2407 Rec_Type : constant Entity_Id :=
2408 Scope (Defining_Identifier (Comp_Decl));
2410 -- Start of processing for Check_Current_Instance
2412 begin
2413 if not Is_Aliased_View_Of_Type (Rec_Type) then
2414 Traverse (Comp_Decl);
2415 end if;
2416 end Check_Current_Instance;
2418 ---------------------------------
2419 -- Check_Suspicious_Convention --
2420 ---------------------------------
2422 procedure Check_Suspicious_Convention (Rec_Type : Entity_Id) is
2423 begin
2424 if Has_Discriminants (Rec_Type)
2425 and then Is_Base_Type (Rec_Type)
2426 and then not Is_Unchecked_Union (Rec_Type)
2427 and then (Convention (Rec_Type) = Convention_C
2428 or else
2429 Convention (Rec_Type) = Convention_CPP)
2430 and then Comes_From_Source (Rec_Type)
2431 and then not In_Instance
2432 and then not Has_Warnings_Off (Rec_Type)
2433 then
2434 declare
2435 Cprag : constant Node_Id :=
2436 Get_Rep_Pragma (Rec_Type, Name_Convention);
2437 A2 : Node_Id;
2439 begin
2440 if Present (Cprag) then
2441 A2 := Next (First (Pragma_Argument_Associations (Cprag)));
2443 if Convention (Rec_Type) = Convention_C then
2444 Error_Msg_N
2445 ("?x?discriminated record has no direct equivalent in "
2446 & "C", A2);
2447 else
2448 Error_Msg_N
2449 ("?x?discriminated record has no direct equivalent in "
2450 & "C++", A2);
2451 end if;
2453 Error_Msg_NE
2454 ("\?x?use of convention for type& is dubious",
2455 A2, Rec_Type);
2456 end if;
2457 end;
2458 end if;
2459 end Check_Suspicious_Convention;
2461 ------------------------------
2462 -- Check_Suspicious_Modulus --
2463 ------------------------------
2465 procedure Check_Suspicious_Modulus (Utype : Entity_Id) is
2466 Decl : constant Node_Id := Declaration_Node (Underlying_Type (Utype));
2468 begin
2469 if not Warn_On_Suspicious_Modulus_Value then
2470 return;
2471 end if;
2473 if Nkind (Decl) = N_Full_Type_Declaration then
2474 declare
2475 Tdef : constant Node_Id := Type_Definition (Decl);
2477 begin
2478 if Nkind (Tdef) = N_Modular_Type_Definition then
2479 declare
2480 Modulus : constant Node_Id :=
2481 Original_Node (Expression (Tdef));
2483 begin
2484 if Nkind (Modulus) = N_Integer_Literal then
2485 declare
2486 Modv : constant Uint := Intval (Modulus);
2487 Sizv : constant Uint := RM_Size (Utype);
2489 begin
2490 -- First case, modulus and size are the same. This
2491 -- happens if you have something like mod 32, with
2492 -- an explicit size of 32, this is for sure a case
2493 -- where the warning is given, since it is seems
2494 -- very unlikely that someone would want e.g. a
2495 -- five bit type stored in 32 bits. It is much
2496 -- more likely they wanted a 32-bit type.
2498 if Modv = Sizv then
2499 null;
2501 -- Second case, the modulus is 32 or 64 and no
2502 -- size clause is present. This is a less clear
2503 -- case for giving the warning, but in the case
2504 -- of 32/64 (5-bit or 6-bit types) these seem rare
2505 -- enough that it is a likely error (and in any
2506 -- case using 2**5 or 2**6 in these cases seems
2507 -- clearer. We don't include 8 or 16 here, simply
2508 -- because in practice 3-bit and 4-bit types are
2509 -- more common and too many false positives if
2510 -- we warn in these cases.
2512 elsif not Has_Size_Clause (Utype)
2513 and then (Modv = Uint_32 or else Modv = Uint_64)
2514 then
2515 null;
2517 -- No warning needed
2519 else
2520 return;
2521 end if;
2523 -- If we fall through, give warning
2525 Error_Msg_Uint_1 := Modv;
2526 Error_Msg_N
2527 ("?M?2 '*'*^' may have been intended here",
2528 Modulus);
2529 end;
2530 end if;
2531 end;
2532 end if;
2533 end;
2534 end if;
2535 end Check_Suspicious_Modulus;
2537 -----------------------
2538 -- Freeze_Array_Type --
2539 -----------------------
2541 procedure Freeze_Array_Type (Arr : Entity_Id) is
2542 FS : constant Entity_Id := First_Subtype (Arr);
2543 Ctyp : constant Entity_Id := Component_Type (Arr);
2544 Clause : Entity_Id;
2546 Non_Standard_Enum : Boolean := False;
2547 -- Set true if any of the index types is an enumeration type with a
2548 -- non-standard representation.
2550 begin
2551 Freeze_And_Append (Ctyp, N, Result);
2553 Indx := First_Index (Arr);
2554 while Present (Indx) loop
2555 Freeze_And_Append (Etype (Indx), N, Result);
2557 if Is_Enumeration_Type (Etype (Indx))
2558 and then Has_Non_Standard_Rep (Etype (Indx))
2559 then
2560 Non_Standard_Enum := True;
2561 end if;
2563 Next_Index (Indx);
2564 end loop;
2566 -- Processing that is done only for base types
2568 if Ekind (Arr) = E_Array_Type then
2570 -- Deal with default setting of reverse storage order
2572 Set_SSO_From_Default (Arr);
2574 -- Propagate flags for component type
2576 if Is_Controlled_Active (Component_Type (Arr))
2577 or else Has_Controlled_Component (Ctyp)
2578 then
2579 Set_Has_Controlled_Component (Arr);
2580 end if;
2582 if Has_Unchecked_Union (Component_Type (Arr)) then
2583 Set_Has_Unchecked_Union (Arr);
2584 end if;
2586 -- The array type requires its own invariant procedure in order to
2587 -- verify the component invariant over all elements. In GNATprove
2588 -- mode, the component invariants are checked by other means. They
2589 -- should not be added to the array type invariant procedure, so
2590 -- that the procedure can be used to check the array type
2591 -- invariants if any.
2593 if Has_Invariants (Component_Type (Arr))
2594 and then not GNATprove_Mode
2595 then
2596 Set_Has_Own_Invariants (Arr);
2598 -- The array type is an implementation base type. Propagate the
2599 -- same property to the first subtype.
2601 if Is_Itype (Arr) then
2602 Set_Has_Own_Invariants (First_Subtype (Arr));
2603 end if;
2604 end if;
2606 -- Warn for pragma Pack overriding foreign convention
2608 if Has_Foreign_Convention (Ctyp)
2609 and then Has_Pragma_Pack (Arr)
2610 then
2611 declare
2612 CN : constant Name_Id :=
2613 Get_Convention_Name (Convention (Ctyp));
2614 PP : constant Node_Id :=
2615 Get_Pragma (First_Subtype (Arr), Pragma_Pack);
2616 begin
2617 if Present (PP) then
2618 Error_Msg_Name_1 := CN;
2619 Error_Msg_Sloc := Sloc (Arr);
2620 Error_Msg_N
2621 ("pragma Pack affects convention % components #??", PP);
2622 Error_Msg_Name_1 := CN;
2623 Error_Msg_N
2624 ("\array components may not have % compatible "
2625 & "representation??", PP);
2626 end if;
2627 end;
2628 end if;
2630 -- If packing was requested or if the component size was
2631 -- set explicitly, then see if bit packing is required. This
2632 -- processing is only done for base types, since all of the
2633 -- representation aspects involved are type-related.
2635 -- This is not just an optimization, if we start processing the
2636 -- subtypes, they interfere with the settings on the base type
2637 -- (this is because Is_Packed has a slightly different meaning
2638 -- before and after freezing).
2640 declare
2641 Csiz : Uint;
2642 Esiz : Uint;
2644 begin
2645 if (Is_Packed (Arr) or else Has_Pragma_Pack (Arr))
2646 and then Known_Static_RM_Size (Ctyp)
2647 and then not Has_Component_Size_Clause (Arr)
2648 then
2649 Csiz := UI_Max (RM_Size (Ctyp), 1);
2651 elsif Known_Component_Size (Arr) then
2652 Csiz := Component_Size (Arr);
2654 elsif not Known_Static_Esize (Ctyp) then
2655 Csiz := Uint_0;
2657 else
2658 Esiz := Esize (Ctyp);
2660 -- We can set the component size if it is less than 16,
2661 -- rounding it up to the next storage unit size.
2663 if Esiz <= 8 then
2664 Csiz := Uint_8;
2665 elsif Esiz <= 16 then
2666 Csiz := Uint_16;
2667 else
2668 Csiz := Uint_0;
2669 end if;
2671 -- Set component size up to match alignment if it would
2672 -- otherwise be less than the alignment. This deals with
2673 -- cases of types whose alignment exceeds their size (the
2674 -- padded type cases).
2676 if Csiz /= 0 then
2677 declare
2678 A : constant Uint := Alignment_In_Bits (Ctyp);
2679 begin
2680 if Csiz < A then
2681 Csiz := A;
2682 end if;
2683 end;
2684 end if;
2685 end if;
2687 -- Case of component size that may result in bit packing
2689 if 1 <= Csiz and then Csiz <= 64 then
2690 declare
2691 Ent : constant Entity_Id :=
2692 First_Subtype (Arr);
2693 Pack_Pragma : constant Node_Id :=
2694 Get_Rep_Pragma (Ent, Name_Pack);
2695 Comp_Size_C : constant Node_Id :=
2696 Get_Attribute_Definition_Clause
2697 (Ent, Attribute_Component_Size);
2699 begin
2700 -- Warn if we have pack and component size so that the
2701 -- pack is ignored.
2703 -- Note: here we must check for the presence of a
2704 -- component size before checking for a Pack pragma to
2705 -- deal with the case where the array type is a derived
2706 -- type whose parent is currently private.
2708 if Present (Comp_Size_C)
2709 and then Has_Pragma_Pack (Ent)
2710 and then Warn_On_Redundant_Constructs
2711 then
2712 Error_Msg_Sloc := Sloc (Comp_Size_C);
2713 Error_Msg_NE
2714 ("?r?pragma Pack for& ignored!", Pack_Pragma, Ent);
2715 Error_Msg_N
2716 ("\?r?explicit component size given#!", Pack_Pragma);
2717 Set_Is_Packed (Base_Type (Ent), False);
2718 Set_Is_Bit_Packed_Array (Base_Type (Ent), False);
2719 end if;
2721 -- Set component size if not already set by a component
2722 -- size clause.
2724 if not Present (Comp_Size_C) then
2725 Set_Component_Size (Arr, Csiz);
2726 end if;
2728 -- Check for base type of 8, 16, 32 bits, where an
2729 -- unsigned subtype has a length one less than the
2730 -- base type (e.g. Natural subtype of Integer).
2732 -- In such cases, if a component size was not set
2733 -- explicitly, then generate a warning.
2735 if Has_Pragma_Pack (Arr)
2736 and then not Present (Comp_Size_C)
2737 and then (Csiz = 7 or else Csiz = 15 or else Csiz = 31)
2738 and then Esize (Base_Type (Ctyp)) = Csiz + 1
2739 then
2740 Error_Msg_Uint_1 := Csiz;
2742 if Present (Pack_Pragma) then
2743 Error_Msg_N
2744 ("??pragma Pack causes component size to be ^!",
2745 Pack_Pragma);
2746 Error_Msg_N
2747 ("\??use Component_Size to set desired value!",
2748 Pack_Pragma);
2749 end if;
2750 end if;
2752 -- Bit packing is never needed for 8, 16, 32, 64
2754 if Addressable (Csiz) then
2756 -- If the Esize of the component is known and equal to
2757 -- the component size then even packing is not needed.
2759 if Known_Static_Esize (Component_Type (Arr))
2760 and then Esize (Component_Type (Arr)) = Csiz
2761 then
2762 -- Here the array was requested to be packed, but
2763 -- the packing request had no effect whatsoever,
2764 -- so flag Is_Packed is reset.
2766 -- Note: semantically this means that we lose track
2767 -- of the fact that a derived type inherited pragma
2768 -- Pack that was non-effective, but that is fine.
2770 -- We regard a Pack pragma as a request to set a
2771 -- representation characteristic, and this request
2772 -- may be ignored.
2774 Set_Is_Packed (Base_Type (Arr), False);
2775 Set_Has_Non_Standard_Rep (Base_Type (Arr), False);
2776 else
2777 Set_Is_Packed (Base_Type (Arr), True);
2778 Set_Has_Non_Standard_Rep (Base_Type (Arr), True);
2779 end if;
2781 Set_Is_Bit_Packed_Array (Base_Type (Arr), False);
2783 -- Bit packing is not needed for multiples of the storage
2784 -- unit if the type is composite because the back end can
2785 -- byte pack composite types.
2787 elsif Csiz mod System_Storage_Unit = 0
2788 and then Is_Composite_Type (Ctyp)
2789 then
2791 Set_Is_Packed (Base_Type (Arr), True);
2792 Set_Has_Non_Standard_Rep (Base_Type (Arr), True);
2793 Set_Is_Bit_Packed_Array (Base_Type (Arr), False);
2795 -- In all other cases, bit packing is needed
2797 else
2798 Set_Is_Packed (Base_Type (Arr), True);
2799 Set_Has_Non_Standard_Rep (Base_Type (Arr), True);
2800 Set_Is_Bit_Packed_Array (Base_Type (Arr), True);
2801 end if;
2802 end;
2803 end if;
2804 end;
2806 -- Check for Aliased or Atomic_Components/Atomic/VFA with
2807 -- unsuitable packing or explicit component size clause given.
2809 if (Has_Aliased_Components (Arr)
2810 or else Has_Atomic_Components (Arr)
2811 or else Is_Atomic_Or_VFA (Ctyp))
2812 and then
2813 (Has_Component_Size_Clause (Arr) or else Is_Packed (Arr))
2814 then
2815 Alias_Atomic_Check : declare
2817 procedure Complain_CS (T : String);
2818 -- Outputs error messages for incorrect CS clause or pragma
2819 -- Pack for aliased or atomic/VFA components (T is "aliased"
2820 -- or "atomic/vfa");
2822 -----------------
2823 -- Complain_CS --
2824 -----------------
2826 procedure Complain_CS (T : String) is
2827 begin
2828 if Has_Component_Size_Clause (Arr) then
2829 Clause :=
2830 Get_Attribute_Definition_Clause
2831 (FS, Attribute_Component_Size);
2833 Error_Msg_N
2834 ("incorrect component size for "
2835 & T & " components", Clause);
2836 Error_Msg_Uint_1 := Esize (Ctyp);
2837 Error_Msg_N
2838 ("\only allowed value is^", Clause);
2840 else
2841 Error_Msg_N
2842 ("cannot pack " & T & " components",
2843 Get_Rep_Pragma (FS, Name_Pack));
2844 end if;
2845 end Complain_CS;
2847 -- Start of processing for Alias_Atomic_Check
2849 begin
2850 -- If object size of component type isn't known, we cannot
2851 -- be sure so we defer to the back end.
2853 if not Known_Static_Esize (Ctyp) then
2854 null;
2856 -- Case where component size has no effect. First check for
2857 -- object size of component type multiple of the storage
2858 -- unit size.
2860 elsif Esize (Ctyp) mod System_Storage_Unit = 0
2862 -- OK in both packing case and component size case if RM
2863 -- size is known and static and same as the object size.
2865 and then
2866 ((Known_Static_RM_Size (Ctyp)
2867 and then Esize (Ctyp) = RM_Size (Ctyp))
2869 -- Or if we have an explicit component size clause and
2870 -- the component size and object size are equal.
2872 or else
2873 (Has_Component_Size_Clause (Arr)
2874 and then Component_Size (Arr) = Esize (Ctyp)))
2875 then
2876 null;
2878 elsif Has_Aliased_Components (Arr) then
2879 Complain_CS ("aliased");
2881 elsif Has_Atomic_Components (Arr)
2882 or else Is_Atomic (Ctyp)
2883 then
2884 Complain_CS ("atomic");
2886 elsif Is_Volatile_Full_Access (Ctyp) then
2887 Complain_CS ("volatile full access");
2888 end if;
2889 end Alias_Atomic_Check;
2890 end if;
2892 -- Check for Independent_Components/Independent with unsuitable
2893 -- packing or explicit component size clause given.
2895 if (Has_Independent_Components (Arr) or else Is_Independent (Ctyp))
2896 and then
2897 (Has_Component_Size_Clause (Arr) or else Is_Packed (Arr))
2898 then
2899 begin
2900 -- If object size of component type isn't known, we cannot
2901 -- be sure so we defer to the back end.
2903 if not Known_Static_Esize (Ctyp) then
2904 null;
2906 -- Case where component size has no effect. First check for
2907 -- object size of component type multiple of the storage
2908 -- unit size.
2910 elsif Esize (Ctyp) mod System_Storage_Unit = 0
2912 -- OK in both packing case and component size case if RM
2913 -- size is known and multiple of the storage unit size.
2915 and then
2916 ((Known_Static_RM_Size (Ctyp)
2917 and then RM_Size (Ctyp) mod System_Storage_Unit = 0)
2919 -- Or if we have an explicit component size clause and
2920 -- the component size is larger than the object size.
2922 or else
2923 (Has_Component_Size_Clause (Arr)
2924 and then Component_Size (Arr) >= Esize (Ctyp)))
2925 then
2926 null;
2928 else
2929 if Has_Component_Size_Clause (Arr) then
2930 Clause :=
2931 Get_Attribute_Definition_Clause
2932 (FS, Attribute_Component_Size);
2934 Error_Msg_N
2935 ("incorrect component size for "
2936 & "independent components", Clause);
2937 Error_Msg_Uint_1 := Esize (Ctyp);
2938 Error_Msg_N
2939 ("\minimum allowed is^", Clause);
2941 else
2942 Error_Msg_N
2943 ("cannot pack independent components",
2944 Get_Rep_Pragma (FS, Name_Pack));
2945 end if;
2946 end if;
2947 end;
2948 end if;
2950 -- Warn for case of atomic type
2952 Clause := Get_Rep_Pragma (FS, Name_Atomic);
2954 if Present (Clause)
2955 and then not Addressable (Component_Size (FS))
2956 then
2957 Error_Msg_NE
2958 ("non-atomic components of type& may not be "
2959 & "accessible by separate tasks??", Clause, Arr);
2961 if Has_Component_Size_Clause (Arr) then
2962 Error_Msg_Sloc := Sloc (Get_Attribute_Definition_Clause
2963 (FS, Attribute_Component_Size));
2964 Error_Msg_N ("\because of component size clause#??", Clause);
2966 elsif Has_Pragma_Pack (Arr) then
2967 Error_Msg_Sloc := Sloc (Get_Rep_Pragma (FS, Name_Pack));
2968 Error_Msg_N ("\because of pragma Pack#??", Clause);
2969 end if;
2970 end if;
2972 -- Check for scalar storage order
2974 declare
2975 Dummy : Boolean;
2976 begin
2977 Check_Component_Storage_Order
2978 (Encl_Type => Arr,
2979 Comp => Empty,
2980 ADC => Get_Attribute_Definition_Clause
2981 (First_Subtype (Arr),
2982 Attribute_Scalar_Storage_Order),
2983 Comp_ADC_Present => Dummy);
2984 end;
2986 -- Processing that is done only for subtypes
2988 else
2989 -- Acquire alignment from base type
2991 if Unknown_Alignment (Arr) then
2992 Set_Alignment (Arr, Alignment (Base_Type (Arr)));
2993 Adjust_Esize_Alignment (Arr);
2994 end if;
2995 end if;
2997 -- Specific checks for bit-packed arrays
2999 if Is_Bit_Packed_Array (Arr) then
3001 -- Check number of elements for bit-packed arrays that come from
3002 -- source and have compile time known ranges. The bit-packed
3003 -- arrays circuitry does not support arrays with more than
3004 -- Integer'Last + 1 elements, and when this restriction is
3005 -- violated, causes incorrect data access.
3007 -- For the case where this is not compile time known, a run-time
3008 -- check should be generated???
3010 if Comes_From_Source (Arr) and then Is_Constrained (Arr) then
3011 declare
3012 Elmts : Uint;
3013 Index : Node_Id;
3014 Ilen : Node_Id;
3015 Ityp : Entity_Id;
3017 begin
3018 Elmts := Uint_1;
3019 Index := First_Index (Arr);
3020 while Present (Index) loop
3021 Ityp := Etype (Index);
3023 -- Never generate an error if any index is of a generic
3024 -- type. We will check this in instances.
3026 if Is_Generic_Type (Ityp) then
3027 Elmts := Uint_0;
3028 exit;
3029 end if;
3031 Ilen :=
3032 Make_Attribute_Reference (Loc,
3033 Prefix => New_Occurrence_Of (Ityp, Loc),
3034 Attribute_Name => Name_Range_Length);
3035 Analyze_And_Resolve (Ilen);
3037 -- No attempt is made to check number of elements if not
3038 -- compile time known.
3040 if Nkind (Ilen) /= N_Integer_Literal then
3041 Elmts := Uint_0;
3042 exit;
3043 end if;
3045 Elmts := Elmts * Intval (Ilen);
3046 Next_Index (Index);
3047 end loop;
3049 if Elmts > Intval (High_Bound
3050 (Scalar_Range (Standard_Integer))) + 1
3051 then
3052 Error_Msg_N
3053 ("bit packed array type may not have "
3054 & "more than Integer''Last+1 elements", Arr);
3055 end if;
3056 end;
3057 end if;
3059 -- Check size
3061 if Known_RM_Size (Arr) then
3062 declare
3063 SizC : constant Node_Id := Size_Clause (Arr);
3064 Discard : Boolean;
3066 begin
3067 -- It is not clear if it is possible to have no size clause
3068 -- at this stage, but it is not worth worrying about. Post
3069 -- error on the entity name in the size clause if present,
3070 -- else on the type entity itself.
3072 if Present (SizC) then
3073 Check_Size (Name (SizC), Arr, RM_Size (Arr), Discard);
3074 else
3075 Check_Size (Arr, Arr, RM_Size (Arr), Discard);
3076 end if;
3077 end;
3078 end if;
3079 end if;
3081 -- If any of the index types was an enumeration type with a non-
3082 -- standard rep clause, then we indicate that the array type is
3083 -- always packed (even if it is not bit-packed).
3085 if Non_Standard_Enum then
3086 Set_Has_Non_Standard_Rep (Base_Type (Arr));
3087 Set_Is_Packed (Base_Type (Arr));
3088 end if;
3090 Set_Component_Alignment_If_Not_Set (Arr);
3092 -- If the array is packed and bit-packed or packed to eliminate holes
3093 -- in the non-contiguous enumeration index types, we must create the
3094 -- packed array type to be used to actually implement the type. This
3095 -- is only needed for real array types (not for string literal types,
3096 -- since they are present only for the front end).
3098 if Is_Packed (Arr)
3099 and then (Is_Bit_Packed_Array (Arr) or else Non_Standard_Enum)
3100 and then Ekind (Arr) /= E_String_Literal_Subtype
3101 then
3102 Create_Packed_Array_Impl_Type (Arr);
3103 Freeze_And_Append (Packed_Array_Impl_Type (Arr), N, Result);
3105 -- Make sure that we have the necessary routines to implement the
3106 -- packing, and complain now if not. Note that we only test this
3107 -- for constrained array types.
3109 if Is_Constrained (Arr)
3110 and then Is_Bit_Packed_Array (Arr)
3111 and then Present (Packed_Array_Impl_Type (Arr))
3112 and then Is_Array_Type (Packed_Array_Impl_Type (Arr))
3113 then
3114 declare
3115 CS : constant Uint := Component_Size (Arr);
3116 RE : constant RE_Id := Get_Id (UI_To_Int (CS));
3118 begin
3119 if RE /= RE_Null
3120 and then not RTE_Available (RE)
3121 then
3122 Error_Msg_CRT
3123 ("packing of " & UI_Image (CS) & "-bit components",
3124 First_Subtype (Etype (Arr)));
3126 -- Cancel the packing
3128 Set_Is_Packed (Base_Type (Arr), False);
3129 Set_Is_Bit_Packed_Array (Base_Type (Arr), False);
3130 Set_Packed_Array_Impl_Type (Arr, Empty);
3131 goto Skip_Packed;
3132 end if;
3133 end;
3134 end if;
3136 -- Size information of packed array type is copied to the array
3137 -- type, since this is really the representation. But do not
3138 -- override explicit existing size values. If the ancestor subtype
3139 -- is constrained the Packed_Array_Impl_Type will be inherited
3140 -- from it, but the size may have been provided already, and
3141 -- must not be overridden either.
3143 if not Has_Size_Clause (Arr)
3144 and then
3145 (No (Ancestor_Subtype (Arr))
3146 or else not Has_Size_Clause (Ancestor_Subtype (Arr)))
3147 then
3148 Set_Esize (Arr, Esize (Packed_Array_Impl_Type (Arr)));
3149 Set_RM_Size (Arr, RM_Size (Packed_Array_Impl_Type (Arr)));
3150 end if;
3152 if not Has_Alignment_Clause (Arr) then
3153 Set_Alignment (Arr, Alignment (Packed_Array_Impl_Type (Arr)));
3154 end if;
3155 end if;
3157 <<Skip_Packed>>
3159 -- For non-packed arrays set the alignment of the array to the
3160 -- alignment of the component type if it is unknown. Skip this
3161 -- in atomic/VFA case (atomic/VFA arrays may need larger alignments).
3163 if not Is_Packed (Arr)
3164 and then Unknown_Alignment (Arr)
3165 and then Known_Alignment (Ctyp)
3166 and then Known_Static_Component_Size (Arr)
3167 and then Known_Static_Esize (Ctyp)
3168 and then Esize (Ctyp) = Component_Size (Arr)
3169 and then not Is_Atomic_Or_VFA (Arr)
3170 then
3171 Set_Alignment (Arr, Alignment (Component_Type (Arr)));
3172 end if;
3174 -- A Ghost type cannot have a component of protected or task type
3175 -- (SPARK RM 6.9(19)).
3177 if Is_Ghost_Entity (Arr) and then Is_Concurrent_Type (Ctyp) then
3178 Error_Msg_N
3179 ("ghost array type & cannot have concurrent component type",
3180 Arr);
3181 end if;
3182 end Freeze_Array_Type;
3184 -------------------------------
3185 -- Freeze_Object_Declaration --
3186 -------------------------------
3188 procedure Freeze_Object_Declaration (E : Entity_Id) is
3189 begin
3190 -- Abstract type allowed only for C++ imported variables or constants
3192 -- Note: we inhibit this check for objects that do not come from
3193 -- source because there is at least one case (the expansion of
3194 -- x'Class'Input where x is abstract) where we legitimately
3195 -- generate an abstract object.
3197 if Is_Abstract_Type (Etype (E))
3198 and then Comes_From_Source (Parent (E))
3199 and then not (Is_Imported (E) and then Is_CPP_Class (Etype (E)))
3200 then
3201 Error_Msg_N ("type of object cannot be abstract",
3202 Object_Definition (Parent (E)));
3204 if Is_CPP_Class (Etype (E)) then
3205 Error_Msg_NE
3206 ("\} may need a cpp_constructor",
3207 Object_Definition (Parent (E)), Etype (E));
3209 elsif Present (Expression (Parent (E))) then
3210 Error_Msg_N -- CODEFIX
3211 ("\maybe a class-wide type was meant",
3212 Object_Definition (Parent (E)));
3213 end if;
3214 end if;
3216 -- For object created by object declaration, perform required
3217 -- categorization (preelaborate and pure) checks. Defer these
3218 -- checks to freeze time since pragma Import inhibits default
3219 -- initialization and thus pragma Import affects these checks.
3221 Validate_Object_Declaration (Declaration_Node (E));
3223 -- If there is an address clause, check that it is valid
3224 -- and if need be move initialization to the freeze node.
3226 Check_Address_Clause (E);
3228 -- Similar processing is needed for aspects that may affect
3229 -- object layout, like Alignment, if there is an initialization
3230 -- expression. We don't do this if there is a pragma Linker_Section,
3231 -- because it would prevent the back end from statically initializing
3232 -- the object; we don't want elaboration code in that case.
3234 if Has_Delayed_Aspects (E)
3235 and then Expander_Active
3236 and then Is_Array_Type (Etype (E))
3237 and then Present (Expression (Parent (E)))
3238 and then No (Linker_Section_Pragma (E))
3239 then
3240 declare
3241 Decl : constant Node_Id := Parent (E);
3242 Lhs : constant Node_Id := New_Occurrence_Of (E, Loc);
3244 begin
3246 -- Capture initialization value at point of declaration, and
3247 -- make explicit assignment legal, because object may be a
3248 -- constant.
3250 Remove_Side_Effects (Expression (Decl));
3251 Set_Assignment_OK (Lhs);
3253 -- Move initialization to freeze actions.
3255 Append_Freeze_Action (E,
3256 Make_Assignment_Statement (Loc,
3257 Name => Lhs,
3258 Expression => Expression (Decl)));
3260 Set_No_Initialization (Decl);
3261 -- Set_Is_Frozen (E, False);
3262 end;
3263 end if;
3265 -- Reset Is_True_Constant for non-constant aliased object. We
3266 -- consider that the fact that a non-constant object is aliased may
3267 -- indicate that some funny business is going on, e.g. an aliased
3268 -- object is passed by reference to a procedure which captures the
3269 -- address of the object, which is later used to assign a new value,
3270 -- even though the compiler thinks that it is not modified. Such
3271 -- code is highly dubious, but we choose to make it "work" for
3272 -- non-constant aliased objects.
3274 -- Note that we used to do this for all aliased objects, whether or
3275 -- not constant, but this caused anomalies down the line because we
3276 -- ended up with static objects that were not Is_True_Constant. Not
3277 -- resetting Is_True_Constant for (aliased) constant objects ensures
3278 -- that this anomaly never occurs.
3280 -- However, we don't do that for internal entities. We figure that if
3281 -- we deliberately set Is_True_Constant for an internal entity, e.g.
3282 -- a dispatch table entry, then we mean it.
3284 if Ekind (E) /= E_Constant
3285 and then (Is_Aliased (E) or else Is_Aliased (Etype (E)))
3286 and then not Is_Internal_Name (Chars (E))
3287 then
3288 Set_Is_True_Constant (E, False);
3289 end if;
3291 -- If the object needs any kind of default initialization, an error
3292 -- must be issued if No_Default_Initialization applies. The check
3293 -- doesn't apply to imported objects, which are not ever default
3294 -- initialized, and is why the check is deferred until freezing, at
3295 -- which point we know if Import applies. Deferred constants are also
3296 -- exempted from this test because their completion is explicit, or
3297 -- through an import pragma.
3299 if Ekind (E) = E_Constant and then Present (Full_View (E)) then
3300 null;
3302 elsif Comes_From_Source (E)
3303 and then not Is_Imported (E)
3304 and then not Has_Init_Expression (Declaration_Node (E))
3305 and then
3306 ((Has_Non_Null_Base_Init_Proc (Etype (E))
3307 and then not No_Initialization (Declaration_Node (E))
3308 and then not Initialization_Suppressed (Etype (E)))
3309 or else
3310 (Needs_Simple_Initialization (Etype (E))
3311 and then not Is_Internal (E)))
3312 then
3313 Has_Default_Initialization := True;
3314 Check_Restriction
3315 (No_Default_Initialization, Declaration_Node (E));
3316 end if;
3318 -- Check that a Thread_Local_Storage variable does not have
3319 -- default initialization, and any explicit initialization must
3320 -- either be the null constant or a static constant.
3322 if Has_Pragma_Thread_Local_Storage (E) then
3323 declare
3324 Decl : constant Node_Id := Declaration_Node (E);
3325 begin
3326 if Has_Default_Initialization
3327 or else
3328 (Has_Init_Expression (Decl)
3329 and then
3330 (No (Expression (Decl))
3331 or else not
3332 (Is_OK_Static_Expression (Expression (Decl))
3333 or else Nkind (Expression (Decl)) = N_Null)))
3334 then
3335 Error_Msg_NE
3336 ("Thread_Local_Storage variable& is "
3337 & "improperly initialized", Decl, E);
3338 Error_Msg_NE
3339 ("\only allowed initialization is explicit "
3340 & "NULL or static expression", Decl, E);
3341 end if;
3342 end;
3343 end if;
3345 -- For imported objects, set Is_Public unless there is also an
3346 -- address clause, which means that there is no external symbol
3347 -- needed for the Import (Is_Public may still be set for other
3348 -- unrelated reasons). Note that we delayed this processing
3349 -- till freeze time so that we can be sure not to set the flag
3350 -- if there is an address clause. If there is such a clause,
3351 -- then the only purpose of the Import pragma is to suppress
3352 -- implicit initialization.
3354 if Is_Imported (E) and then No (Address_Clause (E)) then
3355 Set_Is_Public (E);
3356 end if;
3358 -- For source objects that are not Imported and are library
3359 -- level, if no linker section pragma was given inherit the
3360 -- appropriate linker section from the corresponding type.
3362 if Comes_From_Source (E)
3363 and then not Is_Imported (E)
3364 and then Is_Library_Level_Entity (E)
3365 and then No (Linker_Section_Pragma (E))
3366 then
3367 Set_Linker_Section_Pragma
3368 (E, Linker_Section_Pragma (Etype (E)));
3369 end if;
3371 -- For convention C objects of an enumeration type, warn if the
3372 -- size is not integer size and no explicit size given. Skip
3373 -- warning for Boolean, and Character, assume programmer expects
3374 -- 8-bit sizes for these cases.
3376 if (Convention (E) = Convention_C
3377 or else
3378 Convention (E) = Convention_CPP)
3379 and then Is_Enumeration_Type (Etype (E))
3380 and then not Is_Character_Type (Etype (E))
3381 and then not Is_Boolean_Type (Etype (E))
3382 and then Esize (Etype (E)) < Standard_Integer_Size
3383 and then not Has_Size_Clause (E)
3384 then
3385 Error_Msg_Uint_1 := UI_From_Int (Standard_Integer_Size);
3386 Error_Msg_N
3387 ("??convention C enumeration object has size less than ^", E);
3388 Error_Msg_N ("\??use explicit size clause to set size", E);
3389 end if;
3390 end Freeze_Object_Declaration;
3392 -----------------------------
3393 -- Freeze_Generic_Entities --
3394 -----------------------------
3396 function Freeze_Generic_Entities (Pack : Entity_Id) return List_Id is
3397 E : Entity_Id;
3398 F : Node_Id;
3399 Flist : List_Id;
3401 begin
3402 Flist := New_List;
3403 E := First_Entity (Pack);
3404 while Present (E) loop
3405 if Is_Type (E) and then not Is_Generic_Type (E) then
3406 F := Make_Freeze_Generic_Entity (Sloc (Pack));
3407 Set_Entity (F, E);
3408 Append_To (Flist, F);
3410 elsif Ekind (E) = E_Generic_Package then
3411 Append_List_To (Flist, Freeze_Generic_Entities (E));
3412 end if;
3414 Next_Entity (E);
3415 end loop;
3417 return Flist;
3418 end Freeze_Generic_Entities;
3420 --------------------
3421 -- Freeze_Profile --
3422 --------------------
3424 function Freeze_Profile (E : Entity_Id) return Boolean is
3425 F_Type : Entity_Id;
3426 R_Type : Entity_Id;
3427 Warn_Node : Node_Id;
3429 begin
3430 -- Loop through formals
3432 Formal := First_Formal (E);
3433 while Present (Formal) loop
3434 F_Type := Etype (Formal);
3436 -- AI05-0151: incomplete types can appear in a profile. By the
3437 -- time the entity is frozen, the full view must be available,
3438 -- unless it is a limited view.
3440 if Is_Incomplete_Type (F_Type)
3441 and then Present (Full_View (F_Type))
3442 and then not From_Limited_With (F_Type)
3443 then
3444 F_Type := Full_View (F_Type);
3445 Set_Etype (Formal, F_Type);
3446 end if;
3448 if not From_Limited_With (F_Type) then
3449 Freeze_And_Append (F_Type, N, Result);
3450 end if;
3452 if Is_Private_Type (F_Type)
3453 and then Is_Private_Type (Base_Type (F_Type))
3454 and then No (Full_View (Base_Type (F_Type)))
3455 and then not Is_Generic_Type (F_Type)
3456 and then not Is_Derived_Type (F_Type)
3457 then
3458 -- If the type of a formal is incomplete, subprogram is being
3459 -- frozen prematurely. Within an instance (but not within a
3460 -- wrapper package) this is an artifact of our need to regard
3461 -- the end of an instantiation as a freeze point. Otherwise it
3462 -- is a definite error.
3464 if In_Instance then
3465 Set_Is_Frozen (E, False);
3466 Result := No_List;
3467 return False;
3469 elsif not After_Last_Declaration
3470 and then not Freezing_Library_Level_Tagged_Type
3471 then
3472 Error_Msg_Node_1 := F_Type;
3473 Error_Msg
3474 ("type & must be fully defined before this point", Loc);
3475 end if;
3476 end if;
3478 -- Check suspicious parameter for C function. These tests apply
3479 -- only to exported/imported subprograms.
3481 if Warn_On_Export_Import
3482 and then Comes_From_Source (E)
3483 and then (Convention (E) = Convention_C
3484 or else
3485 Convention (E) = Convention_CPP)
3486 and then (Is_Imported (E) or else Is_Exported (E))
3487 and then Convention (E) /= Convention (Formal)
3488 and then not Has_Warnings_Off (E)
3489 and then not Has_Warnings_Off (F_Type)
3490 and then not Has_Warnings_Off (Formal)
3491 then
3492 -- Qualify mention of formals with subprogram name
3494 Error_Msg_Qual_Level := 1;
3496 -- Check suspicious use of fat C pointer
3498 if Is_Access_Type (F_Type)
3499 and then Esize (F_Type) > Ttypes.System_Address_Size
3500 then
3501 Error_Msg_N
3502 ("?x?type of & does not correspond to C pointer!", Formal);
3504 -- Check suspicious return of boolean
3506 elsif Root_Type (F_Type) = Standard_Boolean
3507 and then Convention (F_Type) = Convention_Ada
3508 and then not Has_Warnings_Off (F_Type)
3509 and then not Has_Size_Clause (F_Type)
3510 then
3511 Error_Msg_N
3512 ("& is an 8-bit Ada Boolean?x?", Formal);
3513 Error_Msg_N
3514 ("\use appropriate corresponding type in C "
3515 & "(e.g. char)?x?", Formal);
3517 -- Check suspicious tagged type
3519 elsif (Is_Tagged_Type (F_Type)
3520 or else
3521 (Is_Access_Type (F_Type)
3522 and then Is_Tagged_Type (Designated_Type (F_Type))))
3523 and then Convention (E) = Convention_C
3524 then
3525 Error_Msg_N
3526 ("?x?& involves a tagged type which does not "
3527 & "correspond to any C type!", Formal);
3529 -- Check wrong convention subprogram pointer
3531 elsif Ekind (F_Type) = E_Access_Subprogram_Type
3532 and then not Has_Foreign_Convention (F_Type)
3533 then
3534 Error_Msg_N
3535 ("?x?subprogram pointer & should "
3536 & "have foreign convention!", Formal);
3537 Error_Msg_Sloc := Sloc (F_Type);
3538 Error_Msg_NE
3539 ("\?x?add Convention pragma to declaration of &#",
3540 Formal, F_Type);
3541 end if;
3543 -- Turn off name qualification after message output
3545 Error_Msg_Qual_Level := 0;
3546 end if;
3548 -- Check for unconstrained array in exported foreign convention
3549 -- case.
3551 if Has_Foreign_Convention (E)
3552 and then not Is_Imported (E)
3553 and then Is_Array_Type (F_Type)
3554 and then not Is_Constrained (F_Type)
3555 and then Warn_On_Export_Import
3556 then
3557 Error_Msg_Qual_Level := 1;
3559 -- If this is an inherited operation, place the warning on
3560 -- the derived type declaration, rather than on the original
3561 -- subprogram.
3563 if Nkind (Original_Node (Parent (E))) = N_Full_Type_Declaration
3564 then
3565 Warn_Node := Parent (E);
3567 if Formal = First_Formal (E) then
3568 Error_Msg_NE ("??in inherited operation&", Warn_Node, E);
3569 end if;
3570 else
3571 Warn_Node := Formal;
3572 end if;
3574 Error_Msg_NE ("?x?type of argument& is unconstrained array",
3575 Warn_Node, Formal);
3576 Error_Msg_NE ("?x?foreign caller must pass bounds explicitly",
3577 Warn_Node, Formal);
3578 Error_Msg_Qual_Level := 0;
3579 end if;
3581 if not From_Limited_With (F_Type) then
3582 if Is_Access_Type (F_Type) then
3583 F_Type := Designated_Type (F_Type);
3584 end if;
3586 -- If the formal is an anonymous_access_to_subprogram
3587 -- freeze the subprogram type as well, to prevent
3588 -- scope anomalies in gigi, because there is no other
3589 -- clear point at which it could be frozen.
3591 if Is_Itype (Etype (Formal))
3592 and then Ekind (F_Type) = E_Subprogram_Type
3593 then
3594 Freeze_And_Append (F_Type, N, Result);
3595 end if;
3596 end if;
3598 Next_Formal (Formal);
3599 end loop;
3601 -- Case of function: similar checks on return type
3603 if Ekind (E) = E_Function then
3605 -- Freeze return type
3607 R_Type := Etype (E);
3609 -- AI05-0151: the return type may have been incomplete at the
3610 -- point of declaration. Replace it with the full view, unless the
3611 -- current type is a limited view. In that case the full view is
3612 -- in a different unit, and gigi finds the non-limited view after
3613 -- the other unit is elaborated.
3615 if Ekind (R_Type) = E_Incomplete_Type
3616 and then Present (Full_View (R_Type))
3617 and then not From_Limited_With (R_Type)
3618 then
3619 R_Type := Full_View (R_Type);
3620 Set_Etype (E, R_Type);
3621 end if;
3623 Freeze_And_Append (R_Type, N, Result);
3625 -- Check suspicious return type for C function
3627 if Warn_On_Export_Import
3628 and then (Convention (E) = Convention_C
3629 or else
3630 Convention (E) = Convention_CPP)
3631 and then (Is_Imported (E) or else Is_Exported (E))
3632 then
3633 -- Check suspicious return of fat C pointer
3635 if Is_Access_Type (R_Type)
3636 and then Esize (R_Type) > Ttypes.System_Address_Size
3637 and then not Has_Warnings_Off (E)
3638 and then not Has_Warnings_Off (R_Type)
3639 then
3640 Error_Msg_N
3641 ("?x?return type of& does not correspond to C pointer!",
3644 -- Check suspicious return of boolean
3646 elsif Root_Type (R_Type) = Standard_Boolean
3647 and then Convention (R_Type) = Convention_Ada
3648 and then not Has_Warnings_Off (E)
3649 and then not Has_Warnings_Off (R_Type)
3650 and then not Has_Size_Clause (R_Type)
3651 then
3652 declare
3653 N : constant Node_Id :=
3654 Result_Definition (Declaration_Node (E));
3655 begin
3656 Error_Msg_NE
3657 ("return type of & is an 8-bit Ada Boolean?x?", N, E);
3658 Error_Msg_NE
3659 ("\use appropriate corresponding type in C "
3660 & "(e.g. char)?x?", N, E);
3661 end;
3663 -- Check suspicious return tagged type
3665 elsif (Is_Tagged_Type (R_Type)
3666 or else (Is_Access_Type (R_Type)
3667 and then
3668 Is_Tagged_Type
3669 (Designated_Type (R_Type))))
3670 and then Convention (E) = Convention_C
3671 and then not Has_Warnings_Off (E)
3672 and then not Has_Warnings_Off (R_Type)
3673 then
3674 Error_Msg_N ("?x?return type of & does not "
3675 & "correspond to C type!", E);
3677 -- Check return of wrong convention subprogram pointer
3679 elsif Ekind (R_Type) = E_Access_Subprogram_Type
3680 and then not Has_Foreign_Convention (R_Type)
3681 and then not Has_Warnings_Off (E)
3682 and then not Has_Warnings_Off (R_Type)
3683 then
3684 Error_Msg_N ("?x?& should return a foreign "
3685 & "convention subprogram pointer", E);
3686 Error_Msg_Sloc := Sloc (R_Type);
3687 Error_Msg_NE
3688 ("\?x?add Convention pragma to declaration of& #",
3689 E, R_Type);
3690 end if;
3691 end if;
3693 -- Give warning for suspicious return of a result of an
3694 -- unconstrained array type in a foreign convention function.
3696 if Has_Foreign_Convention (E)
3698 -- We are looking for a return of unconstrained array
3700 and then Is_Array_Type (R_Type)
3701 and then not Is_Constrained (R_Type)
3703 -- Exclude imported routines, the warning does not belong on
3704 -- the import, but rather on the routine definition.
3706 and then not Is_Imported (E)
3708 -- Check that general warning is enabled, and that it is not
3709 -- suppressed for this particular case.
3711 and then Warn_On_Export_Import
3712 and then not Has_Warnings_Off (E)
3713 and then not Has_Warnings_Off (R_Type)
3714 then
3715 Error_Msg_N
3716 ("?x?foreign convention function& should not return "
3717 & "unconstrained array!", E);
3718 end if;
3719 end if;
3721 -- Check suspicious use of Import in pure unit (cases where the RM
3722 -- allows calls to be omitted).
3724 if Is_Imported (E)
3726 -- It might be suspicious if the compilation unit has the Pure
3727 -- aspect/pragma.
3729 and then Has_Pragma_Pure (Cunit_Entity (Current_Sem_Unit))
3731 -- The RM allows omission of calls only in the case of
3732 -- library-level subprograms (see RM-10.2.1(18)).
3734 and then Is_Library_Level_Entity (E)
3736 -- Ignore internally generated entity. This happens in some cases
3737 -- of subprograms in specs, where we generate an implied body.
3739 and then Comes_From_Source (Import_Pragma (E))
3741 -- Assume run-time knows what it is doing
3743 and then not GNAT_Mode
3745 -- Assume explicit Pure_Function means import is pure
3747 and then not Has_Pragma_Pure_Function (E)
3749 -- Don't need warning in relaxed semantics mode
3751 and then not Relaxed_RM_Semantics
3753 -- Assume convention Intrinsic is OK, since this is specialized.
3754 -- This deals with the DEC unit current_exception.ads
3756 and then Convention (E) /= Convention_Intrinsic
3758 -- Assume that ASM interface knows what it is doing. This deals
3759 -- with e.g. unsigned.ads in the AAMP back end.
3761 and then Convention (E) /= Convention_Assembler
3762 then
3763 Error_Msg_N
3764 ("pragma Import in Pure unit??", Import_Pragma (E));
3765 Error_Msg_NE
3766 ("\calls to & may be omitted (RM 10.2.1(18/3))??",
3767 Import_Pragma (E), E);
3768 end if;
3770 return True;
3771 end Freeze_Profile;
3773 ------------------------
3774 -- Freeze_Record_Type --
3775 ------------------------
3777 procedure Freeze_Record_Type (Rec : Entity_Id) is
3778 ADC : Node_Id;
3779 Comp : Entity_Id;
3780 IR : Node_Id;
3781 Prev : Entity_Id;
3783 Junk : Boolean;
3784 pragma Warnings (Off, Junk);
3786 Aliased_Component : Boolean := False;
3787 -- Set True if we find at least one component which is aliased. This
3788 -- is used to prevent Implicit_Packing of the record, since packing
3789 -- cannot modify the size of alignment of an aliased component.
3791 All_Elem_Components : Boolean := True;
3792 -- True if all components are of a type whose underlying type is
3793 -- elementary.
3795 All_Sized_Components : Boolean := True;
3796 -- True if all components have a known RM_Size
3798 All_Storage_Unit_Components : Boolean := True;
3799 -- True if all components have an RM_Size that is a multiple of the
3800 -- storage unit.
3802 Elem_Component_Total_Esize : Uint := Uint_0;
3803 -- Accumulates total Esize values of all elementary components. Used
3804 -- for processing of Implicit_Packing.
3806 Placed_Component : Boolean := False;
3807 -- Set True if we find at least one component with a component
3808 -- clause (used to warn about useless Bit_Order pragmas, and also
3809 -- to detect cases where Implicit_Packing may have an effect).
3811 Rec_Pushed : Boolean := False;
3812 -- Set True if the record type scope Rec has been pushed on the scope
3813 -- stack. Needed for the analysis of delayed aspects specified to the
3814 -- components of Rec.
3816 Sized_Component_Total_RM_Size : Uint := Uint_0;
3817 -- Accumulates total RM_Size values of all sized components. Used
3818 -- for processing of Implicit_Packing.
3820 SSO_ADC : Node_Id;
3821 -- Scalar_Storage_Order attribute definition clause for the record
3823 SSO_ADC_Component : Boolean := False;
3824 -- Set True if we find at least one component whose type has a
3825 -- Scalar_Storage_Order attribute definition clause.
3827 Unplaced_Component : Boolean := False;
3828 -- Set True if we find at least one component with no component
3829 -- clause (used to warn about useless Pack pragmas).
3831 function Check_Allocator (N : Node_Id) return Node_Id;
3832 -- If N is an allocator, possibly wrapped in one or more level of
3833 -- qualified expression(s), return the inner allocator node, else
3834 -- return Empty.
3836 procedure Check_Itype (Typ : Entity_Id);
3837 -- If the component subtype is an access to a constrained subtype of
3838 -- an already frozen type, make the subtype frozen as well. It might
3839 -- otherwise be frozen in the wrong scope, and a freeze node on
3840 -- subtype has no effect. Similarly, if the component subtype is a
3841 -- regular (not protected) access to subprogram, set the anonymous
3842 -- subprogram type to frozen as well, to prevent an out-of-scope
3843 -- freeze node at some eventual point of call. Protected operations
3844 -- are handled elsewhere.
3846 procedure Freeze_Choices_In_Variant_Part (VP : Node_Id);
3847 -- Make sure that all types mentioned in Discrete_Choices of the
3848 -- variants referenceed by the Variant_Part VP are frozen. This is
3849 -- a recursive routine to deal with nested variants.
3851 ---------------------
3852 -- Check_Allocator --
3853 ---------------------
3855 function Check_Allocator (N : Node_Id) return Node_Id is
3856 Inner : Node_Id;
3857 begin
3858 Inner := N;
3859 loop
3860 if Nkind (Inner) = N_Allocator then
3861 return Inner;
3862 elsif Nkind (Inner) = N_Qualified_Expression then
3863 Inner := Expression (Inner);
3864 else
3865 return Empty;
3866 end if;
3867 end loop;
3868 end Check_Allocator;
3870 -----------------
3871 -- Check_Itype --
3872 -----------------
3874 procedure Check_Itype (Typ : Entity_Id) is
3875 Desig : constant Entity_Id := Designated_Type (Typ);
3877 begin
3878 if not Is_Frozen (Desig)
3879 and then Is_Frozen (Base_Type (Desig))
3880 then
3881 Set_Is_Frozen (Desig);
3883 -- In addition, add an Itype_Reference to ensure that the
3884 -- access subtype is elaborated early enough. This cannot be
3885 -- done if the subtype may depend on discriminants.
3887 if Ekind (Comp) = E_Component
3888 and then Is_Itype (Etype (Comp))
3889 and then not Has_Discriminants (Rec)
3890 then
3891 IR := Make_Itype_Reference (Sloc (Comp));
3892 Set_Itype (IR, Desig);
3893 Add_To_Result (IR);
3894 end if;
3896 elsif Ekind (Typ) = E_Anonymous_Access_Subprogram_Type
3897 and then Convention (Desig) /= Convention_Protected
3898 then
3899 Set_Is_Frozen (Desig);
3900 end if;
3901 end Check_Itype;
3903 ------------------------------------
3904 -- Freeze_Choices_In_Variant_Part --
3905 ------------------------------------
3907 procedure Freeze_Choices_In_Variant_Part (VP : Node_Id) is
3908 pragma Assert (Nkind (VP) = N_Variant_Part);
3910 Variant : Node_Id;
3911 Choice : Node_Id;
3912 CL : Node_Id;
3914 begin
3915 -- Loop through variants
3917 Variant := First_Non_Pragma (Variants (VP));
3918 while Present (Variant) loop
3920 -- Loop through choices, checking that all types are frozen
3922 Choice := First_Non_Pragma (Discrete_Choices (Variant));
3923 while Present (Choice) loop
3924 if Nkind (Choice) in N_Has_Etype
3925 and then Present (Etype (Choice))
3926 then
3927 Freeze_And_Append (Etype (Choice), N, Result);
3928 end if;
3930 Next_Non_Pragma (Choice);
3931 end loop;
3933 -- Check for nested variant part to process
3935 CL := Component_List (Variant);
3937 if not Null_Present (CL) then
3938 if Present (Variant_Part (CL)) then
3939 Freeze_Choices_In_Variant_Part (Variant_Part (CL));
3940 end if;
3941 end if;
3943 Next_Non_Pragma (Variant);
3944 end loop;
3945 end Freeze_Choices_In_Variant_Part;
3947 -- Start of processing for Freeze_Record_Type
3949 begin
3950 -- Deal with delayed aspect specifications for components. The
3951 -- analysis of the aspect is required to be delayed to the freeze
3952 -- point, thus we analyze the pragma or attribute definition
3953 -- clause in the tree at this point. We also analyze the aspect
3954 -- specification node at the freeze point when the aspect doesn't
3955 -- correspond to pragma/attribute definition clause.
3957 Comp := First_Entity (Rec);
3958 while Present (Comp) loop
3959 if Ekind (Comp) = E_Component
3960 and then Has_Delayed_Aspects (Comp)
3961 then
3962 if not Rec_Pushed then
3963 Push_Scope (Rec);
3964 Rec_Pushed := True;
3966 -- The visibility to the discriminants must be restored in
3967 -- order to properly analyze the aspects.
3969 if Has_Discriminants (Rec) then
3970 Install_Discriminants (Rec);
3971 end if;
3972 end if;
3974 Analyze_Aspects_At_Freeze_Point (Comp);
3975 end if;
3977 Next_Entity (Comp);
3978 end loop;
3980 -- Pop the scope if Rec scope has been pushed on the scope stack
3981 -- during the delayed aspect analysis process.
3983 if Rec_Pushed then
3984 if Has_Discriminants (Rec) then
3985 Uninstall_Discriminants (Rec);
3986 end if;
3988 Pop_Scope;
3989 end if;
3991 -- Freeze components and embedded subtypes
3993 Comp := First_Entity (Rec);
3994 Prev := Empty;
3995 while Present (Comp) loop
3996 if Is_Aliased (Comp) then
3997 Aliased_Component := True;
3998 end if;
4000 -- Handle the component and discriminant case
4002 if Ekind_In (Comp, E_Component, E_Discriminant) then
4003 declare
4004 CC : constant Node_Id := Component_Clause (Comp);
4006 begin
4007 -- Freezing a record type freezes the type of each of its
4008 -- components. However, if the type of the component is
4009 -- part of this record, we do not want or need a separate
4010 -- Freeze_Node. Note that Is_Itype is wrong because that's
4011 -- also set in private type cases. We also can't check for
4012 -- the Scope being exactly Rec because of private types and
4013 -- record extensions.
4015 if Is_Itype (Etype (Comp))
4016 and then Is_Record_Type (Underlying_Type
4017 (Scope (Etype (Comp))))
4018 then
4019 Undelay_Type (Etype (Comp));
4020 end if;
4022 Freeze_And_Append (Etype (Comp), N, Result);
4024 -- Warn for pragma Pack overriding foreign convention
4026 if Has_Foreign_Convention (Etype (Comp))
4027 and then Has_Pragma_Pack (Rec)
4029 -- Don't warn for aliased components, since override
4030 -- cannot happen in that case.
4032 and then not Is_Aliased (Comp)
4033 then
4034 declare
4035 CN : constant Name_Id :=
4036 Get_Convention_Name (Convention (Etype (Comp)));
4037 PP : constant Node_Id :=
4038 Get_Pragma (Rec, Pragma_Pack);
4039 begin
4040 if Present (PP) then
4041 Error_Msg_Name_1 := CN;
4042 Error_Msg_Sloc := Sloc (Comp);
4043 Error_Msg_N
4044 ("pragma Pack affects convention % component#??",
4045 PP);
4046 Error_Msg_Name_1 := CN;
4047 Error_Msg_NE
4048 ("\component & may not have % compatible "
4049 & "representation??", PP, Comp);
4050 end if;
4051 end;
4052 end if;
4054 -- Check for error of component clause given for variable
4055 -- sized type. We have to delay this test till this point,
4056 -- since the component type has to be frozen for us to know
4057 -- if it is variable length.
4059 if Present (CC) then
4060 Placed_Component := True;
4062 -- We omit this test in a generic context, it will be
4063 -- applied at instantiation time.
4065 if Inside_A_Generic then
4066 null;
4068 -- Also omit this test in CodePeer mode, since we do not
4069 -- have sufficient info on size and rep clauses.
4071 elsif CodePeer_Mode then
4072 null;
4074 -- Omit check if component has a generic type. This can
4075 -- happen in an instantiation within a generic in ASIS
4076 -- mode, where we force freeze actions without full
4077 -- expansion.
4079 elsif Is_Generic_Type (Etype (Comp)) then
4080 null;
4082 -- Do the check
4084 elsif not
4085 Size_Known_At_Compile_Time
4086 (Underlying_Type (Etype (Comp)))
4087 then
4088 Error_Msg_N
4089 ("component clause not allowed for variable " &
4090 "length component", CC);
4091 end if;
4093 else
4094 Unplaced_Component := True;
4095 end if;
4097 -- Case of component requires byte alignment
4099 if Must_Be_On_Byte_Boundary (Etype (Comp)) then
4101 -- Set the enclosing record to also require byte align
4103 Set_Must_Be_On_Byte_Boundary (Rec);
4105 -- Check for component clause that is inconsistent with
4106 -- the required byte boundary alignment.
4108 if Present (CC)
4109 and then Normalized_First_Bit (Comp) mod
4110 System_Storage_Unit /= 0
4111 then
4112 Error_Msg_N
4113 ("component & must be byte aligned",
4114 Component_Name (Component_Clause (Comp)));
4115 end if;
4116 end if;
4117 end;
4118 end if;
4120 -- Gather data for possible Implicit_Packing later. Note that at
4121 -- this stage we might be dealing with a real component, or with
4122 -- an implicit subtype declaration.
4124 if Known_Static_RM_Size (Etype (Comp)) then
4125 Sized_Component_Total_RM_Size :=
4126 Sized_Component_Total_RM_Size + RM_Size (Etype (Comp));
4128 if Present (Underlying_Type (Etype (Comp)))
4129 and then Is_Elementary_Type (Underlying_Type (Etype (Comp)))
4130 then
4131 Elem_Component_Total_Esize :=
4132 Elem_Component_Total_Esize + Esize (Etype (Comp));
4133 else
4134 All_Elem_Components := False;
4136 if RM_Size (Etype (Comp)) mod System_Storage_Unit /= 0 then
4137 All_Storage_Unit_Components := False;
4138 end if;
4139 end if;
4140 else
4141 All_Sized_Components := False;
4142 end if;
4144 -- If the component is an Itype with Delayed_Freeze and is either
4145 -- a record or array subtype and its base type has not yet been
4146 -- frozen, we must remove this from the entity list of this record
4147 -- and put it on the entity list of the scope of its base type.
4148 -- Note that we know that this is not the type of a component
4149 -- since we cleared Has_Delayed_Freeze for it in the previous
4150 -- loop. Thus this must be the Designated_Type of an access type,
4151 -- which is the type of a component.
4153 if Is_Itype (Comp)
4154 and then Is_Type (Scope (Comp))
4155 and then Is_Composite_Type (Comp)
4156 and then Base_Type (Comp) /= Comp
4157 and then Has_Delayed_Freeze (Comp)
4158 and then not Is_Frozen (Base_Type (Comp))
4159 then
4160 declare
4161 Will_Be_Frozen : Boolean := False;
4162 S : Entity_Id;
4164 begin
4165 -- We have a difficult case to handle here. Suppose Rec is
4166 -- subtype being defined in a subprogram that's created as
4167 -- part of the freezing of Rec'Base. In that case, we know
4168 -- that Comp'Base must have already been frozen by the time
4169 -- we get to elaborate this because Gigi doesn't elaborate
4170 -- any bodies until it has elaborated all of the declarative
4171 -- part. But Is_Frozen will not be set at this point because
4172 -- we are processing code in lexical order.
4174 -- We detect this case by going up the Scope chain of Rec
4175 -- and seeing if we have a subprogram scope before reaching
4176 -- the top of the scope chain or that of Comp'Base. If we
4177 -- do, then mark that Comp'Base will actually be frozen. If
4178 -- so, we merely undelay it.
4180 S := Scope (Rec);
4181 while Present (S) loop
4182 if Is_Subprogram (S) then
4183 Will_Be_Frozen := True;
4184 exit;
4185 elsif S = Scope (Base_Type (Comp)) then
4186 exit;
4187 end if;
4189 S := Scope (S);
4190 end loop;
4192 if Will_Be_Frozen then
4193 Undelay_Type (Comp);
4195 else
4196 if Present (Prev) then
4197 Set_Next_Entity (Prev, Next_Entity (Comp));
4198 else
4199 Set_First_Entity (Rec, Next_Entity (Comp));
4200 end if;
4202 -- Insert in entity list of scope of base type (which
4203 -- must be an enclosing scope, because still unfrozen).
4205 Append_Entity (Comp, Scope (Base_Type (Comp)));
4206 end if;
4207 end;
4209 -- If the component is an access type with an allocator as default
4210 -- value, the designated type will be frozen by the corresponding
4211 -- expression in init_proc. In order to place the freeze node for
4212 -- the designated type before that for the current record type,
4213 -- freeze it now.
4215 -- Same process if the component is an array of access types,
4216 -- initialized with an aggregate. If the designated type is
4217 -- private, it cannot contain allocators, and it is premature
4218 -- to freeze the type, so we check for this as well.
4220 elsif Is_Access_Type (Etype (Comp))
4221 and then Present (Parent (Comp))
4222 and then Present (Expression (Parent (Comp)))
4223 then
4224 declare
4225 Alloc : constant Node_Id :=
4226 Check_Allocator (Expression (Parent (Comp)));
4228 begin
4229 if Present (Alloc) then
4231 -- If component is pointer to a class-wide type, freeze
4232 -- the specific type in the expression being allocated.
4233 -- The expression may be a subtype indication, in which
4234 -- case freeze the subtype mark.
4236 if Is_Class_Wide_Type
4237 (Designated_Type (Etype (Comp)))
4238 then
4239 if Is_Entity_Name (Expression (Alloc)) then
4240 Freeze_And_Append
4241 (Entity (Expression (Alloc)), N, Result);
4243 elsif Nkind (Expression (Alloc)) = N_Subtype_Indication
4244 then
4245 Freeze_And_Append
4246 (Entity (Subtype_Mark (Expression (Alloc))),
4247 N, Result);
4248 end if;
4250 elsif Is_Itype (Designated_Type (Etype (Comp))) then
4251 Check_Itype (Etype (Comp));
4253 else
4254 Freeze_And_Append
4255 (Designated_Type (Etype (Comp)), N, Result);
4256 end if;
4257 end if;
4258 end;
4260 elsif Is_Access_Type (Etype (Comp))
4261 and then Is_Itype (Designated_Type (Etype (Comp)))
4262 then
4263 Check_Itype (Etype (Comp));
4265 -- Freeze the designated type when initializing a component with
4266 -- an aggregate in case the aggregate contains allocators.
4268 -- type T is ...;
4269 -- type T_Ptr is access all T;
4270 -- type T_Array is array ... of T_Ptr;
4272 -- type Rec is record
4273 -- Comp : T_Array := (others => ...);
4274 -- end record;
4276 elsif Is_Array_Type (Etype (Comp))
4277 and then Is_Access_Type (Component_Type (Etype (Comp)))
4278 then
4279 declare
4280 Comp_Par : constant Node_Id := Parent (Comp);
4281 Desig_Typ : constant Entity_Id :=
4282 Designated_Type
4283 (Component_Type (Etype (Comp)));
4285 begin
4286 -- The only case when this sort of freezing is not done is
4287 -- when the designated type is class-wide and the root type
4288 -- is the record owning the component. This scenario results
4289 -- in a circularity because the class-wide type requires
4290 -- primitives that have not been created yet as the root
4291 -- type is in the process of being frozen.
4293 -- type Rec is tagged;
4294 -- type Rec_Ptr is access all Rec'Class;
4295 -- type Rec_Array is array ... of Rec_Ptr;
4297 -- type Rec is record
4298 -- Comp : Rec_Array := (others => ...);
4299 -- end record;
4301 if Is_Class_Wide_Type (Desig_Typ)
4302 and then Root_Type (Desig_Typ) = Rec
4303 then
4304 null;
4306 elsif Is_Fully_Defined (Desig_Typ)
4307 and then Present (Comp_Par)
4308 and then Nkind (Comp_Par) = N_Component_Declaration
4309 and then Present (Expression (Comp_Par))
4310 and then Nkind (Expression (Comp_Par)) = N_Aggregate
4311 then
4312 Freeze_And_Append (Desig_Typ, N, Result);
4313 end if;
4314 end;
4315 end if;
4317 Prev := Comp;
4318 Next_Entity (Comp);
4319 end loop;
4321 SSO_ADC :=
4322 Get_Attribute_Definition_Clause
4323 (Rec, Attribute_Scalar_Storage_Order);
4325 -- If the record type has Complex_Representation, then it is treated
4326 -- as a scalar in the back end so the storage order is irrelevant.
4328 if Has_Complex_Representation (Rec) then
4329 if Present (SSO_ADC) then
4330 Error_Msg_N
4331 ("??storage order has no effect with Complex_Representation",
4332 SSO_ADC);
4333 end if;
4335 else
4336 -- Deal with default setting of reverse storage order
4338 Set_SSO_From_Default (Rec);
4340 -- Check consistent attribute setting on component types
4342 declare
4343 Comp_ADC_Present : Boolean;
4344 begin
4345 Comp := First_Component (Rec);
4346 while Present (Comp) loop
4347 Check_Component_Storage_Order
4348 (Encl_Type => Rec,
4349 Comp => Comp,
4350 ADC => SSO_ADC,
4351 Comp_ADC_Present => Comp_ADC_Present);
4352 SSO_ADC_Component := SSO_ADC_Component or Comp_ADC_Present;
4353 Next_Component (Comp);
4354 end loop;
4355 end;
4357 -- Now deal with reverse storage order/bit order issues
4359 if Present (SSO_ADC) then
4361 -- Check compatibility of Scalar_Storage_Order with Bit_Order,
4362 -- if the former is specified.
4364 if Reverse_Bit_Order (Rec) /= Reverse_Storage_Order (Rec) then
4366 -- Note: report error on Rec, not on SSO_ADC, as ADC may
4367 -- apply to some ancestor type.
4369 Error_Msg_Sloc := Sloc (SSO_ADC);
4370 Error_Msg_N
4371 ("scalar storage order for& specified# inconsistent with "
4372 & "bit order", Rec);
4373 end if;
4375 -- Warn if there is a Scalar_Storage_Order attribute definition
4376 -- clause but no component clause, no component that itself has
4377 -- such an attribute definition, and no pragma Pack.
4379 if not (Placed_Component
4380 or else
4381 SSO_ADC_Component
4382 or else
4383 Is_Packed (Rec))
4384 then
4385 Error_Msg_N
4386 ("??scalar storage order specified but no component "
4387 & "clause", SSO_ADC);
4388 end if;
4389 end if;
4390 end if;
4392 -- Deal with Bit_Order aspect
4394 ADC := Get_Attribute_Definition_Clause (Rec, Attribute_Bit_Order);
4396 if Present (ADC) and then Base_Type (Rec) = Rec then
4397 if not (Placed_Component
4398 or else Present (SSO_ADC)
4399 or else Is_Packed (Rec))
4400 then
4401 -- Warn if clause has no effect when no component clause is
4402 -- present, but suppress warning if the Bit_Order is required
4403 -- due to the presence of a Scalar_Storage_Order attribute.
4405 Error_Msg_N
4406 ("??bit order specification has no effect", ADC);
4407 Error_Msg_N
4408 ("\??since no component clauses were specified", ADC);
4410 -- Here is where we do the processing to adjust component clauses
4411 -- for reversed bit order, when not using reverse SSO. If an error
4412 -- has been reported on Rec already (such as SSO incompatible with
4413 -- bit order), don't bother adjusting as this may generate extra
4414 -- noise.
4416 elsif Reverse_Bit_Order (Rec)
4417 and then not Reverse_Storage_Order (Rec)
4418 and then not Error_Posted (Rec)
4419 then
4420 Adjust_Record_For_Reverse_Bit_Order (Rec);
4422 -- Case where we have both an explicit Bit_Order and the same
4423 -- Scalar_Storage_Order: leave record untouched, the back-end
4424 -- will take care of required layout conversions.
4426 else
4427 null;
4429 end if;
4430 end if;
4432 -- Complete error checking on record representation clause (e.g.
4433 -- overlap of components). This is called after adjusting the
4434 -- record for reverse bit order.
4436 declare
4437 RRC : constant Node_Id := Get_Record_Representation_Clause (Rec);
4438 begin
4439 if Present (RRC) then
4440 Check_Record_Representation_Clause (RRC);
4441 end if;
4442 end;
4444 -- Set OK_To_Reorder_Components depending on debug flags
4446 if Is_Base_Type (Rec) and then Convention (Rec) = Convention_Ada then
4447 if (Has_Discriminants (Rec) and then Debug_Flag_Dot_V)
4448 or else
4449 (not Has_Discriminants (Rec) and then Debug_Flag_Dot_R)
4450 then
4451 Set_OK_To_Reorder_Components (Rec);
4452 end if;
4453 end if;
4455 -- Check for useless pragma Pack when all components placed. We only
4456 -- do this check for record types, not subtypes, since a subtype may
4457 -- have all its components placed, and it still makes perfectly good
4458 -- sense to pack other subtypes or the parent type. We do not give
4459 -- this warning if Optimize_Alignment is set to Space, since the
4460 -- pragma Pack does have an effect in this case (it always resets
4461 -- the alignment to one).
4463 if Ekind (Rec) = E_Record_Type
4464 and then Is_Packed (Rec)
4465 and then not Unplaced_Component
4466 and then Optimize_Alignment /= 'S'
4467 then
4468 -- Reset packed status. Probably not necessary, but we do it so
4469 -- that there is no chance of the back end doing something strange
4470 -- with this redundant indication of packing.
4472 Set_Is_Packed (Rec, False);
4474 -- Give warning if redundant constructs warnings on
4476 if Warn_On_Redundant_Constructs then
4477 Error_Msg_N -- CODEFIX
4478 ("??pragma Pack has no effect, no unplaced components",
4479 Get_Rep_Pragma (Rec, Name_Pack));
4480 end if;
4481 end if;
4483 -- If this is the record corresponding to a remote type, freeze the
4484 -- remote type here since that is what we are semantically freezing.
4485 -- This prevents the freeze node for that type in an inner scope.
4487 if Ekind (Rec) = E_Record_Type then
4488 if Present (Corresponding_Remote_Type (Rec)) then
4489 Freeze_And_Append (Corresponding_Remote_Type (Rec), N, Result);
4490 end if;
4492 -- Check for controlled components, unchecked unions, and type
4493 -- invariants.
4495 Comp := First_Component (Rec);
4496 while Present (Comp) loop
4498 -- Do not set Has_Controlled_Component on a class-wide
4499 -- equivalent type. See Make_CW_Equivalent_Type.
4501 if not Is_Class_Wide_Equivalent_Type (Rec)
4502 and then
4503 (Has_Controlled_Component (Etype (Comp))
4504 or else
4505 (Chars (Comp) /= Name_uParent
4506 and then Is_Controlled_Active (Etype (Comp)))
4507 or else
4508 (Is_Protected_Type (Etype (Comp))
4509 and then
4510 Present (Corresponding_Record_Type (Etype (Comp)))
4511 and then
4512 Has_Controlled_Component
4513 (Corresponding_Record_Type (Etype (Comp)))))
4514 then
4515 Set_Has_Controlled_Component (Rec);
4516 end if;
4518 if Has_Unchecked_Union (Etype (Comp)) then
4519 Set_Has_Unchecked_Union (Rec);
4520 end if;
4522 -- The record type requires its own invariant procedure in
4523 -- order to verify the invariant of each individual component.
4524 -- Do not consider internal components such as _parent because
4525 -- parent class-wide invariants are always inherited.
4526 -- In GNATprove mode, the component invariants are checked by
4527 -- other means. They should not be added to the record type
4528 -- invariant procedure, so that the procedure can be used to
4529 -- check the recordy type invariants if any.
4531 if Comes_From_Source (Comp)
4532 and then Has_Invariants (Etype (Comp))
4533 and then not GNATprove_Mode
4534 then
4535 Set_Has_Own_Invariants (Rec);
4536 end if;
4538 -- Scan component declaration for likely misuses of current
4539 -- instance, either in a constraint or a default expression.
4541 if Has_Per_Object_Constraint (Comp) then
4542 Check_Current_Instance (Parent (Comp));
4543 end if;
4545 Next_Component (Comp);
4546 end loop;
4547 end if;
4549 -- Enforce the restriction that access attributes with a current
4550 -- instance prefix can only apply to limited types. This comment
4551 -- is floating here, but does not seem to belong here???
4553 -- Set component alignment if not otherwise already set
4555 Set_Component_Alignment_If_Not_Set (Rec);
4557 -- For first subtypes, check if there are any fixed-point fields with
4558 -- component clauses, where we must check the size. This is not done
4559 -- till the freeze point since for fixed-point types, we do not know
4560 -- the size until the type is frozen. Similar processing applies to
4561 -- bit-packed arrays.
4563 if Is_First_Subtype (Rec) then
4564 Comp := First_Component (Rec);
4565 while Present (Comp) loop
4566 if Present (Component_Clause (Comp))
4567 and then (Is_Fixed_Point_Type (Etype (Comp))
4568 or else Is_Bit_Packed_Array (Etype (Comp)))
4569 then
4570 Check_Size
4571 (Component_Name (Component_Clause (Comp)),
4572 Etype (Comp),
4573 Esize (Comp),
4574 Junk);
4575 end if;
4577 Next_Component (Comp);
4578 end loop;
4579 end if;
4581 -- See if Size is too small as is (and implicit packing might help)
4583 if not Is_Packed (Rec)
4585 -- No implicit packing if even one component is explicitly placed
4587 and then not Placed_Component
4589 -- Or even one component is aliased
4591 and then not Aliased_Component
4593 -- Must have size clause and all sized components
4595 and then Has_Size_Clause (Rec)
4596 and then All_Sized_Components
4598 -- Do not try implicit packing on records with discriminants, too
4599 -- complicated, especially in the variant record case.
4601 and then not Has_Discriminants (Rec)
4603 -- We want to implicitly pack if the specified size of the record
4604 -- is less than the sum of the object sizes (no point in packing
4605 -- if this is not the case), if we can compute it, i.e. if we have
4606 -- only elementary components. Otherwise, we have at least one
4607 -- composite component and we want to implicitly pack only if bit
4608 -- packing is required for it, as we are sure in this case that
4609 -- the back end cannot do the expected layout without packing.
4611 and then
4612 ((All_Elem_Components
4613 and then RM_Size (Rec) < Elem_Component_Total_Esize)
4614 or else
4615 (not All_Elem_Components
4616 and then not All_Storage_Unit_Components))
4618 -- And the total RM size cannot be greater than the specified size
4619 -- since otherwise packing will not get us where we have to be.
4621 and then RM_Size (Rec) >= Sized_Component_Total_RM_Size
4623 -- Never do implicit packing in CodePeer or SPARK modes since
4624 -- we don't do any packing in these modes, since this generates
4625 -- over-complex code that confuses static analysis, and in
4626 -- general, neither CodePeer not GNATprove care about the
4627 -- internal representation of objects.
4629 and then not (CodePeer_Mode or GNATprove_Mode)
4630 then
4631 -- If implicit packing enabled, do it
4633 if Implicit_Packing then
4634 Set_Is_Packed (Rec);
4636 -- Otherwise flag the size clause
4638 else
4639 declare
4640 Sz : constant Node_Id := Size_Clause (Rec);
4641 begin
4642 Error_Msg_NE -- CODEFIX
4643 ("size given for& too small", Sz, Rec);
4644 Error_Msg_N -- CODEFIX
4645 ("\use explicit pragma Pack "
4646 & "or use pragma Implicit_Packing", Sz);
4647 end;
4648 end if;
4649 end if;
4651 -- The following checks are relevant only when SPARK_Mode is on as
4652 -- they are not standard Ada legality rules.
4654 if SPARK_Mode = On then
4656 -- A discriminated type cannot be effectively volatile
4657 -- (SPARK RM 7.1.3(5)).
4659 if Is_Effectively_Volatile (Rec) then
4660 if Has_Discriminants (Rec) then
4661 Error_Msg_N ("discriminated type & cannot be volatile", Rec);
4662 end if;
4664 -- A non-effectively volatile record type cannot contain
4665 -- effectively volatile components (SPARK RM 7.1.3(6)).
4667 else
4668 Comp := First_Component (Rec);
4669 while Present (Comp) loop
4670 if Comes_From_Source (Comp)
4671 and then Is_Effectively_Volatile (Etype (Comp))
4672 then
4673 Error_Msg_Name_1 := Chars (Rec);
4674 Error_Msg_N
4675 ("component & of non-volatile type % cannot be "
4676 & "volatile", Comp);
4677 end if;
4679 Next_Component (Comp);
4680 end loop;
4681 end if;
4683 -- A type which does not yield a synchronized object cannot have
4684 -- a component that yields a synchronized object (SPARK RM 9.5).
4686 if not Yields_Synchronized_Object (Rec) then
4687 Comp := First_Component (Rec);
4688 while Present (Comp) loop
4689 if Comes_From_Source (Comp)
4690 and then Yields_Synchronized_Object (Etype (Comp))
4691 then
4692 Error_Msg_Name_1 := Chars (Rec);
4693 Error_Msg_N
4694 ("component & of non-synchronized type % cannot be "
4695 & "synchronized", Comp);
4696 end if;
4698 Next_Component (Comp);
4699 end loop;
4700 end if;
4702 -- A Ghost type cannot have a component of protected or task type
4703 -- (SPARK RM 6.9(19)).
4705 if Is_Ghost_Entity (Rec) then
4706 Comp := First_Component (Rec);
4707 while Present (Comp) loop
4708 if Comes_From_Source (Comp)
4709 and then Is_Concurrent_Type (Etype (Comp))
4710 then
4711 Error_Msg_Name_1 := Chars (Rec);
4712 Error_Msg_N
4713 ("component & of ghost type % cannot be concurrent",
4714 Comp);
4715 end if;
4717 Next_Component (Comp);
4718 end loop;
4719 end if;
4720 end if;
4722 -- Make sure that if we have an iterator aspect, then we have
4723 -- either Constant_Indexing or Variable_Indexing.
4725 declare
4726 Iterator_Aspect : Node_Id;
4728 begin
4729 Iterator_Aspect := Find_Aspect (Rec, Aspect_Iterator_Element);
4731 if No (Iterator_Aspect) then
4732 Iterator_Aspect := Find_Aspect (Rec, Aspect_Default_Iterator);
4733 end if;
4735 if Present (Iterator_Aspect) then
4736 if Has_Aspect (Rec, Aspect_Constant_Indexing)
4737 or else
4738 Has_Aspect (Rec, Aspect_Variable_Indexing)
4739 then
4740 null;
4741 else
4742 Error_Msg_N
4743 ("Iterator_Element requires indexing aspect",
4744 Iterator_Aspect);
4745 end if;
4746 end if;
4747 end;
4749 -- All done if not a full record definition
4751 if Ekind (Rec) /= E_Record_Type then
4752 return;
4753 end if;
4755 -- Finally we need to check the variant part to make sure that
4756 -- all types within choices are properly frozen as part of the
4757 -- freezing of the record type.
4759 Check_Variant_Part : declare
4760 D : constant Node_Id := Declaration_Node (Rec);
4761 T : Node_Id;
4762 C : Node_Id;
4764 begin
4765 -- Find component list
4767 C := Empty;
4769 if Nkind (D) = N_Full_Type_Declaration then
4770 T := Type_Definition (D);
4772 if Nkind (T) = N_Record_Definition then
4773 C := Component_List (T);
4775 elsif Nkind (T) = N_Derived_Type_Definition
4776 and then Present (Record_Extension_Part (T))
4777 then
4778 C := Component_List (Record_Extension_Part (T));
4779 end if;
4780 end if;
4782 -- Case of variant part present
4784 if Present (C) and then Present (Variant_Part (C)) then
4785 Freeze_Choices_In_Variant_Part (Variant_Part (C));
4786 end if;
4788 -- Note: we used to call Check_Choices here, but it is too early,
4789 -- since predicated subtypes are frozen here, but their freezing
4790 -- actions are in Analyze_Freeze_Entity, which has not been called
4791 -- yet for entities frozen within this procedure, so we moved that
4792 -- call to the Analyze_Freeze_Entity for the record type.
4794 end Check_Variant_Part;
4796 -- Check that all the primitives of an interface type are abstract
4797 -- or null procedures.
4799 if Is_Interface (Rec)
4800 and then not Error_Posted (Parent (Rec))
4801 then
4802 declare
4803 Elmt : Elmt_Id;
4804 Subp : Entity_Id;
4806 begin
4807 Elmt := First_Elmt (Primitive_Operations (Rec));
4808 while Present (Elmt) loop
4809 Subp := Node (Elmt);
4811 if not Is_Abstract_Subprogram (Subp)
4813 -- Avoid reporting the error on inherited primitives
4815 and then Comes_From_Source (Subp)
4816 then
4817 Error_Msg_Name_1 := Chars (Subp);
4819 if Ekind (Subp) = E_Procedure then
4820 if not Null_Present (Parent (Subp)) then
4821 Error_Msg_N
4822 ("interface procedure % must be abstract or null",
4823 Parent (Subp));
4824 end if;
4825 else
4826 Error_Msg_N
4827 ("interface function % must be abstract",
4828 Parent (Subp));
4829 end if;
4830 end if;
4832 Next_Elmt (Elmt);
4833 end loop;
4834 end;
4835 end if;
4837 -- For a derived tagged type, check whether inherited primitives
4838 -- might require a wrapper to handle class-wide conditions.
4840 if Is_Tagged_Type (Rec) and then Is_Derived_Type (Rec) then
4841 Check_Inherited_Conditions (Rec);
4842 end if;
4843 end Freeze_Record_Type;
4845 -------------------------------
4846 -- Has_Boolean_Aspect_Import --
4847 -------------------------------
4849 function Has_Boolean_Aspect_Import (E : Entity_Id) return Boolean is
4850 Decl : constant Node_Id := Declaration_Node (E);
4851 Asp : Node_Id;
4852 Expr : Node_Id;
4854 begin
4855 if Has_Aspects (Decl) then
4856 Asp := First (Aspect_Specifications (Decl));
4857 while Present (Asp) loop
4858 Expr := Expression (Asp);
4860 -- The value of aspect Import is True when the expression is
4861 -- either missing or it is explicitly set to True.
4863 if Get_Aspect_Id (Asp) = Aspect_Import
4864 and then (No (Expr)
4865 or else (Compile_Time_Known_Value (Expr)
4866 and then Is_True (Expr_Value (Expr))))
4867 then
4868 return True;
4869 end if;
4871 Next (Asp);
4872 end loop;
4873 end if;
4875 return False;
4876 end Has_Boolean_Aspect_Import;
4878 -------------------------
4879 -- Inherit_Freeze_Node --
4880 -------------------------
4882 procedure Inherit_Freeze_Node
4883 (Fnod : Node_Id;
4884 Typ : Entity_Id)
4886 Typ_Fnod : constant Node_Id := Freeze_Node (Typ);
4888 begin
4889 Set_Freeze_Node (Typ, Fnod);
4890 Set_Entity (Fnod, Typ);
4892 -- The input type had an existing node. Propagate relevant attributes
4893 -- from the old freeze node to the inherited freeze node.
4895 -- ??? if both freeze nodes have attributes, would they differ?
4897 if Present (Typ_Fnod) then
4899 -- Attribute Access_Types_To_Process
4901 if Present (Access_Types_To_Process (Typ_Fnod))
4902 and then No (Access_Types_To_Process (Fnod))
4903 then
4904 Set_Access_Types_To_Process (Fnod,
4905 Access_Types_To_Process (Typ_Fnod));
4906 end if;
4908 -- Attribute Actions
4910 if Present (Actions (Typ_Fnod)) and then No (Actions (Fnod)) then
4911 Set_Actions (Fnod, Actions (Typ_Fnod));
4912 end if;
4914 -- Attribute First_Subtype_Link
4916 if Present (First_Subtype_Link (Typ_Fnod))
4917 and then No (First_Subtype_Link (Fnod))
4918 then
4919 Set_First_Subtype_Link (Fnod, First_Subtype_Link (Typ_Fnod));
4920 end if;
4922 -- Attribute TSS_Elist
4924 if Present (TSS_Elist (Typ_Fnod))
4925 and then No (TSS_Elist (Fnod))
4926 then
4927 Set_TSS_Elist (Fnod, TSS_Elist (Typ_Fnod));
4928 end if;
4929 end if;
4930 end Inherit_Freeze_Node;
4932 ------------------------------
4933 -- Wrap_Imported_Subprogram --
4934 ------------------------------
4936 -- The issue here is that our normal approach of checking preconditions
4937 -- and postconditions does not work for imported procedures, since we
4938 -- are not generating code for the body. To get around this we create
4939 -- a wrapper, as shown by the following example:
4941 -- procedure K (A : Integer);
4942 -- pragma Import (C, K);
4944 -- The spec is rewritten by removing the effects of pragma Import, but
4945 -- leaving the convention unchanged, as though the source had said:
4947 -- procedure K (A : Integer);
4948 -- pragma Convention (C, K);
4950 -- and we create a body, added to the entity K freeze actions, which
4951 -- looks like:
4953 -- procedure K (A : Integer) is
4954 -- procedure K (A : Integer);
4955 -- pragma Import (C, K);
4956 -- begin
4957 -- K (A);
4958 -- end K;
4960 -- Now the contract applies in the normal way to the outer procedure,
4961 -- and the inner procedure has no contracts, so there is no problem
4962 -- in just calling it to get the original effect.
4964 -- In the case of a function, we create an appropriate return statement
4965 -- for the subprogram body that calls the inner procedure.
4967 procedure Wrap_Imported_Subprogram (E : Entity_Id) is
4968 function Copy_Import_Pragma return Node_Id;
4969 -- Obtain a copy of the Import_Pragma which belongs to subprogram E
4971 ------------------------
4972 -- Copy_Import_Pragma --
4973 ------------------------
4975 function Copy_Import_Pragma return Node_Id is
4977 -- The subprogram should have an import pragma, otherwise it does
4978 -- need a wrapper.
4980 Prag : constant Node_Id := Import_Pragma (E);
4981 pragma Assert (Present (Prag));
4983 -- Save all semantic fields of the pragma
4985 Save_Asp : constant Node_Id := Corresponding_Aspect (Prag);
4986 Save_From : constant Boolean := From_Aspect_Specification (Prag);
4987 Save_Prag : constant Node_Id := Next_Pragma (Prag);
4988 Save_Rep : constant Node_Id := Next_Rep_Item (Prag);
4990 Result : Node_Id;
4992 begin
4993 -- Reset all semantic fields. This avoids a potential infinite
4994 -- loop when the pragma comes from an aspect as the duplication
4995 -- will copy the aspect, then copy the corresponding pragma and
4996 -- so on.
4998 Set_Corresponding_Aspect (Prag, Empty);
4999 Set_From_Aspect_Specification (Prag, False);
5000 Set_Next_Pragma (Prag, Empty);
5001 Set_Next_Rep_Item (Prag, Empty);
5003 Result := Copy_Separate_Tree (Prag);
5005 -- Restore the original semantic fields
5007 Set_Corresponding_Aspect (Prag, Save_Asp);
5008 Set_From_Aspect_Specification (Prag, Save_From);
5009 Set_Next_Pragma (Prag, Save_Prag);
5010 Set_Next_Rep_Item (Prag, Save_Rep);
5012 return Result;
5013 end Copy_Import_Pragma;
5015 -- Local variables
5017 Loc : constant Source_Ptr := Sloc (E);
5018 CE : constant Name_Id := Chars (E);
5019 Bod : Node_Id;
5020 Forml : Entity_Id;
5021 Parms : List_Id;
5022 Prag : Node_Id;
5023 Spec : Node_Id;
5024 Stmt : Node_Id;
5026 -- Start of processing for Wrap_Imported_Subprogram
5028 begin
5029 -- Nothing to do if not imported
5031 if not Is_Imported (E) then
5032 return;
5034 -- Test enabling conditions for wrapping
5036 elsif Is_Subprogram (E)
5037 and then Present (Contract (E))
5038 and then Present (Pre_Post_Conditions (Contract (E)))
5039 and then not GNATprove_Mode
5040 then
5041 -- Here we do the wrap
5043 -- Note on calls to Copy_Separate_Tree. The trees we are copying
5044 -- here are fully analyzed, but we definitely want fully syntactic
5045 -- unanalyzed trees in the body we construct, so that the analysis
5046 -- generates the right visibility, and that is exactly what the
5047 -- calls to Copy_Separate_Tree give us.
5049 Prag := Copy_Import_Pragma;
5051 -- Fix up spec to be not imported any more
5053 Set_Has_Completion (E, False);
5054 Set_Import_Pragma (E, Empty);
5055 Set_Interface_Name (E, Empty);
5056 Set_Is_Imported (E, False);
5058 -- Grab the subprogram declaration and specification
5060 Spec := Declaration_Node (E);
5062 -- Build parameter list that we need
5064 Parms := New_List;
5065 Forml := First_Formal (E);
5066 while Present (Forml) loop
5067 Append_To (Parms, Make_Identifier (Loc, Chars (Forml)));
5068 Next_Formal (Forml);
5069 end loop;
5071 -- Build the call
5073 if Ekind_In (E, E_Function, E_Generic_Function) then
5074 Stmt :=
5075 Make_Simple_Return_Statement (Loc,
5076 Expression =>
5077 Make_Function_Call (Loc,
5078 Name => Make_Identifier (Loc, CE),
5079 Parameter_Associations => Parms));
5081 else
5082 Stmt :=
5083 Make_Procedure_Call_Statement (Loc,
5084 Name => Make_Identifier (Loc, CE),
5085 Parameter_Associations => Parms);
5086 end if;
5088 -- Now build the body
5090 Bod :=
5091 Make_Subprogram_Body (Loc,
5092 Specification =>
5093 Copy_Separate_Tree (Spec),
5094 Declarations => New_List (
5095 Make_Subprogram_Declaration (Loc,
5096 Specification => Copy_Separate_Tree (Spec)),
5097 Prag),
5098 Handled_Statement_Sequence =>
5099 Make_Handled_Sequence_Of_Statements (Loc,
5100 Statements => New_List (Stmt),
5101 End_Label => Make_Identifier (Loc, CE)));
5103 -- Append the body to freeze result
5105 Add_To_Result (Bod);
5106 return;
5108 -- Case of imported subprogram that does not get wrapped
5110 else
5111 -- Set Is_Public. All imported entities need an external symbol
5112 -- created for them since they are always referenced from another
5113 -- object file. Note this used to be set when we set Is_Imported
5114 -- back in Sem_Prag, but now we delay it to this point, since we
5115 -- don't want to set this flag if we wrap an imported subprogram.
5117 Set_Is_Public (E);
5118 end if;
5119 end Wrap_Imported_Subprogram;
5121 -- Local variables
5123 Saved_GM : constant Ghost_Mode_Type := Ghost_Mode;
5124 -- Save the Ghost mode to restore on exit
5126 -- Start of processing for Freeze_Entity
5128 begin
5129 -- The entity being frozen may be subject to pragma Ghost. Set the mode
5130 -- now to ensure that any nodes generated during freezing are properly
5131 -- flagged as Ghost.
5133 Set_Ghost_Mode (E);
5135 -- We are going to test for various reasons why this entity need not be
5136 -- frozen here, but in the case of an Itype that's defined within a
5137 -- record, that test actually applies to the record.
5139 if Is_Itype (E) and then Is_Record_Type (Scope (E)) then
5140 Test_E := Scope (E);
5141 elsif Is_Itype (E) and then Present (Underlying_Type (Scope (E)))
5142 and then Is_Record_Type (Underlying_Type (Scope (E)))
5143 then
5144 Test_E := Underlying_Type (Scope (E));
5145 end if;
5147 -- Do not freeze if already frozen since we only need one freeze node
5149 if Is_Frozen (E) then
5150 Result := No_List;
5151 goto Leave;
5153 elsif Ekind (E) = E_Generic_Package then
5154 Result := Freeze_Generic_Entities (E);
5155 goto Leave;
5157 -- It is improper to freeze an external entity within a generic because
5158 -- its freeze node will appear in a non-valid context. The entity will
5159 -- be frozen in the proper scope after the current generic is analyzed.
5160 -- However, aspects must be analyzed because they may be queried later
5161 -- within the generic itself, and the corresponding pragma or attribute
5162 -- definition has not been analyzed yet.
5164 elsif Inside_A_Generic and then External_Ref_In_Generic (Test_E) then
5165 if Has_Delayed_Aspects (E) then
5166 Analyze_Aspects_At_Freeze_Point (E);
5167 end if;
5169 Result := No_List;
5170 goto Leave;
5172 -- AI05-0213: A formal incomplete type does not freeze the actual. In
5173 -- the instance, the same applies to the subtype renaming the actual.
5175 elsif Is_Private_Type (E)
5176 and then Is_Generic_Actual_Type (E)
5177 and then No (Full_View (Base_Type (E)))
5178 and then Ada_Version >= Ada_2012
5179 then
5180 Result := No_List;
5181 goto Leave;
5183 -- Formal subprograms are never frozen
5185 elsif Is_Formal_Subprogram (E) then
5186 Result := No_List;
5187 goto Leave;
5189 -- Generic types are never frozen as they lack delayed semantic checks
5191 elsif Is_Generic_Type (E) then
5192 Result := No_List;
5193 goto Leave;
5195 -- Do not freeze a global entity within an inner scope created during
5196 -- expansion. A call to subprogram E within some internal procedure
5197 -- (a stream attribute for example) might require freezing E, but the
5198 -- freeze node must appear in the same declarative part as E itself.
5199 -- The two-pass elaboration mechanism in gigi guarantees that E will
5200 -- be frozen before the inner call is elaborated. We exclude constants
5201 -- from this test, because deferred constants may be frozen early, and
5202 -- must be diagnosed (e.g. in the case of a deferred constant being used
5203 -- in a default expression). If the enclosing subprogram comes from
5204 -- source, or is a generic instance, then the freeze point is the one
5205 -- mandated by the language, and we freeze the entity. A subprogram that
5206 -- is a child unit body that acts as a spec does not have a spec that
5207 -- comes from source, but can only come from source.
5209 elsif In_Open_Scopes (Scope (Test_E))
5210 and then Scope (Test_E) /= Current_Scope
5211 and then Ekind (Test_E) /= E_Constant
5212 then
5213 declare
5214 S : Entity_Id;
5216 begin
5217 S := Current_Scope;
5218 while Present (S) loop
5219 if Is_Overloadable (S) then
5220 if Comes_From_Source (S)
5221 or else Is_Generic_Instance (S)
5222 or else Is_Child_Unit (S)
5223 then
5224 exit;
5225 else
5226 Result := No_List;
5227 goto Leave;
5228 end if;
5229 end if;
5231 S := Scope (S);
5232 end loop;
5233 end;
5235 -- Similarly, an inlined instance body may make reference to global
5236 -- entities, but these references cannot be the proper freezing point
5237 -- for them, and in the absence of inlining freezing will take place in
5238 -- their own scope. Normally instance bodies are analyzed after the
5239 -- enclosing compilation, and everything has been frozen at the proper
5240 -- place, but with front-end inlining an instance body is compiled
5241 -- before the end of the enclosing scope, and as a result out-of-order
5242 -- freezing must be prevented.
5244 elsif Front_End_Inlining
5245 and then In_Instance_Body
5246 and then Present (Scope (Test_E))
5247 then
5248 declare
5249 S : Entity_Id;
5251 begin
5252 S := Scope (Test_E);
5253 while Present (S) loop
5254 if Is_Generic_Instance (S) then
5255 exit;
5256 else
5257 S := Scope (S);
5258 end if;
5259 end loop;
5261 if No (S) then
5262 Result := No_List;
5263 goto Leave;
5264 end if;
5265 end;
5266 end if;
5268 -- Add checks to detect proper initialization of scalars that may appear
5269 -- as subprogram parameters.
5271 if Is_Subprogram (E) and then Check_Validity_Of_Parameters then
5272 Apply_Parameter_Validity_Checks (E);
5273 end if;
5275 -- Deal with delayed aspect specifications. The analysis of the aspect
5276 -- is required to be delayed to the freeze point, thus we analyze the
5277 -- pragma or attribute definition clause in the tree at this point. We
5278 -- also analyze the aspect specification node at the freeze point when
5279 -- the aspect doesn't correspond to pragma/attribute definition clause.
5281 if Has_Delayed_Aspects (E) then
5282 Analyze_Aspects_At_Freeze_Point (E);
5283 end if;
5285 -- Here to freeze the entity
5287 Set_Is_Frozen (E);
5289 -- Case of entity being frozen is other than a type
5291 if not Is_Type (E) then
5293 -- If entity is exported or imported and does not have an external
5294 -- name, now is the time to provide the appropriate default name.
5295 -- Skip this if the entity is stubbed, since we don't need a name
5296 -- for any stubbed routine. For the case on intrinsics, if no
5297 -- external name is specified, then calls will be handled in
5298 -- Exp_Intr.Expand_Intrinsic_Call, and no name is needed. If an
5299 -- external name is provided, then Expand_Intrinsic_Call leaves
5300 -- calls in place for expansion by GIGI.
5302 if (Is_Imported (E) or else Is_Exported (E))
5303 and then No (Interface_Name (E))
5304 and then Convention (E) /= Convention_Stubbed
5305 and then Convention (E) /= Convention_Intrinsic
5306 then
5307 Set_Encoded_Interface_Name
5308 (E, Get_Default_External_Name (E));
5310 -- If entity is an atomic object appearing in a declaration and
5311 -- the expression is an aggregate, assign it to a temporary to
5312 -- ensure that the actual assignment is done atomically rather
5313 -- than component-wise (the assignment to the temp may be done
5314 -- component-wise, but that is harmless).
5316 elsif Is_Atomic_Or_VFA (E)
5317 and then Nkind (Parent (E)) = N_Object_Declaration
5318 and then Present (Expression (Parent (E)))
5319 and then Nkind (Expression (Parent (E))) = N_Aggregate
5320 and then Is_Atomic_VFA_Aggregate (Expression (Parent (E)))
5321 then
5322 null;
5323 end if;
5325 -- Subprogram case
5327 if Is_Subprogram (E) then
5329 -- Check for needing to wrap imported subprogram
5331 Wrap_Imported_Subprogram (E);
5333 -- Freeze all parameter types and the return type (RM 13.14(14)).
5334 -- However skip this for internal subprograms. This is also where
5335 -- any extra formal parameters are created since we now know
5336 -- whether the subprogram will use a foreign convention.
5338 -- In Ada 2012, freezing a subprogram does not always freeze the
5339 -- corresponding profile (see AI05-019). An attribute reference
5340 -- is not a freezing point of the profile. Flag Do_Freeze_Profile
5341 -- indicates whether the profile should be frozen now.
5342 -- Other constructs that should not freeze ???
5344 -- This processing doesn't apply to internal entities (see below)
5346 if not Is_Internal (E) and then Do_Freeze_Profile then
5347 if not Freeze_Profile (E) then
5348 goto Leave;
5349 end if;
5350 end if;
5352 -- Must freeze its parent first if it is a derived subprogram
5354 if Present (Alias (E)) then
5355 Freeze_And_Append (Alias (E), N, Result);
5356 end if;
5358 -- We don't freeze internal subprograms, because we don't normally
5359 -- want addition of extra formals or mechanism setting to happen
5360 -- for those. However we do pass through predefined dispatching
5361 -- cases, since extra formals may be needed in some cases, such as
5362 -- for the stream 'Input function (build-in-place formals).
5364 if not Is_Internal (E)
5365 or else Is_Predefined_Dispatching_Operation (E)
5366 then
5367 Freeze_Subprogram (E);
5368 end if;
5370 -- If warning on suspicious contracts then check for the case of
5371 -- a postcondition other than False for a No_Return subprogram.
5373 if No_Return (E)
5374 and then Warn_On_Suspicious_Contract
5375 and then Present (Contract (E))
5376 then
5377 declare
5378 Prag : Node_Id := Pre_Post_Conditions (Contract (E));
5379 Exp : Node_Id;
5381 begin
5382 while Present (Prag) loop
5383 if Nam_In (Pragma_Name_Unmapped (Prag),
5384 Name_Post,
5385 Name_Postcondition,
5386 Name_Refined_Post)
5387 then
5388 Exp :=
5389 Expression
5390 (First (Pragma_Argument_Associations (Prag)));
5392 if Nkind (Exp) /= N_Identifier
5393 or else Chars (Exp) /= Name_False
5394 then
5395 Error_Msg_NE
5396 ("useless postcondition, & is marked "
5397 & "No_Return?T?", Exp, E);
5398 end if;
5399 end if;
5401 Prag := Next_Pragma (Prag);
5402 end loop;
5403 end;
5404 end if;
5406 -- Here for other than a subprogram or type
5408 else
5409 -- If entity has a type, and it is not a generic unit, then
5410 -- freeze it first (RM 13.14(10)).
5412 if Present (Etype (E))
5413 and then Ekind (E) /= E_Generic_Function
5414 then
5415 Freeze_And_Append (Etype (E), N, Result);
5417 -- For an object of an anonymous array type, aspects on the
5418 -- object declaration apply to the type itself. This is the
5419 -- case for Atomic_Components, Volatile_Components, and
5420 -- Independent_Components. In these cases analysis of the
5421 -- generated pragma will mark the anonymous types accordingly,
5422 -- and the object itself does not require a freeze node.
5424 if Ekind (E) = E_Variable
5425 and then Is_Itype (Etype (E))
5426 and then Is_Array_Type (Etype (E))
5427 and then Has_Delayed_Aspects (E)
5428 then
5429 Set_Has_Delayed_Aspects (E, False);
5430 Set_Has_Delayed_Freeze (E, False);
5431 Set_Freeze_Node (E, Empty);
5432 end if;
5433 end if;
5435 -- Special processing for objects created by object declaration
5437 if Nkind (Declaration_Node (E)) = N_Object_Declaration then
5438 Freeze_Object_Declaration (E);
5439 end if;
5441 -- Check that a constant which has a pragma Volatile[_Components]
5442 -- or Atomic[_Components] also has a pragma Import (RM C.6(13)).
5444 -- Note: Atomic[_Components] also sets Volatile[_Components]
5446 if Ekind (E) = E_Constant
5447 and then (Has_Volatile_Components (E) or else Is_Volatile (E))
5448 and then not Is_Imported (E)
5449 and then not Has_Boolean_Aspect_Import (E)
5450 then
5451 -- Make sure we actually have a pragma, and have not merely
5452 -- inherited the indication from elsewhere (e.g. an address
5453 -- clause, which is not good enough in RM terms).
5455 if Has_Rep_Pragma (E, Name_Atomic)
5456 or else
5457 Has_Rep_Pragma (E, Name_Atomic_Components)
5458 then
5459 Error_Msg_N
5460 ("stand alone atomic constant must be " &
5461 "imported (RM C.6(13))", E);
5463 elsif Has_Rep_Pragma (E, Name_Volatile)
5464 or else
5465 Has_Rep_Pragma (E, Name_Volatile_Components)
5466 then
5467 Error_Msg_N
5468 ("stand alone volatile constant must be " &
5469 "imported (RM C.6(13))", E);
5470 end if;
5471 end if;
5473 -- Static objects require special handling
5475 if (Ekind (E) = E_Constant or else Ekind (E) = E_Variable)
5476 and then Is_Statically_Allocated (E)
5477 then
5478 Freeze_Static_Object (E);
5479 end if;
5481 -- Remaining step is to layout objects
5483 if Ekind_In (E, E_Variable, E_Constant, E_Loop_Parameter)
5484 or else Is_Formal (E)
5485 then
5486 Layout_Object (E);
5487 end if;
5489 -- For an object that does not have delayed freezing, and whose
5490 -- initialization actions have been captured in a compound
5491 -- statement, move them back now directly within the enclosing
5492 -- statement sequence.
5494 if Ekind_In (E, E_Constant, E_Variable)
5495 and then not Has_Delayed_Freeze (E)
5496 then
5497 Explode_Initialization_Compound_Statement (E);
5498 end if;
5499 end if;
5501 -- Case of a type or subtype being frozen
5503 else
5504 -- We used to check here that a full type must have preelaborable
5505 -- initialization if it completes a private type specified with
5506 -- pragma Preelaborable_Initialization, but that missed cases where
5507 -- the types occur within a generic package, since the freezing
5508 -- that occurs within a containing scope generally skips traversal
5509 -- of a generic unit's declarations (those will be frozen within
5510 -- instances). This check was moved to Analyze_Package_Specification.
5512 -- The type may be defined in a generic unit. This can occur when
5513 -- freezing a generic function that returns the type (which is
5514 -- defined in a parent unit). It is clearly meaningless to freeze
5515 -- this type. However, if it is a subtype, its size may be determi-
5516 -- nable and used in subsequent checks, so might as well try to
5517 -- compute it.
5519 -- In Ada 2012, Freeze_Entities is also used in the front end to
5520 -- trigger the analysis of aspect expressions, so in this case we
5521 -- want to continue the freezing process.
5523 -- Is_Generic_Unit (Scope (E)) is dubious here, do we want instead
5524 -- In_Generic_Scope (E)???
5526 if Present (Scope (E))
5527 and then Is_Generic_Unit (Scope (E))
5528 and then
5529 (not Has_Predicates (E)
5530 and then not Has_Delayed_Freeze (E))
5531 then
5532 Check_Compile_Time_Size (E);
5533 Result := No_List;
5534 goto Leave;
5535 end if;
5537 -- Check for error of Type_Invariant'Class applied to an untagged
5538 -- type (check delayed to freeze time when full type is available).
5540 declare
5541 Prag : constant Node_Id := Get_Pragma (E, Pragma_Invariant);
5542 begin
5543 if Present (Prag)
5544 and then Class_Present (Prag)
5545 and then not Is_Tagged_Type (E)
5546 then
5547 Error_Msg_NE
5548 ("Type_Invariant''Class cannot be specified for &", Prag, E);
5549 Error_Msg_N
5550 ("\can only be specified for a tagged type", Prag);
5551 end if;
5552 end;
5554 if Is_Ghost_Entity (E) then
5556 -- A Ghost type cannot be concurrent (SPARK RM 6.9(19)). Verify
5557 -- this legality rule first to five a finer-grained diagnostic.
5559 if Is_Concurrent_Type (E) then
5560 Error_Msg_N ("ghost type & cannot be concurrent", E);
5562 -- A Ghost type cannot be effectively volatile (SPARK RM 6.9(7))
5564 elsif Is_Effectively_Volatile (E) then
5565 Error_Msg_N ("ghost type & cannot be volatile", E);
5566 end if;
5567 end if;
5569 -- Deal with special cases of freezing for subtype
5571 if E /= Base_Type (E) then
5573 -- Before we do anything else, a specific test for the case of a
5574 -- size given for an array where the array would need to be packed
5575 -- in order for the size to be honored, but is not. This is the
5576 -- case where implicit packing may apply. The reason we do this so
5577 -- early is that, if we have implicit packing, the layout of the
5578 -- base type is affected, so we must do this before we freeze the
5579 -- base type.
5581 -- We could do this processing only if implicit packing is enabled
5582 -- since in all other cases, the error would be caught by the back
5583 -- end. However, we choose to do the check even if we do not have
5584 -- implicit packing enabled, since this allows us to give a more
5585 -- useful error message (advising use of pragma Implicit_Packing
5586 -- or pragma Pack).
5588 if Is_Array_Type (E) then
5589 declare
5590 Ctyp : constant Entity_Id := Component_Type (E);
5591 Rsiz : constant Uint := RM_Size (Ctyp);
5592 SZ : constant Node_Id := Size_Clause (E);
5593 Btyp : constant Entity_Id := Base_Type (E);
5595 Lo : Node_Id;
5596 Hi : Node_Id;
5597 Indx : Node_Id;
5599 Dim : Uint;
5600 Num_Elmts : Uint := Uint_1;
5601 -- Number of elements in array
5603 begin
5604 -- Check enabling conditions. These are straightforward
5605 -- except for the test for a limited composite type. This
5606 -- eliminates the rare case of a array of limited components
5607 -- where there are issues of whether or not we can go ahead
5608 -- and pack the array (since we can't freely pack and unpack
5609 -- arrays if they are limited).
5611 -- Note that we check the root type explicitly because the
5612 -- whole point is we are doing this test before we have had
5613 -- a chance to freeze the base type (and it is that freeze
5614 -- action that causes stuff to be inherited).
5616 -- The conditions on the size are identical to those used in
5617 -- Freeze_Array_Type to set the Is_Packed flag.
5619 if Has_Size_Clause (E)
5620 and then Known_Static_RM_Size (E)
5621 and then not Is_Packed (E)
5622 and then not Has_Pragma_Pack (E)
5623 and then not Has_Component_Size_Clause (E)
5624 and then Known_Static_RM_Size (Ctyp)
5625 and then Rsiz <= 64
5626 and then not (Addressable (Rsiz)
5627 and then Known_Static_Esize (Ctyp)
5628 and then Esize (Ctyp) = Rsiz)
5629 and then not (Rsiz mod System_Storage_Unit = 0
5630 and then Is_Composite_Type (Ctyp))
5631 and then not Is_Limited_Composite (E)
5632 and then not Is_Packed (Root_Type (E))
5633 and then not Has_Component_Size_Clause (Root_Type (E))
5634 and then not (CodePeer_Mode or GNATprove_Mode)
5635 then
5636 -- Compute number of elements in array
5638 Indx := First_Index (E);
5639 while Present (Indx) loop
5640 Get_Index_Bounds (Indx, Lo, Hi);
5642 if not (Compile_Time_Known_Value (Lo)
5643 and then
5644 Compile_Time_Known_Value (Hi))
5645 then
5646 goto No_Implicit_Packing;
5647 end if;
5649 Dim := Expr_Value (Hi) - Expr_Value (Lo) + 1;
5651 if Dim >= 0 then
5652 Num_Elmts := Num_Elmts * Dim;
5653 else
5654 Num_Elmts := Uint_0;
5655 end if;
5657 Next_Index (Indx);
5658 end loop;
5660 -- What we are looking for here is the situation where
5661 -- the RM_Size given would be exactly right if there was
5662 -- a pragma Pack, resulting in the component size being
5663 -- the RM_Size of the component type.
5665 if RM_Size (E) = Num_Elmts * Rsiz then
5667 -- For implicit packing mode, just set the component
5668 -- size and Freeze_Array_Type will do the rest.
5670 if Implicit_Packing then
5671 Set_Component_Size (Btyp, Rsiz);
5673 -- Otherwise give an error message
5675 else
5676 Error_Msg_NE
5677 ("size given for& too small", SZ, E);
5678 Error_Msg_N -- CODEFIX
5679 ("\use explicit pragma Pack or use pragma "
5680 & "Implicit_Packing", SZ);
5681 end if;
5682 end if;
5683 end if;
5684 end;
5685 end if;
5687 <<No_Implicit_Packing>>
5689 -- If ancestor subtype present, freeze that first. Note that this
5690 -- will also get the base type frozen. Need RM reference ???
5692 Atype := Ancestor_Subtype (E);
5694 if Present (Atype) then
5695 Freeze_And_Append (Atype, N, Result);
5697 -- No ancestor subtype present
5699 else
5700 -- See if we have a nearest ancestor that has a predicate.
5701 -- That catches the case of derived type with a predicate.
5702 -- Need RM reference here ???
5704 Atype := Nearest_Ancestor (E);
5706 if Present (Atype) and then Has_Predicates (Atype) then
5707 Freeze_And_Append (Atype, N, Result);
5708 end if;
5710 -- Freeze base type before freezing the entity (RM 13.14(15))
5712 if E /= Base_Type (E) then
5713 Freeze_And_Append (Base_Type (E), N, Result);
5714 end if;
5715 end if;
5717 -- A subtype inherits all the type-related representation aspects
5718 -- from its parents (RM 13.1(8)).
5720 Inherit_Aspects_At_Freeze_Point (E);
5722 -- For a derived type, freeze its parent type first (RM 13.14(15))
5724 elsif Is_Derived_Type (E) then
5725 Freeze_And_Append (Etype (E), N, Result);
5726 Freeze_And_Append (First_Subtype (Etype (E)), N, Result);
5728 -- A derived type inherits each type-related representation aspect
5729 -- of its parent type that was directly specified before the
5730 -- declaration of the derived type (RM 13.1(15)).
5732 Inherit_Aspects_At_Freeze_Point (E);
5733 end if;
5735 -- Check for incompatible size and alignment for record type
5737 if Warn_On_Size_Alignment
5738 and then Is_Record_Type (E)
5739 and then Has_Size_Clause (E) and then Has_Alignment_Clause (E)
5741 -- If explicit Object_Size clause given assume that the programmer
5742 -- knows what he is doing, and expects the compiler behavior.
5744 and then not Has_Object_Size_Clause (E)
5746 -- Check for size not a multiple of alignment
5748 and then RM_Size (E) mod (Alignment (E) * System_Storage_Unit) /= 0
5749 then
5750 declare
5751 SC : constant Node_Id := Size_Clause (E);
5752 AC : constant Node_Id := Alignment_Clause (E);
5753 Loc : Node_Id;
5754 Abits : constant Uint := Alignment (E) * System_Storage_Unit;
5756 begin
5757 if Present (SC) and then Present (AC) then
5759 -- Give a warning
5761 if Sloc (SC) > Sloc (AC) then
5762 Loc := SC;
5763 Error_Msg_NE
5764 ("?Z?size is not a multiple of alignment for &",
5765 Loc, E);
5766 Error_Msg_Sloc := Sloc (AC);
5767 Error_Msg_Uint_1 := Alignment (E);
5768 Error_Msg_N ("\?Z?alignment of ^ specified #", Loc);
5770 else
5771 Loc := AC;
5772 Error_Msg_NE
5773 ("?Z?size is not a multiple of alignment for &",
5774 Loc, E);
5775 Error_Msg_Sloc := Sloc (SC);
5776 Error_Msg_Uint_1 := RM_Size (E);
5777 Error_Msg_N ("\?Z?size of ^ specified #", Loc);
5778 end if;
5780 Error_Msg_Uint_1 := ((RM_Size (E) / Abits) + 1) * Abits;
5781 Error_Msg_N ("\?Z?Object_Size will be increased to ^", Loc);
5782 end if;
5783 end;
5784 end if;
5786 -- Array type
5788 if Is_Array_Type (E) then
5789 Freeze_Array_Type (E);
5791 -- For a class-wide type, the corresponding specific type is
5792 -- frozen as well (RM 13.14(15))
5794 elsif Is_Class_Wide_Type (E) then
5795 Freeze_And_Append (Root_Type (E), N, Result);
5797 -- If the base type of the class-wide type is still incomplete,
5798 -- the class-wide remains unfrozen as well. This is legal when
5799 -- E is the formal of a primitive operation of some other type
5800 -- which is being frozen.
5802 if not Is_Frozen (Root_Type (E)) then
5803 Set_Is_Frozen (E, False);
5804 goto Leave;
5805 end if;
5807 -- The equivalent type associated with a class-wide subtype needs
5808 -- to be frozen to ensure that its layout is done.
5810 if Ekind (E) = E_Class_Wide_Subtype
5811 and then Present (Equivalent_Type (E))
5812 then
5813 Freeze_And_Append (Equivalent_Type (E), N, Result);
5814 end if;
5816 -- Generate an itype reference for a library-level class-wide type
5817 -- at the freeze point. Otherwise the first explicit reference to
5818 -- the type may appear in an inner scope which will be rejected by
5819 -- the back-end.
5821 if Is_Itype (E)
5822 and then Is_Compilation_Unit (Scope (E))
5823 then
5824 declare
5825 Ref : constant Node_Id := Make_Itype_Reference (Loc);
5827 begin
5828 Set_Itype (Ref, E);
5830 -- From a gigi point of view, a class-wide subtype derives
5831 -- from its record equivalent type. As a result, the itype
5832 -- reference must appear after the freeze node of the
5833 -- equivalent type or gigi will reject the reference.
5835 if Ekind (E) = E_Class_Wide_Subtype
5836 and then Present (Equivalent_Type (E))
5837 then
5838 Insert_After (Freeze_Node (Equivalent_Type (E)), Ref);
5839 else
5840 Add_To_Result (Ref);
5841 end if;
5842 end;
5843 end if;
5845 -- For a record type or record subtype, freeze all component types
5846 -- (RM 13.14(15)). We test for E_Record_(sub)Type here, rather than
5847 -- using Is_Record_Type, because we don't want to attempt the freeze
5848 -- for the case of a private type with record extension (we will do
5849 -- that later when the full type is frozen).
5851 elsif Ekind_In (E, E_Record_Type, E_Record_Subtype) then
5852 if not In_Generic_Scope (E) then
5853 Freeze_Record_Type (E);
5854 end if;
5856 -- Report a warning if a discriminated record base type has a
5857 -- convention with language C or C++ applied to it. This check is
5858 -- done even within generic scopes (but not in instantiations),
5859 -- which is why we don't do it as part of Freeze_Record_Type.
5861 Check_Suspicious_Convention (E);
5863 -- For a concurrent type, freeze corresponding record type. This does
5864 -- not correspond to any specific rule in the RM, but the record type
5865 -- is essentially part of the concurrent type. Also freeze all local
5866 -- entities. This includes record types created for entry parameter
5867 -- blocks and whatever local entities may appear in the private part.
5869 elsif Is_Concurrent_Type (E) then
5870 if Present (Corresponding_Record_Type (E)) then
5871 Freeze_And_Append (Corresponding_Record_Type (E), N, Result);
5872 end if;
5874 Comp := First_Entity (E);
5875 while Present (Comp) loop
5876 if Is_Type (Comp) then
5877 Freeze_And_Append (Comp, N, Result);
5879 elsif (Ekind (Comp)) /= E_Function then
5881 -- The guard on the presence of the Etype seems to be needed
5882 -- for some CodePeer (-gnatcC) cases, but not clear why???
5884 if Present (Etype (Comp)) then
5885 if Is_Itype (Etype (Comp))
5886 and then Underlying_Type (Scope (Etype (Comp))) = E
5887 then
5888 Undelay_Type (Etype (Comp));
5889 end if;
5891 Freeze_And_Append (Etype (Comp), N, Result);
5892 end if;
5893 end if;
5895 Next_Entity (Comp);
5896 end loop;
5898 -- Private types are required to point to the same freeze node as
5899 -- their corresponding full views. The freeze node itself has to
5900 -- point to the partial view of the entity (because from the partial
5901 -- view, we can retrieve the full view, but not the reverse).
5902 -- However, in order to freeze correctly, we need to freeze the full
5903 -- view. If we are freezing at the end of a scope (or within the
5904 -- scope) of the private type, the partial and full views will have
5905 -- been swapped, the full view appears first in the entity chain and
5906 -- the swapping mechanism ensures that the pointers are properly set
5907 -- (on scope exit).
5909 -- If we encounter the partial view before the full view (e.g. when
5910 -- freezing from another scope), we freeze the full view, and then
5911 -- set the pointers appropriately since we cannot rely on swapping to
5912 -- fix things up (subtypes in an outer scope might not get swapped).
5914 -- If the full view is itself private, the above requirements apply
5915 -- to the underlying full view instead of the full view. But there is
5916 -- no swapping mechanism for the underlying full view so we need to
5917 -- set the pointers appropriately in both cases.
5919 elsif Is_Incomplete_Or_Private_Type (E)
5920 and then not Is_Generic_Type (E)
5921 then
5922 -- The construction of the dispatch table associated with library
5923 -- level tagged types forces freezing of all the primitives of the
5924 -- type, which may cause premature freezing of the partial view.
5925 -- For example:
5927 -- package Pkg is
5928 -- type T is tagged private;
5929 -- type DT is new T with private;
5930 -- procedure Prim (X : in out T; Y : in out DT'Class);
5931 -- private
5932 -- type T is tagged null record;
5933 -- Obj : T;
5934 -- type DT is new T with null record;
5935 -- end;
5937 -- In this case the type will be frozen later by the usual
5938 -- mechanism: an object declaration, an instantiation, or the
5939 -- end of a declarative part.
5941 if Is_Library_Level_Tagged_Type (E)
5942 and then not Present (Full_View (E))
5943 then
5944 Set_Is_Frozen (E, False);
5945 goto Leave;
5947 -- Case of full view present
5949 elsif Present (Full_View (E)) then
5951 -- If full view has already been frozen, then no further
5952 -- processing is required
5954 if Is_Frozen (Full_View (E)) then
5955 Set_Has_Delayed_Freeze (E, False);
5956 Set_Freeze_Node (E, Empty);
5958 -- Otherwise freeze full view and patch the pointers so that
5959 -- the freeze node will elaborate both views in the back end.
5960 -- However, if full view is itself private, freeze underlying
5961 -- full view instead and patch the pointers so that the freeze
5962 -- node will elaborate the three views in the back end.
5964 else
5965 declare
5966 Full : Entity_Id := Full_View (E);
5968 begin
5969 if Is_Private_Type (Full)
5970 and then Present (Underlying_Full_View (Full))
5971 then
5972 Full := Underlying_Full_View (Full);
5973 end if;
5975 Freeze_And_Append (Full, N, Result);
5977 if Full /= Full_View (E)
5978 and then Has_Delayed_Freeze (Full_View (E))
5979 then
5980 F_Node := Freeze_Node (Full);
5982 if Present (F_Node) then
5983 Inherit_Freeze_Node
5984 (Fnod => F_Node,
5985 Typ => Full_View (E));
5986 else
5987 Set_Has_Delayed_Freeze (Full_View (E), False);
5988 Set_Freeze_Node (Full_View (E), Empty);
5989 end if;
5990 end if;
5992 if Has_Delayed_Freeze (E) then
5993 F_Node := Freeze_Node (Full_View (E));
5995 if Present (F_Node) then
5996 Inherit_Freeze_Node
5997 (Fnod => F_Node,
5998 Typ => E);
5999 else
6000 -- {Incomplete,Private}_Subtypes with Full_Views
6001 -- constrained by discriminants.
6003 Set_Has_Delayed_Freeze (E, False);
6004 Set_Freeze_Node (E, Empty);
6005 end if;
6006 end if;
6007 end;
6008 end if;
6010 Check_Debug_Info_Needed (E);
6012 -- AI-117 requires that the convention of a partial view be the
6013 -- same as the convention of the full view. Note that this is a
6014 -- recognized breach of privacy, but it's essential for logical
6015 -- consistency of representation, and the lack of a rule in
6016 -- RM95 was an oversight.
6018 Set_Convention (E, Convention (Full_View (E)));
6020 Set_Size_Known_At_Compile_Time (E,
6021 Size_Known_At_Compile_Time (Full_View (E)));
6023 -- Size information is copied from the full view to the
6024 -- incomplete or private view for consistency.
6026 -- We skip this is the full view is not a type. This is very
6027 -- strange of course, and can only happen as a result of
6028 -- certain illegalities, such as a premature attempt to derive
6029 -- from an incomplete type.
6031 if Is_Type (Full_View (E)) then
6032 Set_Size_Info (E, Full_View (E));
6033 Set_RM_Size (E, RM_Size (Full_View (E)));
6034 end if;
6036 goto Leave;
6038 -- Case of underlying full view present
6040 elsif Is_Private_Type (E)
6041 and then Present (Underlying_Full_View (E))
6042 then
6043 if not Is_Frozen (Underlying_Full_View (E)) then
6044 Freeze_And_Append (Underlying_Full_View (E), N, Result);
6045 end if;
6047 -- Patch the pointers so that the freeze node will elaborate
6048 -- both views in the back end.
6050 if Has_Delayed_Freeze (E) then
6051 F_Node := Freeze_Node (Underlying_Full_View (E));
6053 if Present (F_Node) then
6054 Inherit_Freeze_Node
6055 (Fnod => F_Node,
6056 Typ => E);
6057 else
6058 Set_Has_Delayed_Freeze (E, False);
6059 Set_Freeze_Node (E, Empty);
6060 end if;
6061 end if;
6063 Check_Debug_Info_Needed (E);
6065 goto Leave;
6067 -- Case of no full view present. If entity is derived or subtype,
6068 -- it is safe to freeze, correctness depends on the frozen status
6069 -- of parent. Otherwise it is either premature usage, or a Taft
6070 -- amendment type, so diagnosis is at the point of use and the
6071 -- type might be frozen later.
6073 elsif E /= Base_Type (E) or else Is_Derived_Type (E) then
6074 null;
6076 else
6077 Set_Is_Frozen (E, False);
6078 Result := No_List;
6079 goto Leave;
6080 end if;
6082 -- For access subprogram, freeze types of all formals, the return
6083 -- type was already frozen, since it is the Etype of the function.
6084 -- Formal types can be tagged Taft amendment types, but otherwise
6085 -- they cannot be incomplete.
6087 elsif Ekind (E) = E_Subprogram_Type then
6088 Formal := First_Formal (E);
6089 while Present (Formal) loop
6090 if Ekind (Etype (Formal)) = E_Incomplete_Type
6091 and then No (Full_View (Etype (Formal)))
6092 then
6093 if Is_Tagged_Type (Etype (Formal)) then
6094 null;
6096 -- AI05-151: Incomplete types are allowed in access to
6097 -- subprogram specifications.
6099 elsif Ada_Version < Ada_2012 then
6100 Error_Msg_NE
6101 ("invalid use of incomplete type&", E, Etype (Formal));
6102 end if;
6103 end if;
6105 Freeze_And_Append (Etype (Formal), N, Result);
6106 Next_Formal (Formal);
6107 end loop;
6109 Freeze_Subprogram (E);
6111 -- For access to a protected subprogram, freeze the equivalent type
6112 -- (however this is not set if we are not generating code or if this
6113 -- is an anonymous type used just for resolution).
6115 elsif Is_Access_Protected_Subprogram_Type (E) then
6116 if Present (Equivalent_Type (E)) then
6117 Freeze_And_Append (Equivalent_Type (E), N, Result);
6118 end if;
6119 end if;
6121 -- Generic types are never seen by the back-end, and are also not
6122 -- processed by the expander (since the expander is turned off for
6123 -- generic processing), so we never need freeze nodes for them.
6125 if Is_Generic_Type (E) then
6126 goto Leave;
6127 end if;
6129 -- Some special processing for non-generic types to complete
6130 -- representation details not known till the freeze point.
6132 if Is_Fixed_Point_Type (E) then
6133 Freeze_Fixed_Point_Type (E);
6135 -- Some error checks required for ordinary fixed-point type. Defer
6136 -- these till the freeze-point since we need the small and range
6137 -- values. We only do these checks for base types
6139 if Is_Ordinary_Fixed_Point_Type (E) and then Is_Base_Type (E) then
6140 if Small_Value (E) < Ureal_2_M_80 then
6141 Error_Msg_Name_1 := Name_Small;
6142 Error_Msg_N
6143 ("`&''%` too small, minimum allowed is 2.0'*'*(-80)", E);
6145 elsif Small_Value (E) > Ureal_2_80 then
6146 Error_Msg_Name_1 := Name_Small;
6147 Error_Msg_N
6148 ("`&''%` too large, maximum allowed is 2.0'*'*80", E);
6149 end if;
6151 if Expr_Value_R (Type_Low_Bound (E)) < Ureal_M_10_36 then
6152 Error_Msg_Name_1 := Name_First;
6153 Error_Msg_N
6154 ("`&''%` too small, minimum allowed is -10.0'*'*36", E);
6155 end if;
6157 if Expr_Value_R (Type_High_Bound (E)) > Ureal_10_36 then
6158 Error_Msg_Name_1 := Name_Last;
6159 Error_Msg_N
6160 ("`&''%` too large, maximum allowed is 10.0'*'*36", E);
6161 end if;
6162 end if;
6164 elsif Is_Enumeration_Type (E) then
6165 Freeze_Enumeration_Type (E);
6167 elsif Is_Integer_Type (E) then
6168 Adjust_Esize_For_Alignment (E);
6170 if Is_Modular_Integer_Type (E)
6171 and then Warn_On_Suspicious_Modulus_Value
6172 then
6173 Check_Suspicious_Modulus (E);
6174 end if;
6176 -- The pool applies to named and anonymous access types, but not
6177 -- to subprogram and to internal types generated for 'Access
6178 -- references.
6180 elsif Is_Access_Type (E)
6181 and then not Is_Access_Subprogram_Type (E)
6182 and then Ekind (E) /= E_Access_Attribute_Type
6183 then
6184 -- If a pragma Default_Storage_Pool applies, and this type has no
6185 -- Storage_Pool or Storage_Size clause (which must have occurred
6186 -- before the freezing point), then use the default. This applies
6187 -- only to base types.
6189 -- None of this applies to access to subprograms, for which there
6190 -- are clearly no pools.
6192 if Present (Default_Pool)
6193 and then Is_Base_Type (E)
6194 and then not Has_Storage_Size_Clause (E)
6195 and then No (Associated_Storage_Pool (E))
6196 then
6197 -- Case of pragma Default_Storage_Pool (null)
6199 if Nkind (Default_Pool) = N_Null then
6200 Set_No_Pool_Assigned (E);
6202 -- Case of pragma Default_Storage_Pool (storage_pool_NAME)
6204 else
6205 Set_Associated_Storage_Pool (E, Entity (Default_Pool));
6206 end if;
6207 end if;
6209 -- Check restriction for standard storage pool
6211 if No (Associated_Storage_Pool (E)) then
6212 Check_Restriction (No_Standard_Storage_Pools, E);
6213 end if;
6215 -- Deal with error message for pure access type. This is not an
6216 -- error in Ada 2005 if there is no pool (see AI-366).
6218 if Is_Pure_Unit_Access_Type (E)
6219 and then (Ada_Version < Ada_2005
6220 or else not No_Pool_Assigned (E))
6221 and then not Is_Generic_Unit (Scope (E))
6222 then
6223 Error_Msg_N ("named access type not allowed in pure unit", E);
6225 if Ada_Version >= Ada_2005 then
6226 Error_Msg_N
6227 ("\would be legal if Storage_Size of 0 given??", E);
6229 elsif No_Pool_Assigned (E) then
6230 Error_Msg_N
6231 ("\would be legal in Ada 2005??", E);
6233 else
6234 Error_Msg_N
6235 ("\would be legal in Ada 2005 if "
6236 & "Storage_Size of 0 given??", E);
6237 end if;
6238 end if;
6239 end if;
6241 -- Case of composite types
6243 if Is_Composite_Type (E) then
6245 -- AI-117 requires that all new primitives of a tagged type must
6246 -- inherit the convention of the full view of the type. Inherited
6247 -- and overriding operations are defined to inherit the convention
6248 -- of their parent or overridden subprogram (also specified in
6249 -- AI-117), which will have occurred earlier (in Derive_Subprogram
6250 -- and New_Overloaded_Entity). Here we set the convention of
6251 -- primitives that are still convention Ada, which will ensure
6252 -- that any new primitives inherit the type's convention. Class-
6253 -- wide types can have a foreign convention inherited from their
6254 -- specific type, but are excluded from this since they don't have
6255 -- any associated primitives.
6257 if Is_Tagged_Type (E)
6258 and then not Is_Class_Wide_Type (E)
6259 and then Convention (E) /= Convention_Ada
6260 then
6261 declare
6262 Prim_List : constant Elist_Id := Primitive_Operations (E);
6263 Prim : Elmt_Id;
6265 begin
6266 Prim := First_Elmt (Prim_List);
6267 while Present (Prim) loop
6268 if Convention (Node (Prim)) = Convention_Ada then
6269 Set_Convention (Node (Prim), Convention (E));
6270 end if;
6272 Next_Elmt (Prim);
6273 end loop;
6274 end;
6275 end if;
6277 -- If the type is a simple storage pool type, then this is where
6278 -- we attempt to locate and validate its Allocate, Deallocate, and
6279 -- Storage_Size operations (the first is required, and the latter
6280 -- two are optional). We also verify that the full type for a
6281 -- private type is allowed to be a simple storage pool type.
6283 if Present (Get_Rep_Pragma (E, Name_Simple_Storage_Pool_Type))
6284 and then (Is_Base_Type (E) or else Has_Private_Declaration (E))
6285 then
6286 -- If the type is marked Has_Private_Declaration, then this is
6287 -- a full type for a private type that was specified with the
6288 -- pragma Simple_Storage_Pool_Type, and here we ensure that the
6289 -- pragma is allowed for the full type (for example, it can't
6290 -- be an array type, or a nonlimited record type).
6292 if Has_Private_Declaration (E) then
6293 if (not Is_Record_Type (E) or else not Is_Limited_View (E))
6294 and then not Is_Private_Type (E)
6295 then
6296 Error_Msg_Name_1 := Name_Simple_Storage_Pool_Type;
6297 Error_Msg_N
6298 ("pragma% can only apply to full type that is an " &
6299 "explicitly limited type", E);
6300 end if;
6301 end if;
6303 Validate_Simple_Pool_Ops : declare
6304 Pool_Type : Entity_Id renames E;
6305 Address_Type : constant Entity_Id := RTE (RE_Address);
6306 Stg_Cnt_Type : constant Entity_Id := RTE (RE_Storage_Count);
6308 procedure Validate_Simple_Pool_Op_Formal
6309 (Pool_Op : Entity_Id;
6310 Pool_Op_Formal : in out Entity_Id;
6311 Expected_Mode : Formal_Kind;
6312 Expected_Type : Entity_Id;
6313 Formal_Name : String;
6314 OK_Formal : in out Boolean);
6315 -- Validate one formal Pool_Op_Formal of the candidate pool
6316 -- operation Pool_Op. The formal must be of Expected_Type
6317 -- and have mode Expected_Mode. OK_Formal will be set to
6318 -- False if the formal doesn't match. If OK_Formal is False
6319 -- on entry, then the formal will effectively be ignored
6320 -- (because validation of the pool op has already failed).
6321 -- Upon return, Pool_Op_Formal will be updated to the next
6322 -- formal, if any.
6324 procedure Validate_Simple_Pool_Operation
6325 (Op_Name : Name_Id);
6326 -- Search for and validate a simple pool operation with the
6327 -- name Op_Name. If the name is Allocate, then there must be
6328 -- exactly one such primitive operation for the simple pool
6329 -- type. If the name is Deallocate or Storage_Size, then
6330 -- there can be at most one such primitive operation. The
6331 -- profile of the located primitive must conform to what
6332 -- is expected for each operation.
6334 ------------------------------------
6335 -- Validate_Simple_Pool_Op_Formal --
6336 ------------------------------------
6338 procedure Validate_Simple_Pool_Op_Formal
6339 (Pool_Op : Entity_Id;
6340 Pool_Op_Formal : in out Entity_Id;
6341 Expected_Mode : Formal_Kind;
6342 Expected_Type : Entity_Id;
6343 Formal_Name : String;
6344 OK_Formal : in out Boolean)
6346 begin
6347 -- If OK_Formal is False on entry, then simply ignore
6348 -- the formal, because an earlier formal has already
6349 -- been flagged.
6351 if not OK_Formal then
6352 return;
6354 -- If no formal is passed in, then issue an error for a
6355 -- missing formal.
6357 elsif not Present (Pool_Op_Formal) then
6358 Error_Msg_NE
6359 ("simple storage pool op missing formal " &
6360 Formal_Name & " of type&", Pool_Op, Expected_Type);
6361 OK_Formal := False;
6363 return;
6364 end if;
6366 if Etype (Pool_Op_Formal) /= Expected_Type then
6368 -- If the pool type was expected for this formal, then
6369 -- this will not be considered a candidate operation
6370 -- for the simple pool, so we unset OK_Formal so that
6371 -- the op and any later formals will be ignored.
6373 if Expected_Type = Pool_Type then
6374 OK_Formal := False;
6376 return;
6378 else
6379 Error_Msg_NE
6380 ("wrong type for formal " & Formal_Name &
6381 " of simple storage pool op; expected type&",
6382 Pool_Op_Formal, Expected_Type);
6383 end if;
6384 end if;
6386 -- Issue error if formal's mode is not the expected one
6388 if Ekind (Pool_Op_Formal) /= Expected_Mode then
6389 Error_Msg_N
6390 ("wrong mode for formal of simple storage pool op",
6391 Pool_Op_Formal);
6392 end if;
6394 -- Advance to the next formal
6396 Next_Formal (Pool_Op_Formal);
6397 end Validate_Simple_Pool_Op_Formal;
6399 ------------------------------------
6400 -- Validate_Simple_Pool_Operation --
6401 ------------------------------------
6403 procedure Validate_Simple_Pool_Operation
6404 (Op_Name : Name_Id)
6406 Op : Entity_Id;
6407 Found_Op : Entity_Id := Empty;
6408 Formal : Entity_Id;
6409 Is_OK : Boolean;
6411 begin
6412 pragma Assert
6413 (Nam_In (Op_Name, Name_Allocate,
6414 Name_Deallocate,
6415 Name_Storage_Size));
6417 Error_Msg_Name_1 := Op_Name;
6419 -- For each homonym declared immediately in the scope
6420 -- of the simple storage pool type, determine whether
6421 -- the homonym is an operation of the pool type, and,
6422 -- if so, check that its profile is as expected for
6423 -- a simple pool operation of that name.
6425 Op := Get_Name_Entity_Id (Op_Name);
6426 while Present (Op) loop
6427 if Ekind_In (Op, E_Function, E_Procedure)
6428 and then Scope (Op) = Current_Scope
6429 then
6430 Formal := First_Entity (Op);
6432 Is_OK := True;
6434 -- The first parameter must be of the pool type
6435 -- in order for the operation to qualify.
6437 if Op_Name = Name_Storage_Size then
6438 Validate_Simple_Pool_Op_Formal
6439 (Op, Formal, E_In_Parameter, Pool_Type,
6440 "Pool", Is_OK);
6441 else
6442 Validate_Simple_Pool_Op_Formal
6443 (Op, Formal, E_In_Out_Parameter, Pool_Type,
6444 "Pool", Is_OK);
6445 end if;
6447 -- If another operation with this name has already
6448 -- been located for the type, then flag an error,
6449 -- since we only allow the type to have a single
6450 -- such primitive.
6452 if Present (Found_Op) and then Is_OK then
6453 Error_Msg_NE
6454 ("only one % operation allowed for " &
6455 "simple storage pool type&", Op, Pool_Type);
6456 end if;
6458 -- In the case of Allocate and Deallocate, a formal
6459 -- of type System.Address is required.
6461 if Op_Name = Name_Allocate then
6462 Validate_Simple_Pool_Op_Formal
6463 (Op, Formal, E_Out_Parameter,
6464 Address_Type, "Storage_Address", Is_OK);
6466 elsif Op_Name = Name_Deallocate then
6467 Validate_Simple_Pool_Op_Formal
6468 (Op, Formal, E_In_Parameter,
6469 Address_Type, "Storage_Address", Is_OK);
6470 end if;
6472 -- In the case of Allocate and Deallocate, formals
6473 -- of type Storage_Count are required as the third
6474 -- and fourth parameters.
6476 if Op_Name /= Name_Storage_Size then
6477 Validate_Simple_Pool_Op_Formal
6478 (Op, Formal, E_In_Parameter,
6479 Stg_Cnt_Type, "Size_In_Storage_Units", Is_OK);
6480 Validate_Simple_Pool_Op_Formal
6481 (Op, Formal, E_In_Parameter,
6482 Stg_Cnt_Type, "Alignment", Is_OK);
6483 end if;
6485 -- If no mismatched formals have been found (Is_OK)
6486 -- and no excess formals are present, then this
6487 -- operation has been validated, so record it.
6489 if not Present (Formal) and then Is_OK then
6490 Found_Op := Op;
6491 end if;
6492 end if;
6494 Op := Homonym (Op);
6495 end loop;
6497 -- There must be a valid Allocate operation for the type,
6498 -- so issue an error if none was found.
6500 if Op_Name = Name_Allocate
6501 and then not Present (Found_Op)
6502 then
6503 Error_Msg_N ("missing % operation for simple " &
6504 "storage pool type", Pool_Type);
6506 elsif Present (Found_Op) then
6508 -- Simple pool operations can't be abstract
6510 if Is_Abstract_Subprogram (Found_Op) then
6511 Error_Msg_N
6512 ("simple storage pool operation must not be " &
6513 "abstract", Found_Op);
6514 end if;
6516 -- The Storage_Size operation must be a function with
6517 -- Storage_Count as its result type.
6519 if Op_Name = Name_Storage_Size then
6520 if Ekind (Found_Op) = E_Procedure then
6521 Error_Msg_N
6522 ("% operation must be a function", Found_Op);
6524 elsif Etype (Found_Op) /= Stg_Cnt_Type then
6525 Error_Msg_NE
6526 ("wrong result type for%, expected type&",
6527 Found_Op, Stg_Cnt_Type);
6528 end if;
6530 -- Allocate and Deallocate must be procedures
6532 elsif Ekind (Found_Op) = E_Function then
6533 Error_Msg_N
6534 ("% operation must be a procedure", Found_Op);
6535 end if;
6536 end if;
6537 end Validate_Simple_Pool_Operation;
6539 -- Start of processing for Validate_Simple_Pool_Ops
6541 begin
6542 Validate_Simple_Pool_Operation (Name_Allocate);
6543 Validate_Simple_Pool_Operation (Name_Deallocate);
6544 Validate_Simple_Pool_Operation (Name_Storage_Size);
6545 end Validate_Simple_Pool_Ops;
6546 end if;
6547 end if;
6549 -- Now that all types from which E may depend are frozen, see if the
6550 -- size is known at compile time, if it must be unsigned, or if
6551 -- strict alignment is required
6553 Check_Compile_Time_Size (E);
6554 Check_Unsigned_Type (E);
6556 if Base_Type (E) = E then
6557 Check_Strict_Alignment (E);
6558 end if;
6560 -- Do not allow a size clause for a type which does not have a size
6561 -- that is known at compile time
6563 if Has_Size_Clause (E)
6564 and then not Size_Known_At_Compile_Time (E)
6565 then
6566 -- Suppress this message if errors posted on E, even if we are
6567 -- in all errors mode, since this is often a junk message
6569 if not Error_Posted (E) then
6570 Error_Msg_N
6571 ("size clause not allowed for variable length type",
6572 Size_Clause (E));
6573 end if;
6574 end if;
6576 -- Now we set/verify the representation information, in particular
6577 -- the size and alignment values. This processing is not required for
6578 -- generic types, since generic types do not play any part in code
6579 -- generation, and so the size and alignment values for such types
6580 -- are irrelevant. Ditto for types declared within a generic unit,
6581 -- which may have components that depend on generic parameters, and
6582 -- that will be recreated in an instance.
6584 if Inside_A_Generic then
6585 null;
6587 -- Otherwise we call the layout procedure
6589 else
6590 Layout_Type (E);
6591 end if;
6593 -- If this is an access to subprogram whose designated type is itself
6594 -- a subprogram type, the return type of this anonymous subprogram
6595 -- type must be decorated as well.
6597 if Ekind (E) = E_Anonymous_Access_Subprogram_Type
6598 and then Ekind (Designated_Type (E)) = E_Subprogram_Type
6599 then
6600 Layout_Type (Etype (Designated_Type (E)));
6601 end if;
6603 -- If the type has a Defaut_Value/Default_Component_Value aspect,
6604 -- this is where we analye the expression (after the type is frozen,
6605 -- since in the case of Default_Value, we are analyzing with the
6606 -- type itself, and we treat Default_Component_Value similarly for
6607 -- the sake of uniformity).
6609 if Is_First_Subtype (E) and then Has_Default_Aspect (E) then
6610 declare
6611 Nam : Name_Id;
6612 Exp : Node_Id;
6613 Typ : Entity_Id;
6615 begin
6616 if Is_Scalar_Type (E) then
6617 Nam := Name_Default_Value;
6618 Typ := E;
6619 Exp := Default_Aspect_Value (Typ);
6620 else
6621 Nam := Name_Default_Component_Value;
6622 Typ := Component_Type (E);
6623 Exp := Default_Aspect_Component_Value (E);
6624 end if;
6626 Analyze_And_Resolve (Exp, Typ);
6628 if Etype (Exp) /= Any_Type then
6629 if not Is_OK_Static_Expression (Exp) then
6630 Error_Msg_Name_1 := Nam;
6631 Flag_Non_Static_Expr
6632 ("aspect% requires static expression", Exp);
6633 end if;
6634 end if;
6635 end;
6636 end if;
6638 -- End of freeze processing for type entities
6639 end if;
6641 -- Here is where we logically freeze the current entity. If it has a
6642 -- freeze node, then this is the point at which the freeze node is
6643 -- linked into the result list.
6645 if Has_Delayed_Freeze (E) then
6647 -- If a freeze node is already allocated, use it, otherwise allocate
6648 -- a new one. The preallocation happens in the case of anonymous base
6649 -- types, where we preallocate so that we can set First_Subtype_Link.
6650 -- Note that we reset the Sloc to the current freeze location.
6652 if Present (Freeze_Node (E)) then
6653 F_Node := Freeze_Node (E);
6654 Set_Sloc (F_Node, Loc);
6656 else
6657 F_Node := New_Node (N_Freeze_Entity, Loc);
6658 Set_Freeze_Node (E, F_Node);
6659 Set_Access_Types_To_Process (F_Node, No_Elist);
6660 Set_TSS_Elist (F_Node, No_Elist);
6661 Set_Actions (F_Node, No_List);
6662 end if;
6664 Set_Entity (F_Node, E);
6665 Add_To_Result (F_Node);
6667 -- A final pass over record types with discriminants. If the type
6668 -- has an incomplete declaration, there may be constrained access
6669 -- subtypes declared elsewhere, which do not depend on the discrimi-
6670 -- nants of the type, and which are used as component types (i.e.
6671 -- the full view is a recursive type). The designated types of these
6672 -- subtypes can only be elaborated after the type itself, and they
6673 -- need an itype reference.
6675 if Ekind (E) = E_Record_Type and then Has_Discriminants (E) then
6676 declare
6677 Comp : Entity_Id;
6678 IR : Node_Id;
6679 Typ : Entity_Id;
6681 begin
6682 Comp := First_Component (E);
6683 while Present (Comp) loop
6684 Typ := Etype (Comp);
6686 if Ekind (Comp) = E_Component
6687 and then Is_Access_Type (Typ)
6688 and then Scope (Typ) /= E
6689 and then Base_Type (Designated_Type (Typ)) = E
6690 and then Is_Itype (Designated_Type (Typ))
6691 then
6692 IR := Make_Itype_Reference (Sloc (Comp));
6693 Set_Itype (IR, Designated_Type (Typ));
6694 Append (IR, Result);
6695 end if;
6697 Next_Component (Comp);
6698 end loop;
6699 end;
6700 end if;
6701 end if;
6703 -- When a type is frozen, the first subtype of the type is frozen as
6704 -- well (RM 13.14(15)). This has to be done after freezing the type,
6705 -- since obviously the first subtype depends on its own base type.
6707 if Is_Type (E) then
6708 Freeze_And_Append (First_Subtype (E), N, Result);
6710 -- If we just froze a tagged non-class wide record, then freeze the
6711 -- corresponding class-wide type. This must be done after the tagged
6712 -- type itself is frozen, because the class-wide type refers to the
6713 -- tagged type which generates the class.
6715 if Is_Tagged_Type (E)
6716 and then not Is_Class_Wide_Type (E)
6717 and then Present (Class_Wide_Type (E))
6718 then
6719 Freeze_And_Append (Class_Wide_Type (E), N, Result);
6720 end if;
6721 end if;
6723 Check_Debug_Info_Needed (E);
6725 -- Special handling for subprograms
6727 if Is_Subprogram (E) then
6729 -- If subprogram has address clause then reset Is_Public flag, since
6730 -- we do not want the backend to generate external references.
6732 if Present (Address_Clause (E))
6733 and then not Is_Library_Level_Entity (E)
6734 then
6735 Set_Is_Public (E, False);
6736 end if;
6737 end if;
6739 <<Leave>>
6740 Restore_Ghost_Mode (Saved_GM);
6742 return Result;
6743 end Freeze_Entity;
6745 -----------------------------
6746 -- Freeze_Enumeration_Type --
6747 -----------------------------
6749 procedure Freeze_Enumeration_Type (Typ : Entity_Id) is
6750 begin
6751 -- By default, if no size clause is present, an enumeration type with
6752 -- Convention C is assumed to interface to a C enum, and has integer
6753 -- size. This applies to types. For subtypes, verify that its base
6754 -- type has no size clause either. Treat other foreign conventions
6755 -- in the same way, and also make sure alignment is set right.
6757 if Has_Foreign_Convention (Typ)
6758 and then not Has_Size_Clause (Typ)
6759 and then not Has_Size_Clause (Base_Type (Typ))
6760 and then Esize (Typ) < Standard_Integer_Size
6762 -- Don't do this if Short_Enums on target
6764 and then not Target_Short_Enums
6765 then
6766 Init_Esize (Typ, Standard_Integer_Size);
6767 Set_Alignment (Typ, Alignment (Standard_Integer));
6769 -- Normal Ada case or size clause present or not Long_C_Enums on target
6771 else
6772 -- If the enumeration type interfaces to C, and it has a size clause
6773 -- that specifies less than int size, it warrants a warning. The
6774 -- user may intend the C type to be an enum or a char, so this is
6775 -- not by itself an error that the Ada compiler can detect, but it
6776 -- it is a worth a heads-up. For Boolean and Character types we
6777 -- assume that the programmer has the proper C type in mind.
6779 if Convention (Typ) = Convention_C
6780 and then Has_Size_Clause (Typ)
6781 and then Esize (Typ) /= Esize (Standard_Integer)
6782 and then not Is_Boolean_Type (Typ)
6783 and then not Is_Character_Type (Typ)
6785 -- Don't do this if Short_Enums on target
6787 and then not Target_Short_Enums
6788 then
6789 Error_Msg_N
6790 ("C enum types have the size of a C int??", Size_Clause (Typ));
6791 end if;
6793 Adjust_Esize_For_Alignment (Typ);
6794 end if;
6795 end Freeze_Enumeration_Type;
6797 -----------------------
6798 -- Freeze_Expression --
6799 -----------------------
6801 procedure Freeze_Expression (N : Node_Id) is
6802 In_Spec_Exp : constant Boolean := In_Spec_Expression;
6803 Typ : Entity_Id;
6804 Nam : Entity_Id;
6805 Desig_Typ : Entity_Id;
6806 P : Node_Id;
6807 Parent_P : Node_Id;
6809 Freeze_Outside : Boolean := False;
6810 -- This flag is set true if the entity must be frozen outside the
6811 -- current subprogram. This happens in the case of expander generated
6812 -- subprograms (_Init_Proc, _Input, _Output, _Read, _Write) which do
6813 -- not freeze all entities like other bodies, but which nevertheless
6814 -- may reference entities that have to be frozen before the body and
6815 -- obviously cannot be frozen inside the body.
6817 function Find_Aggregate_Component_Desig_Type return Entity_Id;
6818 -- If the expression is an array aggregate, the type of the component
6819 -- expressions is also frozen. If the component type is an access type
6820 -- and the expressions include allocators, the designed type is frozen
6821 -- as well.
6823 function In_Expanded_Body (N : Node_Id) return Boolean;
6824 -- Given an N_Handled_Sequence_Of_Statements node N, determines whether
6825 -- it is the handled statement sequence of an expander-generated
6826 -- subprogram (init proc, stream subprogram, or renaming as body).
6827 -- If so, this is not a freezing context.
6829 -----------------------------------------
6830 -- Find_Aggregate_Component_Desig_Type --
6831 -----------------------------------------
6833 function Find_Aggregate_Component_Desig_Type return Entity_Id is
6834 Assoc : Node_Id;
6835 Exp : Node_Id;
6837 begin
6838 if Present (Expressions (N)) then
6839 Exp := First (Expressions (N));
6840 while Present (Exp) loop
6841 if Nkind (Exp) = N_Allocator then
6842 return Designated_Type (Component_Type (Etype (N)));
6843 end if;
6845 Next (Exp);
6846 end loop;
6847 end if;
6849 if Present (Component_Associations (N)) then
6850 Assoc := First (Component_Associations (N));
6851 while Present (Assoc) loop
6852 if Nkind (Expression (Assoc)) = N_Allocator then
6853 return Designated_Type (Component_Type (Etype (N)));
6854 end if;
6856 Next (Assoc);
6857 end loop;
6858 end if;
6860 return Empty;
6861 end Find_Aggregate_Component_Desig_Type;
6863 ----------------------
6864 -- In_Expanded_Body --
6865 ----------------------
6867 function In_Expanded_Body (N : Node_Id) return Boolean is
6868 P : Node_Id;
6869 Id : Entity_Id;
6871 begin
6872 if Nkind (N) = N_Subprogram_Body then
6873 P := N;
6874 else
6875 P := Parent (N);
6876 end if;
6878 if Nkind (P) /= N_Subprogram_Body then
6879 return False;
6881 else
6882 Id := Defining_Unit_Name (Specification (P));
6884 -- The following are expander-created bodies, or bodies that
6885 -- are not freeze points.
6887 if Nkind (Id) = N_Defining_Identifier
6888 and then (Is_Init_Proc (Id)
6889 or else Is_TSS (Id, TSS_Stream_Input)
6890 or else Is_TSS (Id, TSS_Stream_Output)
6891 or else Is_TSS (Id, TSS_Stream_Read)
6892 or else Is_TSS (Id, TSS_Stream_Write)
6893 or else Nkind_In (Original_Node (P),
6894 N_Subprogram_Renaming_Declaration,
6895 N_Expression_Function))
6896 then
6897 return True;
6898 else
6899 return False;
6900 end if;
6901 end if;
6902 end In_Expanded_Body;
6904 -- Start of processing for Freeze_Expression
6906 begin
6907 -- Immediate return if freezing is inhibited. This flag is set by the
6908 -- analyzer to stop freezing on generated expressions that would cause
6909 -- freezing if they were in the source program, but which are not
6910 -- supposed to freeze, since they are created.
6912 if Must_Not_Freeze (N) then
6913 return;
6914 end if;
6916 -- If expression is non-static, then it does not freeze in a default
6917 -- expression, see section "Handling of Default Expressions" in the
6918 -- spec of package Sem for further details. Note that we have to make
6919 -- sure that we actually have a real expression (if we have a subtype
6920 -- indication, we can't test Is_OK_Static_Expression). However, we
6921 -- exclude the case of the prefix of an attribute of a static scalar
6922 -- subtype from this early return, because static subtype attributes
6923 -- should always cause freezing, even in default expressions, but
6924 -- the attribute may not have been marked as static yet (because in
6925 -- Resolve_Attribute, the call to Eval_Attribute follows the call of
6926 -- Freeze_Expression on the prefix).
6928 if In_Spec_Exp
6929 and then Nkind (N) in N_Subexpr
6930 and then not Is_OK_Static_Expression (N)
6931 and then (Nkind (Parent (N)) /= N_Attribute_Reference
6932 or else not (Is_Entity_Name (N)
6933 and then Is_Type (Entity (N))
6934 and then Is_OK_Static_Subtype (Entity (N))))
6935 then
6936 return;
6937 end if;
6939 -- Freeze type of expression if not frozen already
6941 Typ := Empty;
6943 if Nkind (N) in N_Has_Etype then
6944 if not Is_Frozen (Etype (N)) then
6945 Typ := Etype (N);
6947 -- Base type may be an derived numeric type that is frozen at
6948 -- the point of declaration, but first_subtype is still unfrozen.
6950 elsif not Is_Frozen (First_Subtype (Etype (N))) then
6951 Typ := First_Subtype (Etype (N));
6952 end if;
6953 end if;
6955 -- For entity name, freeze entity if not frozen already. A special
6956 -- exception occurs for an identifier that did not come from source.
6957 -- We don't let such identifiers freeze a non-internal entity, i.e.
6958 -- an entity that did come from source, since such an identifier was
6959 -- generated by the expander, and cannot have any semantic effect on
6960 -- the freezing semantics. For example, this stops the parameter of
6961 -- an initialization procedure from freezing the variable.
6963 if Is_Entity_Name (N)
6964 and then not Is_Frozen (Entity (N))
6965 and then (Nkind (N) /= N_Identifier
6966 or else Comes_From_Source (N)
6967 or else not Comes_From_Source (Entity (N)))
6968 then
6969 Nam := Entity (N);
6971 if Present (Nam) and then Ekind (Nam) = E_Function then
6972 Check_Expression_Function (N, Nam);
6973 end if;
6975 else
6976 Nam := Empty;
6977 end if;
6979 -- For an allocator freeze designated type if not frozen already
6981 -- For an aggregate whose component type is an access type, freeze the
6982 -- designated type now, so that its freeze does not appear within the
6983 -- loop that might be created in the expansion of the aggregate. If the
6984 -- designated type is a private type without full view, the expression
6985 -- cannot contain an allocator, so the type is not frozen.
6987 -- For a function, we freeze the entity when the subprogram declaration
6988 -- is frozen, but a function call may appear in an initialization proc.
6989 -- before the declaration is frozen. We need to generate the extra
6990 -- formals, if any, to ensure that the expansion of the call includes
6991 -- the proper actuals. This only applies to Ada subprograms, not to
6992 -- imported ones.
6994 Desig_Typ := Empty;
6996 case Nkind (N) is
6997 when N_Allocator =>
6998 Desig_Typ := Designated_Type (Etype (N));
7000 when N_Aggregate =>
7001 if Is_Array_Type (Etype (N))
7002 and then Is_Access_Type (Component_Type (Etype (N)))
7003 then
7005 -- Check whether aggregate includes allocators.
7007 Desig_Typ := Find_Aggregate_Component_Desig_Type;
7008 end if;
7010 when N_Indexed_Component
7011 | N_Selected_Component
7012 | N_Slice
7014 if Is_Access_Type (Etype (Prefix (N))) then
7015 Desig_Typ := Designated_Type (Etype (Prefix (N)));
7016 end if;
7018 when N_Identifier =>
7019 if Present (Nam)
7020 and then Ekind (Nam) = E_Function
7021 and then Nkind (Parent (N)) = N_Function_Call
7022 and then Convention (Nam) = Convention_Ada
7023 then
7024 Create_Extra_Formals (Nam);
7025 end if;
7027 when others =>
7028 null;
7029 end case;
7031 if Desig_Typ /= Empty
7032 and then (Is_Frozen (Desig_Typ)
7033 or else (not Is_Fully_Defined (Desig_Typ)))
7034 then
7035 Desig_Typ := Empty;
7036 end if;
7038 -- All done if nothing needs freezing
7040 if No (Typ)
7041 and then No (Nam)
7042 and then No (Desig_Typ)
7043 then
7044 return;
7045 end if;
7047 -- Examine the enclosing context by climbing the parent chain. The
7048 -- traversal serves two purposes - to detect scenarios where freezeing
7049 -- is not needed and to find the proper insertion point for the freeze
7050 -- nodes. Although somewhat similar to Insert_Actions, this traversal
7051 -- is freezing semantics-sensitive. Inserting freeze nodes blindly in
7052 -- the tree may result in types being frozen too early.
7054 P := N;
7055 loop
7056 Parent_P := Parent (P);
7058 -- If we don't have a parent, then we are not in a well-formed tree.
7059 -- This is an unusual case, but there are some legitimate situations
7060 -- in which this occurs, notably when the expressions in the range of
7061 -- a type declaration are resolved. We simply ignore the freeze
7062 -- request in this case. Is this right ???
7064 if No (Parent_P) then
7065 return;
7066 end if;
7068 -- See if we have got to an appropriate point in the tree
7070 case Nkind (Parent_P) is
7072 -- A special test for the exception of (RM 13.14(8)) for the case
7073 -- of per-object expressions (RM 3.8(18)) occurring in component
7074 -- definition or a discrete subtype definition. Note that we test
7075 -- for a component declaration which includes both cases we are
7076 -- interested in, and furthermore the tree does not have explicit
7077 -- nodes for either of these two constructs.
7079 when N_Component_Declaration =>
7081 -- The case we want to test for here is an identifier that is
7082 -- a per-object expression, this is either a discriminant that
7083 -- appears in a context other than the component declaration
7084 -- or it is a reference to the type of the enclosing construct.
7086 -- For either of these cases, we skip the freezing
7088 if not In_Spec_Expression
7089 and then Nkind (N) = N_Identifier
7090 and then (Present (Entity (N)))
7091 then
7092 -- We recognize the discriminant case by just looking for
7093 -- a reference to a discriminant. It can only be one for
7094 -- the enclosing construct. Skip freezing in this case.
7096 if Ekind (Entity (N)) = E_Discriminant then
7097 return;
7099 -- For the case of a reference to the enclosing record,
7100 -- (or task or protected type), we look for a type that
7101 -- matches the current scope.
7103 elsif Entity (N) = Current_Scope then
7104 return;
7105 end if;
7106 end if;
7108 -- If we have an enumeration literal that appears as the choice in
7109 -- the aggregate of an enumeration representation clause, then
7110 -- freezing does not occur (RM 13.14(10)).
7112 when N_Enumeration_Representation_Clause =>
7114 -- The case we are looking for is an enumeration literal
7116 if (Nkind (N) = N_Identifier or Nkind (N) = N_Character_Literal)
7117 and then Is_Enumeration_Type (Etype (N))
7118 then
7119 -- If enumeration literal appears directly as the choice,
7120 -- do not freeze (this is the normal non-overloaded case)
7122 if Nkind (Parent (N)) = N_Component_Association
7123 and then First (Choices (Parent (N))) = N
7124 then
7125 return;
7127 -- If enumeration literal appears as the name of function
7128 -- which is the choice, then also do not freeze. This
7129 -- happens in the overloaded literal case, where the
7130 -- enumeration literal is temporarily changed to a function
7131 -- call for overloading analysis purposes.
7133 elsif Nkind (Parent (N)) = N_Function_Call
7134 and then
7135 Nkind (Parent (Parent (N))) = N_Component_Association
7136 and then
7137 First (Choices (Parent (Parent (N)))) = Parent (N)
7138 then
7139 return;
7140 end if;
7141 end if;
7143 -- Normally if the parent is a handled sequence of statements,
7144 -- then the current node must be a statement, and that is an
7145 -- appropriate place to insert a freeze node.
7147 when N_Handled_Sequence_Of_Statements =>
7149 -- An exception occurs when the sequence of statements is for
7150 -- an expander generated body that did not do the usual freeze
7151 -- all operation. In this case we usually want to freeze
7152 -- outside this body, not inside it, and we skip past the
7153 -- subprogram body that we are inside.
7155 if In_Expanded_Body (Parent_P) then
7156 declare
7157 Subp : constant Node_Id := Parent (Parent_P);
7158 Spec : Entity_Id;
7160 begin
7161 -- Freeze the entity only when it is declared inside the
7162 -- body of the expander generated procedure. This case
7163 -- is recognized by the scope of the entity or its type,
7164 -- which is either the spec for some enclosing body, or
7165 -- (in the case of init_procs, for which there are no
7166 -- separate specs) the current scope.
7168 if Nkind (Subp) = N_Subprogram_Body then
7169 Spec := Corresponding_Spec (Subp);
7171 if (Present (Typ) and then Scope (Typ) = Spec)
7172 or else
7173 (Present (Nam) and then Scope (Nam) = Spec)
7174 then
7175 exit;
7177 elsif Present (Typ)
7178 and then Scope (Typ) = Current_Scope
7179 and then Defining_Entity (Subp) = Current_Scope
7180 then
7181 exit;
7182 end if;
7183 end if;
7185 -- An expression function may act as a completion of
7186 -- a function declaration. As such, it can reference
7187 -- entities declared between the two views:
7189 -- Hidden []; -- 1
7190 -- function F return ...;
7191 -- private
7192 -- function Hidden return ...;
7193 -- function F return ... is (Hidden); -- 2
7195 -- Refering to the example above, freezing the expression
7196 -- of F (2) would place Hidden's freeze node (1) in the
7197 -- wrong place. Avoid explicit freezing and let the usual
7198 -- scenarios do the job - for example, reaching the end
7199 -- of the private declarations, or a call to F.
7201 if Nkind (Original_Node (Subp)) =
7202 N_Expression_Function
7203 then
7204 null;
7206 -- Freeze outside the body
7208 else
7209 Parent_P := Parent (Parent_P);
7210 Freeze_Outside := True;
7211 end if;
7212 end;
7214 -- Here if normal case where we are in handled statement
7215 -- sequence and want to do the insertion right there.
7217 else
7218 exit;
7219 end if;
7221 -- If parent is a body or a spec or a block, then the current node
7222 -- is a statement or declaration and we can insert the freeze node
7223 -- before it.
7225 when N_Block_Statement
7226 | N_Entry_Body
7227 | N_Package_Body
7228 | N_Package_Specification
7229 | N_Protected_Body
7230 | N_Subprogram_Body
7231 | N_Task_Body
7233 exit;
7235 -- The expander is allowed to define types in any statements list,
7236 -- so any of the following parent nodes also mark a freezing point
7237 -- if the actual node is in a list of statements or declarations.
7239 when N_Abortable_Part
7240 | N_Accept_Alternative
7241 | N_And_Then
7242 | N_Case_Statement_Alternative
7243 | N_Compilation_Unit_Aux
7244 | N_Conditional_Entry_Call
7245 | N_Delay_Alternative
7246 | N_Elsif_Part
7247 | N_Entry_Call_Alternative
7248 | N_Exception_Handler
7249 | N_Extended_Return_Statement
7250 | N_Freeze_Entity
7251 | N_If_Statement
7252 | N_Or_Else
7253 | N_Selective_Accept
7254 | N_Triggering_Alternative
7256 exit when Is_List_Member (P);
7258 -- Freeze nodes produced by an expression coming from the Actions
7259 -- list of a N_Expression_With_Actions node must remain within the
7260 -- Actions list. Inserting the freeze nodes further up the tree
7261 -- may lead to use before declaration issues in the case of array
7262 -- types.
7264 when N_Expression_With_Actions =>
7265 if Is_List_Member (P)
7266 and then List_Containing (P) = Actions (Parent_P)
7267 then
7268 exit;
7269 end if;
7271 -- Note: N_Loop_Statement is a special case. A type that appears
7272 -- in the source can never be frozen in a loop (this occurs only
7273 -- because of a loop expanded by the expander), so we keep on
7274 -- going. Otherwise we terminate the search. Same is true of any
7275 -- entity which comes from source. (if they have predefined type,
7276 -- that type does not appear to come from source, but the entity
7277 -- should not be frozen here).
7279 when N_Loop_Statement =>
7280 exit when not Comes_From_Source (Etype (N))
7281 and then (No (Nam) or else not Comes_From_Source (Nam));
7283 -- For all other cases, keep looking at parents
7285 when others =>
7286 null;
7287 end case;
7289 -- We fall through the case if we did not yet find the proper
7290 -- place in the free for inserting the freeze node, so climb.
7292 P := Parent_P;
7293 end loop;
7295 -- If the expression appears in a record or an initialization procedure,
7296 -- the freeze nodes are collected and attached to the current scope, to
7297 -- be inserted and analyzed on exit from the scope, to insure that
7298 -- generated entities appear in the correct scope. If the expression is
7299 -- a default for a discriminant specification, the scope is still void.
7300 -- The expression can also appear in the discriminant part of a private
7301 -- or concurrent type.
7303 -- If the expression appears in a constrained subcomponent of an
7304 -- enclosing record declaration, the freeze nodes must be attached to
7305 -- the outer record type so they can eventually be placed in the
7306 -- enclosing declaration list.
7308 -- The other case requiring this special handling is if we are in a
7309 -- default expression, since in that case we are about to freeze a
7310 -- static type, and the freeze scope needs to be the outer scope, not
7311 -- the scope of the subprogram with the default parameter.
7313 -- For default expressions and other spec expressions in generic units,
7314 -- the Move_Freeze_Nodes mechanism (see sem_ch12.adb) takes care of
7315 -- placing them at the proper place, after the generic unit.
7317 if (In_Spec_Exp and not Inside_A_Generic)
7318 or else Freeze_Outside
7319 or else (Is_Type (Current_Scope)
7320 and then (not Is_Concurrent_Type (Current_Scope)
7321 or else not Has_Completion (Current_Scope)))
7322 or else Ekind (Current_Scope) = E_Void
7323 then
7324 declare
7325 N : constant Node_Id := Current_Scope;
7326 Freeze_Nodes : List_Id := No_List;
7327 Pos : Int := Scope_Stack.Last;
7329 begin
7330 if Present (Desig_Typ) then
7331 Freeze_And_Append (Desig_Typ, N, Freeze_Nodes);
7332 end if;
7334 if Present (Typ) then
7335 Freeze_And_Append (Typ, N, Freeze_Nodes);
7336 end if;
7338 if Present (Nam) then
7339 Freeze_And_Append (Nam, N, Freeze_Nodes);
7340 end if;
7342 -- The current scope may be that of a constrained component of
7343 -- an enclosing record declaration, or of a loop of an enclosing
7344 -- quantified expression, which is above the current scope in the
7345 -- scope stack. Indeed in the context of a quantified expression,
7346 -- a scope is created and pushed above the current scope in order
7347 -- to emulate the loop-like behavior of the quantified expression.
7348 -- If the expression is within a top-level pragma, as for a pre-
7349 -- condition on a library-level subprogram, nothing to do.
7351 if not Is_Compilation_Unit (Current_Scope)
7352 and then (Is_Record_Type (Scope (Current_Scope))
7353 or else Nkind (Parent (Current_Scope)) =
7354 N_Quantified_Expression)
7355 then
7356 Pos := Pos - 1;
7357 end if;
7359 if Is_Non_Empty_List (Freeze_Nodes) then
7360 if No (Scope_Stack.Table (Pos).Pending_Freeze_Actions) then
7361 Scope_Stack.Table (Pos).Pending_Freeze_Actions :=
7362 Freeze_Nodes;
7363 else
7364 Append_List (Freeze_Nodes,
7365 Scope_Stack.Table (Pos).Pending_Freeze_Actions);
7366 end if;
7367 end if;
7368 end;
7370 return;
7371 end if;
7373 -- Now we have the right place to do the freezing. First, a special
7374 -- adjustment, if we are in spec-expression analysis mode, these freeze
7375 -- actions must not be thrown away (normally all inserted actions are
7376 -- thrown away in this mode. However, the freeze actions are from static
7377 -- expressions and one of the important reasons we are doing this
7378 -- special analysis is to get these freeze actions. Therefore we turn
7379 -- off the In_Spec_Expression mode to propagate these freeze actions.
7380 -- This also means they get properly analyzed and expanded.
7382 In_Spec_Expression := False;
7384 -- Freeze the designated type of an allocator (RM 13.14(13))
7386 if Present (Desig_Typ) then
7387 Freeze_Before (P, Desig_Typ);
7388 end if;
7390 -- Freeze type of expression (RM 13.14(10)). Note that we took care of
7391 -- the enumeration representation clause exception in the loop above.
7393 if Present (Typ) then
7394 Freeze_Before (P, Typ);
7395 end if;
7397 -- Freeze name if one is present (RM 13.14(11))
7399 if Present (Nam) then
7400 Freeze_Before (P, Nam);
7401 end if;
7403 -- Restore In_Spec_Expression flag
7405 In_Spec_Expression := In_Spec_Exp;
7406 end Freeze_Expression;
7408 -----------------------------
7409 -- Freeze_Fixed_Point_Type --
7410 -----------------------------
7412 -- Certain fixed-point types and subtypes, including implicit base types
7413 -- and declared first subtypes, have not yet set up a range. This is
7414 -- because the range cannot be set until the Small and Size values are
7415 -- known, and these are not known till the type is frozen.
7417 -- To signal this case, Scalar_Range contains an unanalyzed syntactic range
7418 -- whose bounds are unanalyzed real literals. This routine will recognize
7419 -- this case, and transform this range node into a properly typed range
7420 -- with properly analyzed and resolved values.
7422 procedure Freeze_Fixed_Point_Type (Typ : Entity_Id) is
7423 Rng : constant Node_Id := Scalar_Range (Typ);
7424 Lo : constant Node_Id := Low_Bound (Rng);
7425 Hi : constant Node_Id := High_Bound (Rng);
7426 Btyp : constant Entity_Id := Base_Type (Typ);
7427 Brng : constant Node_Id := Scalar_Range (Btyp);
7428 BLo : constant Node_Id := Low_Bound (Brng);
7429 BHi : constant Node_Id := High_Bound (Brng);
7430 Small : constant Ureal := Small_Value (Typ);
7431 Loval : Ureal;
7432 Hival : Ureal;
7433 Atype : Entity_Id;
7435 Orig_Lo : Ureal;
7436 Orig_Hi : Ureal;
7437 -- Save original bounds (for shaving tests)
7439 Actual_Size : Nat;
7440 -- Actual size chosen
7442 function Fsize (Lov, Hiv : Ureal) return Nat;
7443 -- Returns size of type with given bounds. Also leaves these
7444 -- bounds set as the current bounds of the Typ.
7446 -----------
7447 -- Fsize --
7448 -----------
7450 function Fsize (Lov, Hiv : Ureal) return Nat is
7451 begin
7452 Set_Realval (Lo, Lov);
7453 Set_Realval (Hi, Hiv);
7454 return Minimum_Size (Typ);
7455 end Fsize;
7457 -- Start of processing for Freeze_Fixed_Point_Type
7459 begin
7460 -- If Esize of a subtype has not previously been set, set it now
7462 if Unknown_Esize (Typ) then
7463 Atype := Ancestor_Subtype (Typ);
7465 if Present (Atype) then
7466 Set_Esize (Typ, Esize (Atype));
7467 else
7468 Set_Esize (Typ, Esize (Base_Type (Typ)));
7469 end if;
7470 end if;
7472 -- Immediate return if the range is already analyzed. This means that
7473 -- the range is already set, and does not need to be computed by this
7474 -- routine.
7476 if Analyzed (Rng) then
7477 return;
7478 end if;
7480 -- Immediate return if either of the bounds raises Constraint_Error
7482 if Raises_Constraint_Error (Lo)
7483 or else Raises_Constraint_Error (Hi)
7484 then
7485 return;
7486 end if;
7488 Loval := Realval (Lo);
7489 Hival := Realval (Hi);
7491 Orig_Lo := Loval;
7492 Orig_Hi := Hival;
7494 -- Ordinary fixed-point case
7496 if Is_Ordinary_Fixed_Point_Type (Typ) then
7498 -- For the ordinary fixed-point case, we are allowed to fudge the
7499 -- end-points up or down by small. Generally we prefer to fudge up,
7500 -- i.e. widen the bounds for non-model numbers so that the end points
7501 -- are included. However there are cases in which this cannot be
7502 -- done, and indeed cases in which we may need to narrow the bounds.
7503 -- The following circuit makes the decision.
7505 -- Note: our terminology here is that Incl_EP means that the bounds
7506 -- are widened by Small if necessary to include the end points, and
7507 -- Excl_EP means that the bounds are narrowed by Small to exclude the
7508 -- end-points if this reduces the size.
7510 -- Note that in the Incl case, all we care about is including the
7511 -- end-points. In the Excl case, we want to narrow the bounds as
7512 -- much as permitted by the RM, to give the smallest possible size.
7514 Fudge : declare
7515 Loval_Incl_EP : Ureal;
7516 Hival_Incl_EP : Ureal;
7518 Loval_Excl_EP : Ureal;
7519 Hival_Excl_EP : Ureal;
7521 Size_Incl_EP : Nat;
7522 Size_Excl_EP : Nat;
7524 Model_Num : Ureal;
7525 First_Subt : Entity_Id;
7526 Actual_Lo : Ureal;
7527 Actual_Hi : Ureal;
7529 begin
7530 -- First step. Base types are required to be symmetrical. Right
7531 -- now, the base type range is a copy of the first subtype range.
7532 -- This will be corrected before we are done, but right away we
7533 -- need to deal with the case where both bounds are non-negative.
7534 -- In this case, we set the low bound to the negative of the high
7535 -- bound, to make sure that the size is computed to include the
7536 -- required sign. Note that we do not need to worry about the
7537 -- case of both bounds negative, because the sign will be dealt
7538 -- with anyway. Furthermore we can't just go making such a bound
7539 -- symmetrical, since in a twos-complement system, there is an
7540 -- extra negative value which could not be accommodated on the
7541 -- positive side.
7543 if Typ = Btyp
7544 and then not UR_Is_Negative (Loval)
7545 and then Hival > Loval
7546 then
7547 Loval := -Hival;
7548 Set_Realval (Lo, Loval);
7549 end if;
7551 -- Compute the fudged bounds. If the number is a model number,
7552 -- then we do nothing to include it, but we are allowed to backoff
7553 -- to the next adjacent model number when we exclude it. If it is
7554 -- not a model number then we straddle the two values with the
7555 -- model numbers on either side.
7557 Model_Num := UR_Trunc (Loval / Small) * Small;
7559 if Loval = Model_Num then
7560 Loval_Incl_EP := Model_Num;
7561 else
7562 Loval_Incl_EP := Model_Num - Small;
7563 end if;
7565 -- The low value excluding the end point is Small greater, but
7566 -- we do not do this exclusion if the low value is positive,
7567 -- since it can't help the size and could actually hurt by
7568 -- crossing the high bound.
7570 if UR_Is_Negative (Loval_Incl_EP) then
7571 Loval_Excl_EP := Loval_Incl_EP + Small;
7573 -- If the value went from negative to zero, then we have the
7574 -- case where Loval_Incl_EP is the model number just below
7575 -- zero, so we want to stick to the negative value for the
7576 -- base type to maintain the condition that the size will
7577 -- include signed values.
7579 if Typ = Btyp
7580 and then UR_Is_Zero (Loval_Excl_EP)
7581 then
7582 Loval_Excl_EP := Loval_Incl_EP;
7583 end if;
7585 else
7586 Loval_Excl_EP := Loval_Incl_EP;
7587 end if;
7589 -- Similar processing for upper bound and high value
7591 Model_Num := UR_Trunc (Hival / Small) * Small;
7593 if Hival = Model_Num then
7594 Hival_Incl_EP := Model_Num;
7595 else
7596 Hival_Incl_EP := Model_Num + Small;
7597 end if;
7599 if UR_Is_Positive (Hival_Incl_EP) then
7600 Hival_Excl_EP := Hival_Incl_EP - Small;
7601 else
7602 Hival_Excl_EP := Hival_Incl_EP;
7603 end if;
7605 -- One further adjustment is needed. In the case of subtypes, we
7606 -- cannot go outside the range of the base type, or we get
7607 -- peculiarities, and the base type range is already set. This
7608 -- only applies to the Incl values, since clearly the Excl values
7609 -- are already as restricted as they are allowed to be.
7611 if Typ /= Btyp then
7612 Loval_Incl_EP := UR_Max (Loval_Incl_EP, Realval (BLo));
7613 Hival_Incl_EP := UR_Min (Hival_Incl_EP, Realval (BHi));
7614 end if;
7616 -- Get size including and excluding end points
7618 Size_Incl_EP := Fsize (Loval_Incl_EP, Hival_Incl_EP);
7619 Size_Excl_EP := Fsize (Loval_Excl_EP, Hival_Excl_EP);
7621 -- No need to exclude end-points if it does not reduce size
7623 if Fsize (Loval_Incl_EP, Hival_Excl_EP) = Size_Excl_EP then
7624 Loval_Excl_EP := Loval_Incl_EP;
7625 end if;
7627 if Fsize (Loval_Excl_EP, Hival_Incl_EP) = Size_Excl_EP then
7628 Hival_Excl_EP := Hival_Incl_EP;
7629 end if;
7631 -- Now we set the actual size to be used. We want to use the
7632 -- bounds fudged up to include the end-points but only if this
7633 -- can be done without violating a specifically given size
7634 -- size clause or causing an unacceptable increase in size.
7636 -- Case of size clause given
7638 if Has_Size_Clause (Typ) then
7640 -- Use the inclusive size only if it is consistent with
7641 -- the explicitly specified size.
7643 if Size_Incl_EP <= RM_Size (Typ) then
7644 Actual_Lo := Loval_Incl_EP;
7645 Actual_Hi := Hival_Incl_EP;
7646 Actual_Size := Size_Incl_EP;
7648 -- If the inclusive size is too large, we try excluding
7649 -- the end-points (will be caught later if does not work).
7651 else
7652 Actual_Lo := Loval_Excl_EP;
7653 Actual_Hi := Hival_Excl_EP;
7654 Actual_Size := Size_Excl_EP;
7655 end if;
7657 -- Case of size clause not given
7659 else
7660 -- If we have a base type whose corresponding first subtype
7661 -- has an explicit size that is large enough to include our
7662 -- end-points, then do so. There is no point in working hard
7663 -- to get a base type whose size is smaller than the specified
7664 -- size of the first subtype.
7666 First_Subt := First_Subtype (Typ);
7668 if Has_Size_Clause (First_Subt)
7669 and then Size_Incl_EP <= Esize (First_Subt)
7670 then
7671 Actual_Size := Size_Incl_EP;
7672 Actual_Lo := Loval_Incl_EP;
7673 Actual_Hi := Hival_Incl_EP;
7675 -- If excluding the end-points makes the size smaller and
7676 -- results in a size of 8,16,32,64, then we take the smaller
7677 -- size. For the 64 case, this is compulsory. For the other
7678 -- cases, it seems reasonable. We like to include end points
7679 -- if we can, but not at the expense of moving to the next
7680 -- natural boundary of size.
7682 elsif Size_Incl_EP /= Size_Excl_EP
7683 and then Addressable (Size_Excl_EP)
7684 then
7685 Actual_Size := Size_Excl_EP;
7686 Actual_Lo := Loval_Excl_EP;
7687 Actual_Hi := Hival_Excl_EP;
7689 -- Otherwise we can definitely include the end points
7691 else
7692 Actual_Size := Size_Incl_EP;
7693 Actual_Lo := Loval_Incl_EP;
7694 Actual_Hi := Hival_Incl_EP;
7695 end if;
7697 -- One pathological case: normally we never fudge a low bound
7698 -- down, since it would seem to increase the size (if it has
7699 -- any effect), but for ranges containing single value, or no
7700 -- values, the high bound can be small too large. Consider:
7702 -- type t is delta 2.0**(-14)
7703 -- range 131072.0 .. 0;
7705 -- That lower bound is *just* outside the range of 32 bits, and
7706 -- does need fudging down in this case. Note that the bounds
7707 -- will always have crossed here, since the high bound will be
7708 -- fudged down if necessary, as in the case of:
7710 -- type t is delta 2.0**(-14)
7711 -- range 131072.0 .. 131072.0;
7713 -- So we detect the situation by looking for crossed bounds,
7714 -- and if the bounds are crossed, and the low bound is greater
7715 -- than zero, we will always back it off by small, since this
7716 -- is completely harmless.
7718 if Actual_Lo > Actual_Hi then
7719 if UR_Is_Positive (Actual_Lo) then
7720 Actual_Lo := Loval_Incl_EP - Small;
7721 Actual_Size := Fsize (Actual_Lo, Actual_Hi);
7723 -- And of course, we need to do exactly the same parallel
7724 -- fudge for flat ranges in the negative region.
7726 elsif UR_Is_Negative (Actual_Hi) then
7727 Actual_Hi := Hival_Incl_EP + Small;
7728 Actual_Size := Fsize (Actual_Lo, Actual_Hi);
7729 end if;
7730 end if;
7731 end if;
7733 Set_Realval (Lo, Actual_Lo);
7734 Set_Realval (Hi, Actual_Hi);
7735 end Fudge;
7737 -- For the decimal case, none of this fudging is required, since there
7738 -- are no end-point problems in the decimal case (the end-points are
7739 -- always included).
7741 else
7742 Actual_Size := Fsize (Loval, Hival);
7743 end if;
7745 -- At this stage, the actual size has been calculated and the proper
7746 -- required bounds are stored in the low and high bounds.
7748 if Actual_Size > 64 then
7749 Error_Msg_Uint_1 := UI_From_Int (Actual_Size);
7750 Error_Msg_N
7751 ("size required (^) for type& too large, maximum allowed is 64",
7752 Typ);
7753 Actual_Size := 64;
7754 end if;
7756 -- Check size against explicit given size
7758 if Has_Size_Clause (Typ) then
7759 if Actual_Size > RM_Size (Typ) then
7760 Error_Msg_Uint_1 := RM_Size (Typ);
7761 Error_Msg_Uint_2 := UI_From_Int (Actual_Size);
7762 Error_Msg_NE
7763 ("size given (^) for type& too small, minimum allowed is ^",
7764 Size_Clause (Typ), Typ);
7766 else
7767 Actual_Size := UI_To_Int (Esize (Typ));
7768 end if;
7770 -- Increase size to next natural boundary if no size clause given
7772 else
7773 if Actual_Size <= 8 then
7774 Actual_Size := 8;
7775 elsif Actual_Size <= 16 then
7776 Actual_Size := 16;
7777 elsif Actual_Size <= 32 then
7778 Actual_Size := 32;
7779 else
7780 Actual_Size := 64;
7781 end if;
7783 Init_Esize (Typ, Actual_Size);
7784 Adjust_Esize_For_Alignment (Typ);
7785 end if;
7787 -- If we have a base type, then expand the bounds so that they extend to
7788 -- the full width of the allocated size in bits, to avoid junk range
7789 -- checks on intermediate computations.
7791 if Base_Type (Typ) = Typ then
7792 Set_Realval (Lo, -(Small * (Uint_2 ** (Actual_Size - 1))));
7793 Set_Realval (Hi, (Small * (Uint_2 ** (Actual_Size - 1) - 1)));
7794 end if;
7796 -- Final step is to reanalyze the bounds using the proper type
7797 -- and set the Corresponding_Integer_Value fields of the literals.
7799 Set_Etype (Lo, Empty);
7800 Set_Analyzed (Lo, False);
7801 Analyze (Lo);
7803 -- Resolve with universal fixed if the base type, and the base type if
7804 -- it is a subtype. Note we can't resolve the base type with itself,
7805 -- that would be a reference before definition.
7807 if Typ = Btyp then
7808 Resolve (Lo, Universal_Fixed);
7809 else
7810 Resolve (Lo, Btyp);
7811 end if;
7813 -- Set corresponding integer value for bound
7815 Set_Corresponding_Integer_Value
7816 (Lo, UR_To_Uint (Realval (Lo) / Small));
7818 -- Similar processing for high bound
7820 Set_Etype (Hi, Empty);
7821 Set_Analyzed (Hi, False);
7822 Analyze (Hi);
7824 if Typ = Btyp then
7825 Resolve (Hi, Universal_Fixed);
7826 else
7827 Resolve (Hi, Btyp);
7828 end if;
7830 Set_Corresponding_Integer_Value
7831 (Hi, UR_To_Uint (Realval (Hi) / Small));
7833 -- Set type of range to correspond to bounds
7835 Set_Etype (Rng, Etype (Lo));
7837 -- Set Esize to calculated size if not set already
7839 if Unknown_Esize (Typ) then
7840 Init_Esize (Typ, Actual_Size);
7841 end if;
7843 -- Set RM_Size if not already set. If already set, check value
7845 declare
7846 Minsiz : constant Uint := UI_From_Int (Minimum_Size (Typ));
7848 begin
7849 if RM_Size (Typ) /= Uint_0 then
7850 if RM_Size (Typ) < Minsiz then
7851 Error_Msg_Uint_1 := RM_Size (Typ);
7852 Error_Msg_Uint_2 := Minsiz;
7853 Error_Msg_NE
7854 ("size given (^) for type& too small, minimum allowed is ^",
7855 Size_Clause (Typ), Typ);
7856 end if;
7858 else
7859 Set_RM_Size (Typ, Minsiz);
7860 end if;
7861 end;
7863 -- Check for shaving
7865 if Comes_From_Source (Typ) then
7867 -- In SPARK mode the given bounds must be strictly representable
7869 if SPARK_Mode = On then
7870 if Orig_Lo < Expr_Value_R (Lo) then
7871 Error_Msg_NE
7872 ("declared low bound of type & is outside type range",
7873 Lo, Typ);
7874 end if;
7876 if Orig_Hi > Expr_Value_R (Hi) then
7877 Error_Msg_NE
7878 ("declared high bound of type & is outside type range",
7879 Hi, Typ);
7880 end if;
7882 else
7883 if Orig_Lo < Expr_Value_R (Lo) then
7884 Error_Msg_N
7885 ("declared low bound of type & is outside type range??", Typ);
7886 Error_Msg_N
7887 ("\low bound adjusted up by delta (RM 3.5.9(13))??", Typ);
7888 end if;
7890 if Orig_Hi > Expr_Value_R (Hi) then
7891 Error_Msg_N
7892 ("declared high bound of type & is outside type range??",
7893 Typ);
7894 Error_Msg_N
7895 ("\high bound adjusted down by delta (RM 3.5.9(13))??", Typ);
7896 end if;
7897 end if;
7898 end if;
7899 end Freeze_Fixed_Point_Type;
7901 ------------------
7902 -- Freeze_Itype --
7903 ------------------
7905 procedure Freeze_Itype (T : Entity_Id; N : Node_Id) is
7906 L : List_Id;
7908 begin
7909 Set_Has_Delayed_Freeze (T);
7910 L := Freeze_Entity (T, N);
7912 if Is_Non_Empty_List (L) then
7913 Insert_Actions (N, L);
7914 end if;
7915 end Freeze_Itype;
7917 --------------------------
7918 -- Freeze_Static_Object --
7919 --------------------------
7921 procedure Freeze_Static_Object (E : Entity_Id) is
7923 Cannot_Be_Static : exception;
7924 -- Exception raised if the type of a static object cannot be made
7925 -- static. This happens if the type depends on non-global objects.
7927 procedure Ensure_Expression_Is_SA (N : Node_Id);
7928 -- Called to ensure that an expression used as part of a type definition
7929 -- is statically allocatable, which means that the expression type is
7930 -- statically allocatable, and the expression is either static, or a
7931 -- reference to a library level constant.
7933 procedure Ensure_Type_Is_SA (Typ : Entity_Id);
7934 -- Called to mark a type as static, checking that it is possible
7935 -- to set the type as static. If it is not possible, then the
7936 -- exception Cannot_Be_Static is raised.
7938 -----------------------------
7939 -- Ensure_Expression_Is_SA --
7940 -----------------------------
7942 procedure Ensure_Expression_Is_SA (N : Node_Id) is
7943 Ent : Entity_Id;
7945 begin
7946 Ensure_Type_Is_SA (Etype (N));
7948 if Is_OK_Static_Expression (N) then
7949 return;
7951 elsif Nkind (N) = N_Identifier then
7952 Ent := Entity (N);
7954 if Present (Ent)
7955 and then Ekind (Ent) = E_Constant
7956 and then Is_Library_Level_Entity (Ent)
7957 then
7958 return;
7959 end if;
7960 end if;
7962 raise Cannot_Be_Static;
7963 end Ensure_Expression_Is_SA;
7965 -----------------------
7966 -- Ensure_Type_Is_SA --
7967 -----------------------
7969 procedure Ensure_Type_Is_SA (Typ : Entity_Id) is
7970 N : Node_Id;
7971 C : Entity_Id;
7973 begin
7974 -- If type is library level, we are all set
7976 if Is_Library_Level_Entity (Typ) then
7977 return;
7978 end if;
7980 -- We are also OK if the type already marked as statically allocated,
7981 -- which means we processed it before.
7983 if Is_Statically_Allocated (Typ) then
7984 return;
7985 end if;
7987 -- Mark type as statically allocated
7989 Set_Is_Statically_Allocated (Typ);
7991 -- Check that it is safe to statically allocate this type
7993 if Is_Scalar_Type (Typ) or else Is_Real_Type (Typ) then
7994 Ensure_Expression_Is_SA (Type_Low_Bound (Typ));
7995 Ensure_Expression_Is_SA (Type_High_Bound (Typ));
7997 elsif Is_Array_Type (Typ) then
7998 N := First_Index (Typ);
7999 while Present (N) loop
8000 Ensure_Type_Is_SA (Etype (N));
8001 Next_Index (N);
8002 end loop;
8004 Ensure_Type_Is_SA (Component_Type (Typ));
8006 elsif Is_Access_Type (Typ) then
8007 if Ekind (Designated_Type (Typ)) = E_Subprogram_Type then
8009 declare
8010 F : Entity_Id;
8011 T : constant Entity_Id := Etype (Designated_Type (Typ));
8013 begin
8014 if T /= Standard_Void_Type then
8015 Ensure_Type_Is_SA (T);
8016 end if;
8018 F := First_Formal (Designated_Type (Typ));
8019 while Present (F) loop
8020 Ensure_Type_Is_SA (Etype (F));
8021 Next_Formal (F);
8022 end loop;
8023 end;
8025 else
8026 Ensure_Type_Is_SA (Designated_Type (Typ));
8027 end if;
8029 elsif Is_Record_Type (Typ) then
8030 C := First_Entity (Typ);
8031 while Present (C) loop
8032 if Ekind (C) = E_Discriminant
8033 or else Ekind (C) = E_Component
8034 then
8035 Ensure_Type_Is_SA (Etype (C));
8037 elsif Is_Type (C) then
8038 Ensure_Type_Is_SA (C);
8039 end if;
8041 Next_Entity (C);
8042 end loop;
8044 elsif Ekind (Typ) = E_Subprogram_Type then
8045 Ensure_Type_Is_SA (Etype (Typ));
8047 C := First_Formal (Typ);
8048 while Present (C) loop
8049 Ensure_Type_Is_SA (Etype (C));
8050 Next_Formal (C);
8051 end loop;
8053 else
8054 raise Cannot_Be_Static;
8055 end if;
8056 end Ensure_Type_Is_SA;
8058 -- Start of processing for Freeze_Static_Object
8060 begin
8061 Ensure_Type_Is_SA (Etype (E));
8063 exception
8064 when Cannot_Be_Static =>
8066 -- If the object that cannot be static is imported or exported, then
8067 -- issue an error message saying that this object cannot be imported
8068 -- or exported. If it has an address clause it is an overlay in the
8069 -- current partition and the static requirement is not relevant.
8070 -- Do not issue any error message when ignoring rep clauses.
8072 if Ignore_Rep_Clauses then
8073 null;
8075 elsif Is_Imported (E) then
8076 if No (Address_Clause (E)) then
8077 Error_Msg_N
8078 ("& cannot be imported (local type is not constant)", E);
8079 end if;
8081 -- Otherwise must be exported, something is wrong if compiler
8082 -- is marking something as statically allocated which cannot be).
8084 else pragma Assert (Is_Exported (E));
8085 Error_Msg_N
8086 ("& cannot be exported (local type is not constant)", E);
8087 end if;
8088 end Freeze_Static_Object;
8090 -----------------------
8091 -- Freeze_Subprogram --
8092 -----------------------
8094 procedure Freeze_Subprogram (E : Entity_Id) is
8095 procedure Set_Profile_Convention (Subp_Id : Entity_Id);
8096 -- Set the conventions of all anonymous access-to-subprogram formals and
8097 -- result subtype of subprogram Subp_Id to the convention of Subp_Id.
8099 ----------------------------
8100 -- Set_Profile_Convention --
8101 ----------------------------
8103 procedure Set_Profile_Convention (Subp_Id : Entity_Id) is
8104 Conv : constant Convention_Id := Convention (Subp_Id);
8106 procedure Set_Type_Convention (Typ : Entity_Id);
8107 -- Set the convention of anonymous access-to-subprogram type Typ and
8108 -- its designated type to Conv.
8110 -------------------------
8111 -- Set_Type_Convention --
8112 -------------------------
8114 procedure Set_Type_Convention (Typ : Entity_Id) is
8115 begin
8116 -- Set the convention on both the anonymous access-to-subprogram
8117 -- type and the subprogram type it points to because both types
8118 -- participate in conformance-related checks.
8120 if Ekind (Typ) = E_Anonymous_Access_Subprogram_Type then
8121 Set_Convention (Typ, Conv);
8122 Set_Convention (Designated_Type (Typ), Conv);
8123 end if;
8124 end Set_Type_Convention;
8126 -- Local variables
8128 Formal : Entity_Id;
8130 -- Start of processing for Set_Profile_Convention
8132 begin
8133 Formal := First_Formal (Subp_Id);
8134 while Present (Formal) loop
8135 Set_Type_Convention (Etype (Formal));
8136 Next_Formal (Formal);
8137 end loop;
8139 if Ekind (Subp_Id) = E_Function then
8140 Set_Type_Convention (Etype (Subp_Id));
8141 end if;
8142 end Set_Profile_Convention;
8144 -- Local variables
8146 F : Entity_Id;
8147 Retype : Entity_Id;
8149 -- Start of processing for Freeze_Subprogram
8151 begin
8152 -- Subprogram may not have an address clause unless it is imported
8154 if Present (Address_Clause (E)) then
8155 if not Is_Imported (E) then
8156 Error_Msg_N
8157 ("address clause can only be given for imported subprogram",
8158 Name (Address_Clause (E)));
8159 end if;
8160 end if;
8162 -- Reset the Pure indication on an imported subprogram unless an
8163 -- explicit Pure_Function pragma was present or the subprogram is an
8164 -- intrinsic. We do this because otherwise it is an insidious error
8165 -- to call a non-pure function from pure unit and have calls
8166 -- mysteriously optimized away. What happens here is that the Import
8167 -- can bypass the normal check to ensure that pure units call only pure
8168 -- subprograms.
8170 -- The reason for the intrinsic exception is that in general, intrinsic
8171 -- functions (such as shifts) are pure anyway. The only exceptions are
8172 -- the intrinsics in GNAT.Source_Info, and that unit is not marked Pure
8173 -- in any case, so no problem arises.
8175 if Is_Imported (E)
8176 and then Is_Pure (E)
8177 and then not Has_Pragma_Pure_Function (E)
8178 and then not Is_Intrinsic_Subprogram (E)
8179 then
8180 Set_Is_Pure (E, False);
8181 end if;
8183 -- We also reset the Pure indication on a subprogram with an Address
8184 -- parameter, because the parameter may be used as a pointer and the
8185 -- referenced data may change even if the address value does not.
8187 -- Note that if the programmer gave an explicit Pure_Function pragma,
8188 -- then we believe the programmer, and leave the subprogram Pure. We
8189 -- also suppress this check on run-time files.
8191 if Is_Pure (E)
8192 and then Is_Subprogram (E)
8193 and then not Has_Pragma_Pure_Function (E)
8194 and then not Is_Internal_Unit (Current_Sem_Unit)
8195 then
8196 Check_Function_With_Address_Parameter (E);
8197 end if;
8199 -- Ensure that all anonymous access-to-subprogram types inherit the
8200 -- convention of their related subprogram (RM 6.3.1 13.1/3). This is
8201 -- not done for a defaulted convention Ada because those types also
8202 -- default to Ada. Convention Protected must not be propagated when
8203 -- the subprogram is an entry because this would be illegal. The only
8204 -- way to force convention Protected on these kinds of types is to
8205 -- include keyword "protected" in the access definition.
8207 if Convention (E) /= Convention_Ada
8208 and then Convention (E) /= Convention_Protected
8209 then
8210 Set_Profile_Convention (E);
8211 end if;
8213 -- For non-foreign convention subprograms, this is where we create
8214 -- the extra formals (for accessibility level and constrained bit
8215 -- information). We delay this till the freeze point precisely so
8216 -- that we know the convention.
8218 if not Has_Foreign_Convention (E) then
8219 Create_Extra_Formals (E);
8220 Set_Mechanisms (E);
8222 -- If this is convention Ada and a Valued_Procedure, that's odd
8224 if Ekind (E) = E_Procedure
8225 and then Is_Valued_Procedure (E)
8226 and then Convention (E) = Convention_Ada
8227 and then Warn_On_Export_Import
8228 then
8229 Error_Msg_N
8230 ("??Valued_Procedure has no effect for convention Ada", E);
8231 Set_Is_Valued_Procedure (E, False);
8232 end if;
8234 -- Case of foreign convention
8236 else
8237 Set_Mechanisms (E);
8239 -- For foreign conventions, warn about return of unconstrained array
8241 if Ekind (E) = E_Function then
8242 Retype := Underlying_Type (Etype (E));
8244 -- If no return type, probably some other error, e.g. a
8245 -- missing full declaration, so ignore.
8247 if No (Retype) then
8248 null;
8250 -- If the return type is generic, we have emitted a warning
8251 -- earlier on, and there is nothing else to check here. Specific
8252 -- instantiations may lead to erroneous behavior.
8254 elsif Is_Generic_Type (Etype (E)) then
8255 null;
8257 -- Display warning if returning unconstrained array
8259 elsif Is_Array_Type (Retype)
8260 and then not Is_Constrained (Retype)
8262 -- Check appropriate warning is enabled (should we check for
8263 -- Warnings (Off) on specific entities here, probably so???)
8265 and then Warn_On_Export_Import
8266 then
8267 Error_Msg_N
8268 ("?x?foreign convention function& should not return " &
8269 "unconstrained array", E);
8270 return;
8271 end if;
8272 end if;
8274 -- If any of the formals for an exported foreign convention
8275 -- subprogram have defaults, then emit an appropriate warning since
8276 -- this is odd (default cannot be used from non-Ada code)
8278 if Is_Exported (E) then
8279 F := First_Formal (E);
8280 while Present (F) loop
8281 if Warn_On_Export_Import
8282 and then Present (Default_Value (F))
8283 then
8284 Error_Msg_N
8285 ("?x?parameter cannot be defaulted in non-Ada call",
8286 Default_Value (F));
8287 end if;
8289 Next_Formal (F);
8290 end loop;
8291 end if;
8292 end if;
8294 -- Pragma Inline_Always is disallowed for dispatching subprograms
8295 -- because the address of such subprograms is saved in the dispatch
8296 -- table to support dispatching calls, and dispatching calls cannot
8297 -- be inlined. This is consistent with the restriction against using
8298 -- 'Access or 'Address on an Inline_Always subprogram.
8300 if Is_Dispatching_Operation (E)
8301 and then Has_Pragma_Inline_Always (E)
8302 then
8303 Error_Msg_N
8304 ("pragma Inline_Always not allowed for dispatching subprograms", E);
8305 end if;
8307 -- Because of the implicit representation of inherited predefined
8308 -- operators in the front-end, the overriding status of the operation
8309 -- may be affected when a full view of a type is analyzed, and this is
8310 -- not captured by the analysis of the corresponding type declaration.
8311 -- Therefore the correctness of a not-overriding indicator must be
8312 -- rechecked when the subprogram is frozen.
8314 if Nkind (E) = N_Defining_Operator_Symbol
8315 and then not Error_Posted (Parent (E))
8316 then
8317 Check_Overriding_Indicator (E, Empty, Is_Primitive (E));
8318 end if;
8320 if Modify_Tree_For_C
8321 and then Nkind (Parent (E)) = N_Function_Specification
8322 and then Is_Array_Type (Etype (E))
8323 and then Is_Constrained (Etype (E))
8324 and then not Is_Unchecked_Conversion_Instance (E)
8325 and then not Rewritten_For_C (E)
8326 then
8327 Build_Procedure_Form (Unit_Declaration_Node (E));
8328 end if;
8329 end Freeze_Subprogram;
8331 ----------------------
8332 -- Is_Fully_Defined --
8333 ----------------------
8335 function Is_Fully_Defined (T : Entity_Id) return Boolean is
8336 begin
8337 if Ekind (T) = E_Class_Wide_Type then
8338 return Is_Fully_Defined (Etype (T));
8340 elsif Is_Array_Type (T) then
8341 return Is_Fully_Defined (Component_Type (T));
8343 elsif Is_Record_Type (T)
8344 and not Is_Private_Type (T)
8345 then
8346 -- Verify that the record type has no components with private types
8347 -- without completion.
8349 declare
8350 Comp : Entity_Id;
8352 begin
8353 Comp := First_Component (T);
8354 while Present (Comp) loop
8355 if not Is_Fully_Defined (Etype (Comp)) then
8356 return False;
8357 end if;
8359 Next_Component (Comp);
8360 end loop;
8361 return True;
8362 end;
8364 -- For the designated type of an access to subprogram, all types in
8365 -- the profile must be fully defined.
8367 elsif Ekind (T) = E_Subprogram_Type then
8368 declare
8369 F : Entity_Id;
8371 begin
8372 F := First_Formal (T);
8373 while Present (F) loop
8374 if not Is_Fully_Defined (Etype (F)) then
8375 return False;
8376 end if;
8378 Next_Formal (F);
8379 end loop;
8381 return Is_Fully_Defined (Etype (T));
8382 end;
8384 else
8385 return not Is_Private_Type (T)
8386 or else Present (Full_View (Base_Type (T)));
8387 end if;
8388 end Is_Fully_Defined;
8390 ---------------------------------
8391 -- Process_Default_Expressions --
8392 ---------------------------------
8394 procedure Process_Default_Expressions
8395 (E : Entity_Id;
8396 After : in out Node_Id)
8398 Loc : constant Source_Ptr := Sloc (E);
8399 Dbody : Node_Id;
8400 Formal : Node_Id;
8401 Dcopy : Node_Id;
8402 Dnam : Entity_Id;
8404 begin
8405 Set_Default_Expressions_Processed (E);
8407 -- A subprogram instance and its associated anonymous subprogram share
8408 -- their signature. The default expression functions are defined in the
8409 -- wrapper packages for the anonymous subprogram, and should not be
8410 -- generated again for the instance.
8412 if Is_Generic_Instance (E)
8413 and then Present (Alias (E))
8414 and then Default_Expressions_Processed (Alias (E))
8415 then
8416 return;
8417 end if;
8419 Formal := First_Formal (E);
8420 while Present (Formal) loop
8421 if Present (Default_Value (Formal)) then
8423 -- We work with a copy of the default expression because we
8424 -- do not want to disturb the original, since this would mess
8425 -- up the conformance checking.
8427 Dcopy := New_Copy_Tree (Default_Value (Formal));
8429 -- The analysis of the expression may generate insert actions,
8430 -- which of course must not be executed. We wrap those actions
8431 -- in a procedure that is not called, and later on eliminated.
8432 -- The following cases have no side-effects, and are analyzed
8433 -- directly.
8435 if Nkind (Dcopy) = N_Identifier
8436 or else Nkind_In (Dcopy, N_Expanded_Name,
8437 N_Integer_Literal,
8438 N_Character_Literal,
8439 N_String_Literal,
8440 N_Real_Literal)
8441 or else (Nkind (Dcopy) = N_Attribute_Reference
8442 and then Attribute_Name (Dcopy) = Name_Null_Parameter)
8443 or else Known_Null (Dcopy)
8444 then
8445 -- If there is no default function, we must still do a full
8446 -- analyze call on the default value, to ensure that all error
8447 -- checks are performed, e.g. those associated with static
8448 -- evaluation. Note: this branch will always be taken if the
8449 -- analyzer is turned off (but we still need the error checks).
8451 -- Note: the setting of parent here is to meet the requirement
8452 -- that we can only analyze the expression while attached to
8453 -- the tree. Really the requirement is that the parent chain
8454 -- be set, we don't actually need to be in the tree.
8456 Set_Parent (Dcopy, Declaration_Node (Formal));
8457 Analyze (Dcopy);
8459 -- Default expressions are resolved with their own type if the
8460 -- context is generic, to avoid anomalies with private types.
8462 if Ekind (Scope (E)) = E_Generic_Package then
8463 Resolve (Dcopy);
8464 else
8465 Resolve (Dcopy, Etype (Formal));
8466 end if;
8468 -- If that resolved expression will raise constraint error,
8469 -- then flag the default value as raising constraint error.
8470 -- This allows a proper error message on the calls.
8472 if Raises_Constraint_Error (Dcopy) then
8473 Set_Raises_Constraint_Error (Default_Value (Formal));
8474 end if;
8476 -- If the default is a parameterless call, we use the name of
8477 -- the called function directly, and there is no body to build.
8479 elsif Nkind (Dcopy) = N_Function_Call
8480 and then No (Parameter_Associations (Dcopy))
8481 then
8482 null;
8484 -- Else construct and analyze the body of a wrapper procedure
8485 -- that contains an object declaration to hold the expression.
8486 -- Given that this is done only to complete the analysis, it is
8487 -- simpler to build a procedure than a function which might
8488 -- involve secondary stack expansion.
8490 else
8491 Dnam := Make_Temporary (Loc, 'D');
8493 Dbody :=
8494 Make_Subprogram_Body (Loc,
8495 Specification =>
8496 Make_Procedure_Specification (Loc,
8497 Defining_Unit_Name => Dnam),
8499 Declarations => New_List (
8500 Make_Object_Declaration (Loc,
8501 Defining_Identifier => Make_Temporary (Loc, 'T'),
8502 Object_Definition =>
8503 New_Occurrence_Of (Etype (Formal), Loc),
8504 Expression => New_Copy_Tree (Dcopy))),
8506 Handled_Statement_Sequence =>
8507 Make_Handled_Sequence_Of_Statements (Loc,
8508 Statements => Empty_List));
8510 Set_Scope (Dnam, Scope (E));
8511 Set_Assignment_OK (First (Declarations (Dbody)));
8512 Set_Is_Eliminated (Dnam);
8513 Insert_After (After, Dbody);
8514 Analyze (Dbody);
8515 After := Dbody;
8516 end if;
8517 end if;
8519 Next_Formal (Formal);
8520 end loop;
8521 end Process_Default_Expressions;
8523 ----------------------------------------
8524 -- Set_Component_Alignment_If_Not_Set --
8525 ----------------------------------------
8527 procedure Set_Component_Alignment_If_Not_Set (Typ : Entity_Id) is
8528 begin
8529 -- Ignore if not base type, subtypes don't need anything
8531 if Typ /= Base_Type (Typ) then
8532 return;
8533 end if;
8535 -- Do not override existing representation
8537 if Is_Packed (Typ) then
8538 return;
8540 elsif Has_Specified_Layout (Typ) then
8541 return;
8543 elsif Component_Alignment (Typ) /= Calign_Default then
8544 return;
8546 else
8547 Set_Component_Alignment
8548 (Typ, Scope_Stack.Table
8549 (Scope_Stack.Last).Component_Alignment_Default);
8550 end if;
8551 end Set_Component_Alignment_If_Not_Set;
8553 --------------------------
8554 -- Set_SSO_From_Default --
8555 --------------------------
8557 procedure Set_SSO_From_Default (T : Entity_Id) is
8558 Reversed : Boolean;
8560 begin
8561 -- Set default SSO for an array or record base type, except in case of
8562 -- a type extension (which always inherits the SSO of its parent type).
8564 if Is_Base_Type (T)
8565 and then (Is_Array_Type (T)
8566 or else (Is_Record_Type (T)
8567 and then not (Is_Tagged_Type (T)
8568 and then Is_Derived_Type (T))))
8569 then
8570 Reversed :=
8571 (Bytes_Big_Endian and then SSO_Set_Low_By_Default (T))
8572 or else
8573 (not Bytes_Big_Endian and then SSO_Set_High_By_Default (T));
8575 if (SSO_Set_Low_By_Default (T) or else SSO_Set_High_By_Default (T))
8577 -- For a record type, if bit order is specified explicitly,
8578 -- then do not set SSO from default if not consistent. Note that
8579 -- we do not want to look at a Bit_Order attribute definition
8580 -- for a parent: if we were to inherit Bit_Order, then both
8581 -- SSO_Set_*_By_Default flags would have been cleared already
8582 -- (by Inherit_Aspects_At_Freeze_Point).
8584 and then not
8585 (Is_Record_Type (T)
8586 and then
8587 Has_Rep_Item (T, Name_Bit_Order, Check_Parents => False)
8588 and then Reverse_Bit_Order (T) /= Reversed)
8589 then
8590 -- If flags cause reverse storage order, then set the result. Note
8591 -- that we would have ignored the pragma setting the non default
8592 -- storage order in any case, hence the assertion at this point.
8594 pragma Assert
8595 (not Reversed or else Support_Nondefault_SSO_On_Target);
8597 Set_Reverse_Storage_Order (T, Reversed);
8599 -- For a record type, also set reversed bit order. Note: if a bit
8600 -- order has been specified explicitly, then this is a no-op.
8602 if Is_Record_Type (T) then
8603 Set_Reverse_Bit_Order (T, Reversed);
8604 end if;
8605 end if;
8606 end if;
8607 end Set_SSO_From_Default;
8609 ------------------
8610 -- Undelay_Type --
8611 ------------------
8613 procedure Undelay_Type (T : Entity_Id) is
8614 begin
8615 Set_Has_Delayed_Freeze (T, False);
8616 Set_Freeze_Node (T, Empty);
8618 -- Since we don't want T to have a Freeze_Node, we don't want its
8619 -- Full_View or Corresponding_Record_Type to have one either.
8621 -- ??? Fundamentally, this whole handling is unpleasant. What we really
8622 -- want is to be sure that for an Itype that's part of record R and is a
8623 -- subtype of type T, that it's frozen after the later of the freeze
8624 -- points of R and T. We have no way of doing that directly, so what we
8625 -- do is force most such Itypes to be frozen as part of freezing R via
8626 -- this procedure and only delay the ones that need to be delayed
8627 -- (mostly the designated types of access types that are defined as part
8628 -- of the record).
8630 if Is_Private_Type (T)
8631 and then Present (Full_View (T))
8632 and then Is_Itype (Full_View (T))
8633 and then Is_Record_Type (Scope (Full_View (T)))
8634 then
8635 Undelay_Type (Full_View (T));
8636 end if;
8638 if Is_Concurrent_Type (T)
8639 and then Present (Corresponding_Record_Type (T))
8640 and then Is_Itype (Corresponding_Record_Type (T))
8641 and then Is_Record_Type (Scope (Corresponding_Record_Type (T)))
8642 then
8643 Undelay_Type (Corresponding_Record_Type (T));
8644 end if;
8645 end Undelay_Type;
8647 ------------------
8648 -- Warn_Overlay --
8649 ------------------
8651 procedure Warn_Overlay (Expr : Node_Id; Typ : Entity_Id; Nam : Entity_Id) is
8652 Ent : constant Entity_Id := Entity (Nam);
8653 -- The object to which the address clause applies
8655 Init : Node_Id;
8656 Old : Entity_Id := Empty;
8657 Decl : Node_Id;
8659 begin
8660 -- No warning if address clause overlay warnings are off
8662 if not Address_Clause_Overlay_Warnings then
8663 return;
8664 end if;
8666 -- No warning if there is an explicit initialization
8668 Init := Original_Node (Expression (Declaration_Node (Ent)));
8670 if Present (Init) and then Comes_From_Source (Init) then
8671 return;
8672 end if;
8674 -- We only give the warning for non-imported entities of a type for
8675 -- which a non-null base init proc is defined, or for objects of access
8676 -- types with implicit null initialization, or when Normalize_Scalars
8677 -- applies and the type is scalar or a string type (the latter being
8678 -- tested for because predefined String types are initialized by inline
8679 -- code rather than by an init_proc). Note that we do not give the
8680 -- warning for Initialize_Scalars, since we suppressed initialization
8681 -- in this case. Also, do not warn if Suppress_Initialization is set.
8683 if Present (Expr)
8684 and then not Is_Imported (Ent)
8685 and then not Initialization_Suppressed (Typ)
8686 and then (Has_Non_Null_Base_Init_Proc (Typ)
8687 or else Is_Access_Type (Typ)
8688 or else (Normalize_Scalars
8689 and then (Is_Scalar_Type (Typ)
8690 or else Is_String_Type (Typ))))
8691 then
8692 if Nkind (Expr) = N_Attribute_Reference
8693 and then Is_Entity_Name (Prefix (Expr))
8694 then
8695 Old := Entity (Prefix (Expr));
8697 elsif Is_Entity_Name (Expr)
8698 and then Ekind (Entity (Expr)) = E_Constant
8699 then
8700 Decl := Declaration_Node (Entity (Expr));
8702 if Nkind (Decl) = N_Object_Declaration
8703 and then Present (Expression (Decl))
8704 and then Nkind (Expression (Decl)) = N_Attribute_Reference
8705 and then Is_Entity_Name (Prefix (Expression (Decl)))
8706 then
8707 Old := Entity (Prefix (Expression (Decl)));
8709 elsif Nkind (Expr) = N_Function_Call then
8710 return;
8711 end if;
8713 -- A function call (most likely to To_Address) is probably not an
8714 -- overlay, so skip warning. Ditto if the function call was inlined
8715 -- and transformed into an entity.
8717 elsif Nkind (Original_Node (Expr)) = N_Function_Call then
8718 return;
8719 end if;
8721 -- If a pragma Import follows, we assume that it is for the current
8722 -- target of the address clause, and skip the warning. There may be
8723 -- a source pragma or an aspect that specifies import and generates
8724 -- the corresponding pragma. These will indicate that the entity is
8725 -- imported and that is checked above so that the spurious warning
8726 -- (generated when the entity is frozen) will be suppressed. The
8727 -- pragma may be attached to the aspect, so it is not yet a list
8728 -- member.
8730 if Is_List_Member (Parent (Expr)) then
8731 Decl := Next (Parent (Expr));
8733 if Present (Decl)
8734 and then Nkind (Decl) = N_Pragma
8735 and then Pragma_Name (Decl) = Name_Import
8736 then
8737 return;
8738 end if;
8739 end if;
8741 -- Otherwise give warning message
8743 if Present (Old) then
8744 Error_Msg_Node_2 := Old;
8745 Error_Msg_N
8746 ("default initialization of & may modify &??",
8747 Nam);
8748 else
8749 Error_Msg_N
8750 ("default initialization of & may modify overlaid storage??",
8751 Nam);
8752 end if;
8754 -- Add friendly warning if initialization comes from a packed array
8755 -- component.
8757 if Is_Record_Type (Typ) then
8758 declare
8759 Comp : Entity_Id;
8761 begin
8762 Comp := First_Component (Typ);
8763 while Present (Comp) loop
8764 if Nkind (Parent (Comp)) = N_Component_Declaration
8765 and then Present (Expression (Parent (Comp)))
8766 then
8767 exit;
8768 elsif Is_Array_Type (Etype (Comp))
8769 and then Present (Packed_Array_Impl_Type (Etype (Comp)))
8770 then
8771 Error_Msg_NE
8772 ("\packed array component& " &
8773 "will be initialized to zero??",
8774 Nam, Comp);
8775 exit;
8776 else
8777 Next_Component (Comp);
8778 end if;
8779 end loop;
8780 end;
8781 end if;
8783 Error_Msg_N
8784 ("\use pragma Import for & to " &
8785 "suppress initialization (RM B.1(24))??",
8786 Nam);
8787 end if;
8788 end Warn_Overlay;
8790 end Freeze;