freeze.adb (Freeze_Entity): Check for size clause for boolean warning
[platform/upstream/gcc.git] / gcc / ada / freeze.adb
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-2008, Free Software Foundation, Inc.         --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
19 -- to  the  Free Software Foundation,  51  Franklin  Street,  Fifth  Floor, --
20 -- Boston, MA 02110-1301, USA.                                              --
21 --                                                                          --
22 -- GNAT was originally developed  by the GNAT team at  New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
24 --                                                                          --
25 ------------------------------------------------------------------------------
26
27 with Atree;    use Atree;
28 with Debug;    use Debug;
29 with Einfo;    use Einfo;
30 with Elists;   use Elists;
31 with Errout;   use Errout;
32 with Exp_Ch3;  use Exp_Ch3;
33 with Exp_Ch7;  use Exp_Ch7;
34 with Exp_Disp; use Exp_Disp;
35 with Exp_Pakd; use Exp_Pakd;
36 with Exp_Util; use Exp_Util;
37 with Exp_Tss;  use Exp_Tss;
38 with Layout;   use Layout;
39 with Lib.Xref; use Lib.Xref;
40 with Namet;    use Namet;
41 with Nlists;   use Nlists;
42 with Nmake;    use Nmake;
43 with Opt;      use Opt;
44 with Restrict; use Restrict;
45 with Rident;   use Rident;
46 with Sem;      use Sem;
47 with Sem_Cat;  use Sem_Cat;
48 with Sem_Ch6;  use Sem_Ch6;
49 with Sem_Ch7;  use Sem_Ch7;
50 with Sem_Ch8;  use Sem_Ch8;
51 with Sem_Ch13; use Sem_Ch13;
52 with Sem_Eval; use Sem_Eval;
53 with Sem_Mech; use Sem_Mech;
54 with Sem_Prag; use Sem_Prag;
55 with Sem_Res;  use Sem_Res;
56 with Sem_Util; use Sem_Util;
57 with Sinfo;    use Sinfo;
58 with Snames;   use Snames;
59 with Stand;    use Stand;
60 with Targparm; use Targparm;
61 with Tbuild;   use Tbuild;
62 with Ttypes;   use Ttypes;
63 with Uintp;    use Uintp;
64 with Urealp;   use Urealp;
65
66 package body Freeze is
67
68    -----------------------
69    -- Local Subprograms --
70    -----------------------
71
72    procedure Adjust_Esize_For_Alignment (Typ : Entity_Id);
73    --  Typ is a type that is being frozen. If no size clause is given,
74    --  but a default Esize has been computed, then this default Esize is
75    --  adjusted up if necessary to be consistent with a given alignment,
76    --  but never to a value greater than Long_Long_Integer'Size. This
77    --  is used for all discrete types and for fixed-point types.
78
79    procedure Build_And_Analyze_Renamed_Body
80      (Decl  : Node_Id;
81       New_S : Entity_Id;
82       After : in out Node_Id);
83    --  Build body for a renaming declaration, insert in tree and analyze
84
85    procedure Check_Address_Clause (E : Entity_Id);
86    --  Apply legality checks to address clauses for object declarations,
87    --  at the point the object is frozen.
88
89    procedure Check_Strict_Alignment (E : Entity_Id);
90    --  E is a base type. If E is tagged or has a component that is aliased
91    --  or tagged or contains something this is aliased or tagged, set
92    --  Strict_Alignment.
93
94    procedure Check_Unsigned_Type (E : Entity_Id);
95    pragma Inline (Check_Unsigned_Type);
96    --  If E is a fixed-point or discrete type, then all the necessary work
97    --  to freeze it is completed except for possible setting of the flag
98    --  Is_Unsigned_Type, which is done by this procedure. The call has no
99    --  effect if the entity E is not a discrete or fixed-point type.
100
101    procedure Freeze_And_Append
102      (Ent    : Entity_Id;
103       Loc    : Source_Ptr;
104       Result : in out List_Id);
105    --  Freezes Ent using Freeze_Entity, and appends the resulting list of
106    --  nodes to Result, modifying Result from No_List if necessary.
107
108    procedure Freeze_Enumeration_Type (Typ : Entity_Id);
109    --  Freeze enumeration type. The Esize field is set as processing
110    --  proceeds (i.e. set by default when the type is declared and then
111    --  adjusted by rep clauses. What this procedure does is to make sure
112    --  that if a foreign convention is specified, and no specific size
113    --  is given, then the size must be at least Integer'Size.
114
115    procedure Freeze_Static_Object (E : Entity_Id);
116    --  If an object is frozen which has Is_Statically_Allocated set, then
117    --  all referenced types must also be marked with this flag. This routine
118    --  is in charge of meeting this requirement for the object entity E.
119
120    procedure Freeze_Subprogram (E : Entity_Id);
121    --  Perform freezing actions for a subprogram (create extra formals,
122    --  and set proper default mechanism values). Note that this routine
123    --  is not called for internal subprograms, for which neither of these
124    --  actions is needed (or desirable, we do not want for example to have
125    --  these extra formals present in initialization procedures, where they
126    --  would serve no purpose). In this call E is either a subprogram or
127    --  a subprogram type (i.e. an access to a subprogram).
128
129    function Is_Fully_Defined (T : Entity_Id) return Boolean;
130    --  True if T is not private and has no private components, or has a full
131    --  view. Used to determine whether the designated type of an access type
132    --  should be frozen when the access type is frozen. This is done when an
133    --  allocator is frozen, or an expression that may involve attributes of
134    --  the designated type. Otherwise freezing the access type does not freeze
135    --  the designated type.
136
137    procedure Process_Default_Expressions
138      (E     : Entity_Id;
139       After : in out Node_Id);
140    --  This procedure is called for each subprogram to complete processing
141    --  of default expressions at the point where all types are known to be
142    --  frozen. The expressions must be analyzed in full, to make sure that
143    --  all error processing is done (they have only been pre-analyzed). If
144    --  the expression is not an entity or literal, its analysis may generate
145    --  code which must not be executed. In that case we build a function
146    --  body to hold that code. This wrapper function serves no other purpose
147    --  (it used to be called to evaluate the default, but now the default is
148    --  inlined at each point of call).
149
150    procedure Set_Component_Alignment_If_Not_Set (Typ : Entity_Id);
151    --  Typ is a record or array type that is being frozen. This routine
152    --  sets the default component alignment from the scope stack values
153    --  if the alignment is otherwise not specified.
154
155    procedure Check_Debug_Info_Needed (T : Entity_Id);
156    --  As each entity is frozen, this routine is called to deal with the
157    --  setting of Debug_Info_Needed for the entity. This flag is set if
158    --  the entity comes from source, or if we are in Debug_Generated_Code
159    --  mode or if the -gnatdV debug flag is set. However, it never sets
160    --  the flag if Debug_Info_Off is set. This procedure also ensures that
161    --  subsidiary entities have the flag set as required.
162
163    procedure Undelay_Type (T : Entity_Id);
164    --  T is a type of a component that we know to be an Itype.
165    --  We don't want this to have a Freeze_Node, so ensure it doesn't.
166    --  Do the same for any Full_View or Corresponding_Record_Type.
167
168    procedure Warn_Overlay
169      (Expr : Node_Id;
170       Typ  : Entity_Id;
171       Nam  : Node_Id);
172    --  Expr is the expression for an address clause for entity Nam whose type
173    --  is Typ. If Typ has a default initialization, and there is no explicit
174    --  initialization in the source declaration, check whether the address
175    --  clause might cause overlaying of an entity, and emit a warning on the
176    --  side effect that the initialization will cause.
177
178    -------------------------------
179    -- Adjust_Esize_For_Alignment --
180    -------------------------------
181
182    procedure Adjust_Esize_For_Alignment (Typ : Entity_Id) is
183       Align : Uint;
184
185    begin
186       if Known_Esize (Typ) and then Known_Alignment (Typ) then
187          Align := Alignment_In_Bits (Typ);
188
189          if Align > Esize (Typ)
190            and then Align <= Standard_Long_Long_Integer_Size
191          then
192             Set_Esize (Typ, Align);
193          end if;
194       end if;
195    end Adjust_Esize_For_Alignment;
196
197    ------------------------------------
198    -- Build_And_Analyze_Renamed_Body --
199    ------------------------------------
200
201    procedure Build_And_Analyze_Renamed_Body
202      (Decl  : Node_Id;
203       New_S : Entity_Id;
204       After : in out Node_Id)
205    is
206       Body_Node : constant Node_Id := Build_Renamed_Body (Decl, New_S);
207    begin
208       Insert_After (After, Body_Node);
209       Mark_Rewrite_Insertion (Body_Node);
210       Analyze (Body_Node);
211       After := Body_Node;
212    end Build_And_Analyze_Renamed_Body;
213
214    ------------------------
215    -- Build_Renamed_Body --
216    ------------------------
217
218    function Build_Renamed_Body
219      (Decl  : Node_Id;
220       New_S : Entity_Id) return Node_Id
221    is
222       Loc : constant Source_Ptr := Sloc (New_S);
223       --  We use for the source location of the renamed body, the location
224       --  of the spec entity. It might seem more natural to use the location
225       --  of the renaming declaration itself, but that would be wrong, since
226       --  then the body we create would look as though it was created far
227       --  too late, and this could cause problems with elaboration order
228       --  analysis, particularly in connection with instantiations.
229
230       N          : constant Node_Id := Unit_Declaration_Node (New_S);
231       Nam        : constant Node_Id := Name (N);
232       Old_S      : Entity_Id;
233       Spec       : constant Node_Id := New_Copy_Tree (Specification (Decl));
234       Actuals    : List_Id := No_List;
235       Call_Node  : Node_Id;
236       Call_Name  : Node_Id;
237       Body_Node  : Node_Id;
238       Formal     : Entity_Id;
239       O_Formal   : Entity_Id;
240       Param_Spec : Node_Id;
241
242       Pref : Node_Id := Empty;
243       --  If the renamed entity is a primitive operation given in prefix form,
244       --  the prefix is the target object and it has to be added as the first
245       --  actual in the generated call.
246
247    begin
248       --  Determine the entity being renamed, which is the target of the call
249       --  statement. If the name is an explicit dereference, this is a renaming
250       --  of a subprogram type rather than a subprogram. The name itself is
251       --  fully analyzed.
252
253       if Nkind (Nam) = N_Selected_Component then
254          Old_S := Entity (Selector_Name (Nam));
255
256       elsif Nkind (Nam) = N_Explicit_Dereference then
257          Old_S := Etype (Nam);
258
259       elsif Nkind (Nam) = N_Indexed_Component then
260          if Is_Entity_Name (Prefix (Nam)) then
261             Old_S := Entity (Prefix (Nam));
262          else
263             Old_S := Entity (Selector_Name (Prefix (Nam)));
264          end if;
265
266       elsif Nkind (Nam) = N_Character_Literal then
267          Old_S := Etype (New_S);
268
269       else
270          Old_S := Entity (Nam);
271       end if;
272
273       if Is_Entity_Name (Nam) then
274
275          --  If the renamed entity is a predefined operator, retain full name
276          --  to ensure its visibility.
277
278          if Ekind (Old_S) = E_Operator
279            and then Nkind (Nam) = N_Expanded_Name
280          then
281             Call_Name := New_Copy (Name (N));
282          else
283             Call_Name := New_Reference_To (Old_S, Loc);
284          end if;
285
286       else
287          if Nkind (Nam) = N_Selected_Component
288            and then Present (First_Formal (Old_S))
289            and then
290              (Is_Controlling_Formal (First_Formal (Old_S))
291                 or else Is_Class_Wide_Type (Etype (First_Formal (Old_S))))
292          then
293
294             --  Retrieve the target object, to be added as a first actual
295             --  in the call.
296
297             Call_Name := New_Occurrence_Of (Old_S, Loc);
298             Pref := Prefix (Nam);
299
300          else
301             Call_Name := New_Copy (Name (N));
302          end if;
303
304          --  The original name may have been overloaded, but
305          --  is fully resolved now.
306
307          Set_Is_Overloaded (Call_Name, False);
308       end if;
309
310       --  For simple renamings, subsequent calls can be expanded directly as
311       --  called to the renamed entity. The body must be generated in any case
312       --  for calls they may appear elsewhere.
313
314       if (Ekind (Old_S) = E_Function
315            or else Ekind (Old_S) = E_Procedure)
316         and then Nkind (Decl) = N_Subprogram_Declaration
317       then
318          Set_Body_To_Inline (Decl, Old_S);
319       end if;
320
321       --  The body generated for this renaming is an internal artifact, and
322       --  does not  constitute a freeze point for the called entity.
323
324       Set_Must_Not_Freeze (Call_Name);
325
326       Formal := First_Formal (Defining_Entity (Decl));
327
328       if Present (Pref) then
329          declare
330             Pref_Type : constant Entity_Id := Etype (Pref);
331             Form_Type : constant Entity_Id := Etype (First_Formal (Old_S));
332
333          begin
334
335             --  The controlling formal may be an access parameter, or the
336             --  actual may be an access value, so adjust accordingly.
337
338             if Is_Access_Type (Pref_Type)
339               and then not Is_Access_Type (Form_Type)
340             then
341                Actuals := New_List
342                  (Make_Explicit_Dereference (Loc, Relocate_Node (Pref)));
343
344             elsif Is_Access_Type (Form_Type)
345               and then not Is_Access_Type (Pref)
346             then
347                Actuals := New_List
348                  (Make_Attribute_Reference (Loc,
349                    Attribute_Name => Name_Access,
350                    Prefix => Relocate_Node (Pref)));
351             else
352                Actuals := New_List (Pref);
353             end if;
354          end;
355
356       elsif Present (Formal) then
357          Actuals := New_List;
358
359       else
360          Actuals := No_List;
361       end if;
362
363       if Present (Formal) then
364          while Present (Formal) loop
365             Append (New_Reference_To (Formal, Loc), Actuals);
366             Next_Formal (Formal);
367          end loop;
368       end if;
369
370       --  If the renamed entity is an entry, inherit its profile. For other
371       --  renamings as bodies, both profiles must be subtype conformant, so it
372       --  is not necessary to replace the profile given in the declaration.
373       --  However, default values that are aggregates are rewritten when
374       --  partially analyzed, so we recover the original aggregate to insure
375       --  that subsequent conformity checking works. Similarly, if the default
376       --  expression was constant-folded, recover the original expression.
377
378       Formal := First_Formal (Defining_Entity (Decl));
379
380       if Present (Formal) then
381          O_Formal := First_Formal (Old_S);
382          Param_Spec := First (Parameter_Specifications (Spec));
383
384          while Present (Formal) loop
385             if Is_Entry (Old_S) then
386
387                if Nkind (Parameter_Type (Param_Spec)) /=
388                                                     N_Access_Definition
389                then
390                   Set_Etype (Formal, Etype (O_Formal));
391                   Set_Entity (Parameter_Type (Param_Spec), Etype (O_Formal));
392                end if;
393
394             elsif Nkind (Default_Value (O_Formal)) = N_Aggregate
395               or else Nkind (Original_Node (Default_Value (O_Formal))) /=
396                                            Nkind (Default_Value (O_Formal))
397             then
398                Set_Expression (Param_Spec,
399                  New_Copy_Tree (Original_Node (Default_Value (O_Formal))));
400             end if;
401
402             Next_Formal (Formal);
403             Next_Formal (O_Formal);
404             Next (Param_Spec);
405          end loop;
406       end if;
407
408       --  If the renamed entity is a function, the generated body contains a
409       --  return statement. Otherwise, build a procedure call. If the entity is
410       --  an entry, subsequent analysis of the call will transform it into the
411       --  proper entry or protected operation call. If the renamed entity is
412       --  a character literal, return it directly.
413
414       if Ekind (Old_S) = E_Function
415         or else Ekind (Old_S) = E_Operator
416         or else (Ekind (Old_S) = E_Subprogram_Type
417                   and then Etype (Old_S) /= Standard_Void_Type)
418       then
419          Call_Node :=
420            Make_Simple_Return_Statement (Loc,
421               Expression =>
422                 Make_Function_Call (Loc,
423                   Name => Call_Name,
424                   Parameter_Associations => Actuals));
425
426       elsif Ekind (Old_S) = E_Enumeration_Literal then
427          Call_Node :=
428            Make_Simple_Return_Statement (Loc,
429               Expression => New_Occurrence_Of (Old_S, Loc));
430
431       elsif Nkind (Nam) = N_Character_Literal then
432          Call_Node :=
433            Make_Simple_Return_Statement (Loc,
434              Expression => Call_Name);
435
436       else
437          Call_Node :=
438            Make_Procedure_Call_Statement (Loc,
439              Name => Call_Name,
440              Parameter_Associations => Actuals);
441       end if;
442
443       --  Create entities for subprogram body and formals
444
445       Set_Defining_Unit_Name (Spec,
446         Make_Defining_Identifier (Loc, Chars => Chars (New_S)));
447
448       Param_Spec := First (Parameter_Specifications (Spec));
449
450       while Present (Param_Spec) loop
451          Set_Defining_Identifier (Param_Spec,
452            Make_Defining_Identifier (Loc,
453              Chars => Chars (Defining_Identifier (Param_Spec))));
454          Next (Param_Spec);
455       end loop;
456
457       Body_Node :=
458         Make_Subprogram_Body (Loc,
459           Specification => Spec,
460           Declarations => New_List,
461           Handled_Statement_Sequence =>
462             Make_Handled_Sequence_Of_Statements (Loc,
463               Statements => New_List (Call_Node)));
464
465       if Nkind (Decl) /= N_Subprogram_Declaration then
466          Rewrite (N,
467            Make_Subprogram_Declaration (Loc,
468              Specification => Specification (N)));
469       end if;
470
471       --  Link the body to the entity whose declaration it completes. If
472       --  the body is analyzed when the renamed entity is frozen, it may
473       --  be necessary to restore the proper scope (see package Exp_Ch13).
474
475       if Nkind (N) =  N_Subprogram_Renaming_Declaration
476         and then Present (Corresponding_Spec (N))
477       then
478          Set_Corresponding_Spec (Body_Node, Corresponding_Spec (N));
479       else
480          Set_Corresponding_Spec (Body_Node, New_S);
481       end if;
482
483       return Body_Node;
484    end Build_Renamed_Body;
485
486    --------------------------
487    -- Check_Address_Clause --
488    --------------------------
489
490    procedure Check_Address_Clause (E : Entity_Id) is
491       Addr : constant Node_Id   := Address_Clause (E);
492       Expr : Node_Id;
493       Decl : constant Node_Id   := Declaration_Node (E);
494       Typ  : constant Entity_Id := Etype (E);
495
496    begin
497       if Present (Addr) then
498          Expr := Expression (Addr);
499
500          --  If we have no initialization of any kind, then we don't need to
501          --  place any restrictions on the address clause, because the object
502          --  will be elaborated after the address clause is evaluated. This
503          --  happens if the declaration has no initial expression, or the type
504          --  has no implicit initialization, or the object is imported.
505
506          --  The same holds for all initialized scalar types and all access
507          --  types. Packed bit arrays of size up to 64 are represented using a
508          --  modular type with an initialization (to zero) and can be processed
509          --  like other initialized scalar types.
510
511          --  If the type is controlled, code to attach the object to a
512          --  finalization chain is generated at the point of declaration,
513          --  and therefore the elaboration of the object cannot be delayed:
514          --  the address expression must be a constant.
515
516          if (No (Expression (Decl))
517               and then not Controlled_Type (Typ)
518               and then
519                 (not Has_Non_Null_Base_Init_Proc (Typ)
520                   or else Is_Imported (E)))
521
522            or else
523              (Present (Expression (Decl))
524                and then Is_Scalar_Type (Typ))
525
526            or else
527              Is_Access_Type (Typ)
528
529            or else
530              (Is_Bit_Packed_Array (Typ)
531                and then
532                  Is_Modular_Integer_Type (Packed_Array_Type (Typ)))
533          then
534             null;
535
536          --  Otherwise, we require the address clause to be constant because
537          --  the call to the initialization procedure (or the attach code) has
538          --  to happen at the point of the declaration.
539
540          else
541             Check_Constant_Address_Clause (Expr, E);
542             Set_Has_Delayed_Freeze (E, False);
543          end if;
544
545          if not Error_Posted (Expr)
546            and then not Controlled_Type (Typ)
547          then
548             Warn_Overlay (Expr, Typ, Name (Addr));
549          end if;
550       end if;
551    end Check_Address_Clause;
552
553    -----------------------------
554    -- Check_Compile_Time_Size --
555    -----------------------------
556
557    procedure Check_Compile_Time_Size (T : Entity_Id) is
558
559       procedure Set_Small_Size (T : Entity_Id; S : Uint);
560       --  Sets the compile time known size (32 bits or less) in the Esize
561       --  field, of T checking for a size clause that was given which attempts
562       --  to give a smaller size.
563
564       function Size_Known (T : Entity_Id) return Boolean;
565       --  Recursive function that does all the work
566
567       function Static_Discriminated_Components (T : Entity_Id) return Boolean;
568       --  If T is a constrained subtype, its size is not known if any of its
569       --  discriminant constraints is not static and it is not a null record.
570       --  The test is conservative and doesn't check that the components are
571       --  in fact constrained by non-static discriminant values. Could be made
572       --  more precise ???
573
574       --------------------
575       -- Set_Small_Size --
576       --------------------
577
578       procedure Set_Small_Size (T : Entity_Id; S : Uint) is
579       begin
580          if S > 32 then
581             return;
582
583          elsif Has_Size_Clause (T) then
584             if RM_Size (T) < S then
585                Error_Msg_Uint_1 := S;
586                Error_Msg_NE
587                  ("size for & too small, minimum allowed is ^",
588                   Size_Clause (T), T);
589
590             elsif Unknown_Esize (T) then
591                Set_Esize (T, S);
592             end if;
593
594          --  Set sizes if not set already
595
596          else
597             if Unknown_Esize (T) then
598                Set_Esize (T, S);
599             end if;
600
601             if Unknown_RM_Size (T) then
602                Set_RM_Size (T, S);
603             end if;
604          end if;
605       end Set_Small_Size;
606
607       ----------------
608       -- Size_Known --
609       ----------------
610
611       function Size_Known (T : Entity_Id) return Boolean is
612          Index : Entity_Id;
613          Comp  : Entity_Id;
614          Ctyp  : Entity_Id;
615          Low   : Node_Id;
616          High  : Node_Id;
617
618       begin
619          if Size_Known_At_Compile_Time (T) then
620             return True;
621
622          --  Always True for scalar types. This is true even for generic formal
623          --  scalar types. We used to return False in the latter case, but the
624          --  size is known at compile time, even in the template, we just do
625          --  not know the exact size but that's not the point of this routine.
626
627          elsif Is_Scalar_Type (T)
628            or else Is_Task_Type (T)
629          then
630             return True;
631
632          --  Array types
633
634          elsif Is_Array_Type (T) then
635
636             --  String literals always have known size, and we can set it
637
638             if Ekind (T) = E_String_Literal_Subtype then
639                Set_Small_Size (T, Component_Size (T)
640                                * String_Literal_Length (T));
641                return True;
642
643             --  Unconstrained types never have known at compile time size
644
645             elsif not Is_Constrained (T) then
646                return False;
647
648             --  Don't do any recursion on type with error posted, since we may
649             --  have a malformed type that leads us into a loop.
650
651             elsif Error_Posted (T) then
652                return False;
653
654             --  Otherwise if component size unknown, then array size unknown
655
656             elsif not Size_Known (Component_Type (T)) then
657                return False;
658             end if;
659
660             --  Check for all indexes static, and also compute possible size
661             --  (in case it is less than 32 and may be packable).
662
663             declare
664                Esiz : Uint := Component_Size (T);
665                Dim  : Uint;
666
667             begin
668                Index := First_Index (T);
669                while Present (Index) loop
670                   if Nkind (Index) = N_Range then
671                      Get_Index_Bounds (Index, Low, High);
672
673                   elsif Error_Posted (Scalar_Range (Etype (Index))) then
674                      return False;
675
676                   else
677                      Low  := Type_Low_Bound (Etype (Index));
678                      High := Type_High_Bound (Etype (Index));
679                   end if;
680
681                   if not Compile_Time_Known_Value (Low)
682                     or else not Compile_Time_Known_Value (High)
683                     or else Etype (Index) = Any_Type
684                   then
685                      return False;
686
687                   else
688                      Dim := Expr_Value (High) - Expr_Value (Low) + 1;
689
690                      if Dim >= 0 then
691                         Esiz := Esiz * Dim;
692                      else
693                         Esiz := Uint_0;
694                      end if;
695                   end if;
696
697                   Next_Index (Index);
698                end loop;
699
700                Set_Small_Size (T, Esiz);
701                return True;
702             end;
703
704          --  Access types always have known at compile time sizes
705
706          elsif Is_Access_Type (T) then
707             return True;
708
709          --  For non-generic private types, go to underlying type if present
710
711          elsif Is_Private_Type (T)
712            and then not Is_Generic_Type (T)
713            and then Present (Underlying_Type (T))
714          then
715             --  Don't do any recursion on type with error posted, since we may
716             --  have a malformed type that leads us into a loop.
717
718             if Error_Posted (T) then
719                return False;
720             else
721                return Size_Known (Underlying_Type (T));
722             end if;
723
724          --  Record types
725
726          elsif Is_Record_Type (T) then
727
728             --  A class-wide type is never considered to have a known size
729
730             if Is_Class_Wide_Type (T) then
731                return False;
732
733             --  A subtype of a variant record must not have non-static
734             --  discriminanted components.
735
736             elsif T /= Base_Type (T)
737               and then not Static_Discriminated_Components (T)
738             then
739                return False;
740
741             --  Don't do any recursion on type with error posted, since we may
742             --  have a malformed type that leads us into a loop.
743
744             elsif Error_Posted (T) then
745                return False;
746             end if;
747
748             --  Now look at the components of the record
749
750             declare
751                --  The following two variables are used to keep track of the
752                --  size of packed records if we can tell the size of the packed
753                --  record in the front end. Packed_Size_Known is True if so far
754                --  we can figure out the size. It is initialized to True for a
755                --  packed record, unless the record has discriminants. The
756                --  reason we eliminate the discriminated case is that we don't
757                --  know the way the back end lays out discriminated packed
758                --  records. If Packed_Size_Known is True, then Packed_Size is
759                --  the size in bits so far.
760
761                Packed_Size_Known : Boolean :=
762                                      Is_Packed (T)
763                                        and then not Has_Discriminants (T);
764
765                Packed_Size : Uint := Uint_0;
766
767             begin
768                --  Test for variant part present
769
770                if Has_Discriminants (T)
771                  and then Present (Parent (T))
772                  and then Nkind (Parent (T)) = N_Full_Type_Declaration
773                  and then Nkind (Type_Definition (Parent (T))) =
774                             N_Record_Definition
775                  and then not Null_Present (Type_Definition (Parent (T)))
776                  and then Present (Variant_Part
777                             (Component_List (Type_Definition (Parent (T)))))
778                then
779                   --  If variant part is present, and type is unconstrained,
780                   --  then we must have defaulted discriminants, or a size
781                   --  clause must be present for the type, or else the size
782                   --  is definitely not known at compile time.
783
784                   if not Is_Constrained (T)
785                     and then
786                       No (Discriminant_Default_Value
787                            (First_Discriminant (T)))
788                     and then Unknown_Esize (T)
789                   then
790                      return False;
791                   end if;
792                end if;
793
794                --  Loop through components
795
796                Comp := First_Component_Or_Discriminant (T);
797                while Present (Comp) loop
798                   Ctyp := Etype (Comp);
799
800                   --  We do not know the packed size if there is a component
801                   --  clause present (we possibly could, but this would only
802                   --  help in the case of a record with partial rep clauses.
803                   --  That's because in the case of full rep clauses, the
804                   --  size gets figured out anyway by a different circuit).
805
806                   if Present (Component_Clause (Comp)) then
807                      Packed_Size_Known := False;
808                   end if;
809
810                   --  We need to identify a component that is an array where
811                   --  the index type is an enumeration type with non-standard
812                   --  representation, and some bound of the type depends on a
813                   --  discriminant.
814
815                   --  This is because gigi computes the size by doing a
816                   --  substitution of the appropriate discriminant value in
817                   --  the size expression for the base type, and gigi is not
818                   --  clever enough to evaluate the resulting expression (which
819                   --  involves a call to rep_to_pos) at compile time.
820
821                   --  It would be nice if gigi would either recognize that
822                   --  this expression can be computed at compile time, or
823                   --  alternatively figured out the size from the subtype
824                   --  directly, where all the information is at hand ???
825
826                   if Is_Array_Type (Etype (Comp))
827                     and then Present (Packed_Array_Type (Etype (Comp)))
828                   then
829                      declare
830                         Ocomp  : constant Entity_Id :=
831                                    Original_Record_Component (Comp);
832                         OCtyp  : constant Entity_Id := Etype (Ocomp);
833                         Ind    : Node_Id;
834                         Indtyp : Entity_Id;
835                         Lo, Hi : Node_Id;
836
837                      begin
838                         Ind := First_Index (OCtyp);
839                         while Present (Ind) loop
840                            Indtyp := Etype (Ind);
841
842                            if Is_Enumeration_Type (Indtyp)
843                              and then Has_Non_Standard_Rep (Indtyp)
844                            then
845                               Lo := Type_Low_Bound  (Indtyp);
846                               Hi := Type_High_Bound (Indtyp);
847
848                               if Is_Entity_Name (Lo)
849                                 and then Ekind (Entity (Lo)) = E_Discriminant
850                               then
851                                  return False;
852
853                               elsif Is_Entity_Name (Hi)
854                                 and then Ekind (Entity (Hi)) = E_Discriminant
855                               then
856                                  return False;
857                               end if;
858                            end if;
859
860                            Next_Index (Ind);
861                         end loop;
862                      end;
863                   end if;
864
865                   --  Clearly size of record is not known if the size of one of
866                   --  the components is not known.
867
868                   if not Size_Known (Ctyp) then
869                      return False;
870                   end if;
871
872                   --  Accumulate packed size if possible
873
874                   if Packed_Size_Known then
875
876                      --  We can only deal with elementary types, since for
877                      --  non-elementary components, alignment enters into the
878                      --  picture, and we don't know enough to handle proper
879                      --  alignment in this context. Packed arrays count as
880                      --  elementary if the representation is a modular type.
881
882                      if Is_Elementary_Type (Ctyp)
883                        or else (Is_Array_Type (Ctyp)
884                                 and then Present (Packed_Array_Type (Ctyp))
885                                 and then Is_Modular_Integer_Type
886                                            (Packed_Array_Type (Ctyp)))
887                      then
888                         --  If RM_Size is known and static, then we can
889                         --  keep accumulating the packed size.
890
891                         if Known_Static_RM_Size (Ctyp) then
892
893                            --  A little glitch, to be removed sometime ???
894                            --  gigi does not understand zero sizes yet.
895
896                            if RM_Size (Ctyp) = Uint_0 then
897                               Packed_Size_Known := False;
898
899                            --  Normal case where we can keep accumulating the
900                            --  packed array size.
901
902                            else
903                               Packed_Size := Packed_Size + RM_Size (Ctyp);
904                            end if;
905
906                         --  If we have a field whose RM_Size is not known then
907                         --  we can't figure out the packed size here.
908
909                         else
910                            Packed_Size_Known := False;
911                         end if;
912
913                      --  If we have a non-elementary type we can't figure out
914                      --  the packed array size (alignment issues).
915
916                      else
917                         Packed_Size_Known := False;
918                      end if;
919                   end if;
920
921                   Next_Component_Or_Discriminant (Comp);
922                end loop;
923
924                if Packed_Size_Known then
925                   Set_Small_Size (T, Packed_Size);
926                end if;
927
928                return True;
929             end;
930
931          --  All other cases, size not known at compile time
932
933          else
934             return False;
935          end if;
936       end Size_Known;
937
938       -------------------------------------
939       -- Static_Discriminated_Components --
940       -------------------------------------
941
942       function Static_Discriminated_Components
943         (T : Entity_Id) return Boolean
944       is
945          Constraint : Elmt_Id;
946
947       begin
948          if Has_Discriminants (T)
949            and then Present (Discriminant_Constraint (T))
950            and then Present (First_Component (T))
951          then
952             Constraint := First_Elmt (Discriminant_Constraint (T));
953             while Present (Constraint) loop
954                if not Compile_Time_Known_Value (Node (Constraint)) then
955                   return False;
956                end if;
957
958                Next_Elmt (Constraint);
959             end loop;
960          end if;
961
962          return True;
963       end Static_Discriminated_Components;
964
965    --  Start of processing for Check_Compile_Time_Size
966
967    begin
968       Set_Size_Known_At_Compile_Time (T, Size_Known (T));
969    end Check_Compile_Time_Size;
970
971    -----------------------------
972    -- Check_Debug_Info_Needed --
973    -----------------------------
974
975    procedure Check_Debug_Info_Needed (T : Entity_Id) is
976    begin
977       if Debug_Info_Off (T) then
978          return;
979
980       elsif Comes_From_Source (T)
981         or else Debug_Generated_Code
982         or else Debug_Flag_VV
983         or else Needs_Debug_Info (T)
984       then
985          Set_Debug_Info_Needed (T);
986       end if;
987    end Check_Debug_Info_Needed;
988
989    ----------------------------
990    -- Check_Strict_Alignment --
991    ----------------------------
992
993    procedure Check_Strict_Alignment (E : Entity_Id) is
994       Comp  : Entity_Id;
995
996    begin
997       if Is_Tagged_Type (E) or else Is_Concurrent_Type (E) then
998          Set_Strict_Alignment (E);
999
1000       elsif Is_Array_Type (E) then
1001          Set_Strict_Alignment (E, Strict_Alignment (Component_Type (E)));
1002
1003       elsif Is_Record_Type (E) then
1004          if Is_Limited_Record (E) then
1005             Set_Strict_Alignment (E);
1006             return;
1007          end if;
1008
1009          Comp := First_Component (E);
1010
1011          while Present (Comp) loop
1012             if not Is_Type (Comp)
1013               and then (Strict_Alignment (Etype (Comp))
1014                          or else Is_Aliased (Comp))
1015             then
1016                Set_Strict_Alignment (E);
1017                return;
1018             end if;
1019
1020             Next_Component (Comp);
1021          end loop;
1022       end if;
1023    end Check_Strict_Alignment;
1024
1025    -------------------------
1026    -- Check_Unsigned_Type --
1027    -------------------------
1028
1029    procedure Check_Unsigned_Type (E : Entity_Id) is
1030       Ancestor : Entity_Id;
1031       Lo_Bound : Node_Id;
1032       Btyp     : Entity_Id;
1033
1034    begin
1035       if not Is_Discrete_Or_Fixed_Point_Type (E) then
1036          return;
1037       end if;
1038
1039       --  Do not attempt to analyze case where range was in error
1040
1041       if Error_Posted (Scalar_Range (E)) then
1042          return;
1043       end if;
1044
1045       --  The situation that is non trivial is something like
1046
1047       --     subtype x1 is integer range -10 .. +10;
1048       --     subtype x2 is x1 range 0 .. V1;
1049       --     subtype x3 is x2 range V2 .. V3;
1050       --     subtype x4 is x3 range V4 .. V5;
1051
1052       --  where Vn are variables. Here the base type is signed, but we still
1053       --  know that x4 is unsigned because of the lower bound of x2.
1054
1055       --  The only way to deal with this is to look up the ancestor chain
1056
1057       Ancestor := E;
1058       loop
1059          if Ancestor = Any_Type or else Etype (Ancestor) = Any_Type then
1060             return;
1061          end if;
1062
1063          Lo_Bound := Type_Low_Bound (Ancestor);
1064
1065          if Compile_Time_Known_Value (Lo_Bound) then
1066
1067             if Expr_Rep_Value (Lo_Bound) >= 0 then
1068                Set_Is_Unsigned_Type (E, True);
1069             end if;
1070
1071             return;
1072
1073          else
1074             Ancestor := Ancestor_Subtype (Ancestor);
1075
1076             --  If no ancestor had a static lower bound, go to base type
1077
1078             if No (Ancestor) then
1079
1080                --  Note: the reason we still check for a compile time known
1081                --  value for the base type is that at least in the case of
1082                --  generic formals, we can have bounds that fail this test,
1083                --  and there may be other cases in error situations.
1084
1085                Btyp := Base_Type (E);
1086
1087                if Btyp = Any_Type or else Etype (Btyp) = Any_Type then
1088                   return;
1089                end if;
1090
1091                Lo_Bound := Type_Low_Bound (Base_Type (E));
1092
1093                if Compile_Time_Known_Value (Lo_Bound)
1094                  and then Expr_Rep_Value (Lo_Bound) >= 0
1095                then
1096                   Set_Is_Unsigned_Type (E, True);
1097                end if;
1098
1099                return;
1100             end if;
1101          end if;
1102       end loop;
1103    end Check_Unsigned_Type;
1104
1105    -----------------------------
1106    -- Expand_Atomic_Aggregate --
1107    -----------------------------
1108
1109    procedure Expand_Atomic_Aggregate (E : Entity_Id; Typ : Entity_Id) is
1110       Loc   : constant Source_Ptr := Sloc (E);
1111       New_N : Node_Id;
1112       Temp  : Entity_Id;
1113
1114    begin
1115       if (Nkind (Parent (E)) = N_Object_Declaration
1116             or else Nkind (Parent (E)) = N_Assignment_Statement)
1117         and then Comes_From_Source (Parent (E))
1118         and then Nkind (E) = N_Aggregate
1119       then
1120          Temp :=
1121            Make_Defining_Identifier (Loc,
1122              New_Internal_Name ('T'));
1123
1124          New_N :=
1125            Make_Object_Declaration (Loc,
1126              Defining_Identifier => Temp,
1127              Object_Definition   => New_Occurrence_Of (Typ, Loc),
1128              Expression          => Relocate_Node (E));
1129          Insert_Before (Parent (E), New_N);
1130          Analyze (New_N);
1131
1132          Set_Expression (Parent (E), New_Occurrence_Of (Temp, Loc));
1133
1134          --  To prevent the temporary from being constant-folded (which would
1135          --  lead to the same piecemeal assignment on the original target)
1136          --  indicate to the back-end that the temporary is a variable with
1137          --  real storage. See description of this flag in Einfo, and the notes
1138          --  on N_Assignment_Statement and N_Object_Declaration in Sinfo.
1139
1140          Set_Is_True_Constant (Temp, False);
1141       end if;
1142    end Expand_Atomic_Aggregate;
1143
1144    ----------------
1145    -- Freeze_All --
1146    ----------------
1147
1148    --  Note: the easy coding for this procedure would be to just build a
1149    --  single list of freeze nodes and then insert them and analyze them
1150    --  all at once. This won't work, because the analysis of earlier freeze
1151    --  nodes may recursively freeze types which would otherwise appear later
1152    --  on in the freeze list. So we must analyze and expand the freeze nodes
1153    --  as they are generated.
1154
1155    procedure Freeze_All (From : Entity_Id; After : in out Node_Id) is
1156       Loc   : constant Source_Ptr := Sloc (After);
1157       E     : Entity_Id;
1158       Decl  : Node_Id;
1159
1160       procedure Freeze_All_Ent (From : Entity_Id; After : in out Node_Id);
1161       --  This is the internal recursive routine that does freezing of entities
1162       --  (but NOT the analysis of default expressions, which should not be
1163       --  recursive, we don't want to analyze those till we are sure that ALL
1164       --  the types are frozen).
1165
1166       --------------------
1167       -- Freeze_All_Ent --
1168       --------------------
1169
1170       procedure Freeze_All_Ent
1171         (From  : Entity_Id;
1172          After : in out Node_Id)
1173       is
1174          E     : Entity_Id;
1175          Flist : List_Id;
1176          Lastn : Node_Id;
1177
1178          procedure Process_Flist;
1179          --  If freeze nodes are present, insert and analyze, and reset cursor
1180          --  for next insertion.
1181
1182          -------------------
1183          -- Process_Flist --
1184          -------------------
1185
1186          procedure Process_Flist is
1187          begin
1188             if Is_Non_Empty_List (Flist) then
1189                Lastn := Next (After);
1190                Insert_List_After_And_Analyze (After, Flist);
1191
1192                if Present (Lastn) then
1193                   After := Prev (Lastn);
1194                else
1195                   After := Last (List_Containing (After));
1196                end if;
1197             end if;
1198          end Process_Flist;
1199
1200       --  Start or processing for Freeze_All_Ent
1201
1202       begin
1203          E := From;
1204          while Present (E) loop
1205
1206             --  If the entity is an inner package which is not a package
1207             --  renaming, then its entities must be frozen at this point. Note
1208             --  that such entities do NOT get frozen at the end of the nested
1209             --  package itself (only library packages freeze).
1210
1211             --  Same is true for task declarations, where anonymous records
1212             --  created for entry parameters must be frozen.
1213
1214             if Ekind (E) = E_Package
1215               and then No (Renamed_Object (E))
1216               and then not Is_Child_Unit (E)
1217               and then not Is_Frozen (E)
1218             then
1219                Push_Scope (E);
1220                Install_Visible_Declarations (E);
1221                Install_Private_Declarations (E);
1222
1223                Freeze_All (First_Entity (E), After);
1224
1225                End_Package_Scope (E);
1226
1227             elsif Ekind (E) in Task_Kind
1228               and then
1229                 (Nkind (Parent (E)) = N_Task_Type_Declaration
1230                    or else
1231                  Nkind (Parent (E)) = N_Single_Task_Declaration)
1232             then
1233                Push_Scope (E);
1234                Freeze_All (First_Entity (E), After);
1235                End_Scope;
1236
1237             --  For a derived tagged type, we must ensure that all the
1238             --  primitive operations of the parent have been frozen, so that
1239             --  their addresses will be in the parent's dispatch table at the
1240             --  point it is inherited.
1241
1242             elsif Ekind (E) = E_Record_Type
1243               and then Is_Tagged_Type (E)
1244               and then Is_Tagged_Type (Etype (E))
1245               and then Is_Derived_Type (E)
1246             then
1247                declare
1248                   Prim_List : constant Elist_Id :=
1249                                Primitive_Operations (Etype (E));
1250
1251                   Prim : Elmt_Id;
1252                   Subp : Entity_Id;
1253
1254                begin
1255                   Prim  := First_Elmt (Prim_List);
1256
1257                   while Present (Prim) loop
1258                      Subp := Node (Prim);
1259
1260                      if Comes_From_Source (Subp)
1261                        and then not Is_Frozen (Subp)
1262                      then
1263                         Flist := Freeze_Entity (Subp, Loc);
1264                         Process_Flist;
1265                      end if;
1266
1267                      Next_Elmt (Prim);
1268                   end loop;
1269                end;
1270             end if;
1271
1272             if not Is_Frozen (E) then
1273                Flist := Freeze_Entity (E, Loc);
1274                Process_Flist;
1275             end if;
1276
1277             --  If an incomplete type is still not frozen, this may be a
1278             --  premature freezing because of a body declaration that follows.
1279             --  Indicate where the freezing took place.
1280
1281             --  If the freezing is caused by the end of the current declarative
1282             --  part, it is a Taft Amendment type, and there is no error.
1283
1284             if not Is_Frozen (E)
1285               and then Ekind (E) = E_Incomplete_Type
1286             then
1287                declare
1288                   Bod : constant Node_Id := Next (After);
1289
1290                begin
1291                   if (Nkind (Bod) = N_Subprogram_Body
1292                         or else Nkind (Bod) = N_Entry_Body
1293                         or else Nkind (Bod) = N_Package_Body
1294                         or else Nkind (Bod) = N_Protected_Body
1295                         or else Nkind (Bod) = N_Task_Body
1296                         or else Nkind (Bod) in N_Body_Stub)
1297                      and then
1298                        List_Containing (After) = List_Containing (Parent (E))
1299                   then
1300                      Error_Msg_Sloc := Sloc (Next (After));
1301                      Error_Msg_NE
1302                        ("type& is frozen# before its full declaration",
1303                          Parent (E), E);
1304                   end if;
1305                end;
1306             end if;
1307
1308             Next_Entity (E);
1309          end loop;
1310       end Freeze_All_Ent;
1311
1312    --  Start of processing for Freeze_All
1313
1314    begin
1315       Freeze_All_Ent (From, After);
1316
1317       --  Now that all types are frozen, we can deal with default expressions
1318       --  that require us to build a default expression functions. This is the
1319       --  point at which such functions are constructed (after all types that
1320       --  might be used in such expressions have been frozen).
1321
1322       --  We also add finalization chains to access types whose designated
1323       --  types are controlled. This is normally done when freezing the type,
1324       --  but this misses recursive type definitions where the later members
1325       --  of the recursion introduce controlled components.
1326
1327       --  Loop through entities
1328
1329       E := From;
1330       while Present (E) loop
1331          if Is_Subprogram (E) then
1332
1333             if not Default_Expressions_Processed (E) then
1334                Process_Default_Expressions (E, After);
1335             end if;
1336
1337             if not Has_Completion (E) then
1338                Decl := Unit_Declaration_Node (E);
1339
1340                if Nkind (Decl) = N_Subprogram_Renaming_Declaration then
1341                   Build_And_Analyze_Renamed_Body (Decl, E, After);
1342
1343                elsif Nkind (Decl) = N_Subprogram_Declaration
1344                  and then Present (Corresponding_Body (Decl))
1345                  and then
1346                    Nkind (Unit_Declaration_Node (Corresponding_Body (Decl)))
1347                                           = N_Subprogram_Renaming_Declaration
1348                then
1349                   Build_And_Analyze_Renamed_Body
1350                     (Decl, Corresponding_Body (Decl), After);
1351                end if;
1352             end if;
1353
1354          elsif Ekind (E) in Task_Kind
1355            and then
1356              (Nkind (Parent (E)) = N_Task_Type_Declaration
1357                 or else
1358               Nkind (Parent (E)) = N_Single_Task_Declaration)
1359          then
1360             declare
1361                Ent : Entity_Id;
1362             begin
1363                Ent := First_Entity (E);
1364
1365                while Present (Ent) loop
1366
1367                   if Is_Entry (Ent)
1368                     and then not Default_Expressions_Processed (Ent)
1369                   then
1370                      Process_Default_Expressions (Ent, After);
1371                   end if;
1372
1373                   Next_Entity (Ent);
1374                end loop;
1375             end;
1376
1377          elsif Is_Access_Type (E)
1378            and then Comes_From_Source (E)
1379            and then Ekind (Directly_Designated_Type (E)) = E_Incomplete_Type
1380            and then Controlled_Type (Designated_Type (E))
1381            and then No (Associated_Final_Chain (E))
1382          then
1383             Build_Final_List (Parent (E), E);
1384          end if;
1385
1386          Next_Entity (E);
1387       end loop;
1388    end Freeze_All;
1389
1390    -----------------------
1391    -- Freeze_And_Append --
1392    -----------------------
1393
1394    procedure Freeze_And_Append
1395      (Ent    : Entity_Id;
1396       Loc    : Source_Ptr;
1397       Result : in out List_Id)
1398    is
1399       L : constant List_Id := Freeze_Entity (Ent, Loc);
1400    begin
1401       if Is_Non_Empty_List (L) then
1402          if Result = No_List then
1403             Result := L;
1404          else
1405             Append_List (L, Result);
1406          end if;
1407       end if;
1408    end Freeze_And_Append;
1409
1410    -------------------
1411    -- Freeze_Before --
1412    -------------------
1413
1414    procedure Freeze_Before (N : Node_Id; T : Entity_Id) is
1415       Freeze_Nodes : constant List_Id := Freeze_Entity (T, Sloc (N));
1416    begin
1417       if Is_Non_Empty_List (Freeze_Nodes) then
1418          Insert_Actions (N, Freeze_Nodes);
1419       end if;
1420    end Freeze_Before;
1421
1422    -------------------
1423    -- Freeze_Entity --
1424    -------------------
1425
1426    function Freeze_Entity (E : Entity_Id; Loc : Source_Ptr) return List_Id is
1427       Test_E : Entity_Id := E;
1428       Comp   : Entity_Id;
1429       F_Node : Node_Id;
1430       Result : List_Id;
1431       Indx   : Node_Id;
1432       Formal : Entity_Id;
1433       Atype  : Entity_Id;
1434
1435       procedure Check_Current_Instance (Comp_Decl : Node_Id);
1436       --  Check that an Access or Unchecked_Access attribute with a prefix
1437       --  which is the current instance type can only be applied when the type
1438       --  is limited.
1439
1440       function After_Last_Declaration return Boolean;
1441       --  If Loc is a freeze_entity that appears after the last declaration
1442       --  in the scope, inhibit error messages on late completion.
1443
1444       procedure Freeze_Record_Type (Rec : Entity_Id);
1445       --  Freeze each component, handle some representation clauses, and freeze
1446       --  primitive operations if this is a tagged type.
1447
1448       ----------------------------
1449       -- After_Last_Declaration --
1450       ----------------------------
1451
1452       function After_Last_Declaration return Boolean is
1453          Spec  : constant Node_Id := Parent (Current_Scope);
1454       begin
1455          if Nkind (Spec) = N_Package_Specification then
1456             if Present (Private_Declarations (Spec)) then
1457                return Loc >= Sloc (Last (Private_Declarations (Spec)));
1458             elsif Present (Visible_Declarations (Spec)) then
1459                return Loc >= Sloc (Last (Visible_Declarations (Spec)));
1460             else
1461                return False;
1462             end if;
1463          else
1464             return False;
1465          end if;
1466       end After_Last_Declaration;
1467
1468       ----------------------------
1469       -- Check_Current_Instance --
1470       ----------------------------
1471
1472       procedure Check_Current_Instance (Comp_Decl : Node_Id) is
1473
1474          Rec_Type : constant Entity_Id :=
1475                       Scope (Defining_Identifier (Comp_Decl));
1476
1477          Decl : constant Node_Id := Parent (Rec_Type);
1478
1479          function Process (N : Node_Id) return Traverse_Result;
1480          --  Process routine to apply check to given node
1481
1482          -------------
1483          -- Process --
1484          -------------
1485
1486          function Process (N : Node_Id) return Traverse_Result is
1487          begin
1488             case Nkind (N) is
1489                when N_Attribute_Reference =>
1490                   if (Attribute_Name (N) = Name_Access
1491                         or else
1492                       Attribute_Name (N) = Name_Unchecked_Access)
1493                     and then Is_Entity_Name (Prefix (N))
1494                     and then Is_Type (Entity (Prefix (N)))
1495                     and then Entity (Prefix (N)) = E
1496                   then
1497                      Error_Msg_N
1498                        ("current instance must be a limited type", Prefix (N));
1499                      return Abandon;
1500                   else
1501                      return OK;
1502                   end if;
1503
1504                when others => return OK;
1505             end case;
1506          end Process;
1507
1508          procedure Traverse is new Traverse_Proc (Process);
1509
1510       --  Start of processing for Check_Current_Instance
1511
1512       begin
1513          --  In Ada95, the (imprecise) rule is that the current instance of a
1514          --  limited type is aliased. In Ada2005, limitedness must be explicit:
1515          --  either a tagged type, or a limited record.
1516
1517          if Is_Limited_Type (Rec_Type)
1518            and then
1519              (Ada_Version < Ada_05
1520                or else Is_Tagged_Type (Rec_Type))
1521          then
1522             return;
1523
1524          elsif Nkind (Decl) = N_Full_Type_Declaration
1525            and then Limited_Present (Type_Definition (Decl))
1526          then
1527             return;
1528
1529          else
1530             Traverse (Comp_Decl);
1531          end if;
1532       end Check_Current_Instance;
1533
1534       ------------------------
1535       -- Freeze_Record_Type --
1536       ------------------------
1537
1538       procedure Freeze_Record_Type (Rec : Entity_Id) is
1539          Comp : Entity_Id;
1540          IR   : Node_Id;
1541          ADC  : Node_Id;
1542          Prev : Entity_Id;
1543
1544          Junk : Boolean;
1545          pragma Warnings (Off, Junk);
1546
1547          Unplaced_Component : Boolean := False;
1548          --  Set True if we find at least one component with no component
1549          --  clause (used to warn about useless Pack pragmas).
1550
1551          Placed_Component : Boolean := False;
1552          --  Set True if we find at least one component with a component
1553          --  clause (used to warn about useless Bit_Order pragmas).
1554
1555          function Check_Allocator (N : Node_Id) return Node_Id;
1556          --  If N is an allocator, possibly wrapped in one or more level of
1557          --  qualified expression(s), return the inner allocator node, else
1558          --  return Empty.
1559
1560          procedure Check_Itype (Typ : Entity_Id);
1561          --  If the component subtype is an access to a constrained subtype of
1562          --  an already frozen type, make the subtype frozen as well. It might
1563          --  otherwise be frozen in the wrong scope, and a freeze node on
1564          --  subtype has no effect. Similarly, if the component subtype is a
1565          --  regular (not protected) access to subprogram, set the anonymous
1566          --  subprogram type to frozen as well, to prevent an out-of-scope
1567          --  freeze node at some eventual point of call. Protected operations
1568          --  are handled elsewhere.
1569
1570          ---------------------
1571          -- Check_Allocator --
1572          ---------------------
1573
1574          function Check_Allocator (N : Node_Id) return Node_Id is
1575             Inner : Node_Id;
1576          begin
1577             Inner := N;
1578             loop
1579                if Nkind (Inner) = N_Allocator then
1580                   return Inner;
1581                elsif Nkind (Inner) = N_Qualified_Expression then
1582                   Inner := Expression (Inner);
1583                else
1584                   return Empty;
1585                end if;
1586             end loop;
1587          end Check_Allocator;
1588
1589          -----------------
1590          -- Check_Itype --
1591          -----------------
1592
1593          procedure Check_Itype (Typ : Entity_Id) is
1594             Desig : constant Entity_Id := Designated_Type (Typ);
1595
1596          begin
1597             if not Is_Frozen (Desig)
1598               and then Is_Frozen (Base_Type (Desig))
1599             then
1600                Set_Is_Frozen (Desig);
1601
1602                --  In addition, add an Itype_Reference to ensure that the
1603                --  access subtype is elaborated early enough. This cannot be
1604                --  done if the subtype may depend on discriminants.
1605
1606                if Ekind (Comp) = E_Component
1607                  and then Is_Itype (Etype (Comp))
1608                  and then not Has_Discriminants (Rec)
1609                then
1610                   IR := Make_Itype_Reference (Sloc (Comp));
1611                   Set_Itype (IR, Desig);
1612
1613                   if No (Result) then
1614                      Result := New_List (IR);
1615                   else
1616                      Append (IR, Result);
1617                   end if;
1618                end if;
1619
1620             elsif Ekind (Typ) = E_Anonymous_Access_Subprogram_Type
1621               and then Convention (Desig) /= Convention_Protected
1622             then
1623                Set_Is_Frozen (Desig);
1624             end if;
1625          end Check_Itype;
1626
1627       --  Start of processing for Freeze_Record_Type
1628
1629       begin
1630          --  If this is a subtype of a controlled type, declared without a
1631          --  constraint, the _controller may not appear in the component list
1632          --  if the parent was not frozen at the point of subtype declaration.
1633          --  Inherit the _controller component now.
1634
1635          if Rec /= Base_Type (Rec)
1636            and then Has_Controlled_Component (Rec)
1637          then
1638             if Nkind (Parent (Rec)) = N_Subtype_Declaration
1639               and then Is_Entity_Name (Subtype_Indication (Parent (Rec)))
1640             then
1641                Set_First_Entity (Rec, First_Entity (Base_Type (Rec)));
1642
1643             --  If this is an internal type without a declaration, as for
1644             --  record component, the base type may not yet be frozen, and its
1645             --  controller has not been created. Add an explicit freeze node
1646             --  for the itype, so it will be frozen after the base type. This
1647             --  freeze node is used to communicate with the expander, in order
1648             --  to create the controller for the enclosing record, and it is
1649             --  deleted afterwards (see exp_ch3). It must not be created when
1650             --  expansion is off, because it might appear in the wrong context
1651             --  for the back end.
1652
1653             elsif Is_Itype (Rec)
1654               and then Has_Delayed_Freeze (Base_Type (Rec))
1655               and then
1656                 Nkind (Associated_Node_For_Itype (Rec)) =
1657                                                      N_Component_Declaration
1658               and then Expander_Active
1659             then
1660                Ensure_Freeze_Node (Rec);
1661             end if;
1662          end if;
1663
1664          --  Freeze components and embedded subtypes
1665
1666          Comp := First_Entity (Rec);
1667          Prev := Empty;
1668          while Present (Comp) loop
1669
1670             --  First handle the (real) component case
1671
1672             if Ekind (Comp) = E_Component
1673               or else Ekind (Comp) = E_Discriminant
1674             then
1675                declare
1676                   CC : constant Node_Id := Component_Clause (Comp);
1677
1678                begin
1679                   --  Freezing a record type freezes the type of each of its
1680                   --  components. However, if the type of the component is
1681                   --  part of this record, we do not want or need a separate
1682                   --  Freeze_Node. Note that Is_Itype is wrong because that's
1683                   --  also set in private type cases. We also can't check for
1684                   --  the Scope being exactly Rec because of private types and
1685                   --  record extensions.
1686
1687                   if Is_Itype (Etype (Comp))
1688                     and then Is_Record_Type (Underlying_Type
1689                                              (Scope (Etype (Comp))))
1690                   then
1691                      Undelay_Type (Etype (Comp));
1692                   end if;
1693
1694                   Freeze_And_Append (Etype (Comp), Loc, Result);
1695
1696                   --  Check for error of component clause given for variable
1697                   --  sized type. We have to delay this test till this point,
1698                   --  since the component type has to be frozen for us to know
1699                   --  if it is variable length. We omit this test in a generic
1700                   --  context, it will be applied at instantiation time.
1701
1702                   if Present (CC) then
1703                      Placed_Component := True;
1704
1705                      if Inside_A_Generic then
1706                         null;
1707
1708                      elsif not
1709                        Size_Known_At_Compile_Time
1710                          (Underlying_Type (Etype (Comp)))
1711                      then
1712                         Error_Msg_N
1713                           ("component clause not allowed for variable " &
1714                            "length component", CC);
1715                      end if;
1716
1717                   else
1718                      Unplaced_Component := True;
1719                   end if;
1720
1721                   --  Case of component requires byte alignment
1722
1723                   if Must_Be_On_Byte_Boundary (Etype (Comp)) then
1724
1725                      --  Set the enclosing record to also require byte align
1726
1727                      Set_Must_Be_On_Byte_Boundary (Rec);
1728
1729                      --  Check for component clause that is inconsistent with
1730                      --  the required byte boundary alignment.
1731
1732                      if Present (CC)
1733                        and then Normalized_First_Bit (Comp) mod
1734                                   System_Storage_Unit /= 0
1735                      then
1736                         Error_Msg_N
1737                           ("component & must be byte aligned",
1738                            Component_Name (Component_Clause (Comp)));
1739                      end if;
1740                   end if;
1741
1742                   --  If component clause is present, then deal with the non-
1743                   --  default bit order case for Ada 95 mode. The required
1744                   --  processing for Ada 2005 mode is handled separately after
1745                   --  processing all components.
1746
1747                   --  We only do this processing for the base type, and in
1748                   --  fact that's important, since otherwise if there are
1749                   --  record subtypes, we could reverse the bits once for
1750                   --  each subtype, which would be incorrect.
1751
1752                   if Present (CC)
1753                     and then Reverse_Bit_Order (Rec)
1754                     and then Ekind (E) = E_Record_Type
1755                     and then Ada_Version <= Ada_95
1756                   then
1757                      declare
1758                         CFB : constant Uint    := Component_Bit_Offset (Comp);
1759                         CSZ : constant Uint    := Esize (Comp);
1760                         CLC : constant Node_Id := Component_Clause (Comp);
1761                         Pos : constant Node_Id := Position (CLC);
1762                         FB  : constant Node_Id := First_Bit (CLC);
1763
1764                         Storage_Unit_Offset : constant Uint :=
1765                                                 CFB / System_Storage_Unit;
1766
1767                         Start_Bit : constant Uint :=
1768                                       CFB mod System_Storage_Unit;
1769
1770                      begin
1771                         --  Cases where field goes over storage unit boundary
1772
1773                         if Start_Bit + CSZ > System_Storage_Unit then
1774
1775                            --  Allow multi-byte field but generate warning
1776
1777                            if Start_Bit mod System_Storage_Unit = 0
1778                              and then CSZ mod System_Storage_Unit = 0
1779                            then
1780                               Error_Msg_N
1781                                 ("multi-byte field specified with non-standard"
1782                                  & " Bit_Order?", CLC);
1783
1784                               if Bytes_Big_Endian then
1785                                  Error_Msg_N
1786                                    ("bytes are not reversed "
1787                                     & "(component is big-endian)?", CLC);
1788                               else
1789                                  Error_Msg_N
1790                                    ("bytes are not reversed "
1791                                     & "(component is little-endian)?", CLC);
1792                               end if;
1793
1794                               --  Do not allow non-contiguous field
1795
1796                            else
1797                               Error_Msg_N
1798                                 ("attempt to specify non-contiguous field"
1799                                  & " not permitted", CLC);
1800                               Error_Msg_N
1801                                 ("\(caused by non-standard Bit_Order "
1802                                  & "specified)", CLC);
1803                            end if;
1804
1805                            --  Case where field fits in one storage unit
1806
1807                         else
1808                            --  Give warning if suspicious component clause
1809
1810                            if Intval (FB) >= System_Storage_Unit
1811                              and then Warn_On_Reverse_Bit_Order
1812                            then
1813                               Error_Msg_N
1814                                 ("?Bit_Order clause does not affect " &
1815                                  "byte ordering", Pos);
1816                               Error_Msg_Uint_1 :=
1817                                 Intval (Pos) + Intval (FB) /
1818                                   System_Storage_Unit;
1819                               Error_Msg_N
1820                                 ("?position normalized to ^ before bit " &
1821                                  "order interpreted", Pos);
1822                            end if;
1823
1824                            --  Here is where we fix up the Component_Bit_Offset
1825                            --  value to account for the reverse bit order.
1826                            --  Some examples of what needs to be done are:
1827
1828                            --    First_Bit .. Last_Bit     Component_Bit_Offset
1829                            --      old          new          old       new
1830
1831                            --     0 .. 0       7 .. 7         0         7
1832                            --     0 .. 1       6 .. 7         0         6
1833                            --     0 .. 2       5 .. 7         0         5
1834                            --     0 .. 7       0 .. 7         0         4
1835
1836                            --     1 .. 1       6 .. 6         1         6
1837                            --     1 .. 4       3 .. 6         1         3
1838                            --     4 .. 7       0 .. 3         4         0
1839
1840                            --  The general rule is that the first bit is
1841                            --  is obtained by subtracting the old ending bit
1842                            --  from storage_unit - 1.
1843
1844                            Set_Component_Bit_Offset
1845                              (Comp,
1846                               (Storage_Unit_Offset * System_Storage_Unit) +
1847                                 (System_Storage_Unit - 1) -
1848                                   (Start_Bit + CSZ - 1));
1849
1850                            Set_Normalized_First_Bit
1851                              (Comp,
1852                                 Component_Bit_Offset (Comp) mod
1853                                   System_Storage_Unit);
1854                         end if;
1855                      end;
1856                   end if;
1857                end;
1858             end if;
1859
1860             --  If the component is an Itype with Delayed_Freeze and is either
1861             --  a record or array subtype and its base type has not yet been
1862             --  frozen, we must remove this from the entity list of this
1863             --  record and put it on the entity list of the scope of its base
1864             --  type. Note that we know that this is not the type of a
1865             --  component since we cleared Has_Delayed_Freeze for it in the
1866             --  previous loop. Thus this must be the Designated_Type of an
1867             --  access type, which is the type of a component.
1868
1869             if Is_Itype (Comp)
1870               and then Is_Type (Scope (Comp))
1871               and then Is_Composite_Type (Comp)
1872               and then Base_Type (Comp) /= Comp
1873               and then Has_Delayed_Freeze (Comp)
1874               and then not Is_Frozen (Base_Type (Comp))
1875             then
1876                declare
1877                   Will_Be_Frozen : Boolean := False;
1878                   S              : Entity_Id;
1879
1880                begin
1881                   --  We have a pretty bad kludge here. Suppose Rec is subtype
1882                   --  being defined in a subprogram that's created as part of
1883                   --  the freezing of Rec'Base. In that case, we know that
1884                   --  Comp'Base must have already been frozen by the time we
1885                   --  get to elaborate this because Gigi doesn't elaborate any
1886                   --  bodies until it has elaborated all of the declarative
1887                   --  part. But Is_Frozen will not be set at this point because
1888                   --  we are processing code in lexical order.
1889
1890                   --  We detect this case by going up the Scope chain of Rec
1891                   --  and seeing if we have a subprogram scope before reaching
1892                   --  the top of the scope chain or that of Comp'Base. If we
1893                   --  do, then mark that Comp'Base will actually be frozen. If
1894                   --  so, we merely undelay it.
1895
1896                   S := Scope (Rec);
1897                   while Present (S) loop
1898                      if Is_Subprogram (S) then
1899                         Will_Be_Frozen := True;
1900                         exit;
1901                      elsif S = Scope (Base_Type (Comp)) then
1902                         exit;
1903                      end if;
1904
1905                      S := Scope (S);
1906                   end loop;
1907
1908                   if Will_Be_Frozen then
1909                      Undelay_Type (Comp);
1910                   else
1911                      if Present (Prev) then
1912                         Set_Next_Entity (Prev, Next_Entity (Comp));
1913                      else
1914                         Set_First_Entity (Rec, Next_Entity (Comp));
1915                      end if;
1916
1917                      --  Insert in entity list of scope of base type (which
1918                      --  must be an enclosing scope, because still unfrozen).
1919
1920                      Append_Entity (Comp, Scope (Base_Type (Comp)));
1921                   end if;
1922                end;
1923
1924             --  If the component is an access type with an allocator as default
1925             --  value, the designated type will be frozen by the corresponding
1926             --  expression in init_proc. In order to place the freeze node for
1927             --  the designated type before that for the current record type,
1928             --  freeze it now.
1929
1930             --  Same process if the component is an array of access types,
1931             --  initialized with an aggregate. If the designated type is
1932             --  private, it cannot contain allocators, and it is premature
1933             --  to freeze the type, so we check for this as well.
1934
1935             elsif Is_Access_Type (Etype (Comp))
1936               and then Present (Parent (Comp))
1937               and then Present (Expression (Parent (Comp)))
1938             then
1939                declare
1940                   Alloc : constant Node_Id :=
1941                             Check_Allocator (Expression (Parent (Comp)));
1942
1943                begin
1944                   if Present (Alloc) then
1945
1946                      --  If component is pointer to a classwide type, freeze
1947                      --  the specific type in the expression being allocated.
1948                      --  The expression may be a subtype indication, in which
1949                      --  case freeze the subtype mark.
1950
1951                      if Is_Class_Wide_Type
1952                           (Designated_Type (Etype (Comp)))
1953                      then
1954                         if Is_Entity_Name (Expression (Alloc)) then
1955                            Freeze_And_Append
1956                              (Entity (Expression (Alloc)), Loc, Result);
1957                         elsif
1958                           Nkind (Expression (Alloc)) = N_Subtype_Indication
1959                         then
1960                            Freeze_And_Append
1961                             (Entity (Subtype_Mark (Expression (Alloc))),
1962                               Loc, Result);
1963                         end if;
1964
1965                      elsif Is_Itype (Designated_Type (Etype (Comp))) then
1966                         Check_Itype (Etype (Comp));
1967
1968                      else
1969                         Freeze_And_Append
1970                           (Designated_Type (Etype (Comp)), Loc, Result);
1971                      end if;
1972                   end if;
1973                end;
1974
1975             elsif Is_Access_Type (Etype (Comp))
1976               and then Is_Itype (Designated_Type (Etype (Comp)))
1977             then
1978                Check_Itype (Etype (Comp));
1979
1980             elsif Is_Array_Type (Etype (Comp))
1981               and then Is_Access_Type (Component_Type (Etype (Comp)))
1982               and then Present (Parent (Comp))
1983               and then Nkind (Parent (Comp)) = N_Component_Declaration
1984               and then Present (Expression (Parent (Comp)))
1985               and then Nkind (Expression (Parent (Comp))) = N_Aggregate
1986               and then Is_Fully_Defined
1987                  (Designated_Type (Component_Type (Etype (Comp))))
1988             then
1989                Freeze_And_Append
1990                  (Designated_Type
1991                    (Component_Type (Etype (Comp))), Loc, Result);
1992             end if;
1993
1994             Prev := Comp;
1995             Next_Entity (Comp);
1996          end loop;
1997
1998          --  Deal with pragma Bit_Order
1999
2000          if Reverse_Bit_Order (Rec) and then Base_Type (Rec) = Rec then
2001             if not Placed_Component then
2002                ADC :=
2003                  Get_Attribute_Definition_Clause (Rec, Attribute_Bit_Order);
2004                Error_Msg_N
2005                  ("?Bit_Order specification has no effect", ADC);
2006                Error_Msg_N
2007                  ("\?since no component clauses were specified", ADC);
2008
2009             --  Here is where we do Ada 2005 processing for bit order (the Ada
2010             --  95 case was already taken care of above).
2011
2012             elsif Ada_Version >= Ada_05 then
2013                Adjust_Record_For_Reverse_Bit_Order (Rec);
2014             end if;
2015          end if;
2016
2017          --  Set OK_To_Reorder_Components depending on debug flags
2018
2019          if Rec = Base_Type (Rec)
2020            and then Convention (Rec) = Convention_Ada
2021          then
2022             if (Has_Discriminants (Rec) and then Debug_Flag_Dot_V)
2023                   or else
2024                (not Has_Discriminants (Rec) and then Debug_Flag_Dot_R)
2025             then
2026                Set_OK_To_Reorder_Components (Rec);
2027             end if;
2028          end if;
2029
2030          --  Check for useless pragma Pack when all components placed. We only
2031          --  do this check for record types, not subtypes, since a subtype may
2032          --  have all its components placed, and it still makes perfectly good
2033          --  sense to pack other subtypes or the parent type. We do not give
2034          --  this warning if Optimize_Alignment is set to Space, since the
2035          --  pragma Pack does have an effect in this case (it always resets
2036          --  the alignment to one).
2037
2038          if Ekind (Rec) = E_Record_Type
2039            and then Is_Packed (Rec)
2040            and then not Unplaced_Component
2041            and then Optimize_Alignment /= 'S'
2042          then
2043             --  Reset packed status. Probably not necessary, but we do it so
2044             --  that there is no chance of the back end doing something strange
2045             --  with this redundant indication of packing.
2046
2047             Set_Is_Packed (Rec, False);
2048
2049             --  Give warning if redundant constructs warnings on
2050
2051             if Warn_On_Redundant_Constructs then
2052                Error_Msg_N
2053                  ("?pragma Pack has no effect, no unplaced components",
2054                   Get_Rep_Pragma (Rec, Name_Pack));
2055             end if;
2056          end if;
2057
2058          --  If this is the record corresponding to a remote type, freeze the
2059          --  remote type here since that is what we are semantically freezing.
2060          --  This prevents the freeze node for that type in an inner scope.
2061
2062          --  Also, Check for controlled components and unchecked unions.
2063          --  Finally, enforce the restriction that access attributes with a
2064          --  current instance prefix can only apply to limited types.
2065
2066          if  Ekind (Rec) = E_Record_Type then
2067             if Present (Corresponding_Remote_Type (Rec)) then
2068                Freeze_And_Append
2069                  (Corresponding_Remote_Type (Rec), Loc, Result);
2070             end if;
2071
2072             Comp := First_Component (Rec);
2073             while Present (Comp) loop
2074                if Has_Controlled_Component (Etype (Comp))
2075                  or else (Chars (Comp) /= Name_uParent
2076                            and then Is_Controlled (Etype (Comp)))
2077                  or else (Is_Protected_Type (Etype (Comp))
2078                            and then Present
2079                              (Corresponding_Record_Type (Etype (Comp)))
2080                            and then Has_Controlled_Component
2081                              (Corresponding_Record_Type (Etype (Comp))))
2082                then
2083                   Set_Has_Controlled_Component (Rec);
2084                   exit;
2085                end if;
2086
2087                if Has_Unchecked_Union (Etype (Comp)) then
2088                   Set_Has_Unchecked_Union (Rec);
2089                end if;
2090
2091                if Has_Per_Object_Constraint (Comp) then
2092
2093                   --  Scan component declaration for likely misuses of current
2094                   --  instance, either in a constraint or a default expression.
2095
2096                   Check_Current_Instance (Parent (Comp));
2097                end if;
2098
2099                Next_Component (Comp);
2100             end loop;
2101          end if;
2102
2103          Set_Component_Alignment_If_Not_Set (Rec);
2104
2105          --  For first subtypes, check if there are any fixed-point fields with
2106          --  component clauses, where we must check the size. This is not done
2107          --  till the freeze point, since for fixed-point types, we do not know
2108          --  the size until the type is frozen. Similar processing applies to
2109          --  bit packed arrays.
2110
2111          if Is_First_Subtype (Rec) then
2112             Comp := First_Component (Rec);
2113
2114             while Present (Comp) loop
2115                if Present (Component_Clause (Comp))
2116                  and then (Is_Fixed_Point_Type (Etype (Comp))
2117                              or else
2118                            Is_Bit_Packed_Array (Etype (Comp)))
2119                then
2120                   Check_Size
2121                     (Component_Name (Component_Clause (Comp)),
2122                      Etype (Comp),
2123                      Esize (Comp),
2124                      Junk);
2125                end if;
2126
2127                Next_Component (Comp);
2128             end loop;
2129          end if;
2130
2131          --  Generate warning for applying C or C++ convention to a record
2132          --  with discriminants. This is suppressed for the unchecked union
2133          --  case, since the whole point in this case is interface C. We also
2134          --  do not generate this within instantiations, since we will have
2135          --  generated a message on the template.
2136
2137          if Has_Discriminants (E)
2138            and then not Is_Unchecked_Union (E)
2139            and then (Convention (E) = Convention_C
2140                        or else
2141                      Convention (E) = Convention_CPP)
2142            and then Comes_From_Source (E)
2143            and then not In_Instance
2144            and then not Has_Warnings_Off (E)
2145            and then not Has_Warnings_Off (Base_Type (E))
2146          then
2147             declare
2148                Cprag : constant Node_Id := Get_Rep_Pragma (E, Name_Convention);
2149                A2    : Node_Id;
2150
2151             begin
2152                if Present (Cprag) then
2153                   A2 := Next (First (Pragma_Argument_Associations (Cprag)));
2154
2155                   if Convention (E) = Convention_C then
2156                      Error_Msg_N
2157                        ("?variant record has no direct equivalent in C", A2);
2158                   else
2159                      Error_Msg_N
2160                        ("?variant record has no direct equivalent in C++", A2);
2161                   end if;
2162
2163                   Error_Msg_NE
2164                     ("\?use of convention for type& is dubious", A2, E);
2165                end if;
2166             end;
2167          end if;
2168       end Freeze_Record_Type;
2169
2170    --  Start of processing for Freeze_Entity
2171
2172    begin
2173       --  We are going to test for various reasons why this entity need not be
2174       --  frozen here, but in the case of an Itype that's defined within a
2175       --  record, that test actually applies to the record.
2176
2177       if Is_Itype (E) and then Is_Record_Type (Scope (E)) then
2178          Test_E := Scope (E);
2179       elsif Is_Itype (E) and then Present (Underlying_Type (Scope (E)))
2180         and then Is_Record_Type (Underlying_Type (Scope (E)))
2181       then
2182          Test_E := Underlying_Type (Scope (E));
2183       end if;
2184
2185       --  Do not freeze if already frozen since we only need one freeze node
2186
2187       if Is_Frozen (E) then
2188          return No_List;
2189
2190       --  It is improper to freeze an external entity within a generic because
2191       --  its freeze node will appear in a non-valid context. The entity will
2192       --  be frozen in the proper scope after the current generic is analyzed.
2193
2194       elsif Inside_A_Generic and then External_Ref_In_Generic (Test_E) then
2195          return No_List;
2196
2197       --  Do not freeze a global entity within an inner scope created during
2198       --  expansion. A call to subprogram E within some internal procedure
2199       --  (a stream attribute for example) might require freezing E, but the
2200       --  freeze node must appear in the same declarative part as E itself.
2201       --  The two-pass elaboration mechanism in gigi guarantees that E will
2202       --  be frozen before the inner call is elaborated. We exclude constants
2203       --  from this test, because deferred constants may be frozen early, and
2204       --  must be diagnosed (e.g. in the case of a deferred constant being used
2205       --  in a default expression). If the enclosing subprogram comes from
2206       --  source, or is a generic instance, then the freeze point is the one
2207       --  mandated by the language, and we freeze the entity. A subprogram that
2208       --  is a child unit body that acts as a spec does not have a spec that
2209       --  comes from source, but can only come from source.
2210
2211       elsif In_Open_Scopes (Scope (Test_E))
2212         and then Scope (Test_E) /= Current_Scope
2213         and then Ekind (Test_E) /= E_Constant
2214       then
2215          declare
2216             S : Entity_Id := Current_Scope;
2217
2218          begin
2219             while Present (S) loop
2220                if Is_Overloadable (S) then
2221                   if Comes_From_Source (S)
2222                     or else Is_Generic_Instance (S)
2223                     or else Is_Child_Unit (S)
2224                   then
2225                      exit;
2226                   else
2227                      return No_List;
2228                   end if;
2229                end if;
2230
2231                S := Scope (S);
2232             end loop;
2233          end;
2234
2235       --  Similarly, an inlined instance body may make reference to global
2236       --  entities, but these references cannot be the proper freezing point
2237       --  for them, and in the absence of inlining freezing will take place in
2238       --  their own scope. Normally instance bodies are analyzed after the
2239       --  enclosing compilation, and everything has been frozen at the proper
2240       --  place, but with front-end inlining an instance body is compiled
2241       --  before the end of the enclosing scope, and as a result out-of-order
2242       --  freezing must be prevented.
2243
2244       elsif Front_End_Inlining
2245         and then In_Instance_Body
2246         and then Present (Scope (Test_E))
2247       then
2248          declare
2249             S : Entity_Id := Scope (Test_E);
2250
2251          begin
2252             while Present (S) loop
2253                if Is_Generic_Instance (S) then
2254                   exit;
2255                else
2256                   S := Scope (S);
2257                end if;
2258             end loop;
2259
2260             if No (S) then
2261                return No_List;
2262             end if;
2263          end;
2264       end if;
2265
2266       --  Here to freeze the entity
2267
2268       Result := No_List;
2269       Set_Is_Frozen (E);
2270
2271       --  Case of entity being frozen is other than a type
2272
2273       if not Is_Type (E) then
2274
2275          --  If entity is exported or imported and does not have an external
2276          --  name, now is the time to provide the appropriate default name.
2277          --  Skip this if the entity is stubbed, since we don't need a name
2278          --  for any stubbed routine.
2279
2280          if (Is_Imported (E) or else Is_Exported (E))
2281            and then No (Interface_Name (E))
2282            and then Convention (E) /= Convention_Stubbed
2283          then
2284             Set_Encoded_Interface_Name
2285               (E, Get_Default_External_Name (E));
2286
2287          --  Special processing for atomic objects appearing in object decls
2288
2289          elsif Is_Atomic (E)
2290            and then Nkind (Parent (E)) = N_Object_Declaration
2291            and then Present (Expression (Parent (E)))
2292          then
2293             declare
2294                Expr : constant Node_Id := Expression (Parent (E));
2295
2296             begin
2297                --  If expression is an aggregate, assign to a temporary to
2298                --  ensure that the actual assignment is done atomically rather
2299                --  than component-wise (the assignment to the temp may be done
2300                --  component-wise, but that is harmless).
2301
2302                if Nkind (Expr) = N_Aggregate then
2303                   Expand_Atomic_Aggregate (Expr, Etype (E));
2304
2305                --  If the expression is a reference to a record or array object
2306                --  entity, then reset Is_True_Constant to False so that the
2307                --  compiler will not optimize away the intermediate object,
2308                --  which we need in this case for the same reason (to ensure
2309                --  that the actual assignment is atomic, rather than
2310                --  component-wise).
2311
2312                elsif Is_Entity_Name (Expr)
2313                  and then (Is_Record_Type (Etype (Expr))
2314                              or else
2315                            Is_Array_Type (Etype (Expr)))
2316                then
2317                   Set_Is_True_Constant (Entity (Expr), False);
2318                end if;
2319             end;
2320          end if;
2321
2322          --  For a subprogram, freeze all parameter types and also the return
2323          --  type (RM 13.14(14)). However skip this for internal subprograms.
2324          --  This is also the point where any extra formal parameters are
2325          --  created since we now know whether the subprogram will use
2326          --  a foreign convention.
2327
2328          if Is_Subprogram (E) then
2329             if not Is_Internal (E) then
2330                declare
2331                   F_Type    : Entity_Id;
2332                   R_Type    : Entity_Id;
2333                   Warn_Node : Node_Id;
2334
2335                begin
2336                   --  Loop through formals
2337
2338                   Formal := First_Formal (E);
2339                   while Present (Formal) loop
2340                      F_Type := Etype (Formal);
2341                      Freeze_And_Append (F_Type, Loc, Result);
2342
2343                      if Is_Private_Type (F_Type)
2344                        and then Is_Private_Type (Base_Type (F_Type))
2345                        and then No (Full_View (Base_Type (F_Type)))
2346                        and then not Is_Generic_Type (F_Type)
2347                        and then not Is_Derived_Type (F_Type)
2348                      then
2349                         --  If the type of a formal is incomplete, subprogram
2350                         --  is being frozen prematurely. Within an instance
2351                         --  (but not within a wrapper package) this is an
2352                         --  an artifact of our need to regard the end of an
2353                         --  instantiation as a freeze point. Otherwise it is
2354                         --  a definite error.
2355
2356                         --  and then not Is_Wrapper_Package (Current_Scope) ???
2357
2358                         if In_Instance then
2359                            Set_Is_Frozen (E, False);
2360                            return No_List;
2361
2362                         elsif not After_Last_Declaration
2363                           and then not Freezing_Library_Level_Tagged_Type
2364                         then
2365                            Error_Msg_Node_1 := F_Type;
2366                            Error_Msg
2367                              ("type& must be fully defined before this point",
2368                                Loc);
2369                         end if;
2370                      end if;
2371
2372                      --  Check suspicious parameter for C function. These tests
2373                      --  apply only to exported/imported subprograms.
2374
2375                      if Warn_On_Export_Import
2376                        and then Comes_From_Source (E)
2377                        and then (Convention (E) = Convention_C
2378                                    or else
2379                                  Convention (E) = Convention_CPP)
2380                        and then (Is_Imported (E) or else Is_Exported (E))
2381                        and then Convention (E) /= Convention (Formal)
2382                        and then not Has_Warnings_Off (E)
2383                        and then not Has_Warnings_Off (F_Type)
2384                        and then not Has_Warnings_Off (Formal)
2385                      then
2386                         Error_Msg_Qual_Level := 1;
2387
2388                         --  Check suspicious use of fat C pointer
2389
2390                         if Is_Access_Type (F_Type)
2391                           and then Esize (F_Type) > Ttypes.System_Address_Size
2392                         then
2393                            Error_Msg_N
2394                              ("?type of & does not correspond "
2395                               & "to C pointer!", Formal);
2396
2397                         --  Check suspicious return of boolean
2398
2399                         elsif Root_Type (F_Type) = Standard_Boolean
2400                           and then Convention (F_Type) = Convention_Ada
2401                           and then not Has_Warnings_Off (F_Type)
2402                           and then not Has_Size_Clause (F_Type)
2403                         then
2404                            Error_Msg_N
2405                              ("?& is an 8-bit Ada Boolean, "
2406                               & "use char in C!", Formal);
2407
2408                         --  Check suspicious tagged type
2409
2410                         elsif (Is_Tagged_Type (F_Type)
2411                                 or else (Is_Access_Type (F_Type)
2412                                            and then
2413                                              Is_Tagged_Type
2414                                                (Designated_Type (F_Type))))
2415                           and then Convention (E) = Convention_C
2416                         then
2417                            Error_Msg_N
2418                              ("?& is a tagged type which does not "
2419                               & "correspond to any C type!", Formal);
2420
2421                         --  Check wrong convention subprogram pointer
2422
2423                         elsif Ekind (F_Type) = E_Access_Subprogram_Type
2424                           and then not Has_Foreign_Convention (F_Type)
2425                         then
2426                            Error_Msg_N
2427                              ("?subprogram pointer & should "
2428                               & "have foreign convention!", Formal);
2429                            Error_Msg_Sloc := Sloc (F_Type);
2430                            Error_Msg_NE
2431                              ("\?add Convention pragma to declaration of &#",
2432                               Formal, F_Type);
2433                         end if;
2434
2435                         Error_Msg_Qual_Level := 0;
2436                      end if;
2437
2438                      --  Check for unconstrained array in exported foreign
2439                      --  convention case.
2440
2441                      if Has_Foreign_Convention (E)
2442                        and then not Is_Imported (E)
2443                        and then Is_Array_Type (F_Type)
2444                        and then not Is_Constrained (F_Type)
2445                        and then Warn_On_Export_Import
2446                      then
2447                         Error_Msg_Qual_Level := 1;
2448
2449                         --  If this is an inherited operation, place the
2450                         --  warning on the derived type declaration, rather
2451                         --  than on the original subprogram.
2452
2453                         if Nkind (Original_Node (Parent (E))) =
2454                           N_Full_Type_Declaration
2455                         then
2456                            Warn_Node := Parent (E);
2457
2458                            if Formal = First_Formal (E) then
2459                               Error_Msg_NE
2460                                 ("?in inherited operation&", Warn_Node, E);
2461                            end if;
2462                         else
2463                            Warn_Node := Formal;
2464                         end if;
2465
2466                         Error_Msg_NE
2467                           ("?type of argument& is unconstrained array",
2468                            Warn_Node, Formal);
2469                         Error_Msg_NE
2470                           ("?foreign caller must pass bounds explicitly",
2471                            Warn_Node, Formal);
2472                         Error_Msg_Qual_Level := 0;
2473                      end if;
2474
2475                      --  Ada 2005 (AI-326): Check wrong use of tag incomplete
2476                      --  types with unknown discriminants. For example:
2477
2478                      --    type T (<>) is tagged;
2479                      --    procedure P (X : access T); -- ERROR
2480                      --    procedure P (X : T);        -- ERROR
2481
2482                      if not From_With_Type (F_Type) then
2483                         if Is_Access_Type (F_Type) then
2484                            F_Type := Designated_Type (F_Type);
2485                         end if;
2486
2487                         if Ekind (F_Type) = E_Incomplete_Type
2488                           and then Is_Tagged_Type (F_Type)
2489                           and then not Is_Class_Wide_Type (F_Type)
2490                           and then No (Full_View (F_Type))
2491                           and then Unknown_Discriminants_Present
2492                                      (Parent (F_Type))
2493                           and then No (Stored_Constraint (F_Type))
2494                         then
2495                            Error_Msg_N
2496                              ("(Ada 2005): invalid use of unconstrained tagged"
2497                               & " incomplete type", E);
2498
2499                         --  If the formal is an anonymous_access_to_subprogram
2500                         --  freeze the  subprogram type as well, to prevent
2501                         --  scope anomalies in gigi, because there is no other
2502                         --  clear point at which it could be frozen.
2503
2504                         elsif Is_Itype (Etype (Formal))
2505                           and then Ekind (F_Type) = E_Subprogram_Type
2506                         then
2507                            Freeze_And_Append (F_Type, Loc, Result);
2508                         end if;
2509                      end if;
2510
2511                      Next_Formal (Formal);
2512                   end loop;
2513
2514                   --  Case of function
2515
2516                   if Ekind (E) = E_Function then
2517
2518                      --  Freeze return type
2519
2520                      R_Type := Etype (E);
2521                      Freeze_And_Append (R_Type, Loc, Result);
2522
2523                      --  Check suspicious return type for C function
2524
2525                      if Warn_On_Export_Import
2526                        and then (Convention (E) = Convention_C
2527                                    or else
2528                                  Convention (E) = Convention_CPP)
2529                        and then (Is_Imported (E) or else Is_Exported (E))
2530                      then
2531                         --  Check suspicious return of fat C pointer
2532
2533                         if Is_Access_Type (R_Type)
2534                           and then Esize (R_Type) > Ttypes.System_Address_Size
2535                           and then not Has_Warnings_Off (E)
2536                           and then not Has_Warnings_Off (R_Type)
2537                         then
2538                            Error_Msg_N
2539                              ("?return type of& does not "
2540                               & "correspond to C pointer!", E);
2541
2542                         --  Check suspicious return of boolean
2543
2544                         elsif Root_Type (R_Type) = Standard_Boolean
2545                           and then Convention (R_Type) = Convention_Ada
2546                           and then not Has_Warnings_Off (E)
2547                           and then not Has_Warnings_Off (R_Type)
2548                           and then not Has_Size_Clause (R_Type)
2549                         then
2550                            Error_Msg_N
2551                              ("?return type of & is an 8-bit "
2552                               & "Ada Boolean, use char in C!", E);
2553
2554                         --  Check suspicious return tagged type
2555
2556                         elsif (Is_Tagged_Type (R_Type)
2557                                 or else (Is_Access_Type (R_Type)
2558                                            and then
2559                                              Is_Tagged_Type
2560                                                (Designated_Type (R_Type))))
2561                           and then Convention (E) = Convention_C
2562                           and then not Has_Warnings_Off (E)
2563                           and then not Has_Warnings_Off (R_Type)
2564                         then
2565                            Error_Msg_N
2566                              ("?return type of & does not "
2567                               & "correspond to C type!", E);
2568
2569                         --  Check return of wrong convention subprogram pointer
2570
2571                         elsif Ekind (R_Type) = E_Access_Subprogram_Type
2572                           and then not Has_Foreign_Convention (R_Type)
2573                           and then not Has_Warnings_Off (E)
2574                           and then not Has_Warnings_Off (R_Type)
2575                         then
2576                            Error_Msg_N
2577                              ("?& should return a foreign "
2578                               & "convention subprogram pointer", E);
2579                            Error_Msg_Sloc := Sloc (R_Type);
2580                            Error_Msg_NE
2581                              ("\?add Convention pragma to declaration of& #",
2582                               E, R_Type);
2583                         end if;
2584                      end if;
2585
2586                      if Is_Array_Type (Etype (E))
2587                        and then not Is_Constrained (Etype (E))
2588                        and then not Is_Imported (E)
2589                        and then Has_Foreign_Convention (E)
2590                        and then Warn_On_Export_Import
2591                        and then not Has_Warnings_Off (E)
2592                        and then not Has_Warnings_Off (Etype (E))
2593                      then
2594                         Error_Msg_N
2595                           ("?foreign convention function& should not " &
2596                            "return unconstrained array!", E);
2597
2598                      --  Ada 2005 (AI-326): Check wrong use of tagged
2599                      --  incomplete type
2600                      --
2601                      --    type T is tagged;
2602                      --    function F (X : Boolean) return T; -- ERROR
2603
2604                      elsif Ekind (Etype (E)) = E_Incomplete_Type
2605                        and then Is_Tagged_Type (Etype (E))
2606                        and then No (Full_View (Etype (E)))
2607                        and then not Is_Value_Type (Etype (E))
2608                      then
2609                         Error_Msg_N
2610                           ("(Ada 2005): invalid use of tagged incomplete type",
2611                            E);
2612                      end if;
2613                   end if;
2614                end;
2615             end if;
2616
2617             --  Must freeze its parent first if it is a derived subprogram
2618
2619             if Present (Alias (E)) then
2620                Freeze_And_Append (Alias (E), Loc, Result);
2621             end if;
2622
2623             --  We don't freeze internal subprograms, because we don't normally
2624             --  want addition of extra formals or mechanism setting to happen
2625             --  for those. However we do pass through predefined dispatching
2626             --  cases, since extra formals may be needed in some cases, such as
2627             --  for the stream 'Input function (build-in-place formals).
2628
2629             if not Is_Internal (E)
2630               or else Is_Predefined_Dispatching_Operation (E)
2631             then
2632                Freeze_Subprogram (E);
2633             end if;
2634
2635          --  Here for other than a subprogram or type
2636
2637          else
2638             --  If entity has a type, and it is not a generic unit, then
2639             --  freeze it first (RM 13.14(10)).
2640
2641             if Present (Etype (E))
2642               and then Ekind (E) /= E_Generic_Function
2643             then
2644                Freeze_And_Append (Etype (E), Loc, Result);
2645             end if;
2646
2647             --  Special processing for objects created by object declaration
2648
2649             if Nkind (Declaration_Node (E)) = N_Object_Declaration then
2650
2651                --  For object created by object declaration, perform required
2652                --  categorization (preelaborate and pure) checks. Defer these
2653                --  checks to freeze time since pragma Import inhibits default
2654                --  initialization and thus pragma Import affects these checks.
2655
2656                Validate_Object_Declaration (Declaration_Node (E));
2657
2658                --  If there is an address clause, check that it is valid
2659
2660                Check_Address_Clause (E);
2661
2662                --  If the object needs any kind of default initialization, an
2663                --  error must be issued if No_Default_Initialization applies.
2664                --  The check doesn't apply to imported objects, which are not
2665                --  ever default initialized, and is why the check is deferred
2666                --  until freezing, at which point we know if Import applies.
2667
2668                if not Is_Imported (E)
2669                  and then not Has_Init_Expression (Declaration_Node (E))
2670                  and then
2671                    ((Has_Non_Null_Base_Init_Proc (Etype (E))
2672                       and then not No_Initialization (Declaration_Node (E))
2673                       and then not Is_Value_Type (Etype (E))
2674                       and then not Suppress_Init_Proc (Etype (E)))
2675                     or else
2676                       (Needs_Simple_Initialization (Etype (E))
2677                         and then not Is_Internal (E)))
2678                then
2679                   Check_Restriction
2680                     (No_Default_Initialization, Declaration_Node (E));
2681                end if;
2682
2683                --  For imported objects, set Is_Public unless there is also an
2684                --  address clause, which means that there is no external symbol
2685                --  needed for the Import (Is_Public may still be set for other
2686                --  unrelated reasons). Note that we delayed this processing
2687                --  till freeze time so that we can be sure not to set the flag
2688                --  if there is an address clause. If there is such a clause,
2689                --  then the only purpose of the Import pragma is to suppress
2690                --  implicit initialization.
2691
2692                if Is_Imported (E)
2693                  and then No (Address_Clause (E))
2694                then
2695                   Set_Is_Public (E);
2696                end if;
2697
2698                --  For convention C objects of an enumeration type, warn if
2699                --  the size is not integer size and no explicit size given.
2700                --  Skip warning for Boolean, and Character, assume programmer
2701                --  expects 8-bit sizes for these cases.
2702
2703                if (Convention (E) = Convention_C
2704                     or else
2705                    Convention (E) = Convention_CPP)
2706                  and then Is_Enumeration_Type (Etype (E))
2707                  and then not Is_Character_Type (Etype (E))
2708                  and then not Is_Boolean_Type (Etype (E))
2709                  and then Esize (Etype (E)) < Standard_Integer_Size
2710                  and then not Has_Size_Clause (E)
2711                then
2712                   Error_Msg_Uint_1 := UI_From_Int (Standard_Integer_Size);
2713                   Error_Msg_N
2714                     ("?convention C enumeration object has size less than ^",
2715                      E);
2716                   Error_Msg_N ("\?use explicit size clause to set size", E);
2717                end if;
2718             end if;
2719
2720             --  Check that a constant which has a pragma Volatile[_Components]
2721             --  or Atomic[_Components] also has a pragma Import (RM C.6(13)).
2722
2723             --  Note: Atomic[_Components] also sets Volatile[_Components]
2724
2725             if Ekind (E) = E_Constant
2726               and then (Has_Volatile_Components (E) or else Is_Volatile (E))
2727               and then not Is_Imported (E)
2728             then
2729                --  Make sure we actually have a pragma, and have not merely
2730                --  inherited the indication from elsewhere (e.g. an address
2731                --  clause, which is not good enough in RM terms!)
2732
2733                if Has_Rep_Pragma (E, Name_Atomic)
2734                     or else
2735                   Has_Rep_Pragma (E, Name_Atomic_Components)
2736                then
2737                   Error_Msg_N
2738                     ("stand alone atomic constant must be " &
2739                      "imported (RM C.6(13))", E);
2740
2741                elsif Has_Rep_Pragma (E, Name_Volatile)
2742                        or else
2743                      Has_Rep_Pragma (E, Name_Volatile_Components)
2744                then
2745                   Error_Msg_N
2746                     ("stand alone volatile constant must be " &
2747                      "imported (RM C.6(13))", E);
2748                end if;
2749             end if;
2750
2751             --  Static objects require special handling
2752
2753             if (Ekind (E) = E_Constant or else Ekind (E) = E_Variable)
2754               and then Is_Statically_Allocated (E)
2755             then
2756                Freeze_Static_Object (E);
2757             end if;
2758
2759             --  Remaining step is to layout objects
2760
2761             if Ekind (E) = E_Variable
2762                  or else
2763                Ekind (E) = E_Constant
2764                  or else
2765                Ekind (E) = E_Loop_Parameter
2766                  or else
2767                Is_Formal (E)
2768             then
2769                Layout_Object (E);
2770             end if;
2771          end if;
2772
2773       --  Case of a type or subtype being frozen
2774
2775       else
2776          --  We used to check here that a full type must have preelaborable
2777          --  initialization if it completes a private type specified with
2778          --  pragma Preelaborable_Intialization, but that missed cases where
2779          --  the types occur within a generic package, since the freezing
2780          --  that occurs within a containing scope generally skips traversal
2781          --  of a generic unit's declarations (those will be frozen within
2782          --  instances). This check was moved to Analyze_Package_Specification.
2783
2784          --  The type may be defined in a generic unit. This can occur when
2785          --  freezing a generic function that returns the type (which is
2786          --  defined in a parent unit). It is clearly meaningless to freeze
2787          --  this type. However, if it is a subtype, its size may be determi-
2788          --  nable and used in subsequent checks, so might as well try to
2789          --  compute it.
2790
2791          if Present (Scope (E))
2792            and then Is_Generic_Unit (Scope (E))
2793          then
2794             Check_Compile_Time_Size (E);
2795             return No_List;
2796          end if;
2797
2798          --  Deal with special cases of freezing for subtype
2799
2800          if E /= Base_Type (E) then
2801
2802             --  Before we do anything else, a specialized test for the case of
2803             --  a size given for an array where the array needs to be packed,
2804             --  but was not so the size cannot be honored. This would of course
2805             --  be caught by the backend, and indeed we don't catch all cases.
2806             --  The point is that we can give a better error message in those
2807             --  cases that we do catch with the circuitry here. Also if pragma
2808             --  Implicit_Packing is set, this is where the packing occurs.
2809
2810             --  The reason we do this so early is that the processing in the
2811             --  automatic packing case affects the layout of the base type, so
2812             --  it must be done before we freeze the base type.
2813
2814             if Is_Array_Type (E) then
2815                declare
2816                   Lo, Hi : Node_Id;
2817                   Ctyp   : constant Entity_Id := Component_Type (E);
2818
2819                begin
2820                   --  Check enabling conditions. These are straightforward
2821                   --  except for the test for a limited composite type. This
2822                   --  eliminates the rare case of a array of limited components
2823                   --  where there are issues of whether or not we can go ahead
2824                   --  and pack the array (since we can't freely pack and unpack
2825                   --  arrays if they are limited).
2826
2827                   --  Note that we check the root type explicitly because the
2828                   --  whole point is we are doing this test before we have had
2829                   --  a chance to freeze the base type (and it is that freeze
2830                   --  action that causes stuff to be inherited).
2831
2832                   if Present (Size_Clause (E))
2833                     and then Known_Static_Esize (E)
2834                     and then not Is_Packed (E)
2835                     and then not Has_Pragma_Pack (E)
2836                     and then Number_Dimensions (E) = 1
2837                     and then not Has_Component_Size_Clause (E)
2838                     and then Known_Static_Esize (Ctyp)
2839                     and then not Is_Limited_Composite (E)
2840                     and then not Is_Packed (Root_Type (E))
2841                     and then not Has_Component_Size_Clause (Root_Type (E))
2842                   then
2843                      Get_Index_Bounds (First_Index (E), Lo, Hi);
2844
2845                      if Compile_Time_Known_Value (Lo)
2846                        and then Compile_Time_Known_Value (Hi)
2847                        and then Known_Static_RM_Size (Ctyp)
2848                        and then RM_Size (Ctyp) < 64
2849                      then
2850                         declare
2851                            Lov  : constant Uint      := Expr_Value (Lo);
2852                            Hiv  : constant Uint      := Expr_Value (Hi);
2853                            Len  : constant Uint      := UI_Max
2854                                                          (Uint_0,
2855                                                           Hiv - Lov + 1);
2856                            Rsiz : constant Uint      := RM_Size (Ctyp);
2857                            SZ   : constant Node_Id   := Size_Clause (E);
2858                            Btyp : constant Entity_Id := Base_Type (E);
2859
2860                         --  What we are looking for here is the situation where
2861                         --  the RM_Size given would be exactly right if there
2862                         --  was a pragma Pack (resulting in the component size
2863                         --  being the same as the RM_Size). Furthermore, the
2864                         --  component type size must be an odd size (not a
2865                         --  multiple of storage unit)
2866
2867                         begin
2868                            if RM_Size (E) = Len * Rsiz
2869                              and then Rsiz mod System_Storage_Unit /= 0
2870                            then
2871                               --  For implicit packing mode, just set the
2872                               --  component size silently
2873
2874                               if Implicit_Packing then
2875                                  Set_Component_Size       (Btyp, Rsiz);
2876                                  Set_Is_Bit_Packed_Array  (Btyp);
2877                                  Set_Is_Packed            (Btyp);
2878                                  Set_Has_Non_Standard_Rep (Btyp);
2879
2880                                  --  Otherwise give an error message
2881
2882                               else
2883                                  Error_Msg_NE
2884                                    ("size given for& too small", SZ, E);
2885                                  Error_Msg_N
2886                                    ("\use explicit pragma Pack "
2887                                     & "or use pragma Implicit_Packing", SZ);
2888                               end if;
2889                            end if;
2890                         end;
2891                      end if;
2892                   end if;
2893                end;
2894             end if;
2895
2896             --  If ancestor subtype present, freeze that first. Note that this
2897             --  will also get the base type frozen.
2898
2899             Atype := Ancestor_Subtype (E);
2900
2901             if Present (Atype) then
2902                Freeze_And_Append (Atype, Loc, Result);
2903
2904             --  Otherwise freeze the base type of the entity before freezing
2905             --  the entity itself (RM 13.14(15)).
2906
2907             elsif E /= Base_Type (E) then
2908                Freeze_And_Append (Base_Type (E), Loc, Result);
2909             end if;
2910
2911          --  For a derived type, freeze its parent type first (RM 13.14(15))
2912
2913          elsif Is_Derived_Type (E) then
2914             Freeze_And_Append (Etype (E), Loc, Result);
2915             Freeze_And_Append (First_Subtype (Etype (E)), Loc, Result);
2916          end if;
2917
2918          --  For array type, freeze index types and component type first
2919          --  before freezing the array (RM 13.14(15)).
2920
2921          if Is_Array_Type (E) then
2922             declare
2923                Ctyp : constant Entity_Id := Component_Type (E);
2924
2925                Non_Standard_Enum : Boolean := False;
2926                --  Set true if any of the index types is an enumeration type
2927                --  with a non-standard representation.
2928
2929             begin
2930                Freeze_And_Append (Ctyp, Loc, Result);
2931
2932                Indx := First_Index (E);
2933                while Present (Indx) loop
2934                   Freeze_And_Append (Etype (Indx), Loc, Result);
2935
2936                   if Is_Enumeration_Type (Etype (Indx))
2937                     and then Has_Non_Standard_Rep (Etype (Indx))
2938                   then
2939                      Non_Standard_Enum := True;
2940                   end if;
2941
2942                   Next_Index (Indx);
2943                end loop;
2944
2945                --  Processing that is done only for base types
2946
2947                if Ekind (E) = E_Array_Type then
2948
2949                   --  Propagate flags for component type
2950
2951                   if Is_Controlled (Component_Type (E))
2952                     or else Has_Controlled_Component (Ctyp)
2953                   then
2954                      Set_Has_Controlled_Component (E);
2955                   end if;
2956
2957                   if Has_Unchecked_Union (Component_Type (E)) then
2958                      Set_Has_Unchecked_Union (E);
2959                   end if;
2960
2961                   --  If packing was requested or if the component size was set
2962                   --  explicitly, then see if bit packing is required. This
2963                   --  processing is only done for base types, since all the
2964                   --  representation aspects involved are type-related. This
2965                   --  is not just an optimization, if we start processing the
2966                   --  subtypes, they interfere with the settings on the base
2967                   --  type (this is because Is_Packed has a slightly different
2968                   --  meaning before and after freezing).
2969
2970                   declare
2971                      Csiz : Uint;
2972                      Esiz : Uint;
2973
2974                   begin
2975                      if (Is_Packed (E) or else Has_Pragma_Pack (E))
2976                        and then not Has_Atomic_Components (E)
2977                        and then Known_Static_RM_Size (Ctyp)
2978                      then
2979                         Csiz := UI_Max (RM_Size (Ctyp), 1);
2980
2981                      elsif Known_Component_Size (E) then
2982                         Csiz := Component_Size (E);
2983
2984                      elsif not Known_Static_Esize (Ctyp) then
2985                         Csiz := Uint_0;
2986
2987                      else
2988                         Esiz := Esize (Ctyp);
2989
2990                         --  We can set the component size if it is less than
2991                         --  16, rounding it up to the next storage unit size.
2992
2993                         if Esiz <= 8 then
2994                            Csiz := Uint_8;
2995                         elsif Esiz <= 16 then
2996                            Csiz := Uint_16;
2997                         else
2998                            Csiz := Uint_0;
2999                         end if;
3000
3001                         --  Set component size up to match alignment if it
3002                         --  would otherwise be less than the alignment. This
3003                         --  deals with cases of types whose alignment exceeds
3004                         --  their size (padded types).
3005
3006                         if Csiz /= 0 then
3007                            declare
3008                               A : constant Uint := Alignment_In_Bits (Ctyp);
3009                            begin
3010                               if Csiz < A then
3011                                  Csiz := A;
3012                               end if;
3013                            end;
3014                         end if;
3015                      end if;
3016
3017                      --  Case of component size that may result in packing
3018
3019                      if 1 <= Csiz and then Csiz <= 64 then
3020                         declare
3021                            Ent         : constant Entity_Id :=
3022                                            First_Subtype (E);
3023                            Pack_Pragma : constant Node_Id :=
3024                                            Get_Rep_Pragma (Ent, Name_Pack);
3025                            Comp_Size_C : constant Node_Id :=
3026                                            Get_Attribute_Definition_Clause
3027                                              (Ent, Attribute_Component_Size);
3028                         begin
3029                            --  Warn if we have pack and component size so that
3030                            --  the pack is ignored.
3031
3032                            --  Note: here we must check for the presence of a
3033                            --  component size before checking for a Pack pragma
3034                            --  to deal with the case where the array type is a
3035                            --  derived type whose parent is currently private.
3036
3037                            if Present (Comp_Size_C)
3038                              and then Has_Pragma_Pack (Ent)
3039                            then
3040                               Error_Msg_Sloc := Sloc (Comp_Size_C);
3041                               Error_Msg_NE
3042                                 ("?pragma Pack for& ignored!",
3043                                  Pack_Pragma, Ent);
3044                               Error_Msg_N
3045                                 ("\?explicit component size given#!",
3046                                  Pack_Pragma);
3047                            end if;
3048
3049                            --  Set component size if not already set by a
3050                            --  component size clause.
3051
3052                            if not Present (Comp_Size_C) then
3053                               Set_Component_Size (E, Csiz);
3054                            end if;
3055
3056                            --  Check for base type of 8, 16, 32 bits, where an
3057                            --  unsigned subtype has a length one less than the
3058                            --  base type (e.g. Natural subtype of Integer).
3059
3060                            --  In such cases, if a component size was not set
3061                            --  explicitly, then generate a warning.
3062
3063                            if Has_Pragma_Pack (E)
3064                              and then not Present (Comp_Size_C)
3065                              and then
3066                                (Csiz = 7 or else Csiz = 15 or else Csiz = 31)
3067                              and then Esize (Base_Type (Ctyp)) = Csiz + 1
3068                            then
3069                               Error_Msg_Uint_1 := Csiz;
3070
3071                               if Present (Pack_Pragma) then
3072                                  Error_Msg_N
3073                                    ("?pragma Pack causes component size "
3074                                     & "to be ^!", Pack_Pragma);
3075                                  Error_Msg_N
3076                                    ("\?use Component_Size to set "
3077                                     & "desired value!", Pack_Pragma);
3078                               end if;
3079                            end if;
3080
3081                            --  Actual packing is not needed for 8, 16, 32, 64.
3082                            --  Also not needed for 24 if alignment is 1.
3083
3084                            if        Csiz = 8
3085                              or else Csiz = 16
3086                              or else Csiz = 32
3087                              or else Csiz = 64
3088                              or else (Csiz = 24 and then Alignment (Ctyp) = 1)
3089                            then
3090                               --  Here the array was requested to be packed,
3091                               --  but the packing request had no effect, so
3092                               --  Is_Packed is reset.
3093
3094                               --  Note: semantically this means that we lose
3095                               --  track of the fact that a derived type
3096                               --  inherited a pragma Pack that was non-
3097                               --  effective, but that seems fine.
3098
3099                               --  We regard a Pack pragma as a request to set
3100                               --  a representation characteristic, and this
3101                               --  request may be ignored.
3102
3103                               Set_Is_Packed (Base_Type (E), False);
3104
3105                               --  In all other cases, packing is indeed needed
3106
3107                            else
3108                               Set_Has_Non_Standard_Rep (Base_Type (E));
3109                               Set_Is_Bit_Packed_Array  (Base_Type (E));
3110                               Set_Is_Packed            (Base_Type (E));
3111                            end if;
3112                         end;
3113                      end if;
3114                   end;
3115
3116                --  Processing that is done only for subtypes
3117
3118                else
3119                   --  Acquire alignment from base type
3120
3121                   if Unknown_Alignment (E) then
3122                      Set_Alignment (E, Alignment (Base_Type (E)));
3123                      Adjust_Esize_Alignment (E);
3124                   end if;
3125                end if;
3126
3127                --  For bit-packed arrays, check the size
3128
3129                if Is_Bit_Packed_Array (E)
3130                  and then Known_RM_Size (E)
3131                then
3132                   declare
3133                      SizC : constant Node_Id := Size_Clause (E);
3134
3135                      Discard : Boolean;
3136                      pragma Warnings (Off, Discard);
3137
3138                   begin
3139                      --  It is not clear if it is possible to have no size
3140                      --  clause at this stage, but it is not worth worrying
3141                      --  about. Post error on the entity name in the size
3142                      --  clause if present, else on the type entity itself.
3143
3144                      if Present (SizC) then
3145                         Check_Size (Name (SizC), E, RM_Size (E), Discard);
3146                      else
3147                         Check_Size (E, E, RM_Size (E), Discard);
3148                      end if;
3149                   end;
3150                end if;
3151
3152                --  If any of the index types was an enumeration type with
3153                --  a non-standard rep clause, then we indicate that the
3154                --  array type is always packed (even if it is not bit packed).
3155
3156                if Non_Standard_Enum then
3157                   Set_Has_Non_Standard_Rep (Base_Type (E));
3158                   Set_Is_Packed            (Base_Type (E));
3159                end if;
3160
3161                Set_Component_Alignment_If_Not_Set (E);
3162
3163                --  If the array is packed, we must create the packed array
3164                --  type to be used to actually implement the type. This is
3165                --  only needed for real array types (not for string literal
3166                --  types, since they are present only for the front end).
3167
3168                if Is_Packed (E)
3169                  and then Ekind (E) /= E_String_Literal_Subtype
3170                then
3171                   Create_Packed_Array_Type (E);
3172                   Freeze_And_Append (Packed_Array_Type (E), Loc, Result);
3173
3174                   --  Size information of packed array type is copied to the
3175                   --  array type, since this is really the representation. But
3176                   --  do not override explicit existing size values. If the
3177                   --  ancestor subtype is constrained the packed_array_type
3178                   --  will be inherited from it, but the size may have been
3179                   --  provided already, and must not be overridden either.
3180
3181                   if not Has_Size_Clause (E)
3182                     and then
3183                       (No (Ancestor_Subtype (E))
3184                         or else not Has_Size_Clause (Ancestor_Subtype (E)))
3185                   then
3186                      Set_Esize     (E, Esize     (Packed_Array_Type (E)));
3187                      Set_RM_Size   (E, RM_Size   (Packed_Array_Type (E)));
3188                   end if;
3189
3190                   if not Has_Alignment_Clause (E) then
3191                      Set_Alignment (E, Alignment (Packed_Array_Type (E)));
3192                   end if;
3193                end if;
3194
3195                --  For non-packed arrays set the alignment of the array to the
3196                --  alignment of the component type if it is unknown. Skip this
3197                --  in atomic case (atomic arrays may need larger alignments).
3198
3199                if not Is_Packed (E)
3200                  and then Unknown_Alignment (E)
3201                  and then Known_Alignment (Ctyp)
3202                  and then Known_Static_Component_Size (E)
3203                  and then Known_Static_Esize (Ctyp)
3204                  and then Esize (Ctyp) = Component_Size (E)
3205                  and then not Is_Atomic (E)
3206                then
3207                   Set_Alignment (E, Alignment (Component_Type (E)));
3208                end if;
3209             end;
3210
3211          --  For a class-wide type, the corresponding specific type is
3212          --  frozen as well (RM 13.14(15))
3213
3214          elsif Is_Class_Wide_Type (E) then
3215             Freeze_And_Append (Root_Type (E), Loc, Result);
3216
3217             --  If the base type of the class-wide type is still incomplete,
3218             --  the class-wide remains unfrozen as well. This is legal when
3219             --  E is the formal of a primitive operation of some other type
3220             --  which is being frozen.
3221
3222             if not Is_Frozen (Root_Type (E)) then
3223                Set_Is_Frozen (E, False);
3224                return Result;
3225             end if;
3226
3227             --  If the Class_Wide_Type is an Itype (when type is the anonymous
3228             --  parent of a derived type) and it is a library-level entity,
3229             --  generate an itype reference for it. Otherwise, its first
3230             --  explicit reference may be in an inner scope, which will be
3231             --  rejected by the back-end.
3232
3233             if Is_Itype (E)
3234               and then Is_Compilation_Unit (Scope (E))
3235             then
3236                declare
3237                   Ref : constant Node_Id := Make_Itype_Reference (Loc);
3238
3239                begin
3240                   Set_Itype (Ref, E);
3241                   if No (Result) then
3242                      Result := New_List (Ref);
3243                   else
3244                      Append (Ref, Result);
3245                   end if;
3246                end;
3247             end if;
3248
3249             --  The equivalent type associated with a class-wide subtype needs
3250             --  to be frozen to ensure that its layout is done. Class-wide
3251             --  subtypes are currently only frozen on targets requiring
3252             --  front-end layout (see New_Class_Wide_Subtype and
3253             --  Make_CW_Equivalent_Type in exp_util.adb).
3254
3255             if Ekind (E) = E_Class_Wide_Subtype
3256               and then Present (Equivalent_Type (E))
3257             then
3258                Freeze_And_Append (Equivalent_Type (E), Loc, Result);
3259             end if;
3260
3261          --  For a record (sub)type, freeze all the component types (RM
3262          --  13.14(15). We test for E_Record_(sub)Type here, rather than using
3263          --  Is_Record_Type, because we don't want to attempt the freeze for
3264          --  the case of a private type with record extension (we will do that
3265          --  later when the full type is frozen).
3266
3267          elsif Ekind (E) = E_Record_Type
3268            or else  Ekind (E) = E_Record_Subtype
3269          then
3270             Freeze_Record_Type (E);
3271
3272          --  For a concurrent type, freeze corresponding record type. This
3273          --  does not correspond to any specific rule in the RM, but the
3274          --  record type is essentially part of the concurrent type.
3275          --  Freeze as well all local entities. This includes record types
3276          --  created for entry parameter blocks, and whatever local entities
3277          --  may appear in the private part.
3278
3279          elsif Is_Concurrent_Type (E) then
3280             if Present (Corresponding_Record_Type (E)) then
3281                Freeze_And_Append
3282                  (Corresponding_Record_Type (E), Loc, Result);
3283             end if;
3284
3285             Comp := First_Entity (E);
3286
3287             while Present (Comp) loop
3288                if Is_Type (Comp) then
3289                   Freeze_And_Append (Comp, Loc, Result);
3290
3291                elsif (Ekind (Comp)) /= E_Function then
3292                   if Is_Itype (Etype (Comp))
3293                     and then Underlying_Type (Scope (Etype (Comp))) = E
3294                   then
3295                      Undelay_Type (Etype (Comp));
3296                   end if;
3297
3298                   Freeze_And_Append (Etype (Comp), Loc, Result);
3299                end if;
3300
3301                Next_Entity (Comp);
3302             end loop;
3303
3304          --  Private types are required to point to the same freeze node as
3305          --  their corresponding full views. The freeze node itself has to
3306          --  point to the partial view of the entity (because from the partial
3307          --  view, we can retrieve the full view, but not the reverse).
3308          --  However, in order to freeze correctly, we need to freeze the full
3309          --  view. If we are freezing at the end of a scope (or within the
3310          --  scope of the private type), the partial and full views will have
3311          --  been swapped, the full view appears first in the entity chain and
3312          --  the swapping mechanism ensures that the pointers are properly set
3313          --  (on scope exit).
3314
3315          --  If we encounter the partial view before the full view (e.g. when
3316          --  freezing from another scope), we freeze the full view, and then
3317          --  set the pointers appropriately since we cannot rely on swapping to
3318          --  fix things up (subtypes in an outer scope might not get swapped).
3319
3320          elsif Is_Incomplete_Or_Private_Type (E)
3321            and then not Is_Generic_Type (E)
3322          then
3323             --  The construction of the dispatch table associated with library
3324             --  level tagged types forces freezing of all the primitives of the
3325             --  type, which may cause premature freezing of the partial view.
3326             --  For example:
3327
3328             --     package Pkg is
3329             --        type T is tagged private;
3330             --        type DT is new T with private;
3331             --        procedure Prim (X : in out T; Y : in out DT'class);
3332             --     private
3333             --        type T is tagged null record;
3334             --        Obj : T;
3335             --        type DT is new T with null record;
3336             --     end;
3337
3338             --  In this case the type will be frozen later by the usual
3339             --  mechanism: an object declaration, an instantiation, or the
3340             --  end of a declarative part.
3341
3342             if Is_Library_Level_Tagged_Type (E)
3343               and then not Present (Full_View (E))
3344             then
3345                Set_Is_Frozen (E, False);
3346                return Result;
3347
3348             --  Case of full view present
3349
3350             elsif Present (Full_View (E)) then
3351
3352                --  If full view has already been frozen, then no further
3353                --  processing is required
3354
3355                if Is_Frozen (Full_View (E)) then
3356
3357                   Set_Has_Delayed_Freeze (E, False);
3358                   Set_Freeze_Node (E, Empty);
3359                   Check_Debug_Info_Needed (E);
3360
3361                --  Otherwise freeze full view and patch the pointers so that
3362                --  the freeze node will elaborate both views in the back-end.
3363
3364                else
3365                   declare
3366                      Full : constant Entity_Id := Full_View (E);
3367
3368                   begin
3369                      if Is_Private_Type (Full)
3370                        and then Present (Underlying_Full_View (Full))
3371                      then
3372                         Freeze_And_Append
3373                           (Underlying_Full_View (Full), Loc, Result);
3374                      end if;
3375
3376                      Freeze_And_Append (Full, Loc, Result);
3377
3378                      if Has_Delayed_Freeze (E) then
3379                         F_Node := Freeze_Node (Full);
3380
3381                         if Present (F_Node) then
3382                            Set_Freeze_Node (E, F_Node);
3383                            Set_Entity (F_Node, E);
3384
3385                         else
3386                            --  {Incomplete,Private}_Subtypes with Full_Views
3387                            --  constrained by discriminants.
3388
3389                            Set_Has_Delayed_Freeze (E, False);
3390                            Set_Freeze_Node (E, Empty);
3391                         end if;
3392                      end if;
3393                   end;
3394
3395                   Check_Debug_Info_Needed (E);
3396                end if;
3397
3398                --  AI-117 requires that the convention of a partial view be the
3399                --  same as the convention of the full view. Note that this is a
3400                --  recognized breach of privacy, but it's essential for logical
3401                --  consistency of representation, and the lack of a rule in
3402                --  RM95 was an oversight.
3403
3404                Set_Convention (E, Convention (Full_View (E)));
3405
3406                Set_Size_Known_At_Compile_Time (E,
3407                  Size_Known_At_Compile_Time (Full_View (E)));
3408
3409                --  Size information is copied from the full view to the
3410                --  incomplete or private view for consistency.
3411
3412                --  We skip this is the full view is not a type. This is very
3413                --  strange of course, and can only happen as a result of
3414                --  certain illegalities, such as a premature attempt to derive
3415                --  from an incomplete type.
3416
3417                if Is_Type (Full_View (E)) then
3418                   Set_Size_Info (E, Full_View (E));
3419                   Set_RM_Size   (E, RM_Size (Full_View (E)));
3420                end if;
3421
3422                return Result;
3423
3424             --  Case of no full view present. If entity is derived or subtype,
3425             --  it is safe to freeze, correctness depends on the frozen status
3426             --  of parent. Otherwise it is either premature usage, or a Taft
3427             --  amendment type, so diagnosis is at the point of use and the
3428             --  type might be frozen later.
3429
3430             elsif E /= Base_Type (E)
3431               or else Is_Derived_Type (E)
3432             then
3433                null;
3434
3435             else
3436                Set_Is_Frozen (E, False);
3437                return No_List;
3438             end if;
3439
3440          --  For access subprogram, freeze types of all formals, the return
3441          --  type was already frozen, since it is the Etype of the function.
3442
3443          elsif Ekind (E) = E_Subprogram_Type then
3444             Formal := First_Formal (E);
3445             while Present (Formal) loop
3446                Freeze_And_Append (Etype (Formal), Loc, Result);
3447                Next_Formal (Formal);
3448             end loop;
3449
3450             Freeze_Subprogram (E);
3451
3452             --  Ada 2005 (AI-326): Check wrong use of tag incomplete type
3453
3454             --    type T is tagged;
3455             --    type Acc is access function (X : T) return T; -- ERROR
3456
3457             if Ekind (Etype (E)) = E_Incomplete_Type
3458               and then Is_Tagged_Type (Etype (E))
3459               and then No (Full_View (Etype (E)))
3460               and then not Is_Value_Type (Etype (E))
3461             then
3462                Error_Msg_N
3463                  ("(Ada 2005): invalid use of tagged incomplete type", E);
3464             end if;
3465
3466          --  For access to a protected subprogram, freeze the equivalent type
3467          --  (however this is not set if we are not generating code or if this
3468          --  is an anonymous type used just for resolution).
3469
3470          elsif Is_Access_Protected_Subprogram_Type (E) then
3471
3472             --  AI-326: Check wrong use of tagged incomplete types
3473
3474             --    type T is tagged;
3475             --    type As3D is access protected
3476             --      function (X : Float) return T; -- ERROR
3477
3478             declare
3479                Etyp : Entity_Id;
3480
3481             begin
3482                Etyp := Etype (Directly_Designated_Type (E));
3483
3484                if Is_Class_Wide_Type (Etyp) then
3485                   Etyp := Etype (Etyp);
3486                end if;
3487
3488                if Ekind (Etyp) = E_Incomplete_Type
3489                  and then Is_Tagged_Type (Etyp)
3490                  and then No (Full_View (Etyp))
3491                  and then not Is_Value_Type (Etype (E))
3492                then
3493                   Error_Msg_N
3494                     ("(Ada 2005): invalid use of tagged incomplete type", E);
3495                end if;
3496             end;
3497
3498             if Present (Equivalent_Type (E)) then
3499                Freeze_And_Append (Equivalent_Type (E), Loc, Result);
3500             end if;
3501          end if;
3502
3503          --  Generic types are never seen by the back-end, and are also not
3504          --  processed by the expander (since the expander is turned off for
3505          --  generic processing), so we never need freeze nodes for them.
3506
3507          if Is_Generic_Type (E) then
3508             return Result;
3509          end if;
3510
3511          --  Some special processing for non-generic types to complete
3512          --  representation details not known till the freeze point.
3513
3514          if Is_Fixed_Point_Type (E) then
3515             Freeze_Fixed_Point_Type (E);
3516
3517             --  Some error checks required for ordinary fixed-point type. Defer
3518             --  these till the freeze-point since we need the small and range
3519             --  values. We only do these checks for base types
3520
3521             if Is_Ordinary_Fixed_Point_Type (E)
3522               and then E = Base_Type (E)
3523             then
3524                if Small_Value (E) < Ureal_2_M_80 then
3525                   Error_Msg_Name_1 := Name_Small;
3526                   Error_Msg_N
3527                     ("`&''%` too small, minimum allowed is 2.0'*'*(-80)", E);
3528
3529                elsif Small_Value (E) > Ureal_2_80 then
3530                   Error_Msg_Name_1 := Name_Small;
3531                   Error_Msg_N
3532                     ("`&''%` too large, maximum allowed is 2.0'*'*80", E);
3533                end if;
3534
3535                if Expr_Value_R (Type_Low_Bound (E)) < Ureal_M_10_36 then
3536                   Error_Msg_Name_1 := Name_First;
3537                   Error_Msg_N
3538                     ("`&''%` too small, minimum allowed is -10.0'*'*36", E);
3539                end if;
3540
3541                if Expr_Value_R (Type_High_Bound (E)) > Ureal_10_36 then
3542                   Error_Msg_Name_1 := Name_Last;
3543                   Error_Msg_N
3544                     ("`&''%` too large, maximum allowed is 10.0'*'*36", E);
3545                end if;
3546             end if;
3547
3548          elsif Is_Enumeration_Type (E) then
3549             Freeze_Enumeration_Type (E);
3550
3551          elsif Is_Integer_Type (E) then
3552             Adjust_Esize_For_Alignment (E);
3553
3554          elsif Is_Access_Type (E) then
3555
3556             --  Check restriction for standard storage pool
3557
3558             if No (Associated_Storage_Pool (E)) then
3559                Check_Restriction (No_Standard_Storage_Pools, E);
3560             end if;
3561
3562             --  Deal with error message for pure access type. This is not an
3563             --  error in Ada 2005 if there is no pool (see AI-366).
3564
3565             if Is_Pure_Unit_Access_Type (E)
3566               and then (Ada_Version < Ada_05
3567                          or else not No_Pool_Assigned (E))
3568             then
3569                Error_Msg_N ("named access type not allowed in pure unit", E);
3570
3571                if Ada_Version >= Ada_05 then
3572                   Error_Msg_N
3573                     ("\would be legal if Storage_Size of 0 given?", E);
3574
3575                elsif No_Pool_Assigned (E) then
3576                   Error_Msg_N
3577                     ("\would be legal in Ada 2005?", E);
3578
3579                else
3580                   Error_Msg_N
3581                     ("\would be legal in Ada 2005 if "
3582                      & "Storage_Size of 0 given?", E);
3583                end if;
3584             end if;
3585          end if;
3586
3587          --  Case of composite types
3588
3589          if Is_Composite_Type (E) then
3590
3591             --  AI-117 requires that all new primitives of a tagged type must
3592             --  inherit the convention of the full view of the type. Inherited
3593             --  and overriding operations are defined to inherit the convention
3594             --  of their parent or overridden subprogram (also specified in
3595             --  AI-117), which will have occurred earlier (in Derive_Subprogram
3596             --  and New_Overloaded_Entity). Here we set the convention of
3597             --  primitives that are still convention Ada, which will ensure
3598             --  that any new primitives inherit the type's convention. Class-
3599             --  wide types can have a foreign convention inherited from their
3600             --  specific type, but are excluded from this since they don't have
3601             --  any associated primitives.
3602
3603             if Is_Tagged_Type (E)
3604               and then not Is_Class_Wide_Type (E)
3605               and then Convention (E) /= Convention_Ada
3606             then
3607                declare
3608                   Prim_List : constant Elist_Id := Primitive_Operations (E);
3609                   Prim      : Elmt_Id;
3610                begin
3611                   Prim := First_Elmt (Prim_List);
3612                   while Present (Prim) loop
3613                      if Convention (Node (Prim)) = Convention_Ada then
3614                         Set_Convention (Node (Prim), Convention (E));
3615                      end if;
3616
3617                      Next_Elmt (Prim);
3618                   end loop;
3619                end;
3620             end if;
3621          end if;
3622
3623          --  Generate primitive operation references for a tagged type
3624
3625          if Is_Tagged_Type (E)
3626            and then not Is_Class_Wide_Type (E)
3627          then
3628             declare
3629                Prim_List : Elist_Id;
3630                Prim      : Elmt_Id;
3631                Ent       : Entity_Id;
3632                Aux_E     : Entity_Id;
3633
3634             begin
3635                --  Handle subtypes
3636
3637                if Ekind (E) = E_Protected_Subtype
3638                  or else Ekind (E) = E_Task_Subtype
3639                then
3640                   Aux_E := Etype (E);
3641                else
3642                   Aux_E := E;
3643                end if;
3644
3645                --  Ada 2005 (AI-345): In case of concurrent type generate
3646                --  reference to the wrapper that allow us to dispatch calls
3647                --  through their implemented abstract interface types.
3648
3649                --  The check for Present here is to protect against previously
3650                --  reported critical errors.
3651
3652                if Is_Concurrent_Type (Aux_E)
3653                  and then Present (Corresponding_Record_Type (Aux_E))
3654                then
3655                   Prim_List := Primitive_Operations
3656                                 (Corresponding_Record_Type (Aux_E));
3657                else
3658                   Prim_List := Primitive_Operations (Aux_E);
3659                end if;
3660
3661                --  Loop to generate references for primitive operations
3662
3663                if Present (Prim_List) then
3664                   Prim := First_Elmt (Prim_List);
3665                   while Present (Prim) loop
3666
3667                      --  If the operation is derived, get the original for
3668                      --  cross-reference purposes (it is the original for
3669                      --  which we want the xref, and for which the comes
3670                      --  from source test needs to be performed).
3671
3672                      Ent := Node (Prim);
3673                      while Present (Alias (Ent)) loop
3674                         Ent := Alias (Ent);
3675                      end loop;
3676
3677                      Generate_Reference (E, Ent, 'p', Set_Ref => False);
3678                      Next_Elmt (Prim);
3679                   end loop;
3680                end if;
3681             end;
3682          end if;
3683
3684          --  Now that all types from which E may depend are frozen, see if the
3685          --  size is known at compile time, if it must be unsigned, or if
3686          --  strict alignment is required
3687
3688          Check_Compile_Time_Size (E);
3689          Check_Unsigned_Type (E);
3690
3691          if Base_Type (E) = E then
3692             Check_Strict_Alignment (E);
3693          end if;
3694
3695          --  Do not allow a size clause for a type which does not have a size
3696          --  that is known at compile time
3697
3698          if Has_Size_Clause (E)
3699            and then not Size_Known_At_Compile_Time (E)
3700          then
3701             --  Suppress this message if errors posted on E, even if we are
3702             --  in all errors mode, since this is often a junk message
3703
3704             if not Error_Posted (E) then
3705                Error_Msg_N
3706                  ("size clause not allowed for variable length type",
3707                   Size_Clause (E));
3708             end if;
3709          end if;
3710
3711          --  Remaining process is to set/verify the representation information,
3712          --  in particular the size and alignment values. This processing is
3713          --  not required for generic types, since generic types do not play
3714          --  any part in code generation, and so the size and alignment values
3715          --  for such types are irrelevant.
3716
3717          if Is_Generic_Type (E) then
3718             return Result;
3719
3720          --  Otherwise we call the layout procedure
3721
3722          else
3723             Layout_Type (E);
3724          end if;
3725
3726          --  End of freeze processing for type entities
3727       end if;
3728
3729       --  Here is where we logically freeze the current entity. If it has a
3730       --  freeze node, then this is the point at which the freeze node is
3731       --  linked into the result list.
3732
3733       if Has_Delayed_Freeze (E) then
3734
3735          --  If a freeze node is already allocated, use it, otherwise allocate
3736          --  a new one. The preallocation happens in the case of anonymous base
3737          --  types, where we preallocate so that we can set First_Subtype_Link.
3738          --  Note that we reset the Sloc to the current freeze location.
3739
3740          if Present (Freeze_Node (E)) then
3741             F_Node := Freeze_Node (E);
3742             Set_Sloc (F_Node, Loc);
3743
3744          else
3745             F_Node := New_Node (N_Freeze_Entity, Loc);
3746             Set_Freeze_Node (E, F_Node);
3747             Set_Access_Types_To_Process (F_Node, No_Elist);
3748             Set_TSS_Elist (F_Node, No_Elist);
3749             Set_Actions (F_Node, No_List);
3750          end if;
3751
3752          Set_Entity (F_Node, E);
3753
3754          if Result = No_List then
3755             Result := New_List (F_Node);
3756          else
3757             Append (F_Node, Result);
3758          end if;
3759
3760          --  A final pass over record types with discriminants. If the type
3761          --  has an incomplete declaration, there may be constrained access
3762          --  subtypes declared elsewhere, which do not depend on the discrimi-
3763          --  nants of the type, and which are used as component types (i.e.
3764          --  the full view is a recursive type). The designated types of these
3765          --  subtypes can only be elaborated after the type itself, and they
3766          --  need an itype reference.
3767
3768          if Ekind (E) = E_Record_Type
3769            and then Has_Discriminants (E)
3770          then
3771             declare
3772                Comp : Entity_Id;
3773                IR   : Node_Id;
3774                Typ  : Entity_Id;
3775
3776             begin
3777                Comp := First_Component (E);
3778
3779                while Present (Comp) loop
3780                   Typ  := Etype (Comp);
3781
3782                   if Ekind (Comp) = E_Component
3783                     and then Is_Access_Type (Typ)
3784                     and then Scope (Typ) /= E
3785                     and then Base_Type (Designated_Type (Typ)) = E
3786                     and then Is_Itype (Designated_Type (Typ))
3787                   then
3788                      IR := Make_Itype_Reference (Sloc (Comp));
3789                      Set_Itype (IR, Designated_Type (Typ));
3790                      Append (IR, Result);
3791                   end if;
3792
3793                   Next_Component (Comp);
3794                end loop;
3795             end;
3796          end if;
3797       end if;
3798
3799       --  When a type is frozen, the first subtype of the type is frozen as
3800       --  well (RM 13.14(15)). This has to be done after freezing the type,
3801       --  since obviously the first subtype depends on its own base type.
3802
3803       if Is_Type (E) then
3804          Freeze_And_Append (First_Subtype (E), Loc, Result);
3805
3806          --  If we just froze a tagged non-class wide record, then freeze the
3807          --  corresponding class-wide type. This must be done after the tagged
3808          --  type itself is frozen, because the class-wide type refers to the
3809          --  tagged type which generates the class.
3810
3811          if Is_Tagged_Type (E)
3812            and then not Is_Class_Wide_Type (E)
3813            and then Present (Class_Wide_Type (E))
3814          then
3815             Freeze_And_Append (Class_Wide_Type (E), Loc, Result);
3816          end if;
3817       end if;
3818
3819       Check_Debug_Info_Needed (E);
3820
3821       --  Special handling for subprograms
3822
3823       if Is_Subprogram (E) then
3824
3825          --  If subprogram has address clause then reset Is_Public flag, since
3826          --  we do not want the backend to generate external references.
3827
3828          if Present (Address_Clause (E))
3829            and then not Is_Library_Level_Entity (E)
3830          then
3831             Set_Is_Public (E, False);
3832
3833          --  If no address clause and not intrinsic, then for imported
3834          --  subprogram in main unit, generate descriptor if we are in
3835          --  Propagate_Exceptions mode.
3836
3837          elsif Propagate_Exceptions
3838            and then Is_Imported (E)
3839            and then not Is_Intrinsic_Subprogram (E)
3840            and then Convention (E) /= Convention_Stubbed
3841          then
3842             if Result = No_List then
3843                Result := Empty_List;
3844             end if;
3845          end if;
3846       end if;
3847
3848       return Result;
3849    end Freeze_Entity;
3850
3851    -----------------------------
3852    -- Freeze_Enumeration_Type --
3853    -----------------------------
3854
3855    procedure Freeze_Enumeration_Type (Typ : Entity_Id) is
3856    begin
3857       --  By default, if no size clause is present, an enumeration type with
3858       --  Convention C is assumed to interface to a C enum, and has integer
3859       --  size. This applies to types. For subtypes, verify that its base
3860       --  type has no size clause either.
3861
3862       if Has_Foreign_Convention (Typ)
3863         and then not Has_Size_Clause (Typ)
3864         and then not Has_Size_Clause (Base_Type (Typ))
3865         and then Esize (Typ) < Standard_Integer_Size
3866       then
3867          Init_Esize (Typ, Standard_Integer_Size);
3868
3869       else
3870          --  If the enumeration type interfaces to C, and it has a size clause
3871          --  that specifies less than int size, it warrants a warning. The
3872          --  user may intend the C type to be an enum or a char, so this is
3873          --  not by itself an error that the Ada compiler can detect, but it
3874          --  it is a worth a heads-up. For Boolean and Character types we
3875          --  assume that the programmer has the proper C type in mind.
3876
3877          if Convention (Typ) = Convention_C
3878            and then Has_Size_Clause (Typ)
3879            and then Esize (Typ) /= Esize (Standard_Integer)
3880            and then not Is_Boolean_Type (Typ)
3881            and then not Is_Character_Type (Typ)
3882          then
3883             Error_Msg_N
3884               ("C enum types have the size of a C int?", Size_Clause (Typ));
3885          end if;
3886
3887          Adjust_Esize_For_Alignment (Typ);
3888       end if;
3889    end Freeze_Enumeration_Type;
3890
3891    -----------------------
3892    -- Freeze_Expression --
3893    -----------------------
3894
3895    procedure Freeze_Expression (N : Node_Id) is
3896       In_Spec_Exp : constant Boolean := In_Spec_Expression;
3897       Typ         : Entity_Id;
3898       Nam         : Entity_Id;
3899       Desig_Typ   : Entity_Id;
3900       P           : Node_Id;
3901       Parent_P    : Node_Id;
3902
3903       Freeze_Outside : Boolean := False;
3904       --  This flag is set true if the entity must be frozen outside the
3905       --  current subprogram. This happens in the case of expander generated
3906       --  subprograms (_Init_Proc, _Input, _Output, _Read, _Write) which do
3907       --  not freeze all entities like other bodies, but which nevertheless
3908       --  may reference entities that have to be frozen before the body and
3909       --  obviously cannot be frozen inside the body.
3910
3911       function In_Exp_Body (N : Node_Id) return Boolean;
3912       --  Given an N_Handled_Sequence_Of_Statements node N, determines whether
3913       --  it is the handled statement sequence of an expander-generated
3914       --  subprogram (init proc, stream subprogram, or renaming as body).
3915       --  If so, this is not a freezing context.
3916
3917       -----------------
3918       -- In_Exp_Body --
3919       -----------------
3920
3921       function In_Exp_Body (N : Node_Id) return Boolean is
3922          P  : Node_Id;
3923          Id : Entity_Id;
3924
3925       begin
3926          if Nkind (N) = N_Subprogram_Body then
3927             P := N;
3928          else
3929             P := Parent (N);
3930          end if;
3931
3932          if Nkind (P) /= N_Subprogram_Body then
3933             return False;
3934
3935          else
3936             Id := Defining_Unit_Name (Specification (P));
3937
3938             if Nkind (Id) = N_Defining_Identifier
3939               and then (Is_Init_Proc (Id)              or else
3940                         Is_TSS (Id, TSS_Stream_Input)  or else
3941                         Is_TSS (Id, TSS_Stream_Output) or else
3942                         Is_TSS (Id, TSS_Stream_Read)   or else
3943                         Is_TSS (Id, TSS_Stream_Write)  or else
3944                         Nkind (Original_Node (P)) =
3945                           N_Subprogram_Renaming_Declaration)
3946             then
3947                return True;
3948             else
3949                return False;
3950             end if;
3951          end if;
3952       end In_Exp_Body;
3953
3954    --  Start of processing for Freeze_Expression
3955
3956    begin
3957       --  Immediate return if freezing is inhibited. This flag is set by the
3958       --  analyzer to stop freezing on generated expressions that would cause
3959       --  freezing if they were in the source program, but which are not
3960       --  supposed to freeze, since they are created.
3961
3962       if Must_Not_Freeze (N) then
3963          return;
3964       end if;
3965
3966       --  If expression is non-static, then it does not freeze in a default
3967       --  expression, see section "Handling of Default Expressions" in the
3968       --  spec of package Sem for further details. Note that we have to
3969       --  make sure that we actually have a real expression (if we have
3970       --  a subtype indication, we can't test Is_Static_Expression!)
3971
3972       if In_Spec_Exp
3973         and then Nkind (N) in N_Subexpr
3974         and then not Is_Static_Expression (N)
3975       then
3976          return;
3977       end if;
3978
3979       --  Freeze type of expression if not frozen already
3980
3981       Typ := Empty;
3982
3983       if Nkind (N) in N_Has_Etype then
3984          if not Is_Frozen (Etype (N)) then
3985             Typ := Etype (N);
3986
3987          --  Base type may be an derived numeric type that is frozen at
3988          --  the point of declaration, but first_subtype is still unfrozen.
3989
3990          elsif not Is_Frozen (First_Subtype (Etype (N))) then
3991             Typ := First_Subtype (Etype (N));
3992          end if;
3993       end if;
3994
3995       --  For entity name, freeze entity if not frozen already. A special
3996       --  exception occurs for an identifier that did not come from source.
3997       --  We don't let such identifiers freeze a non-internal entity, i.e.
3998       --  an entity that did come from source, since such an identifier was
3999       --  generated by the expander, and cannot have any semantic effect on
4000       --  the freezing semantics. For example, this stops the parameter of
4001       --  an initialization procedure from freezing the variable.
4002
4003       if Is_Entity_Name (N)
4004         and then not Is_Frozen (Entity (N))
4005         and then (Nkind (N) /= N_Identifier
4006                    or else Comes_From_Source (N)
4007                    or else not Comes_From_Source (Entity (N)))
4008       then
4009          Nam := Entity (N);
4010       else
4011          Nam := Empty;
4012       end if;
4013
4014       --  For an allocator freeze designated type if not frozen already
4015
4016       --  For an aggregate whose component type is an access type, freeze the
4017       --  designated type now, so that its freeze does not appear within the
4018       --  loop that might be created in the expansion of the aggregate. If the
4019       --  designated type is a private type without full view, the expression
4020       --  cannot contain an allocator, so the type is not frozen.
4021
4022       Desig_Typ := Empty;
4023
4024       case Nkind (N) is
4025          when N_Allocator =>
4026             Desig_Typ := Designated_Type (Etype (N));
4027
4028          when N_Aggregate =>
4029             if Is_Array_Type (Etype (N))
4030               and then Is_Access_Type (Component_Type (Etype (N)))
4031             then
4032                Desig_Typ := Designated_Type (Component_Type (Etype (N)));
4033             end if;
4034
4035          when N_Selected_Component |
4036             N_Indexed_Component    |
4037             N_Slice                =>
4038
4039             if Is_Access_Type (Etype (Prefix (N))) then
4040                Desig_Typ := Designated_Type (Etype (Prefix (N)));
4041             end if;
4042
4043          when others =>
4044             null;
4045       end case;
4046
4047       if Desig_Typ /= Empty
4048         and then (Is_Frozen (Desig_Typ)
4049                    or else (not Is_Fully_Defined (Desig_Typ)))
4050       then
4051          Desig_Typ := Empty;
4052       end if;
4053
4054       --  All done if nothing needs freezing
4055
4056       if No (Typ)
4057         and then No (Nam)
4058         and then No (Desig_Typ)
4059       then
4060          return;
4061       end if;
4062
4063       --  Loop for looking at the right place to insert the freeze nodes
4064       --  exiting from the loop when it is appropriate to insert the freeze
4065       --  node before the current node P.
4066
4067       --  Also checks some special exceptions to the freezing rules. These
4068       --  cases result in a direct return, bypassing the freeze action.
4069
4070       P := N;
4071       loop
4072          Parent_P := Parent (P);
4073
4074          --  If we don't have a parent, then we are not in a well-formed tree.
4075          --  This is an unusual case, but there are some legitimate situations
4076          --  in which this occurs, notably when the expressions in the range of
4077          --  a type declaration are resolved. We simply ignore the freeze
4078          --  request in this case. Is this right ???
4079
4080          if No (Parent_P) then
4081             return;
4082          end if;
4083
4084          --  See if we have got to an appropriate point in the tree
4085
4086          case Nkind (Parent_P) is
4087
4088             --  A special test for the exception of (RM 13.14(8)) for the case
4089             --  of per-object expressions (RM 3.8(18)) occurring in component
4090             --  definition or a discrete subtype definition. Note that we test
4091             --  for a component declaration which includes both cases we are
4092             --  interested in, and furthermore the tree does not have explicit
4093             --  nodes for either of these two constructs.
4094
4095             when N_Component_Declaration =>
4096
4097                --  The case we want to test for here is an identifier that is
4098                --  a per-object expression, this is either a discriminant that
4099                --  appears in a context other than the component declaration
4100                --  or it is a reference to the type of the enclosing construct.
4101
4102                --  For either of these cases, we skip the freezing
4103
4104                if not In_Spec_Expression
4105                  and then Nkind (N) = N_Identifier
4106                  and then (Present (Entity (N)))
4107                then
4108                   --  We recognize the discriminant case by just looking for
4109                   --  a reference to a discriminant. It can only be one for
4110                   --  the enclosing construct. Skip freezing in this case.
4111
4112                   if Ekind (Entity (N)) = E_Discriminant then
4113                      return;
4114
4115                   --  For the case of a reference to the enclosing record,
4116                   --  (or task or protected type), we look for a type that
4117                   --  matches the current scope.
4118
4119                   elsif Entity (N) = Current_Scope then
4120                      return;
4121                   end if;
4122                end if;
4123
4124             --  If we have an enumeration literal that appears as the choice in
4125             --  the aggregate of an enumeration representation clause, then
4126             --  freezing does not occur (RM 13.14(10)).
4127
4128             when N_Enumeration_Representation_Clause =>
4129
4130                --  The case we are looking for is an enumeration literal
4131
4132                if (Nkind (N) = N_Identifier or Nkind (N) = N_Character_Literal)
4133                  and then Is_Enumeration_Type (Etype (N))
4134                then
4135                   --  If enumeration literal appears directly as the choice,
4136                   --  do not freeze (this is the normal non-overloaded case)
4137
4138                   if Nkind (Parent (N)) = N_Component_Association
4139                     and then First (Choices (Parent (N))) = N
4140                   then
4141                      return;
4142
4143                   --  If enumeration literal appears as the name of function
4144                   --  which is the choice, then also do not freeze. This
4145                   --  happens in the overloaded literal case, where the
4146                   --  enumeration literal is temporarily changed to a function
4147                   --  call for overloading analysis purposes.
4148
4149                   elsif Nkind (Parent (N)) = N_Function_Call
4150                      and then
4151                        Nkind (Parent (Parent (N))) = N_Component_Association
4152                      and then
4153                        First (Choices (Parent (Parent (N)))) = Parent (N)
4154                   then
4155                      return;
4156                   end if;
4157                end if;
4158
4159             --  Normally if the parent is a handled sequence of statements,
4160             --  then the current node must be a statement, and that is an
4161             --  appropriate place to insert a freeze node.
4162
4163             when N_Handled_Sequence_Of_Statements =>
4164
4165                --  An exception occurs when the sequence of statements is for
4166                --  an expander generated body that did not do the usual freeze
4167                --  all operation. In this case we usually want to freeze
4168                --  outside this body, not inside it, and we skip past the
4169                --  subprogram body that we are inside.
4170
4171                if In_Exp_Body (Parent_P) then
4172
4173                   --  However, we *do* want to freeze at this point if we have
4174                   --  an entity to freeze, and that entity is declared *inside*
4175                   --  the body of the expander generated procedure. This case
4176                   --  is recognized by the scope of the type, which is either
4177                   --  the spec for some enclosing body, or (in the case of
4178                   --  init_procs, for which there are no separate specs) the
4179                   --  current scope.
4180
4181                   declare
4182                      Subp : constant Node_Id := Parent (Parent_P);
4183                      Cspc : Entity_Id;
4184
4185                   begin
4186                      if Nkind (Subp) = N_Subprogram_Body then
4187                         Cspc := Corresponding_Spec (Subp);
4188
4189                         if (Present (Typ) and then Scope (Typ) = Cspc)
4190                              or else
4191                            (Present (Nam) and then Scope (Nam) = Cspc)
4192                         then
4193                            exit;
4194
4195                         elsif Present (Typ)
4196                           and then Scope (Typ) = Current_Scope
4197                           and then Current_Scope = Defining_Entity (Subp)
4198                         then
4199                            exit;
4200                         end if;
4201                      end if;
4202                   end;
4203
4204                   --  If not that exception to the exception, then this is
4205                   --  where we delay the freeze till outside the body.
4206
4207                   Parent_P := Parent (Parent_P);
4208                   Freeze_Outside := True;
4209
4210                --  Here if normal case where we are in handled statement
4211                --  sequence and want to do the insertion right there.
4212
4213                else
4214                   exit;
4215                end if;
4216
4217             --  If parent is a body or a spec or a block, then the current node
4218             --  is a statement or declaration and we can insert the freeze node
4219             --  before it.
4220
4221             when N_Package_Specification |
4222                  N_Package_Body          |
4223                  N_Subprogram_Body       |
4224                  N_Task_Body             |
4225                  N_Protected_Body        |
4226                  N_Entry_Body            |
4227                  N_Block_Statement       => exit;
4228
4229             --  The expander is allowed to define types in any statements list,
4230             --  so any of the following parent nodes also mark a freezing point
4231             --  if the actual node is in a list of statements or declarations.
4232
4233             when N_Exception_Handler          |
4234                  N_If_Statement               |
4235                  N_Elsif_Part                 |
4236                  N_Case_Statement_Alternative |
4237                  N_Compilation_Unit_Aux       |
4238                  N_Selective_Accept           |
4239                  N_Accept_Alternative         |
4240                  N_Delay_Alternative          |
4241                  N_Conditional_Entry_Call     |
4242                  N_Entry_Call_Alternative     |
4243                  N_Triggering_Alternative     |
4244                  N_Abortable_Part             |
4245                  N_Freeze_Entity              =>
4246
4247                exit when Is_List_Member (P);
4248
4249             --  Note: The N_Loop_Statement is a special case. A type that
4250             --  appears in the source can never be frozen in a loop (this
4251             --  occurs only because of a loop expanded by the expander), so we
4252             --  keep on going. Otherwise we terminate the search. Same is true
4253             --  of any entity which comes from source. (if they have predefined
4254             --  type, that type does not appear to come from source, but the
4255             --  entity should not be frozen here).
4256
4257             when N_Loop_Statement =>
4258                exit when not Comes_From_Source (Etype (N))
4259                  and then (No (Nam) or else not Comes_From_Source (Nam));
4260
4261             --  For all other cases, keep looking at parents
4262
4263             when others =>
4264                null;
4265          end case;
4266
4267          --  We fall through the case if we did not yet find the proper
4268          --  place in the free for inserting the freeze node, so climb!
4269
4270          P := Parent_P;
4271       end loop;
4272
4273       --  If the expression appears in a record or an initialization procedure,
4274       --  the freeze nodes are collected and attached to the current scope, to
4275       --  be inserted and analyzed on exit from the scope, to insure that
4276       --  generated entities appear in the correct scope. If the expression is
4277       --  a default for a discriminant specification, the scope is still void.
4278       --  The expression can also appear in the discriminant part of a private
4279       --  or concurrent type.
4280
4281       --  If the expression appears in a constrained subcomponent of an
4282       --  enclosing record declaration, the freeze nodes must be attached to
4283       --  the outer record type so they can eventually be placed in the
4284       --  enclosing declaration list.
4285
4286       --  The other case requiring this special handling is if we are in a
4287       --  default expression, since in that case we are about to freeze a
4288       --  static type, and the freeze scope needs to be the outer scope, not
4289       --  the scope of the subprogram with the default parameter.
4290
4291       --  For default expressions and other spec expressions in generic units,
4292       --  the Move_Freeze_Nodes mechanism (see sem_ch12.adb) takes care of
4293       --  placing them at the proper place, after the generic unit.
4294
4295       if (In_Spec_Exp and not Inside_A_Generic)
4296         or else Freeze_Outside
4297         or else (Is_Type (Current_Scope)
4298                   and then (not Is_Concurrent_Type (Current_Scope)
4299                              or else not Has_Completion (Current_Scope)))
4300         or else Ekind (Current_Scope) = E_Void
4301       then
4302          declare
4303             Loc          : constant Source_Ptr := Sloc (Current_Scope);
4304             Freeze_Nodes : List_Id := No_List;
4305             Pos          : Int := Scope_Stack.Last;
4306
4307          begin
4308             if Present (Desig_Typ) then
4309                Freeze_And_Append (Desig_Typ, Loc, Freeze_Nodes);
4310             end if;
4311
4312             if Present (Typ) then
4313                Freeze_And_Append (Typ, Loc, Freeze_Nodes);
4314             end if;
4315
4316             if Present (Nam) then
4317                Freeze_And_Append (Nam, Loc, Freeze_Nodes);
4318             end if;
4319
4320             --  The current scope may be that of a constrained component of
4321             --  an enclosing record declaration, which is above the current
4322             --  scope in the scope stack.
4323
4324             if Is_Record_Type (Scope (Current_Scope)) then
4325                Pos := Pos - 1;
4326             end if;
4327
4328             if Is_Non_Empty_List (Freeze_Nodes) then
4329                if No (Scope_Stack.Table (Pos).Pending_Freeze_Actions) then
4330                   Scope_Stack.Table (Pos).Pending_Freeze_Actions :=
4331                       Freeze_Nodes;
4332                else
4333                   Append_List (Freeze_Nodes, Scope_Stack.Table
4334                                    (Pos).Pending_Freeze_Actions);
4335                end if;
4336             end if;
4337          end;
4338
4339          return;
4340       end if;
4341
4342       --  Now we have the right place to do the freezing. First, a special
4343       --  adjustment, if we are in spec-expression analysis mode, these freeze
4344       --  actions must not be thrown away (normally all inserted actions are
4345       --  thrown away in this mode. However, the freeze actions are from static
4346       --  expressions and one of the important reasons we are doing this
4347       --  special analysis is to get these freeze actions. Therefore we turn
4348       --  off the In_Spec_Expression mode to propagate these freeze actions.
4349       --  This also means they get properly analyzed and expanded.
4350
4351       In_Spec_Expression := False;
4352
4353       --  Freeze the designated type of an allocator (RM 13.14(13))
4354
4355       if Present (Desig_Typ) then
4356          Freeze_Before (P, Desig_Typ);
4357       end if;
4358
4359       --  Freeze type of expression (RM 13.14(10)). Note that we took care of
4360       --  the enumeration representation clause exception in the loop above.
4361
4362       if Present (Typ) then
4363          Freeze_Before (P, Typ);
4364       end if;
4365
4366       --  Freeze name if one is present (RM 13.14(11))
4367
4368       if Present (Nam) then
4369          Freeze_Before (P, Nam);
4370       end if;
4371
4372       --  Restore In_Spec_Expression flag
4373
4374       In_Spec_Expression := In_Spec_Exp;
4375    end Freeze_Expression;
4376
4377    -----------------------------
4378    -- Freeze_Fixed_Point_Type --
4379    -----------------------------
4380
4381    --  Certain fixed-point types and subtypes, including implicit base types
4382    --  and declared first subtypes, have not yet set up a range. This is
4383    --  because the range cannot be set until the Small and Size values are
4384    --  known, and these are not known till the type is frozen.
4385
4386    --  To signal this case, Scalar_Range contains an unanalyzed syntactic range
4387    --  whose bounds are unanalyzed real literals. This routine will recognize
4388    --  this case, and transform this range node into a properly typed range
4389    --  with properly analyzed and resolved values.
4390
4391    procedure Freeze_Fixed_Point_Type (Typ : Entity_Id) is
4392       Rng   : constant Node_Id    := Scalar_Range (Typ);
4393       Lo    : constant Node_Id    := Low_Bound (Rng);
4394       Hi    : constant Node_Id    := High_Bound (Rng);
4395       Btyp  : constant Entity_Id  := Base_Type (Typ);
4396       Brng  : constant Node_Id    := Scalar_Range (Btyp);
4397       BLo   : constant Node_Id    := Low_Bound (Brng);
4398       BHi   : constant Node_Id    := High_Bound (Brng);
4399       Small : constant Ureal      := Small_Value (Typ);
4400       Loval : Ureal;
4401       Hival : Ureal;
4402       Atype : Entity_Id;
4403
4404       Actual_Size : Nat;
4405
4406       function Fsize (Lov, Hiv : Ureal) return Nat;
4407       --  Returns size of type with given bounds. Also leaves these
4408       --  bounds set as the current bounds of the Typ.
4409
4410       -----------
4411       -- Fsize --
4412       -----------
4413
4414       function Fsize (Lov, Hiv : Ureal) return Nat is
4415       begin
4416          Set_Realval (Lo, Lov);
4417          Set_Realval (Hi, Hiv);
4418          return Minimum_Size (Typ);
4419       end Fsize;
4420
4421    --  Start of processing for Freeze_Fixed_Point_Type
4422
4423    begin
4424       --  If Esize of a subtype has not previously been set, set it now
4425
4426       if Unknown_Esize (Typ) then
4427          Atype := Ancestor_Subtype (Typ);
4428
4429          if Present (Atype) then
4430             Set_Esize (Typ, Esize (Atype));
4431          else
4432             Set_Esize (Typ, Esize (Base_Type (Typ)));
4433          end if;
4434       end if;
4435
4436       --  Immediate return if the range is already analyzed. This means that
4437       --  the range is already set, and does not need to be computed by this
4438       --  routine.
4439
4440       if Analyzed (Rng) then
4441          return;
4442       end if;
4443
4444       --  Immediate return if either of the bounds raises Constraint_Error
4445
4446       if Raises_Constraint_Error (Lo)
4447         or else Raises_Constraint_Error (Hi)
4448       then
4449          return;
4450       end if;
4451
4452       Loval := Realval (Lo);
4453       Hival := Realval (Hi);
4454
4455       --  Ordinary fixed-point case
4456
4457       if Is_Ordinary_Fixed_Point_Type (Typ) then
4458
4459          --  For the ordinary fixed-point case, we are allowed to fudge the
4460          --  end-points up or down by small. Generally we prefer to fudge up,
4461          --  i.e. widen the bounds for non-model numbers so that the end points
4462          --  are included. However there are cases in which this cannot be
4463          --  done, and indeed cases in which we may need to narrow the bounds.
4464          --  The following circuit makes the decision.
4465
4466          --  Note: our terminology here is that Incl_EP means that the bounds
4467          --  are widened by Small if necessary to include the end points, and
4468          --  Excl_EP means that the bounds are narrowed by Small to exclude the
4469          --  end-points if this reduces the size.
4470
4471          --  Note that in the Incl case, all we care about is including the
4472          --  end-points. In the Excl case, we want to narrow the bounds as
4473          --  much as permitted by the RM, to give the smallest possible size.
4474
4475          Fudge : declare
4476             Loval_Incl_EP : Ureal;
4477             Hival_Incl_EP : Ureal;
4478
4479             Loval_Excl_EP : Ureal;
4480             Hival_Excl_EP : Ureal;
4481
4482             Size_Incl_EP  : Nat;
4483             Size_Excl_EP  : Nat;
4484
4485             Model_Num     : Ureal;
4486             First_Subt    : Entity_Id;
4487             Actual_Lo     : Ureal;
4488             Actual_Hi     : Ureal;
4489
4490          begin
4491             --  First step. Base types are required to be symmetrical. Right
4492             --  now, the base type range is a copy of the first subtype range.
4493             --  This will be corrected before we are done, but right away we
4494             --  need to deal with the case where both bounds are non-negative.
4495             --  In this case, we set the low bound to the negative of the high
4496             --  bound, to make sure that the size is computed to include the
4497             --  required sign. Note that we do not need to worry about the
4498             --  case of both bounds negative, because the sign will be dealt
4499             --  with anyway. Furthermore we can't just go making such a bound
4500             --  symmetrical, since in a twos-complement system, there is an
4501             --  extra negative value which could not be accommodated on the
4502             --  positive side.
4503
4504             if Typ = Btyp
4505               and then not UR_Is_Negative (Loval)
4506               and then Hival > Loval
4507             then
4508                Loval := -Hival;
4509                Set_Realval (Lo, Loval);
4510             end if;
4511
4512             --  Compute the fudged bounds. If the number is a model number,
4513             --  then we do nothing to include it, but we are allowed to backoff
4514             --  to the next adjacent model number when we exclude it. If it is
4515             --  not a model number then we straddle the two values with the
4516             --  model numbers on either side.
4517
4518             Model_Num := UR_Trunc (Loval / Small) * Small;
4519
4520             if Loval = Model_Num then
4521                Loval_Incl_EP := Model_Num;
4522             else
4523                Loval_Incl_EP := Model_Num - Small;
4524             end if;
4525
4526             --  The low value excluding the end point is Small greater, but
4527             --  we do not do this exclusion if the low value is positive,
4528             --  since it can't help the size and could actually hurt by
4529             --  crossing the high bound.
4530
4531             if UR_Is_Negative (Loval_Incl_EP) then
4532                Loval_Excl_EP := Loval_Incl_EP + Small;
4533
4534                --  If the value went from negative to zero, then we have the
4535                --  case where Loval_Incl_EP is the model number just below
4536                --  zero, so we want to stick to the negative value for the
4537                --  base type to maintain the condition that the size will
4538                --  include signed values.
4539
4540                if Typ = Btyp
4541                  and then UR_Is_Zero (Loval_Excl_EP)
4542                then
4543                   Loval_Excl_EP := Loval_Incl_EP;
4544                end if;
4545
4546             else
4547                Loval_Excl_EP := Loval_Incl_EP;
4548             end if;
4549
4550             --  Similar processing for upper bound and high value
4551
4552             Model_Num := UR_Trunc (Hival / Small) * Small;
4553
4554             if Hival = Model_Num then
4555                Hival_Incl_EP := Model_Num;
4556             else
4557                Hival_Incl_EP := Model_Num + Small;
4558             end if;
4559
4560             if UR_Is_Positive (Hival_Incl_EP) then
4561                Hival_Excl_EP := Hival_Incl_EP - Small;
4562             else
4563                Hival_Excl_EP := Hival_Incl_EP;
4564             end if;
4565
4566             --  One further adjustment is needed. In the case of subtypes, we
4567             --  cannot go outside the range of the base type, or we get
4568             --  peculiarities, and the base type range is already set. This
4569             --  only applies to the Incl values, since clearly the Excl values
4570             --  are already as restricted as they are allowed to be.
4571
4572             if Typ /= Btyp then
4573                Loval_Incl_EP := UR_Max (Loval_Incl_EP, Realval (BLo));
4574                Hival_Incl_EP := UR_Min (Hival_Incl_EP, Realval (BHi));
4575             end if;
4576
4577             --  Get size including and excluding end points
4578
4579             Size_Incl_EP := Fsize (Loval_Incl_EP, Hival_Incl_EP);
4580             Size_Excl_EP := Fsize (Loval_Excl_EP, Hival_Excl_EP);
4581
4582             --  No need to exclude end-points if it does not reduce size
4583
4584             if Fsize (Loval_Incl_EP, Hival_Excl_EP) = Size_Excl_EP then
4585                Loval_Excl_EP := Loval_Incl_EP;
4586             end if;
4587
4588             if Fsize (Loval_Excl_EP, Hival_Incl_EP) = Size_Excl_EP then
4589                Hival_Excl_EP := Hival_Incl_EP;
4590             end if;
4591
4592             --  Now we set the actual size to be used. We want to use the
4593             --  bounds fudged up to include the end-points but only if this
4594             --  can be done without violating a specifically given size
4595             --  size clause or causing an unacceptable increase in size.
4596
4597             --  Case of size clause given
4598
4599             if Has_Size_Clause (Typ) then
4600
4601                --  Use the inclusive size only if it is consistent with
4602                --  the explicitly specified size.
4603
4604                if Size_Incl_EP <= RM_Size (Typ) then
4605                   Actual_Lo   := Loval_Incl_EP;
4606                   Actual_Hi   := Hival_Incl_EP;
4607                   Actual_Size := Size_Incl_EP;
4608
4609                --  If the inclusive size is too large, we try excluding
4610                --  the end-points (will be caught later if does not work).
4611
4612                else
4613                   Actual_Lo   := Loval_Excl_EP;
4614                   Actual_Hi   := Hival_Excl_EP;
4615                   Actual_Size := Size_Excl_EP;
4616                end if;
4617
4618             --  Case of size clause not given
4619
4620             else
4621                --  If we have a base type whose corresponding first subtype
4622                --  has an explicit size that is large enough to include our
4623                --  end-points, then do so. There is no point in working hard
4624                --  to get a base type whose size is smaller than the specified
4625                --  size of the first subtype.
4626
4627                First_Subt := First_Subtype (Typ);
4628
4629                if Has_Size_Clause (First_Subt)
4630                  and then Size_Incl_EP <= Esize (First_Subt)
4631                then
4632                   Actual_Size := Size_Incl_EP;
4633                   Actual_Lo   := Loval_Incl_EP;
4634                   Actual_Hi   := Hival_Incl_EP;
4635
4636                --  If excluding the end-points makes the size smaller and
4637                --  results in a size of 8,16,32,64, then we take the smaller
4638                --  size. For the 64 case, this is compulsory. For the other
4639                --  cases, it seems reasonable. We like to include end points
4640                --  if we can, but not at the expense of moving to the next
4641                --  natural boundary of size.
4642
4643                elsif Size_Incl_EP /= Size_Excl_EP
4644                  and then
4645                     (Size_Excl_EP = 8  or else
4646                      Size_Excl_EP = 16 or else
4647                      Size_Excl_EP = 32 or else
4648                      Size_Excl_EP = 64)
4649                then
4650                   Actual_Size := Size_Excl_EP;
4651                   Actual_Lo   := Loval_Excl_EP;
4652                   Actual_Hi   := Hival_Excl_EP;
4653
4654                --  Otherwise we can definitely include the end points
4655
4656                else
4657                   Actual_Size := Size_Incl_EP;
4658                   Actual_Lo   := Loval_Incl_EP;
4659                   Actual_Hi   := Hival_Incl_EP;
4660                end if;
4661
4662                --  One pathological case: normally we never fudge a low bound
4663                --  down, since it would seem to increase the size (if it has
4664                --  any effect), but for ranges containing single value, or no
4665                --  values, the high bound can be small too large. Consider:
4666
4667                --    type t is delta 2.0**(-14)
4668                --      range 131072.0 .. 0;
4669
4670                --  That lower bound is *just* outside the range of 32 bits, and
4671                --  does need fudging down in this case. Note that the bounds
4672                --  will always have crossed here, since the high bound will be
4673                --  fudged down if necessary, as in the case of:
4674
4675                --    type t is delta 2.0**(-14)
4676                --      range 131072.0 .. 131072.0;
4677
4678                --  So we detect the situation by looking for crossed bounds,
4679                --  and if the bounds are crossed, and the low bound is greater
4680                --  than zero, we will always back it off by small, since this
4681                --  is completely harmless.
4682
4683                if Actual_Lo > Actual_Hi then
4684                   if UR_Is_Positive (Actual_Lo) then
4685                      Actual_Lo   := Loval_Incl_EP - Small;
4686                      Actual_Size := Fsize (Actual_Lo, Actual_Hi);
4687
4688                   --  And of course, we need to do exactly the same parallel
4689                   --  fudge for flat ranges in the negative region.
4690
4691                   elsif UR_Is_Negative (Actual_Hi) then
4692                      Actual_Hi := Hival_Incl_EP + Small;
4693                      Actual_Size := Fsize (Actual_Lo, Actual_Hi);
4694                   end if;
4695                end if;
4696             end if;
4697
4698             Set_Realval (Lo, Actual_Lo);
4699             Set_Realval (Hi, Actual_Hi);
4700          end Fudge;
4701
4702       --  For the decimal case, none of this fudging is required, since there
4703       --  are no end-point problems in the decimal case (the end-points are
4704       --  always included).
4705
4706       else
4707          Actual_Size := Fsize (Loval, Hival);
4708       end if;
4709
4710       --  At this stage, the actual size has been calculated and the proper
4711       --  required bounds are stored in the low and high bounds.
4712
4713       if Actual_Size > 64 then
4714          Error_Msg_Uint_1 := UI_From_Int (Actual_Size);
4715          Error_Msg_N
4716            ("size required (^) for type& too large, maximum allowed is 64",
4717             Typ);
4718          Actual_Size := 64;
4719       end if;
4720
4721       --  Check size against explicit given size
4722
4723       if Has_Size_Clause (Typ) then
4724          if Actual_Size > RM_Size (Typ) then
4725             Error_Msg_Uint_1 := RM_Size (Typ);
4726             Error_Msg_Uint_2 := UI_From_Int (Actual_Size);
4727             Error_Msg_NE
4728               ("size given (^) for type& too small, minimum allowed is ^",
4729                Size_Clause (Typ), Typ);
4730
4731          else
4732             Actual_Size := UI_To_Int (Esize (Typ));
4733          end if;
4734
4735       --  Increase size to next natural boundary if no size clause given
4736
4737       else
4738          if Actual_Size <= 8 then
4739             Actual_Size := 8;
4740          elsif Actual_Size <= 16 then
4741             Actual_Size := 16;
4742          elsif Actual_Size <= 32 then
4743             Actual_Size := 32;
4744          else
4745             Actual_Size := 64;
4746          end if;
4747
4748          Init_Esize (Typ, Actual_Size);
4749          Adjust_Esize_For_Alignment (Typ);
4750       end if;
4751
4752       --  If we have a base type, then expand the bounds so that they extend to
4753       --  the full width of the allocated size in bits, to avoid junk range
4754       --  checks on intermediate computations.
4755
4756       if Base_Type (Typ) = Typ then
4757          Set_Realval (Lo, -(Small * (Uint_2 ** (Actual_Size - 1))));
4758          Set_Realval (Hi,  (Small * (Uint_2 ** (Actual_Size - 1) - 1)));
4759       end if;
4760
4761       --  Final step is to reanalyze the bounds using the proper type
4762       --  and set the Corresponding_Integer_Value fields of the literals.
4763
4764       Set_Etype (Lo, Empty);
4765       Set_Analyzed (Lo, False);
4766       Analyze (Lo);
4767
4768       --  Resolve with universal fixed if the base type, and the base type if
4769       --  it is a subtype. Note we can't resolve the base type with itself,
4770       --  that would be a reference before definition.
4771
4772       if Typ = Btyp then
4773          Resolve (Lo, Universal_Fixed);
4774       else
4775          Resolve (Lo, Btyp);
4776       end if;
4777
4778       --  Set corresponding integer value for bound
4779
4780       Set_Corresponding_Integer_Value
4781         (Lo, UR_To_Uint (Realval (Lo) / Small));
4782
4783       --  Similar processing for high bound
4784
4785       Set_Etype (Hi, Empty);
4786       Set_Analyzed (Hi, False);
4787       Analyze (Hi);
4788
4789       if Typ = Btyp then
4790          Resolve (Hi, Universal_Fixed);
4791       else
4792          Resolve (Hi, Btyp);
4793       end if;
4794
4795       Set_Corresponding_Integer_Value
4796         (Hi, UR_To_Uint (Realval (Hi) / Small));
4797
4798       --  Set type of range to correspond to bounds
4799
4800       Set_Etype (Rng, Etype (Lo));
4801
4802       --  Set Esize to calculated size if not set already
4803
4804       if Unknown_Esize (Typ) then
4805          Init_Esize (Typ, Actual_Size);
4806       end if;
4807
4808       --  Set RM_Size if not already set. If already set, check value
4809
4810       declare
4811          Minsiz : constant Uint := UI_From_Int (Minimum_Size (Typ));
4812
4813       begin
4814          if RM_Size (Typ) /= Uint_0 then
4815             if RM_Size (Typ) < Minsiz then
4816                Error_Msg_Uint_1 := RM_Size (Typ);
4817                Error_Msg_Uint_2 := Minsiz;
4818                Error_Msg_NE
4819                  ("size given (^) for type& too small, minimum allowed is ^",
4820                   Size_Clause (Typ), Typ);
4821             end if;
4822
4823          else
4824             Set_RM_Size (Typ, Minsiz);
4825          end if;
4826       end;
4827    end Freeze_Fixed_Point_Type;
4828
4829    ------------------
4830    -- Freeze_Itype --
4831    ------------------
4832
4833    procedure Freeze_Itype (T : Entity_Id; N : Node_Id) is
4834       L : List_Id;
4835
4836    begin
4837       Set_Has_Delayed_Freeze (T);
4838       L := Freeze_Entity (T, Sloc (N));
4839
4840       if Is_Non_Empty_List (L) then
4841          Insert_Actions (N, L);
4842       end if;
4843    end Freeze_Itype;
4844
4845    --------------------------
4846    -- Freeze_Static_Object --
4847    --------------------------
4848
4849    procedure Freeze_Static_Object (E : Entity_Id) is
4850
4851       Cannot_Be_Static : exception;
4852       --  Exception raised if the type of a static object cannot be made
4853       --  static. This happens if the type depends on non-global objects.
4854
4855       procedure Ensure_Expression_Is_SA (N : Node_Id);
4856       --  Called to ensure that an expression used as part of a type definition
4857       --  is statically allocatable, which means that the expression type is
4858       --  statically allocatable, and the expression is either static, or a
4859       --  reference to a library level constant.
4860
4861       procedure Ensure_Type_Is_SA (Typ : Entity_Id);
4862       --  Called to mark a type as static, checking that it is possible
4863       --  to set the type as static. If it is not possible, then the
4864       --  exception Cannot_Be_Static is raised.
4865
4866       -----------------------------
4867       -- Ensure_Expression_Is_SA --
4868       -----------------------------
4869
4870       procedure Ensure_Expression_Is_SA (N : Node_Id) is
4871          Ent : Entity_Id;
4872
4873       begin
4874          Ensure_Type_Is_SA (Etype (N));
4875
4876          if Is_Static_Expression (N) then
4877             return;
4878
4879          elsif Nkind (N) = N_Identifier then
4880             Ent := Entity (N);
4881
4882             if Present (Ent)
4883               and then Ekind (Ent) = E_Constant
4884               and then Is_Library_Level_Entity (Ent)
4885             then
4886                return;
4887             end if;
4888          end if;
4889
4890          raise Cannot_Be_Static;
4891       end Ensure_Expression_Is_SA;
4892
4893       -----------------------
4894       -- Ensure_Type_Is_SA --
4895       -----------------------
4896
4897       procedure Ensure_Type_Is_SA (Typ : Entity_Id) is
4898          N : Node_Id;
4899          C : Entity_Id;
4900
4901       begin
4902          --  If type is library level, we are all set
4903
4904          if Is_Library_Level_Entity (Typ) then
4905             return;
4906          end if;
4907
4908          --  We are also OK if the type already marked as statically allocated,
4909          --  which means we processed it before.
4910
4911          if Is_Statically_Allocated (Typ) then
4912             return;
4913          end if;
4914
4915          --  Mark type as statically allocated
4916
4917          Set_Is_Statically_Allocated (Typ);
4918
4919          --  Check that it is safe to statically allocate this type
4920
4921          if Is_Scalar_Type (Typ) or else Is_Real_Type (Typ) then
4922             Ensure_Expression_Is_SA (Type_Low_Bound (Typ));
4923             Ensure_Expression_Is_SA (Type_High_Bound (Typ));
4924
4925          elsif Is_Array_Type (Typ) then
4926             N := First_Index (Typ);
4927             while Present (N) loop
4928                Ensure_Type_Is_SA (Etype (N));
4929                Next_Index (N);
4930             end loop;
4931
4932             Ensure_Type_Is_SA (Component_Type (Typ));
4933
4934          elsif Is_Access_Type (Typ) then
4935             if Ekind (Designated_Type (Typ)) = E_Subprogram_Type then
4936
4937                declare
4938                   F : Entity_Id;
4939                   T : constant Entity_Id := Etype (Designated_Type (Typ));
4940
4941                begin
4942                   if T /= Standard_Void_Type then
4943                      Ensure_Type_Is_SA (T);
4944                   end if;
4945
4946                   F := First_Formal (Designated_Type (Typ));
4947
4948                   while Present (F) loop
4949                      Ensure_Type_Is_SA (Etype (F));
4950                      Next_Formal (F);
4951                   end loop;
4952                end;
4953
4954             else
4955                Ensure_Type_Is_SA (Designated_Type (Typ));
4956             end if;
4957
4958          elsif Is_Record_Type (Typ) then
4959             C := First_Entity (Typ);
4960             while Present (C) loop
4961                if Ekind (C) = E_Discriminant
4962                  or else Ekind (C) = E_Component
4963                then
4964                   Ensure_Type_Is_SA (Etype (C));
4965
4966                elsif Is_Type (C) then
4967                   Ensure_Type_Is_SA (C);
4968                end if;
4969
4970                Next_Entity (C);
4971             end loop;
4972
4973          elsif Ekind (Typ) = E_Subprogram_Type then
4974             Ensure_Type_Is_SA (Etype (Typ));
4975
4976             C := First_Formal (Typ);
4977             while Present (C) loop
4978                Ensure_Type_Is_SA (Etype (C));
4979                Next_Formal (C);
4980             end loop;
4981
4982          else
4983             raise Cannot_Be_Static;
4984          end if;
4985       end Ensure_Type_Is_SA;
4986
4987    --  Start of processing for Freeze_Static_Object
4988
4989    begin
4990       Ensure_Type_Is_SA (Etype (E));
4991
4992    exception
4993       when Cannot_Be_Static =>
4994
4995          --  If the object that cannot be static is imported or exported,
4996          --  then we give an error message saying that this object cannot
4997          --  be imported or exported.
4998
4999          if Is_Imported (E) then
5000             Error_Msg_N
5001               ("& cannot be imported (local type is not constant)", E);
5002
5003          --  Otherwise must be exported, something is wrong if compiler
5004          --  is marking something as statically allocated which cannot be).
5005
5006          else pragma Assert (Is_Exported (E));
5007             Error_Msg_N
5008               ("& cannot be exported (local type is not constant)", E);
5009          end if;
5010    end Freeze_Static_Object;
5011
5012    -----------------------
5013    -- Freeze_Subprogram --
5014    -----------------------
5015
5016    procedure Freeze_Subprogram (E : Entity_Id) is
5017       Retype : Entity_Id;
5018       F      : Entity_Id;
5019
5020    begin
5021       --  Subprogram may not have an address clause unless it is imported
5022
5023       if Present (Address_Clause (E)) then
5024          if not Is_Imported (E) then
5025             Error_Msg_N
5026               ("address clause can only be given " &
5027                "for imported subprogram",
5028                Name (Address_Clause (E)));
5029          end if;
5030       end if;
5031
5032       --  Reset the Pure indication on an imported subprogram unless an
5033       --  explicit Pure_Function pragma was present. We do this because
5034       --  otherwise it is an insidious error to call a non-pure function from
5035       --  pure unit and have calls mysteriously optimized away. What happens
5036       --  here is that the Import can bypass the normal check to ensure that
5037       --  pure units call only pure subprograms.
5038
5039       if Is_Imported (E)
5040         and then Is_Pure (E)
5041         and then not Has_Pragma_Pure_Function (E)
5042       then
5043          Set_Is_Pure (E, False);
5044       end if;
5045
5046       --  For non-foreign convention subprograms, this is where we create
5047       --  the extra formals (for accessibility level and constrained bit
5048       --  information). We delay this till the freeze point precisely so
5049       --  that we know the convention!
5050
5051       if not Has_Foreign_Convention (E) then
5052          Create_Extra_Formals (E);
5053          Set_Mechanisms (E);
5054
5055          --  If this is convention Ada and a Valued_Procedure, that's odd
5056
5057          if Ekind (E) = E_Procedure
5058            and then Is_Valued_Procedure (E)
5059            and then Convention (E) = Convention_Ada
5060            and then Warn_On_Export_Import
5061          then
5062             Error_Msg_N
5063               ("?Valued_Procedure has no effect for convention Ada", E);
5064             Set_Is_Valued_Procedure (E, False);
5065          end if;
5066
5067       --  Case of foreign convention
5068
5069       else
5070          Set_Mechanisms (E);
5071
5072          --  For foreign conventions, warn about return of an
5073          --  unconstrained array.
5074
5075          --  Note: we *do* allow a return by descriptor for the VMS case,
5076          --  though here there is probably more to be done ???
5077
5078          if Ekind (E) = E_Function then
5079             Retype := Underlying_Type (Etype (E));
5080
5081             --  If no return type, probably some other error, e.g. a
5082             --  missing full declaration, so ignore.
5083
5084             if No (Retype) then
5085                null;
5086
5087             --  If the return type is generic, we have emitted a warning
5088             --  earlier on, and there is nothing else to check here. Specific
5089             --  instantiations may lead to erroneous behavior.
5090
5091             elsif Is_Generic_Type (Etype (E)) then
5092                null;
5093
5094             elsif Is_Array_Type (Retype)
5095               and then not Is_Constrained (Retype)
5096               and then Mechanism (E) not in Descriptor_Codes
5097               and then Warn_On_Export_Import
5098             then
5099                Error_Msg_N
5100                 ("?foreign convention function& should not return " &
5101                   "unconstrained array", E);
5102                return;
5103             end if;
5104          end if;
5105
5106          --  If any of the formals for an exported foreign convention
5107          --  subprogram have defaults, then emit an appropriate warning since
5108          --  this is odd (default cannot be used from non-Ada code)
5109
5110          if Is_Exported (E) then
5111             F := First_Formal (E);
5112             while Present (F) loop
5113                if Warn_On_Export_Import
5114                  and then Present (Default_Value (F))
5115                then
5116                   Error_Msg_N
5117                     ("?parameter cannot be defaulted in non-Ada call",
5118                      Default_Value (F));
5119                end if;
5120
5121                Next_Formal (F);
5122             end loop;
5123          end if;
5124       end if;
5125
5126       --  For VMS, descriptor mechanisms for parameters are allowed only
5127       --  for imported/exported subprograms.  Moreover, the NCA descriptor
5128       --  is not allowed for parameters of exported subprograms.
5129
5130       if OpenVMS_On_Target then
5131          if Is_Exported (E) then
5132             F := First_Formal (E);
5133             while Present (F) loop
5134                if Mechanism (F) = By_Descriptor_NCA then
5135                   Error_Msg_N
5136                     ("'N'C'A' descriptor for parameter not permitted", F);
5137                   Error_Msg_N
5138                     ("\can only be used for imported subprogram", F);
5139                end if;
5140
5141                Next_Formal (F);
5142             end loop;
5143
5144          elsif not Is_Imported (E) then
5145             F := First_Formal (E);
5146             while Present (F) loop
5147                if Mechanism (F) in Descriptor_Codes then
5148                   Error_Msg_N
5149                     ("descriptor mechanism for parameter not permitted", F);
5150                   Error_Msg_N
5151                     ("\can only be used for imported/exported subprogram", F);
5152                end if;
5153
5154                Next_Formal (F);
5155             end loop;
5156          end if;
5157       end if;
5158
5159       --  Pragma Inline_Always is disallowed for dispatching subprograms
5160       --  because the address of such subprograms is saved in the dispatch
5161       --  table to support dispatching calls, and dispatching calls cannot
5162       --  be inlined. This is consistent with the restriction against using
5163       --  'Access or 'Address on an Inline_Always subprogram.
5164
5165       if Is_Dispatching_Operation (E)
5166         and then Has_Pragma_Inline_Always (E)
5167       then
5168          Error_Msg_N
5169            ("pragma Inline_Always not allowed for dispatching subprograms", E);
5170       end if;
5171
5172       --  Because of the implicit representation of inherited predefined
5173       --  operators in the front-end, the overriding status of the operation
5174       --  may be affected when a full view of a type is analyzed, and this is
5175       --  not captured by the analysis of the corresponding type declaration.
5176       --  Therefore the correctness of a not-overriding indicator must be
5177       --  rechecked when the subprogram is frozen.
5178
5179       if Nkind (E) = N_Defining_Operator_Symbol
5180         and then not Error_Posted (Parent (E))
5181       then
5182          Check_Overriding_Indicator (E, Empty, Is_Primitive (E));
5183       end if;
5184    end Freeze_Subprogram;
5185
5186    ----------------------
5187    -- Is_Fully_Defined --
5188    ----------------------
5189
5190    function Is_Fully_Defined (T : Entity_Id) return Boolean is
5191    begin
5192       if Ekind (T) = E_Class_Wide_Type then
5193          return Is_Fully_Defined (Etype (T));
5194
5195       elsif Is_Array_Type (T) then
5196          return Is_Fully_Defined (Component_Type (T));
5197
5198       elsif Is_Record_Type (T)
5199         and not Is_Private_Type (T)
5200       then
5201          --  Verify that the record type has no components with private types
5202          --  without completion.
5203
5204          declare
5205             Comp : Entity_Id;
5206
5207          begin
5208             Comp := First_Component (T);
5209
5210             while Present (Comp) loop
5211                if not Is_Fully_Defined (Etype (Comp)) then
5212                   return False;
5213                end if;
5214
5215                Next_Component (Comp);
5216             end loop;
5217             return True;
5218          end;
5219
5220       else
5221          return not Is_Private_Type (T)
5222            or else Present (Full_View (Base_Type (T)));
5223       end if;
5224    end Is_Fully_Defined;
5225
5226    ---------------------------------
5227    -- Process_Default_Expressions --
5228    ---------------------------------
5229
5230    procedure Process_Default_Expressions
5231      (E     : Entity_Id;
5232       After : in out Node_Id)
5233    is
5234       Loc    : constant Source_Ptr := Sloc (E);
5235       Dbody  : Node_Id;
5236       Formal : Node_Id;
5237       Dcopy  : Node_Id;
5238       Dnam   : Entity_Id;
5239
5240    begin
5241       Set_Default_Expressions_Processed (E);
5242
5243       --  A subprogram instance and its associated anonymous subprogram share
5244       --  their signature. The default expression functions are defined in the
5245       --  wrapper packages for the anonymous subprogram, and should not be
5246       --  generated again for the instance.
5247
5248       if Is_Generic_Instance (E)
5249         and then Present (Alias (E))
5250         and then Default_Expressions_Processed (Alias (E))
5251       then
5252          return;
5253       end if;
5254
5255       Formal := First_Formal (E);
5256       while Present (Formal) loop
5257          if Present (Default_Value (Formal)) then
5258
5259             --  We work with a copy of the default expression because we
5260             --  do not want to disturb the original, since this would mess
5261             --  up the conformance checking.
5262
5263             Dcopy := New_Copy_Tree (Default_Value (Formal));
5264
5265             --  The analysis of the expression may generate insert actions,
5266             --  which of course must not be executed. We wrap those actions
5267             --  in a procedure that is not called, and later on eliminated.
5268             --  The following cases have no side-effects, and are analyzed
5269             --  directly.
5270
5271             if Nkind (Dcopy) = N_Identifier
5272               or else Nkind (Dcopy) = N_Expanded_Name
5273               or else Nkind (Dcopy) = N_Integer_Literal
5274               or else (Nkind (Dcopy) = N_Real_Literal
5275                         and then not Vax_Float (Etype (Dcopy)))
5276               or else Nkind (Dcopy) = N_Character_Literal
5277               or else Nkind (Dcopy) = N_String_Literal
5278               or else Known_Null (Dcopy)
5279               or else (Nkind (Dcopy) = N_Attribute_Reference
5280                         and then
5281                        Attribute_Name (Dcopy) = Name_Null_Parameter)
5282             then
5283
5284                --  If there is no default function, we must still do a full
5285                --  analyze call on the default value, to ensure that all error
5286                --  checks are performed, e.g. those associated with static
5287                --  evaluation. Note: this branch will always be taken if the
5288                --  analyzer is turned off (but we still need the error checks).
5289
5290                --  Note: the setting of parent here is to meet the requirement
5291                --  that we can only analyze the expression while attached to
5292                --  the tree. Really the requirement is that the parent chain
5293                --  be set, we don't actually need to be in the tree.
5294
5295                Set_Parent (Dcopy, Declaration_Node (Formal));
5296                Analyze (Dcopy);
5297
5298                --  Default expressions are resolved with their own type if the
5299                --  context is generic, to avoid anomalies with private types.
5300
5301                if Ekind (Scope (E)) = E_Generic_Package then
5302                   Resolve (Dcopy);
5303                else
5304                   Resolve (Dcopy, Etype (Formal));
5305                end if;
5306
5307                --  If that resolved expression will raise constraint error,
5308                --  then flag the default value as raising constraint error.
5309                --  This allows a proper error message on the calls.
5310
5311                if Raises_Constraint_Error (Dcopy) then
5312                   Set_Raises_Constraint_Error (Default_Value (Formal));
5313                end if;
5314
5315             --  If the default is a parameterless call, we use the name of
5316             --  the called function directly, and there is no body to build.
5317
5318             elsif Nkind (Dcopy) = N_Function_Call
5319               and then No (Parameter_Associations (Dcopy))
5320             then
5321                null;
5322
5323             --  Else construct and analyze the body of a wrapper procedure
5324             --  that contains an object declaration to hold the expression.
5325             --  Given that this is done only to complete the analysis, it
5326             --  simpler to build a procedure than a function which might
5327             --  involve secondary stack expansion.
5328
5329             else
5330                Dnam :=
5331                  Make_Defining_Identifier (Loc, New_Internal_Name ('D'));
5332
5333                Dbody :=
5334                  Make_Subprogram_Body (Loc,
5335                    Specification =>
5336                      Make_Procedure_Specification (Loc,
5337                        Defining_Unit_Name => Dnam),
5338
5339                    Declarations => New_List (
5340                      Make_Object_Declaration (Loc,
5341                        Defining_Identifier =>
5342                          Make_Defining_Identifier (Loc,
5343                            New_Internal_Name ('T')),
5344                          Object_Definition =>
5345                            New_Occurrence_Of (Etype (Formal), Loc),
5346                          Expression => New_Copy_Tree (Dcopy))),
5347
5348                    Handled_Statement_Sequence =>
5349                      Make_Handled_Sequence_Of_Statements (Loc,
5350                        Statements => New_List));
5351
5352                Set_Scope (Dnam, Scope (E));
5353                Set_Assignment_OK (First (Declarations (Dbody)));
5354                Set_Is_Eliminated (Dnam);
5355                Insert_After (After, Dbody);
5356                Analyze (Dbody);
5357                After := Dbody;
5358             end if;
5359          end if;
5360
5361          Next_Formal (Formal);
5362       end loop;
5363    end Process_Default_Expressions;
5364
5365    ----------------------------------------
5366    -- Set_Component_Alignment_If_Not_Set --
5367    ----------------------------------------
5368
5369    procedure Set_Component_Alignment_If_Not_Set (Typ : Entity_Id) is
5370    begin
5371       --  Ignore if not base type, subtypes don't need anything
5372
5373       if Typ /= Base_Type (Typ) then
5374          return;
5375       end if;
5376
5377       --  Do not override existing representation
5378
5379       if Is_Packed (Typ) then
5380          return;
5381
5382       elsif Has_Specified_Layout (Typ) then
5383          return;
5384
5385       elsif Component_Alignment (Typ) /= Calign_Default then
5386          return;
5387
5388       else
5389          Set_Component_Alignment
5390            (Typ, Scope_Stack.Table
5391                   (Scope_Stack.Last).Component_Alignment_Default);
5392       end if;
5393    end Set_Component_Alignment_If_Not_Set;
5394
5395    ------------------
5396    -- Undelay_Type --
5397    ------------------
5398
5399    procedure Undelay_Type (T : Entity_Id) is
5400    begin
5401       Set_Has_Delayed_Freeze (T, False);
5402       Set_Freeze_Node (T, Empty);
5403
5404       --  Since we don't want T to have a Freeze_Node, we don't want its
5405       --  Full_View or Corresponding_Record_Type to have one either.
5406
5407       --  ??? Fundamentally, this whole handling is a kludge. What we really
5408       --  want is to be sure that for an Itype that's part of record R and is a
5409       --  subtype of type T, that it's frozen after the later of the freeze
5410       --  points of R and T. We have no way of doing that directly, so what we
5411       --  do is force most such Itypes to be frozen as part of freezing R via
5412       --  this procedure and only delay the ones that need to be delayed
5413       --  (mostly the designated types of access types that are defined as part
5414       --  of the record).
5415
5416       if Is_Private_Type (T)
5417         and then Present (Full_View (T))
5418         and then Is_Itype (Full_View (T))
5419         and then Is_Record_Type (Scope (Full_View (T)))
5420       then
5421          Undelay_Type (Full_View (T));
5422       end if;
5423
5424       if Is_Concurrent_Type (T)
5425         and then Present (Corresponding_Record_Type (T))
5426         and then Is_Itype (Corresponding_Record_Type (T))
5427         and then Is_Record_Type (Scope (Corresponding_Record_Type (T)))
5428       then
5429          Undelay_Type (Corresponding_Record_Type (T));
5430       end if;
5431    end Undelay_Type;
5432
5433    ------------------
5434    -- Warn_Overlay --
5435    ------------------
5436
5437    procedure Warn_Overlay
5438      (Expr : Node_Id;
5439       Typ  : Entity_Id;
5440       Nam  : Entity_Id)
5441    is
5442       Ent : constant Entity_Id := Entity (Nam);
5443       --  The object to which the address clause applies
5444
5445       Init : Node_Id;
5446       Old  : Entity_Id := Empty;
5447       Decl : Node_Id;
5448
5449    begin
5450       --  No warning if address clause overlay warnings are off
5451
5452       if not Address_Clause_Overlay_Warnings then
5453          return;
5454       end if;
5455
5456       --  No warning if there is an explicit initialization
5457
5458       Init := Original_Node (Expression (Declaration_Node (Ent)));
5459
5460       if Present (Init) and then Comes_From_Source (Init) then
5461          return;
5462       end if;
5463
5464       --  We only give the warning for non-imported entities of a type for
5465       --  which a non-null base init proc is defined (or for access types which
5466       --  have implicit null initialization).
5467
5468       if Present (Expr)
5469         and then (Has_Non_Null_Base_Init_Proc (Typ)
5470                     or else Is_Access_Type (Typ))
5471         and then not Is_Imported (Ent)
5472       then
5473          if Nkind (Expr) = N_Attribute_Reference
5474            and then Is_Entity_Name (Prefix (Expr))
5475          then
5476             Old := Entity (Prefix (Expr));
5477
5478          elsif Is_Entity_Name (Expr)
5479            and then Ekind (Entity (Expr)) = E_Constant
5480          then
5481             Decl := Declaration_Node (Entity (Expr));
5482
5483             if Nkind (Decl) = N_Object_Declaration
5484               and then Present (Expression (Decl))
5485               and then Nkind (Expression (Decl)) = N_Attribute_Reference
5486               and then Is_Entity_Name (Prefix (Expression (Decl)))
5487             then
5488                Old := Entity (Prefix (Expression (Decl)));
5489
5490             elsif Nkind (Expr) = N_Function_Call then
5491                return;
5492             end if;
5493
5494          --  A function call (most likely to To_Address) is probably not an
5495          --  overlay, so skip warning. Ditto if the function call was inlined
5496          --  and transformed into an entity.
5497
5498          elsif Nkind (Original_Node (Expr)) = N_Function_Call then
5499             return;
5500          end if;
5501
5502          Decl := Next (Parent (Expr));
5503
5504          --  If a pragma Import follows, we assume that it is for the current
5505          --  target of the address clause, and skip the warning.
5506
5507          if Present (Decl)
5508            and then Nkind (Decl) = N_Pragma
5509            and then Pragma_Name (Decl) = Name_Import
5510          then
5511             return;
5512          end if;
5513
5514          if Present (Old) then
5515             Error_Msg_Node_2 := Old;
5516             Error_Msg_N
5517               ("default initialization of & may modify &?",
5518                Nam);
5519          else
5520             Error_Msg_N
5521               ("default initialization of & may modify overlaid storage?",
5522                Nam);
5523          end if;
5524
5525          --  Add friendly warning if initialization comes from a packed array
5526          --  component.
5527
5528          if Is_Record_Type (Typ)  then
5529             declare
5530                Comp : Entity_Id;
5531
5532             begin
5533                Comp := First_Component (Typ);
5534
5535                while Present (Comp) loop
5536                   if Nkind (Parent (Comp)) = N_Component_Declaration
5537                     and then Present (Expression (Parent (Comp)))
5538                   then
5539                      exit;
5540                   elsif Is_Array_Type (Etype (Comp))
5541                      and then Present (Packed_Array_Type (Etype (Comp)))
5542                   then
5543                      Error_Msg_NE
5544                        ("\packed array component& " &
5545                         "will be initialized to zero?",
5546                         Nam, Comp);
5547                      exit;
5548                   else
5549                      Next_Component (Comp);
5550                   end if;
5551                end loop;
5552             end;
5553          end if;
5554
5555          Error_Msg_N
5556            ("\use pragma Import for & to " &
5557             "suppress initialization (RM B.1(24))?",
5558             Nam);
5559       end if;
5560    end Warn_Overlay;
5561
5562 end Freeze;