OSDN Git Service

2009-04-16 Robert Dewar <dewar@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / exp_ch3.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                              E X P _ C H 3                               --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2008, Free Software Foundation, Inc.         --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 3,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT; see file COPYING3.  If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license.          --
20 --                                                                          --
21 -- GNAT was originally developed  by the GNAT team at  New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
23 --                                                                          --
24 ------------------------------------------------------------------------------
25
26 with Atree;    use Atree;
27 with Checks;   use Checks;
28 with Einfo;    use Einfo;
29 with Errout;   use Errout;
30 with Exp_Aggr; use Exp_Aggr;
31 with Exp_Atag; use Exp_Atag;
32 with Exp_Ch4;  use Exp_Ch4;
33 with Exp_Ch6;  use Exp_Ch6;
34 with Exp_Ch7;  use Exp_Ch7;
35 with Exp_Ch9;  use Exp_Ch9;
36 with Exp_Ch11; use Exp_Ch11;
37 with Exp_Disp; use Exp_Disp;
38 with Exp_Dist; use Exp_Dist;
39 with Exp_Smem; use Exp_Smem;
40 with Exp_Strm; use Exp_Strm;
41 with Exp_Tss;  use Exp_Tss;
42 with Exp_Util; use Exp_Util;
43 with Freeze;   use Freeze;
44 with Nlists;   use Nlists;
45 with Namet;    use Namet;
46 with Nmake;    use Nmake;
47 with Opt;      use Opt;
48 with Restrict; use Restrict;
49 with Rident;   use Rident;
50 with Rtsfind;  use Rtsfind;
51 with Sem;      use Sem;
52 with Sem_Aux;  use Sem_Aux;
53 with Sem_Attr; use Sem_Attr;
54 with Sem_Cat;  use Sem_Cat;
55 with Sem_Ch3;  use Sem_Ch3;
56 with Sem_Ch8;  use Sem_Ch8;
57 with Sem_Disp; use Sem_Disp;
58 with Sem_Eval; use Sem_Eval;
59 with Sem_Mech; use Sem_Mech;
60 with Sem_Res;  use Sem_Res;
61 with Sem_Type; use Sem_Type;
62 with Sem_Util; use Sem_Util;
63 with Sinfo;    use Sinfo;
64 with Stand;    use Stand;
65 with Snames;   use Snames;
66 with Targparm; use Targparm;
67 with Tbuild;   use Tbuild;
68 with Ttypes;   use Ttypes;
69 with Validsw;  use Validsw;
70
71 package body Exp_Ch3 is
72
73    -----------------------
74    -- Local Subprograms --
75    -----------------------
76
77    function Add_Final_Chain (Def_Id : Entity_Id) return Entity_Id;
78    --  Add the declaration of a finalization list to the freeze actions for
79    --  Def_Id, and return its defining identifier.
80
81    procedure Adjust_Discriminants (Rtype : Entity_Id);
82    --  This is used when freezing a record type. It attempts to construct
83    --  more restrictive subtypes for discriminants so that the max size of
84    --  the record can be calculated more accurately. See the body of this
85    --  procedure for details.
86
87    procedure Build_Array_Init_Proc (A_Type : Entity_Id; Nod : Node_Id);
88    --  Build initialization procedure for given array type. Nod is a node
89    --  used for attachment of any actions required in its construction.
90    --  It also supplies the source location used for the procedure.
91
92    function Build_Discriminant_Formals
93      (Rec_Id : Entity_Id;
94       Use_Dl : Boolean) return List_Id;
95    --  This function uses the discriminants of a type to build a list of
96    --  formal parameters, used in the following function. If the flag Use_Dl
97    --  is set, the list is built using the already defined discriminals
98    --  of the type. Otherwise new identifiers are created, with the source
99    --  names of the discriminants.
100
101    function Build_Equivalent_Array_Aggregate (T : Entity_Id) return Node_Id;
102    --  This function builds a static aggregate that can serve as the initial
103    --  value for an array type whose bounds are static, and whose component
104    --  type is a composite type that has a static equivalent aggregate.
105    --  The equivalent array aggregate is used both for object initialization
106    --  and for component initialization, when used in the following function.
107
108    function Build_Equivalent_Record_Aggregate (T : Entity_Id) return Node_Id;
109    --  This function builds a static aggregate that can serve as the initial
110    --  value for a record type whose components are scalar and initialized
111    --  with compile-time values, or arrays with similar initialization or
112    --  defaults. When possible, initialization of an object of the type can
113    --  be achieved by using a copy of the aggregate as an initial value, thus
114    --  removing the implicit call that would otherwise constitute elaboration
115    --  code.
116
117    function Build_Master_Renaming
118      (N : Node_Id;
119       T : Entity_Id) return Entity_Id;
120    --  If the designated type of an access type is a task type or contains
121    --  tasks, we make sure that a _Master variable is declared in the current
122    --  scope, and then declare a renaming for it:
123    --
124    --    atypeM : Master_Id renames _Master;
125    --
126    --  where atyp is the name of the access type. This declaration is used when
127    --  an allocator for the access type is expanded. The node is the full
128    --  declaration of the designated type that contains tasks. The renaming
129    --  declaration is inserted before N, and after the Master declaration.
130
131    procedure Build_Record_Init_Proc (N : Node_Id; Pe : Entity_Id);
132    --  Build record initialization procedure. N is the type declaration
133    --  node, and Pe is the corresponding entity for the record type.
134
135    procedure Build_Slice_Assignment (Typ : Entity_Id);
136    --  Build assignment procedure for one-dimensional arrays of controlled
137    --  types. Other array and slice assignments are expanded in-line, but
138    --  the code expansion for controlled components (when control actions
139    --  are active) can lead to very large blocks that GCC3 handles poorly.
140
141    procedure Build_Variant_Record_Equality (Typ  : Entity_Id);
142    --  Create An Equality function for the non-tagged variant record 'Typ'
143    --  and attach it to the TSS list
144
145    procedure Check_Stream_Attributes (Typ : Entity_Id);
146    --  Check that if a limited extension has a parent with user-defined stream
147    --  attributes, and does not itself have user-defined stream-attributes,
148    --  then any limited component of the extension also has the corresponding
149    --  user-defined stream attributes.
150
151    procedure Clean_Task_Names
152      (Typ     : Entity_Id;
153       Proc_Id : Entity_Id);
154    --  If an initialization procedure includes calls to generate names
155    --  for task subcomponents, indicate that secondary stack cleanup is
156    --  needed after an initialization. Typ is the component type, and Proc_Id
157    --  the initialization procedure for the enclosing composite type.
158
159    procedure Expand_Tagged_Root (T : Entity_Id);
160    --  Add a field _Tag at the beginning of the record. This field carries
161    --  the value of the access to the Dispatch table. This procedure is only
162    --  called on root type, the _Tag field being inherited by the descendants.
163
164    procedure Expand_Record_Controller (T : Entity_Id);
165    --  T must be a record type that Has_Controlled_Component. Add a field
166    --  _controller of type Record_Controller or Limited_Record_Controller
167    --  in the record T.
168
169    procedure Freeze_Array_Type (N : Node_Id);
170    --  Freeze an array type. Deals with building the initialization procedure,
171    --  creating the packed array type for a packed array and also with the
172    --  creation of the controlling procedures for the controlled case. The
173    --  argument N is the N_Freeze_Entity node for the type.
174
175    procedure Freeze_Enumeration_Type (N : Node_Id);
176    --  Freeze enumeration type with non-standard representation. Builds the
177    --  array and function needed to convert between enumeration pos and
178    --  enumeration representation values. N is the N_Freeze_Entity node
179    --  for the type.
180
181    procedure Freeze_Record_Type (N : Node_Id);
182    --  Freeze record type. Builds all necessary discriminant checking
183    --  and other ancillary functions, and builds dispatch tables where
184    --  needed. The argument N is the N_Freeze_Entity node. This processing
185    --  applies only to E_Record_Type entities, not to class wide types,
186    --  record subtypes, or private types.
187
188    procedure Freeze_Stream_Operations (N : Node_Id; Typ : Entity_Id);
189    --  Treat user-defined stream operations as renaming_as_body if the
190    --  subprogram they rename is not frozen when the type is frozen.
191
192    procedure Initialization_Warning (E : Entity_Id);
193    --  If static elaboration of the package is requested, indicate
194    --  when a type does meet the conditions for static initialization. If
195    --  E is a type, it has components that have no static initialization.
196    --  if E is an entity, its initial expression is not compile-time known.
197
198    function Init_Formals (Typ : Entity_Id) return List_Id;
199    --  This function builds the list of formals for an initialization routine.
200    --  The first formal is always _Init with the given type. For task value
201    --  record types and types containing tasks, three additional formals are
202    --  added:
203    --
204    --    _Master    : Master_Id
205    --    _Chain     : in out Activation_Chain
206    --    _Task_Name : String
207    --
208    --  The caller must append additional entries for discriminants if required.
209
210    function In_Runtime (E : Entity_Id) return Boolean;
211    --  Check if E is defined in the RTL (in a child of Ada or System). Used
212    --  to avoid to bring in the overhead of _Input, _Output for tagged types.
213
214    function Is_Variable_Size_Record (E : Entity_Id) return Boolean;
215    --  Returns true if E has variable size components
216
217    function Make_Eq_Case
218      (E     : Entity_Id;
219       CL    : Node_Id;
220       Discr : Entity_Id := Empty) return List_Id;
221    --  Building block for variant record equality. Defined to share the code
222    --  between the tagged and non-tagged case. Given a Component_List node CL,
223    --  it generates an 'if' followed by a 'case' statement that compares all
224    --  components of local temporaries named X and Y (that are declared as
225    --  formals at some upper level). E provides the Sloc to be used for the
226    --  generated code. Discr is used as the case statement switch in the case
227    --  of Unchecked_Union equality.
228
229    function Make_Eq_If
230      (E : Entity_Id;
231       L : List_Id) return Node_Id;
232    --  Building block for variant record equality. Defined to share the code
233    --  between the tagged and non-tagged case. Given the list of components
234    --  (or discriminants) L, it generates a return statement that compares all
235    --  components of local temporaries named X and Y (that are declared as
236    --  formals at some upper level). E provides the Sloc to be used for the
237    --  generated code.
238
239    procedure Make_Predefined_Primitive_Specs
240      (Tag_Typ     : Entity_Id;
241       Predef_List : out List_Id;
242       Renamed_Eq  : out Entity_Id);
243    --  Create a list with the specs of the predefined primitive operations.
244    --  For tagged types that are interfaces all these primitives are defined
245    --  abstract.
246    --
247    --  The following entries are present for all tagged types, and provide
248    --  the results of the corresponding attribute applied to the object.
249    --  Dispatching is required in general, since the result of the attribute
250    --  will vary with the actual object subtype.
251    --
252    --     _alignment     provides result of 'Alignment attribute
253    --     _size          provides result of 'Size attribute
254    --     typSR          provides result of 'Read attribute
255    --     typSW          provides result of 'Write attribute
256    --     typSI          provides result of 'Input attribute
257    --     typSO          provides result of 'Output attribute
258    --
259    --  The following entries are additionally present for non-limited tagged
260    --  types, and implement additional dispatching operations for predefined
261    --  operations:
262    --
263    --     _equality      implements "=" operator
264    --     _assign        implements assignment operation
265    --     typDF          implements deep finalization
266    --     typDA          implements deep adjust
267    --
268    --  The latter two are empty procedures unless the type contains some
269    --  controlled components that require finalization actions (the deep
270    --  in the name refers to the fact that the action applies to components).
271    --
272    --  The list is returned in Predef_List. The Parameter Renamed_Eq either
273    --  returns the value Empty, or else the defining unit name for the
274    --  predefined equality function in the case where the type has a primitive
275    --  operation that is a renaming of predefined equality (but only if there
276    --  is also an overriding user-defined equality function). The returned
277    --  Renamed_Eq will be passed to the corresponding parameter of
278    --  Predefined_Primitive_Bodies.
279
280    function Has_New_Non_Standard_Rep (T : Entity_Id) return Boolean;
281    --  returns True if there are representation clauses for type T that are not
282    --  inherited. If the result is false, the init_proc and the discriminant
283    --  checking functions of the parent can be reused by a derived type.
284
285    procedure Make_Controlling_Function_Wrappers
286      (Tag_Typ   : Entity_Id;
287       Decl_List : out List_Id;
288       Body_List : out List_Id);
289    --  Ada 2005 (AI-391): Makes specs and bodies for the wrapper functions
290    --  associated with inherited functions with controlling results which
291    --  are not overridden. The body of each wrapper function consists solely
292    --  of a return statement whose expression is an extension aggregate
293    --  invoking the inherited subprogram's parent subprogram and extended
294    --  with a null association list.
295
296    procedure Make_Null_Procedure_Specs
297      (Tag_Typ   : Entity_Id;
298       Decl_List : out List_Id);
299    --  Ada 2005 (AI-251): Makes specs for null procedures associated with any
300    --  null procedures inherited from an interface type that have not been
301    --  overridden. Only one null procedure will be created for a given set of
302    --  inherited null procedures with homographic profiles.
303
304    function Predef_Spec_Or_Body
305      (Loc      : Source_Ptr;
306       Tag_Typ  : Entity_Id;
307       Name     : Name_Id;
308       Profile  : List_Id;
309       Ret_Type : Entity_Id := Empty;
310       For_Body : Boolean   := False) return Node_Id;
311    --  This function generates the appropriate expansion for a predefined
312    --  primitive operation specified by its name, parameter profile and
313    --  return type (Empty means this is a procedure). If For_Body is false,
314    --  then the returned node is a subprogram declaration. If For_Body is
315    --  true, then the returned node is a empty subprogram body containing
316    --  no declarations and no statements.
317
318    function Predef_Stream_Attr_Spec
319      (Loc      : Source_Ptr;
320       Tag_Typ  : Entity_Id;
321       Name     : TSS_Name_Type;
322       For_Body : Boolean := False) return Node_Id;
323    --  Specialized version of Predef_Spec_Or_Body that apply to read, write,
324    --  input and output attribute whose specs are constructed in Exp_Strm.
325
326    function Predef_Deep_Spec
327      (Loc      : Source_Ptr;
328       Tag_Typ  : Entity_Id;
329       Name     : TSS_Name_Type;
330       For_Body : Boolean := False) return Node_Id;
331    --  Specialized version of Predef_Spec_Or_Body that apply to _deep_adjust
332    --  and _deep_finalize
333
334    function Predefined_Primitive_Bodies
335      (Tag_Typ    : Entity_Id;
336       Renamed_Eq : Entity_Id) return List_Id;
337    --  Create the bodies of the predefined primitives that are described in
338    --  Predefined_Primitive_Specs. When not empty, Renamed_Eq must denote
339    --  the defining unit name of the type's predefined equality as returned
340    --  by Make_Predefined_Primitive_Specs.
341
342    function Predefined_Primitive_Freeze (Tag_Typ : Entity_Id) return List_Id;
343    --  Freeze entities of all predefined primitive operations. This is needed
344    --  because the bodies of these operations do not normally do any freezing.
345
346    function Stream_Operation_OK
347      (Typ       : Entity_Id;
348       Operation : TSS_Name_Type) return Boolean;
349    --  Check whether the named stream operation must be emitted for a given
350    --  type. The rules for inheritance of stream attributes by type extensions
351    --  are enforced by this function. Furthermore, various restrictions prevent
352    --  the generation of these operations, as a useful optimization or for
353    --  certification purposes.
354
355    ---------------------
356    -- Add_Final_Chain --
357    ---------------------
358
359    function Add_Final_Chain (Def_Id : Entity_Id) return Entity_Id is
360       Loc   : constant Source_Ptr := Sloc (Def_Id);
361       Flist : Entity_Id;
362
363    begin
364       Flist :=
365         Make_Defining_Identifier (Loc,
366           New_External_Name (Chars (Def_Id), 'L'));
367
368       Append_Freeze_Action (Def_Id,
369         Make_Object_Declaration (Loc,
370           Defining_Identifier => Flist,
371           Object_Definition   =>
372             New_Reference_To (RTE (RE_List_Controller), Loc)));
373
374       return Flist;
375    end Add_Final_Chain;
376
377    --------------------------
378    -- Adjust_Discriminants --
379    --------------------------
380
381    --  This procedure attempts to define subtypes for discriminants that are
382    --  more restrictive than those declared. Such a replacement is possible if
383    --  we can demonstrate that values outside the restricted range would cause
384    --  constraint errors in any case. The advantage of restricting the
385    --  discriminant types in this way is that the maximum size of the variant
386    --  record can be calculated more conservatively.
387
388    --  An example of a situation in which we can perform this type of
389    --  restriction is the following:
390
391    --    subtype B is range 1 .. 10;
392    --    type Q is array (B range <>) of Integer;
393
394    --    type V (N : Natural) is record
395    --       C : Q (1 .. N);
396    --    end record;
397
398    --  In this situation, we can restrict the upper bound of N to 10, since
399    --  any larger value would cause a constraint error in any case.
400
401    --  There are many situations in which such restriction is possible, but
402    --  for now, we just look for cases like the above, where the component
403    --  in question is a one dimensional array whose upper bound is one of
404    --  the record discriminants. Also the component must not be part of
405    --  any variant part, since then the component does not always exist.
406
407    procedure Adjust_Discriminants (Rtype : Entity_Id) is
408       Loc   : constant Source_Ptr := Sloc (Rtype);
409       Comp  : Entity_Id;
410       Ctyp  : Entity_Id;
411       Ityp  : Entity_Id;
412       Lo    : Node_Id;
413       Hi    : Node_Id;
414       P     : Node_Id;
415       Loval : Uint;
416       Discr : Entity_Id;
417       Dtyp  : Entity_Id;
418       Dhi   : Node_Id;
419       Dhiv  : Uint;
420       Ahi   : Node_Id;
421       Ahiv  : Uint;
422       Tnn   : Entity_Id;
423
424    begin
425       Comp := First_Component (Rtype);
426       while Present (Comp) loop
427
428          --  If our parent is a variant, quit, we do not look at components
429          --  that are in variant parts, because they may not always exist.
430
431          P := Parent (Comp);   -- component declaration
432          P := Parent (P);      -- component list
433
434          exit when Nkind (Parent (P)) = N_Variant;
435
436          --  We are looking for a one dimensional array type
437
438          Ctyp := Etype (Comp);
439
440          if not Is_Array_Type (Ctyp)
441            or else Number_Dimensions (Ctyp) > 1
442          then
443             goto Continue;
444          end if;
445
446          --  The lower bound must be constant, and the upper bound is a
447          --  discriminant (which is a discriminant of the current record).
448
449          Ityp := Etype (First_Index (Ctyp));
450          Lo := Type_Low_Bound (Ityp);
451          Hi := Type_High_Bound (Ityp);
452
453          if not Compile_Time_Known_Value (Lo)
454            or else Nkind (Hi) /= N_Identifier
455            or else No (Entity (Hi))
456            or else Ekind (Entity (Hi)) /= E_Discriminant
457          then
458             goto Continue;
459          end if;
460
461          --  We have an array with appropriate bounds
462
463          Loval := Expr_Value (Lo);
464          Discr := Entity (Hi);
465          Dtyp  := Etype (Discr);
466
467          --  See if the discriminant has a known upper bound
468
469          Dhi := Type_High_Bound (Dtyp);
470
471          if not Compile_Time_Known_Value (Dhi) then
472             goto Continue;
473          end if;
474
475          Dhiv := Expr_Value (Dhi);
476
477          --  See if base type of component array has known upper bound
478
479          Ahi := Type_High_Bound (Etype (First_Index (Base_Type (Ctyp))));
480
481          if not Compile_Time_Known_Value (Ahi) then
482             goto Continue;
483          end if;
484
485          Ahiv := Expr_Value (Ahi);
486
487          --  The condition for doing the restriction is that the high bound
488          --  of the discriminant is greater than the low bound of the array,
489          --  and is also greater than the high bound of the base type index.
490
491          if Dhiv > Loval and then Dhiv > Ahiv then
492
493             --  We can reset the upper bound of the discriminant type to
494             --  whichever is larger, the low bound of the component, or
495             --  the high bound of the base type array index.
496
497             --  We build a subtype that is declared as
498
499             --     subtype Tnn is discr_type range discr_type'First .. max;
500
501             --  And insert this declaration into the tree. The type of the
502             --  discriminant is then reset to this more restricted subtype.
503
504             Tnn := Make_Defining_Identifier (Loc, New_Internal_Name ('T'));
505
506             Insert_Action (Declaration_Node (Rtype),
507               Make_Subtype_Declaration (Loc,
508                 Defining_Identifier => Tnn,
509                 Subtype_Indication =>
510                   Make_Subtype_Indication (Loc,
511                     Subtype_Mark => New_Occurrence_Of (Dtyp, Loc),
512                     Constraint   =>
513                       Make_Range_Constraint (Loc,
514                         Range_Expression =>
515                           Make_Range (Loc,
516                             Low_Bound =>
517                               Make_Attribute_Reference (Loc,
518                                 Attribute_Name => Name_First,
519                                 Prefix => New_Occurrence_Of (Dtyp, Loc)),
520                             High_Bound =>
521                               Make_Integer_Literal (Loc,
522                                 Intval => UI_Max (Loval, Ahiv)))))));
523
524             Set_Etype (Discr, Tnn);
525          end if;
526
527       <<Continue>>
528          Next_Component (Comp);
529       end loop;
530    end Adjust_Discriminants;
531
532    ---------------------------
533    -- Build_Array_Init_Proc --
534    ---------------------------
535
536    procedure Build_Array_Init_Proc (A_Type : Entity_Id; Nod : Node_Id) is
537       Loc              : constant Source_Ptr := Sloc (Nod);
538       Comp_Type        : constant Entity_Id  := Component_Type (A_Type);
539       Index_List       : List_Id;
540       Proc_Id          : Entity_Id;
541       Body_Stmts       : List_Id;
542       Has_Default_Init : Boolean;
543
544       function Init_Component return List_Id;
545       --  Create one statement to initialize one array component, designated
546       --  by a full set of indices.
547
548       function Init_One_Dimension (N : Int) return List_Id;
549       --  Create loop to initialize one dimension of the array. The single
550       --  statement in the loop body initializes the inner dimensions if any,
551       --  or else the single component. Note that this procedure is called
552       --  recursively, with N being the dimension to be initialized. A call
553       --  with N greater than the number of dimensions simply generates the
554       --  component initialization, terminating the recursion.
555
556       --------------------
557       -- Init_Component --
558       --------------------
559
560       function Init_Component return List_Id is
561          Comp : Node_Id;
562
563       begin
564          Comp :=
565            Make_Indexed_Component (Loc,
566              Prefix => Make_Identifier (Loc, Name_uInit),
567              Expressions => Index_List);
568
569          if Needs_Simple_Initialization (Comp_Type) then
570             Set_Assignment_OK (Comp);
571             return New_List (
572               Make_Assignment_Statement (Loc,
573                 Name => Comp,
574                 Expression =>
575                   Get_Simple_Init_Val
576                     (Comp_Type, Nod, Component_Size (A_Type))));
577
578          else
579             Clean_Task_Names (Comp_Type, Proc_Id);
580             return
581               Build_Initialization_Call
582                 (Loc, Comp, Comp_Type,
583                  In_Init_Proc => True,
584                  Enclos_Type  => A_Type);
585          end if;
586       end Init_Component;
587
588       ------------------------
589       -- Init_One_Dimension --
590       ------------------------
591
592       function Init_One_Dimension (N : Int) return List_Id is
593          Index      : Entity_Id;
594
595       begin
596          --  If the component does not need initializing, then there is nothing
597          --  to do here, so we return a null body. This occurs when generating
598          --  the dummy Init_Proc needed for Initialize_Scalars processing.
599
600          if not Has_Non_Null_Base_Init_Proc (Comp_Type)
601            and then not Needs_Simple_Initialization (Comp_Type)
602            and then not Has_Task (Comp_Type)
603          then
604             return New_List (Make_Null_Statement (Loc));
605
606          --  If all dimensions dealt with, we simply initialize the component
607
608          elsif N > Number_Dimensions (A_Type) then
609             return Init_Component;
610
611          --  Here we generate the required loop
612
613          else
614             Index :=
615               Make_Defining_Identifier (Loc, New_External_Name ('J', N));
616
617             Append (New_Reference_To (Index, Loc), Index_List);
618
619             return New_List (
620               Make_Implicit_Loop_Statement (Nod,
621                 Identifier => Empty,
622                 Iteration_Scheme =>
623                   Make_Iteration_Scheme (Loc,
624                     Loop_Parameter_Specification =>
625                       Make_Loop_Parameter_Specification (Loc,
626                         Defining_Identifier => Index,
627                         Discrete_Subtype_Definition =>
628                           Make_Attribute_Reference (Loc,
629                             Prefix => Make_Identifier (Loc, Name_uInit),
630                             Attribute_Name  => Name_Range,
631                             Expressions => New_List (
632                               Make_Integer_Literal (Loc, N))))),
633                 Statements =>  Init_One_Dimension (N + 1)));
634          end if;
635       end Init_One_Dimension;
636
637    --  Start of processing for Build_Array_Init_Proc
638
639    begin
640       --  Nothing to generate in the following cases:
641
642       --    1. Initialization is suppressed for the type
643       --    2. The type is a value type, in the CIL sense.
644       --    3. An initialization already exists for the base type
645
646       if Suppress_Init_Proc (A_Type)
647         or else Is_Value_Type (Comp_Type)
648         or else Present (Base_Init_Proc (A_Type))
649       then
650          return;
651       end if;
652
653       Index_List := New_List;
654
655       --  We need an initialization procedure if any of the following is true:
656
657       --    1. The component type has an initialization procedure
658       --    2. The component type needs simple initialization
659       --    3. Tasks are present
660       --    4. The type is marked as a public entity
661
662       --  The reason for the public entity test is to deal properly with the
663       --  Initialize_Scalars pragma. This pragma can be set in the client and
664       --  not in the declaring package, this means the client will make a call
665       --  to the initialization procedure (because one of conditions 1-3 must
666       --  apply in this case), and we must generate a procedure (even if it is
667       --  null) to satisfy the call in this case.
668
669       --  Exception: do not build an array init_proc for a type whose root
670       --  type is Standard.String or Standard.Wide_[Wide_]String, since there
671       --  is no place to put the code, and in any case we handle initialization
672       --  of such types (in the Initialize_Scalars case, that's the only time
673       --  the issue arises) in a special manner anyway which does not need an
674       --  init_proc.
675
676       Has_Default_Init := Has_Non_Null_Base_Init_Proc (Comp_Type)
677                             or else Needs_Simple_Initialization (Comp_Type)
678                             or else Has_Task (Comp_Type);
679
680       if Has_Default_Init
681         or else (not Restriction_Active (No_Initialize_Scalars)
682                   and then Is_Public (A_Type)
683                   and then Root_Type (A_Type) /= Standard_String
684                   and then Root_Type (A_Type) /= Standard_Wide_String
685                   and then Root_Type (A_Type) /= Standard_Wide_Wide_String)
686       then
687          Proc_Id :=
688            Make_Defining_Identifier (Loc,
689              Chars => Make_Init_Proc_Name (A_Type));
690
691          --  If No_Default_Initialization restriction is active, then we don't
692          --  want to build an init_proc, but we need to mark that an init_proc
693          --  would be needed if this restriction was not active (so that we can
694          --  detect attempts to call it), so set a dummy init_proc in place.
695          --  This is only done though when actual default initialization is
696          --  needed (and not done when only Is_Public is True), since otherwise
697          --  objects such as arrays of scalars could be wrongly flagged as
698          --  violating the restriction.
699
700          if Restriction_Active (No_Default_Initialization) then
701             if Has_Default_Init then
702                Set_Init_Proc (A_Type, Proc_Id);
703             end if;
704
705             return;
706          end if;
707
708          Body_Stmts := Init_One_Dimension (1);
709
710          Discard_Node (
711            Make_Subprogram_Body (Loc,
712              Specification =>
713                Make_Procedure_Specification (Loc,
714                  Defining_Unit_Name => Proc_Id,
715                  Parameter_Specifications => Init_Formals (A_Type)),
716              Declarations => New_List,
717              Handled_Statement_Sequence =>
718                Make_Handled_Sequence_Of_Statements (Loc,
719                  Statements => Body_Stmts)));
720
721          Set_Ekind          (Proc_Id, E_Procedure);
722          Set_Is_Public      (Proc_Id, Is_Public (A_Type));
723          Set_Is_Internal    (Proc_Id);
724          Set_Has_Completion (Proc_Id);
725
726          if not Debug_Generated_Code then
727             Set_Debug_Info_Off (Proc_Id);
728          end if;
729
730          --  Set inlined unless controlled stuff or tasks around, in which
731          --  case we do not want to inline, because nested stuff may cause
732          --  difficulties in inter-unit inlining, and furthermore there is
733          --  in any case no point in inlining such complex init procs.
734
735          if not Has_Task (Proc_Id)
736            and then not Needs_Finalization (Proc_Id)
737          then
738             Set_Is_Inlined (Proc_Id);
739          end if;
740
741          --  Associate Init_Proc with type, and determine if the procedure
742          --  is null (happens because of the Initialize_Scalars pragma case,
743          --  where we have to generate a null procedure in case it is called
744          --  by a client with Initialize_Scalars set). Such procedures have
745          --  to be generated, but do not have to be called, so we mark them
746          --  as null to suppress the call.
747
748          Set_Init_Proc (A_Type, Proc_Id);
749
750          if List_Length (Body_Stmts) = 1
751            and then Nkind (First (Body_Stmts)) = N_Null_Statement
752          then
753             Set_Is_Null_Init_Proc (Proc_Id);
754
755          else
756             --  Try to build a static aggregate to initialize statically
757             --  objects of the type. This can only be done for constrained
758             --  one-dimensional arrays with static bounds.
759
760             Set_Static_Initialization
761               (Proc_Id,
762                 Build_Equivalent_Array_Aggregate (First_Subtype (A_Type)));
763          end if;
764       end if;
765    end Build_Array_Init_Proc;
766
767    -----------------------------
768    -- Build_Class_Wide_Master --
769    -----------------------------
770
771    procedure Build_Class_Wide_Master (T : Entity_Id) is
772       Loc  : constant Source_Ptr := Sloc (T);
773       M_Id : Entity_Id;
774       Decl : Node_Id;
775       P    : Node_Id;
776       Par  : Node_Id;
777
778    begin
779       --  Nothing to do if there is no task hierarchy
780
781       if Restriction_Active (No_Task_Hierarchy) then
782          return;
783       end if;
784
785       --  Find declaration that created the access type: either a type
786       --  declaration, or an object declaration with an access definition,
787       --  in which case the type is anonymous.
788
789       if Is_Itype (T) then
790          P := Associated_Node_For_Itype (T);
791       else
792          P := Parent (T);
793       end if;
794
795       --  Nothing to do if we already built a master entity for this scope
796
797       if not Has_Master_Entity (Scope (T)) then
798
799          --  First build the master entity
800          --    _Master : constant Master_Id := Current_Master.all;
801          --  and insert it just before the current declaration.
802
803          Decl :=
804            Make_Object_Declaration (Loc,
805              Defining_Identifier =>
806                Make_Defining_Identifier (Loc, Name_uMaster),
807              Constant_Present => True,
808              Object_Definition => New_Reference_To (Standard_Integer, Loc),
809              Expression =>
810                Make_Explicit_Dereference (Loc,
811                  New_Reference_To (RTE (RE_Current_Master), Loc)));
812
813          Insert_Action (P, Decl);
814          Analyze (Decl);
815          Set_Has_Master_Entity (Scope (T));
816
817          --  Now mark the containing scope as a task master. Masters
818          --  associated with return statements are already marked at
819          --  this stage (see Analyze_Subprogram_Body).
820
821          if Ekind (Current_Scope) /= E_Return_Statement then
822             Par := P;
823             while Nkind (Par) /= N_Compilation_Unit loop
824                Par := Parent (Par);
825
826             --  If we fall off the top, we are at the outer level, and the
827             --  environment task is our effective master, so nothing to mark.
828
829                if Nkind_In
830                    (Par, N_Task_Body, N_Block_Statement, N_Subprogram_Body)
831                then
832                   Set_Is_Task_Master (Par, True);
833                   exit;
834                end if;
835             end loop;
836          end if;
837       end if;
838
839       --  Now define the renaming of the master_id
840
841       M_Id :=
842         Make_Defining_Identifier (Loc,
843           New_External_Name (Chars (T), 'M'));
844
845       Decl :=
846         Make_Object_Renaming_Declaration (Loc,
847           Defining_Identifier => M_Id,
848           Subtype_Mark => New_Reference_To (Standard_Integer, Loc),
849           Name => Make_Identifier (Loc, Name_uMaster));
850       Insert_Before (P, Decl);
851       Analyze (Decl);
852
853       Set_Master_Id (T, M_Id);
854
855    exception
856       when RE_Not_Available =>
857          return;
858    end Build_Class_Wide_Master;
859
860    --------------------------------
861    -- Build_Discr_Checking_Funcs --
862    --------------------------------
863
864    procedure Build_Discr_Checking_Funcs (N : Node_Id) is
865       Rec_Id            : Entity_Id;
866       Loc               : Source_Ptr;
867       Enclosing_Func_Id : Entity_Id;
868       Sequence          : Nat     := 1;
869       Type_Def          : Node_Id;
870       V                 : Node_Id;
871
872       function Build_Case_Statement
873         (Case_Id : Entity_Id;
874          Variant : Node_Id) return Node_Id;
875       --  Build a case statement containing only two alternatives. The first
876       --  alternative corresponds exactly to the discrete choices given on the
877       --  variant with contains the components that we are generating the
878       --  checks for. If the discriminant is one of these return False. The
879       --  second alternative is an OTHERS choice that will return True
880       --  indicating the discriminant did not match.
881
882       function Build_Dcheck_Function
883         (Case_Id : Entity_Id;
884          Variant : Node_Id) return Entity_Id;
885       --  Build the discriminant checking function for a given variant
886
887       procedure Build_Dcheck_Functions (Variant_Part_Node : Node_Id);
888       --  Builds the discriminant checking function for each variant of the
889       --  given variant part of the record type.
890
891       --------------------------
892       -- Build_Case_Statement --
893       --------------------------
894
895       function Build_Case_Statement
896         (Case_Id : Entity_Id;
897          Variant : Node_Id) return Node_Id
898       is
899          Alt_List       : constant List_Id := New_List;
900          Actuals_List   : List_Id;
901          Case_Node      : Node_Id;
902          Case_Alt_Node  : Node_Id;
903          Choice         : Node_Id;
904          Choice_List    : List_Id;
905          D              : Entity_Id;
906          Return_Node    : Node_Id;
907
908       begin
909          Case_Node := New_Node (N_Case_Statement, Loc);
910
911          --  Replace the discriminant which controls the variant, with the name
912          --  of the formal of the checking function.
913
914          Set_Expression (Case_Node,
915            Make_Identifier (Loc, Chars (Case_Id)));
916
917          Choice := First (Discrete_Choices (Variant));
918
919          if Nkind (Choice) = N_Others_Choice then
920             Choice_List := New_Copy_List (Others_Discrete_Choices (Choice));
921          else
922             Choice_List := New_Copy_List (Discrete_Choices (Variant));
923          end if;
924
925          if not Is_Empty_List (Choice_List) then
926             Case_Alt_Node := New_Node (N_Case_Statement_Alternative, Loc);
927             Set_Discrete_Choices (Case_Alt_Node, Choice_List);
928
929             --  In case this is a nested variant, we need to return the result
930             --  of the discriminant checking function for the immediately
931             --  enclosing variant.
932
933             if Present (Enclosing_Func_Id) then
934                Actuals_List := New_List;
935
936                D := First_Discriminant (Rec_Id);
937                while Present (D) loop
938                   Append (Make_Identifier (Loc, Chars (D)), Actuals_List);
939                   Next_Discriminant (D);
940                end loop;
941
942                Return_Node :=
943                  Make_Simple_Return_Statement (Loc,
944                    Expression =>
945                      Make_Function_Call (Loc,
946                        Name =>
947                          New_Reference_To (Enclosing_Func_Id,  Loc),
948                        Parameter_Associations =>
949                          Actuals_List));
950
951             else
952                Return_Node :=
953                  Make_Simple_Return_Statement (Loc,
954                    Expression =>
955                      New_Reference_To (Standard_False, Loc));
956             end if;
957
958             Set_Statements (Case_Alt_Node, New_List (Return_Node));
959             Append (Case_Alt_Node, Alt_List);
960          end if;
961
962          Case_Alt_Node := New_Node (N_Case_Statement_Alternative, Loc);
963          Choice_List := New_List (New_Node (N_Others_Choice, Loc));
964          Set_Discrete_Choices (Case_Alt_Node, Choice_List);
965
966          Return_Node :=
967            Make_Simple_Return_Statement (Loc,
968              Expression =>
969                New_Reference_To (Standard_True, Loc));
970
971          Set_Statements (Case_Alt_Node, New_List (Return_Node));
972          Append (Case_Alt_Node, Alt_List);
973
974          Set_Alternatives (Case_Node, Alt_List);
975          return Case_Node;
976       end Build_Case_Statement;
977
978       ---------------------------
979       -- Build_Dcheck_Function --
980       ---------------------------
981
982       function Build_Dcheck_Function
983         (Case_Id : Entity_Id;
984          Variant : Node_Id) return Entity_Id
985       is
986          Body_Node           : Node_Id;
987          Func_Id             : Entity_Id;
988          Parameter_List      : List_Id;
989          Spec_Node           : Node_Id;
990
991       begin
992          Body_Node := New_Node (N_Subprogram_Body, Loc);
993          Sequence := Sequence + 1;
994
995          Func_Id :=
996            Make_Defining_Identifier (Loc,
997              Chars => New_External_Name (Chars (Rec_Id), 'D', Sequence));
998
999          Spec_Node := New_Node (N_Function_Specification, Loc);
1000          Set_Defining_Unit_Name (Spec_Node, Func_Id);
1001
1002          Parameter_List := Build_Discriminant_Formals (Rec_Id, False);
1003
1004          Set_Parameter_Specifications (Spec_Node, Parameter_List);
1005          Set_Result_Definition (Spec_Node,
1006                                 New_Reference_To (Standard_Boolean,  Loc));
1007          Set_Specification (Body_Node, Spec_Node);
1008          Set_Declarations (Body_Node, New_List);
1009
1010          Set_Handled_Statement_Sequence (Body_Node,
1011            Make_Handled_Sequence_Of_Statements (Loc,
1012              Statements => New_List (
1013                Build_Case_Statement (Case_Id, Variant))));
1014
1015          Set_Ekind       (Func_Id, E_Function);
1016          Set_Mechanism   (Func_Id, Default_Mechanism);
1017          Set_Is_Inlined  (Func_Id, True);
1018          Set_Is_Pure     (Func_Id, True);
1019          Set_Is_Public   (Func_Id, Is_Public (Rec_Id));
1020          Set_Is_Internal (Func_Id, True);
1021
1022          if not Debug_Generated_Code then
1023             Set_Debug_Info_Off (Func_Id);
1024          end if;
1025
1026          Analyze (Body_Node);
1027
1028          Append_Freeze_Action (Rec_Id, Body_Node);
1029          Set_Dcheck_Function (Variant, Func_Id);
1030          return Func_Id;
1031       end Build_Dcheck_Function;
1032
1033       ----------------------------
1034       -- Build_Dcheck_Functions --
1035       ----------------------------
1036
1037       procedure Build_Dcheck_Functions (Variant_Part_Node : Node_Id) is
1038          Component_List_Node : Node_Id;
1039          Decl                : Entity_Id;
1040          Discr_Name          : Entity_Id;
1041          Func_Id             : Entity_Id;
1042          Variant             : Node_Id;
1043          Saved_Enclosing_Func_Id : Entity_Id;
1044
1045       begin
1046          --  Build the discriminant-checking function for each variant, and
1047          --  label all components of that variant with the function's name.
1048          --  We only Generate a discriminant-checking function when the
1049          --  variant is not empty, to prevent the creation of dead code.
1050          --  The exception to that is when Frontend_Layout_On_Target is set,
1051          --  because the variant record size function generated in package
1052          --  Layout needs to generate calls to all discriminant-checking
1053          --  functions, including those for empty variants.
1054
1055          Discr_Name := Entity (Name (Variant_Part_Node));
1056          Variant := First_Non_Pragma (Variants (Variant_Part_Node));
1057
1058          while Present (Variant) loop
1059             Component_List_Node := Component_List (Variant);
1060
1061             if not Null_Present (Component_List_Node)
1062               or else Frontend_Layout_On_Target
1063             then
1064                Func_Id := Build_Dcheck_Function (Discr_Name, Variant);
1065                Decl :=
1066                  First_Non_Pragma (Component_Items (Component_List_Node));
1067
1068                while Present (Decl) loop
1069                   Set_Discriminant_Checking_Func
1070                     (Defining_Identifier (Decl), Func_Id);
1071
1072                   Next_Non_Pragma (Decl);
1073                end loop;
1074
1075                if Present (Variant_Part (Component_List_Node)) then
1076                   Saved_Enclosing_Func_Id := Enclosing_Func_Id;
1077                   Enclosing_Func_Id := Func_Id;
1078                   Build_Dcheck_Functions (Variant_Part (Component_List_Node));
1079                   Enclosing_Func_Id := Saved_Enclosing_Func_Id;
1080                end if;
1081             end if;
1082
1083             Next_Non_Pragma (Variant);
1084          end loop;
1085       end Build_Dcheck_Functions;
1086
1087    --  Start of processing for Build_Discr_Checking_Funcs
1088
1089    begin
1090       --  Only build if not done already
1091
1092       if not Discr_Check_Funcs_Built (N) then
1093          Type_Def := Type_Definition (N);
1094
1095          if Nkind (Type_Def) = N_Record_Definition then
1096             if No (Component_List (Type_Def)) then   -- null record.
1097                return;
1098             else
1099                V := Variant_Part (Component_List (Type_Def));
1100             end if;
1101
1102          else pragma Assert (Nkind (Type_Def) = N_Derived_Type_Definition);
1103             if No (Component_List (Record_Extension_Part (Type_Def))) then
1104                return;
1105             else
1106                V := Variant_Part
1107                       (Component_List (Record_Extension_Part (Type_Def)));
1108             end if;
1109          end if;
1110
1111          Rec_Id := Defining_Identifier (N);
1112
1113          if Present (V) and then not Is_Unchecked_Union (Rec_Id) then
1114             Loc := Sloc (N);
1115             Enclosing_Func_Id := Empty;
1116             Build_Dcheck_Functions (V);
1117          end if;
1118
1119          Set_Discr_Check_Funcs_Built (N);
1120       end if;
1121    end Build_Discr_Checking_Funcs;
1122
1123    --------------------------------
1124    -- Build_Discriminant_Formals --
1125    --------------------------------
1126
1127    function Build_Discriminant_Formals
1128      (Rec_Id : Entity_Id;
1129       Use_Dl : Boolean) return List_Id
1130    is
1131       Loc             : Source_Ptr       := Sloc (Rec_Id);
1132       Parameter_List  : constant List_Id := New_List;
1133       D               : Entity_Id;
1134       Formal          : Entity_Id;
1135       Param_Spec_Node : Node_Id;
1136
1137    begin
1138       if Has_Discriminants (Rec_Id) then
1139          D := First_Discriminant (Rec_Id);
1140          while Present (D) loop
1141             Loc := Sloc (D);
1142
1143             if Use_Dl then
1144                Formal := Discriminal (D);
1145             else
1146                Formal := Make_Defining_Identifier (Loc, Chars (D));
1147             end if;
1148
1149             Param_Spec_Node :=
1150               Make_Parameter_Specification (Loc,
1151                   Defining_Identifier => Formal,
1152                 Parameter_Type =>
1153                   New_Reference_To (Etype (D), Loc));
1154             Append (Param_Spec_Node, Parameter_List);
1155             Next_Discriminant (D);
1156          end loop;
1157       end if;
1158
1159       return Parameter_List;
1160    end Build_Discriminant_Formals;
1161
1162    --------------------------------------
1163    -- Build_Equivalent_Array_Aggregate --
1164    --------------------------------------
1165
1166    function Build_Equivalent_Array_Aggregate (T : Entity_Id) return Node_Id is
1167       Loc        : constant Source_Ptr := Sloc (T);
1168       Comp_Type  : constant Entity_Id := Component_Type (T);
1169       Index_Type : constant Entity_Id := Etype (First_Index (T));
1170       Proc       : constant Entity_Id := Base_Init_Proc (T);
1171       Lo, Hi     : Node_Id;
1172       Aggr       : Node_Id;
1173       Expr       : Node_Id;
1174
1175    begin
1176       if not Is_Constrained (T)
1177         or else Number_Dimensions (T) > 1
1178         or else No (Proc)
1179       then
1180          Initialization_Warning (T);
1181          return Empty;
1182       end if;
1183
1184       Lo := Type_Low_Bound  (Index_Type);
1185       Hi := Type_High_Bound (Index_Type);
1186
1187       if not Compile_Time_Known_Value (Lo)
1188         or else not Compile_Time_Known_Value (Hi)
1189       then
1190          Initialization_Warning (T);
1191          return Empty;
1192       end if;
1193
1194       if Is_Record_Type (Comp_Type)
1195         and then Present (Base_Init_Proc (Comp_Type))
1196       then
1197          Expr := Static_Initialization (Base_Init_Proc (Comp_Type));
1198
1199          if No (Expr) then
1200             Initialization_Warning (T);
1201             return Empty;
1202          end if;
1203
1204       else
1205          Initialization_Warning (T);
1206          return Empty;
1207       end if;
1208
1209       Aggr := Make_Aggregate (Loc, No_List, New_List);
1210       Set_Etype (Aggr, T);
1211       Set_Aggregate_Bounds (Aggr,
1212         Make_Range (Loc,
1213           Low_Bound  => New_Copy (Lo),
1214           High_Bound => New_Copy (Hi)));
1215       Set_Parent (Aggr, Parent (Proc));
1216
1217       Append_To (Component_Associations (Aggr),
1218          Make_Component_Association (Loc,
1219               Choices =>
1220                  New_List (
1221                    Make_Range (Loc,
1222                      Low_Bound  => New_Copy (Lo),
1223                      High_Bound => New_Copy (Hi))),
1224               Expression => Expr));
1225
1226       if Static_Array_Aggregate (Aggr) then
1227          return Aggr;
1228       else
1229          Initialization_Warning (T);
1230          return Empty;
1231       end if;
1232    end Build_Equivalent_Array_Aggregate;
1233
1234    ---------------------------------------
1235    -- Build_Equivalent_Record_Aggregate --
1236    ---------------------------------------
1237
1238    function Build_Equivalent_Record_Aggregate (T : Entity_Id) return Node_Id is
1239       Agg  : Node_Id;
1240       Comp : Entity_Id;
1241
1242       --  Start of processing for Build_Equivalent_Record_Aggregate
1243
1244    begin
1245       if not Is_Record_Type (T)
1246         or else Has_Discriminants (T)
1247         or else Is_Limited_Type (T)
1248         or else Has_Non_Standard_Rep (T)
1249       then
1250          Initialization_Warning (T);
1251          return Empty;
1252       end if;
1253
1254       Comp := First_Component (T);
1255
1256       --  A null record needs no warning
1257
1258       if No (Comp) then
1259          return Empty;
1260       end if;
1261
1262       while Present (Comp) loop
1263
1264          --  Array components are acceptable if initialized by a positional
1265          --  aggregate with static components.
1266
1267          if Is_Array_Type (Etype (Comp)) then
1268             declare
1269                Comp_Type : constant Entity_Id := Component_Type (Etype (Comp));
1270
1271             begin
1272                if Nkind (Parent (Comp)) /= N_Component_Declaration
1273                  or else No (Expression (Parent (Comp)))
1274                  or else Nkind (Expression (Parent (Comp))) /= N_Aggregate
1275                then
1276                   Initialization_Warning (T);
1277                   return Empty;
1278
1279                elsif Is_Scalar_Type (Component_Type (Etype (Comp)))
1280                   and then
1281                     (not Compile_Time_Known_Value (Type_Low_Bound (Comp_Type))
1282                       or else not Compile_Time_Known_Value
1283                           (Type_High_Bound (Comp_Type)))
1284                then
1285                   Initialization_Warning (T);
1286                   return Empty;
1287
1288                elsif
1289                  not Static_Array_Aggregate (Expression (Parent (Comp)))
1290                then
1291                   Initialization_Warning (T);
1292                   return Empty;
1293                end if;
1294             end;
1295
1296          elsif Is_Scalar_Type (Etype (Comp)) then
1297             if Nkind (Parent (Comp)) /= N_Component_Declaration
1298               or else No (Expression (Parent (Comp)))
1299               or else not Compile_Time_Known_Value (Expression (Parent (Comp)))
1300             then
1301                Initialization_Warning (T);
1302                return Empty;
1303             end if;
1304
1305          --  For now, other types are excluded
1306
1307          else
1308             Initialization_Warning (T);
1309             return Empty;
1310          end if;
1311
1312          Next_Component (Comp);
1313       end loop;
1314
1315       --  All components have static initialization. Build  positional
1316       --  aggregate from the given expressions or defaults.
1317
1318       Agg := Make_Aggregate (Sloc (T), New_List, New_List);
1319       Set_Parent (Agg, Parent (T));
1320
1321       Comp := First_Component (T);
1322       while Present (Comp) loop
1323          Append
1324            (New_Copy_Tree (Expression (Parent (Comp))), Expressions (Agg));
1325          Next_Component (Comp);
1326       end loop;
1327
1328       Analyze_And_Resolve (Agg, T);
1329       return Agg;
1330    end Build_Equivalent_Record_Aggregate;
1331
1332    -------------------------------
1333    -- Build_Initialization_Call --
1334    -------------------------------
1335
1336    --  References to a discriminant inside the record type declaration can
1337    --  appear either in the subtype_indication to constrain a record or an
1338    --  array, or as part of a larger expression given for the initial value
1339    --  of a component. In both of these cases N appears in the record
1340    --  initialization procedure and needs to be replaced by the formal
1341    --  parameter of the initialization procedure which corresponds to that
1342    --  discriminant.
1343
1344    --  In the example below, references to discriminants D1 and D2 in proc_1
1345    --  are replaced by references to formals with the same name
1346    --  (discriminals)
1347
1348    --  A similar replacement is done for calls to any record initialization
1349    --  procedure for any components that are themselves of a record type.
1350
1351    --  type R (D1, D2 : Integer) is record
1352    --     X : Integer := F * D1;
1353    --     Y : Integer := F * D2;
1354    --  end record;
1355
1356    --  procedure proc_1 (Out_2 : out R; D1 : Integer; D2 : Integer) is
1357    --  begin
1358    --     Out_2.D1 := D1;
1359    --     Out_2.D2 := D2;
1360    --     Out_2.X := F * D1;
1361    --     Out_2.Y := F * D2;
1362    --  end;
1363
1364    function Build_Initialization_Call
1365      (Loc               : Source_Ptr;
1366       Id_Ref            : Node_Id;
1367       Typ               : Entity_Id;
1368       In_Init_Proc      : Boolean := False;
1369       Enclos_Type       : Entity_Id := Empty;
1370       Discr_Map         : Elist_Id := New_Elmt_List;
1371       With_Default_Init : Boolean := False) return List_Id
1372    is
1373       First_Arg      : Node_Id;
1374       Args           : List_Id;
1375       Decls          : List_Id;
1376       Decl           : Node_Id;
1377       Discr          : Entity_Id;
1378       Arg            : Node_Id;
1379       Proc           : constant Entity_Id := Base_Init_Proc (Typ);
1380       Init_Type      : constant Entity_Id := Etype (First_Formal (Proc));
1381       Full_Init_Type : constant Entity_Id := Underlying_Type (Init_Type);
1382       Res            : constant List_Id   := New_List;
1383       Full_Type      : Entity_Id := Typ;
1384       Controller_Typ : Entity_Id;
1385
1386    begin
1387       --  Nothing to do if the Init_Proc is null, unless Initialize_Scalars
1388       --  is active (in which case we make the call anyway, since in the
1389       --  actual compiled client it may be non null).
1390       --  Also nothing to do for value types.
1391
1392       if (Is_Null_Init_Proc (Proc) and then not Init_Or_Norm_Scalars)
1393         or else Is_Value_Type (Typ)
1394         or else Is_Value_Type (Component_Type (Typ))
1395       then
1396          return Empty_List;
1397       end if;
1398
1399       --  Go to full view if private type. In the case of successive
1400       --  private derivations, this can require more than one step.
1401
1402       while Is_Private_Type (Full_Type)
1403         and then Present (Full_View (Full_Type))
1404       loop
1405          Full_Type := Full_View (Full_Type);
1406       end loop;
1407
1408       --  If Typ is derived, the procedure is the initialization procedure for
1409       --  the root type. Wrap the argument in an conversion to make it type
1410       --  honest. Actually it isn't quite type honest, because there can be
1411       --  conflicts of views in the private type case. That is why we set
1412       --  Conversion_OK in the conversion node.
1413
1414       if (Is_Record_Type (Typ)
1415            or else Is_Array_Type (Typ)
1416            or else Is_Private_Type (Typ))
1417         and then Init_Type /= Base_Type (Typ)
1418       then
1419          First_Arg := OK_Convert_To (Etype (Init_Type), Id_Ref);
1420          Set_Etype (First_Arg, Init_Type);
1421
1422       else
1423          First_Arg := Id_Ref;
1424       end if;
1425
1426       Args := New_List (Convert_Concurrent (First_Arg, Typ));
1427
1428       --  In the tasks case, add _Master as the value of the _Master parameter
1429       --  and _Chain as the value of the _Chain parameter. At the outer level,
1430       --  these will be variables holding the corresponding values obtained
1431       --  from GNARL. At inner levels, they will be the parameters passed down
1432       --  through the outer routines.
1433
1434       if Has_Task (Full_Type) then
1435          if Restriction_Active (No_Task_Hierarchy) then
1436
1437             --  See comments in System.Tasking.Initialization.Init_RTS
1438             --  for the value 3 (should be rtsfindable constant ???)
1439
1440             Append_To (Args, Make_Integer_Literal (Loc, 3));
1441
1442          else
1443             Append_To (Args, Make_Identifier (Loc, Name_uMaster));
1444          end if;
1445
1446          Append_To (Args, Make_Identifier (Loc, Name_uChain));
1447
1448          --  Ada 2005 (AI-287): In case of default initialized components
1449          --  with tasks, we generate a null string actual parameter.
1450          --  This is just a workaround that must be improved later???
1451
1452          if With_Default_Init then
1453             Append_To (Args,
1454               Make_String_Literal (Loc,
1455                 Strval => ""));
1456
1457          else
1458             Decls :=
1459               Build_Task_Image_Decls (Loc, Id_Ref, Enclos_Type, In_Init_Proc);
1460             Decl  := Last (Decls);
1461
1462             Append_To (Args,
1463               New_Occurrence_Of (Defining_Identifier (Decl), Loc));
1464             Append_List (Decls, Res);
1465          end if;
1466
1467       else
1468          Decls := No_List;
1469          Decl  := Empty;
1470       end if;
1471
1472       --  Add discriminant values if discriminants are present
1473
1474       if Has_Discriminants (Full_Init_Type) then
1475          Discr := First_Discriminant (Full_Init_Type);
1476
1477          while Present (Discr) loop
1478
1479             --  If this is a discriminated concurrent type, the init_proc
1480             --  for the corresponding record is being called. Use that type
1481             --  directly to find the discriminant value, to handle properly
1482             --  intervening renamed discriminants.
1483
1484             declare
1485                T : Entity_Id := Full_Type;
1486
1487             begin
1488                if Is_Protected_Type (T) then
1489                   T := Corresponding_Record_Type (T);
1490
1491                elsif Is_Private_Type (T)
1492                  and then Present (Underlying_Full_View (T))
1493                  and then Is_Protected_Type (Underlying_Full_View (T))
1494                then
1495                   T := Corresponding_Record_Type (Underlying_Full_View (T));
1496                end if;
1497
1498                Arg :=
1499                  Get_Discriminant_Value (
1500                    Discr,
1501                    T,
1502                    Discriminant_Constraint (Full_Type));
1503             end;
1504
1505             if In_Init_Proc then
1506
1507                --  Replace any possible references to the discriminant in the
1508                --  call to the record initialization procedure with references
1509                --  to the appropriate formal parameter.
1510
1511                if Nkind (Arg) = N_Identifier
1512                   and then Ekind (Entity (Arg)) = E_Discriminant
1513                then
1514                   Arg := New_Reference_To (Discriminal (Entity (Arg)), Loc);
1515
1516                --  Case of access discriminants. We replace the reference
1517                --  to the type by a reference to the actual object
1518
1519                elsif Nkind (Arg) = N_Attribute_Reference
1520                  and then Is_Access_Type (Etype (Arg))
1521                  and then Is_Entity_Name (Prefix (Arg))
1522                  and then Is_Type (Entity (Prefix (Arg)))
1523                then
1524                   Arg :=
1525                     Make_Attribute_Reference (Loc,
1526                       Prefix         => New_Copy (Prefix (Id_Ref)),
1527                       Attribute_Name => Name_Unrestricted_Access);
1528
1529                --  Otherwise make a copy of the default expression. Note that
1530                --  we use the current Sloc for this, because we do not want the
1531                --  call to appear to be at the declaration point. Within the
1532                --  expression, replace discriminants with their discriminals.
1533
1534                else
1535                   Arg :=
1536                     New_Copy_Tree (Arg, Map => Discr_Map, New_Sloc => Loc);
1537                end if;
1538
1539             else
1540                if Is_Constrained (Full_Type) then
1541                   Arg := Duplicate_Subexpr_No_Checks (Arg);
1542                else
1543                   --  The constraints come from the discriminant default exps,
1544                   --  they must be reevaluated, so we use New_Copy_Tree but we
1545                   --  ensure the proper Sloc (for any embedded calls).
1546
1547                   Arg := New_Copy_Tree (Arg, New_Sloc => Loc);
1548                end if;
1549             end if;
1550
1551             --  Ada 2005 (AI-287): In case of default initialized components,
1552             --  we need to generate the corresponding selected component node
1553             --  to access the discriminant value. In other cases this is not
1554             --  required because we are inside the init proc and we use the
1555             --  corresponding formal.
1556
1557             if With_Default_Init
1558               and then Nkind (Id_Ref) = N_Selected_Component
1559               and then Nkind (Arg) = N_Identifier
1560             then
1561                Append_To (Args,
1562                  Make_Selected_Component (Loc,
1563                    Prefix => New_Copy_Tree (Prefix (Id_Ref)),
1564                    Selector_Name => Arg));
1565             else
1566                Append_To (Args, Arg);
1567             end if;
1568
1569             Next_Discriminant (Discr);
1570          end loop;
1571       end if;
1572
1573       --  If this is a call to initialize the parent component of a derived
1574       --  tagged type, indicate that the tag should not be set in the parent.
1575
1576       if Is_Tagged_Type (Full_Init_Type)
1577         and then not Is_CPP_Class (Full_Init_Type)
1578         and then Nkind (Id_Ref) = N_Selected_Component
1579         and then Chars (Selector_Name (Id_Ref)) = Name_uParent
1580       then
1581          Append_To (Args, New_Occurrence_Of (Standard_False, Loc));
1582       end if;
1583
1584       Append_To (Res,
1585         Make_Procedure_Call_Statement (Loc,
1586           Name => New_Occurrence_Of (Proc, Loc),
1587           Parameter_Associations => Args));
1588
1589       if Needs_Finalization (Typ)
1590         and then Nkind (Id_Ref) = N_Selected_Component
1591       then
1592          if Chars (Selector_Name (Id_Ref)) /= Name_uParent then
1593             Append_List_To (Res,
1594               Make_Init_Call (
1595                 Ref         => New_Copy_Tree (First_Arg),
1596                 Typ         => Typ,
1597                 Flist_Ref   =>
1598                   Find_Final_List (Typ, New_Copy_Tree (First_Arg)),
1599                 With_Attach => Make_Integer_Literal (Loc, 1)));
1600
1601          --  If the enclosing type is an extension with new controlled
1602          --  components, it has his own record controller. If the parent
1603          --  also had a record controller, attach it to the new one.
1604
1605          --  Build_Init_Statements relies on the fact that in this specific
1606          --  case the last statement of the result is the attach call to
1607          --  the controller. If this is changed, it must be synchronized.
1608
1609          elsif Present (Enclos_Type)
1610            and then Has_New_Controlled_Component (Enclos_Type)
1611            and then Has_Controlled_Component (Typ)
1612          then
1613             if Is_Inherently_Limited_Type (Typ) then
1614                Controller_Typ := RTE (RE_Limited_Record_Controller);
1615             else
1616                Controller_Typ := RTE (RE_Record_Controller);
1617             end if;
1618
1619             Append_List_To (Res,
1620               Make_Init_Call (
1621                 Ref       =>
1622                   Make_Selected_Component (Loc,
1623                     Prefix        => New_Copy_Tree (First_Arg),
1624                     Selector_Name => Make_Identifier (Loc, Name_uController)),
1625                 Typ       => Controller_Typ,
1626                 Flist_Ref => Find_Final_List (Typ, New_Copy_Tree (First_Arg)),
1627                 With_Attach => Make_Integer_Literal (Loc, 1)));
1628          end if;
1629       end if;
1630
1631       return Res;
1632
1633    exception
1634       when RE_Not_Available =>
1635          return Empty_List;
1636    end Build_Initialization_Call;
1637
1638    ---------------------------
1639    -- Build_Master_Renaming --
1640    ---------------------------
1641
1642    function Build_Master_Renaming
1643      (N : Node_Id;
1644       T : Entity_Id) return Entity_Id
1645    is
1646       Loc  : constant Source_Ptr := Sloc (N);
1647       M_Id : Entity_Id;
1648       Decl : Node_Id;
1649
1650    begin
1651       --  Nothing to do if there is no task hierarchy
1652
1653       if Restriction_Active (No_Task_Hierarchy) then
1654          return Empty;
1655       end if;
1656
1657       M_Id :=
1658         Make_Defining_Identifier (Loc,
1659           New_External_Name (Chars (T), 'M'));
1660
1661       Decl :=
1662         Make_Object_Renaming_Declaration (Loc,
1663           Defining_Identifier => M_Id,
1664           Subtype_Mark => New_Reference_To (RTE (RE_Master_Id), Loc),
1665           Name => Make_Identifier (Loc, Name_uMaster));
1666       Insert_Before (N, Decl);
1667       Analyze (Decl);
1668       return M_Id;
1669
1670    exception
1671       when RE_Not_Available =>
1672          return Empty;
1673    end Build_Master_Renaming;
1674
1675    ---------------------------
1676    -- Build_Master_Renaming --
1677    ---------------------------
1678
1679    procedure Build_Master_Renaming (N : Node_Id; T : Entity_Id) is
1680       M_Id : Entity_Id;
1681
1682    begin
1683       --  Nothing to do if there is no task hierarchy
1684
1685       if Restriction_Active (No_Task_Hierarchy) then
1686          return;
1687       end if;
1688
1689       M_Id := Build_Master_Renaming (N, T);
1690       Set_Master_Id (T, M_Id);
1691
1692    exception
1693       when RE_Not_Available =>
1694          return;
1695    end Build_Master_Renaming;
1696
1697    ----------------------------
1698    -- Build_Record_Init_Proc --
1699    ----------------------------
1700
1701    procedure Build_Record_Init_Proc (N : Node_Id; Pe : Entity_Id) is
1702       Loc       : Source_Ptr := Sloc (N);
1703       Discr_Map : constant Elist_Id := New_Elmt_List;
1704       Proc_Id   : Entity_Id;
1705       Rec_Type  : Entity_Id;
1706       Set_Tag   : Entity_Id := Empty;
1707
1708       function Build_Assignment (Id : Entity_Id; N : Node_Id) return List_Id;
1709       --  Build a assignment statement node which assigns to record component
1710       --  its default expression if defined. The assignment left hand side is
1711       --  marked Assignment_OK so that initialization of limited private
1712       --  records works correctly, Return also the adjustment call for
1713       --  controlled objects
1714
1715       procedure Build_Discriminant_Assignments (Statement_List : List_Id);
1716       --  If the record has discriminants, adds assignment statements to
1717       --  statement list to initialize the discriminant values from the
1718       --  arguments of the initialization procedure.
1719
1720       function Build_Init_Statements (Comp_List : Node_Id) return List_Id;
1721       --  Build a list representing a sequence of statements which initialize
1722       --  components of the given component list. This may involve building
1723       --  case statements for the variant parts.
1724
1725       function Build_Init_Call_Thru (Parameters : List_Id) return List_Id;
1726       --  Given a non-tagged type-derivation that declares discriminants,
1727       --  such as
1728       --
1729       --  type R (R1, R2 : Integer) is record ... end record;
1730       --
1731       --  type D (D1 : Integer) is new R (1, D1);
1732       --
1733       --  we make the _init_proc of D be
1734       --
1735       --       procedure _init_proc(X : D; D1 : Integer) is
1736       --       begin
1737       --          _init_proc( R(X), 1, D1);
1738       --       end _init_proc;
1739       --
1740       --  This function builds the call statement in this _init_proc.
1741
1742       procedure Build_Init_Procedure;
1743       --  Build the tree corresponding to the procedure specification and body
1744       --  of the initialization procedure (by calling all the preceding
1745       --  auxiliary routines), and install it as the _init TSS.
1746
1747       procedure Build_Offset_To_Top_Functions;
1748       --  Ada 2005 (AI-251): Build the tree corresponding to the procedure spec
1749       --  and body of the Offset_To_Top function that is generated when the
1750       --  parent of a type with discriminants has secondary dispatch tables.
1751
1752       procedure Build_Record_Checks (S : Node_Id; Check_List : List_Id);
1753       --  Add range checks to components of discriminated records. S is a
1754       --  subtype indication of a record component. Check_List is a list
1755       --  to which the check actions are appended.
1756
1757       function Component_Needs_Simple_Initialization
1758         (T : Entity_Id) return Boolean;
1759       --  Determines if a component needs simple initialization, given its type
1760       --  T. This is the same as Needs_Simple_Initialization except for the
1761       --  following difference: the types Tag and Interface_Tag, that are
1762       --  access types which would normally require simple initialization to
1763       --  null, do not require initialization as components, since they are
1764       --  explicitly initialized by other means.
1765
1766       procedure Constrain_Array
1767         (SI         : Node_Id;
1768          Check_List : List_Id);
1769       --  Called from Build_Record_Checks.
1770       --  Apply a list of index constraints to an unconstrained array type.
1771       --  The first parameter is the entity for the resulting subtype.
1772       --  Check_List is a list to which the check actions are appended.
1773
1774       procedure Constrain_Index
1775         (Index      : Node_Id;
1776          S          : Node_Id;
1777          Check_List : List_Id);
1778       --  Process an index constraint in a constrained array declaration.
1779       --  The constraint can be a subtype name, or a range with or without
1780       --  an explicit subtype mark. The index is the corresponding index of the
1781       --  unconstrained array. S is the range expression. Check_List is a list
1782       --  to which the check actions are appended (called from
1783       --  Build_Record_Checks).
1784
1785       function Parent_Subtype_Renaming_Discrims return Boolean;
1786       --  Returns True for base types N that rename discriminants, else False
1787
1788       function Requires_Init_Proc (Rec_Id : Entity_Id) return Boolean;
1789       --  Determines whether a record initialization procedure needs to be
1790       --  generated for the given record type.
1791
1792       ----------------------
1793       -- Build_Assignment --
1794       ----------------------
1795
1796       function Build_Assignment (Id : Entity_Id; N : Node_Id) return List_Id is
1797          Exp  : Node_Id := N;
1798          Lhs  : Node_Id;
1799          Typ  : constant Entity_Id := Underlying_Type (Etype (Id));
1800          Kind : Node_Kind := Nkind (N);
1801          Res  : List_Id;
1802
1803       begin
1804          Loc := Sloc (N);
1805          Lhs :=
1806            Make_Selected_Component (Loc,
1807              Prefix => Make_Identifier (Loc, Name_uInit),
1808              Selector_Name => New_Occurrence_Of (Id, Loc));
1809          Set_Assignment_OK (Lhs);
1810
1811          --  Case of an access attribute applied to the current instance.
1812          --  Replace the reference to the type by a reference to the actual
1813          --  object. (Note that this handles the case of the top level of
1814          --  the expression being given by such an attribute, but does not
1815          --  cover uses nested within an initial value expression. Nested
1816          --  uses are unlikely to occur in practice, but are theoretically
1817          --  possible. It is not clear how to handle them without fully
1818          --  traversing the expression. ???
1819
1820          if Kind = N_Attribute_Reference
1821            and then (Attribute_Name (N) = Name_Unchecked_Access
1822                        or else
1823                      Attribute_Name (N) = Name_Unrestricted_Access)
1824            and then Is_Entity_Name (Prefix (N))
1825            and then Is_Type (Entity (Prefix (N)))
1826            and then Entity (Prefix (N)) = Rec_Type
1827          then
1828             Exp :=
1829               Make_Attribute_Reference (Loc,
1830                 Prefix         => Make_Identifier (Loc, Name_uInit),
1831                 Attribute_Name => Name_Unrestricted_Access);
1832          end if;
1833
1834          --  Take a copy of Exp to ensure that later copies of this component
1835          --  declaration in derived types see the original tree, not a node
1836          --  rewritten during expansion of the init_proc.
1837
1838          Exp := New_Copy_Tree (Exp);
1839
1840          Res := New_List (
1841            Make_Assignment_Statement (Loc,
1842              Name       => Lhs,
1843              Expression => Exp));
1844
1845          Set_No_Ctrl_Actions (First (Res));
1846
1847          --  Adjust the tag if tagged (because of possible view conversions).
1848          --  Suppress the tag adjustment when VM_Target because VM tags are
1849          --  represented implicitly in objects.
1850
1851          if Is_Tagged_Type (Typ) and then VM_Target = No_VM then
1852             Append_To (Res,
1853               Make_Assignment_Statement (Loc,
1854                 Name =>
1855                   Make_Selected_Component (Loc,
1856                     Prefix =>  New_Copy_Tree (Lhs),
1857                     Selector_Name =>
1858                       New_Reference_To (First_Tag_Component (Typ), Loc)),
1859
1860                 Expression =>
1861                   Unchecked_Convert_To (RTE (RE_Tag),
1862                     New_Reference_To
1863                       (Node (First_Elmt (Access_Disp_Table (Typ))), Loc))));
1864          end if;
1865
1866          --  Adjust the component if controlled except if it is an aggregate
1867          --  that will be expanded inline
1868
1869          if Kind = N_Qualified_Expression then
1870             Kind := Nkind (Expression (N));
1871          end if;
1872
1873          if Needs_Finalization (Typ)
1874          and then not (Kind = N_Aggregate or else Kind = N_Extension_Aggregate)
1875          and then not Is_Inherently_Limited_Type (Typ)
1876          then
1877             Append_List_To (Res,
1878               Make_Adjust_Call (
1879                Ref          => New_Copy_Tree (Lhs),
1880                Typ          => Etype (Id),
1881                Flist_Ref    =>
1882                  Find_Final_List (Etype (Id), New_Copy_Tree (Lhs)),
1883                With_Attach  => Make_Integer_Literal (Loc, 1)));
1884          end if;
1885
1886          return Res;
1887
1888       exception
1889          when RE_Not_Available =>
1890             return Empty_List;
1891       end Build_Assignment;
1892
1893       ------------------------------------
1894       -- Build_Discriminant_Assignments --
1895       ------------------------------------
1896
1897       procedure Build_Discriminant_Assignments (Statement_List : List_Id) is
1898          D         : Entity_Id;
1899          Is_Tagged : constant Boolean := Is_Tagged_Type (Rec_Type);
1900
1901       begin
1902          if Has_Discriminants (Rec_Type)
1903            and then not Is_Unchecked_Union (Rec_Type)
1904          then
1905             D := First_Discriminant (Rec_Type);
1906
1907             while Present (D) loop
1908                --  Don't generate the assignment for discriminants in derived
1909                --  tagged types if the discriminant is a renaming of some
1910                --  ancestor discriminant. This initialization will be done
1911                --  when initializing the _parent field of the derived record.
1912
1913                if Is_Tagged and then
1914                  Present (Corresponding_Discriminant (D))
1915                then
1916                   null;
1917
1918                else
1919                   Loc := Sloc (D);
1920                   Append_List_To (Statement_List,
1921                     Build_Assignment (D,
1922                       New_Reference_To (Discriminal (D), Loc)));
1923                end if;
1924
1925                Next_Discriminant (D);
1926             end loop;
1927          end if;
1928       end Build_Discriminant_Assignments;
1929
1930       --------------------------
1931       -- Build_Init_Call_Thru --
1932       --------------------------
1933
1934       function Build_Init_Call_Thru (Parameters : List_Id) return List_Id is
1935          Parent_Proc : constant Entity_Id :=
1936                          Base_Init_Proc (Etype (Rec_Type));
1937
1938          Parent_Type : constant Entity_Id :=
1939                          Etype (First_Formal (Parent_Proc));
1940
1941          Uparent_Type : constant Entity_Id :=
1942                           Underlying_Type (Parent_Type);
1943
1944          First_Discr_Param : Node_Id;
1945
1946          Parent_Discr : Entity_Id;
1947          First_Arg    : Node_Id;
1948          Args         : List_Id;
1949          Arg          : Node_Id;
1950          Res          : List_Id;
1951
1952       begin
1953          --  First argument (_Init) is the object to be initialized.
1954          --  ??? not sure where to get a reasonable Loc for First_Arg
1955
1956          First_Arg :=
1957            OK_Convert_To (Parent_Type,
1958              New_Reference_To (Defining_Identifier (First (Parameters)), Loc));
1959
1960          Set_Etype (First_Arg, Parent_Type);
1961
1962          Args := New_List (Convert_Concurrent (First_Arg, Rec_Type));
1963
1964          --  In the tasks case,
1965          --    add _Master as the value of the _Master parameter
1966          --    add _Chain as the value of the _Chain parameter.
1967          --    add _Task_Name as the value of the _Task_Name parameter.
1968          --  At the outer level, these will be variables holding the
1969          --  corresponding values obtained from GNARL or the expander.
1970          --
1971          --  At inner levels, they will be the parameters passed down through
1972          --  the outer routines.
1973
1974          First_Discr_Param := Next (First (Parameters));
1975
1976          if Has_Task (Rec_Type) then
1977             if Restriction_Active (No_Task_Hierarchy) then
1978
1979                --  See comments in System.Tasking.Initialization.Init_RTS
1980                --  for the value 3.
1981
1982                Append_To (Args, Make_Integer_Literal (Loc, 3));
1983             else
1984                Append_To (Args, Make_Identifier (Loc, Name_uMaster));
1985             end if;
1986
1987             Append_To (Args, Make_Identifier (Loc, Name_uChain));
1988             Append_To (Args, Make_Identifier (Loc, Name_uTask_Name));
1989             First_Discr_Param := Next (Next (Next (First_Discr_Param)));
1990          end if;
1991
1992          --  Append discriminant values
1993
1994          if Has_Discriminants (Uparent_Type) then
1995             pragma Assert (not Is_Tagged_Type (Uparent_Type));
1996
1997             Parent_Discr := First_Discriminant (Uparent_Type);
1998             while Present (Parent_Discr) loop
1999
2000                --  Get the initial value for this discriminant
2001                --  ??? needs to be cleaned up to use parent_Discr_Constr
2002                --  directly.
2003
2004                declare
2005                   Discr_Value : Elmt_Id :=
2006                                   First_Elmt
2007                                     (Stored_Constraint (Rec_Type));
2008
2009                   Discr       : Entity_Id :=
2010                                   First_Stored_Discriminant (Uparent_Type);
2011                begin
2012                   while Original_Record_Component (Parent_Discr) /= Discr loop
2013                      Next_Stored_Discriminant (Discr);
2014                      Next_Elmt (Discr_Value);
2015                   end loop;
2016
2017                   Arg := Node (Discr_Value);
2018                end;
2019
2020                --  Append it to the list
2021
2022                if Nkind (Arg) = N_Identifier
2023                   and then Ekind (Entity (Arg)) = E_Discriminant
2024                then
2025                   Append_To (Args,
2026                     New_Reference_To (Discriminal (Entity (Arg)), Loc));
2027
2028                --  Case of access discriminants. We replace the reference
2029                --  to the type by a reference to the actual object.
2030
2031                --  Is above comment right??? Use of New_Copy below seems mighty
2032                --  suspicious ???
2033
2034                else
2035                   Append_To (Args, New_Copy (Arg));
2036                end if;
2037
2038                Next_Discriminant (Parent_Discr);
2039             end loop;
2040          end if;
2041
2042          Res :=
2043             New_List (
2044               Make_Procedure_Call_Statement (Loc,
2045                 Name => New_Occurrence_Of (Parent_Proc, Loc),
2046                 Parameter_Associations => Args));
2047
2048          return Res;
2049       end Build_Init_Call_Thru;
2050
2051       -----------------------------------
2052       -- Build_Offset_To_Top_Functions --
2053       -----------------------------------
2054
2055       procedure Build_Offset_To_Top_Functions is
2056
2057          procedure Build_Offset_To_Top_Function (Iface_Comp : Entity_Id);
2058          --  Generate:
2059          --    function Fxx (O : in Rec_Typ) return Storage_Offset is
2060          --    begin
2061          --       return O.Iface_Comp'Position;
2062          --    end Fxx;
2063
2064          ------------------------------
2065          -- Build_Offset_To_Top_Body --
2066          ------------------------------
2067
2068          procedure Build_Offset_To_Top_Function (Iface_Comp : Entity_Id) is
2069             Body_Node : Node_Id;
2070             Func_Id   : Entity_Id;
2071             Spec_Node : Node_Id;
2072
2073          begin
2074             Func_Id :=
2075               Make_Defining_Identifier (Loc,
2076                 Chars => New_Internal_Name ('F'));
2077
2078             Set_DT_Offset_To_Top_Func (Iface_Comp, Func_Id);
2079
2080             --  Generate
2081             --    function Fxx (O : in Rec_Typ) return Storage_Offset;
2082
2083             Spec_Node := New_Node (N_Function_Specification, Loc);
2084             Set_Defining_Unit_Name (Spec_Node, Func_Id);
2085             Set_Parameter_Specifications (Spec_Node, New_List (
2086               Make_Parameter_Specification (Loc,
2087                 Defining_Identifier => Make_Defining_Identifier (Loc, Name_uO),
2088                 In_Present          => True,
2089                 Parameter_Type      => New_Reference_To (Rec_Type, Loc))));
2090             Set_Result_Definition (Spec_Node,
2091               New_Reference_To (RTE (RE_Storage_Offset), Loc));
2092
2093             --  Generate
2094             --    function Fxx (O : in Rec_Typ) return Storage_Offset is
2095             --    begin
2096             --       return O.Iface_Comp'Position;
2097             --    end Fxx;
2098
2099             Body_Node := New_Node (N_Subprogram_Body, Loc);
2100             Set_Specification (Body_Node, Spec_Node);
2101             Set_Declarations (Body_Node, New_List);
2102             Set_Handled_Statement_Sequence (Body_Node,
2103               Make_Handled_Sequence_Of_Statements (Loc,
2104                 Statements => New_List (
2105                   Make_Simple_Return_Statement (Loc,
2106                     Expression =>
2107                       Make_Attribute_Reference (Loc,
2108                         Prefix =>
2109                           Make_Selected_Component (Loc,
2110                             Prefix => Make_Identifier (Loc, Name_uO),
2111                             Selector_Name => New_Reference_To
2112                                                (Iface_Comp, Loc)),
2113                         Attribute_Name => Name_Position)))));
2114
2115             Set_Ekind       (Func_Id, E_Function);
2116             Set_Mechanism   (Func_Id, Default_Mechanism);
2117             Set_Is_Internal (Func_Id, True);
2118
2119             if not Debug_Generated_Code then
2120                Set_Debug_Info_Off (Func_Id);
2121             end if;
2122
2123             Analyze (Body_Node);
2124
2125             Append_Freeze_Action (Rec_Type, Body_Node);
2126          end Build_Offset_To_Top_Function;
2127
2128          --  Local variables
2129
2130          Ifaces_Comp_List : Elist_Id;
2131          Iface_Comp_Elmt  : Elmt_Id;
2132          Iface_Comp       : Node_Id;
2133
2134       --  Start of processing for Build_Offset_To_Top_Functions
2135
2136       begin
2137          --  Offset_To_Top_Functions are built only for derivations of types
2138          --  with discriminants that cover interface types.
2139          --  Nothing is needed either in case of virtual machines, since
2140          --  interfaces are handled directly by the VM.
2141
2142          if not Is_Tagged_Type (Rec_Type)
2143            or else Etype (Rec_Type) = Rec_Type
2144            or else not Has_Discriminants (Etype (Rec_Type))
2145            or else VM_Target /= No_VM
2146          then
2147             return;
2148          end if;
2149
2150          Collect_Interface_Components (Rec_Type, Ifaces_Comp_List);
2151
2152          --  For each interface type with secondary dispatch table we generate
2153          --  the Offset_To_Top_Functions (required to displace the pointer in
2154          --  interface conversions)
2155
2156          Iface_Comp_Elmt := First_Elmt (Ifaces_Comp_List);
2157          while Present (Iface_Comp_Elmt) loop
2158             Iface_Comp := Node (Iface_Comp_Elmt);
2159             pragma Assert (Is_Interface (Related_Type (Iface_Comp)));
2160
2161             --  If the interface is a parent of Rec_Type it shares the primary
2162             --  dispatch table and hence there is no need to build the function
2163
2164             if not Is_Ancestor (Related_Type (Iface_Comp), Rec_Type) then
2165                Build_Offset_To_Top_Function (Iface_Comp);
2166             end if;
2167
2168             Next_Elmt (Iface_Comp_Elmt);
2169          end loop;
2170       end Build_Offset_To_Top_Functions;
2171
2172       --------------------------
2173       -- Build_Init_Procedure --
2174       --------------------------
2175
2176       procedure Build_Init_Procedure is
2177          Body_Node             : Node_Id;
2178          Handled_Stmt_Node     : Node_Id;
2179          Parameters            : List_Id;
2180          Proc_Spec_Node        : Node_Id;
2181          Body_Stmts            : List_Id;
2182          Record_Extension_Node : Node_Id;
2183          Init_Tags_List        : List_Id;
2184
2185       begin
2186          Body_Stmts := New_List;
2187          Body_Node := New_Node (N_Subprogram_Body, Loc);
2188          Set_Ekind (Proc_Id, E_Procedure);
2189
2190          Proc_Spec_Node := New_Node (N_Procedure_Specification, Loc);
2191          Set_Defining_Unit_Name (Proc_Spec_Node, Proc_Id);
2192
2193          Parameters := Init_Formals (Rec_Type);
2194          Append_List_To (Parameters,
2195            Build_Discriminant_Formals (Rec_Type, True));
2196
2197          --  For tagged types, we add a flag to indicate whether the routine
2198          --  is called to initialize a parent component in the init_proc of
2199          --  a type extension. If the flag is false, we do not set the tag
2200          --  because it has been set already in the extension.
2201
2202          if Is_Tagged_Type (Rec_Type)
2203            and then not Is_CPP_Class (Rec_Type)
2204          then
2205             Set_Tag :=
2206               Make_Defining_Identifier (Loc,
2207                 Chars => New_Internal_Name ('P'));
2208
2209             Append_To (Parameters,
2210               Make_Parameter_Specification (Loc,
2211                 Defining_Identifier => Set_Tag,
2212                 Parameter_Type => New_Occurrence_Of (Standard_Boolean, Loc),
2213                 Expression => New_Occurrence_Of (Standard_True, Loc)));
2214          end if;
2215
2216          Set_Parameter_Specifications (Proc_Spec_Node, Parameters);
2217          Set_Specification (Body_Node, Proc_Spec_Node);
2218          Set_Declarations (Body_Node, New_List);
2219
2220          if Parent_Subtype_Renaming_Discrims then
2221
2222             --  N is a Derived_Type_Definition that renames the parameters
2223             --  of the ancestor type. We initialize it by expanding our
2224             --  discriminants and call the ancestor _init_proc with a
2225             --  type-converted object
2226
2227             Append_List_To (Body_Stmts,
2228               Build_Init_Call_Thru (Parameters));
2229
2230          elsif Nkind (Type_Definition (N)) = N_Record_Definition then
2231             Build_Discriminant_Assignments (Body_Stmts);
2232
2233             if not Null_Present (Type_Definition (N)) then
2234                Append_List_To (Body_Stmts,
2235                  Build_Init_Statements (
2236                    Component_List (Type_Definition (N))));
2237             end if;
2238
2239          else
2240             --  N is a Derived_Type_Definition with a possible non-empty
2241             --  extension. The initialization of a type extension consists
2242             --  in the initialization of the components in the extension.
2243
2244             Build_Discriminant_Assignments (Body_Stmts);
2245
2246             Record_Extension_Node :=
2247               Record_Extension_Part (Type_Definition (N));
2248
2249             if not Null_Present (Record_Extension_Node) then
2250                declare
2251                   Stmts : constant List_Id :=
2252                             Build_Init_Statements (
2253                               Component_List (Record_Extension_Node));
2254
2255                begin
2256                   --  The parent field must be initialized first because
2257                   --  the offset of the new discriminants may depend on it
2258
2259                   Prepend_To (Body_Stmts, Remove_Head (Stmts));
2260                   Append_List_To (Body_Stmts, Stmts);
2261                end;
2262             end if;
2263          end if;
2264
2265          --  Add here the assignment to instantiate the Tag
2266
2267          --  The assignment corresponds to the code:
2268
2269          --     _Init._Tag := Typ'Tag;
2270
2271          --  Suppress the tag assignment when VM_Target because VM tags are
2272          --  represented implicitly in objects. It is also suppressed in case
2273          --  of CPP_Class types because in this case the tag is initialized in
2274          --  the C++ side.
2275
2276          if Is_Tagged_Type (Rec_Type)
2277            and then not Is_CPP_Class (Rec_Type)
2278            and then VM_Target = No_VM
2279            and then not No_Run_Time_Mode
2280          then
2281             --  Initialize the primary tag
2282
2283             Init_Tags_List := New_List (
2284               Make_Assignment_Statement (Loc,
2285                 Name =>
2286                   Make_Selected_Component (Loc,
2287                     Prefix => Make_Identifier (Loc, Name_uInit),
2288                     Selector_Name =>
2289                       New_Reference_To (First_Tag_Component (Rec_Type), Loc)),
2290
2291                 Expression =>
2292                   New_Reference_To
2293                     (Node (First_Elmt (Access_Disp_Table (Rec_Type))), Loc)));
2294
2295             --  Ada 2005 (AI-251): Initialize the secondary tags components
2296             --  located at fixed positions (tags whose position depends on
2297             --  variable size components are initialized later ---see below).
2298
2299             if Ada_Version >= Ada_05
2300               and then not Is_Interface (Rec_Type)
2301               and then Has_Interfaces (Rec_Type)
2302             then
2303                Init_Secondary_Tags
2304                  (Typ            => Rec_Type,
2305                   Target         => Make_Identifier (Loc, Name_uInit),
2306                   Stmts_List     => Init_Tags_List,
2307                   Fixed_Comps    => True,
2308                   Variable_Comps => False);
2309             end if;
2310
2311             --  The tag must be inserted before the assignments to other
2312             --  components,  because the initial value of the component may
2313             --  depend on the tag (eg. through a dispatching operation on
2314             --  an access to the current type). The tag assignment is not done
2315             --  when initializing the parent component of a type extension,
2316             --  because in that case the tag is set in the extension.
2317
2318             --  Extensions of imported C++ classes add a final complication,
2319             --  because we cannot inhibit tag setting in the constructor for
2320             --  the parent. In that case we insert the tag initialization
2321             --  after the calls to initialize the parent.
2322
2323             if not Is_CPP_Class (Root_Type (Rec_Type)) then
2324                Prepend_To (Body_Stmts,
2325                  Make_If_Statement (Loc,
2326                    Condition => New_Occurrence_Of (Set_Tag, Loc),
2327                    Then_Statements => Init_Tags_List));
2328
2329             --  CPP_Class derivation: In this case the dispatch table of the
2330             --  parent was built in the C++ side and we copy the table of the
2331             --  parent to initialize the new dispatch table.
2332
2333             else
2334                declare
2335                   Nod : Node_Id;
2336
2337                begin
2338                   --  We assume the first init_proc call is for the parent
2339
2340                   Nod := First (Body_Stmts);
2341                   while Present (Next (Nod))
2342                     and then (Nkind (Nod) /= N_Procedure_Call_Statement
2343                                or else not Is_Init_Proc (Name (Nod)))
2344                   loop
2345                      Nod := Next (Nod);
2346                   end loop;
2347
2348                   --  Generate:
2349                   --     ancestor_constructor (_init.parent);
2350                   --     if Arg2 then
2351                   --        inherit_prim_ops (_init._tag, new_dt, num_prims);
2352                   --        _init._tag := new_dt;
2353                   --     end if;
2354
2355                   Prepend_To (Init_Tags_List,
2356                     Build_Inherit_Prims (Loc,
2357                       Typ          => Rec_Type,
2358                       Old_Tag_Node =>
2359                         Make_Selected_Component (Loc,
2360                           Prefix        =>
2361                             Make_Identifier (Loc,
2362                               Chars => Name_uInit),
2363                           Selector_Name =>
2364                             New_Reference_To
2365                               (First_Tag_Component (Rec_Type), Loc)),
2366                       New_Tag_Node =>
2367                         New_Reference_To
2368                           (Node (First_Elmt (Access_Disp_Table (Rec_Type))),
2369                            Loc),
2370                       Num_Prims    =>
2371                         UI_To_Int
2372                           (DT_Entry_Count (First_Tag_Component (Rec_Type)))));
2373
2374                   Insert_After (Nod,
2375                     Make_If_Statement (Loc,
2376                       Condition => New_Occurrence_Of (Set_Tag, Loc),
2377                       Then_Statements => Init_Tags_List));
2378
2379                   --  We have inherited table of the parent from the CPP side.
2380                   --  Now we fill the slots associated with Ada primitives.
2381                   --  This needs more work to avoid its execution each time
2382                   --  an object is initialized???
2383
2384                   declare
2385                      E    : Elmt_Id;
2386                      Prim : Node_Id;
2387
2388                   begin
2389                      E := First_Elmt (Primitive_Operations (Rec_Type));
2390                      while Present (E) loop
2391                         Prim := Node (E);
2392
2393                         if not Is_Imported (Prim)
2394                           and then Convention (Prim) = Convention_CPP
2395                           and then not Present (Interface_Alias (Prim))
2396                         then
2397                            Append_List_To (Init_Tags_List,
2398                              Register_Primitive (Loc, Prim => Prim));
2399                         end if;
2400
2401                         Next_Elmt (E);
2402                      end loop;
2403                   end;
2404                end;
2405             end if;
2406
2407             --  Ada 2005 (AI-251): Initialize the secondary tag components
2408             --  located at variable positions. We delay the generation of this
2409             --  code until here because the value of the attribute 'Position
2410             --  applied to variable size components of the parent type that
2411             --  depend on discriminants is only safely read at runtime after
2412             --  the parent components have been initialized.
2413
2414             if Ada_Version >= Ada_05
2415               and then not Is_Interface (Rec_Type)
2416               and then Has_Interfaces (Rec_Type)
2417               and then Has_Discriminants (Etype (Rec_Type))
2418               and then Is_Variable_Size_Record (Etype (Rec_Type))
2419             then
2420                Init_Tags_List := New_List;
2421
2422                Init_Secondary_Tags
2423                  (Typ            => Rec_Type,
2424                   Target         => Make_Identifier (Loc, Name_uInit),
2425                   Stmts_List     => Init_Tags_List,
2426                   Fixed_Comps    => False,
2427                   Variable_Comps => True);
2428
2429                if Is_Non_Empty_List (Init_Tags_List) then
2430                   Append_List_To (Body_Stmts, Init_Tags_List);
2431                end if;
2432             end if;
2433          end if;
2434
2435          Handled_Stmt_Node := New_Node (N_Handled_Sequence_Of_Statements, Loc);
2436          Set_Statements (Handled_Stmt_Node, Body_Stmts);
2437          Set_Exception_Handlers (Handled_Stmt_Node, No_List);
2438          Set_Handled_Statement_Sequence (Body_Node, Handled_Stmt_Node);
2439
2440          if not Debug_Generated_Code then
2441             Set_Debug_Info_Off (Proc_Id);
2442          end if;
2443
2444          --  Associate Init_Proc with type, and determine if the procedure
2445          --  is null (happens because of the Initialize_Scalars pragma case,
2446          --  where we have to generate a null procedure in case it is called
2447          --  by a client with Initialize_Scalars set). Such procedures have
2448          --  to be generated, but do not have to be called, so we mark them
2449          --  as null to suppress the call.
2450
2451          Set_Init_Proc (Rec_Type, Proc_Id);
2452
2453          if List_Length (Body_Stmts) = 1
2454            and then Nkind (First (Body_Stmts)) = N_Null_Statement
2455            and then VM_Target /= CLI_Target
2456          then
2457             --  Even though the init proc may be null at this time it might get
2458             --  some stuff added to it later by the CIL backend, so always keep
2459             --  it when VM_Target = CLI_Target.
2460
2461             Set_Is_Null_Init_Proc (Proc_Id);
2462          end if;
2463       end Build_Init_Procedure;
2464
2465       ---------------------------
2466       -- Build_Init_Statements --
2467       ---------------------------
2468
2469       function Build_Init_Statements (Comp_List : Node_Id) return List_Id is
2470          Check_List     : constant List_Id := New_List;
2471          Alt_List       : List_Id;
2472          Decl           : Node_Id;
2473          Id             : Entity_Id;
2474          Names          : Node_Id;
2475          Statement_List : List_Id;
2476          Stmts          : List_Id;
2477          Typ            : Entity_Id;
2478          Variant        : Node_Id;
2479
2480          Per_Object_Constraint_Components : Boolean;
2481
2482          function Has_Access_Constraint (E : Entity_Id) return Boolean;
2483          --  Components with access discriminants that depend on the current
2484          --  instance must be initialized after all other components.
2485
2486          ---------------------------
2487          -- Has_Access_Constraint --
2488          ---------------------------
2489
2490          function Has_Access_Constraint (E : Entity_Id) return Boolean is
2491             Disc : Entity_Id;
2492             T    : constant Entity_Id := Etype (E);
2493
2494          begin
2495             if Has_Per_Object_Constraint (E)
2496               and then Has_Discriminants (T)
2497             then
2498                Disc := First_Discriminant (T);
2499                while Present (Disc) loop
2500                   if Is_Access_Type (Etype (Disc)) then
2501                      return True;
2502                   end if;
2503
2504                   Next_Discriminant (Disc);
2505                end loop;
2506
2507                return False;
2508             else
2509                return False;
2510             end if;
2511          end Has_Access_Constraint;
2512
2513       --  Start of processing for Build_Init_Statements
2514
2515       begin
2516          if Null_Present (Comp_List) then
2517             return New_List (Make_Null_Statement (Loc));
2518          end if;
2519
2520          Statement_List := New_List;
2521
2522          --  Loop through visible declarations of task types and protected
2523          --  types moving any expanded code from the spec to the body of the
2524          --  init procedure.
2525
2526          if Is_Task_Record_Type (Rec_Type)
2527            or else Is_Protected_Record_Type (Rec_Type)
2528          then
2529             declare
2530                Decl : constant Node_Id :=
2531                         Parent (Corresponding_Concurrent_Type (Rec_Type));
2532                Def  : Node_Id;
2533                N1   : Node_Id;
2534                N2   : Node_Id;
2535
2536             begin
2537                if Is_Task_Record_Type (Rec_Type) then
2538                   Def := Task_Definition (Decl);
2539                else
2540                   Def := Protected_Definition (Decl);
2541                end if;
2542
2543                if Present (Def) then
2544                   N1 := First (Visible_Declarations (Def));
2545                   while Present (N1) loop
2546                      N2 := N1;
2547                      N1 := Next (N1);
2548
2549                      if Nkind (N2) in N_Statement_Other_Than_Procedure_Call
2550                        or else Nkind (N2) in N_Raise_xxx_Error
2551                        or else Nkind (N2) = N_Procedure_Call_Statement
2552                      then
2553                         Append_To (Statement_List,
2554                           New_Copy_Tree (N2, New_Scope => Proc_Id));
2555                         Rewrite (N2, Make_Null_Statement (Sloc (N2)));
2556                         Analyze (N2);
2557                      end if;
2558                   end loop;
2559                end if;
2560             end;
2561          end if;
2562
2563          --  Loop through components, skipping pragmas, in 2 steps. The first
2564          --  step deals with regular components. The second step deals with
2565          --  components have per object constraints, and no explicit initia-
2566          --  lization.
2567
2568          Per_Object_Constraint_Components := False;
2569
2570          --  First step : regular components
2571
2572          Decl := First_Non_Pragma (Component_Items (Comp_List));
2573          while Present (Decl) loop
2574             Loc := Sloc (Decl);
2575             Build_Record_Checks
2576               (Subtype_Indication (Component_Definition (Decl)), Check_List);
2577
2578             Id := Defining_Identifier (Decl);
2579             Typ := Etype (Id);
2580
2581             if Has_Access_Constraint (Id)
2582               and then No (Expression (Decl))
2583             then
2584                --  Skip processing for now and ask for a second pass
2585
2586                Per_Object_Constraint_Components := True;
2587
2588             else
2589                --  Case of explicit initialization
2590
2591                if Present (Expression (Decl)) then
2592                   Stmts := Build_Assignment (Id, Expression (Decl));
2593
2594                --  Case of composite component with its own Init_Proc
2595
2596                elsif not Is_Interface (Typ)
2597                  and then Has_Non_Null_Base_Init_Proc (Typ)
2598                then
2599                   Stmts :=
2600                     Build_Initialization_Call
2601                       (Loc,
2602                        Make_Selected_Component (Loc,
2603                          Prefix => Make_Identifier (Loc, Name_uInit),
2604                          Selector_Name => New_Occurrence_Of (Id, Loc)),
2605                        Typ,
2606                        In_Init_Proc => True,
2607                        Enclos_Type => Rec_Type,
2608                        Discr_Map => Discr_Map);
2609
2610                   Clean_Task_Names (Typ, Proc_Id);
2611
2612                --  Case of component needing simple initialization
2613
2614                elsif Component_Needs_Simple_Initialization (Typ) then
2615                   Stmts :=
2616                     Build_Assignment
2617                       (Id, Get_Simple_Init_Val (Typ, N, Esize (Id)));
2618
2619                --  Nothing needed for this case
2620
2621                else
2622                   Stmts := No_List;
2623                end if;
2624
2625                if Present (Check_List) then
2626                   Append_List_To (Statement_List, Check_List);
2627                end if;
2628
2629                if Present (Stmts) then
2630
2631                   --  Add the initialization of the record controller before
2632                   --  the _Parent field is attached to it when the attachment
2633                   --  can occur. It does not work to simply initialize the
2634                   --  controller first: it must be initialized after the parent
2635                   --  if the parent holds discriminants that can be used to
2636                   --  compute the offset of the controller. We assume here that
2637                   --  the last statement of the initialization call is the
2638                   --  attachment of the parent (see Build_Initialization_Call)
2639
2640                   if Chars (Id) = Name_uController
2641                     and then Rec_Type /= Etype (Rec_Type)
2642                     and then Has_Controlled_Component (Etype (Rec_Type))
2643                     and then Has_New_Controlled_Component (Rec_Type)
2644                     and then Present (Last (Statement_List))
2645                   then
2646                      Insert_List_Before (Last (Statement_List), Stmts);
2647                   else
2648                      Append_List_To (Statement_List, Stmts);
2649                   end if;
2650                end if;
2651             end if;
2652
2653             Next_Non_Pragma (Decl);
2654          end loop;
2655
2656          if Per_Object_Constraint_Components then
2657
2658             --  Second pass: components with per-object constraints
2659
2660             Decl := First_Non_Pragma (Component_Items (Comp_List));
2661             while Present (Decl) loop
2662                Loc := Sloc (Decl);
2663                Id := Defining_Identifier (Decl);
2664                Typ := Etype (Id);
2665
2666                if Has_Access_Constraint (Id)
2667                  and then No (Expression (Decl))
2668                then
2669                   if Has_Non_Null_Base_Init_Proc (Typ) then
2670                      Append_List_To (Statement_List,
2671                        Build_Initialization_Call (Loc,
2672                          Make_Selected_Component (Loc,
2673                            Prefix        => Make_Identifier (Loc, Name_uInit),
2674                            Selector_Name => New_Occurrence_Of (Id, Loc)),
2675                          Typ,
2676                          In_Init_Proc => True,
2677                          Enclos_Type  => Rec_Type,
2678                          Discr_Map    => Discr_Map));
2679
2680                      Clean_Task_Names (Typ, Proc_Id);
2681
2682                   elsif Component_Needs_Simple_Initialization (Typ) then
2683                      Append_List_To (Statement_List,
2684                        Build_Assignment
2685                          (Id, Get_Simple_Init_Val (Typ, N, Esize (Id))));
2686                   end if;
2687                end if;
2688
2689                Next_Non_Pragma (Decl);
2690             end loop;
2691          end if;
2692
2693          --  Process the variant part
2694
2695          if Present (Variant_Part (Comp_List)) then
2696             Alt_List := New_List;
2697             Variant := First_Non_Pragma (Variants (Variant_Part (Comp_List)));
2698             while Present (Variant) loop
2699                Loc := Sloc (Variant);
2700                Append_To (Alt_List,
2701                  Make_Case_Statement_Alternative (Loc,
2702                    Discrete_Choices =>
2703                      New_Copy_List (Discrete_Choices (Variant)),
2704                    Statements =>
2705                      Build_Init_Statements (Component_List (Variant))));
2706                Next_Non_Pragma (Variant);
2707             end loop;
2708
2709             --  The expression of the case statement which is a reference
2710             --  to one of the discriminants is replaced by the appropriate
2711             --  formal parameter of the initialization procedure.
2712
2713             Append_To (Statement_List,
2714               Make_Case_Statement (Loc,
2715                 Expression =>
2716                   New_Reference_To (Discriminal (
2717                     Entity (Name (Variant_Part (Comp_List)))), Loc),
2718                 Alternatives => Alt_List));
2719          end if;
2720
2721          --  For a task record type, add the task create call and calls
2722          --  to bind any interrupt (signal) entries.
2723
2724          if Is_Task_Record_Type (Rec_Type) then
2725
2726             --  In the case of the restricted run time the ATCB has already
2727             --  been preallocated.
2728
2729             if Restricted_Profile then
2730                Append_To (Statement_List,
2731                  Make_Assignment_Statement (Loc,
2732                    Name => Make_Selected_Component (Loc,
2733                      Prefix => Make_Identifier (Loc, Name_uInit),
2734                      Selector_Name => Make_Identifier (Loc, Name_uTask_Id)),
2735                    Expression => Make_Attribute_Reference (Loc,
2736                      Prefix =>
2737                        Make_Selected_Component (Loc,
2738                          Prefix => Make_Identifier (Loc, Name_uInit),
2739                          Selector_Name =>
2740                            Make_Identifier (Loc, Name_uATCB)),
2741                      Attribute_Name => Name_Unchecked_Access)));
2742             end if;
2743
2744             Append_To (Statement_List, Make_Task_Create_Call (Rec_Type));
2745
2746             --  Generate the statements which map a string entry name to a
2747             --  task entry index. Note that the task may not have entries.
2748
2749             if Entry_Names_OK then
2750                Names := Build_Entry_Names (Rec_Type);
2751
2752                if Present (Names) then
2753                   Append_To (Statement_List, Names);
2754                end if;
2755             end if;
2756
2757             declare
2758                Task_Type : constant Entity_Id :=
2759                              Corresponding_Concurrent_Type (Rec_Type);
2760                Task_Decl : constant Node_Id := Parent (Task_Type);
2761                Task_Def  : constant Node_Id := Task_Definition (Task_Decl);
2762                Vis_Decl  : Node_Id;
2763                Ent       : Entity_Id;
2764
2765             begin
2766                if Present (Task_Def) then
2767                   Vis_Decl := First (Visible_Declarations (Task_Def));
2768                   while Present (Vis_Decl) loop
2769                      Loc := Sloc (Vis_Decl);
2770
2771                      if Nkind (Vis_Decl) = N_Attribute_Definition_Clause then
2772                         if Get_Attribute_Id (Chars (Vis_Decl)) =
2773                                                        Attribute_Address
2774                         then
2775                            Ent := Entity (Name (Vis_Decl));
2776
2777                            if Ekind (Ent) = E_Entry then
2778                               Append_To (Statement_List,
2779                                 Make_Procedure_Call_Statement (Loc,
2780                                   Name => New_Reference_To (
2781                                     RTE (RE_Bind_Interrupt_To_Entry), Loc),
2782                                   Parameter_Associations => New_List (
2783                                     Make_Selected_Component (Loc,
2784                                       Prefix =>
2785                                         Make_Identifier (Loc, Name_uInit),
2786                                       Selector_Name =>
2787                                         Make_Identifier (Loc, Name_uTask_Id)),
2788                                     Entry_Index_Expression (
2789                                       Loc, Ent, Empty, Task_Type),
2790                                     Expression (Vis_Decl))));
2791                            end if;
2792                         end if;
2793                      end if;
2794
2795                      Next (Vis_Decl);
2796                   end loop;
2797                end if;
2798             end;
2799          end if;
2800
2801          --  For a protected type, add statements generated by
2802          --  Make_Initialize_Protection.
2803
2804          if Is_Protected_Record_Type (Rec_Type) then
2805             Append_List_To (Statement_List,
2806               Make_Initialize_Protection (Rec_Type));
2807
2808             --  Generate the statements which map a string entry name to a
2809             --  protected entry index. Note that the protected type may not
2810             --  have entries.
2811
2812             if Entry_Names_OK then
2813                Names := Build_Entry_Names (Rec_Type);
2814
2815                if Present (Names) then
2816                   Append_To (Statement_List, Names);
2817                end if;
2818             end if;
2819          end if;
2820
2821          --  If no initializations when generated for component declarations
2822          --  corresponding to this Statement_List, append a null statement
2823          --  to the Statement_List to make it a valid Ada tree.
2824
2825          if Is_Empty_List (Statement_List) then
2826             Append (New_Node (N_Null_Statement, Loc), Statement_List);
2827          end if;
2828
2829          return Statement_List;
2830
2831       exception
2832          when RE_Not_Available =>
2833          return Empty_List;
2834       end Build_Init_Statements;
2835
2836       -------------------------
2837       -- Build_Record_Checks --
2838       -------------------------
2839
2840       procedure Build_Record_Checks (S : Node_Id; Check_List : List_Id) is
2841          Subtype_Mark_Id : Entity_Id;
2842
2843       begin
2844          if Nkind (S) = N_Subtype_Indication then
2845             Find_Type (Subtype_Mark (S));
2846             Subtype_Mark_Id := Entity (Subtype_Mark (S));
2847
2848             --  Remaining processing depends on type
2849
2850             case Ekind (Subtype_Mark_Id) is
2851
2852                when Array_Kind =>
2853                   Constrain_Array (S, Check_List);
2854
2855                when others =>
2856                   null;
2857             end case;
2858          end if;
2859       end Build_Record_Checks;
2860
2861       -------------------------------------------
2862       -- Component_Needs_Simple_Initialization --
2863       -------------------------------------------
2864
2865       function Component_Needs_Simple_Initialization
2866         (T : Entity_Id) return Boolean
2867       is
2868       begin
2869          return
2870            Needs_Simple_Initialization (T)
2871              and then not Is_RTE (T, RE_Tag)
2872
2873                --  Ada 2005 (AI-251): Check also the tag of abstract interfaces
2874
2875              and then not Is_RTE (T, RE_Interface_Tag);
2876       end Component_Needs_Simple_Initialization;
2877
2878       ---------------------
2879       -- Constrain_Array --
2880       ---------------------
2881
2882       procedure Constrain_Array
2883         (SI          : Node_Id;
2884          Check_List  : List_Id)
2885       is
2886          C                     : constant Node_Id := Constraint (SI);
2887          Number_Of_Constraints : Nat := 0;
2888          Index                 : Node_Id;
2889          S, T                  : Entity_Id;
2890
2891       begin
2892          T := Entity (Subtype_Mark (SI));
2893
2894          if Ekind (T) in Access_Kind then
2895             T := Designated_Type (T);
2896          end if;
2897
2898          S := First (Constraints (C));
2899
2900          while Present (S) loop
2901             Number_Of_Constraints := Number_Of_Constraints + 1;
2902             Next (S);
2903          end loop;
2904
2905          --  In either case, the index constraint must provide a discrete
2906          --  range for each index of the array type and the type of each
2907          --  discrete range must be the same as that of the corresponding
2908          --  index. (RM 3.6.1)
2909
2910          S := First (Constraints (C));
2911          Index := First_Index (T);
2912          Analyze (Index);
2913
2914          --  Apply constraints to each index type
2915
2916          for J in 1 .. Number_Of_Constraints loop
2917             Constrain_Index (Index, S, Check_List);
2918             Next (Index);
2919             Next (S);
2920          end loop;
2921
2922       end Constrain_Array;
2923
2924       ---------------------
2925       -- Constrain_Index --
2926       ---------------------
2927
2928       procedure Constrain_Index
2929         (Index        : Node_Id;
2930          S            : Node_Id;
2931          Check_List   : List_Id)
2932       is
2933          T : constant Entity_Id := Etype (Index);
2934
2935       begin
2936          if Nkind (S) = N_Range then
2937             Process_Range_Expr_In_Decl (S, T, Check_List);
2938          end if;
2939       end Constrain_Index;
2940
2941       --------------------------------------
2942       -- Parent_Subtype_Renaming_Discrims --
2943       --------------------------------------
2944
2945       function Parent_Subtype_Renaming_Discrims return Boolean is
2946          De : Entity_Id;
2947          Dp : Entity_Id;
2948
2949       begin
2950          if Base_Type (Pe) /= Pe then
2951             return False;
2952          end if;
2953
2954          if Etype (Pe) = Pe
2955            or else not Has_Discriminants (Pe)
2956            or else Is_Constrained (Pe)
2957            or else Is_Tagged_Type (Pe)
2958          then
2959             return False;
2960          end if;
2961
2962          --  If there are no explicit stored discriminants we have inherited
2963          --  the root type discriminants so far, so no renamings occurred.
2964
2965          if First_Discriminant (Pe) = First_Stored_Discriminant (Pe) then
2966             return False;
2967          end if;
2968
2969          --  Check if we have done some trivial renaming of the parent
2970          --  discriminants, i.e. something like
2971          --
2972          --    type DT (X1,X2: int) is new PT (X1,X2);
2973
2974          De := First_Discriminant (Pe);
2975          Dp := First_Discriminant (Etype (Pe));
2976
2977          while Present (De) loop
2978             pragma Assert (Present (Dp));
2979
2980             if Corresponding_Discriminant (De) /= Dp then
2981                return True;
2982             end if;
2983
2984             Next_Discriminant (De);
2985             Next_Discriminant (Dp);
2986          end loop;
2987
2988          return Present (Dp);
2989       end Parent_Subtype_Renaming_Discrims;
2990
2991       ------------------------
2992       -- Requires_Init_Proc --
2993       ------------------------
2994
2995       function Requires_Init_Proc (Rec_Id : Entity_Id) return Boolean is
2996          Comp_Decl : Node_Id;
2997          Id        : Entity_Id;
2998          Typ       : Entity_Id;
2999
3000       begin
3001          --  Definitely do not need one if specifically suppressed
3002
3003          if Suppress_Init_Proc (Rec_Id) then
3004             return False;
3005          end if;
3006
3007          --  If it is a type derived from a type with unknown discriminants,
3008          --  we cannot build an initialization procedure for it.
3009
3010          if Has_Unknown_Discriminants (Rec_Id) then
3011             return False;
3012          end if;
3013
3014          --  Otherwise we need to generate an initialization procedure if
3015          --  Is_CPP_Class is False and at least one of the following applies:
3016
3017          --  1. Discriminants are present, since they need to be initialized
3018          --     with the appropriate discriminant constraint expressions.
3019          --     However, the discriminant of an unchecked union does not
3020          --     count, since the discriminant is not present.
3021
3022          --  2. The type is a tagged type, since the implicit Tag component
3023          --     needs to be initialized with a pointer to the dispatch table.
3024
3025          --  3. The type contains tasks
3026
3027          --  4. One or more components has an initial value
3028
3029          --  5. One or more components is for a type which itself requires
3030          --     an initialization procedure.
3031
3032          --  6. One or more components is a type that requires simple
3033          --     initialization (see Needs_Simple_Initialization), except
3034          --     that types Tag and Interface_Tag are excluded, since fields
3035          --     of these types are initialized by other means.
3036
3037          --  7. The type is the record type built for a task type (since at
3038          --     the very least, Create_Task must be called)
3039
3040          --  8. The type is the record type built for a protected type (since
3041          --     at least Initialize_Protection must be called)
3042
3043          --  9. The type is marked as a public entity. The reason we add this
3044          --     case (even if none of the above apply) is to properly handle
3045          --     Initialize_Scalars. If a package is compiled without an IS
3046          --     pragma, and the client is compiled with an IS pragma, then
3047          --     the client will think an initialization procedure is present
3048          --     and call it, when in fact no such procedure is required, but
3049          --     since the call is generated, there had better be a routine
3050          --     at the other end of the call, even if it does nothing!)
3051
3052          --  Note: the reason we exclude the CPP_Class case is because in this
3053          --  case the initialization is performed in the C++ side.
3054
3055          if Is_CPP_Class (Rec_Id) then
3056             return False;
3057
3058          elsif Is_Interface (Rec_Id) then
3059             return False;
3060
3061          elsif (Has_Discriminants (Rec_Id)
3062                   and then not Is_Unchecked_Union (Rec_Id))
3063            or else Is_Tagged_Type (Rec_Id)
3064            or else Is_Concurrent_Record_Type (Rec_Id)
3065            or else Has_Task (Rec_Id)
3066          then
3067             return True;
3068          end if;
3069
3070          Id := First_Component (Rec_Id);
3071          while Present (Id) loop
3072             Comp_Decl := Parent (Id);
3073             Typ := Etype (Id);
3074
3075             if Present (Expression (Comp_Decl))
3076               or else Has_Non_Null_Base_Init_Proc (Typ)
3077               or else Component_Needs_Simple_Initialization (Typ)
3078             then
3079                return True;
3080             end if;
3081
3082             Next_Component (Id);
3083          end loop;
3084
3085          --  As explained above, a record initialization procedure is needed
3086          --  for public types in case Initialize_Scalars applies to a client.
3087          --  However, such a procedure is not needed in the case where either
3088          --  of restrictions No_Initialize_Scalars or No_Default_Initialization
3089          --  applies. No_Initialize_Scalars excludes the possibility of using
3090          --  Initialize_Scalars in any partition, and No_Default_Initialization
3091          --  implies that no initialization should ever be done for objects of
3092          --  the type, so is incompatible with Initialize_Scalars.
3093
3094          if not Restriction_Active (No_Initialize_Scalars)
3095            and then not Restriction_Active (No_Default_Initialization)
3096            and then Is_Public (Rec_Id)
3097          then
3098             return True;
3099          end if;
3100
3101          return False;
3102       end Requires_Init_Proc;
3103
3104    --  Start of processing for Build_Record_Init_Proc
3105
3106    begin
3107       --  Check for value type, which means no initialization required
3108
3109       Rec_Type := Defining_Identifier (N);
3110
3111       if Is_Value_Type (Rec_Type) then
3112          return;
3113       end if;
3114
3115       --  This may be full declaration of a private type, in which case
3116       --  the visible entity is a record, and the private entity has been
3117       --  exchanged with it in the private part of the current package.
3118       --  The initialization procedure is built for the record type, which
3119       --  is retrievable from the private entity.
3120
3121       if Is_Incomplete_Or_Private_Type (Rec_Type) then
3122          Rec_Type := Underlying_Type (Rec_Type);
3123       end if;
3124
3125       --  If there are discriminants, build the discriminant map to replace
3126       --  discriminants by their discriminals in complex bound expressions.
3127       --  These only arise for the corresponding records of synchronized types.
3128
3129       if Is_Concurrent_Record_Type (Rec_Type)
3130         and then Has_Discriminants (Rec_Type)
3131       then
3132          declare
3133             Disc : Entity_Id;
3134          begin
3135             Disc := First_Discriminant (Rec_Type);
3136             while Present (Disc) loop
3137                Append_Elmt (Disc, Discr_Map);
3138                Append_Elmt (Discriminal (Disc), Discr_Map);
3139                Next_Discriminant (Disc);
3140             end loop;
3141          end;
3142       end if;
3143
3144       --  Derived types that have no type extension can use the initialization
3145       --  procedure of their parent and do not need a procedure of their own.
3146       --  This is only correct if there are no representation clauses for the
3147       --  type or its parent, and if the parent has in fact been frozen so
3148       --  that its initialization procedure exists.
3149
3150       if Is_Derived_Type (Rec_Type)
3151         and then not Is_Tagged_Type (Rec_Type)
3152         and then not Is_Unchecked_Union (Rec_Type)
3153         and then not Has_New_Non_Standard_Rep (Rec_Type)
3154         and then not Parent_Subtype_Renaming_Discrims
3155         and then Has_Non_Null_Base_Init_Proc (Etype (Rec_Type))
3156       then
3157          Copy_TSS (Base_Init_Proc (Etype (Rec_Type)), Rec_Type);
3158
3159       --  Otherwise if we need an initialization procedure, then build one,
3160       --  mark it as public and inlinable and as having a completion.
3161
3162       elsif Requires_Init_Proc (Rec_Type)
3163         or else Is_Unchecked_Union (Rec_Type)
3164       then
3165          Proc_Id :=
3166            Make_Defining_Identifier (Loc,
3167              Chars => Make_Init_Proc_Name (Rec_Type));
3168
3169          --  If No_Default_Initialization restriction is active, then we don't
3170          --  want to build an init_proc, but we need to mark that an init_proc
3171          --  would be needed if this restriction was not active (so that we can
3172          --  detect attempts to call it), so set a dummy init_proc in place.
3173
3174          if Restriction_Active (No_Default_Initialization) then
3175             Set_Init_Proc (Rec_Type, Proc_Id);
3176             return;
3177          end if;
3178
3179          Build_Offset_To_Top_Functions;
3180          Build_Init_Procedure;
3181          Set_Is_Public (Proc_Id, Is_Public (Pe));
3182
3183          --  The initialization of protected records is not worth inlining.
3184          --  In addition, when compiled for another unit for inlining purposes,
3185          --  it may make reference to entities that have not been elaborated
3186          --  yet. The initialization of controlled records contains a nested
3187          --  clean-up procedure that makes it impractical to inline as well,
3188          --  and leads to undefined symbols if inlined in a different unit.
3189          --  Similar considerations apply to task types.
3190
3191          if not Is_Concurrent_Type (Rec_Type)
3192            and then not Has_Task (Rec_Type)
3193            and then not Needs_Finalization (Rec_Type)
3194          then
3195             Set_Is_Inlined  (Proc_Id);
3196          end if;
3197
3198          Set_Is_Internal    (Proc_Id);
3199          Set_Has_Completion (Proc_Id);
3200
3201          if not Debug_Generated_Code then
3202             Set_Debug_Info_Off (Proc_Id);
3203          end if;
3204
3205          declare
3206             Agg : constant Node_Id :=
3207                     Build_Equivalent_Record_Aggregate (Rec_Type);
3208
3209             procedure Collect_Itypes (Comp : Node_Id);
3210             --  Generate references to itypes in the aggregate, because
3211             --  the first use of the aggregate may be in a nested scope.
3212
3213             --------------------
3214             -- Collect_Itypes --
3215             --------------------
3216
3217             procedure Collect_Itypes (Comp : Node_Id) is
3218                Ref      : Node_Id;
3219                Sub_Aggr : Node_Id;
3220                Typ      : constant Entity_Id := Etype (Comp);
3221
3222             begin
3223                if Is_Array_Type (Typ)
3224                  and then Is_Itype (Typ)
3225                then
3226                   Ref := Make_Itype_Reference (Loc);
3227                   Set_Itype (Ref, Typ);
3228                   Append_Freeze_Action (Rec_Type, Ref);
3229
3230                   Ref := Make_Itype_Reference (Loc);
3231                   Set_Itype (Ref, Etype (First_Index (Typ)));
3232                   Append_Freeze_Action (Rec_Type, Ref);
3233
3234                   Sub_Aggr := First (Expressions (Comp));
3235
3236                   --  Recurse on nested arrays
3237
3238                   while Present (Sub_Aggr) loop
3239                      Collect_Itypes (Sub_Aggr);
3240                      Next (Sub_Aggr);
3241                   end loop;
3242                end if;
3243             end Collect_Itypes;
3244
3245          begin
3246             --  If there is a static initialization aggregate for the type,
3247             --  generate itype references for the types of its (sub)components,
3248             --  to prevent out-of-scope errors in the resulting tree.
3249             --  The aggregate may have been rewritten as a Raise node, in which
3250             --  case there are no relevant itypes.
3251
3252             if Present (Agg)
3253               and then Nkind (Agg) = N_Aggregate
3254             then
3255                Set_Static_Initialization (Proc_Id, Agg);
3256
3257                declare
3258                   Comp  : Node_Id;
3259                begin
3260                   Comp := First (Component_Associations (Agg));
3261                   while Present (Comp) loop
3262                      Collect_Itypes (Expression (Comp));
3263                      Next (Comp);
3264                   end loop;
3265                end;
3266             end if;
3267          end;
3268       end if;
3269    end Build_Record_Init_Proc;
3270
3271    ----------------------------
3272    -- Build_Slice_Assignment --
3273    ----------------------------
3274
3275    --  Generates the following subprogram:
3276
3277    --    procedure Assign
3278    --     (Source,  Target    : Array_Type,
3279    --      Left_Lo, Left_Hi   : Index;
3280    --      Right_Lo, Right_Hi : Index;
3281    --      Rev                : Boolean)
3282    --    is
3283    --       Li1 : Index;
3284    --       Ri1 : Index;
3285
3286    --    begin
3287
3288    --       if Left_Hi < Left_Lo then
3289    --          return;
3290    --       end if;
3291
3292    --       if Rev  then
3293    --          Li1 := Left_Hi;
3294    --          Ri1 := Right_Hi;
3295    --       else
3296    --          Li1 := Left_Lo;
3297    --          Ri1 := Right_Lo;
3298    --       end if;
3299
3300    --       loop
3301    --          Target (Li1) := Source (Ri1);
3302
3303    --          if Rev then
3304    --             exit when Li1 = Left_Lo;
3305    --             Li1 := Index'pred (Li1);
3306    --             Ri1 := Index'pred (Ri1);
3307    --          else
3308    --             exit when Li1 = Left_Hi;
3309    --             Li1 := Index'succ (Li1);
3310    --             Ri1 := Index'succ (Ri1);
3311    --          end if;
3312    --       end loop;
3313    --    end Assign;
3314
3315    procedure Build_Slice_Assignment (Typ : Entity_Id) is
3316       Loc   : constant Source_Ptr := Sloc (Typ);
3317       Index : constant Entity_Id  := Base_Type (Etype (First_Index (Typ)));
3318
3319       --  Build formal parameters of procedure
3320
3321       Larray   : constant Entity_Id :=
3322                    Make_Defining_Identifier
3323                      (Loc, Chars => New_Internal_Name ('A'));
3324       Rarray   : constant Entity_Id :=
3325                    Make_Defining_Identifier
3326                      (Loc, Chars => New_Internal_Name ('R'));
3327       Left_Lo  : constant Entity_Id :=
3328                    Make_Defining_Identifier
3329                      (Loc, Chars => New_Internal_Name ('L'));
3330       Left_Hi  : constant Entity_Id :=
3331                    Make_Defining_Identifier
3332                      (Loc, Chars => New_Internal_Name ('L'));
3333       Right_Lo : constant Entity_Id :=
3334                    Make_Defining_Identifier
3335                      (Loc, Chars => New_Internal_Name ('R'));
3336       Right_Hi : constant Entity_Id :=
3337                    Make_Defining_Identifier
3338                      (Loc, Chars => New_Internal_Name ('R'));
3339       Rev      : constant Entity_Id :=
3340                    Make_Defining_Identifier
3341                      (Loc, Chars => New_Internal_Name ('D'));
3342       Proc_Name : constant Entity_Id :=
3343                     Make_Defining_Identifier (Loc,
3344                       Chars => Make_TSS_Name (Typ, TSS_Slice_Assign));
3345
3346       Lnn : constant Entity_Id :=
3347               Make_Defining_Identifier (Loc, New_Internal_Name ('L'));
3348       Rnn : constant Entity_Id :=
3349               Make_Defining_Identifier (Loc, New_Internal_Name ('R'));
3350       --  Subscripts for left and right sides
3351
3352       Decls : List_Id;
3353       Loops : Node_Id;
3354       Stats : List_Id;
3355
3356    begin
3357       --  Build declarations for indices
3358
3359       Decls := New_List;
3360
3361       Append_To (Decls,
3362          Make_Object_Declaration (Loc,
3363            Defining_Identifier => Lnn,
3364            Object_Definition  =>
3365              New_Occurrence_Of (Index, Loc)));
3366
3367       Append_To (Decls,
3368         Make_Object_Declaration (Loc,
3369           Defining_Identifier => Rnn,
3370           Object_Definition  =>
3371             New_Occurrence_Of (Index, Loc)));
3372
3373       Stats := New_List;
3374
3375       --  Build test for empty slice case
3376
3377       Append_To (Stats,
3378         Make_If_Statement (Loc,
3379           Condition =>
3380              Make_Op_Lt (Loc,
3381                Left_Opnd  => New_Occurrence_Of (Left_Hi, Loc),
3382                Right_Opnd => New_Occurrence_Of (Left_Lo, Loc)),
3383           Then_Statements => New_List (Make_Simple_Return_Statement (Loc))));
3384
3385       --  Build initializations for indices
3386
3387       declare
3388          F_Init : constant List_Id := New_List;
3389          B_Init : constant List_Id := New_List;
3390
3391       begin
3392          Append_To (F_Init,
3393            Make_Assignment_Statement (Loc,
3394              Name => New_Occurrence_Of (Lnn, Loc),
3395              Expression => New_Occurrence_Of (Left_Lo, Loc)));
3396
3397          Append_To (F_Init,
3398            Make_Assignment_Statement (Loc,
3399              Name => New_Occurrence_Of (Rnn, Loc),
3400              Expression => New_Occurrence_Of (Right_Lo, Loc)));
3401
3402          Append_To (B_Init,
3403            Make_Assignment_Statement (Loc,
3404              Name => New_Occurrence_Of (Lnn, Loc),
3405              Expression => New_Occurrence_Of (Left_Hi, Loc)));
3406
3407          Append_To (B_Init,
3408            Make_Assignment_Statement (Loc,
3409              Name => New_Occurrence_Of (Rnn, Loc),
3410              Expression => New_Occurrence_Of (Right_Hi, Loc)));
3411
3412          Append_To (Stats,
3413            Make_If_Statement (Loc,
3414              Condition => New_Occurrence_Of (Rev, Loc),
3415              Then_Statements => B_Init,
3416              Else_Statements => F_Init));
3417       end;
3418
3419       --  Now construct the assignment statement
3420
3421       Loops :=
3422         Make_Loop_Statement (Loc,
3423           Statements => New_List (
3424             Make_Assignment_Statement (Loc,
3425               Name =>
3426                 Make_Indexed_Component (Loc,
3427                   Prefix => New_Occurrence_Of (Larray, Loc),
3428                   Expressions => New_List (New_Occurrence_Of (Lnn, Loc))),
3429               Expression =>
3430                 Make_Indexed_Component (Loc,
3431                   Prefix => New_Occurrence_Of (Rarray, Loc),
3432                   Expressions => New_List (New_Occurrence_Of (Rnn, Loc))))),
3433           End_Label  => Empty);
3434
3435       --  Build the exit condition and increment/decrement statements
3436
3437       declare
3438          F_Ass : constant List_Id := New_List;
3439          B_Ass : constant List_Id := New_List;
3440
3441       begin
3442          Append_To (F_Ass,
3443            Make_Exit_Statement (Loc,
3444              Condition =>
3445                Make_Op_Eq (Loc,
3446                  Left_Opnd  => New_Occurrence_Of (Lnn, Loc),
3447                  Right_Opnd => New_Occurrence_Of (Left_Hi, Loc))));
3448
3449          Append_To (F_Ass,
3450            Make_Assignment_Statement (Loc,
3451              Name => New_Occurrence_Of (Lnn, Loc),
3452              Expression =>
3453                Make_Attribute_Reference (Loc,
3454                  Prefix =>
3455                    New_Occurrence_Of (Index, Loc),
3456                  Attribute_Name => Name_Succ,
3457                  Expressions => New_List (
3458                    New_Occurrence_Of (Lnn, Loc)))));
3459
3460          Append_To (F_Ass,
3461            Make_Assignment_Statement (Loc,
3462              Name => New_Occurrence_Of (Rnn, Loc),
3463              Expression =>
3464                Make_Attribute_Reference (Loc,
3465                  Prefix =>
3466                    New_Occurrence_Of (Index, Loc),
3467                  Attribute_Name => Name_Succ,
3468                  Expressions => New_List (
3469                    New_Occurrence_Of (Rnn, Loc)))));
3470
3471          Append_To (B_Ass,
3472            Make_Exit_Statement (Loc,
3473              Condition =>
3474                Make_Op_Eq (Loc,
3475                  Left_Opnd  => New_Occurrence_Of (Lnn, Loc),
3476                  Right_Opnd => New_Occurrence_Of (Left_Lo, Loc))));
3477
3478          Append_To (B_Ass,
3479            Make_Assignment_Statement (Loc,
3480              Name => New_Occurrence_Of (Lnn, Loc),
3481              Expression =>
3482                Make_Attribute_Reference (Loc,
3483                  Prefix =>
3484                    New_Occurrence_Of (Index, Loc),
3485                  Attribute_Name => Name_Pred,
3486                    Expressions => New_List (
3487                      New_Occurrence_Of (Lnn, Loc)))));
3488
3489          Append_To (B_Ass,
3490            Make_Assignment_Statement (Loc,
3491              Name => New_Occurrence_Of (Rnn, Loc),
3492              Expression =>
3493                Make_Attribute_Reference (Loc,
3494                  Prefix =>
3495                    New_Occurrence_Of (Index, Loc),
3496                  Attribute_Name => Name_Pred,
3497                  Expressions => New_List (
3498                    New_Occurrence_Of (Rnn, Loc)))));
3499
3500          Append_To (Statements (Loops),
3501            Make_If_Statement (Loc,
3502              Condition => New_Occurrence_Of (Rev, Loc),
3503              Then_Statements => B_Ass,
3504              Else_Statements => F_Ass));
3505       end;
3506
3507       Append_To (Stats, Loops);
3508
3509       declare
3510          Spec    : Node_Id;
3511          Formals : List_Id := New_List;
3512
3513       begin
3514          Formals := New_List (
3515            Make_Parameter_Specification (Loc,
3516              Defining_Identifier => Larray,
3517              Out_Present => True,
3518              Parameter_Type =>
3519                New_Reference_To (Base_Type (Typ), Loc)),
3520
3521            Make_Parameter_Specification (Loc,
3522              Defining_Identifier => Rarray,
3523              Parameter_Type =>
3524                New_Reference_To (Base_Type (Typ), Loc)),
3525
3526            Make_Parameter_Specification (Loc,
3527              Defining_Identifier => Left_Lo,
3528              Parameter_Type =>
3529                New_Reference_To (Index, Loc)),
3530
3531            Make_Parameter_Specification (Loc,
3532              Defining_Identifier => Left_Hi,
3533              Parameter_Type =>
3534                New_Reference_To (Index, Loc)),
3535
3536            Make_Parameter_Specification (Loc,
3537              Defining_Identifier => Right_Lo,
3538              Parameter_Type =>
3539                New_Reference_To (Index, Loc)),
3540
3541            Make_Parameter_Specification (Loc,
3542              Defining_Identifier => Right_Hi,
3543              Parameter_Type =>
3544                New_Reference_To (Index, Loc)));
3545
3546          Append_To (Formals,
3547            Make_Parameter_Specification (Loc,
3548              Defining_Identifier => Rev,
3549              Parameter_Type =>
3550                New_Reference_To (Standard_Boolean, Loc)));
3551
3552          Spec :=
3553            Make_Procedure_Specification (Loc,
3554              Defining_Unit_Name       => Proc_Name,
3555              Parameter_Specifications => Formals);
3556
3557          Discard_Node (
3558            Make_Subprogram_Body (Loc,
3559              Specification              => Spec,
3560              Declarations               => Decls,
3561              Handled_Statement_Sequence =>
3562                Make_Handled_Sequence_Of_Statements (Loc,
3563                  Statements => Stats)));
3564       end;
3565
3566       Set_TSS (Typ, Proc_Name);
3567       Set_Is_Pure (Proc_Name);
3568    end Build_Slice_Assignment;
3569
3570    ------------------------------------
3571    -- Build_Variant_Record_Equality --
3572    ------------------------------------
3573
3574    --  Generates:
3575
3576    --    function _Equality (X, Y : T) return Boolean is
3577    --    begin
3578    --       --  Compare discriminants
3579
3580    --       if False or else X.D1 /= Y.D1 or else X.D2 /= Y.D2 then
3581    --          return False;
3582    --       end if;
3583
3584    --       --  Compare components
3585
3586    --       if False or else X.C1 /= Y.C1 or else X.C2 /= Y.C2 then
3587    --          return False;
3588    --       end if;
3589
3590    --       --  Compare variant part
3591
3592    --       case X.D1 is
3593    --          when V1 =>
3594    --             if False or else X.C2 /= Y.C2 or else X.C3 /= Y.C3 then
3595    --                return False;
3596    --             end if;
3597    --          ...
3598    --          when Vn =>
3599    --             if False or else X.Cn /= Y.Cn then
3600    --                return False;
3601    --             end if;
3602    --       end case;
3603
3604    --       return True;
3605    --    end _Equality;
3606
3607    procedure Build_Variant_Record_Equality (Typ : Entity_Id) is
3608       Loc : constant Source_Ptr := Sloc (Typ);
3609
3610       F : constant Entity_Id :=
3611             Make_Defining_Identifier (Loc,
3612               Chars => Make_TSS_Name (Typ, TSS_Composite_Equality));
3613
3614       X : constant Entity_Id :=
3615            Make_Defining_Identifier (Loc,
3616              Chars => Name_X);
3617
3618       Y : constant Entity_Id :=
3619             Make_Defining_Identifier (Loc,
3620               Chars => Name_Y);
3621
3622       Def    : constant Node_Id := Parent (Typ);
3623       Comps  : constant Node_Id := Component_List (Type_Definition (Def));
3624       Stmts  : constant List_Id := New_List;
3625       Pspecs : constant List_Id := New_List;
3626
3627    begin
3628       --  Derived Unchecked_Union types no longer inherit the equality function
3629       --  of their parent.
3630
3631       if Is_Derived_Type (Typ)
3632         and then not Is_Unchecked_Union (Typ)
3633         and then not Has_New_Non_Standard_Rep (Typ)
3634       then
3635          declare
3636             Parent_Eq : constant Entity_Id :=
3637                           TSS (Root_Type (Typ), TSS_Composite_Equality);
3638
3639          begin
3640             if Present (Parent_Eq) then
3641                Copy_TSS (Parent_Eq, Typ);
3642                return;
3643             end if;
3644          end;
3645       end if;
3646
3647       Discard_Node (
3648         Make_Subprogram_Body (Loc,
3649           Specification =>
3650             Make_Function_Specification (Loc,
3651               Defining_Unit_Name       => F,
3652               Parameter_Specifications => Pspecs,
3653               Result_Definition => New_Reference_To (Standard_Boolean, Loc)),
3654           Declarations               => New_List,
3655           Handled_Statement_Sequence =>
3656             Make_Handled_Sequence_Of_Statements (Loc,
3657               Statements => Stmts)));
3658
3659       Append_To (Pspecs,
3660         Make_Parameter_Specification (Loc,
3661           Defining_Identifier => X,
3662           Parameter_Type      => New_Reference_To (Typ, Loc)));
3663
3664       Append_To (Pspecs,
3665         Make_Parameter_Specification (Loc,
3666           Defining_Identifier => Y,
3667           Parameter_Type      => New_Reference_To (Typ, Loc)));
3668
3669       --  Unchecked_Unions require additional machinery to support equality.
3670       --  Two extra parameters (A and B) are added to the equality function
3671       --  parameter list in order to capture the inferred values of the
3672       --  discriminants in later calls.
3673
3674       if Is_Unchecked_Union (Typ) then
3675          declare
3676             Discr_Type : constant Node_Id := Etype (First_Discriminant (Typ));
3677
3678             A : constant Node_Id :=
3679                   Make_Defining_Identifier (Loc,
3680                     Chars => Name_A);
3681
3682             B : constant Node_Id :=
3683                   Make_Defining_Identifier (Loc,
3684                     Chars => Name_B);
3685
3686          begin
3687             --  Add A and B to the parameter list
3688
3689             Append_To (Pspecs,
3690               Make_Parameter_Specification (Loc,
3691                 Defining_Identifier => A,
3692                 Parameter_Type => New_Reference_To (Discr_Type, Loc)));
3693
3694             Append_To (Pspecs,
3695               Make_Parameter_Specification (Loc,
3696                 Defining_Identifier => B,
3697                 Parameter_Type => New_Reference_To (Discr_Type, Loc)));
3698
3699             --  Generate the following header code to compare the inferred
3700             --  discriminants:
3701
3702             --  if a /= b then
3703             --     return False;
3704             --  end if;
3705
3706             Append_To (Stmts,
3707               Make_If_Statement (Loc,
3708                 Condition =>
3709                   Make_Op_Ne (Loc,
3710                     Left_Opnd => New_Reference_To (A, Loc),
3711                     Right_Opnd => New_Reference_To (B, Loc)),
3712                 Then_Statements => New_List (
3713                   Make_Simple_Return_Statement (Loc,
3714                     Expression => New_Occurrence_Of (Standard_False, Loc)))));
3715
3716             --  Generate component-by-component comparison. Note that we must
3717             --  propagate one of the inferred discriminant formals to act as
3718             --  the case statement switch.
3719
3720             Append_List_To (Stmts,
3721               Make_Eq_Case (Typ, Comps, A));
3722
3723          end;
3724
3725       --  Normal case (not unchecked union)
3726
3727       else
3728          Append_To (Stmts,
3729            Make_Eq_If (Typ,
3730              Discriminant_Specifications (Def)));
3731
3732          Append_List_To (Stmts,
3733            Make_Eq_Case (Typ, Comps));
3734       end if;
3735
3736       Append_To (Stmts,
3737         Make_Simple_Return_Statement (Loc,
3738           Expression => New_Reference_To (Standard_True, Loc)));
3739
3740       Set_TSS (Typ, F);
3741       Set_Is_Pure (F);
3742
3743       if not Debug_Generated_Code then
3744          Set_Debug_Info_Off (F);
3745       end if;
3746    end Build_Variant_Record_Equality;
3747
3748    -----------------------------
3749    -- Check_Stream_Attributes --
3750    -----------------------------
3751
3752    procedure Check_Stream_Attributes (Typ : Entity_Id) is
3753       Comp      : Entity_Id;
3754       Par_Read  : constant Boolean :=
3755                     Stream_Attribute_Available (Typ, TSS_Stream_Read)
3756                       and then not Has_Specified_Stream_Read (Typ);
3757       Par_Write : constant Boolean :=
3758                     Stream_Attribute_Available (Typ, TSS_Stream_Write)
3759                       and then not Has_Specified_Stream_Write (Typ);
3760
3761       procedure Check_Attr (Nam : Name_Id; TSS_Nam : TSS_Name_Type);
3762       --  Check that Comp has a user-specified Nam stream attribute
3763
3764       ----------------
3765       -- Check_Attr --
3766       ----------------
3767
3768       procedure Check_Attr (Nam : Name_Id; TSS_Nam : TSS_Name_Type) is
3769       begin
3770          if not Stream_Attribute_Available (Etype (Comp), TSS_Nam) then
3771             Error_Msg_Name_1 := Nam;
3772             Error_Msg_N
3773               ("|component& in limited extension must have% attribute", Comp);
3774          end if;
3775       end Check_Attr;
3776
3777    --  Start of processing for Check_Stream_Attributes
3778
3779    begin
3780       if Par_Read or else Par_Write then
3781          Comp := First_Component (Typ);
3782          while Present (Comp) loop
3783             if Comes_From_Source (Comp)
3784               and then Original_Record_Component (Comp) = Comp
3785               and then Is_Limited_Type (Etype (Comp))
3786             then
3787                if Par_Read then
3788                   Check_Attr (Name_Read, TSS_Stream_Read);
3789                end if;
3790
3791                if Par_Write then
3792                   Check_Attr (Name_Write, TSS_Stream_Write);
3793                end if;
3794             end if;
3795
3796             Next_Component (Comp);
3797          end loop;
3798       end if;
3799    end Check_Stream_Attributes;
3800
3801    -----------------------------
3802    -- Expand_Record_Extension --
3803    -----------------------------
3804
3805    --  Add a field _parent at the beginning of the record extension. This is
3806    --  used to implement inheritance. Here are some examples of expansion:
3807
3808    --  1. no discriminants
3809    --      type T2 is new T1 with null record;
3810    --   gives
3811    --      type T2 is new T1 with record
3812    --        _Parent : T1;
3813    --      end record;
3814
3815    --  2. renamed discriminants
3816    --    type T2 (B, C : Int) is new T1 (A => B) with record
3817    --       _Parent : T1 (A => B);
3818    --       D : Int;
3819    --    end;
3820
3821    --  3. inherited discriminants
3822    --    type T2 is new T1 with record -- discriminant A inherited
3823    --       _Parent : T1 (A);
3824    --       D : Int;
3825    --    end;
3826
3827    procedure Expand_Record_Extension (T : Entity_Id; Def : Node_Id) is
3828       Indic        : constant Node_Id    := Subtype_Indication (Def);
3829       Loc          : constant Source_Ptr := Sloc (Def);
3830       Rec_Ext_Part : Node_Id             := Record_Extension_Part (Def);
3831       Par_Subtype  : Entity_Id;
3832       Comp_List    : Node_Id;
3833       Comp_Decl    : Node_Id;
3834       Parent_N     : Node_Id;
3835       D            : Entity_Id;
3836       List_Constr  : constant List_Id    := New_List;
3837
3838    begin
3839       --  Expand_Record_Extension is called directly from the semantics, so
3840       --  we must check to see whether expansion is active before proceeding
3841
3842       if not Expander_Active then
3843          return;
3844       end if;
3845
3846       --  This may be a derivation of an untagged private type whose full
3847       --  view is tagged, in which case the Derived_Type_Definition has no
3848       --  extension part. Build an empty one now.
3849
3850       if No (Rec_Ext_Part) then
3851          Rec_Ext_Part :=
3852            Make_Record_Definition (Loc,
3853              End_Label      => Empty,
3854              Component_List => Empty,
3855              Null_Present   => True);
3856
3857          Set_Record_Extension_Part (Def, Rec_Ext_Part);
3858          Mark_Rewrite_Insertion (Rec_Ext_Part);
3859       end if;
3860
3861       Comp_List := Component_List (Rec_Ext_Part);
3862
3863       Parent_N := Make_Defining_Identifier (Loc, Name_uParent);
3864
3865       --  If the derived type inherits its discriminants the type of the
3866       --  _parent field must be constrained by the inherited discriminants
3867
3868       if Has_Discriminants (T)
3869         and then Nkind (Indic) /= N_Subtype_Indication
3870         and then not Is_Constrained (Entity (Indic))
3871       then
3872          D := First_Discriminant (T);
3873          while Present (D) loop
3874             Append_To (List_Constr, New_Occurrence_Of (D, Loc));
3875             Next_Discriminant (D);
3876          end loop;
3877
3878          Par_Subtype :=
3879            Process_Subtype (
3880              Make_Subtype_Indication (Loc,
3881                Subtype_Mark => New_Reference_To (Entity (Indic), Loc),
3882                Constraint   =>
3883                  Make_Index_Or_Discriminant_Constraint (Loc,
3884                    Constraints => List_Constr)),
3885              Def);
3886
3887       --  Otherwise the original subtype_indication is just what is needed
3888
3889       else
3890          Par_Subtype := Process_Subtype (New_Copy_Tree (Indic), Def);
3891       end if;
3892
3893       Set_Parent_Subtype (T, Par_Subtype);
3894
3895       Comp_Decl :=
3896         Make_Component_Declaration (Loc,
3897           Defining_Identifier => Parent_N,
3898           Component_Definition =>
3899             Make_Component_Definition (Loc,
3900               Aliased_Present => False,
3901               Subtype_Indication => New_Reference_To (Par_Subtype, Loc)));
3902
3903       if Null_Present (Rec_Ext_Part) then
3904          Set_Component_List (Rec_Ext_Part,
3905            Make_Component_List (Loc,
3906              Component_Items => New_List (Comp_Decl),
3907              Variant_Part => Empty,
3908              Null_Present => False));
3909          Set_Null_Present (Rec_Ext_Part, False);
3910
3911       elsif Null_Present (Comp_List)
3912         or else Is_Empty_List (Component_Items (Comp_List))
3913       then
3914          Set_Component_Items (Comp_List, New_List (Comp_Decl));
3915          Set_Null_Present (Comp_List, False);
3916
3917       else
3918          Insert_Before (First (Component_Items (Comp_List)), Comp_Decl);
3919       end if;
3920
3921       Analyze (Comp_Decl);
3922    end Expand_Record_Extension;
3923
3924    ------------------------------------
3925    -- Expand_N_Full_Type_Declaration --
3926    ------------------------------------
3927
3928    procedure Expand_N_Full_Type_Declaration (N : Node_Id) is
3929       Def_Id : constant Entity_Id := Defining_Identifier (N);
3930       B_Id   : constant Entity_Id := Base_Type (Def_Id);
3931       Par_Id : Entity_Id;
3932       FN     : Node_Id;
3933
3934       procedure Build_Master (Def_Id : Entity_Id);
3935       --  Create the master associated with Def_Id
3936
3937       ------------------
3938       -- Build_Master --
3939       ------------------
3940
3941       procedure Build_Master (Def_Id : Entity_Id) is
3942       begin
3943          --  Anonymous access types are created for the components of the
3944          --  record parameter for an entry declaration. No master is created
3945          --  for such a type.
3946
3947          if Has_Task (Designated_Type (Def_Id))
3948            and then Comes_From_Source (N)
3949          then
3950             Build_Master_Entity (Def_Id);
3951             Build_Master_Renaming (Parent (Def_Id), Def_Id);
3952
3953          --  Create a class-wide master because a Master_Id must be generated
3954          --  for access-to-limited-class-wide types whose root may be extended
3955          --  with task components.
3956
3957          --  Note: This code covers access-to-limited-interfaces because they
3958          --        can be used to reference tasks implementing them.
3959
3960          elsif Is_Class_Wide_Type (Designated_Type (Def_Id))
3961            and then Is_Limited_Type (Designated_Type (Def_Id))
3962            and then Tasking_Allowed
3963
3964             --  Do not create a class-wide master for types whose convention is
3965             --  Java since these types cannot embed Ada tasks anyway. Note that
3966             --  the following test cannot catch the following case:
3967
3968             --      package java.lang.Object is
3969             --         type Typ is tagged limited private;
3970             --         type Ref is access all Typ'Class;
3971             --      private
3972             --         type Typ is tagged limited ...;
3973             --         pragma Convention (Typ, Java)
3974             --      end;
3975
3976             --  Because the convention appears after we have done the
3977             --  processing for type Ref.
3978
3979            and then Convention (Designated_Type (Def_Id)) /= Convention_Java
3980            and then Convention (Designated_Type (Def_Id)) /= Convention_CIL
3981          then
3982             Build_Class_Wide_Master (Def_Id);
3983          end if;
3984       end Build_Master;
3985
3986    --  Start of processing for Expand_N_Full_Type_Declaration
3987
3988    begin
3989       if Is_Access_Type (Def_Id) then
3990          Build_Master (Def_Id);
3991
3992          if Ekind (Def_Id) = E_Access_Protected_Subprogram_Type then
3993             Expand_Access_Protected_Subprogram_Type (N);
3994          end if;
3995
3996       elsif Ada_Version >= Ada_05
3997         and then Is_Array_Type (Def_Id)
3998         and then Is_Access_Type (Component_Type (Def_Id))
3999         and then Ekind (Component_Type (Def_Id)) = E_Anonymous_Access_Type
4000       then
4001          Build_Master (Component_Type (Def_Id));
4002
4003       elsif Has_Task (Def_Id) then
4004          Expand_Previous_Access_Type (Def_Id);
4005
4006       elsif Ada_Version >= Ada_05
4007         and then
4008          (Is_Record_Type (Def_Id)
4009            or else (Is_Array_Type (Def_Id)
4010                       and then Is_Record_Type (Component_Type (Def_Id))))
4011       then
4012          declare
4013             Comp : Entity_Id;
4014             Typ  : Entity_Id;
4015             M_Id : Entity_Id;
4016
4017          begin
4018             --  Look for the first anonymous access type component
4019
4020             if Is_Array_Type (Def_Id) then
4021                Comp := First_Entity (Component_Type (Def_Id));
4022             else
4023                Comp := First_Entity (Def_Id);
4024             end if;
4025
4026             while Present (Comp) loop
4027                Typ := Etype (Comp);
4028
4029                exit when Is_Access_Type (Typ)
4030                  and then Ekind (Typ) = E_Anonymous_Access_Type;
4031
4032                Next_Entity (Comp);
4033             end loop;
4034
4035             --  If found we add a renaming declaration of master_id and we
4036             --  associate it to each anonymous access type component. Do
4037             --  nothing if the access type already has a master. This will be
4038             --  the case if the array type is the packed array created for a
4039             --  user-defined array type T, where the master_id is created when
4040             --  expanding the declaration for T.
4041
4042             if Present (Comp)
4043               and then Ekind (Typ) = E_Anonymous_Access_Type
4044               and then not Restriction_Active (No_Task_Hierarchy)
4045               and then No (Master_Id (Typ))
4046
4047                --  Do not consider run-times with no tasking support
4048
4049               and then RTE_Available (RE_Current_Master)
4050               and then Has_Task (Non_Limited_Designated_Type (Typ))
4051             then
4052                Build_Master_Entity (Def_Id);
4053                M_Id := Build_Master_Renaming (N, Def_Id);
4054
4055                if Is_Array_Type (Def_Id) then
4056                   Comp := First_Entity (Component_Type (Def_Id));
4057                else
4058                   Comp := First_Entity (Def_Id);
4059                end if;
4060
4061                while Present (Comp) loop
4062                   Typ := Etype (Comp);
4063
4064                   if Is_Access_Type (Typ)
4065                     and then Ekind (Typ) = E_Anonymous_Access_Type
4066                   then
4067                      Set_Master_Id (Typ, M_Id);
4068                   end if;
4069
4070                   Next_Entity (Comp);
4071                end loop;
4072             end if;
4073          end;
4074       end if;
4075
4076       Par_Id := Etype (B_Id);
4077
4078       --  The parent type is private then we need to inherit any TSS operations
4079       --  from the full view.
4080
4081       if Ekind (Par_Id) in Private_Kind
4082         and then Present (Full_View (Par_Id))
4083       then
4084          Par_Id := Base_Type (Full_View (Par_Id));
4085       end if;
4086
4087       if Nkind (Type_Definition (Original_Node (N))) =
4088                                                 N_Derived_Type_Definition
4089         and then not Is_Tagged_Type (Def_Id)
4090         and then Present (Freeze_Node (Par_Id))
4091         and then Present (TSS_Elist (Freeze_Node (Par_Id)))
4092       then
4093          Ensure_Freeze_Node (B_Id);
4094          FN := Freeze_Node (B_Id);
4095
4096          if No (TSS_Elist (FN)) then
4097             Set_TSS_Elist (FN, New_Elmt_List);
4098          end if;
4099
4100          declare
4101             T_E  : constant Elist_Id := TSS_Elist (FN);
4102             Elmt : Elmt_Id;
4103
4104          begin
4105             Elmt := First_Elmt (TSS_Elist (Freeze_Node (Par_Id)));
4106             while Present (Elmt) loop
4107                if Chars (Node (Elmt)) /= Name_uInit then
4108                   Append_Elmt (Node (Elmt), T_E);
4109                end if;
4110
4111                Next_Elmt (Elmt);
4112             end loop;
4113
4114             --  If the derived type itself is private with a full view, then
4115             --  associate the full view with the inherited TSS_Elist as well.
4116
4117             if Ekind (B_Id) in Private_Kind
4118               and then Present (Full_View (B_Id))
4119             then
4120                Ensure_Freeze_Node (Base_Type (Full_View (B_Id)));
4121                Set_TSS_Elist
4122                  (Freeze_Node (Base_Type (Full_View (B_Id))), TSS_Elist (FN));
4123             end if;
4124          end;
4125       end if;
4126    end Expand_N_Full_Type_Declaration;
4127
4128    ---------------------------------
4129    -- Expand_N_Object_Declaration --
4130    ---------------------------------
4131
4132    --  First we do special processing for objects of a tagged type where this
4133    --  is the point at which the type is frozen. The creation of the dispatch
4134    --  table and the initialization procedure have to be deferred to this
4135    --  point, since we reference previously declared primitive subprograms.
4136
4137    --  For all types, we call an initialization procedure if there is one
4138
4139    procedure Expand_N_Object_Declaration (N : Node_Id) is
4140       Def_Id   : constant Entity_Id  := Defining_Identifier (N);
4141       Expr     : constant Node_Id    := Expression (N);
4142       Loc      : constant Source_Ptr := Sloc (N);
4143       Typ      : constant Entity_Id  := Etype (Def_Id);
4144       Base_Typ : constant Entity_Id  := Base_Type (Typ);
4145       Expr_Q   : Node_Id;
4146       Id_Ref   : Node_Id;
4147       New_Ref  : Node_Id;
4148
4149       Init_After : Node_Id := N;
4150       --  Node after which the init proc call is to be inserted. This is
4151       --  normally N, except for the case of a shared passive variable, in
4152       --  which case the init proc call must be inserted only after the bodies
4153       --  of the shared variable procedures have been seen.
4154
4155    begin
4156       --  Don't do anything for deferred constants. All proper actions will
4157       --  be expanded during the full declaration.
4158
4159       if No (Expr) and Constant_Present (N) then
4160          return;
4161       end if;
4162
4163       --  Force construction of dispatch tables of library level tagged types
4164
4165       if VM_Target = No_VM
4166         and then Static_Dispatch_Tables
4167         and then Is_Library_Level_Entity (Def_Id)
4168         and then Is_Library_Level_Tagged_Type (Base_Typ)
4169         and then (Ekind (Base_Typ) = E_Record_Type
4170                     or else Ekind (Base_Typ) = E_Protected_Type
4171                     or else Ekind (Base_Typ) = E_Task_Type)
4172         and then not Has_Dispatch_Table (Base_Typ)
4173       then
4174          declare
4175             New_Nodes : List_Id := No_List;
4176
4177          begin
4178             if Is_Concurrent_Type (Base_Typ) then
4179                New_Nodes := Make_DT (Corresponding_Record_Type (Base_Typ), N);
4180             else
4181                New_Nodes := Make_DT (Base_Typ, N);
4182             end if;
4183
4184             if not Is_Empty_List (New_Nodes) then
4185                Insert_List_Before (N, New_Nodes);
4186             end if;
4187          end;
4188       end if;
4189
4190       --  Make shared memory routines for shared passive variable
4191
4192       if Is_Shared_Passive (Def_Id) then
4193          Init_After := Make_Shared_Var_Procs (N);
4194       end if;
4195
4196       --  If tasks being declared, make sure we have an activation chain
4197       --  defined for the tasks (has no effect if we already have one), and
4198       --  also that a Master variable is established and that the appropriate
4199       --  enclosing construct is established as a task master.
4200
4201       if Has_Task (Typ) then
4202          Build_Activation_Chain_Entity (N);
4203          Build_Master_Entity (Def_Id);
4204       end if;
4205
4206       --  Build a list controller for declarations where the type is anonymous
4207       --  access and the designated type is controlled. Only declarations from
4208       --  source files receive such controllers in order to provide the same
4209       --  lifespan for any potential coextensions that may be associated with
4210       --  the object. Finalization lists of internal controlled anonymous
4211       --  access objects are already handled in Expand_N_Allocator.
4212
4213       if Comes_From_Source (N)
4214         and then Ekind (Typ) = E_Anonymous_Access_Type
4215         and then Is_Controlled (Directly_Designated_Type (Typ))
4216         and then No (Associated_Final_Chain (Typ))
4217       then
4218          Build_Final_List (N, Typ);
4219       end if;
4220
4221       --  Default initialization required, and no expression present
4222
4223       if No (Expr) then
4224
4225          --  Expand Initialize call for controlled objects. One may wonder why
4226          --  the Initialize Call is not done in the regular Init procedure
4227          --  attached to the record type. That's because the init procedure is
4228          --  recursively called on each component, including _Parent, thus the
4229          --  Init call for a controlled object would generate not only one
4230          --  Initialize call as it is required but one for each ancestor of
4231          --  its type. This processing is suppressed if No_Initialization set.
4232
4233          if not Needs_Finalization (Typ)
4234            or else No_Initialization (N)
4235          then
4236             null;
4237
4238          elsif not Abort_Allowed
4239            or else not Comes_From_Source (N)
4240          then
4241             Insert_Actions_After (Init_After,
4242               Make_Init_Call (
4243                 Ref         => New_Occurrence_Of (Def_Id, Loc),
4244                 Typ         => Base_Type (Typ),
4245                 Flist_Ref   => Find_Final_List (Def_Id),
4246                 With_Attach => Make_Integer_Literal (Loc, 1)));
4247
4248          --  Abort allowed
4249
4250          else
4251             --  We need to protect the initialize call
4252
4253             --  begin
4254             --     Defer_Abort.all;
4255             --     Initialize (...);
4256             --  at end
4257             --     Undefer_Abort.all;
4258             --  end;
4259
4260             --  ??? this won't protect the initialize call for controlled
4261             --  components which are part of the init proc, so this block
4262             --  should probably also contain the call to _init_proc but this
4263             --  requires some code reorganization...
4264
4265             declare
4266                L   : constant List_Id :=
4267                        Make_Init_Call
4268                          (Ref         => New_Occurrence_Of (Def_Id, Loc),
4269                           Typ         => Base_Type (Typ),
4270                           Flist_Ref   => Find_Final_List (Def_Id),
4271                           With_Attach => Make_Integer_Literal (Loc, 1));
4272
4273                Blk : constant Node_Id :=
4274                        Make_Block_Statement (Loc,
4275                          Handled_Statement_Sequence =>
4276                            Make_Handled_Sequence_Of_Statements (Loc, L));
4277
4278             begin
4279                Prepend_To (L, Build_Runtime_Call (Loc, RE_Abort_Defer));
4280                Set_At_End_Proc (Handled_Statement_Sequence (Blk),
4281                  New_Occurrence_Of (RTE (RE_Abort_Undefer_Direct), Loc));
4282                Insert_Actions_After (Init_After, New_List (Blk));
4283                Expand_At_End_Handler
4284                  (Handled_Statement_Sequence (Blk), Entity (Identifier (Blk)));
4285             end;
4286          end if;
4287
4288          --  Call type initialization procedure if there is one. We build the
4289          --  call and put it immediately after the object declaration, so that
4290          --  it will be expanded in the usual manner. Note that this will
4291          --  result in proper handling of defaulted discriminants.
4292
4293          --  Need call if there is a base init proc
4294
4295          if Has_Non_Null_Base_Init_Proc (Typ)
4296
4297             --  Suppress call if No_Initialization set on declaration
4298
4299             and then not No_Initialization (N)
4300
4301             --  Suppress call for special case of value type for VM
4302
4303             and then not Is_Value_Type (Typ)
4304
4305             --  Suppress call if Suppress_Init_Proc set on the type. This is
4306             --  needed for the derived type case, where Suppress_Initialization
4307             --  may be set for the derived type, even if there is an init proc
4308             --  defined for the root type.
4309
4310             and then not Suppress_Init_Proc (Typ)
4311          then
4312             --  Return without initializing when No_Default_Initialization
4313             --  applies. Note that the actual restriction check occurs later,
4314             --  when the object is frozen, because we don't know yet whether
4315             --  the object is imported, which is a case where the check does
4316             --  not apply.
4317
4318             if Restriction_Active (No_Default_Initialization) then
4319                return;
4320             end if;
4321
4322             --  The call to the initialization procedure does NOT freeze the
4323             --  object being initialized. This is because the call is not a
4324             --  source level call. This works fine, because the only possible
4325             --  statements depending on freeze status that can appear after the
4326             --  _Init call are rep clauses which can safely appear after actual
4327             --  references to the object.
4328
4329             Id_Ref := New_Reference_To (Def_Id, Loc);
4330             Set_Must_Not_Freeze (Id_Ref);
4331             Set_Assignment_OK (Id_Ref);
4332
4333             declare
4334                Init_Expr : constant Node_Id :=
4335                              Static_Initialization (Base_Init_Proc (Typ));
4336             begin
4337                if Present (Init_Expr) then
4338                   Set_Expression
4339                     (N, New_Copy_Tree (Init_Expr, New_Scope => Current_Scope));
4340                   return;
4341                else
4342                   Initialization_Warning (Id_Ref);
4343
4344                   Insert_Actions_After (Init_After,
4345                     Build_Initialization_Call (Loc, Id_Ref, Typ));
4346                end if;
4347             end;
4348
4349          --  If simple initialization is required, then set an appropriate
4350          --  simple initialization expression in place. This special
4351          --  initialization is required even though No_Init_Flag is present,
4352          --  but is not needed if there was an explicit initialization.
4353
4354          --  An internally generated temporary needs no initialization because
4355          --  it will be assigned subsequently. In particular, there is no point
4356          --  in applying Initialize_Scalars to such a temporary.
4357
4358          elsif Needs_Simple_Initialization (Typ)
4359            and then not Is_Internal (Def_Id)
4360            and then not Has_Init_Expression (N)
4361          then
4362             Set_No_Initialization (N, False);
4363             Set_Expression (N, Get_Simple_Init_Val (Typ, N, Esize (Def_Id)));
4364             Analyze_And_Resolve (Expression (N), Typ);
4365          end if;
4366
4367          --  Generate attribute for Persistent_BSS if needed
4368
4369          if Persistent_BSS_Mode
4370            and then Comes_From_Source (N)
4371            and then Is_Potentially_Persistent_Type (Typ)
4372            and then not Has_Init_Expression (N)
4373            and then Is_Library_Level_Entity (Def_Id)
4374          then
4375             declare
4376                Prag : Node_Id;
4377             begin
4378                Prag :=
4379                  Make_Linker_Section_Pragma
4380                    (Def_Id, Sloc (N), ".persistent.bss");
4381                Insert_After (N, Prag);
4382                Analyze (Prag);
4383             end;
4384          end if;
4385
4386          --  If access type, then we know it is null if not initialized
4387
4388          if Is_Access_Type (Typ) then
4389             Set_Is_Known_Null (Def_Id);
4390          end if;
4391
4392       --  Explicit initialization present
4393
4394       else
4395          --  Obtain actual expression from qualified expression
4396
4397          if Nkind (Expr) = N_Qualified_Expression then
4398             Expr_Q := Expression (Expr);
4399          else
4400             Expr_Q := Expr;
4401          end if;
4402
4403          --  When we have the appropriate type of aggregate in the expression
4404          --  (it has been determined during analysis of the aggregate by
4405          --  setting the delay flag), let's perform in place assignment and
4406          --  thus avoid creating a temporary.
4407
4408          if Is_Delayed_Aggregate (Expr_Q) then
4409             Convert_Aggr_In_Object_Decl (N);
4410
4411          --  Ada 2005 (AI-318-02): If the initialization expression is a call
4412          --  to a build-in-place function, then access to the declared object
4413          --  must be passed to the function. Currently we limit such functions
4414          --  to those with constrained limited result subtypes, but eventually
4415          --  plan to expand the allowed forms of functions that are treated as
4416          --  build-in-place.
4417
4418          elsif Ada_Version >= Ada_05
4419            and then Is_Build_In_Place_Function_Call (Expr_Q)
4420          then
4421             Make_Build_In_Place_Call_In_Object_Declaration (N, Expr_Q);
4422
4423             --  The previous call expands the expression initializing the
4424             --  built-in-place object into further code that will be analyzed
4425             --  later. No further expansion needed here.
4426
4427             return;
4428
4429          else
4430             --  In most cases, we must check that the initial value meets any
4431             --  constraint imposed by the declared type. However, there is one
4432             --  very important exception to this rule. If the entity has an
4433             --  unconstrained nominal subtype, then it acquired its constraints
4434             --  from the expression in the first place, and not only does this
4435             --  mean that the constraint check is not needed, but an attempt to
4436             --  perform the constraint check can cause order of elaboration
4437             --  problems.
4438
4439             if not Is_Constr_Subt_For_U_Nominal (Typ) then
4440
4441                --  If this is an allocator for an aggregate that has been
4442                --  allocated in place, delay checks until assignments are
4443                --  made, because the discriminants are not initialized.
4444
4445                if Nkind (Expr) = N_Allocator
4446                  and then No_Initialization (Expr)
4447                then
4448                   null;
4449                else
4450                   Apply_Constraint_Check (Expr, Typ);
4451                end if;
4452             end if;
4453
4454             --  Ada 2005 (AI-251): Rewrite the expression that initializes a
4455             --  class-wide object to ensure that we copy the full object,
4456             --  unless we are targetting a VM where interfaces are handled by
4457             --  VM itself. Note that if the root type of Typ is an ancestor
4458             --  of Expr's type, both types share the same dispatch table and
4459             --  there is no need to displace the pointer.
4460
4461             --  Replace
4462             --     CW : I'Class := Obj;
4463             --  by
4464             --     Temp : I'Class := I'Class (Base_Address (Obj'Address));
4465             --     CW   : I'Class renames Displace (Temp, I'Tag);
4466
4467             if Is_Interface (Typ)
4468               and then Is_Class_Wide_Type (Typ)
4469               and then
4470                 (Is_Class_Wide_Type (Etype (Expr))
4471                    or else
4472                      not Is_Ancestor (Root_Type (Typ), Etype (Expr)))
4473               and then Comes_From_Source (Def_Id)
4474               and then VM_Target = No_VM
4475             then
4476                declare
4477                   Decl_1 : Node_Id;
4478                   Decl_2 : Node_Id;
4479
4480                begin
4481                   Decl_1 :=
4482                     Make_Object_Declaration (Loc,
4483                       Defining_Identifier =>
4484                         Make_Defining_Identifier (Loc,
4485                           New_Internal_Name ('D')),
4486
4487                       Object_Definition =>
4488                         Make_Attribute_Reference (Loc,
4489                           Prefix =>
4490                             New_Occurrence_Of
4491                               (Root_Type (Etype (Def_Id)), Loc),
4492                           Attribute_Name => Name_Class),
4493
4494                       Expression =>
4495                         Unchecked_Convert_To
4496                           (Class_Wide_Type (Root_Type (Etype (Def_Id))),
4497                             Make_Explicit_Dereference (Loc,
4498                               Unchecked_Convert_To (RTE (RE_Tag_Ptr),
4499                                 Make_Function_Call (Loc,
4500                                   Name =>
4501                                     New_Reference_To (RTE (RE_Base_Address),
4502                                                       Loc),
4503                                   Parameter_Associations => New_List (
4504                                     Make_Attribute_Reference (Loc,
4505                                       Prefix         => Relocate_Node (Expr),
4506                                       Attribute_Name => Name_Address)))))));
4507
4508                   Insert_Action (N, Decl_1);
4509
4510                   Decl_2 :=
4511                     Make_Object_Renaming_Declaration (Loc,
4512                       Defining_Identifier =>
4513                         Make_Defining_Identifier (Loc,
4514                           New_Internal_Name ('D')),
4515
4516                       Subtype_Mark =>
4517                         Make_Attribute_Reference (Loc,
4518                           Prefix =>
4519                             New_Occurrence_Of
4520                               (Root_Type (Etype (Def_Id)), Loc),
4521                           Attribute_Name => Name_Class),
4522
4523                       Name =>
4524                         Unchecked_Convert_To (
4525                           Class_Wide_Type (Root_Type (Etype (Def_Id))),
4526                           Make_Explicit_Dereference (Loc,
4527                             Unchecked_Convert_To (RTE (RE_Tag_Ptr),
4528                               Make_Function_Call (Loc,
4529                                 Name =>
4530                                   New_Reference_To (RTE (RE_Displace), Loc),
4531
4532                                 Parameter_Associations => New_List (
4533                                   Make_Attribute_Reference (Loc,
4534                                     Prefix =>
4535                                       New_Reference_To
4536                                         (Defining_Identifier (Decl_1), Loc),
4537                                     Attribute_Name => Name_Address),
4538
4539                                   Unchecked_Convert_To (RTE (RE_Tag),
4540                                     New_Reference_To
4541                                       (Node
4542                                         (First_Elmt
4543                                           (Access_Disp_Table
4544                                              (Root_Type (Typ)))),
4545                                        Loc))))))));
4546
4547                   Rewrite (N, Decl_2);
4548                   Analyze (N);
4549
4550                   --  Replace internal identifier of Decl_2 by the identifier
4551                   --  found in the sources. We also have to exchange entities
4552                   --  containing their defining identifiers to ensure the
4553                   --  correct replacement of the object declaration by this
4554                   --  object renaming declaration (because such definings
4555                   --  identifier have been previously added by Enter_Name to
4556                   --  the current scope). We must preserve the homonym chain
4557                   --  of the source entity as well.
4558
4559                   Set_Chars (Defining_Identifier (N), Chars (Def_Id));
4560                   Set_Homonym (Defining_Identifier (N), Homonym (Def_Id));
4561                   Exchange_Entities (Defining_Identifier (N), Def_Id);
4562
4563                   return;
4564                end;
4565             end if;
4566
4567             --  If the type is controlled and not inherently limited, then
4568             --  the target is adjusted after the copy and attached to the
4569             --  finalization list. However, no adjustment is done in the case
4570             --  where the object was initialized by a call to a function whose
4571             --  result is built in place, since no copy occurred. (Eventually
4572             --  we plan to support in-place function results for some cases
4573             --  of nonlimited types. ???)
4574
4575             if Needs_Finalization (Typ)
4576               and then not Is_Inherently_Limited_Type (Typ)
4577             then
4578                Insert_Actions_After (Init_After,
4579                  Make_Adjust_Call (
4580                    Ref          => New_Reference_To (Def_Id, Loc),
4581                    Typ          => Base_Type (Typ),
4582                    Flist_Ref    => Find_Final_List (Def_Id),
4583                    With_Attach  => Make_Integer_Literal (Loc, 1)));
4584             end if;
4585
4586             --  For tagged types, when an init value is given, the tag has to
4587             --  be re-initialized separately in order to avoid the propagation
4588             --  of a wrong tag coming from a view conversion unless the type
4589             --  is class wide (in this case the tag comes from the init value).
4590             --  Suppress the tag assignment when VM_Target because VM tags are
4591             --  represented implicitly in objects. Ditto for types that are
4592             --  CPP_CLASS, and for initializations that are aggregates, because
4593             --  they have to have the right tag.
4594
4595             if Is_Tagged_Type (Typ)
4596               and then not Is_Class_Wide_Type (Typ)
4597               and then not Is_CPP_Class (Typ)
4598               and then VM_Target = No_VM
4599               and then Nkind (Expr) /= N_Aggregate
4600             then
4601                --  The re-assignment of the tag has to be done even if the
4602                --  object is a constant.
4603
4604                New_Ref :=
4605                  Make_Selected_Component (Loc,
4606                     Prefix => New_Reference_To (Def_Id, Loc),
4607                     Selector_Name =>
4608                       New_Reference_To (First_Tag_Component (Typ), Loc));
4609
4610                Set_Assignment_OK (New_Ref);
4611
4612                Insert_After (Init_After,
4613                  Make_Assignment_Statement (Loc,
4614                    Name => New_Ref,
4615                    Expression =>
4616                      Unchecked_Convert_To (RTE (RE_Tag),
4617                        New_Reference_To
4618                          (Node
4619                            (First_Elmt
4620                              (Access_Disp_Table (Base_Type (Typ)))),
4621                           Loc))));
4622
4623             --  For discrete types, set the Is_Known_Valid flag if the
4624             --  initializing value is known to be valid.
4625
4626             elsif Is_Discrete_Type (Typ) and then Expr_Known_Valid (Expr) then
4627                Set_Is_Known_Valid (Def_Id);
4628
4629             elsif Is_Access_Type (Typ) then
4630
4631                --  For access types set the Is_Known_Non_Null flag if the
4632                --  initializing value is known to be non-null. We can also set
4633                --  Can_Never_Be_Null if this is a constant.
4634
4635                if Known_Non_Null (Expr) then
4636                   Set_Is_Known_Non_Null (Def_Id, True);
4637
4638                   if Constant_Present (N) then
4639                      Set_Can_Never_Be_Null (Def_Id);
4640                   end if;
4641                end if;
4642             end if;
4643
4644             --  If validity checking on copies, validate initial expression.
4645             --  But skip this if declaration is for a generic type, since it
4646             --  makes no sense to validate generic types. Not clear if this
4647             --  can happen for legal programs, but it definitely can arise
4648             --  from previous instantiation errors.
4649
4650             if Validity_Checks_On
4651               and then Validity_Check_Copies
4652               and then not Is_Generic_Type (Etype (Def_Id))
4653             then
4654                Ensure_Valid (Expr);
4655                Set_Is_Known_Valid (Def_Id);
4656             end if;
4657          end if;
4658
4659          --  Cases where the back end cannot handle the initialization directly
4660          --  In such cases, we expand an assignment that will be appropriately
4661          --  handled by Expand_N_Assignment_Statement.
4662
4663          --  The exclusion of the unconstrained case is wrong, but for now it
4664          --  is too much trouble ???
4665
4666          if (Is_Possibly_Unaligned_Slice (Expr)
4667                or else (Is_Possibly_Unaligned_Object (Expr)
4668                           and then not Represented_As_Scalar (Etype (Expr))))
4669
4670             --  The exclusion of the unconstrained case is wrong, but for now
4671             --  it is too much trouble ???
4672
4673            and then not (Is_Array_Type (Etype (Expr))
4674                            and then not Is_Constrained (Etype (Expr)))
4675          then
4676             declare
4677                Stat : constant Node_Id :=
4678                        Make_Assignment_Statement (Loc,
4679                          Name       => New_Reference_To (Def_Id, Loc),
4680                          Expression => Relocate_Node (Expr));
4681             begin
4682                Set_Expression (N, Empty);
4683                Set_No_Initialization (N);
4684                Set_Assignment_OK (Name (Stat));
4685                Set_No_Ctrl_Actions (Stat);
4686                Insert_After_And_Analyze (Init_After, Stat);
4687             end;
4688          end if;
4689       end if;
4690
4691    exception
4692       when RE_Not_Available =>
4693          return;
4694    end Expand_N_Object_Declaration;
4695
4696    ---------------------------------
4697    -- Expand_N_Subtype_Indication --
4698    ---------------------------------
4699
4700    --  Add a check on the range of the subtype. The static case is partially
4701    --  duplicated by Process_Range_Expr_In_Decl in Sem_Ch3, but we still need
4702    --  to check here for the static case in order to avoid generating
4703    --  extraneous expanded code. Also deal with validity checking.
4704
4705    procedure Expand_N_Subtype_Indication (N : Node_Id) is
4706       Ran : constant Node_Id   := Range_Expression (Constraint (N));
4707       Typ : constant Entity_Id := Entity (Subtype_Mark (N));
4708
4709    begin
4710       if Nkind (Constraint (N)) = N_Range_Constraint then
4711          Validity_Check_Range (Range_Expression (Constraint (N)));
4712       end if;
4713
4714       if Nkind_In (Parent (N), N_Constrained_Array_Definition, N_Slice) then
4715          Apply_Range_Check (Ran, Typ);
4716       end if;
4717    end Expand_N_Subtype_Indication;
4718
4719    ---------------------------
4720    -- Expand_N_Variant_Part --
4721    ---------------------------
4722
4723    --  If the last variant does not contain the Others choice, replace it with
4724    --  an N_Others_Choice node since Gigi always wants an Others. Note that we
4725    --  do not bother to call Analyze on the modified variant part, since it's
4726    --  only effect would be to compute the Others_Discrete_Choices node
4727    --  laboriously, and of course we already know the list of choices that
4728    --  corresponds to the others choice (it's the list we are replacing!)
4729
4730    procedure Expand_N_Variant_Part (N : Node_Id) is
4731       Last_Var    : constant Node_Id := Last_Non_Pragma (Variants (N));
4732       Others_Node : Node_Id;
4733    begin
4734       if Nkind (First (Discrete_Choices (Last_Var))) /= N_Others_Choice then
4735          Others_Node := Make_Others_Choice (Sloc (Last_Var));
4736          Set_Others_Discrete_Choices
4737            (Others_Node, Discrete_Choices (Last_Var));
4738          Set_Discrete_Choices (Last_Var, New_List (Others_Node));
4739       end if;
4740    end Expand_N_Variant_Part;
4741
4742    ---------------------------------
4743    -- Expand_Previous_Access_Type --
4744    ---------------------------------
4745
4746    procedure Expand_Previous_Access_Type (Def_Id : Entity_Id) is
4747       T : Entity_Id := First_Entity (Current_Scope);
4748
4749    begin
4750       --  Find all access types declared in the current scope, whose
4751       --  designated type is Def_Id. If it does not have a Master_Id,
4752       --  create one now.
4753
4754       while Present (T) loop
4755          if Is_Access_Type (T)
4756            and then Designated_Type (T) = Def_Id
4757            and then No (Master_Id (T))
4758          then
4759             Build_Master_Entity (Def_Id);
4760             Build_Master_Renaming (Parent (Def_Id), T);
4761          end if;
4762
4763          Next_Entity (T);
4764       end loop;
4765    end Expand_Previous_Access_Type;
4766
4767    ------------------------------
4768    -- Expand_Record_Controller --
4769    ------------------------------
4770
4771    procedure Expand_Record_Controller (T : Entity_Id) is
4772       Def             : Node_Id := Type_Definition (Parent (T));
4773       Comp_List       : Node_Id;
4774       Comp_Decl       : Node_Id;
4775       Loc             : Source_Ptr;
4776       First_Comp      : Node_Id;
4777       Controller_Type : Entity_Id;
4778       Ent             : Entity_Id;
4779
4780    begin
4781       if Nkind (Def) = N_Derived_Type_Definition then
4782          Def := Record_Extension_Part (Def);
4783       end if;
4784
4785       if Null_Present (Def) then
4786          Set_Component_List (Def,
4787            Make_Component_List (Sloc (Def),
4788              Component_Items => Empty_List,
4789              Variant_Part => Empty,
4790              Null_Present => True));
4791       end if;
4792
4793       Comp_List := Component_List (Def);
4794
4795       if Null_Present (Comp_List)
4796         or else Is_Empty_List (Component_Items (Comp_List))
4797       then
4798          Loc := Sloc (Comp_List);
4799       else
4800          Loc := Sloc (First (Component_Items (Comp_List)));
4801       end if;
4802
4803       if Is_Inherently_Limited_Type (T) then
4804          Controller_Type := RTE (RE_Limited_Record_Controller);
4805       else
4806          Controller_Type := RTE (RE_Record_Controller);
4807       end if;
4808
4809       Ent := Make_Defining_Identifier (Loc, Name_uController);
4810
4811       Comp_Decl :=
4812         Make_Component_Declaration (Loc,
4813           Defining_Identifier =>  Ent,
4814           Component_Definition =>
4815             Make_Component_Definition (Loc,
4816               Aliased_Present => False,
4817               Subtype_Indication => New_Reference_To (Controller_Type, Loc)));
4818
4819       if Null_Present (Comp_List)
4820         or else Is_Empty_List (Component_Items (Comp_List))
4821       then
4822          Set_Component_Items (Comp_List, New_List (Comp_Decl));
4823          Set_Null_Present (Comp_List, False);
4824
4825       else
4826          --  The controller cannot be placed before the _Parent field since
4827          --  gigi lays out field in order and _parent must be first to preserve
4828          --  the polymorphism of tagged types.
4829
4830          First_Comp := First (Component_Items (Comp_List));
4831
4832          if not Is_Tagged_Type (T) then
4833             Insert_Before (First_Comp, Comp_Decl);
4834
4835          --  if T is a tagged type, place controller declaration after parent
4836          --  field and after eventual tags of interface types.
4837
4838          else
4839             while Present (First_Comp)
4840               and then
4841                 (Chars (Defining_Identifier (First_Comp)) = Name_uParent
4842                    or else Is_Tag (Defining_Identifier (First_Comp))
4843
4844                --  Ada 2005 (AI-251): The following condition covers secondary
4845                --  tags but also the adjacent component containing the offset
4846                --  to the base of the object (component generated if the parent
4847                --  has discriminants --- see Add_Interface_Tag_Components).
4848                --  This is required to avoid the addition of the controller
4849                --  between the secondary tag and its adjacent component.
4850
4851                    or else Present
4852                              (Related_Type
4853                                (Defining_Identifier (First_Comp))))
4854             loop
4855                Next (First_Comp);
4856             end loop;
4857
4858             --  An empty tagged extension might consist only of the parent
4859             --  component. Otherwise insert the controller before the first
4860             --  component that is neither parent nor tag.
4861
4862             if Present (First_Comp) then
4863                Insert_Before (First_Comp, Comp_Decl);
4864             else
4865                Append (Comp_Decl, Component_Items (Comp_List));
4866             end if;
4867          end if;
4868       end if;
4869
4870       Push_Scope (T);
4871       Analyze (Comp_Decl);
4872       Set_Ekind (Ent, E_Component);
4873       Init_Component_Location (Ent);
4874
4875       --  Move the _controller entity ahead in the list of internal entities
4876       --  of the enclosing record so that it is selected instead of a
4877       --  potentially inherited one.
4878
4879       declare
4880          E    : constant Entity_Id := Last_Entity (T);
4881          Comp : Entity_Id;
4882
4883       begin
4884          pragma Assert (Chars (E) = Name_uController);
4885
4886          Set_Next_Entity (E, First_Entity (T));
4887          Set_First_Entity (T, E);
4888
4889          Comp := Next_Entity (E);
4890          while Next_Entity (Comp) /= E loop
4891             Next_Entity (Comp);
4892          end loop;
4893
4894          Set_Next_Entity (Comp, Empty);
4895          Set_Last_Entity (T, Comp);
4896       end;
4897
4898       End_Scope;
4899
4900    exception
4901       when RE_Not_Available =>
4902          return;
4903    end Expand_Record_Controller;
4904
4905    ------------------------
4906    -- Expand_Tagged_Root --
4907    ------------------------
4908
4909    procedure Expand_Tagged_Root (T : Entity_Id) is
4910       Def       : constant Node_Id := Type_Definition (Parent (T));
4911       Comp_List : Node_Id;
4912       Comp_Decl : Node_Id;
4913       Sloc_N    : Source_Ptr;
4914
4915    begin
4916       if Null_Present (Def) then
4917          Set_Component_List (Def,
4918            Make_Component_List (Sloc (Def),
4919              Component_Items => Empty_List,
4920              Variant_Part => Empty,
4921              Null_Present => True));
4922       end if;
4923
4924       Comp_List := Component_List (Def);
4925
4926       if Null_Present (Comp_List)
4927         or else Is_Empty_List (Component_Items (Comp_List))
4928       then
4929          Sloc_N := Sloc (Comp_List);
4930       else
4931          Sloc_N := Sloc (First (Component_Items (Comp_List)));
4932       end if;
4933
4934       Comp_Decl :=
4935         Make_Component_Declaration (Sloc_N,
4936           Defining_Identifier => First_Tag_Component (T),
4937           Component_Definition =>
4938             Make_Component_Definition (Sloc_N,
4939               Aliased_Present => False,
4940               Subtype_Indication => New_Reference_To (RTE (RE_Tag), Sloc_N)));
4941
4942       if Null_Present (Comp_List)
4943         or else Is_Empty_List (Component_Items (Comp_List))
4944       then
4945          Set_Component_Items (Comp_List, New_List (Comp_Decl));
4946          Set_Null_Present (Comp_List, False);
4947
4948       else
4949          Insert_Before (First (Component_Items (Comp_List)), Comp_Decl);
4950       end if;
4951
4952       --  We don't Analyze the whole expansion because the tag component has
4953       --  already been analyzed previously. Here we just insure that the tree
4954       --  is coherent with the semantic decoration
4955
4956       Find_Type (Subtype_Indication (Component_Definition (Comp_Decl)));
4957
4958    exception
4959       when RE_Not_Available =>
4960          return;
4961    end Expand_Tagged_Root;
4962
4963    ----------------------
4964    -- Clean_Task_Names --
4965    ----------------------
4966
4967    procedure Clean_Task_Names
4968      (Typ     : Entity_Id;
4969       Proc_Id : Entity_Id)
4970    is
4971    begin
4972       if Has_Task (Typ)
4973         and then not Restriction_Active (No_Implicit_Heap_Allocations)
4974         and then not Global_Discard_Names
4975         and then VM_Target = No_VM
4976       then
4977          Set_Uses_Sec_Stack (Proc_Id);
4978       end if;
4979    end Clean_Task_Names;
4980
4981    -----------------------
4982    -- Freeze_Array_Type --
4983    -----------------------
4984
4985    procedure Freeze_Array_Type (N : Node_Id) is
4986       Typ      : constant Entity_Id  := Entity (N);
4987       Comp_Typ : constant Entity_Id := Component_Type (Typ);
4988       Base     : constant Entity_Id  := Base_Type (Typ);
4989
4990    begin
4991       if not Is_Bit_Packed_Array (Typ) then
4992
4993          --  If the component contains tasks, so does the array type. This may
4994          --  not be indicated in the array type because the component may have
4995          --  been a private type at the point of definition. Same if component
4996          --  type is controlled.
4997
4998          Set_Has_Task (Base, Has_Task (Comp_Typ));
4999          Set_Has_Controlled_Component (Base,
5000            Has_Controlled_Component (Comp_Typ)
5001              or else Is_Controlled (Comp_Typ));
5002
5003          if No (Init_Proc (Base)) then
5004
5005             --  If this is an anonymous array created for a declaration with
5006             --  an initial value, its init_proc will never be called. The
5007             --  initial value itself may have been expanded into assignments,
5008             --  in which case the object declaration is carries the
5009             --  No_Initialization flag.
5010
5011             if Is_Itype (Base)
5012               and then Nkind (Associated_Node_For_Itype (Base)) =
5013                                                     N_Object_Declaration
5014               and then (Present (Expression (Associated_Node_For_Itype (Base)))
5015                           or else
5016                         No_Initialization (Associated_Node_For_Itype (Base)))
5017             then
5018                null;
5019
5020             --  We do not need an init proc for string or wide [wide] string,
5021             --  since the only time these need initialization in normalize or
5022             --  initialize scalars mode, and these types are treated specially
5023             --  and do not need initialization procedures.
5024
5025             elsif Root_Type (Base) = Standard_String
5026               or else Root_Type (Base) = Standard_Wide_String
5027               or else Root_Type (Base) = Standard_Wide_Wide_String
5028             then
5029                null;
5030
5031             --  Otherwise we have to build an init proc for the subtype
5032
5033             else
5034                Build_Array_Init_Proc (Base, N);
5035             end if;
5036          end if;
5037
5038          if Typ = Base then
5039             if Has_Controlled_Component (Base) then
5040                Build_Controlling_Procs (Base);
5041
5042                if not Is_Limited_Type (Comp_Typ)
5043                  and then Number_Dimensions (Typ) = 1
5044                then
5045                   Build_Slice_Assignment (Typ);
5046                end if;
5047
5048             elsif Ekind (Comp_Typ) = E_Anonymous_Access_Type
5049               and then Needs_Finalization (Directly_Designated_Type (Comp_Typ))
5050             then
5051                Set_Associated_Final_Chain (Comp_Typ, Add_Final_Chain (Typ));
5052             end if;
5053          end if;
5054
5055       --  For packed case, default initialization, except if the component type
5056       --  is itself a packed structure with an initialization procedure, or
5057       --  initialize/normalize scalars active, and we have a base type, or the
5058       --  type is public, because in that case a client might specify
5059       --  Normalize_Scalars and there better be a public Init_Proc for it.
5060
5061       elsif (Present (Init_Proc (Component_Type (Base)))
5062                and then No (Base_Init_Proc (Base)))
5063         or else (Init_Or_Norm_Scalars and then Base = Typ)
5064         or else Is_Public (Typ)
5065       then
5066          Build_Array_Init_Proc (Base, N);
5067       end if;
5068    end Freeze_Array_Type;
5069
5070    -----------------------------
5071    -- Freeze_Enumeration_Type --
5072    -----------------------------
5073
5074    procedure Freeze_Enumeration_Type (N : Node_Id) is
5075       Typ           : constant Entity_Id  := Entity (N);
5076       Loc           : constant Source_Ptr := Sloc (Typ);
5077       Ent           : Entity_Id;
5078       Lst           : List_Id;
5079       Num           : Nat;
5080       Arr           : Entity_Id;
5081       Fent          : Entity_Id;
5082       Ityp          : Entity_Id;
5083       Is_Contiguous : Boolean;
5084       Pos_Expr      : Node_Id;
5085       Last_Repval   : Uint;
5086
5087       Func : Entity_Id;
5088       pragma Warnings (Off, Func);
5089
5090    begin
5091       --  Various optimizations possible if given representation is contiguous
5092
5093       Is_Contiguous := True;
5094
5095       Ent := First_Literal (Typ);
5096       Last_Repval := Enumeration_Rep (Ent);
5097
5098       Next_Literal (Ent);
5099       while Present (Ent) loop
5100          if Enumeration_Rep (Ent) - Last_Repval /= 1 then
5101             Is_Contiguous := False;
5102             exit;
5103          else
5104             Last_Repval := Enumeration_Rep (Ent);
5105          end if;
5106
5107          Next_Literal (Ent);
5108       end loop;
5109
5110       if Is_Contiguous then
5111          Set_Has_Contiguous_Rep (Typ);
5112          Ent := First_Literal (Typ);
5113          Num := 1;
5114          Lst := New_List (New_Reference_To (Ent, Sloc (Ent)));
5115
5116       else
5117          --  Build list of literal references
5118
5119          Lst := New_List;
5120          Num := 0;
5121
5122          Ent := First_Literal (Typ);
5123          while Present (Ent) loop
5124             Append_To (Lst, New_Reference_To (Ent, Sloc (Ent)));
5125             Num := Num + 1;
5126             Next_Literal (Ent);
5127          end loop;
5128       end if;
5129
5130       --  Now build an array declaration
5131
5132       --    typA : array (Natural range 0 .. num - 1) of ctype :=
5133       --             (v, v, v, v, v, ....)
5134
5135       --  where ctype is the corresponding integer type. If the representation
5136       --  is contiguous, we only keep the first literal, which provides the
5137       --  offset for Pos_To_Rep computations.
5138
5139       Arr :=
5140         Make_Defining_Identifier (Loc,
5141           Chars => New_External_Name (Chars (Typ), 'A'));
5142
5143       Append_Freeze_Action (Typ,
5144         Make_Object_Declaration (Loc,
5145           Defining_Identifier => Arr,
5146           Constant_Present    => True,
5147
5148           Object_Definition   =>
5149             Make_Constrained_Array_Definition (Loc,
5150               Discrete_Subtype_Definitions => New_List (
5151                 Make_Subtype_Indication (Loc,
5152                   Subtype_Mark => New_Reference_To (Standard_Natural, Loc),
5153                   Constraint =>
5154                     Make_Range_Constraint (Loc,
5155                       Range_Expression =>
5156                         Make_Range (Loc,
5157                           Low_Bound  =>
5158                             Make_Integer_Literal (Loc, 0),
5159                           High_Bound =>
5160                             Make_Integer_Literal (Loc, Num - 1))))),
5161
5162               Component_Definition =>
5163                 Make_Component_Definition (Loc,
5164                   Aliased_Present => False,
5165                   Subtype_Indication => New_Reference_To (Typ, Loc))),
5166
5167           Expression =>
5168             Make_Aggregate (Loc,
5169               Expressions => Lst)));
5170
5171       Set_Enum_Pos_To_Rep (Typ, Arr);
5172
5173       --  Now we build the function that converts representation values to
5174       --  position values. This function has the form:
5175
5176       --    function _Rep_To_Pos (A : etype; F : Boolean) return Integer is
5177       --    begin
5178       --       case ityp!(A) is
5179       --         when enum-lit'Enum_Rep => return posval;
5180       --         when enum-lit'Enum_Rep => return posval;
5181       --         ...
5182       --         when others   =>
5183       --           [raise Constraint_Error when F "invalid data"]
5184       --           return -1;
5185       --       end case;
5186       --    end;
5187
5188       --  Note: the F parameter determines whether the others case (no valid
5189       --  representation) raises Constraint_Error or returns a unique value
5190       --  of minus one. The latter case is used, e.g. in 'Valid code.
5191
5192       --  Note: the reason we use Enum_Rep values in the case here is to avoid
5193       --  the code generator making inappropriate assumptions about the range
5194       --  of the values in the case where the value is invalid. ityp is a
5195       --  signed or unsigned integer type of appropriate width.
5196
5197       --  Note: if exceptions are not supported, then we suppress the raise
5198       --  and return -1 unconditionally (this is an erroneous program in any
5199       --  case and there is no obligation to raise Constraint_Error here!) We
5200       --  also do this if pragma Restrictions (No_Exceptions) is active.
5201
5202       --  Is this right??? What about No_Exception_Propagation???
5203
5204       --  Representations are signed
5205
5206       if Enumeration_Rep (First_Literal (Typ)) < 0 then
5207
5208          --  The underlying type is signed. Reset the Is_Unsigned_Type
5209          --  explicitly, because it might have been inherited from
5210          --  parent type.
5211
5212          Set_Is_Unsigned_Type (Typ, False);
5213
5214          if Esize (Typ) <= Standard_Integer_Size then
5215             Ityp := Standard_Integer;
5216          else
5217             Ityp := Universal_Integer;
5218          end if;
5219
5220       --  Representations are unsigned
5221
5222       else
5223          if Esize (Typ) <= Standard_Integer_Size then
5224             Ityp := RTE (RE_Unsigned);
5225          else
5226             Ityp := RTE (RE_Long_Long_Unsigned);
5227          end if;
5228       end if;
5229
5230       --  The body of the function is a case statement. First collect case
5231       --  alternatives, or optimize the contiguous case.
5232
5233       Lst := New_List;
5234
5235       --  If representation is contiguous, Pos is computed by subtracting
5236       --  the representation of the first literal.
5237
5238       if Is_Contiguous then
5239          Ent := First_Literal (Typ);
5240
5241          if Enumeration_Rep (Ent) = Last_Repval then
5242
5243             --  Another special case: for a single literal, Pos is zero
5244
5245             Pos_Expr := Make_Integer_Literal (Loc, Uint_0);
5246
5247          else
5248             Pos_Expr :=
5249               Convert_To (Standard_Integer,
5250                 Make_Op_Subtract (Loc,
5251                   Left_Opnd =>
5252                      Unchecked_Convert_To (Ityp,
5253                        Make_Identifier (Loc, Name_uA)),
5254                    Right_Opnd =>
5255                      Make_Integer_Literal (Loc,
5256                         Intval =>
5257                           Enumeration_Rep (First_Literal (Typ)))));
5258          end if;
5259
5260          Append_To (Lst,
5261               Make_Case_Statement_Alternative (Loc,
5262                 Discrete_Choices => New_List (
5263                   Make_Range (Sloc (Enumeration_Rep_Expr (Ent)),
5264                     Low_Bound =>
5265                       Make_Integer_Literal (Loc,
5266                        Intval =>  Enumeration_Rep (Ent)),
5267                     High_Bound =>
5268                       Make_Integer_Literal (Loc, Intval => Last_Repval))),
5269
5270                 Statements => New_List (
5271                   Make_Simple_Return_Statement (Loc,
5272                     Expression => Pos_Expr))));
5273
5274       else
5275          Ent := First_Literal (Typ);
5276          while Present (Ent) loop
5277             Append_To (Lst,
5278               Make_Case_Statement_Alternative (Loc,
5279                 Discrete_Choices => New_List (
5280                   Make_Integer_Literal (Sloc (Enumeration_Rep_Expr (Ent)),
5281                     Intval => Enumeration_Rep (Ent))),
5282
5283                 Statements => New_List (
5284                   Make_Simple_Return_Statement (Loc,
5285                     Expression =>
5286                       Make_Integer_Literal (Loc,
5287                         Intval => Enumeration_Pos (Ent))))));
5288
5289             Next_Literal (Ent);
5290          end loop;
5291       end if;
5292
5293       --  In normal mode, add the others clause with the test
5294
5295       if not No_Exception_Handlers_Set then
5296          Append_To (Lst,
5297            Make_Case_Statement_Alternative (Loc,
5298              Discrete_Choices => New_List (Make_Others_Choice (Loc)),
5299              Statements => New_List (
5300                Make_Raise_Constraint_Error (Loc,
5301                  Condition => Make_Identifier (Loc, Name_uF),
5302                  Reason    => CE_Invalid_Data),
5303                Make_Simple_Return_Statement (Loc,
5304                  Expression =>
5305                    Make_Integer_Literal (Loc, -1)))));
5306
5307       --  If either of the restrictions No_Exceptions_Handlers/Propagation is
5308       --  active then return -1 (we cannot usefully raise Constraint_Error in
5309       --  this case). See description above for further details.
5310
5311       else
5312          Append_To (Lst,
5313            Make_Case_Statement_Alternative (Loc,
5314              Discrete_Choices => New_List (Make_Others_Choice (Loc)),
5315              Statements => New_List (
5316                Make_Simple_Return_Statement (Loc,
5317                  Expression =>
5318                    Make_Integer_Literal (Loc, -1)))));
5319       end if;
5320
5321       --  Now we can build the function body
5322
5323       Fent :=
5324         Make_Defining_Identifier (Loc, Make_TSS_Name (Typ, TSS_Rep_To_Pos));
5325
5326       Func :=
5327         Make_Subprogram_Body (Loc,
5328           Specification =>
5329             Make_Function_Specification (Loc,
5330               Defining_Unit_Name       => Fent,
5331               Parameter_Specifications => New_List (
5332                 Make_Parameter_Specification (Loc,
5333                   Defining_Identifier =>
5334                     Make_Defining_Identifier (Loc, Name_uA),
5335                   Parameter_Type => New_Reference_To (Typ, Loc)),
5336                 Make_Parameter_Specification (Loc,
5337                   Defining_Identifier =>
5338                     Make_Defining_Identifier (Loc, Name_uF),
5339                   Parameter_Type => New_Reference_To (Standard_Boolean, Loc))),
5340
5341               Result_Definition => New_Reference_To (Standard_Integer, Loc)),
5342
5343             Declarations => Empty_List,
5344
5345             Handled_Statement_Sequence =>
5346               Make_Handled_Sequence_Of_Statements (Loc,
5347                 Statements => New_List (
5348                   Make_Case_Statement (Loc,
5349                     Expression =>
5350                       Unchecked_Convert_To (Ityp,
5351                         Make_Identifier (Loc, Name_uA)),
5352                     Alternatives => Lst))));
5353
5354       Set_TSS (Typ, Fent);
5355       Set_Is_Pure (Fent);
5356
5357       if not Debug_Generated_Code then
5358          Set_Debug_Info_Off (Fent);
5359       end if;
5360
5361    exception
5362       when RE_Not_Available =>
5363          return;
5364    end Freeze_Enumeration_Type;
5365
5366    ------------------------
5367    -- Freeze_Record_Type --
5368    ------------------------
5369
5370    procedure Freeze_Record_Type (N : Node_Id) is
5371
5372       procedure Add_Internal_Interface_Entities (Tagged_Type : Entity_Id);
5373       --  Add to the list of primitives of Tagged_Types the internal entities
5374       --  associated with interface primitives that are located in secondary
5375       --  dispatch tables.
5376
5377       -------------------------------------
5378       -- Add_Internal_Interface_Entities --
5379       -------------------------------------
5380
5381       procedure Add_Internal_Interface_Entities (Tagged_Type : Entity_Id) is
5382          Elmt        : Elmt_Id;
5383          Iface       : Entity_Id;
5384          Iface_Elmt  : Elmt_Id;
5385          Iface_Prim  : Entity_Id;
5386          Ifaces_List : Elist_Id;
5387          New_Subp    : Entity_Id := Empty;
5388          Prim        : Entity_Id;
5389
5390       begin
5391          pragma Assert (Ada_Version >= Ada_05
5392            and then Is_Record_Type (Tagged_Type)
5393            and then Is_Tagged_Type (Tagged_Type)
5394            and then Has_Interfaces (Tagged_Type)
5395            and then not Is_Interface (Tagged_Type));
5396
5397          Collect_Interfaces (Tagged_Type, Ifaces_List);
5398
5399          Iface_Elmt := First_Elmt (Ifaces_List);
5400          while Present (Iface_Elmt) loop
5401             Iface := Node (Iface_Elmt);
5402
5403             --  Exclude from this processing interfaces that are parents
5404             --  of Tagged_Type because their primitives are located in the
5405             --  primary dispatch table (and hence no auxiliary internal
5406             --  entities are required to handle secondary dispatch tables
5407             --  in such case).
5408
5409             if not Is_Ancestor (Iface, Tagged_Type) then
5410                Elmt := First_Elmt (Primitive_Operations (Iface));
5411                while Present (Elmt) loop
5412                   Iface_Prim := Node (Elmt);
5413
5414                   if not Is_Predefined_Dispatching_Operation (Iface_Prim) then
5415                      Prim :=
5416                        Find_Primitive_Covering_Interface
5417                          (Tagged_Type => Tagged_Type,
5418                           Iface_Prim  => Iface_Prim);
5419
5420                      pragma Assert (Present (Prim));
5421
5422                      Derive_Subprogram
5423                        (New_Subp     => New_Subp,
5424                         Parent_Subp  => Iface_Prim,
5425                         Derived_Type => Tagged_Type,
5426                         Parent_Type  => Iface);
5427
5428                      --  Ada 2005 (AI-251): Decorate internal entity Iface_Subp
5429                      --  associated with interface types. These entities are
5430                      --  only registered in the list of primitives of its
5431                      --  corresponding tagged type because they are only used
5432                      --  to fill the contents of the secondary dispatch tables.
5433                      --  Therefore they are removed from the homonym chains.
5434
5435                      Set_Is_Hidden (New_Subp);
5436                      Set_Is_Internal (New_Subp);
5437                      Set_Alias (New_Subp, Prim);
5438                      Set_Is_Abstract_Subprogram (New_Subp,
5439                        Is_Abstract_Subprogram (Prim));
5440                      Set_Interface_Alias (New_Subp, Iface_Prim);
5441
5442                      --  Internal entities associated with interface types are
5443                      --  only registered in the list of primitives of the
5444                      --  tagged type. They are only used to fill the contents
5445                      --  of the secondary dispatch tables. Therefore they are
5446                      --  not needed in the homonym chains.
5447
5448                      Remove_Homonym (New_Subp);
5449
5450                      --  Hidden entities associated with interfaces must have
5451                      --  set the Has_Delay_Freeze attribute to ensure that, in
5452                      --  case of locally defined tagged types (or compiling
5453                      --  with static dispatch tables generation disabled) the
5454                      --  corresponding entry of the secondary dispatch table is
5455                      --  filled when such entity is frozen.
5456
5457                      Set_Has_Delayed_Freeze (New_Subp);
5458                   end if;
5459
5460                   Next_Elmt (Elmt);
5461                end loop;
5462             end if;
5463
5464             Next_Elmt (Iface_Elmt);
5465          end loop;
5466       end Add_Internal_Interface_Entities;
5467
5468       --  Local variables
5469
5470       Def_Id        : constant Node_Id := Entity (N);
5471       Type_Decl     : constant Node_Id := Parent (Def_Id);
5472       Comp          : Entity_Id;
5473       Comp_Typ      : Entity_Id;
5474       Has_Static_DT : Boolean := False;
5475       Predef_List   : List_Id;
5476
5477       Flist : Entity_Id := Empty;
5478       --  Finalization list allocated for the case of a type with anonymous
5479       --  access components whose designated type is potentially controlled.
5480
5481       Renamed_Eq : Node_Id := Empty;
5482       --  Defining unit name for the predefined equality function in the case
5483       --  where the type has a primitive operation that is a renaming of
5484       --  predefined equality (but only if there is also an overriding
5485       --  user-defined equality function). Used to pass this entity from
5486       --  Make_Predefined_Primitive_Specs to Predefined_Primitive_Bodies.
5487
5488       Wrapper_Decl_List   : List_Id := No_List;
5489       Wrapper_Body_List   : List_Id := No_List;
5490       Null_Proc_Decl_List : List_Id := No_List;
5491
5492    --  Start of processing for Freeze_Record_Type
5493
5494    begin
5495       --  Build discriminant checking functions if not a derived type (for
5496       --  derived types that are not tagged types, always use the discriminant
5497       --  checking functions of the parent type). However, for untagged types
5498       --  the derivation may have taken place before the parent was frozen, so
5499       --  we copy explicitly the discriminant checking functions from the
5500       --  parent into the components of the derived type.
5501
5502       if not Is_Derived_Type (Def_Id)
5503         or else Has_New_Non_Standard_Rep (Def_Id)
5504         or else Is_Tagged_Type (Def_Id)
5505       then
5506          Build_Discr_Checking_Funcs (Type_Decl);
5507
5508       elsif Is_Derived_Type (Def_Id)
5509         and then not Is_Tagged_Type (Def_Id)
5510
5511          --  If we have a derived Unchecked_Union, we do not inherit the
5512          --  discriminant checking functions from the parent type since the
5513          --  discriminants are non existent.
5514
5515         and then not Is_Unchecked_Union (Def_Id)
5516         and then Has_Discriminants (Def_Id)
5517       then
5518          declare
5519             Old_Comp : Entity_Id;
5520
5521          begin
5522             Old_Comp :=
5523               First_Component (Base_Type (Underlying_Type (Etype (Def_Id))));
5524             Comp := First_Component (Def_Id);
5525             while Present (Comp) loop
5526                if Ekind (Comp) = E_Component
5527                  and then Chars (Comp) = Chars (Old_Comp)
5528                then
5529                   Set_Discriminant_Checking_Func (Comp,
5530                     Discriminant_Checking_Func (Old_Comp));
5531                end if;
5532
5533                Next_Component (Old_Comp);
5534                Next_Component (Comp);
5535             end loop;
5536          end;
5537       end if;
5538
5539       if Is_Derived_Type (Def_Id)
5540         and then Is_Limited_Type (Def_Id)
5541         and then Is_Tagged_Type (Def_Id)
5542       then
5543          Check_Stream_Attributes (Def_Id);
5544       end if;
5545
5546       --  Update task and controlled component flags, because some of the
5547       --  component types may have been private at the point of the record
5548       --  declaration.
5549
5550       Comp := First_Component (Def_Id);
5551
5552       while Present (Comp) loop
5553          Comp_Typ := Etype (Comp);
5554
5555          if Has_Task (Comp_Typ) then
5556             Set_Has_Task (Def_Id);
5557
5558          elsif Has_Controlled_Component (Comp_Typ)
5559            or else (Chars (Comp) /= Name_uParent
5560                      and then Is_Controlled (Comp_Typ))
5561          then
5562             Set_Has_Controlled_Component (Def_Id);
5563
5564          elsif Ekind (Comp_Typ) = E_Anonymous_Access_Type
5565            and then Needs_Finalization (Directly_Designated_Type (Comp_Typ))
5566          then
5567             if No (Flist) then
5568                Flist := Add_Final_Chain (Def_Id);
5569             end if;
5570
5571             Set_Associated_Final_Chain (Comp_Typ, Flist);
5572          end if;
5573
5574          Next_Component (Comp);
5575       end loop;
5576
5577       --  Creation of the Dispatch Table. Note that a Dispatch Table is built
5578       --  for regular tagged types as well as for Ada types deriving from a C++
5579       --  Class, but not for tagged types directly corresponding to C++ classes
5580       --  In the later case we assume that it is created in the C++ side and we
5581       --  just use it.
5582
5583       if Is_Tagged_Type (Def_Id) then
5584          Has_Static_DT :=
5585            Static_Dispatch_Tables
5586              and then Is_Library_Level_Tagged_Type (Def_Id);
5587
5588          --  Add the _Tag component
5589
5590          if Underlying_Type (Etype (Def_Id)) = Def_Id then
5591             Expand_Tagged_Root (Def_Id);
5592          end if;
5593
5594          if Is_CPP_Class (Def_Id) then
5595             Set_All_DT_Position (Def_Id);
5596             Set_Default_Constructor (Def_Id);
5597
5598             --  Create the tag entities with a minimum decoration
5599
5600             if VM_Target = No_VM then
5601                Append_Freeze_Actions (Def_Id, Make_Tags (Def_Id));
5602             end if;
5603
5604          else
5605             if not Has_Static_DT then
5606
5607                --  Usually inherited primitives are not delayed but the first
5608                --  Ada extension of a CPP_Class is an exception since the
5609                --  address of the inherited subprogram has to be inserted in
5610                --  the new Ada Dispatch Table and this is a freezing action.
5611
5612                --  Similarly, if this is an inherited operation whose parent is
5613                --  not frozen yet, it is not in the DT of the parent, and we
5614                --  generate an explicit freeze node for the inherited operation
5615                --  so that it is properly inserted in the DT of the current
5616                --  type.
5617
5618                declare
5619                   Elmt : Elmt_Id := First_Elmt (Primitive_Operations (Def_Id));
5620                   Subp : Entity_Id;
5621
5622                begin
5623                   while Present (Elmt) loop
5624                      Subp := Node (Elmt);
5625
5626                      if Present (Alias (Subp)) then
5627                         if Is_CPP_Class (Etype (Def_Id)) then
5628                            Set_Has_Delayed_Freeze (Subp);
5629
5630                         elsif Has_Delayed_Freeze (Alias (Subp))
5631                           and then not Is_Frozen (Alias (Subp))
5632                         then
5633                            Set_Is_Frozen (Subp, False);
5634                            Set_Has_Delayed_Freeze (Subp);
5635                         end if;
5636                      end if;
5637
5638                      Next_Elmt (Elmt);
5639                   end loop;
5640                end;
5641             end if;
5642
5643             --  Unfreeze momentarily the type to add the predefined primitives
5644             --  operations. The reason we unfreeze is so that these predefined
5645             --  operations will indeed end up as primitive operations (which
5646             --  must be before the freeze point).
5647
5648             Set_Is_Frozen (Def_Id, False);
5649
5650             --  Do not add the spec of predefined primitives in case of
5651             --  CPP tagged type derivations that have convention CPP.
5652
5653             if Is_CPP_Class (Root_Type (Def_Id))
5654               and then Convention (Def_Id) = Convention_CPP
5655             then
5656                null;
5657
5658             --  Do not add the spec of the predefined primitives if we are
5659             --  compiling under restriction No_Dispatching_Calls
5660
5661             elsif not Restriction_Active (No_Dispatching_Calls) then
5662                Make_Predefined_Primitive_Specs
5663                  (Def_Id, Predef_List, Renamed_Eq);
5664                Insert_List_Before_And_Analyze (N, Predef_List);
5665             end if;
5666
5667             --  Ada 2005 (AI-391): For a nonabstract null extension, create
5668             --  wrapper functions for each nonoverridden inherited function
5669             --  with a controlling result of the type. The wrapper for such
5670             --  a function returns an extension aggregate that invokes the
5671             --  the parent function.
5672
5673             if Ada_Version >= Ada_05
5674               and then not Is_Abstract_Type (Def_Id)
5675               and then Is_Null_Extension (Def_Id)
5676             then
5677                Make_Controlling_Function_Wrappers
5678                  (Def_Id, Wrapper_Decl_List, Wrapper_Body_List);
5679                Insert_List_Before_And_Analyze (N, Wrapper_Decl_List);
5680             end if;
5681
5682             --  Ada 2005 (AI-251): For a nonabstract type extension, build
5683             --  null procedure declarations for each set of homographic null
5684             --  procedures that are inherited from interface types but not
5685             --  overridden. This is done to ensure that the dispatch table
5686             --  entry associated with such null primitives are properly filled.
5687
5688             if Ada_Version >= Ada_05
5689               and then Etype (Def_Id) /= Def_Id
5690               and then not Is_Abstract_Type (Def_Id)
5691             then
5692                Make_Null_Procedure_Specs (Def_Id, Null_Proc_Decl_List);
5693                Insert_Actions (N, Null_Proc_Decl_List);
5694             end if;
5695
5696             --  Ada 2005 (AI-251): Add internal entities associated with
5697             --  secondary dispatch tables to the list of primitives of tagged
5698             --  types that are not interfaces
5699
5700             if Ada_Version >= Ada_05
5701               and then not Is_Interface (Def_Id)
5702               and then Has_Interfaces (Def_Id)
5703             then
5704                Add_Internal_Interface_Entities (Def_Id);
5705             end if;
5706
5707             Set_Is_Frozen (Def_Id);
5708             Set_All_DT_Position (Def_Id);
5709
5710             --  Add the controlled component before the freezing actions
5711             --  referenced in those actions.
5712
5713             if Has_New_Controlled_Component (Def_Id) then
5714                Expand_Record_Controller (Def_Id);
5715             end if;
5716
5717             --  Create and decorate the tags. Suppress their creation when
5718             --  VM_Target because the dispatching mechanism is handled
5719             --  internally by the VMs.
5720
5721             if VM_Target = No_VM then
5722                Append_Freeze_Actions (Def_Id, Make_Tags (Def_Id));
5723
5724                --  Generate dispatch table of locally defined tagged type.
5725                --  Dispatch tables of library level tagged types are built
5726                --  later (see Analyze_Declarations).
5727
5728                if VM_Target = No_VM
5729                  and then not Has_Static_DT
5730                then
5731                   Append_Freeze_Actions (Def_Id, Make_DT (Def_Id));
5732                end if;
5733             end if;
5734
5735             --  Make sure that the primitives Initialize, Adjust and Finalize
5736             --  are Frozen before other TSS subprograms. We don't want them
5737             --  Frozen inside.
5738
5739             if Is_Controlled (Def_Id) then
5740                if not Is_Limited_Type (Def_Id) then
5741                   Append_Freeze_Actions (Def_Id,
5742                     Freeze_Entity
5743                       (Find_Prim_Op (Def_Id, Name_Adjust), Sloc (Def_Id)));
5744                end if;
5745
5746                Append_Freeze_Actions (Def_Id,
5747                  Freeze_Entity
5748                    (Find_Prim_Op (Def_Id, Name_Initialize), Sloc (Def_Id)));
5749
5750                Append_Freeze_Actions (Def_Id,
5751                  Freeze_Entity
5752                    (Find_Prim_Op (Def_Id, Name_Finalize), Sloc (Def_Id)));
5753             end if;
5754
5755             --  Freeze rest of primitive operations. There is no need to handle
5756             --  the predefined primitives if we are compiling under restriction
5757             --  No_Dispatching_Calls
5758
5759             if not Restriction_Active (No_Dispatching_Calls) then
5760                Append_Freeze_Actions
5761                  (Def_Id, Predefined_Primitive_Freeze (Def_Id));
5762             end if;
5763          end if;
5764
5765       --  In the non-tagged case, an equality function is provided only for
5766       --  variant records (that are not unchecked unions).
5767
5768       elsif Has_Discriminants (Def_Id)
5769         and then not Is_Limited_Type (Def_Id)
5770       then
5771          declare
5772             Comps : constant Node_Id :=
5773                       Component_List (Type_Definition (Type_Decl));
5774
5775          begin
5776             if Present (Comps)
5777               and then Present (Variant_Part (Comps))
5778             then
5779                Build_Variant_Record_Equality (Def_Id);
5780             end if;
5781          end;
5782       end if;
5783
5784       --  Before building the record initialization procedure, if we are
5785       --  dealing with a concurrent record value type, then we must go through
5786       --  the discriminants, exchanging discriminals between the concurrent
5787       --  type and the concurrent record value type. See the section "Handling
5788       --  of Discriminants" in the Einfo spec for details.
5789
5790       if Is_Concurrent_Record_Type (Def_Id)
5791         and then Has_Discriminants (Def_Id)
5792       then
5793          declare
5794             Ctyp : constant Entity_Id :=
5795                      Corresponding_Concurrent_Type (Def_Id);
5796             Conc_Discr : Entity_Id;
5797             Rec_Discr  : Entity_Id;
5798             Temp       : Entity_Id;
5799
5800          begin
5801             Conc_Discr := First_Discriminant (Ctyp);
5802             Rec_Discr  := First_Discriminant (Def_Id);
5803
5804             while Present (Conc_Discr) loop
5805                Temp := Discriminal (Conc_Discr);
5806                Set_Discriminal (Conc_Discr, Discriminal (Rec_Discr));
5807                Set_Discriminal (Rec_Discr, Temp);
5808
5809                Set_Discriminal_Link (Discriminal (Conc_Discr), Conc_Discr);
5810                Set_Discriminal_Link (Discriminal (Rec_Discr),  Rec_Discr);
5811
5812                Next_Discriminant (Conc_Discr);
5813                Next_Discriminant (Rec_Discr);
5814             end loop;
5815          end;
5816       end if;
5817
5818       if Has_Controlled_Component (Def_Id) then
5819          if No (Controller_Component (Def_Id)) then
5820             Expand_Record_Controller (Def_Id);
5821          end if;
5822
5823          Build_Controlling_Procs (Def_Id);
5824       end if;
5825
5826       Adjust_Discriminants (Def_Id);
5827
5828       if VM_Target = No_VM or else not Is_Interface (Def_Id) then
5829
5830          --  Do not need init for interfaces on e.g. CIL since they're
5831          --  abstract. Helps operation of peverify (the PE Verify tool).
5832
5833          Build_Record_Init_Proc (Type_Decl, Def_Id);
5834       end if;
5835
5836       --  For tagged type that are not interfaces, build bodies of primitive
5837       --  operations. Note that we do this after building the record
5838       --  initialization procedure, since the primitive operations may need
5839       --  the initialization routine. There is no need to add predefined
5840       --  primitives of interfaces because all their predefined primitives
5841       --  are abstract.
5842
5843       if Is_Tagged_Type (Def_Id)
5844         and then not Is_Interface (Def_Id)
5845       then
5846          --  Do not add the body of predefined primitives in case of
5847          --  CPP tagged type derivations that have convention CPP.
5848
5849          if Is_CPP_Class (Root_Type (Def_Id))
5850            and then Convention (Def_Id) = Convention_CPP
5851          then
5852             null;
5853
5854          --  Do not add the body of the predefined primitives if we are
5855          --  compiling under restriction No_Dispatching_Calls or if we are
5856          --  compiling a CPP tagged type.
5857
5858          elsif not Restriction_Active (No_Dispatching_Calls) then
5859             Predef_List := Predefined_Primitive_Bodies (Def_Id, Renamed_Eq);
5860             Append_Freeze_Actions (Def_Id, Predef_List);
5861          end if;
5862
5863          --  Ada 2005 (AI-391): If any wrappers were created for nonoverridden
5864          --  inherited functions, then add their bodies to the freeze actions.
5865
5866          if Present (Wrapper_Body_List) then
5867             Append_Freeze_Actions (Def_Id, Wrapper_Body_List);
5868          end if;
5869       end if;
5870    end Freeze_Record_Type;
5871
5872    ------------------------------
5873    -- Freeze_Stream_Operations --
5874    ------------------------------
5875
5876    procedure Freeze_Stream_Operations (N : Node_Id; Typ : Entity_Id) is
5877       Names     : constant array (1 .. 4) of TSS_Name_Type :=
5878                     (TSS_Stream_Input,
5879                      TSS_Stream_Output,
5880                      TSS_Stream_Read,
5881                      TSS_Stream_Write);
5882       Stream_Op : Entity_Id;
5883
5884    begin
5885       --  Primitive operations of tagged types are frozen when the dispatch
5886       --  table is constructed.
5887
5888       if not Comes_From_Source (Typ)
5889         or else Is_Tagged_Type (Typ)
5890       then
5891          return;
5892       end if;
5893
5894       for J in Names'Range loop
5895          Stream_Op := TSS (Typ, Names (J));
5896
5897          if Present (Stream_Op)
5898            and then Is_Subprogram (Stream_Op)
5899            and then Nkind (Unit_Declaration_Node (Stream_Op)) =
5900                       N_Subprogram_Declaration
5901            and then not Is_Frozen (Stream_Op)
5902          then
5903             Append_Freeze_Actions
5904                (Typ, Freeze_Entity (Stream_Op, Sloc (N)));
5905          end if;
5906       end loop;
5907    end Freeze_Stream_Operations;
5908
5909    -----------------
5910    -- Freeze_Type --
5911    -----------------
5912
5913    --  Full type declarations are expanded at the point at which the type is
5914    --  frozen. The formal N is the Freeze_Node for the type. Any statements or
5915    --  declarations generated by the freezing (e.g. the procedure generated
5916    --  for initialization) are chained in the Actions field list of the freeze
5917    --  node using Append_Freeze_Actions.
5918
5919    function Freeze_Type (N : Node_Id) return Boolean is
5920       Def_Id    : constant Entity_Id := Entity (N);
5921       RACW_Seen : Boolean := False;
5922       Result    : Boolean := False;
5923
5924    begin
5925       --  Process associated access types needing special processing
5926
5927       if Present (Access_Types_To_Process (N)) then
5928          declare
5929             E : Elmt_Id := First_Elmt (Access_Types_To_Process (N));
5930          begin
5931             while Present (E) loop
5932
5933                if Is_Remote_Access_To_Class_Wide_Type (Node (E)) then
5934                   Validate_RACW_Primitives (Node (E));
5935                   RACW_Seen := True;
5936                end if;
5937
5938                E := Next_Elmt (E);
5939             end loop;
5940          end;
5941
5942          if RACW_Seen then
5943
5944             --  If there are RACWs designating this type, make stubs now
5945
5946             Remote_Types_Tagged_Full_View_Encountered (Def_Id);
5947          end if;
5948       end if;
5949
5950       --  Freeze processing for record types
5951
5952       if Is_Record_Type (Def_Id) then
5953          if Ekind (Def_Id) = E_Record_Type then
5954             Freeze_Record_Type (N);
5955
5956          --  The subtype may have been declared before the type was frozen. If
5957          --  the type has controlled components it is necessary to create the
5958          --  entity for the controller explicitly because it did not exist at
5959          --  the point of the subtype declaration. Only the entity is needed,
5960          --  the back-end will obtain the layout from the type. This is only
5961          --  necessary if this is constrained subtype whose component list is
5962          --  not shared with the base type.
5963
5964          elsif Ekind (Def_Id) = E_Record_Subtype
5965            and then Has_Discriminants (Def_Id)
5966            and then Last_Entity (Def_Id) /= Last_Entity (Base_Type (Def_Id))
5967            and then Present (Controller_Component (Def_Id))
5968          then
5969             declare
5970                Old_C : constant Entity_Id := Controller_Component (Def_Id);
5971                New_C : Entity_Id;
5972
5973             begin
5974                if Scope (Old_C) = Base_Type (Def_Id) then
5975
5976                   --  The entity is the one in the parent. Create new one
5977
5978                   New_C := New_Copy (Old_C);
5979                   Set_Parent (New_C, Parent (Old_C));
5980                   Push_Scope (Def_Id);
5981                   Enter_Name (New_C);
5982                   End_Scope;
5983                end if;
5984             end;
5985
5986             if Is_Itype (Def_Id)
5987               and then Is_Record_Type (Underlying_Type (Scope (Def_Id)))
5988             then
5989                --  The freeze node is only used to introduce the controller,
5990                --  the back-end has no use for it for a discriminated
5991                --  component.
5992
5993                Set_Freeze_Node (Def_Id, Empty);
5994                Set_Has_Delayed_Freeze (Def_Id, False);
5995                Result := True;
5996             end if;
5997
5998          --  Similar process if the controller of the subtype is not present
5999          --  but the parent has it. This can happen with constrained
6000          --  record components where the subtype is an itype.
6001
6002          elsif Ekind (Def_Id) = E_Record_Subtype
6003            and then Is_Itype (Def_Id)
6004            and then No (Controller_Component (Def_Id))
6005            and then Present (Controller_Component (Etype (Def_Id)))
6006          then
6007             declare
6008                Old_C : constant Entity_Id :=
6009                          Controller_Component (Etype (Def_Id));
6010                New_C : constant Entity_Id := New_Copy (Old_C);
6011
6012             begin
6013                Set_Next_Entity  (New_C, First_Entity (Def_Id));
6014                Set_First_Entity (Def_Id, New_C);
6015
6016                --  The freeze node is only used to introduce the controller,
6017                --  the back-end has no use for it for a discriminated
6018                --   component.
6019
6020                Set_Freeze_Node (Def_Id, Empty);
6021                Set_Has_Delayed_Freeze (Def_Id, False);
6022                Result := True;
6023             end;
6024          end if;
6025
6026       --  Freeze processing for array types
6027
6028       elsif Is_Array_Type (Def_Id) then
6029          Freeze_Array_Type (N);
6030
6031       --  Freeze processing for access types
6032
6033       --  For pool-specific access types, find out the pool object used for
6034       --  this type, needs actual expansion of it in some cases. Here are the
6035       --  different cases :
6036
6037       --  1. Rep Clause "for Def_Id'Storage_Size use 0;"
6038       --      ---> don't use any storage pool
6039
6040       --  2. Rep Clause : for Def_Id'Storage_Size use Expr.
6041       --     Expand:
6042       --      Def_Id__Pool : Stack_Bounded_Pool (Expr, DT'Size, DT'Alignment);
6043
6044       --  3. Rep Clause "for Def_Id'Storage_Pool use a_Pool_Object"
6045       --      ---> Storage Pool is the specified one
6046
6047       --  See GNAT Pool packages in the Run-Time for more details
6048
6049       elsif Ekind (Def_Id) = E_Access_Type
6050         or else Ekind (Def_Id) = E_General_Access_Type
6051       then
6052          declare
6053             Loc         : constant Source_Ptr := Sloc (N);
6054             Desig_Type  : constant Entity_Id  := Designated_Type (Def_Id);
6055             Pool_Object : Entity_Id;
6056
6057             Freeze_Action_Typ : Entity_Id;
6058
6059          begin
6060             --  Case 1
6061
6062             --    Rep Clause "for Def_Id'Storage_Size use 0;"
6063             --    ---> don't use any storage pool
6064
6065             if No_Pool_Assigned (Def_Id) then
6066                null;
6067
6068             --  Case 2
6069
6070             --    Rep Clause : for Def_Id'Storage_Size use Expr.
6071             --    ---> Expand:
6072             --           Def_Id__Pool : Stack_Bounded_Pool
6073             --                            (Expr, DT'Size, DT'Alignment);
6074
6075             elsif Has_Storage_Size_Clause (Def_Id) then
6076                declare
6077                   DT_Size  : Node_Id;
6078                   DT_Align : Node_Id;
6079
6080                begin
6081                   --  For unconstrained composite types we give a size of zero
6082                   --  so that the pool knows that it needs a special algorithm
6083                   --  for variable size object allocation.
6084
6085                   if Is_Composite_Type (Desig_Type)
6086                     and then not Is_Constrained (Desig_Type)
6087                   then
6088                      DT_Size :=
6089                        Make_Integer_Literal (Loc, 0);
6090
6091                      DT_Align :=
6092                        Make_Integer_Literal (Loc, Maximum_Alignment);
6093
6094                   else
6095                      DT_Size :=
6096                        Make_Attribute_Reference (Loc,
6097                          Prefix => New_Reference_To (Desig_Type, Loc),
6098                          Attribute_Name => Name_Max_Size_In_Storage_Elements);
6099
6100                      DT_Align :=
6101                        Make_Attribute_Reference (Loc,
6102                          Prefix => New_Reference_To (Desig_Type, Loc),
6103                          Attribute_Name => Name_Alignment);
6104                   end if;
6105
6106                   Pool_Object :=
6107                     Make_Defining_Identifier (Loc,
6108                       Chars => New_External_Name (Chars (Def_Id), 'P'));
6109
6110                   --  We put the code associated with the pools in the entity
6111                   --  that has the later freeze node, usually the access type
6112                   --  but it can also be the designated_type; because the pool
6113                   --  code requires both those types to be frozen
6114
6115                   if Is_Frozen (Desig_Type)
6116                     and then (No (Freeze_Node (Desig_Type))
6117                                or else Analyzed (Freeze_Node (Desig_Type)))
6118                   then
6119                      Freeze_Action_Typ := Def_Id;
6120
6121                   --  A Taft amendment type cannot get the freeze actions
6122                   --  since the full view is not there.
6123
6124                   elsif Is_Incomplete_Or_Private_Type (Desig_Type)
6125                     and then No (Full_View (Desig_Type))
6126                   then
6127                      Freeze_Action_Typ := Def_Id;
6128
6129                   else
6130                      Freeze_Action_Typ := Desig_Type;
6131                   end if;
6132
6133                   Append_Freeze_Action (Freeze_Action_Typ,
6134                     Make_Object_Declaration (Loc,
6135                       Defining_Identifier => Pool_Object,
6136                       Object_Definition =>
6137                         Make_Subtype_Indication (Loc,
6138                           Subtype_Mark =>
6139                             New_Reference_To
6140                               (RTE (RE_Stack_Bounded_Pool), Loc),
6141
6142                           Constraint =>
6143                             Make_Index_Or_Discriminant_Constraint (Loc,
6144                               Constraints => New_List (
6145
6146                               --  First discriminant is the Pool Size
6147
6148                                 New_Reference_To (
6149                                   Storage_Size_Variable (Def_Id), Loc),
6150
6151                               --  Second discriminant is the element size
6152
6153                                 DT_Size,
6154
6155                               --  Third discriminant is the alignment
6156
6157                                 DT_Align)))));
6158                end;
6159
6160                Set_Associated_Storage_Pool (Def_Id, Pool_Object);
6161
6162             --  Case 3
6163
6164             --    Rep Clause "for Def_Id'Storage_Pool use a_Pool_Object"
6165             --    ---> Storage Pool is the specified one
6166
6167             elsif Present (Associated_Storage_Pool (Def_Id)) then
6168
6169                --  Nothing to do the associated storage pool has been attached
6170                --  when analyzing the rep. clause
6171
6172                null;
6173             end if;
6174
6175             --  For access-to-controlled types (including class-wide types and
6176             --  Taft-amendment types which potentially have controlled
6177             --  components), expand the list controller object that will store
6178             --  the dynamically allocated objects. Do not do this
6179             --  transformation for expander-generated access types, but do it
6180             --  for types that are the full view of types derived from other
6181             --  private types. Also suppress the list controller in the case
6182             --  of a designated type with convention Java, since this is used
6183             --  when binding to Java API specs, where there's no equivalent of
6184             --  a finalization list and we don't want to pull in the
6185             --  finalization support if not needed.
6186
6187             if not Comes_From_Source (Def_Id)
6188                and then not Has_Private_Declaration (Def_Id)
6189             then
6190                null;
6191
6192             elsif (Needs_Finalization (Desig_Type)
6193                     and then Convention (Desig_Type) /= Convention_Java
6194                     and then Convention (Desig_Type) /= Convention_CIL)
6195               or else
6196                 (Is_Incomplete_Or_Private_Type (Desig_Type)
6197                    and then No (Full_View (Desig_Type))
6198
6199                   --  An exception is made for types defined in the run-time
6200                   --  because Ada.Tags.Tag itself is such a type and cannot
6201                   --  afford this unnecessary overhead that would generates a
6202                   --  loop in the expansion scheme...
6203
6204                   and then not In_Runtime (Def_Id)
6205
6206                   --  Another exception is if Restrictions (No_Finalization)
6207                   --  is active, since then we know nothing is controlled.
6208
6209                   and then not Restriction_Active (No_Finalization))
6210
6211                --  If the designated type is not frozen yet, its controlled
6212                --  status must be retrieved explicitly.
6213
6214               or else (Is_Array_Type (Desig_Type)
6215                 and then not Is_Frozen (Desig_Type)
6216                 and then Needs_Finalization (Component_Type (Desig_Type)))
6217
6218                --  The designated type has controlled anonymous access
6219                --  discriminants.
6220
6221               or else Has_Controlled_Coextensions (Desig_Type)
6222             then
6223                Set_Associated_Final_Chain (Def_Id, Add_Final_Chain (Def_Id));
6224             end if;
6225          end;
6226
6227       --  Freeze processing for enumeration types
6228
6229       elsif Ekind (Def_Id) = E_Enumeration_Type then
6230
6231          --  We only have something to do if we have a non-standard
6232          --  representation (i.e. at least one literal whose pos value
6233          --  is not the same as its representation)
6234
6235          if Has_Non_Standard_Rep (Def_Id) then
6236             Freeze_Enumeration_Type (N);
6237          end if;
6238
6239       --  Private types that are completed by a derivation from a private
6240       --  type have an internally generated full view, that needs to be
6241       --  frozen. This must be done explicitly because the two views share
6242       --  the freeze node, and the underlying full view is not visible when
6243       --  the freeze node is analyzed.
6244
6245       elsif Is_Private_Type (Def_Id)
6246         and then Is_Derived_Type (Def_Id)
6247         and then Present (Full_View (Def_Id))
6248         and then Is_Itype (Full_View (Def_Id))
6249         and then Has_Private_Declaration (Full_View (Def_Id))
6250         and then Freeze_Node (Full_View (Def_Id)) = N
6251       then
6252          Set_Entity (N, Full_View (Def_Id));
6253          Result := Freeze_Type (N);
6254          Set_Entity (N, Def_Id);
6255
6256       --  All other types require no expander action. There are such cases
6257       --  (e.g. task types and protected types). In such cases, the freeze
6258       --  nodes are there for use by Gigi.
6259
6260       end if;
6261
6262       Freeze_Stream_Operations (N, Def_Id);
6263       return Result;
6264
6265    exception
6266       when RE_Not_Available =>
6267          return False;
6268    end Freeze_Type;
6269
6270    -------------------------
6271    -- Get_Simple_Init_Val --
6272    -------------------------
6273
6274    function Get_Simple_Init_Val
6275      (T    : Entity_Id;
6276       N    : Node_Id;
6277       Size : Uint := No_Uint) return Node_Id
6278    is
6279       Loc    : constant Source_Ptr := Sloc (N);
6280       Val    : Node_Id;
6281       Result : Node_Id;
6282       Val_RE : RE_Id;
6283
6284       Size_To_Use : Uint;
6285       --  This is the size to be used for computation of the appropriate
6286       --  initial value for the Normalize_Scalars and Initialize_Scalars case.
6287
6288       IV_Attribute : constant Boolean :=
6289                        Nkind (N) = N_Attribute_Reference
6290                          and then Attribute_Name (N) = Name_Invalid_Value;
6291
6292       Lo_Bound : Uint;
6293       Hi_Bound : Uint;
6294       --  These are the values computed by the procedure Check_Subtype_Bounds
6295
6296       procedure Check_Subtype_Bounds;
6297       --  This procedure examines the subtype T, and its ancestor subtypes and
6298       --  derived types to determine the best known information about the
6299       --  bounds of the subtype. After the call Lo_Bound is set either to
6300       --  No_Uint if no information can be determined, or to a value which
6301       --  represents a known low bound, i.e. a valid value of the subtype can
6302       --  not be less than this value. Hi_Bound is similarly set to a known
6303       --  high bound (valid value cannot be greater than this).
6304
6305       --------------------------
6306       -- Check_Subtype_Bounds --
6307       --------------------------
6308
6309       procedure Check_Subtype_Bounds is
6310          ST1  : Entity_Id;
6311          ST2  : Entity_Id;
6312          Lo   : Node_Id;
6313          Hi   : Node_Id;
6314          Loval : Uint;
6315          Hival : Uint;
6316
6317       begin
6318          Lo_Bound := No_Uint;
6319          Hi_Bound := No_Uint;
6320
6321          --  Loop to climb ancestor subtypes and derived types
6322
6323          ST1 := T;
6324          loop
6325             if not Is_Discrete_Type (ST1) then
6326                return;
6327             end if;
6328
6329             Lo := Type_Low_Bound (ST1);
6330             Hi := Type_High_Bound (ST1);
6331
6332             if Compile_Time_Known_Value (Lo) then
6333                Loval := Expr_Value (Lo);
6334
6335                if Lo_Bound = No_Uint or else Lo_Bound < Loval then
6336                   Lo_Bound := Loval;
6337                end if;
6338             end if;
6339
6340             if Compile_Time_Known_Value (Hi) then
6341                Hival := Expr_Value (Hi);
6342
6343                if Hi_Bound = No_Uint or else Hi_Bound > Hival then
6344                   Hi_Bound := Hival;
6345                end if;
6346             end if;
6347
6348             ST2 := Ancestor_Subtype (ST1);
6349
6350             if No (ST2) then
6351                ST2 := Etype (ST1);
6352             end if;
6353
6354             exit when ST1 = ST2;
6355             ST1 := ST2;
6356          end loop;
6357       end Check_Subtype_Bounds;
6358
6359    --  Start of processing for Get_Simple_Init_Val
6360
6361    begin
6362       --  For a private type, we should always have an underlying type
6363       --  (because this was already checked in Needs_Simple_Initialization).
6364       --  What we do is to get the value for the underlying type and then do
6365       --  an Unchecked_Convert to the private type.
6366
6367       if Is_Private_Type (T) then
6368          Val := Get_Simple_Init_Val (Underlying_Type (T), N, Size);
6369
6370          --  A special case, if the underlying value is null, then qualify it
6371          --  with the underlying type, so that the null is properly typed
6372          --  Similarly, if it is an aggregate it must be qualified, because an
6373          --  unchecked conversion does not provide a context for it.
6374
6375          if Nkind_In (Val, N_Null, N_Aggregate) then
6376             Val :=
6377               Make_Qualified_Expression (Loc,
6378                 Subtype_Mark =>
6379                   New_Occurrence_Of (Underlying_Type (T), Loc),
6380                 Expression => Val);
6381          end if;
6382
6383          Result := Unchecked_Convert_To (T, Val);
6384
6385          --  Don't truncate result (important for Initialize/Normalize_Scalars)
6386
6387          if Nkind (Result) = N_Unchecked_Type_Conversion
6388            and then Is_Scalar_Type (Underlying_Type (T))
6389          then
6390             Set_No_Truncation (Result);
6391          end if;
6392
6393          return Result;
6394
6395       --  For scalars, we must have normalize/initialize scalars case, or
6396       --  if the node N is an 'Invalid_Value attribute node.
6397
6398       elsif Is_Scalar_Type (T) then
6399          pragma Assert (Init_Or_Norm_Scalars or IV_Attribute);
6400
6401          --  Compute size of object. If it is given by the caller, we can use
6402          --  it directly, otherwise we use Esize (T) as an estimate. As far as
6403          --  we know this covers all cases correctly.
6404
6405          if Size = No_Uint or else Size <= Uint_0 then
6406             Size_To_Use := UI_Max (Uint_1, Esize (T));
6407          else
6408             Size_To_Use := Size;
6409          end if;
6410
6411          --  Maximum size to use is 64 bits, since we will create values
6412          --  of type Unsigned_64 and the range must fit this type.
6413
6414          if Size_To_Use /= No_Uint and then Size_To_Use > Uint_64 then
6415             Size_To_Use := Uint_64;
6416          end if;
6417
6418          --  Check known bounds of subtype
6419
6420          Check_Subtype_Bounds;
6421
6422          --  Processing for Normalize_Scalars case
6423
6424          if Normalize_Scalars and then not IV_Attribute then
6425
6426             --  If zero is invalid, it is a convenient value to use that is
6427             --  for sure an appropriate invalid value in all situations.
6428
6429             if Lo_Bound /= No_Uint and then Lo_Bound > Uint_0 then
6430                Val := Make_Integer_Literal (Loc, 0);
6431
6432             --  Cases where all one bits is the appropriate invalid value
6433
6434             --  For modular types, all 1 bits is either invalid or valid. If
6435             --  it is valid, then there is nothing that can be done since there
6436             --  are no invalid values (we ruled out zero already).
6437
6438             --  For signed integer types that have no negative values, either
6439             --  there is room for negative values, or there is not. If there
6440             --  is, then all 1 bits may be interpreted as minus one, which is
6441             --  certainly invalid. Alternatively it is treated as the largest
6442             --  positive value, in which case the observation for modular types
6443             --  still applies.
6444
6445             --  For float types, all 1-bits is a NaN (not a number), which is
6446             --  certainly an appropriately invalid value.
6447
6448             elsif Is_Unsigned_Type (T)
6449               or else Is_Floating_Point_Type (T)
6450               or else Is_Enumeration_Type (T)
6451             then
6452                Val := Make_Integer_Literal (Loc, 2 ** Size_To_Use - 1);
6453
6454                --  Resolve as Unsigned_64, because the largest number we
6455                --  can generate is out of range of universal integer.
6456
6457                Analyze_And_Resolve (Val, RTE (RE_Unsigned_64));
6458
6459             --  Case of signed types
6460
6461             else
6462                declare
6463                   Signed_Size : constant Uint :=
6464                                   UI_Min (Uint_63, Size_To_Use - 1);
6465
6466                begin
6467                   --  Normally we like to use the most negative number. The
6468                   --  one exception is when this number is in the known
6469                   --  subtype range and the largest positive number is not in
6470                   --  the known subtype range.
6471
6472                   --  For this exceptional case, use largest positive value
6473
6474                   if Lo_Bound /= No_Uint and then Hi_Bound /= No_Uint
6475                     and then Lo_Bound <= (-(2 ** Signed_Size))
6476                     and then Hi_Bound < 2 ** Signed_Size
6477                   then
6478                      Val := Make_Integer_Literal (Loc, 2 ** Signed_Size - 1);
6479
6480                      --  Normal case of largest negative value
6481
6482                   else
6483                      Val := Make_Integer_Literal (Loc, -(2 ** Signed_Size));
6484                   end if;
6485                end;
6486             end if;
6487
6488          --  Here for Initialize_Scalars case (or Invalid_Value attribute used)
6489
6490          else
6491             --  For float types, use float values from System.Scalar_Values
6492
6493             if Is_Floating_Point_Type (T) then
6494                if Root_Type (T) = Standard_Short_Float then
6495                   Val_RE := RE_IS_Isf;
6496                elsif Root_Type (T) = Standard_Float then
6497                   Val_RE := RE_IS_Ifl;
6498                elsif Root_Type (T) = Standard_Long_Float then
6499                   Val_RE := RE_IS_Ilf;
6500                else pragma Assert (Root_Type (T) = Standard_Long_Long_Float);
6501                   Val_RE := RE_IS_Ill;
6502                end if;
6503
6504             --  If zero is invalid, use zero values from System.Scalar_Values
6505
6506             elsif Lo_Bound /= No_Uint and then Lo_Bound > Uint_0 then
6507                if Size_To_Use <= 8 then
6508                   Val_RE := RE_IS_Iz1;
6509                elsif Size_To_Use <= 16 then
6510                   Val_RE := RE_IS_Iz2;
6511                elsif Size_To_Use <= 32 then
6512                   Val_RE := RE_IS_Iz4;
6513                else
6514                   Val_RE := RE_IS_Iz8;
6515                end if;
6516
6517             --  For unsigned, use unsigned values from System.Scalar_Values
6518
6519             elsif Is_Unsigned_Type (T) then
6520                if Size_To_Use <= 8 then
6521                   Val_RE := RE_IS_Iu1;
6522                elsif Size_To_Use <= 16 then
6523                   Val_RE := RE_IS_Iu2;
6524                elsif Size_To_Use <= 32 then
6525                   Val_RE := RE_IS_Iu4;
6526                else
6527                   Val_RE := RE_IS_Iu8;
6528                end if;
6529
6530             --  For signed, use signed values from System.Scalar_Values
6531
6532             else
6533                if Size_To_Use <= 8 then
6534                   Val_RE := RE_IS_Is1;
6535                elsif Size_To_Use <= 16 then
6536                   Val_RE := RE_IS_Is2;
6537                elsif Size_To_Use <= 32 then
6538                   Val_RE := RE_IS_Is4;
6539                else
6540                   Val_RE := RE_IS_Is8;
6541                end if;
6542             end if;
6543
6544             Val := New_Occurrence_Of (RTE (Val_RE), Loc);
6545          end if;
6546
6547          --  The final expression is obtained by doing an unchecked conversion
6548          --  of this result to the base type of the required subtype. We use
6549          --  the base type to avoid the unchecked conversion from chopping
6550          --  bits, and then we set Kill_Range_Check to preserve the "bad"
6551          --  value.
6552
6553          Result := Unchecked_Convert_To (Base_Type (T), Val);
6554
6555          --  Ensure result is not truncated, since we want the "bad" bits
6556          --  and also kill range check on result.
6557
6558          if Nkind (Result) = N_Unchecked_Type_Conversion then
6559             Set_No_Truncation (Result);
6560             Set_Kill_Range_Check (Result, True);
6561          end if;
6562
6563          return Result;
6564
6565       --  String or Wide_[Wide]_String (must have Initialize_Scalars set)
6566
6567       elsif Root_Type (T) = Standard_String
6568               or else
6569             Root_Type (T) = Standard_Wide_String
6570               or else
6571             Root_Type (T) = Standard_Wide_Wide_String
6572       then
6573          pragma Assert (Init_Or_Norm_Scalars);
6574
6575          return
6576            Make_Aggregate (Loc,
6577              Component_Associations => New_List (
6578                Make_Component_Association (Loc,
6579                  Choices => New_List (
6580                    Make_Others_Choice (Loc)),
6581                  Expression =>
6582                    Get_Simple_Init_Val
6583                      (Component_Type (T), N, Esize (Root_Type (T))))));
6584
6585       --  Access type is initialized to null
6586
6587       elsif Is_Access_Type (T) then
6588          return
6589            Make_Null (Loc);
6590
6591       --  No other possibilities should arise, since we should only be
6592       --  calling Get_Simple_Init_Val if Needs_Simple_Initialization
6593       --  returned True, indicating one of the above cases held.
6594
6595       else
6596          raise Program_Error;
6597       end if;
6598
6599    exception
6600       when RE_Not_Available =>
6601          return Empty;
6602    end Get_Simple_Init_Val;
6603
6604    ------------------------------
6605    -- Has_New_Non_Standard_Rep --
6606    ------------------------------
6607
6608    function Has_New_Non_Standard_Rep (T : Entity_Id) return Boolean is
6609    begin
6610       if not Is_Derived_Type (T) then
6611          return Has_Non_Standard_Rep (T)
6612            or else Has_Non_Standard_Rep (Root_Type (T));
6613
6614       --  If Has_Non_Standard_Rep is not set on the derived type, the
6615       --  representation is fully inherited.
6616
6617       elsif not Has_Non_Standard_Rep (T) then
6618          return False;
6619
6620       else
6621          return First_Rep_Item (T) /= First_Rep_Item (Root_Type (T));
6622
6623          --  May need a more precise check here: the First_Rep_Item may
6624          --  be a stream attribute, which does not affect the representation
6625          --  of the type ???
6626       end if;
6627    end Has_New_Non_Standard_Rep;
6628
6629    ----------------
6630    -- In_Runtime --
6631    ----------------
6632
6633    function In_Runtime (E : Entity_Id) return Boolean is
6634       S1 : Entity_Id;
6635
6636    begin
6637       S1 := Scope (E);
6638       while Scope (S1) /= Standard_Standard loop
6639          S1 := Scope (S1);
6640       end loop;
6641
6642       return Chars (S1) = Name_System or else Chars (S1) = Name_Ada;
6643    end In_Runtime;
6644
6645    ----------------------------
6646    -- Initialization_Warning --
6647    ----------------------------
6648
6649    procedure Initialization_Warning (E : Entity_Id) is
6650       Warning_Needed : Boolean;
6651
6652    begin
6653       Warning_Needed := False;
6654
6655       if Ekind (Current_Scope) = E_Package
6656         and then Static_Elaboration_Desired (Current_Scope)
6657       then
6658          if Is_Type (E) then
6659             if Is_Record_Type (E) then
6660                if Has_Discriminants (E)
6661                  or else Is_Limited_Type (E)
6662                  or else Has_Non_Standard_Rep (E)
6663                then
6664                   Warning_Needed := True;
6665
6666                else
6667                   --  Verify that at least one component has an initialization
6668                   --  expression. No need for a warning on a type if all its
6669                   --  components have no initialization.
6670
6671                   declare
6672                      Comp : Entity_Id;
6673
6674                   begin
6675                      Comp := First_Component (E);
6676                      while Present (Comp) loop
6677                         if Ekind (Comp) = E_Discriminant
6678                           or else
6679                             (Nkind (Parent (Comp)) = N_Component_Declaration
6680                                and then Present (Expression (Parent (Comp))))
6681                         then
6682                            Warning_Needed := True;
6683                            exit;
6684                         end if;
6685
6686                         Next_Component (Comp);
6687                      end loop;
6688                   end;
6689                end if;
6690
6691                if Warning_Needed then
6692                   Error_Msg_N
6693                     ("Objects of the type cannot be initialized " &
6694                        "statically by default?",
6695                        Parent (E));
6696                end if;
6697             end if;
6698
6699          else
6700             Error_Msg_N ("Object cannot be initialized statically?", E);
6701          end if;
6702       end if;
6703    end Initialization_Warning;
6704
6705    ------------------
6706    -- Init_Formals --
6707    ------------------
6708
6709    function Init_Formals (Typ : Entity_Id) return List_Id is
6710       Loc     : constant Source_Ptr := Sloc (Typ);
6711       Formals : List_Id;
6712
6713    begin
6714       --  First parameter is always _Init : in out typ. Note that we need
6715       --  this to be in/out because in the case of the task record value,
6716       --  there are default record fields (_Priority, _Size, -Task_Info)
6717       --  that may be referenced in the generated initialization routine.
6718
6719       Formals := New_List (
6720         Make_Parameter_Specification (Loc,
6721           Defining_Identifier =>
6722             Make_Defining_Identifier (Loc, Name_uInit),
6723           In_Present  => True,
6724           Out_Present => True,
6725           Parameter_Type => New_Reference_To (Typ, Loc)));
6726
6727       --  For task record value, or type that contains tasks, add two more
6728       --  formals, _Master : Master_Id and _Chain : in out Activation_Chain
6729       --  We also add these parameters for the task record type case.
6730
6731       if Has_Task (Typ)
6732         or else (Is_Record_Type (Typ) and then Is_Task_Record_Type (Typ))
6733       then
6734          Append_To (Formals,
6735            Make_Parameter_Specification (Loc,
6736              Defining_Identifier =>
6737                Make_Defining_Identifier (Loc, Name_uMaster),
6738              Parameter_Type => New_Reference_To (RTE (RE_Master_Id), Loc)));
6739
6740          Append_To (Formals,
6741            Make_Parameter_Specification (Loc,
6742              Defining_Identifier =>
6743                Make_Defining_Identifier (Loc, Name_uChain),
6744              In_Present => True,
6745              Out_Present => True,
6746              Parameter_Type =>
6747                New_Reference_To (RTE (RE_Activation_Chain), Loc)));
6748
6749          Append_To (Formals,
6750            Make_Parameter_Specification (Loc,
6751              Defining_Identifier =>
6752                Make_Defining_Identifier (Loc, Name_uTask_Name),
6753              In_Present => True,
6754              Parameter_Type =>
6755                New_Reference_To (Standard_String, Loc)));
6756       end if;
6757
6758       return Formals;
6759
6760    exception
6761       when RE_Not_Available =>
6762          return Empty_List;
6763    end Init_Formals;
6764
6765    -------------------------
6766    -- Init_Secondary_Tags --
6767    -------------------------
6768
6769    procedure Init_Secondary_Tags
6770      (Typ            : Entity_Id;
6771       Target         : Node_Id;
6772       Stmts_List     : List_Id;
6773       Fixed_Comps    : Boolean := True;
6774       Variable_Comps : Boolean := True)
6775    is
6776       Loc : constant Source_Ptr := Sloc (Target);
6777
6778       procedure Inherit_CPP_Tag
6779         (Typ       : Entity_Id;
6780          Iface     : Entity_Id;
6781          Tag_Comp  : Entity_Id;
6782          Iface_Tag : Node_Id);
6783       --  Inherit the C++ tag of the secondary dispatch table of Typ associated
6784       --  with Iface. Tag_Comp is the component of Typ that stores Iface_Tag.
6785
6786       procedure Initialize_Tag
6787         (Typ       : Entity_Id;
6788          Iface     : Entity_Id;
6789          Tag_Comp  : Entity_Id;
6790          Iface_Tag : Node_Id);
6791       --  Initialize the tag of the secondary dispatch table of Typ associated
6792       --  with Iface. Tag_Comp is the component of Typ that stores Iface_Tag.
6793       --  Compiling under the CPP full ABI compatibility mode, if the ancestor
6794       --  of Typ CPP tagged type we generate code to inherit the contents of
6795       --  the dispatch table directly from the ancestor.
6796
6797       ---------------------
6798       -- Inherit_CPP_Tag --
6799       ---------------------
6800
6801       procedure Inherit_CPP_Tag
6802         (Typ       : Entity_Id;
6803          Iface     : Entity_Id;
6804          Tag_Comp  : Entity_Id;
6805          Iface_Tag : Node_Id)
6806       is
6807       begin
6808          pragma Assert (Is_CPP_Class (Etype (Typ)));
6809
6810          Append_To (Stmts_List,
6811            Build_Inherit_Prims (Loc,
6812              Typ          => Iface,
6813              Old_Tag_Node =>
6814                Make_Selected_Component (Loc,
6815                  Prefix        => New_Copy_Tree (Target),
6816                  Selector_Name => New_Reference_To (Tag_Comp, Loc)),
6817              New_Tag_Node =>
6818                New_Reference_To (Iface_Tag, Loc),
6819              Num_Prims    =>
6820                UI_To_Int (DT_Entry_Count (First_Tag_Component (Iface)))));
6821       end Inherit_CPP_Tag;
6822
6823       --------------------
6824       -- Initialize_Tag --
6825       --------------------
6826
6827       procedure Initialize_Tag
6828         (Typ       : Entity_Id;
6829          Iface     : Entity_Id;
6830          Tag_Comp  : Entity_Id;
6831          Iface_Tag : Node_Id)
6832       is
6833          Comp_Typ           : Entity_Id;
6834          Offset_To_Top_Comp : Entity_Id := Empty;
6835
6836       begin
6837          --  Initialize the pointer to the secondary DT associated with the
6838          --  interface.
6839
6840          if not Is_Ancestor (Iface, Typ) then
6841             Append_To (Stmts_List,
6842               Make_Assignment_Statement (Loc,
6843                 Name =>
6844                   Make_Selected_Component (Loc,
6845                     Prefix => New_Copy_Tree (Target),
6846                     Selector_Name => New_Reference_To (Tag_Comp, Loc)),
6847                 Expression =>
6848                   New_Reference_To (Iface_Tag, Loc)));
6849          end if;
6850
6851          Comp_Typ := Scope (Tag_Comp);
6852
6853          --  Initialize the entries of the table of interfaces. We generate a
6854          --  different call when the parent of the type has variable size
6855          --  components.
6856
6857          if Comp_Typ /= Etype (Comp_Typ)
6858            and then Is_Variable_Size_Record (Etype (Comp_Typ))
6859            and then Chars (Tag_Comp) /= Name_uTag
6860          then
6861             pragma Assert
6862               (Present (DT_Offset_To_Top_Func (Tag_Comp)));
6863
6864             --  Issue error if Set_Dynamic_Offset_To_Top is not available in a
6865             --  configurable run-time environment.
6866
6867             if not RTE_Available (RE_Set_Dynamic_Offset_To_Top) then
6868                Error_Msg_CRT
6869                  ("variable size record with interface types", Typ);
6870                return;
6871             end if;
6872
6873             --  Generate:
6874             --    Set_Dynamic_Offset_To_Top
6875             --      (This         => Init,
6876             --       Interface_T  => Iface'Tag,
6877             --       Offset_Value => n,
6878             --       Offset_Func  => Fn'Address)
6879
6880             Append_To (Stmts_List,
6881               Make_Procedure_Call_Statement (Loc,
6882                 Name => New_Reference_To
6883                           (RTE (RE_Set_Dynamic_Offset_To_Top), Loc),
6884                 Parameter_Associations => New_List (
6885                   Make_Attribute_Reference (Loc,
6886                     Prefix => New_Copy_Tree (Target),
6887                     Attribute_Name => Name_Address),
6888
6889                   Unchecked_Convert_To (RTE (RE_Tag),
6890                     New_Reference_To
6891                       (Node (First_Elmt (Access_Disp_Table (Iface))),
6892                        Loc)),
6893
6894                   Unchecked_Convert_To
6895                     (RTE (RE_Storage_Offset),
6896                      Make_Attribute_Reference (Loc,
6897                        Prefix         =>
6898                          Make_Selected_Component (Loc,
6899                            Prefix => New_Copy_Tree (Target),
6900                            Selector_Name =>
6901                              New_Reference_To (Tag_Comp, Loc)),
6902                        Attribute_Name => Name_Position)),
6903
6904                   Unchecked_Convert_To (RTE (RE_Offset_To_Top_Function_Ptr),
6905                     Make_Attribute_Reference (Loc,
6906                       Prefix => New_Reference_To
6907                                   (DT_Offset_To_Top_Func (Tag_Comp), Loc),
6908                       Attribute_Name => Name_Address)))));
6909
6910             --  In this case the next component stores the value of the
6911             --  offset to the top.
6912
6913             Offset_To_Top_Comp := Next_Entity (Tag_Comp);
6914             pragma Assert (Present (Offset_To_Top_Comp));
6915
6916             Append_To (Stmts_List,
6917               Make_Assignment_Statement (Loc,
6918                 Name =>
6919                   Make_Selected_Component (Loc,
6920                     Prefix => New_Copy_Tree (Target),
6921                     Selector_Name => New_Reference_To
6922                                        (Offset_To_Top_Comp, Loc)),
6923                 Expression =>
6924                   Make_Attribute_Reference (Loc,
6925                     Prefix         =>
6926                       Make_Selected_Component (Loc,
6927                         Prefix => New_Copy_Tree (Target),
6928                         Selector_Name =>
6929                           New_Reference_To (Tag_Comp, Loc)),
6930                   Attribute_Name => Name_Position)));
6931
6932          --  Normal case: No discriminants in the parent type
6933
6934          else
6935             --  Don't need to set any value if this interface shares
6936             --  the primary dispatch table.
6937
6938             if not Is_Ancestor (Iface, Typ) then
6939                Append_To (Stmts_List,
6940                  Build_Set_Static_Offset_To_Top (Loc,
6941                    Iface_Tag    => New_Reference_To (Iface_Tag, Loc),
6942                    Offset_Value =>
6943                      Unchecked_Convert_To (RTE (RE_Storage_Offset),
6944                        Make_Attribute_Reference (Loc,
6945                          Prefix =>
6946                            Make_Selected_Component (Loc,
6947                              Prefix        => New_Copy_Tree (Target),
6948                              Selector_Name =>
6949                                New_Reference_To (Tag_Comp, Loc)),
6950                          Attribute_Name => Name_Position))));
6951             end if;
6952
6953             --  Generate:
6954             --    Register_Interface_Offset
6955             --      (This         => Init,
6956             --       Interface_T  => Iface'Tag,
6957             --       Is_Constant  => True,
6958             --       Offset_Value => n,
6959             --       Offset_Func  => null);
6960
6961             if RTE_Available (RE_Register_Interface_Offset) then
6962                Append_To (Stmts_List,
6963                  Make_Procedure_Call_Statement (Loc,
6964                    Name => New_Reference_To
6965                              (RTE (RE_Register_Interface_Offset), Loc),
6966                    Parameter_Associations => New_List (
6967                      Make_Attribute_Reference (Loc,
6968                        Prefix         => New_Copy_Tree (Target),
6969                        Attribute_Name => Name_Address),
6970
6971                      Unchecked_Convert_To (RTE (RE_Tag),
6972                        New_Reference_To
6973                          (Node (First_Elmt (Access_Disp_Table (Iface))), Loc)),
6974
6975                      New_Occurrence_Of (Standard_True, Loc),
6976
6977                      Unchecked_Convert_To
6978                        (RTE (RE_Storage_Offset),
6979                         Make_Attribute_Reference (Loc,
6980                           Prefix =>
6981                             Make_Selected_Component (Loc,
6982                               Prefix         => New_Copy_Tree (Target),
6983                               Selector_Name  =>
6984                                 New_Reference_To (Tag_Comp, Loc)),
6985                          Attribute_Name => Name_Position)),
6986
6987                      Make_Null (Loc))));
6988             end if;
6989          end if;
6990       end Initialize_Tag;
6991
6992       --  Local variables
6993
6994       Full_Typ         : Entity_Id;
6995       Ifaces_List      : Elist_Id;
6996       Ifaces_Comp_List : Elist_Id;
6997       Ifaces_Tag_List  : Elist_Id;
6998       Iface_Elmt       : Elmt_Id;
6999       Iface_Comp_Elmt  : Elmt_Id;
7000       Iface_Tag_Elmt   : Elmt_Id;
7001       Tag_Comp         : Node_Id;
7002       In_Variable_Pos  : Boolean;
7003
7004    --  Start of processing for Init_Secondary_Tags
7005
7006    begin
7007       --  Handle private types
7008
7009       if Present (Full_View (Typ)) then
7010          Full_Typ := Full_View (Typ);
7011       else
7012          Full_Typ := Typ;
7013       end if;
7014
7015       Collect_Interfaces_Info
7016         (Full_Typ, Ifaces_List, Ifaces_Comp_List, Ifaces_Tag_List);
7017
7018       Iface_Elmt      := First_Elmt (Ifaces_List);
7019       Iface_Comp_Elmt := First_Elmt (Ifaces_Comp_List);
7020       Iface_Tag_Elmt  := First_Elmt (Ifaces_Tag_List);
7021       while Present (Iface_Elmt) loop
7022          Tag_Comp := Node (Iface_Comp_Elmt);
7023
7024          --  If we are compiling under the CPP full ABI compatibility mode and
7025          --  the ancestor is a CPP_Pragma tagged type then we generate code to
7026          --  inherit the contents of the dispatch table directly from the
7027          --  ancestor.
7028
7029          if Is_CPP_Class (Etype (Full_Typ)) then
7030             Inherit_CPP_Tag (Full_Typ,
7031               Iface     => Node (Iface_Elmt),
7032               Tag_Comp  => Tag_Comp,
7033               Iface_Tag => Node (Iface_Tag_Elmt));
7034
7035          --  Otherwise generate code to initialize the tag
7036
7037          else
7038             --  Check if the parent of the record type has variable size
7039             --  components.
7040
7041             In_Variable_Pos := Scope (Tag_Comp) /= Etype (Scope (Tag_Comp))
7042               and then Is_Variable_Size_Record (Etype (Scope (Tag_Comp)));
7043
7044             if (In_Variable_Pos and then Variable_Comps)
7045               or else (not In_Variable_Pos and then Fixed_Comps)
7046             then
7047                Initialize_Tag (Full_Typ,
7048                  Iface     => Node (Iface_Elmt),
7049                  Tag_Comp  => Tag_Comp,
7050                  Iface_Tag => Node (Iface_Tag_Elmt));
7051             end if;
7052          end if;
7053
7054          Next_Elmt (Iface_Elmt);
7055          Next_Elmt (Iface_Comp_Elmt);
7056          Next_Elmt (Iface_Tag_Elmt);
7057       end loop;
7058    end Init_Secondary_Tags;
7059
7060    -----------------------------
7061    -- Is_Variable_Size_Record --
7062    -----------------------------
7063
7064    function Is_Variable_Size_Record (E : Entity_Id) return Boolean is
7065       Comp     : Entity_Id;
7066       Comp_Typ : Entity_Id;
7067       Idx      : Node_Id;
7068
7069       function Is_Constant_Bound (Exp : Node_Id) return Boolean;
7070       --  To simplify handling of array components. Determines whether the
7071       --  given bound is constant (a constant or enumeration literal, or an
7072       --  integer literal) as opposed to per-object, through an expression
7073       --  or a discriminant.
7074
7075       -----------------------
7076       -- Is_Constant_Bound --
7077       -----------------------
7078
7079       function Is_Constant_Bound (Exp : Node_Id) return Boolean is
7080       begin
7081          if Nkind (Exp) = N_Integer_Literal then
7082             return True;
7083          else
7084             return
7085               Is_Entity_Name (Exp)
7086                 and then Present (Entity (Exp))
7087                 and then
7088                  (Ekind (Entity (Exp)) = E_Constant
7089                    or else Ekind (Entity (Exp)) = E_Enumeration_Literal);
7090          end if;
7091       end Is_Constant_Bound;
7092
7093    --  Start of processing for Is_Variable_Sized_Record
7094
7095    begin
7096       pragma Assert (Is_Record_Type (E));
7097
7098       Comp := First_Entity (E);
7099       while Present (Comp) loop
7100          Comp_Typ := Etype (Comp);
7101
7102          if Is_Record_Type (Comp_Typ) then
7103
7104             --  Recursive call if the record type has discriminants
7105
7106             if Has_Discriminants (Comp_Typ)
7107               and then Is_Variable_Size_Record (Comp_Typ)
7108             then
7109                return True;
7110             end if;
7111
7112          elsif Is_Array_Type (Comp_Typ) then
7113
7114             --  Check if some index is initialized with a non-constant value
7115
7116             Idx := First_Index (Comp_Typ);
7117             while Present (Idx) loop
7118                if Nkind (Idx) = N_Range then
7119                   if not Is_Constant_Bound (Low_Bound  (Idx))
7120                        or else
7121                      not Is_Constant_Bound (High_Bound (Idx))
7122                   then
7123                      return True;
7124                   end if;
7125                end if;
7126
7127                Idx := Next_Index (Idx);
7128             end loop;
7129          end if;
7130
7131          Next_Entity (Comp);
7132       end loop;
7133
7134       return False;
7135    end Is_Variable_Size_Record;
7136
7137    ----------------------------------------
7138    -- Make_Controlling_Function_Wrappers --
7139    ----------------------------------------
7140
7141    procedure Make_Controlling_Function_Wrappers
7142      (Tag_Typ   : Entity_Id;
7143       Decl_List : out List_Id;
7144       Body_List : out List_Id)
7145    is
7146       Loc         : constant Source_Ptr := Sloc (Tag_Typ);
7147       Prim_Elmt   : Elmt_Id;
7148       Subp        : Entity_Id;
7149       Actual_List : List_Id;
7150       Formal_List : List_Id;
7151       Formal      : Entity_Id;
7152       Par_Formal  : Entity_Id;
7153       Formal_Node : Node_Id;
7154       Func_Body   : Node_Id;
7155       Func_Decl   : Node_Id;
7156       Func_Spec   : Node_Id;
7157       Return_Stmt : Node_Id;
7158
7159    begin
7160       Decl_List := New_List;
7161       Body_List := New_List;
7162
7163       Prim_Elmt := First_Elmt (Primitive_Operations (Tag_Typ));
7164
7165       while Present (Prim_Elmt) loop
7166          Subp := Node (Prim_Elmt);
7167
7168          --  If a primitive function with a controlling result of the type has
7169          --  not been overridden by the user, then we must create a wrapper
7170          --  function here that effectively overrides it and invokes the
7171          --  (non-abstract) parent function. This can only occur for a null
7172          --  extension. Note that functions with anonymous controlling access
7173          --  results don't qualify and must be overridden. We also exclude
7174          --  Input attributes, since each type will have its own version of
7175          --  Input constructed by the expander. The test for Comes_From_Source
7176          --  is needed to distinguish inherited operations from renamings
7177          --  (which also have Alias set).
7178
7179          --  The function may be abstract, or require_Overriding may be set
7180          --  for it, because tests for null extensions may already have reset
7181          --  the Is_Abstract_Subprogram_Flag. If Requires_Overriding is not
7182          --  set, functions that need wrappers are recognized by having an
7183          --  alias that returns the parent type.
7184
7185          if Comes_From_Source (Subp)
7186            or else No (Alias (Subp))
7187            or else Ekind (Subp) /= E_Function
7188            or else not Has_Controlling_Result (Subp)
7189            or else Is_Access_Type (Etype (Subp))
7190            or else Is_Abstract_Subprogram (Alias (Subp))
7191            or else Is_TSS (Subp, TSS_Stream_Input)
7192          then
7193             goto Next_Prim;
7194
7195          elsif Is_Abstract_Subprogram (Subp)
7196            or else Requires_Overriding (Subp)
7197            or else
7198              (Is_Null_Extension (Etype (Subp))
7199                and then Etype (Alias (Subp)) /= Etype (Subp))
7200          then
7201             Formal_List := No_List;
7202             Formal := First_Formal (Subp);
7203
7204             if Present (Formal) then
7205                Formal_List := New_List;
7206
7207                while Present (Formal) loop
7208                   Append
7209                     (Make_Parameter_Specification
7210                        (Loc,
7211                         Defining_Identifier =>
7212                           Make_Defining_Identifier (Sloc (Formal),
7213                             Chars => Chars (Formal)),
7214                         In_Present  => In_Present (Parent (Formal)),
7215                         Out_Present => Out_Present (Parent (Formal)),
7216                         Null_Exclusion_Present =>
7217                           Null_Exclusion_Present (Parent (Formal)),
7218                         Parameter_Type =>
7219                           New_Reference_To (Etype (Formal), Loc),
7220                         Expression =>
7221                           New_Copy_Tree (Expression (Parent (Formal)))),
7222                      Formal_List);
7223
7224                   Next_Formal (Formal);
7225                end loop;
7226             end if;
7227
7228             Func_Spec :=
7229               Make_Function_Specification (Loc,
7230                 Defining_Unit_Name       =>
7231                   Make_Defining_Identifier (Loc,
7232                     Chars => Chars (Subp)),
7233                 Parameter_Specifications => Formal_List,
7234                 Result_Definition        =>
7235                   New_Reference_To (Etype (Subp), Loc));
7236
7237             Func_Decl := Make_Subprogram_Declaration (Loc, Func_Spec);
7238             Append_To (Decl_List, Func_Decl);
7239
7240             --  Build a wrapper body that calls the parent function. The body
7241             --  contains a single return statement that returns an extension
7242             --  aggregate whose ancestor part is a call to the parent function,
7243             --  passing the formals as actuals (with any controlling arguments
7244             --  converted to the types of the corresponding formals of the
7245             --  parent function, which might be anonymous access types), and
7246             --  having a null extension.
7247
7248             Formal      := First_Formal (Subp);
7249             Par_Formal  := First_Formal (Alias (Subp));
7250             Formal_Node := First (Formal_List);
7251
7252             if Present (Formal) then
7253                Actual_List := New_List;
7254             else
7255                Actual_List := No_List;
7256             end if;
7257
7258             while Present (Formal) loop
7259                if Is_Controlling_Formal (Formal) then
7260                   Append_To (Actual_List,
7261                     Make_Type_Conversion (Loc,
7262                       Subtype_Mark =>
7263                         New_Occurrence_Of (Etype (Par_Formal), Loc),
7264                       Expression   =>
7265                         New_Reference_To
7266                           (Defining_Identifier (Formal_Node), Loc)));
7267                else
7268                   Append_To
7269                     (Actual_List,
7270                      New_Reference_To
7271                        (Defining_Identifier (Formal_Node), Loc));
7272                end if;
7273
7274                Next_Formal (Formal);
7275                Next_Formal (Par_Formal);
7276                Next (Formal_Node);
7277             end loop;
7278
7279             Return_Stmt :=
7280               Make_Simple_Return_Statement (Loc,
7281                 Expression =>
7282                   Make_Extension_Aggregate (Loc,
7283                     Ancestor_Part =>
7284                       Make_Function_Call (Loc,
7285                         Name => New_Reference_To (Alias (Subp), Loc),
7286                         Parameter_Associations => Actual_List),
7287                     Null_Record_Present => True));
7288
7289             Func_Body :=
7290               Make_Subprogram_Body (Loc,
7291                 Specification => New_Copy_Tree (Func_Spec),
7292                 Declarations => Empty_List,
7293                 Handled_Statement_Sequence =>
7294                   Make_Handled_Sequence_Of_Statements (Loc,
7295                     Statements => New_List (Return_Stmt)));
7296
7297             Set_Defining_Unit_Name
7298               (Specification (Func_Body),
7299                 Make_Defining_Identifier (Loc, Chars (Subp)));
7300
7301             Append_To (Body_List, Func_Body);
7302
7303             --  Replace the inherited function with the wrapper function
7304             --  in the primitive operations list.
7305
7306             Override_Dispatching_Operation
7307               (Tag_Typ, Subp, New_Op => Defining_Unit_Name (Func_Spec));
7308          end if;
7309
7310       <<Next_Prim>>
7311          Next_Elmt (Prim_Elmt);
7312       end loop;
7313    end Make_Controlling_Function_Wrappers;
7314
7315    ------------------
7316    -- Make_Eq_Case --
7317    ------------------
7318
7319    --  <Make_Eq_If shared components>
7320    --  case X.D1 is
7321    --     when V1 => <Make_Eq_Case> on subcomponents
7322    --     ...
7323    --     when Vn => <Make_Eq_Case> on subcomponents
7324    --  end case;
7325
7326    function Make_Eq_Case
7327      (E     : Entity_Id;
7328       CL    : Node_Id;
7329       Discr : Entity_Id := Empty) return List_Id
7330    is
7331       Loc      : constant Source_Ptr := Sloc (E);
7332       Result   : constant List_Id    := New_List;
7333       Variant  : Node_Id;
7334       Alt_List : List_Id;
7335
7336    begin
7337       Append_To (Result, Make_Eq_If (E, Component_Items (CL)));
7338
7339       if No (Variant_Part (CL)) then
7340          return Result;
7341       end if;
7342
7343       Variant := First_Non_Pragma (Variants (Variant_Part (CL)));
7344
7345       if No (Variant) then
7346          return Result;
7347       end if;
7348
7349       Alt_List := New_List;
7350
7351       while Present (Variant) loop
7352          Append_To (Alt_List,
7353            Make_Case_Statement_Alternative (Loc,
7354              Discrete_Choices => New_Copy_List (Discrete_Choices (Variant)),
7355              Statements => Make_Eq_Case (E, Component_List (Variant))));
7356
7357          Next_Non_Pragma (Variant);
7358       end loop;
7359
7360       --  If we have an Unchecked_Union, use one of the parameters that
7361       --  captures the discriminants.
7362
7363       if Is_Unchecked_Union (E) then
7364          Append_To (Result,
7365            Make_Case_Statement (Loc,
7366              Expression => New_Reference_To (Discr, Loc),
7367              Alternatives => Alt_List));
7368
7369       else
7370          Append_To (Result,
7371            Make_Case_Statement (Loc,
7372              Expression =>
7373                Make_Selected_Component (Loc,
7374                  Prefix => Make_Identifier (Loc, Name_X),
7375                  Selector_Name => New_Copy (Name (Variant_Part (CL)))),
7376              Alternatives => Alt_List));
7377       end if;
7378
7379       return Result;
7380    end Make_Eq_Case;
7381
7382    ----------------
7383    -- Make_Eq_If --
7384    ----------------
7385
7386    --  Generates:
7387
7388    --    if
7389    --      X.C1 /= Y.C1
7390    --        or else
7391    --      X.C2 /= Y.C2
7392    --        ...
7393    --    then
7394    --       return False;
7395    --    end if;
7396
7397    --  or a null statement if the list L is empty
7398
7399    function Make_Eq_If
7400      (E : Entity_Id;
7401       L : List_Id) return Node_Id
7402    is
7403       Loc        : constant Source_Ptr := Sloc (E);
7404       C          : Node_Id;
7405       Field_Name : Name_Id;
7406       Cond       : Node_Id;
7407
7408    begin
7409       if No (L) then
7410          return Make_Null_Statement (Loc);
7411
7412       else
7413          Cond := Empty;
7414
7415          C := First_Non_Pragma (L);
7416          while Present (C) loop
7417             Field_Name := Chars (Defining_Identifier (C));
7418
7419             --  The tags must not be compared: they are not part of the value.
7420             --  Ditto for the controller component, if present.
7421
7422             --  Note also that in the following, we use Make_Identifier for
7423             --  the component names. Use of New_Reference_To to identify the
7424             --  components would be incorrect because the wrong entities for
7425             --  discriminants could be picked up in the private type case.
7426
7427             if Field_Name /= Name_uTag
7428                  and then
7429                Field_Name /= Name_uController
7430             then
7431                Evolve_Or_Else (Cond,
7432                  Make_Op_Ne (Loc,
7433                    Left_Opnd =>
7434                      Make_Selected_Component (Loc,
7435                        Prefix        => Make_Identifier (Loc, Name_X),
7436                        Selector_Name =>
7437                          Make_Identifier (Loc, Field_Name)),
7438
7439                    Right_Opnd =>
7440                      Make_Selected_Component (Loc,
7441                        Prefix        => Make_Identifier (Loc, Name_Y),
7442                        Selector_Name =>
7443                          Make_Identifier (Loc, Field_Name))));
7444             end if;
7445
7446             Next_Non_Pragma (C);
7447          end loop;
7448
7449          if No (Cond) then
7450             return Make_Null_Statement (Loc);
7451
7452          else
7453             return
7454               Make_Implicit_If_Statement (E,
7455                 Condition => Cond,
7456                 Then_Statements => New_List (
7457                   Make_Simple_Return_Statement (Loc,
7458                     Expression => New_Occurrence_Of (Standard_False, Loc))));
7459          end if;
7460       end if;
7461    end Make_Eq_If;
7462
7463    -------------------------------
7464    -- Make_Null_Procedure_Specs --
7465    -------------------------------
7466
7467    procedure Make_Null_Procedure_Specs
7468      (Tag_Typ   : Entity_Id;
7469       Decl_List : out List_Id)
7470    is
7471       Loc         : constant Source_Ptr := Sloc (Tag_Typ);
7472       Formal      : Entity_Id;
7473       Formal_List : List_Id;
7474       Parent_Subp : Entity_Id;
7475       Prim_Elmt   : Elmt_Id;
7476       Proc_Spec   : Node_Id;
7477       Proc_Decl   : Node_Id;
7478       Subp        : Entity_Id;
7479
7480       function Is_Null_Interface_Primitive (E : Entity_Id) return Boolean;
7481       --  Returns True if E is a null procedure that is an interface primitive
7482
7483       ---------------------------------
7484       -- Is_Null_Interface_Primitive --
7485       ---------------------------------
7486
7487       function Is_Null_Interface_Primitive (E : Entity_Id) return Boolean is
7488       begin
7489          return Comes_From_Source (E)
7490            and then Is_Dispatching_Operation (E)
7491            and then Ekind (E) = E_Procedure
7492            and then Null_Present (Parent (E))
7493            and then Is_Interface (Find_Dispatching_Type (E));
7494       end Is_Null_Interface_Primitive;
7495
7496    --  Start of processing for Make_Null_Procedure_Specs
7497
7498    begin
7499       Decl_List := New_List;
7500       Prim_Elmt := First_Elmt (Primitive_Operations (Tag_Typ));
7501       while Present (Prim_Elmt) loop
7502          Subp := Node (Prim_Elmt);
7503
7504          --  If a null procedure inherited from an interface has not been
7505          --  overridden, then we build a null procedure declaration to
7506          --  override the inherited procedure.
7507
7508          Parent_Subp := Alias (Subp);
7509
7510          if Present (Parent_Subp)
7511            and then Is_Null_Interface_Primitive (Parent_Subp)
7512          then
7513             Formal_List := No_List;
7514             Formal := First_Formal (Subp);
7515
7516             if Present (Formal) then
7517                Formal_List := New_List;
7518
7519                while Present (Formal) loop
7520                   Append
7521                     (Make_Parameter_Specification (Loc,
7522                        Defining_Identifier =>
7523                          Make_Defining_Identifier (Sloc (Formal),
7524                            Chars => Chars (Formal)),
7525                        In_Present  => In_Present (Parent (Formal)),
7526                        Out_Present => Out_Present (Parent (Formal)),
7527                        Null_Exclusion_Present =>
7528                          Null_Exclusion_Present (Parent (Formal)),
7529                        Parameter_Type =>
7530                          New_Reference_To (Etype (Formal), Loc),
7531                        Expression =>
7532                          New_Copy_Tree (Expression (Parent (Formal)))),
7533                      Formal_List);
7534
7535                   Next_Formal (Formal);
7536                end loop;
7537             end if;
7538
7539             Proc_Spec :=
7540               Make_Procedure_Specification (Loc,
7541                 Defining_Unit_Name =>
7542                   Make_Defining_Identifier (Loc, Chars (Subp)),
7543                 Parameter_Specifications => Formal_List);
7544             Set_Null_Present (Proc_Spec);
7545
7546             Proc_Decl := Make_Subprogram_Declaration (Loc, Proc_Spec);
7547             Append_To (Decl_List, Proc_Decl);
7548             Analyze (Proc_Decl);
7549          end if;
7550
7551          Next_Elmt (Prim_Elmt);
7552       end loop;
7553    end Make_Null_Procedure_Specs;
7554
7555    -------------------------------------
7556    -- Make_Predefined_Primitive_Specs --
7557    -------------------------------------
7558
7559    procedure Make_Predefined_Primitive_Specs
7560      (Tag_Typ     : Entity_Id;
7561       Predef_List : out List_Id;
7562       Renamed_Eq  : out Entity_Id)
7563    is
7564       Loc       : constant Source_Ptr := Sloc (Tag_Typ);
7565       Res       : constant List_Id    := New_List;
7566       Prim      : Elmt_Id;
7567       Eq_Needed : Boolean;
7568       Eq_Spec   : Node_Id;
7569       Eq_Name   : Name_Id := Name_Op_Eq;
7570
7571       function Is_Predefined_Eq_Renaming (Prim : Node_Id) return Boolean;
7572       --  Returns true if Prim is a renaming of an unresolved predefined
7573       --  equality operation.
7574
7575       -------------------------------
7576       -- Is_Predefined_Eq_Renaming --
7577       -------------------------------
7578
7579       function Is_Predefined_Eq_Renaming (Prim : Node_Id) return Boolean is
7580       begin
7581          return Chars (Prim) /= Name_Op_Eq
7582            and then Present (Alias (Prim))
7583            and then Comes_From_Source (Prim)
7584            and then Is_Intrinsic_Subprogram (Alias (Prim))
7585            and then Chars (Alias (Prim)) = Name_Op_Eq;
7586       end Is_Predefined_Eq_Renaming;
7587
7588    --  Start of processing for Make_Predefined_Primitive_Specs
7589
7590    begin
7591       Renamed_Eq := Empty;
7592
7593       --  Spec of _Size
7594
7595       Append_To (Res, Predef_Spec_Or_Body (Loc,
7596         Tag_Typ => Tag_Typ,
7597         Name    => Name_uSize,
7598         Profile => New_List (
7599           Make_Parameter_Specification (Loc,
7600             Defining_Identifier => Make_Defining_Identifier (Loc, Name_X),
7601             Parameter_Type      => New_Reference_To (Tag_Typ, Loc))),
7602
7603         Ret_Type => Standard_Long_Long_Integer));
7604
7605       --  Spec of _Alignment
7606
7607       Append_To (Res, Predef_Spec_Or_Body (Loc,
7608         Tag_Typ => Tag_Typ,
7609         Name    => Name_uAlignment,
7610         Profile => New_List (
7611           Make_Parameter_Specification (Loc,
7612             Defining_Identifier => Make_Defining_Identifier (Loc, Name_X),
7613             Parameter_Type      => New_Reference_To (Tag_Typ, Loc))),
7614
7615         Ret_Type => Standard_Integer));
7616
7617       --  Specs for dispatching stream attributes
7618
7619       declare
7620          Stream_Op_TSS_Names :
7621            constant array (Integer range <>) of TSS_Name_Type :=
7622              (TSS_Stream_Read,
7623               TSS_Stream_Write,
7624               TSS_Stream_Input,
7625               TSS_Stream_Output);
7626
7627       begin
7628          for Op in Stream_Op_TSS_Names'Range loop
7629             if Stream_Operation_OK (Tag_Typ, Stream_Op_TSS_Names (Op)) then
7630                Append_To (Res,
7631                  Predef_Stream_Attr_Spec (Loc, Tag_Typ,
7632                   Stream_Op_TSS_Names (Op)));
7633             end if;
7634          end loop;
7635       end;
7636
7637       --  Spec of "=" is expanded if the type is not limited and if a
7638       --  user defined "=" was not already declared for the non-full
7639       --  view of a private extension
7640
7641       if not Is_Limited_Type (Tag_Typ) then
7642          Eq_Needed := True;
7643          Prim := First_Elmt (Primitive_Operations (Tag_Typ));
7644          while Present (Prim) loop
7645
7646             --  If a primitive is encountered that renames the predefined
7647             --  equality operator before reaching any explicit equality
7648             --  primitive, then we still need to create a predefined
7649             --  equality function, because calls to it can occur via
7650             --  the renaming. A new name is created for the equality
7651             --  to avoid conflicting with any user-defined equality.
7652             --  (Note that this doesn't account for renamings of
7653             --  equality nested within subpackages???)
7654
7655             if Is_Predefined_Eq_Renaming (Node (Prim)) then
7656                Eq_Name := New_External_Name (Chars (Node (Prim)), 'E');
7657
7658             --  User-defined equality
7659
7660             elsif Chars (Node (Prim)) = Name_Op_Eq
7661               and then Etype (First_Formal (Node (Prim))) =
7662                          Etype (Next_Formal (First_Formal (Node (Prim))))
7663               and then Base_Type (Etype (Node (Prim))) = Standard_Boolean
7664             then
7665                if No (Alias (Node (Prim)))
7666                  or else Nkind (Unit_Declaration_Node (Node (Prim))) =
7667                            N_Subprogram_Renaming_Declaration
7668                then
7669                   Eq_Needed := False;
7670                   exit;
7671
7672                --  If the parent is not an interface type and has an abstract
7673                --  equality function, the inherited equality is abstract as
7674                --  well, and no body can be created for it.
7675
7676                elsif not Is_Interface (Etype (Tag_Typ))
7677                  and then Present (Alias (Node (Prim)))
7678                  and then Is_Abstract_Subprogram (Alias (Node (Prim)))
7679                then
7680                   Eq_Needed := False;
7681                   exit;
7682
7683                --  If the type has an equality function corresponding with
7684                --  a primitive defined in an interface type, the inherited
7685                --  equality is abstract as well, and no body can be created
7686                --  for it.
7687
7688                elsif Present (Alias (Node (Prim)))
7689                  and then Comes_From_Source (Ultimate_Alias (Node (Prim)))
7690                  and then
7691                    Is_Interface
7692                      (Find_Dispatching_Type (Ultimate_Alias (Node (Prim))))
7693                then
7694                   Eq_Needed := False;
7695                   exit;
7696                end if;
7697             end if;
7698
7699             Next_Elmt (Prim);
7700          end loop;
7701
7702          --  If a renaming of predefined equality was found but there was no
7703          --  user-defined equality (so Eq_Needed is still true), then set the
7704          --  name back to Name_Op_Eq. But in the case where a user-defined
7705          --  equality was located after such a renaming, then the predefined
7706          --  equality function is still needed, so Eq_Needed must be set back
7707          --  to True.
7708
7709          if Eq_Name /= Name_Op_Eq then
7710             if Eq_Needed then
7711                Eq_Name := Name_Op_Eq;
7712             else
7713                Eq_Needed := True;
7714             end if;
7715          end if;
7716
7717          if Eq_Needed then
7718             Eq_Spec := Predef_Spec_Or_Body (Loc,
7719               Tag_Typ => Tag_Typ,
7720               Name    => Eq_Name,
7721               Profile => New_List (
7722                 Make_Parameter_Specification (Loc,
7723                   Defining_Identifier =>
7724                     Make_Defining_Identifier (Loc, Name_X),
7725                     Parameter_Type      => New_Reference_To (Tag_Typ, Loc)),
7726                 Make_Parameter_Specification (Loc,
7727                   Defining_Identifier =>
7728                     Make_Defining_Identifier (Loc, Name_Y),
7729                     Parameter_Type      => New_Reference_To (Tag_Typ, Loc))),
7730                 Ret_Type => Standard_Boolean);
7731             Append_To (Res, Eq_Spec);
7732
7733             if Eq_Name /= Name_Op_Eq then
7734                Renamed_Eq := Defining_Unit_Name (Specification (Eq_Spec));
7735
7736                Prim := First_Elmt (Primitive_Operations (Tag_Typ));
7737                while Present (Prim) loop
7738
7739                   --  Any renamings of equality that appeared before an
7740                   --  overriding equality must be updated to refer to the
7741                   --  entity for the predefined equality, otherwise calls via
7742                   --  the renaming would get incorrectly resolved to call the
7743                   --  user-defined equality function.
7744
7745                   if Is_Predefined_Eq_Renaming (Node (Prim)) then
7746                      Set_Alias (Node (Prim), Renamed_Eq);
7747
7748                   --  Exit upon encountering a user-defined equality
7749
7750                   elsif Chars (Node (Prim)) = Name_Op_Eq
7751                     and then No (Alias (Node (Prim)))
7752                   then
7753                      exit;
7754                   end if;
7755
7756                   Next_Elmt (Prim);
7757                end loop;
7758             end if;
7759          end if;
7760
7761          --  Spec for dispatching assignment
7762
7763          Append_To (Res, Predef_Spec_Or_Body (Loc,
7764            Tag_Typ => Tag_Typ,
7765            Name    => Name_uAssign,
7766            Profile => New_List (
7767              Make_Parameter_Specification (Loc,
7768                Defining_Identifier => Make_Defining_Identifier (Loc, Name_X),
7769                Out_Present         => True,
7770                Parameter_Type      => New_Reference_To (Tag_Typ, Loc)),
7771
7772              Make_Parameter_Specification (Loc,
7773                Defining_Identifier => Make_Defining_Identifier (Loc, Name_Y),
7774                Parameter_Type      => New_Reference_To (Tag_Typ, Loc)))));
7775       end if;
7776
7777       --  Ada 2005: Generate declarations for the following primitive
7778       --  operations for limited interfaces and synchronized types that
7779       --  implement a limited interface.
7780
7781       --    Disp_Asynchronous_Select
7782       --    Disp_Conditional_Select
7783       --    Disp_Get_Prim_Op_Kind
7784       --    Disp_Get_Task_Id
7785       --    Disp_Requeue
7786       --    Disp_Timed_Select
7787
7788       --  These operations cannot be implemented on VM targets, so we simply
7789       --  disable their generation in this case. We also disable generation
7790       --  of these bodies if No_Dispatching_Calls is active.
7791
7792       if Ada_Version >= Ada_05
7793         and then VM_Target = No_VM
7794         and then RTE_Available (RE_Select_Specific_Data)
7795       then
7796          --  These primitives are defined abstract in interface types
7797
7798          if Is_Interface (Tag_Typ)
7799            and then Is_Limited_Record (Tag_Typ)
7800          then
7801             Append_To (Res,
7802               Make_Abstract_Subprogram_Declaration (Loc,
7803                 Specification =>
7804                   Make_Disp_Asynchronous_Select_Spec (Tag_Typ)));
7805
7806             Append_To (Res,
7807               Make_Abstract_Subprogram_Declaration (Loc,
7808                 Specification =>
7809                   Make_Disp_Conditional_Select_Spec (Tag_Typ)));
7810
7811             Append_To (Res,
7812               Make_Abstract_Subprogram_Declaration (Loc,
7813                 Specification =>
7814                   Make_Disp_Get_Prim_Op_Kind_Spec (Tag_Typ)));
7815
7816             Append_To (Res,
7817               Make_Abstract_Subprogram_Declaration (Loc,
7818                 Specification =>
7819                   Make_Disp_Get_Task_Id_Spec (Tag_Typ)));
7820
7821             Append_To (Res,
7822               Make_Abstract_Subprogram_Declaration (Loc,
7823                 Specification =>
7824                   Make_Disp_Requeue_Spec (Tag_Typ)));
7825
7826             Append_To (Res,
7827               Make_Abstract_Subprogram_Declaration (Loc,
7828                 Specification =>
7829                   Make_Disp_Timed_Select_Spec (Tag_Typ)));
7830
7831          --  If the ancestor is an interface type we declare non-abstract
7832          --  primitives to override the abstract primitives of the interface
7833          --  type.
7834
7835          elsif (not Is_Interface (Tag_Typ)
7836                   and then Is_Interface (Etype (Tag_Typ))
7837                   and then Is_Limited_Record (Etype (Tag_Typ)))
7838              or else
7839                (Is_Concurrent_Record_Type (Tag_Typ)
7840                   and then Has_Interfaces (Tag_Typ))
7841          then
7842             Append_To (Res,
7843               Make_Subprogram_Declaration (Loc,
7844                 Specification =>
7845                   Make_Disp_Asynchronous_Select_Spec (Tag_Typ)));
7846
7847             Append_To (Res,
7848               Make_Subprogram_Declaration (Loc,
7849                 Specification =>
7850                   Make_Disp_Conditional_Select_Spec (Tag_Typ)));
7851
7852             Append_To (Res,
7853               Make_Subprogram_Declaration (Loc,
7854                 Specification =>
7855                   Make_Disp_Get_Prim_Op_Kind_Spec (Tag_Typ)));
7856
7857             Append_To (Res,
7858               Make_Subprogram_Declaration (Loc,
7859                 Specification =>
7860                   Make_Disp_Get_Task_Id_Spec (Tag_Typ)));
7861
7862             Append_To (Res,
7863               Make_Subprogram_Declaration (Loc,
7864                 Specification =>
7865                   Make_Disp_Requeue_Spec (Tag_Typ)));
7866
7867             Append_To (Res,
7868               Make_Subprogram_Declaration (Loc,
7869                 Specification =>
7870                   Make_Disp_Timed_Select_Spec (Tag_Typ)));
7871          end if;
7872       end if;
7873
7874       --  Specs for finalization actions that may be required in case a future
7875       --  extension contain a controlled element. We generate those only for
7876       --  root tagged types where they will get dummy bodies or when the type
7877       --  has controlled components and their body must be generated. It is
7878       --  also impossible to provide those for tagged types defined within
7879       --  s-finimp since it would involve circularity problems
7880
7881       if In_Finalization_Root (Tag_Typ) then
7882          null;
7883
7884       --  We also skip these if finalization is not available
7885
7886       elsif Restriction_Active (No_Finalization) then
7887          null;
7888
7889       elsif Etype (Tag_Typ) = Tag_Typ
7890         or else Needs_Finalization (Tag_Typ)
7891
7892          --  Ada 2005 (AI-251): We must also generate these subprograms if
7893          --  the immediate ancestor is an interface to ensure the correct
7894          --  initialization of its dispatch table.
7895
7896         or else (not Is_Interface (Tag_Typ)
7897                    and then Is_Interface (Etype (Tag_Typ)))
7898
7899          --  Ada 205 (AI-251): We must also generate these subprograms if
7900          --  the parent of an nonlimited interface is a limited interface
7901
7902         or else (Is_Interface (Tag_Typ)
7903                   and then not Is_Limited_Interface (Tag_Typ)
7904                   and then Is_Limited_Interface (Etype (Tag_Typ)))
7905       then
7906          if not Is_Limited_Type (Tag_Typ) then
7907             Append_To (Res,
7908               Predef_Deep_Spec (Loc, Tag_Typ, TSS_Deep_Adjust));
7909          end if;
7910
7911          Append_To (Res, Predef_Deep_Spec (Loc, Tag_Typ, TSS_Deep_Finalize));
7912       end if;
7913
7914       Predef_List := Res;
7915    end Make_Predefined_Primitive_Specs;
7916
7917    ---------------------------------
7918    -- Needs_Simple_Initialization --
7919    ---------------------------------
7920
7921    function Needs_Simple_Initialization (T : Entity_Id) return Boolean is
7922    begin
7923       --  Check for private type, in which case test applies to the underlying
7924       --  type of the private type.
7925
7926       if Is_Private_Type (T) then
7927          declare
7928             RT : constant Entity_Id := Underlying_Type (T);
7929
7930          begin
7931             if Present (RT) then
7932                return Needs_Simple_Initialization (RT);
7933             else
7934                return False;
7935             end if;
7936          end;
7937
7938       --  Cases needing simple initialization are access types, and, if pragma
7939       --  Normalize_Scalars or Initialize_Scalars is in effect, then all scalar
7940       --  types.
7941
7942       elsif Is_Access_Type (T)
7943         or else (Init_Or_Norm_Scalars and then (Is_Scalar_Type (T)))
7944       then
7945          return True;
7946
7947       --  If Initialize/Normalize_Scalars is in effect, string objects also
7948       --  need initialization, unless they are created in the course of
7949       --  expanding an aggregate (since in the latter case they will be
7950       --  filled with appropriate initializing values before they are used).
7951
7952       elsif Init_Or_Norm_Scalars
7953         and then
7954           (Root_Type (T) = Standard_String
7955              or else Root_Type (T) = Standard_Wide_String
7956              or else Root_Type (T) = Standard_Wide_Wide_String)
7957         and then
7958           (not Is_Itype (T)
7959             or else Nkind (Associated_Node_For_Itype (T)) /= N_Aggregate)
7960       then
7961          return True;
7962
7963       else
7964          return False;
7965       end if;
7966    end Needs_Simple_Initialization;
7967
7968    ----------------------
7969    -- Predef_Deep_Spec --
7970    ----------------------
7971
7972    function Predef_Deep_Spec
7973      (Loc      : Source_Ptr;
7974       Tag_Typ  : Entity_Id;
7975       Name     : TSS_Name_Type;
7976       For_Body : Boolean := False) return Node_Id
7977    is
7978       Prof   : List_Id;
7979       Type_B : Entity_Id;
7980
7981    begin
7982       if Name = TSS_Deep_Finalize then
7983          Prof := New_List;
7984          Type_B := Standard_Boolean;
7985
7986       else
7987          Prof := New_List (
7988            Make_Parameter_Specification (Loc,
7989              Defining_Identifier => Make_Defining_Identifier (Loc, Name_L),
7990              In_Present          => True,
7991              Out_Present         => True,
7992              Parameter_Type      =>
7993                New_Reference_To (RTE (RE_Finalizable_Ptr), Loc)));
7994          Type_B := Standard_Short_Short_Integer;
7995       end if;
7996
7997       Append_To (Prof,
7998            Make_Parameter_Specification (Loc,
7999              Defining_Identifier => Make_Defining_Identifier (Loc, Name_V),
8000              In_Present          => True,
8001              Out_Present         => True,
8002              Parameter_Type      => New_Reference_To (Tag_Typ, Loc)));
8003
8004       Append_To (Prof,
8005            Make_Parameter_Specification (Loc,
8006              Defining_Identifier => Make_Defining_Identifier (Loc, Name_B),
8007              Parameter_Type      => New_Reference_To (Type_B, Loc)));
8008
8009       return Predef_Spec_Or_Body (Loc,
8010         Name     => Make_TSS_Name (Tag_Typ, Name),
8011         Tag_Typ  => Tag_Typ,
8012         Profile  => Prof,
8013         For_Body => For_Body);
8014
8015    exception
8016       when RE_Not_Available =>
8017          return Empty;
8018    end Predef_Deep_Spec;
8019
8020    -------------------------
8021    -- Predef_Spec_Or_Body --
8022    -------------------------
8023
8024    function Predef_Spec_Or_Body
8025      (Loc      : Source_Ptr;
8026       Tag_Typ  : Entity_Id;
8027       Name     : Name_Id;
8028       Profile  : List_Id;
8029       Ret_Type : Entity_Id := Empty;
8030       For_Body : Boolean := False) return Node_Id
8031    is
8032       Id   : constant Entity_Id := Make_Defining_Identifier (Loc, Name);
8033       Spec : Node_Id;
8034
8035    begin
8036       Set_Is_Public (Id, Is_Public (Tag_Typ));
8037
8038       --  The internal flag is set to mark these declarations because they have
8039       --  specific properties. First, they are primitives even if they are not
8040       --  defined in the type scope (the freezing point is not necessarily in
8041       --  the same scope). Second, the predefined equality can be overridden by
8042       --  a user-defined equality, no body will be generated in this case.
8043
8044       Set_Is_Internal (Id);
8045
8046       if not Debug_Generated_Code then
8047          Set_Debug_Info_Off (Id);
8048       end if;
8049
8050       if No (Ret_Type) then
8051          Spec :=
8052            Make_Procedure_Specification (Loc,
8053              Defining_Unit_Name       => Id,
8054              Parameter_Specifications => Profile);
8055       else
8056          Spec :=
8057            Make_Function_Specification (Loc,
8058              Defining_Unit_Name       => Id,
8059              Parameter_Specifications => Profile,
8060              Result_Definition        =>
8061                New_Reference_To (Ret_Type, Loc));
8062       end if;
8063
8064       if Is_Interface (Tag_Typ) then
8065          return Make_Abstract_Subprogram_Declaration (Loc, Spec);
8066
8067       --  If body case, return empty subprogram body. Note that this is ill-
8068       --  formed, because there is not even a null statement, and certainly not
8069       --  a return in the function case. The caller is expected to do surgery
8070       --  on the body to add the appropriate stuff.
8071
8072       elsif For_Body then
8073          return Make_Subprogram_Body (Loc, Spec, Empty_List, Empty);
8074
8075       --  For the case of an Input attribute predefined for an abstract type,
8076       --  generate an abstract specification. This will never be called, but we
8077       --  need the slot allocated in the dispatching table so that attributes
8078       --  typ'Class'Input and typ'Class'Output will work properly.
8079
8080       elsif Is_TSS (Name, TSS_Stream_Input)
8081         and then Is_Abstract_Type (Tag_Typ)
8082       then
8083          return Make_Abstract_Subprogram_Declaration (Loc, Spec);
8084
8085       --  Normal spec case, where we return a subprogram declaration
8086
8087       else
8088          return Make_Subprogram_Declaration (Loc, Spec);
8089       end if;
8090    end Predef_Spec_Or_Body;
8091
8092    -----------------------------
8093    -- Predef_Stream_Attr_Spec --
8094    -----------------------------
8095
8096    function Predef_Stream_Attr_Spec
8097      (Loc      : Source_Ptr;
8098       Tag_Typ  : Entity_Id;
8099       Name     : TSS_Name_Type;
8100       For_Body : Boolean := False) return Node_Id
8101    is
8102       Ret_Type : Entity_Id;
8103
8104    begin
8105       if Name = TSS_Stream_Input then
8106          Ret_Type := Tag_Typ;
8107       else
8108          Ret_Type := Empty;
8109       end if;
8110
8111       return Predef_Spec_Or_Body (Loc,
8112         Name     => Make_TSS_Name (Tag_Typ, Name),
8113         Tag_Typ  => Tag_Typ,
8114         Profile  => Build_Stream_Attr_Profile (Loc, Tag_Typ, Name),
8115         Ret_Type => Ret_Type,
8116         For_Body => For_Body);
8117    end Predef_Stream_Attr_Spec;
8118
8119    ---------------------------------
8120    -- Predefined_Primitive_Bodies --
8121    ---------------------------------
8122
8123    function Predefined_Primitive_Bodies
8124      (Tag_Typ    : Entity_Id;
8125       Renamed_Eq : Entity_Id) return List_Id
8126    is
8127       Loc       : constant Source_Ptr := Sloc (Tag_Typ);
8128       Res       : constant List_Id    := New_List;
8129       Decl      : Node_Id;
8130       Prim      : Elmt_Id;
8131       Eq_Needed : Boolean;
8132       Eq_Name   : Name_Id;
8133       Ent       : Entity_Id;
8134
8135       pragma Warnings (Off, Ent);
8136
8137    begin
8138       pragma Assert (not Is_Interface (Tag_Typ));
8139
8140       --  See if we have a predefined "=" operator
8141
8142       if Present (Renamed_Eq) then
8143          Eq_Needed := True;
8144          Eq_Name   := Chars (Renamed_Eq);
8145
8146       --  If the parent is an interface type then it has defined all the
8147       --  predefined primitives abstract and we need to check if the type
8148       --  has some user defined "=" function to avoid generating it.
8149
8150       elsif Is_Interface (Etype (Tag_Typ)) then
8151          Eq_Needed := True;
8152          Eq_Name := Name_Op_Eq;
8153
8154          Prim := First_Elmt (Primitive_Operations (Tag_Typ));
8155          while Present (Prim) loop
8156             if Chars (Node (Prim)) = Name_Op_Eq
8157               and then not Is_Internal (Node (Prim))
8158             then
8159                Eq_Needed := False;
8160                Eq_Name := No_Name;
8161                exit;
8162             end if;
8163
8164             Next_Elmt (Prim);
8165          end loop;
8166
8167       else
8168          Eq_Needed := False;
8169          Eq_Name   := No_Name;
8170
8171          Prim := First_Elmt (Primitive_Operations (Tag_Typ));
8172          while Present (Prim) loop
8173             if Chars (Node (Prim)) = Name_Op_Eq
8174               and then Is_Internal (Node (Prim))
8175             then
8176                Eq_Needed := True;
8177                Eq_Name := Name_Op_Eq;
8178                exit;
8179             end if;
8180
8181             Next_Elmt (Prim);
8182          end loop;
8183       end if;
8184
8185       --  Body of _Alignment
8186
8187       Decl := Predef_Spec_Or_Body (Loc,
8188         Tag_Typ => Tag_Typ,
8189         Name    => Name_uAlignment,
8190         Profile => New_List (
8191           Make_Parameter_Specification (Loc,
8192             Defining_Identifier => Make_Defining_Identifier (Loc, Name_X),
8193             Parameter_Type      => New_Reference_To (Tag_Typ, Loc))),
8194
8195         Ret_Type => Standard_Integer,
8196         For_Body => True);
8197
8198       Set_Handled_Statement_Sequence (Decl,
8199         Make_Handled_Sequence_Of_Statements (Loc, New_List (
8200           Make_Simple_Return_Statement (Loc,
8201             Expression =>
8202               Make_Attribute_Reference (Loc,
8203                 Prefix => Make_Identifier (Loc, Name_X),
8204                 Attribute_Name  => Name_Alignment)))));
8205
8206       Append_To (Res, Decl);
8207
8208       --  Body of _Size
8209
8210       Decl := Predef_Spec_Or_Body (Loc,
8211         Tag_Typ => Tag_Typ,
8212         Name    => Name_uSize,
8213         Profile => New_List (
8214           Make_Parameter_Specification (Loc,
8215             Defining_Identifier => Make_Defining_Identifier (Loc, Name_X),
8216             Parameter_Type      => New_Reference_To (Tag_Typ, Loc))),
8217
8218         Ret_Type => Standard_Long_Long_Integer,
8219         For_Body => True);
8220
8221       Set_Handled_Statement_Sequence (Decl,
8222         Make_Handled_Sequence_Of_Statements (Loc, New_List (
8223           Make_Simple_Return_Statement (Loc,
8224             Expression =>
8225               Make_Attribute_Reference (Loc,
8226                 Prefix => Make_Identifier (Loc, Name_X),
8227                 Attribute_Name  => Name_Size)))));
8228
8229       Append_To (Res, Decl);
8230
8231       --  Bodies for Dispatching stream IO routines. We need these only for
8232       --  non-limited types (in the limited case there is no dispatching).
8233       --  We also skip them if dispatching or finalization are not available.
8234
8235       if Stream_Operation_OK (Tag_Typ, TSS_Stream_Read)
8236         and then No (TSS (Tag_Typ, TSS_Stream_Read))
8237       then
8238          Build_Record_Read_Procedure (Loc, Tag_Typ, Decl, Ent);
8239          Append_To (Res, Decl);
8240       end if;
8241
8242       if Stream_Operation_OK (Tag_Typ, TSS_Stream_Write)
8243         and then No (TSS (Tag_Typ, TSS_Stream_Write))
8244       then
8245          Build_Record_Write_Procedure (Loc, Tag_Typ, Decl, Ent);
8246          Append_To (Res, Decl);
8247       end if;
8248
8249       --  Skip body of _Input for the abstract case, since the corresponding
8250       --  spec is abstract (see Predef_Spec_Or_Body).
8251
8252       if not Is_Abstract_Type (Tag_Typ)
8253         and then Stream_Operation_OK (Tag_Typ, TSS_Stream_Input)
8254         and then No (TSS (Tag_Typ, TSS_Stream_Input))
8255       then
8256          Build_Record_Or_Elementary_Input_Function
8257            (Loc, Tag_Typ, Decl, Ent);
8258          Append_To (Res, Decl);
8259       end if;
8260
8261       if Stream_Operation_OK (Tag_Typ, TSS_Stream_Output)
8262         and then No (TSS (Tag_Typ, TSS_Stream_Output))
8263       then
8264          Build_Record_Or_Elementary_Output_Procedure
8265            (Loc, Tag_Typ, Decl, Ent);
8266          Append_To (Res, Decl);
8267       end if;
8268
8269       --  Ada 2005: Generate bodies for the following primitive operations for
8270       --  limited interfaces and synchronized types that implement a limited
8271       --  interface.
8272
8273       --    disp_asynchronous_select
8274       --    disp_conditional_select
8275       --    disp_get_prim_op_kind
8276       --    disp_get_task_id
8277       --    disp_timed_select
8278
8279       --  The interface versions will have null bodies
8280
8281       --  These operations cannot be implemented on VM targets, so we simply
8282       --  disable their generation in this case. We also disable generation
8283       --  of these bodies if No_Dispatching_Calls is active.
8284
8285       if Ada_Version >= Ada_05
8286         and then VM_Target = No_VM
8287         and then not Restriction_Active (No_Dispatching_Calls)
8288         and then not Is_Interface (Tag_Typ)
8289         and then
8290           ((Is_Interface (Etype (Tag_Typ))
8291               and then Is_Limited_Record (Etype (Tag_Typ)))
8292            or else (Is_Concurrent_Record_Type (Tag_Typ)
8293                      and then Has_Interfaces (Tag_Typ)))
8294         and then RTE_Available (RE_Select_Specific_Data)
8295       then
8296          Append_To (Res, Make_Disp_Asynchronous_Select_Body (Tag_Typ));
8297          Append_To (Res, Make_Disp_Conditional_Select_Body  (Tag_Typ));
8298          Append_To (Res, Make_Disp_Get_Prim_Op_Kind_Body    (Tag_Typ));
8299          Append_To (Res, Make_Disp_Get_Task_Id_Body         (Tag_Typ));
8300          Append_To (Res, Make_Disp_Requeue_Body             (Tag_Typ));
8301          Append_To (Res, Make_Disp_Timed_Select_Body        (Tag_Typ));
8302       end if;
8303
8304       if not Is_Limited_Type (Tag_Typ)
8305         and then not Is_Interface (Tag_Typ)
8306       then
8307          --  Body for equality
8308
8309          if Eq_Needed then
8310             Decl :=
8311               Predef_Spec_Or_Body (Loc,
8312                 Tag_Typ => Tag_Typ,
8313                 Name    => Eq_Name,
8314                 Profile => New_List (
8315                   Make_Parameter_Specification (Loc,
8316                     Defining_Identifier =>
8317                       Make_Defining_Identifier (Loc, Name_X),
8318                     Parameter_Type      => New_Reference_To (Tag_Typ, Loc)),
8319
8320                   Make_Parameter_Specification (Loc,
8321                     Defining_Identifier =>
8322                       Make_Defining_Identifier (Loc, Name_Y),
8323                     Parameter_Type      => New_Reference_To (Tag_Typ, Loc))),
8324
8325                 Ret_Type => Standard_Boolean,
8326                 For_Body => True);
8327
8328             declare
8329                Def          : constant Node_Id := Parent (Tag_Typ);
8330                Stmts        : constant List_Id := New_List;
8331                Variant_Case : Boolean := Has_Discriminants (Tag_Typ);
8332                Comps        : Node_Id := Empty;
8333                Typ_Def      : Node_Id := Type_Definition (Def);
8334
8335             begin
8336                if Variant_Case then
8337                   if Nkind (Typ_Def) = N_Derived_Type_Definition then
8338                      Typ_Def := Record_Extension_Part (Typ_Def);
8339                   end if;
8340
8341                   if Present (Typ_Def) then
8342                      Comps := Component_List (Typ_Def);
8343                   end if;
8344
8345                   Variant_Case := Present (Comps)
8346                     and then Present (Variant_Part (Comps));
8347                end if;
8348
8349                if Variant_Case then
8350                   Append_To (Stmts,
8351                     Make_Eq_If (Tag_Typ, Discriminant_Specifications (Def)));
8352                   Append_List_To (Stmts, Make_Eq_Case (Tag_Typ, Comps));
8353                   Append_To (Stmts,
8354                     Make_Simple_Return_Statement (Loc,
8355                       Expression => New_Reference_To (Standard_True, Loc)));
8356
8357                else
8358                   Append_To (Stmts,
8359                     Make_Simple_Return_Statement (Loc,
8360                       Expression =>
8361                         Expand_Record_Equality (Tag_Typ,
8362                           Typ => Tag_Typ,
8363                           Lhs => Make_Identifier (Loc, Name_X),
8364                           Rhs => Make_Identifier (Loc, Name_Y),
8365                           Bodies => Declarations (Decl))));
8366                end if;
8367
8368                Set_Handled_Statement_Sequence (Decl,
8369                  Make_Handled_Sequence_Of_Statements (Loc, Stmts));
8370             end;
8371             Append_To (Res, Decl);
8372          end if;
8373
8374          --  Body for dispatching assignment
8375
8376          Decl :=
8377            Predef_Spec_Or_Body (Loc,
8378              Tag_Typ => Tag_Typ,
8379              Name    => Name_uAssign,
8380              Profile => New_List (
8381                Make_Parameter_Specification (Loc,
8382                  Defining_Identifier => Make_Defining_Identifier (Loc, Name_X),
8383                  Out_Present         => True,
8384                  Parameter_Type      => New_Reference_To (Tag_Typ, Loc)),
8385
8386                Make_Parameter_Specification (Loc,
8387                  Defining_Identifier => Make_Defining_Identifier (Loc, Name_Y),
8388                  Parameter_Type      => New_Reference_To (Tag_Typ, Loc))),
8389              For_Body => True);
8390
8391          Set_Handled_Statement_Sequence (Decl,
8392            Make_Handled_Sequence_Of_Statements (Loc, New_List (
8393              Make_Assignment_Statement (Loc,
8394                Name       => Make_Identifier (Loc, Name_X),
8395                Expression => Make_Identifier (Loc, Name_Y)))));
8396
8397          Append_To (Res, Decl);
8398       end if;
8399
8400       --  Generate dummy bodies for finalization actions of types that have
8401       --  no controlled components.
8402
8403       --  Skip this processing if we are in the finalization routine in the
8404       --  runtime itself, otherwise we get hopelessly circularly confused!
8405
8406       if In_Finalization_Root (Tag_Typ) then
8407          null;
8408
8409       --  Skip this if finalization is not available
8410
8411       elsif Restriction_Active (No_Finalization) then
8412          null;
8413
8414       elsif (Etype (Tag_Typ) = Tag_Typ
8415              or else Is_Controlled (Tag_Typ)
8416
8417                --  Ada 2005 (AI-251): We must also generate these subprograms
8418                --  if the immediate ancestor of Tag_Typ is an interface to
8419                --  ensure the correct initialization of its dispatch table.
8420
8421              or else (not Is_Interface (Tag_Typ)
8422                         and then
8423                       Is_Interface (Etype (Tag_Typ))))
8424         and then not Has_Controlled_Component (Tag_Typ)
8425       then
8426          if not Is_Limited_Type (Tag_Typ) then
8427             Decl := Predef_Deep_Spec (Loc, Tag_Typ, TSS_Deep_Adjust, True);
8428
8429             if Is_Controlled (Tag_Typ) then
8430                Set_Handled_Statement_Sequence (Decl,
8431                  Make_Handled_Sequence_Of_Statements (Loc,
8432                    Make_Adjust_Call (
8433                      Ref          => Make_Identifier (Loc, Name_V),
8434                      Typ          => Tag_Typ,
8435                      Flist_Ref    => Make_Identifier (Loc, Name_L),
8436                      With_Attach  => Make_Identifier (Loc, Name_B))));
8437
8438             else
8439                Set_Handled_Statement_Sequence (Decl,
8440                  Make_Handled_Sequence_Of_Statements (Loc, New_List (
8441                    Make_Null_Statement (Loc))));
8442             end if;
8443
8444             Append_To (Res, Decl);
8445          end if;
8446
8447          Decl := Predef_Deep_Spec (Loc, Tag_Typ, TSS_Deep_Finalize, True);
8448
8449          if Is_Controlled (Tag_Typ) then
8450             Set_Handled_Statement_Sequence (Decl,
8451               Make_Handled_Sequence_Of_Statements (Loc,
8452                 Make_Final_Call (
8453                   Ref         => Make_Identifier (Loc, Name_V),
8454                   Typ         => Tag_Typ,
8455                   With_Detach => Make_Identifier (Loc, Name_B))));
8456
8457          else
8458             Set_Handled_Statement_Sequence (Decl,
8459               Make_Handled_Sequence_Of_Statements (Loc, New_List (
8460                 Make_Null_Statement (Loc))));
8461          end if;
8462
8463          Append_To (Res, Decl);
8464       end if;
8465
8466       return Res;
8467    end Predefined_Primitive_Bodies;
8468
8469    ---------------------------------
8470    -- Predefined_Primitive_Freeze --
8471    ---------------------------------
8472
8473    function Predefined_Primitive_Freeze
8474      (Tag_Typ : Entity_Id) return List_Id
8475    is
8476       Loc     : constant Source_Ptr := Sloc (Tag_Typ);
8477       Res     : constant List_Id    := New_List;
8478       Prim    : Elmt_Id;
8479       Frnodes : List_Id;
8480
8481    begin
8482       Prim := First_Elmt (Primitive_Operations (Tag_Typ));
8483       while Present (Prim) loop
8484          if Is_Predefined_Dispatching_Operation (Node (Prim)) then
8485             Frnodes := Freeze_Entity (Node (Prim), Loc);
8486
8487             if Present (Frnodes) then
8488                Append_List_To (Res, Frnodes);
8489             end if;
8490          end if;
8491
8492          Next_Elmt (Prim);
8493       end loop;
8494
8495       return Res;
8496    end Predefined_Primitive_Freeze;
8497
8498    -------------------------
8499    -- Stream_Operation_OK --
8500    -------------------------
8501
8502    function Stream_Operation_OK
8503      (Typ       : Entity_Id;
8504       Operation : TSS_Name_Type) return Boolean
8505    is
8506       Has_Predefined_Or_Specified_Stream_Attribute : Boolean := False;
8507
8508    begin
8509       --  Special case of a limited type extension: a default implementation
8510       --  of the stream attributes Read or Write exists if that attribute
8511       --  has been specified or is available for an ancestor type; a default
8512       --  implementation of the attribute Output (resp. Input) exists if the
8513       --  attribute has been specified or Write (resp. Read) is available for
8514       --  an ancestor type. The last condition only applies under Ada 2005.
8515
8516       if Is_Limited_Type (Typ)
8517         and then Is_Tagged_Type (Typ)
8518       then
8519          if Operation = TSS_Stream_Read then
8520             Has_Predefined_Or_Specified_Stream_Attribute :=
8521               Has_Specified_Stream_Read (Typ);
8522
8523          elsif Operation = TSS_Stream_Write then
8524             Has_Predefined_Or_Specified_Stream_Attribute :=
8525               Has_Specified_Stream_Write (Typ);
8526
8527          elsif Operation = TSS_Stream_Input then
8528             Has_Predefined_Or_Specified_Stream_Attribute :=
8529               Has_Specified_Stream_Input (Typ)
8530                 or else
8531                   (Ada_Version >= Ada_05
8532                     and then Stream_Operation_OK (Typ, TSS_Stream_Read));
8533
8534          elsif Operation = TSS_Stream_Output then
8535             Has_Predefined_Or_Specified_Stream_Attribute :=
8536               Has_Specified_Stream_Output (Typ)
8537                 or else
8538                   (Ada_Version >= Ada_05
8539                     and then Stream_Operation_OK (Typ, TSS_Stream_Write));
8540          end if;
8541
8542          --  Case of inherited TSS_Stream_Read or TSS_Stream_Write
8543
8544          if not Has_Predefined_Or_Specified_Stream_Attribute
8545            and then Is_Derived_Type (Typ)
8546            and then (Operation = TSS_Stream_Read
8547                       or else Operation = TSS_Stream_Write)
8548          then
8549             Has_Predefined_Or_Specified_Stream_Attribute :=
8550               Present
8551                 (Find_Inherited_TSS (Base_Type (Etype (Typ)), Operation));
8552          end if;
8553       end if;
8554
8555       --  If the type is not limited, or else is limited but the attribute is
8556       --  explicitly specified or is predefined for the type, then return True,
8557       --  unless other conditions prevail, such as restrictions prohibiting
8558       --  streams or dispatching operations.
8559
8560       --  We exclude the Input operation from being a predefined subprogram in
8561       --  the case where the associated type is an abstract extension, because
8562       --  the attribute is not callable in that case, per 13.13.2(49/2). Also,
8563       --  we don't want an abstract version created because types derived from
8564       --  the abstract type may not even have Input available (for example if
8565       --  derived from a private view of the abstract type that doesn't have
8566       --  a visible Input), but a VM such as .NET or the Java VM can treat the
8567       --  operation as inherited anyway, and we don't want an abstract function
8568       --  to be (implicitly) inherited in that case because it can lead to a VM
8569       --  exception.
8570
8571       return (not Is_Limited_Type (Typ)
8572                or else Has_Predefined_Or_Specified_Stream_Attribute)
8573         and then (Operation /= TSS_Stream_Input
8574                    or else not Is_Abstract_Type (Typ)
8575                    or else not Is_Derived_Type (Typ))
8576         and then not Has_Unknown_Discriminants (Typ)
8577         and then not (Is_Interface (Typ)
8578                        and then (Is_Task_Interface (Typ)
8579                                   or else Is_Protected_Interface (Typ)
8580                                   or else Is_Synchronized_Interface (Typ)))
8581         and then not Restriction_Active (No_Streams)
8582         and then not Restriction_Active (No_Dispatch)
8583         and then not No_Run_Time_Mode
8584         and then RTE_Available (RE_Tag)
8585         and then RTE_Available (RE_Root_Stream_Type);
8586    end Stream_Operation_OK;
8587
8588 end Exp_Ch3;