OSDN Git Service

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