OSDN Git Service

2009-07-15 Robert Dewar <dewar@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / exp_aggr.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             E X P _ A G G R                              --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2009, 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 Debug;    use Debug;
29 with Einfo;    use Einfo;
30 with Elists;   use Elists;
31 with Errout;   use Errout;
32 with Expander; use Expander;
33 with Exp_Util; use Exp_Util;
34 with Exp_Ch3;  use Exp_Ch3;
35 with Exp_Ch7;  use Exp_Ch7;
36 with Exp_Ch9;  use Exp_Ch9;
37 with Exp_Tss;  use Exp_Tss;
38 with Fname;    use Fname;
39 with Freeze;   use Freeze;
40 with Itypes;   use Itypes;
41 with Lib;      use Lib;
42 with Namet;    use Namet;
43 with Nmake;    use Nmake;
44 with Nlists;   use Nlists;
45 with Opt;      use Opt;
46 with Restrict; use Restrict;
47 with Rident;   use Rident;
48 with Rtsfind;  use Rtsfind;
49 with Ttypes;   use Ttypes;
50 with Sem;      use Sem;
51 with Sem_Aux;  use Sem_Aux;
52 with Sem_Ch3;  use Sem_Ch3;
53 with Sem_Eval; use Sem_Eval;
54 with Sem_Res;  use Sem_Res;
55 with Sem_Util; use Sem_Util;
56 with Sinfo;    use Sinfo;
57 with Snames;   use Snames;
58 with Stand;    use Stand;
59 with Tbuild;   use Tbuild;
60 with Uintp;    use Uintp;
61
62 package body Exp_Aggr is
63
64    type Case_Bounds is record
65      Choice_Lo   : Node_Id;
66      Choice_Hi   : Node_Id;
67      Choice_Node : Node_Id;
68    end record;
69
70    type Case_Table_Type is array (Nat range <>) of Case_Bounds;
71    --  Table type used by Check_Case_Choices procedure
72
73    function Must_Slide
74      (Obj_Type : Entity_Id;
75       Typ      : Entity_Id) return Boolean;
76    --  A static array aggregate in an object declaration can in most cases be
77    --  expanded in place. The one exception is when the aggregate is given
78    --  with component associations that specify different bounds from those of
79    --  the type definition in the object declaration. In this pathological
80    --  case the aggregate must slide, and we must introduce an intermediate
81    --  temporary to hold it.
82    --
83    --  The same holds in an assignment to one-dimensional array of arrays,
84    --  when a component may be given with bounds that differ from those of the
85    --  component type.
86
87    procedure Sort_Case_Table (Case_Table : in out Case_Table_Type);
88    --  Sort the Case Table using the Lower Bound of each Choice as the key.
89    --  A simple insertion sort is used since the number of choices in a case
90    --  statement of variant part will usually be small and probably in near
91    --  sorted order.
92
93    function Has_Default_Init_Comps (N : Node_Id) return Boolean;
94    --  N is an aggregate (record or array). Checks the presence of default
95    --  initialization (<>) in any component (Ada 2005: AI-287)
96
97    function Is_Static_Dispatch_Table_Aggregate (N : Node_Id) return Boolean;
98    --  Returns true if N is an aggregate used to initialize the components
99    --  of an statically allocated dispatch table.
100
101    ------------------------------------------------------
102    -- Local subprograms for Record Aggregate Expansion --
103    ------------------------------------------------------
104
105    procedure Expand_Record_Aggregate
106      (N           : Node_Id;
107       Orig_Tag    : Node_Id := Empty;
108       Parent_Expr : Node_Id := Empty);
109    --  This is the top level procedure for record aggregate expansion.
110    --  Expansion for record aggregates needs expand aggregates for tagged
111    --  record types. Specifically Expand_Record_Aggregate adds the Tag
112    --  field in front of the Component_Association list that was created
113    --  during resolution by Resolve_Record_Aggregate.
114    --
115    --    N is the record aggregate node.
116    --    Orig_Tag is the value of the Tag that has to be provided for this
117    --      specific aggregate. It carries the tag corresponding to the type
118    --      of the outermost aggregate during the recursive expansion
119    --    Parent_Expr is the ancestor part of the original extension
120    --      aggregate
121
122    procedure Convert_To_Assignments (N : Node_Id; Typ : Entity_Id);
123    --  N is an N_Aggregate or an N_Extension_Aggregate. Typ is the type of the
124    --  aggregate (which can only be a record type, this procedure is only used
125    --  for record types). Transform the given aggregate into a sequence of
126    --  assignments performed component by component.
127
128    function Build_Record_Aggr_Code
129      (N                             : Node_Id;
130       Typ                           : Entity_Id;
131       Lhs                           : Node_Id;
132       Flist                         : Node_Id   := Empty;
133       Obj                           : Entity_Id := Empty;
134       Is_Limited_Ancestor_Expansion : Boolean   := False) return List_Id;
135    --  N is an N_Aggregate or an N_Extension_Aggregate. Typ is the type of the
136    --  aggregate. Target is an expression containing the location on which the
137    --  component by component assignments will take place. Returns the list of
138    --  assignments plus all other adjustments needed for tagged and controlled
139    --  types. Flist is an expression representing the finalization list on
140    --  which to attach the controlled components if any. Obj is present in the
141    --  object declaration and dynamic allocation cases, it contains an entity
142    --  that allows to know if the value being created needs to be attached to
143    --  the final list in case of pragma Finalize_Storage_Only.
144    --
145    --  ???
146    --  The meaning of the Obj formal is extremely unclear. *What* entity
147    --  should be passed? For the object declaration case we may guess that
148    --  this is the object being declared, but what about the allocator case?
149    --
150    --  Is_Limited_Ancestor_Expansion indicates that the function has been
151    --  called recursively to expand the limited ancestor to avoid copying it.
152
153    function Has_Mutable_Components (Typ : Entity_Id) return Boolean;
154    --  Return true if one of the component is of a discriminated type with
155    --  defaults. An aggregate for a type with mutable components must be
156    --  expanded into individual assignments.
157
158    procedure Initialize_Discriminants (N : Node_Id; Typ : Entity_Id);
159    --  If the type of the aggregate is a type extension with renamed discrimi-
160    --  nants, we must initialize the hidden discriminants of the parent.
161    --  Otherwise, the target object must not be initialized. The discriminants
162    --  are initialized by calling the initialization procedure for the type.
163    --  This is incorrect if the initialization of other components has any
164    --  side effects. We restrict this call to the case where the parent type
165    --  has a variant part, because this is the only case where the hidden
166    --  discriminants are accessed, namely when calling discriminant checking
167    --  functions of the parent type, and when applying a stream attribute to
168    --  an object of the derived type.
169
170    -----------------------------------------------------
171    -- Local Subprograms for Array Aggregate Expansion --
172    -----------------------------------------------------
173
174    function Aggr_Size_OK (N : Node_Id; Typ : Entity_Id) return Boolean;
175    --  Very large static aggregates present problems to the back-end, and
176    --  are transformed into assignments and loops. This function verifies
177    --  that the total number of components of an aggregate is acceptable
178    --  for transformation into a purely positional static form. It is called
179    --  prior to calling Flatten.
180    --  This function also detects and warns about one-component aggregates
181    --  that appear in a non-static context. Even if the component value is
182    --  static, such an aggregate must be expanded into an assignment.
183
184    procedure Convert_Array_Aggr_In_Allocator
185      (Decl   : Node_Id;
186       Aggr   : Node_Id;
187       Target : Node_Id);
188    --  If the aggregate appears within an allocator and can be expanded in
189    --  place, this routine generates the individual assignments to components
190    --  of the designated object. This is an optimization over the general
191    --  case, where a temporary is first created on the stack and then used to
192    --  construct the allocated object on the heap.
193
194    procedure Convert_To_Positional
195      (N                    : Node_Id;
196       Max_Others_Replicate : Nat     := 5;
197       Handle_Bit_Packed    : Boolean := False);
198    --  If possible, convert named notation to positional notation. This
199    --  conversion is possible only in some static cases. If the conversion is
200    --  possible, then N is rewritten with the analyzed converted aggregate.
201    --  The parameter Max_Others_Replicate controls the maximum number of
202    --  values corresponding to an others choice that will be converted to
203    --  positional notation (the default of 5 is the normal limit, and reflects
204    --  the fact that normally the loop is better than a lot of separate
205    --  assignments). Note that this limit gets overridden in any case if
206    --  either of the restrictions No_Elaboration_Code or No_Implicit_Loops is
207    --  set. The parameter Handle_Bit_Packed is usually set False (since we do
208    --  not expect the back end to handle bit packed arrays, so the normal case
209    --  of conversion is pointless), but in the special case of a call from
210    --  Packed_Array_Aggregate_Handled, we set this parameter to True, since
211    --  these are cases we handle in there.
212
213    procedure Expand_Array_Aggregate (N : Node_Id);
214    --  This is the top-level routine to perform array aggregate expansion.
215    --  N is the N_Aggregate node to be expanded.
216
217    function Backend_Processing_Possible (N : Node_Id) return Boolean;
218    --  This function checks if array aggregate N can be processed directly
219    --  by Gigi. If this is the case True is returned.
220
221    function Build_Array_Aggr_Code
222      (N           : Node_Id;
223       Ctype       : Entity_Id;
224       Index       : Node_Id;
225       Into        : Node_Id;
226       Scalar_Comp : Boolean;
227       Indices     : List_Id := No_List;
228       Flist       : Node_Id := Empty) return List_Id;
229    --  This recursive routine returns a list of statements containing the
230    --  loops and assignments that are needed for the expansion of the array
231    --  aggregate N.
232    --
233    --    N is the (sub-)aggregate node to be expanded into code. This node
234    --    has been fully analyzed, and its Etype is properly set.
235    --
236    --    Index is the index node corresponding to the array sub-aggregate N.
237    --
238    --    Into is the target expression into which we are copying the aggregate.
239    --    Note that this node may not have been analyzed yet, and so the Etype
240    --    field may not be set.
241    --
242    --    Scalar_Comp is True if the component type of the aggregate is scalar.
243    --
244    --    Indices is the current list of expressions used to index the
245    --    object we are writing into.
246    --
247    --    Flist is an expression representing the finalization list on which
248    --    to attach the controlled components if any.
249
250    function Number_Of_Choices (N : Node_Id) return Nat;
251    --  Returns the number of discrete choices (not including the others choice
252    --  if present) contained in (sub-)aggregate N.
253
254    function Late_Expansion
255      (N      : Node_Id;
256       Typ    : Entity_Id;
257       Target : Node_Id;
258       Flist  : Node_Id := Empty;
259       Obj    : Entity_Id := Empty) return List_Id;
260    --  N is a nested (record or array) aggregate that has been marked with
261    --  'Delay_Expansion'. Typ is the expected type of the aggregate and Target
262    --  is a (duplicable) expression that will hold the result of the aggregate
263    --  expansion. Flist is the finalization list to be used to attach
264    --  controlled components. 'Obj' when non empty, carries the original
265    --  object being initialized in order to know if it needs to be attached to
266    --  the previous parameter which may not be the case in the case where
267    --  Finalize_Storage_Only is set. Basically this procedure is used to
268    --  implement top-down expansions of nested aggregates. This is necessary
269    --  for avoiding temporaries at each level as well as for propagating the
270    --  right internal finalization list.
271
272    function Make_OK_Assignment_Statement
273      (Sloc       : Source_Ptr;
274       Name       : Node_Id;
275       Expression : Node_Id) return Node_Id;
276    --  This is like Make_Assignment_Statement, except that Assignment_OK
277    --  is set in the left operand. All assignments built by this unit
278    --  use this routine. This is needed to deal with assignments to
279    --  initialized constants that are done in place.
280
281    function Packed_Array_Aggregate_Handled (N : Node_Id) return Boolean;
282    --  Given an array aggregate, this function handles the case of a packed
283    --  array aggregate with all constant values, where the aggregate can be
284    --  evaluated at compile time. If this is possible, then N is rewritten
285    --  to be its proper compile time value with all the components properly
286    --  assembled. The expression is analyzed and resolved and True is
287    --  returned. If this transformation is not possible, N is unchanged
288    --  and False is returned
289
290    function Safe_Slice_Assignment (N : Node_Id) return Boolean;
291    --  If a slice assignment has an aggregate with a single others_choice,
292    --  the assignment can be done in place even if bounds are not static,
293    --  by converting it into a loop over the discrete range of the slice.
294
295    ------------------
296    -- Aggr_Size_OK --
297    ------------------
298
299    function Aggr_Size_OK (N : Node_Id; Typ : Entity_Id) return Boolean is
300       Lo   : Node_Id;
301       Hi   : Node_Id;
302       Indx : Node_Id;
303       Siz  : Int;
304       Lov  : Uint;
305       Hiv  : Uint;
306
307       --  The following constant determines the maximum size of an
308       --  array aggregate produced by converting named to positional
309       --  notation (e.g. from others clauses). This avoids running
310       --  away with attempts to convert huge aggregates, which hit
311       --  memory limits in the backend.
312
313       --  The normal limit is 5000, but we increase this limit to
314       --  2**24 (about 16 million) if Restrictions (No_Elaboration_Code)
315       --  or Restrictions (No_Implicit_Loops) is specified, since in
316       --  either case, we are at risk of declaring the program illegal
317       --  because of this limit.
318
319       Max_Aggr_Size : constant Nat :=
320                         5000 + (2 ** 24 - 5000) *
321                           Boolean'Pos
322                             (Restriction_Active (No_Elaboration_Code)
323                                or else
324                              Restriction_Active (No_Implicit_Loops));
325
326       function Component_Count (T : Entity_Id) return Int;
327       --  The limit is applied to the total number of components that the
328       --  aggregate will have, which is the number of static expressions
329       --  that will appear in the flattened array. This requires a recursive
330       --  computation of the number of scalar components of the structure.
331
332       ---------------------
333       -- Component_Count --
334       ---------------------
335
336       function Component_Count (T : Entity_Id) return Int is
337          Res  : Int := 0;
338          Comp : Entity_Id;
339
340       begin
341          if Is_Scalar_Type (T) then
342             return 1;
343
344          elsif Is_Record_Type (T) then
345             Comp := First_Component (T);
346             while Present (Comp) loop
347                Res := Res + Component_Count (Etype (Comp));
348                Next_Component (Comp);
349             end loop;
350
351             return Res;
352
353          elsif Is_Array_Type (T) then
354             declare
355                Lo : constant Node_Id :=
356                       Type_Low_Bound (Etype (First_Index (T)));
357                Hi : constant Node_Id :=
358                       Type_High_Bound (Etype (First_Index (T)));
359
360                Siz  : constant Int := Component_Count (Component_Type (T));
361
362             begin
363                if not Compile_Time_Known_Value (Lo)
364                  or else not Compile_Time_Known_Value (Hi)
365                then
366                   return 0;
367                else
368                   return
369                     Siz * UI_To_Int (Expr_Value (Hi) - Expr_Value (Lo) + 1);
370                end if;
371             end;
372
373          else
374             --  Can only be a null for an access type
375
376             return 1;
377          end if;
378       end Component_Count;
379
380    --  Start of processing for Aggr_Size_OK
381
382    begin
383       Siz  := Component_Count (Component_Type (Typ));
384
385       Indx := First_Index (Typ);
386       while Present (Indx) loop
387          Lo  := Type_Low_Bound (Etype (Indx));
388          Hi  := Type_High_Bound (Etype (Indx));
389
390          --  Bounds need to be known at compile time
391
392          if not Compile_Time_Known_Value (Lo)
393            or else not Compile_Time_Known_Value (Hi)
394          then
395             return False;
396          end if;
397
398          Lov := Expr_Value (Lo);
399          Hiv := Expr_Value (Hi);
400
401          --  A flat array is always safe
402
403          if Hiv < Lov then
404             return True;
405          end if;
406
407          --  One-component aggregates are suspicious, and if the context type
408          --  is an object declaration with non-static bounds it will trip gcc;
409          --  such an aggregate must be expanded into a single assignment.
410
411          if Hiv = Lov
412            and then Nkind (Parent (N)) = N_Object_Declaration
413          then
414             declare
415                Index_Type : constant Entity_Id :=
416                               Etype
417                                 (First_Index
418                                    (Etype (Defining_Identifier (Parent (N)))));
419                Indx       : Node_Id;
420
421             begin
422                if not Compile_Time_Known_Value (Type_Low_Bound (Index_Type))
423                   or else not Compile_Time_Known_Value
424                                 (Type_High_Bound (Index_Type))
425                then
426                   if Present (Component_Associations (N)) then
427                      Indx :=
428                        First (Choices (First (Component_Associations (N))));
429                      if Is_Entity_Name (Indx)
430                        and then not Is_Type (Entity (Indx))
431                      then
432                         Error_Msg_N
433                           ("single component aggregate in non-static context?",
434                             Indx);
435                         Error_Msg_N ("\maybe subtype name was meant?", Indx);
436                      end if;
437                   end if;
438
439                   return False;
440                end if;
441             end;
442          end if;
443
444          declare
445             Rng : constant Uint := Hiv - Lov + 1;
446
447          begin
448             --  Check if size is too large
449
450             if not UI_Is_In_Int_Range (Rng) then
451                return False;
452             end if;
453
454             Siz := Siz * UI_To_Int (Rng);
455          end;
456
457          if Siz <= 0
458            or else Siz > Max_Aggr_Size
459          then
460             return False;
461          end if;
462
463          --  Bounds must be in integer range, for later array construction
464
465          if not UI_Is_In_Int_Range (Lov)
466              or else
467             not UI_Is_In_Int_Range (Hiv)
468          then
469             return False;
470          end if;
471
472          Next_Index (Indx);
473       end loop;
474
475       return True;
476    end Aggr_Size_OK;
477
478    ---------------------------------
479    -- Backend_Processing_Possible --
480    ---------------------------------
481
482    --  Backend processing by Gigi/gcc is possible only if all the following
483    --  conditions are met:
484
485    --    1. N is fully positional
486
487    --    2. N is not a bit-packed array aggregate;
488
489    --    3. The size of N's array type must be known at compile time. Note
490    --       that this implies that the component size is also known
491
492    --    4. The array type of N does not follow the Fortran layout convention
493    --       or if it does it must be 1 dimensional.
494
495    --    5. The array component type may not be tagged (which could necessitate
496    --       reassignment of proper tags).
497
498    --    6. The array component type must not have unaligned bit components
499
500    --    7. None of the components of the aggregate may be bit unaligned
501    --       components.
502
503    --    8. There cannot be delayed components, since we do not know enough
504    --       at this stage to know if back end processing is possible.
505
506    --    9. There cannot be any discriminated record components, since the
507    --       back end cannot handle this complex case.
508
509    --   10. No controlled actions need to be generated for components
510
511    function Backend_Processing_Possible (N : Node_Id) return Boolean is
512       Typ : constant Entity_Id := Etype (N);
513       --  Typ is the correct constrained array subtype of the aggregate
514
515       function Component_Check (N : Node_Id; Index : Node_Id) return Boolean;
516       --  This routine checks components of aggregate N, enforcing checks
517       --  1, 7, 8, and 9. In the multi-dimensional case, these checks are
518       --  performed on subaggregates. The Index value is the current index
519       --  being checked in the multi-dimensional case.
520
521       ---------------------
522       -- Component_Check --
523       ---------------------
524
525       function Component_Check (N : Node_Id; Index : Node_Id) return Boolean is
526          Expr : Node_Id;
527
528       begin
529          --  Checks 1: (no component associations)
530
531          if Present (Component_Associations (N)) then
532             return False;
533          end if;
534
535          --  Checks on components
536
537          --  Recurse to check subaggregates, which may appear in qualified
538          --  expressions. If delayed, the front-end will have to expand.
539          --  If the component is a discriminated record, treat as non-static,
540          --  as the back-end cannot handle this properly.
541
542          Expr := First (Expressions (N));
543          while Present (Expr) loop
544
545             --  Checks 8: (no delayed components)
546
547             if Is_Delayed_Aggregate (Expr) then
548                return False;
549             end if;
550
551             --  Checks 9: (no discriminated records)
552
553             if Present (Etype (Expr))
554               and then Is_Record_Type (Etype (Expr))
555               and then Has_Discriminants (Etype (Expr))
556             then
557                return False;
558             end if;
559
560             --  Checks 7. Component must not be bit aligned component
561
562             if Possible_Bit_Aligned_Component (Expr) then
563                return False;
564             end if;
565
566             --  Recursion to following indexes for multiple dimension case
567
568             if Present (Next_Index (Index))
569                and then not Component_Check (Expr, Next_Index (Index))
570             then
571                return False;
572             end if;
573
574             --  All checks for that component finished, on to next
575
576             Next (Expr);
577          end loop;
578
579          return True;
580       end Component_Check;
581
582    --  Start of processing for Backend_Processing_Possible
583
584    begin
585       --  Checks 2 (array not bit packed) and 10 (no controlled actions)
586
587       if Is_Bit_Packed_Array (Typ) or else Needs_Finalization (Typ) then
588          return False;
589       end if;
590
591       --  If component is limited, aggregate must be expanded because each
592       --  component assignment must be built in place.
593
594       if Is_Inherently_Limited_Type (Component_Type (Typ)) then
595          return False;
596       end if;
597
598       --  Checks 4 (array must not be multi-dimensional Fortran case)
599
600       if Convention (Typ) = Convention_Fortran
601         and then Number_Dimensions (Typ) > 1
602       then
603          return False;
604       end if;
605
606       --  Checks 3 (size of array must be known at compile time)
607
608       if not Size_Known_At_Compile_Time (Typ) then
609          return False;
610       end if;
611
612       --  Checks on components
613
614       if not Component_Check (N, First_Index (Typ)) then
615          return False;
616       end if;
617
618       --  Checks 5 (if the component type is tagged, then we may need to do
619       --    tag adjustments. Perhaps this should be refined to check for any
620       --    component associations that actually need tag adjustment, similar
621       --    to the test in Component_Not_OK_For_Backend for record aggregates
622       --    with tagged components, but not clear whether it's worthwhile ???;
623       --    in the case of the JVM, object tags are handled implicitly)
624
625       if Is_Tagged_Type (Component_Type (Typ))
626         and then Tagged_Type_Expansion
627       then
628          return False;
629       end if;
630
631       --  Checks 6 (component type must not have bit aligned components)
632
633       if Type_May_Have_Bit_Aligned_Components (Component_Type (Typ)) then
634          return False;
635       end if;
636
637       --  Backend processing is possible
638
639       Set_Size_Known_At_Compile_Time (Etype (N), True);
640       return True;
641    end Backend_Processing_Possible;
642
643    ---------------------------
644    -- Build_Array_Aggr_Code --
645    ---------------------------
646
647    --  The code that we generate from a one dimensional aggregate is
648
649    --  1. If the sub-aggregate contains discrete choices we
650
651    --     (a) Sort the discrete choices
652
653    --     (b) Otherwise for each discrete choice that specifies a range we
654    --         emit a loop. If a range specifies a maximum of three values, or
655    --         we are dealing with an expression we emit a sequence of
656    --         assignments instead of a loop.
657
658    --     (c) Generate the remaining loops to cover the others choice if any
659
660    --  2. If the aggregate contains positional elements we
661
662    --     (a) translate the positional elements in a series of assignments
663
664    --     (b) Generate a final loop to cover the others choice if any.
665    --         Note that this final loop has to be a while loop since the case
666
667    --             L : Integer := Integer'Last;
668    --             H : Integer := Integer'Last;
669    --             A : array (L .. H) := (1, others =>0);
670
671    --         cannot be handled by a for loop. Thus for the following
672
673    --             array (L .. H) := (.. positional elements.., others =>E);
674
675    --         we always generate something like:
676
677    --             J : Index_Type := Index_Of_Last_Positional_Element;
678    --             while J < H loop
679    --                J := Index_Base'Succ (J)
680    --                Tmp (J) := E;
681    --             end loop;
682
683    function Build_Array_Aggr_Code
684      (N           : Node_Id;
685       Ctype       : Entity_Id;
686       Index       : Node_Id;
687       Into        : Node_Id;
688       Scalar_Comp : Boolean;
689       Indices     : List_Id := No_List;
690       Flist       : Node_Id := Empty) return List_Id
691    is
692       Loc          : constant Source_Ptr := Sloc (N);
693       Index_Base   : constant Entity_Id  := Base_Type (Etype (Index));
694       Index_Base_L : constant Node_Id := Type_Low_Bound (Index_Base);
695       Index_Base_H : constant Node_Id := Type_High_Bound (Index_Base);
696
697       function Add (Val : Int; To : Node_Id) return Node_Id;
698       --  Returns an expression where Val is added to expression To, unless
699       --  To+Val is provably out of To's base type range. To must be an
700       --  already analyzed expression.
701
702       function Empty_Range (L, H : Node_Id) return Boolean;
703       --  Returns True if the range defined by L .. H is certainly empty
704
705       function Equal (L, H : Node_Id) return Boolean;
706       --  Returns True if L = H for sure
707
708       function Index_Base_Name return Node_Id;
709       --  Returns a new reference to the index type name
710
711       function Gen_Assign (Ind : Node_Id; Expr : Node_Id) return List_Id;
712       --  Ind must be a side-effect free expression. If the input aggregate
713       --  N to Build_Loop contains no sub-aggregates, then this function
714       --  returns the assignment statement:
715       --
716       --     Into (Indices, Ind) := Expr;
717       --
718       --  Otherwise we call Build_Code recursively
719       --
720       --  Ada 2005 (AI-287): In case of default initialized component, Expr
721       --  is empty and we generate a call to the corresponding IP subprogram.
722
723       function Gen_Loop (L, H : Node_Id; Expr : Node_Id) return List_Id;
724       --  Nodes L and H must be side-effect free expressions.
725       --  If the input aggregate N to Build_Loop contains no sub-aggregates,
726       --  This routine returns the for loop statement
727       --
728       --     for J in Index_Base'(L) .. Index_Base'(H) loop
729       --        Into (Indices, J) := Expr;
730       --     end loop;
731       --
732       --  Otherwise we call Build_Code recursively.
733       --  As an optimization if the loop covers 3 or less scalar elements we
734       --  generate a sequence of assignments.
735
736       function Gen_While (L, H : Node_Id; Expr : Node_Id) return List_Id;
737       --  Nodes L and H must be side-effect free expressions.
738       --  If the input aggregate N to Build_Loop contains no sub-aggregates,
739       --  This routine returns the while loop statement
740       --
741       --     J : Index_Base := L;
742       --     while J < H loop
743       --        J := Index_Base'Succ (J);
744       --        Into (Indices, J) := Expr;
745       --     end loop;
746       --
747       --  Otherwise we call Build_Code recursively
748
749       function Local_Compile_Time_Known_Value (E : Node_Id) return Boolean;
750       function Local_Expr_Value               (E : Node_Id) return Uint;
751       --  These two Local routines are used to replace the corresponding ones
752       --  in sem_eval because while processing the bounds of an aggregate with
753       --  discrete choices whose index type is an enumeration, we build static
754       --  expressions not recognized by Compile_Time_Known_Value as such since
755       --  they have not yet been analyzed and resolved. All the expressions in
756       --  question are things like Index_Base_Name'Val (Const) which we can
757       --  easily recognize as being constant.
758
759       ---------
760       -- Add --
761       ---------
762
763       function Add (Val : Int; To : Node_Id) return Node_Id is
764          Expr_Pos : Node_Id;
765          Expr     : Node_Id;
766          To_Pos   : Node_Id;
767          U_To     : Uint;
768          U_Val    : constant Uint := UI_From_Int (Val);
769
770       begin
771          --  Note: do not try to optimize the case of Val = 0, because
772          --  we need to build a new node with the proper Sloc value anyway.
773
774          --  First test if we can do constant folding
775
776          if Local_Compile_Time_Known_Value (To) then
777             U_To := Local_Expr_Value (To) + Val;
778
779             --  Determine if our constant is outside the range of the index.
780             --  If so return an Empty node. This empty node will be caught
781             --  by Empty_Range below.
782
783             if Compile_Time_Known_Value (Index_Base_L)
784               and then U_To < Expr_Value (Index_Base_L)
785             then
786                return Empty;
787
788             elsif Compile_Time_Known_Value (Index_Base_H)
789               and then U_To > Expr_Value (Index_Base_H)
790             then
791                return Empty;
792             end if;
793
794             Expr_Pos := Make_Integer_Literal (Loc, U_To);
795             Set_Is_Static_Expression (Expr_Pos);
796
797             if not Is_Enumeration_Type (Index_Base) then
798                Expr := Expr_Pos;
799
800             --  If we are dealing with enumeration return
801             --     Index_Base'Val (Expr_Pos)
802
803             else
804                Expr :=
805                  Make_Attribute_Reference
806                    (Loc,
807                     Prefix         => Index_Base_Name,
808                     Attribute_Name => Name_Val,
809                     Expressions    => New_List (Expr_Pos));
810             end if;
811
812             return Expr;
813          end if;
814
815          --  If we are here no constant folding possible
816
817          if not Is_Enumeration_Type (Index_Base) then
818             Expr :=
819               Make_Op_Add (Loc,
820                            Left_Opnd  => Duplicate_Subexpr (To),
821                            Right_Opnd => Make_Integer_Literal (Loc, U_Val));
822
823          --  If we are dealing with enumeration return
824          --    Index_Base'Val (Index_Base'Pos (To) + Val)
825
826          else
827             To_Pos :=
828               Make_Attribute_Reference
829                 (Loc,
830                  Prefix         => Index_Base_Name,
831                  Attribute_Name => Name_Pos,
832                  Expressions    => New_List (Duplicate_Subexpr (To)));
833
834             Expr_Pos :=
835               Make_Op_Add (Loc,
836                            Left_Opnd  => To_Pos,
837                            Right_Opnd => Make_Integer_Literal (Loc, U_Val));
838
839             Expr :=
840               Make_Attribute_Reference
841                 (Loc,
842                  Prefix         => Index_Base_Name,
843                  Attribute_Name => Name_Val,
844                  Expressions    => New_List (Expr_Pos));
845          end if;
846
847          return Expr;
848       end Add;
849
850       -----------------
851       -- Empty_Range --
852       -----------------
853
854       function Empty_Range (L, H : Node_Id) return Boolean is
855          Is_Empty : Boolean := False;
856          Low      : Node_Id;
857          High     : Node_Id;
858
859       begin
860          --  First check if L or H were already detected as overflowing the
861          --  index base range type by function Add above. If this is so Add
862          --  returns the empty node.
863
864          if No (L) or else No (H) then
865             return True;
866          end if;
867
868          for J in 1 .. 3 loop
869             case J is
870
871                --  L > H    range is empty
872
873                when 1 =>
874                   Low  := L;
875                   High := H;
876
877                --  B_L > H  range must be empty
878
879                when 2 =>
880                   Low  := Index_Base_L;
881                   High := H;
882
883                --  L > B_H  range must be empty
884
885                when 3 =>
886                   Low  := L;
887                   High := Index_Base_H;
888             end case;
889
890             if Local_Compile_Time_Known_Value (Low)
891               and then Local_Compile_Time_Known_Value (High)
892             then
893                Is_Empty :=
894                  UI_Gt (Local_Expr_Value (Low), Local_Expr_Value (High));
895             end if;
896
897             exit when Is_Empty;
898          end loop;
899
900          return Is_Empty;
901       end Empty_Range;
902
903       -----------
904       -- Equal --
905       -----------
906
907       function Equal (L, H : Node_Id) return Boolean is
908       begin
909          if L = H then
910             return True;
911
912          elsif Local_Compile_Time_Known_Value (L)
913            and then Local_Compile_Time_Known_Value (H)
914          then
915             return UI_Eq (Local_Expr_Value (L), Local_Expr_Value (H));
916          end if;
917
918          return False;
919       end Equal;
920
921       ----------------
922       -- Gen_Assign --
923       ----------------
924
925       function Gen_Assign (Ind : Node_Id; Expr : Node_Id) return List_Id is
926          L : constant List_Id := New_List;
927          F : Entity_Id;
928          A : Node_Id;
929
930          New_Indices  : List_Id;
931          Indexed_Comp : Node_Id;
932          Expr_Q       : Node_Id;
933          Comp_Type    : Entity_Id := Empty;
934
935          function Add_Loop_Actions (Lis : List_Id) return List_Id;
936          --  Collect insert_actions generated in the construction of a
937          --  loop, and prepend them to the sequence of assignments to
938          --  complete the eventual body of the loop.
939
940          ----------------------
941          -- Add_Loop_Actions --
942          ----------------------
943
944          function Add_Loop_Actions (Lis : List_Id) return List_Id is
945             Res : List_Id;
946
947          begin
948             --  Ada 2005 (AI-287): Do nothing else in case of default
949             --  initialized component.
950
951             if No (Expr) then
952                return Lis;
953
954             elsif Nkind (Parent (Expr)) = N_Component_Association
955               and then Present (Loop_Actions (Parent (Expr)))
956             then
957                Append_List (Lis, Loop_Actions (Parent (Expr)));
958                Res := Loop_Actions (Parent (Expr));
959                Set_Loop_Actions (Parent (Expr), No_List);
960                return Res;
961
962             else
963                return Lis;
964             end if;
965          end Add_Loop_Actions;
966
967       --  Start of processing for Gen_Assign
968
969       begin
970          if No (Indices) then
971             New_Indices := New_List;
972          else
973             New_Indices := New_Copy_List_Tree (Indices);
974          end if;
975
976          Append_To (New_Indices, Ind);
977
978          if Present (Flist) then
979             F := New_Copy_Tree (Flist);
980
981          elsif Present (Etype (N)) and then Needs_Finalization (Etype (N)) then
982             if Is_Entity_Name (Into)
983               and then Present (Scope (Entity (Into)))
984             then
985                F := Find_Final_List (Scope (Entity (Into)));
986             else
987                F := Find_Final_List (Current_Scope);
988             end if;
989          else
990             F := Empty;
991          end if;
992
993          if Present (Next_Index (Index)) then
994             return
995               Add_Loop_Actions (
996                 Build_Array_Aggr_Code
997                   (N           => Expr,
998                    Ctype       => Ctype,
999                    Index       => Next_Index (Index),
1000                    Into        => Into,
1001                    Scalar_Comp => Scalar_Comp,
1002                    Indices     => New_Indices,
1003                    Flist       => F));
1004          end if;
1005
1006          --  If we get here then we are at a bottom-level (sub-)aggregate
1007
1008          Indexed_Comp :=
1009            Checks_Off
1010              (Make_Indexed_Component (Loc,
1011                 Prefix      => New_Copy_Tree (Into),
1012                 Expressions => New_Indices));
1013
1014          Set_Assignment_OK (Indexed_Comp);
1015
1016          --  Ada 2005 (AI-287): In case of default initialized component, Expr
1017          --  is not present (and therefore we also initialize Expr_Q to empty).
1018
1019          if No (Expr) then
1020             Expr_Q := Empty;
1021          elsif Nkind (Expr) = N_Qualified_Expression then
1022             Expr_Q := Expression (Expr);
1023          else
1024             Expr_Q := Expr;
1025          end if;
1026
1027          if Present (Etype (N))
1028            and then Etype (N) /= Any_Composite
1029          then
1030             Comp_Type := Component_Type (Etype (N));
1031             pragma Assert (Comp_Type = Ctype); --  AI-287
1032
1033          elsif Present (Next (First (New_Indices))) then
1034
1035             --  Ada 2005 (AI-287): Do nothing in case of default initialized
1036             --  component because we have received the component type in
1037             --  the formal parameter Ctype.
1038
1039             --  ??? Some assert pragmas have been added to check if this new
1040             --      formal can be used to replace this code in all cases.
1041
1042             if Present (Expr) then
1043
1044                --  This is a multidimensional array. Recover the component
1045                --  type from the outermost aggregate, because subaggregates
1046                --  do not have an assigned type.
1047
1048                declare
1049                   P : Node_Id;
1050
1051                begin
1052                   P := Parent (Expr);
1053                   while Present (P) loop
1054                      if Nkind (P) = N_Aggregate
1055                        and then Present (Etype (P))
1056                      then
1057                         Comp_Type := Component_Type (Etype (P));
1058                         exit;
1059
1060                      else
1061                         P := Parent (P);
1062                      end if;
1063                   end loop;
1064
1065                   pragma Assert (Comp_Type = Ctype); --  AI-287
1066                end;
1067             end if;
1068          end if;
1069
1070          --  Ada 2005 (AI-287): We only analyze the expression in case of non-
1071          --  default initialized components (otherwise Expr_Q is not present).
1072
1073          if Present (Expr_Q)
1074            and then Nkind_In (Expr_Q, N_Aggregate, N_Extension_Aggregate)
1075          then
1076             --  At this stage the Expression may not have been analyzed yet
1077             --  because the array aggregate code has not been updated to use
1078             --  the Expansion_Delayed flag and avoid analysis altogether to
1079             --  solve the same problem (see Resolve_Aggr_Expr). So let us do
1080             --  the analysis of non-array aggregates now in order to get the
1081             --  value of Expansion_Delayed flag for the inner aggregate ???
1082
1083             if Present (Comp_Type) and then not Is_Array_Type (Comp_Type) then
1084                Analyze_And_Resolve (Expr_Q, Comp_Type);
1085             end if;
1086
1087             if Is_Delayed_Aggregate (Expr_Q) then
1088
1089                --  This is either a subaggregate of a multidimentional array,
1090                --  or a component of an array type whose component type is
1091                --  also an array. In the latter case, the expression may have
1092                --  component associations that provide different bounds from
1093                --  those of the component type, and sliding must occur. Instead
1094                --  of decomposing the current aggregate assignment, force the
1095                --  re-analysis of the assignment, so that a temporary will be
1096                --  generated in the usual fashion, and sliding will take place.
1097
1098                if Nkind (Parent (N)) = N_Assignment_Statement
1099                  and then Is_Array_Type (Comp_Type)
1100                  and then Present (Component_Associations (Expr_Q))
1101                  and then Must_Slide (Comp_Type, Etype (Expr_Q))
1102                then
1103                   Set_Expansion_Delayed (Expr_Q, False);
1104                   Set_Analyzed (Expr_Q, False);
1105
1106                else
1107                   return
1108                     Add_Loop_Actions (
1109                       Late_Expansion (
1110                         Expr_Q, Etype (Expr_Q), Indexed_Comp, F));
1111                end if;
1112             end if;
1113          end if;
1114
1115          --  Ada 2005 (AI-287): In case of default initialized component, call
1116          --  the initialization subprogram associated with the component type.
1117          --  If the component type is an access type, add an explicit null
1118          --  assignment, because for the back-end there is an initialization
1119          --  present for the whole aggregate, and no default initialization
1120          --  will take place.
1121
1122          --  In addition, if the component type is controlled, we must call
1123          --  its Initialize procedure explicitly, because there is no explicit
1124          --  object creation that will invoke it otherwise.
1125
1126          if No (Expr) then
1127             if Present (Base_Init_Proc (Base_Type (Ctype)))
1128               or else Has_Task (Base_Type (Ctype))
1129             then
1130                Append_List_To (L,
1131                  Build_Initialization_Call (Loc,
1132                    Id_Ref            => Indexed_Comp,
1133                    Typ               => Ctype,
1134                    With_Default_Init => True));
1135
1136             elsif Is_Access_Type (Ctype) then
1137                Append_To (L,
1138                   Make_Assignment_Statement (Loc,
1139                      Name => Indexed_Comp,
1140                      Expression => Make_Null (Loc)));
1141             end if;
1142
1143             if Needs_Finalization (Ctype) then
1144                Append_List_To (L,
1145                  Make_Init_Call (
1146                    Ref         => New_Copy_Tree (Indexed_Comp),
1147                    Typ         => Ctype,
1148                    Flist_Ref   => Find_Final_List (Current_Scope),
1149                    With_Attach => Make_Integer_Literal (Loc, 1)));
1150             end if;
1151
1152          else
1153             --  Now generate the assignment with no associated controlled
1154             --  actions since the target of the assignment may not have been
1155             --  initialized, it is not possible to Finalize it as expected by
1156             --  normal controlled assignment. The rest of the controlled
1157             --  actions are done manually with the proper finalization list
1158             --  coming from the context.
1159
1160             A :=
1161               Make_OK_Assignment_Statement (Loc,
1162                 Name       => Indexed_Comp,
1163                 Expression => New_Copy_Tree (Expr));
1164
1165             if Present (Comp_Type) and then Needs_Finalization (Comp_Type) then
1166                Set_No_Ctrl_Actions (A);
1167
1168                --  If this is an aggregate for an array of arrays, each
1169                --  sub-aggregate will be expanded as well, and even with
1170                --  No_Ctrl_Actions the assignments of inner components will
1171                --  require attachment in their assignments to temporaries.
1172                --  These temporaries must be finalized for each subaggregate,
1173                --  to prevent multiple attachments of the same temporary
1174                --  location to same finalization chain (and consequently
1175                --  circular lists). To ensure that finalization takes place
1176                --  for each subaggregate we wrap the assignment in a block.
1177
1178                if Is_Array_Type (Comp_Type)
1179                  and then Nkind (Expr) = N_Aggregate
1180                then
1181                   A :=
1182                     Make_Block_Statement (Loc,
1183                       Handled_Statement_Sequence =>
1184                         Make_Handled_Sequence_Of_Statements (Loc,
1185                            Statements => New_List (A)));
1186                end if;
1187             end if;
1188
1189             Append_To (L, A);
1190
1191             --  Adjust the tag if tagged (because of possible view
1192             --  conversions), unless compiling for a VM where
1193             --  tags are implicit.
1194
1195             if Present (Comp_Type)
1196               and then Is_Tagged_Type (Comp_Type)
1197               and then Tagged_Type_Expansion
1198             then
1199                A :=
1200                  Make_OK_Assignment_Statement (Loc,
1201                    Name =>
1202                      Make_Selected_Component (Loc,
1203                        Prefix =>  New_Copy_Tree (Indexed_Comp),
1204                        Selector_Name =>
1205                          New_Reference_To
1206                            (First_Tag_Component (Comp_Type), Loc)),
1207
1208                    Expression =>
1209                      Unchecked_Convert_To (RTE (RE_Tag),
1210                        New_Reference_To
1211                          (Node (First_Elmt (Access_Disp_Table (Comp_Type))),
1212                           Loc)));
1213
1214                Append_To (L, A);
1215             end if;
1216
1217             --  Adjust and attach the component to the proper final list, which
1218             --  can be the controller of the outer record object or the final
1219             --  list associated with the scope.
1220
1221             --  If the component is itself an array of controlled types, whose
1222             --  value is given by a sub-aggregate, then the attach calls have
1223             --  been generated when individual subcomponent are assigned, and
1224             --  must not be done again to prevent malformed finalization chains
1225             --  (see comments above, concerning the creation of a block to hold
1226             --  inner finalization actions).
1227
1228             if Present (Comp_Type)
1229               and then Needs_Finalization (Comp_Type)
1230               and then not Is_Limited_Type (Comp_Type)
1231               and then not
1232                 (Is_Array_Type (Comp_Type)
1233                    and then Is_Controlled (Component_Type (Comp_Type))
1234                    and then Nkind (Expr) = N_Aggregate)
1235             then
1236                Append_List_To (L,
1237                  Make_Adjust_Call (
1238                    Ref         => New_Copy_Tree (Indexed_Comp),
1239                    Typ         => Comp_Type,
1240                    Flist_Ref   => F,
1241                    With_Attach => Make_Integer_Literal (Loc, 1)));
1242             end if;
1243          end if;
1244
1245          return Add_Loop_Actions (L);
1246       end Gen_Assign;
1247
1248       --------------
1249       -- Gen_Loop --
1250       --------------
1251
1252       function Gen_Loop (L, H : Node_Id; Expr : Node_Id) return List_Id is
1253          L_J : Node_Id;
1254
1255          L_Range : Node_Id;
1256          --  Index_Base'(L) .. Index_Base'(H)
1257
1258          L_Iteration_Scheme : Node_Id;
1259          --  L_J in Index_Base'(L) .. Index_Base'(H)
1260
1261          L_Body : List_Id;
1262          --  The statements to execute in the loop
1263
1264          S : constant List_Id := New_List;
1265          --  List of statements
1266
1267          Tcopy : Node_Id;
1268          --  Copy of expression tree, used for checking purposes
1269
1270       begin
1271          --  If loop bounds define an empty range return the null statement
1272
1273          if Empty_Range (L, H) then
1274             Append_To (S, Make_Null_Statement (Loc));
1275
1276             --  Ada 2005 (AI-287): Nothing else need to be done in case of
1277             --  default initialized component.
1278
1279             if No (Expr) then
1280                null;
1281
1282             else
1283                --  The expression must be type-checked even though no component
1284                --  of the aggregate will have this value. This is done only for
1285                --  actual components of the array, not for subaggregates. Do
1286                --  the check on a copy, because the expression may be shared
1287                --  among several choices, some of which might be non-null.
1288
1289                if Present (Etype (N))
1290                  and then Is_Array_Type (Etype (N))
1291                  and then No (Next_Index (Index))
1292                then
1293                   Expander_Mode_Save_And_Set (False);
1294                   Tcopy := New_Copy_Tree (Expr);
1295                   Set_Parent (Tcopy, N);
1296                   Analyze_And_Resolve (Tcopy, Component_Type (Etype (N)));
1297                   Expander_Mode_Restore;
1298                end if;
1299             end if;
1300
1301             return S;
1302
1303          --  If loop bounds are the same then generate an assignment
1304
1305          elsif Equal (L, H) then
1306             return Gen_Assign (New_Copy_Tree (L), Expr);
1307
1308          --  If H - L <= 2 then generate a sequence of assignments when we are
1309          --  processing the bottom most aggregate and it contains scalar
1310          --  components.
1311
1312          elsif No (Next_Index (Index))
1313            and then Scalar_Comp
1314            and then Local_Compile_Time_Known_Value (L)
1315            and then Local_Compile_Time_Known_Value (H)
1316            and then Local_Expr_Value (H) - Local_Expr_Value (L) <= 2
1317          then
1318
1319             Append_List_To (S, Gen_Assign (New_Copy_Tree (L), Expr));
1320             Append_List_To (S, Gen_Assign (Add (1, To => L), Expr));
1321
1322             if Local_Expr_Value (H) - Local_Expr_Value (L) = 2 then
1323                Append_List_To (S, Gen_Assign (Add (2, To => L), Expr));
1324             end if;
1325
1326             return S;
1327          end if;
1328
1329          --  Otherwise construct the loop, starting with the loop index L_J
1330
1331          L_J := Make_Defining_Identifier (Loc, New_Internal_Name ('J'));
1332
1333          --  Construct "L .. H"
1334
1335          L_Range :=
1336            Make_Range
1337              (Loc,
1338               Low_Bound  => Make_Qualified_Expression
1339                               (Loc,
1340                                Subtype_Mark => Index_Base_Name,
1341                                Expression   => L),
1342               High_Bound => Make_Qualified_Expression
1343                               (Loc,
1344                                Subtype_Mark => Index_Base_Name,
1345                                Expression => H));
1346
1347          --  Construct "for L_J in Index_Base range L .. H"
1348
1349          L_Iteration_Scheme :=
1350            Make_Iteration_Scheme
1351              (Loc,
1352               Loop_Parameter_Specification =>
1353                 Make_Loop_Parameter_Specification
1354                   (Loc,
1355                    Defining_Identifier         => L_J,
1356                    Discrete_Subtype_Definition => L_Range));
1357
1358          --  Construct the statements to execute in the loop body
1359
1360          L_Body := Gen_Assign (New_Reference_To (L_J, Loc), Expr);
1361
1362          --  Construct the final loop
1363
1364          Append_To (S, Make_Implicit_Loop_Statement
1365                          (Node             => N,
1366                           Identifier       => Empty,
1367                           Iteration_Scheme => L_Iteration_Scheme,
1368                           Statements       => L_Body));
1369
1370          --  A small optimization: if the aggregate is initialized with a box
1371          --  and the component type has no initialization procedure, remove the
1372          --  useless empty loop.
1373
1374          if Nkind (First (S)) = N_Loop_Statement
1375            and then Is_Empty_List (Statements (First (S)))
1376          then
1377             return New_List (Make_Null_Statement (Loc));
1378          else
1379             return S;
1380          end if;
1381       end Gen_Loop;
1382
1383       ---------------
1384       -- Gen_While --
1385       ---------------
1386
1387       --  The code built is
1388
1389       --     W_J : Index_Base := L;
1390       --     while W_J < H loop
1391       --        W_J := Index_Base'Succ (W);
1392       --        L_Body;
1393       --     end loop;
1394
1395       function Gen_While (L, H : Node_Id; Expr : Node_Id) return List_Id is
1396          W_J : Node_Id;
1397
1398          W_Decl : Node_Id;
1399          --  W_J : Base_Type := L;
1400
1401          W_Iteration_Scheme : Node_Id;
1402          --  while W_J < H
1403
1404          W_Index_Succ : Node_Id;
1405          --  Index_Base'Succ (J)
1406
1407          W_Increment : Node_Id;
1408          --  W_J := Index_Base'Succ (W)
1409
1410          W_Body : constant List_Id := New_List;
1411          --  The statements to execute in the loop
1412
1413          S : constant List_Id := New_List;
1414          --  list of statement
1415
1416       begin
1417          --  If loop bounds define an empty range or are equal return null
1418
1419          if Empty_Range (L, H) or else Equal (L, H) then
1420             Append_To (S, Make_Null_Statement (Loc));
1421             return S;
1422          end if;
1423
1424          --  Build the decl of W_J
1425
1426          W_J    := Make_Defining_Identifier (Loc, New_Internal_Name ('J'));
1427          W_Decl :=
1428            Make_Object_Declaration
1429              (Loc,
1430               Defining_Identifier => W_J,
1431               Object_Definition   => Index_Base_Name,
1432               Expression          => L);
1433
1434          --  Theoretically we should do a New_Copy_Tree (L) here, but we know
1435          --  that in this particular case L is a fresh Expr generated by
1436          --  Add which we are the only ones to use.
1437
1438          Append_To (S, W_Decl);
1439
1440          --  Construct " while W_J < H"
1441
1442          W_Iteration_Scheme :=
1443            Make_Iteration_Scheme
1444              (Loc,
1445               Condition => Make_Op_Lt
1446                              (Loc,
1447                               Left_Opnd  => New_Reference_To (W_J, Loc),
1448                               Right_Opnd => New_Copy_Tree (H)));
1449
1450          --  Construct the statements to execute in the loop body
1451
1452          W_Index_Succ :=
1453            Make_Attribute_Reference
1454              (Loc,
1455               Prefix         => Index_Base_Name,
1456               Attribute_Name => Name_Succ,
1457               Expressions    => New_List (New_Reference_To (W_J, Loc)));
1458
1459          W_Increment  :=
1460            Make_OK_Assignment_Statement
1461              (Loc,
1462               Name       => New_Reference_To (W_J, Loc),
1463               Expression => W_Index_Succ);
1464
1465          Append_To (W_Body, W_Increment);
1466          Append_List_To (W_Body,
1467            Gen_Assign (New_Reference_To (W_J, Loc), Expr));
1468
1469          --  Construct the final loop
1470
1471          Append_To (S, Make_Implicit_Loop_Statement
1472                          (Node             => N,
1473                           Identifier       => Empty,
1474                           Iteration_Scheme => W_Iteration_Scheme,
1475                           Statements       => W_Body));
1476
1477          return S;
1478       end Gen_While;
1479
1480       ---------------------
1481       -- Index_Base_Name --
1482       ---------------------
1483
1484       function Index_Base_Name return Node_Id is
1485       begin
1486          return New_Reference_To (Index_Base, Sloc (N));
1487       end Index_Base_Name;
1488
1489       ------------------------------------
1490       -- Local_Compile_Time_Known_Value --
1491       ------------------------------------
1492
1493       function Local_Compile_Time_Known_Value (E : Node_Id) return Boolean is
1494       begin
1495          return Compile_Time_Known_Value (E)
1496            or else
1497              (Nkind (E) = N_Attribute_Reference
1498                and then Attribute_Name (E) = Name_Val
1499                and then Compile_Time_Known_Value (First (Expressions (E))));
1500       end Local_Compile_Time_Known_Value;
1501
1502       ----------------------
1503       -- Local_Expr_Value --
1504       ----------------------
1505
1506       function Local_Expr_Value (E : Node_Id) return Uint is
1507       begin
1508          if Compile_Time_Known_Value (E) then
1509             return Expr_Value (E);
1510          else
1511             return Expr_Value (First (Expressions (E)));
1512          end if;
1513       end Local_Expr_Value;
1514
1515       --  Build_Array_Aggr_Code Variables
1516
1517       Assoc  : Node_Id;
1518       Choice : Node_Id;
1519       Expr   : Node_Id;
1520       Typ    : Entity_Id;
1521
1522       Others_Expr        : Node_Id := Empty;
1523       Others_Box_Present : Boolean := False;
1524
1525       Aggr_L : constant Node_Id := Low_Bound (Aggregate_Bounds (N));
1526       Aggr_H : constant Node_Id := High_Bound (Aggregate_Bounds (N));
1527       --  The aggregate bounds of this specific sub-aggregate. Note that if
1528       --  the code generated by Build_Array_Aggr_Code is executed then these
1529       --  bounds are OK. Otherwise a Constraint_Error would have been raised.
1530
1531       Aggr_Low  : constant Node_Id := Duplicate_Subexpr_No_Checks (Aggr_L);
1532       Aggr_High : constant Node_Id := Duplicate_Subexpr_No_Checks (Aggr_H);
1533       --  After Duplicate_Subexpr these are side-effect free
1534
1535       Low        : Node_Id;
1536       High       : Node_Id;
1537
1538       Nb_Choices : Nat := 0;
1539       Table      : Case_Table_Type (1 .. Number_Of_Choices (N));
1540       --  Used to sort all the different choice values
1541
1542       Nb_Elements : Int;
1543       --  Number of elements in the positional aggregate
1544
1545       New_Code : constant List_Id := New_List;
1546
1547    --  Start of processing for Build_Array_Aggr_Code
1548
1549    begin
1550       --  First before we start, a special case. if we have a bit packed
1551       --  array represented as a modular type, then clear the value to
1552       --  zero first, to ensure that unused bits are properly cleared.
1553
1554       Typ := Etype (N);
1555
1556       if Present (Typ)
1557         and then Is_Bit_Packed_Array (Typ)
1558         and then Is_Modular_Integer_Type (Packed_Array_Type (Typ))
1559       then
1560          Append_To (New_Code,
1561            Make_Assignment_Statement (Loc,
1562              Name => New_Copy_Tree (Into),
1563              Expression =>
1564                Unchecked_Convert_To (Typ,
1565                  Make_Integer_Literal (Loc, Uint_0))));
1566       end if;
1567
1568       --  If the component type contains tasks, we need to build a Master
1569       --  entity in the current scope, because it will be needed if build-
1570       --  in-place functions are called in the expanded code.
1571
1572       if Nkind (Parent (N)) = N_Object_Declaration
1573         and then Has_Task (Typ)
1574       then
1575          Build_Master_Entity (Defining_Identifier (Parent (N)));
1576       end if;
1577
1578       --  STEP 1: Process component associations
1579
1580       --  For those associations that may generate a loop, initialize
1581       --  Loop_Actions to collect inserted actions that may be crated.
1582
1583       --  Skip this if no component associations
1584
1585       if No (Expressions (N)) then
1586
1587          --  STEP 1 (a): Sort the discrete choices
1588
1589          Assoc := First (Component_Associations (N));
1590          while Present (Assoc) loop
1591             Choice := First (Choices (Assoc));
1592             while Present (Choice) loop
1593                if Nkind (Choice) = N_Others_Choice then
1594                   Set_Loop_Actions (Assoc, New_List);
1595
1596                   if Box_Present (Assoc) then
1597                      Others_Box_Present := True;
1598                   else
1599                      Others_Expr := Expression (Assoc);
1600                   end if;
1601                   exit;
1602                end if;
1603
1604                Get_Index_Bounds (Choice, Low, High);
1605
1606                if Low /= High then
1607                   Set_Loop_Actions (Assoc, New_List);
1608                end if;
1609
1610                Nb_Choices := Nb_Choices + 1;
1611                if Box_Present (Assoc) then
1612                   Table (Nb_Choices) := (Choice_Lo   => Low,
1613                                          Choice_Hi   => High,
1614                                          Choice_Node => Empty);
1615                else
1616                   Table (Nb_Choices) := (Choice_Lo   => Low,
1617                                          Choice_Hi   => High,
1618                                          Choice_Node => Expression (Assoc));
1619                end if;
1620                Next (Choice);
1621             end loop;
1622
1623             Next (Assoc);
1624          end loop;
1625
1626          --  If there is more than one set of choices these must be static
1627          --  and we can therefore sort them. Remember that Nb_Choices does not
1628          --  account for an others choice.
1629
1630          if Nb_Choices > 1 then
1631             Sort_Case_Table (Table);
1632          end if;
1633
1634          --  STEP 1 (b):  take care of the whole set of discrete choices
1635
1636          for J in 1 .. Nb_Choices loop
1637             Low  := Table (J).Choice_Lo;
1638             High := Table (J).Choice_Hi;
1639             Expr := Table (J).Choice_Node;
1640             Append_List (Gen_Loop (Low, High, Expr), To => New_Code);
1641          end loop;
1642
1643          --  STEP 1 (c): generate the remaining loops to cover others choice
1644          --  We don't need to generate loops over empty gaps, but if there is
1645          --  a single empty range we must analyze the expression for semantics
1646
1647          if Present (Others_Expr) or else Others_Box_Present then
1648             declare
1649                First : Boolean := True;
1650
1651             begin
1652                for J in 0 .. Nb_Choices loop
1653                   if J = 0 then
1654                      Low := Aggr_Low;
1655                   else
1656                      Low := Add (1, To => Table (J).Choice_Hi);
1657                   end if;
1658
1659                   if J = Nb_Choices then
1660                      High := Aggr_High;
1661                   else
1662                      High := Add (-1, To => Table (J + 1).Choice_Lo);
1663                   end if;
1664
1665                   --  If this is an expansion within an init proc, make
1666                   --  sure that discriminant references are replaced by
1667                   --  the corresponding discriminal.
1668
1669                   if Inside_Init_Proc then
1670                      if Is_Entity_Name (Low)
1671                        and then Ekind (Entity (Low)) = E_Discriminant
1672                      then
1673                         Set_Entity (Low, Discriminal (Entity (Low)));
1674                      end if;
1675
1676                      if Is_Entity_Name (High)
1677                        and then Ekind (Entity (High)) = E_Discriminant
1678                      then
1679                         Set_Entity (High, Discriminal (Entity (High)));
1680                      end if;
1681                   end if;
1682
1683                   if First
1684                     or else not Empty_Range (Low, High)
1685                   then
1686                      First := False;
1687                      Append_List
1688                        (Gen_Loop (Low, High, Others_Expr), To => New_Code);
1689                   end if;
1690                end loop;
1691             end;
1692          end if;
1693
1694       --  STEP 2: Process positional components
1695
1696       else
1697          --  STEP 2 (a): Generate the assignments for each positional element
1698          --  Note that here we have to use Aggr_L rather than Aggr_Low because
1699          --  Aggr_L is analyzed and Add wants an analyzed expression.
1700
1701          Expr        := First (Expressions (N));
1702          Nb_Elements := -1;
1703          while Present (Expr) loop
1704             Nb_Elements := Nb_Elements + 1;
1705             Append_List (Gen_Assign (Add (Nb_Elements, To => Aggr_L), Expr),
1706                          To => New_Code);
1707             Next (Expr);
1708          end loop;
1709
1710          --  STEP 2 (b): Generate final loop if an others choice is present
1711          --  Here Nb_Elements gives the offset of the last positional element.
1712
1713          if Present (Component_Associations (N)) then
1714             Assoc := Last (Component_Associations (N));
1715
1716             --  Ada 2005 (AI-287)
1717
1718             if Box_Present (Assoc) then
1719                Append_List (Gen_While (Add (Nb_Elements, To => Aggr_L),
1720                                        Aggr_High,
1721                                        Empty),
1722                             To => New_Code);
1723             else
1724                Expr  := Expression (Assoc);
1725
1726                Append_List (Gen_While (Add (Nb_Elements, To => Aggr_L),
1727                                        Aggr_High,
1728                                        Expr), --  AI-287
1729                             To => New_Code);
1730             end if;
1731          end if;
1732       end if;
1733
1734       return New_Code;
1735    end Build_Array_Aggr_Code;
1736
1737    ----------------------------
1738    -- Build_Record_Aggr_Code --
1739    ----------------------------
1740
1741    function Build_Record_Aggr_Code
1742      (N                             : Node_Id;
1743       Typ                           : Entity_Id;
1744       Lhs                           : Node_Id;
1745       Flist                         : Node_Id   := Empty;
1746       Obj                           : Entity_Id := Empty;
1747       Is_Limited_Ancestor_Expansion : Boolean   := False) return List_Id
1748    is
1749       Loc     : constant Source_Ptr := Sloc (N);
1750       L       : constant List_Id    := New_List;
1751       N_Typ   : constant Entity_Id  := Etype (N);
1752
1753       Comp      : Node_Id;
1754       Instr     : Node_Id;
1755       Ref       : Node_Id;
1756       Target    : Entity_Id;
1757       F         : Node_Id;
1758       Comp_Type : Entity_Id;
1759       Selector  : Entity_Id;
1760       Comp_Expr : Node_Id;
1761       Expr_Q    : Node_Id;
1762
1763       Internal_Final_List : Node_Id := Empty;
1764
1765       --  If this is an internal aggregate, the External_Final_List is an
1766       --  expression for the controller record of the enclosing type.
1767
1768       --  If the current aggregate has several controlled components, this
1769       --  expression will appear in several calls to attach to the finali-
1770       --  zation list, and it must not be shared.
1771
1772       External_Final_List      : Node_Id;
1773       Ancestor_Is_Expression   : Boolean := False;
1774       Ancestor_Is_Subtype_Mark : Boolean := False;
1775
1776       Init_Typ : Entity_Id := Empty;
1777       Attach   : Node_Id;
1778
1779       Ctrl_Stuff_Done : Boolean := False;
1780       --  True if Gen_Ctrl_Actions_For_Aggr has already been called; calls
1781       --  after the first do nothing.
1782
1783       function Ancestor_Discriminant_Value (Disc : Entity_Id) return Node_Id;
1784       --  Returns the value that the given discriminant of an ancestor type
1785       --  should receive (in the absence of a conflict with the value provided
1786       --  by an ancestor part of an extension aggregate).
1787
1788       procedure Check_Ancestor_Discriminants (Anc_Typ : Entity_Id);
1789       --  Check that each of the discriminant values defined by the ancestor
1790       --  part of an extension aggregate match the corresponding values
1791       --  provided by either an association of the aggregate or by the
1792       --  constraint imposed by a parent type (RM95-4.3.2(8)).
1793
1794       function Compatible_Int_Bounds
1795         (Agg_Bounds : Node_Id;
1796          Typ_Bounds : Node_Id) return Boolean;
1797       --  Return true if Agg_Bounds are equal or within Typ_Bounds. It is
1798       --  assumed that both bounds are integer ranges.
1799
1800       procedure Gen_Ctrl_Actions_For_Aggr;
1801       --  Deal with the various controlled type data structure initializations
1802       --  (but only if it hasn't been done already).
1803
1804       function Get_Constraint_Association (T : Entity_Id) return Node_Id;
1805       --  Returns the first discriminant association in the constraint
1806       --  associated with T, if any, otherwise returns Empty.
1807
1808       function Init_Controller
1809         (Target  : Node_Id;
1810          Typ     : Entity_Id;
1811          F       : Node_Id;
1812          Attach  : Node_Id;
1813          Init_Pr : Boolean) return List_Id;
1814       --  Returns the list of statements necessary to initialize the internal
1815       --  controller of the (possible) ancestor typ into target and attach it
1816       --  to finalization list F. Init_Pr conditions the call to the init proc
1817       --  since it may already be done due to ancestor initialization.
1818
1819       function Is_Int_Range_Bounds (Bounds : Node_Id) return Boolean;
1820       --  Check whether Bounds is a range node and its lower and higher bounds
1821       --  are integers literals.
1822
1823       ---------------------------------
1824       -- Ancestor_Discriminant_Value --
1825       ---------------------------------
1826
1827       function Ancestor_Discriminant_Value (Disc : Entity_Id) return Node_Id is
1828          Assoc        : Node_Id;
1829          Assoc_Elmt   : Elmt_Id;
1830          Aggr_Comp    : Entity_Id;
1831          Corresp_Disc : Entity_Id;
1832          Current_Typ  : Entity_Id := Base_Type (Typ);
1833          Parent_Typ   : Entity_Id;
1834          Parent_Disc  : Entity_Id;
1835          Save_Assoc   : Node_Id := Empty;
1836
1837       begin
1838          --  First check any discriminant associations to see if any of them
1839          --  provide a value for the discriminant.
1840
1841          if Present (Discriminant_Specifications (Parent (Current_Typ))) then
1842             Assoc := First (Component_Associations (N));
1843             while Present (Assoc) loop
1844                Aggr_Comp := Entity (First (Choices (Assoc)));
1845
1846                if Ekind (Aggr_Comp) = E_Discriminant then
1847                   Save_Assoc := Expression (Assoc);
1848
1849                   Corresp_Disc := Corresponding_Discriminant (Aggr_Comp);
1850                   while Present (Corresp_Disc) loop
1851
1852                      --  If found a corresponding discriminant then return the
1853                      --  value given in the aggregate. (Note: this is not
1854                      --  correct in the presence of side effects. ???)
1855
1856                      if Disc = Corresp_Disc then
1857                         return Duplicate_Subexpr (Expression (Assoc));
1858                      end if;
1859
1860                      Corresp_Disc :=
1861                        Corresponding_Discriminant (Corresp_Disc);
1862                   end loop;
1863                end if;
1864
1865                Next (Assoc);
1866             end loop;
1867          end if;
1868
1869          --  No match found in aggregate, so chain up parent types to find
1870          --  a constraint that defines the value of the discriminant.
1871
1872          Parent_Typ := Etype (Current_Typ);
1873          while Current_Typ /= Parent_Typ loop
1874             if Has_Discriminants (Parent_Typ)
1875               and then not Has_Unknown_Discriminants (Parent_Typ)
1876             then
1877                Parent_Disc := First_Discriminant (Parent_Typ);
1878
1879                --  We either get the association from the subtype indication
1880                --  of the type definition itself, or from the discriminant
1881                --  constraint associated with the type entity (which is
1882                --  preferable, but it's not always present ???)
1883
1884                if Is_Empty_Elmt_List (
1885                  Discriminant_Constraint (Current_Typ))
1886                then
1887                   Assoc := Get_Constraint_Association (Current_Typ);
1888                   Assoc_Elmt := No_Elmt;
1889                else
1890                   Assoc_Elmt :=
1891                     First_Elmt (Discriminant_Constraint (Current_Typ));
1892                   Assoc := Node (Assoc_Elmt);
1893                end if;
1894
1895                --  Traverse the discriminants of the parent type looking
1896                --  for one that corresponds.
1897
1898                while Present (Parent_Disc) and then Present (Assoc) loop
1899                   Corresp_Disc := Parent_Disc;
1900                   while Present (Corresp_Disc)
1901                     and then Disc /= Corresp_Disc
1902                   loop
1903                      Corresp_Disc :=
1904                        Corresponding_Discriminant (Corresp_Disc);
1905                   end loop;
1906
1907                   if Disc = Corresp_Disc then
1908                      if Nkind (Assoc) = N_Discriminant_Association then
1909                         Assoc := Expression (Assoc);
1910                      end if;
1911
1912                      --  If the located association directly denotes a
1913                      --  discriminant, then use the value of a saved
1914                      --  association of the aggregate. This is a kludge to
1915                      --  handle certain cases involving multiple discriminants
1916                      --  mapped to a single discriminant of a descendant. It's
1917                      --  not clear how to locate the appropriate discriminant
1918                      --  value for such cases. ???
1919
1920                      if Is_Entity_Name (Assoc)
1921                        and then Ekind (Entity (Assoc)) = E_Discriminant
1922                      then
1923                         Assoc := Save_Assoc;
1924                      end if;
1925
1926                      return Duplicate_Subexpr (Assoc);
1927                   end if;
1928
1929                   Next_Discriminant (Parent_Disc);
1930
1931                   if No (Assoc_Elmt) then
1932                      Next (Assoc);
1933                   else
1934                      Next_Elmt (Assoc_Elmt);
1935                      if Present (Assoc_Elmt) then
1936                         Assoc := Node (Assoc_Elmt);
1937                      else
1938                         Assoc := Empty;
1939                      end if;
1940                   end if;
1941                end loop;
1942             end if;
1943
1944             Current_Typ := Parent_Typ;
1945             Parent_Typ := Etype (Current_Typ);
1946          end loop;
1947
1948          --  In some cases there's no ancestor value to locate (such as
1949          --  when an ancestor part given by an expression defines the
1950          --  discriminant value).
1951
1952          return Empty;
1953       end Ancestor_Discriminant_Value;
1954
1955       ----------------------------------
1956       -- Check_Ancestor_Discriminants --
1957       ----------------------------------
1958
1959       procedure Check_Ancestor_Discriminants (Anc_Typ : Entity_Id) is
1960          Discr      : Entity_Id;
1961          Disc_Value : Node_Id;
1962          Cond       : Node_Id;
1963
1964       begin
1965          Discr := First_Discriminant (Base_Type (Anc_Typ));
1966          while Present (Discr) loop
1967             Disc_Value := Ancestor_Discriminant_Value (Discr);
1968
1969             if Present (Disc_Value) then
1970                Cond := Make_Op_Ne (Loc,
1971                  Left_Opnd =>
1972                    Make_Selected_Component (Loc,
1973                      Prefix        => New_Copy_Tree (Target),
1974                      Selector_Name => New_Occurrence_Of (Discr, Loc)),
1975                  Right_Opnd => Disc_Value);
1976
1977                Append_To (L,
1978                  Make_Raise_Constraint_Error (Loc,
1979                    Condition => Cond,
1980                    Reason    => CE_Discriminant_Check_Failed));
1981             end if;
1982
1983             Next_Discriminant (Discr);
1984          end loop;
1985       end Check_Ancestor_Discriminants;
1986
1987       ---------------------------
1988       -- Compatible_Int_Bounds --
1989       ---------------------------
1990
1991       function Compatible_Int_Bounds
1992         (Agg_Bounds : Node_Id;
1993          Typ_Bounds : Node_Id) return Boolean
1994       is
1995          Agg_Lo : constant Uint := Intval (Low_Bound  (Agg_Bounds));
1996          Agg_Hi : constant Uint := Intval (High_Bound (Agg_Bounds));
1997          Typ_Lo : constant Uint := Intval (Low_Bound  (Typ_Bounds));
1998          Typ_Hi : constant Uint := Intval (High_Bound (Typ_Bounds));
1999       begin
2000          return Typ_Lo <= Agg_Lo and then Agg_Hi <= Typ_Hi;
2001       end Compatible_Int_Bounds;
2002
2003       --------------------------------
2004       -- Get_Constraint_Association --
2005       --------------------------------
2006
2007       function Get_Constraint_Association (T : Entity_Id) return Node_Id is
2008          Typ_Def : constant Node_Id := Type_Definition (Parent (T));
2009          Indic   : constant Node_Id := Subtype_Indication (Typ_Def);
2010
2011       begin
2012          --  ??? Also need to cover case of a type mark denoting a subtype
2013          --  with constraint.
2014
2015          if Nkind (Indic) = N_Subtype_Indication
2016            and then Present (Constraint (Indic))
2017          then
2018             return First (Constraints (Constraint (Indic)));
2019          end if;
2020
2021          return Empty;
2022       end Get_Constraint_Association;
2023
2024       ---------------------
2025       -- Init_Controller --
2026       ---------------------
2027
2028       function Init_Controller
2029         (Target  : Node_Id;
2030          Typ     : Entity_Id;
2031          F       : Node_Id;
2032          Attach  : Node_Id;
2033          Init_Pr : Boolean) return List_Id
2034       is
2035          L           : constant List_Id := New_List;
2036          Ref         : Node_Id;
2037          RC          : RE_Id;
2038          Target_Type : Entity_Id;
2039
2040       begin
2041          --  Generate:
2042          --     init-proc (target._controller);
2043          --     initialize (target._controller);
2044          --     Attach_to_Final_List (target._controller, F);
2045
2046          Ref :=
2047            Make_Selected_Component (Loc,
2048              Prefix        => Convert_To (Typ, New_Copy_Tree (Target)),
2049              Selector_Name => Make_Identifier (Loc, Name_uController));
2050          Set_Assignment_OK (Ref);
2051
2052          --  Ada 2005 (AI-287): Give support to aggregates of limited types.
2053          --  If the type is intrinsically limited the controller is limited as
2054          --  well. If it is tagged and limited then so is the controller.
2055          --  Otherwise an untagged type may have limited components without its
2056          --  full view being limited, so the controller is not limited.
2057
2058          if Nkind (Target) = N_Identifier then
2059             Target_Type := Etype (Target);
2060
2061          elsif Nkind (Target) = N_Selected_Component then
2062             Target_Type := Etype (Selector_Name (Target));
2063
2064          elsif Nkind (Target) = N_Unchecked_Type_Conversion then
2065             Target_Type := Etype (Target);
2066
2067          elsif Nkind (Target) = N_Unchecked_Expression
2068            and then Nkind (Expression (Target)) = N_Indexed_Component
2069          then
2070             Target_Type := Etype (Prefix (Expression (Target)));
2071
2072          else
2073             Target_Type := Etype (Target);
2074          end if;
2075
2076          --  If the target has not been analyzed yet, as will happen with
2077          --  delayed expansion, use the given type (either the aggregate type
2078          --  or an ancestor) to determine limitedness.
2079
2080          if No (Target_Type) then
2081             Target_Type := Typ;
2082          end if;
2083
2084          if (Is_Tagged_Type (Target_Type))
2085            and then Is_Limited_Type (Target_Type)
2086          then
2087             RC := RE_Limited_Record_Controller;
2088
2089          elsif Is_Inherently_Limited_Type (Target_Type) then
2090             RC := RE_Limited_Record_Controller;
2091
2092          else
2093             RC := RE_Record_Controller;
2094          end if;
2095
2096          if Init_Pr then
2097             Append_List_To (L,
2098               Build_Initialization_Call (Loc,
2099                 Id_Ref       => Ref,
2100                 Typ          => RTE (RC),
2101                 In_Init_Proc => Within_Init_Proc));
2102          end if;
2103
2104          Append_To (L,
2105            Make_Procedure_Call_Statement (Loc,
2106              Name =>
2107                New_Reference_To (
2108                  Find_Prim_Op (RTE (RC), Name_Initialize), Loc),
2109              Parameter_Associations =>
2110                New_List (New_Copy_Tree (Ref))));
2111
2112          Append_To (L,
2113            Make_Attach_Call (
2114              Obj_Ref     => New_Copy_Tree (Ref),
2115              Flist_Ref   => F,
2116              With_Attach => Attach));
2117
2118          return L;
2119       end Init_Controller;
2120
2121       -------------------------
2122       -- Is_Int_Range_Bounds --
2123       -------------------------
2124
2125       function Is_Int_Range_Bounds (Bounds : Node_Id) return Boolean is
2126       begin
2127          return Nkind (Bounds) = N_Range
2128            and then Nkind (Low_Bound  (Bounds)) = N_Integer_Literal
2129            and then Nkind (High_Bound (Bounds)) = N_Integer_Literal;
2130       end Is_Int_Range_Bounds;
2131
2132       -------------------------------
2133       -- Gen_Ctrl_Actions_For_Aggr --
2134       -------------------------------
2135
2136       procedure Gen_Ctrl_Actions_For_Aggr is
2137          Alloc : Node_Id := Empty;
2138
2139       begin
2140          --  Do the work only the first time this is called
2141
2142          if Ctrl_Stuff_Done then
2143             return;
2144          end if;
2145
2146          Ctrl_Stuff_Done := True;
2147
2148          if Present (Obj)
2149            and then Finalize_Storage_Only (Typ)
2150            and then
2151              (Is_Library_Level_Entity (Obj)
2152                 or else Entity (Constant_Value (RTE (RE_Garbage_Collected))) =
2153                                                           Standard_True)
2154
2155             --  why not Is_True (Expr_Value (RTE (RE_Garbaage_Collected) ???
2156          then
2157             Attach := Make_Integer_Literal (Loc, 0);
2158
2159          elsif Nkind (Parent (N)) = N_Qualified_Expression
2160            and then Nkind (Parent (Parent (N))) = N_Allocator
2161          then
2162             Alloc  := Parent (Parent (N));
2163             Attach := Make_Integer_Literal (Loc, 2);
2164
2165          else
2166             Attach := Make_Integer_Literal (Loc, 1);
2167          end if;
2168
2169          --  Determine the external finalization list. It is either the
2170          --  finalization list of the outer-scope or the one coming from
2171          --  an outer aggregate.  When the target is not a temporary, the
2172          --  proper scope is the scope of the target rather than the
2173          --  potentially transient current scope.
2174
2175          if Needs_Finalization (Typ) then
2176
2177             --  The current aggregate belongs to an allocator which creates
2178             --  an object through an anonymous access type or acts as the root
2179             --  of a coextension chain.
2180
2181             if Present (Alloc)
2182               and then
2183                 (Is_Coextension_Root (Alloc)
2184                    or else Ekind (Etype (Alloc)) = E_Anonymous_Access_Type)
2185             then
2186                if No (Associated_Final_Chain (Etype (Alloc))) then
2187                   Build_Final_List (Alloc, Etype (Alloc));
2188                end if;
2189
2190                External_Final_List :=
2191                  Make_Selected_Component (Loc,
2192                    Prefix =>
2193                      New_Reference_To (
2194                        Associated_Final_Chain (Etype (Alloc)), Loc),
2195                    Selector_Name =>
2196                      Make_Identifier (Loc, Name_F));
2197
2198             elsif Present (Flist) then
2199                External_Final_List := New_Copy_Tree (Flist);
2200
2201             elsif Is_Entity_Name (Target)
2202               and then Present (Scope (Entity (Target)))
2203             then
2204                External_Final_List :=
2205                  Find_Final_List (Scope (Entity (Target)));
2206
2207             else
2208                External_Final_List := Find_Final_List (Current_Scope);
2209             end if;
2210          else
2211             External_Final_List := Empty;
2212          end if;
2213
2214          --  Initialize and attach the outer object in the is_controlled case
2215
2216          if Is_Controlled (Typ) then
2217             if Ancestor_Is_Subtype_Mark then
2218                Ref := Convert_To (Init_Typ, New_Copy_Tree (Target));
2219                Set_Assignment_OK (Ref);
2220                Append_To (L,
2221                  Make_Procedure_Call_Statement (Loc,
2222                    Name =>
2223                      New_Reference_To
2224                        (Find_Prim_Op (Init_Typ, Name_Initialize), Loc),
2225                    Parameter_Associations => New_List (New_Copy_Tree (Ref))));
2226             end if;
2227
2228             if not Has_Controlled_Component (Typ) then
2229                Ref := New_Copy_Tree (Target);
2230                Set_Assignment_OK (Ref);
2231
2232                --  This is an aggregate of a coextension. Do not produce a
2233                --  finalization call, but rather attach the reference of the
2234                --  aggregate to its coextension chain.
2235
2236                if Present (Alloc)
2237                  and then Is_Dynamic_Coextension (Alloc)
2238                then
2239                   if No (Coextensions (Alloc)) then
2240                      Set_Coextensions (Alloc, New_Elmt_List);
2241                   end if;
2242
2243                   Append_Elmt (Ref, Coextensions (Alloc));
2244                else
2245                   Append_To (L,
2246                     Make_Attach_Call (
2247                       Obj_Ref     => Ref,
2248                       Flist_Ref   => New_Copy_Tree (External_Final_List),
2249                       With_Attach => Attach));
2250                end if;
2251             end if;
2252          end if;
2253
2254          --  In the Has_Controlled component case, all the intermediate
2255          --  controllers must be initialized.
2256
2257          if Has_Controlled_Component (Typ)
2258            and not Is_Limited_Ancestor_Expansion
2259          then
2260             declare
2261                Inner_Typ : Entity_Id;
2262                Outer_Typ : Entity_Id;
2263                At_Root   : Boolean;
2264
2265             begin
2266                --  Find outer type with a controller
2267
2268                Outer_Typ := Base_Type (Typ);
2269                while Outer_Typ /= Init_Typ
2270                  and then not Has_New_Controlled_Component (Outer_Typ)
2271                loop
2272                   Outer_Typ := Etype (Outer_Typ);
2273                end loop;
2274
2275                --  Attach it to the outer record controller to the external
2276                --  final list.
2277
2278                if Outer_Typ = Init_Typ then
2279                   Append_List_To (L,
2280                     Init_Controller (
2281                       Target  => Target,
2282                       Typ     => Outer_Typ,
2283                       F       => External_Final_List,
2284                       Attach  => Attach,
2285                       Init_Pr => False));
2286
2287                   At_Root   := True;
2288                   Inner_Typ := Init_Typ;
2289
2290                else
2291                   Append_List_To (L,
2292                     Init_Controller (
2293                       Target  => Target,
2294                       Typ     => Outer_Typ,
2295                       F       => External_Final_List,
2296                       Attach  => Attach,
2297                       Init_Pr => True));
2298
2299                   Inner_Typ := Etype (Outer_Typ);
2300                   At_Root   :=
2301                     not Is_Tagged_Type (Typ) or else Inner_Typ = Outer_Typ;
2302                end if;
2303
2304                --  The outer object has to be attached as well
2305
2306                if Is_Controlled (Typ) then
2307                   Ref := New_Copy_Tree (Target);
2308                   Set_Assignment_OK (Ref);
2309                   Append_To (L,
2310                     Make_Attach_Call (
2311                       Obj_Ref     => Ref,
2312                       Flist_Ref   => New_Copy_Tree (External_Final_List),
2313                       With_Attach => New_Copy_Tree (Attach)));
2314                end if;
2315
2316                --  Initialize the internal controllers for tagged types with
2317                --  more than one controller.
2318
2319                while not At_Root and then Inner_Typ /= Init_Typ loop
2320                   if Has_New_Controlled_Component (Inner_Typ) then
2321                      F :=
2322                        Make_Selected_Component (Loc,
2323                          Prefix =>
2324                            Convert_To (Outer_Typ, New_Copy_Tree (Target)),
2325                          Selector_Name =>
2326                            Make_Identifier (Loc, Name_uController));
2327                      F :=
2328                        Make_Selected_Component (Loc,
2329                          Prefix => F,
2330                          Selector_Name => Make_Identifier (Loc, Name_F));
2331
2332                      Append_List_To (L,
2333                        Init_Controller (
2334                          Target  => Target,
2335                          Typ     => Inner_Typ,
2336                          F       => F,
2337                          Attach  => Make_Integer_Literal (Loc, 1),
2338                          Init_Pr => True));
2339                      Outer_Typ := Inner_Typ;
2340                   end if;
2341
2342                   --  Stop at the root
2343
2344                   At_Root := Inner_Typ = Etype (Inner_Typ);
2345                   Inner_Typ := Etype (Inner_Typ);
2346                end loop;
2347
2348                --  If not done yet attach the controller of the ancestor part
2349
2350                if Outer_Typ /= Init_Typ
2351                  and then Inner_Typ = Init_Typ
2352                  and then Has_Controlled_Component (Init_Typ)
2353                then
2354                   F :=
2355                     Make_Selected_Component (Loc,
2356                       Prefix => Convert_To (Outer_Typ, New_Copy_Tree (Target)),
2357                       Selector_Name =>
2358                         Make_Identifier (Loc, Name_uController));
2359                   F :=
2360                     Make_Selected_Component (Loc,
2361                       Prefix => F,
2362                       Selector_Name => Make_Identifier (Loc, Name_F));
2363
2364                   Attach := Make_Integer_Literal (Loc, 1);
2365                   Append_List_To (L,
2366                     Init_Controller (
2367                       Target  => Target,
2368                       Typ     => Init_Typ,
2369                       F       => F,
2370                       Attach  => Attach,
2371                       Init_Pr => False));
2372
2373                      --  Note: Init_Pr is False because the ancestor part has
2374                      --  already been initialized either way (by default, if
2375                      --  given by a type name, otherwise from the expression).
2376
2377                end if;
2378             end;
2379          end if;
2380       end Gen_Ctrl_Actions_For_Aggr;
2381
2382       function Rewrite_Discriminant (Expr : Node_Id) return Traverse_Result;
2383       --  If default expression of a component mentions a discriminant of the
2384       --  type, it must be rewritten as the discriminant of the target object.
2385
2386       function Replace_Type (Expr : Node_Id) return Traverse_Result;
2387       --  If the aggregate contains a self-reference, traverse each expression
2388       --  to replace a possible self-reference with a reference to the proper
2389       --  component of the target of the assignment.
2390
2391       --------------------------
2392       -- Rewrite_Discriminant --
2393       --------------------------
2394
2395       function Rewrite_Discriminant (Expr : Node_Id) return Traverse_Result is
2396       begin
2397          if Nkind (Expr) = N_Identifier
2398            and then Present (Entity (Expr))
2399            and then Ekind (Entity (Expr)) = E_In_Parameter
2400            and then Present (Discriminal_Link (Entity (Expr)))
2401          then
2402             Rewrite (Expr,
2403               Make_Selected_Component (Loc,
2404                 Prefix        => New_Occurrence_Of (Obj, Loc),
2405                 Selector_Name => Make_Identifier (Loc, Chars (Expr))));
2406          end if;
2407          return OK;
2408       end Rewrite_Discriminant;
2409
2410       ------------------
2411       -- Replace_Type --
2412       ------------------
2413
2414       function Replace_Type (Expr : Node_Id) return Traverse_Result is
2415       begin
2416          --  Note regarding the Root_Type test below: Aggregate components for
2417          --  self-referential types include attribute references to the current
2418          --  instance, of the form: Typ'access, etc.. These references are
2419          --  rewritten as references to the target of the aggregate: the
2420          --  left-hand side of an assignment, the entity in a declaration,
2421          --  or a temporary. Without this test, we would improperly extended
2422          --  this rewriting to attribute references whose prefix was not the
2423          --  type of the aggregate.
2424
2425          if Nkind (Expr) = N_Attribute_Reference
2426            and then Is_Entity_Name (Prefix (Expr))
2427            and then Is_Type (Entity (Prefix (Expr)))
2428            and then Root_Type (Etype (N)) = Root_Type (Entity (Prefix (Expr)))
2429          then
2430             if Is_Entity_Name (Lhs) then
2431                Rewrite (Prefix (Expr),
2432                  New_Occurrence_Of (Entity (Lhs), Loc));
2433
2434             elsif Nkind (Lhs) = N_Selected_Component then
2435                Rewrite (Expr,
2436                  Make_Attribute_Reference (Loc,
2437                    Attribute_Name => Name_Unrestricted_Access,
2438                    Prefix         => New_Copy_Tree (Prefix (Lhs))));
2439                Set_Analyzed (Parent (Expr), False);
2440
2441             else
2442                Rewrite (Expr,
2443                  Make_Attribute_Reference (Loc,
2444                    Attribute_Name => Name_Unrestricted_Access,
2445                    Prefix         => New_Copy_Tree (Lhs)));
2446                Set_Analyzed (Parent (Expr), False);
2447             end if;
2448          end if;
2449
2450          return OK;
2451       end Replace_Type;
2452
2453       procedure Replace_Self_Reference is
2454         new Traverse_Proc (Replace_Type);
2455
2456       procedure Replace_Discriminants is
2457         new Traverse_Proc (Rewrite_Discriminant);
2458
2459    --  Start of processing for Build_Record_Aggr_Code
2460
2461    begin
2462       if Has_Self_Reference (N) then
2463          Replace_Self_Reference (N);
2464       end if;
2465
2466       --  If the target of the aggregate is class-wide, we must convert it
2467       --  to the actual type of the aggregate, so that the proper components
2468       --  are visible. We know already that the types are compatible.
2469
2470       if Present (Etype (Lhs))
2471         and then Is_Class_Wide_Type (Etype (Lhs))
2472       then
2473          Target := Unchecked_Convert_To (Typ, Lhs);
2474       else
2475          Target := Lhs;
2476       end if;
2477
2478       --  Deal with the ancestor part of extension aggregates or with the
2479       --  discriminants of the root type.
2480
2481       if Nkind (N) = N_Extension_Aggregate then
2482          declare
2483             A      : constant Node_Id := Ancestor_Part (N);
2484             Assign : List_Id;
2485
2486          begin
2487             --  If the ancestor part is a subtype mark "T", we generate
2488
2489             --     init-proc (T(tmp));  if T is constrained and
2490             --     init-proc (S(tmp));  where S applies an appropriate
2491             --                          constraint if T is unconstrained
2492
2493             if Is_Entity_Name (A) and then Is_Type (Entity (A)) then
2494                Ancestor_Is_Subtype_Mark := True;
2495
2496                if Is_Constrained (Entity (A)) then
2497                   Init_Typ := Entity (A);
2498
2499                --  For an ancestor part given by an unconstrained type mark,
2500                --  create a subtype constrained by appropriate corresponding
2501                --  discriminant values coming from either associations of the
2502                --  aggregate or a constraint on a parent type. The subtype will
2503                --  be used to generate the correct default value for the
2504                --  ancestor part.
2505
2506                elsif Has_Discriminants (Entity (A)) then
2507                   declare
2508                      Anc_Typ    : constant Entity_Id := Entity (A);
2509                      Anc_Constr : constant List_Id   := New_List;
2510                      Discrim    : Entity_Id;
2511                      Disc_Value : Node_Id;
2512                      New_Indic  : Node_Id;
2513                      Subt_Decl  : Node_Id;
2514
2515                   begin
2516                      Discrim := First_Discriminant (Anc_Typ);
2517                      while Present (Discrim) loop
2518                         Disc_Value := Ancestor_Discriminant_Value (Discrim);
2519                         Append_To (Anc_Constr, Disc_Value);
2520                         Next_Discriminant (Discrim);
2521                      end loop;
2522
2523                      New_Indic :=
2524                        Make_Subtype_Indication (Loc,
2525                          Subtype_Mark => New_Occurrence_Of (Anc_Typ, Loc),
2526                          Constraint   =>
2527                            Make_Index_Or_Discriminant_Constraint (Loc,
2528                              Constraints => Anc_Constr));
2529
2530                      Init_Typ := Create_Itype (Ekind (Anc_Typ), N);
2531
2532                      Subt_Decl :=
2533                        Make_Subtype_Declaration (Loc,
2534                          Defining_Identifier => Init_Typ,
2535                          Subtype_Indication  => New_Indic);
2536
2537                      --  Itypes must be analyzed with checks off Declaration
2538                      --  must have a parent for proper handling of subsidiary
2539                      --  actions.
2540
2541                      Set_Parent (Subt_Decl, N);
2542                      Analyze (Subt_Decl, Suppress => All_Checks);
2543                   end;
2544                end if;
2545
2546                Ref := Convert_To (Init_Typ, New_Copy_Tree (Target));
2547                Set_Assignment_OK (Ref);
2548
2549                Append_List_To (L,
2550                  Build_Initialization_Call (Loc,
2551                    Id_Ref            => Ref,
2552                    Typ               => Init_Typ,
2553                    In_Init_Proc      => Within_Init_Proc,
2554                    With_Default_Init => Has_Default_Init_Comps (N)
2555                                           or else
2556                                         Has_Task (Base_Type (Init_Typ))));
2557
2558                if Is_Constrained (Entity (A))
2559                  and then Has_Discriminants (Entity (A))
2560                then
2561                   Check_Ancestor_Discriminants (Entity (A));
2562                end if;
2563
2564             --  Handle calls to C++ constructors
2565
2566             elsif Is_CPP_Constructor_Call (A) then
2567                Init_Typ := Etype (A);
2568                Ref := Convert_To (Init_Typ, New_Copy_Tree (Target));
2569                Set_Assignment_OK (Ref);
2570
2571                Append_List_To (L,
2572                  Build_Initialization_Call (Loc,
2573                    Id_Ref            => Ref,
2574                    Typ               => Init_Typ,
2575                    In_Init_Proc      => Within_Init_Proc,
2576                    With_Default_Init => Has_Default_Init_Comps (N),
2577                    Constructor_Ref   => A));
2578
2579             --  Ada 2005 (AI-287): If the ancestor part is an aggregate of
2580             --  limited type, a recursive call expands the ancestor. Note that
2581             --  in the limited case, the ancestor part must be either a
2582             --  function call (possibly qualified, or wrapped in an unchecked
2583             --  conversion) or aggregate (definitely qualified).
2584             --  The ancestor part can also be a function call (that may be
2585             --  transformed into an explicit dereference) or a qualification
2586             --  of one such.
2587
2588             elsif Is_Limited_Type (Etype (A))
2589               and then Nkind_In (Unqualify (A), N_Aggregate,
2590                                                 N_Extension_Aggregate)
2591             then
2592                Ancestor_Is_Expression := True;
2593
2594                --  Set up  finalization data for enclosing record, because
2595                --  controlled subcomponents of the ancestor part will be
2596                --  attached to it.
2597
2598                Gen_Ctrl_Actions_For_Aggr;
2599
2600                Append_List_To (L,
2601                   Build_Record_Aggr_Code (
2602                     N                             => Unqualify (A),
2603                     Typ                           => Etype (Unqualify (A)),
2604                     Lhs                           => Target,
2605                     Flist                         => Flist,
2606                     Obj                           => Obj,
2607                     Is_Limited_Ancestor_Expansion => True));
2608
2609             --  If the ancestor part is an expression "E", we generate
2610
2611             --     T(tmp) := E;
2612
2613             --  In Ada 2005, this includes the case of a (possibly qualified)
2614             --  limited function call. The assignment will turn into a
2615             --  build-in-place function call (for further details, see
2616             --  Make_Build_In_Place_Call_In_Assignment).
2617
2618             else
2619                Ancestor_Is_Expression := True;
2620                Init_Typ := Etype (A);
2621
2622                --  If the ancestor part is an aggregate, force its full
2623                --  expansion, which was delayed.
2624
2625                if Nkind_In (Unqualify (A), N_Aggregate,
2626                                            N_Extension_Aggregate)
2627                then
2628                   Set_Analyzed (A, False);
2629                   Set_Analyzed (Expression (A), False);
2630                end if;
2631
2632                Ref := Convert_To (Init_Typ, New_Copy_Tree (Target));
2633                Set_Assignment_OK (Ref);
2634
2635                --  Make the assignment without usual controlled actions since
2636                --  we only want the post adjust but not the pre finalize here
2637                --  Add manual adjust when necessary.
2638
2639                Assign := New_List (
2640                  Make_OK_Assignment_Statement (Loc,
2641                    Name       => Ref,
2642                    Expression => A));
2643                Set_No_Ctrl_Actions (First (Assign));
2644
2645                --  Assign the tag now to make sure that the dispatching call in
2646                --  the subsequent deep_adjust works properly (unless VM_Target,
2647                --  where tags are implicit).
2648
2649                if Tagged_Type_Expansion then
2650                   Instr :=
2651                     Make_OK_Assignment_Statement (Loc,
2652                       Name =>
2653                         Make_Selected_Component (Loc,
2654                           Prefix => New_Copy_Tree (Target),
2655                           Selector_Name =>
2656                             New_Reference_To
2657                               (First_Tag_Component (Base_Type (Typ)), Loc)),
2658
2659                       Expression =>
2660                         Unchecked_Convert_To (RTE (RE_Tag),
2661                           New_Reference_To
2662                             (Node (First_Elmt
2663                                (Access_Disp_Table (Base_Type (Typ)))),
2664                              Loc)));
2665
2666                   Set_Assignment_OK (Name (Instr));
2667                   Append_To (Assign, Instr);
2668
2669                   --  Ada 2005 (AI-251): If tagged type has progenitors we must
2670                   --  also initialize tags of the secondary dispatch tables.
2671
2672                   if Has_Interfaces (Base_Type (Typ)) then
2673                      Init_Secondary_Tags
2674                        (Typ        => Base_Type (Typ),
2675                         Target     => Target,
2676                         Stmts_List => Assign);
2677                   end if;
2678                end if;
2679
2680                --  Call Adjust manually
2681
2682                if Needs_Finalization (Etype (A))
2683                  and then not Is_Limited_Type (Etype (A))
2684                then
2685                   Append_List_To (Assign,
2686                     Make_Adjust_Call (
2687                       Ref         => New_Copy_Tree (Ref),
2688                       Typ         => Etype (A),
2689                       Flist_Ref   => New_Reference_To (
2690                         RTE (RE_Global_Final_List), Loc),
2691                       With_Attach => Make_Integer_Literal (Loc, 0)));
2692                end if;
2693
2694                Append_To (L,
2695                  Make_Unsuppress_Block (Loc, Name_Discriminant_Check, Assign));
2696
2697                if Has_Discriminants (Init_Typ) then
2698                   Check_Ancestor_Discriminants (Init_Typ);
2699                end if;
2700             end if;
2701          end;
2702
2703       --  Normal case (not an extension aggregate)
2704
2705       else
2706          --  Generate the discriminant expressions, component by component.
2707          --  If the base type is an unchecked union, the discriminants are
2708          --  unknown to the back-end and absent from a value of the type, so
2709          --  assignments for them are not emitted.
2710
2711          if Has_Discriminants (Typ)
2712            and then not Is_Unchecked_Union (Base_Type (Typ))
2713          then
2714             --  If the type is derived, and constrains discriminants of the
2715             --  parent type, these discriminants are not components of the
2716             --  aggregate, and must be initialized explicitly. They are not
2717             --  visible components of the object, but can become visible with
2718             --  a view conversion to the ancestor.
2719
2720             declare
2721                Btype      : Entity_Id;
2722                Parent_Type : Entity_Id;
2723                Disc        : Entity_Id;
2724                Discr_Val   : Elmt_Id;
2725
2726             begin
2727                Btype := Base_Type (Typ);
2728                while Is_Derived_Type (Btype)
2729                   and then Present (Stored_Constraint (Btype))
2730                loop
2731                   Parent_Type := Etype (Btype);
2732
2733                   Disc := First_Discriminant (Parent_Type);
2734                   Discr_Val :=
2735                     First_Elmt (Stored_Constraint (Base_Type (Typ)));
2736                   while Present (Discr_Val) loop
2737
2738                      --  Only those discriminants of the parent that are not
2739                      --  renamed by discriminants of the derived type need to
2740                      --  be added explicitly.
2741
2742                      if not Is_Entity_Name (Node (Discr_Val))
2743                        or else
2744                          Ekind (Entity (Node (Discr_Val))) /= E_Discriminant
2745                      then
2746                         Comp_Expr :=
2747                           Make_Selected_Component (Loc,
2748                             Prefix        => New_Copy_Tree (Target),
2749                             Selector_Name => New_Occurrence_Of (Disc, Loc));
2750
2751                         Instr :=
2752                           Make_OK_Assignment_Statement (Loc,
2753                             Name       => Comp_Expr,
2754                             Expression => New_Copy_Tree (Node (Discr_Val)));
2755
2756                         Set_No_Ctrl_Actions (Instr);
2757                         Append_To (L, Instr);
2758                      end if;
2759
2760                      Next_Discriminant (Disc);
2761                      Next_Elmt (Discr_Val);
2762                   end loop;
2763
2764                   Btype := Base_Type (Parent_Type);
2765                end loop;
2766             end;
2767
2768             --  Generate discriminant init values for the visible discriminants
2769
2770             declare
2771                Discriminant : Entity_Id;
2772                Discriminant_Value : Node_Id;
2773
2774             begin
2775                Discriminant := First_Stored_Discriminant (Typ);
2776                while Present (Discriminant) loop
2777                   Comp_Expr :=
2778                     Make_Selected_Component (Loc,
2779                       Prefix        => New_Copy_Tree (Target),
2780                       Selector_Name => New_Occurrence_Of (Discriminant, Loc));
2781
2782                   Discriminant_Value :=
2783                     Get_Discriminant_Value (
2784                       Discriminant,
2785                       N_Typ,
2786                       Discriminant_Constraint (N_Typ));
2787
2788                   Instr :=
2789                     Make_OK_Assignment_Statement (Loc,
2790                       Name       => Comp_Expr,
2791                       Expression => New_Copy_Tree (Discriminant_Value));
2792
2793                   Set_No_Ctrl_Actions (Instr);
2794                   Append_To (L, Instr);
2795
2796                   Next_Stored_Discriminant (Discriminant);
2797                end loop;
2798             end;
2799          end if;
2800       end if;
2801
2802       --  For CPP types we generate an implicit call to the C++ default
2803       --  constructor to ensure the proper initialization of the _Tag
2804       --  component.
2805
2806       if Is_CPP_Class (Typ) then
2807          pragma Assert (Present (Base_Init_Proc (Typ)));
2808          Append_List_To (L,
2809            Build_Initialization_Call (Loc,
2810              Id_Ref => Lhs,
2811              Typ    => Typ));
2812       end if;
2813
2814       --  Generate the assignments, component by component
2815
2816       --    tmp.comp1 := Expr1_From_Aggr;
2817       --    tmp.comp2 := Expr2_From_Aggr;
2818       --    ....
2819
2820       Comp := First (Component_Associations (N));
2821       while Present (Comp) loop
2822          Selector := Entity (First (Choices (Comp)));
2823
2824          --  C++ constructors
2825
2826          if Is_CPP_Constructor_Call (Expression (Comp)) then
2827             Append_List_To (L,
2828               Build_Initialization_Call (Loc,
2829                 Id_Ref => Make_Selected_Component (Loc,
2830                             Prefix => New_Copy_Tree (Target),
2831                             Selector_Name => New_Occurrence_Of (Selector,
2832                                                                    Loc)),
2833                 Typ    => Etype (Selector),
2834                 Enclos_Type => Typ,
2835                 With_Default_Init => True,
2836                 Constructor_Ref => Expression (Comp)));
2837
2838          --  Ada 2005 (AI-287): For each default-initialized component generate
2839          --  a call to the corresponding IP subprogram if available.
2840
2841          elsif Box_Present (Comp)
2842            and then Has_Non_Null_Base_Init_Proc (Etype (Selector))
2843          then
2844             if Ekind (Selector) /= E_Discriminant then
2845                Gen_Ctrl_Actions_For_Aggr;
2846             end if;
2847
2848             --  Ada 2005 (AI-287): If the component type has tasks then
2849             --  generate the activation chain and master entities (except
2850             --  in case of an allocator because in that case these entities
2851             --  are generated by Build_Task_Allocate_Block_With_Init_Stmts).
2852
2853             declare
2854                Ctype            : constant Entity_Id := Etype (Selector);
2855                Inside_Allocator : Boolean   := False;
2856                P                : Node_Id   := Parent (N);
2857
2858             begin
2859                if Is_Task_Type (Ctype) or else Has_Task (Ctype) then
2860                   while Present (P) loop
2861                      if Nkind (P) = N_Allocator then
2862                         Inside_Allocator := True;
2863                         exit;
2864                      end if;
2865
2866                      P := Parent (P);
2867                   end loop;
2868
2869                   if not Inside_Init_Proc and not Inside_Allocator then
2870                      Build_Activation_Chain_Entity (N);
2871                   end if;
2872                end if;
2873             end;
2874
2875             Append_List_To (L,
2876               Build_Initialization_Call (Loc,
2877                 Id_Ref => Make_Selected_Component (Loc,
2878                             Prefix => New_Copy_Tree (Target),
2879                             Selector_Name => New_Occurrence_Of (Selector,
2880                                                                    Loc)),
2881                 Typ    => Etype (Selector),
2882                 Enclos_Type => Typ,
2883                 With_Default_Init => True));
2884
2885          --  Prepare for component assignment
2886
2887          elsif Ekind (Selector) /= E_Discriminant
2888            or else Nkind (N) = N_Extension_Aggregate
2889          then
2890             --  All the discriminants have now been assigned
2891
2892             --  This is now a good moment to initialize and attach all the
2893             --  controllers. Their position may depend on the discriminants.
2894
2895             if Ekind (Selector) /= E_Discriminant then
2896                Gen_Ctrl_Actions_For_Aggr;
2897             end if;
2898
2899             Comp_Type := Etype (Selector);
2900             Comp_Expr :=
2901               Make_Selected_Component (Loc,
2902                 Prefix        => New_Copy_Tree (Target),
2903                 Selector_Name => New_Occurrence_Of (Selector, Loc));
2904
2905             if Nkind (Expression (Comp)) = N_Qualified_Expression then
2906                Expr_Q := Expression (Expression (Comp));
2907             else
2908                Expr_Q := Expression (Comp);
2909             end if;
2910
2911             --  The controller is the one of the parent type defining the
2912             --  component (in case of inherited components).
2913
2914             if Needs_Finalization (Comp_Type) then
2915                Internal_Final_List :=
2916                  Make_Selected_Component (Loc,
2917                    Prefix => Convert_To (
2918                      Scope (Original_Record_Component (Selector)),
2919                      New_Copy_Tree (Target)),
2920                    Selector_Name =>
2921                      Make_Identifier (Loc, Name_uController));
2922
2923                Internal_Final_List :=
2924                  Make_Selected_Component (Loc,
2925                    Prefix => Internal_Final_List,
2926                    Selector_Name => Make_Identifier (Loc, Name_F));
2927
2928                --  The internal final list can be part of a constant object
2929
2930                Set_Assignment_OK (Internal_Final_List);
2931
2932             else
2933                Internal_Final_List := Empty;
2934             end if;
2935
2936             --  Now either create the assignment or generate the code for the
2937             --  inner aggregate top-down.
2938
2939             if Is_Delayed_Aggregate (Expr_Q) then
2940
2941                --  We have the following case of aggregate nesting inside
2942                --  an object declaration:
2943
2944                --    type Arr_Typ is array (Integer range <>) of ...;
2945
2946                --    type Rec_Typ (...) is record
2947                --       Obj_Arr_Typ : Arr_Typ (A .. B);
2948                --    end record;
2949
2950                --    Obj_Rec_Typ : Rec_Typ := (...,
2951                --      Obj_Arr_Typ => (X => (...), Y => (...)));
2952
2953                --  The length of the ranges of the aggregate and Obj_Add_Typ
2954                --  are equal (B - A = Y - X), but they do not coincide (X /=
2955                --  A and B /= Y). This case requires array sliding which is
2956                --  performed in the following manner:
2957
2958                --    subtype Arr_Sub is Arr_Typ (X .. Y);
2959                --    Temp : Arr_Sub;
2960                --    Temp (X) := (...);
2961                --    ...
2962                --    Temp (Y) := (...);
2963                --    Obj_Rec_Typ.Obj_Arr_Typ := Temp;
2964
2965                if Ekind (Comp_Type) = E_Array_Subtype
2966                  and then Is_Int_Range_Bounds (Aggregate_Bounds (Expr_Q))
2967                  and then Is_Int_Range_Bounds (First_Index (Comp_Type))
2968                  and then not
2969                    Compatible_Int_Bounds
2970                      (Agg_Bounds => Aggregate_Bounds (Expr_Q),
2971                       Typ_Bounds => First_Index (Comp_Type))
2972                then
2973                   --  Create the array subtype with bounds equal to those of
2974                   --  the corresponding aggregate.
2975
2976                   declare
2977                      SubE : constant Entity_Id :=
2978                               Make_Defining_Identifier (Loc,
2979                                 Chars => New_Internal_Name ('T'));
2980
2981                      SubD : constant Node_Id :=
2982                               Make_Subtype_Declaration (Loc,
2983                                 Defining_Identifier => SubE,
2984                                 Subtype_Indication  =>
2985                                   Make_Subtype_Indication (Loc,
2986                                     Subtype_Mark =>
2987                                       New_Reference_To
2988                                         (Etype (Comp_Type), Loc),
2989                                     Constraint =>
2990                                       Make_Index_Or_Discriminant_Constraint
2991                                         (Loc,
2992                                          Constraints => New_List (
2993                                           New_Copy_Tree
2994                                             (Aggregate_Bounds (Expr_Q))))));
2995
2996                      --  Create a temporary array of the above subtype which
2997                      --  will be used to capture the aggregate assignments.
2998
2999                      TmpE : constant Entity_Id :=
3000                               Make_Temporary (Loc, New_Internal_Name ('A'), N);
3001
3002                      TmpD : constant Node_Id :=
3003                               Make_Object_Declaration (Loc,
3004                                 Defining_Identifier => TmpE,
3005                                 Object_Definition   =>
3006                                   New_Reference_To (SubE, Loc));
3007
3008                   begin
3009                      Set_No_Initialization (TmpD);
3010                      Append_To (L, SubD);
3011                      Append_To (L, TmpD);
3012
3013                      --  Expand aggregate into assignments to the temp array
3014
3015                      Append_List_To (L,
3016                        Late_Expansion (Expr_Q, Comp_Type,
3017                          New_Reference_To (TmpE, Loc), Internal_Final_List));
3018
3019                      --  Slide
3020
3021                      Append_To (L,
3022                        Make_Assignment_Statement (Loc,
3023                          Name       => New_Copy_Tree (Comp_Expr),
3024                          Expression => New_Reference_To (TmpE, Loc)));
3025
3026                      --  Do not pass the original aggregate to Gigi as is,
3027                      --  since it will potentially clobber the front or the end
3028                      --  of the array. Setting the expression to empty is safe
3029                      --  since all aggregates are expanded into assignments.
3030
3031                      if Present (Obj) then
3032                         Set_Expression (Parent (Obj), Empty);
3033                      end if;
3034                   end;
3035
3036                --  Normal case (sliding not required)
3037
3038                else
3039                   Append_List_To (L,
3040                     Late_Expansion (Expr_Q, Comp_Type, Comp_Expr,
3041                       Internal_Final_List));
3042                end if;
3043
3044             --  Expr_Q is not delayed aggregate
3045
3046             else
3047                if Has_Discriminants (Typ) then
3048                   Replace_Discriminants (Expr_Q);
3049                end if;
3050
3051                Instr :=
3052                  Make_OK_Assignment_Statement (Loc,
3053                    Name       => Comp_Expr,
3054                    Expression => Expr_Q);
3055
3056                Set_No_Ctrl_Actions (Instr);
3057                Append_To (L, Instr);
3058
3059                --  Adjust the tag if tagged (because of possible view
3060                --  conversions), unless compiling for a VM where tags are
3061                --  implicit.
3062
3063                --    tmp.comp._tag := comp_typ'tag;
3064
3065                if Is_Tagged_Type (Comp_Type)
3066                  and then Tagged_Type_Expansion
3067                then
3068                   Instr :=
3069                     Make_OK_Assignment_Statement (Loc,
3070                       Name =>
3071                         Make_Selected_Component (Loc,
3072                           Prefix =>  New_Copy_Tree (Comp_Expr),
3073                           Selector_Name =>
3074                             New_Reference_To
3075                               (First_Tag_Component (Comp_Type), Loc)),
3076
3077                       Expression =>
3078                         Unchecked_Convert_To (RTE (RE_Tag),
3079                           New_Reference_To
3080                             (Node (First_Elmt (Access_Disp_Table (Comp_Type))),
3081                              Loc)));
3082
3083                   Append_To (L, Instr);
3084                end if;
3085
3086                --  Adjust and Attach the component to the proper controller
3087
3088                --     Adjust (tmp.comp);
3089                --     Attach_To_Final_List (tmp.comp,
3090                --       comp_typ (tmp)._record_controller.f)
3091
3092                if Needs_Finalization (Comp_Type)
3093                  and then not Is_Limited_Type (Comp_Type)
3094                then
3095                   Append_List_To (L,
3096                     Make_Adjust_Call (
3097                       Ref         => New_Copy_Tree (Comp_Expr),
3098                       Typ         => Comp_Type,
3099                       Flist_Ref   => Internal_Final_List,
3100                       With_Attach => Make_Integer_Literal (Loc, 1)));
3101                end if;
3102             end if;
3103
3104          --  ???
3105
3106          elsif Ekind (Selector) = E_Discriminant
3107            and then Nkind (N) /= N_Extension_Aggregate
3108            and then Nkind (Parent (N)) = N_Component_Association
3109            and then Is_Constrained (Typ)
3110          then
3111             --  We must check that the discriminant value imposed by the
3112             --  context is the same as the value given in the subaggregate,
3113             --  because after the expansion into assignments there is no
3114             --  record on which to perform a regular discriminant check.
3115
3116             declare
3117                D_Val : Elmt_Id;
3118                Disc  : Entity_Id;
3119
3120             begin
3121                D_Val := First_Elmt (Discriminant_Constraint (Typ));
3122                Disc  := First_Discriminant (Typ);
3123                while Chars (Disc) /= Chars (Selector) loop
3124                   Next_Discriminant (Disc);
3125                   Next_Elmt (D_Val);
3126                end loop;
3127
3128                pragma Assert (Present (D_Val));
3129
3130                --  This check cannot performed for components that are
3131                --  constrained by a current instance, because this is not a
3132                --  value that can be compared with the actual constraint.
3133
3134                if Nkind (Node (D_Val)) /= N_Attribute_Reference
3135                  or else not Is_Entity_Name (Prefix (Node (D_Val)))
3136                  or else not Is_Type (Entity (Prefix (Node (D_Val))))
3137                then
3138                   Append_To (L,
3139                   Make_Raise_Constraint_Error (Loc,
3140                     Condition =>
3141                       Make_Op_Ne (Loc,
3142                         Left_Opnd => New_Copy_Tree (Node (D_Val)),
3143                         Right_Opnd => Expression (Comp)),
3144                       Reason => CE_Discriminant_Check_Failed));
3145
3146                else
3147                   --  Find self-reference in previous discriminant assignment,
3148                   --  and replace with proper expression.
3149
3150                   declare
3151                      Ass : Node_Id;
3152
3153                   begin
3154                      Ass := First (L);
3155                      while Present (Ass) loop
3156                         if Nkind (Ass) = N_Assignment_Statement
3157                           and then Nkind (Name (Ass)) = N_Selected_Component
3158                           and then Chars (Selector_Name (Name (Ass))) =
3159                              Chars (Disc)
3160                         then
3161                            Set_Expression
3162                              (Ass, New_Copy_Tree (Expression (Comp)));
3163                            exit;
3164                         end if;
3165                         Next (Ass);
3166                      end loop;
3167                   end;
3168                end if;
3169             end;
3170          end if;
3171
3172          Next (Comp);
3173       end loop;
3174
3175       --  If the type is tagged, the tag needs to be initialized (unless
3176       --  compiling for the Java VM where tags are implicit). It is done
3177       --  late in the initialization process because in some cases, we call
3178       --  the init proc of an ancestor which will not leave out the right tag
3179
3180       if Ancestor_Is_Expression then
3181          null;
3182
3183       --  For CPP types we generated a call to the C++ default constructor
3184       --  before the components have been initialized to ensure the proper
3185       --  initialization of the _Tag component (see above).
3186
3187       elsif Is_CPP_Class (Typ) then
3188          null;
3189
3190       elsif Is_Tagged_Type (Typ) and then Tagged_Type_Expansion then
3191          Instr :=
3192            Make_OK_Assignment_Statement (Loc,
3193              Name =>
3194                Make_Selected_Component (Loc,
3195                  Prefix => New_Copy_Tree (Target),
3196                  Selector_Name =>
3197                    New_Reference_To
3198                      (First_Tag_Component (Base_Type (Typ)), Loc)),
3199
3200              Expression =>
3201                Unchecked_Convert_To (RTE (RE_Tag),
3202                  New_Reference_To
3203                    (Node (First_Elmt (Access_Disp_Table (Base_Type (Typ)))),
3204                     Loc)));
3205
3206          Append_To (L, Instr);
3207
3208          --  Ada 2005 (AI-251): If the tagged type has been derived from
3209          --  abstract interfaces we must also initialize the tags of the
3210          --  secondary dispatch tables.
3211
3212          if Has_Interfaces (Base_Type (Typ)) then
3213             Init_Secondary_Tags
3214               (Typ        => Base_Type (Typ),
3215                Target     => Target,
3216                Stmts_List => L);
3217          end if;
3218       end if;
3219
3220       --  If the controllers have not been initialized yet (by lack of non-
3221       --  discriminant components), let's do it now.
3222
3223       Gen_Ctrl_Actions_For_Aggr;
3224
3225       return L;
3226    end Build_Record_Aggr_Code;
3227
3228    -------------------------------
3229    -- Convert_Aggr_In_Allocator --
3230    -------------------------------
3231
3232    procedure Convert_Aggr_In_Allocator
3233      (Alloc :  Node_Id;
3234       Decl  :  Node_Id;
3235       Aggr  :  Node_Id)
3236    is
3237       Loc  : constant Source_Ptr := Sloc (Aggr);
3238       Typ  : constant Entity_Id  := Etype (Aggr);
3239       Temp : constant Entity_Id  := Defining_Identifier (Decl);
3240
3241       Occ  : constant Node_Id :=
3242                Unchecked_Convert_To (Typ,
3243                  Make_Explicit_Dereference (Loc,
3244                    New_Reference_To (Temp, Loc)));
3245
3246       Access_Type : constant Entity_Id := Etype (Temp);
3247       Flist       : Entity_Id;
3248
3249    begin
3250       --  If the allocator is for an access discriminant, there is no
3251       --  finalization list for the anonymous access type, and the eventual
3252       --  finalization of the object is handled through the coextension
3253       --  mechanism. If the enclosing object is not dynamically allocated,
3254       --  the access discriminant is itself placed on the stack. Otherwise,
3255       --  some other finalization list is used (see exp_ch4.adb).
3256
3257       --  Decl has been inserted in the code ahead of the allocator, using
3258       --  Insert_Actions. We use Insert_Actions below as well, to ensure that
3259       --  subsequent insertions are done in the proper order. Using (for
3260       --  example) Insert_Actions_After to place the expanded aggregate
3261       --  immediately after Decl may lead to out-of-order references if the
3262       --  allocator has generated a finalization list, as when the designated
3263       --  object is controlled and there is an open transient scope.
3264
3265       if Ekind (Access_Type) = E_Anonymous_Access_Type
3266         and then Nkind (Associated_Node_For_Itype (Access_Type)) =
3267                                               N_Discriminant_Specification
3268       then
3269          Flist := Empty;
3270       else
3271          Flist := Find_Final_List (Access_Type);
3272       end if;
3273
3274       if Is_Array_Type (Typ) then
3275          Convert_Array_Aggr_In_Allocator (Decl, Aggr, Occ);
3276
3277       elsif Has_Default_Init_Comps (Aggr) then
3278          declare
3279             L          : constant List_Id := New_List;
3280             Init_Stmts : List_Id;
3281
3282          begin
3283             Init_Stmts :=
3284               Late_Expansion
3285                 (Aggr, Typ, Occ,
3286                  Flist,
3287                  Associated_Final_Chain (Base_Type (Access_Type)));
3288
3289             --  ??? Dubious actual for Obj: expect 'the original object being
3290             --  initialized'
3291
3292             if Has_Task (Typ) then
3293                Build_Task_Allocate_Block_With_Init_Stmts (L, Aggr, Init_Stmts);
3294                Insert_Actions (Alloc, L);
3295             else
3296                Insert_Actions (Alloc, Init_Stmts);
3297             end if;
3298          end;
3299
3300       else
3301          Insert_Actions (Alloc,
3302            Late_Expansion
3303              (Aggr, Typ, Occ, Flist,
3304               Associated_Final_Chain (Base_Type (Access_Type))));
3305
3306          --  ??? Dubious actual for Obj: expect 'the original object being
3307          --  initialized'
3308
3309       end if;
3310    end Convert_Aggr_In_Allocator;
3311
3312    --------------------------------
3313    -- Convert_Aggr_In_Assignment --
3314    --------------------------------
3315
3316    procedure Convert_Aggr_In_Assignment (N : Node_Id) is
3317       Aggr : Node_Id            := Expression (N);
3318       Typ  : constant Entity_Id := Etype (Aggr);
3319       Occ  : constant Node_Id   := New_Copy_Tree (Name (N));
3320
3321    begin
3322       if Nkind (Aggr) = N_Qualified_Expression then
3323          Aggr := Expression (Aggr);
3324       end if;
3325
3326       Insert_Actions_After (N,
3327         Late_Expansion
3328           (Aggr, Typ, Occ,
3329            Find_Final_List (Typ, New_Copy_Tree (Occ))));
3330    end Convert_Aggr_In_Assignment;
3331
3332    ---------------------------------
3333    -- Convert_Aggr_In_Object_Decl --
3334    ---------------------------------
3335
3336    procedure Convert_Aggr_In_Object_Decl (N : Node_Id) is
3337       Obj  : constant Entity_Id  := Defining_Identifier (N);
3338       Aggr : Node_Id             := Expression (N);
3339       Loc  : constant Source_Ptr := Sloc (Aggr);
3340       Typ  : constant Entity_Id  := Etype (Aggr);
3341       Occ  : constant Node_Id    := New_Occurrence_Of (Obj, Loc);
3342
3343       function Discriminants_Ok return Boolean;
3344       --  If the object type is constrained, the discriminants in the
3345       --  aggregate must be checked against the discriminants of the subtype.
3346       --  This cannot be done using Apply_Discriminant_Checks because after
3347       --  expansion there is no aggregate left to check.
3348
3349       ----------------------
3350       -- Discriminants_Ok --
3351       ----------------------
3352
3353       function Discriminants_Ok return Boolean is
3354          Cond  : Node_Id := Empty;
3355          Check : Node_Id;
3356          D     : Entity_Id;
3357          Disc1 : Elmt_Id;
3358          Disc2 : Elmt_Id;
3359          Val1  : Node_Id;
3360          Val2  : Node_Id;
3361
3362       begin
3363          D := First_Discriminant (Typ);
3364          Disc1 := First_Elmt (Discriminant_Constraint (Typ));
3365          Disc2 := First_Elmt (Discriminant_Constraint (Etype (Obj)));
3366          while Present (Disc1) and then Present (Disc2) loop
3367             Val1 := Node (Disc1);
3368             Val2 := Node (Disc2);
3369
3370             if not Is_OK_Static_Expression (Val1)
3371               or else not Is_OK_Static_Expression (Val2)
3372             then
3373                Check := Make_Op_Ne (Loc,
3374                  Left_Opnd  => Duplicate_Subexpr (Val1),
3375                  Right_Opnd => Duplicate_Subexpr (Val2));
3376
3377                if No (Cond) then
3378                   Cond := Check;
3379
3380                else
3381                   Cond := Make_Or_Else (Loc,
3382                     Left_Opnd => Cond,
3383                     Right_Opnd => Check);
3384                end if;
3385
3386             elsif Expr_Value (Val1) /= Expr_Value (Val2) then
3387                Apply_Compile_Time_Constraint_Error (Aggr,
3388                  Msg    => "incorrect value for discriminant&?",
3389                  Reason => CE_Discriminant_Check_Failed,
3390                  Ent    => D);
3391                return False;
3392             end if;
3393
3394             Next_Discriminant (D);
3395             Next_Elmt (Disc1);
3396             Next_Elmt (Disc2);
3397          end loop;
3398
3399          --  If any discriminant constraint is non-static, emit a check
3400
3401          if Present (Cond) then
3402             Insert_Action (N,
3403               Make_Raise_Constraint_Error (Loc,
3404                 Condition => Cond,
3405                 Reason => CE_Discriminant_Check_Failed));
3406          end if;
3407
3408          return True;
3409       end Discriminants_Ok;
3410
3411    --  Start of processing for Convert_Aggr_In_Object_Decl
3412
3413    begin
3414       Set_Assignment_OK (Occ);
3415
3416       if Nkind (Aggr) = N_Qualified_Expression then
3417          Aggr := Expression (Aggr);
3418       end if;
3419
3420       if Has_Discriminants (Typ)
3421         and then Typ /= Etype (Obj)
3422         and then Is_Constrained (Etype (Obj))
3423         and then not Discriminants_Ok
3424       then
3425          return;
3426       end if;
3427
3428       --  If the context is an extended return statement, it has its own
3429       --  finalization machinery (i.e. works like a transient scope) and
3430       --  we do not want to create an additional one, because objects on
3431       --  the finalization list of the return must be moved to the caller's
3432       --  finalization list to complete the return.
3433
3434       --  However, if the aggregate is limited, it is built in place, and the
3435       --  controlled components are not assigned to intermediate temporaries
3436       --  so there is no need for a transient scope in this case either.
3437
3438       if Requires_Transient_Scope (Typ)
3439         and then Ekind (Current_Scope) /= E_Return_Statement
3440         and then not Is_Limited_Type (Typ)
3441       then
3442          Establish_Transient_Scope
3443            (Aggr,
3444             Sec_Stack =>
3445               Is_Controlled (Typ) or else Has_Controlled_Component (Typ));
3446       end if;
3447
3448       Insert_Actions_After (N, Late_Expansion (Aggr, Typ, Occ, Obj => Obj));
3449       Set_No_Initialization (N);
3450       Initialize_Discriminants (N, Typ);
3451    end Convert_Aggr_In_Object_Decl;
3452
3453    -------------------------------------
3454    -- Convert_Array_Aggr_In_Allocator --
3455    -------------------------------------
3456
3457    procedure Convert_Array_Aggr_In_Allocator
3458      (Decl   : Node_Id;
3459       Aggr   : Node_Id;
3460       Target : Node_Id)
3461    is
3462       Aggr_Code : List_Id;
3463       Typ       : constant Entity_Id := Etype (Aggr);
3464       Ctyp      : constant Entity_Id := Component_Type (Typ);
3465
3466    begin
3467       --  The target is an explicit dereference of the allocated object.
3468       --  Generate component assignments to it, as for an aggregate that
3469       --  appears on the right-hand side of an assignment statement.
3470
3471       Aggr_Code :=
3472         Build_Array_Aggr_Code (Aggr,
3473           Ctype       => Ctyp,
3474           Index       => First_Index (Typ),
3475           Into        => Target,
3476           Scalar_Comp => Is_Scalar_Type (Ctyp));
3477
3478       Insert_Actions_After (Decl, Aggr_Code);
3479    end Convert_Array_Aggr_In_Allocator;
3480
3481    ----------------------------
3482    -- Convert_To_Assignments --
3483    ----------------------------
3484
3485    procedure Convert_To_Assignments (N : Node_Id; Typ : Entity_Id) is
3486       Loc  : constant Source_Ptr := Sloc (N);
3487       T    : Entity_Id;
3488       Temp : Entity_Id;
3489
3490       Instr       : Node_Id;
3491       Target_Expr : Node_Id;
3492       Parent_Kind : Node_Kind;
3493       Unc_Decl    : Boolean := False;
3494       Parent_Node : Node_Id;
3495
3496    begin
3497       pragma Assert (not Is_Static_Dispatch_Table_Aggregate (N));
3498       pragma Assert (Is_Record_Type (Typ));
3499
3500       Parent_Node := Parent (N);
3501       Parent_Kind := Nkind (Parent_Node);
3502
3503       if Parent_Kind = N_Qualified_Expression then
3504
3505          --  Check if we are in a unconstrained declaration because in this
3506          --  case the current delayed expansion mechanism doesn't work when
3507          --  the declared object size depend on the initializing expr.
3508
3509          begin
3510             Parent_Node := Parent (Parent_Node);
3511             Parent_Kind := Nkind (Parent_Node);
3512
3513             if Parent_Kind = N_Object_Declaration then
3514                Unc_Decl :=
3515                  not Is_Entity_Name (Object_Definition (Parent_Node))
3516                    or else Has_Discriminants
3517                              (Entity (Object_Definition (Parent_Node)))
3518                    or else Is_Class_Wide_Type
3519                              (Entity (Object_Definition (Parent_Node)));
3520             end if;
3521          end;
3522       end if;
3523
3524       --  Just set the Delay flag in the cases where the transformation will be
3525       --  done top down from above.
3526
3527       if False
3528
3529          --  Internal aggregate (transformed when expanding the parent)
3530
3531          or else Parent_Kind = N_Aggregate
3532          or else Parent_Kind = N_Extension_Aggregate
3533          or else Parent_Kind = N_Component_Association
3534
3535          --  Allocator (see Convert_Aggr_In_Allocator)
3536
3537          or else Parent_Kind = N_Allocator
3538
3539          --  Object declaration (see Convert_Aggr_In_Object_Decl)
3540
3541          or else (Parent_Kind = N_Object_Declaration and then not Unc_Decl)
3542
3543          --  Safe assignment (see Convert_Aggr_Assignments). So far only the
3544          --  assignments in init procs are taken into account.
3545
3546          or else (Parent_Kind = N_Assignment_Statement
3547                    and then Inside_Init_Proc)
3548
3549          --  (Ada 2005) An inherently limited type in a return statement,
3550          --  which will be handled in a build-in-place fashion, and may be
3551          --  rewritten as an extended return and have its own finalization
3552          --  machinery. In the case of a simple return, the aggregate needs
3553          --  to be delayed until the scope for the return statement has been
3554          --  created, so that any finalization chain will be associated with
3555          --  that scope. For extended returns, we delay expansion to avoid the
3556          --  creation of an unwanted transient scope that could result in
3557          --  premature finalization of the return object (which is built in
3558          --  in place within the caller's scope).
3559
3560          or else
3561            (Is_Inherently_Limited_Type (Typ)
3562              and then
3563                (Nkind (Parent (Parent_Node)) = N_Extended_Return_Statement
3564                  or else Nkind (Parent_Node) = N_Simple_Return_Statement))
3565       then
3566          Set_Expansion_Delayed (N);
3567          return;
3568       end if;
3569
3570       if Requires_Transient_Scope (Typ) then
3571          Establish_Transient_Scope
3572            (N, Sec_Stack =>
3573                  Is_Controlled (Typ) or else Has_Controlled_Component (Typ));
3574       end if;
3575
3576       --  If the aggregate is non-limited, create a temporary. If it is limited
3577       --  and the context is an assignment, this is a subaggregate for an
3578       --  enclosing aggregate being expanded. It must be built in place, so use
3579       --  the target of the current assignment.
3580
3581       if Is_Limited_Type (Typ)
3582         and then Nkind (Parent (N)) = N_Assignment_Statement
3583       then
3584          Target_Expr := New_Copy_Tree (Name (Parent (N)));
3585          Insert_Actions
3586            (Parent (N), Build_Record_Aggr_Code (N, Typ, Target_Expr));
3587          Rewrite (Parent (N), Make_Null_Statement (Loc));
3588
3589       else
3590          Temp := Make_Temporary (Loc, New_Internal_Name ('A'), N);
3591
3592          --  If the type inherits unknown discriminants, use the view with
3593          --  known discriminants if available.
3594
3595          if Has_Unknown_Discriminants (Typ)
3596             and then Present (Underlying_Record_View (Typ))
3597          then
3598             T := Underlying_Record_View (Typ);
3599          else
3600             T := Typ;
3601          end if;
3602
3603          Instr :=
3604            Make_Object_Declaration (Loc,
3605              Defining_Identifier => Temp,
3606              Object_Definition   => New_Occurrence_Of (T, Loc));
3607
3608          Set_No_Initialization (Instr);
3609          Insert_Action (N, Instr);
3610          Initialize_Discriminants (Instr, T);
3611          Target_Expr := New_Occurrence_Of (Temp, Loc);
3612          Insert_Actions (N, Build_Record_Aggr_Code (N, T, Target_Expr));
3613          Rewrite (N, New_Occurrence_Of (Temp, Loc));
3614          Analyze_And_Resolve (N, T);
3615       end if;
3616    end Convert_To_Assignments;
3617
3618    ---------------------------
3619    -- Convert_To_Positional --
3620    ---------------------------
3621
3622    procedure Convert_To_Positional
3623      (N                    : Node_Id;
3624       Max_Others_Replicate : Nat     := 5;
3625       Handle_Bit_Packed    : Boolean := False)
3626    is
3627       Typ : constant Entity_Id := Etype (N);
3628
3629       Static_Components : Boolean := True;
3630
3631       procedure Check_Static_Components;
3632       --  Check whether all components of the aggregate are compile-time known
3633       --  values, and can be passed as is to the back-end without further
3634       --  expansion.
3635
3636       function Flatten
3637         (N   : Node_Id;
3638          Ix  : Node_Id;
3639          Ixb : Node_Id) return Boolean;
3640       --  Convert the aggregate into a purely positional form if possible. On
3641       --  entry the bounds of all dimensions are known to be static, and the
3642       --  total number of components is safe enough to expand.
3643
3644       function Is_Flat (N : Node_Id; Dims : Int) return Boolean;
3645       --  Return True iff the array N is flat (which is not rivial in the case
3646       --  of multidimensionsl aggregates).
3647
3648       -----------------------------
3649       -- Check_Static_Components --
3650       -----------------------------
3651
3652       procedure Check_Static_Components is
3653          Expr : Node_Id;
3654
3655       begin
3656          Static_Components := True;
3657
3658          if Nkind (N) = N_String_Literal then
3659             null;
3660
3661          elsif Present (Expressions (N)) then
3662             Expr := First (Expressions (N));
3663             while Present (Expr) loop
3664                if Nkind (Expr) /= N_Aggregate
3665                  or else not Compile_Time_Known_Aggregate (Expr)
3666                  or else Expansion_Delayed (Expr)
3667                then
3668                   Static_Components := False;
3669                   exit;
3670                end if;
3671
3672                Next (Expr);
3673             end loop;
3674          end if;
3675
3676          if Nkind (N) = N_Aggregate
3677            and then  Present (Component_Associations (N))
3678          then
3679             Expr := First (Component_Associations (N));
3680             while Present (Expr) loop
3681                if Nkind (Expression (Expr)) = N_Integer_Literal then
3682                   null;
3683
3684                elsif Nkind (Expression (Expr)) /= N_Aggregate
3685                  or else
3686                    not Compile_Time_Known_Aggregate (Expression (Expr))
3687                  or else Expansion_Delayed (Expression (Expr))
3688                then
3689                   Static_Components := False;
3690                   exit;
3691                end if;
3692
3693                Next (Expr);
3694             end loop;
3695          end if;
3696       end Check_Static_Components;
3697
3698       -------------
3699       -- Flatten --
3700       -------------
3701
3702       function Flatten
3703         (N   : Node_Id;
3704          Ix  : Node_Id;
3705          Ixb : Node_Id) return Boolean
3706       is
3707          Loc : constant Source_Ptr := Sloc (N);
3708          Blo : constant Node_Id    := Type_Low_Bound (Etype (Ixb));
3709          Lo  : constant Node_Id    := Type_Low_Bound (Etype (Ix));
3710          Hi  : constant Node_Id    := Type_High_Bound (Etype (Ix));
3711          Lov : Uint;
3712          Hiv : Uint;
3713
3714       begin
3715          if Nkind (Original_Node (N)) = N_String_Literal then
3716             return True;
3717          end if;
3718
3719          if not Compile_Time_Known_Value (Lo)
3720            or else not Compile_Time_Known_Value (Hi)
3721          then
3722             return False;
3723          end if;
3724
3725          Lov := Expr_Value (Lo);
3726          Hiv := Expr_Value (Hi);
3727
3728          if Hiv < Lov
3729            or else not Compile_Time_Known_Value (Blo)
3730          then
3731             return False;
3732          end if;
3733
3734          --  Determine if set of alternatives is suitable for conversion and
3735          --  build an array containing the values in sequence.
3736
3737          declare
3738             Vals : array (UI_To_Int (Lov) .. UI_To_Int (Hiv))
3739                      of Node_Id := (others => Empty);
3740             --  The values in the aggregate sorted appropriately
3741
3742             Vlist : List_Id;
3743             --  Same data as Vals in list form
3744
3745             Rep_Count : Nat;
3746             --  Used to validate Max_Others_Replicate limit
3747
3748             Elmt   : Node_Id;
3749             Num    : Int := UI_To_Int (Lov);
3750             Choice : Node_Id;
3751             Lo, Hi : Node_Id;
3752
3753          begin
3754             if Present (Expressions (N)) then
3755                Elmt := First (Expressions (N));
3756                while Present (Elmt) loop
3757                   if Nkind (Elmt) = N_Aggregate
3758                     and then Present (Next_Index (Ix))
3759                     and then
3760                       not Flatten (Elmt, Next_Index (Ix), Next_Index (Ixb))
3761                   then
3762                      return False;
3763                   end if;
3764
3765                   Vals (Num) := Relocate_Node (Elmt);
3766                   Num := Num + 1;
3767
3768                   Next (Elmt);
3769                end loop;
3770             end if;
3771
3772             if No (Component_Associations (N)) then
3773                return True;
3774             end if;
3775
3776             Elmt := First (Component_Associations (N));
3777
3778             if Nkind (Expression (Elmt)) = N_Aggregate then
3779                if Present (Next_Index (Ix))
3780                  and then
3781                    not Flatten
3782                         (Expression (Elmt), Next_Index (Ix), Next_Index (Ixb))
3783                then
3784                   return False;
3785                end if;
3786             end if;
3787
3788             Component_Loop : while Present (Elmt) loop
3789                Choice := First (Choices (Elmt));
3790                Choice_Loop : while Present (Choice) loop
3791
3792                   --  If we have an others choice, fill in the missing elements
3793                   --  subject to the limit established by Max_Others_Replicate.
3794
3795                   if Nkind (Choice) = N_Others_Choice then
3796                      Rep_Count := 0;
3797
3798                      for J in Vals'Range loop
3799                         if No (Vals (J)) then
3800                            Vals (J) := New_Copy_Tree (Expression (Elmt));
3801                            Rep_Count := Rep_Count + 1;
3802
3803                            --  Check for maximum others replication. Note that
3804                            --  we skip this test if either of the restrictions
3805                            --  No_Elaboration_Code or No_Implicit_Loops is
3806                            --  active, if this is a preelaborable unit or a
3807                            --  predefined unit. This ensures that predefined
3808                            --  units get the same level of constant folding in
3809                            --  Ada 95 and Ada 05, where their categorization
3810                            --  has changed.
3811
3812                            declare
3813                               P : constant Entity_Id :=
3814                                     Cunit_Entity (Current_Sem_Unit);
3815
3816                            begin
3817                               --  Check if duplication OK and if so continue
3818                               --  processing.
3819
3820                               if Restriction_Active (No_Elaboration_Code)
3821                                 or else Restriction_Active (No_Implicit_Loops)
3822                                 or else Is_Preelaborated (P)
3823                                 or else (Ekind (P) = E_Package_Body
3824                                           and then
3825                                             Is_Preelaborated (Spec_Entity (P)))
3826                                 or else
3827                                   Is_Predefined_File_Name
3828                                     (Unit_File_Name (Get_Source_Unit (P)))
3829                               then
3830                                  null;
3831
3832                               --  If duplication not OK, then we return False
3833                               --  if the replication count is too high
3834
3835                               elsif Rep_Count > Max_Others_Replicate then
3836                                  return False;
3837
3838                               --  Continue on if duplication not OK, but the
3839                               --  replication count is not excessive.
3840
3841                               else
3842                                  null;
3843                               end if;
3844                            end;
3845                         end if;
3846                      end loop;
3847
3848                      exit Component_Loop;
3849
3850                   --  Case of a subtype mark
3851
3852                   elsif Nkind (Choice) = N_Identifier
3853                     and then Is_Type (Entity (Choice))
3854                   then
3855                      Lo := Type_Low_Bound  (Etype (Choice));
3856                      Hi := Type_High_Bound (Etype (Choice));
3857
3858                   --  Case of subtype indication
3859
3860                   elsif Nkind (Choice) = N_Subtype_Indication then
3861                      Lo := Low_Bound  (Range_Expression (Constraint (Choice)));
3862                      Hi := High_Bound (Range_Expression (Constraint (Choice)));
3863
3864                   --  Case of a range
3865
3866                   elsif Nkind (Choice) = N_Range then
3867                      Lo := Low_Bound (Choice);
3868                      Hi := High_Bound (Choice);
3869
3870                   --  Normal subexpression case
3871
3872                   else pragma Assert (Nkind (Choice) in N_Subexpr);
3873                      if not Compile_Time_Known_Value (Choice) then
3874                         return False;
3875
3876                      else
3877                         Vals (UI_To_Int (Expr_Value (Choice))) :=
3878                           New_Copy_Tree (Expression (Elmt));
3879                         goto Continue;
3880                      end if;
3881                   end if;
3882
3883                   --  Range cases merge with Lo,Hi said
3884
3885                   if not Compile_Time_Known_Value (Lo)
3886                        or else
3887                      not Compile_Time_Known_Value (Hi)
3888                   then
3889                      return False;
3890                   else
3891                      for J in UI_To_Int (Expr_Value (Lo)) ..
3892                               UI_To_Int (Expr_Value (Hi))
3893                      loop
3894                         Vals (J) := New_Copy_Tree (Expression (Elmt));
3895                      end loop;
3896                   end if;
3897
3898                <<Continue>>
3899                   Next (Choice);
3900                end loop Choice_Loop;
3901
3902                Next (Elmt);
3903             end loop Component_Loop;
3904
3905             --  If we get here the conversion is possible
3906
3907             Vlist := New_List;
3908             for J in Vals'Range loop
3909                Append (Vals (J), Vlist);
3910             end loop;
3911
3912             Rewrite (N, Make_Aggregate (Loc, Expressions => Vlist));
3913             Set_Aggregate_Bounds (N, Aggregate_Bounds (Original_Node (N)));
3914             return True;
3915          end;
3916       end Flatten;
3917
3918       -------------
3919       -- Is_Flat --
3920       -------------
3921
3922       function Is_Flat (N : Node_Id; Dims : Int) return Boolean is
3923          Elmt : Node_Id;
3924
3925       begin
3926          if Dims = 0 then
3927             return True;
3928
3929          elsif Nkind (N) = N_Aggregate then
3930             if Present (Component_Associations (N)) then
3931                return False;
3932
3933             else
3934                Elmt := First (Expressions (N));
3935                while Present (Elmt) loop
3936                   if not Is_Flat (Elmt, Dims - 1) then
3937                      return False;
3938                   end if;
3939
3940                   Next (Elmt);
3941                end loop;
3942
3943                return True;
3944             end if;
3945          else
3946             return True;
3947          end if;
3948       end Is_Flat;
3949
3950    --  Start of processing for Convert_To_Positional
3951
3952    begin
3953       --  Ada 2005 (AI-287): Do not convert in case of default initialized
3954       --  components because in this case will need to call the corresponding
3955       --  IP procedure.
3956
3957       if Has_Default_Init_Comps (N) then
3958          return;
3959       end if;
3960
3961       if Is_Flat (N, Number_Dimensions (Typ)) then
3962          return;
3963       end if;
3964
3965       if Is_Bit_Packed_Array (Typ)
3966         and then not Handle_Bit_Packed
3967       then
3968          return;
3969       end if;
3970
3971       --  Do not convert to positional if controlled components are involved
3972       --  since these require special processing
3973
3974       if Has_Controlled_Component (Typ) then
3975          return;
3976       end if;
3977
3978       Check_Static_Components;
3979
3980       --  If the size is known, or all the components are static, try to
3981       --  build a fully positional aggregate.
3982
3983       --  The size of the type  may not be known for an aggregate with
3984       --  discriminated array components, but if the components are static
3985       --  it is still possible to verify statically that the length is
3986       --  compatible with the upper bound of the type, and therefore it is
3987       --  worth flattening such aggregates as well.
3988
3989       --  For now the back-end expands these aggregates into individual
3990       --  assignments to the target anyway, but it is conceivable that
3991       --  it will eventually be able to treat such aggregates statically???
3992
3993       if Aggr_Size_OK (N, Typ)
3994         and then Flatten (N, First_Index (Typ), First_Index (Base_Type (Typ)))
3995       then
3996          if Static_Components then
3997             Set_Compile_Time_Known_Aggregate (N);
3998             Set_Expansion_Delayed (N, False);
3999          end if;
4000
4001          Analyze_And_Resolve (N, Typ);
4002       end if;
4003    end Convert_To_Positional;
4004
4005    ----------------------------
4006    -- Expand_Array_Aggregate --
4007    ----------------------------
4008
4009    --  Array aggregate expansion proceeds as follows:
4010
4011    --  1. If requested we generate code to perform all the array aggregate
4012    --     bound checks, specifically
4013
4014    --         (a) Check that the index range defined by aggregate bounds is
4015    --             compatible with corresponding index subtype.
4016
4017    --         (b) If an others choice is present check that no aggregate
4018    --             index is outside the bounds of the index constraint.
4019
4020    --         (c) For multidimensional arrays make sure that all subaggregates
4021    --             corresponding to the same dimension have the same bounds.
4022
4023    --  2. Check for packed array aggregate which can be converted to a
4024    --     constant so that the aggregate disappeares completely.
4025
4026    --  3. Check case of nested aggregate. Generally nested aggregates are
4027    --     handled during the processing of the parent aggregate.
4028
4029    --  4. Check if the aggregate can be statically processed. If this is the
4030    --     case pass it as is to Gigi. Note that a necessary condition for
4031    --     static processing is that the aggregate be fully positional.
4032
4033    --  5. If in place aggregate expansion is possible (i.e. no need to create
4034    --     a temporary) then mark the aggregate as such and return. Otherwise
4035    --     create a new temporary and generate the appropriate initialization
4036    --     code.
4037
4038    procedure Expand_Array_Aggregate (N : Node_Id) is
4039       Loc : constant Source_Ptr := Sloc (N);
4040
4041       Typ  : constant Entity_Id := Etype (N);
4042       Ctyp : constant Entity_Id := Component_Type (Typ);
4043       --  Typ is the correct constrained array subtype of the aggregate
4044       --  Ctyp is the corresponding component type.
4045
4046       Aggr_Dimension : constant Pos := Number_Dimensions (Typ);
4047       --  Number of aggregate index dimensions
4048
4049       Aggr_Low  : array (1 .. Aggr_Dimension) of Node_Id;
4050       Aggr_High : array (1 .. Aggr_Dimension) of Node_Id;
4051       --  Low and High bounds of the constraint for each aggregate index
4052
4053       Aggr_Index_Typ : array (1 .. Aggr_Dimension) of Entity_Id;
4054       --  The type of each index
4055
4056       Maybe_In_Place_OK : Boolean;
4057       --  If the type is neither controlled nor packed and the aggregate
4058       --  is the expression in an assignment, assignment in place may be
4059       --  possible, provided other conditions are met on the LHS.
4060
4061       Others_Present : array (1 .. Aggr_Dimension) of Boolean :=
4062                          (others => False);
4063       --  If Others_Present (J) is True, then there is an others choice
4064       --  in one of the sub-aggregates of N at dimension J.
4065
4066       procedure Build_Constrained_Type (Positional : Boolean);
4067       --  If the subtype is not static or unconstrained, build a constrained
4068       --  type using the computable sizes of the aggregate and its sub-
4069       --  aggregates.
4070
4071       procedure Check_Bounds (Aggr_Bounds : Node_Id; Index_Bounds : Node_Id);
4072       --  Checks that the bounds of Aggr_Bounds are within the bounds defined
4073       --  by Index_Bounds.
4074
4075       procedure Check_Same_Aggr_Bounds (Sub_Aggr : Node_Id; Dim : Pos);
4076       --  Checks that in a multi-dimensional array aggregate all subaggregates
4077       --  corresponding to the same dimension have the same bounds.
4078       --  Sub_Aggr is an array sub-aggregate. Dim is the dimension
4079       --  corresponding to the sub-aggregate.
4080
4081       procedure Compute_Others_Present (Sub_Aggr : Node_Id; Dim : Pos);
4082       --  Computes the values of array Others_Present. Sub_Aggr is the
4083       --  array sub-aggregate we start the computation from. Dim is the
4084       --  dimension corresponding to the sub-aggregate.
4085
4086       function Has_Address_Clause (D : Node_Id) return Boolean;
4087       --  If the aggregate is the expression in an object declaration, it
4088       --  cannot be expanded in place. This function does a lookahead in the
4089       --  current declarative part to find an address clause for the object
4090       --  being declared.
4091
4092       function In_Place_Assign_OK return Boolean;
4093       --  Simple predicate to determine whether an aggregate assignment can
4094       --  be done in place, because none of the new values can depend on the
4095       --  components of the target of the assignment.
4096
4097       procedure Others_Check (Sub_Aggr : Node_Id; Dim : Pos);
4098       --  Checks that if an others choice is present in any sub-aggregate no
4099       --  aggregate index is outside the bounds of the index constraint.
4100       --  Sub_Aggr is an array sub-aggregate. Dim is the dimension
4101       --  corresponding to the sub-aggregate.
4102
4103       ----------------------------
4104       -- Build_Constrained_Type --
4105       ----------------------------
4106
4107       procedure Build_Constrained_Type (Positional : Boolean) is
4108          Loc      : constant Source_Ptr := Sloc (N);
4109          Agg_Type : Entity_Id;
4110          Comp     : Node_Id;
4111          Decl     : Node_Id;
4112          Typ      : constant Entity_Id := Etype (N);
4113          Indices  : constant List_Id   := New_List;
4114          Num      : Int;
4115          Sub_Agg  : Node_Id;
4116
4117       begin
4118          Agg_Type :=
4119            Make_Defining_Identifier (
4120              Loc, New_Internal_Name ('A'));
4121
4122          --  If the aggregate is purely positional, all its subaggregates
4123          --  have the same size. We collect the dimensions from the first
4124          --  subaggregate at each level.
4125
4126          if Positional then
4127             Sub_Agg := N;
4128
4129             for D in 1 .. Number_Dimensions (Typ) loop
4130                Sub_Agg := First (Expressions (Sub_Agg));
4131
4132                Comp := Sub_Agg;
4133                Num := 0;
4134                while Present (Comp) loop
4135                   Num := Num + 1;
4136                   Next (Comp);
4137                end loop;
4138
4139                Append (
4140                  Make_Range (Loc,
4141                    Low_Bound => Make_Integer_Literal (Loc, 1),
4142                    High_Bound =>
4143                           Make_Integer_Literal (Loc, Num)),
4144                  Indices);
4145             end loop;
4146
4147          else
4148             --  We know the aggregate type is unconstrained and the aggregate
4149             --  is not processable by the back end, therefore not necessarily
4150             --  positional. Retrieve each dimension bounds (computed earlier).
4151             --  earlier.
4152
4153             for D in 1 .. Number_Dimensions (Typ) loop
4154                Append (
4155                  Make_Range (Loc,
4156                     Low_Bound  => Aggr_Low  (D),
4157                     High_Bound => Aggr_High (D)),
4158                  Indices);
4159             end loop;
4160          end if;
4161
4162          Decl :=
4163            Make_Full_Type_Declaration (Loc,
4164                Defining_Identifier => Agg_Type,
4165                Type_Definition =>
4166                  Make_Constrained_Array_Definition (Loc,
4167                    Discrete_Subtype_Definitions => Indices,
4168                    Component_Definition =>
4169                      Make_Component_Definition (Loc,
4170                        Aliased_Present => False,
4171                        Subtype_Indication =>
4172                          New_Occurrence_Of (Component_Type (Typ), Loc))));
4173
4174          Insert_Action (N, Decl);
4175          Analyze (Decl);
4176          Set_Etype (N, Agg_Type);
4177          Set_Is_Itype (Agg_Type);
4178          Freeze_Itype (Agg_Type, N);
4179       end Build_Constrained_Type;
4180
4181       ------------------
4182       -- Check_Bounds --
4183       ------------------
4184
4185       procedure Check_Bounds (Aggr_Bounds : Node_Id; Index_Bounds : Node_Id) is
4186          Aggr_Lo : Node_Id;
4187          Aggr_Hi : Node_Id;
4188
4189          Ind_Lo  : Node_Id;
4190          Ind_Hi  : Node_Id;
4191
4192          Cond    : Node_Id := Empty;
4193
4194       begin
4195          Get_Index_Bounds (Aggr_Bounds, Aggr_Lo, Aggr_Hi);
4196          Get_Index_Bounds (Index_Bounds, Ind_Lo, Ind_Hi);
4197
4198          --  Generate the following test:
4199          --
4200          --    [constraint_error when
4201          --      Aggr_Lo <= Aggr_Hi and then
4202          --        (Aggr_Lo < Ind_Lo or else Aggr_Hi > Ind_Hi)]
4203
4204          --  As an optimization try to see if some tests are trivially vacuous
4205          --  because we are comparing an expression against itself.
4206
4207          if Aggr_Lo = Ind_Lo and then Aggr_Hi = Ind_Hi then
4208             Cond := Empty;
4209
4210          elsif Aggr_Hi = Ind_Hi then
4211             Cond :=
4212               Make_Op_Lt (Loc,
4213                 Left_Opnd  => Duplicate_Subexpr_Move_Checks (Aggr_Lo),
4214                 Right_Opnd => Duplicate_Subexpr_Move_Checks (Ind_Lo));
4215
4216          elsif Aggr_Lo = Ind_Lo then
4217             Cond :=
4218               Make_Op_Gt (Loc,
4219                 Left_Opnd  => Duplicate_Subexpr_Move_Checks (Aggr_Hi),
4220                 Right_Opnd => Duplicate_Subexpr_Move_Checks (Ind_Hi));
4221
4222          else
4223             Cond :=
4224               Make_Or_Else (Loc,
4225                 Left_Opnd =>
4226                   Make_Op_Lt (Loc,
4227                     Left_Opnd  => Duplicate_Subexpr_Move_Checks (Aggr_Lo),
4228                     Right_Opnd => Duplicate_Subexpr_Move_Checks (Ind_Lo)),
4229
4230                 Right_Opnd =>
4231                   Make_Op_Gt (Loc,
4232                     Left_Opnd  => Duplicate_Subexpr (Aggr_Hi),
4233                     Right_Opnd => Duplicate_Subexpr (Ind_Hi)));
4234          end if;
4235
4236          if Present (Cond) then
4237             Cond :=
4238               Make_And_Then (Loc,
4239                 Left_Opnd =>
4240                   Make_Op_Le (Loc,
4241                     Left_Opnd  => Duplicate_Subexpr_Move_Checks (Aggr_Lo),
4242                     Right_Opnd => Duplicate_Subexpr_Move_Checks (Aggr_Hi)),
4243
4244                 Right_Opnd => Cond);
4245
4246             Set_Analyzed (Left_Opnd  (Left_Opnd (Cond)), False);
4247             Set_Analyzed (Right_Opnd (Left_Opnd (Cond)), False);
4248             Insert_Action (N,
4249               Make_Raise_Constraint_Error (Loc,
4250                 Condition => Cond,
4251                 Reason    => CE_Length_Check_Failed));
4252          end if;
4253       end Check_Bounds;
4254
4255       ----------------------------
4256       -- Check_Same_Aggr_Bounds --
4257       ----------------------------
4258
4259       procedure Check_Same_Aggr_Bounds (Sub_Aggr : Node_Id; Dim : Pos) is
4260          Sub_Lo : constant Node_Id := Low_Bound (Aggregate_Bounds (Sub_Aggr));
4261          Sub_Hi : constant Node_Id := High_Bound (Aggregate_Bounds (Sub_Aggr));
4262          --  The bounds of this specific sub-aggregate
4263
4264          Aggr_Lo : constant Node_Id := Aggr_Low (Dim);
4265          Aggr_Hi : constant Node_Id := Aggr_High (Dim);
4266          --  The bounds of the aggregate for this dimension
4267
4268          Ind_Typ : constant Entity_Id := Aggr_Index_Typ (Dim);
4269          --  The index type for this dimension.xxx
4270
4271          Cond  : Node_Id := Empty;
4272          Assoc : Node_Id;
4273          Expr  : Node_Id;
4274
4275       begin
4276          --  If index checks are on generate the test
4277
4278          --    [constraint_error when
4279          --      Aggr_Lo /= Sub_Lo or else Aggr_Hi /= Sub_Hi]
4280
4281          --  As an optimization try to see if some tests are trivially vacuos
4282          --  because we are comparing an expression against itself. Also for
4283          --  the first dimension the test is trivially vacuous because there
4284          --  is just one aggregate for dimension 1.
4285
4286          if Index_Checks_Suppressed (Ind_Typ) then
4287             Cond := Empty;
4288
4289          elsif Dim = 1
4290            or else (Aggr_Lo = Sub_Lo and then Aggr_Hi = Sub_Hi)
4291          then
4292             Cond := Empty;
4293
4294          elsif Aggr_Hi = Sub_Hi then
4295             Cond :=
4296               Make_Op_Ne (Loc,
4297                 Left_Opnd  => Duplicate_Subexpr_Move_Checks (Aggr_Lo),
4298                 Right_Opnd => Duplicate_Subexpr_Move_Checks (Sub_Lo));
4299
4300          elsif Aggr_Lo = Sub_Lo then
4301             Cond :=
4302               Make_Op_Ne (Loc,
4303                 Left_Opnd  => Duplicate_Subexpr_Move_Checks (Aggr_Hi),
4304                 Right_Opnd => Duplicate_Subexpr_Move_Checks (Sub_Hi));
4305
4306          else
4307             Cond :=
4308               Make_Or_Else (Loc,
4309                 Left_Opnd =>
4310                   Make_Op_Ne (Loc,
4311                     Left_Opnd  => Duplicate_Subexpr_Move_Checks (Aggr_Lo),
4312                     Right_Opnd => Duplicate_Subexpr_Move_Checks (Sub_Lo)),
4313
4314                 Right_Opnd =>
4315                   Make_Op_Ne (Loc,
4316                     Left_Opnd  => Duplicate_Subexpr (Aggr_Hi),
4317                     Right_Opnd => Duplicate_Subexpr (Sub_Hi)));
4318          end if;
4319
4320          if Present (Cond) then
4321             Insert_Action (N,
4322               Make_Raise_Constraint_Error (Loc,
4323                 Condition => Cond,
4324                 Reason    => CE_Length_Check_Failed));
4325          end if;
4326
4327          --  Now look inside the sub-aggregate to see if there is more work
4328
4329          if Dim < Aggr_Dimension then
4330
4331             --  Process positional components
4332
4333             if Present (Expressions (Sub_Aggr)) then
4334                Expr := First (Expressions (Sub_Aggr));
4335                while Present (Expr) loop
4336                   Check_Same_Aggr_Bounds (Expr, Dim + 1);
4337                   Next (Expr);
4338                end loop;
4339             end if;
4340
4341             --  Process component associations
4342
4343             if Present (Component_Associations (Sub_Aggr)) then
4344                Assoc := First (Component_Associations (Sub_Aggr));
4345                while Present (Assoc) loop
4346                   Expr := Expression (Assoc);
4347                   Check_Same_Aggr_Bounds (Expr, Dim + 1);
4348                   Next (Assoc);
4349                end loop;
4350             end if;
4351          end if;
4352       end Check_Same_Aggr_Bounds;
4353
4354       ----------------------------
4355       -- Compute_Others_Present --
4356       ----------------------------
4357
4358       procedure Compute_Others_Present (Sub_Aggr : Node_Id; Dim : Pos) is
4359          Assoc : Node_Id;
4360          Expr  : Node_Id;
4361
4362       begin
4363          if Present (Component_Associations (Sub_Aggr)) then
4364             Assoc := Last (Component_Associations (Sub_Aggr));
4365
4366             if Nkind (First (Choices (Assoc))) = N_Others_Choice then
4367                Others_Present (Dim) := True;
4368             end if;
4369          end if;
4370
4371          --  Now look inside the sub-aggregate to see if there is more work
4372
4373          if Dim < Aggr_Dimension then
4374
4375             --  Process positional components
4376
4377             if Present (Expressions (Sub_Aggr)) then
4378                Expr := First (Expressions (Sub_Aggr));
4379                while Present (Expr) loop
4380                   Compute_Others_Present (Expr, Dim + 1);
4381                   Next (Expr);
4382                end loop;
4383             end if;
4384
4385             --  Process component associations
4386
4387             if Present (Component_Associations (Sub_Aggr)) then
4388                Assoc := First (Component_Associations (Sub_Aggr));
4389                while Present (Assoc) loop
4390                   Expr := Expression (Assoc);
4391                   Compute_Others_Present (Expr, Dim + 1);
4392                   Next (Assoc);
4393                end loop;
4394             end if;
4395          end if;
4396       end Compute_Others_Present;
4397
4398       ------------------------
4399       -- Has_Address_Clause --
4400       ------------------------
4401
4402       function Has_Address_Clause (D : Node_Id) return Boolean is
4403          Id   : constant Entity_Id := Defining_Identifier (D);
4404          Decl : Node_Id;
4405
4406       begin
4407          Decl := Next (D);
4408          while Present (Decl) loop
4409             if Nkind (Decl) = N_At_Clause
4410                and then Chars (Identifier (Decl)) = Chars (Id)
4411             then
4412                return True;
4413
4414             elsif Nkind (Decl) = N_Attribute_Definition_Clause
4415                and then Chars (Decl) = Name_Address
4416                and then Chars (Name (Decl)) = Chars (Id)
4417             then
4418                return True;
4419             end if;
4420
4421             Next (Decl);
4422          end loop;
4423
4424          return False;
4425       end Has_Address_Clause;
4426
4427       ------------------------
4428       -- In_Place_Assign_OK --
4429       ------------------------
4430
4431       function In_Place_Assign_OK return Boolean is
4432          Aggr_In : Node_Id;
4433          Aggr_Lo : Node_Id;
4434          Aggr_Hi : Node_Id;
4435          Obj_In  : Node_Id;
4436          Obj_Lo  : Node_Id;
4437          Obj_Hi  : Node_Id;
4438
4439          function Is_Others_Aggregate (Aggr : Node_Id) return Boolean;
4440          --  Aggregates that consist of a single Others choice are safe
4441          --  if the single expression is.
4442
4443          function Safe_Aggregate (Aggr : Node_Id) return Boolean;
4444          --  Check recursively that each component of a (sub)aggregate does
4445          --  not depend on the variable being assigned to.
4446
4447          function Safe_Component (Expr : Node_Id) return Boolean;
4448          --  Verify that an expression cannot depend on the variable being
4449          --  assigned to. Room for improvement here (but less than before).
4450
4451          -------------------------
4452          -- Is_Others_Aggregate --
4453          -------------------------
4454
4455          function Is_Others_Aggregate (Aggr : Node_Id) return Boolean is
4456          begin
4457             return No (Expressions (Aggr))
4458               and then Nkind
4459                 (First (Choices (First (Component_Associations (Aggr)))))
4460                   = N_Others_Choice;
4461          end Is_Others_Aggregate;
4462
4463          --------------------
4464          -- Safe_Aggregate --
4465          --------------------
4466
4467          function Safe_Aggregate (Aggr : Node_Id) return Boolean is
4468             Expr : Node_Id;
4469
4470          begin
4471             if Present (Expressions (Aggr)) then
4472                Expr := First (Expressions (Aggr));
4473                while Present (Expr) loop
4474                   if Nkind (Expr) = N_Aggregate then
4475                      if not Safe_Aggregate (Expr) then
4476                         return False;
4477                      end if;
4478
4479                   elsif not Safe_Component (Expr) then
4480                      return False;
4481                   end if;
4482
4483                   Next (Expr);
4484                end loop;
4485             end if;
4486
4487             if Present (Component_Associations (Aggr)) then
4488                Expr := First (Component_Associations (Aggr));
4489                while Present (Expr) loop
4490                   if Nkind (Expression (Expr)) = N_Aggregate then
4491                      if not Safe_Aggregate (Expression (Expr)) then
4492                         return False;
4493                      end if;
4494
4495                   elsif not Safe_Component (Expression (Expr)) then
4496                      return False;
4497                   end if;
4498
4499                   Next (Expr);
4500                end loop;
4501             end if;
4502
4503             return True;
4504          end Safe_Aggregate;
4505
4506          --------------------
4507          -- Safe_Component --
4508          --------------------
4509
4510          function Safe_Component (Expr : Node_Id) return Boolean is
4511             Comp : Node_Id := Expr;
4512
4513             function Check_Component (Comp : Node_Id) return Boolean;
4514             --  Do the recursive traversal, after copy
4515
4516             ---------------------
4517             -- Check_Component --
4518             ---------------------
4519
4520             function Check_Component (Comp : Node_Id) return Boolean is
4521             begin
4522                if Is_Overloaded (Comp) then
4523                   return False;
4524                end if;
4525
4526                return Compile_Time_Known_Value (Comp)
4527
4528                  or else (Is_Entity_Name (Comp)
4529                            and then  Present (Entity (Comp))
4530                            and then No (Renamed_Object (Entity (Comp))))
4531
4532                  or else (Nkind (Comp) = N_Attribute_Reference
4533                            and then Check_Component (Prefix (Comp)))
4534
4535                  or else (Nkind (Comp) in N_Binary_Op
4536                            and then Check_Component (Left_Opnd  (Comp))
4537                            and then Check_Component (Right_Opnd (Comp)))
4538
4539                  or else (Nkind (Comp) in N_Unary_Op
4540                            and then Check_Component (Right_Opnd (Comp)))
4541
4542                  or else (Nkind (Comp) = N_Selected_Component
4543                            and then Check_Component (Prefix (Comp)))
4544
4545                  or else (Nkind (Comp) = N_Unchecked_Type_Conversion
4546                            and then Check_Component (Expression (Comp)));
4547             end Check_Component;
4548
4549          --  Start of processing for Safe_Component
4550
4551          begin
4552             --  If the component appears in an association that may
4553             --  correspond to more than one element, it is not analyzed
4554             --  before the expansion into assignments, to avoid side effects.
4555             --  We analyze, but do not resolve the copy, to obtain sufficient
4556             --  entity information for the checks that follow. If component is
4557             --  overloaded we assume an unsafe function call.
4558
4559             if not Analyzed (Comp) then
4560                if Is_Overloaded (Expr) then
4561                   return False;
4562
4563                elsif Nkind (Expr) = N_Aggregate
4564                   and then not Is_Others_Aggregate (Expr)
4565                then
4566                   return False;
4567
4568                elsif Nkind (Expr) = N_Allocator then
4569
4570                   --  For now, too complex to analyze
4571
4572                   return False;
4573                end if;
4574
4575                Comp := New_Copy_Tree (Expr);
4576                Set_Parent (Comp, Parent (Expr));
4577                Analyze (Comp);
4578             end if;
4579
4580             if Nkind (Comp) = N_Aggregate then
4581                return Safe_Aggregate (Comp);
4582             else
4583                return Check_Component (Comp);
4584             end if;
4585          end Safe_Component;
4586
4587       --  Start of processing for In_Place_Assign_OK
4588
4589       begin
4590          if Present (Component_Associations (N)) then
4591
4592             --  On assignment, sliding can take place, so we cannot do the
4593             --  assignment in place unless the bounds of the aggregate are
4594             --  statically equal to those of the target.
4595
4596             --  If the aggregate is given by an others choice, the bounds
4597             --  are derived from the left-hand side, and the assignment is
4598             --  safe if the expression is.
4599
4600             if Is_Others_Aggregate (N) then
4601                return
4602                  Safe_Component
4603                   (Expression (First (Component_Associations (N))));
4604             end if;
4605
4606             Aggr_In := First_Index (Etype (N));
4607             if Nkind (Parent (N)) = N_Assignment_Statement then
4608                Obj_In  := First_Index (Etype (Name (Parent (N))));
4609
4610             else
4611                --  Context is an allocator. Check bounds of aggregate
4612                --  against given type in qualified expression.
4613
4614                pragma Assert (Nkind (Parent (Parent (N))) = N_Allocator);
4615                Obj_In :=
4616                  First_Index (Etype (Entity (Subtype_Mark (Parent (N)))));
4617             end if;
4618
4619             while Present (Aggr_In) loop
4620                Get_Index_Bounds (Aggr_In, Aggr_Lo, Aggr_Hi);
4621                Get_Index_Bounds (Obj_In, Obj_Lo, Obj_Hi);
4622
4623                if not Compile_Time_Known_Value (Aggr_Lo)
4624                  or else not Compile_Time_Known_Value (Aggr_Hi)
4625                  or else not Compile_Time_Known_Value (Obj_Lo)
4626                  or else not Compile_Time_Known_Value (Obj_Hi)
4627                  or else Expr_Value (Aggr_Lo) /= Expr_Value (Obj_Lo)
4628                  or else Expr_Value (Aggr_Hi) /= Expr_Value (Obj_Hi)
4629                then
4630                   return False;
4631                end if;
4632
4633                Next_Index (Aggr_In);
4634                Next_Index (Obj_In);
4635             end loop;
4636          end if;
4637
4638          --  Now check the component values themselves
4639
4640          return Safe_Aggregate (N);
4641       end In_Place_Assign_OK;
4642
4643       ------------------
4644       -- Others_Check --
4645       ------------------
4646
4647       procedure Others_Check (Sub_Aggr : Node_Id; Dim : Pos) is
4648          Aggr_Lo : constant Node_Id := Aggr_Low (Dim);
4649          Aggr_Hi : constant Node_Id := Aggr_High (Dim);
4650          --  The bounds of the aggregate for this dimension
4651
4652          Ind_Typ : constant Entity_Id := Aggr_Index_Typ (Dim);
4653          --  The index type for this dimension
4654
4655          Need_To_Check : Boolean := False;
4656
4657          Choices_Lo : Node_Id := Empty;
4658          Choices_Hi : Node_Id := Empty;
4659          --  The lowest and highest discrete choices for a named sub-aggregate
4660
4661          Nb_Choices : Int := -1;
4662          --  The number of discrete non-others choices in this sub-aggregate
4663
4664          Nb_Elements : Uint := Uint_0;
4665          --  The number of elements in a positional aggregate
4666
4667          Cond : Node_Id := Empty;
4668
4669          Assoc  : Node_Id;
4670          Choice : Node_Id;
4671          Expr   : Node_Id;
4672
4673       begin
4674          --  Check if we have an others choice. If we do make sure that this
4675          --  sub-aggregate contains at least one element in addition to the
4676          --  others choice.
4677
4678          if Range_Checks_Suppressed (Ind_Typ) then
4679             Need_To_Check := False;
4680
4681          elsif Present (Expressions (Sub_Aggr))
4682            and then Present (Component_Associations (Sub_Aggr))
4683          then
4684             Need_To_Check := True;
4685
4686          elsif Present (Component_Associations (Sub_Aggr)) then
4687             Assoc := Last (Component_Associations (Sub_Aggr));
4688
4689             if Nkind (First (Choices (Assoc))) /= N_Others_Choice then
4690                Need_To_Check := False;
4691
4692             else
4693                --  Count the number of discrete choices. Start with -1 because
4694                --  the others choice does not count.
4695
4696                Nb_Choices := -1;
4697                Assoc := First (Component_Associations (Sub_Aggr));
4698                while Present (Assoc) loop
4699                   Choice := First (Choices (Assoc));
4700                   while Present (Choice) loop
4701                      Nb_Choices := Nb_Choices + 1;
4702                      Next (Choice);
4703                   end loop;
4704
4705                   Next (Assoc);
4706                end loop;
4707
4708                --  If there is only an others choice nothing to do
4709
4710                Need_To_Check := (Nb_Choices > 0);
4711             end if;
4712
4713          else
4714             Need_To_Check := False;
4715          end if;
4716
4717          --  If we are dealing with a positional sub-aggregate with an others
4718          --  choice then compute the number or positional elements.
4719
4720          if Need_To_Check and then Present (Expressions (Sub_Aggr)) then
4721             Expr := First (Expressions (Sub_Aggr));
4722             Nb_Elements := Uint_0;
4723             while Present (Expr) loop
4724                Nb_Elements := Nb_Elements + 1;
4725                Next (Expr);
4726             end loop;
4727
4728          --  If the aggregate contains discrete choices and an others choice
4729          --  compute the smallest and largest discrete choice values.
4730
4731          elsif Need_To_Check then
4732             Compute_Choices_Lo_And_Choices_Hi : declare
4733
4734                Table : Case_Table_Type (1 .. Nb_Choices);
4735                --  Used to sort all the different choice values
4736
4737                J    : Pos := 1;
4738                Low  : Node_Id;
4739                High : Node_Id;
4740
4741             begin
4742                Assoc := First (Component_Associations (Sub_Aggr));
4743                while Present (Assoc) loop
4744                   Choice := First (Choices (Assoc));
4745                   while Present (Choice) loop
4746                      if Nkind (Choice) = N_Others_Choice then
4747                         exit;
4748                      end if;
4749
4750                      Get_Index_Bounds (Choice, Low, High);
4751                      Table (J).Choice_Lo := Low;
4752                      Table (J).Choice_Hi := High;
4753
4754                      J := J + 1;
4755                      Next (Choice);
4756                   end loop;
4757
4758                   Next (Assoc);
4759                end loop;
4760
4761                --  Sort the discrete choices
4762
4763                Sort_Case_Table (Table);
4764
4765                Choices_Lo := Table (1).Choice_Lo;
4766                Choices_Hi := Table (Nb_Choices).Choice_Hi;
4767             end Compute_Choices_Lo_And_Choices_Hi;
4768          end if;
4769
4770          --  If no others choice in this sub-aggregate, or the aggregate
4771          --  comprises only an others choice, nothing to do.
4772
4773          if not Need_To_Check then
4774             Cond := Empty;
4775
4776          --  If we are dealing with an aggregate containing an others choice
4777          --  and positional components, we generate the following test:
4778
4779          --    if Ind_Typ'Pos (Aggr_Lo) + (Nb_Elements - 1) >
4780          --            Ind_Typ'Pos (Aggr_Hi)
4781          --    then
4782          --       raise Constraint_Error;
4783          --    end if;
4784
4785          elsif Nb_Elements > Uint_0 then
4786             Cond :=
4787               Make_Op_Gt (Loc,
4788                 Left_Opnd  =>
4789                   Make_Op_Add (Loc,
4790                     Left_Opnd  =>
4791                       Make_Attribute_Reference (Loc,
4792                         Prefix         => New_Reference_To (Ind_Typ, Loc),
4793                         Attribute_Name => Name_Pos,
4794                         Expressions    =>
4795                           New_List
4796                             (Duplicate_Subexpr_Move_Checks (Aggr_Lo))),
4797                     Right_Opnd => Make_Integer_Literal (Loc, Nb_Elements - 1)),
4798
4799                 Right_Opnd =>
4800                   Make_Attribute_Reference (Loc,
4801                     Prefix         => New_Reference_To (Ind_Typ, Loc),
4802                     Attribute_Name => Name_Pos,
4803                     Expressions    => New_List (
4804                       Duplicate_Subexpr_Move_Checks (Aggr_Hi))));
4805
4806          --  If we are dealing with an aggregate containing an others choice
4807          --  and discrete choices we generate the following test:
4808
4809          --    [constraint_error when
4810          --      Choices_Lo < Aggr_Lo or else Choices_Hi > Aggr_Hi];
4811
4812          else
4813             Cond :=
4814               Make_Or_Else (Loc,
4815                 Left_Opnd =>
4816                   Make_Op_Lt (Loc,
4817                     Left_Opnd  =>
4818                       Duplicate_Subexpr_Move_Checks (Choices_Lo),
4819                     Right_Opnd =>
4820                       Duplicate_Subexpr_Move_Checks (Aggr_Lo)),
4821
4822                 Right_Opnd =>
4823                   Make_Op_Gt (Loc,
4824                     Left_Opnd  =>
4825                       Duplicate_Subexpr (Choices_Hi),
4826                     Right_Opnd =>
4827                       Duplicate_Subexpr (Aggr_Hi)));
4828          end if;
4829
4830          if Present (Cond) then
4831             Insert_Action (N,
4832               Make_Raise_Constraint_Error (Loc,
4833                 Condition => Cond,
4834                 Reason    => CE_Length_Check_Failed));
4835             --  Questionable reason code, shouldn't that be a
4836             --  CE_Range_Check_Failed ???
4837          end if;
4838
4839          --  Now look inside the sub-aggregate to see if there is more work
4840
4841          if Dim < Aggr_Dimension then
4842
4843             --  Process positional components
4844
4845             if Present (Expressions (Sub_Aggr)) then
4846                Expr := First (Expressions (Sub_Aggr));
4847                while Present (Expr) loop
4848                   Others_Check (Expr, Dim + 1);
4849                   Next (Expr);
4850                end loop;
4851             end if;
4852
4853             --  Process component associations
4854
4855             if Present (Component_Associations (Sub_Aggr)) then
4856                Assoc := First (Component_Associations (Sub_Aggr));
4857                while Present (Assoc) loop
4858                   Expr := Expression (Assoc);
4859                   Others_Check (Expr, Dim + 1);
4860                   Next (Assoc);
4861                end loop;
4862             end if;
4863          end if;
4864       end Others_Check;
4865
4866       --  Remaining Expand_Array_Aggregate variables
4867
4868       Tmp : Entity_Id;
4869       --  Holds the temporary aggregate value
4870
4871       Tmp_Decl : Node_Id;
4872       --  Holds the declaration of Tmp
4873
4874       Aggr_Code   : List_Id;
4875       Parent_Node : Node_Id;
4876       Parent_Kind : Node_Kind;
4877
4878    --  Start of processing for Expand_Array_Aggregate
4879
4880    begin
4881       --  Do not touch the special aggregates of attributes used for Asm calls
4882
4883       if Is_RTE (Ctyp, RE_Asm_Input_Operand)
4884         or else Is_RTE (Ctyp, RE_Asm_Output_Operand)
4885       then
4886          return;
4887       end if;
4888
4889       --  If the semantic analyzer has determined that aggregate N will raise
4890       --  Constraint_Error at run-time, then the aggregate node has been
4891       --  replaced with an N_Raise_Constraint_Error node and we should
4892       --  never get here.
4893
4894       pragma Assert (not Raises_Constraint_Error (N));
4895
4896       --  STEP 1a
4897
4898       --  Check that the index range defined by aggregate bounds is
4899       --  compatible with corresponding index subtype.
4900
4901       Index_Compatibility_Check : declare
4902          Aggr_Index_Range : Node_Id := First_Index (Typ);
4903          --  The current aggregate index range
4904
4905          Index_Constraint : Node_Id := First_Index (Etype (Typ));
4906          --  The corresponding index constraint against which we have to
4907          --  check the above aggregate index range.
4908
4909       begin
4910          Compute_Others_Present (N, 1);
4911
4912          for J in 1 .. Aggr_Dimension loop
4913             --  There is no need to emit a check if an others choice is
4914             --  present for this array aggregate dimension since in this
4915             --  case one of N's sub-aggregates has taken its bounds from the
4916             --  context and these bounds must have been checked already. In
4917             --  addition all sub-aggregates corresponding to the same
4918             --  dimension must all have the same bounds (checked in (c) below).
4919
4920             if not Range_Checks_Suppressed (Etype (Index_Constraint))
4921               and then not Others_Present (J)
4922             then
4923                --  We don't use Checks.Apply_Range_Check here because it emits
4924                --  a spurious check. Namely it checks that the range defined by
4925                --  the aggregate bounds is non empty. But we know this already
4926                --  if we get here.
4927
4928                Check_Bounds (Aggr_Index_Range, Index_Constraint);
4929             end if;
4930
4931             --  Save the low and high bounds of the aggregate index as well as
4932             --  the index type for later use in checks (b) and (c) below.
4933
4934             Aggr_Low  (J) := Low_Bound (Aggr_Index_Range);
4935             Aggr_High (J) := High_Bound (Aggr_Index_Range);
4936
4937             Aggr_Index_Typ (J) := Etype (Index_Constraint);
4938
4939             Next_Index (Aggr_Index_Range);
4940             Next_Index (Index_Constraint);
4941          end loop;
4942       end Index_Compatibility_Check;
4943
4944       --  STEP 1b
4945
4946       --  If an others choice is present check that no aggregate index is
4947       --  outside the bounds of the index constraint.
4948
4949       Others_Check (N, 1);
4950
4951       --  STEP 1c
4952
4953       --  For multidimensional arrays make sure that all subaggregates
4954       --  corresponding to the same dimension have the same bounds.
4955
4956       if Aggr_Dimension > 1 then
4957          Check_Same_Aggr_Bounds (N, 1);
4958       end if;
4959
4960       --  STEP 2
4961
4962       --  Here we test for is packed array aggregate that we can handle at
4963       --  compile time. If so, return with transformation done. Note that we do
4964       --  this even if the aggregate is nested, because once we have done this
4965       --  processing, there is no more nested aggregate!
4966
4967       if Packed_Array_Aggregate_Handled (N) then
4968          return;
4969       end if;
4970
4971       --  At this point we try to convert to positional form
4972
4973       if Ekind (Current_Scope) = E_Package
4974         and then Static_Elaboration_Desired (Current_Scope)
4975       then
4976          Convert_To_Positional (N, Max_Others_Replicate => 100);
4977
4978       else
4979          Convert_To_Positional (N);
4980       end if;
4981
4982       --  if the result is no longer an aggregate (e.g. it may be a string
4983       --  literal, or a temporary which has the needed value), then we are
4984       --  done, since there is no longer a nested aggregate.
4985
4986       if Nkind (N) /= N_Aggregate then
4987          return;
4988
4989       --  We are also done if the result is an analyzed aggregate
4990       --  This case could use more comments ???
4991
4992       elsif Analyzed (N)
4993         and then N /= Original_Node (N)
4994       then
4995          return;
4996       end if;
4997
4998       --  If all aggregate components are compile-time known and the aggregate
4999       --  has been flattened, nothing left to do. The same occurs if the
5000       --  aggregate is used to initialize the components of an statically
5001       --  allocated dispatch table.
5002
5003       if Compile_Time_Known_Aggregate (N)
5004         or else Is_Static_Dispatch_Table_Aggregate (N)
5005       then
5006          Set_Expansion_Delayed (N, False);
5007          return;
5008       end if;
5009
5010       --  Now see if back end processing is possible
5011
5012       if Backend_Processing_Possible (N) then
5013
5014          --  If the aggregate is static but the constraints are not, build
5015          --  a static subtype for the aggregate, so that Gigi can place it
5016          --  in static memory. Perform an unchecked_conversion to the non-
5017          --  static type imposed by the context.
5018
5019          declare
5020             Itype      : constant Entity_Id := Etype (N);
5021             Index      : Node_Id;
5022             Needs_Type : Boolean := False;
5023
5024          begin
5025             Index := First_Index (Itype);
5026             while Present (Index) loop
5027                if not Is_Static_Subtype (Etype (Index)) then
5028                   Needs_Type := True;
5029                   exit;
5030                else
5031                   Next_Index (Index);
5032                end if;
5033             end loop;
5034
5035             if Needs_Type then
5036                Build_Constrained_Type (Positional => True);
5037                Rewrite (N, Unchecked_Convert_To (Itype, N));
5038                Analyze (N);
5039             end if;
5040          end;
5041
5042          return;
5043       end if;
5044
5045       --  STEP 3
5046
5047       --  Delay expansion for nested aggregates: it will be taken care of
5048       --  when the parent aggregate is expanded.
5049
5050       Parent_Node := Parent (N);
5051       Parent_Kind := Nkind (Parent_Node);
5052
5053       if Parent_Kind = N_Qualified_Expression then
5054          Parent_Node := Parent (Parent_Node);
5055          Parent_Kind := Nkind (Parent_Node);
5056       end if;
5057
5058       if Parent_Kind = N_Aggregate
5059         or else Parent_Kind = N_Extension_Aggregate
5060         or else Parent_Kind = N_Component_Association
5061         or else (Parent_Kind = N_Object_Declaration
5062                   and then Needs_Finalization (Typ))
5063         or else (Parent_Kind = N_Assignment_Statement
5064                   and then Inside_Init_Proc)
5065       then
5066          if Static_Array_Aggregate (N)
5067            or else Compile_Time_Known_Aggregate (N)
5068          then
5069             Set_Expansion_Delayed (N, False);
5070             return;
5071          else
5072             Set_Expansion_Delayed (N);
5073             return;
5074          end if;
5075       end if;
5076
5077       --  STEP 4
5078
5079       --  Look if in place aggregate expansion is possible
5080
5081       --  For object declarations we build the aggregate in place, unless
5082       --  the array is bit-packed or the component is controlled.
5083
5084       --  For assignments we do the assignment in place if all the component
5085       --  associations have compile-time known values. For other cases we
5086       --  create a temporary. The analysis for safety of on-line assignment
5087       --  is delicate, i.e. we don't know how to do it fully yet ???
5088
5089       --  For allocators we assign to the designated object in place if the
5090       --  aggregate meets the same conditions as other in-place assignments.
5091       --  In this case the aggregate may not come from source but was created
5092       --  for default initialization, e.g. with Initialize_Scalars.
5093
5094       if Requires_Transient_Scope (Typ) then
5095          Establish_Transient_Scope
5096            (N, Sec_Stack => Has_Controlled_Component (Typ));
5097       end if;
5098
5099       if Has_Default_Init_Comps (N) then
5100          Maybe_In_Place_OK := False;
5101
5102       elsif Is_Bit_Packed_Array (Typ)
5103         or else Has_Controlled_Component (Typ)
5104       then
5105          Maybe_In_Place_OK := False;
5106
5107       else
5108          Maybe_In_Place_OK :=
5109           (Nkind (Parent (N)) = N_Assignment_Statement
5110             and then Comes_From_Source (N)
5111             and then In_Place_Assign_OK)
5112
5113           or else
5114             (Nkind (Parent (Parent (N))) = N_Allocator
5115               and then In_Place_Assign_OK);
5116       end if;
5117
5118       --  If this is an array of tasks, it will be expanded into build-in-place
5119       --  assignments. Build an activation chain for the tasks now.
5120
5121       if Has_Task (Etype (N)) then
5122          Build_Activation_Chain_Entity (N);
5123       end if;
5124
5125       if not Has_Default_Init_Comps (N)
5126          and then Comes_From_Source (Parent (N))
5127          and then Nkind (Parent (N)) = N_Object_Declaration
5128          and then not
5129            Must_Slide (Etype (Defining_Identifier (Parent (N))), Typ)
5130          and then N = Expression (Parent (N))
5131          and then not Is_Bit_Packed_Array (Typ)
5132          and then not Has_Controlled_Component (Typ)
5133          and then not Has_Address_Clause (Parent (N))
5134       then
5135          Tmp := Defining_Identifier (Parent (N));
5136          Set_No_Initialization (Parent (N));
5137          Set_Expression (Parent (N), Empty);
5138
5139          --  Set the type of the entity, for use in the analysis of the
5140          --  subsequent indexed assignments. If the nominal type is not
5141          --  constrained, build a subtype from the known bounds of the
5142          --  aggregate. If the declaration has a subtype mark, use it,
5143          --  otherwise use the itype of the aggregate.
5144
5145          if not Is_Constrained (Typ) then
5146             Build_Constrained_Type (Positional => False);
5147          elsif Is_Entity_Name (Object_Definition (Parent (N)))
5148            and then Is_Constrained (Entity (Object_Definition (Parent (N))))
5149          then
5150             Set_Etype (Tmp, Entity (Object_Definition (Parent (N))));
5151          else
5152             Set_Size_Known_At_Compile_Time (Typ, False);
5153             Set_Etype (Tmp, Typ);
5154          end if;
5155
5156       elsif Maybe_In_Place_OK
5157         and then Nkind (Parent (N)) = N_Qualified_Expression
5158         and then Nkind (Parent (Parent (N))) = N_Allocator
5159       then
5160          Set_Expansion_Delayed (N);
5161          return;
5162
5163       --  In the remaining cases the aggregate is the RHS of an assignment
5164
5165       elsif Maybe_In_Place_OK
5166         and then Is_Entity_Name (Name (Parent (N)))
5167       then
5168          Tmp := Entity (Name (Parent (N)));
5169
5170          if Etype (Tmp) /= Etype (N) then
5171             Apply_Length_Check (N, Etype (Tmp));
5172
5173             if Nkind (N) = N_Raise_Constraint_Error then
5174
5175                --  Static error, nothing further to expand
5176
5177                return;
5178             end if;
5179          end if;
5180
5181       elsif Maybe_In_Place_OK
5182         and then Nkind (Name (Parent (N))) = N_Explicit_Dereference
5183         and then Is_Entity_Name (Prefix (Name (Parent (N))))
5184       then
5185          Tmp := Name (Parent (N));
5186
5187          if Etype (Tmp) /= Etype (N) then
5188             Apply_Length_Check (N, Etype (Tmp));
5189          end if;
5190
5191       elsif Maybe_In_Place_OK
5192         and then Nkind (Name (Parent (N))) = N_Slice
5193         and then Safe_Slice_Assignment (N)
5194       then
5195          --  Safe_Slice_Assignment rewrites assignment as a loop
5196
5197          return;
5198
5199       --  Step 5
5200
5201       --  In place aggregate expansion is not possible
5202
5203       else
5204          Maybe_In_Place_OK := False;
5205          Tmp := Make_Temporary (Loc, New_Internal_Name ('A'), N);
5206          Tmp_Decl :=
5207            Make_Object_Declaration
5208              (Loc,
5209               Defining_Identifier => Tmp,
5210               Object_Definition   => New_Occurrence_Of (Typ, Loc));
5211          Set_No_Initialization (Tmp_Decl, True);
5212
5213          --  If we are within a loop, the temporary will be pushed on the
5214          --  stack at each iteration. If the aggregate is the expression for an
5215          --  allocator, it will be immediately copied to the heap and can
5216          --  be reclaimed at once. We create a transient scope around the
5217          --  aggregate for this purpose.
5218
5219          if Ekind (Current_Scope) = E_Loop
5220            and then Nkind (Parent (Parent (N))) = N_Allocator
5221          then
5222             Establish_Transient_Scope (N, False);
5223          end if;
5224
5225          Insert_Action (N, Tmp_Decl);
5226       end if;
5227
5228       --  Construct and insert the aggregate code. We can safely suppress index
5229       --  checks because this code is guaranteed not to raise CE on index
5230       --  checks. However we should *not* suppress all checks.
5231
5232       declare
5233          Target : Node_Id;
5234
5235       begin
5236          if Nkind (Tmp) = N_Defining_Identifier then
5237             Target := New_Reference_To (Tmp, Loc);
5238
5239          else
5240
5241             if Has_Default_Init_Comps (N) then
5242
5243                --  Ada 2005 (AI-287): This case has not been analyzed???
5244
5245                raise Program_Error;
5246             end if;
5247
5248             --  Name in assignment is explicit dereference
5249
5250             Target := New_Copy (Tmp);
5251          end if;
5252
5253          Aggr_Code :=
5254            Build_Array_Aggr_Code (N,
5255              Ctype       => Ctyp,
5256              Index       => First_Index (Typ),
5257              Into        => Target,
5258              Scalar_Comp => Is_Scalar_Type (Ctyp));
5259       end;
5260
5261       if Comes_From_Source (Tmp) then
5262          Insert_Actions_After (Parent (N), Aggr_Code);
5263
5264       else
5265          Insert_Actions (N, Aggr_Code);
5266       end if;
5267
5268       --  If the aggregate has been assigned in place, remove the original
5269       --  assignment.
5270
5271       if Nkind (Parent (N)) = N_Assignment_Statement
5272         and then Maybe_In_Place_OK
5273       then
5274          Rewrite (Parent (N), Make_Null_Statement (Loc));
5275
5276       elsif Nkind (Parent (N)) /= N_Object_Declaration
5277         or else Tmp /= Defining_Identifier (Parent (N))
5278       then
5279          Rewrite (N, New_Occurrence_Of (Tmp, Loc));
5280          Analyze_And_Resolve (N, Typ);
5281       end if;
5282    end Expand_Array_Aggregate;
5283
5284    ------------------------
5285    -- Expand_N_Aggregate --
5286    ------------------------
5287
5288    procedure Expand_N_Aggregate (N : Node_Id) is
5289    begin
5290       if Is_Record_Type (Etype (N)) then
5291          Expand_Record_Aggregate (N);
5292       else
5293          Expand_Array_Aggregate (N);
5294       end if;
5295    exception
5296       when RE_Not_Available =>
5297          return;
5298    end Expand_N_Aggregate;
5299
5300    ----------------------------------
5301    -- Expand_N_Extension_Aggregate --
5302    ----------------------------------
5303
5304    --  If the ancestor part is an expression, add a component association for
5305    --  the parent field. If the type of the ancestor part is not the direct
5306    --  parent of the expected type,  build recursively the needed ancestors.
5307    --  If the ancestor part is a subtype_mark, replace aggregate with a decla-
5308    --  ration for a temporary of the expected type, followed by individual
5309    --  assignments to the given components.
5310
5311    procedure Expand_N_Extension_Aggregate (N : Node_Id) is
5312       Loc : constant Source_Ptr := Sloc  (N);
5313       A   : constant Node_Id    := Ancestor_Part (N);
5314       Typ : constant Entity_Id  := Etype (N);
5315
5316    begin
5317       --  If the ancestor is a subtype mark, an init proc must be called
5318       --  on the resulting object which thus has to be materialized in
5319       --  the front-end
5320
5321       if Is_Entity_Name (A) and then Is_Type (Entity (A)) then
5322          Convert_To_Assignments (N, Typ);
5323
5324       --  The extension aggregate is transformed into a record aggregate
5325       --  of the following form (c1 and c2 are inherited components)
5326
5327       --   (Exp with c3 => a, c4 => b)
5328       --      ==> (c1 => Exp.c1, c2 => Exp.c2, c1 => a, c2 => b)
5329
5330       else
5331          Set_Etype (N, Typ);
5332
5333          if Tagged_Type_Expansion then
5334             Expand_Record_Aggregate (N,
5335               Orig_Tag    =>
5336                 New_Occurrence_Of
5337                   (Node (First_Elmt (Access_Disp_Table (Typ))), Loc),
5338               Parent_Expr => A);
5339          else
5340             --  No tag is needed in the case of a VM
5341             Expand_Record_Aggregate (N,
5342               Parent_Expr => A);
5343          end if;
5344       end if;
5345
5346    exception
5347       when RE_Not_Available =>
5348          return;
5349    end Expand_N_Extension_Aggregate;
5350
5351    -----------------------------
5352    -- Expand_Record_Aggregate --
5353    -----------------------------
5354
5355    procedure Expand_Record_Aggregate
5356      (N           : Node_Id;
5357       Orig_Tag    : Node_Id := Empty;
5358       Parent_Expr : Node_Id := Empty)
5359    is
5360       Loc      : constant Source_Ptr := Sloc  (N);
5361       Comps    : constant List_Id    := Component_Associations (N);
5362       Typ      : constant Entity_Id  := Etype (N);
5363       Base_Typ : constant Entity_Id  := Base_Type (Typ);
5364
5365       Static_Components : Boolean := True;
5366       --  Flag to indicate whether all components are compile-time known,
5367       --  and the aggregate can be constructed statically and handled by
5368       --  the back-end.
5369
5370       function Component_Not_OK_For_Backend return Boolean;
5371       --  Check for presence of component which makes it impossible for the
5372       --  backend to process the aggregate, thus requiring the use of a series
5373       --  of assignment statements. Cases checked for are a nested aggregate
5374       --  needing Late_Expansion, the presence of a tagged component which may
5375       --  need tag adjustment, and a bit unaligned component reference.
5376       --
5377       --  We also force expansion into assignments if a component is of a
5378       --  mutable type (including a private type with discriminants) because
5379       --  in that case the size of the component to be copied may be smaller
5380       --  than the side of the target, and there is no simple way for gigi
5381       --  to compute the size of the object to be copied.
5382       --
5383       --  NOTE: This is part of the ongoing work to define precisely the
5384       --  interface between front-end and back-end handling of aggregates.
5385       --  In general it is desirable to pass aggregates as they are to gigi,
5386       --  in order to minimize elaboration code. This is one case where the
5387       --  semantics of Ada complicate the analysis and lead to anomalies in
5388       --  the gcc back-end if the aggregate is not expanded into assignments.
5389
5390       ----------------------------------
5391       -- Component_Not_OK_For_Backend --
5392       ----------------------------------
5393
5394       function Component_Not_OK_For_Backend return Boolean is
5395          C      : Node_Id;
5396          Expr_Q : Node_Id;
5397
5398       begin
5399          if No (Comps) then
5400             return False;
5401          end if;
5402
5403          C := First (Comps);
5404          while Present (C) loop
5405             if Nkind (Expression (C)) = N_Qualified_Expression then
5406                Expr_Q := Expression (Expression (C));
5407             else
5408                Expr_Q := Expression (C);
5409             end if;
5410
5411             --  Return true if the aggregate has any associations for tagged
5412             --  components that may require tag adjustment.
5413
5414             --  These are cases where the source expression may have a tag that
5415             --  could differ from the component tag (e.g., can occur for type
5416             --  conversions and formal parameters). (Tag adjustment not needed
5417             --  if VM_Target because object tags are implicit in the machine.)
5418
5419             if Is_Tagged_Type (Etype (Expr_Q))
5420               and then (Nkind (Expr_Q) = N_Type_Conversion
5421                          or else (Is_Entity_Name (Expr_Q)
5422                                     and then
5423                                       Ekind (Entity (Expr_Q)) in Formal_Kind))
5424               and then Tagged_Type_Expansion
5425             then
5426                Static_Components := False;
5427                return True;
5428
5429             elsif Is_Delayed_Aggregate (Expr_Q) then
5430                Static_Components := False;
5431                return True;
5432
5433             elsif Possible_Bit_Aligned_Component (Expr_Q) then
5434                Static_Components := False;
5435                return True;
5436             end if;
5437
5438             if Is_Scalar_Type (Etype (Expr_Q)) then
5439                if not Compile_Time_Known_Value (Expr_Q) then
5440                   Static_Components := False;
5441                end if;
5442
5443             elsif Nkind (Expr_Q) /= N_Aggregate
5444               or else not Compile_Time_Known_Aggregate (Expr_Q)
5445             then
5446                Static_Components := False;
5447
5448                if Is_Private_Type (Etype (Expr_Q))
5449                  and then Has_Discriminants (Etype (Expr_Q))
5450                then
5451                   return True;
5452                end if;
5453             end if;
5454
5455             Next (C);
5456          end loop;
5457
5458          return False;
5459       end Component_Not_OK_For_Backend;
5460
5461       --  Remaining Expand_Record_Aggregate variables
5462
5463       Tag_Value : Node_Id;
5464       Comp      : Entity_Id;
5465       New_Comp  : Node_Id;
5466
5467    --  Start of processing for Expand_Record_Aggregate
5468
5469    begin
5470       --  If the aggregate is to be assigned to an atomic variable, we
5471       --  have to prevent a piecemeal assignment even if the aggregate
5472       --  is to be expanded. We create a temporary for the aggregate, and
5473       --  assign the temporary instead, so that the back end can generate
5474       --  an atomic move for it.
5475
5476       if Is_Atomic (Typ)
5477         and then Comes_From_Source (Parent (N))
5478         and then Is_Atomic_Aggregate (N, Typ)
5479       then
5480          return;
5481
5482       --  No special management required for aggregates used to initialize
5483       --  statically allocated dispatch tables
5484
5485       elsif Is_Static_Dispatch_Table_Aggregate (N) then
5486          return;
5487       end if;
5488
5489       --  Ada 2005 (AI-318-2): We need to convert to assignments if components
5490       --  are build-in-place function calls. This test could be more specific,
5491       --  but doing it for all inherently limited aggregates seems harmless.
5492       --  The assignments will turn into build-in-place function calls (see
5493       --  Make_Build_In_Place_Call_In_Assignment).
5494
5495       if Ada_Version >= Ada_05 and then Is_Inherently_Limited_Type (Typ) then
5496          Convert_To_Assignments (N, Typ);
5497
5498       --  Gigi doesn't handle properly temporaries of variable size
5499       --  so we generate it in the front-end
5500
5501       elsif not Size_Known_At_Compile_Time (Typ) then
5502          Convert_To_Assignments (N, Typ);
5503
5504       --  Temporaries for controlled aggregates need to be attached to a
5505       --  final chain in order to be properly finalized, so it has to
5506       --  be created in the front-end
5507
5508       elsif Is_Controlled (Typ)
5509         or else Has_Controlled_Component (Base_Type (Typ))
5510       then
5511          Convert_To_Assignments (N, Typ);
5512
5513          --  Ada 2005 (AI-287): In case of default initialized components we
5514          --  convert the aggregate into assignments.
5515
5516       elsif Has_Default_Init_Comps (N) then
5517          Convert_To_Assignments (N, Typ);
5518
5519       --  Check components
5520
5521       elsif Component_Not_OK_For_Backend then
5522          Convert_To_Assignments (N, Typ);
5523
5524       --  If an ancestor is private, some components are not inherited and
5525       --  we cannot expand into a record aggregate
5526
5527       elsif Has_Private_Ancestor (Typ) then
5528          Convert_To_Assignments (N, Typ);
5529
5530       --  ??? The following was done to compile fxacc00.ads in the ACVCs. Gigi
5531       --  is not able to handle the aggregate for Late_Request.
5532
5533       elsif Is_Tagged_Type (Typ) and then Has_Discriminants (Typ) then
5534          Convert_To_Assignments (N, Typ);
5535
5536       --  If the tagged types covers interface types we need to initialize all
5537       --  hidden components containing pointers to secondary dispatch tables.
5538
5539       elsif Is_Tagged_Type (Typ) and then Has_Interfaces (Typ) then
5540          Convert_To_Assignments (N, Typ);
5541
5542       --  If some components are mutable, the size of the aggregate component
5543       --  may be distinct from the default size of the type component, so
5544       --  we need to expand to insure that the back-end copies the proper
5545       --  size of the data.
5546
5547       elsif Has_Mutable_Components (Typ) then
5548          Convert_To_Assignments (N, Typ);
5549
5550       --  If the type involved has any non-bit aligned components, then we are
5551       --  not sure that the back end can handle this case correctly.
5552
5553       elsif Type_May_Have_Bit_Aligned_Components (Typ) then
5554          Convert_To_Assignments (N, Typ);
5555
5556       --  In all other cases, build a proper aggregate handlable by gigi
5557
5558       else
5559          if Nkind (N) = N_Aggregate then
5560
5561             --  If the aggregate is static and can be handled by the back-end,
5562             --  nothing left to do.
5563
5564             if Static_Components then
5565                Set_Compile_Time_Known_Aggregate (N);
5566                Set_Expansion_Delayed (N, False);
5567             end if;
5568          end if;
5569
5570          --  If no discriminants, nothing special to do
5571
5572          if not Has_Discriminants (Typ) then
5573             null;
5574
5575          --  Case of discriminants present
5576
5577          elsif Is_Derived_Type (Typ) then
5578
5579             --  For untagged types,  non-stored discriminants are replaced
5580             --  with stored discriminants, which are the ones that gigi uses
5581             --  to describe the type and its components.
5582
5583             Generate_Aggregate_For_Derived_Type : declare
5584                Constraints  : constant List_Id := New_List;
5585                First_Comp   : Node_Id;
5586                Discriminant : Entity_Id;
5587                Decl         : Node_Id;
5588                Num_Disc     : Int := 0;
5589                Num_Gird     : Int := 0;
5590
5591                procedure Prepend_Stored_Values (T : Entity_Id);
5592                --  Scan the list of stored discriminants of the type, and add
5593                --  their values to the aggregate being built.
5594
5595                ---------------------------
5596                -- Prepend_Stored_Values --
5597                ---------------------------
5598
5599                procedure Prepend_Stored_Values (T : Entity_Id) is
5600                begin
5601                   Discriminant := First_Stored_Discriminant (T);
5602                   while Present (Discriminant) loop
5603                      New_Comp :=
5604                        Make_Component_Association (Loc,
5605                          Choices    =>
5606                            New_List (New_Occurrence_Of (Discriminant, Loc)),
5607
5608                          Expression =>
5609                            New_Copy_Tree (
5610                              Get_Discriminant_Value (
5611                                  Discriminant,
5612                                  Typ,
5613                                  Discriminant_Constraint (Typ))));
5614
5615                      if No (First_Comp) then
5616                         Prepend_To (Component_Associations (N), New_Comp);
5617                      else
5618                         Insert_After (First_Comp, New_Comp);
5619                      end if;
5620
5621                      First_Comp := New_Comp;
5622                      Next_Stored_Discriminant (Discriminant);
5623                   end loop;
5624                end Prepend_Stored_Values;
5625
5626             --  Start of processing for Generate_Aggregate_For_Derived_Type
5627
5628             begin
5629                --  Remove the associations for the discriminant of derived type
5630
5631                First_Comp := First (Component_Associations (N));
5632                while Present (First_Comp) loop
5633                   Comp := First_Comp;
5634                   Next (First_Comp);
5635
5636                   if Ekind (Entity
5637                              (First (Choices (Comp)))) = E_Discriminant
5638                   then
5639                      Remove (Comp);
5640                      Num_Disc := Num_Disc + 1;
5641                   end if;
5642                end loop;
5643
5644                --  Insert stored discriminant associations in the correct
5645                --  order. If there are more stored discriminants than new
5646                --  discriminants, there is at least one new discriminant that
5647                --  constrains more than one of the stored discriminants. In
5648                --  this case we need to construct a proper subtype of the
5649                --  parent type, in order to supply values to all the
5650                --  components. Otherwise there is one-one correspondence
5651                --  between the constraints and the stored discriminants.
5652
5653                First_Comp := Empty;
5654
5655                Discriminant := First_Stored_Discriminant (Base_Type (Typ));
5656                while Present (Discriminant) loop
5657                   Num_Gird := Num_Gird + 1;
5658                   Next_Stored_Discriminant (Discriminant);
5659                end loop;
5660
5661                --  Case of more stored discriminants than new discriminants
5662
5663                if Num_Gird > Num_Disc then
5664
5665                   --  Create a proper subtype of the parent type, which is the
5666                   --  proper implementation type for the aggregate, and convert
5667                   --  it to the intended target type.
5668
5669                   Discriminant := First_Stored_Discriminant (Base_Type (Typ));
5670                   while Present (Discriminant) loop
5671                      New_Comp :=
5672                        New_Copy_Tree (
5673                          Get_Discriminant_Value (
5674                              Discriminant,
5675                              Typ,
5676                              Discriminant_Constraint (Typ)));
5677                      Append (New_Comp, Constraints);
5678                      Next_Stored_Discriminant (Discriminant);
5679                   end loop;
5680
5681                   Decl :=
5682                     Make_Subtype_Declaration (Loc,
5683                       Defining_Identifier =>
5684                          Make_Defining_Identifier (Loc,
5685                             New_Internal_Name ('T')),
5686                       Subtype_Indication =>
5687                         Make_Subtype_Indication (Loc,
5688                           Subtype_Mark =>
5689                             New_Occurrence_Of (Etype (Base_Type (Typ)), Loc),
5690                           Constraint =>
5691                             Make_Index_Or_Discriminant_Constraint
5692                               (Loc, Constraints)));
5693
5694                   Insert_Action (N, Decl);
5695                   Prepend_Stored_Values (Base_Type (Typ));
5696
5697                   Set_Etype (N, Defining_Identifier (Decl));
5698                   Set_Analyzed (N);
5699
5700                   Rewrite (N, Unchecked_Convert_To (Typ, N));
5701                   Analyze (N);
5702
5703                --  Case where we do not have fewer new discriminants than
5704                --  stored discriminants, so in this case we can simply use the
5705                --  stored discriminants of the subtype.
5706
5707                else
5708                   Prepend_Stored_Values (Typ);
5709                end if;
5710             end Generate_Aggregate_For_Derived_Type;
5711          end if;
5712
5713          if Is_Tagged_Type (Typ) then
5714
5715             --  The tagged case, _parent and _tag component must be created
5716
5717             --  Reset null_present unconditionally. tagged records always have
5718             --  at least one field (the tag or the parent)
5719
5720             Set_Null_Record_Present (N, False);
5721
5722             --  When the current aggregate comes from the expansion of an
5723             --  extension aggregate, the parent expr is replaced by an
5724             --  aggregate formed by selected components of this expr
5725
5726             if Present (Parent_Expr)
5727               and then Is_Empty_List (Comps)
5728             then
5729                Comp := First_Component_Or_Discriminant (Typ);
5730                while Present (Comp) loop
5731
5732                   --  Skip all expander-generated components
5733
5734                   if
5735                     not Comes_From_Source (Original_Record_Component (Comp))
5736                   then
5737                      null;
5738
5739                   else
5740                      New_Comp :=
5741                        Make_Selected_Component (Loc,
5742                          Prefix =>
5743                            Unchecked_Convert_To (Typ,
5744                              Duplicate_Subexpr (Parent_Expr, True)),
5745
5746                          Selector_Name => New_Occurrence_Of (Comp, Loc));
5747
5748                      Append_To (Comps,
5749                        Make_Component_Association (Loc,
5750                          Choices    =>
5751                            New_List (New_Occurrence_Of (Comp, Loc)),
5752                          Expression =>
5753                            New_Comp));
5754
5755                      Analyze_And_Resolve (New_Comp, Etype (Comp));
5756                   end if;
5757
5758                   Next_Component_Or_Discriminant (Comp);
5759                end loop;
5760             end if;
5761
5762             --  Compute the value for the Tag now, if the type is a root it
5763             --  will be included in the aggregate right away, otherwise it will
5764             --  be propagated to the parent aggregate
5765
5766             if Present (Orig_Tag) then
5767                Tag_Value := Orig_Tag;
5768             elsif not Tagged_Type_Expansion then
5769                Tag_Value := Empty;
5770             else
5771                Tag_Value :=
5772                  New_Occurrence_Of
5773                    (Node (First_Elmt (Access_Disp_Table (Typ))), Loc);
5774             end if;
5775
5776             --  For a derived type, an aggregate for the parent is formed with
5777             --  all the inherited components.
5778
5779             if Is_Derived_Type (Typ) then
5780
5781                declare
5782                   First_Comp   : Node_Id;
5783                   Parent_Comps : List_Id;
5784                   Parent_Aggr  : Node_Id;
5785                   Parent_Name  : Node_Id;
5786
5787                begin
5788                   --  Remove the inherited component association from the
5789                   --  aggregate and store them in the parent aggregate
5790
5791                   First_Comp := First (Component_Associations (N));
5792                   Parent_Comps := New_List;
5793                   while Present (First_Comp)
5794                     and then Scope (Original_Record_Component (
5795                             Entity (First (Choices (First_Comp))))) /= Base_Typ
5796                   loop
5797                      Comp := First_Comp;
5798                      Next (First_Comp);
5799                      Remove (Comp);
5800                      Append (Comp, Parent_Comps);
5801                   end loop;
5802
5803                   Parent_Aggr := Make_Aggregate (Loc,
5804                     Component_Associations => Parent_Comps);
5805                   Set_Etype (Parent_Aggr, Etype (Base_Type (Typ)));
5806
5807                   --  Find the _parent component
5808
5809                   Comp := First_Component (Typ);
5810                   while Chars (Comp) /= Name_uParent loop
5811                      Comp := Next_Component (Comp);
5812                   end loop;
5813
5814                   Parent_Name := New_Occurrence_Of (Comp, Loc);
5815
5816                   --  Insert the parent aggregate
5817
5818                   Prepend_To (Component_Associations (N),
5819                     Make_Component_Association (Loc,
5820                       Choices    => New_List (Parent_Name),
5821                       Expression => Parent_Aggr));
5822
5823                   --  Expand recursively the parent propagating the right Tag
5824
5825                   Expand_Record_Aggregate (
5826                     Parent_Aggr, Tag_Value, Parent_Expr);
5827                end;
5828
5829             --  For a root type, the tag component is added (unless compiling
5830             --  for the VMs, where tags are implicit).
5831
5832             elsif Tagged_Type_Expansion then
5833                declare
5834                   Tag_Name  : constant Node_Id :=
5835                                 New_Occurrence_Of
5836                                   (First_Tag_Component (Typ), Loc);
5837                   Typ_Tag   : constant Entity_Id := RTE (RE_Tag);
5838                   Conv_Node : constant Node_Id :=
5839                                 Unchecked_Convert_To (Typ_Tag, Tag_Value);
5840
5841                begin
5842                   Set_Etype (Conv_Node, Typ_Tag);
5843                   Prepend_To (Component_Associations (N),
5844                     Make_Component_Association (Loc,
5845                       Choices    => New_List (Tag_Name),
5846                       Expression => Conv_Node));
5847                end;
5848             end if;
5849          end if;
5850       end if;
5851
5852    end Expand_Record_Aggregate;
5853
5854    ----------------------------
5855    -- Has_Default_Init_Comps --
5856    ----------------------------
5857
5858    function Has_Default_Init_Comps (N : Node_Id) return Boolean is
5859       Comps : constant List_Id := Component_Associations (N);
5860       C     : Node_Id;
5861       Expr  : Node_Id;
5862    begin
5863       pragma Assert (Nkind_In (N, N_Aggregate, N_Extension_Aggregate));
5864
5865       if No (Comps) then
5866          return False;
5867       end if;
5868
5869       if Has_Self_Reference (N) then
5870          return True;
5871       end if;
5872
5873       --  Check if any direct component has default initialized components
5874
5875       C := First (Comps);
5876       while Present (C) loop
5877          if Box_Present (C) then
5878             return True;
5879          end if;
5880
5881          Next (C);
5882       end loop;
5883
5884       --  Recursive call in case of aggregate expression
5885
5886       C := First (Comps);
5887       while Present (C) loop
5888          Expr := Expression (C);
5889
5890          if Present (Expr)
5891            and then
5892              Nkind_In (Expr, N_Aggregate, N_Extension_Aggregate)
5893            and then Has_Default_Init_Comps (Expr)
5894          then
5895             return True;
5896          end if;
5897
5898          Next (C);
5899       end loop;
5900
5901       return False;
5902    end Has_Default_Init_Comps;
5903
5904    --------------------------
5905    -- Is_Delayed_Aggregate --
5906    --------------------------
5907
5908    function Is_Delayed_Aggregate (N : Node_Id) return Boolean is
5909       Node : Node_Id   := N;
5910       Kind : Node_Kind := Nkind (Node);
5911
5912    begin
5913       if Kind = N_Qualified_Expression then
5914          Node := Expression (Node);
5915          Kind := Nkind (Node);
5916       end if;
5917
5918       if Kind /= N_Aggregate and then Kind /= N_Extension_Aggregate then
5919          return False;
5920       else
5921          return Expansion_Delayed (Node);
5922       end if;
5923    end Is_Delayed_Aggregate;
5924
5925    ----------------------------------------
5926    -- Is_Static_Dispatch_Table_Aggregate --
5927    ----------------------------------------
5928
5929    function Is_Static_Dispatch_Table_Aggregate (N : Node_Id) return Boolean is
5930       Typ : constant Entity_Id := Base_Type (Etype (N));
5931
5932    begin
5933       return Static_Dispatch_Tables
5934         and then Tagged_Type_Expansion
5935         and then RTU_Loaded (Ada_Tags)
5936
5937          --  Avoid circularity when rebuilding the compiler
5938
5939         and then Cunit_Entity (Get_Source_Unit (N)) /= RTU_Entity (Ada_Tags)
5940         and then (Typ = RTE (RE_Dispatch_Table_Wrapper)
5941                     or else
5942                   Typ = RTE (RE_Address_Array)
5943                     or else
5944                   Typ = RTE (RE_Type_Specific_Data)
5945                     or else
5946                   Typ = RTE (RE_Tag_Table)
5947                     or else
5948                   (RTE_Available (RE_Interface_Data)
5949                      and then Typ = RTE (RE_Interface_Data))
5950                     or else
5951                   (RTE_Available (RE_Interfaces_Array)
5952                      and then Typ = RTE (RE_Interfaces_Array))
5953                     or else
5954                   (RTE_Available (RE_Interface_Data_Element)
5955                      and then Typ = RTE (RE_Interface_Data_Element)));
5956    end Is_Static_Dispatch_Table_Aggregate;
5957
5958    --------------------
5959    -- Late_Expansion --
5960    --------------------
5961
5962    function Late_Expansion
5963      (N      : Node_Id;
5964       Typ    : Entity_Id;
5965       Target : Node_Id;
5966       Flist  : Node_Id   := Empty;
5967       Obj    : Entity_Id := Empty) return List_Id
5968    is
5969    begin
5970       if Is_Record_Type (Etype (N)) then
5971          return Build_Record_Aggr_Code (N, Typ, Target, Flist, Obj);
5972
5973       else pragma Assert (Is_Array_Type (Etype (N)));
5974          return
5975            Build_Array_Aggr_Code
5976              (N           => N,
5977               Ctype       => Component_Type (Etype (N)),
5978               Index       => First_Index (Typ),
5979               Into        => Target,
5980               Scalar_Comp => Is_Scalar_Type (Component_Type (Typ)),
5981               Indices     => No_List,
5982               Flist       => Flist);
5983       end if;
5984    end Late_Expansion;
5985
5986    ----------------------------------
5987    -- Make_OK_Assignment_Statement --
5988    ----------------------------------
5989
5990    function Make_OK_Assignment_Statement
5991      (Sloc       : Source_Ptr;
5992       Name       : Node_Id;
5993       Expression : Node_Id) return Node_Id
5994    is
5995    begin
5996       Set_Assignment_OK (Name);
5997
5998       return Make_Assignment_Statement (Sloc, Name, Expression);
5999    end Make_OK_Assignment_Statement;
6000
6001    -----------------------
6002    -- Number_Of_Choices --
6003    -----------------------
6004
6005    function Number_Of_Choices (N : Node_Id) return Nat is
6006       Assoc  : Node_Id;
6007       Choice : Node_Id;
6008
6009       Nb_Choices : Nat := 0;
6010
6011    begin
6012       if Present (Expressions (N)) then
6013          return 0;
6014       end if;
6015
6016       Assoc := First (Component_Associations (N));
6017       while Present (Assoc) loop
6018          Choice := First (Choices (Assoc));
6019          while Present (Choice) loop
6020             if Nkind (Choice) /= N_Others_Choice then
6021                Nb_Choices := Nb_Choices + 1;
6022             end if;
6023
6024             Next (Choice);
6025          end loop;
6026
6027          Next (Assoc);
6028       end loop;
6029
6030       return Nb_Choices;
6031    end Number_Of_Choices;
6032
6033    ------------------------------------
6034    -- Packed_Array_Aggregate_Handled --
6035    ------------------------------------
6036
6037    --  The current version of this procedure will handle at compile time
6038    --  any array aggregate that meets these conditions:
6039
6040    --    One dimensional, bit packed
6041    --    Underlying packed type is modular type
6042    --    Bounds are within 32-bit Int range
6043    --    All bounds and values are static
6044
6045    function Packed_Array_Aggregate_Handled (N : Node_Id) return Boolean is
6046       Loc  : constant Source_Ptr := Sloc (N);
6047       Typ  : constant Entity_Id  := Etype (N);
6048       Ctyp : constant Entity_Id  := Component_Type (Typ);
6049
6050       Not_Handled : exception;
6051       --  Exception raised if this aggregate cannot be handled
6052
6053    begin
6054       --  For now, handle only one dimensional bit packed arrays
6055
6056       if not Is_Bit_Packed_Array (Typ)
6057         or else Number_Dimensions (Typ) > 1
6058         or else not Is_Modular_Integer_Type (Packed_Array_Type (Typ))
6059       then
6060          return False;
6061       end if;
6062
6063       if not Is_Scalar_Type (Component_Type (Typ))
6064         and then Has_Non_Standard_Rep (Component_Type (Typ))
6065       then
6066          return False;
6067       end if;
6068
6069       declare
6070          Csiz  : constant Nat := UI_To_Int (Component_Size (Typ));
6071
6072          Lo : Node_Id;
6073          Hi : Node_Id;
6074          --  Bounds of index type
6075
6076          Lob : Uint;
6077          Hib : Uint;
6078          --  Values of bounds if compile time known
6079
6080          function Get_Component_Val (N : Node_Id) return Uint;
6081          --  Given a expression value N of the component type Ctyp, returns a
6082          --  value of Csiz (component size) bits representing this value. If
6083          --  the value is non-static or any other reason exists why the value
6084          --  cannot be returned, then Not_Handled is raised.
6085
6086          -----------------------
6087          -- Get_Component_Val --
6088          -----------------------
6089
6090          function Get_Component_Val (N : Node_Id) return Uint is
6091             Val  : Uint;
6092
6093          begin
6094             --  We have to analyze the expression here before doing any further
6095             --  processing here. The analysis of such expressions is deferred
6096             --  till expansion to prevent some problems of premature analysis.
6097
6098             Analyze_And_Resolve (N, Ctyp);
6099
6100             --  Must have a compile time value. String literals have to be
6101             --  converted into temporaries as well, because they cannot easily
6102             --  be converted into their bit representation.
6103
6104             if not Compile_Time_Known_Value (N)
6105               or else Nkind (N) = N_String_Literal
6106             then
6107                raise Not_Handled;
6108             end if;
6109
6110             Val := Expr_Rep_Value (N);
6111
6112             --  Adjust for bias, and strip proper number of bits
6113
6114             if Has_Biased_Representation (Ctyp) then
6115                Val := Val - Expr_Value (Type_Low_Bound (Ctyp));
6116             end if;
6117
6118             return Val mod Uint_2 ** Csiz;
6119          end Get_Component_Val;
6120
6121       --  Here we know we have a one dimensional bit packed array
6122
6123       begin
6124          Get_Index_Bounds (First_Index (Typ), Lo, Hi);
6125
6126          --  Cannot do anything if bounds are dynamic
6127
6128          if not Compile_Time_Known_Value (Lo)
6129               or else
6130             not Compile_Time_Known_Value (Hi)
6131          then
6132             return False;
6133          end if;
6134
6135          --  Or are silly out of range of int bounds
6136
6137          Lob := Expr_Value (Lo);
6138          Hib := Expr_Value (Hi);
6139
6140          if not UI_Is_In_Int_Range (Lob)
6141               or else
6142             not UI_Is_In_Int_Range (Hib)
6143          then
6144             return False;
6145          end if;
6146
6147          --  At this stage we have a suitable aggregate for handling at compile
6148          --  time (the only remaining checks are that the values of expressions
6149          --  in the aggregate are compile time known (check is performed by
6150          --  Get_Component_Val), and that any subtypes or ranges are statically
6151          --  known.
6152
6153          --  If the aggregate is not fully positional at this stage, then
6154          --  convert it to positional form. Either this will fail, in which
6155          --  case we can do nothing, or it will succeed, in which case we have
6156          --  succeeded in handling the aggregate, or it will stay an aggregate,
6157          --  in which case we have failed to handle this case.
6158
6159          if Present (Component_Associations (N)) then
6160             Convert_To_Positional
6161              (N, Max_Others_Replicate => 64, Handle_Bit_Packed => True);
6162             return Nkind (N) /= N_Aggregate;
6163          end if;
6164
6165          --  Otherwise we are all positional, so convert to proper value
6166
6167          declare
6168             Lov : constant Int := UI_To_Int (Lob);
6169             Hiv : constant Int := UI_To_Int (Hib);
6170
6171             Len : constant Nat := Int'Max (0, Hiv - Lov + 1);
6172             --  The length of the array (number of elements)
6173
6174             Aggregate_Val : Uint;
6175             --  Value of aggregate. The value is set in the low order bits of
6176             --  this value. For the little-endian case, the values are stored
6177             --  from low-order to high-order and for the big-endian case the
6178             --  values are stored from high-order to low-order. Note that gigi
6179             --  will take care of the conversions to left justify the value in
6180             --  the big endian case (because of left justified modular type
6181             --  processing), so we do not have to worry about that here.
6182
6183             Lit : Node_Id;
6184             --  Integer literal for resulting constructed value
6185
6186             Shift : Nat;
6187             --  Shift count from low order for next value
6188
6189             Incr : Int;
6190             --  Shift increment for loop
6191
6192             Expr : Node_Id;
6193             --  Next expression from positional parameters of aggregate
6194
6195          begin
6196             --  For little endian, we fill up the low order bits of the target
6197             --  value. For big endian we fill up the high order bits of the
6198             --  target value (which is a left justified modular value).
6199
6200             if Bytes_Big_Endian xor Debug_Flag_8 then
6201                Shift := Csiz * (Len - 1);
6202                Incr  := -Csiz;
6203             else
6204                Shift := 0;
6205                Incr  := +Csiz;
6206             end if;
6207
6208             --  Loop to set the values
6209
6210             if Len = 0 then
6211                Aggregate_Val := Uint_0;
6212             else
6213                Expr := First (Expressions (N));
6214                Aggregate_Val := Get_Component_Val (Expr) * Uint_2 ** Shift;
6215
6216                for J in 2 .. Len loop
6217                   Shift := Shift + Incr;
6218                   Next (Expr);
6219                   Aggregate_Val :=
6220                     Aggregate_Val + Get_Component_Val (Expr) * Uint_2 ** Shift;
6221                end loop;
6222             end if;
6223
6224             --  Now we can rewrite with the proper value
6225
6226             Lit :=
6227               Make_Integer_Literal (Loc,
6228                 Intval => Aggregate_Val);
6229             Set_Print_In_Hex (Lit);
6230
6231             --  Construct the expression using this literal. Note that it is
6232             --  important to qualify the literal with its proper modular type
6233             --  since universal integer does not have the required range and
6234             --  also this is a left justified modular type, which is important
6235             --  in the big-endian case.
6236
6237             Rewrite (N,
6238               Unchecked_Convert_To (Typ,
6239                 Make_Qualified_Expression (Loc,
6240                   Subtype_Mark =>
6241                     New_Occurrence_Of (Packed_Array_Type (Typ), Loc),
6242                   Expression   => Lit)));
6243
6244             Analyze_And_Resolve (N, Typ);
6245             return True;
6246          end;
6247       end;
6248
6249    exception
6250       when Not_Handled =>
6251          return False;
6252    end Packed_Array_Aggregate_Handled;
6253
6254    ----------------------------
6255    -- Has_Mutable_Components --
6256    ----------------------------
6257
6258    function Has_Mutable_Components (Typ : Entity_Id) return Boolean is
6259       Comp : Entity_Id;
6260
6261    begin
6262       Comp := First_Component (Typ);
6263       while Present (Comp) loop
6264          if Is_Record_Type (Etype (Comp))
6265            and then Has_Discriminants (Etype (Comp))
6266            and then not Is_Constrained (Etype (Comp))
6267          then
6268             return True;
6269          end if;
6270
6271          Next_Component (Comp);
6272       end loop;
6273
6274       return False;
6275    end Has_Mutable_Components;
6276
6277    ------------------------------
6278    -- Initialize_Discriminants --
6279    ------------------------------
6280
6281    procedure Initialize_Discriminants (N : Node_Id; Typ : Entity_Id) is
6282       Loc  : constant Source_Ptr := Sloc (N);
6283       Bas  : constant Entity_Id  := Base_Type (Typ);
6284       Par  : constant Entity_Id  := Etype (Bas);
6285       Decl : constant Node_Id    := Parent (Par);
6286       Ref  : Node_Id;
6287
6288    begin
6289       if Is_Tagged_Type (Bas)
6290         and then Is_Derived_Type (Bas)
6291         and then Has_Discriminants (Par)
6292         and then Has_Discriminants (Bas)
6293         and then Number_Discriminants (Bas) /= Number_Discriminants (Par)
6294         and then Nkind (Decl) = N_Full_Type_Declaration
6295         and then Nkind (Type_Definition (Decl)) = N_Record_Definition
6296         and then Present
6297           (Variant_Part (Component_List (Type_Definition (Decl))))
6298         and then Nkind (N) /= N_Extension_Aggregate
6299       then
6300
6301          --   Call init proc to set discriminants.
6302          --   There should eventually be a special procedure for this ???
6303
6304          Ref := New_Reference_To (Defining_Identifier (N), Loc);
6305          Insert_Actions_After (N,
6306            Build_Initialization_Call (Sloc (N), Ref, Typ));
6307       end if;
6308    end Initialize_Discriminants;
6309
6310    ----------------
6311    -- Must_Slide --
6312    ----------------
6313
6314    function Must_Slide
6315      (Obj_Type : Entity_Id;
6316       Typ      : Entity_Id) return Boolean
6317    is
6318       L1, L2, H1, H2 : Node_Id;
6319    begin
6320       --  No sliding if the type of the object is not established yet, if it is
6321       --  an unconstrained type whose actual subtype comes from the aggregate,
6322       --  or if the two types are identical.
6323
6324       if not Is_Array_Type (Obj_Type) then
6325          return False;
6326
6327       elsif not Is_Constrained (Obj_Type) then
6328          return False;
6329
6330       elsif Typ = Obj_Type then
6331          return False;
6332
6333       else
6334          --  Sliding can only occur along the first dimension
6335
6336          Get_Index_Bounds (First_Index (Typ), L1, H1);
6337          Get_Index_Bounds (First_Index (Obj_Type), L2, H2);
6338
6339          if not Is_Static_Expression (L1)
6340            or else not Is_Static_Expression (L2)
6341            or else not Is_Static_Expression (H1)
6342            or else not Is_Static_Expression (H2)
6343          then
6344             return False;
6345          else
6346             return Expr_Value (L1) /= Expr_Value (L2)
6347               or else Expr_Value (H1) /= Expr_Value (H2);
6348          end if;
6349       end if;
6350    end Must_Slide;
6351
6352    ---------------------------
6353    -- Safe_Slice_Assignment --
6354    ---------------------------
6355
6356    function Safe_Slice_Assignment (N : Node_Id) return Boolean is
6357       Loc        : constant Source_Ptr := Sloc (Parent (N));
6358       Pref       : constant Node_Id    := Prefix (Name (Parent (N)));
6359       Range_Node : constant Node_Id    := Discrete_Range (Name (Parent (N)));
6360       Expr       : Node_Id;
6361       L_J        : Entity_Id;
6362       L_Iter     : Node_Id;
6363       L_Body     : Node_Id;
6364       Stat       : Node_Id;
6365
6366    begin
6367       --  Generate: for J in Range loop Pref (J) := Expr; end loop;
6368
6369       if Comes_From_Source (N)
6370         and then No (Expressions (N))
6371         and then Nkind (First (Choices (First (Component_Associations (N)))))
6372                    = N_Others_Choice
6373       then
6374          Expr :=
6375            Expression (First (Component_Associations (N)));
6376          L_J := Make_Defining_Identifier (Loc, New_Internal_Name ('J'));
6377
6378          L_Iter :=
6379            Make_Iteration_Scheme (Loc,
6380              Loop_Parameter_Specification =>
6381                Make_Loop_Parameter_Specification
6382                  (Loc,
6383                   Defining_Identifier         => L_J,
6384                   Discrete_Subtype_Definition => Relocate_Node (Range_Node)));
6385
6386          L_Body :=
6387            Make_Assignment_Statement (Loc,
6388               Name =>
6389                 Make_Indexed_Component (Loc,
6390                   Prefix      => Relocate_Node (Pref),
6391                   Expressions => New_List (New_Occurrence_Of (L_J, Loc))),
6392                Expression => Relocate_Node (Expr));
6393
6394          --  Construct the final loop
6395
6396          Stat :=
6397            Make_Implicit_Loop_Statement
6398              (Node             => Parent (N),
6399               Identifier       => Empty,
6400               Iteration_Scheme => L_Iter,
6401               Statements       => New_List (L_Body));
6402
6403          --  Set type of aggregate to be type of lhs in assignment,
6404          --  to suppress redundant length checks.
6405
6406          Set_Etype (N, Etype (Name (Parent (N))));
6407
6408          Rewrite (Parent (N), Stat);
6409          Analyze (Parent (N));
6410          return True;
6411
6412       else
6413          return False;
6414       end if;
6415    end Safe_Slice_Assignment;
6416
6417    ---------------------
6418    -- Sort_Case_Table --
6419    ---------------------
6420
6421    procedure Sort_Case_Table (Case_Table : in out Case_Table_Type) is
6422       L : constant Int := Case_Table'First;
6423       U : constant Int := Case_Table'Last;
6424       K : Int;
6425       J : Int;
6426       T : Case_Bounds;
6427
6428    begin
6429       K := L;
6430       while K /= U loop
6431          T := Case_Table (K + 1);
6432
6433          J := K + 1;
6434          while J /= L
6435            and then Expr_Value (Case_Table (J - 1).Choice_Lo) >
6436                     Expr_Value (T.Choice_Lo)
6437          loop
6438             Case_Table (J) := Case_Table (J - 1);
6439             J := J - 1;
6440          end loop;
6441
6442          Case_Table (J) := T;
6443          K := K + 1;
6444       end loop;
6445    end Sort_Case_Table;
6446
6447    ----------------------------
6448    -- Static_Array_Aggregate --
6449    ----------------------------
6450
6451    function Static_Array_Aggregate (N : Node_Id) return Boolean is
6452       Bounds : constant Node_Id := Aggregate_Bounds (N);
6453
6454       Typ       : constant Entity_Id := Etype (N);
6455       Comp_Type : constant Entity_Id := Component_Type (Typ);
6456       Agg       : Node_Id;
6457       Expr      : Node_Id;
6458       Lo        : Node_Id;
6459       Hi        : Node_Id;
6460
6461    begin
6462       if Is_Tagged_Type (Typ)
6463         or else Is_Controlled (Typ)
6464         or else Is_Packed (Typ)
6465       then
6466          return False;
6467       end if;
6468
6469       if Present (Bounds)
6470         and then Nkind (Bounds) = N_Range
6471         and then Nkind (Low_Bound  (Bounds)) = N_Integer_Literal
6472         and then Nkind (High_Bound (Bounds)) = N_Integer_Literal
6473       then
6474          Lo := Low_Bound  (Bounds);
6475          Hi := High_Bound (Bounds);
6476
6477          if No (Component_Associations (N)) then
6478
6479             --  Verify that all components are static integers
6480
6481             Expr := First (Expressions (N));
6482             while Present (Expr) loop
6483                if Nkind (Expr) /= N_Integer_Literal then
6484                   return False;
6485                end if;
6486
6487                Next (Expr);
6488             end loop;
6489
6490             return True;
6491
6492          else
6493             --  We allow only a single named association, either a static
6494             --  range or an others_clause, with a static expression.
6495
6496             Expr := First (Component_Associations (N));
6497
6498             if Present (Expressions (N)) then
6499                return False;
6500
6501             elsif Present (Next (Expr)) then
6502                return False;
6503
6504             elsif Present (Next (First (Choices (Expr)))) then
6505                return False;
6506
6507             else
6508                --  The aggregate is static if all components are literals,
6509                --  or else all its components are static aggregates for the
6510                --  component type. We also limit the size of a static aggregate
6511                --  to prevent runaway static expressions.
6512
6513                if Is_Array_Type (Comp_Type)
6514                  or else Is_Record_Type (Comp_Type)
6515                then
6516                   if Nkind (Expression (Expr)) /= N_Aggregate
6517                     or else
6518                       not Compile_Time_Known_Aggregate (Expression (Expr))
6519                   then
6520                      return False;
6521                   end if;
6522
6523                elsif Nkind (Expression (Expr)) /= N_Integer_Literal then
6524                   return False;
6525
6526                elsif not Aggr_Size_OK (N, Typ) then
6527                   return False;
6528                end if;
6529
6530                --  Create a positional aggregate with the right number of
6531                --  copies of the expression.
6532
6533                Agg := Make_Aggregate (Sloc (N), New_List, No_List);
6534
6535                for I in UI_To_Int (Intval (Lo)) .. UI_To_Int (Intval (Hi))
6536                loop
6537                   Append_To
6538                     (Expressions (Agg), New_Copy (Expression (Expr)));
6539
6540                   --  The copied expression must be analyzed and resolved.
6541                   --  Besides setting the type, this ensures that static
6542                   --  expressions are appropriately marked as such.
6543
6544                   Analyze_And_Resolve
6545                     (Last (Expressions (Agg)), Component_Type (Typ));
6546                end loop;
6547
6548                Set_Aggregate_Bounds (Agg, Bounds);
6549                Set_Etype (Agg, Typ);
6550                Set_Analyzed (Agg);
6551                Rewrite (N, Agg);
6552                Set_Compile_Time_Known_Aggregate (N);
6553
6554                return True;
6555             end if;
6556          end if;
6557
6558       else
6559          return False;
6560       end if;
6561    end Static_Array_Aggregate;
6562
6563 end Exp_Aggr;