OSDN Git Service

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