OSDN Git Service

2009-07-13 Ed Schonberg <schonberg@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                                 New_Internal_Name ('T'));
2980
2981                      SubD : constant Node_Id :=
2982                               Make_Subtype_Declaration (Loc,
2983                                 Defining_Identifier =>
2984                                   SubE,
2985                                 Subtype_Indication  =>
2986                                   Make_Subtype_Indication (Loc,
2987                                     Subtype_Mark => New_Reference_To (
2988                                       Etype (Comp_Type), Loc),
2989                                     Constraint =>
2990                                       Make_Index_Or_Discriminant_Constraint (
2991                                         Loc, Constraints => New_List (
2992                                           New_Copy_Tree (Aggregate_Bounds (
2993                                             Expr_Q))))));
2994
2995                      --  Create a temporary array of the above subtype which
2996                      --  will be used to capture the aggregate assignments.
2997
2998                      TmpE : constant Entity_Id :=
2999                               Make_Temporary (Loc, New_Internal_Name ('A'), N);
3000
3001                      TmpD : constant Node_Id :=
3002                               Make_Object_Declaration (Loc,
3003                                 Defining_Identifier => TmpE,
3004                                 Object_Definition   =>
3005                                   New_Reference_To (SubE, Loc));
3006
3007                   begin
3008                      Set_No_Initialization (TmpD);
3009                      Append_To (L, SubD);
3010                      Append_To (L, TmpD);
3011
3012                      --  Expand aggregate into assignments to the temp array
3013
3014                      Append_List_To (L,
3015                        Late_Expansion (Expr_Q, Comp_Type,
3016                          New_Reference_To (TmpE, Loc), Internal_Final_List));
3017
3018                      --  Slide
3019
3020                      Append_To (L,
3021                        Make_Assignment_Statement (Loc,
3022                          Name       => New_Copy_Tree (Comp_Expr),
3023                          Expression => New_Reference_To (TmpE, Loc)));
3024
3025                      --  Do not pass the original aggregate to Gigi as is,
3026                      --  since it will potentially clobber the front or the end
3027                      --  of the array. Setting the expression to empty is safe
3028                      --  since all aggregates are expanded into assignments.
3029
3030                      if Present (Obj) then
3031                         Set_Expression (Parent (Obj), Empty);
3032                      end if;
3033                   end;
3034
3035                --  Normal case (sliding not required)
3036
3037                else
3038                   Append_List_To (L,
3039                     Late_Expansion (Expr_Q, Comp_Type, Comp_Expr,
3040                       Internal_Final_List));
3041                end if;
3042
3043             --  Expr_Q is not delayed aggregate
3044
3045             else
3046                if Has_Discriminants (Typ) then
3047                   Replace_Discriminants (Expr_Q);
3048                end if;
3049
3050                Instr :=
3051                  Make_OK_Assignment_Statement (Loc,
3052                    Name       => Comp_Expr,
3053                    Expression => Expr_Q);
3054
3055                Set_No_Ctrl_Actions (Instr);
3056                Append_To (L, Instr);
3057
3058                --  Adjust the tag if tagged (because of possible view
3059                --  conversions), unless compiling for a VM where tags are
3060                --  implicit.
3061
3062                --    tmp.comp._tag := comp_typ'tag;
3063
3064                if Is_Tagged_Type (Comp_Type)
3065                  and then Tagged_Type_Expansion
3066                then
3067                   Instr :=
3068                     Make_OK_Assignment_Statement (Loc,
3069                       Name =>
3070                         Make_Selected_Component (Loc,
3071                           Prefix =>  New_Copy_Tree (Comp_Expr),
3072                           Selector_Name =>
3073                             New_Reference_To
3074                               (First_Tag_Component (Comp_Type), Loc)),
3075
3076                       Expression =>
3077                         Unchecked_Convert_To (RTE (RE_Tag),
3078                           New_Reference_To
3079                             (Node (First_Elmt (Access_Disp_Table (Comp_Type))),
3080                              Loc)));
3081
3082                   Append_To (L, Instr);
3083                end if;
3084
3085                --  Adjust and Attach the component to the proper controller
3086
3087                --     Adjust (tmp.comp);
3088                --     Attach_To_Final_List (tmp.comp,
3089                --       comp_typ (tmp)._record_controller.f)
3090
3091                if Needs_Finalization (Comp_Type)
3092                  and then not Is_Limited_Type (Comp_Type)
3093                then
3094                   Append_List_To (L,
3095                     Make_Adjust_Call (
3096                       Ref         => New_Copy_Tree (Comp_Expr),
3097                       Typ         => Comp_Type,
3098                       Flist_Ref   => Internal_Final_List,
3099                       With_Attach => Make_Integer_Literal (Loc, 1)));
3100                end if;
3101             end if;
3102
3103          --  ???
3104
3105          elsif Ekind (Selector) = E_Discriminant
3106            and then Nkind (N) /= N_Extension_Aggregate
3107            and then Nkind (Parent (N)) = N_Component_Association
3108            and then Is_Constrained (Typ)
3109          then
3110             --  We must check that the discriminant value imposed by the
3111             --  context is the same as the value given in the subaggregate,
3112             --  because after the expansion into assignments there is no
3113             --  record on which to perform a regular discriminant check.
3114
3115             declare
3116                D_Val : Elmt_Id;
3117                Disc  : Entity_Id;
3118
3119             begin
3120                D_Val := First_Elmt (Discriminant_Constraint (Typ));
3121                Disc  := First_Discriminant (Typ);
3122                while Chars (Disc) /= Chars (Selector) loop
3123                   Next_Discriminant (Disc);
3124                   Next_Elmt (D_Val);
3125                end loop;
3126
3127                pragma Assert (Present (D_Val));
3128
3129                --  This check cannot performed for components that are
3130                --  constrained by a current instance, because this is not a
3131                --  value that can be compared with the actual constraint.
3132
3133                if Nkind (Node (D_Val)) /= N_Attribute_Reference
3134                  or else not Is_Entity_Name (Prefix (Node (D_Val)))
3135                  or else not Is_Type (Entity (Prefix (Node (D_Val))))
3136                then
3137                   Append_To (L,
3138                   Make_Raise_Constraint_Error (Loc,
3139                     Condition =>
3140                       Make_Op_Ne (Loc,
3141                         Left_Opnd => New_Copy_Tree (Node (D_Val)),
3142                         Right_Opnd => Expression (Comp)),
3143                       Reason => CE_Discriminant_Check_Failed));
3144
3145                else
3146                   --  Find self-reference in previous discriminant assignment,
3147                   --  and replace with proper expression.
3148
3149                   declare
3150                      Ass : Node_Id;
3151
3152                   begin
3153                      Ass := First (L);
3154                      while Present (Ass) loop
3155                         if Nkind (Ass) = N_Assignment_Statement
3156                           and then Nkind (Name (Ass)) = N_Selected_Component
3157                           and then Chars (Selector_Name (Name (Ass))) =
3158                              Chars (Disc)
3159                         then
3160                            Set_Expression
3161                              (Ass, New_Copy_Tree (Expression (Comp)));
3162                            exit;
3163                         end if;
3164                         Next (Ass);
3165                      end loop;
3166                   end;
3167                end if;
3168             end;
3169          end if;
3170
3171          Next (Comp);
3172       end loop;
3173
3174       --  If the type is tagged, the tag needs to be initialized (unless
3175       --  compiling for the Java VM where tags are implicit). It is done
3176       --  late in the initialization process because in some cases, we call
3177       --  the init proc of an ancestor which will not leave out the right tag
3178
3179       if Ancestor_Is_Expression then
3180          null;
3181
3182       --  For CPP types we generated a call to the C++ default constructor
3183       --  before the components have been initialized to ensure the proper
3184       --  initialization of the _Tag component (see above).
3185
3186       elsif Is_CPP_Class (Typ) then
3187          null;
3188
3189       elsif Is_Tagged_Type (Typ) and then Tagged_Type_Expansion then
3190          Instr :=
3191            Make_OK_Assignment_Statement (Loc,
3192              Name =>
3193                Make_Selected_Component (Loc,
3194                  Prefix => New_Copy_Tree (Target),
3195                  Selector_Name =>
3196                    New_Reference_To
3197                      (First_Tag_Component (Base_Type (Typ)), Loc)),
3198
3199              Expression =>
3200                Unchecked_Convert_To (RTE (RE_Tag),
3201                  New_Reference_To
3202                    (Node (First_Elmt (Access_Disp_Table (Base_Type (Typ)))),
3203                     Loc)));
3204
3205          Append_To (L, Instr);
3206
3207          --  Ada 2005 (AI-251): If the tagged type has been derived from
3208          --  abstract interfaces we must also initialize the tags of the
3209          --  secondary dispatch tables.
3210
3211          if Has_Interfaces (Base_Type (Typ)) then
3212             Init_Secondary_Tags
3213               (Typ        => Base_Type (Typ),
3214                Target     => Target,
3215                Stmts_List => L);
3216          end if;
3217       end if;
3218
3219       --  If the controllers have not been initialized yet (by lack of non-
3220       --  discriminant components), let's do it now.
3221
3222       Gen_Ctrl_Actions_For_Aggr;
3223
3224       return L;
3225    end Build_Record_Aggr_Code;
3226
3227    -------------------------------
3228    -- Convert_Aggr_In_Allocator --
3229    -------------------------------
3230
3231    procedure Convert_Aggr_In_Allocator
3232      (Alloc :  Node_Id;
3233       Decl  :  Node_Id;
3234       Aggr  :  Node_Id)
3235    is
3236       Loc  : constant Source_Ptr := Sloc (Aggr);
3237       Typ  : constant Entity_Id  := Etype (Aggr);
3238       Temp : constant Entity_Id  := Defining_Identifier (Decl);
3239
3240       Occ  : constant Node_Id :=
3241                Unchecked_Convert_To (Typ,
3242                  Make_Explicit_Dereference (Loc,
3243                    New_Reference_To (Temp, Loc)));
3244
3245       Access_Type : constant Entity_Id := Etype (Temp);
3246       Flist       : Entity_Id;
3247
3248    begin
3249       --  If the allocator is for an access discriminant, there is no
3250       --  finalization list for the anonymous access type, and the eventual
3251       --  finalization of the object is handled through the coextension
3252       --  mechanism. If the enclosing object is not dynamically allocated,
3253       --  the access discriminant is itself placed on the stack. Otherwise,
3254       --  some other finalization list is used (see exp_ch4.adb).
3255
3256       --  Decl has been inserted in the code ahead of the allocator, using
3257       --  Insert_Actions. We use Insert_Actions below as well, to ensure that
3258       --  subsequent insertions are done in the proper order. Using (for
3259       --  example) Insert_Actions_After to place the expanded aggregate
3260       --  immediately after Decl may lead to out-of-order references if the
3261       --  allocator has generated a finalization list, as when the designated
3262       --  object is controlled and there is an open transient scope.
3263
3264       if Ekind (Access_Type) = E_Anonymous_Access_Type
3265         and then Nkind (Associated_Node_For_Itype (Access_Type)) =
3266                                               N_Discriminant_Specification
3267       then
3268          Flist := Empty;
3269       else
3270          Flist := Find_Final_List (Access_Type);
3271       end if;
3272
3273       if Is_Array_Type (Typ) then
3274          Convert_Array_Aggr_In_Allocator (Decl, Aggr, Occ);
3275
3276       elsif Has_Default_Init_Comps (Aggr) then
3277          declare
3278             L          : constant List_Id := New_List;
3279             Init_Stmts : List_Id;
3280
3281          begin
3282             Init_Stmts :=
3283               Late_Expansion
3284                 (Aggr, Typ, Occ,
3285                  Flist,
3286                  Associated_Final_Chain (Base_Type (Access_Type)));
3287
3288             --  ??? Dubious actual for Obj: expect 'the original object being
3289             --  initialized'
3290
3291             if Has_Task (Typ) then
3292                Build_Task_Allocate_Block_With_Init_Stmts (L, Aggr, Init_Stmts);
3293                Insert_Actions (Alloc, L);
3294             else
3295                Insert_Actions (Alloc, Init_Stmts);
3296             end if;
3297          end;
3298
3299       else
3300          Insert_Actions (Alloc,
3301            Late_Expansion
3302              (Aggr, Typ, Occ, Flist,
3303               Associated_Final_Chain (Base_Type (Access_Type))));
3304
3305          --  ??? Dubious actual for Obj: expect 'the original object being
3306          --  initialized'
3307
3308       end if;
3309    end Convert_Aggr_In_Allocator;
3310
3311    --------------------------------
3312    -- Convert_Aggr_In_Assignment --
3313    --------------------------------
3314
3315    procedure Convert_Aggr_In_Assignment (N : Node_Id) is
3316       Aggr : Node_Id            := Expression (N);
3317       Typ  : constant Entity_Id := Etype (Aggr);
3318       Occ  : constant Node_Id   := New_Copy_Tree (Name (N));
3319
3320    begin
3321       if Nkind (Aggr) = N_Qualified_Expression then
3322          Aggr := Expression (Aggr);
3323       end if;
3324
3325       Insert_Actions_After (N,
3326         Late_Expansion
3327           (Aggr, Typ, Occ,
3328            Find_Final_List (Typ, New_Copy_Tree (Occ))));
3329    end Convert_Aggr_In_Assignment;
3330
3331    ---------------------------------
3332    -- Convert_Aggr_In_Object_Decl --
3333    ---------------------------------
3334
3335    procedure Convert_Aggr_In_Object_Decl (N : Node_Id) is
3336       Obj  : constant Entity_Id  := Defining_Identifier (N);
3337       Aggr : Node_Id             := Expression (N);
3338       Loc  : constant Source_Ptr := Sloc (Aggr);
3339       Typ  : constant Entity_Id  := Etype (Aggr);
3340       Occ  : constant Node_Id    := New_Occurrence_Of (Obj, Loc);
3341
3342       function Discriminants_Ok return Boolean;
3343       --  If the object type is constrained, the discriminants in the
3344       --  aggregate must be checked against the discriminants of the subtype.
3345       --  This cannot be done using Apply_Discriminant_Checks because after
3346       --  expansion there is no aggregate left to check.
3347
3348       ----------------------
3349       -- Discriminants_Ok --
3350       ----------------------
3351
3352       function Discriminants_Ok return Boolean is
3353          Cond  : Node_Id := Empty;
3354          Check : Node_Id;
3355          D     : Entity_Id;
3356          Disc1 : Elmt_Id;
3357          Disc2 : Elmt_Id;
3358          Val1  : Node_Id;
3359          Val2  : Node_Id;
3360
3361       begin
3362          D := First_Discriminant (Typ);
3363          Disc1 := First_Elmt (Discriminant_Constraint (Typ));
3364          Disc2 := First_Elmt (Discriminant_Constraint (Etype (Obj)));
3365          while Present (Disc1) and then Present (Disc2) loop
3366             Val1 := Node (Disc1);
3367             Val2 := Node (Disc2);
3368
3369             if not Is_OK_Static_Expression (Val1)
3370               or else not Is_OK_Static_Expression (Val2)
3371             then
3372                Check := Make_Op_Ne (Loc,
3373                  Left_Opnd  => Duplicate_Subexpr (Val1),
3374                  Right_Opnd => Duplicate_Subexpr (Val2));
3375
3376                if No (Cond) then
3377                   Cond := Check;
3378
3379                else
3380                   Cond := Make_Or_Else (Loc,
3381                     Left_Opnd => Cond,
3382                     Right_Opnd => Check);
3383                end if;
3384
3385             elsif Expr_Value (Val1) /= Expr_Value (Val2) then
3386                Apply_Compile_Time_Constraint_Error (Aggr,
3387                  Msg    => "incorrect value for discriminant&?",
3388                  Reason => CE_Discriminant_Check_Failed,
3389                  Ent    => D);
3390                return False;
3391             end if;
3392
3393             Next_Discriminant (D);
3394             Next_Elmt (Disc1);
3395             Next_Elmt (Disc2);
3396          end loop;
3397
3398          --  If any discriminant constraint is non-static, emit a check
3399
3400          if Present (Cond) then
3401             Insert_Action (N,
3402               Make_Raise_Constraint_Error (Loc,
3403                 Condition => Cond,
3404                 Reason => CE_Discriminant_Check_Failed));
3405          end if;
3406
3407          return True;
3408       end Discriminants_Ok;
3409
3410    --  Start of processing for Convert_Aggr_In_Object_Decl
3411
3412    begin
3413       Set_Assignment_OK (Occ);
3414
3415       if Nkind (Aggr) = N_Qualified_Expression then
3416          Aggr := Expression (Aggr);
3417       end if;
3418
3419       if Has_Discriminants (Typ)
3420         and then Typ /= Etype (Obj)
3421         and then Is_Constrained (Etype (Obj))
3422         and then not Discriminants_Ok
3423       then
3424          return;
3425       end if;
3426
3427       --  If the context is an extended return statement, it has its own
3428       --  finalization machinery (i.e. works like a transient scope) and
3429       --  we do not want to create an additional one, because objects on
3430       --  the finalization list of the return must be moved to the caller's
3431       --  finalization list to complete the return.
3432
3433       --  However, if the aggregate is limited, it is built in place, and the
3434       --  controlled components are not assigned to intermediate temporaries
3435       --  so there is no need for a transient scope in this case either.
3436
3437       if Requires_Transient_Scope (Typ)
3438         and then Ekind (Current_Scope) /= E_Return_Statement
3439         and then not Is_Limited_Type (Typ)
3440       then
3441          Establish_Transient_Scope
3442            (Aggr,
3443             Sec_Stack =>
3444               Is_Controlled (Typ) or else Has_Controlled_Component (Typ));
3445       end if;
3446
3447       Insert_Actions_After (N, Late_Expansion (Aggr, Typ, Occ, Obj => Obj));
3448       Set_No_Initialization (N);
3449       Initialize_Discriminants (N, Typ);
3450    end Convert_Aggr_In_Object_Decl;
3451
3452    -------------------------------------
3453    -- Convert_Array_Aggr_In_Allocator --
3454    -------------------------------------
3455
3456    procedure Convert_Array_Aggr_In_Allocator
3457      (Decl   : Node_Id;
3458       Aggr   : Node_Id;
3459       Target : Node_Id)
3460    is
3461       Aggr_Code : List_Id;
3462       Typ       : constant Entity_Id := Etype (Aggr);
3463       Ctyp      : constant Entity_Id := Component_Type (Typ);
3464
3465    begin
3466       --  The target is an explicit dereference of the allocated object.
3467       --  Generate component assignments to it, as for an aggregate that
3468       --  appears on the right-hand side of an assignment statement.
3469
3470       Aggr_Code :=
3471         Build_Array_Aggr_Code (Aggr,
3472           Ctype       => Ctyp,
3473           Index       => First_Index (Typ),
3474           Into        => Target,
3475           Scalar_Comp => Is_Scalar_Type (Ctyp));
3476
3477       Insert_Actions_After (Decl, Aggr_Code);
3478    end Convert_Array_Aggr_In_Allocator;
3479
3480    ----------------------------
3481    -- Convert_To_Assignments --
3482    ----------------------------
3483
3484    procedure Convert_To_Assignments (N : Node_Id; Typ : Entity_Id) is
3485       Loc  : constant Source_Ptr := Sloc (N);
3486       T    : Entity_Id;
3487       Temp : Entity_Id;
3488
3489       Instr       : Node_Id;
3490       Target_Expr : Node_Id;
3491       Parent_Kind : Node_Kind;
3492       Unc_Decl    : Boolean := False;
3493       Parent_Node : Node_Id;
3494
3495    begin
3496       pragma Assert (not Is_Static_Dispatch_Table_Aggregate (N));
3497       pragma Assert (Is_Record_Type (Typ));
3498
3499       Parent_Node := Parent (N);
3500       Parent_Kind := Nkind (Parent_Node);
3501
3502       if Parent_Kind = N_Qualified_Expression then
3503
3504          --  Check if we are in a unconstrained declaration because in this
3505          --  case the current delayed expansion mechanism doesn't work when
3506          --  the declared object size depend on the initializing expr.
3507
3508          begin
3509             Parent_Node := Parent (Parent_Node);
3510             Parent_Kind := Nkind (Parent_Node);
3511
3512             if Parent_Kind = N_Object_Declaration then
3513                Unc_Decl :=
3514                  not Is_Entity_Name (Object_Definition (Parent_Node))
3515                    or else Has_Discriminants
3516                              (Entity (Object_Definition (Parent_Node)))
3517                    or else Is_Class_Wide_Type
3518                              (Entity (Object_Definition (Parent_Node)));
3519             end if;
3520          end;
3521       end if;
3522
3523       --  Just set the Delay flag in the cases where the transformation will be
3524       --  done top down from above.
3525
3526       if False
3527
3528          --  Internal aggregate (transformed when expanding the parent)
3529
3530          or else Parent_Kind = N_Aggregate
3531          or else Parent_Kind = N_Extension_Aggregate
3532          or else Parent_Kind = N_Component_Association
3533
3534          --  Allocator (see Convert_Aggr_In_Allocator)
3535
3536          or else Parent_Kind = N_Allocator
3537
3538          --  Object declaration (see Convert_Aggr_In_Object_Decl)
3539
3540          or else (Parent_Kind = N_Object_Declaration and then not Unc_Decl)
3541
3542          --  Safe assignment (see Convert_Aggr_Assignments). So far only the
3543          --  assignments in init procs are taken into account.
3544
3545          or else (Parent_Kind = N_Assignment_Statement
3546                    and then Inside_Init_Proc)
3547
3548          --  (Ada 2005) An inherently limited type in a return statement,
3549          --  which will be handled in a build-in-place fashion, and may be
3550          --  rewritten as an extended return and have its own finalization
3551          --  machinery. In the case of a simple return, the aggregate needs
3552          --  to be delayed until the scope for the return statement has been
3553          --  created, so that any finalization chain will be associated with
3554          --  that scope. For extended returns, we delay expansion to avoid the
3555          --  creation of an unwanted transient scope that could result in
3556          --  premature finalization of the return object (which is built in
3557          --  in place within the caller's scope).
3558
3559          or else
3560            (Is_Inherently_Limited_Type (Typ)
3561              and then
3562                (Nkind (Parent (Parent_Node)) = N_Extended_Return_Statement
3563                  or else Nkind (Parent_Node) = N_Simple_Return_Statement))
3564       then
3565          Set_Expansion_Delayed (N);
3566          return;
3567       end if;
3568
3569       if Requires_Transient_Scope (Typ) then
3570          Establish_Transient_Scope
3571            (N, Sec_Stack =>
3572                  Is_Controlled (Typ) or else Has_Controlled_Component (Typ));
3573       end if;
3574
3575       --  If the aggregate is non-limited, create a temporary. If it is limited
3576       --  and the context is an assignment, this is a subaggregate for an
3577       --  enclosing aggregate being expanded. It must be built in place, so use
3578       --  the target of the current assignment.
3579
3580       if Is_Limited_Type (Typ)
3581         and then Nkind (Parent (N)) = N_Assignment_Statement
3582       then
3583          Target_Expr := New_Copy_Tree (Name (Parent (N)));
3584          Insert_Actions
3585            (Parent (N), Build_Record_Aggr_Code (N, Typ, Target_Expr));
3586          Rewrite (Parent (N), Make_Null_Statement (Loc));
3587
3588       else
3589          Temp := Make_Temporary (Loc, New_Internal_Name ('A'), N);
3590
3591          --  If the type inherits unknown discriminants, use the view with
3592          --  known discriminants if available.
3593
3594          if Has_Unknown_Discriminants (Typ)
3595             and then Present (Underlying_Record_View (Typ))
3596          then
3597             T := Underlying_Record_View (Typ);
3598          else
3599             T := Typ;
3600          end if;
3601
3602          Instr :=
3603            Make_Object_Declaration (Loc,
3604              Defining_Identifier => Temp,
3605              Object_Definition   => New_Occurrence_Of (T, Loc));
3606
3607          Set_No_Initialization (Instr);
3608          Insert_Action (N, Instr);
3609          Initialize_Discriminants (Instr, T);
3610          Target_Expr := New_Occurrence_Of (Temp, Loc);
3611          Insert_Actions (N, Build_Record_Aggr_Code (N, T, Target_Expr));
3612          Rewrite (N, New_Occurrence_Of (Temp, Loc));
3613          Analyze_And_Resolve (N, T);
3614       end if;
3615    end Convert_To_Assignments;
3616
3617    ---------------------------
3618    -- Convert_To_Positional --
3619    ---------------------------
3620
3621    procedure Convert_To_Positional
3622      (N                    : Node_Id;
3623       Max_Others_Replicate : Nat     := 5;
3624       Handle_Bit_Packed    : Boolean := False)
3625    is
3626       Typ : constant Entity_Id := Etype (N);
3627
3628       Static_Components : Boolean := True;
3629
3630       procedure Check_Static_Components;
3631       --  Check whether all components of the aggregate are compile-time known
3632       --  values, and can be passed as is to the back-end without further
3633       --  expansion.
3634
3635       function Flatten
3636         (N   : Node_Id;
3637          Ix  : Node_Id;
3638          Ixb : Node_Id) return Boolean;
3639       --  Convert the aggregate into a purely positional form if possible. On
3640       --  entry the bounds of all dimensions are known to be static, and the
3641       --  total number of components is safe enough to expand.
3642
3643       function Is_Flat (N : Node_Id; Dims : Int) return Boolean;
3644       --  Return True iff the array N is flat (which is not rivial in the case
3645       --  of multidimensionsl aggregates).
3646
3647       -----------------------------
3648       -- Check_Static_Components --
3649       -----------------------------
3650
3651       procedure Check_Static_Components is
3652          Expr : Node_Id;
3653
3654       begin
3655          Static_Components := True;
3656
3657          if Nkind (N) = N_String_Literal then
3658             null;
3659
3660          elsif Present (Expressions (N)) then
3661             Expr := First (Expressions (N));
3662             while Present (Expr) loop
3663                if Nkind (Expr) /= N_Aggregate
3664                  or else not Compile_Time_Known_Aggregate (Expr)
3665                  or else Expansion_Delayed (Expr)
3666                then
3667                   Static_Components := False;
3668                   exit;
3669                end if;
3670
3671                Next (Expr);
3672             end loop;
3673          end if;
3674
3675          if Nkind (N) = N_Aggregate
3676            and then  Present (Component_Associations (N))
3677          then
3678             Expr := First (Component_Associations (N));
3679             while Present (Expr) loop
3680                if Nkind (Expression (Expr)) = N_Integer_Literal then
3681                   null;
3682
3683                elsif Nkind (Expression (Expr)) /= N_Aggregate
3684                  or else
3685                    not Compile_Time_Known_Aggregate (Expression (Expr))
3686                  or else Expansion_Delayed (Expression (Expr))
3687                then
3688                   Static_Components := False;
3689                   exit;
3690                end if;
3691
3692                Next (Expr);
3693             end loop;
3694          end if;
3695       end Check_Static_Components;
3696
3697       -------------
3698       -- Flatten --
3699       -------------
3700
3701       function Flatten
3702         (N   : Node_Id;
3703          Ix  : Node_Id;
3704          Ixb : Node_Id) return Boolean
3705       is
3706          Loc : constant Source_Ptr := Sloc (N);
3707          Blo : constant Node_Id    := Type_Low_Bound (Etype (Ixb));
3708          Lo  : constant Node_Id    := Type_Low_Bound (Etype (Ix));
3709          Hi  : constant Node_Id    := Type_High_Bound (Etype (Ix));
3710          Lov : Uint;
3711          Hiv : Uint;
3712
3713       begin
3714          if Nkind (Original_Node (N)) = N_String_Literal then
3715             return True;
3716          end if;
3717
3718          if not Compile_Time_Known_Value (Lo)
3719            or else not Compile_Time_Known_Value (Hi)
3720          then
3721             return False;
3722          end if;
3723
3724          Lov := Expr_Value (Lo);
3725          Hiv := Expr_Value (Hi);
3726
3727          if Hiv < Lov
3728            or else not Compile_Time_Known_Value (Blo)
3729          then
3730             return False;
3731          end if;
3732
3733          --  Determine if set of alternatives is suitable for conversion and
3734          --  build an array containing the values in sequence.
3735
3736          declare
3737             Vals : array (UI_To_Int (Lov) .. UI_To_Int (Hiv))
3738                      of Node_Id := (others => Empty);
3739             --  The values in the aggregate sorted appropriately
3740
3741             Vlist : List_Id;
3742             --  Same data as Vals in list form
3743
3744             Rep_Count : Nat;
3745             --  Used to validate Max_Others_Replicate limit
3746
3747             Elmt   : Node_Id;
3748             Num    : Int := UI_To_Int (Lov);
3749             Choice : Node_Id;
3750             Lo, Hi : Node_Id;
3751
3752          begin
3753             if Present (Expressions (N)) then
3754                Elmt := First (Expressions (N));
3755                while Present (Elmt) loop
3756                   if Nkind (Elmt) = N_Aggregate
3757                     and then Present (Next_Index (Ix))
3758                     and then
3759                       not Flatten (Elmt, Next_Index (Ix), Next_Index (Ixb))
3760                   then
3761                      return False;
3762                   end if;
3763
3764                   Vals (Num) := Relocate_Node (Elmt);
3765                   Num := Num + 1;
3766
3767                   Next (Elmt);
3768                end loop;
3769             end if;
3770
3771             if No (Component_Associations (N)) then
3772                return True;
3773             end if;
3774
3775             Elmt := First (Component_Associations (N));
3776
3777             if Nkind (Expression (Elmt)) = N_Aggregate then
3778                if Present (Next_Index (Ix))
3779                  and then
3780                    not Flatten
3781                         (Expression (Elmt), Next_Index (Ix), Next_Index (Ixb))
3782                then
3783                   return False;
3784                end if;
3785             end if;
3786
3787             Component_Loop : while Present (Elmt) loop
3788                Choice := First (Choices (Elmt));
3789                Choice_Loop : while Present (Choice) loop
3790
3791                   --  If we have an others choice, fill in the missing elements
3792                   --  subject to the limit established by Max_Others_Replicate.
3793
3794                   if Nkind (Choice) = N_Others_Choice then
3795                      Rep_Count := 0;
3796
3797                      for J in Vals'Range loop
3798                         if No (Vals (J)) then
3799                            Vals (J) := New_Copy_Tree (Expression (Elmt));
3800                            Rep_Count := Rep_Count + 1;
3801
3802                            --  Check for maximum others replication. Note that
3803                            --  we skip this test if either of the restrictions
3804                            --  No_Elaboration_Code or No_Implicit_Loops is
3805                            --  active, if this is a preelaborable unit or a
3806                            --  predefined unit. This ensures that predefined
3807                            --  units get the same level of constant folding in
3808                            --  Ada 95 and Ada 05, where their categorization
3809                            --  has changed.
3810
3811                            declare
3812                               P : constant Entity_Id :=
3813                                     Cunit_Entity (Current_Sem_Unit);
3814
3815                            begin
3816                               --  Check if duplication OK and if so continue
3817                               --  processing.
3818
3819                               if Restriction_Active (No_Elaboration_Code)
3820                                 or else Restriction_Active (No_Implicit_Loops)
3821                                 or else Is_Preelaborated (P)
3822                                 or else (Ekind (P) = E_Package_Body
3823                                           and then
3824                                             Is_Preelaborated (Spec_Entity (P)))
3825                                 or else
3826                                   Is_Predefined_File_Name
3827                                     (Unit_File_Name (Get_Source_Unit (P)))
3828                               then
3829                                  null;
3830
3831                               --  If duplication not OK, then we return False
3832                               --  if the replication count is too high
3833
3834                               elsif Rep_Count > Max_Others_Replicate then
3835                                  return False;
3836
3837                               --  Continue on if duplication not OK, but the
3838                               --  replication count is not excessive.
3839
3840                               else
3841                                  null;
3842                               end if;
3843                            end;
3844                         end if;
3845                      end loop;
3846
3847                      exit Component_Loop;
3848
3849                   --  Case of a subtype mark
3850
3851                   elsif Nkind (Choice) = N_Identifier
3852                     and then Is_Type (Entity (Choice))
3853                   then
3854                      Lo := Type_Low_Bound  (Etype (Choice));
3855                      Hi := Type_High_Bound (Etype (Choice));
3856
3857                   --  Case of subtype indication
3858
3859                   elsif Nkind (Choice) = N_Subtype_Indication then
3860                      Lo := Low_Bound  (Range_Expression (Constraint (Choice)));
3861                      Hi := High_Bound (Range_Expression (Constraint (Choice)));
3862
3863                   --  Case of a range
3864
3865                   elsif Nkind (Choice) = N_Range then
3866                      Lo := Low_Bound (Choice);
3867                      Hi := High_Bound (Choice);
3868
3869                   --  Normal subexpression case
3870
3871                   else pragma Assert (Nkind (Choice) in N_Subexpr);
3872                      if not Compile_Time_Known_Value (Choice) then
3873                         return False;
3874
3875                      else
3876                         Vals (UI_To_Int (Expr_Value (Choice))) :=
3877                           New_Copy_Tree (Expression (Elmt));
3878                         goto Continue;
3879                      end if;
3880                   end if;
3881
3882                   --  Range cases merge with Lo,Hi said
3883
3884                   if not Compile_Time_Known_Value (Lo)
3885                        or else
3886                      not Compile_Time_Known_Value (Hi)
3887                   then
3888                      return False;
3889                   else
3890                      for J in UI_To_Int (Expr_Value (Lo)) ..
3891                               UI_To_Int (Expr_Value (Hi))
3892                      loop
3893                         Vals (J) := New_Copy_Tree (Expression (Elmt));
3894                      end loop;
3895                   end if;
3896
3897                <<Continue>>
3898                   Next (Choice);
3899                end loop Choice_Loop;
3900
3901                Next (Elmt);
3902             end loop Component_Loop;
3903
3904             --  If we get here the conversion is possible
3905
3906             Vlist := New_List;
3907             for J in Vals'Range loop
3908                Append (Vals (J), Vlist);
3909             end loop;
3910
3911             Rewrite (N, Make_Aggregate (Loc, Expressions => Vlist));
3912             Set_Aggregate_Bounds (N, Aggregate_Bounds (Original_Node (N)));
3913             return True;
3914          end;
3915       end Flatten;
3916
3917       -------------
3918       -- Is_Flat --
3919       -------------
3920
3921       function Is_Flat (N : Node_Id; Dims : Int) return Boolean is
3922          Elmt : Node_Id;
3923
3924       begin
3925          if Dims = 0 then
3926             return True;
3927
3928          elsif Nkind (N) = N_Aggregate then
3929             if Present (Component_Associations (N)) then
3930                return False;
3931
3932             else
3933                Elmt := First (Expressions (N));
3934                while Present (Elmt) loop
3935                   if not Is_Flat (Elmt, Dims - 1) then
3936                      return False;
3937                   end if;
3938
3939                   Next (Elmt);
3940                end loop;
3941
3942                return True;
3943             end if;
3944          else
3945             return True;
3946          end if;
3947       end Is_Flat;
3948
3949    --  Start of processing for Convert_To_Positional
3950
3951    begin
3952       --  Ada 2005 (AI-287): Do not convert in case of default initialized
3953       --  components because in this case will need to call the corresponding
3954       --  IP procedure.
3955
3956       if Has_Default_Init_Comps (N) then
3957          return;
3958       end if;
3959
3960       if Is_Flat (N, Number_Dimensions (Typ)) then
3961          return;
3962       end if;
3963
3964       if Is_Bit_Packed_Array (Typ)
3965         and then not Handle_Bit_Packed
3966       then
3967          return;
3968       end if;
3969
3970       --  Do not convert to positional if controlled components are involved
3971       --  since these require special processing
3972
3973       if Has_Controlled_Component (Typ) then
3974          return;
3975       end if;
3976
3977       Check_Static_Components;
3978
3979       --  If the size is known, or all the components are static, try to
3980       --  build a fully positional aggregate.
3981
3982       --  The size of the type  may not be known for an aggregate with
3983       --  discriminated array components, but if the components are static
3984       --  it is still possible to verify statically that the length is
3985       --  compatible with the upper bound of the type, and therefore it is
3986       --  worth flattening such aggregates as well.
3987
3988       --  For now the back-end expands these aggregates into individual
3989       --  assignments to the target anyway, but it is conceivable that
3990       --  it will eventually be able to treat such aggregates statically???
3991
3992       if Aggr_Size_OK (N, Typ)
3993         and then Flatten (N, First_Index (Typ), First_Index (Base_Type (Typ)))
3994       then
3995          if Static_Components then
3996             Set_Compile_Time_Known_Aggregate (N);
3997             Set_Expansion_Delayed (N, False);
3998          end if;
3999
4000          Analyze_And_Resolve (N, Typ);
4001       end if;
4002    end Convert_To_Positional;
4003
4004    ----------------------------
4005    -- Expand_Array_Aggregate --
4006    ----------------------------
4007
4008    --  Array aggregate expansion proceeds as follows:
4009
4010    --  1. If requested we generate code to perform all the array aggregate
4011    --     bound checks, specifically
4012
4013    --         (a) Check that the index range defined by aggregate bounds is
4014    --             compatible with corresponding index subtype.
4015
4016    --         (b) If an others choice is present check that no aggregate
4017    --             index is outside the bounds of the index constraint.
4018
4019    --         (c) For multidimensional arrays make sure that all subaggregates
4020    --             corresponding to the same dimension have the same bounds.
4021
4022    --  2. Check for packed array aggregate which can be converted to a
4023    --     constant so that the aggregate disappeares completely.
4024
4025    --  3. Check case of nested aggregate. Generally nested aggregates are
4026    --     handled during the processing of the parent aggregate.
4027
4028    --  4. Check if the aggregate can be statically processed. If this is the
4029    --     case pass it as is to Gigi. Note that a necessary condition for
4030    --     static processing is that the aggregate be fully positional.
4031
4032    --  5. If in place aggregate expansion is possible (i.e. no need to create
4033    --     a temporary) then mark the aggregate as such and return. Otherwise
4034    --     create a new temporary and generate the appropriate initialization
4035    --     code.
4036
4037    procedure Expand_Array_Aggregate (N : Node_Id) is
4038       Loc : constant Source_Ptr := Sloc (N);
4039
4040       Typ  : constant Entity_Id := Etype (N);
4041       Ctyp : constant Entity_Id := Component_Type (Typ);
4042       --  Typ is the correct constrained array subtype of the aggregate
4043       --  Ctyp is the corresponding component type.
4044
4045       Aggr_Dimension : constant Pos := Number_Dimensions (Typ);
4046       --  Number of aggregate index dimensions
4047
4048       Aggr_Low  : array (1 .. Aggr_Dimension) of Node_Id;
4049       Aggr_High : array (1 .. Aggr_Dimension) of Node_Id;
4050       --  Low and High bounds of the constraint for each aggregate index
4051
4052       Aggr_Index_Typ : array (1 .. Aggr_Dimension) of Entity_Id;
4053       --  The type of each index
4054
4055       Maybe_In_Place_OK : Boolean;
4056       --  If the type is neither controlled nor packed and the aggregate
4057       --  is the expression in an assignment, assignment in place may be
4058       --  possible, provided other conditions are met on the LHS.
4059
4060       Others_Present : array (1 .. Aggr_Dimension) of Boolean :=
4061                          (others => False);
4062       --  If Others_Present (J) is True, then there is an others choice
4063       --  in one of the sub-aggregates of N at dimension J.
4064
4065       procedure Build_Constrained_Type (Positional : Boolean);
4066       --  If the subtype is not static or unconstrained, build a constrained
4067       --  type using the computable sizes of the aggregate and its sub-
4068       --  aggregates.
4069
4070       procedure Check_Bounds (Aggr_Bounds : Node_Id; Index_Bounds : Node_Id);
4071       --  Checks that the bounds of Aggr_Bounds are within the bounds defined
4072       --  by Index_Bounds.
4073
4074       procedure Check_Same_Aggr_Bounds (Sub_Aggr : Node_Id; Dim : Pos);
4075       --  Checks that in a multi-dimensional array aggregate all subaggregates
4076       --  corresponding to the same dimension have the same bounds.
4077       --  Sub_Aggr is an array sub-aggregate. Dim is the dimension
4078       --  corresponding to the sub-aggregate.
4079
4080       procedure Compute_Others_Present (Sub_Aggr : Node_Id; Dim : Pos);
4081       --  Computes the values of array Others_Present. Sub_Aggr is the
4082       --  array sub-aggregate we start the computation from. Dim is the
4083       --  dimension corresponding to the sub-aggregate.
4084
4085       function Has_Address_Clause (D : Node_Id) return Boolean;
4086       --  If the aggregate is the expression in an object declaration, it
4087       --  cannot be expanded in place. This function does a lookahead in the
4088       --  current declarative part to find an address clause for the object
4089       --  being declared.
4090
4091       function In_Place_Assign_OK return Boolean;
4092       --  Simple predicate to determine whether an aggregate assignment can
4093       --  be done in place, because none of the new values can depend on the
4094       --  components of the target of the assignment.
4095
4096       procedure Others_Check (Sub_Aggr : Node_Id; Dim : Pos);
4097       --  Checks that if an others choice is present in any sub-aggregate no
4098       --  aggregate index is outside the bounds of the index constraint.
4099       --  Sub_Aggr is an array sub-aggregate. Dim is the dimension
4100       --  corresponding to the sub-aggregate.
4101
4102       ----------------------------
4103       -- Build_Constrained_Type --
4104       ----------------------------
4105
4106       procedure Build_Constrained_Type (Positional : Boolean) is
4107          Loc      : constant Source_Ptr := Sloc (N);
4108          Agg_Type : Entity_Id;
4109          Comp     : Node_Id;
4110          Decl     : Node_Id;
4111          Typ      : constant Entity_Id := Etype (N);
4112          Indices  : constant List_Id   := New_List;
4113          Num      : Int;
4114          Sub_Agg  : Node_Id;
4115
4116       begin
4117          Agg_Type :=
4118            Make_Defining_Identifier (
4119              Loc, New_Internal_Name ('A'));
4120
4121          --  If the aggregate is purely positional, all its subaggregates
4122          --  have the same size. We collect the dimensions from the first
4123          --  subaggregate at each level.
4124
4125          if Positional then
4126             Sub_Agg := N;
4127
4128             for D in 1 .. Number_Dimensions (Typ) loop
4129                Sub_Agg := First (Expressions (Sub_Agg));
4130
4131                Comp := Sub_Agg;
4132                Num := 0;
4133                while Present (Comp) loop
4134                   Num := Num + 1;
4135                   Next (Comp);
4136                end loop;
4137
4138                Append (
4139                  Make_Range (Loc,
4140                    Low_Bound => Make_Integer_Literal (Loc, 1),
4141                    High_Bound =>
4142                           Make_Integer_Literal (Loc, Num)),
4143                  Indices);
4144             end loop;
4145
4146          else
4147             --  We know the aggregate type is unconstrained and the aggregate
4148             --  is not processable by the back end, therefore not necessarily
4149             --  positional. Retrieve each dimension bounds (computed earlier).
4150             --  earlier.
4151
4152             for D in 1 .. Number_Dimensions (Typ) loop
4153                Append (
4154                  Make_Range (Loc,
4155                     Low_Bound  => Aggr_Low  (D),
4156                     High_Bound => Aggr_High (D)),
4157                  Indices);
4158             end loop;
4159          end if;
4160
4161          Decl :=
4162            Make_Full_Type_Declaration (Loc,
4163                Defining_Identifier => Agg_Type,
4164                Type_Definition =>
4165                  Make_Constrained_Array_Definition (Loc,
4166                    Discrete_Subtype_Definitions => Indices,
4167                    Component_Definition =>
4168                      Make_Component_Definition (Loc,
4169                        Aliased_Present => False,
4170                        Subtype_Indication =>
4171                          New_Occurrence_Of (Component_Type (Typ), Loc))));
4172
4173          Insert_Action (N, Decl);
4174          Analyze (Decl);
4175          Set_Etype (N, Agg_Type);
4176          Set_Is_Itype (Agg_Type);
4177          Freeze_Itype (Agg_Type, N);
4178       end Build_Constrained_Type;
4179
4180       ------------------
4181       -- Check_Bounds --
4182       ------------------
4183
4184       procedure Check_Bounds (Aggr_Bounds : Node_Id; Index_Bounds : Node_Id) is
4185          Aggr_Lo : Node_Id;
4186          Aggr_Hi : Node_Id;
4187
4188          Ind_Lo  : Node_Id;
4189          Ind_Hi  : Node_Id;
4190
4191          Cond    : Node_Id := Empty;
4192
4193       begin
4194          Get_Index_Bounds (Aggr_Bounds, Aggr_Lo, Aggr_Hi);
4195          Get_Index_Bounds (Index_Bounds, Ind_Lo, Ind_Hi);
4196
4197          --  Generate the following test:
4198          --
4199          --    [constraint_error when
4200          --      Aggr_Lo <= Aggr_Hi and then
4201          --        (Aggr_Lo < Ind_Lo or else Aggr_Hi > Ind_Hi)]
4202
4203          --  As an optimization try to see if some tests are trivially vacuous
4204          --  because we are comparing an expression against itself.
4205
4206          if Aggr_Lo = Ind_Lo and then Aggr_Hi = Ind_Hi then
4207             Cond := Empty;
4208
4209          elsif Aggr_Hi = Ind_Hi then
4210             Cond :=
4211               Make_Op_Lt (Loc,
4212                 Left_Opnd  => Duplicate_Subexpr_Move_Checks (Aggr_Lo),
4213                 Right_Opnd => Duplicate_Subexpr_Move_Checks (Ind_Lo));
4214
4215          elsif Aggr_Lo = Ind_Lo then
4216             Cond :=
4217               Make_Op_Gt (Loc,
4218                 Left_Opnd  => Duplicate_Subexpr_Move_Checks (Aggr_Hi),
4219                 Right_Opnd => Duplicate_Subexpr_Move_Checks (Ind_Hi));
4220
4221          else
4222             Cond :=
4223               Make_Or_Else (Loc,
4224                 Left_Opnd =>
4225                   Make_Op_Lt (Loc,
4226                     Left_Opnd  => Duplicate_Subexpr_Move_Checks (Aggr_Lo),
4227                     Right_Opnd => Duplicate_Subexpr_Move_Checks (Ind_Lo)),
4228
4229                 Right_Opnd =>
4230                   Make_Op_Gt (Loc,
4231                     Left_Opnd  => Duplicate_Subexpr (Aggr_Hi),
4232                     Right_Opnd => Duplicate_Subexpr (Ind_Hi)));
4233          end if;
4234
4235          if Present (Cond) then
4236             Cond :=
4237               Make_And_Then (Loc,
4238                 Left_Opnd =>
4239                   Make_Op_Le (Loc,
4240                     Left_Opnd  => Duplicate_Subexpr_Move_Checks (Aggr_Lo),
4241                     Right_Opnd => Duplicate_Subexpr_Move_Checks (Aggr_Hi)),
4242
4243                 Right_Opnd => Cond);
4244
4245             Set_Analyzed (Left_Opnd  (Left_Opnd (Cond)), False);
4246             Set_Analyzed (Right_Opnd (Left_Opnd (Cond)), False);
4247             Insert_Action (N,
4248               Make_Raise_Constraint_Error (Loc,
4249                 Condition => Cond,
4250                 Reason    => CE_Length_Check_Failed));
4251          end if;
4252       end Check_Bounds;
4253
4254       ----------------------------
4255       -- Check_Same_Aggr_Bounds --
4256       ----------------------------
4257
4258       procedure Check_Same_Aggr_Bounds (Sub_Aggr : Node_Id; Dim : Pos) is
4259          Sub_Lo : constant Node_Id := Low_Bound (Aggregate_Bounds (Sub_Aggr));
4260          Sub_Hi : constant Node_Id := High_Bound (Aggregate_Bounds (Sub_Aggr));
4261          --  The bounds of this specific sub-aggregate
4262
4263          Aggr_Lo : constant Node_Id := Aggr_Low (Dim);
4264          Aggr_Hi : constant Node_Id := Aggr_High (Dim);
4265          --  The bounds of the aggregate for this dimension
4266
4267          Ind_Typ : constant Entity_Id := Aggr_Index_Typ (Dim);
4268          --  The index type for this dimension.xxx
4269
4270          Cond  : Node_Id := Empty;
4271          Assoc : Node_Id;
4272          Expr  : Node_Id;
4273
4274       begin
4275          --  If index checks are on generate the test
4276
4277          --    [constraint_error when
4278          --      Aggr_Lo /= Sub_Lo or else Aggr_Hi /= Sub_Hi]
4279
4280          --  As an optimization try to see if some tests are trivially vacuos
4281          --  because we are comparing an expression against itself. Also for
4282          --  the first dimension the test is trivially vacuous because there
4283          --  is just one aggregate for dimension 1.
4284
4285          if Index_Checks_Suppressed (Ind_Typ) then
4286             Cond := Empty;
4287
4288          elsif Dim = 1
4289            or else (Aggr_Lo = Sub_Lo and then Aggr_Hi = Sub_Hi)
4290          then
4291             Cond := Empty;
4292
4293          elsif Aggr_Hi = Sub_Hi then
4294             Cond :=
4295               Make_Op_Ne (Loc,
4296                 Left_Opnd  => Duplicate_Subexpr_Move_Checks (Aggr_Lo),
4297                 Right_Opnd => Duplicate_Subexpr_Move_Checks (Sub_Lo));
4298
4299          elsif Aggr_Lo = Sub_Lo then
4300             Cond :=
4301               Make_Op_Ne (Loc,
4302                 Left_Opnd  => Duplicate_Subexpr_Move_Checks (Aggr_Hi),
4303                 Right_Opnd => Duplicate_Subexpr_Move_Checks (Sub_Hi));
4304
4305          else
4306             Cond :=
4307               Make_Or_Else (Loc,
4308                 Left_Opnd =>
4309                   Make_Op_Ne (Loc,
4310                     Left_Opnd  => Duplicate_Subexpr_Move_Checks (Aggr_Lo),
4311                     Right_Opnd => Duplicate_Subexpr_Move_Checks (Sub_Lo)),
4312
4313                 Right_Opnd =>
4314                   Make_Op_Ne (Loc,
4315                     Left_Opnd  => Duplicate_Subexpr (Aggr_Hi),
4316                     Right_Opnd => Duplicate_Subexpr (Sub_Hi)));
4317          end if;
4318
4319          if Present (Cond) then
4320             Insert_Action (N,
4321               Make_Raise_Constraint_Error (Loc,
4322                 Condition => Cond,
4323                 Reason    => CE_Length_Check_Failed));
4324          end if;
4325
4326          --  Now look inside the sub-aggregate to see if there is more work
4327
4328          if Dim < Aggr_Dimension then
4329
4330             --  Process positional components
4331
4332             if Present (Expressions (Sub_Aggr)) then
4333                Expr := First (Expressions (Sub_Aggr));
4334                while Present (Expr) loop
4335                   Check_Same_Aggr_Bounds (Expr, Dim + 1);
4336                   Next (Expr);
4337                end loop;
4338             end if;
4339
4340             --  Process component associations
4341
4342             if Present (Component_Associations (Sub_Aggr)) then
4343                Assoc := First (Component_Associations (Sub_Aggr));
4344                while Present (Assoc) loop
4345                   Expr := Expression (Assoc);
4346                   Check_Same_Aggr_Bounds (Expr, Dim + 1);
4347                   Next (Assoc);
4348                end loop;
4349             end if;
4350          end if;
4351       end Check_Same_Aggr_Bounds;
4352
4353       ----------------------------
4354       -- Compute_Others_Present --
4355       ----------------------------
4356
4357       procedure Compute_Others_Present (Sub_Aggr : Node_Id; Dim : Pos) is
4358          Assoc : Node_Id;
4359          Expr  : Node_Id;
4360
4361       begin
4362          if Present (Component_Associations (Sub_Aggr)) then
4363             Assoc := Last (Component_Associations (Sub_Aggr));
4364
4365             if Nkind (First (Choices (Assoc))) = N_Others_Choice then
4366                Others_Present (Dim) := True;
4367             end if;
4368          end if;
4369
4370          --  Now look inside the sub-aggregate to see if there is more work
4371
4372          if Dim < Aggr_Dimension then
4373
4374             --  Process positional components
4375
4376             if Present (Expressions (Sub_Aggr)) then
4377                Expr := First (Expressions (Sub_Aggr));
4378                while Present (Expr) loop
4379                   Compute_Others_Present (Expr, Dim + 1);
4380                   Next (Expr);
4381                end loop;
4382             end if;
4383
4384             --  Process component associations
4385
4386             if Present (Component_Associations (Sub_Aggr)) then
4387                Assoc := First (Component_Associations (Sub_Aggr));
4388                while Present (Assoc) loop
4389                   Expr := Expression (Assoc);
4390                   Compute_Others_Present (Expr, Dim + 1);
4391                   Next (Assoc);
4392                end loop;
4393             end if;
4394          end if;
4395       end Compute_Others_Present;
4396
4397       ------------------------
4398       -- Has_Address_Clause --
4399       ------------------------
4400
4401       function Has_Address_Clause (D : Node_Id) return Boolean is
4402          Id   : constant Entity_Id := Defining_Identifier (D);
4403          Decl : Node_Id;
4404
4405       begin
4406          Decl := Next (D);
4407          while Present (Decl) loop
4408             if Nkind (Decl) = N_At_Clause
4409                and then Chars (Identifier (Decl)) = Chars (Id)
4410             then
4411                return True;
4412
4413             elsif Nkind (Decl) = N_Attribute_Definition_Clause
4414                and then Chars (Decl) = Name_Address
4415                and then Chars (Name (Decl)) = Chars (Id)
4416             then
4417                return True;
4418             end if;
4419
4420             Next (Decl);
4421          end loop;
4422
4423          return False;
4424       end Has_Address_Clause;
4425
4426       ------------------------
4427       -- In_Place_Assign_OK --
4428       ------------------------
4429
4430       function In_Place_Assign_OK return Boolean is
4431          Aggr_In : Node_Id;
4432          Aggr_Lo : Node_Id;
4433          Aggr_Hi : Node_Id;
4434          Obj_In  : Node_Id;
4435          Obj_Lo  : Node_Id;
4436          Obj_Hi  : Node_Id;
4437
4438          function Is_Others_Aggregate (Aggr : Node_Id) return Boolean;
4439          --  Aggregates that consist of a single Others choice are safe
4440          --  if the single expression is.
4441
4442          function Safe_Aggregate (Aggr : Node_Id) return Boolean;
4443          --  Check recursively that each component of a (sub)aggregate does
4444          --  not depend on the variable being assigned to.
4445
4446          function Safe_Component (Expr : Node_Id) return Boolean;
4447          --  Verify that an expression cannot depend on the variable being
4448          --  assigned to. Room for improvement here (but less than before).
4449
4450          -------------------------
4451          -- Is_Others_Aggregate --
4452          -------------------------
4453
4454          function Is_Others_Aggregate (Aggr : Node_Id) return Boolean is
4455          begin
4456             return No (Expressions (Aggr))
4457               and then Nkind
4458                 (First (Choices (First (Component_Associations (Aggr)))))
4459                   = N_Others_Choice;
4460          end Is_Others_Aggregate;
4461
4462          --------------------
4463          -- Safe_Aggregate --
4464          --------------------
4465
4466          function Safe_Aggregate (Aggr : Node_Id) return Boolean is
4467             Expr : Node_Id;
4468
4469          begin
4470             if Present (Expressions (Aggr)) then
4471                Expr := First (Expressions (Aggr));
4472                while Present (Expr) loop
4473                   if Nkind (Expr) = N_Aggregate then
4474                      if not Safe_Aggregate (Expr) then
4475                         return False;
4476                      end if;
4477
4478                   elsif not Safe_Component (Expr) then
4479                      return False;
4480                   end if;
4481
4482                   Next (Expr);
4483                end loop;
4484             end if;
4485
4486             if Present (Component_Associations (Aggr)) then
4487                Expr := First (Component_Associations (Aggr));
4488                while Present (Expr) loop
4489                   if Nkind (Expression (Expr)) = N_Aggregate then
4490                      if not Safe_Aggregate (Expression (Expr)) then
4491                         return False;
4492                      end if;
4493
4494                   elsif not Safe_Component (Expression (Expr)) then
4495                      return False;
4496                   end if;
4497
4498                   Next (Expr);
4499                end loop;
4500             end if;
4501
4502             return True;
4503          end Safe_Aggregate;
4504
4505          --------------------
4506          -- Safe_Component --
4507          --------------------
4508
4509          function Safe_Component (Expr : Node_Id) return Boolean is
4510             Comp : Node_Id := Expr;
4511
4512             function Check_Component (Comp : Node_Id) return Boolean;
4513             --  Do the recursive traversal, after copy
4514
4515             ---------------------
4516             -- Check_Component --
4517             ---------------------
4518
4519             function Check_Component (Comp : Node_Id) return Boolean is
4520             begin
4521                if Is_Overloaded (Comp) then
4522                   return False;
4523                end if;
4524
4525                return Compile_Time_Known_Value (Comp)
4526
4527                  or else (Is_Entity_Name (Comp)
4528                            and then  Present (Entity (Comp))
4529                            and then No (Renamed_Object (Entity (Comp))))
4530
4531                  or else (Nkind (Comp) = N_Attribute_Reference
4532                            and then Check_Component (Prefix (Comp)))
4533
4534                  or else (Nkind (Comp) in N_Binary_Op
4535                            and then Check_Component (Left_Opnd  (Comp))
4536                            and then Check_Component (Right_Opnd (Comp)))
4537
4538                  or else (Nkind (Comp) in N_Unary_Op
4539                            and then Check_Component (Right_Opnd (Comp)))
4540
4541                  or else (Nkind (Comp) = N_Selected_Component
4542                            and then Check_Component (Prefix (Comp)))
4543
4544                  or else (Nkind (Comp) = N_Unchecked_Type_Conversion
4545                            and then Check_Component (Expression (Comp)));
4546             end Check_Component;
4547
4548          --  Start of processing for Safe_Component
4549
4550          begin
4551             --  If the component appears in an association that may
4552             --  correspond to more than one element, it is not analyzed
4553             --  before the expansion into assignments, to avoid side effects.
4554             --  We analyze, but do not resolve the copy, to obtain sufficient
4555             --  entity information for the checks that follow. If component is
4556             --  overloaded we assume an unsafe function call.
4557
4558             if not Analyzed (Comp) then
4559                if Is_Overloaded (Expr) then
4560                   return False;
4561
4562                elsif Nkind (Expr) = N_Aggregate
4563                   and then not Is_Others_Aggregate (Expr)
4564                then
4565                   return False;
4566
4567                elsif Nkind (Expr) = N_Allocator then
4568
4569                   --  For now, too complex to analyze
4570
4571                   return False;
4572                end if;
4573
4574                Comp := New_Copy_Tree (Expr);
4575                Set_Parent (Comp, Parent (Expr));
4576                Analyze (Comp);
4577             end if;
4578
4579             if Nkind (Comp) = N_Aggregate then
4580                return Safe_Aggregate (Comp);
4581             else
4582                return Check_Component (Comp);
4583             end if;
4584          end Safe_Component;
4585
4586       --  Start of processing for In_Place_Assign_OK
4587
4588       begin
4589          if Present (Component_Associations (N)) then
4590
4591             --  On assignment, sliding can take place, so we cannot do the
4592             --  assignment in place unless the bounds of the aggregate are
4593             --  statically equal to those of the target.
4594
4595             --  If the aggregate is given by an others choice, the bounds
4596             --  are derived from the left-hand side, and the assignment is
4597             --  safe if the expression is.
4598
4599             if Is_Others_Aggregate (N) then
4600                return
4601                  Safe_Component
4602                   (Expression (First (Component_Associations (N))));
4603             end if;
4604
4605             Aggr_In := First_Index (Etype (N));
4606             if Nkind (Parent (N)) = N_Assignment_Statement then
4607                Obj_In  := First_Index (Etype (Name (Parent (N))));
4608
4609             else
4610                --  Context is an allocator. Check bounds of aggregate
4611                --  against given type in qualified expression.
4612
4613                pragma Assert (Nkind (Parent (Parent (N))) = N_Allocator);
4614                Obj_In :=
4615                  First_Index (Etype (Entity (Subtype_Mark (Parent (N)))));
4616             end if;
4617
4618             while Present (Aggr_In) loop
4619                Get_Index_Bounds (Aggr_In, Aggr_Lo, Aggr_Hi);
4620                Get_Index_Bounds (Obj_In, Obj_Lo, Obj_Hi);
4621
4622                if not Compile_Time_Known_Value (Aggr_Lo)
4623                  or else not Compile_Time_Known_Value (Aggr_Hi)
4624                  or else not Compile_Time_Known_Value (Obj_Lo)
4625                  or else not Compile_Time_Known_Value (Obj_Hi)
4626                  or else Expr_Value (Aggr_Lo) /= Expr_Value (Obj_Lo)
4627                  or else Expr_Value (Aggr_Hi) /= Expr_Value (Obj_Hi)
4628                then
4629                   return False;
4630                end if;
4631
4632                Next_Index (Aggr_In);
4633                Next_Index (Obj_In);
4634             end loop;
4635          end if;
4636
4637          --  Now check the component values themselves
4638
4639          return Safe_Aggregate (N);
4640       end In_Place_Assign_OK;
4641
4642       ------------------
4643       -- Others_Check --
4644       ------------------
4645
4646       procedure Others_Check (Sub_Aggr : Node_Id; Dim : Pos) is
4647          Aggr_Lo : constant Node_Id := Aggr_Low (Dim);
4648          Aggr_Hi : constant Node_Id := Aggr_High (Dim);
4649          --  The bounds of the aggregate for this dimension
4650
4651          Ind_Typ : constant Entity_Id := Aggr_Index_Typ (Dim);
4652          --  The index type for this dimension
4653
4654          Need_To_Check : Boolean := False;
4655
4656          Choices_Lo : Node_Id := Empty;
4657          Choices_Hi : Node_Id := Empty;
4658          --  The lowest and highest discrete choices for a named sub-aggregate
4659
4660          Nb_Choices : Int := -1;
4661          --  The number of discrete non-others choices in this sub-aggregate
4662
4663          Nb_Elements : Uint := Uint_0;
4664          --  The number of elements in a positional aggregate
4665
4666          Cond : Node_Id := Empty;
4667
4668          Assoc  : Node_Id;
4669          Choice : Node_Id;
4670          Expr   : Node_Id;
4671
4672       begin
4673          --  Check if we have an others choice. If we do make sure that this
4674          --  sub-aggregate contains at least one element in addition to the
4675          --  others choice.
4676
4677          if Range_Checks_Suppressed (Ind_Typ) then
4678             Need_To_Check := False;
4679
4680          elsif Present (Expressions (Sub_Aggr))
4681            and then Present (Component_Associations (Sub_Aggr))
4682          then
4683             Need_To_Check := True;
4684
4685          elsif Present (Component_Associations (Sub_Aggr)) then
4686             Assoc := Last (Component_Associations (Sub_Aggr));
4687
4688             if Nkind (First (Choices (Assoc))) /= N_Others_Choice then
4689                Need_To_Check := False;
4690
4691             else
4692                --  Count the number of discrete choices. Start with -1 because
4693                --  the others choice does not count.
4694
4695                Nb_Choices := -1;
4696                Assoc := First (Component_Associations (Sub_Aggr));
4697                while Present (Assoc) loop
4698                   Choice := First (Choices (Assoc));
4699                   while Present (Choice) loop
4700                      Nb_Choices := Nb_Choices + 1;
4701                      Next (Choice);
4702                   end loop;
4703
4704                   Next (Assoc);
4705                end loop;
4706
4707                --  If there is only an others choice nothing to do
4708
4709                Need_To_Check := (Nb_Choices > 0);
4710             end if;
4711
4712          else
4713             Need_To_Check := False;
4714          end if;
4715
4716          --  If we are dealing with a positional sub-aggregate with an others
4717          --  choice then compute the number or positional elements.
4718
4719          if Need_To_Check and then Present (Expressions (Sub_Aggr)) then
4720             Expr := First (Expressions (Sub_Aggr));
4721             Nb_Elements := Uint_0;
4722             while Present (Expr) loop
4723                Nb_Elements := Nb_Elements + 1;
4724                Next (Expr);
4725             end loop;
4726
4727          --  If the aggregate contains discrete choices and an others choice
4728          --  compute the smallest and largest discrete choice values.
4729
4730          elsif Need_To_Check then
4731             Compute_Choices_Lo_And_Choices_Hi : declare
4732
4733                Table : Case_Table_Type (1 .. Nb_Choices);
4734                --  Used to sort all the different choice values
4735
4736                J    : Pos := 1;
4737                Low  : Node_Id;
4738                High : Node_Id;
4739
4740             begin
4741                Assoc := First (Component_Associations (Sub_Aggr));
4742                while Present (Assoc) loop
4743                   Choice := First (Choices (Assoc));
4744                   while Present (Choice) loop
4745                      if Nkind (Choice) = N_Others_Choice then
4746                         exit;
4747                      end if;
4748
4749                      Get_Index_Bounds (Choice, Low, High);
4750                      Table (J).Choice_Lo := Low;
4751                      Table (J).Choice_Hi := High;
4752
4753                      J := J + 1;
4754                      Next (Choice);
4755                   end loop;
4756
4757                   Next (Assoc);
4758                end loop;
4759
4760                --  Sort the discrete choices
4761
4762                Sort_Case_Table (Table);
4763
4764                Choices_Lo := Table (1).Choice_Lo;
4765                Choices_Hi := Table (Nb_Choices).Choice_Hi;
4766             end Compute_Choices_Lo_And_Choices_Hi;
4767          end if;
4768
4769          --  If no others choice in this sub-aggregate, or the aggregate
4770          --  comprises only an others choice, nothing to do.
4771
4772          if not Need_To_Check then
4773             Cond := Empty;
4774
4775          --  If we are dealing with an aggregate containing an others choice
4776          --  and positional components, we generate the following test:
4777
4778          --    if Ind_Typ'Pos (Aggr_Lo) + (Nb_Elements - 1) >
4779          --            Ind_Typ'Pos (Aggr_Hi)
4780          --    then
4781          --       raise Constraint_Error;
4782          --    end if;
4783
4784          elsif Nb_Elements > Uint_0 then
4785             Cond :=
4786               Make_Op_Gt (Loc,
4787                 Left_Opnd  =>
4788                   Make_Op_Add (Loc,
4789                     Left_Opnd  =>
4790                       Make_Attribute_Reference (Loc,
4791                         Prefix         => New_Reference_To (Ind_Typ, Loc),
4792                         Attribute_Name => Name_Pos,
4793                         Expressions    =>
4794                           New_List
4795                             (Duplicate_Subexpr_Move_Checks (Aggr_Lo))),
4796                     Right_Opnd => Make_Integer_Literal (Loc, Nb_Elements - 1)),
4797
4798                 Right_Opnd =>
4799                   Make_Attribute_Reference (Loc,
4800                     Prefix         => New_Reference_To (Ind_Typ, Loc),
4801                     Attribute_Name => Name_Pos,
4802                     Expressions    => New_List (
4803                       Duplicate_Subexpr_Move_Checks (Aggr_Hi))));
4804
4805          --  If we are dealing with an aggregate containing an others choice
4806          --  and discrete choices we generate the following test:
4807
4808          --    [constraint_error when
4809          --      Choices_Lo < Aggr_Lo or else Choices_Hi > Aggr_Hi];
4810
4811          else
4812             Cond :=
4813               Make_Or_Else (Loc,
4814                 Left_Opnd =>
4815                   Make_Op_Lt (Loc,
4816                     Left_Opnd  =>
4817                       Duplicate_Subexpr_Move_Checks (Choices_Lo),
4818                     Right_Opnd =>
4819                       Duplicate_Subexpr_Move_Checks (Aggr_Lo)),
4820
4821                 Right_Opnd =>
4822                   Make_Op_Gt (Loc,
4823                     Left_Opnd  =>
4824                       Duplicate_Subexpr (Choices_Hi),
4825                     Right_Opnd =>
4826                       Duplicate_Subexpr (Aggr_Hi)));
4827          end if;
4828
4829          if Present (Cond) then
4830             Insert_Action (N,
4831               Make_Raise_Constraint_Error (Loc,
4832                 Condition => Cond,
4833                 Reason    => CE_Length_Check_Failed));
4834             --  Questionable reason code, shouldn't that be a
4835             --  CE_Range_Check_Failed ???
4836          end if;
4837
4838          --  Now look inside the sub-aggregate to see if there is more work
4839
4840          if Dim < Aggr_Dimension then
4841
4842             --  Process positional components
4843
4844             if Present (Expressions (Sub_Aggr)) then
4845                Expr := First (Expressions (Sub_Aggr));
4846                while Present (Expr) loop
4847                   Others_Check (Expr, Dim + 1);
4848                   Next (Expr);
4849                end loop;
4850             end if;
4851
4852             --  Process component associations
4853
4854             if Present (Component_Associations (Sub_Aggr)) then
4855                Assoc := First (Component_Associations (Sub_Aggr));
4856                while Present (Assoc) loop
4857                   Expr := Expression (Assoc);
4858                   Others_Check (Expr, Dim + 1);
4859                   Next (Assoc);
4860                end loop;
4861             end if;
4862          end if;
4863       end Others_Check;
4864
4865       --  Remaining Expand_Array_Aggregate variables
4866
4867       Tmp : Entity_Id;
4868       --  Holds the temporary aggregate value
4869
4870       Tmp_Decl : Node_Id;
4871       --  Holds the declaration of Tmp
4872
4873       Aggr_Code   : List_Id;
4874       Parent_Node : Node_Id;
4875       Parent_Kind : Node_Kind;
4876
4877    --  Start of processing for Expand_Array_Aggregate
4878
4879    begin
4880       --  Do not touch the special aggregates of attributes used for Asm calls
4881
4882       if Is_RTE (Ctyp, RE_Asm_Input_Operand)
4883         or else Is_RTE (Ctyp, RE_Asm_Output_Operand)
4884       then
4885          return;
4886       end if;
4887
4888       --  If the semantic analyzer has determined that aggregate N will raise
4889       --  Constraint_Error at run-time, then the aggregate node has been
4890       --  replaced with an N_Raise_Constraint_Error node and we should
4891       --  never get here.
4892
4893       pragma Assert (not Raises_Constraint_Error (N));
4894
4895       --  STEP 1a
4896
4897       --  Check that the index range defined by aggregate bounds is
4898       --  compatible with corresponding index subtype.
4899
4900       Index_Compatibility_Check : declare
4901          Aggr_Index_Range : Node_Id := First_Index (Typ);
4902          --  The current aggregate index range
4903
4904          Index_Constraint : Node_Id := First_Index (Etype (Typ));
4905          --  The corresponding index constraint against which we have to
4906          --  check the above aggregate index range.
4907
4908       begin
4909          Compute_Others_Present (N, 1);
4910
4911          for J in 1 .. Aggr_Dimension loop
4912             --  There is no need to emit a check if an others choice is
4913             --  present for this array aggregate dimension since in this
4914             --  case one of N's sub-aggregates has taken its bounds from the
4915             --  context and these bounds must have been checked already. In
4916             --  addition all sub-aggregates corresponding to the same
4917             --  dimension must all have the same bounds (checked in (c) below).
4918
4919             if not Range_Checks_Suppressed (Etype (Index_Constraint))
4920               and then not Others_Present (J)
4921             then
4922                --  We don't use Checks.Apply_Range_Check here because it emits
4923                --  a spurious check. Namely it checks that the range defined by
4924                --  the aggregate bounds is non empty. But we know this already
4925                --  if we get here.
4926
4927                Check_Bounds (Aggr_Index_Range, Index_Constraint);
4928             end if;
4929
4930             --  Save the low and high bounds of the aggregate index as well as
4931             --  the index type for later use in checks (b) and (c) below.
4932
4933             Aggr_Low  (J) := Low_Bound (Aggr_Index_Range);
4934             Aggr_High (J) := High_Bound (Aggr_Index_Range);
4935
4936             Aggr_Index_Typ (J) := Etype (Index_Constraint);
4937
4938             Next_Index (Aggr_Index_Range);
4939             Next_Index (Index_Constraint);
4940          end loop;
4941       end Index_Compatibility_Check;
4942
4943       --  STEP 1b
4944
4945       --  If an others choice is present check that no aggregate index is
4946       --  outside the bounds of the index constraint.
4947
4948       Others_Check (N, 1);
4949
4950       --  STEP 1c
4951
4952       --  For multidimensional arrays make sure that all subaggregates
4953       --  corresponding to the same dimension have the same bounds.
4954
4955       if Aggr_Dimension > 1 then
4956          Check_Same_Aggr_Bounds (N, 1);
4957       end if;
4958
4959       --  STEP 2
4960
4961       --  Here we test for is packed array aggregate that we can handle at
4962       --  compile time. If so, return with transformation done. Note that we do
4963       --  this even if the aggregate is nested, because once we have done this
4964       --  processing, there is no more nested aggregate!
4965
4966       if Packed_Array_Aggregate_Handled (N) then
4967          return;
4968       end if;
4969
4970       --  At this point we try to convert to positional form
4971
4972       if Ekind (Current_Scope) = E_Package
4973         and then Static_Elaboration_Desired (Current_Scope)
4974       then
4975          Convert_To_Positional (N, Max_Others_Replicate => 100);
4976
4977       else
4978          Convert_To_Positional (N);
4979       end if;
4980
4981       --  if the result is no longer an aggregate (e.g. it may be a string
4982       --  literal, or a temporary which has the needed value), then we are
4983       --  done, since there is no longer a nested aggregate.
4984
4985       if Nkind (N) /= N_Aggregate then
4986          return;
4987
4988       --  We are also done if the result is an analyzed aggregate
4989       --  This case could use more comments ???
4990
4991       elsif Analyzed (N)
4992         and then N /= Original_Node (N)
4993       then
4994          return;
4995       end if;
4996
4997       --  If all aggregate components are compile-time known and the aggregate
4998       --  has been flattened, nothing left to do. The same occurs if the
4999       --  aggregate is used to initialize the components of an statically
5000       --  allocated dispatch table.
5001
5002       if Compile_Time_Known_Aggregate (N)
5003         or else Is_Static_Dispatch_Table_Aggregate (N)
5004       then
5005          Set_Expansion_Delayed (N, False);
5006          return;
5007       end if;
5008
5009       --  Now see if back end processing is possible
5010
5011       if Backend_Processing_Possible (N) then
5012
5013          --  If the aggregate is static but the constraints are not, build
5014          --  a static subtype for the aggregate, so that Gigi can place it
5015          --  in static memory. Perform an unchecked_conversion to the non-
5016          --  static type imposed by the context.
5017
5018          declare
5019             Itype      : constant Entity_Id := Etype (N);
5020             Index      : Node_Id;
5021             Needs_Type : Boolean := False;
5022
5023          begin
5024             Index := First_Index (Itype);
5025             while Present (Index) loop
5026                if not Is_Static_Subtype (Etype (Index)) then
5027                   Needs_Type := True;
5028                   exit;
5029                else
5030                   Next_Index (Index);
5031                end if;
5032             end loop;
5033
5034             if Needs_Type then
5035                Build_Constrained_Type (Positional => True);
5036                Rewrite (N, Unchecked_Convert_To (Itype, N));
5037                Analyze (N);
5038             end if;
5039          end;
5040
5041          return;
5042       end if;
5043
5044       --  STEP 3
5045
5046       --  Delay expansion for nested aggregates: it will be taken care of
5047       --  when the parent aggregate is expanded.
5048
5049       Parent_Node := Parent (N);
5050       Parent_Kind := Nkind (Parent_Node);
5051
5052       if Parent_Kind = N_Qualified_Expression then
5053          Parent_Node := Parent (Parent_Node);
5054          Parent_Kind := Nkind (Parent_Node);
5055       end if;
5056
5057       if Parent_Kind = N_Aggregate
5058         or else Parent_Kind = N_Extension_Aggregate
5059         or else Parent_Kind = N_Component_Association
5060         or else (Parent_Kind = N_Object_Declaration
5061                   and then Needs_Finalization (Typ))
5062         or else (Parent_Kind = N_Assignment_Statement
5063                   and then Inside_Init_Proc)
5064       then
5065          if Static_Array_Aggregate (N)
5066            or else Compile_Time_Known_Aggregate (N)
5067          then
5068             Set_Expansion_Delayed (N, False);
5069             return;
5070          else
5071             Set_Expansion_Delayed (N);
5072             return;
5073          end if;
5074       end if;
5075
5076       --  STEP 4
5077
5078       --  Look if in place aggregate expansion is possible
5079
5080       --  For object declarations we build the aggregate in place, unless
5081       --  the array is bit-packed or the component is controlled.
5082
5083       --  For assignments we do the assignment in place if all the component
5084       --  associations have compile-time known values. For other cases we
5085       --  create a temporary. The analysis for safety of on-line assignment
5086       --  is delicate, i.e. we don't know how to do it fully yet ???
5087
5088       --  For allocators we assign to the designated object in place if the
5089       --  aggregate meets the same conditions as other in-place assignments.
5090       --  In this case the aggregate may not come from source but was created
5091       --  for default initialization, e.g. with Initialize_Scalars.
5092
5093       if Requires_Transient_Scope (Typ) then
5094          Establish_Transient_Scope
5095            (N, Sec_Stack => Has_Controlled_Component (Typ));
5096       end if;
5097
5098       if Has_Default_Init_Comps (N) then
5099          Maybe_In_Place_OK := False;
5100
5101       elsif Is_Bit_Packed_Array (Typ)
5102         or else Has_Controlled_Component (Typ)
5103       then
5104          Maybe_In_Place_OK := False;
5105
5106       else
5107          Maybe_In_Place_OK :=
5108           (Nkind (Parent (N)) = N_Assignment_Statement
5109             and then Comes_From_Source (N)
5110             and then In_Place_Assign_OK)
5111
5112           or else
5113             (Nkind (Parent (Parent (N))) = N_Allocator
5114               and then In_Place_Assign_OK);
5115       end if;
5116
5117       --  If this is an array of tasks, it will be expanded into build-in-place
5118       --  assignments. Build an activation chain for the tasks now.
5119
5120       if Has_Task (Etype (N)) then
5121          Build_Activation_Chain_Entity (N);
5122       end if;
5123
5124       if not Has_Default_Init_Comps (N)
5125          and then Comes_From_Source (Parent (N))
5126          and then Nkind (Parent (N)) = N_Object_Declaration
5127          and then not
5128            Must_Slide (Etype (Defining_Identifier (Parent (N))), Typ)
5129          and then N = Expression (Parent (N))
5130          and then not Is_Bit_Packed_Array (Typ)
5131          and then not Has_Controlled_Component (Typ)
5132          and then not Has_Address_Clause (Parent (N))
5133       then
5134          Tmp := Defining_Identifier (Parent (N));
5135          Set_No_Initialization (Parent (N));
5136          Set_Expression (Parent (N), Empty);
5137
5138          --  Set the type of the entity, for use in the analysis of the
5139          --  subsequent indexed assignments. If the nominal type is not
5140          --  constrained, build a subtype from the known bounds of the
5141          --  aggregate. If the declaration has a subtype mark, use it,
5142          --  otherwise use the itype of the aggregate.
5143
5144          if not Is_Constrained (Typ) then
5145             Build_Constrained_Type (Positional => False);
5146          elsif Is_Entity_Name (Object_Definition (Parent (N)))
5147            and then Is_Constrained (Entity (Object_Definition (Parent (N))))
5148          then
5149             Set_Etype (Tmp, Entity (Object_Definition (Parent (N))));
5150          else
5151             Set_Size_Known_At_Compile_Time (Typ, False);
5152             Set_Etype (Tmp, Typ);
5153          end if;
5154
5155       elsif Maybe_In_Place_OK
5156         and then Nkind (Parent (N)) = N_Qualified_Expression
5157         and then Nkind (Parent (Parent (N))) = N_Allocator
5158       then
5159          Set_Expansion_Delayed (N);
5160          return;
5161
5162       --  In the remaining cases the aggregate is the RHS of an assignment
5163
5164       elsif Maybe_In_Place_OK
5165         and then Is_Entity_Name (Name (Parent (N)))
5166       then
5167          Tmp := Entity (Name (Parent (N)));
5168
5169          if Etype (Tmp) /= Etype (N) then
5170             Apply_Length_Check (N, Etype (Tmp));
5171
5172             if Nkind (N) = N_Raise_Constraint_Error then
5173
5174                --  Static error, nothing further to expand
5175
5176                return;
5177             end if;
5178          end if;
5179
5180       elsif Maybe_In_Place_OK
5181         and then Nkind (Name (Parent (N))) = N_Explicit_Dereference
5182         and then Is_Entity_Name (Prefix (Name (Parent (N))))
5183       then
5184          Tmp := Name (Parent (N));
5185
5186          if Etype (Tmp) /= Etype (N) then
5187             Apply_Length_Check (N, Etype (Tmp));
5188          end if;
5189
5190       elsif Maybe_In_Place_OK
5191         and then Nkind (Name (Parent (N))) = N_Slice
5192         and then Safe_Slice_Assignment (N)
5193       then
5194          --  Safe_Slice_Assignment rewrites assignment as a loop
5195
5196          return;
5197
5198       --  Step 5
5199
5200       --  In place aggregate expansion is not possible
5201
5202       else
5203          Maybe_In_Place_OK := False;
5204          Tmp := Make_Temporary (Loc, New_Internal_Name ('A'), N);
5205          Tmp_Decl :=
5206            Make_Object_Declaration
5207              (Loc,
5208               Defining_Identifier => Tmp,
5209               Object_Definition   => New_Occurrence_Of (Typ, Loc));
5210          Set_No_Initialization (Tmp_Decl, True);
5211
5212          --  If we are within a loop, the temporary will be pushed on the
5213          --  stack at each iteration. If the aggregate is the expression for an
5214          --  allocator, it will be immediately copied to the heap and can
5215          --  be reclaimed at once. We create a transient scope around the
5216          --  aggregate for this purpose.
5217
5218          if Ekind (Current_Scope) = E_Loop
5219            and then Nkind (Parent (Parent (N))) = N_Allocator
5220          then
5221             Establish_Transient_Scope (N, False);
5222          end if;
5223
5224          Insert_Action (N, Tmp_Decl);
5225       end if;
5226
5227       --  Construct and insert the aggregate code. We can safely suppress index
5228       --  checks because this code is guaranteed not to raise CE on index
5229       --  checks. However we should *not* suppress all checks.
5230
5231       declare
5232          Target : Node_Id;
5233
5234       begin
5235          if Nkind (Tmp) = N_Defining_Identifier then
5236             Target := New_Reference_To (Tmp, Loc);
5237
5238          else
5239
5240             if Has_Default_Init_Comps (N) then
5241
5242                --  Ada 2005 (AI-287): This case has not been analyzed???
5243
5244                raise Program_Error;
5245             end if;
5246
5247             --  Name in assignment is explicit dereference
5248
5249             Target := New_Copy (Tmp);
5250          end if;
5251
5252          Aggr_Code :=
5253            Build_Array_Aggr_Code (N,
5254              Ctype       => Ctyp,
5255              Index       => First_Index (Typ),
5256              Into        => Target,
5257              Scalar_Comp => Is_Scalar_Type (Ctyp));
5258       end;
5259
5260       if Comes_From_Source (Tmp) then
5261          Insert_Actions_After (Parent (N), Aggr_Code);
5262
5263       else
5264          Insert_Actions (N, Aggr_Code);
5265       end if;
5266
5267       --  If the aggregate has been assigned in place, remove the original
5268       --  assignment.
5269
5270       if Nkind (Parent (N)) = N_Assignment_Statement
5271         and then Maybe_In_Place_OK
5272       then
5273          Rewrite (Parent (N), Make_Null_Statement (Loc));
5274
5275       elsif Nkind (Parent (N)) /= N_Object_Declaration
5276         or else Tmp /= Defining_Identifier (Parent (N))
5277       then
5278          Rewrite (N, New_Occurrence_Of (Tmp, Loc));
5279          Analyze_And_Resolve (N, Typ);
5280       end if;
5281    end Expand_Array_Aggregate;
5282
5283    ------------------------
5284    -- Expand_N_Aggregate --
5285    ------------------------
5286
5287    procedure Expand_N_Aggregate (N : Node_Id) is
5288    begin
5289       if Is_Record_Type (Etype (N)) then
5290          Expand_Record_Aggregate (N);
5291       else
5292          Expand_Array_Aggregate (N);
5293       end if;
5294    exception
5295       when RE_Not_Available =>
5296          return;
5297    end Expand_N_Aggregate;
5298
5299    ----------------------------------
5300    -- Expand_N_Extension_Aggregate --
5301    ----------------------------------
5302
5303    --  If the ancestor part is an expression, add a component association for
5304    --  the parent field. If the type of the ancestor part is not the direct
5305    --  parent of the expected type,  build recursively the needed ancestors.
5306    --  If the ancestor part is a subtype_mark, replace aggregate with a decla-
5307    --  ration for a temporary of the expected type, followed by individual
5308    --  assignments to the given components.
5309
5310    procedure Expand_N_Extension_Aggregate (N : Node_Id) is
5311       Loc : constant Source_Ptr := Sloc  (N);
5312       A   : constant Node_Id    := Ancestor_Part (N);
5313       Typ : constant Entity_Id  := Etype (N);
5314
5315    begin
5316       --  If the ancestor is a subtype mark, an init proc must be called
5317       --  on the resulting object which thus has to be materialized in
5318       --  the front-end
5319
5320       if Is_Entity_Name (A) and then Is_Type (Entity (A)) then
5321          Convert_To_Assignments (N, Typ);
5322
5323       --  The extension aggregate is transformed into a record aggregate
5324       --  of the following form (c1 and c2 are inherited components)
5325
5326       --   (Exp with c3 => a, c4 => b)
5327       --      ==> (c1 => Exp.c1, c2 => Exp.c2, c1 => a, c2 => b)
5328
5329       else
5330          Set_Etype (N, Typ);
5331
5332          if Tagged_Type_Expansion then
5333             Expand_Record_Aggregate (N,
5334               Orig_Tag    =>
5335                 New_Occurrence_Of
5336                   (Node (First_Elmt (Access_Disp_Table (Typ))), Loc),
5337               Parent_Expr => A);
5338          else
5339             --  No tag is needed in the case of a VM
5340             Expand_Record_Aggregate (N,
5341               Parent_Expr => A);
5342          end if;
5343       end if;
5344
5345    exception
5346       when RE_Not_Available =>
5347          return;
5348    end Expand_N_Extension_Aggregate;
5349
5350    -----------------------------
5351    -- Expand_Record_Aggregate --
5352    -----------------------------
5353
5354    procedure Expand_Record_Aggregate
5355      (N           : Node_Id;
5356       Orig_Tag    : Node_Id := Empty;
5357       Parent_Expr : Node_Id := Empty)
5358    is
5359       Loc      : constant Source_Ptr := Sloc  (N);
5360       Comps    : constant List_Id    := Component_Associations (N);
5361       Typ      : constant Entity_Id  := Etype (N);
5362       Base_Typ : constant Entity_Id  := Base_Type (Typ);
5363
5364       Static_Components : Boolean := True;
5365       --  Flag to indicate whether all components are compile-time known,
5366       --  and the aggregate can be constructed statically and handled by
5367       --  the back-end.
5368
5369       function Component_Not_OK_For_Backend return Boolean;
5370       --  Check for presence of component which makes it impossible for the
5371       --  backend to process the aggregate, thus requiring the use of a series
5372       --  of assignment statements. Cases checked for are a nested aggregate
5373       --  needing Late_Expansion, the presence of a tagged component which may
5374       --  need tag adjustment, and a bit unaligned component reference.
5375       --
5376       --  We also force expansion into assignments if a component is of a
5377       --  mutable type (including a private type with discriminants) because
5378       --  in that case the size of the component to be copied may be smaller
5379       --  than the side of the target, and there is no simple way for gigi
5380       --  to compute the size of the object to be copied.
5381       --
5382       --  NOTE: This is part of the ongoing work to define precisely the
5383       --  interface between front-end and back-end handling of aggregates.
5384       --  In general it is desirable to pass aggregates as they are to gigi,
5385       --  in order to minimize elaboration code. This is one case where the
5386       --  semantics of Ada complicate the analysis and lead to anomalies in
5387       --  the gcc back-end if the aggregate is not expanded into assignments.
5388
5389       ----------------------------------
5390       -- Component_Not_OK_For_Backend --
5391       ----------------------------------
5392
5393       function Component_Not_OK_For_Backend return Boolean is
5394          C      : Node_Id;
5395          Expr_Q : Node_Id;
5396
5397       begin
5398          if No (Comps) then
5399             return False;
5400          end if;
5401
5402          C := First (Comps);
5403          while Present (C) loop
5404             if Nkind (Expression (C)) = N_Qualified_Expression then
5405                Expr_Q := Expression (Expression (C));
5406             else
5407                Expr_Q := Expression (C);
5408             end if;
5409
5410             --  Return true if the aggregate has any associations for tagged
5411             --  components that may require tag adjustment.
5412
5413             --  These are cases where the source expression may have a tag that
5414             --  could differ from the component tag (e.g., can occur for type
5415             --  conversions and formal parameters). (Tag adjustment not needed
5416             --  if VM_Target because object tags are implicit in the machine.)
5417
5418             if Is_Tagged_Type (Etype (Expr_Q))
5419               and then (Nkind (Expr_Q) = N_Type_Conversion
5420                          or else (Is_Entity_Name (Expr_Q)
5421                                     and then
5422                                       Ekind (Entity (Expr_Q)) in Formal_Kind))
5423               and then Tagged_Type_Expansion
5424             then
5425                Static_Components := False;
5426                return True;
5427
5428             elsif Is_Delayed_Aggregate (Expr_Q) then
5429                Static_Components := False;
5430                return True;
5431
5432             elsif Possible_Bit_Aligned_Component (Expr_Q) then
5433                Static_Components := False;
5434                return True;
5435             end if;
5436
5437             if Is_Scalar_Type (Etype (Expr_Q)) then
5438                if not Compile_Time_Known_Value (Expr_Q) then
5439                   Static_Components := False;
5440                end if;
5441
5442             elsif Nkind (Expr_Q) /= N_Aggregate
5443               or else not Compile_Time_Known_Aggregate (Expr_Q)
5444             then
5445                Static_Components := False;
5446
5447                if Is_Private_Type (Etype (Expr_Q))
5448                  and then Has_Discriminants (Etype (Expr_Q))
5449                then
5450                   return True;
5451                end if;
5452             end if;
5453
5454             Next (C);
5455          end loop;
5456
5457          return False;
5458       end Component_Not_OK_For_Backend;
5459
5460       --  Remaining Expand_Record_Aggregate variables
5461
5462       Tag_Value : Node_Id;
5463       Comp      : Entity_Id;
5464       New_Comp  : Node_Id;
5465
5466    --  Start of processing for Expand_Record_Aggregate
5467
5468    begin
5469       --  If the aggregate is to be assigned to an atomic variable, we
5470       --  have to prevent a piecemeal assignment even if the aggregate
5471       --  is to be expanded. We create a temporary for the aggregate, and
5472       --  assign the temporary instead, so that the back end can generate
5473       --  an atomic move for it.
5474
5475       if Is_Atomic (Typ)
5476         and then Comes_From_Source (Parent (N))
5477         and then Is_Atomic_Aggregate (N, Typ)
5478       then
5479          return;
5480
5481       --  No special management required for aggregates used to initialize
5482       --  statically allocated dispatch tables
5483
5484       elsif Is_Static_Dispatch_Table_Aggregate (N) then
5485          return;
5486       end if;
5487
5488       --  Ada 2005 (AI-318-2): We need to convert to assignments if components
5489       --  are build-in-place function calls. This test could be more specific,
5490       --  but doing it for all inherently limited aggregates seems harmless.
5491       --  The assignments will turn into build-in-place function calls (see
5492       --  Make_Build_In_Place_Call_In_Assignment).
5493
5494       if Ada_Version >= Ada_05 and then Is_Inherently_Limited_Type (Typ) then
5495          Convert_To_Assignments (N, Typ);
5496
5497       --  Gigi doesn't handle properly temporaries of variable size
5498       --  so we generate it in the front-end
5499
5500       elsif not Size_Known_At_Compile_Time (Typ) then
5501          Convert_To_Assignments (N, Typ);
5502
5503       --  Temporaries for controlled aggregates need to be attached to a
5504       --  final chain in order to be properly finalized, so it has to
5505       --  be created in the front-end
5506
5507       elsif Is_Controlled (Typ)
5508         or else Has_Controlled_Component (Base_Type (Typ))
5509       then
5510          Convert_To_Assignments (N, Typ);
5511
5512          --  Ada 2005 (AI-287): In case of default initialized components we
5513          --  convert the aggregate into assignments.
5514
5515       elsif Has_Default_Init_Comps (N) then
5516          Convert_To_Assignments (N, Typ);
5517
5518       --  Check components
5519
5520       elsif Component_Not_OK_For_Backend then
5521          Convert_To_Assignments (N, Typ);
5522
5523       --  If an ancestor is private, some components are not inherited and
5524       --  we cannot expand into a record aggregate
5525
5526       elsif Has_Private_Ancestor (Typ) then
5527          Convert_To_Assignments (N, Typ);
5528
5529       --  ??? The following was done to compile fxacc00.ads in the ACVCs. Gigi
5530       --  is not able to handle the aggregate for Late_Request.
5531
5532       elsif Is_Tagged_Type (Typ) and then Has_Discriminants (Typ) then
5533          Convert_To_Assignments (N, Typ);
5534
5535       --  If the tagged types covers interface types we need to initialize all
5536       --  hidden components containing pointers to secondary dispatch tables.
5537
5538       elsif Is_Tagged_Type (Typ) and then Has_Interfaces (Typ) then
5539          Convert_To_Assignments (N, Typ);
5540
5541       --  If some components are mutable, the size of the aggregate component
5542       --  may be distinct from the default size of the type component, so
5543       --  we need to expand to insure that the back-end copies the proper
5544       --  size of the data.
5545
5546       elsif Has_Mutable_Components (Typ) then
5547          Convert_To_Assignments (N, Typ);
5548
5549       --  If the type involved has any non-bit aligned components, then we are
5550       --  not sure that the back end can handle this case correctly.
5551
5552       elsif Type_May_Have_Bit_Aligned_Components (Typ) then
5553          Convert_To_Assignments (N, Typ);
5554
5555       --  In all other cases, build a proper aggregate handlable by gigi
5556
5557       else
5558          if Nkind (N) = N_Aggregate then
5559
5560             --  If the aggregate is static and can be handled by the back-end,
5561             --  nothing left to do.
5562
5563             if Static_Components then
5564                Set_Compile_Time_Known_Aggregate (N);
5565                Set_Expansion_Delayed (N, False);
5566             end if;
5567          end if;
5568
5569          --  If no discriminants, nothing special to do
5570
5571          if not Has_Discriminants (Typ) then
5572             null;
5573
5574          --  Case of discriminants present
5575
5576          elsif Is_Derived_Type (Typ) then
5577
5578             --  For untagged types,  non-stored discriminants are replaced
5579             --  with stored discriminants, which are the ones that gigi uses
5580             --  to describe the type and its components.
5581
5582             Generate_Aggregate_For_Derived_Type : declare
5583                Constraints  : constant List_Id := New_List;
5584                First_Comp   : Node_Id;
5585                Discriminant : Entity_Id;
5586                Decl         : Node_Id;
5587                Num_Disc     : Int := 0;
5588                Num_Gird     : Int := 0;
5589
5590                procedure Prepend_Stored_Values (T : Entity_Id);
5591                --  Scan the list of stored discriminants of the type, and add
5592                --  their values to the aggregate being built.
5593
5594                ---------------------------
5595                -- Prepend_Stored_Values --
5596                ---------------------------
5597
5598                procedure Prepend_Stored_Values (T : Entity_Id) is
5599                begin
5600                   Discriminant := First_Stored_Discriminant (T);
5601                   while Present (Discriminant) loop
5602                      New_Comp :=
5603                        Make_Component_Association (Loc,
5604                          Choices    =>
5605                            New_List (New_Occurrence_Of (Discriminant, Loc)),
5606
5607                          Expression =>
5608                            New_Copy_Tree (
5609                              Get_Discriminant_Value (
5610                                  Discriminant,
5611                                  Typ,
5612                                  Discriminant_Constraint (Typ))));
5613
5614                      if No (First_Comp) then
5615                         Prepend_To (Component_Associations (N), New_Comp);
5616                      else
5617                         Insert_After (First_Comp, New_Comp);
5618                      end if;
5619
5620                      First_Comp := New_Comp;
5621                      Next_Stored_Discriminant (Discriminant);
5622                   end loop;
5623                end Prepend_Stored_Values;
5624
5625             --  Start of processing for Generate_Aggregate_For_Derived_Type
5626
5627             begin
5628                --  Remove the associations for the discriminant of derived type
5629
5630                First_Comp := First (Component_Associations (N));
5631                while Present (First_Comp) loop
5632                   Comp := First_Comp;
5633                   Next (First_Comp);
5634
5635                   if Ekind (Entity
5636                              (First (Choices (Comp)))) = E_Discriminant
5637                   then
5638                      Remove (Comp);
5639                      Num_Disc := Num_Disc + 1;
5640                   end if;
5641                end loop;
5642
5643                --  Insert stored discriminant associations in the correct
5644                --  order. If there are more stored discriminants than new
5645                --  discriminants, there is at least one new discriminant that
5646                --  constrains more than one of the stored discriminants. In
5647                --  this case we need to construct a proper subtype of the
5648                --  parent type, in order to supply values to all the
5649                --  components. Otherwise there is one-one correspondence
5650                --  between the constraints and the stored discriminants.
5651
5652                First_Comp := Empty;
5653
5654                Discriminant := First_Stored_Discriminant (Base_Type (Typ));
5655                while Present (Discriminant) loop
5656                   Num_Gird := Num_Gird + 1;
5657                   Next_Stored_Discriminant (Discriminant);
5658                end loop;
5659
5660                --  Case of more stored discriminants than new discriminants
5661
5662                if Num_Gird > Num_Disc then
5663
5664                   --  Create a proper subtype of the parent type, which is the
5665                   --  proper implementation type for the aggregate, and convert
5666                   --  it to the intended target type.
5667
5668                   Discriminant := First_Stored_Discriminant (Base_Type (Typ));
5669                   while Present (Discriminant) loop
5670                      New_Comp :=
5671                        New_Copy_Tree (
5672                          Get_Discriminant_Value (
5673                              Discriminant,
5674                              Typ,
5675                              Discriminant_Constraint (Typ)));
5676                      Append (New_Comp, Constraints);
5677                      Next_Stored_Discriminant (Discriminant);
5678                   end loop;
5679
5680                   Decl :=
5681                     Make_Subtype_Declaration (Loc,
5682                       Defining_Identifier =>
5683                          Make_Defining_Identifier (Loc,
5684                             New_Internal_Name ('T')),
5685                       Subtype_Indication =>
5686                         Make_Subtype_Indication (Loc,
5687                           Subtype_Mark =>
5688                             New_Occurrence_Of (Etype (Base_Type (Typ)), Loc),
5689                           Constraint =>
5690                             Make_Index_Or_Discriminant_Constraint
5691                               (Loc, Constraints)));
5692
5693                   Insert_Action (N, Decl);
5694                   Prepend_Stored_Values (Base_Type (Typ));
5695
5696                   Set_Etype (N, Defining_Identifier (Decl));
5697                   Set_Analyzed (N);
5698
5699                   Rewrite (N, Unchecked_Convert_To (Typ, N));
5700                   Analyze (N);
5701
5702                --  Case where we do not have fewer new discriminants than
5703                --  stored discriminants, so in this case we can simply use the
5704                --  stored discriminants of the subtype.
5705
5706                else
5707                   Prepend_Stored_Values (Typ);
5708                end if;
5709             end Generate_Aggregate_For_Derived_Type;
5710          end if;
5711
5712          if Is_Tagged_Type (Typ) then
5713
5714             --  The tagged case, _parent and _tag component must be created
5715
5716             --  Reset null_present unconditionally. tagged records always have
5717             --  at least one field (the tag or the parent)
5718
5719             Set_Null_Record_Present (N, False);
5720
5721             --  When the current aggregate comes from the expansion of an
5722             --  extension aggregate, the parent expr is replaced by an
5723             --  aggregate formed by selected components of this expr
5724
5725             if Present (Parent_Expr)
5726               and then Is_Empty_List (Comps)
5727             then
5728                Comp := First_Component_Or_Discriminant (Typ);
5729                while Present (Comp) loop
5730
5731                   --  Skip all expander-generated components
5732
5733                   if
5734                     not Comes_From_Source (Original_Record_Component (Comp))
5735                   then
5736                      null;
5737
5738                   else
5739                      New_Comp :=
5740                        Make_Selected_Component (Loc,
5741                          Prefix =>
5742                            Unchecked_Convert_To (Typ,
5743                              Duplicate_Subexpr (Parent_Expr, True)),
5744
5745                          Selector_Name => New_Occurrence_Of (Comp, Loc));
5746
5747                      Append_To (Comps,
5748                        Make_Component_Association (Loc,
5749                          Choices    =>
5750                            New_List (New_Occurrence_Of (Comp, Loc)),
5751                          Expression =>
5752                            New_Comp));
5753
5754                      Analyze_And_Resolve (New_Comp, Etype (Comp));
5755                   end if;
5756
5757                   Next_Component_Or_Discriminant (Comp);
5758                end loop;
5759             end if;
5760
5761             --  Compute the value for the Tag now, if the type is a root it
5762             --  will be included in the aggregate right away, otherwise it will
5763             --  be propagated to the parent aggregate
5764
5765             if Present (Orig_Tag) then
5766                Tag_Value := Orig_Tag;
5767             elsif not Tagged_Type_Expansion then
5768                Tag_Value := Empty;
5769             else
5770                Tag_Value :=
5771                  New_Occurrence_Of
5772                    (Node (First_Elmt (Access_Disp_Table (Typ))), Loc);
5773             end if;
5774
5775             --  For a derived type, an aggregate for the parent is formed with
5776             --  all the inherited components.
5777
5778             if Is_Derived_Type (Typ) then
5779
5780                declare
5781                   First_Comp   : Node_Id;
5782                   Parent_Comps : List_Id;
5783                   Parent_Aggr  : Node_Id;
5784                   Parent_Name  : Node_Id;
5785
5786                begin
5787                   --  Remove the inherited component association from the
5788                   --  aggregate and store them in the parent aggregate
5789
5790                   First_Comp := First (Component_Associations (N));
5791                   Parent_Comps := New_List;
5792                   while Present (First_Comp)
5793                     and then Scope (Original_Record_Component (
5794                             Entity (First (Choices (First_Comp))))) /= Base_Typ
5795                   loop
5796                      Comp := First_Comp;
5797                      Next (First_Comp);
5798                      Remove (Comp);
5799                      Append (Comp, Parent_Comps);
5800                   end loop;
5801
5802                   Parent_Aggr := Make_Aggregate (Loc,
5803                     Component_Associations => Parent_Comps);
5804                   Set_Etype (Parent_Aggr, Etype (Base_Type (Typ)));
5805
5806                   --  Find the _parent component
5807
5808                   Comp := First_Component (Typ);
5809                   while Chars (Comp) /= Name_uParent loop
5810                      Comp := Next_Component (Comp);
5811                   end loop;
5812
5813                   Parent_Name := New_Occurrence_Of (Comp, Loc);
5814
5815                   --  Insert the parent aggregate
5816
5817                   Prepend_To (Component_Associations (N),
5818                     Make_Component_Association (Loc,
5819                       Choices    => New_List (Parent_Name),
5820                       Expression => Parent_Aggr));
5821
5822                   --  Expand recursively the parent propagating the right Tag
5823
5824                   Expand_Record_Aggregate (
5825                     Parent_Aggr, Tag_Value, Parent_Expr);
5826                end;
5827
5828             --  For a root type, the tag component is added (unless compiling
5829             --  for the VMs, where tags are implicit).
5830
5831             elsif Tagged_Type_Expansion then
5832                declare
5833                   Tag_Name  : constant Node_Id :=
5834                                 New_Occurrence_Of
5835                                   (First_Tag_Component (Typ), Loc);
5836                   Typ_Tag   : constant Entity_Id := RTE (RE_Tag);
5837                   Conv_Node : constant Node_Id :=
5838                                 Unchecked_Convert_To (Typ_Tag, Tag_Value);
5839
5840                begin
5841                   Set_Etype (Conv_Node, Typ_Tag);
5842                   Prepend_To (Component_Associations (N),
5843                     Make_Component_Association (Loc,
5844                       Choices    => New_List (Tag_Name),
5845                       Expression => Conv_Node));
5846                end;
5847             end if;
5848          end if;
5849       end if;
5850
5851    end Expand_Record_Aggregate;
5852
5853    ----------------------------
5854    -- Has_Default_Init_Comps --
5855    ----------------------------
5856
5857    function Has_Default_Init_Comps (N : Node_Id) return Boolean is
5858       Comps : constant List_Id := Component_Associations (N);
5859       C     : Node_Id;
5860       Expr  : Node_Id;
5861    begin
5862       pragma Assert (Nkind_In (N, N_Aggregate, N_Extension_Aggregate));
5863
5864       if No (Comps) then
5865          return False;
5866       end if;
5867
5868       if Has_Self_Reference (N) then
5869          return True;
5870       end if;
5871
5872       --  Check if any direct component has default initialized components
5873
5874       C := First (Comps);
5875       while Present (C) loop
5876          if Box_Present (C) then
5877             return True;
5878          end if;
5879
5880          Next (C);
5881       end loop;
5882
5883       --  Recursive call in case of aggregate expression
5884
5885       C := First (Comps);
5886       while Present (C) loop
5887          Expr := Expression (C);
5888
5889          if Present (Expr)
5890            and then
5891              Nkind_In (Expr, N_Aggregate, N_Extension_Aggregate)
5892            and then Has_Default_Init_Comps (Expr)
5893          then
5894             return True;
5895          end if;
5896
5897          Next (C);
5898       end loop;
5899
5900       return False;
5901    end Has_Default_Init_Comps;
5902
5903    --------------------------
5904    -- Is_Delayed_Aggregate --
5905    --------------------------
5906
5907    function Is_Delayed_Aggregate (N : Node_Id) return Boolean is
5908       Node : Node_Id   := N;
5909       Kind : Node_Kind := Nkind (Node);
5910
5911    begin
5912       if Kind = N_Qualified_Expression then
5913          Node := Expression (Node);
5914          Kind := Nkind (Node);
5915       end if;
5916
5917       if Kind /= N_Aggregate and then Kind /= N_Extension_Aggregate then
5918          return False;
5919       else
5920          return Expansion_Delayed (Node);
5921       end if;
5922    end Is_Delayed_Aggregate;
5923
5924    ----------------------------------------
5925    -- Is_Static_Dispatch_Table_Aggregate --
5926    ----------------------------------------
5927
5928    function Is_Static_Dispatch_Table_Aggregate (N : Node_Id) return Boolean is
5929       Typ : constant Entity_Id := Base_Type (Etype (N));
5930
5931    begin
5932       return Static_Dispatch_Tables
5933         and then Tagged_Type_Expansion
5934         and then RTU_Loaded (Ada_Tags)
5935
5936          --  Avoid circularity when rebuilding the compiler
5937
5938         and then Cunit_Entity (Get_Source_Unit (N)) /= RTU_Entity (Ada_Tags)
5939         and then (Typ = RTE (RE_Dispatch_Table_Wrapper)
5940                     or else
5941                   Typ = RTE (RE_Address_Array)
5942                     or else
5943                   Typ = RTE (RE_Type_Specific_Data)
5944                     or else
5945                   Typ = RTE (RE_Tag_Table)
5946                     or else
5947                   (RTE_Available (RE_Interface_Data)
5948                      and then Typ = RTE (RE_Interface_Data))
5949                     or else
5950                   (RTE_Available (RE_Interfaces_Array)
5951                      and then Typ = RTE (RE_Interfaces_Array))
5952                     or else
5953                   (RTE_Available (RE_Interface_Data_Element)
5954                      and then Typ = RTE (RE_Interface_Data_Element)));
5955    end Is_Static_Dispatch_Table_Aggregate;
5956
5957    --------------------
5958    -- Late_Expansion --
5959    --------------------
5960
5961    function Late_Expansion
5962      (N      : Node_Id;
5963       Typ    : Entity_Id;
5964       Target : Node_Id;
5965       Flist  : Node_Id   := Empty;
5966       Obj    : Entity_Id := Empty) return List_Id
5967    is
5968    begin
5969       if Is_Record_Type (Etype (N)) then
5970          return Build_Record_Aggr_Code (N, Typ, Target, Flist, Obj);
5971
5972       else pragma Assert (Is_Array_Type (Etype (N)));
5973          return
5974            Build_Array_Aggr_Code
5975              (N           => N,
5976               Ctype       => Component_Type (Etype (N)),
5977               Index       => First_Index (Typ),
5978               Into        => Target,
5979               Scalar_Comp => Is_Scalar_Type (Component_Type (Typ)),
5980               Indices     => No_List,
5981               Flist       => Flist);
5982       end if;
5983    end Late_Expansion;
5984
5985    ----------------------------------
5986    -- Make_OK_Assignment_Statement --
5987    ----------------------------------
5988
5989    function Make_OK_Assignment_Statement
5990      (Sloc       : Source_Ptr;
5991       Name       : Node_Id;
5992       Expression : Node_Id) return Node_Id
5993    is
5994    begin
5995       Set_Assignment_OK (Name);
5996
5997       return Make_Assignment_Statement (Sloc, Name, Expression);
5998    end Make_OK_Assignment_Statement;
5999
6000    -----------------------
6001    -- Number_Of_Choices --
6002    -----------------------
6003
6004    function Number_Of_Choices (N : Node_Id) return Nat is
6005       Assoc  : Node_Id;
6006       Choice : Node_Id;
6007
6008       Nb_Choices : Nat := 0;
6009
6010    begin
6011       if Present (Expressions (N)) then
6012          return 0;
6013       end if;
6014
6015       Assoc := First (Component_Associations (N));
6016       while Present (Assoc) loop
6017          Choice := First (Choices (Assoc));
6018          while Present (Choice) loop
6019             if Nkind (Choice) /= N_Others_Choice then
6020                Nb_Choices := Nb_Choices + 1;
6021             end if;
6022
6023             Next (Choice);
6024          end loop;
6025
6026          Next (Assoc);
6027       end loop;
6028
6029       return Nb_Choices;
6030    end Number_Of_Choices;
6031
6032    ------------------------------------
6033    -- Packed_Array_Aggregate_Handled --
6034    ------------------------------------
6035
6036    --  The current version of this procedure will handle at compile time
6037    --  any array aggregate that meets these conditions:
6038
6039    --    One dimensional, bit packed
6040    --    Underlying packed type is modular type
6041    --    Bounds are within 32-bit Int range
6042    --    All bounds and values are static
6043
6044    function Packed_Array_Aggregate_Handled (N : Node_Id) return Boolean is
6045       Loc  : constant Source_Ptr := Sloc (N);
6046       Typ  : constant Entity_Id  := Etype (N);
6047       Ctyp : constant Entity_Id  := Component_Type (Typ);
6048
6049       Not_Handled : exception;
6050       --  Exception raised if this aggregate cannot be handled
6051
6052    begin
6053       --  For now, handle only one dimensional bit packed arrays
6054
6055       if not Is_Bit_Packed_Array (Typ)
6056         or else Number_Dimensions (Typ) > 1
6057         or else not Is_Modular_Integer_Type (Packed_Array_Type (Typ))
6058       then
6059          return False;
6060       end if;
6061
6062       if not Is_Scalar_Type (Component_Type (Typ))
6063         and then Has_Non_Standard_Rep (Component_Type (Typ))
6064       then
6065          return False;
6066       end if;
6067
6068       declare
6069          Csiz  : constant Nat := UI_To_Int (Component_Size (Typ));
6070
6071          Lo : Node_Id;
6072          Hi : Node_Id;
6073          --  Bounds of index type
6074
6075          Lob : Uint;
6076          Hib : Uint;
6077          --  Values of bounds if compile time known
6078
6079          function Get_Component_Val (N : Node_Id) return Uint;
6080          --  Given a expression value N of the component type Ctyp, returns a
6081          --  value of Csiz (component size) bits representing this value. If
6082          --  the value is non-static or any other reason exists why the value
6083          --  cannot be returned, then Not_Handled is raised.
6084
6085          -----------------------
6086          -- Get_Component_Val --
6087          -----------------------
6088
6089          function Get_Component_Val (N : Node_Id) return Uint is
6090             Val  : Uint;
6091
6092          begin
6093             --  We have to analyze the expression here before doing any further
6094             --  processing here. The analysis of such expressions is deferred
6095             --  till expansion to prevent some problems of premature analysis.
6096
6097             Analyze_And_Resolve (N, Ctyp);
6098
6099             --  Must have a compile time value. String literals have to be
6100             --  converted into temporaries as well, because they cannot easily
6101             --  be converted into their bit representation.
6102
6103             if not Compile_Time_Known_Value (N)
6104               or else Nkind (N) = N_String_Literal
6105             then
6106                raise Not_Handled;
6107             end if;
6108
6109             Val := Expr_Rep_Value (N);
6110
6111             --  Adjust for bias, and strip proper number of bits
6112
6113             if Has_Biased_Representation (Ctyp) then
6114                Val := Val - Expr_Value (Type_Low_Bound (Ctyp));
6115             end if;
6116
6117             return Val mod Uint_2 ** Csiz;
6118          end Get_Component_Val;
6119
6120       --  Here we know we have a one dimensional bit packed array
6121
6122       begin
6123          Get_Index_Bounds (First_Index (Typ), Lo, Hi);
6124
6125          --  Cannot do anything if bounds are dynamic
6126
6127          if not Compile_Time_Known_Value (Lo)
6128               or else
6129             not Compile_Time_Known_Value (Hi)
6130          then
6131             return False;
6132          end if;
6133
6134          --  Or are silly out of range of int bounds
6135
6136          Lob := Expr_Value (Lo);
6137          Hib := Expr_Value (Hi);
6138
6139          if not UI_Is_In_Int_Range (Lob)
6140               or else
6141             not UI_Is_In_Int_Range (Hib)
6142          then
6143             return False;
6144          end if;
6145
6146          --  At this stage we have a suitable aggregate for handling at compile
6147          --  time (the only remaining checks are that the values of expressions
6148          --  in the aggregate are compile time known (check is performed by
6149          --  Get_Component_Val), and that any subtypes or ranges are statically
6150          --  known.
6151
6152          --  If the aggregate is not fully positional at this stage, then
6153          --  convert it to positional form. Either this will fail, in which
6154          --  case we can do nothing, or it will succeed, in which case we have
6155          --  succeeded in handling the aggregate, or it will stay an aggregate,
6156          --  in which case we have failed to handle this case.
6157
6158          if Present (Component_Associations (N)) then
6159             Convert_To_Positional
6160              (N, Max_Others_Replicate => 64, Handle_Bit_Packed => True);
6161             return Nkind (N) /= N_Aggregate;
6162          end if;
6163
6164          --  Otherwise we are all positional, so convert to proper value
6165
6166          declare
6167             Lov : constant Int := UI_To_Int (Lob);
6168             Hiv : constant Int := UI_To_Int (Hib);
6169
6170             Len : constant Nat := Int'Max (0, Hiv - Lov + 1);
6171             --  The length of the array (number of elements)
6172
6173             Aggregate_Val : Uint;
6174             --  Value of aggregate. The value is set in the low order bits of
6175             --  this value. For the little-endian case, the values are stored
6176             --  from low-order to high-order and for the big-endian case the
6177             --  values are stored from high-order to low-order. Note that gigi
6178             --  will take care of the conversions to left justify the value in
6179             --  the big endian case (because of left justified modular type
6180             --  processing), so we do not have to worry about that here.
6181
6182             Lit : Node_Id;
6183             --  Integer literal for resulting constructed value
6184
6185             Shift : Nat;
6186             --  Shift count from low order for next value
6187
6188             Incr : Int;
6189             --  Shift increment for loop
6190
6191             Expr : Node_Id;
6192             --  Next expression from positional parameters of aggregate
6193
6194          begin
6195             --  For little endian, we fill up the low order bits of the target
6196             --  value. For big endian we fill up the high order bits of the
6197             --  target value (which is a left justified modular value).
6198
6199             if Bytes_Big_Endian xor Debug_Flag_8 then
6200                Shift := Csiz * (Len - 1);
6201                Incr  := -Csiz;
6202             else
6203                Shift := 0;
6204                Incr  := +Csiz;
6205             end if;
6206
6207             --  Loop to set the values
6208
6209             if Len = 0 then
6210                Aggregate_Val := Uint_0;
6211             else
6212                Expr := First (Expressions (N));
6213                Aggregate_Val := Get_Component_Val (Expr) * Uint_2 ** Shift;
6214
6215                for J in 2 .. Len loop
6216                   Shift := Shift + Incr;
6217                   Next (Expr);
6218                   Aggregate_Val :=
6219                     Aggregate_Val + Get_Component_Val (Expr) * Uint_2 ** Shift;
6220                end loop;
6221             end if;
6222
6223             --  Now we can rewrite with the proper value
6224
6225             Lit :=
6226               Make_Integer_Literal (Loc,
6227                 Intval => Aggregate_Val);
6228             Set_Print_In_Hex (Lit);
6229
6230             --  Construct the expression using this literal. Note that it is
6231             --  important to qualify the literal with its proper modular type
6232             --  since universal integer does not have the required range and
6233             --  also this is a left justified modular type, which is important
6234             --  in the big-endian case.
6235
6236             Rewrite (N,
6237               Unchecked_Convert_To (Typ,
6238                 Make_Qualified_Expression (Loc,
6239                   Subtype_Mark =>
6240                     New_Occurrence_Of (Packed_Array_Type (Typ), Loc),
6241                   Expression   => Lit)));
6242
6243             Analyze_And_Resolve (N, Typ);
6244             return True;
6245          end;
6246       end;
6247
6248    exception
6249       when Not_Handled =>
6250          return False;
6251    end Packed_Array_Aggregate_Handled;
6252
6253    ----------------------------
6254    -- Has_Mutable_Components --
6255    ----------------------------
6256
6257    function Has_Mutable_Components (Typ : Entity_Id) return Boolean is
6258       Comp : Entity_Id;
6259
6260    begin
6261       Comp := First_Component (Typ);
6262       while Present (Comp) loop
6263          if Is_Record_Type (Etype (Comp))
6264            and then Has_Discriminants (Etype (Comp))
6265            and then not Is_Constrained (Etype (Comp))
6266          then
6267             return True;
6268          end if;
6269
6270          Next_Component (Comp);
6271       end loop;
6272
6273       return False;
6274    end Has_Mutable_Components;
6275
6276    ------------------------------
6277    -- Initialize_Discriminants --
6278    ------------------------------
6279
6280    procedure Initialize_Discriminants (N : Node_Id; Typ : Entity_Id) is
6281       Loc  : constant Source_Ptr := Sloc (N);
6282       Bas  : constant Entity_Id  := Base_Type (Typ);
6283       Par  : constant Entity_Id  := Etype (Bas);
6284       Decl : constant Node_Id    := Parent (Par);
6285       Ref  : Node_Id;
6286
6287    begin
6288       if Is_Tagged_Type (Bas)
6289         and then Is_Derived_Type (Bas)
6290         and then Has_Discriminants (Par)
6291         and then Has_Discriminants (Bas)
6292         and then Number_Discriminants (Bas) /= Number_Discriminants (Par)
6293         and then Nkind (Decl) = N_Full_Type_Declaration
6294         and then Nkind (Type_Definition (Decl)) = N_Record_Definition
6295         and then Present
6296           (Variant_Part (Component_List (Type_Definition (Decl))))
6297         and then Nkind (N) /= N_Extension_Aggregate
6298       then
6299
6300          --   Call init proc to set discriminants.
6301          --   There should eventually be a special procedure for this ???
6302
6303          Ref := New_Reference_To (Defining_Identifier (N), Loc);
6304          Insert_Actions_After (N,
6305            Build_Initialization_Call (Sloc (N), Ref, Typ));
6306       end if;
6307    end Initialize_Discriminants;
6308
6309    ----------------
6310    -- Must_Slide --
6311    ----------------
6312
6313    function Must_Slide
6314      (Obj_Type : Entity_Id;
6315       Typ      : Entity_Id) return Boolean
6316    is
6317       L1, L2, H1, H2 : Node_Id;
6318    begin
6319       --  No sliding if the type of the object is not established yet, if it is
6320       --  an unconstrained type whose actual subtype comes from the aggregate,
6321       --  or if the two types are identical.
6322
6323       if not Is_Array_Type (Obj_Type) then
6324          return False;
6325
6326       elsif not Is_Constrained (Obj_Type) then
6327          return False;
6328
6329       elsif Typ = Obj_Type then
6330          return False;
6331
6332       else
6333          --  Sliding can only occur along the first dimension
6334
6335          Get_Index_Bounds (First_Index (Typ), L1, H1);
6336          Get_Index_Bounds (First_Index (Obj_Type), L2, H2);
6337
6338          if not Is_Static_Expression (L1)
6339            or else not Is_Static_Expression (L2)
6340            or else not Is_Static_Expression (H1)
6341            or else not Is_Static_Expression (H2)
6342          then
6343             return False;
6344          else
6345             return Expr_Value (L1) /= Expr_Value (L2)
6346               or else Expr_Value (H1) /= Expr_Value (H2);
6347          end if;
6348       end if;
6349    end Must_Slide;
6350
6351    ---------------------------
6352    -- Safe_Slice_Assignment --
6353    ---------------------------
6354
6355    function Safe_Slice_Assignment (N : Node_Id) return Boolean is
6356       Loc        : constant Source_Ptr := Sloc (Parent (N));
6357       Pref       : constant Node_Id    := Prefix (Name (Parent (N)));
6358       Range_Node : constant Node_Id    := Discrete_Range (Name (Parent (N)));
6359       Expr       : Node_Id;
6360       L_J        : Entity_Id;
6361       L_Iter     : Node_Id;
6362       L_Body     : Node_Id;
6363       Stat       : Node_Id;
6364
6365    begin
6366       --  Generate: for J in Range loop Pref (J) := Expr; end loop;
6367
6368       if Comes_From_Source (N)
6369         and then No (Expressions (N))
6370         and then Nkind (First (Choices (First (Component_Associations (N)))))
6371                    = N_Others_Choice
6372       then
6373          Expr :=
6374            Expression (First (Component_Associations (N)));
6375          L_J := Make_Defining_Identifier (Loc, New_Internal_Name ('J'));
6376
6377          L_Iter :=
6378            Make_Iteration_Scheme (Loc,
6379              Loop_Parameter_Specification =>
6380                Make_Loop_Parameter_Specification
6381                  (Loc,
6382                   Defining_Identifier         => L_J,
6383                   Discrete_Subtype_Definition => Relocate_Node (Range_Node)));
6384
6385          L_Body :=
6386            Make_Assignment_Statement (Loc,
6387               Name =>
6388                 Make_Indexed_Component (Loc,
6389                   Prefix      => Relocate_Node (Pref),
6390                   Expressions => New_List (New_Occurrence_Of (L_J, Loc))),
6391                Expression => Relocate_Node (Expr));
6392
6393          --  Construct the final loop
6394
6395          Stat :=
6396            Make_Implicit_Loop_Statement
6397              (Node             => Parent (N),
6398               Identifier       => Empty,
6399               Iteration_Scheme => L_Iter,
6400               Statements       => New_List (L_Body));
6401
6402          --  Set type of aggregate to be type of lhs in assignment,
6403          --  to suppress redundant length checks.
6404
6405          Set_Etype (N, Etype (Name (Parent (N))));
6406
6407          Rewrite (Parent (N), Stat);
6408          Analyze (Parent (N));
6409          return True;
6410
6411       else
6412          return False;
6413       end if;
6414    end Safe_Slice_Assignment;
6415
6416    ---------------------
6417    -- Sort_Case_Table --
6418    ---------------------
6419
6420    procedure Sort_Case_Table (Case_Table : in out Case_Table_Type) is
6421       L : constant Int := Case_Table'First;
6422       U : constant Int := Case_Table'Last;
6423       K : Int;
6424       J : Int;
6425       T : Case_Bounds;
6426
6427    begin
6428       K := L;
6429       while K /= U loop
6430          T := Case_Table (K + 1);
6431
6432          J := K + 1;
6433          while J /= L
6434            and then Expr_Value (Case_Table (J - 1).Choice_Lo) >
6435                     Expr_Value (T.Choice_Lo)
6436          loop
6437             Case_Table (J) := Case_Table (J - 1);
6438             J := J - 1;
6439          end loop;
6440
6441          Case_Table (J) := T;
6442          K := K + 1;
6443       end loop;
6444    end Sort_Case_Table;
6445
6446    ----------------------------
6447    -- Static_Array_Aggregate --
6448    ----------------------------
6449
6450    function Static_Array_Aggregate (N : Node_Id) return Boolean is
6451       Bounds : constant Node_Id := Aggregate_Bounds (N);
6452
6453       Typ       : constant Entity_Id := Etype (N);
6454       Comp_Type : constant Entity_Id := Component_Type (Typ);
6455       Agg       : Node_Id;
6456       Expr      : Node_Id;
6457       Lo        : Node_Id;
6458       Hi        : Node_Id;
6459
6460    begin
6461       if Is_Tagged_Type (Typ)
6462         or else Is_Controlled (Typ)
6463         or else Is_Packed (Typ)
6464       then
6465          return False;
6466       end if;
6467
6468       if Present (Bounds)
6469         and then Nkind (Bounds) = N_Range
6470         and then Nkind (Low_Bound  (Bounds)) = N_Integer_Literal
6471         and then Nkind (High_Bound (Bounds)) = N_Integer_Literal
6472       then
6473          Lo := Low_Bound  (Bounds);
6474          Hi := High_Bound (Bounds);
6475
6476          if No (Component_Associations (N)) then
6477
6478             --  Verify that all components are static integers
6479
6480             Expr := First (Expressions (N));
6481             while Present (Expr) loop
6482                if Nkind (Expr) /= N_Integer_Literal then
6483                   return False;
6484                end if;
6485
6486                Next (Expr);
6487             end loop;
6488
6489             return True;
6490
6491          else
6492             --  We allow only a single named association, either a static
6493             --  range or an others_clause, with a static expression.
6494
6495             Expr := First (Component_Associations (N));
6496
6497             if Present (Expressions (N)) then
6498                return False;
6499
6500             elsif Present (Next (Expr)) then
6501                return False;
6502
6503             elsif Present (Next (First (Choices (Expr)))) then
6504                return False;
6505
6506             else
6507                --  The aggregate is static if all components are literals,
6508                --  or else all its components are static aggregates for the
6509                --  component type. We also limit the size of a static aggregate
6510                --  to prevent runaway static expressions.
6511
6512                if Is_Array_Type (Comp_Type)
6513                  or else Is_Record_Type (Comp_Type)
6514                then
6515                   if Nkind (Expression (Expr)) /= N_Aggregate
6516                     or else
6517                       not Compile_Time_Known_Aggregate (Expression (Expr))
6518                   then
6519                      return False;
6520                   end if;
6521
6522                elsif Nkind (Expression (Expr)) /= N_Integer_Literal then
6523                   return False;
6524
6525                elsif not Aggr_Size_OK (N, Typ) then
6526                   return False;
6527                end if;
6528
6529                --  Create a positional aggregate with the right number of
6530                --  copies of the expression.
6531
6532                Agg := Make_Aggregate (Sloc (N), New_List, No_List);
6533
6534                for I in UI_To_Int (Intval (Lo)) .. UI_To_Int (Intval (Hi))
6535                loop
6536                   Append_To
6537                     (Expressions (Agg), New_Copy (Expression (Expr)));
6538
6539                   --  The copied expression must be analyzed and resolved.
6540                   --  Besides setting the type, this ensures that static
6541                   --  expressions are appropriately marked as such.
6542
6543                   Analyze_And_Resolve
6544                     (Last (Expressions (Agg)), Component_Type (Typ));
6545                end loop;
6546
6547                Set_Aggregate_Bounds (Agg, Bounds);
6548                Set_Etype (Agg, Typ);
6549                Set_Analyzed (Agg);
6550                Rewrite (N, Agg);
6551                Set_Compile_Time_Known_Aggregate (N);
6552
6553                return True;
6554             end if;
6555          end if;
6556
6557       else
6558          return False;
6559       end if;
6560    end Static_Array_Aggregate;
6561
6562 end Exp_Aggr;