OSDN Git Service

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