OSDN Git Service

2011-09-01 Robert Dewar <dewar@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / sem_aggr.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             S E M _ A G G R                              --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2011, Free Software Foundation, Inc.         --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 3,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT; see file COPYING3.  If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license.          --
20 --                                                                          --
21 -- GNAT was originally developed  by the GNAT team at  New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
23 --                                                                          --
24 ------------------------------------------------------------------------------
25
26 with Atree;    use Atree;
27 with Checks;   use Checks;
28 with Einfo;    use Einfo;
29 with Elists;   use Elists;
30 with Errout;   use Errout;
31 with Expander; use Expander;
32 with Exp_Tss;  use Exp_Tss;
33 with Exp_Util; use Exp_Util;
34 with Freeze;   use Freeze;
35 with Itypes;   use Itypes;
36 with Lib;      use Lib;
37 with Lib.Xref; use Lib.Xref;
38 with Namet;    use Namet;
39 with Namet.Sp; use Namet.Sp;
40 with Nmake;    use Nmake;
41 with Nlists;   use Nlists;
42 with Opt;      use Opt;
43 with Restrict; use Restrict;
44 with Sem;      use Sem;
45 with Sem_Aux;  use Sem_Aux;
46 with Sem_Cat;  use Sem_Cat;
47 with Sem_Ch3;  use Sem_Ch3;
48 with Sem_Ch8;  use Sem_Ch8;
49 with Sem_Ch13; use Sem_Ch13;
50 with Sem_Eval; use Sem_Eval;
51 with Sem_Res;  use Sem_Res;
52 with Sem_Util; use Sem_Util;
53 with Sem_Type; use Sem_Type;
54 with Sem_Warn; use Sem_Warn;
55 with Sinfo;    use Sinfo;
56 with Snames;   use Snames;
57 with Stringt;  use Stringt;
58 with Stand;    use Stand;
59 with Style;    use Style;
60 with Targparm; use Targparm;
61 with Tbuild;   use Tbuild;
62 with Uintp;    use Uintp;
63
64 package body Sem_Aggr is
65
66    type Case_Bounds is record
67      Choice_Lo   : Node_Id;
68      Choice_Hi   : Node_Id;
69      Choice_Node : Node_Id;
70    end record;
71
72    type Case_Table_Type is array (Nat range <>) of Case_Bounds;
73    --  Table type used by Check_Case_Choices procedure
74
75    -----------------------
76    -- Local Subprograms --
77    -----------------------
78
79    procedure Sort_Case_Table (Case_Table : in out Case_Table_Type);
80    --  Sort the Case Table using the Lower Bound of each Choice as the key.
81    --  A simple insertion sort is used since the number of choices in a case
82    --  statement of variant part will usually be small and probably in near
83    --  sorted order.
84
85    procedure Check_Can_Never_Be_Null (Typ : Entity_Id; Expr : Node_Id);
86    --  Ada 2005 (AI-231): Check bad usage of null for a component for which
87    --  null exclusion (NOT NULL) is specified. Typ can be an E_Array_Type for
88    --  the array case (the component type of the array will be used) or an
89    --  E_Component/E_Discriminant entity in the record case, in which case the
90    --  type of the component will be used for the test. If Typ is any other
91    --  kind of entity, the call is ignored. Expr is the component node in the
92    --  aggregate which is known to have a null value. A warning message will be
93    --  issued if the component is null excluding.
94    --
95    --  It would be better to pass the proper type for Typ ???
96
97    procedure Check_Expr_OK_In_Limited_Aggregate (Expr : Node_Id);
98    --  Check that Expr is either not limited or else is one of the cases of
99    --  expressions allowed for a limited component association (namely, an
100    --  aggregate, function call, or <> notation). Report error for violations.
101
102    procedure Check_Qualified_Aggregate (Level : Nat; Expr : Node_Id);
103    --  Given aggregate Expr, check that sub-aggregates of Expr that are nested
104    --  at Level are qualified. If Level = 0, this applies to Expr directly.
105    --  Only issue errors in formal verification mode.
106
107    function Is_Top_Level_Aggregate (Expr : Node_Id) return Boolean;
108    --  Return True of Expr is an aggregate not contained directly in another
109    --  aggregate.
110
111    ------------------------------------------------------
112    -- Subprograms used for RECORD AGGREGATE Processing --
113    ------------------------------------------------------
114
115    procedure Resolve_Record_Aggregate (N : Node_Id; Typ : Entity_Id);
116    --  This procedure performs all the semantic checks required for record
117    --  aggregates. Note that for aggregates analysis and resolution go
118    --  hand in hand. Aggregate analysis has been delayed up to here and
119    --  it is done while resolving the aggregate.
120    --
121    --    N is the N_Aggregate node.
122    --    Typ is the record type for the aggregate resolution
123    --
124    --  While performing the semantic checks, this procedure builds a new
125    --  Component_Association_List where each record field appears alone in a
126    --  Component_Choice_List along with its corresponding expression. The
127    --  record fields in the Component_Association_List appear in the same order
128    --  in which they appear in the record type Typ.
129    --
130    --  Once this new Component_Association_List is built and all the semantic
131    --  checks performed, the original aggregate subtree is replaced with the
132    --  new named record aggregate just built. Note that subtree substitution is
133    --  performed with Rewrite so as to be able to retrieve the original
134    --  aggregate.
135    --
136    --  The aggregate subtree manipulation performed by Resolve_Record_Aggregate
137    --  yields the aggregate format expected by Gigi. Typically, this kind of
138    --  tree manipulations are done in the expander. However, because the
139    --  semantic checks that need to be performed on record aggregates really go
140    --  hand in hand with the record aggregate normalization, the aggregate
141    --  subtree transformation is performed during resolution rather than
142    --  expansion. Had we decided otherwise we would have had to duplicate most
143    --  of the code in the expansion procedure Expand_Record_Aggregate. Note,
144    --  however, that all the expansion concerning aggregates for tagged records
145    --  is done in Expand_Record_Aggregate.
146    --
147    --  The algorithm of Resolve_Record_Aggregate proceeds as follows:
148    --
149    --  1. Make sure that the record type against which the record aggregate
150    --     has to be resolved is not abstract. Furthermore if the type is a
151    --     null aggregate make sure the input aggregate N is also null.
152    --
153    --  2. Verify that the structure of the aggregate is that of a record
154    --     aggregate. Specifically, look for component associations and ensure
155    --     that each choice list only has identifiers or the N_Others_Choice
156    --     node. Also make sure that if present, the N_Others_Choice occurs
157    --     last and by itself.
158    --
159    --  3. If Typ contains discriminants, the values for each discriminant is
160    --     looked for. If the record type Typ has variants, we check that the
161    --     expressions corresponding to each discriminant ruling the (possibly
162    --     nested) variant parts of Typ, are static. This allows us to determine
163    --     the variant parts to which the rest of the aggregate must conform.
164    --     The names of discriminants with their values are saved in a new
165    --     association list, New_Assoc_List which is later augmented with the
166    --     names and values of the remaining components in the record type.
167    --
168    --     During this phase we also make sure that every discriminant is
169    --     assigned exactly one value. Note that when several values for a given
170    --     discriminant are found, semantic processing continues looking for
171    --     further errors. In this case it's the first discriminant value found
172    --     which we will be recorded.
173    --
174    --     IMPORTANT NOTE: For derived tagged types this procedure expects
175    --     First_Discriminant and Next_Discriminant to give the correct list
176    --     of discriminants, in the correct order.
177    --
178    --  4. After all the discriminant values have been gathered, we can set the
179    --     Etype of the record aggregate. If Typ contains no discriminants this
180    --     is straightforward: the Etype of N is just Typ, otherwise a new
181    --     implicit constrained subtype of Typ is built to be the Etype of N.
182    --
183    --  5. Gather the remaining record components according to the discriminant
184    --     values. This involves recursively traversing the record type
185    --     structure to see what variants are selected by the given discriminant
186    --     values. This processing is a little more convoluted if Typ is a
187    --     derived tagged types since we need to retrieve the record structure
188    --     of all the ancestors of Typ.
189    --
190    --  6. After gathering the record components we look for their values in the
191    --     record aggregate and emit appropriate error messages should we not
192    --     find such values or should they be duplicated.
193    --
194    --  7. We then make sure no illegal component names appear in the record
195    --     aggregate and make sure that the type of the record components
196    --     appearing in a same choice list is the same. Finally we ensure that
197    --     the others choice, if present, is used to provide the value of at
198    --     least a record component.
199    --
200    --  8. The original aggregate node is replaced with the new named aggregate
201    --     built in steps 3 through 6, as explained earlier.
202    --
203    --  Given the complexity of record aggregate resolution, the primary goal of
204    --  this routine is clarity and simplicity rather than execution and storage
205    --  efficiency. If there are only positional components in the aggregate the
206    --  running time is linear. If there are associations the running time is
207    --  still linear as long as the order of the associations is not too far off
208    --  the order of the components in the record type. If this is not the case
209    --  the running time is at worst quadratic in the size of the association
210    --  list.
211
212    procedure Check_Misspelled_Component
213      (Elements  : Elist_Id;
214       Component : Node_Id);
215    --  Give possible misspelling diagnostic if Component is likely to be a
216    --  misspelling of one of the components of the Assoc_List. This is called
217    --  by Resolve_Aggr_Expr after producing an invalid component error message.
218
219    procedure Check_Static_Discriminated_Subtype (T : Entity_Id; V : Node_Id);
220    --  An optimization: determine whether a discriminated subtype has a static
221    --  constraint, and contains array components whose length is also static,
222    --  either because they are constrained by the discriminant, or because the
223    --  original component bounds are static.
224
225    -----------------------------------------------------
226    -- Subprograms used for ARRAY AGGREGATE Processing --
227    -----------------------------------------------------
228
229    function Resolve_Array_Aggregate
230      (N              : Node_Id;
231       Index          : Node_Id;
232       Index_Constr   : Node_Id;
233       Component_Typ  : Entity_Id;
234       Others_Allowed : Boolean) return Boolean;
235    --  This procedure performs the semantic checks for an array aggregate.
236    --  True is returned if the aggregate resolution succeeds.
237    --
238    --  The procedure works by recursively checking each nested aggregate.
239    --  Specifically, after checking a sub-aggregate nested at the i-th level
240    --  we recursively check all the subaggregates at the i+1-st level (if any).
241    --  Note that for aggregates analysis and resolution go hand in hand.
242    --  Aggregate analysis has been delayed up to here and it is done while
243    --  resolving the aggregate.
244    --
245    --    N is the current N_Aggregate node to be checked.
246    --
247    --    Index is the index node corresponding to the array sub-aggregate that
248    --    we are currently checking (RM 4.3.3 (8)). Its Etype is the
249    --    corresponding index type (or subtype).
250    --
251    --    Index_Constr is the node giving the applicable index constraint if
252    --    any (RM 4.3.3 (10)). It "is a constraint provided by certain
253    --    contexts [...] that can be used to determine the bounds of the array
254    --    value specified by the aggregate". If Others_Allowed below is False
255    --    there is no applicable index constraint and this node is set to Index.
256    --
257    --    Component_Typ is the array component type.
258    --
259    --    Others_Allowed indicates whether an others choice is allowed
260    --    in the context where the top-level aggregate appeared.
261    --
262    --  The algorithm of Resolve_Array_Aggregate proceeds as follows:
263    --
264    --  1. Make sure that the others choice, if present, is by itself and
265    --     appears last in the sub-aggregate. Check that we do not have
266    --     positional and named components in the array sub-aggregate (unless
267    --     the named association is an others choice). Finally if an others
268    --     choice is present, make sure it is allowed in the aggregate context.
269    --
270    --  2. If the array sub-aggregate contains discrete_choices:
271    --
272    --     (A) Verify their validity. Specifically verify that:
273    --
274    --        (a) If a null range is present it must be the only possible
275    --            choice in the array aggregate.
276    --
277    --        (b) Ditto for a non static range.
278    --
279    --        (c) Ditto for a non static expression.
280    --
281    --        In addition this step analyzes and resolves each discrete_choice,
282    --        making sure that its type is the type of the corresponding Index.
283    --        If we are not at the lowest array aggregate level (in the case of
284    --        multi-dimensional aggregates) then invoke Resolve_Array_Aggregate
285    --        recursively on each component expression. Otherwise, resolve the
286    --        bottom level component expressions against the expected component
287    --        type ONLY IF the component corresponds to a single discrete choice
288    --        which is not an others choice (to see why read the DELAYED
289    --        COMPONENT RESOLUTION below).
290    --
291    --     (B) Determine the bounds of the sub-aggregate and lowest and
292    --         highest choice values.
293    --
294    --  3. For positional aggregates:
295    --
296    --     (A) Loop over the component expressions either recursively invoking
297    --         Resolve_Array_Aggregate on each of these for multi-dimensional
298    --         array aggregates or resolving the bottom level component
299    --         expressions against the expected component type.
300    --
301    --     (B) Determine the bounds of the positional sub-aggregates.
302    --
303    --  4. Try to determine statically whether the evaluation of the array
304    --     sub-aggregate raises Constraint_Error. If yes emit proper
305    --     warnings. The precise checks are the following:
306    --
307    --     (A) Check that the index range defined by aggregate bounds is
308    --         compatible with corresponding index subtype.
309    --         We also check against the base type. In fact it could be that
310    --         Low/High bounds of the base type are static whereas those of
311    --         the index subtype are not. Thus if we can statically catch
312    --         a problem with respect to the base type we are guaranteed
313    --         that the same problem will arise with the index subtype
314    --
315    --     (B) If we are dealing with a named aggregate containing an others
316    --         choice and at least one discrete choice then make sure the range
317    --         specified by the discrete choices does not overflow the
318    --         aggregate bounds. We also check against the index type and base
319    --         type bounds for the same reasons given in (A).
320    --
321    --     (C) If we are dealing with a positional aggregate with an others
322    --         choice make sure the number of positional elements specified
323    --         does not overflow the aggregate bounds. We also check against
324    --         the index type and base type bounds as mentioned in (A).
325    --
326    --     Finally construct an N_Range node giving the sub-aggregate bounds.
327    --     Set the Aggregate_Bounds field of the sub-aggregate to be this
328    --     N_Range. The routine Array_Aggr_Subtype below uses such N_Ranges
329    --     to build the appropriate aggregate subtype. Aggregate_Bounds
330    --     information is needed during expansion.
331    --
332    --  DELAYED COMPONENT RESOLUTION: The resolution of bottom level component
333    --  expressions in an array aggregate may call Duplicate_Subexpr or some
334    --  other routine that inserts code just outside the outermost aggregate.
335    --  If the array aggregate contains discrete choices or an others choice,
336    --  this may be wrong. Consider for instance the following example.
337    --
338    --    type Rec is record
339    --       V : Integer := 0;
340    --    end record;
341    --
342    --    type Acc_Rec is access Rec;
343    --    Arr : array (1..3) of Acc_Rec := (1 .. 3 => new Rec);
344    --
345    --  Then the transformation of "new Rec" that occurs during resolution
346    --  entails the following code modifications
347    --
348    --    P7b : constant Acc_Rec := new Rec;
349    --    RecIP (P7b.all);
350    --    Arr : array (1..3) of Acc_Rec := (1 .. 3 => P7b);
351    --
352    --  This code transformation is clearly wrong, since we need to call
353    --  "new Rec" for each of the 3 array elements. To avoid this problem we
354    --  delay resolution of the components of non positional array aggregates
355    --  to the expansion phase. As an optimization, if the discrete choice
356    --  specifies a single value we do not delay resolution.
357
358    function Array_Aggr_Subtype (N : Node_Id; Typ : Node_Id) return Entity_Id;
359    --  This routine returns the type or subtype of an array aggregate.
360    --
361    --    N is the array aggregate node whose type we return.
362    --
363    --    Typ is the context type in which N occurs.
364    --
365    --  This routine creates an implicit array subtype whose bounds are
366    --  those defined by the aggregate. When this routine is invoked
367    --  Resolve_Array_Aggregate has already processed aggregate N. Thus the
368    --  Aggregate_Bounds of each sub-aggregate, is an N_Range node giving the
369    --  sub-aggregate bounds. When building the aggregate itype, this function
370    --  traverses the array aggregate N collecting such Aggregate_Bounds and
371    --  constructs the proper array aggregate itype.
372    --
373    --  Note that in the case of multidimensional aggregates each inner
374    --  sub-aggregate corresponding to a given array dimension, may provide a
375    --  different bounds. If it is possible to determine statically that
376    --  some sub-aggregates corresponding to the same index do not have the
377    --  same bounds, then a warning is emitted. If such check is not possible
378    --  statically (because some sub-aggregate bounds are dynamic expressions)
379    --  then this job is left to the expander. In all cases the particular
380    --  bounds that this function will chose for a given dimension is the first
381    --  N_Range node for a sub-aggregate corresponding to that dimension.
382    --
383    --  Note that the Raises_Constraint_Error flag of an array aggregate
384    --  whose evaluation is determined to raise CE by Resolve_Array_Aggregate,
385    --  is set in Resolve_Array_Aggregate but the aggregate is not
386    --  immediately replaced with a raise CE. In fact, Array_Aggr_Subtype must
387    --  first construct the proper itype for the aggregate (Gigi needs
388    --  this). After constructing the proper itype we will eventually  replace
389    --  the top-level aggregate with a raise CE (done in Resolve_Aggregate).
390    --  Of course in cases such as:
391    --
392    --     type Arr is array (integer range <>) of Integer;
393    --     A : Arr := (positive range -1 .. 2 => 0);
394    --
395    --  The bounds of the aggregate itype are cooked up to look reasonable
396    --  (in this particular case the bounds will be 1 .. 2).
397
398    procedure Aggregate_Constraint_Checks
399      (Exp       : Node_Id;
400       Check_Typ : Entity_Id);
401    --  Checks expression Exp against subtype Check_Typ. If Exp is an
402    --  aggregate and Check_Typ a constrained record type with discriminants,
403    --  we generate the appropriate discriminant checks. If Exp is an array
404    --  aggregate then emit the appropriate length checks. If Exp is a scalar
405    --  type, or a string literal, Exp is changed into Check_Typ'(Exp) to
406    --  ensure that range checks are performed at run time.
407
408    procedure Make_String_Into_Aggregate (N : Node_Id);
409    --  A string literal can appear in  a context in  which a one dimensional
410    --  array of characters is expected. This procedure simply rewrites the
411    --  string as an aggregate, prior to resolution.
412
413    ---------------------------------
414    -- Aggregate_Constraint_Checks --
415    ---------------------------------
416
417    procedure Aggregate_Constraint_Checks
418      (Exp       : Node_Id;
419       Check_Typ : Entity_Id)
420    is
421       Exp_Typ : constant Entity_Id  := Etype (Exp);
422
423    begin
424       if Raises_Constraint_Error (Exp) then
425          return;
426       end if;
427
428       --  Ada 2005 (AI-230): Generate a conversion to an anonymous access
429       --  component's type to force the appropriate accessibility checks.
430
431       --  Ada 2005 (AI-231): Generate conversion to the null-excluding
432       --  type to force the corresponding run-time check
433
434       if Is_Access_Type (Check_Typ)
435         and then ((Is_Local_Anonymous_Access (Check_Typ))
436                     or else (Can_Never_Be_Null (Check_Typ)
437                                and then not Can_Never_Be_Null (Exp_Typ)))
438       then
439          Rewrite (Exp, Convert_To (Check_Typ, Relocate_Node (Exp)));
440          Analyze_And_Resolve (Exp, Check_Typ);
441          Check_Unset_Reference (Exp);
442       end if;
443
444       --  This is really expansion activity, so make sure that expansion
445       --  is on and is allowed.
446
447       if not Expander_Active or else In_Spec_Expression then
448          return;
449       end if;
450
451       --  First check if we have to insert discriminant checks
452
453       if Has_Discriminants (Exp_Typ) then
454          Apply_Discriminant_Check (Exp, Check_Typ);
455
456       --  Next emit length checks for array aggregates
457
458       elsif Is_Array_Type (Exp_Typ) then
459          Apply_Length_Check (Exp, Check_Typ);
460
461       --  Finally emit scalar and string checks. If we are dealing with a
462       --  scalar literal we need to check by hand because the Etype of
463       --  literals is not necessarily correct.
464
465       elsif Is_Scalar_Type (Exp_Typ)
466         and then Compile_Time_Known_Value (Exp)
467       then
468          if Is_Out_Of_Range (Exp, Base_Type (Check_Typ)) then
469             Apply_Compile_Time_Constraint_Error
470               (Exp, "value not in range of}?", CE_Range_Check_Failed,
471                Ent => Base_Type (Check_Typ),
472                Typ => Base_Type (Check_Typ));
473
474          elsif Is_Out_Of_Range (Exp, Check_Typ) then
475             Apply_Compile_Time_Constraint_Error
476               (Exp, "value not in range of}?", CE_Range_Check_Failed,
477                Ent => Check_Typ,
478                Typ => Check_Typ);
479
480          elsif not Range_Checks_Suppressed (Check_Typ) then
481             Apply_Scalar_Range_Check (Exp, Check_Typ);
482          end if;
483
484       --  Verify that target type is also scalar, to prevent view anomalies
485       --  in instantiations.
486
487       elsif (Is_Scalar_Type (Exp_Typ)
488               or else Nkind (Exp) = N_String_Literal)
489         and then Is_Scalar_Type (Check_Typ)
490         and then Exp_Typ /= Check_Typ
491       then
492          if Is_Entity_Name (Exp)
493            and then Ekind (Entity (Exp)) = E_Constant
494          then
495             --  If expression is a constant, it is worthwhile checking whether
496             --  it is a bound of the type.
497
498             if (Is_Entity_Name (Type_Low_Bound (Check_Typ))
499                  and then Entity (Exp) = Entity (Type_Low_Bound (Check_Typ)))
500               or else (Is_Entity_Name (Type_High_Bound (Check_Typ))
501                 and then Entity (Exp) = Entity (Type_High_Bound (Check_Typ)))
502             then
503                return;
504
505             else
506                Rewrite (Exp, Convert_To (Check_Typ, Relocate_Node (Exp)));
507                Analyze_And_Resolve (Exp, Check_Typ);
508                Check_Unset_Reference (Exp);
509             end if;
510          else
511             Rewrite (Exp, Convert_To (Check_Typ, Relocate_Node (Exp)));
512             Analyze_And_Resolve (Exp, Check_Typ);
513             Check_Unset_Reference (Exp);
514          end if;
515
516       end if;
517    end Aggregate_Constraint_Checks;
518
519    ------------------------
520    -- Array_Aggr_Subtype --
521    ------------------------
522
523    function Array_Aggr_Subtype
524      (N   : Node_Id;
525       Typ : Entity_Id) return Entity_Id
526    is
527       Aggr_Dimension : constant Pos := Number_Dimensions (Typ);
528       --  Number of aggregate index dimensions
529
530       Aggr_Range : array (1 .. Aggr_Dimension) of Node_Id := (others => Empty);
531       --  Constrained N_Range of each index dimension in our aggregate itype
532
533       Aggr_Low   : array (1 .. Aggr_Dimension) of Node_Id := (others => Empty);
534       Aggr_High  : array (1 .. Aggr_Dimension) of Node_Id := (others => Empty);
535       --  Low and High bounds for each index dimension in our aggregate itype
536
537       Is_Fully_Positional : Boolean := True;
538
539       procedure Collect_Aggr_Bounds (N : Node_Id; Dim : Pos);
540       --  N is an array (sub-)aggregate. Dim is the dimension corresponding
541       --  to (sub-)aggregate N. This procedure collects and removes the side
542       --  effects of the constrained N_Range nodes corresponding to each index
543       --  dimension of our aggregate itype. These N_Range nodes are collected
544       --  in Aggr_Range above.
545       --
546       --  Likewise collect in Aggr_Low & Aggr_High above the low and high
547       --  bounds of each index dimension. If, when collecting, two bounds
548       --  corresponding to the same dimension are static and found to differ,
549       --  then emit a warning, and mark N as raising Constraint_Error.
550
551       -------------------------
552       -- Collect_Aggr_Bounds --
553       -------------------------
554
555       procedure Collect_Aggr_Bounds (N : Node_Id; Dim : Pos) is
556          This_Range : constant Node_Id := Aggregate_Bounds (N);
557          --  The aggregate range node of this specific sub-aggregate
558
559          This_Low  : constant Node_Id := Low_Bound (Aggregate_Bounds (N));
560          This_High : constant Node_Id := High_Bound (Aggregate_Bounds (N));
561          --  The aggregate bounds of this specific sub-aggregate
562
563          Assoc : Node_Id;
564          Expr  : Node_Id;
565
566       begin
567          Remove_Side_Effects (This_Low,  Variable_Ref => True);
568          Remove_Side_Effects (This_High, Variable_Ref => True);
569
570          --  Collect the first N_Range for a given dimension that you find.
571          --  For a given dimension they must be all equal anyway.
572
573          if No (Aggr_Range (Dim)) then
574             Aggr_Low (Dim)   := This_Low;
575             Aggr_High (Dim)  := This_High;
576             Aggr_Range (Dim) := This_Range;
577
578          else
579             if Compile_Time_Known_Value (This_Low) then
580                if not Compile_Time_Known_Value (Aggr_Low (Dim)) then
581                   Aggr_Low (Dim)  := This_Low;
582
583                elsif Expr_Value (This_Low) /= Expr_Value (Aggr_Low (Dim)) then
584                   Set_Raises_Constraint_Error (N);
585                   Error_Msg_N ("sub-aggregate low bound mismatch?", N);
586                   Error_Msg_N
587                      ("\Constraint_Error will be raised at run time?", N);
588                end if;
589             end if;
590
591             if Compile_Time_Known_Value (This_High) then
592                if not Compile_Time_Known_Value (Aggr_High (Dim)) then
593                   Aggr_High (Dim)  := This_High;
594
595                elsif
596                  Expr_Value (This_High) /= Expr_Value (Aggr_High (Dim))
597                then
598                   Set_Raises_Constraint_Error (N);
599                   Error_Msg_N ("sub-aggregate high bound mismatch?", N);
600                   Error_Msg_N
601                      ("\Constraint_Error will be raised at run time?", N);
602                end if;
603             end if;
604          end if;
605
606          if Dim < Aggr_Dimension then
607
608             --  Process positional components
609
610             if Present (Expressions (N)) then
611                Expr := First (Expressions (N));
612                while Present (Expr) loop
613                   Collect_Aggr_Bounds (Expr, Dim + 1);
614                   Next (Expr);
615                end loop;
616             end if;
617
618             --  Process component associations
619
620             if Present (Component_Associations (N)) then
621                Is_Fully_Positional := False;
622
623                Assoc := First (Component_Associations (N));
624                while Present (Assoc) loop
625                   Expr := Expression (Assoc);
626                   Collect_Aggr_Bounds (Expr, Dim + 1);
627                   Next (Assoc);
628                end loop;
629             end if;
630          end if;
631       end Collect_Aggr_Bounds;
632
633       --  Array_Aggr_Subtype variables
634
635       Itype : Entity_Id;
636       --  The final itype of the overall aggregate
637
638       Index_Constraints : constant List_Id := New_List;
639       --  The list of index constraints of the aggregate itype
640
641    --  Start of processing for Array_Aggr_Subtype
642
643    begin
644       --  Make sure that the list of index constraints is properly attached to
645       --  the tree, and then collect the aggregate bounds.
646
647       Set_Parent (Index_Constraints, N);
648       Collect_Aggr_Bounds (N, 1);
649
650       --  Build the list of constrained indexes of our aggregate itype
651
652       for J in 1 .. Aggr_Dimension loop
653          Create_Index : declare
654             Index_Base : constant Entity_Id :=
655                            Base_Type (Etype (Aggr_Range (J)));
656             Index_Typ  : Entity_Id;
657
658          begin
659             --  Construct the Index subtype, and associate it with the range
660             --  construct that generates it.
661
662             Index_Typ :=
663               Create_Itype (Subtype_Kind (Ekind (Index_Base)), Aggr_Range (J));
664
665             Set_Etype (Index_Typ, Index_Base);
666
667             if Is_Character_Type (Index_Base) then
668                Set_Is_Character_Type (Index_Typ);
669             end if;
670
671             Set_Size_Info      (Index_Typ,                (Index_Base));
672             Set_RM_Size        (Index_Typ, RM_Size        (Index_Base));
673             Set_First_Rep_Item (Index_Typ, First_Rep_Item (Index_Base));
674             Set_Scalar_Range   (Index_Typ, Aggr_Range (J));
675
676             if Is_Discrete_Or_Fixed_Point_Type (Index_Typ) then
677                Set_RM_Size (Index_Typ, UI_From_Int (Minimum_Size (Index_Typ)));
678             end if;
679
680             Set_Etype (Aggr_Range (J), Index_Typ);
681
682             Append (Aggr_Range (J), To => Index_Constraints);
683          end Create_Index;
684       end loop;
685
686       --  Now build the Itype
687
688       Itype := Create_Itype (E_Array_Subtype, N);
689
690       Set_First_Rep_Item         (Itype, First_Rep_Item        (Typ));
691       Set_Convention             (Itype, Convention            (Typ));
692       Set_Depends_On_Private     (Itype, Has_Private_Component (Typ));
693       Set_Etype                  (Itype, Base_Type             (Typ));
694       Set_Has_Alignment_Clause   (Itype, Has_Alignment_Clause  (Typ));
695       Set_Is_Aliased             (Itype, Is_Aliased            (Typ));
696       Set_Depends_On_Private     (Itype, Depends_On_Private    (Typ));
697
698       Copy_Suppress_Status (Index_Check,  Typ, Itype);
699       Copy_Suppress_Status (Length_Check, Typ, Itype);
700
701       Set_First_Index    (Itype, First (Index_Constraints));
702       Set_Is_Constrained (Itype, True);
703       Set_Is_Internal    (Itype, True);
704
705       --  A simple optimization: purely positional aggregates of static
706       --  components should be passed to gigi unexpanded whenever possible, and
707       --  regardless of the staticness of the bounds themselves. Subsequent
708       --  checks in exp_aggr verify that type is not packed, etc.
709
710       Set_Size_Known_At_Compile_Time (Itype,
711          Is_Fully_Positional
712            and then Comes_From_Source (N)
713            and then Size_Known_At_Compile_Time (Component_Type (Typ)));
714
715       --  We always need a freeze node for a packed array subtype, so that we
716       --  can build the Packed_Array_Type corresponding to the subtype. If
717       --  expansion is disabled, the packed array subtype is not built, and we
718       --  must not generate a freeze node for the type, or else it will appear
719       --  incomplete to gigi.
720
721       if Is_Packed (Itype)
722         and then not In_Spec_Expression
723         and then Expander_Active
724       then
725          Freeze_Itype (Itype, N);
726       end if;
727
728       return Itype;
729    end Array_Aggr_Subtype;
730
731    --------------------------------
732    -- Check_Misspelled_Component --
733    --------------------------------
734
735    procedure Check_Misspelled_Component
736      (Elements  : Elist_Id;
737       Component : Node_Id)
738    is
739       Max_Suggestions   : constant := 2;
740
741       Nr_Of_Suggestions : Natural := 0;
742       Suggestion_1      : Entity_Id := Empty;
743       Suggestion_2      : Entity_Id := Empty;
744       Component_Elmt    : Elmt_Id;
745
746    begin
747       --  All the components of List are matched against Component and a count
748       --  is maintained of possible misspellings. When at the end of the
749       --  the analysis there are one or two (not more!) possible misspellings,
750       --  these misspellings will be suggested as possible correction.
751
752       Component_Elmt := First_Elmt (Elements);
753       while Nr_Of_Suggestions <= Max_Suggestions
754         and then Present (Component_Elmt)
755       loop
756          if Is_Bad_Spelling_Of
757               (Chars (Node (Component_Elmt)),
758                Chars (Component))
759          then
760             Nr_Of_Suggestions := Nr_Of_Suggestions + 1;
761
762             case Nr_Of_Suggestions is
763                when 1      => Suggestion_1 := Node (Component_Elmt);
764                when 2      => Suggestion_2 := Node (Component_Elmt);
765                when others => exit;
766             end case;
767          end if;
768
769          Next_Elmt (Component_Elmt);
770       end loop;
771
772       --  Report at most two suggestions
773
774       if Nr_Of_Suggestions = 1 then
775          Error_Msg_NE -- CODEFIX
776            ("\possible misspelling of&", Component, Suggestion_1);
777
778       elsif Nr_Of_Suggestions = 2 then
779          Error_Msg_Node_2 := Suggestion_2;
780          Error_Msg_NE -- CODEFIX
781            ("\possible misspelling of& or&", Component, Suggestion_1);
782       end if;
783    end Check_Misspelled_Component;
784
785    ----------------------------------------
786    -- Check_Expr_OK_In_Limited_Aggregate --
787    ----------------------------------------
788
789    procedure Check_Expr_OK_In_Limited_Aggregate (Expr : Node_Id) is
790    begin
791       if Is_Limited_Type (Etype (Expr))
792          and then Comes_From_Source (Expr)
793          and then not In_Instance_Body
794       then
795          if not OK_For_Limited_Init (Etype (Expr), Expr) then
796             Error_Msg_N ("initialization not allowed for limited types", Expr);
797             Explain_Limited_Type (Etype (Expr), Expr);
798          end if;
799       end if;
800    end Check_Expr_OK_In_Limited_Aggregate;
801
802    -------------------------------
803    -- Check_Qualified_Aggregate --
804    -------------------------------
805
806    procedure Check_Qualified_Aggregate (Level : Nat; Expr : Node_Id) is
807       Comp_Expr : Node_Id;
808       Comp_Assn : Node_Id;
809
810    begin
811       if Level = 0 then
812          if Nkind (Parent (Expr)) /= N_Qualified_Expression then
813             Check_SPARK_Restriction ("aggregate should be qualified", Expr);
814          end if;
815
816       else
817          Comp_Expr := First (Expressions (Expr));
818          while Present (Comp_Expr) loop
819             if Nkind (Comp_Expr) = N_Aggregate then
820                Check_Qualified_Aggregate (Level - 1, Comp_Expr);
821             end if;
822
823             Comp_Expr := Next (Comp_Expr);
824          end loop;
825
826          Comp_Assn := First (Component_Associations (Expr));
827          while Present (Comp_Assn) loop
828             Comp_Expr := Expression (Comp_Assn);
829
830             if Nkind (Comp_Expr) = N_Aggregate then
831                Check_Qualified_Aggregate (Level - 1, Comp_Expr);
832             end if;
833
834             Comp_Assn := Next (Comp_Assn);
835          end loop;
836       end if;
837    end Check_Qualified_Aggregate;
838
839    ----------------------------------------
840    -- Check_Static_Discriminated_Subtype --
841    ----------------------------------------
842
843    procedure Check_Static_Discriminated_Subtype (T : Entity_Id; V : Node_Id) is
844       Disc : constant Entity_Id := First_Discriminant (T);
845       Comp : Entity_Id;
846       Ind  : Entity_Id;
847
848    begin
849       if Has_Record_Rep_Clause (T) then
850          return;
851
852       elsif Present (Next_Discriminant (Disc)) then
853          return;
854
855       elsif Nkind (V) /= N_Integer_Literal then
856          return;
857       end if;
858
859       Comp := First_Component (T);
860       while Present (Comp) loop
861          if Is_Scalar_Type (Etype (Comp)) then
862             null;
863
864          elsif Is_Private_Type (Etype (Comp))
865            and then Present (Full_View (Etype (Comp)))
866            and then Is_Scalar_Type (Full_View (Etype (Comp)))
867          then
868             null;
869
870          elsif Is_Array_Type (Etype (Comp)) then
871             if Is_Bit_Packed_Array (Etype (Comp)) then
872                return;
873             end if;
874
875             Ind := First_Index (Etype (Comp));
876             while Present (Ind) loop
877                if Nkind (Ind) /= N_Range
878                  or else Nkind (Low_Bound (Ind)) /= N_Integer_Literal
879                  or else Nkind (High_Bound (Ind)) /= N_Integer_Literal
880                then
881                   return;
882                end if;
883
884                Next_Index (Ind);
885             end loop;
886
887          else
888             return;
889          end if;
890
891          Next_Component (Comp);
892       end loop;
893
894       --  On exit, all components have statically known sizes
895
896       Set_Size_Known_At_Compile_Time (T);
897    end Check_Static_Discriminated_Subtype;
898
899    -------------------------
900    -- Is_Others_Aggregate --
901    -------------------------
902
903    function Is_Others_Aggregate (Aggr : Node_Id) return Boolean is
904    begin
905       return No (Expressions (Aggr))
906         and then
907           Nkind (First (Choices (First (Component_Associations (Aggr)))))
908             = N_Others_Choice;
909    end Is_Others_Aggregate;
910
911    ----------------------------
912    -- Is_Top_Level_Aggregate --
913    ----------------------------
914
915    function Is_Top_Level_Aggregate (Expr : Node_Id) return Boolean is
916    begin
917       return Nkind (Parent (Expr)) /= N_Aggregate
918         and then (Nkind (Parent (Expr)) /= N_Component_Association
919                    or else Nkind (Parent (Parent (Expr))) /= N_Aggregate);
920    end Is_Top_Level_Aggregate;
921
922    --------------------------------
923    -- Make_String_Into_Aggregate --
924    --------------------------------
925
926    procedure Make_String_Into_Aggregate (N : Node_Id) is
927       Exprs  : constant List_Id    := New_List;
928       Loc    : constant Source_Ptr := Sloc (N);
929       Str    : constant String_Id  := Strval (N);
930       Strlen : constant Nat        := String_Length (Str);
931       C      : Char_Code;
932       C_Node : Node_Id;
933       New_N  : Node_Id;
934       P      : Source_Ptr;
935
936    begin
937       P := Loc + 1;
938       for J in  1 .. Strlen loop
939          C := Get_String_Char (Str, J);
940          Set_Character_Literal_Name (C);
941
942          C_Node :=
943            Make_Character_Literal (P,
944              Chars              => Name_Find,
945              Char_Literal_Value => UI_From_CC (C));
946          Set_Etype (C_Node, Any_Character);
947          Append_To (Exprs, C_Node);
948
949          P := P + 1;
950          --  Something special for wide strings???
951       end loop;
952
953       New_N := Make_Aggregate (Loc, Expressions => Exprs);
954       Set_Analyzed (New_N);
955       Set_Etype (New_N, Any_Composite);
956
957       Rewrite (N, New_N);
958    end Make_String_Into_Aggregate;
959
960    -----------------------
961    -- Resolve_Aggregate --
962    -----------------------
963
964    procedure Resolve_Aggregate (N : Node_Id; Typ : Entity_Id) is
965       Loc   : constant Source_Ptr := Sloc (N);
966       Pkind : constant Node_Kind  := Nkind (Parent (N));
967
968       Aggr_Subtyp : Entity_Id;
969       --  The actual aggregate subtype. This is not necessarily the same as Typ
970       --  which is the subtype of the context in which the aggregate was found.
971
972    begin
973       --  Ignore junk empty aggregate resulting from parser error
974
975       if No (Expressions (N))
976         and then No (Component_Associations (N))
977         and then not Null_Record_Present (N)
978       then
979          return;
980       end if;
981
982       --  If the aggregate has box-initialized components, its type must be
983       --  frozen so that initialization procedures can properly be called
984       --  in the resolution that follows.  The replacement of boxes with
985       --  initialization calls is properly an expansion activity but it must
986       --  be done during revolution.
987
988       if Expander_Active
989         and then  Present (Component_Associations (N))
990       then
991          declare
992             Comp : Node_Id;
993
994          begin
995             Comp := First (Component_Associations (N));
996             while Present (Comp) loop
997                if Box_Present (Comp) then
998                   Insert_Actions (N, Freeze_Entity (Typ, N));
999                   exit;
1000                end if;
1001
1002                Next (Comp);
1003             end loop;
1004          end;
1005       end if;
1006
1007       --  An unqualified aggregate is restricted in SPARK to:
1008
1009       --    An aggregate item inside an aggregate for a multi-dimensional array
1010
1011       --    An expression being assigned to an unconstrained array, but only if
1012       --    the aggregate specifies a value for OTHERS only.
1013
1014       if Nkind (Parent (N)) = N_Qualified_Expression then
1015          if Is_Array_Type (Typ) then
1016             Check_Qualified_Aggregate (Number_Dimensions (Typ), N);
1017          else
1018             Check_Qualified_Aggregate (1, N);
1019          end if;
1020       else
1021          if Is_Array_Type (Typ)
1022            and then Nkind (Parent (N)) = N_Assignment_Statement
1023            and then not Is_Constrained (Etype (Name (Parent (N))))
1024          then
1025             if not Is_Others_Aggregate (N) then
1026                Check_SPARK_Restriction
1027                  ("array aggregate should have only OTHERS", N);
1028             end if;
1029
1030          elsif Is_Top_Level_Aggregate (N) then
1031             Check_SPARK_Restriction ("aggregate should be qualified", N);
1032
1033          --  The legality of this unqualified aggregate is checked by calling
1034          --  Check_Qualified_Aggregate from one of its enclosing aggregate,
1035          --  unless one of these already causes an error to be issued.
1036
1037          else
1038             null;
1039          end if;
1040       end if;
1041
1042       --  Check for aggregates not allowed in configurable run-time mode.
1043       --  We allow all cases of aggregates that do not come from source, since
1044       --  these are all assumed to be small (e.g. bounds of a string literal).
1045       --  We also allow aggregates of types we know to be small.
1046
1047       if not Support_Aggregates_On_Target
1048         and then Comes_From_Source (N)
1049         and then (not Known_Static_Esize (Typ) or else Esize (Typ) > 64)
1050       then
1051          Error_Msg_CRT ("aggregate", N);
1052       end if;
1053
1054       --  Ada 2005 (AI-287): Limited aggregates allowed
1055
1056       --  In an instance, ignore aggregate subcomponents tnat may be limited,
1057       --  because they originate in view conflicts. If the original aggregate
1058       --  is legal and the actuals are legal, the aggregate itself is legal.
1059
1060       if Is_Limited_Type (Typ)
1061         and then Ada_Version < Ada_2005
1062         and then not In_Instance
1063       then
1064          Error_Msg_N ("aggregate type cannot be limited", N);
1065          Explain_Limited_Type (Typ, N);
1066
1067       elsif Is_Class_Wide_Type (Typ) then
1068          Error_Msg_N ("type of aggregate cannot be class-wide", N);
1069
1070       elsif Typ = Any_String
1071         or else Typ = Any_Composite
1072       then
1073          Error_Msg_N ("no unique type for aggregate", N);
1074          Set_Etype (N, Any_Composite);
1075
1076       elsif Is_Array_Type (Typ) and then Null_Record_Present (N) then
1077          Error_Msg_N ("null record forbidden in array aggregate", N);
1078
1079       elsif Is_Record_Type (Typ) then
1080          Resolve_Record_Aggregate (N, Typ);
1081
1082       elsif Is_Array_Type (Typ) then
1083
1084          --  First a special test, for the case of a positional aggregate
1085          --  of characters which can be replaced by a string literal.
1086
1087          --  Do not perform this transformation if this was a string literal to
1088          --  start with, whose components needed constraint checks, or if the
1089          --  component type is non-static, because it will require those checks
1090          --  and be transformed back into an aggregate.
1091
1092          if Number_Dimensions (Typ) = 1
1093            and then Is_Standard_Character_Type (Component_Type (Typ))
1094            and then No (Component_Associations (N))
1095            and then not Is_Limited_Composite (Typ)
1096            and then not Is_Private_Composite (Typ)
1097            and then not Is_Bit_Packed_Array (Typ)
1098            and then Nkind (Original_Node (Parent (N))) /= N_String_Literal
1099            and then Is_Static_Subtype (Component_Type (Typ))
1100          then
1101             declare
1102                Expr : Node_Id;
1103
1104             begin
1105                Expr := First (Expressions (N));
1106                while Present (Expr) loop
1107                   exit when Nkind (Expr) /= N_Character_Literal;
1108                   Next (Expr);
1109                end loop;
1110
1111                if No (Expr) then
1112                   Start_String;
1113
1114                   Expr := First (Expressions (N));
1115                   while Present (Expr) loop
1116                      Store_String_Char (UI_To_CC (Char_Literal_Value (Expr)));
1117                      Next (Expr);
1118                   end loop;
1119
1120                   Rewrite (N, Make_String_Literal (Loc, End_String));
1121
1122                   Analyze_And_Resolve (N, Typ);
1123                   return;
1124                end if;
1125             end;
1126          end if;
1127
1128          --  Here if we have a real aggregate to deal with
1129
1130          Array_Aggregate : declare
1131             Aggr_Resolved : Boolean;
1132
1133             Aggr_Typ : constant Entity_Id := Etype (Typ);
1134             --  This is the unconstrained array type, which is the type against
1135             --  which the aggregate is to be resolved. Typ itself is the array
1136             --  type of the context which may not be the same subtype as the
1137             --  subtype for the final aggregate.
1138
1139          begin
1140             --  In the following we determine whether an OTHERS choice is
1141             --  allowed inside the array aggregate. The test checks the context
1142             --  in which the array aggregate occurs. If the context does not
1143             --  permit it, or the aggregate type is unconstrained, an OTHERS
1144             --  choice is not allowed (except that it is always allowed on the
1145             --  right-hand side of an assignment statement; in this case the
1146             --  constrainedness of the type doesn't matter).
1147
1148             --  If expansion is disabled (generic context, or semantics-only
1149             --  mode) actual subtypes cannot be constructed, and the type of an
1150             --  object may be its unconstrained nominal type. However, if the
1151             --  context is an assignment, we assume that OTHERS is allowed,
1152             --  because the target of the assignment will have a constrained
1153             --  subtype when fully compiled.
1154
1155             --  Note that there is no node for Explicit_Actual_Parameter.
1156             --  To test for this context we therefore have to test for node
1157             --  N_Parameter_Association which itself appears only if there is a
1158             --  formal parameter. Consequently we also need to test for
1159             --  N_Procedure_Call_Statement or N_Function_Call.
1160
1161             Set_Etype (N, Aggr_Typ);  --  May be overridden later on
1162
1163             if Pkind = N_Assignment_Statement
1164               or else (Is_Constrained (Typ)
1165                         and then
1166                           (Pkind = N_Parameter_Association     or else
1167                            Pkind = N_Function_Call             or else
1168                            Pkind = N_Procedure_Call_Statement  or else
1169                            Pkind = N_Generic_Association       or else
1170                            Pkind = N_Formal_Object_Declaration or else
1171                            Pkind = N_Simple_Return_Statement   or else
1172                            Pkind = N_Object_Declaration        or else
1173                            Pkind = N_Component_Declaration     or else
1174                            Pkind = N_Parameter_Specification   or else
1175                            Pkind = N_Qualified_Expression      or else
1176                            Pkind = N_Aggregate                 or else
1177                            Pkind = N_Extension_Aggregate       or else
1178                            Pkind = N_Component_Association))
1179             then
1180                Aggr_Resolved :=
1181                  Resolve_Array_Aggregate
1182                    (N,
1183                     Index          => First_Index (Aggr_Typ),
1184                     Index_Constr   => First_Index (Typ),
1185                     Component_Typ  => Component_Type (Typ),
1186                     Others_Allowed => True);
1187
1188             elsif not Expander_Active
1189               and then Pkind = N_Assignment_Statement
1190             then
1191                Aggr_Resolved :=
1192                  Resolve_Array_Aggregate
1193                    (N,
1194                     Index          => First_Index (Aggr_Typ),
1195                     Index_Constr   => First_Index (Typ),
1196                     Component_Typ  => Component_Type (Typ),
1197                     Others_Allowed => True);
1198
1199             else
1200                Aggr_Resolved :=
1201                  Resolve_Array_Aggregate
1202                    (N,
1203                     Index          => First_Index (Aggr_Typ),
1204                     Index_Constr   => First_Index (Aggr_Typ),
1205                     Component_Typ  => Component_Type (Typ),
1206                     Others_Allowed => False);
1207             end if;
1208
1209             if not Aggr_Resolved then
1210
1211                --  A parenthesized expression may have been intended as an
1212                --  aggregate, leading to a type error when analyzing the
1213                --  component. This can also happen for a nested component
1214                --  (see Analyze_Aggr_Expr).
1215
1216                if Paren_Count (N) > 0 then
1217                   Error_Msg_N
1218                     ("positional aggregate cannot have one component", N);
1219                end if;
1220
1221                Aggr_Subtyp := Any_Composite;
1222
1223             else
1224                Aggr_Subtyp := Array_Aggr_Subtype (N, Typ);
1225             end if;
1226
1227             Set_Etype (N, Aggr_Subtyp);
1228          end Array_Aggregate;
1229
1230       elsif Is_Private_Type (Typ)
1231         and then Present (Full_View (Typ))
1232         and then (In_Inlined_Body or else In_Instance_Body)
1233         and then Is_Composite_Type (Full_View (Typ))
1234       then
1235          Resolve (N, Full_View (Typ));
1236
1237       else
1238          Error_Msg_N ("illegal context for aggregate", N);
1239       end if;
1240
1241       --  If we can determine statically that the evaluation of the aggregate
1242       --  raises Constraint_Error, then replace the aggregate with an
1243       --  N_Raise_Constraint_Error node, but set the Etype to the right
1244       --  aggregate subtype. Gigi needs this.
1245
1246       if Raises_Constraint_Error (N) then
1247          Aggr_Subtyp := Etype (N);
1248          Rewrite (N,
1249            Make_Raise_Constraint_Error (Loc, Reason => CE_Range_Check_Failed));
1250          Set_Raises_Constraint_Error (N);
1251          Set_Etype (N, Aggr_Subtyp);
1252          Set_Analyzed (N);
1253       end if;
1254    end Resolve_Aggregate;
1255
1256    -----------------------------
1257    -- Resolve_Array_Aggregate --
1258    -----------------------------
1259
1260    function Resolve_Array_Aggregate
1261      (N              : Node_Id;
1262       Index          : Node_Id;
1263       Index_Constr   : Node_Id;
1264       Component_Typ  : Entity_Id;
1265       Others_Allowed : Boolean) return Boolean
1266    is
1267       Loc : constant Source_Ptr := Sloc (N);
1268
1269       Failure : constant Boolean := False;
1270       Success : constant Boolean := True;
1271
1272       Index_Typ      : constant Entity_Id := Etype (Index);
1273       Index_Typ_Low  : constant Node_Id   := Type_Low_Bound  (Index_Typ);
1274       Index_Typ_High : constant Node_Id   := Type_High_Bound (Index_Typ);
1275       --  The type of the index corresponding to the array sub-aggregate along
1276       --  with its low and upper bounds.
1277
1278       Index_Base      : constant Entity_Id := Base_Type (Index_Typ);
1279       Index_Base_Low  : constant Node_Id   := Type_Low_Bound (Index_Base);
1280       Index_Base_High : constant Node_Id   := Type_High_Bound (Index_Base);
1281       --  Ditto for the base type
1282
1283       function Add (Val : Uint; To : Node_Id) return Node_Id;
1284       --  Creates a new expression node where Val is added to expression To.
1285       --  Tries to constant fold whenever possible. To must be an already
1286       --  analyzed expression.
1287
1288       procedure Check_Bound (BH : Node_Id; AH : in out Node_Id);
1289       --  Checks that AH (the upper bound of an array aggregate) is less than
1290       --  or equal to BH (the upper bound of the index base type). If the check
1291       --  fails, a warning is emitted, the Raises_Constraint_Error flag of N is
1292       --  set, and AH is replaced with a duplicate of BH.
1293
1294       procedure Check_Bounds (L, H : Node_Id; AL, AH : Node_Id);
1295       --  Checks that range AL .. AH is compatible with range L .. H. Emits a
1296       --  warning if not and sets the Raises_Constraint_Error flag in N.
1297
1298       procedure Check_Length (L, H : Node_Id; Len : Uint);
1299       --  Checks that range L .. H contains at least Len elements. Emits a
1300       --  warning if not and sets the Raises_Constraint_Error flag in N.
1301
1302       function Dynamic_Or_Null_Range (L, H : Node_Id) return Boolean;
1303       --  Returns True if range L .. H is dynamic or null
1304
1305       procedure Get (Value : out Uint; From : Node_Id; OK : out Boolean);
1306       --  Given expression node From, this routine sets OK to False if it
1307       --  cannot statically evaluate From. Otherwise it stores this static
1308       --  value into Value.
1309
1310       function Resolve_Aggr_Expr
1311         (Expr        : Node_Id;
1312          Single_Elmt : Boolean) return Boolean;
1313       --  Resolves aggregate expression Expr. Returns False if resolution
1314       --  fails. If Single_Elmt is set to False, the expression Expr may be
1315       --  used to initialize several array aggregate elements (this can happen
1316       --  for discrete choices such as "L .. H => Expr" or the OTHERS choice).
1317       --  In this event we do not resolve Expr unless expansion is disabled.
1318       --  To know why, see the DELAYED COMPONENT RESOLUTION note above.
1319       --
1320       --  NOTE: In the case of "... => <>", we pass the in the
1321       --  N_Component_Association node as Expr, since there is no Expression in
1322       --  that case, and we need a Sloc for the error message.
1323
1324       ---------
1325       -- Add --
1326       ---------
1327
1328       function Add (Val : Uint; To : Node_Id) return Node_Id is
1329          Expr_Pos : Node_Id;
1330          Expr     : Node_Id;
1331          To_Pos   : Node_Id;
1332
1333       begin
1334          if Raises_Constraint_Error (To) then
1335             return To;
1336          end if;
1337
1338          --  First test if we can do constant folding
1339
1340          if Compile_Time_Known_Value (To)
1341            or else Nkind (To) = N_Integer_Literal
1342          then
1343             Expr_Pos := Make_Integer_Literal (Loc, Expr_Value (To) + Val);
1344             Set_Is_Static_Expression (Expr_Pos);
1345             Set_Etype (Expr_Pos, Etype (To));
1346             Set_Analyzed (Expr_Pos, Analyzed (To));
1347
1348             if not Is_Enumeration_Type (Index_Typ) then
1349                Expr := Expr_Pos;
1350
1351             --  If we are dealing with enumeration return
1352             --     Index_Typ'Val (Expr_Pos)
1353
1354             else
1355                Expr :=
1356                  Make_Attribute_Reference
1357                    (Loc,
1358                     Prefix         => New_Reference_To (Index_Typ, Loc),
1359                     Attribute_Name => Name_Val,
1360                     Expressions    => New_List (Expr_Pos));
1361             end if;
1362
1363             return Expr;
1364          end if;
1365
1366          --  If we are here no constant folding possible
1367
1368          if not Is_Enumeration_Type (Index_Base) then
1369             Expr :=
1370               Make_Op_Add (Loc,
1371                 Left_Opnd  => Duplicate_Subexpr (To),
1372                 Right_Opnd => Make_Integer_Literal (Loc, Val));
1373
1374          --  If we are dealing with enumeration return
1375          --    Index_Typ'Val (Index_Typ'Pos (To) + Val)
1376
1377          else
1378             To_Pos :=
1379               Make_Attribute_Reference
1380                 (Loc,
1381                  Prefix         => New_Reference_To (Index_Typ, Loc),
1382                  Attribute_Name => Name_Pos,
1383                  Expressions    => New_List (Duplicate_Subexpr (To)));
1384
1385             Expr_Pos :=
1386               Make_Op_Add (Loc,
1387                            Left_Opnd  => To_Pos,
1388                            Right_Opnd => Make_Integer_Literal (Loc, Val));
1389
1390             Expr :=
1391               Make_Attribute_Reference
1392                 (Loc,
1393                  Prefix         => New_Reference_To (Index_Typ, Loc),
1394                  Attribute_Name => Name_Val,
1395                  Expressions    => New_List (Expr_Pos));
1396
1397             --  If the index type has a non standard representation, the
1398             --  attributes 'Val and 'Pos expand into function calls and the
1399             --  resulting expression is considered non-safe for reevaluation
1400             --  by the backend. Relocate it into a constant temporary in order
1401             --  to make it safe for reevaluation.
1402
1403             if Has_Non_Standard_Rep (Etype (N)) then
1404                declare
1405                   Def_Id : Entity_Id;
1406
1407                begin
1408                   Def_Id := Make_Temporary (Loc, 'R', Expr);
1409                   Set_Etype (Def_Id, Index_Typ);
1410                   Insert_Action (N,
1411                     Make_Object_Declaration (Loc,
1412                       Defining_Identifier => Def_Id,
1413                       Object_Definition   => New_Reference_To (Index_Typ, Loc),
1414                       Constant_Present    => True,
1415                       Expression          => Relocate_Node (Expr)));
1416
1417                   Expr := New_Reference_To (Def_Id, Loc);
1418                end;
1419             end if;
1420          end if;
1421
1422          return Expr;
1423       end Add;
1424
1425       -----------------
1426       -- Check_Bound --
1427       -----------------
1428
1429       procedure Check_Bound (BH : Node_Id; AH : in out Node_Id) is
1430          Val_BH : Uint;
1431          Val_AH : Uint;
1432
1433          OK_BH : Boolean;
1434          OK_AH : Boolean;
1435
1436       begin
1437          Get (Value => Val_BH, From => BH, OK => OK_BH);
1438          Get (Value => Val_AH, From => AH, OK => OK_AH);
1439
1440          if OK_BH and then OK_AH and then Val_BH < Val_AH then
1441             Set_Raises_Constraint_Error (N);
1442             Error_Msg_N ("upper bound out of range?", AH);
1443             Error_Msg_N ("\Constraint_Error will be raised at run time?", AH);
1444
1445             --  You need to set AH to BH or else in the case of enumerations
1446             --  indexes we will not be able to resolve the aggregate bounds.
1447
1448             AH := Duplicate_Subexpr (BH);
1449          end if;
1450       end Check_Bound;
1451
1452       ------------------
1453       -- Check_Bounds --
1454       ------------------
1455
1456       procedure Check_Bounds (L, H : Node_Id; AL, AH : Node_Id) is
1457          Val_L  : Uint;
1458          Val_H  : Uint;
1459          Val_AL : Uint;
1460          Val_AH : Uint;
1461
1462          OK_L : Boolean;
1463          OK_H : Boolean;
1464
1465          OK_AL : Boolean;
1466          OK_AH  : Boolean;
1467          pragma Warnings (Off, OK_AL);
1468          pragma Warnings (Off, OK_AH);
1469
1470       begin
1471          if Raises_Constraint_Error (N)
1472            or else Dynamic_Or_Null_Range (AL, AH)
1473          then
1474             return;
1475          end if;
1476
1477          Get (Value => Val_L, From => L, OK => OK_L);
1478          Get (Value => Val_H, From => H, OK => OK_H);
1479
1480          Get (Value => Val_AL, From => AL, OK => OK_AL);
1481          Get (Value => Val_AH, From => AH, OK => OK_AH);
1482
1483          if OK_L and then Val_L > Val_AL then
1484             Set_Raises_Constraint_Error (N);
1485             Error_Msg_N ("lower bound of aggregate out of range?", N);
1486             Error_Msg_N ("\Constraint_Error will be raised at run time?", N);
1487          end if;
1488
1489          if OK_H and then Val_H < Val_AH then
1490             Set_Raises_Constraint_Error (N);
1491             Error_Msg_N ("upper bound of aggregate out of range?", N);
1492             Error_Msg_N ("\Constraint_Error will be raised at run time?", N);
1493          end if;
1494       end Check_Bounds;
1495
1496       ------------------
1497       -- Check_Length --
1498       ------------------
1499
1500       procedure Check_Length (L, H : Node_Id; Len : Uint) is
1501          Val_L  : Uint;
1502          Val_H  : Uint;
1503
1504          OK_L  : Boolean;
1505          OK_H  : Boolean;
1506
1507          Range_Len : Uint;
1508
1509       begin
1510          if Raises_Constraint_Error (N) then
1511             return;
1512          end if;
1513
1514          Get (Value => Val_L, From => L, OK => OK_L);
1515          Get (Value => Val_H, From => H, OK => OK_H);
1516
1517          if not OK_L or else not OK_H then
1518             return;
1519          end if;
1520
1521          --  If null range length is zero
1522
1523          if Val_L > Val_H then
1524             Range_Len := Uint_0;
1525          else
1526             Range_Len := Val_H - Val_L + 1;
1527          end if;
1528
1529          if Range_Len < Len then
1530             Set_Raises_Constraint_Error (N);
1531             Error_Msg_N ("too many elements?", N);
1532             Error_Msg_N ("\Constraint_Error will be raised at run time?", N);
1533          end if;
1534       end Check_Length;
1535
1536       ---------------------------
1537       -- Dynamic_Or_Null_Range --
1538       ---------------------------
1539
1540       function Dynamic_Or_Null_Range (L, H : Node_Id) return Boolean is
1541          Val_L : Uint;
1542          Val_H : Uint;
1543
1544          OK_L  : Boolean;
1545          OK_H  : Boolean;
1546
1547       begin
1548          Get (Value => Val_L, From => L, OK => OK_L);
1549          Get (Value => Val_H, From => H, OK => OK_H);
1550
1551          return not OK_L or else not OK_H
1552            or else not Is_OK_Static_Expression (L)
1553            or else not Is_OK_Static_Expression (H)
1554            or else Val_L > Val_H;
1555       end Dynamic_Or_Null_Range;
1556
1557       ---------
1558       -- Get --
1559       ---------
1560
1561       procedure Get (Value : out Uint; From : Node_Id; OK : out Boolean) is
1562       begin
1563          OK := True;
1564
1565          if Compile_Time_Known_Value (From) then
1566             Value := Expr_Value (From);
1567
1568          --  If expression From is something like Some_Type'Val (10) then
1569          --  Value = 10
1570
1571          elsif Nkind (From) = N_Attribute_Reference
1572            and then Attribute_Name (From) = Name_Val
1573            and then Compile_Time_Known_Value (First (Expressions (From)))
1574          then
1575             Value := Expr_Value (First (Expressions (From)));
1576
1577          else
1578             Value := Uint_0;
1579             OK := False;
1580          end if;
1581       end Get;
1582
1583       -----------------------
1584       -- Resolve_Aggr_Expr --
1585       -----------------------
1586
1587       function Resolve_Aggr_Expr
1588         (Expr        : Node_Id;
1589          Single_Elmt : Boolean) return Boolean
1590       is
1591          Nxt_Ind        : constant Node_Id := Next_Index (Index);
1592          Nxt_Ind_Constr : constant Node_Id := Next_Index (Index_Constr);
1593          --  Index is the current index corresponding to the expression
1594
1595          Resolution_OK : Boolean := True;
1596          --  Set to False if resolution of the expression failed
1597
1598       begin
1599          --  Defend against previous errors
1600
1601          if Nkind (Expr) = N_Error
1602            or else Error_Posted (Expr)
1603          then
1604             return True;
1605          end if;
1606
1607          --  If the array type against which we are resolving the aggregate
1608          --  has several dimensions, the expressions nested inside the
1609          --  aggregate must be further aggregates (or strings).
1610
1611          if Present (Nxt_Ind) then
1612             if Nkind (Expr) /= N_Aggregate then
1613
1614                --  A string literal can appear where a one-dimensional array
1615                --  of characters is expected. If the literal looks like an
1616                --  operator, it is still an operator symbol, which will be
1617                --  transformed into a string when analyzed.
1618
1619                if Is_Character_Type (Component_Typ)
1620                  and then No (Next_Index (Nxt_Ind))
1621                  and then Nkind_In (Expr, N_String_Literal, N_Operator_Symbol)
1622                then
1623                   --  A string literal used in a multidimensional array
1624                   --  aggregate in place of the final one-dimensional
1625                   --  aggregate must not be enclosed in parentheses.
1626
1627                   if Paren_Count (Expr) /= 0 then
1628                      Error_Msg_N ("no parenthesis allowed here", Expr);
1629                   end if;
1630
1631                   Make_String_Into_Aggregate (Expr);
1632
1633                else
1634                   Error_Msg_N ("nested array aggregate expected", Expr);
1635
1636                   --  If the expression is parenthesized, this may be
1637                   --  a missing component association for a 1-aggregate.
1638
1639                   if Paren_Count (Expr) > 0 then
1640                      Error_Msg_N
1641                        ("\if single-component aggregate is intended,"
1642                         & " write e.g. (1 ='> ...)", Expr);
1643                   end if;
1644
1645                   return Failure;
1646                end if;
1647             end if;
1648
1649             --  If it's "... => <>", nothing to resolve
1650
1651             if Nkind (Expr) = N_Component_Association then
1652                pragma Assert (Box_Present (Expr));
1653                return Success;
1654             end if;
1655
1656             --  Ada 2005 (AI-231): Propagate the type to the nested aggregate.
1657             --  Required to check the null-exclusion attribute (if present).
1658             --  This value may be overridden later on.
1659
1660             Set_Etype (Expr, Etype (N));
1661
1662             Resolution_OK := Resolve_Array_Aggregate
1663               (Expr, Nxt_Ind, Nxt_Ind_Constr, Component_Typ, Others_Allowed);
1664
1665          else
1666
1667             --  If it's "... => <>", nothing to resolve
1668
1669             if Nkind (Expr) = N_Component_Association then
1670                pragma Assert (Box_Present (Expr));
1671                return Success;
1672             end if;
1673
1674             --  Do not resolve the expressions of discrete or others choices
1675             --  unless the expression covers a single component, or the
1676             --  expander is inactive.
1677
1678             if Single_Elmt
1679               or else not Expander_Active
1680               or else In_Spec_Expression
1681             then
1682                Analyze_And_Resolve (Expr, Component_Typ);
1683                Check_Expr_OK_In_Limited_Aggregate (Expr);
1684                Check_Non_Static_Context (Expr);
1685                Aggregate_Constraint_Checks (Expr, Component_Typ);
1686                Check_Unset_Reference (Expr);
1687             end if;
1688          end if;
1689
1690          if Raises_Constraint_Error (Expr)
1691            and then Nkind (Parent (Expr)) /= N_Component_Association
1692          then
1693             Set_Raises_Constraint_Error (N);
1694          end if;
1695
1696          --  If the expression has been marked as requiring a range check,
1697          --  then generate it here.
1698
1699          if Do_Range_Check (Expr) then
1700             Set_Do_Range_Check (Expr, False);
1701             Generate_Range_Check (Expr, Component_Typ, CE_Range_Check_Failed);
1702          end if;
1703
1704          return Resolution_OK;
1705       end Resolve_Aggr_Expr;
1706
1707       --  Variables local to Resolve_Array_Aggregate
1708
1709       Assoc   : Node_Id;
1710       Choice  : Node_Id;
1711       Expr    : Node_Id;
1712
1713       Discard : Node_Id;
1714       pragma Warnings (Off, Discard);
1715
1716       Aggr_Low  : Node_Id := Empty;
1717       Aggr_High : Node_Id := Empty;
1718       --  The actual low and high bounds of this sub-aggregate
1719
1720       Choices_Low  : Node_Id := Empty;
1721       Choices_High : Node_Id := Empty;
1722       --  The lowest and highest discrete choices values for a named aggregate
1723
1724       Nb_Elements : Uint := Uint_0;
1725       --  The number of elements in a positional aggregate
1726
1727       Others_Present : Boolean := False;
1728
1729       Nb_Choices : Nat := 0;
1730       --  Contains the overall number of named choices in this sub-aggregate
1731
1732       Nb_Discrete_Choices : Nat := 0;
1733       --  The overall number of discrete choices (not counting others choice)
1734
1735       Case_Table_Size : Nat;
1736       --  Contains the size of the case table needed to sort aggregate choices
1737
1738    --  Start of processing for Resolve_Array_Aggregate
1739
1740    begin
1741       --  Ignore junk empty aggregate resulting from parser error
1742
1743       if No (Expressions (N))
1744         and then No (Component_Associations (N))
1745         and then not Null_Record_Present (N)
1746       then
1747          return False;
1748       end if;
1749
1750       --  STEP 1: make sure the aggregate is correctly formatted
1751
1752       if Present (Component_Associations (N)) then
1753          Assoc := First (Component_Associations (N));
1754          while Present (Assoc) loop
1755             Choice := First (Choices (Assoc));
1756             while Present (Choice) loop
1757                if Nkind (Choice) = N_Others_Choice then
1758                   Others_Present := True;
1759
1760                   if Choice /= First (Choices (Assoc))
1761                     or else Present (Next (Choice))
1762                   then
1763                      Error_Msg_N
1764                        ("OTHERS must appear alone in a choice list", Choice);
1765                      return Failure;
1766                   end if;
1767
1768                   if Present (Next (Assoc)) then
1769                      Error_Msg_N
1770                        ("OTHERS must appear last in an aggregate", Choice);
1771                      return Failure;
1772                   end if;
1773
1774                   if Ada_Version = Ada_83
1775                     and then Assoc /= First (Component_Associations (N))
1776                     and then Nkind_In (Parent (N), N_Assignment_Statement,
1777                                                    N_Object_Declaration)
1778                   then
1779                      Error_Msg_N
1780                        ("(Ada 83) illegal context for OTHERS choice", N);
1781                   end if;
1782                end if;
1783
1784                Nb_Choices := Nb_Choices + 1;
1785                Next (Choice);
1786             end loop;
1787
1788             Next (Assoc);
1789          end loop;
1790       end if;
1791
1792       --  At this point we know that the others choice, if present, is by
1793       --  itself and appears last in the aggregate. Check if we have mixed
1794       --  positional and discrete associations (other than the others choice).
1795
1796       if Present (Expressions (N))
1797         and then (Nb_Choices > 1
1798                    or else (Nb_Choices = 1 and then not Others_Present))
1799       then
1800          Error_Msg_N
1801            ("named association cannot follow positional association",
1802             First (Choices (First (Component_Associations (N)))));
1803          return Failure;
1804       end if;
1805
1806       --  Test for the validity of an others choice if present
1807
1808       if Others_Present and then not Others_Allowed then
1809          Error_Msg_N
1810            ("OTHERS choice not allowed here",
1811             First (Choices (First (Component_Associations (N)))));
1812          return Failure;
1813       end if;
1814
1815       if Others_Present
1816         and then Nkind (Parent (N)) /= N_Component_Association
1817         and then No (Expressions (N))
1818         and then
1819           Nkind (First (Choices (First (Component_Associations (N)))))
1820             = N_Others_Choice
1821         and then Is_Elementary_Type (Component_Typ)
1822         and then False
1823       then
1824          declare
1825             Assoc : constant Node_Id := First (Component_Associations (N));
1826          begin
1827             Rewrite (Assoc,
1828               Make_Component_Association (Loc,
1829                  Choices =>
1830                    New_List (
1831                      Make_Attribute_Reference (Loc,
1832                        Prefix => New_Occurrence_Of (Index_Typ, Loc),
1833                        Attribute_Name => Name_Range)),
1834                  Expression => Relocate_Node (Expression (Assoc))));
1835             return Resolve_Array_Aggregate
1836               (N, Index, Index_Constr, Component_Typ, Others_Allowed);
1837          end;
1838       end if;
1839
1840       --  Protect against cascaded errors
1841
1842       if Etype (Index_Typ) = Any_Type then
1843          return Failure;
1844       end if;
1845
1846       --  STEP 2: Process named components
1847
1848       if No (Expressions (N)) then
1849          if Others_Present then
1850             Case_Table_Size := Nb_Choices - 1;
1851          else
1852             Case_Table_Size := Nb_Choices;
1853          end if;
1854
1855          Step_2 : declare
1856             Low  : Node_Id;
1857             High : Node_Id;
1858             --  Denote the lowest and highest values in an aggregate choice
1859
1860             Hi_Val : Uint;
1861             Lo_Val : Uint;
1862             --  High end of one range and Low end of the next. Should be
1863             --  contiguous if there is no hole in the list of values.
1864
1865             Missing_Values : Boolean;
1866             --  Set True if missing index values
1867
1868             S_Low  : Node_Id := Empty;
1869             S_High : Node_Id := Empty;
1870             --  if a choice in an aggregate is a subtype indication these
1871             --  denote the lowest and highest values of the subtype
1872
1873             Table : Case_Table_Type (1 .. Case_Table_Size);
1874             --  Used to sort all the different choice values
1875
1876             Single_Choice : Boolean;
1877             --  Set to true every time there is a single discrete choice in a
1878             --  discrete association
1879
1880             Prev_Nb_Discrete_Choices : Nat;
1881             --  Used to keep track of the number of discrete choices in the
1882             --  current association.
1883
1884             Errors_Posted_On_Choices : Boolean := False;
1885             --  Keeps track of whether any choices have semantic errors
1886
1887          begin
1888             --  STEP 2 (A): Check discrete choices validity
1889
1890             Assoc := First (Component_Associations (N));
1891             while Present (Assoc) loop
1892                Prev_Nb_Discrete_Choices := Nb_Discrete_Choices;
1893                Choice := First (Choices (Assoc));
1894                loop
1895                   Analyze (Choice);
1896
1897                   if Nkind (Choice) = N_Others_Choice then
1898                      Single_Choice := False;
1899                      exit;
1900
1901                   --  Test for subtype mark without constraint
1902
1903                   elsif Is_Entity_Name (Choice) and then
1904                     Is_Type (Entity (Choice))
1905                   then
1906                      if Base_Type (Entity (Choice)) /= Index_Base then
1907                         Error_Msg_N
1908                           ("invalid subtype mark in aggregate choice",
1909                            Choice);
1910                         return Failure;
1911                      end if;
1912
1913                   --  Case of subtype indication
1914
1915                   elsif Nkind (Choice) = N_Subtype_Indication then
1916                      Resolve_Discrete_Subtype_Indication (Choice, Index_Base);
1917
1918                      --  Does the subtype indication evaluation raise CE ?
1919
1920                      Get_Index_Bounds (Subtype_Mark (Choice), S_Low, S_High);
1921                      Get_Index_Bounds (Choice, Low, High);
1922                      Check_Bounds (S_Low, S_High, Low, High);
1923
1924                   --  Case of range or expression
1925
1926                   else
1927                      Resolve (Choice, Index_Base);
1928                      Check_Unset_Reference (Choice);
1929                      Check_Non_Static_Context (Choice);
1930
1931                      --  If semantic errors were posted on the choice, then
1932                      --  record that for possible early return from later
1933                      --  processing (see handling of enumeration choices).
1934
1935                      if Error_Posted (Choice) then
1936                         Errors_Posted_On_Choices := True;
1937                      end if;
1938
1939                      --  Do not range check a choice. This check is redundant
1940                      --  since this test is already done when we check that the
1941                      --  bounds of the array aggregate are within range.
1942
1943                      Set_Do_Range_Check (Choice, False);
1944
1945                      --  In SPARK, the choice must be static
1946
1947                      if not (Is_Static_Expression (Choice)
1948                               or else (Nkind (Choice) = N_Range
1949                                         and then Is_Static_Range (Choice)))
1950                      then
1951                         Check_SPARK_Restriction
1952                           ("choice should be static", Choice);
1953                      end if;
1954                   end if;
1955
1956                   --  If we could not resolve the discrete choice stop here
1957
1958                   if Etype (Choice) = Any_Type then
1959                      return Failure;
1960
1961                   --  If the discrete choice raises CE get its original bounds
1962
1963                   elsif Nkind (Choice) = N_Raise_Constraint_Error then
1964                      Set_Raises_Constraint_Error (N);
1965                      Get_Index_Bounds (Original_Node (Choice), Low, High);
1966
1967                   --  Otherwise get its bounds as usual
1968
1969                   else
1970                      Get_Index_Bounds (Choice, Low, High);
1971                   end if;
1972
1973                   if (Dynamic_Or_Null_Range (Low, High)
1974                        or else (Nkind (Choice) = N_Subtype_Indication
1975                                  and then
1976                                    Dynamic_Or_Null_Range (S_Low, S_High)))
1977                     and then Nb_Choices /= 1
1978                   then
1979                      Error_Msg_N
1980                        ("dynamic or empty choice in aggregate " &
1981                         "must be the only choice", Choice);
1982                      return Failure;
1983                   end if;
1984
1985                   Nb_Discrete_Choices := Nb_Discrete_Choices + 1;
1986                   Table (Nb_Discrete_Choices).Choice_Lo := Low;
1987                   Table (Nb_Discrete_Choices).Choice_Hi := High;
1988
1989                   Next (Choice);
1990
1991                   if No (Choice) then
1992
1993                      --  Check if we have a single discrete choice and whether
1994                      --  this discrete choice specifies a single value.
1995
1996                      Single_Choice :=
1997                        (Nb_Discrete_Choices = Prev_Nb_Discrete_Choices + 1)
1998                          and then (Low = High);
1999
2000                      exit;
2001                   end if;
2002                end loop;
2003
2004                --  Ada 2005 (AI-231)
2005
2006                if Ada_Version >= Ada_2005
2007                  and then Known_Null (Expression (Assoc))
2008                then
2009                   Check_Can_Never_Be_Null (Etype (N), Expression (Assoc));
2010                end if;
2011
2012                --  Ada 2005 (AI-287): In case of default initialized component
2013                --  we delay the resolution to the expansion phase.
2014
2015                if Box_Present (Assoc) then
2016
2017                   --  Ada 2005 (AI-287): In case of default initialization of a
2018                   --  component the expander will generate calls to the
2019                   --  corresponding initialization subprogram. We need to call
2020                   --  Resolve_Aggr_Expr to check the rules about
2021                   --  dimensionality.
2022
2023                   if not Resolve_Aggr_Expr (Assoc,
2024                                             Single_Elmt => Single_Choice)
2025                   then
2026                      return Failure;
2027                   end if;
2028
2029                elsif not Resolve_Aggr_Expr (Expression (Assoc),
2030                                             Single_Elmt => Single_Choice)
2031                then
2032                   return Failure;
2033
2034                --  Check incorrect use of dynamically tagged expression
2035
2036                --  We differentiate here two cases because the expression may
2037                --  not be decorated. For example, the analysis and resolution
2038                --  of the expression associated with the others choice will be
2039                --  done later with the full aggregate. In such case we
2040                --  duplicate the expression tree to analyze the copy and
2041                --  perform the required check.
2042
2043                elsif not Present (Etype (Expression (Assoc))) then
2044                   declare
2045                      Save_Analysis : constant Boolean := Full_Analysis;
2046                      Expr          : constant Node_Id :=
2047                                        New_Copy_Tree (Expression (Assoc));
2048
2049                   begin
2050                      Expander_Mode_Save_And_Set (False);
2051                      Full_Analysis := False;
2052
2053                      --  Analyze the expression, making sure it is properly
2054                      --  attached to the tree before we do the analysis.
2055
2056                      Set_Parent (Expr, Parent (Expression (Assoc)));
2057                      Analyze (Expr);
2058
2059                      --  If the expression is a literal, propagate this info
2060                      --  to the expression in the association, to enable some
2061                      --  optimizations downstream.
2062
2063                      if Is_Entity_Name (Expr)
2064                        and then Present (Entity (Expr))
2065                        and then Ekind (Entity (Expr)) = E_Enumeration_Literal
2066                      then
2067                         Analyze_And_Resolve
2068                           (Expression (Assoc), Component_Typ);
2069                      end if;
2070
2071                      Full_Analysis := Save_Analysis;
2072                      Expander_Mode_Restore;
2073
2074                      if Is_Tagged_Type (Etype (Expr)) then
2075                         Check_Dynamically_Tagged_Expression
2076                           (Expr => Expr,
2077                            Typ  => Component_Type (Etype (N)),
2078                            Related_Nod => N);
2079                      end if;
2080                   end;
2081
2082                elsif Is_Tagged_Type (Etype (Expression (Assoc))) then
2083                   Check_Dynamically_Tagged_Expression
2084                     (Expr        => Expression (Assoc),
2085                      Typ         => Component_Type (Etype (N)),
2086                      Related_Nod => N);
2087                end if;
2088
2089                Next (Assoc);
2090             end loop;
2091
2092             --  If aggregate contains more than one choice then these must be
2093             --  static. Sort them and check that they are contiguous.
2094
2095             if Nb_Discrete_Choices > 1 then
2096                Sort_Case_Table (Table);
2097                Missing_Values := False;
2098
2099                Outer : for J in 1 .. Nb_Discrete_Choices - 1 loop
2100                   if Expr_Value (Table (J).Choice_Hi) >=
2101                        Expr_Value (Table (J + 1).Choice_Lo)
2102                   then
2103                      Error_Msg_N
2104                        ("duplicate choice values in array aggregate",
2105                         Table (J).Choice_Hi);
2106                      return Failure;
2107
2108                   elsif not Others_Present then
2109                      Hi_Val := Expr_Value (Table (J).Choice_Hi);
2110                      Lo_Val := Expr_Value (Table (J + 1).Choice_Lo);
2111
2112                      --  If missing values, output error messages
2113
2114                      if Lo_Val - Hi_Val > 1 then
2115
2116                         --  Header message if not first missing value
2117
2118                         if not Missing_Values then
2119                            Error_Msg_N
2120                              ("missing index value(s) in array aggregate", N);
2121                            Missing_Values := True;
2122                         end if;
2123
2124                         --  Output values of missing indexes
2125
2126                         Lo_Val := Lo_Val - 1;
2127                         Hi_Val := Hi_Val + 1;
2128
2129                         --  Enumeration type case
2130
2131                         if Is_Enumeration_Type (Index_Typ) then
2132                            Error_Msg_Name_1 :=
2133                              Chars
2134                                (Get_Enum_Lit_From_Pos
2135                                  (Index_Typ, Hi_Val, Loc));
2136
2137                            if Lo_Val = Hi_Val then
2138                               Error_Msg_N ("\  %", N);
2139                            else
2140                               Error_Msg_Name_2 :=
2141                                 Chars
2142                                   (Get_Enum_Lit_From_Pos
2143                                     (Index_Typ, Lo_Val, Loc));
2144                               Error_Msg_N ("\  % .. %", N);
2145                            end if;
2146
2147                         --  Integer types case
2148
2149                         else
2150                            Error_Msg_Uint_1 := Hi_Val;
2151
2152                            if Lo_Val = Hi_Val then
2153                               Error_Msg_N ("\  ^", N);
2154                            else
2155                               Error_Msg_Uint_2 := Lo_Val;
2156                               Error_Msg_N ("\  ^ .. ^", N);
2157                            end if;
2158                         end if;
2159                      end if;
2160                   end if;
2161                end loop Outer;
2162
2163                if Missing_Values then
2164                   Set_Etype (N, Any_Composite);
2165                   return Failure;
2166                end if;
2167             end if;
2168
2169             --  STEP 2 (B): Compute aggregate bounds and min/max choices values
2170
2171             if Nb_Discrete_Choices > 0 then
2172                Choices_Low  := Table (1).Choice_Lo;
2173                Choices_High := Table (Nb_Discrete_Choices).Choice_Hi;
2174             end if;
2175
2176             --  If Others is present, then bounds of aggregate come from the
2177             --  index constraint (not the choices in the aggregate itself).
2178
2179             if Others_Present then
2180                Get_Index_Bounds (Index_Constr, Aggr_Low, Aggr_High);
2181
2182             --  No others clause present
2183
2184             else
2185                --  Special processing if others allowed and not present. This
2186                --  means that the bounds of the aggregate come from the index
2187                --  constraint (and the length must match).
2188
2189                if Others_Allowed then
2190                   Get_Index_Bounds (Index_Constr, Aggr_Low, Aggr_High);
2191
2192                   --  If others allowed, and no others present, then the array
2193                   --  should cover all index values. If it does not, we will
2194                   --  get a length check warning, but there is two cases where
2195                   --  an additional warning is useful:
2196
2197                   --  If we have no positional components, and the length is
2198                   --  wrong (which we can tell by others being allowed with
2199                   --  missing components), and the index type is an enumeration
2200                   --  type, then issue appropriate warnings about these missing
2201                   --  components. They are only warnings, since the aggregate
2202                   --  is fine, it's just the wrong length. We skip this check
2203                   --  for standard character types (since there are no literals
2204                   --  and it is too much trouble to concoct them), and also if
2205                   --  any of the bounds have not-known-at-compile-time values.
2206
2207                   --  Another case warranting a warning is when the length is
2208                   --  right, but as above we have an index type that is an
2209                   --  enumeration, and the bounds do not match. This is a
2210                   --  case where dubious sliding is allowed and we generate
2211                   --  a warning that the bounds do not match.
2212
2213                   if No (Expressions (N))
2214                     and then Nkind (Index) = N_Range
2215                     and then Is_Enumeration_Type (Etype (Index))
2216                     and then not Is_Standard_Character_Type (Etype (Index))
2217                     and then Compile_Time_Known_Value (Aggr_Low)
2218                     and then Compile_Time_Known_Value (Aggr_High)
2219                     and then Compile_Time_Known_Value (Choices_Low)
2220                     and then Compile_Time_Known_Value (Choices_High)
2221                   then
2222                      --  If any of the expressions or range bounds in choices
2223                      --  have semantic errors, then do not attempt further
2224                      --  resolution, to prevent cascaded errors.
2225
2226                      if Errors_Posted_On_Choices then
2227                         return Failure;
2228                      end if;
2229
2230                      declare
2231                         ALo : constant Node_Id := Expr_Value_E (Aggr_Low);
2232                         AHi : constant Node_Id := Expr_Value_E (Aggr_High);
2233                         CLo : constant Node_Id := Expr_Value_E (Choices_Low);
2234                         CHi : constant Node_Id := Expr_Value_E (Choices_High);
2235
2236                         Ent : Entity_Id;
2237
2238                      begin
2239                         --  Warning case 1, missing values at start/end. Only
2240                         --  do the check if the number of entries is too small.
2241
2242                         if (Enumeration_Pos (CHi) - Enumeration_Pos (CLo))
2243                               <
2244                            (Enumeration_Pos (AHi) - Enumeration_Pos (ALo))
2245                         then
2246                            Error_Msg_N
2247                              ("missing index value(s) in array aggregate?", N);
2248
2249                            --  Output missing value(s) at start
2250
2251                            if Chars (ALo) /= Chars (CLo) then
2252                               Ent := Prev (CLo);
2253
2254                               if Chars (ALo) = Chars (Ent) then
2255                                  Error_Msg_Name_1 := Chars (ALo);
2256                                  Error_Msg_N ("\  %?", N);
2257                               else
2258                                  Error_Msg_Name_1 := Chars (ALo);
2259                                  Error_Msg_Name_2 := Chars (Ent);
2260                                  Error_Msg_N ("\  % .. %?", N);
2261                               end if;
2262                            end if;
2263
2264                            --  Output missing value(s) at end
2265
2266                            if Chars (AHi) /= Chars (CHi) then
2267                               Ent := Next (CHi);
2268
2269                               if Chars (AHi) = Chars (Ent) then
2270                                  Error_Msg_Name_1 := Chars (Ent);
2271                                  Error_Msg_N ("\  %?", N);
2272                               else
2273                                  Error_Msg_Name_1 := Chars (Ent);
2274                                  Error_Msg_Name_2 := Chars (AHi);
2275                                  Error_Msg_N ("\  % .. %?", N);
2276                               end if;
2277                            end if;
2278
2279                         --  Warning case 2, dubious sliding. The First_Subtype
2280                         --  test distinguishes between a constrained type where
2281                         --  sliding is not allowed (so we will get a warning
2282                         --  later that Constraint_Error will be raised), and
2283                         --  the unconstrained case where sliding is permitted.
2284
2285                         elsif (Enumeration_Pos (CHi) - Enumeration_Pos (CLo))
2286                                  =
2287                               (Enumeration_Pos (AHi) - Enumeration_Pos (ALo))
2288                           and then Chars (ALo) /= Chars (CLo)
2289                           and then
2290                             not Is_Constrained (First_Subtype (Etype (N)))
2291                         then
2292                            Error_Msg_N
2293                              ("bounds of aggregate do not match target?", N);
2294                         end if;
2295                      end;
2296                   end if;
2297                end if;
2298
2299                --  If no others, aggregate bounds come from aggregate
2300
2301                Aggr_Low  := Choices_Low;
2302                Aggr_High := Choices_High;
2303             end if;
2304          end Step_2;
2305
2306       --  STEP 3: Process positional components
2307
2308       else
2309          --  STEP 3 (A): Process positional elements
2310
2311          Expr := First (Expressions (N));
2312          Nb_Elements := Uint_0;
2313          while Present (Expr) loop
2314             Nb_Elements := Nb_Elements + 1;
2315
2316             --  Ada 2005 (AI-231)
2317
2318             if Ada_Version >= Ada_2005
2319               and then Known_Null (Expr)
2320             then
2321                Check_Can_Never_Be_Null (Etype (N), Expr);
2322             end if;
2323
2324             if not Resolve_Aggr_Expr (Expr, Single_Elmt => True) then
2325                return Failure;
2326             end if;
2327
2328             --  Check incorrect use of dynamically tagged expression
2329
2330             if Is_Tagged_Type (Etype (Expr)) then
2331                Check_Dynamically_Tagged_Expression
2332                  (Expr => Expr,
2333                   Typ  => Component_Type (Etype (N)),
2334                   Related_Nod => N);
2335             end if;
2336
2337             Next (Expr);
2338          end loop;
2339
2340          if Others_Present then
2341             Assoc := Last (Component_Associations (N));
2342
2343             --  Ada 2005 (AI-231)
2344
2345             if Ada_Version >= Ada_2005
2346               and then Known_Null (Assoc)
2347             then
2348                Check_Can_Never_Be_Null (Etype (N), Expression (Assoc));
2349             end if;
2350
2351             --  Ada 2005 (AI-287): In case of default initialized component,
2352             --  we delay the resolution to the expansion phase.
2353
2354             if Box_Present (Assoc) then
2355
2356                --  Ada 2005 (AI-287): In case of default initialization of a
2357                --  component the expander will generate calls to the
2358                --  corresponding initialization subprogram. We need to call
2359                --  Resolve_Aggr_Expr to check the rules about
2360                --  dimensionality.
2361
2362                if not Resolve_Aggr_Expr (Assoc, Single_Elmt => False) then
2363                   return Failure;
2364                end if;
2365
2366             elsif not Resolve_Aggr_Expr (Expression (Assoc),
2367                                          Single_Elmt => False)
2368             then
2369                return Failure;
2370
2371             --  Check incorrect use of dynamically tagged expression. The
2372             --  expression of the others choice has not been resolved yet.
2373             --  In order to diagnose the semantic error we create a duplicate
2374             --  tree to analyze it and perform the check.
2375
2376             else
2377                declare
2378                   Save_Analysis : constant Boolean := Full_Analysis;
2379                   Expr          : constant Node_Id :=
2380                                     New_Copy_Tree (Expression (Assoc));
2381
2382                begin
2383                   Expander_Mode_Save_And_Set (False);
2384                   Full_Analysis := False;
2385                   Analyze (Expr);
2386                   Full_Analysis := Save_Analysis;
2387                   Expander_Mode_Restore;
2388
2389                   if Is_Tagged_Type (Etype (Expr)) then
2390                      Check_Dynamically_Tagged_Expression
2391                        (Expr => Expr,
2392                         Typ  => Component_Type (Etype (N)),
2393                         Related_Nod => N);
2394                   end if;
2395                end;
2396             end if;
2397          end if;
2398
2399          --  STEP 3 (B): Compute the aggregate bounds
2400
2401          if Others_Present then
2402             Get_Index_Bounds (Index_Constr, Aggr_Low, Aggr_High);
2403
2404          else
2405             if Others_Allowed then
2406                Get_Index_Bounds (Index_Constr, Aggr_Low, Discard);
2407             else
2408                Aggr_Low := Index_Typ_Low;
2409             end if;
2410
2411             Aggr_High := Add (Nb_Elements - 1, To => Aggr_Low);
2412             Check_Bound (Index_Base_High, Aggr_High);
2413          end if;
2414       end if;
2415
2416       --  STEP 4: Perform static aggregate checks and save the bounds
2417
2418       --  Check (A)
2419
2420       Check_Bounds (Index_Typ_Low, Index_Typ_High, Aggr_Low, Aggr_High);
2421       Check_Bounds (Index_Base_Low, Index_Base_High, Aggr_Low, Aggr_High);
2422
2423       --  Check (B)
2424
2425       if Others_Present and then Nb_Discrete_Choices > 0 then
2426          Check_Bounds (Aggr_Low, Aggr_High, Choices_Low, Choices_High);
2427          Check_Bounds (Index_Typ_Low, Index_Typ_High,
2428                        Choices_Low, Choices_High);
2429          Check_Bounds (Index_Base_Low, Index_Base_High,
2430                        Choices_Low, Choices_High);
2431
2432       --  Check (C)
2433
2434       elsif Others_Present and then Nb_Elements > 0 then
2435          Check_Length (Aggr_Low, Aggr_High, Nb_Elements);
2436          Check_Length (Index_Typ_Low, Index_Typ_High, Nb_Elements);
2437          Check_Length (Index_Base_Low, Index_Base_High, Nb_Elements);
2438       end if;
2439
2440       if Raises_Constraint_Error (Aggr_Low)
2441         or else Raises_Constraint_Error (Aggr_High)
2442       then
2443          Set_Raises_Constraint_Error (N);
2444       end if;
2445
2446       Aggr_Low := Duplicate_Subexpr (Aggr_Low);
2447
2448       --  Do not duplicate Aggr_High if Aggr_High = Aggr_Low + Nb_Elements
2449       --  since the addition node returned by Add is not yet analyzed. Attach
2450       --  to tree and analyze first. Reset analyzed flag to ensure it will get
2451       --  analyzed when it is a literal bound whose type must be properly set.
2452
2453       if Others_Present or else Nb_Discrete_Choices > 0 then
2454          Aggr_High := Duplicate_Subexpr (Aggr_High);
2455
2456          if Etype (Aggr_High) = Universal_Integer then
2457             Set_Analyzed (Aggr_High, False);
2458          end if;
2459       end if;
2460
2461       --  If the aggregate already has bounds attached to it, it means this is
2462       --  a positional aggregate created as an optimization by
2463       --  Exp_Aggr.Convert_To_Positional, so we don't want to change those
2464       --  bounds.
2465
2466       if Present (Aggregate_Bounds (N)) and then not Others_Allowed then
2467          Aggr_Low  := Low_Bound  (Aggregate_Bounds (N));
2468          Aggr_High := High_Bound (Aggregate_Bounds (N));
2469       end if;
2470
2471       Set_Aggregate_Bounds
2472         (N, Make_Range (Loc, Low_Bound => Aggr_Low, High_Bound => Aggr_High));
2473
2474       --  The bounds may contain expressions that must be inserted upwards.
2475       --  Attach them fully to the tree. After analysis, remove side effects
2476       --  from upper bound, if still needed.
2477
2478       Set_Parent (Aggregate_Bounds (N), N);
2479       Analyze_And_Resolve (Aggregate_Bounds (N), Index_Typ);
2480       Check_Unset_Reference (Aggregate_Bounds (N));
2481
2482       if not Others_Present and then Nb_Discrete_Choices = 0 then
2483          Set_High_Bound (Aggregate_Bounds (N),
2484              Duplicate_Subexpr (High_Bound (Aggregate_Bounds (N))));
2485       end if;
2486
2487       return Success;
2488    end Resolve_Array_Aggregate;
2489
2490    ---------------------------------
2491    -- Resolve_Extension_Aggregate --
2492    ---------------------------------
2493
2494    --  There are two cases to consider:
2495
2496    --  a) If the ancestor part is a type mark, the components needed are the
2497    --  difference between the components of the expected type and the
2498    --  components of the given type mark.
2499
2500    --  b) If the ancestor part is an expression, it must be unambiguous, and
2501    --  once we have its type we can also compute the needed components as in
2502    --  the previous case. In both cases, if the ancestor type is not the
2503    --  immediate ancestor, we have to build this ancestor recursively.
2504
2505    --  In both cases, discriminants of the ancestor type do not play a role in
2506    --  the resolution of the needed components, because inherited discriminants
2507    --  cannot be used in a type extension. As a result we can compute
2508    --  independently the list of components of the ancestor type and of the
2509    --  expected type.
2510
2511    procedure Resolve_Extension_Aggregate (N : Node_Id; Typ : Entity_Id) is
2512       A      : constant Node_Id := Ancestor_Part (N);
2513       A_Type : Entity_Id;
2514       I      : Interp_Index;
2515       It     : Interp;
2516
2517       function Valid_Limited_Ancestor (Anc : Node_Id) return Boolean;
2518       --  If the type is limited, verify that the ancestor part is a legal
2519       --  expression (aggregate or function call, including 'Input)) that does
2520       --  not require a copy, as specified in 7.5(2).
2521
2522       function Valid_Ancestor_Type return Boolean;
2523       --  Verify that the type of the ancestor part is a non-private ancestor
2524       --  of the expected type, which must be a type extension.
2525
2526       ----------------------------
2527       -- Valid_Limited_Ancestor --
2528       ----------------------------
2529
2530       function Valid_Limited_Ancestor (Anc : Node_Id) return Boolean is
2531       begin
2532          if Is_Entity_Name (Anc)
2533            and then Is_Type (Entity (Anc))
2534          then
2535             return True;
2536
2537          elsif Nkind_In (Anc, N_Aggregate, N_Function_Call) then
2538             return True;
2539
2540          elsif Nkind (Anc) = N_Attribute_Reference
2541            and then Attribute_Name (Anc) = Name_Input
2542          then
2543             return True;
2544
2545          elsif Nkind (Anc) = N_Qualified_Expression then
2546             return Valid_Limited_Ancestor (Expression (Anc));
2547
2548          else
2549             return False;
2550          end if;
2551       end Valid_Limited_Ancestor;
2552
2553       -------------------------
2554       -- Valid_Ancestor_Type --
2555       -------------------------
2556
2557       function Valid_Ancestor_Type return Boolean is
2558          Imm_Type : Entity_Id;
2559
2560       begin
2561          Imm_Type := Base_Type (Typ);
2562          while Is_Derived_Type (Imm_Type) loop
2563             if Etype (Imm_Type) = Base_Type (A_Type) then
2564                return True;
2565
2566             --  The base type of the parent type may appear as  a private
2567             --  extension if it is declared as such in a parent unit of the
2568             --  current one. For consistency of the subsequent analysis use
2569             --  the partial view for the ancestor part.
2570
2571             elsif Is_Private_Type (Etype (Imm_Type))
2572               and then Present (Full_View (Etype (Imm_Type)))
2573               and then Base_Type (A_Type) = Full_View (Etype (Imm_Type))
2574             then
2575                A_Type := Etype (Imm_Type);
2576                return True;
2577
2578             --  The parent type may be a private extension. The aggregate is
2579             --  legal if the type of the aggregate is an extension of it that
2580             --  is not a private extension.
2581
2582             elsif Is_Private_Type (A_Type)
2583               and then not Is_Private_Type (Imm_Type)
2584               and then Present (Full_View (A_Type))
2585               and then Base_Type (Full_View (A_Type)) = Etype (Imm_Type)
2586             then
2587                return True;
2588
2589             else
2590                Imm_Type := Etype (Base_Type (Imm_Type));
2591             end if;
2592          end loop;
2593
2594          --  If previous loop did not find a proper ancestor, report error
2595
2596          Error_Msg_NE ("expect ancestor type of &", A, Typ);
2597          return False;
2598       end Valid_Ancestor_Type;
2599
2600    --  Start of processing for Resolve_Extension_Aggregate
2601
2602    begin
2603       --  Analyze the ancestor part and account for the case where it is a
2604       --  parameterless function call.
2605
2606       Analyze (A);
2607       Check_Parameterless_Call (A);
2608
2609       --  In SPARK, the ancestor part cannot be a type mark
2610
2611       if Is_Entity_Name (A)
2612         and then Is_Type (Entity (A))
2613       then
2614          Check_SPARK_Restriction ("ancestor part cannot be a type mark", A);
2615
2616          --  AI05-0115: if the ancestor part is a subtype mark, the ancestor
2617          --  must not have unknown discriminants.
2618
2619          if Has_Unknown_Discriminants (Root_Type (Typ)) then
2620             Error_Msg_NE
2621               ("aggregate not available for type& whose ancestor "
2622                  & "has unknown discriminants", N, Typ);
2623          end if;
2624       end if;
2625
2626       if not Is_Tagged_Type (Typ) then
2627          Error_Msg_N ("type of extension aggregate must be tagged", N);
2628          return;
2629
2630       elsif Is_Limited_Type (Typ) then
2631
2632          --  Ada 2005 (AI-287): Limited aggregates are allowed
2633
2634          if Ada_Version < Ada_2005 then
2635             Error_Msg_N ("aggregate type cannot be limited", N);
2636             Explain_Limited_Type (Typ, N);
2637             return;
2638
2639          elsif Valid_Limited_Ancestor (A) then
2640             null;
2641
2642          else
2643             Error_Msg_N
2644               ("limited ancestor part must be aggregate or function call", A);
2645          end if;
2646
2647       elsif Is_Class_Wide_Type (Typ) then
2648          Error_Msg_N ("aggregate cannot be of a class-wide type", N);
2649          return;
2650       end if;
2651
2652       if Is_Entity_Name (A)
2653         and then Is_Type (Entity (A))
2654       then
2655          A_Type := Get_Full_View (Entity (A));
2656
2657          if Valid_Ancestor_Type then
2658             Set_Entity (A, A_Type);
2659             Set_Etype  (A, A_Type);
2660
2661             Validate_Ancestor_Part (N);
2662             Resolve_Record_Aggregate (N, Typ);
2663          end if;
2664
2665       elsif Nkind (A) /= N_Aggregate then
2666          if Is_Overloaded (A) then
2667             A_Type := Any_Type;
2668
2669             Get_First_Interp (A, I, It);
2670             while Present (It.Typ) loop
2671                --  Only consider limited interpretations in the Ada 2005 case
2672
2673                if Is_Tagged_Type (It.Typ)
2674                  and then (Ada_Version >= Ada_2005
2675                             or else not Is_Limited_Type (It.Typ))
2676                then
2677                   if A_Type /= Any_Type then
2678                      Error_Msg_N ("cannot resolve expression", A);
2679                      return;
2680                   else
2681                      A_Type := It.Typ;
2682                   end if;
2683                end if;
2684
2685                Get_Next_Interp (I, It);
2686             end loop;
2687
2688             if A_Type = Any_Type then
2689                if Ada_Version >= Ada_2005 then
2690                   Error_Msg_N ("ancestor part must be of a tagged type", A);
2691                else
2692                   Error_Msg_N
2693                     ("ancestor part must be of a nonlimited tagged type", A);
2694                end if;
2695
2696                return;
2697             end if;
2698
2699          else
2700             A_Type := Etype (A);
2701          end if;
2702
2703          if Valid_Ancestor_Type then
2704             Resolve (A, A_Type);
2705             Check_Unset_Reference (A);
2706             Check_Non_Static_Context (A);
2707
2708             --  The aggregate is illegal if the ancestor expression is a call
2709             --  to a function with a limited unconstrained result, unless the
2710             --  type of the aggregate is a null extension. This restriction
2711             --  was added in AI05-67 to simplify implementation.
2712
2713             if Nkind (A) = N_Function_Call
2714               and then Is_Limited_Type (A_Type)
2715               and then not Is_Null_Extension (Typ)
2716               and then not Is_Constrained (A_Type)
2717             then
2718                Error_Msg_N
2719                  ("type of limited ancestor part must be constrained", A);
2720
2721             --  Reject the use of CPP constructors that leave objects partially
2722             --  initialized. For example:
2723
2724             --    type CPP_Root is tagged limited record ...
2725             --    pragma Import (CPP, CPP_Root);
2726
2727             --    type CPP_DT is new CPP_Root and Iface ...
2728             --    pragma Import (CPP, CPP_DT);
2729
2730             --    type Ada_DT is new CPP_DT with ...
2731
2732             --    Obj : Ada_DT := Ada_DT'(New_CPP_Root with others => <>);
2733
2734             --  Using the constructor of CPP_Root the slots of the dispatch
2735             --  table of CPP_DT cannot be set, and the secondary tag of
2736             --  CPP_DT is unknown.
2737
2738             elsif Nkind (A) = N_Function_Call
2739               and then Is_CPP_Constructor_Call (A)
2740               and then Enclosing_CPP_Parent (Typ) /= A_Type
2741             then
2742                Error_Msg_NE
2743                  ("?must use 'C'P'P constructor for type &", A,
2744                   Enclosing_CPP_Parent (Typ));
2745
2746                --  The following call is not needed if the previous warning
2747                --  is promoted to an error.
2748
2749                Resolve_Record_Aggregate (N, Typ);
2750
2751             elsif Is_Class_Wide_Type (Etype (A))
2752               and then Nkind (Original_Node (A)) = N_Function_Call
2753             then
2754                --  If the ancestor part is a dispatching call, it appears
2755                --  statically to be a legal ancestor, but it yields any member
2756                --  of the class, and it is not possible to determine whether
2757                --  it is an ancestor of the extension aggregate (much less
2758                --  which ancestor). It is not possible to determine the
2759                --  components of the extension part.
2760
2761                --  This check implements AI-306, which in fact was motivated by
2762                --  an AdaCore query to the ARG after this test was added.
2763
2764                Error_Msg_N ("ancestor part must be statically tagged", A);
2765             else
2766                Resolve_Record_Aggregate (N, Typ);
2767             end if;
2768          end if;
2769
2770       else
2771          Error_Msg_N ("no unique type for this aggregate",  A);
2772       end if;
2773    end Resolve_Extension_Aggregate;
2774
2775    ------------------------------
2776    -- Resolve_Record_Aggregate --
2777    ------------------------------
2778
2779    procedure Resolve_Record_Aggregate (N : Node_Id; Typ : Entity_Id) is
2780       Assoc : Node_Id;
2781       --  N_Component_Association node belonging to the input aggregate N
2782
2783       Expr            : Node_Id;
2784       Positional_Expr : Node_Id;
2785       Component       : Entity_Id;
2786       Component_Elmt  : Elmt_Id;
2787
2788       Components : constant Elist_Id := New_Elmt_List;
2789       --  Components is the list of the record components whose value must be
2790       --  provided in the aggregate. This list does include discriminants.
2791
2792       New_Assoc_List : constant List_Id := New_List;
2793       New_Assoc      : Node_Id;
2794       --  New_Assoc_List is the newly built list of N_Component_Association
2795       --  nodes. New_Assoc is one such N_Component_Association node in it.
2796       --  Note that while Assoc and New_Assoc contain the same kind of nodes,
2797       --  they are used to iterate over two different N_Component_Association
2798       --  lists.
2799
2800       Others_Etype : Entity_Id := Empty;
2801       --  This variable is used to save the Etype of the last record component
2802       --  that takes its value from the others choice. Its purpose is:
2803       --
2804       --    (a) make sure the others choice is useful
2805       --
2806       --    (b) make sure the type of all the components whose value is
2807       --        subsumed by the others choice are the same.
2808       --
2809       --  This variable is updated as a side effect of function Get_Value.
2810
2811       Is_Box_Present : Boolean := False;
2812       Others_Box     : Boolean := False;
2813       --  Ada 2005 (AI-287): Variables used in case of default initialization
2814       --  to provide a functionality similar to Others_Etype. Box_Present
2815       --  indicates that the component takes its default initialization;
2816       --  Others_Box indicates that at least one component takes its default
2817       --  initialization. Similar to Others_Etype, they are also updated as a
2818       --  side effect of function Get_Value.
2819
2820       procedure Add_Association
2821         (Component      : Entity_Id;
2822          Expr           : Node_Id;
2823          Assoc_List     : List_Id;
2824          Is_Box_Present : Boolean := False);
2825       --  Builds a new N_Component_Association node which associates Component
2826       --  to expression Expr and adds it to the association list being built,
2827       --  either New_Assoc_List, or the association being built for an inner
2828       --  aggregate.
2829
2830       function Discr_Present (Discr : Entity_Id) return Boolean;
2831       --  If aggregate N is a regular aggregate this routine will return True.
2832       --  Otherwise, if N is an extension aggregate, Discr is a discriminant
2833       --  whose value may already have been specified by N's ancestor part.
2834       --  This routine checks whether this is indeed the case and if so returns
2835       --  False, signaling that no value for Discr should appear in N's
2836       --  aggregate part. Also, in this case, the routine appends to
2837       --  New_Assoc_List the discriminant value specified in the ancestor part.
2838       --
2839       --  If the aggregate is in a context with expansion delayed, it will be
2840       --  reanalyzed. The inherited discriminant values must not be reinserted
2841       --  in the component list to prevent spurious errors, but they must be
2842       --  present on first analysis to build the proper subtype indications.
2843       --  The flag Inherited_Discriminant is used to prevent the re-insertion.
2844
2845       function Get_Value
2846         (Compon                 : Node_Id;
2847          From                   : List_Id;
2848          Consider_Others_Choice : Boolean := False)
2849          return                   Node_Id;
2850       --  Given a record component stored in parameter Compon, this function
2851       --  returns its value as it appears in the list From, which is a list
2852       --  of N_Component_Association nodes.
2853       --
2854       --  If no component association has a choice for the searched component,
2855       --  the value provided by the others choice is returned, if there is one,
2856       --  and Consider_Others_Choice is set to true. Otherwise Empty is
2857       --  returned. If there is more than one component association giving a
2858       --  value for the searched record component, an error message is emitted
2859       --  and the first found value is returned.
2860       --
2861       --  If Consider_Others_Choice is set and the returned expression comes
2862       --  from the others choice, then Others_Etype is set as a side effect.
2863       --  An error message is emitted if the components taking their value from
2864       --  the others choice do not have same type.
2865
2866       procedure Resolve_Aggr_Expr (Expr : Node_Id; Component : Node_Id);
2867       --  Analyzes and resolves expression Expr against the Etype of the
2868       --  Component. This routine also applies all appropriate checks to Expr.
2869       --  It finally saves a Expr in the newly created association list that
2870       --  will be attached to the final record aggregate. Note that if the
2871       --  Parent pointer of Expr is not set then Expr was produced with a
2872       --  New_Copy_Tree or some such.
2873
2874       ---------------------
2875       -- Add_Association --
2876       ---------------------
2877
2878       procedure Add_Association
2879         (Component      : Entity_Id;
2880          Expr           : Node_Id;
2881          Assoc_List     : List_Id;
2882          Is_Box_Present : Boolean := False)
2883       is
2884          Loc : Source_Ptr;
2885          Choice_List : constant List_Id := New_List;
2886          New_Assoc   : Node_Id;
2887
2888       begin
2889          --  If this is a box association the expression is missing, so
2890          --  use the Sloc of the aggregate itself for the new association.
2891
2892          if Present (Expr) then
2893             Loc := Sloc (Expr);
2894          else
2895             Loc := Sloc (N);
2896          end if;
2897
2898          Append (New_Occurrence_Of (Component, Loc), Choice_List);
2899          New_Assoc :=
2900            Make_Component_Association (Loc,
2901              Choices     => Choice_List,
2902              Expression  => Expr,
2903              Box_Present => Is_Box_Present);
2904          Append (New_Assoc, Assoc_List);
2905       end Add_Association;
2906
2907       -------------------
2908       -- Discr_Present --
2909       -------------------
2910
2911       function Discr_Present (Discr : Entity_Id) return Boolean is
2912          Regular_Aggr : constant Boolean := Nkind (N) /= N_Extension_Aggregate;
2913
2914          Loc : Source_Ptr;
2915
2916          Ancestor     : Node_Id;
2917          Comp_Assoc   : Node_Id;
2918          Discr_Expr   : Node_Id;
2919
2920          Ancestor_Typ : Entity_Id;
2921          Orig_Discr   : Entity_Id;
2922          D            : Entity_Id;
2923          D_Val        : Elmt_Id := No_Elmt; -- stop junk warning
2924
2925          Ancestor_Is_Subtyp : Boolean;
2926
2927       begin
2928          if Regular_Aggr then
2929             return True;
2930          end if;
2931
2932          --  Check whether inherited discriminant values have already been
2933          --  inserted in the aggregate. This will be the case if we are
2934          --  re-analyzing an aggregate whose expansion was delayed.
2935
2936          if Present (Component_Associations (N)) then
2937             Comp_Assoc := First (Component_Associations (N));
2938             while Present (Comp_Assoc) loop
2939                if Inherited_Discriminant (Comp_Assoc) then
2940                   return True;
2941                end if;
2942
2943                Next (Comp_Assoc);
2944             end loop;
2945          end if;
2946
2947          Ancestor     := Ancestor_Part (N);
2948          Ancestor_Typ := Etype (Ancestor);
2949          Loc          := Sloc (Ancestor);
2950
2951          --  For a private type with unknown discriminants, use the underlying
2952          --  record view if it is available.
2953
2954          if Has_Unknown_Discriminants (Ancestor_Typ)
2955            and then Present (Full_View (Ancestor_Typ))
2956            and then Present (Underlying_Record_View (Full_View (Ancestor_Typ)))
2957          then
2958             Ancestor_Typ := Underlying_Record_View (Full_View (Ancestor_Typ));
2959          end if;
2960
2961          Ancestor_Is_Subtyp :=
2962            Is_Entity_Name (Ancestor) and then Is_Type (Entity (Ancestor));
2963
2964          --  If the ancestor part has no discriminants clearly N's aggregate
2965          --  part must provide a value for Discr.
2966
2967          if not Has_Discriminants (Ancestor_Typ) then
2968             return True;
2969
2970          --  If the ancestor part is an unconstrained subtype mark then the
2971          --  Discr must be present in N's aggregate part.
2972
2973          elsif Ancestor_Is_Subtyp
2974            and then not Is_Constrained (Entity (Ancestor))
2975          then
2976             return True;
2977          end if;
2978
2979          --  Now look to see if Discr was specified in the ancestor part
2980
2981          if Ancestor_Is_Subtyp then
2982             D_Val := First_Elmt (Discriminant_Constraint (Entity (Ancestor)));
2983          end if;
2984
2985          Orig_Discr := Original_Record_Component (Discr);
2986
2987          D := First_Discriminant (Ancestor_Typ);
2988          while Present (D) loop
2989
2990             --  If Ancestor has already specified Disc value then insert its
2991             --  value in the final aggregate.
2992
2993             if Original_Record_Component (D) = Orig_Discr then
2994                if Ancestor_Is_Subtyp then
2995                   Discr_Expr := New_Copy_Tree (Node (D_Val));
2996                else
2997                   Discr_Expr :=
2998                     Make_Selected_Component (Loc,
2999                       Prefix        => Duplicate_Subexpr (Ancestor),
3000                       Selector_Name => New_Occurrence_Of (Discr, Loc));
3001                end if;
3002
3003                Resolve_Aggr_Expr (Discr_Expr, Discr);
3004                Set_Inherited_Discriminant (Last (New_Assoc_List));
3005                return False;
3006             end if;
3007
3008             Next_Discriminant (D);
3009
3010             if Ancestor_Is_Subtyp then
3011                Next_Elmt (D_Val);
3012             end if;
3013          end loop;
3014
3015          return True;
3016       end Discr_Present;
3017
3018       ---------------
3019       -- Get_Value --
3020       ---------------
3021
3022       function Get_Value
3023         (Compon                 : Node_Id;
3024          From                   : List_Id;
3025          Consider_Others_Choice : Boolean := False)
3026          return                   Node_Id
3027       is
3028          Assoc         : Node_Id;
3029          Expr          : Node_Id := Empty;
3030          Selector_Name : Node_Id;
3031
3032       begin
3033          Is_Box_Present := False;
3034
3035          if Present (From) then
3036             Assoc := First (From);
3037          else
3038             return Empty;
3039          end if;
3040
3041          while Present (Assoc) loop
3042             Selector_Name := First (Choices (Assoc));
3043             while Present (Selector_Name) loop
3044                if Nkind (Selector_Name) = N_Others_Choice then
3045                   if Consider_Others_Choice and then No (Expr) then
3046
3047                      --  We need to duplicate the expression for each
3048                      --  successive component covered by the others choice.
3049                      --  This is redundant if the others_choice covers only
3050                      --  one component (small optimization possible???), but
3051                      --  indispensable otherwise, because each one must be
3052                      --  expanded individually to preserve side-effects.
3053
3054                      --  Ada 2005 (AI-287): In case of default initialization
3055                      --  of components, we duplicate the corresponding default
3056                      --  expression (from the record type declaration). The
3057                      --  copy must carry the sloc of the association (not the
3058                      --  original expression) to prevent spurious elaboration
3059                      --  checks when the default includes function calls.
3060
3061                      if Box_Present (Assoc) then
3062                         Others_Box     := True;
3063                         Is_Box_Present := True;
3064
3065                         if Expander_Active then
3066                            return
3067                              New_Copy_Tree
3068                                (Expression (Parent (Compon)),
3069                                 New_Sloc => Sloc (Assoc));
3070                         else
3071                            return Expression (Parent (Compon));
3072                         end if;
3073
3074                      else
3075                         if Present (Others_Etype) and then
3076                            Base_Type (Others_Etype) /= Base_Type (Etype
3077                                                                    (Compon))
3078                         then
3079                            Error_Msg_N ("components in OTHERS choice must " &
3080                                         "have same type", Selector_Name);
3081                         end if;
3082
3083                         Others_Etype := Etype (Compon);
3084
3085                         if Expander_Active then
3086                            return New_Copy_Tree (Expression (Assoc));
3087                         else
3088                            return Expression (Assoc);
3089                         end if;
3090                      end if;
3091                   end if;
3092
3093                elsif Chars (Compon) = Chars (Selector_Name) then
3094                   if No (Expr) then
3095
3096                      --  Ada 2005 (AI-231)
3097
3098                      if Ada_Version >= Ada_2005
3099                        and then Known_Null (Expression (Assoc))
3100                      then
3101                         Check_Can_Never_Be_Null (Compon, Expression (Assoc));
3102                      end if;
3103
3104                      --  We need to duplicate the expression when several
3105                      --  components are grouped together with a "|" choice.
3106                      --  For instance "filed1 | filed2 => Expr"
3107
3108                      --  Ada 2005 (AI-287)
3109
3110                      if Box_Present (Assoc) then
3111                         Is_Box_Present := True;
3112
3113                         --  Duplicate the default expression of the component
3114                         --  from the record type declaration, so a new copy
3115                         --  can be attached to the association.
3116
3117                         --  Note that we always copy the default expression,
3118                         --  even when the association has a single choice, in
3119                         --  order to create a proper association for the
3120                         --  expanded aggregate.
3121
3122                         Expr := New_Copy_Tree (Expression (Parent (Compon)));
3123
3124                      else
3125                         if Present (Next (Selector_Name)) then
3126                            Expr := New_Copy_Tree (Expression (Assoc));
3127                         else
3128                            Expr := Expression (Assoc);
3129                         end if;
3130                      end if;
3131
3132                      Generate_Reference (Compon, Selector_Name, 'm');
3133
3134                   else
3135                      Error_Msg_NE
3136                        ("more than one value supplied for &",
3137                         Selector_Name, Compon);
3138
3139                   end if;
3140                end if;
3141
3142                Next (Selector_Name);
3143             end loop;
3144
3145             Next (Assoc);
3146          end loop;
3147
3148          return Expr;
3149       end Get_Value;
3150
3151       -----------------------
3152       -- Resolve_Aggr_Expr --
3153       -----------------------
3154
3155       procedure Resolve_Aggr_Expr (Expr : Node_Id; Component : Node_Id) is
3156          New_C     : Entity_Id := Component;
3157          Expr_Type : Entity_Id := Empty;
3158
3159          function Has_Expansion_Delayed (Expr : Node_Id) return Boolean;
3160          --  If the expression is an aggregate (possibly qualified) then its
3161          --  expansion is delayed until the enclosing aggregate is expanded
3162          --  into assignments. In that case, do not generate checks on the
3163          --  expression, because they will be generated later, and will other-
3164          --  wise force a copy (to remove side-effects) that would leave a
3165          --  dynamic-sized aggregate in the code, something that gigi cannot
3166          --  handle.
3167
3168          Relocate  : Boolean;
3169          --  Set to True if the resolved Expr node needs to be relocated
3170          --  when attached to the newly created association list. This node
3171          --  need not be relocated if its parent pointer is not set.
3172          --  In fact in this case Expr is the output of a New_Copy_Tree call.
3173          --  if Relocate is True then we have analyzed the expression node
3174          --  in the original aggregate and hence it needs to be relocated
3175          --  when moved over the new association list.
3176
3177          function Has_Expansion_Delayed (Expr : Node_Id) return Boolean is
3178             Kind : constant Node_Kind := Nkind (Expr);
3179          begin
3180             return (Nkind_In (Kind, N_Aggregate, N_Extension_Aggregate)
3181                      and then Present (Etype (Expr))
3182                      and then Is_Record_Type (Etype (Expr))
3183                      and then Expansion_Delayed (Expr))
3184               or else (Kind = N_Qualified_Expression
3185                         and then Has_Expansion_Delayed (Expression (Expr)));
3186          end Has_Expansion_Delayed;
3187
3188       --  Start of processing for  Resolve_Aggr_Expr
3189
3190       begin
3191          --  If the type of the component is elementary or the type of the
3192          --  aggregate does not contain discriminants, use the type of the
3193          --  component to resolve Expr.
3194
3195          if Is_Elementary_Type (Etype (Component))
3196            or else not Has_Discriminants (Etype (N))
3197          then
3198             Expr_Type := Etype (Component);
3199
3200          --  Otherwise we have to pick up the new type of the component from
3201          --  the new constrained subtype of the aggregate. In fact components
3202          --  which are of a composite type might be constrained by a
3203          --  discriminant, and we want to resolve Expr against the subtype were
3204          --  all discriminant occurrences are replaced with their actual value.
3205
3206          else
3207             New_C := First_Component (Etype (N));
3208             while Present (New_C) loop
3209                if Chars (New_C) = Chars (Component) then
3210                   Expr_Type := Etype (New_C);
3211                   exit;
3212                end if;
3213
3214                Next_Component (New_C);
3215             end loop;
3216
3217             pragma Assert (Present (Expr_Type));
3218
3219             --  For each range in an array type where a discriminant has been
3220             --  replaced with the constraint, check that this range is within
3221             --  the range of the base type. This checks is done in the init
3222             --  proc for regular objects, but has to be done here for
3223             --  aggregates since no init proc is called for them.
3224
3225             if Is_Array_Type (Expr_Type) then
3226                declare
3227                   Index : Node_Id;
3228                   --  Range of the current constrained index in the array
3229
3230                   Orig_Index : Node_Id := First_Index (Etype (Component));
3231                   --  Range corresponding to the range Index above in the
3232                   --  original unconstrained record type. The bounds of this
3233                   --  range may be governed by discriminants.
3234
3235                   Unconstr_Index : Node_Id := First_Index (Etype (Expr_Type));
3236                   --  Range corresponding to the range Index above for the
3237                   --  unconstrained array type. This range is needed to apply
3238                   --  range checks.
3239
3240                begin
3241                   Index := First_Index (Expr_Type);
3242                   while Present (Index) loop
3243                      if Depends_On_Discriminant (Orig_Index) then
3244                         Apply_Range_Check (Index, Etype (Unconstr_Index));
3245                      end if;
3246
3247                      Next_Index (Index);
3248                      Next_Index (Orig_Index);
3249                      Next_Index (Unconstr_Index);
3250                   end loop;
3251                end;
3252             end if;
3253          end if;
3254
3255          --  If the Parent pointer of Expr is not set, Expr is an expression
3256          --  duplicated by New_Tree_Copy (this happens for record aggregates
3257          --  that look like (Field1 | Filed2 => Expr) or (others => Expr)).
3258          --  Such a duplicated expression must be attached to the tree
3259          --  before analysis and resolution to enforce the rule that a tree
3260          --  fragment should never be analyzed or resolved unless it is
3261          --  attached to the current compilation unit.
3262
3263          if No (Parent (Expr)) then
3264             Set_Parent (Expr, N);
3265             Relocate := False;
3266          else
3267             Relocate := True;
3268          end if;
3269
3270          Analyze_And_Resolve (Expr, Expr_Type);
3271          Check_Expr_OK_In_Limited_Aggregate (Expr);
3272          Check_Non_Static_Context (Expr);
3273          Check_Unset_Reference (Expr);
3274
3275          --  Check wrong use of class-wide types
3276
3277          if Is_Class_Wide_Type (Etype (Expr)) then
3278             Error_Msg_N ("dynamically tagged expression not allowed", Expr);
3279          end if;
3280
3281          if not Has_Expansion_Delayed (Expr) then
3282             Aggregate_Constraint_Checks (Expr, Expr_Type);
3283          end if;
3284
3285          if Raises_Constraint_Error (Expr) then
3286             Set_Raises_Constraint_Error (N);
3287          end if;
3288
3289          --  If the expression has been marked as requiring a range check,
3290          --  then generate it here.
3291
3292          if Do_Range_Check (Expr) then
3293             Set_Do_Range_Check (Expr, False);
3294             Generate_Range_Check (Expr, Expr_Type, CE_Range_Check_Failed);
3295          end if;
3296
3297          if Relocate then
3298             Add_Association (New_C, Relocate_Node (Expr), New_Assoc_List);
3299          else
3300             Add_Association (New_C, Expr, New_Assoc_List);
3301          end if;
3302       end Resolve_Aggr_Expr;
3303
3304    --  Start of processing for Resolve_Record_Aggregate
3305
3306    begin
3307       --  A record aggregate is restricted in SPARK:
3308       --    Each named association can have only a single choice.
3309       --    OTHERS cannot be used.
3310       --    Positional and named associations cannot be mixed.
3311
3312       if Present (Component_Associations (N))
3313         and then Present (First (Component_Associations (N)))
3314       then
3315
3316          if Present (Expressions (N)) then
3317             Check_SPARK_Restriction
3318               ("named association cannot follow positional one",
3319                First (Choices (First (Component_Associations (N)))));
3320          end if;
3321
3322          declare
3323             Assoc : Node_Id;
3324
3325          begin
3326             Assoc := First (Component_Associations (N));
3327             while Present (Assoc) loop
3328                if List_Length (Choices (Assoc)) > 1 then
3329                   Check_SPARK_Restriction
3330                     ("component association in record aggregate must "
3331                      & "contain a single choice", Assoc);
3332                end if;
3333
3334                if Nkind (First (Choices (Assoc))) = N_Others_Choice then
3335                   Check_SPARK_Restriction
3336                     ("record aggregate cannot contain OTHERS", Assoc);
3337                end if;
3338
3339                Assoc := Next (Assoc);
3340             end loop;
3341          end;
3342       end if;
3343
3344       --  We may end up calling Duplicate_Subexpr on expressions that are
3345       --  attached to New_Assoc_List. For this reason we need to attach it
3346       --  to the tree by setting its parent pointer to N. This parent point
3347       --  will change in STEP 8 below.
3348
3349       Set_Parent (New_Assoc_List, N);
3350
3351       --  STEP 1: abstract type and null record verification
3352
3353       if Is_Abstract_Type (Typ) then
3354          Error_Msg_N ("type of aggregate cannot be abstract",  N);
3355       end if;
3356
3357       if No (First_Entity (Typ)) and then Null_Record_Present (N) then
3358          Set_Etype (N, Typ);
3359          return;
3360
3361       elsif Present (First_Entity (Typ))
3362         and then Null_Record_Present (N)
3363         and then not Is_Tagged_Type (Typ)
3364       then
3365          Error_Msg_N ("record aggregate cannot be null", N);
3366          return;
3367
3368       --  If the type has no components, then the aggregate should either
3369       --  have "null record", or in Ada 2005 it could instead have a single
3370       --  component association given by "others => <>". For Ada 95 we flag
3371       --  an error at this point, but for Ada 2005 we proceed with checking
3372       --  the associations below, which will catch the case where it's not
3373       --  an aggregate with "others => <>". Note that the legality of a <>
3374       --  aggregate for a null record type was established by AI05-016.
3375
3376       elsif No (First_Entity (Typ))
3377          and then Ada_Version < Ada_2005
3378       then
3379          Error_Msg_N ("record aggregate must be null", N);
3380          return;
3381       end if;
3382
3383       --  STEP 2: Verify aggregate structure
3384
3385       Step_2 : declare
3386          Selector_Name : Node_Id;
3387          Bad_Aggregate : Boolean := False;
3388
3389       begin
3390          if Present (Component_Associations (N)) then
3391             Assoc := First (Component_Associations (N));
3392          else
3393             Assoc := Empty;
3394          end if;
3395
3396          while Present (Assoc) loop
3397             Selector_Name := First (Choices (Assoc));
3398             while Present (Selector_Name) loop
3399                if Nkind (Selector_Name) = N_Identifier then
3400                   null;
3401
3402                elsif Nkind (Selector_Name) = N_Others_Choice then
3403                   if Selector_Name /= First (Choices (Assoc))
3404                     or else Present (Next (Selector_Name))
3405                   then
3406                      Error_Msg_N
3407                        ("OTHERS must appear alone in a choice list",
3408                         Selector_Name);
3409                      return;
3410
3411                   elsif Present (Next (Assoc)) then
3412                      Error_Msg_N
3413                        ("OTHERS must appear last in an aggregate",
3414                         Selector_Name);
3415                      return;
3416
3417                   --  (Ada2005): If this is an association with a box,
3418                   --  indicate that the association need not represent
3419                   --  any component.
3420
3421                   elsif Box_Present (Assoc) then
3422                      Others_Box := True;
3423                   end if;
3424
3425                else
3426                   Error_Msg_N
3427                     ("selector name should be identifier or OTHERS",
3428                      Selector_Name);
3429                   Bad_Aggregate := True;
3430                end if;
3431
3432                Next (Selector_Name);
3433             end loop;
3434
3435             Next (Assoc);
3436          end loop;
3437
3438          if Bad_Aggregate then
3439             return;
3440          end if;
3441       end Step_2;
3442
3443       --  STEP 3: Find discriminant Values
3444
3445       Step_3 : declare
3446          Discrim               : Entity_Id;
3447          Missing_Discriminants : Boolean := False;
3448
3449       begin
3450          if Present (Expressions (N)) then
3451             Positional_Expr := First (Expressions (N));
3452          else
3453             Positional_Expr := Empty;
3454          end if;
3455
3456          --  AI05-0115: if the ancestor part is a subtype mark, the ancestor
3457          --  must npt have unknown discriminants.
3458
3459          if Is_Derived_Type (Typ)
3460            and then Has_Unknown_Discriminants (Root_Type (Typ))
3461            and then Nkind (N) /= N_Extension_Aggregate
3462          then
3463             Error_Msg_NE
3464               ("aggregate not available for type& whose ancestor "
3465                  & "has unknown discriminants ", N, Typ);
3466          end if;
3467
3468          if Has_Unknown_Discriminants (Typ)
3469            and then Present (Underlying_Record_View (Typ))
3470          then
3471             Discrim := First_Discriminant (Underlying_Record_View (Typ));
3472          elsif Has_Discriminants (Typ) then
3473             Discrim := First_Discriminant (Typ);
3474          else
3475             Discrim := Empty;
3476          end if;
3477
3478          --  First find the discriminant values in the positional components
3479
3480          while Present (Discrim) and then Present (Positional_Expr) loop
3481             if Discr_Present (Discrim) then
3482                Resolve_Aggr_Expr (Positional_Expr, Discrim);
3483
3484                --  Ada 2005 (AI-231)
3485
3486                if Ada_Version >= Ada_2005
3487                  and then Known_Null (Positional_Expr)
3488                then
3489                   Check_Can_Never_Be_Null (Discrim, Positional_Expr);
3490                end if;
3491
3492                Next (Positional_Expr);
3493             end if;
3494
3495             if Present (Get_Value (Discrim, Component_Associations (N))) then
3496                Error_Msg_NE
3497                  ("more than one value supplied for discriminant&",
3498                   N, Discrim);
3499             end if;
3500
3501             Next_Discriminant (Discrim);
3502          end loop;
3503
3504          --  Find remaining discriminant values, if any, among named components
3505
3506          while Present (Discrim) loop
3507             Expr := Get_Value (Discrim, Component_Associations (N), True);
3508
3509             if not Discr_Present (Discrim) then
3510                if Present (Expr) then
3511                   Error_Msg_NE
3512                     ("more than one value supplied for discriminant&",
3513                      N, Discrim);
3514                end if;
3515
3516             elsif No (Expr) then
3517                Error_Msg_NE
3518                  ("no value supplied for discriminant &", N, Discrim);
3519                Missing_Discriminants := True;
3520
3521             else
3522                Resolve_Aggr_Expr (Expr, Discrim);
3523             end if;
3524
3525             Next_Discriminant (Discrim);
3526          end loop;
3527
3528          if Missing_Discriminants then
3529             return;
3530          end if;
3531
3532          --  At this point and until the beginning of STEP 6, New_Assoc_List
3533          --  contains only the discriminants and their values.
3534
3535       end Step_3;
3536
3537       --  STEP 4: Set the Etype of the record aggregate
3538
3539       --  ??? This code is pretty much a copy of Sem_Ch3.Build_Subtype. That
3540       --  routine should really be exported in sem_util or some such and used
3541       --  in sem_ch3 and here rather than have a copy of the code which is a
3542       --  maintenance nightmare.
3543
3544       --  ??? Performance WARNING. The current implementation creates a new
3545       --  itype for all aggregates whose base type is discriminated.
3546       --  This means that for record aggregates nested inside an array
3547       --  aggregate we will create a new itype for each record aggregate
3548       --  if the array component type has discriminants. For large aggregates
3549       --  this may be a problem. What should be done in this case is
3550       --  to reuse itypes as much as possible.
3551
3552       if Has_Discriminants (Typ)
3553         or else (Has_Unknown_Discriminants (Typ)
3554                    and then Present (Underlying_Record_View (Typ)))
3555       then
3556          Build_Constrained_Itype : declare
3557             Loc         : constant Source_Ptr := Sloc (N);
3558             Indic       : Node_Id;
3559             Subtyp_Decl : Node_Id;
3560             Def_Id      : Entity_Id;
3561
3562             C : constant List_Id := New_List;
3563
3564          begin
3565             New_Assoc := First (New_Assoc_List);
3566             while Present (New_Assoc) loop
3567                Append (Duplicate_Subexpr (Expression (New_Assoc)), To => C);
3568                Next (New_Assoc);
3569             end loop;
3570
3571             if Has_Unknown_Discriminants (Typ)
3572               and then Present (Underlying_Record_View (Typ))
3573             then
3574                Indic :=
3575                  Make_Subtype_Indication (Loc,
3576                    Subtype_Mark =>
3577                      New_Occurrence_Of (Underlying_Record_View (Typ), Loc),
3578                    Constraint  =>
3579                      Make_Index_Or_Discriminant_Constraint (Loc, C));
3580             else
3581                Indic :=
3582                  Make_Subtype_Indication (Loc,
3583                    Subtype_Mark =>
3584                      New_Occurrence_Of (Base_Type (Typ), Loc),
3585                    Constraint  =>
3586                      Make_Index_Or_Discriminant_Constraint (Loc, C));
3587             end if;
3588
3589             Def_Id := Create_Itype (Ekind (Typ), N);
3590
3591             Subtyp_Decl :=
3592               Make_Subtype_Declaration (Loc,
3593                 Defining_Identifier => Def_Id,
3594                 Subtype_Indication  => Indic);
3595             Set_Parent (Subtyp_Decl, Parent (N));
3596
3597             --  Itypes must be analyzed with checks off (see itypes.ads)
3598
3599             Analyze (Subtyp_Decl, Suppress => All_Checks);
3600
3601             Set_Etype (N, Def_Id);
3602             Check_Static_Discriminated_Subtype
3603               (Def_Id, Expression (First (New_Assoc_List)));
3604          end Build_Constrained_Itype;
3605
3606       else
3607          Set_Etype (N, Typ);
3608       end if;
3609
3610       --  STEP 5: Get remaining components according to discriminant values
3611
3612       Step_5 : declare
3613          Record_Def      : Node_Id;
3614          Parent_Typ      : Entity_Id;
3615          Root_Typ        : Entity_Id;
3616          Parent_Typ_List : Elist_Id;
3617          Parent_Elmt     : Elmt_Id;
3618          Errors_Found    : Boolean := False;
3619          Dnode           : Node_Id;
3620
3621          function Find_Private_Ancestor return Entity_Id;
3622          --  AI05-0115: Find earlier ancestor in the derivation chain that is
3623          --  derived from a private view. Whether the aggregate is legal
3624          --  depends on the current visibility of the type as well as that
3625          --  of the parent of the ancestor.
3626
3627          ---------------------------
3628          -- Find_Private_Ancestor --
3629          ---------------------------
3630
3631          function Find_Private_Ancestor return Entity_Id is
3632             Par : Entity_Id;
3633          begin
3634             Par := Typ;
3635             loop
3636                if Has_Private_Ancestor (Par)
3637                  and then not Has_Private_Ancestor (Etype (Base_Type (Par)))
3638                then
3639                   return Par;
3640
3641                elsif not Is_Derived_Type (Par) then
3642                   return Empty;
3643
3644                else
3645                   Par := Etype (Base_Type (Par));
3646                end if;
3647             end loop;
3648          end Find_Private_Ancestor;
3649
3650       begin
3651          if Is_Derived_Type (Typ) and then Is_Tagged_Type (Typ) then
3652             Parent_Typ_List := New_Elmt_List;
3653
3654             --  If this is an extension aggregate, the component list must
3655             --  include all components that are not in the given ancestor type.
3656             --  Otherwise, the component list must include components of all
3657             --  ancestors, starting with the root.
3658
3659             if Nkind (N) = N_Extension_Aggregate then
3660                Root_Typ := Base_Type (Etype (Ancestor_Part (N)));
3661
3662             else
3663                --  AI05-0115:  check legality of aggregate for type with
3664                --  aa private ancestor.
3665
3666                Root_Typ := Root_Type (Typ);
3667                if Has_Private_Ancestor (Typ) then
3668                   declare
3669                      Ancestor      : constant Entity_Id :=
3670                        Find_Private_Ancestor;
3671                      Ancestor_Unit : constant Entity_Id :=
3672                        Cunit_Entity (Get_Source_Unit (Ancestor));
3673                      Parent_Unit   : constant Entity_Id :=
3674                        Cunit_Entity
3675                          (Get_Source_Unit (Base_Type (Etype (Ancestor))));
3676                   begin
3677
3678                      --  check whether we are in a scope that has full view
3679                      --  over the private ancestor and its parent. This can
3680                      --  only happen if the derivation takes place in a child
3681                      --  unit of the unit that declares the parent, and we are
3682                      --  in the private part or body of that child unit, else
3683                      --  the aggregate is illegal.
3684
3685                      if Is_Child_Unit (Ancestor_Unit)
3686                        and then Scope (Ancestor_Unit) = Parent_Unit
3687                        and then In_Open_Scopes (Scope (Ancestor))
3688                        and then
3689                         (In_Private_Part (Scope (Ancestor))
3690                            or else In_Package_Body (Scope (Ancestor)))
3691                      then
3692                         null;
3693
3694                      else
3695                         Error_Msg_NE
3696                           ("type of aggregate has private ancestor&!",
3697                               N, Root_Typ);
3698                         Error_Msg_N ("must use extension aggregate!", N);
3699                         return;
3700                      end if;
3701                   end;
3702                end if;
3703
3704                Dnode := Declaration_Node (Base_Type (Root_Typ));
3705
3706                --  If we don't get a full declaration, then we have some error
3707                --  which will get signalled later so skip this part. Otherwise
3708                --  gather components of root that apply to the aggregate type.
3709                --  We use the base type in case there is an applicable stored
3710                --  constraint that renames the discriminants of the root.
3711
3712                if Nkind (Dnode) = N_Full_Type_Declaration then
3713                   Record_Def := Type_Definition (Dnode);
3714                   Gather_Components (Base_Type (Typ),
3715                     Component_List (Record_Def),
3716                     Governed_By   => New_Assoc_List,
3717                     Into          => Components,
3718                     Report_Errors => Errors_Found);
3719                end if;
3720             end if;
3721
3722             Parent_Typ := Base_Type (Typ);
3723             while Parent_Typ /= Root_Typ loop
3724                Prepend_Elmt (Parent_Typ, To => Parent_Typ_List);
3725                Parent_Typ := Etype (Parent_Typ);
3726
3727                if Nkind (Parent (Base_Type (Parent_Typ))) =
3728                                         N_Private_Type_Declaration
3729                  or else Nkind (Parent (Base_Type (Parent_Typ))) =
3730                                         N_Private_Extension_Declaration
3731                then
3732                   if Nkind (N) /= N_Extension_Aggregate then
3733                      Error_Msg_NE
3734                        ("type of aggregate has private ancestor&!",
3735                         N, Parent_Typ);
3736                      Error_Msg_N  ("must use extension aggregate!", N);
3737                      return;
3738
3739                   elsif Parent_Typ /= Root_Typ then
3740                      Error_Msg_NE
3741                        ("ancestor part of aggregate must be private type&",
3742                          Ancestor_Part (N), Parent_Typ);
3743                      return;
3744                   end if;
3745
3746                --  The current view of ancestor part may be a private type,
3747                --  while the context type is always non-private.
3748
3749                elsif Is_Private_Type (Root_Typ)
3750                  and then Present (Full_View (Root_Typ))
3751                  and then Nkind (N) = N_Extension_Aggregate
3752                then
3753                   exit when Base_Type (Full_View (Root_Typ)) = Parent_Typ;
3754                end if;
3755             end loop;
3756
3757             --  Now collect components from all other ancestors, beginning
3758             --  with the current type. If the type has unknown discriminants
3759             --  use the component list of the Underlying_Record_View, which
3760             --  needs to be used for the subsequent expansion of the aggregate
3761             --  into assignments.
3762
3763             Parent_Elmt := First_Elmt (Parent_Typ_List);
3764             while Present (Parent_Elmt) loop
3765                Parent_Typ := Node (Parent_Elmt);
3766
3767                if Has_Unknown_Discriminants (Parent_Typ)
3768                  and then Present (Underlying_Record_View (Typ))
3769                then
3770                   Parent_Typ := Underlying_Record_View (Parent_Typ);
3771                end if;
3772
3773                Record_Def := Type_Definition (Parent (Base_Type (Parent_Typ)));
3774                Gather_Components (Empty,
3775                  Component_List (Record_Extension_Part (Record_Def)),
3776                  Governed_By   => New_Assoc_List,
3777                  Into          => Components,
3778                  Report_Errors => Errors_Found);
3779
3780                Next_Elmt (Parent_Elmt);
3781             end loop;
3782
3783          else
3784             Record_Def := Type_Definition (Parent (Base_Type (Typ)));
3785
3786             if Null_Present (Record_Def) then
3787                null;
3788
3789             elsif not Has_Unknown_Discriminants (Typ) then
3790                Gather_Components (Base_Type (Typ),
3791                  Component_List (Record_Def),
3792                  Governed_By   => New_Assoc_List,
3793                  Into          => Components,
3794                  Report_Errors => Errors_Found);
3795
3796             else
3797                Gather_Components
3798                  (Base_Type (Underlying_Record_View (Typ)),
3799                  Component_List (Record_Def),
3800                  Governed_By   => New_Assoc_List,
3801                  Into          => Components,
3802                  Report_Errors => Errors_Found);
3803             end if;
3804          end if;
3805
3806          if Errors_Found then
3807             return;
3808          end if;
3809       end Step_5;
3810
3811       --  STEP 6: Find component Values
3812
3813       Component := Empty;
3814       Component_Elmt := First_Elmt (Components);
3815
3816       --  First scan the remaining positional associations in the aggregate.
3817       --  Remember that at this point Positional_Expr contains the current
3818       --  positional association if any is left after looking for discriminant
3819       --  values in step 3.
3820
3821       while Present (Positional_Expr) and then Present (Component_Elmt) loop
3822          Component := Node (Component_Elmt);
3823          Resolve_Aggr_Expr (Positional_Expr, Component);
3824
3825          --  Ada 2005 (AI-231)
3826
3827          if Ada_Version >= Ada_2005
3828            and then Known_Null (Positional_Expr)
3829          then
3830             Check_Can_Never_Be_Null (Component, Positional_Expr);
3831          end if;
3832
3833          if Present (Get_Value (Component, Component_Associations (N))) then
3834             Error_Msg_NE
3835               ("more than one value supplied for Component &", N, Component);
3836          end if;
3837
3838          Next (Positional_Expr);
3839          Next_Elmt (Component_Elmt);
3840       end loop;
3841
3842       if Present (Positional_Expr) then
3843          Error_Msg_N
3844            ("too many components for record aggregate", Positional_Expr);
3845       end if;
3846
3847       --  Now scan for the named arguments of the aggregate
3848
3849       while Present (Component_Elmt) loop
3850          Component := Node (Component_Elmt);
3851          Expr := Get_Value (Component, Component_Associations (N), True);
3852
3853          --  Note: The previous call to Get_Value sets the value of the
3854          --  variable Is_Box_Present.
3855
3856          --  Ada 2005 (AI-287): Handle components with default initialization.
3857          --  Note: This feature was originally added to Ada 2005 for limited
3858          --  but it was finally allowed with any type.
3859
3860          if Is_Box_Present then
3861             Check_Box_Component : declare
3862                Ctyp : constant Entity_Id := Etype (Component);
3863
3864             begin
3865                --  If there is a default expression for the aggregate, copy
3866                --  it into a new association.
3867
3868                --  If the component has an initialization procedure (IP) we
3869                --  pass the component to the expander, which will generate
3870                --  the call to such IP.
3871
3872                --  If the component has discriminants, their values must
3873                --  be taken from their subtype. This is indispensable for
3874                --  constraints that are given by the current instance of an
3875                --  enclosing type, to allow the expansion of the aggregate
3876                --  to replace the reference to the current instance by the
3877                --  target object of the aggregate.
3878
3879                if Present (Parent (Component))
3880                  and then
3881                    Nkind (Parent (Component)) = N_Component_Declaration
3882                  and then Present (Expression (Parent (Component)))
3883                then
3884                   Expr :=
3885                     New_Copy_Tree (Expression (Parent (Component)),
3886                       New_Sloc => Sloc (N));
3887
3888                   Add_Association
3889                     (Component  => Component,
3890                      Expr       => Expr,
3891                      Assoc_List => New_Assoc_List);
3892                   Set_Has_Self_Reference (N);
3893
3894                --  A box-defaulted access component gets the value null. Also
3895                --  included are components of private types whose underlying
3896                --  type is an access type. In either case set the type of the
3897                --  literal, for subsequent use in semantic checks.
3898
3899                elsif Present (Underlying_Type (Ctyp))
3900                  and then Is_Access_Type (Underlying_Type (Ctyp))
3901                then
3902                   if not Is_Private_Type (Ctyp) then
3903                      Expr := Make_Null (Sloc (N));
3904                      Set_Etype (Expr, Ctyp);
3905                      Add_Association
3906                        (Component  => Component,
3907                         Expr       => Expr,
3908                         Assoc_List => New_Assoc_List);
3909
3910                   --  If the component's type is private with an access type as
3911                   --  its underlying type then we have to create an unchecked
3912                   --  conversion to satisfy type checking.
3913
3914                   else
3915                      declare
3916                         Qual_Null : constant Node_Id :=
3917                                       Make_Qualified_Expression (Sloc (N),
3918                                         Subtype_Mark =>
3919                                           New_Occurrence_Of
3920                                             (Underlying_Type (Ctyp), Sloc (N)),
3921                                         Expression => Make_Null (Sloc (N)));
3922
3923                         Convert_Null : constant Node_Id :=
3924                                          Unchecked_Convert_To
3925                                            (Ctyp, Qual_Null);
3926
3927                      begin
3928                         Analyze_And_Resolve (Convert_Null, Ctyp);
3929                         Add_Association
3930                           (Component  => Component,
3931                            Expr       => Convert_Null,
3932                            Assoc_List => New_Assoc_List);
3933                      end;
3934                   end if;
3935
3936                elsif Has_Non_Null_Base_Init_Proc (Ctyp)
3937                  or else not Expander_Active
3938                then
3939                   if Is_Record_Type (Ctyp)
3940                     and then Has_Discriminants (Ctyp)
3941                     and then not Is_Private_Type (Ctyp)
3942                   then
3943                      --  We build a partially initialized aggregate with the
3944                      --  values of the discriminants and box initialization
3945                      --  for the rest, if other components are present.
3946                      --  The type of the aggregate is the known subtype of
3947                      --  the component. The capture of discriminants must
3948                      --  be recursive because subcomponents may be constrained
3949                      --  (transitively) by discriminants of enclosing types.
3950                      --  For a private type with discriminants, a call to the
3951                      --  initialization procedure will be generated, and no
3952                      --  subaggregate is needed.
3953
3954                      Capture_Discriminants : declare
3955                         Loc  : constant Source_Ptr := Sloc (N);
3956                         Expr : Node_Id;
3957
3958                         procedure Add_Discriminant_Values
3959                           (New_Aggr   : Node_Id;
3960                            Assoc_List : List_Id);
3961                         --  The constraint to a component may be given by a
3962                         --  discriminant of the enclosing type, in which case
3963                         --  we have to retrieve its value, which is part of the
3964                         --  enclosing aggregate. Assoc_List provides the
3965                         --  discriminant associations of the current type or
3966                         --  of some enclosing record.
3967
3968                         procedure Propagate_Discriminants
3969                           (Aggr       : Node_Id;
3970                            Assoc_List : List_Id);
3971                         --  Nested components may themselves be discriminated
3972                         --  types constrained by outer discriminants, whose
3973                         --  values must be captured before the aggregate is
3974                         --  expanded into assignments.
3975
3976                         -----------------------------
3977                         -- Add_Discriminant_Values --
3978                         -----------------------------
3979
3980                         procedure Add_Discriminant_Values
3981                           (New_Aggr   : Node_Id;
3982                            Assoc_List : List_Id)
3983                         is
3984                            Assoc      : Node_Id;
3985                            Discr      : Entity_Id;
3986                            Discr_Elmt : Elmt_Id;
3987                            Discr_Val  : Node_Id;
3988                            Val        : Entity_Id;
3989
3990                         begin
3991                            Discr := First_Discriminant (Etype (New_Aggr));
3992                            Discr_Elmt :=
3993                              First_Elmt
3994                                (Discriminant_Constraint (Etype (New_Aggr)));
3995                            while Present (Discr_Elmt) loop
3996                               Discr_Val := Node (Discr_Elmt);
3997
3998                               --  If the constraint is given by a discriminant
3999                               --  it is a discriminant of an enclosing record,
4000                               --  and its value has already been placed in the
4001                               --  association list.
4002
4003                               if Is_Entity_Name (Discr_Val)
4004                                 and then
4005                                   Ekind (Entity (Discr_Val)) = E_Discriminant
4006                               then
4007                                  Val := Entity (Discr_Val);
4008
4009                                  Assoc := First (Assoc_List);
4010                                  while Present (Assoc) loop
4011                                     if Present
4012                                       (Entity (First (Choices (Assoc))))
4013                                       and then
4014                                         Entity (First (Choices (Assoc)))
4015                                           = Val
4016                                     then
4017                                        Discr_Val := Expression (Assoc);
4018                                        exit;
4019                                     end if;
4020                                     Next (Assoc);
4021                                  end loop;
4022                               end if;
4023
4024                               Add_Association
4025                                 (Discr, New_Copy_Tree (Discr_Val),
4026                                   Component_Associations (New_Aggr));
4027
4028                               --  If the discriminant constraint is a current
4029                               --  instance, mark the current aggregate so that
4030                               --  the self-reference can be expanded later.
4031
4032                               if Nkind (Discr_Val) = N_Attribute_Reference
4033                                 and then Is_Entity_Name (Prefix (Discr_Val))
4034                                 and then Is_Type (Entity (Prefix (Discr_Val)))
4035                                 and then Etype (N) =
4036                                   Entity (Prefix (Discr_Val))
4037                               then
4038                                  Set_Has_Self_Reference (N);
4039                               end if;
4040
4041                               Next_Elmt (Discr_Elmt);
4042                               Next_Discriminant (Discr);
4043                            end loop;
4044                         end Add_Discriminant_Values;
4045
4046                         ------------------------------
4047                         --  Propagate_Discriminants --
4048                         ------------------------------
4049
4050                         procedure Propagate_Discriminants
4051                           (Aggr       : Node_Id;
4052                            Assoc_List : List_Id)
4053                         is
4054                            Aggr_Type : constant Entity_Id :=
4055                                          Base_Type (Etype (Aggr));
4056                            Def_Node  : constant Node_Id :=
4057                                          Type_Definition
4058                                            (Declaration_Node (Aggr_Type));
4059
4060                            Comp       : Node_Id;
4061                            Comp_Elmt  : Elmt_Id;
4062                            Components : constant Elist_Id := New_Elmt_List;
4063                            Needs_Box  : Boolean := False;
4064                            Errors     : Boolean;
4065
4066                            procedure Process_Component (Comp : Entity_Id);
4067                            --  Add one component with a box association to the
4068                            --  inner aggregate, and recurse if component is
4069                            --  itself composite.
4070
4071                            ------------------------
4072                            --  Process_Component --
4073                            ------------------------
4074
4075                            procedure Process_Component (Comp : Entity_Id) is
4076                               T : constant Entity_Id := Etype (Comp);
4077                               New_Aggr   : Node_Id;
4078
4079                            begin
4080                               if Is_Record_Type (T)
4081                                 and then Has_Discriminants (T)
4082                               then
4083                                  New_Aggr :=
4084                                    Make_Aggregate (Loc, New_List, New_List);
4085                                  Set_Etype (New_Aggr, T);
4086                                  Add_Association
4087                                    (Comp, New_Aggr,
4088                                      Component_Associations (Aggr));
4089
4090                                  --  Collect discriminant values and recurse
4091
4092                                  Add_Discriminant_Values
4093                                    (New_Aggr, Assoc_List);
4094                                  Propagate_Discriminants
4095                                    (New_Aggr, Assoc_List);
4096
4097                               else
4098                                  Needs_Box := True;
4099                               end if;
4100                            end Process_Component;
4101
4102                         --  Start of processing for Propagate_Discriminants
4103
4104                         begin
4105                            --  The component type may be a variant type, so
4106                            --  collect the components that are ruled by the
4107                            --  known values of the discriminants. Their values
4108                            --  have already been inserted into the component
4109                            --  list of the current aggregate.
4110
4111                            if Nkind (Def_Node) =  N_Record_Definition
4112                              and then
4113                                Present (Component_List (Def_Node))
4114                              and then
4115                                Present
4116                                  (Variant_Part (Component_List (Def_Node)))
4117                            then
4118                               Gather_Components (Aggr_Type,
4119                                 Component_List (Def_Node),
4120                                 Governed_By   => Component_Associations (Aggr),
4121                                 Into          => Components,
4122                                 Report_Errors => Errors);
4123
4124                               Comp_Elmt := First_Elmt (Components);
4125                               while Present (Comp_Elmt) loop
4126                                  if
4127                                    Ekind (Node (Comp_Elmt)) /= E_Discriminant
4128                                  then
4129                                     Process_Component (Node (Comp_Elmt));
4130                                  end if;
4131
4132                                  Next_Elmt (Comp_Elmt);
4133                               end loop;
4134
4135                            --  No variant part, iterate over all components
4136
4137                            else
4138                               Comp := First_Component (Etype (Aggr));
4139                               while Present (Comp) loop
4140                                  Process_Component (Comp);
4141                                  Next_Component (Comp);
4142                               end loop;
4143                            end if;
4144
4145                            if Needs_Box then
4146                               Append
4147                                 (Make_Component_Association (Loc,
4148                                    Choices     =>
4149                                      New_List (Make_Others_Choice (Loc)),
4150                                    Expression  => Empty,
4151                                       Box_Present => True),
4152                                  Component_Associations (Aggr));
4153                            end if;
4154                         end Propagate_Discriminants;
4155
4156                      --  Start of processing for Capture_Discriminants
4157
4158                      begin
4159                         Expr := Make_Aggregate (Loc, New_List, New_List);
4160                         Set_Etype (Expr, Ctyp);
4161
4162                         --  If the enclosing type has discriminants, they have
4163                         --  been collected in the aggregate earlier, and they
4164                         --  may appear as constraints of subcomponents.
4165
4166                         --  Similarly if this component has discriminants, they
4167                         --  might in turn be propagated to their components.
4168
4169                         if Has_Discriminants (Typ) then
4170                            Add_Discriminant_Values (Expr, New_Assoc_List);
4171                            Propagate_Discriminants (Expr, New_Assoc_List);
4172
4173                         elsif Has_Discriminants (Ctyp) then
4174                            Add_Discriminant_Values
4175                               (Expr, Component_Associations (Expr));
4176                            Propagate_Discriminants
4177                               (Expr, Component_Associations (Expr));
4178
4179                         else
4180                            declare
4181                               Comp : Entity_Id;
4182
4183                            begin
4184                               --  If the type has additional components, create
4185                               --  an OTHERS box association for them.
4186
4187                               Comp := First_Component (Ctyp);
4188                               while Present (Comp) loop
4189                                  if Ekind (Comp) = E_Component then
4190                                     if not Is_Record_Type (Etype (Comp)) then
4191                                        Append
4192                                          (Make_Component_Association (Loc,
4193                                             Choices     =>
4194                                               New_List
4195                                                (Make_Others_Choice (Loc)),
4196                                             Expression  => Empty,
4197                                                Box_Present => True),
4198                                           Component_Associations (Expr));
4199                                     end if;
4200                                     exit;
4201                                  end if;
4202
4203                                  Next_Component (Comp);
4204                               end loop;
4205                            end;
4206                         end if;
4207
4208                         Add_Association
4209                           (Component  => Component,
4210                            Expr       => Expr,
4211                            Assoc_List => New_Assoc_List);
4212                      end Capture_Discriminants;
4213
4214                   else
4215                      Add_Association
4216                        (Component      => Component,
4217                         Expr           => Empty,
4218                         Assoc_List     => New_Assoc_List,
4219                         Is_Box_Present => True);
4220                   end if;
4221
4222                --  Otherwise we only need to resolve the expression if the
4223                --  component has partially initialized values (required to
4224                --  expand the corresponding assignments and run-time checks).
4225
4226                elsif Present (Expr)
4227                  and then Is_Partially_Initialized_Type (Ctyp)
4228                then
4229                   Resolve_Aggr_Expr (Expr, Component);
4230                end if;
4231             end Check_Box_Component;
4232
4233          elsif No (Expr) then
4234
4235             --  Ignore hidden components associated with the position of the
4236             --  interface tags: these are initialized dynamically.
4237
4238             if not Present (Related_Type (Component)) then
4239                Error_Msg_NE
4240                  ("no value supplied for component &!", N, Component);
4241             end if;
4242
4243          else
4244             Resolve_Aggr_Expr (Expr, Component);
4245          end if;
4246
4247          Next_Elmt (Component_Elmt);
4248       end loop;
4249
4250       --  STEP 7: check for invalid components + check type in choice list
4251
4252       Step_7 : declare
4253          Selectr : Node_Id;
4254          --  Selector name
4255
4256          Typech : Entity_Id;
4257          --  Type of first component in choice list
4258
4259       begin
4260          if Present (Component_Associations (N)) then
4261             Assoc := First (Component_Associations (N));
4262          else
4263             Assoc := Empty;
4264          end if;
4265
4266          Verification : while Present (Assoc) loop
4267             Selectr := First (Choices (Assoc));
4268             Typech := Empty;
4269
4270             if Nkind (Selectr) = N_Others_Choice then
4271
4272                --  Ada 2005 (AI-287): others choice may have expression or box
4273
4274                if No (Others_Etype)
4275                   and then not Others_Box
4276                then
4277                   Error_Msg_N
4278                     ("OTHERS must represent at least one component", Selectr);
4279                end if;
4280
4281                exit Verification;
4282             end if;
4283
4284             while Present (Selectr) loop
4285                New_Assoc := First (New_Assoc_List);
4286                while Present (New_Assoc) loop
4287                   Component := First (Choices (New_Assoc));
4288
4289                   if Chars (Selectr) = Chars (Component) then
4290                      if Style_Check then
4291                         Check_Identifier (Selectr, Entity (Component));
4292                      end if;
4293
4294                      exit;
4295                   end if;
4296
4297                   Next (New_Assoc);
4298                end loop;
4299
4300                --  If no association, this is not a legal component of
4301                --  of the type in question, except if its association
4302                --  is provided with a box.
4303
4304                if No (New_Assoc) then
4305                   if Box_Present (Parent (Selectr)) then
4306
4307                      --  This may still be a bogus component with a box. Scan
4308                      --  list of components to verify that a component with
4309                      --  that name exists.
4310
4311                      declare
4312                         C : Entity_Id;
4313
4314                      begin
4315                         C := First_Component (Typ);
4316                         while Present (C) loop
4317                            if Chars (C) = Chars (Selectr) then
4318
4319                               --  If the context is an extension aggregate,
4320                               --  the component must not be inherited from
4321                               --  the ancestor part of the aggregate.
4322
4323                               if Nkind (N) /= N_Extension_Aggregate
4324                                 or else
4325                                   Scope (Original_Record_Component (C)) /=
4326                                                      Etype (Ancestor_Part (N))
4327                               then
4328                                  exit;
4329                               end if;
4330                            end if;
4331
4332                            Next_Component (C);
4333                         end loop;
4334
4335                         if No (C) then
4336                            Error_Msg_Node_2 := Typ;
4337                            Error_Msg_N ("& is not a component of}", Selectr);
4338                         end if;
4339                      end;
4340
4341                   elsif Chars (Selectr) /= Name_uTag
4342                     and then Chars (Selectr) /= Name_uParent
4343                   then
4344                      if not Has_Discriminants (Typ) then
4345                         Error_Msg_Node_2 := Typ;
4346                         Error_Msg_N ("& is not a component of}", Selectr);
4347                      else
4348                         Error_Msg_N
4349                           ("& is not a component of the aggregate subtype",
4350                             Selectr);
4351                      end if;
4352
4353                      Check_Misspelled_Component (Components, Selectr);
4354                   end if;
4355
4356                elsif No (Typech) then
4357                   Typech := Base_Type (Etype (Component));
4358
4359                --  AI05-0199: In Ada 2012, several components of anonymous
4360                --  access types can appear in a choice list, as long as the
4361                --  designated types match.
4362
4363                elsif Typech /= Base_Type (Etype (Component)) then
4364                   if Ada_Version >= Ada_2012
4365                     and then Ekind (Typech) = E_Anonymous_Access_Type
4366                     and then
4367                        Ekind (Etype (Component)) = E_Anonymous_Access_Type
4368                     and then Base_Type (Designated_Type (Typech)) =
4369                              Base_Type (Designated_Type (Etype (Component)))
4370                     and then
4371                       Subtypes_Statically_Match (Typech, (Etype (Component)))
4372                   then
4373                      null;
4374
4375                   elsif not Box_Present (Parent (Selectr)) then
4376                      Error_Msg_N
4377                        ("components in choice list must have same type",
4378                         Selectr);
4379                   end if;
4380                end if;
4381
4382                Next (Selectr);
4383             end loop;
4384
4385             Next (Assoc);
4386          end loop Verification;
4387       end Step_7;
4388
4389       --  STEP 8: replace the original aggregate
4390
4391       Step_8 : declare
4392          New_Aggregate : constant Node_Id := New_Copy (N);
4393
4394       begin
4395          Set_Expressions            (New_Aggregate, No_List);
4396          Set_Etype                  (New_Aggregate, Etype (N));
4397          Set_Component_Associations (New_Aggregate, New_Assoc_List);
4398
4399          Rewrite (N, New_Aggregate);
4400       end Step_8;
4401    end Resolve_Record_Aggregate;
4402
4403    -----------------------------
4404    -- Check_Can_Never_Be_Null --
4405    -----------------------------
4406
4407    procedure Check_Can_Never_Be_Null (Typ : Entity_Id; Expr : Node_Id) is
4408       Comp_Typ : Entity_Id;
4409
4410    begin
4411       pragma Assert
4412         (Ada_Version >= Ada_2005
4413           and then Present (Expr)
4414           and then Known_Null (Expr));
4415
4416       case Ekind (Typ) is
4417          when E_Array_Type  =>
4418             Comp_Typ := Component_Type (Typ);
4419
4420          when E_Component    |
4421               E_Discriminant =>
4422             Comp_Typ := Etype (Typ);
4423
4424          when others =>
4425             return;
4426       end case;
4427
4428       if Can_Never_Be_Null (Comp_Typ) then
4429
4430          --  Here we know we have a constraint error. Note that we do not use
4431          --  Apply_Compile_Time_Constraint_Error here to the Expr, which might
4432          --  seem the more natural approach. That's because in some cases the
4433          --  components are rewritten, and the replacement would be missed.
4434
4435          Insert_Action
4436            (Compile_Time_Constraint_Error
4437               (Expr,
4438                "(Ada 2005) null not allowed in null-excluding component?"),
4439             Make_Raise_Constraint_Error (Sloc (Expr),
4440               Reason => CE_Access_Check_Failed));
4441
4442          --  Set proper type for bogus component (why is this needed???)
4443
4444          Set_Etype    (Expr, Comp_Typ);
4445          Set_Analyzed (Expr);
4446       end if;
4447    end Check_Can_Never_Be_Null;
4448
4449    ---------------------
4450    -- Sort_Case_Table --
4451    ---------------------
4452
4453    procedure Sort_Case_Table (Case_Table : in out Case_Table_Type) is
4454       L : constant Int := Case_Table'First;
4455       U : constant Int := Case_Table'Last;
4456       K : Int;
4457       J : Int;
4458       T : Case_Bounds;
4459
4460    begin
4461       K := L;
4462       while K /= U loop
4463          T := Case_Table (K + 1);
4464
4465          J := K + 1;
4466          while J /= L
4467            and then Expr_Value (Case_Table (J - 1).Choice_Lo) >
4468                     Expr_Value (T.Choice_Lo)
4469          loop
4470             Case_Table (J) := Case_Table (J - 1);
4471             J := J - 1;
4472          end loop;
4473
4474          Case_Table (J) := T;
4475          K := K + 1;
4476       end loop;
4477    end Sort_Case_Table;
4478
4479 end Sem_Aggr;