OSDN Git Service

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