3a0ab48320c7e064e145450a59ab4467bae3b803
[platform/upstream/gcc.git] / gcc / ada / exp_ch4.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                              E X P _ C H 4                               --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2009, Free Software Foundation, Inc.         --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 3,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT; see file COPYING3.  If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license.          --
20 --                                                                          --
21 -- GNAT was originally developed  by the GNAT team at  New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
23 --                                                                          --
24 ------------------------------------------------------------------------------
25
26 with Atree;    use Atree;
27 with Checks;   use Checks;
28 with Debug;    use Debug;
29 with Einfo;    use Einfo;
30 with Elists;   use Elists;
31 with Errout;   use Errout;
32 with Exp_Aggr; use Exp_Aggr;
33 with Exp_Atag; use Exp_Atag;
34 with Exp_Ch3;  use Exp_Ch3;
35 with Exp_Ch6;  use Exp_Ch6;
36 with Exp_Ch7;  use Exp_Ch7;
37 with Exp_Ch9;  use Exp_Ch9;
38 with Exp_Disp; use Exp_Disp;
39 with Exp_Fixd; use Exp_Fixd;
40 with Exp_Pakd; use Exp_Pakd;
41 with Exp_Tss;  use Exp_Tss;
42 with Exp_Util; use Exp_Util;
43 with Exp_VFpt; use Exp_VFpt;
44 with Freeze;   use Freeze;
45 with Inline;   use Inline;
46 with Namet;    use Namet;
47 with Nlists;   use Nlists;
48 with Nmake;    use Nmake;
49 with Opt;      use Opt;
50 with Restrict; use Restrict;
51 with Rident;   use Rident;
52 with Rtsfind;  use Rtsfind;
53 with Sem;      use Sem;
54 with Sem_Aux;  use Sem_Aux;
55 with Sem_Cat;  use Sem_Cat;
56 with Sem_Ch3;  use Sem_Ch3;
57 with Sem_Ch8;  use Sem_Ch8;
58 with Sem_Ch13; use Sem_Ch13;
59 with Sem_Eval; use Sem_Eval;
60 with Sem_Res;  use Sem_Res;
61 with Sem_Type; use Sem_Type;
62 with Sem_Util; use Sem_Util;
63 with Sem_Warn; use Sem_Warn;
64 with Sinfo;    use Sinfo;
65 with Snames;   use Snames;
66 with Stand;    use Stand;
67 with Targparm; use Targparm;
68 with Tbuild;   use Tbuild;
69 with Ttypes;   use Ttypes;
70 with Uintp;    use Uintp;
71 with Urealp;   use Urealp;
72 with Validsw;  use Validsw;
73
74 package body Exp_Ch4 is
75
76    -----------------------
77    -- Local Subprograms --
78    -----------------------
79
80    procedure Binary_Op_Validity_Checks (N : Node_Id);
81    pragma Inline (Binary_Op_Validity_Checks);
82    --  Performs validity checks for a binary operator
83
84    procedure Build_Boolean_Array_Proc_Call
85      (N   : Node_Id;
86       Op1 : Node_Id;
87       Op2 : Node_Id);
88    --  If a boolean array assignment can be done in place, build call to
89    --  corresponding library procedure.
90
91    procedure Displace_Allocator_Pointer (N : Node_Id);
92    --  Ada 2005 (AI-251): Subsidiary procedure to Expand_N_Allocator and
93    --  Expand_Allocator_Expression. Allocating class-wide interface objects
94    --  this routine displaces the pointer to the allocated object to reference
95    --  the component referencing the corresponding secondary dispatch table.
96
97    procedure Expand_Allocator_Expression (N : Node_Id);
98    --  Subsidiary to Expand_N_Allocator, for the case when the expression
99    --  is a qualified expression or an aggregate.
100
101    procedure Expand_Array_Comparison (N : Node_Id);
102    --  This routine handles expansion of the comparison operators (N_Op_Lt,
103    --  N_Op_Le, N_Op_Gt, N_Op_Ge) when operating on an array type. The basic
104    --  code for these operators is similar, differing only in the details of
105    --  the actual comparison call that is made. Special processing (call a
106    --  run-time routine)
107
108    function Expand_Array_Equality
109      (Nod    : Node_Id;
110       Lhs    : Node_Id;
111       Rhs    : Node_Id;
112       Bodies : List_Id;
113       Typ    : Entity_Id) return Node_Id;
114    --  Expand an array equality into a call to a function implementing this
115    --  equality, and a call to it. Loc is the location for the generated nodes.
116    --  Lhs and Rhs are the array expressions to be compared. Bodies is a list
117    --  on which to attach bodies of local functions that are created in the
118    --  process. It is the responsibility of the caller to insert those bodies
119    --  at the right place. Nod provides the Sloc value for the generated code.
120    --  Normally the types used for the generated equality routine are taken
121    --  from Lhs and Rhs. However, in some situations of generated code, the
122    --  Etype fields of Lhs and Rhs are not set yet. In such cases, Typ supplies
123    --  the type to be used for the formal parameters.
124
125    procedure Expand_Boolean_Operator (N : Node_Id);
126    --  Common expansion processing for Boolean operators (And, Or, Xor) for the
127    --  case of array type arguments.
128
129    function Expand_Composite_Equality
130      (Nod    : Node_Id;
131       Typ    : Entity_Id;
132       Lhs    : Node_Id;
133       Rhs    : Node_Id;
134       Bodies : List_Id) return Node_Id;
135    --  Local recursive function used to expand equality for nested composite
136    --  types. Used by Expand_Record/Array_Equality, Bodies is a list on which
137    --  to attach bodies of local functions that are created in the process.
138    --  This is the responsibility of the caller to insert those bodies at the
139    --  right place. Nod provides the Sloc value for generated code. Lhs and Rhs
140    --  are the left and right sides for the comparison, and Typ is the type of
141    --  the arrays to compare.
142
143    procedure Expand_Concatenate (Cnode : Node_Id; Opnds : List_Id);
144    --  Routine to expand concatenation of a sequence of two or more operands
145    --  (in the list Operands) and replace node Cnode with the result of the
146    --  concatenation. The operands can be of any appropriate type, and can
147    --  include both arrays and singleton elements.
148
149    procedure Fixup_Universal_Fixed_Operation (N : Node_Id);
150    --  N is a N_Op_Divide or N_Op_Multiply node whose result is universal
151    --  fixed. We do not have such a type at runtime, so the purpose of this
152    --  routine is to find the real type by looking up the tree. We also
153    --  determine if the operation must be rounded.
154
155    function Get_Allocator_Final_List
156      (N    : Node_Id;
157       T    : Entity_Id;
158       PtrT : Entity_Id) return Entity_Id;
159    --  If the designated type is controlled, build final_list expression for
160    --  created object. If context is an access parameter, create a local access
161    --  type to have a usable finalization list.
162
163    function Has_Inferable_Discriminants (N : Node_Id) return Boolean;
164    --  Ada 2005 (AI-216): A view of an Unchecked_Union object has inferable
165    --  discriminants if it has a constrained nominal type, unless the object
166    --  is a component of an enclosing Unchecked_Union object that is subject
167    --  to a per-object constraint and the enclosing object lacks inferable
168    --  discriminants.
169    --
170    --  An expression of an Unchecked_Union type has inferable discriminants
171    --  if it is either a name of an object with inferable discriminants or a
172    --  qualified expression whose subtype mark denotes a constrained subtype.
173
174    procedure Insert_Dereference_Action (N : Node_Id);
175    --  N is an expression whose type is an access. When the type of the
176    --  associated storage pool is derived from Checked_Pool, generate a
177    --  call to the 'Dereference' primitive operation.
178
179    function Make_Array_Comparison_Op
180      (Typ : Entity_Id;
181       Nod : Node_Id) return Node_Id;
182    --  Comparisons between arrays are expanded in line. This function produces
183    --  the body of the implementation of (a > b), where a and b are one-
184    --  dimensional arrays of some discrete type. The original node is then
185    --  expanded into the appropriate call to this function. Nod provides the
186    --  Sloc value for the generated code.
187
188    function Make_Boolean_Array_Op
189      (Typ : Entity_Id;
190       N   : Node_Id) return Node_Id;
191    --  Boolean operations on boolean arrays are expanded in line. This function
192    --  produce the body for the node N, which is (a and b), (a or b), or (a xor
193    --  b). It is used only the normal case and not the packed case. The type
194    --  involved, Typ, is the Boolean array type, and the logical operations in
195    --  the body are simple boolean operations. Note that Typ is always a
196    --  constrained type (the caller has ensured this by using
197    --  Convert_To_Actual_Subtype if necessary).
198
199    procedure Rewrite_Comparison (N : Node_Id);
200    --  If N is the node for a comparison whose outcome can be determined at
201    --  compile time, then the node N can be rewritten with True or False. If
202    --  the outcome cannot be determined at compile time, the call has no
203    --  effect. If N is a type conversion, then this processing is applied to
204    --  its expression. If N is neither comparison nor a type conversion, the
205    --  call has no effect.
206
207    function Tagged_Membership (N : Node_Id) return Node_Id;
208    --  Construct the expression corresponding to the tagged membership test.
209    --  Deals with a second operand being (or not) a class-wide type.
210
211    function Safe_In_Place_Array_Op
212      (Lhs : Node_Id;
213       Op1 : Node_Id;
214       Op2 : Node_Id) return Boolean;
215    --  In the context of an assignment, where the right-hand side is a boolean
216    --  operation on arrays, check whether operation can be performed in place.
217
218    procedure Unary_Op_Validity_Checks (N : Node_Id);
219    pragma Inline (Unary_Op_Validity_Checks);
220    --  Performs validity checks for a unary operator
221
222    -------------------------------
223    -- Binary_Op_Validity_Checks --
224    -------------------------------
225
226    procedure Binary_Op_Validity_Checks (N : Node_Id) is
227    begin
228       if Validity_Checks_On and Validity_Check_Operands then
229          Ensure_Valid (Left_Opnd (N));
230          Ensure_Valid (Right_Opnd (N));
231       end if;
232    end Binary_Op_Validity_Checks;
233
234    ------------------------------------
235    -- Build_Boolean_Array_Proc_Call --
236    ------------------------------------
237
238    procedure Build_Boolean_Array_Proc_Call
239      (N   : Node_Id;
240       Op1 : Node_Id;
241       Op2 : Node_Id)
242    is
243       Loc       : constant Source_Ptr := Sloc (N);
244       Kind      : constant Node_Kind := Nkind (Expression (N));
245       Target    : constant Node_Id   :=
246                     Make_Attribute_Reference (Loc,
247                       Prefix         => Name (N),
248                       Attribute_Name => Name_Address);
249
250       Arg1      : constant Node_Id := Op1;
251       Arg2      : Node_Id := Op2;
252       Call_Node : Node_Id;
253       Proc_Name : Entity_Id;
254
255    begin
256       if Kind = N_Op_Not then
257          if Nkind (Op1) in N_Binary_Op then
258
259             --  Use negated version of the binary operators
260
261             if Nkind (Op1) = N_Op_And then
262                Proc_Name := RTE (RE_Vector_Nand);
263
264             elsif Nkind (Op1) = N_Op_Or then
265                Proc_Name := RTE (RE_Vector_Nor);
266
267             else pragma Assert (Nkind (Op1) = N_Op_Xor);
268                Proc_Name := RTE (RE_Vector_Xor);
269             end if;
270
271             Call_Node :=
272               Make_Procedure_Call_Statement (Loc,
273                 Name => New_Occurrence_Of (Proc_Name, Loc),
274
275                 Parameter_Associations => New_List (
276                   Target,
277                   Make_Attribute_Reference (Loc,
278                     Prefix => Left_Opnd (Op1),
279                     Attribute_Name => Name_Address),
280
281                   Make_Attribute_Reference (Loc,
282                     Prefix => Right_Opnd (Op1),
283                     Attribute_Name => Name_Address),
284
285                   Make_Attribute_Reference (Loc,
286                     Prefix => Left_Opnd (Op1),
287                     Attribute_Name => Name_Length)));
288
289          else
290             Proc_Name := RTE (RE_Vector_Not);
291
292             Call_Node :=
293               Make_Procedure_Call_Statement (Loc,
294                 Name => New_Occurrence_Of (Proc_Name, Loc),
295                 Parameter_Associations => New_List (
296                   Target,
297
298                   Make_Attribute_Reference (Loc,
299                     Prefix => Op1,
300                     Attribute_Name => Name_Address),
301
302                   Make_Attribute_Reference (Loc,
303                     Prefix => Op1,
304                      Attribute_Name => Name_Length)));
305          end if;
306
307       else
308          --  We use the following equivalences:
309
310          --   (not X) or  (not Y)  =  not (X and Y)  =  Nand (X, Y)
311          --   (not X) and (not Y)  =  not (X or Y)   =  Nor  (X, Y)
312          --   (not X) xor (not Y)  =  X xor Y
313          --   X       xor (not Y)  =  not (X xor Y)  =  Nxor (X, Y)
314
315          if Nkind (Op1) = N_Op_Not then
316             if Kind = N_Op_And then
317                Proc_Name := RTE (RE_Vector_Nor);
318
319             elsif Kind = N_Op_Or then
320                Proc_Name := RTE (RE_Vector_Nand);
321
322             else
323                Proc_Name := RTE (RE_Vector_Xor);
324             end if;
325
326          else
327             if Kind = N_Op_And then
328                Proc_Name := RTE (RE_Vector_And);
329
330             elsif Kind = N_Op_Or then
331                Proc_Name := RTE (RE_Vector_Or);
332
333             elsif Nkind (Op2) = N_Op_Not then
334                Proc_Name := RTE (RE_Vector_Nxor);
335                Arg2 := Right_Opnd (Op2);
336
337             else
338                Proc_Name := RTE (RE_Vector_Xor);
339             end if;
340          end if;
341
342          Call_Node :=
343            Make_Procedure_Call_Statement (Loc,
344              Name => New_Occurrence_Of (Proc_Name, Loc),
345              Parameter_Associations => New_List (
346                Target,
347                   Make_Attribute_Reference (Loc,
348                     Prefix => Arg1,
349                     Attribute_Name => Name_Address),
350                   Make_Attribute_Reference (Loc,
351                     Prefix => Arg2,
352                     Attribute_Name => Name_Address),
353                  Make_Attribute_Reference (Loc,
354                    Prefix => Op1,
355                     Attribute_Name => Name_Length)));
356       end if;
357
358       Rewrite (N, Call_Node);
359       Analyze (N);
360
361    exception
362       when RE_Not_Available =>
363          return;
364    end Build_Boolean_Array_Proc_Call;
365
366    --------------------------------
367    -- Displace_Allocator_Pointer --
368    --------------------------------
369
370    procedure Displace_Allocator_Pointer (N : Node_Id) is
371       Loc       : constant Source_Ptr := Sloc (N);
372       Orig_Node : constant Node_Id := Original_Node (N);
373       Dtyp      : Entity_Id;
374       Etyp      : Entity_Id;
375       PtrT      : Entity_Id;
376
377    begin
378       --  Do nothing in case of VM targets: the virtual machine will handle
379       --  interfaces directly.
380
381       if not Tagged_Type_Expansion then
382          return;
383       end if;
384
385       pragma Assert (Nkind (N) = N_Identifier
386         and then Nkind (Orig_Node) = N_Allocator);
387
388       PtrT := Etype (Orig_Node);
389       Dtyp := Available_View (Designated_Type (PtrT));
390       Etyp := Etype (Expression (Orig_Node));
391
392       if Is_Class_Wide_Type (Dtyp)
393         and then Is_Interface (Dtyp)
394       then
395          --  If the type of the allocator expression is not an interface type
396          --  we can generate code to reference the record component containing
397          --  the pointer to the secondary dispatch table.
398
399          if not Is_Interface (Etyp) then
400             declare
401                Saved_Typ : constant Entity_Id := Etype (Orig_Node);
402
403             begin
404                --  1) Get access to the allocated object
405
406                Rewrite (N,
407                  Make_Explicit_Dereference (Loc,
408                    Relocate_Node (N)));
409                Set_Etype (N, Etyp);
410                Set_Analyzed (N);
411
412                --  2) Add the conversion to displace the pointer to reference
413                --     the secondary dispatch table.
414
415                Rewrite (N, Convert_To (Dtyp, Relocate_Node (N)));
416                Analyze_And_Resolve (N, Dtyp);
417
418                --  3) The 'access to the secondary dispatch table will be used
419                --     as the value returned by the allocator.
420
421                Rewrite (N,
422                  Make_Attribute_Reference (Loc,
423                    Prefix         => Relocate_Node (N),
424                    Attribute_Name => Name_Access));
425                Set_Etype (N, Saved_Typ);
426                Set_Analyzed (N);
427             end;
428
429          --  If the type of the allocator expression is an interface type we
430          --  generate a run-time call to displace "this" to reference the
431          --  component containing the pointer to the secondary dispatch table
432          --  or else raise Constraint_Error if the actual object does not
433          --  implement the target interface. This case corresponds with the
434          --  following example:
435
436          --   function Op (Obj : Iface_1'Class) return access Iface_2'Class is
437          --   begin
438          --      return new Iface_2'Class'(Obj);
439          --   end Op;
440
441          else
442             Rewrite (N,
443               Unchecked_Convert_To (PtrT,
444                 Make_Function_Call (Loc,
445                   Name => New_Reference_To (RTE (RE_Displace), Loc),
446                   Parameter_Associations => New_List (
447                     Unchecked_Convert_To (RTE (RE_Address),
448                       Relocate_Node (N)),
449
450                     New_Occurrence_Of
451                       (Elists.Node
452                         (First_Elmt
453                           (Access_Disp_Table (Etype (Base_Type (Dtyp))))),
454                        Loc)))));
455             Analyze_And_Resolve (N, PtrT);
456          end if;
457       end if;
458    end Displace_Allocator_Pointer;
459
460    ---------------------------------
461    -- Expand_Allocator_Expression --
462    ---------------------------------
463
464    procedure Expand_Allocator_Expression (N : Node_Id) is
465       Loc    : constant Source_Ptr := Sloc (N);
466       Exp    : constant Node_Id    := Expression (Expression (N));
467       PtrT   : constant Entity_Id  := Etype (N);
468       DesigT : constant Entity_Id  := Designated_Type (PtrT);
469
470       procedure Apply_Accessibility_Check
471         (Ref            : Node_Id;
472          Built_In_Place : Boolean := False);
473       --  Ada 2005 (AI-344): For an allocator with a class-wide designated
474       --  type, generate an accessibility check to verify that the level of the
475       --  type of the created object is not deeper than the level of the access
476       --  type. If the type of the qualified expression is class- wide, then
477       --  always generate the check (except in the case where it is known to be
478       --  unnecessary, see comment below). Otherwise, only generate the check
479       --  if the level of the qualified expression type is statically deeper
480       --  than the access type.
481       --
482       --  Although the static accessibility will generally have been performed
483       --  as a legality check, it won't have been done in cases where the
484       --  allocator appears in generic body, so a run-time check is needed in
485       --  general. One special case is when the access type is declared in the
486       --  same scope as the class-wide allocator, in which case the check can
487       --  never fail, so it need not be generated.
488       --
489       --  As an open issue, there seem to be cases where the static level
490       --  associated with the class-wide object's underlying type is not
491       --  sufficient to perform the proper accessibility check, such as for
492       --  allocators in nested subprograms or accept statements initialized by
493       --  class-wide formals when the actual originates outside at a deeper
494       --  static level. The nested subprogram case might require passing
495       --  accessibility levels along with class-wide parameters, and the task
496       --  case seems to be an actual gap in the language rules that needs to
497       --  be fixed by the ARG. ???
498
499       -------------------------------
500       -- Apply_Accessibility_Check --
501       -------------------------------
502
503       procedure Apply_Accessibility_Check
504         (Ref            : Node_Id;
505          Built_In_Place : Boolean := False)
506       is
507          Ref_Node : Node_Id;
508
509       begin
510          --  Note: we skip the accessibility check for the VM case, since
511          --  there does not seem to be any practical way of implementing it.
512
513          if Ada_Version >= Ada_05
514            and then Tagged_Type_Expansion
515            and then Is_Class_Wide_Type (DesigT)
516            and then not Scope_Suppress (Accessibility_Check)
517            and then
518              (Type_Access_Level (Etype (Exp)) > Type_Access_Level (PtrT)
519                or else
520                  (Is_Class_Wide_Type (Etype (Exp))
521                    and then Scope (PtrT) /= Current_Scope))
522          then
523             --  If the allocator was built in place Ref is already a reference
524             --  to the access object initialized to the result of the allocator
525             --  (see Exp_Ch6.Make_Build_In_Place_Call_In_Allocator). Otherwise
526             --  it is the entity associated with the object containing the
527             --  address of the allocated object.
528
529             if Built_In_Place then
530                Ref_Node := New_Copy (Ref);
531             else
532                Ref_Node := New_Reference_To (Ref, Loc);
533             end if;
534
535             Insert_Action (N,
536                Make_Raise_Program_Error (Loc,
537                  Condition =>
538                    Make_Op_Gt (Loc,
539                      Left_Opnd  =>
540                        Build_Get_Access_Level (Loc,
541                          Make_Attribute_Reference (Loc,
542                            Prefix => Ref_Node,
543                            Attribute_Name => Name_Tag)),
544                      Right_Opnd =>
545                        Make_Integer_Literal (Loc,
546                          Type_Access_Level (PtrT))),
547                  Reason => PE_Accessibility_Check_Failed));
548          end if;
549       end Apply_Accessibility_Check;
550
551       --  Local variables
552
553       Indic : constant Node_Id   := Subtype_Mark (Expression (N));
554       T     : constant Entity_Id := Entity (Indic);
555       Flist : Node_Id;
556       Node  : Node_Id;
557       Temp  : Entity_Id;
558
559       TagT : Entity_Id := Empty;
560       --  Type used as source for tag assignment
561
562       TagR : Node_Id := Empty;
563       --  Target reference for tag assignment
564
565       Aggr_In_Place : constant Boolean := Is_Delayed_Aggregate (Exp);
566
567       Tag_Assign : Node_Id;
568       Tmp_Node   : Node_Id;
569
570    --  Start of processing for Expand_Allocator_Expression
571
572    begin
573       if Is_Tagged_Type (T) or else Needs_Finalization (T) then
574
575          if Is_CPP_Constructor_Call (Exp) then
576
577             --  Generate:
578             --  Pnnn : constant ptr_T := new (T); Init (Pnnn.all,...); Pnnn
579
580             --  Allocate the object with no expression
581
582             Node := Relocate_Node (N);
583             Set_Expression (Node, New_Reference_To (Etype (Exp), Loc));
584
585             --  Avoid its expansion to avoid generating a call to the default
586             --  C++ constructor
587
588             Set_Analyzed (Node);
589
590             Temp := Make_Defining_Identifier (Loc, New_Internal_Name ('P'));
591
592             Insert_Action (N,
593               Make_Object_Declaration (Loc,
594                 Defining_Identifier => Temp,
595                 Constant_Present    => True,
596                 Object_Definition   => New_Reference_To (PtrT, Loc),
597                 Expression          => Node));
598
599             Apply_Accessibility_Check (Temp);
600
601             --  Locate the enclosing list and insert the C++ constructor call
602
603             declare
604                P : Node_Id;
605
606             begin
607                P := Parent (Node);
608                while not Is_List_Member (P) loop
609                   P := Parent (P);
610                end loop;
611
612                Insert_List_After_And_Analyze (P,
613                  Build_Initialization_Call (Loc,
614                    Id_Ref =>
615                      Make_Explicit_Dereference (Loc,
616                        Prefix => New_Reference_To (Temp, Loc)),
617                    Typ => Etype (Exp),
618                    Constructor_Ref => Exp));
619             end;
620
621             Rewrite (N, New_Reference_To (Temp, Loc));
622             Analyze_And_Resolve (N, PtrT);
623             return;
624          end if;
625
626          --  Ada 2005 (AI-318-02): If the initialization expression is a call
627          --  to a build-in-place function, then access to the allocated object
628          --  must be passed to the function. Currently we limit such functions
629          --  to those with constrained limited result subtypes, but eventually
630          --  we plan to expand the allowed forms of functions that are treated
631          --  as build-in-place.
632
633          if Ada_Version >= Ada_05
634            and then Is_Build_In_Place_Function_Call (Exp)
635          then
636             Make_Build_In_Place_Call_In_Allocator (N, Exp);
637             Apply_Accessibility_Check (N, Built_In_Place => True);
638             return;
639          end if;
640
641          --    Actions inserted before:
642          --              Temp : constant ptr_T := new T'(Expression);
643          --   <no CW>    Temp._tag := T'tag;
644          --   <CTRL>     Adjust (Finalizable (Temp.all));
645          --   <CTRL>     Attach_To_Final_List (Finalizable (Temp.all));
646
647          --  We analyze by hand the new internal allocator to avoid
648          --  any recursion and inappropriate call to Initialize
649
650          --  We don't want to remove side effects when the expression must be
651          --  built in place. In the case of a build-in-place function call,
652          --  that could lead to a duplication of the call, which was already
653          --  substituted for the allocator.
654
655          if not Aggr_In_Place then
656             Remove_Side_Effects (Exp);
657          end if;
658
659          Temp :=
660            Make_Defining_Identifier (Loc, New_Internal_Name ('P'));
661
662          --  For a class wide allocation generate the following code:
663
664          --    type Equiv_Record is record ... end record;
665          --    implicit subtype CW is <Class_Wide_Subytpe>;
666          --    temp : PtrT := new CW'(CW!(expr));
667
668          if Is_Class_Wide_Type (T) then
669             Expand_Subtype_From_Expr (Empty, T, Indic, Exp);
670
671             --  Ada 2005 (AI-251): If the expression is a class-wide interface
672             --  object we generate code to move up "this" to reference the
673             --  base of the object before allocating the new object.
674
675             --  Note that Exp'Address is recursively expanded into a call
676             --  to Base_Address (Exp.Tag)
677
678             if Is_Class_Wide_Type (Etype (Exp))
679               and then Is_Interface (Etype (Exp))
680               and then Tagged_Type_Expansion
681             then
682                Set_Expression
683                  (Expression (N),
684                   Unchecked_Convert_To (Entity (Indic),
685                     Make_Explicit_Dereference (Loc,
686                       Unchecked_Convert_To (RTE (RE_Tag_Ptr),
687                         Make_Attribute_Reference (Loc,
688                           Prefix         => Exp,
689                           Attribute_Name => Name_Address)))));
690
691             else
692                Set_Expression
693                  (Expression (N),
694                   Unchecked_Convert_To (Entity (Indic), Exp));
695             end if;
696
697             Analyze_And_Resolve (Expression (N), Entity (Indic));
698          end if;
699
700          --  Keep separate the management of allocators returning interfaces
701
702          if not Is_Interface (Directly_Designated_Type (PtrT)) then
703             if Aggr_In_Place then
704                Tmp_Node :=
705                  Make_Object_Declaration (Loc,
706                    Defining_Identifier => Temp,
707                    Object_Definition   => New_Reference_To (PtrT, Loc),
708                    Expression          =>
709                      Make_Allocator (Loc,
710                        New_Reference_To (Etype (Exp), Loc)));
711
712                --  Copy the Comes_From_Source flag for the allocator we just
713                --  built, since logically this allocator is a replacement of
714                --  the original allocator node. This is for proper handling of
715                --  restriction No_Implicit_Heap_Allocations.
716
717                Set_Comes_From_Source
718                  (Expression (Tmp_Node), Comes_From_Source (N));
719
720                Set_No_Initialization (Expression (Tmp_Node));
721                Insert_Action (N, Tmp_Node);
722
723                if Needs_Finalization (T)
724                  and then Ekind (PtrT) = E_Anonymous_Access_Type
725                then
726                   --  Create local finalization list for access parameter
727
728                   Flist := Get_Allocator_Final_List (N, Base_Type (T), PtrT);
729                end if;
730
731                Convert_Aggr_In_Allocator (N, Tmp_Node, Exp);
732
733             else
734                Node := Relocate_Node (N);
735                Set_Analyzed (Node);
736                Insert_Action (N,
737                  Make_Object_Declaration (Loc,
738                    Defining_Identifier => Temp,
739                    Constant_Present    => True,
740                    Object_Definition   => New_Reference_To (PtrT, Loc),
741                    Expression          => Node));
742             end if;
743
744          --  Ada 2005 (AI-251): Handle allocators whose designated type is an
745          --  interface type. In this case we use the type of the qualified
746          --  expression to allocate the object.
747
748          else
749             declare
750                Def_Id   : constant Entity_Id :=
751                             Make_Defining_Identifier (Loc,
752                               New_Internal_Name ('T'));
753                New_Decl : Node_Id;
754
755             begin
756                New_Decl :=
757                  Make_Full_Type_Declaration (Loc,
758                    Defining_Identifier => Def_Id,
759                    Type_Definition =>
760                      Make_Access_To_Object_Definition (Loc,
761                        All_Present            => True,
762                        Null_Exclusion_Present => False,
763                        Constant_Present       => False,
764                        Subtype_Indication     =>
765                          New_Reference_To (Etype (Exp), Loc)));
766
767                Insert_Action (N, New_Decl);
768
769                --  Inherit the final chain to ensure that the expansion of the
770                --  aggregate is correct in case of controlled types
771
772                if Needs_Finalization (Directly_Designated_Type (PtrT)) then
773                   Set_Associated_Final_Chain (Def_Id,
774                     Associated_Final_Chain (PtrT));
775                end if;
776
777                --  Declare the object using the previous type declaration
778
779                if Aggr_In_Place then
780                   Tmp_Node :=
781                     Make_Object_Declaration (Loc,
782                       Defining_Identifier => Temp,
783                       Object_Definition   => New_Reference_To (Def_Id, Loc),
784                       Expression          =>
785                         Make_Allocator (Loc,
786                           New_Reference_To (Etype (Exp), Loc)));
787
788                   --  Copy the Comes_From_Source flag for the allocator we just
789                   --  built, since logically this allocator is a replacement of
790                   --  the original allocator node. This is for proper handling
791                   --  of restriction No_Implicit_Heap_Allocations.
792
793                   Set_Comes_From_Source
794                     (Expression (Tmp_Node), Comes_From_Source (N));
795
796                   Set_No_Initialization (Expression (Tmp_Node));
797                   Insert_Action (N, Tmp_Node);
798
799                   if Needs_Finalization (T)
800                     and then Ekind (PtrT) = E_Anonymous_Access_Type
801                   then
802                      --  Create local finalization list for access parameter
803
804                      Flist :=
805                        Get_Allocator_Final_List (N, Base_Type (T), PtrT);
806                   end if;
807
808                   Convert_Aggr_In_Allocator (N, Tmp_Node, Exp);
809                else
810                   Node := Relocate_Node (N);
811                   Set_Analyzed (Node);
812                   Insert_Action (N,
813                     Make_Object_Declaration (Loc,
814                       Defining_Identifier => Temp,
815                       Constant_Present    => True,
816                       Object_Definition   => New_Reference_To (Def_Id, Loc),
817                       Expression          => Node));
818                end if;
819
820                --  Generate an additional object containing the address of the
821                --  returned object. The type of this second object declaration
822                --  is the correct type required for the common processing that
823                --  is still performed by this subprogram. The displacement of
824                --  this pointer to reference the component associated with the
825                --  interface type will be done at the end of common processing.
826
827                New_Decl :=
828                  Make_Object_Declaration (Loc,
829                    Defining_Identifier => Make_Defining_Identifier (Loc,
830                                              New_Internal_Name ('P')),
831                    Object_Definition   => New_Reference_To (PtrT, Loc),
832                    Expression          => Unchecked_Convert_To (PtrT,
833                                             New_Reference_To (Temp, Loc)));
834
835                Insert_Action (N, New_Decl);
836
837                Tmp_Node := New_Decl;
838                Temp     := Defining_Identifier (New_Decl);
839             end;
840          end if;
841
842          Apply_Accessibility_Check (Temp);
843
844          --  Generate the tag assignment
845
846          --  Suppress the tag assignment when VM_Target because VM tags are
847          --  represented implicitly in objects.
848
849          if not Tagged_Type_Expansion then
850             null;
851
852          --  Ada 2005 (AI-251): Suppress the tag assignment with class-wide
853          --  interface objects because in this case the tag does not change.
854
855          elsif Is_Interface (Directly_Designated_Type (Etype (N))) then
856             pragma Assert (Is_Class_Wide_Type
857                             (Directly_Designated_Type (Etype (N))));
858             null;
859
860          elsif Is_Tagged_Type (T) and then not Is_Class_Wide_Type (T) then
861             TagT := T;
862             TagR := New_Reference_To (Temp, Loc);
863
864          elsif Is_Private_Type (T)
865            and then Is_Tagged_Type (Underlying_Type (T))
866          then
867             TagT := Underlying_Type (T);
868             TagR :=
869               Unchecked_Convert_To (Underlying_Type (T),
870                 Make_Explicit_Dereference (Loc,
871                   Prefix => New_Reference_To (Temp, Loc)));
872          end if;
873
874          if Present (TagT) then
875             Tag_Assign :=
876               Make_Assignment_Statement (Loc,
877                 Name =>
878                   Make_Selected_Component (Loc,
879                     Prefix => TagR,
880                     Selector_Name =>
881                       New_Reference_To (First_Tag_Component (TagT), Loc)),
882
883                 Expression =>
884                   Unchecked_Convert_To (RTE (RE_Tag),
885                     New_Reference_To
886                       (Elists.Node (First_Elmt (Access_Disp_Table (TagT))),
887                        Loc)));
888
889             --  The previous assignment has to be done in any case
890
891             Set_Assignment_OK (Name (Tag_Assign));
892             Insert_Action (N, Tag_Assign);
893          end if;
894
895          if Needs_Finalization (DesigT)
896             and then Needs_Finalization (T)
897          then
898             declare
899                Attach : Node_Id;
900                Apool  : constant Entity_Id :=
901                           Associated_Storage_Pool (PtrT);
902
903             begin
904                --  If it is an allocation on the secondary stack (i.e. a value
905                --  returned from a function), the object is attached on the
906                --  caller side as soon as the call is completed (see
907                --  Expand_Ctrl_Function_Call)
908
909                if Is_RTE (Apool, RE_SS_Pool) then
910                   declare
911                      F : constant Entity_Id :=
912                            Make_Defining_Identifier (Loc,
913                              New_Internal_Name ('F'));
914                   begin
915                      Insert_Action (N,
916                        Make_Object_Declaration (Loc,
917                          Defining_Identifier => F,
918                          Object_Definition   => New_Reference_To (RTE
919                           (RE_Finalizable_Ptr), Loc)));
920
921                      Flist := New_Reference_To (F, Loc);
922                      Attach :=  Make_Integer_Literal (Loc, 1);
923                   end;
924
925                --  Normal case, not a secondary stack allocation
926
927                else
928                   if Needs_Finalization (T)
929                     and then Ekind (PtrT) = E_Anonymous_Access_Type
930                   then
931                      --  Create local finalization list for access parameter
932
933                      Flist :=
934                        Get_Allocator_Final_List (N, Base_Type (T), PtrT);
935                   else
936                      Flist := Find_Final_List (PtrT);
937                   end if;
938
939                   Attach :=  Make_Integer_Literal (Loc, 2);
940                end if;
941
942                --  Generate an Adjust call if the object will be moved. In Ada
943                --  2005, the object may be inherently limited, in which case
944                --  there is no Adjust procedure, and the object is built in
945                --  place. In Ada 95, the object can be limited but not
946                --  inherently limited if this allocator came from a return
947                --  statement (we're allocating the result on the secondary
948                --  stack). In that case, the object will be moved, so we _do_
949                --  want to Adjust.
950
951                if not Aggr_In_Place
952                  and then not Is_Inherently_Limited_Type (T)
953                then
954                   Insert_Actions (N,
955                     Make_Adjust_Call (
956                       Ref          =>
957
958                      --  An unchecked conversion is needed in the classwide
959                      --  case because the designated type can be an ancestor of
960                      --  the subtype mark of the allocator.
961
962                       Unchecked_Convert_To (T,
963                         Make_Explicit_Dereference (Loc,
964                           Prefix => New_Reference_To (Temp, Loc))),
965
966                       Typ          => T,
967                       Flist_Ref    => Flist,
968                       With_Attach  => Attach,
969                       Allocator    => True));
970                end if;
971             end;
972          end if;
973
974          Rewrite (N, New_Reference_To (Temp, Loc));
975          Analyze_And_Resolve (N, PtrT);
976
977          --  Ada 2005 (AI-251): Displace the pointer to reference the record
978          --  component containing the secondary dispatch table of the interface
979          --  type.
980
981          if Is_Interface (Directly_Designated_Type (PtrT)) then
982             Displace_Allocator_Pointer (N);
983          end if;
984
985       elsif Aggr_In_Place then
986          Temp :=
987            Make_Defining_Identifier (Loc, New_Internal_Name ('P'));
988          Tmp_Node :=
989            Make_Object_Declaration (Loc,
990              Defining_Identifier => Temp,
991              Object_Definition   => New_Reference_To (PtrT, Loc),
992              Expression          => Make_Allocator (Loc,
993                  New_Reference_To (Etype (Exp), Loc)));
994
995          --  Copy the Comes_From_Source flag for the allocator we just built,
996          --  since logically this allocator is a replacement of the original
997          --  allocator node. This is for proper handling of restriction
998          --  No_Implicit_Heap_Allocations.
999
1000          Set_Comes_From_Source
1001            (Expression (Tmp_Node), Comes_From_Source (N));
1002
1003          Set_No_Initialization (Expression (Tmp_Node));
1004          Insert_Action (N, Tmp_Node);
1005          Convert_Aggr_In_Allocator (N, Tmp_Node, Exp);
1006          Rewrite (N, New_Reference_To (Temp, Loc));
1007          Analyze_And_Resolve (N, PtrT);
1008
1009       elsif Is_Access_Type (T)
1010         and then Can_Never_Be_Null (T)
1011       then
1012          Install_Null_Excluding_Check (Exp);
1013
1014       elsif Is_Access_Type (DesigT)
1015         and then Nkind (Exp) = N_Allocator
1016         and then Nkind (Expression (Exp)) /= N_Qualified_Expression
1017       then
1018          --  Apply constraint to designated subtype indication
1019
1020          Apply_Constraint_Check (Expression (Exp),
1021            Designated_Type (DesigT),
1022            No_Sliding => True);
1023
1024          if Nkind (Expression (Exp)) = N_Raise_Constraint_Error then
1025
1026             --  Propagate constraint_error to enclosing allocator
1027
1028             Rewrite (Exp, New_Copy (Expression (Exp)));
1029          end if;
1030       else
1031          --  If we have:
1032          --    type A is access T1;
1033          --    X : A := new T2'(...);
1034          --  T1 and T2 can be different subtypes, and we might need to check
1035          --  both constraints. First check against the type of the qualified
1036          --  expression.
1037
1038          Apply_Constraint_Check (Exp, T, No_Sliding => True);
1039
1040          if Do_Range_Check (Exp) then
1041             Set_Do_Range_Check (Exp, False);
1042             Generate_Range_Check (Exp, DesigT, CE_Range_Check_Failed);
1043          end if;
1044
1045          --  A check is also needed in cases where the designated subtype is
1046          --  constrained and differs from the subtype given in the qualified
1047          --  expression. Note that the check on the qualified expression does
1048          --  not allow sliding, but this check does (a relaxation from Ada 83).
1049
1050          if Is_Constrained (DesigT)
1051            and then not Subtypes_Statically_Match (T, DesigT)
1052          then
1053             Apply_Constraint_Check
1054               (Exp, DesigT, No_Sliding => False);
1055
1056             if Do_Range_Check (Exp) then
1057                Set_Do_Range_Check (Exp, False);
1058                Generate_Range_Check (Exp, DesigT, CE_Range_Check_Failed);
1059             end if;
1060          end if;
1061
1062          --  For an access to unconstrained packed array, GIGI needs to see an
1063          --  expression with a constrained subtype in order to compute the
1064          --  proper size for the allocator.
1065
1066          if Is_Array_Type (T)
1067            and then not Is_Constrained (T)
1068            and then Is_Packed (T)
1069          then
1070             declare
1071                ConstrT      : constant Entity_Id :=
1072                                 Make_Defining_Identifier (Loc,
1073                                   Chars => New_Internal_Name ('A'));
1074                Internal_Exp : constant Node_Id   := Relocate_Node (Exp);
1075             begin
1076                Insert_Action (Exp,
1077                  Make_Subtype_Declaration (Loc,
1078                    Defining_Identifier => ConstrT,
1079                    Subtype_Indication  =>
1080                      Make_Subtype_From_Expr (Exp, T)));
1081                Freeze_Itype (ConstrT, Exp);
1082                Rewrite (Exp, OK_Convert_To (ConstrT, Internal_Exp));
1083             end;
1084          end if;
1085
1086          --  Ada 2005 (AI-318-02): If the initialization expression is a call
1087          --  to a build-in-place function, then access to the allocated object
1088          --  must be passed to the function. Currently we limit such functions
1089          --  to those with constrained limited result subtypes, but eventually
1090          --  we plan to expand the allowed forms of functions that are treated
1091          --  as build-in-place.
1092
1093          if Ada_Version >= Ada_05
1094            and then Is_Build_In_Place_Function_Call (Exp)
1095          then
1096             Make_Build_In_Place_Call_In_Allocator (N, Exp);
1097          end if;
1098       end if;
1099
1100    exception
1101       when RE_Not_Available =>
1102          return;
1103    end Expand_Allocator_Expression;
1104
1105    -----------------------------
1106    -- Expand_Array_Comparison --
1107    -----------------------------
1108
1109    --  Expansion is only required in the case of array types. For the unpacked
1110    --  case, an appropriate runtime routine is called. For packed cases, and
1111    --  also in some other cases where a runtime routine cannot be called, the
1112    --  form of the expansion is:
1113
1114    --     [body for greater_nn; boolean_expression]
1115
1116    --  The body is built by Make_Array_Comparison_Op, and the form of the
1117    --  Boolean expression depends on the operator involved.
1118
1119    procedure Expand_Array_Comparison (N : Node_Id) is
1120       Loc  : constant Source_Ptr := Sloc (N);
1121       Op1  : Node_Id             := Left_Opnd (N);
1122       Op2  : Node_Id             := Right_Opnd (N);
1123       Typ1 : constant Entity_Id  := Base_Type (Etype (Op1));
1124       Ctyp : constant Entity_Id  := Component_Type (Typ1);
1125
1126       Expr      : Node_Id;
1127       Func_Body : Node_Id;
1128       Func_Name : Entity_Id;
1129
1130       Comp : RE_Id;
1131
1132       Byte_Addressable : constant Boolean := System_Storage_Unit = Byte'Size;
1133       --  True for byte addressable target
1134
1135       function Length_Less_Than_4 (Opnd : Node_Id) return Boolean;
1136       --  Returns True if the length of the given operand is known to be less
1137       --  than 4. Returns False if this length is known to be four or greater
1138       --  or is not known at compile time.
1139
1140       ------------------------
1141       -- Length_Less_Than_4 --
1142       ------------------------
1143
1144       function Length_Less_Than_4 (Opnd : Node_Id) return Boolean is
1145          Otyp : constant Entity_Id := Etype (Opnd);
1146
1147       begin
1148          if Ekind (Otyp) = E_String_Literal_Subtype then
1149             return String_Literal_Length (Otyp) < 4;
1150
1151          else
1152             declare
1153                Ityp : constant Entity_Id := Etype (First_Index (Otyp));
1154                Lo   : constant Node_Id   := Type_Low_Bound (Ityp);
1155                Hi   : constant Node_Id   := Type_High_Bound (Ityp);
1156                Lov  : Uint;
1157                Hiv  : Uint;
1158
1159             begin
1160                if Compile_Time_Known_Value (Lo) then
1161                   Lov := Expr_Value (Lo);
1162                else
1163                   return False;
1164                end if;
1165
1166                if Compile_Time_Known_Value (Hi) then
1167                   Hiv := Expr_Value (Hi);
1168                else
1169                   return False;
1170                end if;
1171
1172                return Hiv < Lov + 3;
1173             end;
1174          end if;
1175       end Length_Less_Than_4;
1176
1177    --  Start of processing for Expand_Array_Comparison
1178
1179    begin
1180       --  Deal first with unpacked case, where we can call a runtime routine
1181       --  except that we avoid this for targets for which are not addressable
1182       --  by bytes, and for the JVM/CIL, since they do not support direct
1183       --  addressing of array components.
1184
1185       if not Is_Bit_Packed_Array (Typ1)
1186         and then Byte_Addressable
1187         and then VM_Target = No_VM
1188       then
1189          --  The call we generate is:
1190
1191          --  Compare_Array_xn[_Unaligned]
1192          --    (left'address, right'address, left'length, right'length) <op> 0
1193
1194          --  x = U for unsigned, S for signed
1195          --  n = 8,16,32,64 for component size
1196          --  Add _Unaligned if length < 4 and component size is 8.
1197          --  <op> is the standard comparison operator
1198
1199          if Component_Size (Typ1) = 8 then
1200             if Length_Less_Than_4 (Op1)
1201                  or else
1202                Length_Less_Than_4 (Op2)
1203             then
1204                if Is_Unsigned_Type (Ctyp) then
1205                   Comp := RE_Compare_Array_U8_Unaligned;
1206                else
1207                   Comp := RE_Compare_Array_S8_Unaligned;
1208                end if;
1209
1210             else
1211                if Is_Unsigned_Type (Ctyp) then
1212                   Comp := RE_Compare_Array_U8;
1213                else
1214                   Comp := RE_Compare_Array_S8;
1215                end if;
1216             end if;
1217
1218          elsif Component_Size (Typ1) = 16 then
1219             if Is_Unsigned_Type (Ctyp) then
1220                Comp := RE_Compare_Array_U16;
1221             else
1222                Comp := RE_Compare_Array_S16;
1223             end if;
1224
1225          elsif Component_Size (Typ1) = 32 then
1226             if Is_Unsigned_Type (Ctyp) then
1227                Comp := RE_Compare_Array_U32;
1228             else
1229                Comp := RE_Compare_Array_S32;
1230             end if;
1231
1232          else pragma Assert (Component_Size (Typ1) = 64);
1233             if Is_Unsigned_Type (Ctyp) then
1234                Comp := RE_Compare_Array_U64;
1235             else
1236                Comp := RE_Compare_Array_S64;
1237             end if;
1238          end if;
1239
1240          Remove_Side_Effects (Op1, Name_Req => True);
1241          Remove_Side_Effects (Op2, Name_Req => True);
1242
1243          Rewrite (Op1,
1244            Make_Function_Call (Sloc (Op1),
1245              Name => New_Occurrence_Of (RTE (Comp), Loc),
1246
1247              Parameter_Associations => New_List (
1248                Make_Attribute_Reference (Loc,
1249                  Prefix         => Relocate_Node (Op1),
1250                  Attribute_Name => Name_Address),
1251
1252                Make_Attribute_Reference (Loc,
1253                  Prefix         => Relocate_Node (Op2),
1254                  Attribute_Name => Name_Address),
1255
1256                Make_Attribute_Reference (Loc,
1257                  Prefix         => Relocate_Node (Op1),
1258                  Attribute_Name => Name_Length),
1259
1260                Make_Attribute_Reference (Loc,
1261                  Prefix         => Relocate_Node (Op2),
1262                  Attribute_Name => Name_Length))));
1263
1264          Rewrite (Op2,
1265            Make_Integer_Literal (Sloc (Op2),
1266              Intval => Uint_0));
1267
1268          Analyze_And_Resolve (Op1, Standard_Integer);
1269          Analyze_And_Resolve (Op2, Standard_Integer);
1270          return;
1271       end if;
1272
1273       --  Cases where we cannot make runtime call
1274
1275       --  For (a <= b) we convert to not (a > b)
1276
1277       if Chars (N) = Name_Op_Le then
1278          Rewrite (N,
1279            Make_Op_Not (Loc,
1280              Right_Opnd =>
1281                 Make_Op_Gt (Loc,
1282                  Left_Opnd  => Op1,
1283                  Right_Opnd => Op2)));
1284          Analyze_And_Resolve (N, Standard_Boolean);
1285          return;
1286
1287       --  For < the Boolean expression is
1288       --    greater__nn (op2, op1)
1289
1290       elsif Chars (N) = Name_Op_Lt then
1291          Func_Body := Make_Array_Comparison_Op (Typ1, N);
1292
1293          --  Switch operands
1294
1295          Op1 := Right_Opnd (N);
1296          Op2 := Left_Opnd  (N);
1297
1298       --  For (a >= b) we convert to not (a < b)
1299
1300       elsif Chars (N) = Name_Op_Ge then
1301          Rewrite (N,
1302            Make_Op_Not (Loc,
1303              Right_Opnd =>
1304                Make_Op_Lt (Loc,
1305                  Left_Opnd  => Op1,
1306                  Right_Opnd => Op2)));
1307          Analyze_And_Resolve (N, Standard_Boolean);
1308          return;
1309
1310       --  For > the Boolean expression is
1311       --    greater__nn (op1, op2)
1312
1313       else
1314          pragma Assert (Chars (N) = Name_Op_Gt);
1315          Func_Body := Make_Array_Comparison_Op (Typ1, N);
1316       end if;
1317
1318       Func_Name := Defining_Unit_Name (Specification (Func_Body));
1319       Expr :=
1320         Make_Function_Call (Loc,
1321           Name => New_Reference_To (Func_Name, Loc),
1322           Parameter_Associations => New_List (Op1, Op2));
1323
1324       Insert_Action (N, Func_Body);
1325       Rewrite (N, Expr);
1326       Analyze_And_Resolve (N, Standard_Boolean);
1327
1328    exception
1329       when RE_Not_Available =>
1330          return;
1331    end Expand_Array_Comparison;
1332
1333    ---------------------------
1334    -- Expand_Array_Equality --
1335    ---------------------------
1336
1337    --  Expand an equality function for multi-dimensional arrays. Here is an
1338    --  example of such a function for Nb_Dimension = 2
1339
1340    --  function Enn (A : atyp; B : btyp) return boolean is
1341    --  begin
1342    --     if (A'length (1) = 0 or else A'length (2) = 0)
1343    --          and then
1344    --        (B'length (1) = 0 or else B'length (2) = 0)
1345    --     then
1346    --        return True;    -- RM 4.5.2(22)
1347    --     end if;
1348
1349    --     if A'length (1) /= B'length (1)
1350    --               or else
1351    --           A'length (2) /= B'length (2)
1352    --     then
1353    --        return False;   -- RM 4.5.2(23)
1354    --     end if;
1355
1356    --     declare
1357    --        A1 : Index_T1 := A'first (1);
1358    --        B1 : Index_T1 := B'first (1);
1359    --     begin
1360    --        loop
1361    --           declare
1362    --              A2 : Index_T2 := A'first (2);
1363    --              B2 : Index_T2 := B'first (2);
1364    --           begin
1365    --              loop
1366    --                 if A (A1, A2) /= B (B1, B2) then
1367    --                    return False;
1368    --                 end if;
1369
1370    --                 exit when A2 = A'last (2);
1371    --                 A2 := Index_T2'succ (A2);
1372    --                 B2 := Index_T2'succ (B2);
1373    --              end loop;
1374    --           end;
1375
1376    --           exit when A1 = A'last (1);
1377    --           A1 := Index_T1'succ (A1);
1378    --           B1 := Index_T1'succ (B1);
1379    --        end loop;
1380    --     end;
1381
1382    --     return true;
1383    --  end Enn;
1384
1385    --  Note on the formal types used (atyp and btyp). If either of the arrays
1386    --  is of a private type, we use the underlying type, and do an unchecked
1387    --  conversion of the actual. If either of the arrays has a bound depending
1388    --  on a discriminant, then we use the base type since otherwise we have an
1389    --  escaped discriminant in the function.
1390
1391    --  If both arrays are constrained and have the same bounds, we can generate
1392    --  a loop with an explicit iteration scheme using a 'Range attribute over
1393    --  the first array.
1394
1395    function Expand_Array_Equality
1396      (Nod    : Node_Id;
1397       Lhs    : Node_Id;
1398       Rhs    : Node_Id;
1399       Bodies : List_Id;
1400       Typ    : Entity_Id) return Node_Id
1401    is
1402       Loc         : constant Source_Ptr := Sloc (Nod);
1403       Decls       : constant List_Id    := New_List;
1404       Index_List1 : constant List_Id    := New_List;
1405       Index_List2 : constant List_Id    := New_List;
1406
1407       Actuals   : List_Id;
1408       Formals   : List_Id;
1409       Func_Name : Entity_Id;
1410       Func_Body : Node_Id;
1411
1412       A : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uA);
1413       B : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uB);
1414
1415       Ltyp : Entity_Id;
1416       Rtyp : Entity_Id;
1417       --  The parameter types to be used for the formals
1418
1419       function Arr_Attr
1420         (Arr : Entity_Id;
1421          Nam : Name_Id;
1422          Num : Int) return Node_Id;
1423       --  This builds the attribute reference Arr'Nam (Expr)
1424
1425       function Component_Equality (Typ : Entity_Id) return Node_Id;
1426       --  Create one statement to compare corresponding components, designated
1427       --  by a full set of indices.
1428
1429       function Get_Arg_Type (N : Node_Id) return Entity_Id;
1430       --  Given one of the arguments, computes the appropriate type to be used
1431       --  for that argument in the corresponding function formal
1432
1433       function Handle_One_Dimension
1434         (N     : Int;
1435          Index : Node_Id) return Node_Id;
1436       --  This procedure returns the following code
1437       --
1438       --    declare
1439       --       Bn : Index_T := B'First (N);
1440       --    begin
1441       --       loop
1442       --          xxx
1443       --          exit when An = A'Last (N);
1444       --          An := Index_T'Succ (An)
1445       --          Bn := Index_T'Succ (Bn)
1446       --       end loop;
1447       --    end;
1448       --
1449       --  If both indices are constrained and identical, the procedure
1450       --  returns a simpler loop:
1451       --
1452       --      for An in A'Range (N) loop
1453       --         xxx
1454       --      end loop
1455       --
1456       --  N is the dimension for which we are generating a loop. Index is the
1457       --  N'th index node, whose Etype is Index_Type_n in the above code. The
1458       --  xxx statement is either the loop or declare for the next dimension
1459       --  or if this is the last dimension the comparison of corresponding
1460       --  components of the arrays.
1461       --
1462       --  The actual way the code works is to return the comparison of
1463       --  corresponding components for the N+1 call. That's neater!
1464
1465       function Test_Empty_Arrays return Node_Id;
1466       --  This function constructs the test for both arrays being empty
1467       --    (A'length (1) = 0 or else A'length (2) = 0 or else ...)
1468       --      and then
1469       --    (B'length (1) = 0 or else B'length (2) = 0 or else ...)
1470
1471       function Test_Lengths_Correspond return Node_Id;
1472       --  This function constructs the test for arrays having different lengths
1473       --  in at least one index position, in which case the resulting code is:
1474
1475       --     A'length (1) /= B'length (1)
1476       --       or else
1477       --     A'length (2) /= B'length (2)
1478       --       or else
1479       --       ...
1480
1481       --------------
1482       -- Arr_Attr --
1483       --------------
1484
1485       function Arr_Attr
1486         (Arr : Entity_Id;
1487          Nam : Name_Id;
1488          Num : Int) return Node_Id
1489       is
1490       begin
1491          return
1492            Make_Attribute_Reference (Loc,
1493             Attribute_Name => Nam,
1494             Prefix => New_Reference_To (Arr, Loc),
1495             Expressions => New_List (Make_Integer_Literal (Loc, Num)));
1496       end Arr_Attr;
1497
1498       ------------------------
1499       -- Component_Equality --
1500       ------------------------
1501
1502       function Component_Equality (Typ : Entity_Id) return Node_Id is
1503          Test : Node_Id;
1504          L, R : Node_Id;
1505
1506       begin
1507          --  if a(i1...) /= b(j1...) then return false; end if;
1508
1509          L :=
1510            Make_Indexed_Component (Loc,
1511              Prefix => Make_Identifier (Loc, Chars (A)),
1512              Expressions => Index_List1);
1513
1514          R :=
1515            Make_Indexed_Component (Loc,
1516              Prefix => Make_Identifier (Loc, Chars (B)),
1517              Expressions => Index_List2);
1518
1519          Test := Expand_Composite_Equality
1520                    (Nod, Component_Type (Typ), L, R, Decls);
1521
1522          --  If some (sub)component is an unchecked_union, the whole operation
1523          --  will raise program error.
1524
1525          if Nkind (Test) = N_Raise_Program_Error then
1526
1527             --  This node is going to be inserted at a location where a
1528             --  statement is expected: clear its Etype so analysis will set
1529             --  it to the expected Standard_Void_Type.
1530
1531             Set_Etype (Test, Empty);
1532             return Test;
1533
1534          else
1535             return
1536               Make_Implicit_If_Statement (Nod,
1537                 Condition => Make_Op_Not (Loc, Right_Opnd => Test),
1538                 Then_Statements => New_List (
1539                   Make_Simple_Return_Statement (Loc,
1540                     Expression => New_Occurrence_Of (Standard_False, Loc))));
1541          end if;
1542       end Component_Equality;
1543
1544       ------------------
1545       -- Get_Arg_Type --
1546       ------------------
1547
1548       function Get_Arg_Type (N : Node_Id) return Entity_Id is
1549          T : Entity_Id;
1550          X : Node_Id;
1551
1552       begin
1553          T := Etype (N);
1554
1555          if No (T) then
1556             return Typ;
1557
1558          else
1559             T := Underlying_Type (T);
1560
1561             X := First_Index (T);
1562             while Present (X) loop
1563                if Denotes_Discriminant (Type_Low_Bound (Etype (X)))
1564                  or else
1565                    Denotes_Discriminant (Type_High_Bound (Etype (X)))
1566                then
1567                   T := Base_Type (T);
1568                   exit;
1569                end if;
1570
1571                Next_Index (X);
1572             end loop;
1573
1574             return T;
1575          end if;
1576       end Get_Arg_Type;
1577
1578       --------------------------
1579       -- Handle_One_Dimension --
1580       ---------------------------
1581
1582       function Handle_One_Dimension
1583         (N     : Int;
1584          Index : Node_Id) return Node_Id
1585       is
1586          Need_Separate_Indexes : constant Boolean :=
1587                                    Ltyp /= Rtyp
1588                                      or else not Is_Constrained (Ltyp);
1589          --  If the index types are identical, and we are working with
1590          --  constrained types, then we can use the same index for both
1591          --  of the arrays.
1592
1593          An : constant Entity_Id := Make_Defining_Identifier (Loc,
1594                                       Chars => New_Internal_Name ('A'));
1595
1596          Bn       : Entity_Id;
1597          Index_T  : Entity_Id;
1598          Stm_List : List_Id;
1599          Loop_Stm : Node_Id;
1600
1601       begin
1602          if N > Number_Dimensions (Ltyp) then
1603             return Component_Equality (Ltyp);
1604          end if;
1605
1606          --  Case where we generate a loop
1607
1608          Index_T := Base_Type (Etype (Index));
1609
1610          if Need_Separate_Indexes then
1611             Bn :=
1612               Make_Defining_Identifier (Loc,
1613                 Chars => New_Internal_Name ('B'));
1614          else
1615             Bn := An;
1616          end if;
1617
1618          Append (New_Reference_To (An, Loc), Index_List1);
1619          Append (New_Reference_To (Bn, Loc), Index_List2);
1620
1621          Stm_List := New_List (
1622            Handle_One_Dimension (N + 1, Next_Index (Index)));
1623
1624          if Need_Separate_Indexes then
1625
1626             --  Generate guard for loop, followed by increments of indices
1627
1628             Append_To (Stm_List,
1629                Make_Exit_Statement (Loc,
1630                  Condition =>
1631                    Make_Op_Eq (Loc,
1632                       Left_Opnd => New_Reference_To (An, Loc),
1633                       Right_Opnd => Arr_Attr (A, Name_Last, N))));
1634
1635             Append_To (Stm_List,
1636               Make_Assignment_Statement (Loc,
1637                 Name       => New_Reference_To (An, Loc),
1638                 Expression =>
1639                   Make_Attribute_Reference (Loc,
1640                     Prefix         => New_Reference_To (Index_T, Loc),
1641                     Attribute_Name => Name_Succ,
1642                     Expressions    => New_List (New_Reference_To (An, Loc)))));
1643
1644             Append_To (Stm_List,
1645               Make_Assignment_Statement (Loc,
1646                 Name       => New_Reference_To (Bn, Loc),
1647                 Expression =>
1648                   Make_Attribute_Reference (Loc,
1649                     Prefix         => New_Reference_To (Index_T, Loc),
1650                     Attribute_Name => Name_Succ,
1651                     Expressions    => New_List (New_Reference_To (Bn, Loc)))));
1652          end if;
1653
1654          --  If separate indexes, we need a declare block for An and Bn, and a
1655          --  loop without an iteration scheme.
1656
1657          if Need_Separate_Indexes then
1658             Loop_Stm :=
1659               Make_Implicit_Loop_Statement (Nod, Statements => Stm_List);
1660
1661             return
1662               Make_Block_Statement (Loc,
1663                 Declarations => New_List (
1664                   Make_Object_Declaration (Loc,
1665                     Defining_Identifier => An,
1666                     Object_Definition   => New_Reference_To (Index_T, Loc),
1667                     Expression          => Arr_Attr (A, Name_First, N)),
1668
1669                   Make_Object_Declaration (Loc,
1670                     Defining_Identifier => Bn,
1671                     Object_Definition   => New_Reference_To (Index_T, Loc),
1672                     Expression          => Arr_Attr (B, Name_First, N))),
1673
1674                 Handled_Statement_Sequence =>
1675                   Make_Handled_Sequence_Of_Statements (Loc,
1676                     Statements => New_List (Loop_Stm)));
1677
1678          --  If no separate indexes, return loop statement with explicit
1679          --  iteration scheme on its own
1680
1681          else
1682             Loop_Stm :=
1683               Make_Implicit_Loop_Statement (Nod,
1684                 Statements       => Stm_List,
1685                 Iteration_Scheme =>
1686                   Make_Iteration_Scheme (Loc,
1687                     Loop_Parameter_Specification =>
1688                       Make_Loop_Parameter_Specification (Loc,
1689                         Defining_Identifier         => An,
1690                         Discrete_Subtype_Definition =>
1691                           Arr_Attr (A, Name_Range, N))));
1692             return Loop_Stm;
1693          end if;
1694       end Handle_One_Dimension;
1695
1696       -----------------------
1697       -- Test_Empty_Arrays --
1698       -----------------------
1699
1700       function Test_Empty_Arrays return Node_Id is
1701          Alist : Node_Id;
1702          Blist : Node_Id;
1703
1704          Atest : Node_Id;
1705          Btest : Node_Id;
1706
1707       begin
1708          Alist := Empty;
1709          Blist := Empty;
1710          for J in 1 .. Number_Dimensions (Ltyp) loop
1711             Atest :=
1712               Make_Op_Eq (Loc,
1713                 Left_Opnd  => Arr_Attr (A, Name_Length, J),
1714                 Right_Opnd => Make_Integer_Literal (Loc, 0));
1715
1716             Btest :=
1717               Make_Op_Eq (Loc,
1718                 Left_Opnd  => Arr_Attr (B, Name_Length, J),
1719                 Right_Opnd => Make_Integer_Literal (Loc, 0));
1720
1721             if No (Alist) then
1722                Alist := Atest;
1723                Blist := Btest;
1724
1725             else
1726                Alist :=
1727                  Make_Or_Else (Loc,
1728                    Left_Opnd  => Relocate_Node (Alist),
1729                    Right_Opnd => Atest);
1730
1731                Blist :=
1732                  Make_Or_Else (Loc,
1733                    Left_Opnd  => Relocate_Node (Blist),
1734                    Right_Opnd => Btest);
1735             end if;
1736          end loop;
1737
1738          return
1739            Make_And_Then (Loc,
1740              Left_Opnd  => Alist,
1741              Right_Opnd => Blist);
1742       end Test_Empty_Arrays;
1743
1744       -----------------------------
1745       -- Test_Lengths_Correspond --
1746       -----------------------------
1747
1748       function Test_Lengths_Correspond return Node_Id is
1749          Result : Node_Id;
1750          Rtest  : Node_Id;
1751
1752       begin
1753          Result := Empty;
1754          for J in 1 .. Number_Dimensions (Ltyp) loop
1755             Rtest :=
1756               Make_Op_Ne (Loc,
1757                 Left_Opnd  => Arr_Attr (A, Name_Length, J),
1758                 Right_Opnd => Arr_Attr (B, Name_Length, J));
1759
1760             if No (Result) then
1761                Result := Rtest;
1762             else
1763                Result :=
1764                  Make_Or_Else (Loc,
1765                    Left_Opnd  => Relocate_Node (Result),
1766                    Right_Opnd => Rtest);
1767             end if;
1768          end loop;
1769
1770          return Result;
1771       end Test_Lengths_Correspond;
1772
1773    --  Start of processing for Expand_Array_Equality
1774
1775    begin
1776       Ltyp := Get_Arg_Type (Lhs);
1777       Rtyp := Get_Arg_Type (Rhs);
1778
1779       --  For now, if the argument types are not the same, go to the base type,
1780       --  since the code assumes that the formals have the same type. This is
1781       --  fixable in future ???
1782
1783       if Ltyp /= Rtyp then
1784          Ltyp := Base_Type (Ltyp);
1785          Rtyp := Base_Type (Rtyp);
1786          pragma Assert (Ltyp = Rtyp);
1787       end if;
1788
1789       --  Build list of formals for function
1790
1791       Formals := New_List (
1792         Make_Parameter_Specification (Loc,
1793           Defining_Identifier => A,
1794           Parameter_Type      => New_Reference_To (Ltyp, Loc)),
1795
1796         Make_Parameter_Specification (Loc,
1797           Defining_Identifier => B,
1798           Parameter_Type      => New_Reference_To (Rtyp, Loc)));
1799
1800       Func_Name := Make_Defining_Identifier (Loc,  New_Internal_Name ('E'));
1801
1802       --  Build statement sequence for function
1803
1804       Func_Body :=
1805         Make_Subprogram_Body (Loc,
1806           Specification =>
1807             Make_Function_Specification (Loc,
1808               Defining_Unit_Name       => Func_Name,
1809               Parameter_Specifications => Formals,
1810               Result_Definition => New_Reference_To (Standard_Boolean, Loc)),
1811
1812           Declarations =>  Decls,
1813
1814           Handled_Statement_Sequence =>
1815             Make_Handled_Sequence_Of_Statements (Loc,
1816               Statements => New_List (
1817
1818                 Make_Implicit_If_Statement (Nod,
1819                   Condition => Test_Empty_Arrays,
1820                   Then_Statements => New_List (
1821                     Make_Simple_Return_Statement (Loc,
1822                       Expression =>
1823                         New_Occurrence_Of (Standard_True, Loc)))),
1824
1825                 Make_Implicit_If_Statement (Nod,
1826                   Condition => Test_Lengths_Correspond,
1827                   Then_Statements => New_List (
1828                     Make_Simple_Return_Statement (Loc,
1829                       Expression =>
1830                         New_Occurrence_Of (Standard_False, Loc)))),
1831
1832                 Handle_One_Dimension (1, First_Index (Ltyp)),
1833
1834                 Make_Simple_Return_Statement (Loc,
1835                   Expression => New_Occurrence_Of (Standard_True, Loc)))));
1836
1837          Set_Has_Completion (Func_Name, True);
1838          Set_Is_Inlined (Func_Name);
1839
1840          --  If the array type is distinct from the type of the arguments, it
1841          --  is the full view of a private type. Apply an unchecked conversion
1842          --  to insure that analysis of the call succeeds.
1843
1844          declare
1845             L, R : Node_Id;
1846
1847          begin
1848             L := Lhs;
1849             R := Rhs;
1850
1851             if No (Etype (Lhs))
1852               or else Base_Type (Etype (Lhs)) /= Base_Type (Ltyp)
1853             then
1854                L := OK_Convert_To (Ltyp, Lhs);
1855             end if;
1856
1857             if No (Etype (Rhs))
1858               or else Base_Type (Etype (Rhs)) /= Base_Type (Rtyp)
1859             then
1860                R := OK_Convert_To (Rtyp, Rhs);
1861             end if;
1862
1863             Actuals := New_List (L, R);
1864          end;
1865
1866          Append_To (Bodies, Func_Body);
1867
1868          return
1869            Make_Function_Call (Loc,
1870              Name                   => New_Reference_To (Func_Name, Loc),
1871              Parameter_Associations => Actuals);
1872    end Expand_Array_Equality;
1873
1874    -----------------------------
1875    -- Expand_Boolean_Operator --
1876    -----------------------------
1877
1878    --  Note that we first get the actual subtypes of the operands, since we
1879    --  always want to deal with types that have bounds.
1880
1881    procedure Expand_Boolean_Operator (N : Node_Id) is
1882       Typ : constant Entity_Id  := Etype (N);
1883
1884    begin
1885       --  Special case of bit packed array where both operands are known to be
1886       --  properly aligned. In this case we use an efficient run time routine
1887       --  to carry out the operation (see System.Bit_Ops).
1888
1889       if Is_Bit_Packed_Array (Typ)
1890         and then not Is_Possibly_Unaligned_Object (Left_Opnd (N))
1891         and then not Is_Possibly_Unaligned_Object (Right_Opnd (N))
1892       then
1893          Expand_Packed_Boolean_Operator (N);
1894          return;
1895       end if;
1896
1897       --  For the normal non-packed case, the general expansion is to build
1898       --  function for carrying out the comparison (use Make_Boolean_Array_Op)
1899       --  and then inserting it into the tree. The original operator node is
1900       --  then rewritten as a call to this function. We also use this in the
1901       --  packed case if either operand is a possibly unaligned object.
1902
1903       declare
1904          Loc       : constant Source_Ptr := Sloc (N);
1905          L         : constant Node_Id    := Relocate_Node (Left_Opnd  (N));
1906          R         : constant Node_Id    := Relocate_Node (Right_Opnd (N));
1907          Func_Body : Node_Id;
1908          Func_Name : Entity_Id;
1909
1910       begin
1911          Convert_To_Actual_Subtype (L);
1912          Convert_To_Actual_Subtype (R);
1913          Ensure_Defined (Etype (L), N);
1914          Ensure_Defined (Etype (R), N);
1915          Apply_Length_Check (R, Etype (L));
1916
1917          if Nkind (N) = N_Op_Xor then
1918             Silly_Boolean_Array_Xor_Test (N, Etype (L));
1919          end if;
1920
1921          if Nkind (Parent (N)) = N_Assignment_Statement
1922            and then Safe_In_Place_Array_Op (Name (Parent (N)), L, R)
1923          then
1924             Build_Boolean_Array_Proc_Call (Parent (N), L, R);
1925
1926          elsif Nkind (Parent (N)) = N_Op_Not
1927            and then Nkind (N) = N_Op_And
1928            and then
1929              Safe_In_Place_Array_Op (Name (Parent (Parent (N))), L, R)
1930          then
1931             return;
1932          else
1933
1934             Func_Body := Make_Boolean_Array_Op (Etype (L), N);
1935             Func_Name := Defining_Unit_Name (Specification (Func_Body));
1936             Insert_Action (N, Func_Body);
1937
1938             --  Now rewrite the expression with a call
1939
1940             Rewrite (N,
1941               Make_Function_Call (Loc,
1942                 Name                   => New_Reference_To (Func_Name, Loc),
1943                 Parameter_Associations =>
1944                   New_List (
1945                     L,
1946                     Make_Type_Conversion
1947                       (Loc, New_Reference_To (Etype (L), Loc), R))));
1948
1949             Analyze_And_Resolve (N, Typ);
1950          end if;
1951       end;
1952    end Expand_Boolean_Operator;
1953
1954    -------------------------------
1955    -- Expand_Composite_Equality --
1956    -------------------------------
1957
1958    --  This function is only called for comparing internal fields of composite
1959    --  types when these fields are themselves composites. This is a special
1960    --  case because it is not possible to respect normal Ada visibility rules.
1961
1962    function Expand_Composite_Equality
1963      (Nod    : Node_Id;
1964       Typ    : Entity_Id;
1965       Lhs    : Node_Id;
1966       Rhs    : Node_Id;
1967       Bodies : List_Id) return Node_Id
1968    is
1969       Loc       : constant Source_Ptr := Sloc (Nod);
1970       Full_Type : Entity_Id;
1971       Prim      : Elmt_Id;
1972       Eq_Op     : Entity_Id;
1973
1974    begin
1975       if Is_Private_Type (Typ) then
1976          Full_Type := Underlying_Type (Typ);
1977       else
1978          Full_Type := Typ;
1979       end if;
1980
1981       --  Defense against malformed private types with no completion the error
1982       --  will be diagnosed later by check_completion
1983
1984       if No (Full_Type) then
1985          return New_Reference_To (Standard_False, Loc);
1986       end if;
1987
1988       Full_Type := Base_Type (Full_Type);
1989
1990       if Is_Array_Type (Full_Type) then
1991
1992          --  If the operand is an elementary type other than a floating-point
1993          --  type, then we can simply use the built-in block bitwise equality,
1994          --  since the predefined equality operators always apply and bitwise
1995          --  equality is fine for all these cases.
1996
1997          if Is_Elementary_Type (Component_Type (Full_Type))
1998            and then not Is_Floating_Point_Type (Component_Type (Full_Type))
1999          then
2000             return Make_Op_Eq (Loc, Left_Opnd  => Lhs, Right_Opnd => Rhs);
2001
2002          --  For composite component types, and floating-point types, use the
2003          --  expansion. This deals with tagged component types (where we use
2004          --  the applicable equality routine) and floating-point, (where we
2005          --  need to worry about negative zeroes), and also the case of any
2006          --  composite type recursively containing such fields.
2007
2008          else
2009             return Expand_Array_Equality (Nod, Lhs, Rhs, Bodies, Full_Type);
2010          end if;
2011
2012       elsif Is_Tagged_Type (Full_Type) then
2013
2014          --  Call the primitive operation "=" of this type
2015
2016          if Is_Class_Wide_Type (Full_Type) then
2017             Full_Type := Root_Type (Full_Type);
2018          end if;
2019
2020          --  If this is derived from an untagged private type completed with a
2021          --  tagged type, it does not have a full view, so we use the primitive
2022          --  operations of the private type. This check should no longer be
2023          --  necessary when these types receive their full views ???
2024
2025          if Is_Private_Type (Typ)
2026            and then not Is_Tagged_Type (Typ)
2027            and then not Is_Controlled (Typ)
2028            and then Is_Derived_Type (Typ)
2029            and then No (Full_View (Typ))
2030          then
2031             Prim := First_Elmt (Collect_Primitive_Operations (Typ));
2032          else
2033             Prim := First_Elmt (Primitive_Operations (Full_Type));
2034          end if;
2035
2036          loop
2037             Eq_Op := Node (Prim);
2038             exit when Chars (Eq_Op) = Name_Op_Eq
2039               and then Etype (First_Formal (Eq_Op)) =
2040                        Etype (Next_Formal (First_Formal (Eq_Op)))
2041               and then Base_Type (Etype (Eq_Op)) = Standard_Boolean;
2042             Next_Elmt (Prim);
2043             pragma Assert (Present (Prim));
2044          end loop;
2045
2046          Eq_Op := Node (Prim);
2047
2048          return
2049            Make_Function_Call (Loc,
2050              Name => New_Reference_To (Eq_Op, Loc),
2051              Parameter_Associations =>
2052                New_List
2053                  (Unchecked_Convert_To (Etype (First_Formal (Eq_Op)), Lhs),
2054                   Unchecked_Convert_To (Etype (First_Formal (Eq_Op)), Rhs)));
2055
2056       elsif Is_Record_Type (Full_Type) then
2057          Eq_Op := TSS (Full_Type, TSS_Composite_Equality);
2058
2059          if Present (Eq_Op) then
2060             if Etype (First_Formal (Eq_Op)) /= Full_Type then
2061
2062                --  Inherited equality from parent type. Convert the actuals to
2063                --  match signature of operation.
2064
2065                declare
2066                   T : constant Entity_Id := Etype (First_Formal (Eq_Op));
2067
2068                begin
2069                   return
2070                     Make_Function_Call (Loc,
2071                       Name => New_Reference_To (Eq_Op, Loc),
2072                       Parameter_Associations =>
2073                         New_List (OK_Convert_To (T, Lhs),
2074                                   OK_Convert_To (T, Rhs)));
2075                end;
2076
2077             else
2078                --  Comparison between Unchecked_Union components
2079
2080                if Is_Unchecked_Union (Full_Type) then
2081                   declare
2082                      Lhs_Type      : Node_Id := Full_Type;
2083                      Rhs_Type      : Node_Id := Full_Type;
2084                      Lhs_Discr_Val : Node_Id;
2085                      Rhs_Discr_Val : Node_Id;
2086
2087                   begin
2088                      --  Lhs subtype
2089
2090                      if Nkind (Lhs) = N_Selected_Component then
2091                         Lhs_Type := Etype (Entity (Selector_Name (Lhs)));
2092                      end if;
2093
2094                      --  Rhs subtype
2095
2096                      if Nkind (Rhs) = N_Selected_Component then
2097                         Rhs_Type := Etype (Entity (Selector_Name (Rhs)));
2098                      end if;
2099
2100                      --  Lhs of the composite equality
2101
2102                      if Is_Constrained (Lhs_Type) then
2103
2104                         --  Since the enclosing record type can never be an
2105                         --  Unchecked_Union (this code is executed for records
2106                         --  that do not have variants), we may reference its
2107                         --  discriminant(s).
2108
2109                         if Nkind (Lhs) = N_Selected_Component
2110                           and then Has_Per_Object_Constraint (
2111                                      Entity (Selector_Name (Lhs)))
2112                         then
2113                            Lhs_Discr_Val :=
2114                              Make_Selected_Component (Loc,
2115                                Prefix => Prefix (Lhs),
2116                                Selector_Name =>
2117                                  New_Copy (
2118                                    Get_Discriminant_Value (
2119                                      First_Discriminant (Lhs_Type),
2120                                      Lhs_Type,
2121                                      Stored_Constraint (Lhs_Type))));
2122
2123                         else
2124                            Lhs_Discr_Val := New_Copy (
2125                              Get_Discriminant_Value (
2126                                First_Discriminant (Lhs_Type),
2127                                Lhs_Type,
2128                                Stored_Constraint (Lhs_Type)));
2129
2130                         end if;
2131                      else
2132                         --  It is not possible to infer the discriminant since
2133                         --  the subtype is not constrained.
2134
2135                         return
2136                           Make_Raise_Program_Error (Loc,
2137                             Reason => PE_Unchecked_Union_Restriction);
2138                      end if;
2139
2140                      --  Rhs of the composite equality
2141
2142                      if Is_Constrained (Rhs_Type) then
2143                         if Nkind (Rhs) = N_Selected_Component
2144                           and then Has_Per_Object_Constraint (
2145                                      Entity (Selector_Name (Rhs)))
2146                         then
2147                            Rhs_Discr_Val :=
2148                              Make_Selected_Component (Loc,
2149                                Prefix => Prefix (Rhs),
2150                                Selector_Name =>
2151                                  New_Copy (
2152                                    Get_Discriminant_Value (
2153                                      First_Discriminant (Rhs_Type),
2154                                      Rhs_Type,
2155                                      Stored_Constraint (Rhs_Type))));
2156
2157                         else
2158                            Rhs_Discr_Val := New_Copy (
2159                              Get_Discriminant_Value (
2160                                First_Discriminant (Rhs_Type),
2161                                Rhs_Type,
2162                                Stored_Constraint (Rhs_Type)));
2163
2164                         end if;
2165                      else
2166                         return
2167                           Make_Raise_Program_Error (Loc,
2168                             Reason => PE_Unchecked_Union_Restriction);
2169                      end if;
2170
2171                      --  Call the TSS equality function with the inferred
2172                      --  discriminant values.
2173
2174                      return
2175                        Make_Function_Call (Loc,
2176                          Name => New_Reference_To (Eq_Op, Loc),
2177                          Parameter_Associations => New_List (
2178                            Lhs,
2179                            Rhs,
2180                            Lhs_Discr_Val,
2181                            Rhs_Discr_Val));
2182                   end;
2183                end if;
2184
2185                --  Shouldn't this be an else, we can't fall through the above
2186                --  IF, right???
2187
2188                return
2189                  Make_Function_Call (Loc,
2190                    Name => New_Reference_To (Eq_Op, Loc),
2191                    Parameter_Associations => New_List (Lhs, Rhs));
2192             end if;
2193
2194          else
2195             return Expand_Record_Equality (Nod, Full_Type, Lhs, Rhs, Bodies);
2196          end if;
2197
2198       else
2199          --  It can be a simple record or the full view of a scalar private
2200
2201          return Make_Op_Eq (Loc, Left_Opnd => Lhs, Right_Opnd => Rhs);
2202       end if;
2203    end Expand_Composite_Equality;
2204
2205    ------------------------
2206    -- Expand_Concatenate --
2207    ------------------------
2208
2209    procedure Expand_Concatenate (Cnode : Node_Id; Opnds : List_Id) is
2210       Loc : constant Source_Ptr := Sloc (Cnode);
2211
2212       Atyp : constant Entity_Id := Base_Type (Etype (Cnode));
2213       --  Result type of concatenation
2214
2215       Ctyp : constant Entity_Id := Base_Type (Component_Type (Etype (Cnode)));
2216       --  Component type. Elements of this component type can appear as one
2217       --  of the operands of concatenation as well as arrays.
2218
2219       Istyp : constant Entity_Id := Etype (First_Index (Atyp));
2220       --  Index subtype
2221
2222       Ityp : constant Entity_Id := Base_Type (Istyp);
2223       --  Index type. This is the base type of the index subtype, and is used
2224       --  for all computed bounds (which may be out of range of Istyp in the
2225       --  case of null ranges).
2226
2227       Artyp : Entity_Id;
2228       --  This is the type we use to do arithmetic to compute the bounds and
2229       --  lengths of operands. The choice of this type is a little subtle and
2230       --  is discussed in a separate section at the start of the body code.
2231
2232       Concatenation_Error : exception;
2233       --  Raised if concatenation is sure to raise a CE
2234
2235       Result_May_Be_Null : Boolean := True;
2236       --  Reset to False if at least one operand is encountered which is known
2237       --  at compile time to be non-null. Used for handling the special case
2238       --  of setting the high bound to the last operand high bound for a null
2239       --  result, thus ensuring a proper high bound in the super-flat case.
2240
2241       N : constant Nat := List_Length (Opnds);
2242       --  Number of concatenation operands including possibly null operands
2243
2244       NN : Nat := 0;
2245       --  Number of operands excluding any known to be null, except that the
2246       --  last operand is always retained, in case it provides the bounds for
2247       --  a null result.
2248
2249       Opnd : Node_Id;
2250       --  Current operand being processed in the loop through operands. After
2251       --  this loop is complete, always contains the last operand (which is not
2252       --  the same as Operands (NN), since null operands are skipped).
2253
2254       --  Arrays describing the operands, only the first NN entries of each
2255       --  array are set (NN < N when we exclude known null operands).
2256
2257       Is_Fixed_Length : array (1 .. N) of Boolean;
2258       --  True if length of corresponding operand known at compile time
2259
2260       Operands : array (1 .. N) of Node_Id;
2261       --  Set to the corresponding entry in the Opnds list (but note that null
2262       --  operands are excluded, so not all entries in the list are stored).
2263
2264       Fixed_Length : array (1 .. N) of Uint;
2265       --  Set to length of operand. Entries in this array are set only if the
2266       --  corresponding entry in Is_Fixed_Length is True.
2267
2268       Opnd_Low_Bound : array (1 .. N) of Node_Id;
2269       --  Set to lower bound of operand. Either an integer literal in the case
2270       --  where the bound is known at compile time, else actual lower bound.
2271       --  The operand low bound is of type Ityp.
2272
2273       Var_Length : array (1 .. N) of Entity_Id;
2274       --  Set to an entity of type Natural that contains the length of an
2275       --  operand whose length is not known at compile time. Entries in this
2276       --  array are set only if the corresponding entry in Is_Fixed_Length
2277       --  is False. The entity is of type Artyp.
2278
2279       Aggr_Length : array (0 .. N) of Node_Id;
2280       --  The J'th entry in an expression node that represents the total length
2281       --  of operands 1 through J. It is either an integer literal node, or a
2282       --  reference to a constant entity with the right value, so it is fine
2283       --  to just do a Copy_Node to get an appropriate copy. The extra zero'th
2284       --  entry always is set to zero. The length is of type Artyp.
2285
2286       Low_Bound : Node_Id;
2287       --  A tree node representing the low bound of the result (of type Ityp).
2288       --  This is either an integer literal node, or an identifier reference to
2289       --  a constant entity initialized to the appropriate value.
2290
2291       Last_Opnd_High_Bound : Node_Id;
2292       --  A tree node representing the high bound of the last operand. This
2293       --  need only be set if the result could be null. It is used for the
2294       --  special case of setting the right high bound for a null result.
2295       --  This is of type Ityp.
2296
2297       High_Bound : Node_Id;
2298       --  A tree node representing the high bound of the result (of type Ityp)
2299
2300       Result : Node_Id;
2301       --  Result of the concatenation (of type Ityp)
2302
2303       Actions : constant List_Id := New_List;
2304       --  Collect actions to be inserted if Save_Space is False
2305
2306       Save_Space : Boolean;
2307       pragma Warnings (Off, Save_Space);
2308       --  Set to True if we are saving generated code space by calling routines
2309       --  in packages System.Concat_n.
2310
2311       Known_Non_Null_Operand_Seen : Boolean;
2312       --  Set True during generation of the assignements of operands into
2313       --  result once an operand known to be non-null has been seen.
2314
2315       function Make_Artyp_Literal (Val : Nat) return Node_Id;
2316       --  This function makes an N_Integer_Literal node that is returned in
2317       --  analyzed form with the type set to Artyp. Importantly this literal
2318       --  is not flagged as static, so that if we do computations with it that
2319       --  result in statically detected out of range conditions, we will not
2320       --  generate error messages but instead warning messages.
2321
2322       function To_Artyp (X : Node_Id) return Node_Id;
2323       --  Given a node of type Ityp, returns the corresponding value of type
2324       --  Artyp. For non-enumeration types, this is a plain integer conversion.
2325       --  For enum types, the Pos of the value is returned.
2326
2327       function To_Ityp (X : Node_Id) return Node_Id;
2328       --  The inverse function (uses Val in the case of enumeration types)
2329
2330       ------------------------
2331       -- Make_Artyp_Literal --
2332       ------------------------
2333
2334       function Make_Artyp_Literal (Val : Nat) return Node_Id is
2335          Result : constant Node_Id := Make_Integer_Literal (Loc, Val);
2336       begin
2337          Set_Etype (Result, Artyp);
2338          Set_Analyzed (Result, True);
2339          Set_Is_Static_Expression (Result, False);
2340          return Result;
2341       end Make_Artyp_Literal;
2342
2343       --------------
2344       -- To_Artyp --
2345       --------------
2346
2347       function To_Artyp (X : Node_Id) return Node_Id is
2348       begin
2349          if Ityp = Base_Type (Artyp) then
2350             return X;
2351
2352          elsif Is_Enumeration_Type (Ityp) then
2353             return
2354               Make_Attribute_Reference (Loc,
2355                 Prefix         => New_Occurrence_Of (Ityp, Loc),
2356                 Attribute_Name => Name_Pos,
2357                 Expressions    => New_List (X));
2358
2359          else
2360             return Convert_To (Artyp, X);
2361          end if;
2362       end To_Artyp;
2363
2364       -------------
2365       -- To_Ityp --
2366       -------------
2367
2368       function To_Ityp (X : Node_Id) return Node_Id is
2369       begin
2370          if Is_Enumeration_Type (Ityp) then
2371             return
2372               Make_Attribute_Reference (Loc,
2373                 Prefix         => New_Occurrence_Of (Ityp, Loc),
2374                 Attribute_Name => Name_Val,
2375                 Expressions    => New_List (X));
2376
2377          --  Case where we will do a type conversion
2378
2379          else
2380             if Ityp = Base_Type (Artyp) then
2381                return X;
2382             else
2383                return Convert_To (Ityp, X);
2384             end if;
2385          end if;
2386       end To_Ityp;
2387
2388       --  Local Declarations
2389
2390       Opnd_Typ : Entity_Id;
2391       Ent      : Entity_Id;
2392       Len      : Uint;
2393       J        : Nat;
2394       Clen     : Node_Id;
2395       Set      : Boolean;
2396
2397    begin
2398       --  Choose an appropriate computational type
2399
2400       --  We will be doing calculations of lengths and bounds in this routine
2401       --  and computing one from the other in some cases, e.g. getting the high
2402       --  bound by adding the length-1 to the low bound.
2403
2404       --  We can't just use the index type, or even its base type for this
2405       --  purpose for two reasons. First it might be an enumeration type which
2406       --  is not suitable fo computations of any kind, and second it may simply
2407       --  not have enough range. For example if the index type is -128..+127
2408       --  then lengths can be up to 256, which is out of range of the type.
2409
2410       --  For enumeration types, we can simply use Standard_Integer, this is
2411       --  sufficient since the actual number of enumeration literals cannot
2412       --  possibly exceed the range of integer (remember we will be doing the
2413       --  arithmetic with POS values, not representation values).
2414
2415       if Is_Enumeration_Type (Ityp) then
2416          Artyp := Standard_Integer;
2417
2418       --  If index type is Positive, we use the standard unsigned type, to give
2419       --  more room on the top of the range, obviating the need for an overflow
2420       --  check when creating the upper bound. This is needed to avoid junk
2421       --  overflow checks in the common case of String types.
2422
2423       --  ??? Disabled for now
2424
2425       --  elsif Istyp = Standard_Positive then
2426       --     Artyp := Standard_Unsigned;
2427
2428       --  For modular types, we use a 32-bit modular type for types whose size
2429       --  is in the range 1-31 bits. For 32-bit unsigned types, we use the
2430       --  identity type, and for larger unsigned types we use 64-bits.
2431
2432       elsif Is_Modular_Integer_Type (Ityp) then
2433          if RM_Size (Ityp) < RM_Size (Standard_Unsigned) then
2434             Artyp := Standard_Unsigned;
2435          elsif RM_Size (Ityp) = RM_Size (Standard_Unsigned) then
2436             Artyp := Ityp;
2437          else
2438             Artyp := RTE (RE_Long_Long_Unsigned);
2439          end if;
2440
2441       --  Similar treatment for signed types
2442
2443       else
2444          if RM_Size (Ityp) < RM_Size (Standard_Integer) then
2445             Artyp := Standard_Integer;
2446          elsif RM_Size (Ityp) = RM_Size (Standard_Integer) then
2447             Artyp := Ityp;
2448          else
2449             Artyp := Standard_Long_Long_Integer;
2450          end if;
2451       end if;
2452
2453       --  Supply dummy entry at start of length array
2454
2455       Aggr_Length (0) := Make_Artyp_Literal (0);
2456
2457       --  Go through operands setting up the above arrays
2458
2459       J := 1;
2460       while J <= N loop
2461          Opnd := Remove_Head (Opnds);
2462          Opnd_Typ := Etype (Opnd);
2463
2464          --  The parent got messed up when we put the operands in a list,
2465          --  so now put back the proper parent for the saved operand.
2466
2467          Set_Parent (Opnd, Parent (Cnode));
2468
2469          --  Set will be True when we have setup one entry in the array
2470
2471          Set := False;
2472
2473          --  Singleton element (or character literal) case
2474
2475          if Base_Type (Opnd_Typ) = Ctyp then
2476             NN := NN + 1;
2477             Operands (NN) := Opnd;
2478             Is_Fixed_Length (NN) := True;
2479             Fixed_Length (NN) := Uint_1;
2480             Result_May_Be_Null := False;
2481
2482             --  Set low bound of operand (no need to set Last_Opnd_High_Bound
2483             --  since we know that the result cannot be null).
2484
2485             Opnd_Low_Bound (NN) :=
2486               Make_Attribute_Reference (Loc,
2487                 Prefix         => New_Reference_To (Istyp, Loc),
2488                 Attribute_Name => Name_First);
2489
2490             Set := True;
2491
2492          --  String literal case (can only occur for strings of course)
2493
2494          elsif Nkind (Opnd) = N_String_Literal then
2495             Len := String_Literal_Length (Opnd_Typ);
2496
2497             if Len /= 0 then
2498                Result_May_Be_Null := False;
2499             end if;
2500
2501             --  Capture last operand high bound if result could be null
2502
2503             if J = N and then Result_May_Be_Null then
2504                Last_Opnd_High_Bound :=
2505                  Make_Op_Add (Loc,
2506                    Left_Opnd  =>
2507                      New_Copy_Tree (String_Literal_Low_Bound (Opnd_Typ)),
2508                    Right_Opnd => Make_Integer_Literal (Loc, 1));
2509             end if;
2510
2511             --  Skip null string literal
2512
2513             if J < N and then Len = 0 then
2514                goto Continue;
2515             end if;
2516
2517             NN := NN + 1;
2518             Operands (NN) := Opnd;
2519             Is_Fixed_Length (NN) := True;
2520
2521             --  Set length and bounds
2522
2523             Fixed_Length (NN) := Len;
2524
2525             Opnd_Low_Bound (NN) :=
2526               New_Copy_Tree (String_Literal_Low_Bound (Opnd_Typ));
2527
2528             Set := True;
2529
2530          --  All other cases
2531
2532          else
2533             --  Check constrained case with known bounds
2534
2535             if Is_Constrained (Opnd_Typ) then
2536                declare
2537                   Index    : constant Node_Id   := First_Index (Opnd_Typ);
2538                   Indx_Typ : constant Entity_Id := Etype (Index);
2539                   Lo       : constant Node_Id   := Type_Low_Bound  (Indx_Typ);
2540                   Hi       : constant Node_Id   := Type_High_Bound (Indx_Typ);
2541
2542                begin
2543                   --  Fixed length constrained array type with known at compile
2544                   --  time bounds is last case of fixed length operand.
2545
2546                   if Compile_Time_Known_Value (Lo)
2547                        and then
2548                      Compile_Time_Known_Value (Hi)
2549                   then
2550                      declare
2551                         Loval : constant Uint := Expr_Value (Lo);
2552                         Hival : constant Uint := Expr_Value (Hi);
2553                         Len   : constant Uint :=
2554                                   UI_Max (Hival - Loval + 1, Uint_0);
2555
2556                      begin
2557                         if Len > 0 then
2558                            Result_May_Be_Null := False;
2559                         end if;
2560
2561                         --  Capture last operand bound if result could be null
2562
2563                         if J = N and then Result_May_Be_Null then
2564                            Last_Opnd_High_Bound :=
2565                              Convert_To (Ityp,
2566                                Make_Integer_Literal (Loc,
2567                                  Intval => Expr_Value (Hi)));
2568                         end if;
2569
2570                         --  Exclude null length case unless last operand
2571
2572                         if J < N and then Len = 0 then
2573                            goto Continue;
2574                         end if;
2575
2576                         NN := NN + 1;
2577                         Operands (NN) := Opnd;
2578                         Is_Fixed_Length (NN) := True;
2579                         Fixed_Length (NN)    := Len;
2580
2581                         Opnd_Low_Bound (NN) := To_Ityp (
2582                           Make_Integer_Literal (Loc,
2583                             Intval => Expr_Value (Lo)));
2584
2585                         Set := True;
2586                      end;
2587                   end if;
2588                end;
2589             end if;
2590
2591             --  All cases where the length is not known at compile time, or the
2592             --  special case of an operand which is known to be null but has a
2593             --  lower bound other than 1 or is other than a string type.
2594
2595             if not Set then
2596                NN := NN + 1;
2597
2598                --  Capture operand bounds
2599
2600                Opnd_Low_Bound (NN) :=
2601                  Make_Attribute_Reference (Loc,
2602                    Prefix         =>
2603                      Duplicate_Subexpr (Opnd, Name_Req => True),
2604                    Attribute_Name => Name_First);
2605
2606                if J = N and Result_May_Be_Null then
2607                   Last_Opnd_High_Bound :=
2608                     Convert_To (Ityp,
2609                       Make_Attribute_Reference (Loc,
2610                         Prefix         =>
2611                           Duplicate_Subexpr (Opnd, Name_Req => True),
2612                         Attribute_Name => Name_Last));
2613                end if;
2614
2615                --  Capture length of operand in entity
2616
2617                Operands (NN) := Opnd;
2618                Is_Fixed_Length (NN) := False;
2619
2620                Var_Length (NN) :=
2621                  Make_Defining_Identifier (Loc,
2622                    Chars => New_Internal_Name ('L'));
2623
2624                Append_To (Actions,
2625                  Make_Object_Declaration (Loc,
2626                    Defining_Identifier => Var_Length (NN),
2627                    Constant_Present    => True,
2628
2629                    Object_Definition   =>
2630                      New_Occurrence_Of (Artyp, Loc),
2631
2632                    Expression          =>
2633                      Make_Attribute_Reference (Loc,
2634                        Prefix         =>
2635                          Duplicate_Subexpr (Opnd, Name_Req => True),
2636                        Attribute_Name => Name_Length)));
2637             end if;
2638          end if;
2639
2640          --  Set next entry in aggregate length array
2641
2642          --  For first entry, make either integer literal for fixed length
2643          --  or a reference to the saved length for variable length.
2644
2645          if NN = 1 then
2646             if Is_Fixed_Length (1) then
2647                Aggr_Length (1) :=
2648                  Make_Integer_Literal (Loc,
2649                    Intval => Fixed_Length (1));
2650             else
2651                Aggr_Length (1) :=
2652                  New_Reference_To (Var_Length (1), Loc);
2653             end if;
2654
2655          --  If entry is fixed length and only fixed lengths so far, make
2656          --  appropriate new integer literal adding new length.
2657
2658          elsif Is_Fixed_Length (NN)
2659            and then Nkind (Aggr_Length (NN - 1)) = N_Integer_Literal
2660          then
2661             Aggr_Length (NN) :=
2662               Make_Integer_Literal (Loc,
2663                 Intval => Fixed_Length (NN) + Intval (Aggr_Length (NN - 1)));
2664
2665          --  All other cases, construct an addition node for the length and
2666          --  create an entity initialized to this length.
2667
2668          else
2669             Ent :=
2670               Make_Defining_Identifier (Loc,
2671                 Chars => New_Internal_Name ('L'));
2672
2673             if Is_Fixed_Length (NN) then
2674                Clen := Make_Integer_Literal (Loc, Fixed_Length (NN));
2675             else
2676                Clen := New_Reference_To (Var_Length (NN), Loc);
2677             end if;
2678
2679             Append_To (Actions,
2680               Make_Object_Declaration (Loc,
2681                 Defining_Identifier => Ent,
2682                 Constant_Present    => True,
2683
2684                 Object_Definition   =>
2685                   New_Occurrence_Of (Artyp, Loc),
2686
2687                 Expression          =>
2688                   Make_Op_Add (Loc,
2689                     Left_Opnd  => New_Copy (Aggr_Length (NN - 1)),
2690                     Right_Opnd => Clen)));
2691
2692             Aggr_Length (NN) := Make_Identifier (Loc, Chars => Chars (Ent));
2693          end if;
2694
2695       <<Continue>>
2696          J := J + 1;
2697       end loop;
2698
2699       --  If we have only skipped null operands, return the last operand
2700
2701       if NN = 0 then
2702          Result := Opnd;
2703          goto Done;
2704       end if;
2705
2706       --  If we have only one non-null operand, return it and we are done.
2707       --  There is one case in which this cannot be done, and that is when
2708       --  the sole operand is of the element type, in which case it must be
2709       --  converted to an array, and the easiest way of doing that is to go
2710       --  through the normal general circuit.
2711
2712       if NN = 1
2713         and then Base_Type (Etype (Operands (1))) /= Ctyp
2714       then
2715          Result := Operands (1);
2716          goto Done;
2717       end if;
2718
2719       --  Cases where we have a real concatenation
2720
2721       --  Next step is to find the low bound for the result array that we
2722       --  will allocate. The rules for this are in (RM 4.5.6(5-7)).
2723
2724       --  If the ultimate ancestor of the index subtype is a constrained array
2725       --  definition, then the lower bound is that of the index subtype as
2726       --  specified by (RM 4.5.3(6)).
2727
2728       --  The right test here is to go to the root type, and then the ultimate
2729       --  ancestor is the first subtype of this root type.
2730
2731       if Is_Constrained (First_Subtype (Root_Type (Atyp))) then
2732          Low_Bound :=
2733            Make_Attribute_Reference (Loc,
2734              Prefix         =>
2735                New_Occurrence_Of (First_Subtype (Root_Type (Atyp)), Loc),
2736              Attribute_Name => Name_First);
2737
2738       --  If the first operand in the list has known length we know that
2739       --  the lower bound of the result is the lower bound of this operand.
2740
2741       elsif Is_Fixed_Length (1) then
2742          Low_Bound := Opnd_Low_Bound (1);
2743
2744       --  OK, we don't know the lower bound, we have to build a horrible
2745       --  expression actions node of the form
2746
2747       --     if Cond1'Length /= 0 then
2748       --        Opnd1 low bound
2749       --     else
2750       --        if Opnd2'Length /= 0 then
2751       --          Opnd2 low bound
2752       --        else
2753       --           ...
2754
2755       --  The nesting ends either when we hit an operand whose length is known
2756       --  at compile time, or on reaching the last operand, whose low bound we
2757       --  take unconditionally whether or not it is null. It's easiest to do
2758       --  this with a recursive procedure:
2759
2760       else
2761          declare
2762             function Get_Known_Bound (J : Nat) return Node_Id;
2763             --  Returns the lower bound determined by operands J .. NN
2764
2765             ---------------------
2766             -- Get_Known_Bound --
2767             ---------------------
2768
2769             function Get_Known_Bound (J : Nat) return Node_Id is
2770             begin
2771                if Is_Fixed_Length (J) or else J = NN then
2772                   return New_Copy (Opnd_Low_Bound (J));
2773
2774                else
2775                   return
2776                     Make_Conditional_Expression (Loc,
2777                       Expressions => New_List (
2778
2779                         Make_Op_Ne (Loc,
2780                           Left_Opnd  => New_Reference_To (Var_Length (J), Loc),
2781                           Right_Opnd => Make_Integer_Literal (Loc, 0)),
2782
2783                         New_Copy (Opnd_Low_Bound (J)),
2784                         Get_Known_Bound (J + 1)));
2785                end if;
2786             end Get_Known_Bound;
2787
2788          begin
2789             Ent :=
2790               Make_Defining_Identifier (Loc, Chars => New_Internal_Name ('L'));
2791
2792             Append_To (Actions,
2793               Make_Object_Declaration (Loc,
2794                 Defining_Identifier => Ent,
2795                 Constant_Present    => True,
2796                 Object_Definition   => New_Occurrence_Of (Ityp, Loc),
2797                 Expression          => Get_Known_Bound (1)));
2798
2799             Low_Bound := New_Reference_To (Ent, Loc);
2800          end;
2801       end if;
2802
2803       --  Now we can safely compute the upper bound, normally
2804       --  Low_Bound + Length - 1.
2805
2806       High_Bound :=
2807         To_Ityp (
2808           Make_Op_Add (Loc,
2809             Left_Opnd  => To_Artyp (New_Copy (Low_Bound)),
2810             Right_Opnd =>
2811               Make_Op_Subtract (Loc,
2812                 Left_Opnd  => New_Copy (Aggr_Length (NN)),
2813                 Right_Opnd => Make_Artyp_Literal (1))));
2814
2815       --  Note that calculation of the high bound may cause overflow in some
2816       --  very weird cases, so in the general case we need an overflow check on
2817       --  the high bound. We can avoid this for the common case of string types
2818       --  and other types whose index is Positive, since we chose a wider range
2819       --  for the arithmetic type.
2820
2821       if Istyp /= Standard_Positive then
2822          Activate_Overflow_Check (High_Bound);
2823       end if;
2824
2825       --  Handle the exceptional case where the result is null, in which case
2826       --  case the bounds come from the last operand (so that we get the proper
2827       --  bounds if the last operand is super-flat).
2828
2829       if Result_May_Be_Null then
2830          High_Bound :=
2831            Make_Conditional_Expression (Loc,
2832              Expressions => New_List (
2833                Make_Op_Eq (Loc,
2834                  Left_Opnd  => New_Copy (Aggr_Length (NN)),
2835                  Right_Opnd => Make_Artyp_Literal (0)),
2836                Last_Opnd_High_Bound,
2837                High_Bound));
2838       end if;
2839
2840       --  Here is where we insert the saved up actions
2841
2842       Insert_Actions (Cnode, Actions, Suppress => All_Checks);
2843
2844       --  Now we construct an array object with appropriate bounds
2845
2846       Ent :=
2847         Make_Defining_Identifier (Loc,
2848           Chars => New_Internal_Name ('S'));
2849
2850       --  If the bound is statically known to be out of range, we do not want
2851       --  to abort, we want a warning and a runtime constraint error. Note that
2852       --  we have arranged that the result will not be treated as a static
2853       --  constant, so we won't get an illegality during this insertion.
2854
2855       Insert_Action (Cnode,
2856         Make_Object_Declaration (Loc,
2857           Defining_Identifier => Ent,
2858           Object_Definition   =>
2859             Make_Subtype_Indication (Loc,
2860               Subtype_Mark => New_Occurrence_Of (Atyp, Loc),
2861               Constraint   =>
2862                 Make_Index_Or_Discriminant_Constraint (Loc,
2863                   Constraints => New_List (
2864                     Make_Range (Loc,
2865                       Low_Bound  => Low_Bound,
2866                       High_Bound => High_Bound))))),
2867         Suppress => All_Checks);
2868
2869       --  If the result of the concatenation appears as the initializing
2870       --  expression of an object declaration, we can just rename the
2871       --  result, rather than copying it.
2872
2873       Set_OK_To_Rename (Ent);
2874
2875       --  Catch the static out of range case now
2876
2877       if Raises_Constraint_Error (High_Bound) then
2878          raise Concatenation_Error;
2879       end if;
2880
2881       --  Now we will generate the assignments to do the actual concatenation
2882
2883       --  There is one case in which we will not do this, namely when all the
2884       --  following conditions are met:
2885
2886       --    The result type is Standard.String
2887
2888       --    There are nine or fewer retained (non-null) operands
2889
2890       --    The optimization level is -O0
2891
2892       --    The corresponding System.Concat_n.Str_Concat_n routine is
2893       --    available in the run time.
2894
2895       --    The debug flag gnatd.c is not set
2896
2897       --  If all these conditions are met then we generate a call to the
2898       --  relevant concatenation routine. The purpose of this is to avoid
2899       --  undesirable code bloat at -O0.
2900
2901       if Atyp = Standard_String
2902         and then NN in 2 .. 9
2903         and then (Opt.Optimization_Level = 0 or else Debug_Flag_Dot_CC)
2904         and then not Debug_Flag_Dot_C
2905       then
2906          declare
2907             RR : constant array (Nat range 2 .. 9) of RE_Id :=
2908                    (RE_Str_Concat_2,
2909                     RE_Str_Concat_3,
2910                     RE_Str_Concat_4,
2911                     RE_Str_Concat_5,
2912                     RE_Str_Concat_6,
2913                     RE_Str_Concat_7,
2914                     RE_Str_Concat_8,
2915                     RE_Str_Concat_9);
2916
2917          begin
2918             if RTE_Available (RR (NN)) then
2919                declare
2920                   Opnds : constant List_Id :=
2921                             New_List (New_Occurrence_Of (Ent, Loc));
2922
2923                begin
2924                   for J in 1 .. NN loop
2925                      if Is_List_Member (Operands (J)) then
2926                         Remove (Operands (J));
2927                      end if;
2928
2929                      if Base_Type (Etype (Operands (J))) = Ctyp then
2930                         Append_To (Opnds,
2931                           Make_Aggregate (Loc,
2932                             Component_Associations => New_List (
2933                               Make_Component_Association (Loc,
2934                                 Choices => New_List (
2935                                   Make_Integer_Literal (Loc, 1)),
2936                                 Expression => Operands (J)))));
2937
2938                      else
2939                         Append_To (Opnds, Operands (J));
2940                      end if;
2941                   end loop;
2942
2943                   Insert_Action (Cnode,
2944                     Make_Procedure_Call_Statement (Loc,
2945                       Name => New_Reference_To (RTE (RR (NN)), Loc),
2946                       Parameter_Associations => Opnds));
2947
2948                   Result := New_Reference_To (Ent, Loc);
2949                   goto Done;
2950                end;
2951             end if;
2952          end;
2953       end if;
2954
2955       --  Not special case so generate the assignments
2956
2957       Known_Non_Null_Operand_Seen := False;
2958
2959       for J in 1 .. NN loop
2960          declare
2961             Lo : constant Node_Id :=
2962                    Make_Op_Add (Loc,
2963                      Left_Opnd  => To_Artyp (New_Copy (Low_Bound)),
2964                      Right_Opnd => Aggr_Length (J - 1));
2965
2966             Hi : constant Node_Id :=
2967                    Make_Op_Add (Loc,
2968                      Left_Opnd  => To_Artyp (New_Copy (Low_Bound)),
2969                      Right_Opnd =>
2970                        Make_Op_Subtract (Loc,
2971                          Left_Opnd  => Aggr_Length (J),
2972                          Right_Opnd => Make_Artyp_Literal (1)));
2973
2974          begin
2975             --  Singleton case, simple assignment
2976
2977             if Base_Type (Etype (Operands (J))) = Ctyp then
2978                Known_Non_Null_Operand_Seen := True;
2979                Insert_Action (Cnode,
2980                  Make_Assignment_Statement (Loc,
2981                    Name       =>
2982                      Make_Indexed_Component (Loc,
2983                        Prefix      => New_Occurrence_Of (Ent, Loc),
2984                        Expressions => New_List (To_Ityp (Lo))),
2985                    Expression => Operands (J)),
2986                  Suppress => All_Checks);
2987
2988             --  Array case, slice assignment, skipped when argument is fixed
2989             --  length and known to be null.
2990
2991             elsif (not Is_Fixed_Length (J)) or else (Fixed_Length (J) > 0) then
2992                declare
2993                   Assign : Node_Id :=
2994                              Make_Assignment_Statement (Loc,
2995                                Name       =>
2996                                  Make_Slice (Loc,
2997                                    Prefix         =>
2998                                      New_Occurrence_Of (Ent, Loc),
2999                                    Discrete_Range =>
3000                                      Make_Range (Loc,
3001                                        Low_Bound  => To_Ityp (Lo),
3002                                        High_Bound => To_Ityp (Hi))),
3003                                Expression => Operands (J));
3004                begin
3005                   if Is_Fixed_Length (J) then
3006                      Known_Non_Null_Operand_Seen := True;
3007
3008                   elsif not Known_Non_Null_Operand_Seen then
3009
3010                      --  Here if operand length is not statically known and no
3011                      --  operand known to be non-null has been processed yet.
3012                      --  If operand length is 0, we do not need to perform the
3013                      --  assignment, and we must avoid the evaluation of the
3014                      --  high bound of the slice, since it may underflow if the
3015                      --  low bound is Ityp'First.
3016
3017                      Assign :=
3018                        Make_Implicit_If_Statement (Cnode,
3019                          Condition =>
3020                            Make_Op_Ne (Loc,
3021                              Left_Opnd =>
3022                                New_Occurrence_Of (Var_Length (J), Loc),
3023                              Right_Opnd => Make_Integer_Literal (Loc, 0)),
3024                          Then_Statements =>
3025                            New_List (Assign));
3026                   end if;
3027
3028                   Insert_Action (Cnode, Assign, Suppress => All_Checks);
3029                end;
3030             end if;
3031          end;
3032       end loop;
3033
3034       --  Finally we build the result, which is a reference to the array object
3035
3036       Result := New_Reference_To (Ent, Loc);
3037
3038    <<Done>>
3039       Rewrite (Cnode, Result);
3040       Analyze_And_Resolve (Cnode, Atyp);
3041
3042    exception
3043       when Concatenation_Error =>
3044
3045          --  Kill warning generated for the declaration of the static out of
3046          --  range high bound, and instead generate a Constraint_Error with
3047          --  an appropriate specific message.
3048
3049          Kill_Dead_Code (Declaration_Node (Entity (High_Bound)));
3050          Apply_Compile_Time_Constraint_Error
3051            (N      => Cnode,
3052             Msg    => "concatenation result upper bound out of range?",
3053             Reason => CE_Range_Check_Failed);
3054          --  Set_Etype (Cnode, Atyp);
3055    end Expand_Concatenate;
3056
3057    ------------------------
3058    -- Expand_N_Allocator --
3059    ------------------------
3060
3061    procedure Expand_N_Allocator (N : Node_Id) is
3062       PtrT  : constant Entity_Id  := Etype (N);
3063       Dtyp  : constant Entity_Id  := Available_View (Designated_Type (PtrT));
3064       Etyp  : constant Entity_Id  := Etype (Expression (N));
3065       Loc   : constant Source_Ptr := Sloc (N);
3066       Desig : Entity_Id;
3067       Temp  : Entity_Id;
3068       Nod   : Node_Id;
3069
3070       procedure Complete_Coextension_Finalization;
3071       --  Generate finalization calls for all nested coextensions of N. This
3072       --  routine may allocate list controllers if necessary.
3073
3074       procedure Rewrite_Coextension (N : Node_Id);
3075       --  Static coextensions have the same lifetime as the entity they
3076       --  constrain. Such occurrences can be rewritten as aliased objects
3077       --  and their unrestricted access used instead of the coextension.
3078
3079       function Size_In_Storage_Elements (E : Entity_Id) return Node_Id;
3080       --  Given a constrained array type E, returns a node representing the
3081       --  code to compute the size in storage elements for the given type.
3082       --  This is done without using the attribute (which malfunctions for
3083       --  large sizes ???)
3084
3085       ---------------------------------------
3086       -- Complete_Coextension_Finalization --
3087       ---------------------------------------
3088
3089       procedure Complete_Coextension_Finalization is
3090          Coext      : Node_Id;
3091          Coext_Elmt : Elmt_Id;
3092          Flist      : Node_Id;
3093          Ref        : Node_Id;
3094
3095          function Inside_A_Return_Statement (N : Node_Id) return Boolean;
3096          --  Determine whether node N is part of a return statement
3097
3098          function Needs_Initialization_Call (N : Node_Id) return Boolean;
3099          --  Determine whether node N is a subtype indicator allocator which
3100          --  acts a coextension. Such coextensions need initialization.
3101
3102          -------------------------------
3103          -- Inside_A_Return_Statement --
3104          -------------------------------
3105
3106          function Inside_A_Return_Statement (N : Node_Id) return Boolean is
3107             P : Node_Id;
3108
3109          begin
3110             P := Parent (N);
3111             while Present (P) loop
3112                if Nkind_In
3113                    (P, N_Extended_Return_Statement, N_Simple_Return_Statement)
3114                then
3115                   return True;
3116
3117                --  Stop the traversal when we reach a subprogram body
3118
3119                elsif Nkind (P) = N_Subprogram_Body then
3120                   return False;
3121                end if;
3122
3123                P := Parent (P);
3124             end loop;
3125
3126             return False;
3127          end Inside_A_Return_Statement;
3128
3129          -------------------------------
3130          -- Needs_Initialization_Call --
3131          -------------------------------
3132
3133          function Needs_Initialization_Call (N : Node_Id) return Boolean is
3134             Obj_Decl : Node_Id;
3135
3136          begin
3137             if Nkind (N) = N_Explicit_Dereference
3138               and then Nkind (Prefix (N)) = N_Identifier
3139               and then Nkind (Parent (Entity (Prefix (N)))) =
3140                          N_Object_Declaration
3141             then
3142                Obj_Decl := Parent (Entity (Prefix (N)));
3143
3144                return
3145                  Present (Expression (Obj_Decl))
3146                    and then Nkind (Expression (Obj_Decl)) = N_Allocator
3147                    and then Nkind (Expression (Expression (Obj_Decl))) /=
3148                               N_Qualified_Expression;
3149             end if;
3150
3151             return False;
3152          end Needs_Initialization_Call;
3153
3154       --  Start of processing for Complete_Coextension_Finalization
3155
3156       begin
3157          --  When a coextension root is inside a return statement, we need to
3158          --  use the finalization chain of the function's scope. This does not
3159          --  apply for controlled named access types because in those cases we
3160          --  can use the finalization chain of the type itself.
3161
3162          if Inside_A_Return_Statement (N)
3163            and then
3164              (Ekind (PtrT) = E_Anonymous_Access_Type
3165                 or else
3166                   (Ekind (PtrT) = E_Access_Type
3167                      and then No (Associated_Final_Chain (PtrT))))
3168          then
3169             declare
3170                Decl    : Node_Id;
3171                Outer_S : Entity_Id;
3172                S       : Entity_Id := Current_Scope;
3173
3174             begin
3175                while Present (S) and then S /= Standard_Standard loop
3176                   if Ekind (S) = E_Function then
3177                      Outer_S := Scope (S);
3178
3179                      --  Retrieve the declaration of the body
3180
3181                      Decl :=
3182                        Parent
3183                          (Parent
3184                             (Corresponding_Body (Parent (Parent (S)))));
3185                      exit;
3186                   end if;
3187
3188                   S := Scope (S);
3189                end loop;
3190
3191                --  Push the scope of the function body since we are inserting
3192                --  the list before the body, but we are currently in the body
3193                --  itself. Override the finalization list of PtrT since the
3194                --  finalization context is now different.
3195
3196                Push_Scope (Outer_S);
3197                Build_Final_List (Decl, PtrT);
3198                Pop_Scope;
3199             end;
3200
3201          --  The root allocator may not be controlled, but it still needs a
3202          --  finalization list for all nested coextensions.
3203
3204          elsif No (Associated_Final_Chain (PtrT)) then
3205             Build_Final_List (N, PtrT);
3206          end if;
3207
3208          Flist :=
3209            Make_Selected_Component (Loc,
3210              Prefix =>
3211                New_Reference_To (Associated_Final_Chain (PtrT), Loc),
3212              Selector_Name =>
3213                Make_Identifier (Loc, Name_F));
3214
3215          Coext_Elmt := First_Elmt (Coextensions (N));
3216          while Present (Coext_Elmt) loop
3217             Coext := Node (Coext_Elmt);
3218
3219             --  Generate:
3220             --    typ! (coext.all)
3221
3222             if Nkind (Coext) = N_Identifier then
3223                Ref :=
3224                  Make_Unchecked_Type_Conversion (Loc,
3225                    Subtype_Mark => New_Reference_To (Etype (Coext), Loc),
3226                    Expression   =>
3227                      Make_Explicit_Dereference (Loc,
3228                        Prefix => New_Copy_Tree (Coext)));
3229             else
3230                Ref := New_Copy_Tree (Coext);
3231             end if;
3232
3233             --  No initialization call if not allowed
3234
3235             Check_Restriction (No_Default_Initialization, N);
3236
3237             if not Restriction_Active (No_Default_Initialization) then
3238
3239                --  Generate:
3240                --    initialize (Ref)
3241                --    attach_to_final_list (Ref, Flist, 2)
3242
3243                if Needs_Initialization_Call (Coext) then
3244                   Insert_Actions (N,
3245                     Make_Init_Call (
3246                       Ref         => Ref,
3247                       Typ         => Etype (Coext),
3248                       Flist_Ref   => Flist,
3249                       With_Attach => Make_Integer_Literal (Loc, Uint_2)));
3250
3251                --  Generate:
3252                --    attach_to_final_list (Ref, Flist, 2)
3253
3254                else
3255                   Insert_Action (N,
3256                     Make_Attach_Call (
3257                       Obj_Ref     => Ref,
3258                       Flist_Ref   => New_Copy_Tree (Flist),
3259                       With_Attach => Make_Integer_Literal (Loc, Uint_2)));
3260                end if;
3261             end if;
3262
3263             Next_Elmt (Coext_Elmt);
3264          end loop;
3265       end Complete_Coextension_Finalization;
3266
3267       -------------------------
3268       -- Rewrite_Coextension --
3269       -------------------------
3270
3271       procedure Rewrite_Coextension (N : Node_Id) is
3272          Temp : constant Node_Id :=
3273                   Make_Defining_Identifier (Loc,
3274                     New_Internal_Name ('C'));
3275
3276          --  Generate:
3277          --    Cnn : aliased Etyp;
3278
3279          Decl : constant Node_Id :=
3280                   Make_Object_Declaration (Loc,
3281                     Defining_Identifier => Temp,
3282                     Aliased_Present     => True,
3283                     Object_Definition   =>
3284                       New_Occurrence_Of (Etyp, Loc));
3285          Nod  : Node_Id;
3286
3287       begin
3288          if Nkind (Expression (N)) = N_Qualified_Expression then
3289             Set_Expression (Decl, Expression (Expression (N)));
3290          end if;
3291
3292          --  Find the proper insertion node for the declaration
3293
3294          Nod := Parent (N);
3295          while Present (Nod) loop
3296             exit when Nkind (Nod) in N_Statement_Other_Than_Procedure_Call
3297               or else Nkind (Nod) = N_Procedure_Call_Statement
3298               or else Nkind (Nod) in N_Declaration;
3299             Nod := Parent (Nod);
3300          end loop;
3301
3302          Insert_Before (Nod, Decl);
3303          Analyze (Decl);
3304
3305          Rewrite (N,
3306            Make_Attribute_Reference (Loc,
3307              Prefix         => New_Occurrence_Of (Temp, Loc),
3308              Attribute_Name => Name_Unrestricted_Access));
3309
3310          Analyze_And_Resolve (N, PtrT);
3311       end Rewrite_Coextension;
3312
3313       ------------------------------
3314       -- Size_In_Storage_Elements --
3315       ------------------------------
3316
3317       function Size_In_Storage_Elements (E : Entity_Id) return Node_Id is
3318       begin
3319          --  Logically this just returns E'Max_Size_In_Storage_Elements.
3320          --  However, the reason for the existence of this function is
3321          --  to construct a test for sizes too large, which means near the
3322          --  32-bit limit on a 32-bit machine, and precisely the trouble
3323          --  is that we get overflows when sizes are greater than 2**31.
3324
3325          --  So what we end up doing for array types is to use the expression:
3326
3327          --    number-of-elements * component_type'Max_Size_In_Storage_Elements
3328
3329          --  which avoids this problem. All this is a big bogus, but it does
3330          --  mean we catch common cases of trying to allocate arrays that
3331          --  are too large, and which in the absence of a check results in
3332          --  undetected chaos ???
3333
3334          declare
3335             Len : Node_Id;
3336             Res : Node_Id;
3337
3338          begin
3339             for J in 1 .. Number_Dimensions (E) loop
3340                Len :=
3341                  Make_Attribute_Reference (Loc,
3342                    Prefix         => New_Occurrence_Of (E, Loc),
3343                    Attribute_Name => Name_Length,
3344                    Expressions    => New_List (
3345                      Make_Integer_Literal (Loc, J)));
3346
3347                if J = 1 then
3348                   Res := Len;
3349
3350                else
3351                   Res :=
3352                     Make_Op_Multiply (Loc,
3353                       Left_Opnd  => Res,
3354                       Right_Opnd => Len);
3355                end if;
3356             end loop;
3357
3358             return
3359               Make_Op_Multiply (Loc,
3360                 Left_Opnd  => Len,
3361                 Right_Opnd =>
3362                   Make_Attribute_Reference (Loc,
3363                     Prefix => New_Occurrence_Of (Component_Type (E), Loc),
3364                     Attribute_Name => Name_Max_Size_In_Storage_Elements));
3365          end;
3366       end Size_In_Storage_Elements;
3367
3368    --  Start of processing for Expand_N_Allocator
3369
3370    begin
3371       --  RM E.2.3(22). We enforce that the expected type of an allocator
3372       --  shall not be a remote access-to-class-wide-limited-private type
3373
3374       --  Why is this being done at expansion time, seems clearly wrong ???
3375
3376       Validate_Remote_Access_To_Class_Wide_Type (N);
3377
3378       --  Set the Storage Pool
3379
3380       Set_Storage_Pool (N, Associated_Storage_Pool (Root_Type (PtrT)));
3381
3382       if Present (Storage_Pool (N)) then
3383          if Is_RTE (Storage_Pool (N), RE_SS_Pool) then
3384             if VM_Target = No_VM then
3385                Set_Procedure_To_Call (N, RTE (RE_SS_Allocate));
3386             end if;
3387
3388          elsif Is_Class_Wide_Type (Etype (Storage_Pool (N))) then
3389             Set_Procedure_To_Call (N, RTE (RE_Allocate_Any));
3390
3391          else
3392             Set_Procedure_To_Call (N,
3393               Find_Prim_Op (Etype (Storage_Pool (N)), Name_Allocate));
3394          end if;
3395       end if;
3396
3397       --  Under certain circumstances we can replace an allocator by an access
3398       --  to statically allocated storage. The conditions, as noted in AARM
3399       --  3.10 (10c) are as follows:
3400
3401       --    Size and initial value is known at compile time
3402       --    Access type is access-to-constant
3403
3404       --  The allocator is not part of a constraint on a record component,
3405       --  because in that case the inserted actions are delayed until the
3406       --  record declaration is fully analyzed, which is too late for the
3407       --  analysis of the rewritten allocator.
3408
3409       if Is_Access_Constant (PtrT)
3410         and then Nkind (Expression (N)) = N_Qualified_Expression
3411         and then Compile_Time_Known_Value (Expression (Expression (N)))
3412         and then Size_Known_At_Compile_Time (Etype (Expression
3413                                                     (Expression (N))))
3414         and then not Is_Record_Type (Current_Scope)
3415       then
3416          --  Here we can do the optimization. For the allocator
3417
3418          --    new x'(y)
3419
3420          --  We insert an object declaration
3421
3422          --    Tnn : aliased x := y;
3423
3424          --  and replace the allocator by Tnn'Unrestricted_Access. Tnn is
3425          --  marked as requiring static allocation.
3426
3427          Temp :=
3428            Make_Defining_Identifier (Loc, New_Internal_Name ('T'));
3429
3430          Desig := Subtype_Mark (Expression (N));
3431
3432          --  If context is constrained, use constrained subtype directly,
3433          --  so that the constant is not labelled as having a nominally
3434          --  unconstrained subtype.
3435
3436          if Entity (Desig) = Base_Type (Dtyp) then
3437             Desig := New_Occurrence_Of (Dtyp, Loc);
3438          end if;
3439
3440          Insert_Action (N,
3441            Make_Object_Declaration (Loc,
3442              Defining_Identifier => Temp,
3443              Aliased_Present     => True,
3444              Constant_Present    => Is_Access_Constant (PtrT),
3445              Object_Definition   => Desig,
3446              Expression          => Expression (Expression (N))));
3447
3448          Rewrite (N,
3449            Make_Attribute_Reference (Loc,
3450              Prefix => New_Occurrence_Of (Temp, Loc),
3451              Attribute_Name => Name_Unrestricted_Access));
3452
3453          Analyze_And_Resolve (N, PtrT);
3454
3455          --  We set the variable as statically allocated, since we don't want
3456          --  it going on the stack of the current procedure!
3457
3458          Set_Is_Statically_Allocated (Temp);
3459          return;
3460       end if;
3461
3462       --  Same if the allocator is an access discriminant for a local object:
3463       --  instead of an allocator we create a local value and constrain the
3464       --  the enclosing object with the corresponding access attribute.
3465
3466       if Is_Static_Coextension (N) then
3467          Rewrite_Coextension (N);
3468          return;
3469       end if;
3470
3471       --  The current allocator creates an object which may contain nested
3472       --  coextensions. Use the current allocator's finalization list to
3473       --  generate finalization call for all nested coextensions.
3474
3475       if Is_Coextension_Root (N) then
3476          Complete_Coextension_Finalization;
3477       end if;
3478
3479       --  Check for size too large, we do this because the back end misses
3480       --  proper checks here and can generate rubbish allocation calls when
3481       --  we are near the limit. We only do this for the 32-bit address case
3482       --  since that is from a practical point of view where we see a problem.
3483
3484       if System_Address_Size = 32
3485         and then not Storage_Checks_Suppressed (PtrT)
3486         and then not Storage_Checks_Suppressed (Dtyp)
3487         and then not Storage_Checks_Suppressed (Etyp)
3488       then
3489          --  The check we want to generate should look like
3490
3491          --  if Etyp'Max_Size_In_Storage_Elements > 3.5 gigabytes then
3492          --    raise Storage_Error;
3493          --  end if;
3494
3495          --  where 3.5 gigabytes is a constant large enough to accomodate any
3496          --  reasonable request for. But we can't do it this way because at
3497          --  least at the moment we don't compute this attribute right, and
3498          --  can silently give wrong results when the result gets large. Since
3499          --  this is all about large results, that's bad, so instead we only
3500          --  apply the check for constrained arrays, and manually compute the
3501          --  value of the attribute ???
3502
3503          if Is_Array_Type (Etyp) and then Is_Constrained (Etyp) then
3504             Insert_Action (N,
3505               Make_Raise_Storage_Error (Loc,
3506                 Condition =>
3507                   Make_Op_Gt (Loc,
3508                     Left_Opnd  => Size_In_Storage_Elements (Etyp),
3509                     Right_Opnd =>
3510                       Make_Integer_Literal (Loc,
3511                         Intval => Uint_7 * (Uint_2 ** 29))),
3512                 Reason    => SE_Object_Too_Large));
3513          end if;
3514       end if;
3515
3516       --  Handle case of qualified expression (other than optimization above)
3517       --  First apply constraint checks, because the bounds or discriminants
3518       --  in the aggregate might not match the subtype mark in the allocator.
3519
3520       if Nkind (Expression (N)) = N_Qualified_Expression then
3521          Apply_Constraint_Check
3522            (Expression (Expression (N)), Etype (Expression (N)));
3523
3524          Expand_Allocator_Expression (N);
3525          return;
3526       end if;
3527
3528       --  If the allocator is for a type which requires initialization, and
3529       --  there is no initial value (i.e. operand is a subtype indication
3530       --  rather than a qualified expression), then we must generate a call to
3531       --  the initialization routine using an expressions action node:
3532
3533       --     [Pnnn : constant ptr_T := new (T); Init (Pnnn.all,...); Pnnn]
3534
3535       --  Here ptr_T is the pointer type for the allocator, and T is the
3536       --  subtype of the allocator. A special case arises if the designated
3537       --  type of the access type is a task or contains tasks. In this case
3538       --  the call to Init (Temp.all ...) is replaced by code that ensures
3539       --  that tasks get activated (see Exp_Ch9.Build_Task_Allocate_Block
3540       --  for details). In addition, if the type T is a task T, then the
3541       --  first argument to Init must be converted to the task record type.
3542
3543       declare
3544          T            : constant Entity_Id := Entity (Expression (N));
3545          Init         : Entity_Id;
3546          Arg1         : Node_Id;
3547          Args         : List_Id;
3548          Decls        : List_Id;
3549          Decl         : Node_Id;
3550          Discr        : Elmt_Id;
3551          Flist        : Node_Id;
3552          Temp_Decl    : Node_Id;
3553          Temp_Type    : Entity_Id;
3554          Attach_Level : Uint;
3555
3556       begin
3557          if No_Initialization (N) then
3558             null;
3559
3560          --  Case of no initialization procedure present
3561
3562          elsif not Has_Non_Null_Base_Init_Proc (T) then
3563
3564             --  Case of simple initialization required
3565
3566             if Needs_Simple_Initialization (T) then
3567                Check_Restriction (No_Default_Initialization, N);
3568                Rewrite (Expression (N),
3569                  Make_Qualified_Expression (Loc,
3570                    Subtype_Mark => New_Occurrence_Of (T, Loc),
3571                    Expression   => Get_Simple_Init_Val (T, N)));
3572
3573                Analyze_And_Resolve (Expression (Expression (N)), T);
3574                Analyze_And_Resolve (Expression (N), T);
3575                Set_Paren_Count     (Expression (Expression (N)), 1);
3576                Expand_N_Allocator  (N);
3577
3578             --  No initialization required
3579
3580             else
3581                null;
3582             end if;
3583
3584          --  Case of initialization procedure present, must be called
3585
3586          else
3587             Check_Restriction (No_Default_Initialization, N);
3588
3589             if not Restriction_Active (No_Default_Initialization) then
3590                Init := Base_Init_Proc (T);
3591                Nod  := N;
3592                Temp := Make_Defining_Identifier (Loc, New_Internal_Name ('P'));
3593
3594                --  Construct argument list for the initialization routine call
3595
3596                Arg1 :=
3597                  Make_Explicit_Dereference (Loc,
3598                    Prefix => New_Reference_To (Temp, Loc));
3599                Set_Assignment_OK (Arg1);
3600                Temp_Type := PtrT;
3601
3602                --  The initialization procedure expects a specific type. if the
3603                --  context is access to class wide, indicate that the object
3604                --  being allocated has the right specific type.
3605
3606                if Is_Class_Wide_Type (Dtyp) then
3607                   Arg1 := Unchecked_Convert_To (T, Arg1);
3608                end if;
3609
3610                --  If designated type is a concurrent type or if it is private
3611                --  type whose definition is a concurrent type, the first
3612                --  argument in the Init routine has to be unchecked conversion
3613                --  to the corresponding record type. If the designated type is
3614                --  a derived type, we also convert the argument to its root
3615                --  type.
3616
3617                if Is_Concurrent_Type (T) then
3618                   Arg1 :=
3619                     Unchecked_Convert_To (Corresponding_Record_Type (T), Arg1);
3620
3621                elsif Is_Private_Type (T)
3622                  and then Present (Full_View (T))
3623                  and then Is_Concurrent_Type (Full_View (T))
3624                then
3625                   Arg1 :=
3626                     Unchecked_Convert_To
3627                       (Corresponding_Record_Type (Full_View (T)), Arg1);
3628
3629                elsif Etype (First_Formal (Init)) /= Base_Type (T) then
3630                   declare
3631                      Ftyp : constant Entity_Id := Etype (First_Formal (Init));
3632                   begin
3633                      Arg1 := OK_Convert_To (Etype (Ftyp), Arg1);
3634                      Set_Etype (Arg1, Ftyp);
3635                   end;
3636                end if;
3637
3638                Args := New_List (Arg1);
3639
3640                --  For the task case, pass the Master_Id of the access type as
3641                --  the value of the _Master parameter, and _Chain as the value
3642                --  of the _Chain parameter (_Chain will be defined as part of
3643                --  the generated code for the allocator).
3644
3645                --  In Ada 2005, the context may be a function that returns an
3646                --  anonymous access type. In that case the Master_Id has been
3647                --  created when expanding the function declaration.
3648
3649                if Has_Task (T) then
3650                   if No (Master_Id (Base_Type (PtrT))) then
3651
3652                      --  If we have a non-library level task with restriction
3653                      --  No_Task_Hierarchy set, then no point in expanding.
3654
3655                      if not Is_Library_Level_Entity (T)
3656                        and then Restriction_Active (No_Task_Hierarchy)
3657                      then
3658                         return;
3659                      end if;
3660
3661                      --  The designated type was an incomplete type, and the
3662                      --  access type did not get expanded. Salvage it now.
3663
3664                      pragma Assert (Present (Parent (Base_Type (PtrT))));
3665                      Expand_N_Full_Type_Declaration
3666                        (Parent (Base_Type (PtrT)));
3667                   end if;
3668
3669                   --  If the context of the allocator is a declaration or an
3670                   --  assignment, we can generate a meaningful image for it,
3671                   --  even though subsequent assignments might remove the
3672                   --  connection between task and entity. We build this image
3673                   --  when the left-hand side is a simple variable, a simple
3674                   --  indexed assignment or a simple selected component.
3675
3676                   if Nkind (Parent (N)) = N_Assignment_Statement then
3677                      declare
3678                         Nam : constant Node_Id := Name (Parent (N));
3679
3680                      begin
3681                         if Is_Entity_Name (Nam) then
3682                            Decls :=
3683                              Build_Task_Image_Decls
3684                                (Loc,
3685                                 New_Occurrence_Of
3686                                   (Entity (Nam), Sloc (Nam)), T);
3687
3688                         elsif Nkind_In
3689                           (Nam, N_Indexed_Component, N_Selected_Component)
3690                           and then Is_Entity_Name (Prefix (Nam))
3691                         then
3692                            Decls :=
3693                              Build_Task_Image_Decls
3694                                (Loc, Nam, Etype (Prefix (Nam)));
3695                         else
3696                            Decls := Build_Task_Image_Decls (Loc, T, T);
3697                         end if;
3698                      end;
3699
3700                   elsif Nkind (Parent (N)) = N_Object_Declaration then
3701                      Decls :=
3702                        Build_Task_Image_Decls
3703                          (Loc, Defining_Identifier (Parent (N)), T);
3704
3705                   else
3706                      Decls := Build_Task_Image_Decls (Loc, T, T);
3707                   end if;
3708
3709                   Append_To (Args,
3710                     New_Reference_To
3711                       (Master_Id (Base_Type (Root_Type (PtrT))), Loc));
3712                   Append_To (Args, Make_Identifier (Loc, Name_uChain));
3713
3714                   Decl := Last (Decls);
3715                   Append_To (Args,
3716                     New_Occurrence_Of (Defining_Identifier (Decl), Loc));
3717
3718                   --  Has_Task is false, Decls not used
3719
3720                else
3721                   Decls := No_List;
3722                end if;
3723
3724                --  Add discriminants if discriminated type
3725
3726                declare
3727                   Dis : Boolean := False;
3728                   Typ : Entity_Id;
3729
3730                begin
3731                   if Has_Discriminants (T) then
3732                      Dis := True;
3733                      Typ := T;
3734
3735                   elsif Is_Private_Type (T)
3736                     and then Present (Full_View (T))
3737                     and then Has_Discriminants (Full_View (T))
3738                   then
3739                      Dis := True;
3740                      Typ := Full_View (T);
3741                   end if;
3742
3743                   if Dis then
3744
3745                      --  If the allocated object will be constrained by the
3746                      --  default values for discriminants, then build a subtype
3747                      --  with those defaults, and change the allocated subtype
3748                      --  to that. Note that this happens in fewer cases in Ada
3749                      --  2005 (AI-363).
3750
3751                      if not Is_Constrained (Typ)
3752                        and then Present (Discriminant_Default_Value
3753                                          (First_Discriminant (Typ)))
3754                        and then (Ada_Version < Ada_05
3755                                   or else
3756                                     not Has_Constrained_Partial_View (Typ))
3757                      then
3758                         Typ := Build_Default_Subtype (Typ, N);
3759                         Set_Expression (N, New_Reference_To (Typ, Loc));
3760                      end if;
3761
3762                      Discr := First_Elmt (Discriminant_Constraint (Typ));
3763                      while Present (Discr) loop
3764                         Nod := Node (Discr);
3765                         Append (New_Copy_Tree (Node (Discr)), Args);
3766
3767                         --  AI-416: when the discriminant constraint is an
3768                         --  anonymous access type make sure an accessibility
3769                         --  check is inserted if necessary (3.10.2(22.q/2))
3770
3771                         if Ada_Version >= Ada_05
3772                           and then
3773                             Ekind (Etype (Nod)) = E_Anonymous_Access_Type
3774                         then
3775                            Apply_Accessibility_Check
3776                              (Nod, Typ, Insert_Node => Nod);
3777                         end if;
3778
3779                         Next_Elmt (Discr);
3780                      end loop;
3781                   end if;
3782                end;
3783
3784                --  We set the allocator as analyzed so that when we analyze the
3785                --  expression actions node, we do not get an unwanted recursive
3786                --  expansion of the allocator expression.
3787
3788                Set_Analyzed (N, True);
3789                Nod := Relocate_Node (N);
3790
3791                --  Here is the transformation:
3792                --    input:  new T
3793                --    output: Temp : constant ptr_T := new T;
3794                --            Init (Temp.all, ...);
3795                --    <CTRL>  Attach_To_Final_List (Finalizable (Temp.all));
3796                --    <CTRL>  Initialize (Finalizable (Temp.all));
3797
3798                --  Here ptr_T is the pointer type for the allocator, and is the
3799                --  subtype of the allocator.
3800
3801                Temp_Decl :=
3802                  Make_Object_Declaration (Loc,
3803                    Defining_Identifier => Temp,
3804                    Constant_Present    => True,
3805                    Object_Definition   => New_Reference_To (Temp_Type, Loc),
3806                    Expression          => Nod);
3807
3808                Set_Assignment_OK (Temp_Decl);
3809                Insert_Action (N, Temp_Decl, Suppress => All_Checks);
3810
3811                --  If the designated type is a task type or contains tasks,
3812                --  create block to activate created tasks, and insert
3813                --  declaration for Task_Image variable ahead of call.
3814
3815                if Has_Task (T) then
3816                   declare
3817                      L   : constant List_Id := New_List;
3818                      Blk : Node_Id;
3819                   begin
3820                      Build_Task_Allocate_Block (L, Nod, Args);
3821                      Blk := Last (L);
3822                      Insert_List_Before (First (Declarations (Blk)), Decls);
3823                      Insert_Actions (N, L);
3824                   end;
3825
3826                else
3827                   Insert_Action (N,
3828                     Make_Procedure_Call_Statement (Loc,
3829                       Name                   => New_Reference_To (Init, Loc),
3830                       Parameter_Associations => Args));
3831                end if;
3832
3833                if Needs_Finalization (T) then
3834
3835                   --  Postpone the generation of a finalization call for the
3836                   --  current allocator if it acts as a coextension.
3837
3838                   if Is_Dynamic_Coextension (N) then
3839                      if No (Coextensions (N)) then
3840                         Set_Coextensions (N, New_Elmt_List);
3841                      end if;
3842
3843                      Append_Elmt (New_Copy_Tree (Arg1), Coextensions (N));
3844
3845                   else
3846                      Flist :=
3847                        Get_Allocator_Final_List (N, Base_Type (T), PtrT);
3848
3849                      --  Anonymous access types created for access parameters
3850                      --  are attached to an explicitly constructed controller,
3851                      --  which ensures that they can be finalized properly,
3852                      --  even if their deallocation might not happen. The list
3853                      --  associated with the controller is doubly-linked. For
3854                      --  other anonymous access types, the object may end up
3855                      --  on the global final list which is singly-linked.
3856                      --  Work needed for access discriminants in Ada 2005 ???
3857
3858                      if Ekind (PtrT) = E_Anonymous_Access_Type then
3859                         Attach_Level := Uint_1;
3860                      else
3861                         Attach_Level := Uint_2;
3862                      end if;
3863
3864                      Insert_Actions (N,
3865                        Make_Init_Call (
3866                          Ref          => New_Copy_Tree (Arg1),
3867                          Typ          => T,
3868                          Flist_Ref    => Flist,
3869                          With_Attach  => Make_Integer_Literal (Loc,
3870                                            Intval => Attach_Level)));
3871                   end if;
3872                end if;
3873
3874                Rewrite (N, New_Reference_To (Temp, Loc));
3875                Analyze_And_Resolve (N, PtrT);
3876             end if;
3877          end if;
3878       end;
3879
3880       --  Ada 2005 (AI-251): If the allocator is for a class-wide interface
3881       --  object that has been rewritten as a reference, we displace "this"
3882       --  to reference properly its secondary dispatch table.
3883
3884       if Nkind (N) = N_Identifier
3885         and then Is_Interface (Dtyp)
3886       then
3887          Displace_Allocator_Pointer (N);
3888       end if;
3889
3890    exception
3891       when RE_Not_Available =>
3892          return;
3893    end Expand_N_Allocator;
3894
3895    -----------------------
3896    -- Expand_N_And_Then --
3897    -----------------------
3898
3899    --  Expand into conditional expression if Actions present, and also deal
3900    --  with optimizing case of arguments being True or False.
3901
3902    procedure Expand_N_And_Then (N : Node_Id) is
3903       Loc     : constant Source_Ptr := Sloc (N);
3904       Typ     : constant Entity_Id  := Etype (N);
3905       Left    : constant Node_Id    := Left_Opnd (N);
3906       Right   : constant Node_Id    := Right_Opnd (N);
3907       Actlist : List_Id;
3908
3909    begin
3910       --  Deal with non-standard booleans
3911
3912       if Is_Boolean_Type (Typ) then
3913          Adjust_Condition (Left);
3914          Adjust_Condition (Right);
3915          Set_Etype (N, Standard_Boolean);
3916       end if;
3917
3918       --  Check for cases where left argument is known to be True or False
3919
3920       if Compile_Time_Known_Value (Left) then
3921
3922          --  If left argument is True, change (True and then Right) to Right.
3923          --  Any actions associated with Right will be executed unconditionally
3924          --  and can thus be inserted into the tree unconditionally.
3925
3926          if Expr_Value_E (Left) = Standard_True then
3927             if Present (Actions (N)) then
3928                Insert_Actions (N, Actions (N));
3929             end if;
3930
3931             Rewrite (N, Right);
3932
3933          --  If left argument is False, change (False and then Right) to False.
3934          --  In this case we can forget the actions associated with Right,
3935          --  since they will never be executed.
3936
3937          else pragma Assert (Expr_Value_E (Left) = Standard_False);
3938             Kill_Dead_Code (Right);
3939             Kill_Dead_Code (Actions (N));
3940             Rewrite (N, New_Occurrence_Of (Standard_False, Loc));
3941          end if;
3942
3943          Adjust_Result_Type (N, Typ);
3944          return;
3945       end if;
3946
3947       --  If Actions are present, we expand
3948
3949       --     left and then right
3950
3951       --  into
3952
3953       --     if left then right else false end
3954
3955       --  with the actions becoming the Then_Actions of the conditional
3956       --  expression. This conditional expression is then further expanded
3957       --  (and will eventually disappear)
3958
3959       if Present (Actions (N)) then
3960          Actlist := Actions (N);
3961          Rewrite (N,
3962             Make_Conditional_Expression (Loc,
3963               Expressions => New_List (
3964                 Left,
3965                 Right,
3966                 New_Occurrence_Of (Standard_False, Loc))));
3967
3968          Set_Then_Actions (N, Actlist);
3969          Analyze_And_Resolve (N, Standard_Boolean);
3970          Adjust_Result_Type (N, Typ);
3971          return;
3972       end if;
3973
3974       --  No actions present, check for cases of right argument True/False
3975
3976       if Compile_Time_Known_Value (Right) then
3977
3978          --  Change (Left and then True) to Left. Note that we know there are
3979          --  no actions associated with the True operand, since we just checked
3980          --  for this case above.
3981
3982          if Expr_Value_E (Right) = Standard_True then
3983             Rewrite (N, Left);
3984
3985          --  Change (Left and then False) to False, making sure to preserve any
3986          --  side effects associated with the Left operand.
3987
3988          else pragma Assert (Expr_Value_E (Right) = Standard_False);
3989             Remove_Side_Effects (Left);
3990             Rewrite (N, New_Occurrence_Of (Standard_False, Loc));
3991          end if;
3992       end if;
3993
3994       Adjust_Result_Type (N, Typ);
3995    end Expand_N_And_Then;
3996
3997    -------------------------------------
3998    -- Expand_N_Conditional_Expression --
3999    -------------------------------------
4000
4001    --  Expand into expression actions if then/else actions present
4002
4003    procedure Expand_N_Conditional_Expression (N : Node_Id) is
4004       Loc    : constant Source_Ptr := Sloc (N);
4005       Cond   : constant Node_Id    := First (Expressions (N));
4006       Thenx  : constant Node_Id    := Next (Cond);
4007       Elsex  : constant Node_Id    := Next (Thenx);
4008       Typ    : constant Entity_Id  := Etype (N);
4009       Cnn    : Entity_Id;
4010       New_If : Node_Id;
4011
4012    begin
4013       --  If either then or else actions are present, then given:
4014
4015       --     if cond then then-expr else else-expr end
4016
4017       --  we insert the following sequence of actions (using Insert_Actions):
4018
4019       --      Cnn : typ;
4020       --      if cond then
4021       --         <<then actions>>
4022       --         Cnn := then-expr;
4023       --      else
4024       --         <<else actions>>
4025       --         Cnn := else-expr
4026       --      end if;
4027
4028       --  and replace the conditional expression by a reference to Cnn
4029
4030       --  ??? Note: this expansion is wrong for limited types, since it does
4031       --  a copy of a limited value. The proper fix would be to do the
4032       --  following expansion:
4033
4034       --      Cnn : access typ;
4035       --      if cond then
4036       --         <<then actions>>
4037       --         Cnn := then-expr'Unrestricted_Access;
4038       --      else
4039       --         <<else actions>>
4040       --         Cnn := else-expr'Unrestricted_Access;
4041       --      end if;
4042
4043       --  and replace the conditional expresion by a reference to Cnn.all ???
4044
4045       if Present (Then_Actions (N)) or else Present (Else_Actions (N)) then
4046          Cnn := Make_Defining_Identifier (Loc, New_Internal_Name ('C'));
4047
4048          New_If :=
4049            Make_Implicit_If_Statement (N,
4050              Condition => Relocate_Node (Cond),
4051
4052              Then_Statements => New_List (
4053                Make_Assignment_Statement (Sloc (Thenx),
4054                  Name => New_Occurrence_Of (Cnn, Sloc (Thenx)),
4055                  Expression => Relocate_Node (Thenx))),
4056
4057              Else_Statements => New_List (
4058                Make_Assignment_Statement (Sloc (Elsex),
4059                  Name => New_Occurrence_Of (Cnn, Sloc (Elsex)),
4060                  Expression => Relocate_Node (Elsex))));
4061
4062          --  Move the SLOC of the parent If statement to the newly created one
4063          --  and change it to the SLOC of the expression which, after
4064          --  expansion, will correspond to what is being evaluated.
4065
4066          if Present (Parent (N))
4067            and then Nkind (Parent (N)) = N_If_Statement
4068          then
4069             Set_Sloc (New_If, Sloc (Parent (N)));
4070             Set_Sloc (Parent (N), Loc);
4071          end if;
4072
4073          Set_Assignment_OK (Name (First (Then_Statements (New_If))));
4074          Set_Assignment_OK (Name (First (Else_Statements (New_If))));
4075
4076          if Present (Then_Actions (N)) then
4077             Insert_List_Before
4078               (First (Then_Statements (New_If)), Then_Actions (N));
4079          end if;
4080
4081          if Present (Else_Actions (N)) then
4082             Insert_List_Before
4083               (First (Else_Statements (New_If)), Else_Actions (N));
4084          end if;
4085
4086          Rewrite (N, New_Occurrence_Of (Cnn, Loc));
4087
4088          Insert_Action (N,
4089            Make_Object_Declaration (Loc,
4090              Defining_Identifier => Cnn,
4091              Object_Definition   => New_Occurrence_Of (Typ, Loc)));
4092
4093          Insert_Action (N, New_If);
4094          Analyze_And_Resolve (N, Typ);
4095
4096          --  Link temporary to original expression, for Codepeer
4097
4098          Set_Related_Expression (Cnn, Original_Node (N));
4099       end if;
4100    end Expand_N_Conditional_Expression;
4101
4102    -----------------------------------
4103    -- Expand_N_Explicit_Dereference --
4104    -----------------------------------
4105
4106    procedure Expand_N_Explicit_Dereference (N : Node_Id) is
4107    begin
4108       --  Insert explicit dereference call for the checked storage pool case
4109
4110       Insert_Dereference_Action (Prefix (N));
4111    end Expand_N_Explicit_Dereference;
4112
4113    -----------------
4114    -- Expand_N_In --
4115    -----------------
4116
4117    procedure Expand_N_In (N : Node_Id) is
4118       Loc    : constant Source_Ptr := Sloc (N);
4119       Rtyp   : constant Entity_Id  := Etype (N);
4120       Lop    : constant Node_Id    := Left_Opnd (N);
4121       Rop    : constant Node_Id    := Right_Opnd (N);
4122       Static : constant Boolean    := Is_OK_Static_Expression (N);
4123
4124       procedure Expand_Set_Membership;
4125       --  For each disjunct we create a simple equality or membership test.
4126       --  The whole membership is rewritten as a short-circuit disjunction.
4127
4128       ---------------------------
4129       -- Expand_Set_Membership --
4130       ---------------------------
4131
4132       procedure Expand_Set_Membership is
4133          Alt  : Node_Id;
4134          Res  : Node_Id;
4135
4136          function Make_Cond (Alt : Node_Id) return Node_Id;
4137          --  If the alternative is a subtype mark, create a simple membership
4138          --  test. Otherwise create an equality test for it.
4139
4140          ---------------
4141          -- Make_Cond --
4142          ---------------
4143
4144          function Make_Cond (Alt : Node_Id) return Node_Id is
4145             Cond : Node_Id;
4146             L    : constant Node_Id := New_Copy (Lop);
4147             R    : constant Node_Id := Relocate_Node (Alt);
4148
4149          begin
4150             if Is_Entity_Name (Alt)
4151               and then Is_Type (Entity (Alt))
4152             then
4153                Cond :=
4154                  Make_In (Sloc (Alt),
4155                    Left_Opnd  => L,
4156                    Right_Opnd => R);
4157             else
4158                Cond := Make_Op_Eq (Sloc (Alt),
4159                  Left_Opnd  => L,
4160                  Right_Opnd => R);
4161             end if;
4162
4163             return Cond;
4164          end Make_Cond;
4165
4166       --  Start of proessing for Expand_N_In
4167
4168       begin
4169          Alt := Last (Alternatives (N));
4170          Res := Make_Cond (Alt);
4171
4172          Prev (Alt);
4173          while Present (Alt) loop
4174             Res :=
4175               Make_Or_Else (Sloc (Alt),
4176                 Left_Opnd  => Make_Cond (Alt),
4177                 Right_Opnd => Res);
4178             Prev (Alt);
4179          end loop;
4180
4181          Rewrite (N, Res);
4182          Analyze_And_Resolve (N, Standard_Boolean);
4183       end Expand_Set_Membership;
4184
4185       procedure Substitute_Valid_Check;
4186       --  Replaces node N by Lop'Valid. This is done when we have an explicit
4187       --  test for the left operand being in range of its subtype.
4188
4189       ----------------------------
4190       -- Substitute_Valid_Check --
4191       ----------------------------
4192
4193       procedure Substitute_Valid_Check is
4194       begin
4195          Rewrite (N,
4196            Make_Attribute_Reference (Loc,
4197              Prefix         => Relocate_Node (Lop),
4198              Attribute_Name => Name_Valid));
4199
4200          Analyze_And_Resolve (N, Rtyp);
4201
4202          Error_Msg_N ("?explicit membership test may be optimized away", N);
4203          Error_Msg_N ("\?use ''Valid attribute instead", N);
4204          return;
4205       end Substitute_Valid_Check;
4206
4207    --  Start of processing for Expand_N_In
4208
4209    begin
4210
4211       if Present (Alternatives (N)) then
4212          Remove_Side_Effects (Lop);
4213          Expand_Set_Membership;
4214          return;
4215       end if;
4216
4217       --  Check case of explicit test for an expression in range of its
4218       --  subtype. This is suspicious usage and we replace it with a 'Valid
4219       --  test and give a warning.
4220
4221       if Is_Scalar_Type (Etype (Lop))
4222         and then Nkind (Rop) in N_Has_Entity
4223         and then Etype (Lop) = Entity (Rop)
4224         and then Comes_From_Source (N)
4225         and then VM_Target = No_VM
4226       then
4227          Substitute_Valid_Check;
4228          return;
4229       end if;
4230
4231       --  Do validity check on operands
4232
4233       if Validity_Checks_On and Validity_Check_Operands then
4234          Ensure_Valid (Left_Opnd (N));
4235          Validity_Check_Range (Right_Opnd (N));
4236       end if;
4237
4238       --  Case of explicit range
4239
4240       if Nkind (Rop) = N_Range then
4241          declare
4242             Lo : constant Node_Id := Low_Bound (Rop);
4243             Hi : constant Node_Id := High_Bound (Rop);
4244
4245             Ltyp : constant Entity_Id := Etype (Lop);
4246
4247             Lo_Orig : constant Node_Id := Original_Node (Lo);
4248             Hi_Orig : constant Node_Id := Original_Node (Hi);
4249
4250             Lcheck : Compare_Result;
4251             Ucheck : Compare_Result;
4252
4253             Warn1 : constant Boolean :=
4254                       Constant_Condition_Warnings
4255                         and then Comes_From_Source (N)
4256                         and then not In_Instance;
4257             --  This must be true for any of the optimization warnings, we
4258             --  clearly want to give them only for source with the flag on.
4259             --  We also skip these warnings in an instance since it may be
4260             --  the case that different instantiations have different ranges.
4261
4262             Warn2 : constant Boolean :=
4263                       Warn1
4264                         and then Nkind (Original_Node (Rop)) = N_Range
4265                         and then Is_Integer_Type (Etype (Lo));
4266             --  For the case where only one bound warning is elided, we also
4267             --  insist on an explicit range and an integer type. The reason is
4268             --  that the use of enumeration ranges including an end point is
4269             --  common, as is the use of a subtype name, one of whose bounds
4270             --  is the same as the type of the expression.
4271
4272          begin
4273             --  If test is explicit x'first .. x'last, replace by valid check
4274
4275             if Is_Scalar_Type (Ltyp)
4276               and then Nkind (Lo_Orig) = N_Attribute_Reference
4277               and then Attribute_Name (Lo_Orig) = Name_First
4278               and then Nkind (Prefix (Lo_Orig)) in N_Has_Entity
4279               and then Entity (Prefix (Lo_Orig)) = Ltyp
4280               and then Nkind (Hi_Orig) = N_Attribute_Reference
4281               and then Attribute_Name (Hi_Orig) = Name_Last
4282               and then Nkind (Prefix (Hi_Orig)) in N_Has_Entity
4283               and then Entity (Prefix (Hi_Orig)) = Ltyp
4284               and then Comes_From_Source (N)
4285               and then VM_Target = No_VM
4286             then
4287                Substitute_Valid_Check;
4288                return;
4289             end if;
4290
4291             --  If bounds of type are known at compile time, and the end points
4292             --  are known at compile time and identical, this is another case
4293             --  for substituting a valid test. We only do this for discrete
4294             --  types, since it won't arise in practice for float types.
4295
4296             if Comes_From_Source (N)
4297               and then Is_Discrete_Type (Ltyp)
4298               and then Compile_Time_Known_Value (Type_High_Bound (Ltyp))
4299               and then Compile_Time_Known_Value (Type_Low_Bound  (Ltyp))
4300               and then Compile_Time_Known_Value (Lo)
4301               and then Compile_Time_Known_Value (Hi)
4302               and then Expr_Value (Type_High_Bound (Ltyp)) = Expr_Value (Hi)
4303               and then Expr_Value (Type_Low_Bound  (Ltyp)) = Expr_Value (Lo)
4304
4305                --  Kill warnings in instances, since they may be cases where we
4306                --  have a test in the generic that makes sense with some types
4307                --  and not with other types.
4308
4309               and then not In_Instance
4310             then
4311                Substitute_Valid_Check;
4312                return;
4313             end if;
4314
4315             --  If we have an explicit range, do a bit of optimization based
4316             --  on range analysis (we may be able to kill one or both checks).
4317
4318             Lcheck := Compile_Time_Compare (Lop, Lo, Assume_Valid => False);
4319             Ucheck := Compile_Time_Compare (Lop, Hi, Assume_Valid => False);
4320
4321             --  If either check is known to fail, replace result by False since
4322             --  the other check does not matter. Preserve the static flag for
4323             --  legality checks, because we are constant-folding beyond RM 4.9.
4324
4325             if Lcheck = LT or else Ucheck = GT then
4326                if Warn1 then
4327                   Error_Msg_N ("?range test optimized away", N);
4328                   Error_Msg_N ("\?value is known to be out of range", N);
4329                end if;
4330
4331                Rewrite (N,
4332                  New_Reference_To (Standard_False, Loc));
4333                Analyze_And_Resolve (N, Rtyp);
4334                Set_Is_Static_Expression (N, Static);
4335
4336                return;
4337
4338             --  If both checks are known to succeed, replace result by True,
4339             --  since we know we are in range.
4340
4341             elsif Lcheck in Compare_GE and then Ucheck in Compare_LE then
4342                if Warn1 then
4343                   Error_Msg_N ("?range test optimized away", N);
4344                   Error_Msg_N ("\?value is known to be in range", N);
4345                end if;
4346
4347                Rewrite (N,
4348                  New_Reference_To (Standard_True, Loc));
4349                Analyze_And_Resolve (N, Rtyp);
4350                Set_Is_Static_Expression (N, Static);
4351
4352                return;
4353
4354             --  If lower bound check succeeds and upper bound check is not
4355             --  known to succeed or fail, then replace the range check with
4356             --  a comparison against the upper bound.
4357
4358             elsif Lcheck in Compare_GE then
4359                if Warn2 and then not In_Instance then
4360                   Error_Msg_N ("?lower bound test optimized away", Lo);
4361                   Error_Msg_N ("\?value is known to be in range", Lo);
4362                end if;
4363
4364                Rewrite (N,
4365                  Make_Op_Le (Loc,
4366                    Left_Opnd  => Lop,
4367                    Right_Opnd => High_Bound (Rop)));
4368                Analyze_And_Resolve (N, Rtyp);
4369
4370                return;
4371
4372             --  If upper bound check succeeds and lower bound check is not
4373             --  known to succeed or fail, then replace the range check with
4374             --  a comparison against the lower bound.
4375
4376             elsif Ucheck in Compare_LE then
4377                if Warn2 and then not In_Instance then
4378                   Error_Msg_N ("?upper bound test optimized away", Hi);
4379                   Error_Msg_N ("\?value is known to be in range", Hi);
4380                end if;
4381
4382                Rewrite (N,
4383                  Make_Op_Ge (Loc,
4384                    Left_Opnd  => Lop,
4385                    Right_Opnd => Low_Bound (Rop)));
4386                Analyze_And_Resolve (N, Rtyp);
4387
4388                return;
4389             end if;
4390
4391             --  We couldn't optimize away the range check, but there is one
4392             --  more issue. If we are checking constant conditionals, then we
4393             --  see if we can determine the outcome assuming everything is
4394             --  valid, and if so give an appropriate warning.
4395
4396             if Warn1 and then not Assume_No_Invalid_Values then
4397                Lcheck := Compile_Time_Compare (Lop, Lo, Assume_Valid => True);
4398                Ucheck := Compile_Time_Compare (Lop, Hi, Assume_Valid => True);
4399
4400                --  Result is out of range for valid value
4401
4402                if Lcheck = LT or else Ucheck = GT then
4403                   Error_Msg_N
4404                     ("?value can only be in range if it is invalid", N);
4405
4406                --  Result is in range for valid value
4407
4408                elsif Lcheck in Compare_GE and then Ucheck in Compare_LE then
4409                   Error_Msg_N
4410                     ("?value can only be out of range if it is invalid", N);
4411
4412                --  Lower bound check succeeds if value is valid
4413
4414                elsif Warn2 and then Lcheck in Compare_GE then
4415                   Error_Msg_N
4416                     ("?lower bound check only fails if it is invalid", Lo);
4417
4418                --  Upper bound  check succeeds if value is valid
4419
4420                elsif Warn2 and then Ucheck in Compare_LE then
4421                   Error_Msg_N
4422                     ("?upper bound check only fails for invalid values", Hi);
4423                end if;
4424             end if;
4425          end;
4426
4427          --  For all other cases of an explicit range, nothing to be done
4428
4429          return;
4430
4431       --  Here right operand is a subtype mark
4432
4433       else
4434          declare
4435             Typ    : Entity_Id        := Etype (Rop);
4436             Is_Acc : constant Boolean := Is_Access_Type (Typ);
4437             Obj    : Node_Id          := Lop;
4438             Cond   : Node_Id          := Empty;
4439
4440          begin
4441             Remove_Side_Effects (Obj);
4442
4443             --  For tagged type, do tagged membership operation
4444
4445             if Is_Tagged_Type (Typ) then
4446
4447                --  No expansion will be performed when VM_Target, as the VM
4448                --  back-ends will handle the membership tests directly (tags
4449                --  are not explicitly represented in Java objects, so the
4450                --  normal tagged membership expansion is not what we want).
4451
4452                if Tagged_Type_Expansion then
4453                   Rewrite (N, Tagged_Membership (N));
4454                   Analyze_And_Resolve (N, Rtyp);
4455                end if;
4456
4457                return;
4458
4459             --  If type is scalar type, rewrite as x in t'first .. t'last.
4460             --  This reason we do this is that the bounds may have the wrong
4461             --  type if they come from the original type definition. Also this
4462             --  way we get all the processing above for an explicit range.
4463
4464             elsif Is_Scalar_Type (Typ) then
4465                Rewrite (Rop,
4466                  Make_Range (Loc,
4467                    Low_Bound =>
4468                      Make_Attribute_Reference (Loc,
4469                        Attribute_Name => Name_First,
4470                        Prefix => New_Reference_To (Typ, Loc)),
4471
4472                    High_Bound =>
4473                      Make_Attribute_Reference (Loc,
4474                        Attribute_Name => Name_Last,
4475                        Prefix => New_Reference_To (Typ, Loc))));
4476                Analyze_And_Resolve (N, Rtyp);
4477                return;
4478
4479             --  Ada 2005 (AI-216): Program_Error is raised when evaluating
4480             --  a membership test if the subtype mark denotes a constrained
4481             --  Unchecked_Union subtype and the expression lacks inferable
4482             --  discriminants.
4483
4484             elsif Is_Unchecked_Union (Base_Type (Typ))
4485               and then Is_Constrained (Typ)
4486               and then not Has_Inferable_Discriminants (Lop)
4487             then
4488                Insert_Action (N,
4489                  Make_Raise_Program_Error (Loc,
4490                    Reason => PE_Unchecked_Union_Restriction));
4491
4492                --  Prevent Gigi from generating incorrect code by rewriting
4493                --  the test as a standard False.
4494
4495                Rewrite (N,
4496                  New_Occurrence_Of (Standard_False, Loc));
4497
4498                return;
4499             end if;
4500
4501             --  Here we have a non-scalar type
4502
4503             if Is_Acc then
4504                Typ := Designated_Type (Typ);
4505             end if;
4506
4507             if not Is_Constrained (Typ) then
4508                Rewrite (N,
4509                  New_Reference_To (Standard_True, Loc));
4510                Analyze_And_Resolve (N, Rtyp);
4511
4512             --  For the constrained array case, we have to check the subscripts
4513             --  for an exact match if the lengths are non-zero (the lengths
4514             --  must match in any case).
4515
4516             elsif Is_Array_Type (Typ) then
4517
4518                Check_Subscripts : declare
4519                   function Construct_Attribute_Reference
4520                     (E   : Node_Id;
4521                      Nam : Name_Id;
4522                      Dim : Nat) return Node_Id;
4523                   --  Build attribute reference E'Nam(Dim)
4524
4525                   -----------------------------------
4526                   -- Construct_Attribute_Reference --
4527                   -----------------------------------
4528
4529                   function Construct_Attribute_Reference
4530                     (E   : Node_Id;
4531                      Nam : Name_Id;
4532                      Dim : Nat) return Node_Id
4533                   is
4534                   begin
4535                      return
4536                        Make_Attribute_Reference (Loc,
4537                          Prefix => E,
4538                          Attribute_Name => Nam,
4539                          Expressions => New_List (
4540                            Make_Integer_Literal (Loc, Dim)));
4541                   end Construct_Attribute_Reference;
4542
4543                --  Start of processing for Check_Subscripts
4544
4545                begin
4546                   for J in 1 .. Number_Dimensions (Typ) loop
4547                      Evolve_And_Then (Cond,
4548                        Make_Op_Eq (Loc,
4549                          Left_Opnd  =>
4550                            Construct_Attribute_Reference
4551                              (Duplicate_Subexpr_No_Checks (Obj),
4552                               Name_First, J),
4553                          Right_Opnd =>
4554                            Construct_Attribute_Reference
4555                              (New_Occurrence_Of (Typ, Loc), Name_First, J)));
4556
4557                      Evolve_And_Then (Cond,
4558                        Make_Op_Eq (Loc,
4559                          Left_Opnd  =>
4560                            Construct_Attribute_Reference
4561                              (Duplicate_Subexpr_No_Checks (Obj),
4562                               Name_Last, J),
4563                          Right_Opnd =>
4564                            Construct_Attribute_Reference
4565                              (New_Occurrence_Of (Typ, Loc), Name_Last, J)));
4566                   end loop;
4567
4568                   if Is_Acc then
4569                      Cond :=
4570                        Make_Or_Else (Loc,
4571                          Left_Opnd =>
4572                            Make_Op_Eq (Loc,
4573                              Left_Opnd  => Obj,
4574                              Right_Opnd => Make_Null (Loc)),
4575                          Right_Opnd => Cond);
4576                   end if;
4577
4578                   Rewrite (N, Cond);
4579                   Analyze_And_Resolve (N, Rtyp);
4580                end Check_Subscripts;
4581
4582             --  These are the cases where constraint checks may be required,
4583             --  e.g. records with possible discriminants
4584
4585             else
4586                --  Expand the test into a series of discriminant comparisons.
4587                --  The expression that is built is the negation of the one that
4588                --  is used for checking discriminant constraints.
4589
4590                Obj := Relocate_Node (Left_Opnd (N));
4591
4592                if Has_Discriminants (Typ) then
4593                   Cond := Make_Op_Not (Loc,
4594                     Right_Opnd => Build_Discriminant_Checks (Obj, Typ));
4595
4596                   if Is_Acc then
4597                      Cond := Make_Or_Else (Loc,
4598                        Left_Opnd =>
4599                          Make_Op_Eq (Loc,
4600                            Left_Opnd  => Obj,
4601                            Right_Opnd => Make_Null (Loc)),
4602                        Right_Opnd => Cond);
4603                   end if;
4604
4605                else
4606                   Cond := New_Occurrence_Of (Standard_True, Loc);
4607                end if;
4608
4609                Rewrite (N, Cond);
4610                Analyze_And_Resolve (N, Rtyp);
4611             end if;
4612          end;
4613       end if;
4614    end Expand_N_In;
4615
4616    --------------------------------
4617    -- Expand_N_Indexed_Component --
4618    --------------------------------
4619
4620    procedure Expand_N_Indexed_Component (N : Node_Id) is
4621       Loc : constant Source_Ptr := Sloc (N);
4622       Typ : constant Entity_Id  := Etype (N);
4623       P   : constant Node_Id    := Prefix (N);
4624       T   : constant Entity_Id  := Etype (P);
4625
4626    begin
4627       --  A special optimization, if we have an indexed component that is
4628       --  selecting from a slice, then we can eliminate the slice, since, for
4629       --  example, x (i .. j)(k) is identical to x(k). The only difference is
4630       --  the range check required by the slice. The range check for the slice
4631       --  itself has already been generated. The range check for the
4632       --  subscripting operation is ensured by converting the subject to
4633       --  the subtype of the slice.
4634
4635       --  This optimization not only generates better code, avoiding slice
4636       --  messing especially in the packed case, but more importantly bypasses
4637       --  some problems in handling this peculiar case, for example, the issue
4638       --  of dealing specially with object renamings.
4639
4640       if Nkind (P) = N_Slice then
4641          Rewrite (N,
4642            Make_Indexed_Component (Loc,
4643              Prefix => Prefix (P),
4644              Expressions => New_List (
4645                Convert_To
4646                  (Etype (First_Index (Etype (P))),
4647                   First (Expressions (N))))));
4648          Analyze_And_Resolve (N, Typ);
4649          return;
4650       end if;
4651
4652       --  Ada 2005 (AI-318-02): If the prefix is a call to a build-in-place
4653       --  function, then additional actuals must be passed.
4654
4655       if Ada_Version >= Ada_05
4656         and then Is_Build_In_Place_Function_Call (P)
4657       then
4658          Make_Build_In_Place_Call_In_Anonymous_Context (P);
4659       end if;
4660
4661       --  If the prefix is an access type, then we unconditionally rewrite if
4662       --  as an explicit deference. This simplifies processing for several
4663       --  cases, including packed array cases and certain cases in which checks
4664       --  must be generated. We used to try to do this only when it was
4665       --  necessary, but it cleans up the code to do it all the time.
4666
4667       if Is_Access_Type (T) then
4668          Insert_Explicit_Dereference (P);
4669          Analyze_And_Resolve (P, Designated_Type (T));
4670       end if;
4671
4672       --  Generate index and validity checks
4673
4674       Generate_Index_Checks (N);
4675
4676       if Validity_Checks_On and then Validity_Check_Subscripts then
4677          Apply_Subscript_Validity_Checks (N);
4678       end if;
4679
4680       --  All done for the non-packed case
4681
4682       if not Is_Packed (Etype (Prefix (N))) then
4683          return;
4684       end if;
4685
4686       --  For packed arrays that are not bit-packed (i.e. the case of an array
4687       --  with one or more index types with a non-contiguous enumeration type),
4688       --  we can always use the normal packed element get circuit.
4689
4690       if not Is_Bit_Packed_Array (Etype (Prefix (N))) then
4691          Expand_Packed_Element_Reference (N);
4692          return;
4693       end if;
4694
4695       --  For a reference to a component of a bit packed array, we have to
4696       --  convert it to a reference to the corresponding Packed_Array_Type.
4697       --  We only want to do this for simple references, and not for:
4698
4699       --    Left side of assignment, or prefix of left side of assignment, or
4700       --    prefix of the prefix, to handle packed arrays of packed arrays,
4701       --      This case is handled in Exp_Ch5.Expand_N_Assignment_Statement
4702
4703       --    Renaming objects in renaming associations
4704       --      This case is handled when a use of the renamed variable occurs
4705
4706       --    Actual parameters for a procedure call
4707       --      This case is handled in Exp_Ch6.Expand_Actuals
4708
4709       --    The second expression in a 'Read attribute reference
4710
4711       --    The prefix of an address or size attribute reference
4712
4713       --  The following circuit detects these exceptions
4714
4715       declare
4716          Child : Node_Id := N;
4717          Parnt : Node_Id := Parent (N);
4718
4719       begin
4720          loop
4721             if Nkind (Parnt) = N_Unchecked_Expression then
4722                null;
4723
4724             elsif Nkind_In (Parnt, N_Object_Renaming_Declaration,
4725                                    N_Procedure_Call_Statement)
4726               or else (Nkind (Parnt) = N_Parameter_Association
4727                         and then
4728                           Nkind (Parent (Parnt)) =  N_Procedure_Call_Statement)
4729             then
4730                return;
4731
4732             elsif Nkind (Parnt) = N_Attribute_Reference
4733               and then (Attribute_Name (Parnt) = Name_Address
4734                          or else
4735                         Attribute_Name (Parnt) = Name_Size)
4736               and then Prefix (Parnt) = Child
4737             then
4738                return;
4739
4740             elsif Nkind (Parnt) = N_Assignment_Statement
4741               and then Name (Parnt) = Child
4742             then
4743                return;
4744
4745             --  If the expression is an index of an indexed component, it must
4746             --  be expanded regardless of context.
4747
4748             elsif Nkind (Parnt) = N_Indexed_Component
4749               and then Child /= Prefix (Parnt)
4750             then
4751                Expand_Packed_Element_Reference (N);
4752                return;
4753
4754             elsif Nkind (Parent (Parnt)) = N_Assignment_Statement
4755               and then Name (Parent (Parnt)) = Parnt
4756             then
4757                return;
4758
4759             elsif Nkind (Parnt) = N_Attribute_Reference
4760               and then Attribute_Name (Parnt) = Name_Read
4761               and then Next (First (Expressions (Parnt))) = Child
4762             then
4763                return;
4764
4765             elsif Nkind_In (Parnt, N_Indexed_Component, N_Selected_Component)
4766                and then Prefix (Parnt) = Child
4767             then
4768                null;
4769
4770             else
4771                Expand_Packed_Element_Reference (N);
4772                return;
4773             end if;
4774
4775             --  Keep looking up tree for unchecked expression, or if we are the
4776             --  prefix of a possible assignment left side.
4777
4778             Child := Parnt;
4779             Parnt := Parent (Child);
4780          end loop;
4781       end;
4782    end Expand_N_Indexed_Component;
4783
4784    ---------------------
4785    -- Expand_N_Not_In --
4786    ---------------------
4787
4788    --  Replace a not in b by not (a in b) so that the expansions for (a in b)
4789    --  can be done. This avoids needing to duplicate this expansion code.
4790
4791    procedure Expand_N_Not_In (N : Node_Id) is
4792       Loc : constant Source_Ptr := Sloc (N);
4793       Typ : constant Entity_Id  := Etype (N);
4794       Cfs : constant Boolean    := Comes_From_Source (N);
4795
4796    begin
4797       Rewrite (N,
4798         Make_Op_Not (Loc,
4799           Right_Opnd =>
4800             Make_In (Loc,
4801               Left_Opnd  => Left_Opnd (N),
4802               Right_Opnd => Right_Opnd (N))));
4803
4804       --  If this is a set membership, preserve list of alternatives
4805
4806       Set_Alternatives (Right_Opnd (N), Alternatives (Original_Node (N)));
4807
4808       --  We want this to appear as coming from source if original does (see
4809       --  transformations in Expand_N_In).
4810
4811       Set_Comes_From_Source (N, Cfs);
4812       Set_Comes_From_Source (Right_Opnd (N), Cfs);
4813
4814       --  Now analyze transformed node
4815
4816       Analyze_And_Resolve (N, Typ);
4817    end Expand_N_Not_In;
4818
4819    -------------------
4820    -- Expand_N_Null --
4821    -------------------
4822
4823    --  The only replacement required is for the case of a null of type that is
4824    --  an access to protected subprogram. We represent such access values as a
4825    --  record, and so we must replace the occurrence of null by the equivalent
4826    --  record (with a null address and a null pointer in it), so that the
4827    --  backend creates the proper value.
4828
4829    procedure Expand_N_Null (N : Node_Id) is
4830       Loc : constant Source_Ptr := Sloc (N);
4831       Typ : constant Entity_Id  := Etype (N);
4832       Agg : Node_Id;
4833
4834    begin
4835       if Is_Access_Protected_Subprogram_Type (Typ) then
4836          Agg :=
4837            Make_Aggregate (Loc,
4838              Expressions => New_List (
4839                New_Occurrence_Of (RTE (RE_Null_Address), Loc),
4840                Make_Null (Loc)));
4841
4842          Rewrite (N, Agg);
4843          Analyze_And_Resolve (N, Equivalent_Type (Typ));
4844
4845          --  For subsequent semantic analysis, the node must retain its type.
4846          --  Gigi in any case replaces this type by the corresponding record
4847          --  type before processing the node.
4848
4849          Set_Etype (N, Typ);
4850       end if;
4851
4852    exception
4853       when RE_Not_Available =>
4854          return;
4855    end Expand_N_Null;
4856
4857    ---------------------
4858    -- Expand_N_Op_Abs --
4859    ---------------------
4860
4861    procedure Expand_N_Op_Abs (N : Node_Id) is
4862       Loc  : constant Source_Ptr := Sloc (N);
4863       Expr : constant Node_Id := Right_Opnd (N);
4864
4865    begin
4866       Unary_Op_Validity_Checks (N);
4867
4868       --  Deal with software overflow checking
4869
4870       if not Backend_Overflow_Checks_On_Target
4871          and then Is_Signed_Integer_Type (Etype (N))
4872          and then Do_Overflow_Check (N)
4873       then
4874          --  The only case to worry about is when the argument is equal to the
4875          --  largest negative number, so what we do is to insert the check:
4876
4877          --     [constraint_error when Expr = typ'Base'First]
4878
4879          --  with the usual Duplicate_Subexpr use coding for expr
4880
4881          Insert_Action (N,
4882            Make_Raise_Constraint_Error (Loc,
4883              Condition =>
4884                Make_Op_Eq (Loc,
4885                  Left_Opnd  => Duplicate_Subexpr (Expr),
4886                  Right_Opnd =>
4887                    Make_Attribute_Reference (Loc,
4888                      Prefix =>
4889                        New_Occurrence_Of (Base_Type (Etype (Expr)), Loc),
4890                      Attribute_Name => Name_First)),
4891              Reason => CE_Overflow_Check_Failed));
4892       end if;
4893
4894       --  Vax floating-point types case
4895
4896       if Vax_Float (Etype (N)) then
4897          Expand_Vax_Arith (N);
4898       end if;
4899    end Expand_N_Op_Abs;
4900
4901    ---------------------
4902    -- Expand_N_Op_Add --
4903    ---------------------
4904
4905    procedure Expand_N_Op_Add (N : Node_Id) is
4906       Typ : constant Entity_Id := Etype (N);
4907
4908    begin
4909       Binary_Op_Validity_Checks (N);
4910
4911       --  N + 0 = 0 + N = N for integer types
4912
4913       if Is_Integer_Type (Typ) then
4914          if Compile_Time_Known_Value (Right_Opnd (N))
4915            and then Expr_Value (Right_Opnd (N)) = Uint_0
4916          then
4917             Rewrite (N, Left_Opnd (N));
4918             return;
4919
4920          elsif Compile_Time_Known_Value (Left_Opnd (N))
4921            and then Expr_Value (Left_Opnd (N)) = Uint_0
4922          then
4923             Rewrite (N, Right_Opnd (N));
4924             return;
4925          end if;
4926       end if;
4927
4928       --  Arithmetic overflow checks for signed integer/fixed point types
4929
4930       if Is_Signed_Integer_Type (Typ)
4931         or else Is_Fixed_Point_Type (Typ)
4932       then
4933          Apply_Arithmetic_Overflow_Check (N);
4934          return;
4935
4936       --  Vax floating-point types case
4937
4938       elsif Vax_Float (Typ) then
4939          Expand_Vax_Arith (N);
4940       end if;
4941    end Expand_N_Op_Add;
4942
4943    ---------------------
4944    -- Expand_N_Op_And --
4945    ---------------------
4946
4947    procedure Expand_N_Op_And (N : Node_Id) is
4948       Typ : constant Entity_Id := Etype (N);
4949
4950    begin
4951       Binary_Op_Validity_Checks (N);
4952
4953       if Is_Array_Type (Etype (N)) then
4954          Expand_Boolean_Operator (N);
4955
4956       elsif Is_Boolean_Type (Etype (N)) then
4957          Adjust_Condition (Left_Opnd (N));
4958          Adjust_Condition (Right_Opnd (N));
4959          Set_Etype (N, Standard_Boolean);
4960          Adjust_Result_Type (N, Typ);
4961       end if;
4962    end Expand_N_Op_And;
4963
4964    ------------------------
4965    -- Expand_N_Op_Concat --
4966    ------------------------
4967
4968    procedure Expand_N_Op_Concat (N : Node_Id) is
4969       Opnds : List_Id;
4970       --  List of operands to be concatenated
4971
4972       Cnode : Node_Id;
4973       --  Node which is to be replaced by the result of concatenating the nodes
4974       --  in the list Opnds.
4975
4976    begin
4977       --  Ensure validity of both operands
4978
4979       Binary_Op_Validity_Checks (N);
4980
4981       --  If we are the left operand of a concatenation higher up the tree,
4982       --  then do nothing for now, since we want to deal with a series of
4983       --  concatenations as a unit.
4984
4985       if Nkind (Parent (N)) = N_Op_Concat
4986         and then N = Left_Opnd (Parent (N))
4987       then
4988          return;
4989       end if;
4990
4991       --  We get here with a concatenation whose left operand may be a
4992       --  concatenation itself with a consistent type. We need to process
4993       --  these concatenation operands from left to right, which means
4994       --  from the deepest node in the tree to the highest node.
4995
4996       Cnode := N;
4997       while Nkind (Left_Opnd (Cnode)) = N_Op_Concat loop
4998          Cnode := Left_Opnd (Cnode);
4999       end loop;
5000
5001       --  Now Opnd is the deepest Opnd, and its parents are the concatenation
5002       --  nodes above, so now we process bottom up, doing the operations. We
5003       --  gather a string that is as long as possible up to five operands
5004
5005       --  The outer loop runs more than once if more than one concatenation
5006       --  type is involved.
5007
5008       Outer : loop
5009          Opnds := New_List (Left_Opnd (Cnode), Right_Opnd (Cnode));
5010          Set_Parent (Opnds, N);
5011
5012          --  The inner loop gathers concatenation operands
5013
5014          Inner : while Cnode /= N
5015                    and then Base_Type (Etype (Cnode)) =
5016                             Base_Type (Etype (Parent (Cnode)))
5017          loop
5018             Cnode := Parent (Cnode);
5019             Append (Right_Opnd (Cnode), Opnds);
5020          end loop Inner;
5021
5022          Expand_Concatenate (Cnode, Opnds);
5023
5024          exit Outer when Cnode = N;
5025          Cnode := Parent (Cnode);
5026       end loop Outer;
5027    end Expand_N_Op_Concat;
5028
5029    ------------------------
5030    -- Expand_N_Op_Divide --
5031    ------------------------
5032
5033    procedure Expand_N_Op_Divide (N : Node_Id) is
5034       Loc   : constant Source_Ptr := Sloc (N);
5035       Lopnd : constant Node_Id    := Left_Opnd (N);
5036       Ropnd : constant Node_Id    := Right_Opnd (N);
5037       Ltyp  : constant Entity_Id  := Etype (Lopnd);
5038       Rtyp  : constant Entity_Id  := Etype (Ropnd);
5039       Typ   : Entity_Id           := Etype (N);
5040       Rknow : constant Boolean    := Is_Integer_Type (Typ)
5041                                        and then
5042                                          Compile_Time_Known_Value (Ropnd);
5043       Rval  : Uint;
5044
5045    begin
5046       Binary_Op_Validity_Checks (N);
5047
5048       if Rknow then
5049          Rval := Expr_Value (Ropnd);
5050       end if;
5051
5052       --  N / 1 = N for integer types
5053
5054       if Rknow and then Rval = Uint_1 then
5055          Rewrite (N, Lopnd);
5056          return;
5057       end if;
5058
5059       --  Convert x / 2 ** y to Shift_Right (x, y). Note that the fact that
5060       --  Is_Power_Of_2_For_Shift is set means that we know that our left
5061       --  operand is an unsigned integer, as required for this to work.
5062
5063       if Nkind (Ropnd) = N_Op_Expon
5064         and then Is_Power_Of_2_For_Shift (Ropnd)
5065
5066       --  We cannot do this transformation in configurable run time mode if we
5067       --  have 64-bit --  integers and long shifts are not available.
5068
5069         and then
5070           (Esize (Ltyp) <= 32
5071              or else Support_Long_Shifts_On_Target)
5072       then
5073          Rewrite (N,
5074            Make_Op_Shift_Right (Loc,
5075              Left_Opnd  => Lopnd,
5076              Right_Opnd =>
5077                Convert_To (Standard_Natural, Right_Opnd (Ropnd))));
5078          Analyze_And_Resolve (N, Typ);
5079          return;
5080       end if;
5081
5082       --  Do required fixup of universal fixed operation
5083
5084       if Typ = Universal_Fixed then
5085          Fixup_Universal_Fixed_Operation (N);
5086          Typ := Etype (N);
5087       end if;
5088
5089       --  Divisions with fixed-point results
5090
5091       if Is_Fixed_Point_Type (Typ) then
5092
5093          --  No special processing if Treat_Fixed_As_Integer is set, since
5094          --  from a semantic point of view such operations are simply integer
5095          --  operations and will be treated that way.
5096
5097          if not Treat_Fixed_As_Integer (N) then
5098             if Is_Integer_Type (Rtyp) then
5099                Expand_Divide_Fixed_By_Integer_Giving_Fixed (N);
5100             else
5101                Expand_Divide_Fixed_By_Fixed_Giving_Fixed (N);
5102             end if;
5103          end if;
5104
5105       --  Other cases of division of fixed-point operands. Again we exclude the
5106       --  case where Treat_Fixed_As_Integer is set.
5107
5108       elsif (Is_Fixed_Point_Type (Ltyp) or else
5109              Is_Fixed_Point_Type (Rtyp))
5110         and then not Treat_Fixed_As_Integer (N)
5111       then
5112          if Is_Integer_Type (Typ) then
5113             Expand_Divide_Fixed_By_Fixed_Giving_Integer (N);
5114          else
5115             pragma Assert (Is_Floating_Point_Type (Typ));
5116             Expand_Divide_Fixed_By_Fixed_Giving_Float (N);
5117          end if;
5118
5119       --  Mixed-mode operations can appear in a non-static universal context,
5120       --  in which case the integer argument must be converted explicitly.
5121
5122       elsif Typ = Universal_Real
5123         and then Is_Integer_Type (Rtyp)
5124       then
5125          Rewrite (Ropnd,
5126            Convert_To (Universal_Real, Relocate_Node (Ropnd)));
5127
5128          Analyze_And_Resolve (Ropnd, Universal_Real);
5129
5130       elsif Typ = Universal_Real
5131         and then Is_Integer_Type (Ltyp)
5132       then
5133          Rewrite (Lopnd,
5134            Convert_To (Universal_Real, Relocate_Node (Lopnd)));
5135
5136          Analyze_And_Resolve (Lopnd, Universal_Real);
5137
5138       --  Non-fixed point cases, do integer zero divide and overflow checks
5139
5140       elsif Is_Integer_Type (Typ) then
5141          Apply_Divide_Check (N);
5142
5143          --  Check for 64-bit division available, or long shifts if the divisor
5144          --  is a small power of 2 (since such divides will be converted into
5145          --  long shifts).
5146
5147          if Esize (Ltyp) > 32
5148            and then not Support_64_Bit_Divides_On_Target
5149            and then
5150              (not Rknow
5151                 or else not Support_Long_Shifts_On_Target
5152                 or else (Rval /= Uint_2  and then
5153                          Rval /= Uint_4  and then
5154                          Rval /= Uint_8  and then
5155                          Rval /= Uint_16 and then
5156                          Rval /= Uint_32 and then
5157                          Rval /= Uint_64))
5158          then
5159             Error_Msg_CRT ("64-bit division", N);
5160          end if;
5161
5162       --  Deal with Vax_Float
5163
5164       elsif Vax_Float (Typ) then
5165          Expand_Vax_Arith (N);
5166          return;
5167       end if;
5168    end Expand_N_Op_Divide;
5169
5170    --------------------
5171    -- Expand_N_Op_Eq --
5172    --------------------
5173
5174    procedure Expand_N_Op_Eq (N : Node_Id) is
5175       Loc    : constant Source_Ptr := Sloc (N);
5176       Typ    : constant Entity_Id  := Etype (N);
5177       Lhs    : constant Node_Id    := Left_Opnd (N);
5178       Rhs    : constant Node_Id    := Right_Opnd (N);
5179       Bodies : constant List_Id    := New_List;
5180       A_Typ  : constant Entity_Id  := Etype (Lhs);
5181
5182       Typl    : Entity_Id := A_Typ;
5183       Op_Name : Entity_Id;
5184       Prim    : Elmt_Id;
5185
5186       procedure Build_Equality_Call (Eq : Entity_Id);
5187       --  If a constructed equality exists for the type or for its parent,
5188       --  build and analyze call, adding conversions if the operation is
5189       --  inherited.
5190
5191       function Has_Unconstrained_UU_Component (Typ : Node_Id) return Boolean;
5192       --  Determines whether a type has a subcomponent of an unconstrained
5193       --  Unchecked_Union subtype. Typ is a record type.
5194
5195       -------------------------
5196       -- Build_Equality_Call --
5197       -------------------------
5198
5199       procedure Build_Equality_Call (Eq : Entity_Id) is
5200          Op_Type : constant Entity_Id := Etype (First_Formal (Eq));
5201          L_Exp   : Node_Id := Relocate_Node (Lhs);
5202          R_Exp   : Node_Id := Relocate_Node (Rhs);
5203
5204       begin
5205          if Base_Type (Op_Type) /= Base_Type (A_Typ)
5206            and then not Is_Class_Wide_Type (A_Typ)
5207          then
5208             L_Exp := OK_Convert_To (Op_Type, L_Exp);
5209             R_Exp := OK_Convert_To (Op_Type, R_Exp);
5210          end if;
5211
5212          --  If we have an Unchecked_Union, we need to add the inferred
5213          --  discriminant values as actuals in the function call. At this
5214          --  point, the expansion has determined that both operands have
5215          --  inferable discriminants.
5216
5217          if Is_Unchecked_Union (Op_Type) then
5218             declare
5219                Lhs_Type      : constant Node_Id := Etype (L_Exp);
5220                Rhs_Type      : constant Node_Id := Etype (R_Exp);
5221                Lhs_Discr_Val : Node_Id;
5222                Rhs_Discr_Val : Node_Id;
5223
5224             begin
5225                --  Per-object constrained selected components require special
5226                --  attention. If the enclosing scope of the component is an
5227                --  Unchecked_Union, we cannot reference its discriminants
5228                --  directly. This is why we use the two extra parameters of
5229                --  the equality function of the enclosing Unchecked_Union.
5230
5231                --  type UU_Type (Discr : Integer := 0) is
5232                --     . . .
5233                --  end record;
5234                --  pragma Unchecked_Union (UU_Type);
5235
5236                --  1. Unchecked_Union enclosing record:
5237
5238                --     type Enclosing_UU_Type (Discr : Integer := 0) is record
5239                --        . . .
5240                --        Comp : UU_Type (Discr);
5241                --        . . .
5242                --     end Enclosing_UU_Type;
5243                --     pragma Unchecked_Union (Enclosing_UU_Type);
5244
5245                --     Obj1 : Enclosing_UU_Type;
5246                --     Obj2 : Enclosing_UU_Type (1);
5247
5248                --     [. . .] Obj1 = Obj2 [. . .]
5249
5250                --     Generated code:
5251
5252                --     if not (uu_typeEQ (obj1.comp, obj2.comp, a, b)) then
5253
5254                --  A and B are the formal parameters of the equality function
5255                --  of Enclosing_UU_Type. The function always has two extra
5256                --  formals to capture the inferred discriminant values.
5257
5258                --  2. Non-Unchecked_Union enclosing record:
5259
5260                --     type
5261                --       Enclosing_Non_UU_Type (Discr : Integer := 0)
5262                --     is record
5263                --        . . .
5264                --        Comp : UU_Type (Discr);
5265                --        . . .
5266                --     end Enclosing_Non_UU_Type;
5267
5268                --     Obj1 : Enclosing_Non_UU_Type;
5269                --     Obj2 : Enclosing_Non_UU_Type (1);
5270
5271                --     ...  Obj1 = Obj2 ...
5272
5273                --     Generated code:
5274
5275                --     if not (uu_typeEQ (obj1.comp, obj2.comp,
5276                --                        obj1.discr, obj2.discr)) then
5277
5278                --  In this case we can directly reference the discriminants of
5279                --  the enclosing record.
5280
5281                --  Lhs of equality
5282
5283                if Nkind (Lhs) = N_Selected_Component
5284                  and then Has_Per_Object_Constraint
5285                             (Entity (Selector_Name (Lhs)))
5286                then
5287                   --  Enclosing record is an Unchecked_Union, use formal A
5288
5289                   if Is_Unchecked_Union (Scope
5290                        (Entity (Selector_Name (Lhs))))
5291                   then
5292                      Lhs_Discr_Val :=
5293                        Make_Identifier (Loc,
5294                          Chars => Name_A);
5295
5296                   --  Enclosing record is of a non-Unchecked_Union type, it is
5297                   --  possible to reference the discriminant.
5298
5299                   else
5300                      Lhs_Discr_Val :=
5301                        Make_Selected_Component (Loc,
5302                          Prefix => Prefix (Lhs),
5303                          Selector_Name =>
5304                            New_Copy
5305                              (Get_Discriminant_Value
5306                                 (First_Discriminant (Lhs_Type),
5307                                  Lhs_Type,
5308                                  Stored_Constraint (Lhs_Type))));
5309                   end if;
5310
5311                --  Comment needed here ???
5312
5313                else
5314                   --  Infer the discriminant value
5315
5316                   Lhs_Discr_Val :=
5317                     New_Copy
5318                       (Get_Discriminant_Value
5319                          (First_Discriminant (Lhs_Type),
5320                           Lhs_Type,
5321                           Stored_Constraint (Lhs_Type)));
5322                end if;
5323
5324                --  Rhs of equality
5325
5326                if Nkind (Rhs) = N_Selected_Component
5327                  and then Has_Per_Object_Constraint
5328                             (Entity (Selector_Name (Rhs)))
5329                then
5330                   if Is_Unchecked_Union
5331                        (Scope (Entity (Selector_Name (Rhs))))
5332                   then
5333                      Rhs_Discr_Val :=
5334                        Make_Identifier (Loc,
5335                          Chars => Name_B);
5336
5337                   else
5338                      Rhs_Discr_Val :=
5339                        Make_Selected_Component (Loc,
5340                          Prefix => Prefix (Rhs),
5341                          Selector_Name =>
5342                            New_Copy (Get_Discriminant_Value (
5343                              First_Discriminant (Rhs_Type),
5344                              Rhs_Type,
5345                              Stored_Constraint (Rhs_Type))));
5346
5347                   end if;
5348                else
5349                   Rhs_Discr_Val :=
5350                     New_Copy (Get_Discriminant_Value (
5351                       First_Discriminant (Rhs_Type),
5352                       Rhs_Type,
5353                       Stored_Constraint (Rhs_Type)));
5354
5355                end if;
5356
5357                Rewrite (N,
5358                  Make_Function_Call (Loc,
5359                    Name => New_Reference_To (Eq, Loc),
5360                    Parameter_Associations => New_List (
5361                      L_Exp,
5362                      R_Exp,
5363                      Lhs_Discr_Val,
5364                      Rhs_Discr_Val)));
5365             end;
5366
5367          --  Normal case, not an unchecked union
5368
5369          else
5370             Rewrite (N,
5371               Make_Function_Call (Loc,
5372                 Name => New_Reference_To (Eq, Loc),
5373                 Parameter_Associations => New_List (L_Exp, R_Exp)));
5374          end if;
5375
5376          Analyze_And_Resolve (N, Standard_Boolean, Suppress => All_Checks);
5377       end Build_Equality_Call;
5378
5379       ------------------------------------
5380       -- Has_Unconstrained_UU_Component --
5381       ------------------------------------
5382
5383       function Has_Unconstrained_UU_Component
5384         (Typ : Node_Id) return Boolean
5385       is
5386          Tdef  : constant Node_Id :=
5387                    Type_Definition (Declaration_Node (Base_Type (Typ)));
5388          Clist : Node_Id;
5389          Vpart : Node_Id;
5390
5391          function Component_Is_Unconstrained_UU
5392            (Comp : Node_Id) return Boolean;
5393          --  Determines whether the subtype of the component is an
5394          --  unconstrained Unchecked_Union.
5395
5396          function Variant_Is_Unconstrained_UU
5397            (Variant : Node_Id) return Boolean;
5398          --  Determines whether a component of the variant has an unconstrained
5399          --  Unchecked_Union subtype.
5400
5401          -----------------------------------
5402          -- Component_Is_Unconstrained_UU --
5403          -----------------------------------
5404
5405          function Component_Is_Unconstrained_UU
5406            (Comp : Node_Id) return Boolean
5407          is
5408          begin
5409             if Nkind (Comp) /= N_Component_Declaration then
5410                return False;
5411             end if;
5412
5413             declare
5414                Sindic : constant Node_Id :=
5415                           Subtype_Indication (Component_Definition (Comp));
5416
5417             begin
5418                --  Unconstrained nominal type. In the case of a constraint
5419                --  present, the node kind would have been N_Subtype_Indication.
5420
5421                if Nkind (Sindic) = N_Identifier then
5422                   return Is_Unchecked_Union (Base_Type (Etype (Sindic)));
5423                end if;
5424
5425                return False;
5426             end;
5427          end Component_Is_Unconstrained_UU;
5428
5429          ---------------------------------
5430          -- Variant_Is_Unconstrained_UU --
5431          ---------------------------------
5432
5433          function Variant_Is_Unconstrained_UU
5434            (Variant : Node_Id) return Boolean
5435          is
5436             Clist : constant Node_Id := Component_List (Variant);
5437
5438          begin
5439             if Is_Empty_List (Component_Items (Clist)) then
5440                return False;
5441             end if;
5442
5443             --  We only need to test one component
5444
5445             declare
5446                Comp : Node_Id := First (Component_Items (Clist));
5447
5448             begin
5449                while Present (Comp) loop
5450                   if Component_Is_Unconstrained_UU (Comp) then
5451                      return True;
5452                   end if;
5453
5454                   Next (Comp);
5455                end loop;
5456             end;
5457
5458             --  None of the components withing the variant were of
5459             --  unconstrained Unchecked_Union type.
5460
5461             return False;
5462          end Variant_Is_Unconstrained_UU;
5463
5464       --  Start of processing for Has_Unconstrained_UU_Component
5465
5466       begin
5467          if Null_Present (Tdef) then
5468             return False;
5469          end if;
5470
5471          Clist := Component_List (Tdef);
5472          Vpart := Variant_Part (Clist);
5473
5474          --  Inspect available components
5475
5476          if Present (Component_Items (Clist)) then
5477             declare
5478                Comp : Node_Id := First (Component_Items (Clist));
5479
5480             begin
5481                while Present (Comp) loop
5482
5483                   --  One component is sufficient
5484
5485                   if Component_Is_Unconstrained_UU (Comp) then
5486                      return True;
5487                   end if;
5488
5489                   Next (Comp);
5490                end loop;
5491             end;
5492          end if;
5493
5494          --  Inspect available components withing variants
5495
5496          if Present (Vpart) then
5497             declare
5498                Variant : Node_Id := First (Variants (Vpart));
5499
5500             begin
5501                while Present (Variant) loop
5502
5503                   --  One component within a variant is sufficient
5504
5505                   if Variant_Is_Unconstrained_UU (Variant) then
5506                      return True;
5507                   end if;
5508
5509                   Next (Variant);
5510                end loop;
5511             end;
5512          end if;
5513
5514          --  Neither the available components, nor the components inside the
5515          --  variant parts were of an unconstrained Unchecked_Union subtype.
5516
5517          return False;
5518       end Has_Unconstrained_UU_Component;
5519
5520    --  Start of processing for Expand_N_Op_Eq
5521
5522    begin
5523       Binary_Op_Validity_Checks (N);
5524
5525       if Ekind (Typl) = E_Private_Type then
5526          Typl := Underlying_Type (Typl);
5527       elsif Ekind (Typl) = E_Private_Subtype then
5528          Typl := Underlying_Type (Base_Type (Typl));
5529       else
5530          null;
5531       end if;
5532
5533       --  It may happen in error situations that the underlying type is not
5534       --  set. The error will be detected later, here we just defend the
5535       --  expander code.
5536
5537       if No (Typl) then
5538          return;
5539       end if;
5540
5541       Typl := Base_Type (Typl);
5542
5543       --  Boolean types (requiring handling of non-standard case)
5544
5545       if Is_Boolean_Type (Typl) then
5546          Adjust_Condition (Left_Opnd (N));
5547          Adjust_Condition (Right_Opnd (N));
5548          Set_Etype (N, Standard_Boolean);
5549          Adjust_Result_Type (N, Typ);
5550
5551       --  Array types
5552
5553       elsif Is_Array_Type (Typl) then
5554
5555          --  If we are doing full validity checking, and it is possible for the
5556          --  array elements to be invalid then expand out array comparisons to
5557          --  make sure that we check the array elements.
5558
5559          if Validity_Check_Operands
5560            and then not Is_Known_Valid (Component_Type (Typl))
5561          then
5562             declare
5563                Save_Force_Validity_Checks : constant Boolean :=
5564                                               Force_Validity_Checks;
5565             begin
5566                Force_Validity_Checks := True;
5567                Rewrite (N,
5568                  Expand_Array_Equality
5569                   (N,
5570                    Relocate_Node (Lhs),
5571                    Relocate_Node (Rhs),
5572                    Bodies,
5573                    Typl));
5574                Insert_Actions (N, Bodies);
5575                Analyze_And_Resolve (N, Standard_Boolean);
5576                Force_Validity_Checks := Save_Force_Validity_Checks;
5577             end;
5578
5579          --  Packed case where both operands are known aligned
5580
5581          elsif Is_Bit_Packed_Array (Typl)
5582            and then not Is_Possibly_Unaligned_Object (Lhs)
5583            and then not Is_Possibly_Unaligned_Object (Rhs)
5584          then
5585             Expand_Packed_Eq (N);
5586
5587          --  Where the component type is elementary we can use a block bit
5588          --  comparison (if supported on the target) exception in the case
5589          --  of floating-point (negative zero issues require element by
5590          --  element comparison), and atomic types (where we must be sure
5591          --  to load elements independently) and possibly unaligned arrays.
5592
5593          elsif Is_Elementary_Type (Component_Type (Typl))
5594            and then not Is_Floating_Point_Type (Component_Type (Typl))
5595            and then not Is_Atomic (Component_Type (Typl))
5596            and then not Is_Possibly_Unaligned_Object (Lhs)
5597            and then not Is_Possibly_Unaligned_Object (Rhs)
5598            and then Support_Composite_Compare_On_Target
5599          then
5600             null;
5601
5602          --  For composite and floating-point cases, expand equality loop to
5603          --  make sure of using proper comparisons for tagged types, and
5604          --  correctly handling the floating-point case.
5605
5606          else
5607             Rewrite (N,
5608               Expand_Array_Equality
5609                 (N,
5610                  Relocate_Node (Lhs),
5611                  Relocate_Node (Rhs),
5612                  Bodies,
5613                  Typl));
5614             Insert_Actions      (N, Bodies,           Suppress => All_Checks);
5615             Analyze_And_Resolve (N, Standard_Boolean, Suppress => All_Checks);
5616          end if;
5617
5618       --  Record Types
5619
5620       elsif Is_Record_Type (Typl) then
5621
5622          --  For tagged types, use the primitive "="
5623
5624          if Is_Tagged_Type (Typl) then
5625
5626             --  No need to do anything else compiling under restriction
5627             --  No_Dispatching_Calls. During the semantic analysis we
5628             --  already notified such violation.
5629
5630             if Restriction_Active (No_Dispatching_Calls) then
5631                return;
5632             end if;
5633
5634             --  If this is derived from an untagged private type completed with
5635             --  a tagged type, it does not have a full view, so we use the
5636             --  primitive operations of the private type. This check should no
5637             --  longer be necessary when these types get their full views???
5638
5639             if Is_Private_Type (A_Typ)
5640               and then not Is_Tagged_Type (A_Typ)
5641               and then Is_Derived_Type (A_Typ)
5642               and then No (Full_View (A_Typ))
5643             then
5644                --  Search for equality operation, checking that the operands
5645                --  have the same type. Note that we must find a matching entry,
5646                --  or something is very wrong!
5647
5648                Prim := First_Elmt (Collect_Primitive_Operations (A_Typ));
5649
5650                while Present (Prim) loop
5651                   exit when Chars (Node (Prim)) = Name_Op_Eq
5652                     and then Etype (First_Formal (Node (Prim))) =
5653                              Etype (Next_Formal (First_Formal (Node (Prim))))
5654                     and then
5655                       Base_Type (Etype (Node (Prim))) = Standard_Boolean;
5656
5657                   Next_Elmt (Prim);
5658                end loop;
5659
5660                pragma Assert (Present (Prim));
5661                Op_Name := Node (Prim);
5662
5663             --  Find the type's predefined equality or an overriding
5664             --  user- defined equality. The reason for not simply calling
5665             --  Find_Prim_Op here is that there may be a user-defined
5666             --  overloaded equality op that precedes the equality that we want,
5667             --  so we have to explicitly search (e.g., there could be an
5668             --  equality with two different parameter types).
5669
5670             else
5671                if Is_Class_Wide_Type (Typl) then
5672                   Typl := Root_Type (Typl);
5673                end if;
5674
5675                Prim := First_Elmt (Primitive_Operations (Typl));
5676                while Present (Prim) loop
5677                   exit when Chars (Node (Prim)) = Name_Op_Eq
5678                     and then Etype (First_Formal (Node (Prim))) =
5679                              Etype (Next_Formal (First_Formal (Node (Prim))))
5680                     and then
5681                       Base_Type (Etype (Node (Prim))) = Standard_Boolean;
5682
5683                   Next_Elmt (Prim);
5684                end loop;
5685
5686                pragma Assert (Present (Prim));
5687                Op_Name := Node (Prim);
5688             end if;
5689
5690             Build_Equality_Call (Op_Name);
5691
5692          --  Ada 2005 (AI-216): Program_Error is raised when evaluating the
5693          --  predefined equality operator for a type which has a subcomponent
5694          --  of an Unchecked_Union type whose nominal subtype is unconstrained.
5695
5696          elsif Has_Unconstrained_UU_Component (Typl) then
5697             Insert_Action (N,
5698               Make_Raise_Program_Error (Loc,
5699                 Reason => PE_Unchecked_Union_Restriction));
5700
5701             --  Prevent Gigi from generating incorrect code by rewriting the
5702             --  equality as a standard False.
5703
5704             Rewrite (N,
5705               New_Occurrence_Of (Standard_False, Loc));
5706
5707          elsif Is_Unchecked_Union (Typl) then
5708
5709             --  If we can infer the discriminants of the operands, we make a
5710             --  call to the TSS equality function.
5711
5712             if Has_Inferable_Discriminants (Lhs)
5713                  and then
5714                Has_Inferable_Discriminants (Rhs)
5715             then
5716                Build_Equality_Call
5717                  (TSS (Root_Type (Typl), TSS_Composite_Equality));
5718
5719             else
5720                --  Ada 2005 (AI-216): Program_Error is raised when evaluating
5721                --  the predefined equality operator for an Unchecked_Union type
5722                --  if either of the operands lack inferable discriminants.
5723
5724                Insert_Action (N,
5725                  Make_Raise_Program_Error (Loc,
5726                    Reason => PE_Unchecked_Union_Restriction));
5727
5728                --  Prevent Gigi from generating incorrect code by rewriting
5729                --  the equality as a standard False.
5730
5731                Rewrite (N,
5732                  New_Occurrence_Of (Standard_False, Loc));
5733
5734             end if;
5735
5736          --  If a type support function is present (for complex cases), use it
5737
5738          elsif Present (TSS (Root_Type (Typl), TSS_Composite_Equality)) then
5739             Build_Equality_Call
5740               (TSS (Root_Type (Typl), TSS_Composite_Equality));
5741
5742          --  Otherwise expand the component by component equality. Note that
5743          --  we never use block-bit comparisons for records, because of the
5744          --  problems with gaps. The backend will often be able to recombine
5745          --  the separate comparisons that we generate here.
5746
5747          else
5748             Remove_Side_Effects (Lhs);
5749             Remove_Side_Effects (Rhs);
5750             Rewrite (N,
5751               Expand_Record_Equality (N, Typl, Lhs, Rhs, Bodies));
5752
5753             Insert_Actions      (N, Bodies,           Suppress => All_Checks);
5754             Analyze_And_Resolve (N, Standard_Boolean, Suppress => All_Checks);
5755          end if;
5756       end if;
5757
5758       --  Test if result is known at compile time
5759
5760       Rewrite_Comparison (N);
5761
5762       --  If we still have comparison for Vax_Float, process it
5763
5764       if Vax_Float (Typl) and then Nkind (N) in N_Op_Compare  then
5765          Expand_Vax_Comparison (N);
5766          return;
5767       end if;
5768    end Expand_N_Op_Eq;
5769
5770    -----------------------
5771    -- Expand_N_Op_Expon --
5772    -----------------------
5773
5774    procedure Expand_N_Op_Expon (N : Node_Id) is
5775       Loc    : constant Source_Ptr := Sloc (N);
5776       Typ    : constant Entity_Id  := Etype (N);
5777       Rtyp   : constant Entity_Id  := Root_Type (Typ);
5778       Base   : constant Node_Id    := Relocate_Node (Left_Opnd (N));
5779       Bastyp : constant Node_Id    := Etype (Base);
5780       Exp    : constant Node_Id    := Relocate_Node (Right_Opnd (N));
5781       Exptyp : constant Entity_Id  := Etype (Exp);
5782       Ovflo  : constant Boolean    := Do_Overflow_Check (N);
5783       Expv   : Uint;
5784       Xnode  : Node_Id;
5785       Temp   : Node_Id;
5786       Rent   : RE_Id;
5787       Ent    : Entity_Id;
5788       Etyp   : Entity_Id;
5789
5790    begin
5791       Binary_Op_Validity_Checks (N);
5792
5793       --  If either operand is of a private type, then we have the use of an
5794       --  intrinsic operator, and we get rid of the privateness, by using root
5795       --  types of underlying types for the actual operation. Otherwise the
5796       --  private types will cause trouble if we expand multiplications or
5797       --  shifts etc. We also do this transformation if the result type is
5798       --  different from the base type.
5799
5800       if Is_Private_Type (Etype (Base))
5801            or else
5802          Is_Private_Type (Typ)
5803            or else
5804          Is_Private_Type (Exptyp)
5805            or else
5806          Rtyp /= Root_Type (Bastyp)
5807       then
5808          declare
5809             Bt : constant Entity_Id := Root_Type (Underlying_Type (Bastyp));
5810             Et : constant Entity_Id := Root_Type (Underlying_Type (Exptyp));
5811
5812          begin
5813             Rewrite (N,
5814               Unchecked_Convert_To (Typ,
5815                 Make_Op_Expon (Loc,
5816                   Left_Opnd  => Unchecked_Convert_To (Bt, Base),
5817                   Right_Opnd => Unchecked_Convert_To (Et, Exp))));
5818             Analyze_And_Resolve (N, Typ);
5819             return;
5820          end;
5821       end if;
5822
5823       --  Test for case of known right argument
5824
5825       if Compile_Time_Known_Value (Exp) then
5826          Expv := Expr_Value (Exp);
5827
5828          --  We only fold small non-negative exponents. You might think we
5829          --  could fold small negative exponents for the real case, but we
5830          --  can't because we are required to raise Constraint_Error for
5831          --  the case of 0.0 ** (negative) even if Machine_Overflows = False.
5832          --  See ACVC test C4A012B.
5833
5834          if Expv >= 0 and then Expv <= 4 then
5835
5836             --  X ** 0 = 1 (or 1.0)
5837
5838             if Expv = 0 then
5839
5840                --  Call Remove_Side_Effects to ensure that any side effects
5841                --  in the ignored left operand (in particular function calls
5842                --  to user defined functions) are properly executed.
5843
5844                Remove_Side_Effects (Base);
5845
5846                if Ekind (Typ) in Integer_Kind then
5847                   Xnode := Make_Integer_Literal (Loc, Intval => 1);
5848                else
5849                   Xnode := Make_Real_Literal (Loc, Ureal_1);
5850                end if;
5851
5852             --  X ** 1 = X
5853
5854             elsif Expv = 1 then
5855                Xnode := Base;
5856
5857             --  X ** 2 = X * X
5858
5859             elsif Expv = 2 then
5860                Xnode :=
5861                  Make_Op_Multiply (Loc,
5862                    Left_Opnd  => Duplicate_Subexpr (Base),
5863                    Right_Opnd => Duplicate_Subexpr_No_Checks (Base));
5864
5865             --  X ** 3 = X * X * X
5866
5867             elsif Expv = 3 then
5868                Xnode :=
5869                  Make_Op_Multiply (Loc,
5870                    Left_Opnd =>
5871                      Make_Op_Multiply (Loc,
5872                        Left_Opnd  => Duplicate_Subexpr (Base),
5873                        Right_Opnd => Duplicate_Subexpr_No_Checks (Base)),
5874                    Right_Opnd  => Duplicate_Subexpr_No_Checks (Base));
5875
5876             --  X ** 4  ->
5877             --    En : constant base'type := base * base;
5878             --    ...
5879             --    En * En
5880
5881             else -- Expv = 4
5882                Temp :=
5883                  Make_Defining_Identifier (Loc, New_Internal_Name ('E'));
5884
5885                Insert_Actions (N, New_List (
5886                  Make_Object_Declaration (Loc,
5887                    Defining_Identifier => Temp,
5888                    Constant_Present    => True,
5889                    Object_Definition   => New_Reference_To (Typ, Loc),
5890                    Expression =>
5891                      Make_Op_Multiply (Loc,
5892                        Left_Opnd  => Duplicate_Subexpr (Base),
5893                        Right_Opnd => Duplicate_Subexpr_No_Checks (Base)))));
5894
5895                Xnode :=
5896                  Make_Op_Multiply (Loc,
5897                    Left_Opnd  => New_Reference_To (Temp, Loc),
5898                    Right_Opnd => New_Reference_To (Temp, Loc));
5899             end if;
5900
5901             Rewrite (N, Xnode);
5902             Analyze_And_Resolve (N, Typ);
5903             return;
5904          end if;
5905       end if;
5906
5907       --  Case of (2 ** expression) appearing as an argument of an integer
5908       --  multiplication, or as the right argument of a division of a non-
5909       --  negative integer. In such cases we leave the node untouched, setting
5910       --  the flag Is_Natural_Power_Of_2_for_Shift set, then the expansion
5911       --  of the higher level node converts it into a shift.
5912
5913       --  Note: this transformation is not applicable for a modular type with
5914       --  a non-binary modulus in the multiplication case, since we get a wrong
5915       --  result if the shift causes an overflow before the modular reduction.
5916
5917       if Nkind (Base) = N_Integer_Literal
5918         and then Intval (Base) = 2
5919         and then Is_Integer_Type (Root_Type (Exptyp))
5920         and then Esize (Root_Type (Exptyp)) <= Esize (Standard_Integer)
5921         and then Is_Unsigned_Type (Exptyp)
5922         and then not Ovflo
5923         and then Nkind (Parent (N)) in N_Binary_Op
5924       then
5925          declare
5926             P : constant Node_Id := Parent (N);
5927             L : constant Node_Id := Left_Opnd (P);
5928             R : constant Node_Id := Right_Opnd (P);
5929
5930          begin
5931             if (Nkind (P) = N_Op_Multiply
5932                  and then not Non_Binary_Modulus (Typ)
5933                  and then
5934                    ((Is_Integer_Type (Etype (L)) and then R = N)
5935                        or else
5936                     (Is_Integer_Type (Etype (R)) and then L = N))
5937                  and then not Do_Overflow_Check (P))
5938
5939               or else
5940                 (Nkind (P) = N_Op_Divide
5941                   and then Is_Integer_Type (Etype (L))
5942                   and then Is_Unsigned_Type (Etype (L))
5943                   and then R = N
5944                   and then not Do_Overflow_Check (P))
5945             then
5946                Set_Is_Power_Of_2_For_Shift (N);
5947                return;
5948             end if;
5949          end;
5950       end if;
5951
5952       --  Fall through if exponentiation must be done using a runtime routine
5953
5954       --  First deal with modular case
5955
5956       if Is_Modular_Integer_Type (Rtyp) then
5957
5958          --  Non-binary case, we call the special exponentiation routine for
5959          --  the non-binary case, converting the argument to Long_Long_Integer
5960          --  and passing the modulus value. Then the result is converted back
5961          --  to the base type.
5962
5963          if Non_Binary_Modulus (Rtyp) then
5964             Rewrite (N,
5965               Convert_To (Typ,
5966                 Make_Function_Call (Loc,
5967                   Name => New_Reference_To (RTE (RE_Exp_Modular), Loc),
5968                   Parameter_Associations => New_List (
5969                     Convert_To (Standard_Integer, Base),
5970                     Make_Integer_Literal (Loc, Modulus (Rtyp)),
5971                     Exp))));
5972
5973          --  Binary case, in this case, we call one of two routines, either the
5974          --  unsigned integer case, or the unsigned long long integer case,
5975          --  with a final "and" operation to do the required mod.
5976
5977          else
5978             if UI_To_Int (Esize (Rtyp)) <= Standard_Integer_Size then
5979                Ent := RTE (RE_Exp_Unsigned);
5980             else
5981                Ent := RTE (RE_Exp_Long_Long_Unsigned);
5982             end if;
5983
5984             Rewrite (N,
5985               Convert_To (Typ,
5986                 Make_Op_And (Loc,
5987                   Left_Opnd =>
5988                     Make_Function_Call (Loc,
5989                       Name => New_Reference_To (Ent, Loc),
5990                       Parameter_Associations => New_List (
5991                         Convert_To (Etype (First_Formal (Ent)), Base),
5992                         Exp)),
5993                    Right_Opnd =>
5994                      Make_Integer_Literal (Loc, Modulus (Rtyp) - 1))));
5995
5996          end if;
5997
5998          --  Common exit point for modular type case
5999
6000          Analyze_And_Resolve (N, Typ);
6001          return;
6002
6003       --  Signed integer cases, done using either Integer or Long_Long_Integer.
6004       --  It is not worth having routines for Short_[Short_]Integer, since for
6005       --  most machines it would not help, and it would generate more code that
6006       --  might need certification when a certified run time is required.
6007
6008       --  In the integer cases, we have two routines, one for when overflow
6009       --  checks are required, and one when they are not required, since there
6010       --  is a real gain in omitting checks on many machines.
6011
6012       elsif Rtyp = Base_Type (Standard_Long_Long_Integer)
6013         or else (Rtyp = Base_Type (Standard_Long_Integer)
6014                    and then
6015                      Esize (Standard_Long_Integer) > Esize (Standard_Integer))
6016         or else (Rtyp = Universal_Integer)
6017       then
6018          Etyp := Standard_Long_Long_Integer;
6019
6020          if Ovflo then
6021             Rent := RE_Exp_Long_Long_Integer;
6022          else
6023             Rent := RE_Exn_Long_Long_Integer;
6024          end if;
6025
6026       elsif Is_Signed_Integer_Type (Rtyp) then
6027          Etyp := Standard_Integer;
6028
6029          if Ovflo then
6030             Rent := RE_Exp_Integer;
6031          else
6032             Rent := RE_Exn_Integer;
6033          end if;
6034
6035       --  Floating-point cases, always done using Long_Long_Float. We do not
6036       --  need separate routines for the overflow case here, since in the case
6037       --  of floating-point, we generate infinities anyway as a rule (either
6038       --  that or we automatically trap overflow), and if there is an infinity
6039       --  generated and a range check is required, the check will fail anyway.
6040
6041       else
6042          pragma Assert (Is_Floating_Point_Type (Rtyp));
6043          Etyp := Standard_Long_Long_Float;
6044          Rent := RE_Exn_Long_Long_Float;
6045       end if;
6046
6047       --  Common processing for integer cases and floating-point cases.
6048       --  If we are in the right type, we can call runtime routine directly
6049
6050       if Typ = Etyp
6051         and then Rtyp /= Universal_Integer
6052         and then Rtyp /= Universal_Real
6053       then
6054          Rewrite (N,
6055            Make_Function_Call (Loc,
6056              Name => New_Reference_To (RTE (Rent), Loc),
6057              Parameter_Associations => New_List (Base, Exp)));
6058
6059       --  Otherwise we have to introduce conversions (conversions are also
6060       --  required in the universal cases, since the runtime routine is
6061       --  typed using one of the standard types).
6062
6063       else
6064          Rewrite (N,
6065            Convert_To (Typ,
6066              Make_Function_Call (Loc,
6067                Name => New_Reference_To (RTE (Rent), Loc),
6068                Parameter_Associations => New_List (
6069                  Convert_To (Etyp, Base),
6070                  Exp))));
6071       end if;
6072
6073       Analyze_And_Resolve (N, Typ);
6074       return;
6075
6076    exception
6077       when RE_Not_Available =>
6078          return;
6079    end Expand_N_Op_Expon;
6080
6081    --------------------
6082    -- Expand_N_Op_Ge --
6083    --------------------
6084
6085    procedure Expand_N_Op_Ge (N : Node_Id) is
6086       Typ  : constant Entity_Id := Etype (N);
6087       Op1  : constant Node_Id   := Left_Opnd (N);
6088       Op2  : constant Node_Id   := Right_Opnd (N);
6089       Typ1 : constant Entity_Id := Base_Type (Etype (Op1));
6090
6091    begin
6092       Binary_Op_Validity_Checks (N);
6093
6094       if Is_Array_Type (Typ1) then
6095          Expand_Array_Comparison (N);
6096          return;
6097       end if;
6098
6099       if Is_Boolean_Type (Typ1) then
6100          Adjust_Condition (Op1);
6101          Adjust_Condition (Op2);
6102          Set_Etype (N, Standard_Boolean);
6103          Adjust_Result_Type (N, Typ);
6104       end if;
6105
6106       Rewrite_Comparison (N);
6107
6108       --  If we still have comparison, and Vax_Float type, process it
6109
6110       if Vax_Float (Typ1) and then Nkind (N) in N_Op_Compare then
6111          Expand_Vax_Comparison (N);
6112          return;
6113       end if;
6114    end Expand_N_Op_Ge;
6115
6116    --------------------
6117    -- Expand_N_Op_Gt --
6118    --------------------
6119
6120    procedure Expand_N_Op_Gt (N : Node_Id) is
6121       Typ  : constant Entity_Id := Etype (N);
6122       Op1  : constant Node_Id   := Left_Opnd (N);
6123       Op2  : constant Node_Id   := Right_Opnd (N);
6124       Typ1 : constant Entity_Id := Base_Type (Etype (Op1));
6125
6126    begin
6127       Binary_Op_Validity_Checks (N);
6128
6129       if Is_Array_Type (Typ1) then
6130          Expand_Array_Comparison (N);
6131          return;
6132       end if;
6133
6134       if Is_Boolean_Type (Typ1) then
6135          Adjust_Condition (Op1);
6136          Adjust_Condition (Op2);
6137          Set_Etype (N, Standard_Boolean);
6138          Adjust_Result_Type (N, Typ);
6139       end if;
6140
6141       Rewrite_Comparison (N);
6142
6143       --  If we still have comparison, and Vax_Float type, process it
6144
6145       if Vax_Float (Typ1) and then Nkind (N) in N_Op_Compare then
6146          Expand_Vax_Comparison (N);
6147          return;
6148       end if;
6149    end Expand_N_Op_Gt;
6150
6151    --------------------
6152    -- Expand_N_Op_Le --
6153    --------------------
6154
6155    procedure Expand_N_Op_Le (N : Node_Id) is
6156       Typ  : constant Entity_Id := Etype (N);
6157       Op1  : constant Node_Id   := Left_Opnd (N);
6158       Op2  : constant Node_Id   := Right_Opnd (N);
6159       Typ1 : constant Entity_Id := Base_Type (Etype (Op1));
6160
6161    begin
6162       Binary_Op_Validity_Checks (N);
6163
6164       if Is_Array_Type (Typ1) then
6165          Expand_Array_Comparison (N);
6166          return;
6167       end if;
6168
6169       if Is_Boolean_Type (Typ1) then
6170          Adjust_Condition (Op1);
6171          Adjust_Condition (Op2);
6172          Set_Etype (N, Standard_Boolean);
6173          Adjust_Result_Type (N, Typ);
6174       end if;
6175
6176       Rewrite_Comparison (N);
6177
6178       --  If we still have comparison, and Vax_Float type, process it
6179
6180       if Vax_Float (Typ1) and then Nkind (N) in N_Op_Compare then
6181          Expand_Vax_Comparison (N);
6182          return;
6183       end if;
6184    end Expand_N_Op_Le;
6185
6186    --------------------
6187    -- Expand_N_Op_Lt --
6188    --------------------
6189
6190    procedure Expand_N_Op_Lt (N : Node_Id) is
6191       Typ  : constant Entity_Id := Etype (N);
6192       Op1  : constant Node_Id   := Left_Opnd (N);
6193       Op2  : constant Node_Id   := Right_Opnd (N);
6194       Typ1 : constant Entity_Id := Base_Type (Etype (Op1));
6195
6196    begin
6197       Binary_Op_Validity_Checks (N);
6198
6199       if Is_Array_Type (Typ1) then
6200          Expand_Array_Comparison (N);
6201          return;
6202       end if;
6203
6204       if Is_Boolean_Type (Typ1) then
6205          Adjust_Condition (Op1);
6206          Adjust_Condition (Op2);
6207          Set_Etype (N, Standard_Boolean);
6208          Adjust_Result_Type (N, Typ);
6209       end if;
6210
6211       Rewrite_Comparison (N);
6212
6213       --  If we still have comparison, and Vax_Float type, process it
6214
6215       if Vax_Float (Typ1) and then Nkind (N) in N_Op_Compare then
6216          Expand_Vax_Comparison (N);
6217          return;
6218       end if;
6219    end Expand_N_Op_Lt;
6220
6221    -----------------------
6222    -- Expand_N_Op_Minus --
6223    -----------------------
6224
6225    procedure Expand_N_Op_Minus (N : Node_Id) is
6226       Loc : constant Source_Ptr := Sloc (N);
6227       Typ : constant Entity_Id  := Etype (N);
6228
6229    begin
6230       Unary_Op_Validity_Checks (N);
6231
6232       if not Backend_Overflow_Checks_On_Target
6233          and then Is_Signed_Integer_Type (Etype (N))
6234          and then Do_Overflow_Check (N)
6235       then
6236          --  Software overflow checking expands -expr into (0 - expr)
6237
6238          Rewrite (N,
6239            Make_Op_Subtract (Loc,
6240              Left_Opnd  => Make_Integer_Literal (Loc, 0),
6241              Right_Opnd => Right_Opnd (N)));
6242
6243          Analyze_And_Resolve (N, Typ);
6244
6245       --  Vax floating-point types case
6246
6247       elsif Vax_Float (Etype (N)) then
6248          Expand_Vax_Arith (N);
6249       end if;
6250    end Expand_N_Op_Minus;
6251
6252    ---------------------
6253    -- Expand_N_Op_Mod --
6254    ---------------------
6255
6256    procedure Expand_N_Op_Mod (N : Node_Id) is
6257       Loc   : constant Source_Ptr := Sloc (N);
6258       Typ   : constant Entity_Id  := Etype (N);
6259       Left  : constant Node_Id    := Left_Opnd (N);
6260       Right : constant Node_Id    := Right_Opnd (N);
6261       DOC   : constant Boolean    := Do_Overflow_Check (N);
6262       DDC   : constant Boolean    := Do_Division_Check (N);
6263
6264       LLB : Uint;
6265       Llo : Uint;
6266       Lhi : Uint;
6267       LOK : Boolean;
6268       Rlo : Uint;
6269       Rhi : Uint;
6270       ROK : Boolean;
6271
6272       pragma Warnings (Off, Lhi);
6273
6274    begin
6275       Binary_Op_Validity_Checks (N);
6276
6277       Determine_Range (Right, ROK, Rlo, Rhi);
6278       Determine_Range (Left,  LOK, Llo, Lhi);
6279
6280       --  Convert mod to rem if operands are known non-negative. We do this
6281       --  since it is quite likely that this will improve the quality of code,
6282       --  (the operation now corresponds to the hardware remainder), and it
6283       --  does not seem likely that it could be harmful.
6284
6285       if LOK and then Llo >= 0
6286            and then
6287          ROK and then Rlo >= 0
6288       then
6289          Rewrite (N,
6290            Make_Op_Rem (Sloc (N),
6291              Left_Opnd  => Left_Opnd (N),
6292              Right_Opnd => Right_Opnd (N)));
6293
6294          --  Instead of reanalyzing the node we do the analysis manually. This
6295          --  avoids anomalies when the replacement is done in an instance and
6296          --  is epsilon more efficient.
6297
6298          Set_Entity            (N, Standard_Entity (S_Op_Rem));
6299          Set_Etype             (N, Typ);
6300          Set_Do_Overflow_Check (N, DOC);
6301          Set_Do_Division_Check (N, DDC);
6302          Expand_N_Op_Rem (N);
6303          Set_Analyzed (N);
6304
6305       --  Otherwise, normal mod processing
6306
6307       else
6308          if Is_Integer_Type (Etype (N)) then
6309             Apply_Divide_Check (N);
6310          end if;
6311
6312          --  Apply optimization x mod 1 = 0. We don't really need that with
6313          --  gcc, but it is useful with other back ends (e.g. AAMP), and is
6314          --  certainly harmless.
6315
6316          if Is_Integer_Type (Etype (N))
6317            and then Compile_Time_Known_Value (Right)
6318            and then Expr_Value (Right) = Uint_1
6319          then
6320             --  Call Remove_Side_Effects to ensure that any side effects in
6321             --  the ignored left operand (in particular function calls to
6322             --  user defined functions) are properly executed.
6323
6324             Remove_Side_Effects (Left);
6325
6326             Rewrite (N, Make_Integer_Literal (Loc, 0));
6327             Analyze_And_Resolve (N, Typ);
6328             return;
6329          end if;
6330
6331          --  Deal with annoying case of largest negative number remainder
6332          --  minus one. Gigi does not handle this case correctly, because
6333          --  it generates a divide instruction which may trap in this case.
6334
6335          --  In fact the check is quite easy, if the right operand is -1, then
6336          --  the mod value is always 0, and we can just ignore the left operand
6337          --  completely in this case.
6338
6339          --  The operand type may be private (e.g. in the expansion of an
6340          --  intrinsic operation) so we must use the underlying type to get the
6341          --  bounds, and convert the literals explicitly.
6342
6343          LLB :=
6344            Expr_Value
6345              (Type_Low_Bound (Base_Type (Underlying_Type (Etype (Left)))));
6346
6347          if ((not ROK) or else (Rlo <= (-1) and then (-1) <= Rhi))
6348            and then
6349             ((not LOK) or else (Llo = LLB))
6350          then
6351             Rewrite (N,
6352               Make_Conditional_Expression (Loc,
6353                 Expressions => New_List (
6354                   Make_Op_Eq (Loc,
6355                     Left_Opnd => Duplicate_Subexpr (Right),
6356                     Right_Opnd =>
6357                       Unchecked_Convert_To (Typ,
6358                         Make_Integer_Literal (Loc, -1))),
6359                   Unchecked_Convert_To (Typ,
6360                     Make_Integer_Literal (Loc, Uint_0)),
6361                   Relocate_Node (N))));
6362
6363             Set_Analyzed (Next (Next (First (Expressions (N)))));
6364             Analyze_And_Resolve (N, Typ);
6365          end if;
6366       end if;
6367    end Expand_N_Op_Mod;
6368
6369    --------------------------
6370    -- Expand_N_Op_Multiply --
6371    --------------------------
6372
6373    procedure Expand_N_Op_Multiply (N : Node_Id) is
6374       Loc : constant Source_Ptr := Sloc (N);
6375       Lop : constant Node_Id    := Left_Opnd (N);
6376       Rop : constant Node_Id    := Right_Opnd (N);
6377
6378       Lp2 : constant Boolean :=
6379               Nkind (Lop) = N_Op_Expon
6380                 and then Is_Power_Of_2_For_Shift (Lop);
6381
6382       Rp2 : constant Boolean :=
6383               Nkind (Rop) = N_Op_Expon
6384                 and then Is_Power_Of_2_For_Shift (Rop);
6385
6386       Ltyp : constant Entity_Id  := Etype (Lop);
6387       Rtyp : constant Entity_Id  := Etype (Rop);
6388       Typ  : Entity_Id           := Etype (N);
6389
6390    begin
6391       Binary_Op_Validity_Checks (N);
6392
6393       --  Special optimizations for integer types
6394
6395       if Is_Integer_Type (Typ) then
6396
6397          --  N * 0 = 0 for integer types
6398
6399          if Compile_Time_Known_Value (Rop)
6400            and then Expr_Value (Rop) = Uint_0
6401          then
6402             --  Call Remove_Side_Effects to ensure that any side effects in
6403             --  the ignored left operand (in particular function calls to
6404             --  user defined functions) are properly executed.
6405
6406             Remove_Side_Effects (Lop);
6407
6408             Rewrite (N, Make_Integer_Literal (Loc, Uint_0));
6409             Analyze_And_Resolve (N, Typ);
6410             return;
6411          end if;
6412
6413          --  Similar handling for 0 * N = 0
6414
6415          if Compile_Time_Known_Value (Lop)
6416            and then Expr_Value (Lop) = Uint_0
6417          then
6418             Remove_Side_Effects (Rop);
6419             Rewrite (N, Make_Integer_Literal (Loc, Uint_0));
6420             Analyze_And_Resolve (N, Typ);
6421             return;
6422          end if;
6423
6424          --  N * 1 = 1 * N = N for integer types
6425
6426          --  This optimisation is not done if we are going to
6427          --  rewrite the product 1 * 2 ** N to a shift.
6428
6429          if Compile_Time_Known_Value (Rop)
6430            and then Expr_Value (Rop) = Uint_1
6431            and then not Lp2
6432          then
6433             Rewrite (N, Lop);
6434             return;
6435
6436          elsif Compile_Time_Known_Value (Lop)
6437            and then Expr_Value (Lop) = Uint_1
6438            and then not Rp2
6439          then
6440             Rewrite (N, Rop);
6441             return;
6442          end if;
6443       end if;
6444
6445       --  Convert x * 2 ** y to Shift_Left (x, y). Note that the fact that
6446       --  Is_Power_Of_2_For_Shift is set means that we know that our left
6447       --  operand is an integer, as required for this to work.
6448
6449       if Rp2 then
6450          if Lp2 then
6451
6452             --  Convert 2 ** A * 2 ** B into  2 ** (A + B)
6453
6454             Rewrite (N,
6455               Make_Op_Expon (Loc,
6456                 Left_Opnd => Make_Integer_Literal (Loc, 2),
6457                 Right_Opnd =>
6458                   Make_Op_Add (Loc,
6459                     Left_Opnd  => Right_Opnd (Lop),
6460                     Right_Opnd => Right_Opnd (Rop))));
6461             Analyze_And_Resolve (N, Typ);
6462             return;
6463
6464          else
6465             Rewrite (N,
6466               Make_Op_Shift_Left (Loc,
6467                 Left_Opnd  => Lop,
6468                 Right_Opnd =>
6469                   Convert_To (Standard_Natural, Right_Opnd (Rop))));
6470             Analyze_And_Resolve (N, Typ);
6471             return;
6472          end if;
6473
6474       --  Same processing for the operands the other way round
6475
6476       elsif Lp2 then
6477          Rewrite (N,
6478            Make_Op_Shift_Left (Loc,
6479              Left_Opnd  => Rop,
6480              Right_Opnd =>
6481                Convert_To (Standard_Natural, Right_Opnd (Lop))));
6482          Analyze_And_Resolve (N, Typ);
6483          return;
6484       end if;
6485
6486       --  Do required fixup of universal fixed operation
6487
6488       if Typ = Universal_Fixed then
6489          Fixup_Universal_Fixed_Operation (N);
6490          Typ := Etype (N);
6491       end if;
6492
6493       --  Multiplications with fixed-point results
6494
6495       if Is_Fixed_Point_Type (Typ) then
6496
6497          --  No special processing if Treat_Fixed_As_Integer is set, since from
6498          --  a semantic point of view such operations are simply integer
6499          --  operations and will be treated that way.
6500
6501          if not Treat_Fixed_As_Integer (N) then
6502
6503             --  Case of fixed * integer => fixed
6504
6505             if Is_Integer_Type (Rtyp) then
6506                Expand_Multiply_Fixed_By_Integer_Giving_Fixed (N);
6507
6508             --  Case of integer * fixed => fixed
6509
6510             elsif Is_Integer_Type (Ltyp) then
6511                Expand_Multiply_Integer_By_Fixed_Giving_Fixed (N);
6512
6513             --  Case of fixed * fixed => fixed
6514
6515             else
6516                Expand_Multiply_Fixed_By_Fixed_Giving_Fixed (N);
6517             end if;
6518          end if;
6519
6520       --  Other cases of multiplication of fixed-point operands. Again we
6521       --  exclude the cases where Treat_Fixed_As_Integer flag is set.
6522
6523       elsif (Is_Fixed_Point_Type (Ltyp) or else Is_Fixed_Point_Type (Rtyp))
6524         and then not Treat_Fixed_As_Integer (N)
6525       then
6526          if Is_Integer_Type (Typ) then
6527             Expand_Multiply_Fixed_By_Fixed_Giving_Integer (N);
6528          else
6529             pragma Assert (Is_Floating_Point_Type (Typ));
6530             Expand_Multiply_Fixed_By_Fixed_Giving_Float (N);
6531          end if;
6532
6533       --  Mixed-mode operations can appear in a non-static universal context,
6534       --  in which case the integer argument must be converted explicitly.
6535
6536       elsif Typ = Universal_Real
6537         and then Is_Integer_Type (Rtyp)
6538       then
6539          Rewrite (Rop, Convert_To (Universal_Real, Relocate_Node (Rop)));
6540
6541          Analyze_And_Resolve (Rop, Universal_Real);
6542
6543       elsif Typ = Universal_Real
6544         and then Is_Integer_Type (Ltyp)
6545       then
6546          Rewrite (Lop, Convert_To (Universal_Real, Relocate_Node (Lop)));
6547
6548          Analyze_And_Resolve (Lop, Universal_Real);
6549
6550       --  Non-fixed point cases, check software overflow checking required
6551
6552       elsif Is_Signed_Integer_Type (Etype (N)) then
6553          Apply_Arithmetic_Overflow_Check (N);
6554
6555       --  Deal with VAX float case
6556
6557       elsif Vax_Float (Typ) then
6558          Expand_Vax_Arith (N);
6559          return;
6560       end if;
6561    end Expand_N_Op_Multiply;
6562
6563    --------------------
6564    -- Expand_N_Op_Ne --
6565    --------------------
6566
6567    procedure Expand_N_Op_Ne (N : Node_Id) is
6568       Typ : constant Entity_Id := Etype (Left_Opnd (N));
6569
6570    begin
6571       --  Case of elementary type with standard operator
6572
6573       if Is_Elementary_Type (Typ)
6574         and then Sloc (Entity (N)) = Standard_Location
6575       then
6576          Binary_Op_Validity_Checks (N);
6577
6578          --  Boolean types (requiring handling of non-standard case)
6579
6580          if Is_Boolean_Type (Typ) then
6581             Adjust_Condition (Left_Opnd (N));
6582             Adjust_Condition (Right_Opnd (N));
6583             Set_Etype (N, Standard_Boolean);
6584             Adjust_Result_Type (N, Typ);
6585          end if;
6586
6587          Rewrite_Comparison (N);
6588
6589          --  If we still have comparison for Vax_Float, process it
6590
6591          if Vax_Float (Typ) and then Nkind (N) in N_Op_Compare  then
6592             Expand_Vax_Comparison (N);
6593             return;
6594          end if;
6595
6596       --  For all cases other than elementary types, we rewrite node as the
6597       --  negation of an equality operation, and reanalyze. The equality to be
6598       --  used is defined in the same scope and has the same signature. This
6599       --  signature must be set explicitly since in an instance it may not have
6600       --  the same visibility as in the generic unit. This avoids duplicating
6601       --  or factoring the complex code for record/array equality tests etc.
6602
6603       else
6604          declare
6605             Loc : constant Source_Ptr := Sloc (N);
6606             Neg : Node_Id;
6607             Ne  : constant Entity_Id := Entity (N);
6608
6609          begin
6610             Binary_Op_Validity_Checks (N);
6611
6612             Neg :=
6613               Make_Op_Not (Loc,
6614                 Right_Opnd =>
6615                   Make_Op_Eq (Loc,
6616                     Left_Opnd =>  Left_Opnd (N),
6617                     Right_Opnd => Right_Opnd (N)));
6618             Set_Paren_Count (Right_Opnd (Neg), 1);
6619
6620             if Scope (Ne) /= Standard_Standard then
6621                Set_Entity (Right_Opnd (Neg), Corresponding_Equality (Ne));
6622             end if;
6623
6624             --  For navigation purposes, the inequality is treated as an
6625             --  implicit reference to the corresponding equality. Preserve the
6626             --  Comes_From_ source flag so that the proper Xref entry is
6627             --  generated.
6628
6629             Preserve_Comes_From_Source (Neg, N);
6630             Preserve_Comes_From_Source (Right_Opnd (Neg), N);
6631             Rewrite (N, Neg);
6632             Analyze_And_Resolve (N, Standard_Boolean);
6633          end;
6634       end if;
6635    end Expand_N_Op_Ne;
6636
6637    ---------------------
6638    -- Expand_N_Op_Not --
6639    ---------------------
6640
6641    --  If the argument is other than a Boolean array type, there is no special
6642    --  expansion required.
6643
6644    --  For the packed case, we call the special routine in Exp_Pakd, except
6645    --  that if the component size is greater than one, we use the standard
6646    --  routine generating a gruesome loop (it is so peculiar to have packed
6647    --  arrays with non-standard Boolean representations anyway, so it does not
6648    --  matter that we do not handle this case efficiently).
6649
6650    --  For the unpacked case (and for the special packed case where we have non
6651    --  standard Booleans, as discussed above), we generate and insert into the
6652    --  tree the following function definition:
6653
6654    --     function Nnnn (A : arr) is
6655    --       B : arr;
6656    --     begin
6657    --       for J in a'range loop
6658    --          B (J) := not A (J);
6659    --       end loop;
6660    --       return B;
6661    --     end Nnnn;
6662
6663    --  Here arr is the actual subtype of the parameter (and hence always
6664    --  constrained). Then we replace the not with a call to this function.
6665
6666    procedure Expand_N_Op_Not (N : Node_Id) is
6667       Loc  : constant Source_Ptr := Sloc (N);
6668       Typ  : constant Entity_Id  := Etype (N);
6669       Opnd : Node_Id;
6670       Arr  : Entity_Id;
6671       A    : Entity_Id;
6672       B    : Entity_Id;
6673       J    : Entity_Id;
6674       A_J  : Node_Id;
6675       B_J  : Node_Id;
6676
6677       Func_Name      : Entity_Id;
6678       Loop_Statement : Node_Id;
6679
6680    begin
6681       Unary_Op_Validity_Checks (N);
6682
6683       --  For boolean operand, deal with non-standard booleans
6684
6685       if Is_Boolean_Type (Typ) then
6686          Adjust_Condition (Right_Opnd (N));
6687          Set_Etype (N, Standard_Boolean);
6688          Adjust_Result_Type (N, Typ);
6689          return;
6690       end if;
6691
6692       --  Only array types need any other processing
6693
6694       if not Is_Array_Type (Typ) then
6695          return;
6696       end if;
6697
6698       --  Case of array operand. If bit packed with a component size of 1,
6699       --  handle it in Exp_Pakd if the operand is known to be aligned.
6700
6701       if Is_Bit_Packed_Array (Typ)
6702         and then Component_Size (Typ) = 1
6703         and then not Is_Possibly_Unaligned_Object (Right_Opnd (N))
6704       then
6705          Expand_Packed_Not (N);
6706          return;
6707       end if;
6708
6709       --  Case of array operand which is not bit-packed. If the context is
6710       --  a safe assignment, call in-place operation, If context is a larger
6711       --  boolean expression in the context of a safe assignment, expansion is
6712       --  done by enclosing operation.
6713
6714       Opnd := Relocate_Node (Right_Opnd (N));
6715       Convert_To_Actual_Subtype (Opnd);
6716       Arr := Etype (Opnd);
6717       Ensure_Defined (Arr, N);
6718       Silly_Boolean_Array_Not_Test (N, Arr);
6719
6720       if Nkind (Parent (N)) = N_Assignment_Statement then
6721          if Safe_In_Place_Array_Op (Name (Parent (N)), N, Empty) then
6722             Build_Boolean_Array_Proc_Call (Parent (N), Opnd, Empty);
6723             return;
6724
6725          --  Special case the negation of a binary operation
6726
6727          elsif Nkind_In (Opnd, N_Op_And, N_Op_Or, N_Op_Xor)
6728            and then Safe_In_Place_Array_Op
6729                       (Name (Parent (N)), Left_Opnd (Opnd), Right_Opnd (Opnd))
6730          then
6731             Build_Boolean_Array_Proc_Call (Parent (N), Opnd, Empty);
6732             return;
6733          end if;
6734
6735       elsif Nkind (Parent (N)) in N_Binary_Op
6736         and then Nkind (Parent (Parent (N))) = N_Assignment_Statement
6737       then
6738          declare
6739             Op1 : constant Node_Id := Left_Opnd  (Parent (N));
6740             Op2 : constant Node_Id := Right_Opnd (Parent (N));
6741             Lhs : constant Node_Id := Name (Parent (Parent (N)));
6742
6743          begin
6744             if Safe_In_Place_Array_Op (Lhs, Op1, Op2) then
6745                if N = Op1
6746                  and then Nkind (Op2) = N_Op_Not
6747                then
6748                   --  (not A) op (not B) can be reduced to a single call
6749
6750                   return;
6751
6752                elsif N = Op2
6753                  and then Nkind (Parent (N)) = N_Op_Xor
6754                then
6755                   --  A xor (not B) can also be special-cased
6756
6757                   return;
6758                end if;
6759             end if;
6760          end;
6761       end if;
6762
6763       A := Make_Defining_Identifier (Loc, Name_uA);
6764       B := Make_Defining_Identifier (Loc, Name_uB);
6765       J := Make_Defining_Identifier (Loc, Name_uJ);
6766
6767       A_J :=
6768         Make_Indexed_Component (Loc,
6769           Prefix      => New_Reference_To (A, Loc),
6770           Expressions => New_List (New_Reference_To (J, Loc)));
6771
6772       B_J :=
6773         Make_Indexed_Component (Loc,
6774           Prefix      => New_Reference_To (B, Loc),
6775           Expressions => New_List (New_Reference_To (J, Loc)));
6776
6777       Loop_Statement :=
6778         Make_Implicit_Loop_Statement (N,
6779           Identifier => Empty,
6780
6781           Iteration_Scheme =>
6782             Make_Iteration_Scheme (Loc,
6783               Loop_Parameter_Specification =>
6784                 Make_Loop_Parameter_Specification (Loc,
6785                   Defining_Identifier => J,
6786                   Discrete_Subtype_Definition =>
6787                     Make_Attribute_Reference (Loc,
6788                       Prefix => Make_Identifier (Loc, Chars (A)),
6789                       Attribute_Name => Name_Range))),
6790
6791           Statements => New_List (
6792             Make_Assignment_Statement (Loc,
6793               Name       => B_J,
6794               Expression => Make_Op_Not (Loc, A_J))));
6795
6796       Func_Name := Make_Defining_Identifier (Loc, New_Internal_Name ('N'));
6797       Set_Is_Inlined (Func_Name);
6798
6799       Insert_Action (N,
6800         Make_Subprogram_Body (Loc,
6801           Specification =>
6802             Make_Function_Specification (Loc,
6803               Defining_Unit_Name => Func_Name,
6804               Parameter_Specifications => New_List (
6805                 Make_Parameter_Specification (Loc,
6806                   Defining_Identifier => A,
6807                   Parameter_Type      => New_Reference_To (Typ, Loc))),
6808               Result_Definition => New_Reference_To (Typ, Loc)),
6809
6810           Declarations => New_List (
6811             Make_Object_Declaration (Loc,
6812               Defining_Identifier => B,
6813               Object_Definition   => New_Reference_To (Arr, Loc))),
6814
6815           Handled_Statement_Sequence =>
6816             Make_Handled_Sequence_Of_Statements (Loc,
6817               Statements => New_List (
6818                 Loop_Statement,
6819                 Make_Simple_Return_Statement (Loc,
6820                   Expression =>
6821                     Make_Identifier (Loc, Chars (B)))))));
6822
6823       Rewrite (N,
6824         Make_Function_Call (Loc,
6825           Name => New_Reference_To (Func_Name, Loc),
6826           Parameter_Associations => New_List (Opnd)));
6827
6828       Analyze_And_Resolve (N, Typ);
6829    end Expand_N_Op_Not;
6830
6831    --------------------
6832    -- Expand_N_Op_Or --
6833    --------------------
6834
6835    procedure Expand_N_Op_Or (N : Node_Id) is
6836       Typ : constant Entity_Id := Etype (N);
6837
6838    begin
6839       Binary_Op_Validity_Checks (N);
6840
6841       if Is_Array_Type (Etype (N)) then
6842          Expand_Boolean_Operator (N);
6843
6844       elsif Is_Boolean_Type (Etype (N)) then
6845          Adjust_Condition (Left_Opnd (N));
6846          Adjust_Condition (Right_Opnd (N));
6847          Set_Etype (N, Standard_Boolean);
6848          Adjust_Result_Type (N, Typ);
6849       end if;
6850    end Expand_N_Op_Or;
6851
6852    ----------------------
6853    -- Expand_N_Op_Plus --
6854    ----------------------
6855
6856    procedure Expand_N_Op_Plus (N : Node_Id) is
6857    begin
6858       Unary_Op_Validity_Checks (N);
6859    end Expand_N_Op_Plus;
6860
6861    ---------------------
6862    -- Expand_N_Op_Rem --
6863    ---------------------
6864
6865    procedure Expand_N_Op_Rem (N : Node_Id) is
6866       Loc : constant Source_Ptr := Sloc (N);
6867       Typ : constant Entity_Id  := Etype (N);
6868
6869       Left  : constant Node_Id := Left_Opnd (N);
6870       Right : constant Node_Id := Right_Opnd (N);
6871
6872       LLB : Uint;
6873       Llo : Uint;
6874       Lhi : Uint;
6875       LOK : Boolean;
6876       Rlo : Uint;
6877       Rhi : Uint;
6878       ROK : Boolean;
6879
6880       pragma Warnings (Off, Lhi);
6881
6882    begin
6883       Binary_Op_Validity_Checks (N);
6884
6885       if Is_Integer_Type (Etype (N)) then
6886          Apply_Divide_Check (N);
6887       end if;
6888
6889       --  Apply optimization x rem 1 = 0. We don't really need that with gcc,
6890       --  but it is useful with other back ends (e.g. AAMP), and is certainly
6891       --  harmless.
6892
6893       if Is_Integer_Type (Etype (N))
6894         and then Compile_Time_Known_Value (Right)
6895         and then Expr_Value (Right) = Uint_1
6896       then
6897          --  Call Remove_Side_Effects to ensure that any side effects in the
6898          --  ignored left operand (in particular function calls to user defined
6899          --  functions) are properly executed.
6900
6901          Remove_Side_Effects (Left);
6902
6903          Rewrite (N, Make_Integer_Literal (Loc, 0));
6904          Analyze_And_Resolve (N, Typ);
6905          return;
6906       end if;
6907
6908       --  Deal with annoying case of largest negative number remainder minus
6909       --  one. Gigi does not handle this case correctly, because it generates
6910       --  a divide instruction which may trap in this case.
6911
6912       --  In fact the check is quite easy, if the right operand is -1, then
6913       --  the remainder is always 0, and we can just ignore the left operand
6914       --  completely in this case.
6915
6916       Determine_Range (Right, ROK, Rlo, Rhi);
6917       Determine_Range (Left, LOK, Llo, Lhi);
6918
6919       --  The operand type may be private (e.g. in the expansion of an
6920       --  intrinsic operation) so we must use the underlying type to get the
6921       --  bounds, and convert the literals explicitly.
6922
6923       LLB :=
6924         Expr_Value
6925           (Type_Low_Bound (Base_Type (Underlying_Type (Etype (Left)))));
6926
6927       --  Now perform the test, generating code only if needed
6928
6929       if ((not ROK) or else (Rlo <= (-1) and then (-1) <= Rhi))
6930         and then
6931          ((not LOK) or else (Llo = LLB))
6932       then
6933          Rewrite (N,
6934            Make_Conditional_Expression (Loc,
6935              Expressions => New_List (
6936                Make_Op_Eq (Loc,
6937                  Left_Opnd => Duplicate_Subexpr (Right),
6938                  Right_Opnd =>
6939                    Unchecked_Convert_To (Typ,
6940                      Make_Integer_Literal (Loc, -1))),
6941
6942                Unchecked_Convert_To (Typ,
6943                  Make_Integer_Literal (Loc, Uint_0)),
6944
6945                Relocate_Node (N))));
6946
6947          Set_Analyzed (Next (Next (First (Expressions (N)))));
6948          Analyze_And_Resolve (N, Typ);
6949       end if;
6950    end Expand_N_Op_Rem;
6951
6952    -----------------------------
6953    -- Expand_N_Op_Rotate_Left --
6954    -----------------------------
6955
6956    procedure Expand_N_Op_Rotate_Left (N : Node_Id) is
6957    begin
6958       Binary_Op_Validity_Checks (N);
6959    end Expand_N_Op_Rotate_Left;
6960
6961    ------------------------------
6962    -- Expand_N_Op_Rotate_Right --
6963    ------------------------------
6964
6965    procedure Expand_N_Op_Rotate_Right (N : Node_Id) is
6966    begin
6967       Binary_Op_Validity_Checks (N);
6968    end Expand_N_Op_Rotate_Right;
6969
6970    ----------------------------
6971    -- Expand_N_Op_Shift_Left --
6972    ----------------------------
6973
6974    procedure Expand_N_Op_Shift_Left (N : Node_Id) is
6975    begin
6976       Binary_Op_Validity_Checks (N);
6977    end Expand_N_Op_Shift_Left;
6978
6979    -----------------------------
6980    -- Expand_N_Op_Shift_Right --
6981    -----------------------------
6982
6983    procedure Expand_N_Op_Shift_Right (N : Node_Id) is
6984    begin
6985       Binary_Op_Validity_Checks (N);
6986    end Expand_N_Op_Shift_Right;
6987
6988    ----------------------------------------
6989    -- Expand_N_Op_Shift_Right_Arithmetic --
6990    ----------------------------------------
6991
6992    procedure Expand_N_Op_Shift_Right_Arithmetic (N : Node_Id) is
6993    begin
6994       Binary_Op_Validity_Checks (N);
6995    end Expand_N_Op_Shift_Right_Arithmetic;
6996
6997    --------------------------
6998    -- Expand_N_Op_Subtract --
6999    --------------------------
7000
7001    procedure Expand_N_Op_Subtract (N : Node_Id) is
7002       Typ : constant Entity_Id := Etype (N);
7003
7004    begin
7005       Binary_Op_Validity_Checks (N);
7006
7007       --  N - 0 = N for integer types
7008
7009       if Is_Integer_Type (Typ)
7010         and then Compile_Time_Known_Value (Right_Opnd (N))
7011         and then Expr_Value (Right_Opnd (N)) = 0
7012       then
7013          Rewrite (N, Left_Opnd (N));
7014          return;
7015       end if;
7016
7017       --  Arithmetic overflow checks for signed integer/fixed point types
7018
7019       if Is_Signed_Integer_Type (Typ)
7020         or else Is_Fixed_Point_Type (Typ)
7021       then
7022          Apply_Arithmetic_Overflow_Check (N);
7023
7024       --  Vax floating-point types case
7025
7026       elsif Vax_Float (Typ) then
7027          Expand_Vax_Arith (N);
7028       end if;
7029    end Expand_N_Op_Subtract;
7030
7031    ---------------------
7032    -- Expand_N_Op_Xor --
7033    ---------------------
7034
7035    procedure Expand_N_Op_Xor (N : Node_Id) is
7036       Typ : constant Entity_Id := Etype (N);
7037
7038    begin
7039       Binary_Op_Validity_Checks (N);
7040
7041       if Is_Array_Type (Etype (N)) then
7042          Expand_Boolean_Operator (N);
7043
7044       elsif Is_Boolean_Type (Etype (N)) then
7045          Adjust_Condition (Left_Opnd (N));
7046          Adjust_Condition (Right_Opnd (N));
7047          Set_Etype (N, Standard_Boolean);
7048          Adjust_Result_Type (N, Typ);
7049       end if;
7050    end Expand_N_Op_Xor;
7051
7052    ----------------------
7053    -- Expand_N_Or_Else --
7054    ----------------------
7055
7056    --  Expand into conditional expression if Actions present, and also
7057    --  deal with optimizing case of arguments being True or False.
7058
7059    procedure Expand_N_Or_Else (N : Node_Id) is
7060       Loc     : constant Source_Ptr := Sloc (N);
7061       Typ     : constant Entity_Id  := Etype (N);
7062       Left    : constant Node_Id    := Left_Opnd (N);
7063       Right   : constant Node_Id    := Right_Opnd (N);
7064       Actlist : List_Id;
7065
7066    begin
7067       --  Deal with non-standard booleans
7068
7069       if Is_Boolean_Type (Typ) then
7070          Adjust_Condition (Left);
7071          Adjust_Condition (Right);
7072          Set_Etype (N, Standard_Boolean);
7073       end if;
7074
7075       --  Check for cases where left argument is known to be True or False
7076
7077       if Compile_Time_Known_Value (Left) then
7078
7079          --  If left argument is False, change (False or else Right) to Right.
7080          --  Any actions associated with Right will be executed unconditionally
7081          --  and can thus be inserted into the tree unconditionally.
7082
7083          if Expr_Value_E (Left) = Standard_False then
7084             if Present (Actions (N)) then
7085                Insert_Actions (N, Actions (N));
7086             end if;
7087
7088             Rewrite (N, Right);
7089
7090          --  If left argument is True, change (True and then Right) to True. In
7091          --  this case we can forget the actions associated with Right, since
7092          --  they will never be executed.
7093
7094          else pragma Assert (Expr_Value_E (Left) = Standard_True);
7095             Kill_Dead_Code (Right);
7096             Kill_Dead_Code (Actions (N));
7097             Rewrite (N, New_Occurrence_Of (Standard_True, Loc));
7098          end if;
7099
7100          Adjust_Result_Type (N, Typ);
7101          return;
7102       end if;
7103
7104       --  If Actions are present, we expand
7105
7106       --     left or else right
7107
7108       --  into
7109
7110       --     if left then True else right end
7111
7112       --  with the actions becoming the Else_Actions of the conditional
7113       --  expression. This conditional expression is then further expanded
7114       --  (and will eventually disappear)
7115
7116       if Present (Actions (N)) then
7117          Actlist := Actions (N);
7118          Rewrite (N,
7119             Make_Conditional_Expression (Loc,
7120               Expressions => New_List (
7121                 Left,
7122                 New_Occurrence_Of (Standard_True, Loc),
7123                 Right)));
7124
7125          Set_Else_Actions (N, Actlist);
7126          Analyze_And_Resolve (N, Standard_Boolean);
7127          Adjust_Result_Type (N, Typ);
7128          return;
7129       end if;
7130
7131       --  No actions present, check for cases of right argument True/False
7132
7133       if Compile_Time_Known_Value (Right) then
7134
7135          --  Change (Left or else False) to Left. Note that we know there are
7136          --  no actions associated with the True operand, since we just checked
7137          --  for this case above.
7138
7139          if Expr_Value_E (Right) = Standard_False then
7140             Rewrite (N, Left);
7141
7142          --  Change (Left or else True) to True, making sure to preserve any
7143          --  side effects associated with the Left operand.
7144
7145          else pragma Assert (Expr_Value_E (Right) = Standard_True);
7146             Remove_Side_Effects (Left);
7147             Rewrite
7148               (N, New_Occurrence_Of (Standard_True, Loc));
7149          end if;
7150       end if;
7151
7152       Adjust_Result_Type (N, Typ);
7153    end Expand_N_Or_Else;
7154
7155    -----------------------------------
7156    -- Expand_N_Qualified_Expression --
7157    -----------------------------------
7158
7159    procedure Expand_N_Qualified_Expression (N : Node_Id) is
7160       Operand     : constant Node_Id   := Expression (N);
7161       Target_Type : constant Entity_Id := Entity (Subtype_Mark (N));
7162
7163    begin
7164       --  Do validity check if validity checking operands
7165
7166       if Validity_Checks_On
7167         and then Validity_Check_Operands
7168       then
7169          Ensure_Valid (Operand);
7170       end if;
7171
7172       --  Apply possible constraint check
7173
7174       Apply_Constraint_Check (Operand, Target_Type, No_Sliding => True);
7175
7176       if Do_Range_Check (Operand) then
7177          Set_Do_Range_Check (Operand, False);
7178          Generate_Range_Check (Operand, Target_Type, CE_Range_Check_Failed);
7179       end if;
7180    end Expand_N_Qualified_Expression;
7181
7182    ---------------------------------
7183    -- Expand_N_Selected_Component --
7184    ---------------------------------
7185
7186    --  If the selector is a discriminant of a concurrent object, rewrite the
7187    --  prefix to denote the corresponding record type.
7188
7189    procedure Expand_N_Selected_Component (N : Node_Id) is
7190       Loc   : constant Source_Ptr := Sloc (N);
7191       Par   : constant Node_Id    := Parent (N);
7192       P     : constant Node_Id    := Prefix (N);
7193       Ptyp  : Entity_Id           := Underlying_Type (Etype (P));
7194       Disc  : Entity_Id;
7195       New_N : Node_Id;
7196       Dcon  : Elmt_Id;
7197
7198       function In_Left_Hand_Side (Comp : Node_Id) return Boolean;
7199       --  Gigi needs a temporary for prefixes that depend on a discriminant,
7200       --  unless the context of an assignment can provide size information.
7201       --  Don't we have a general routine that does this???
7202
7203       -----------------------
7204       -- In_Left_Hand_Side --
7205       -----------------------
7206
7207       function In_Left_Hand_Side (Comp : Node_Id) return Boolean is
7208       begin
7209          return (Nkind (Parent (Comp)) = N_Assignment_Statement
7210                    and then Comp = Name (Parent (Comp)))
7211            or else (Present (Parent (Comp))
7212                       and then Nkind (Parent (Comp)) in N_Subexpr
7213                       and then In_Left_Hand_Side (Parent (Comp)));
7214       end In_Left_Hand_Side;
7215
7216    --  Start of processing for Expand_N_Selected_Component
7217
7218    begin
7219       --  Insert explicit dereference if required
7220
7221       if Is_Access_Type (Ptyp) then
7222          Insert_Explicit_Dereference (P);
7223          Analyze_And_Resolve (P, Designated_Type (Ptyp));
7224
7225          if Ekind (Etype (P)) = E_Private_Subtype
7226            and then Is_For_Access_Subtype (Etype (P))
7227          then
7228             Set_Etype (P, Base_Type (Etype (P)));
7229          end if;
7230
7231          Ptyp := Etype (P);
7232       end if;
7233
7234       --  Deal with discriminant check required
7235
7236       if Do_Discriminant_Check (N) then
7237
7238          --  Present the discriminant checking function to the backend, so that
7239          --  it can inline the call to the function.
7240
7241          Add_Inlined_Body
7242            (Discriminant_Checking_Func
7243              (Original_Record_Component (Entity (Selector_Name (N)))));
7244
7245          --  Now reset the flag and generate the call
7246
7247          Set_Do_Discriminant_Check (N, False);
7248          Generate_Discriminant_Check (N);
7249       end if;
7250
7251       --  Ada 2005 (AI-318-02): If the prefix is a call to a build-in-place
7252       --  function, then additional actuals must be passed.
7253
7254       if Ada_Version >= Ada_05
7255         and then Is_Build_In_Place_Function_Call (P)
7256       then
7257          Make_Build_In_Place_Call_In_Anonymous_Context (P);
7258       end if;
7259
7260       --  Gigi cannot handle unchecked conversions that are the prefix of a
7261       --  selected component with discriminants. This must be checked during
7262       --  expansion, because during analysis the type of the selector is not
7263       --  known at the point the prefix is analyzed. If the conversion is the
7264       --  target of an assignment, then we cannot force the evaluation.
7265
7266       if Nkind (Prefix (N)) = N_Unchecked_Type_Conversion
7267         and then Has_Discriminants (Etype (N))
7268         and then not In_Left_Hand_Side (N)
7269       then
7270          Force_Evaluation (Prefix (N));
7271       end if;
7272
7273       --  Remaining processing applies only if selector is a discriminant
7274
7275       if Ekind (Entity (Selector_Name (N))) = E_Discriminant then
7276
7277          --  If the selector is a discriminant of a constrained record type,
7278          --  we may be able to rewrite the expression with the actual value
7279          --  of the discriminant, a useful optimization in some cases.
7280
7281          if Is_Record_Type (Ptyp)
7282            and then Has_Discriminants (Ptyp)
7283            and then Is_Constrained (Ptyp)
7284          then
7285             --  Do this optimization for discrete types only, and not for
7286             --  access types (access discriminants get us into trouble!)
7287
7288             if not Is_Discrete_Type (Etype (N)) then
7289                null;
7290
7291             --  Don't do this on the left hand of an assignment statement.
7292             --  Normally one would think that references like this would
7293             --  not occur, but they do in generated code, and mean that
7294             --  we really do want to assign the discriminant!
7295
7296             elsif Nkind (Par) = N_Assignment_Statement
7297               and then Name (Par) = N
7298             then
7299                null;
7300
7301             --  Don't do this optimization for the prefix of an attribute or
7302             --  the operand of an object renaming declaration since these are
7303             --  contexts where we do not want the value anyway.
7304
7305             elsif (Nkind (Par) = N_Attribute_Reference
7306                      and then Prefix (Par) = N)
7307               or else Is_Renamed_Object (N)
7308             then
7309                null;
7310
7311             --  Don't do this optimization if we are within the code for a
7312             --  discriminant check, since the whole point of such a check may
7313             --  be to verify the condition on which the code below depends!
7314
7315             elsif Is_In_Discriminant_Check (N) then
7316                null;
7317
7318             --  Green light to see if we can do the optimization. There is
7319             --  still one condition that inhibits the optimization below but
7320             --  now is the time to check the particular discriminant.
7321
7322             else
7323                --  Loop through discriminants to find the matching discriminant
7324                --  constraint to see if we can copy it.
7325
7326                Disc := First_Discriminant (Ptyp);
7327                Dcon := First_Elmt (Discriminant_Constraint (Ptyp));
7328                Discr_Loop : while Present (Dcon) loop
7329
7330                   --  Check if this is the matching discriminant
7331
7332                   if Disc = Entity (Selector_Name (N)) then
7333
7334                      --  Here we have the matching discriminant. Check for
7335                      --  the case of a discriminant of a component that is
7336                      --  constrained by an outer discriminant, which cannot
7337                      --  be optimized away.
7338
7339                      if
7340                        Denotes_Discriminant
7341                         (Node (Dcon), Check_Concurrent => True)
7342                      then
7343                         exit Discr_Loop;
7344
7345                      --  In the context of a case statement, the expression may
7346                      --  have the base type of the discriminant, and we need to
7347                      --  preserve the constraint to avoid spurious errors on
7348                      --  missing cases.
7349
7350                      elsif Nkind (Parent (N)) = N_Case_Statement
7351                        and then Etype (Node (Dcon)) /= Etype (Disc)
7352                      then
7353                         Rewrite (N,
7354                           Make_Qualified_Expression (Loc,
7355                             Subtype_Mark =>
7356                               New_Occurrence_Of (Etype (Disc), Loc),
7357                             Expression   =>
7358                               New_Copy_Tree (Node (Dcon))));
7359                         Analyze_And_Resolve (N, Etype (Disc));
7360
7361                         --  In case that comes out as a static expression,
7362                         --  reset it (a selected component is never static).
7363
7364                         Set_Is_Static_Expression (N, False);
7365                         return;
7366
7367                      --  Otherwise we can just copy the constraint, but the
7368                      --  result is certainly not static! In some cases the
7369                      --  discriminant constraint has been analyzed in the
7370                      --  context of the original subtype indication, but for
7371                      --  itypes the constraint might not have been analyzed
7372                      --  yet, and this must be done now.
7373
7374                      else
7375                         Rewrite (N, New_Copy_Tree (Node (Dcon)));
7376                         Analyze_And_Resolve (N);
7377                         Set_Is_Static_Expression (N, False);
7378                         return;
7379                      end if;
7380                   end if;
7381
7382                   Next_Elmt (Dcon);
7383                   Next_Discriminant (Disc);
7384                end loop Discr_Loop;
7385
7386                --  Note: the above loop should always find a matching
7387                --  discriminant, but if it does not, we just missed an
7388                --  optimization due to some glitch (perhaps a previous error),
7389                --  so ignore.
7390
7391             end if;
7392          end if;
7393
7394          --  The only remaining processing is in the case of a discriminant of
7395          --  a concurrent object, where we rewrite the prefix to denote the
7396          --  corresponding record type. If the type is derived and has renamed
7397          --  discriminants, use corresponding discriminant, which is the one
7398          --  that appears in the corresponding record.
7399
7400          if not Is_Concurrent_Type (Ptyp) then
7401             return;
7402          end if;
7403
7404          Disc := Entity (Selector_Name (N));
7405
7406          if Is_Derived_Type (Ptyp)
7407            and then Present (Corresponding_Discriminant (Disc))
7408          then
7409             Disc := Corresponding_Discriminant (Disc);
7410          end if;
7411
7412          New_N :=
7413            Make_Selected_Component (Loc,
7414              Prefix =>
7415                Unchecked_Convert_To (Corresponding_Record_Type (Ptyp),
7416                  New_Copy_Tree (P)),
7417              Selector_Name => Make_Identifier (Loc, Chars (Disc)));
7418
7419          Rewrite (N, New_N);
7420          Analyze (N);
7421       end if;
7422    end Expand_N_Selected_Component;
7423
7424    --------------------
7425    -- Expand_N_Slice --
7426    --------------------
7427
7428    procedure Expand_N_Slice (N : Node_Id) is
7429       Loc  : constant Source_Ptr := Sloc (N);
7430       Typ  : constant Entity_Id  := Etype (N);
7431       Pfx  : constant Node_Id    := Prefix (N);
7432       Ptp  : Entity_Id           := Etype (Pfx);
7433
7434       function Is_Procedure_Actual (N : Node_Id) return Boolean;
7435       --  Check whether the argument is an actual for a procedure call, in
7436       --  which case the expansion of a bit-packed slice is deferred until the
7437       --  call itself is expanded. The reason this is required is that we might
7438       --  have an IN OUT or OUT parameter, and the copy out is essential, and
7439       --  that copy out would be missed if we created a temporary here in
7440       --  Expand_N_Slice. Note that we don't bother to test specifically for an
7441       --  IN OUT or OUT mode parameter, since it is a bit tricky to do, and it
7442       --  is harmless to defer expansion in the IN case, since the call
7443       --  processing will still generate the appropriate copy in operation,
7444       --  which will take care of the slice.
7445
7446       procedure Make_Temporary;
7447       --  Create a named variable for the value of the slice, in cases where
7448       --  the back-end cannot handle it properly, e.g. when packed types or
7449       --  unaligned slices are involved.
7450
7451       -------------------------
7452       -- Is_Procedure_Actual --
7453       -------------------------
7454
7455       function Is_Procedure_Actual (N : Node_Id) return Boolean is
7456          Par : Node_Id := Parent (N);
7457
7458       begin
7459          loop
7460             --  If our parent is a procedure call we can return
7461
7462             if Nkind (Par) = N_Procedure_Call_Statement then
7463                return True;
7464
7465             --  If our parent is a type conversion, keep climbing the tree,
7466             --  since a type conversion can be a procedure actual. Also keep
7467             --  climbing if parameter association or a qualified expression,
7468             --  since these are additional cases that do can appear on
7469             --  procedure actuals.
7470
7471             elsif Nkind_In (Par, N_Type_Conversion,
7472                                  N_Parameter_Association,
7473                                  N_Qualified_Expression)
7474             then
7475                Par := Parent (Par);
7476
7477                --  Any other case is not what we are looking for
7478
7479             else
7480                return False;
7481             end if;
7482          end loop;
7483       end Is_Procedure_Actual;
7484
7485       --------------------
7486       -- Make_Temporary --
7487       --------------------
7488
7489       procedure Make_Temporary is
7490          Decl : Node_Id;
7491          Ent  : constant Entity_Id :=
7492                   Make_Defining_Identifier (Loc, New_Internal_Name ('T'));
7493       begin
7494          Decl :=
7495            Make_Object_Declaration (Loc,
7496              Defining_Identifier => Ent,
7497              Object_Definition   => New_Occurrence_Of (Typ, Loc));
7498
7499          Set_No_Initialization (Decl);
7500
7501          Insert_Actions (N, New_List (
7502            Decl,
7503            Make_Assignment_Statement (Loc,
7504              Name => New_Occurrence_Of (Ent, Loc),
7505              Expression => Relocate_Node (N))));
7506
7507          Rewrite (N, New_Occurrence_Of (Ent, Loc));
7508          Analyze_And_Resolve (N, Typ);
7509       end Make_Temporary;
7510
7511    --  Start of processing for Expand_N_Slice
7512
7513    begin
7514       --  Special handling for access types
7515
7516       if Is_Access_Type (Ptp) then
7517
7518          Ptp := Designated_Type (Ptp);
7519
7520          Rewrite (Pfx,
7521            Make_Explicit_Dereference (Sloc (N),
7522             Prefix => Relocate_Node (Pfx)));
7523
7524          Analyze_And_Resolve (Pfx, Ptp);
7525       end if;
7526
7527       --  Ada 2005 (AI-318-02): If the prefix is a call to a build-in-place
7528       --  function, then additional actuals must be passed.
7529
7530       if Ada_Version >= Ada_05
7531         and then Is_Build_In_Place_Function_Call (Pfx)
7532       then
7533          Make_Build_In_Place_Call_In_Anonymous_Context (Pfx);
7534       end if;
7535
7536       --  The remaining case to be handled is packed slices. We can leave
7537       --  packed slices as they are in the following situations:
7538
7539       --    1. Right or left side of an assignment (we can handle this
7540       --       situation correctly in the assignment statement expansion).
7541
7542       --    2. Prefix of indexed component (the slide is optimized away in this
7543       --       case, see the start of Expand_N_Slice.)
7544
7545       --    3. Object renaming declaration, since we want the name of the
7546       --       slice, not the value.
7547
7548       --    4. Argument to procedure call, since copy-in/copy-out handling may
7549       --       be required, and this is handled in the expansion of call
7550       --       itself.
7551
7552       --    5. Prefix of an address attribute (this is an error which is caught
7553       --       elsewhere, and the expansion would interfere with generating the
7554       --       error message).
7555
7556       if not Is_Packed (Typ) then
7557
7558          --  Apply transformation for actuals of a function call, where
7559          --  Expand_Actuals is not used.
7560
7561          if Nkind (Parent (N)) = N_Function_Call
7562            and then Is_Possibly_Unaligned_Slice (N)
7563          then
7564             Make_Temporary;
7565          end if;
7566
7567       elsif Nkind (Parent (N)) = N_Assignment_Statement
7568         or else (Nkind (Parent (Parent (N))) = N_Assignment_Statement
7569                    and then Parent (N) = Name (Parent (Parent (N))))
7570       then
7571          return;
7572
7573       elsif Nkind (Parent (N)) = N_Indexed_Component
7574         or else Is_Renamed_Object (N)
7575         or else Is_Procedure_Actual (N)
7576       then
7577          return;
7578
7579       elsif Nkind (Parent (N)) = N_Attribute_Reference
7580         and then Attribute_Name (Parent (N)) = Name_Address
7581       then
7582          return;
7583
7584       else
7585          Make_Temporary;
7586       end if;
7587    end Expand_N_Slice;
7588
7589    ------------------------------
7590    -- Expand_N_Type_Conversion --
7591    ------------------------------
7592
7593    procedure Expand_N_Type_Conversion (N : Node_Id) is
7594       Loc          : constant Source_Ptr := Sloc (N);
7595       Operand      : constant Node_Id    := Expression (N);
7596       Target_Type  : constant Entity_Id  := Etype (N);
7597       Operand_Type : Entity_Id           := Etype (Operand);
7598
7599       procedure Handle_Changed_Representation;
7600       --  This is called in the case of record and array type conversions to
7601       --  see if there is a change of representation to be handled. Change of
7602       --  representation is actually handled at the assignment statement level,
7603       --  and what this procedure does is rewrite node N conversion as an
7604       --  assignment to temporary. If there is no change of representation,
7605       --  then the conversion node is unchanged.
7606
7607       procedure Raise_Accessibility_Error;
7608       --  Called when we know that an accessibility check will fail. Rewrites
7609       --  node N to an appropriate raise statement and outputs warning msgs.
7610       --  The Etype of the raise node is set to Target_Type.
7611
7612       procedure Real_Range_Check;
7613       --  Handles generation of range check for real target value
7614
7615       -----------------------------------
7616       -- Handle_Changed_Representation --
7617       -----------------------------------
7618
7619       procedure Handle_Changed_Representation is
7620          Temp : Entity_Id;
7621          Decl : Node_Id;
7622          Odef : Node_Id;
7623          Disc : Node_Id;
7624          N_Ix : Node_Id;
7625          Cons : List_Id;
7626
7627       begin
7628          --  Nothing else to do if no change of representation
7629
7630          if Same_Representation (Operand_Type, Target_Type) then
7631             return;
7632
7633          --  The real change of representation work is done by the assignment
7634          --  statement processing. So if this type conversion is appearing as
7635          --  the expression of an assignment statement, nothing needs to be
7636          --  done to the conversion.
7637
7638          elsif Nkind (Parent (N)) = N_Assignment_Statement then
7639             return;
7640
7641          --  Otherwise we need to generate a temporary variable, and do the
7642          --  change of representation assignment into that temporary variable.
7643          --  The conversion is then replaced by a reference to this variable.
7644
7645          else
7646             Cons := No_List;
7647
7648             --  If type is unconstrained we have to add a constraint, copied
7649             --  from the actual value of the left hand side.
7650
7651             if not Is_Constrained (Target_Type) then
7652                if Has_Discriminants (Operand_Type) then
7653                   Disc := First_Discriminant (Operand_Type);
7654
7655                   if Disc /= First_Stored_Discriminant (Operand_Type) then
7656                      Disc := First_Stored_Discriminant (Operand_Type);
7657                   end if;
7658
7659                   Cons := New_List;
7660                   while Present (Disc) loop
7661                      Append_To (Cons,
7662                        Make_Selected_Component (Loc,
7663                          Prefix => Duplicate_Subexpr_Move_Checks (Operand),
7664                          Selector_Name =>
7665                            Make_Identifier (Loc, Chars (Disc))));
7666                      Next_Discriminant (Disc);
7667                   end loop;
7668
7669                elsif Is_Array_Type (Operand_Type) then
7670                   N_Ix := First_Index (Target_Type);
7671                   Cons := New_List;
7672
7673                   for J in 1 .. Number_Dimensions (Operand_Type) loop
7674
7675                      --  We convert the bounds explicitly. We use an unchecked
7676                      --  conversion because bounds checks are done elsewhere.
7677
7678                      Append_To (Cons,
7679                        Make_Range (Loc,
7680                          Low_Bound =>
7681                            Unchecked_Convert_To (Etype (N_Ix),
7682                              Make_Attribute_Reference (Loc,
7683                                Prefix =>
7684                                  Duplicate_Subexpr_No_Checks
7685                                    (Operand, Name_Req => True),
7686                                Attribute_Name => Name_First,
7687                                Expressions    => New_List (
7688                                  Make_Integer_Literal (Loc, J)))),
7689
7690                          High_Bound =>
7691                            Unchecked_Convert_To (Etype (N_Ix),
7692                              Make_Attribute_Reference (Loc,
7693                                Prefix =>
7694                                  Duplicate_Subexpr_No_Checks
7695                                    (Operand, Name_Req => True),
7696                                Attribute_Name => Name_Last,
7697                                Expressions    => New_List (
7698                                  Make_Integer_Literal (Loc, J))))));
7699
7700                      Next_Index (N_Ix);
7701                   end loop;
7702                end if;
7703             end if;
7704
7705             Odef := New_Occurrence_Of (Target_Type, Loc);
7706
7707             if Present (Cons) then
7708                Odef :=
7709                  Make_Subtype_Indication (Loc,
7710                    Subtype_Mark => Odef,
7711                    Constraint =>
7712                      Make_Index_Or_Discriminant_Constraint (Loc,
7713                        Constraints => Cons));
7714             end if;
7715
7716             Temp := Make_Defining_Identifier (Loc, New_Internal_Name ('C'));
7717             Decl :=
7718               Make_Object_Declaration (Loc,
7719                 Defining_Identifier => Temp,
7720                 Object_Definition   => Odef);
7721
7722             Set_No_Initialization (Decl, True);
7723
7724             --  Insert required actions. It is essential to suppress checks
7725             --  since we have suppressed default initialization, which means
7726             --  that the variable we create may have no discriminants.
7727
7728             Insert_Actions (N,
7729               New_List (
7730                 Decl,
7731                 Make_Assignment_Statement (Loc,
7732                   Name => New_Occurrence_Of (Temp, Loc),
7733                   Expression => Relocate_Node (N))),
7734                 Suppress => All_Checks);
7735
7736             Rewrite (N, New_Occurrence_Of (Temp, Loc));
7737             return;
7738          end if;
7739       end Handle_Changed_Representation;
7740
7741       -------------------------------
7742       -- Raise_Accessibility_Error --
7743       -------------------------------
7744
7745       procedure Raise_Accessibility_Error is
7746       begin
7747          Rewrite (N,
7748            Make_Raise_Program_Error (Sloc (N),
7749              Reason => PE_Accessibility_Check_Failed));
7750          Set_Etype (N, Target_Type);
7751
7752          Error_Msg_N ("?accessibility check failure", N);
7753          Error_Msg_NE
7754            ("\?& will be raised at run time", N, Standard_Program_Error);
7755       end Raise_Accessibility_Error;
7756
7757       ----------------------
7758       -- Real_Range_Check --
7759       ----------------------
7760
7761       --  Case of conversions to floating-point or fixed-point. If range checks
7762       --  are enabled and the target type has a range constraint, we convert:
7763
7764       --     typ (x)
7765
7766       --       to
7767
7768       --     Tnn : typ'Base := typ'Base (x);
7769       --     [constraint_error when Tnn < typ'First or else Tnn > typ'Last]
7770       --     Tnn
7771
7772       --  This is necessary when there is a conversion of integer to float or
7773       --  to fixed-point to ensure that the correct checks are made. It is not
7774       --  necessary for float to float where it is enough to simply set the
7775       --  Do_Range_Check flag.
7776
7777       procedure Real_Range_Check is
7778          Btyp : constant Entity_Id := Base_Type (Target_Type);
7779          Lo   : constant Node_Id   := Type_Low_Bound  (Target_Type);
7780          Hi   : constant Node_Id   := Type_High_Bound (Target_Type);
7781          Xtyp : constant Entity_Id := Etype (Operand);
7782          Conv : Node_Id;
7783          Tnn  : Entity_Id;
7784
7785       begin
7786          --  Nothing to do if conversion was rewritten
7787
7788          if Nkind (N) /= N_Type_Conversion then
7789             return;
7790          end if;
7791
7792          --  Nothing to do if range checks suppressed, or target has the same
7793          --  range as the base type (or is the base type).
7794
7795          if Range_Checks_Suppressed (Target_Type)
7796            or else (Lo = Type_Low_Bound (Btyp)
7797                       and then
7798                     Hi = Type_High_Bound (Btyp))
7799          then
7800             return;
7801          end if;
7802
7803          --  Nothing to do if expression is an entity on which checks have been
7804          --  suppressed.
7805
7806          if Is_Entity_Name (Operand)
7807            and then Range_Checks_Suppressed (Entity (Operand))
7808          then
7809             return;
7810          end if;
7811
7812          --  Nothing to do if bounds are all static and we can tell that the
7813          --  expression is within the bounds of the target. Note that if the
7814          --  operand is of an unconstrained floating-point type, then we do
7815          --  not trust it to be in range (might be infinite)
7816
7817          declare
7818             S_Lo : constant Node_Id := Type_Low_Bound (Xtyp);
7819             S_Hi : constant Node_Id := Type_High_Bound (Xtyp);
7820
7821          begin
7822             if (not Is_Floating_Point_Type (Xtyp)
7823                  or else Is_Constrained (Xtyp))
7824               and then Compile_Time_Known_Value (S_Lo)
7825               and then Compile_Time_Known_Value (S_Hi)
7826               and then Compile_Time_Known_Value (Hi)
7827               and then Compile_Time_Known_Value (Lo)
7828             then
7829                declare
7830                   D_Lov : constant Ureal := Expr_Value_R (Lo);
7831                   D_Hiv : constant Ureal := Expr_Value_R (Hi);
7832                   S_Lov : Ureal;
7833                   S_Hiv : Ureal;
7834
7835                begin
7836                   if Is_Real_Type (Xtyp) then
7837                      S_Lov := Expr_Value_R (S_Lo);
7838                      S_Hiv := Expr_Value_R (S_Hi);
7839                   else
7840                      S_Lov := UR_From_Uint (Expr_Value (S_Lo));
7841                      S_Hiv := UR_From_Uint (Expr_Value (S_Hi));
7842                   end if;
7843
7844                   if D_Hiv > D_Lov
7845                     and then S_Lov >= D_Lov
7846                     and then S_Hiv <= D_Hiv
7847                   then
7848                      Set_Do_Range_Check (Operand, False);
7849                      return;
7850                   end if;
7851                end;
7852             end if;
7853          end;
7854
7855          --  For float to float conversions, we are done
7856
7857          if Is_Floating_Point_Type (Xtyp)
7858               and then
7859             Is_Floating_Point_Type (Btyp)
7860          then
7861             return;
7862          end if;
7863
7864          --  Otherwise rewrite the conversion as described above
7865
7866          Conv := Relocate_Node (N);
7867          Rewrite
7868            (Subtype_Mark (Conv), New_Occurrence_Of (Btyp, Loc));
7869          Set_Etype (Conv, Btyp);
7870
7871          --  Enable overflow except for case of integer to float conversions,
7872          --  where it is never required, since we can never have overflow in
7873          --  this case.
7874
7875          if not Is_Integer_Type (Etype (Operand)) then
7876             Enable_Overflow_Check (Conv);
7877          end if;
7878
7879          Tnn :=
7880            Make_Defining_Identifier (Loc,
7881              Chars => New_Internal_Name ('T'));
7882
7883          Insert_Actions (N, New_List (
7884            Make_Object_Declaration (Loc,
7885              Defining_Identifier => Tnn,
7886              Object_Definition   => New_Occurrence_Of (Btyp, Loc),
7887              Expression => Conv),
7888
7889            Make_Raise_Constraint_Error (Loc,
7890              Condition =>
7891               Make_Or_Else (Loc,
7892                 Left_Opnd =>
7893                   Make_Op_Lt (Loc,
7894                     Left_Opnd  => New_Occurrence_Of (Tnn, Loc),
7895                     Right_Opnd =>
7896                       Make_Attribute_Reference (Loc,
7897                         Attribute_Name => Name_First,
7898                         Prefix =>
7899                           New_Occurrence_Of (Target_Type, Loc))),
7900
7901                 Right_Opnd =>
7902                   Make_Op_Gt (Loc,
7903                     Left_Opnd  => New_Occurrence_Of (Tnn, Loc),
7904                     Right_Opnd =>
7905                       Make_Attribute_Reference (Loc,
7906                         Attribute_Name => Name_Last,
7907                         Prefix =>
7908                           New_Occurrence_Of (Target_Type, Loc)))),
7909              Reason => CE_Range_Check_Failed)));
7910
7911          Rewrite (N, New_Occurrence_Of (Tnn, Loc));
7912          Analyze_And_Resolve (N, Btyp);
7913       end Real_Range_Check;
7914
7915    --  Start of processing for Expand_N_Type_Conversion
7916
7917    begin
7918       --  Nothing at all to do if conversion is to the identical type so remove
7919       --  the conversion completely, it is useless, except that it may carry
7920       --  an Assignment_OK attribute, which must be propagated to the operand.
7921
7922       if Operand_Type = Target_Type then
7923          if Assignment_OK (N) then
7924             Set_Assignment_OK (Operand);
7925          end if;
7926
7927          Rewrite (N, Relocate_Node (Operand));
7928          return;
7929       end if;
7930
7931       --  Nothing to do if this is the second argument of read. This is a
7932       --  "backwards" conversion that will be handled by the specialized code
7933       --  in attribute processing.
7934
7935       if Nkind (Parent (N)) = N_Attribute_Reference
7936         and then Attribute_Name (Parent (N)) = Name_Read
7937         and then Next (First (Expressions (Parent (N)))) = N
7938       then
7939          return;
7940       end if;
7941
7942       --  Here if we may need to expand conversion
7943
7944       --  Do validity check if validity checking operands
7945
7946       if Validity_Checks_On
7947         and then Validity_Check_Operands
7948       then
7949          Ensure_Valid (Operand);
7950       end if;
7951
7952       --  Special case of converting from non-standard boolean type
7953
7954       if Is_Boolean_Type (Operand_Type)
7955         and then (Nonzero_Is_True (Operand_Type))
7956       then
7957          Adjust_Condition (Operand);
7958          Set_Etype (Operand, Standard_Boolean);
7959          Operand_Type := Standard_Boolean;
7960       end if;
7961
7962       --  Case of converting to an access type
7963
7964       if Is_Access_Type (Target_Type) then
7965
7966          --  Apply an accessibility check when the conversion operand is an
7967          --  access parameter (or a renaming thereof), unless conversion was
7968          --  expanded from an Unchecked_ or Unrestricted_Access attribute.
7969          --  Note that other checks may still need to be applied below (such
7970          --  as tagged type checks).
7971
7972          if Is_Entity_Name (Operand)
7973            and then
7974              (Is_Formal (Entity (Operand))
7975                or else
7976                  (Present (Renamed_Object (Entity (Operand)))
7977                    and then Is_Entity_Name (Renamed_Object (Entity (Operand)))
7978                    and then Is_Formal
7979                               (Entity (Renamed_Object (Entity (Operand))))))
7980            and then Ekind (Etype (Operand)) = E_Anonymous_Access_Type
7981            and then (Nkind (Original_Node (N)) /= N_Attribute_Reference
7982                       or else Attribute_Name (Original_Node (N)) = Name_Access)
7983          then
7984             Apply_Accessibility_Check
7985               (Operand, Target_Type, Insert_Node => Operand);
7986
7987          --  If the level of the operand type is statically deeper than the
7988          --  level of the target type, then force Program_Error. Note that this
7989          --  can only occur for cases where the attribute is within the body of
7990          --  an instantiation (otherwise the conversion will already have been
7991          --  rejected as illegal). Note: warnings are issued by the analyzer
7992          --  for the instance cases.
7993
7994          elsif In_Instance_Body
7995            and then Type_Access_Level (Operand_Type) >
7996                     Type_Access_Level (Target_Type)
7997          then
7998             Raise_Accessibility_Error;
7999
8000          --  When the operand is a selected access discriminant the check needs
8001          --  to be made against the level of the object denoted by the prefix
8002          --  of the selected name. Force Program_Error for this case as well
8003          --  (this accessibility violation can only happen if within the body
8004          --  of an instantiation).
8005
8006          elsif In_Instance_Body
8007            and then Ekind (Operand_Type) = E_Anonymous_Access_Type
8008            and then Nkind (Operand) = N_Selected_Component
8009            and then Object_Access_Level (Operand) >
8010                       Type_Access_Level (Target_Type)
8011          then
8012             Raise_Accessibility_Error;
8013             return;
8014          end if;
8015       end if;
8016
8017       --  Case of conversions of tagged types and access to tagged types
8018
8019       --  When needed, that is to say when the expression is class-wide, Add
8020       --  runtime a tag check for (strict) downward conversion by using the
8021       --  membership test, generating:
8022
8023       --      [constraint_error when Operand not in Target_Type'Class]
8024
8025       --  or in the access type case
8026
8027       --      [constraint_error
8028       --        when Operand /= null
8029       --          and then Operand.all not in
8030       --            Designated_Type (Target_Type)'Class]
8031
8032       if (Is_Access_Type (Target_Type)
8033            and then Is_Tagged_Type (Designated_Type (Target_Type)))
8034         or else Is_Tagged_Type (Target_Type)
8035       then
8036          --  Do not do any expansion in the access type case if the parent is a
8037          --  renaming, since this is an error situation which will be caught by
8038          --  Sem_Ch8, and the expansion can interfere with this error check.
8039
8040          if Is_Access_Type (Target_Type)
8041            and then Is_Renamed_Object (N)
8042          then
8043             return;
8044          end if;
8045
8046          --  Otherwise, proceed with processing tagged conversion
8047
8048          declare
8049             Actual_Op_Typ   : Entity_Id;
8050             Actual_Targ_Typ : Entity_Id;
8051             Make_Conversion : Boolean := False;
8052             Root_Op_Typ     : Entity_Id;
8053
8054             procedure Make_Tag_Check (Targ_Typ : Entity_Id);
8055             --  Create a membership check to test whether Operand is a member
8056             --  of Targ_Typ. If the original Target_Type is an access, include
8057             --  a test for null value. The check is inserted at N.
8058
8059             --------------------
8060             -- Make_Tag_Check --
8061             --------------------
8062
8063             procedure Make_Tag_Check (Targ_Typ : Entity_Id) is
8064                Cond : Node_Id;
8065
8066             begin
8067                --  Generate:
8068                --    [Constraint_Error
8069                --       when Operand /= null
8070                --         and then Operand.all not in Targ_Typ]
8071
8072                if Is_Access_Type (Target_Type) then
8073                   Cond :=
8074                     Make_And_Then (Loc,
8075                       Left_Opnd =>
8076                         Make_Op_Ne (Loc,
8077                           Left_Opnd  => Duplicate_Subexpr_No_Checks (Operand),
8078                           Right_Opnd => Make_Null (Loc)),
8079
8080                       Right_Opnd =>
8081                         Make_Not_In (Loc,
8082                           Left_Opnd  =>
8083                             Make_Explicit_Dereference (Loc,
8084                               Prefix => Duplicate_Subexpr_No_Checks (Operand)),
8085                           Right_Opnd => New_Reference_To (Targ_Typ, Loc)));
8086
8087                --  Generate:
8088                --    [Constraint_Error when Operand not in Targ_Typ]
8089
8090                else
8091                   Cond :=
8092                     Make_Not_In (Loc,
8093                       Left_Opnd  => Duplicate_Subexpr_No_Checks (Operand),
8094                       Right_Opnd => New_Reference_To (Targ_Typ, Loc));
8095                end if;
8096
8097                Insert_Action (N,
8098                  Make_Raise_Constraint_Error (Loc,
8099                    Condition => Cond,
8100                    Reason    => CE_Tag_Check_Failed));
8101             end Make_Tag_Check;
8102
8103          --  Start of processing
8104
8105          begin
8106             if Is_Access_Type (Target_Type) then
8107
8108                --  Handle entities from the limited view
8109
8110                Actual_Op_Typ :=
8111                  Available_View (Designated_Type (Operand_Type));
8112                Actual_Targ_Typ :=
8113                  Available_View (Designated_Type (Target_Type));
8114             else
8115                Actual_Op_Typ   := Operand_Type;
8116                Actual_Targ_Typ := Target_Type;
8117             end if;
8118
8119             Root_Op_Typ := Root_Type (Actual_Op_Typ);
8120
8121             --  Ada 2005 (AI-251): Handle interface type conversion
8122
8123             if Is_Interface (Actual_Op_Typ) then
8124                Expand_Interface_Conversion (N, Is_Static => False);
8125                return;
8126             end if;
8127
8128             if not Tag_Checks_Suppressed (Actual_Targ_Typ) then
8129
8130                --  Create a runtime tag check for a downward class-wide type
8131                --  conversion.
8132
8133                if Is_Class_Wide_Type (Actual_Op_Typ)
8134                  and then Actual_Op_Typ /= Actual_Targ_Typ
8135                  and then Root_Op_Typ /= Actual_Targ_Typ
8136                  and then Is_Ancestor (Root_Op_Typ, Actual_Targ_Typ)
8137                then
8138                   Make_Tag_Check (Class_Wide_Type (Actual_Targ_Typ));
8139                   Make_Conversion := True;
8140                end if;
8141
8142                --  AI05-0073: If the result subtype of the function is defined
8143                --  by an access_definition designating a specific tagged type
8144                --  T, a check is made that the result value is null or the tag
8145                --  of the object designated by the result value identifies T.
8146                --  Constraint_Error is raised if this check fails.
8147
8148                if Nkind (Parent (N)) = Sinfo.N_Return_Statement then
8149                   declare
8150                      Func     : Entity_Id;
8151                      Func_Typ : Entity_Id;
8152
8153                   begin
8154                      --  Climb scope stack looking for the enclosing function
8155
8156                      Func := Current_Scope;
8157                      while Present (Func)
8158                        and then Ekind (Func) /= E_Function
8159                      loop
8160                         Func := Scope (Func);
8161                      end loop;
8162
8163                      --  The function's return subtype must be defined using
8164                      --  an access definition.
8165
8166                      if Nkind (Result_Definition (Parent (Func))) =
8167                           N_Access_Definition
8168                      then
8169                         Func_Typ := Directly_Designated_Type (Etype (Func));
8170
8171                         --  The return subtype denotes a specific tagged type,
8172                         --  in other words, a non class-wide type.
8173
8174                         if Is_Tagged_Type (Func_Typ)
8175                           and then not Is_Class_Wide_Type (Func_Typ)
8176                         then
8177                            Make_Tag_Check (Actual_Targ_Typ);
8178                            Make_Conversion := True;
8179                         end if;
8180                      end if;
8181                   end;
8182                end if;
8183
8184                --  We have generated a tag check for either a class-wide type
8185                --  conversion or for AI05-0073.
8186
8187                if Make_Conversion then
8188                   declare
8189                      Conv : Node_Id;
8190                   begin
8191                      Conv :=
8192                        Make_Unchecked_Type_Conversion (Loc,
8193                          Subtype_Mark => New_Occurrence_Of (Target_Type, Loc),
8194                          Expression   => Relocate_Node (Expression (N)));
8195                      Rewrite (N, Conv);
8196                      Analyze_And_Resolve (N, Target_Type);
8197                   end;
8198                end if;
8199             end if;
8200          end;
8201
8202       --  Case of other access type conversions
8203
8204       elsif Is_Access_Type (Target_Type) then
8205          Apply_Constraint_Check (Operand, Target_Type);
8206
8207       --  Case of conversions from a fixed-point type
8208
8209       --  These conversions require special expansion and processing, found in
8210       --  the Exp_Fixd package. We ignore cases where Conversion_OK is set,
8211       --  since from a semantic point of view, these are simple integer
8212       --  conversions, which do not need further processing.
8213
8214       elsif Is_Fixed_Point_Type (Operand_Type)
8215         and then not Conversion_OK (N)
8216       then
8217          --  We should never see universal fixed at this case, since the
8218          --  expansion of the constituent divide or multiply should have
8219          --  eliminated the explicit mention of universal fixed.
8220
8221          pragma Assert (Operand_Type /= Universal_Fixed);
8222
8223          --  Check for special case of the conversion to universal real that
8224          --  occurs as a result of the use of a round attribute. In this case,
8225          --  the real type for the conversion is taken from the target type of
8226          --  the Round attribute and the result must be marked as rounded.
8227
8228          if Target_Type = Universal_Real
8229            and then Nkind (Parent (N)) = N_Attribute_Reference
8230            and then Attribute_Name (Parent (N)) = Name_Round
8231          then
8232             Set_Rounded_Result (N);
8233             Set_Etype (N, Etype (Parent (N)));
8234          end if;
8235
8236          --  Otherwise do correct fixed-conversion, but skip these if the
8237          --  Conversion_OK flag is set, because from a semantic point of
8238          --  view these are simple integer conversions needing no further
8239          --  processing (the backend will simply treat them as integers)
8240
8241          if not Conversion_OK (N) then
8242             if Is_Fixed_Point_Type (Etype (N)) then
8243                Expand_Convert_Fixed_To_Fixed (N);
8244                Real_Range_Check;
8245
8246             elsif Is_Integer_Type (Etype (N)) then
8247                Expand_Convert_Fixed_To_Integer (N);
8248
8249             else
8250                pragma Assert (Is_Floating_Point_Type (Etype (N)));
8251                Expand_Convert_Fixed_To_Float (N);
8252                Real_Range_Check;
8253             end if;
8254          end if;
8255
8256       --  Case of conversions to a fixed-point type
8257
8258       --  These conversions require special expansion and processing, found in
8259       --  the Exp_Fixd package. Again, ignore cases where Conversion_OK is set,
8260       --  since from a semantic point of view, these are simple integer
8261       --  conversions, which do not need further processing.
8262
8263       elsif Is_Fixed_Point_Type (Target_Type)
8264         and then not Conversion_OK (N)
8265       then
8266          if Is_Integer_Type (Operand_Type) then
8267             Expand_Convert_Integer_To_Fixed (N);
8268             Real_Range_Check;
8269          else
8270             pragma Assert (Is_Floating_Point_Type (Operand_Type));
8271             Expand_Convert_Float_To_Fixed (N);
8272             Real_Range_Check;
8273          end if;
8274
8275       --  Case of float-to-integer conversions
8276
8277       --  We also handle float-to-fixed conversions with Conversion_OK set
8278       --  since semantically the fixed-point target is treated as though it
8279       --  were an integer in such cases.
8280
8281       elsif Is_Floating_Point_Type (Operand_Type)
8282         and then
8283           (Is_Integer_Type (Target_Type)
8284             or else
8285           (Is_Fixed_Point_Type (Target_Type) and then Conversion_OK (N)))
8286       then
8287          --  One more check here, gcc is still not able to do conversions of
8288          --  this type with proper overflow checking, and so gigi is doing an
8289          --  approximation of what is required by doing floating-point compares
8290          --  with the end-point. But that can lose precision in some cases, and
8291          --  give a wrong result. Converting the operand to Universal_Real is
8292          --  helpful, but still does not catch all cases with 64-bit integers
8293          --  on targets with only 64-bit floats
8294
8295          --  The above comment seems obsoleted by Apply_Float_Conversion_Check
8296          --  Can this code be removed ???
8297
8298          if Do_Range_Check (Operand) then
8299             Rewrite (Operand,
8300               Make_Type_Conversion (Loc,
8301                 Subtype_Mark =>
8302                   New_Occurrence_Of (Universal_Real, Loc),
8303                 Expression =>
8304                   Relocate_Node (Operand)));
8305
8306             Set_Etype (Operand, Universal_Real);
8307             Enable_Range_Check (Operand);
8308             Set_Do_Range_Check (Expression (Operand), False);
8309          end if;
8310
8311       --  Case of array conversions
8312
8313       --  Expansion of array conversions, add required length/range checks but
8314       --  only do this if there is no change of representation. For handling of
8315       --  this case, see Handle_Changed_Representation.
8316
8317       elsif Is_Array_Type (Target_Type) then
8318
8319          if Is_Constrained (Target_Type) then
8320             Apply_Length_Check (Operand, Target_Type);
8321          else
8322             Apply_Range_Check (Operand, Target_Type);
8323          end if;
8324
8325          Handle_Changed_Representation;
8326
8327       --  Case of conversions of discriminated types
8328
8329       --  Add required discriminant checks if target is constrained. Again this
8330       --  change is skipped if we have a change of representation.
8331
8332       elsif Has_Discriminants (Target_Type)
8333         and then Is_Constrained (Target_Type)
8334       then
8335          Apply_Discriminant_Check (Operand, Target_Type);
8336          Handle_Changed_Representation;
8337
8338       --  Case of all other record conversions. The only processing required
8339       --  is to check for a change of representation requiring the special
8340       --  assignment processing.
8341
8342       elsif Is_Record_Type (Target_Type) then
8343
8344          --  Ada 2005 (AI-216): Program_Error is raised when converting from
8345          --  a derived Unchecked_Union type to an unconstrained type that is
8346          --  not Unchecked_Union if the operand lacks inferable discriminants.
8347
8348          if Is_Derived_Type (Operand_Type)
8349            and then Is_Unchecked_Union (Base_Type (Operand_Type))
8350            and then not Is_Constrained (Target_Type)
8351            and then not Is_Unchecked_Union (Base_Type (Target_Type))
8352            and then not Has_Inferable_Discriminants (Operand)
8353          then
8354             --  To prevent Gigi from generating illegal code, we generate a
8355             --  Program_Error node, but we give it the target type of the
8356             --  conversion.
8357
8358             declare
8359                PE : constant Node_Id := Make_Raise_Program_Error (Loc,
8360                       Reason => PE_Unchecked_Union_Restriction);
8361
8362             begin
8363                Set_Etype (PE, Target_Type);
8364                Rewrite (N, PE);
8365
8366             end;
8367          else
8368             Handle_Changed_Representation;
8369          end if;
8370
8371       --  Case of conversions of enumeration types
8372
8373       elsif Is_Enumeration_Type (Target_Type) then
8374
8375          --  Special processing is required if there is a change of
8376          --  representation (from enumeration representation clauses)
8377
8378          if not Same_Representation (Target_Type, Operand_Type) then
8379
8380             --  Convert: x(y) to x'val (ytyp'val (y))
8381
8382             Rewrite (N,
8383                Make_Attribute_Reference (Loc,
8384                  Prefix => New_Occurrence_Of (Target_Type, Loc),
8385                  Attribute_Name => Name_Val,
8386                  Expressions => New_List (
8387                    Make_Attribute_Reference (Loc,
8388                      Prefix => New_Occurrence_Of (Operand_Type, Loc),
8389                      Attribute_Name => Name_Pos,
8390                      Expressions => New_List (Operand)))));
8391
8392             Analyze_And_Resolve (N, Target_Type);
8393          end if;
8394
8395       --  Case of conversions to floating-point
8396
8397       elsif Is_Floating_Point_Type (Target_Type) then
8398          Real_Range_Check;
8399       end if;
8400
8401       --  At this stage, either the conversion node has been transformed into
8402       --  some other equivalent expression, or left as a conversion that can
8403       --  be handled by Gigi. The conversions that Gigi can handle are the
8404       --  following:
8405
8406       --    Conversions with no change of representation or type
8407
8408       --    Numeric conversions involving integer, floating- and fixed-point
8409       --    values. Fixed-point values are allowed only if Conversion_OK is
8410       --    set, i.e. if the fixed-point values are to be treated as integers.
8411
8412       --  No other conversions should be passed to Gigi
8413
8414       --  Check: are these rules stated in sinfo??? if so, why restate here???
8415
8416       --  The only remaining step is to generate a range check if we still have
8417       --  a type conversion at this stage and Do_Range_Check is set. For now we
8418       --  do this only for conversions of discrete types.
8419
8420       if Nkind (N) = N_Type_Conversion
8421         and then Is_Discrete_Type (Etype (N))
8422       then
8423          declare
8424             Expr : constant Node_Id := Expression (N);
8425             Ftyp : Entity_Id;
8426             Ityp : Entity_Id;
8427
8428          begin
8429             if Do_Range_Check (Expr)
8430               and then Is_Discrete_Type (Etype (Expr))
8431             then
8432                Set_Do_Range_Check (Expr, False);
8433
8434                --  Before we do a range check, we have to deal with treating a
8435                --  fixed-point operand as an integer. The way we do this is
8436                --  simply to do an unchecked conversion to an appropriate
8437                --  integer type large enough to hold the result.
8438
8439                --  This code is not active yet, because we are only dealing
8440                --  with discrete types so far ???
8441
8442                if Nkind (Expr) in N_Has_Treat_Fixed_As_Integer
8443                  and then Treat_Fixed_As_Integer (Expr)
8444                then
8445                   Ftyp := Base_Type (Etype (Expr));
8446
8447                   if Esize (Ftyp) >= Esize (Standard_Integer) then
8448                      Ityp := Standard_Long_Long_Integer;
8449                   else
8450                      Ityp := Standard_Integer;
8451                   end if;
8452
8453                   Rewrite (Expr, Unchecked_Convert_To (Ityp, Expr));
8454                end if;
8455
8456                --  Reset overflow flag, since the range check will include
8457                --  dealing with possible overflow, and generate the check If
8458                --  Address is either a source type or target type, suppress
8459                --  range check to avoid typing anomalies when it is a visible
8460                --  integer type.
8461
8462                Set_Do_Overflow_Check (N, False);
8463                if not Is_Descendent_Of_Address (Etype (Expr))
8464                  and then not Is_Descendent_Of_Address (Target_Type)
8465                then
8466                   Generate_Range_Check
8467                     (Expr, Target_Type, CE_Range_Check_Failed);
8468                end if;
8469             end if;
8470          end;
8471       end if;
8472
8473       --  Final step, if the result is a type conversion involving Vax_Float
8474       --  types, then it is subject for further special processing.
8475
8476       if Nkind (N) = N_Type_Conversion
8477         and then (Vax_Float (Operand_Type) or else Vax_Float (Target_Type))
8478       then
8479          Expand_Vax_Conversion (N);
8480          return;
8481       end if;
8482    end Expand_N_Type_Conversion;
8483
8484    -----------------------------------
8485    -- Expand_N_Unchecked_Expression --
8486    -----------------------------------
8487
8488    --  Remove the unchecked expression node from the tree. It's job was simply
8489    --  to make sure that its constituent expression was handled with checks
8490    --  off, and now that that is done, we can remove it from the tree, and
8491    --  indeed must, since gigi does not expect to see these nodes.
8492
8493    procedure Expand_N_Unchecked_Expression (N : Node_Id) is
8494       Exp : constant Node_Id := Expression (N);
8495
8496    begin
8497       Set_Assignment_OK (Exp, Assignment_OK (N) or Assignment_OK (Exp));
8498       Rewrite (N, Exp);
8499    end Expand_N_Unchecked_Expression;
8500
8501    ----------------------------------------
8502    -- Expand_N_Unchecked_Type_Conversion --
8503    ----------------------------------------
8504
8505    --  If this cannot be handled by Gigi and we haven't already made a
8506    --  temporary for it, do it now.
8507
8508    procedure Expand_N_Unchecked_Type_Conversion (N : Node_Id) is
8509       Target_Type  : constant Entity_Id := Etype (N);
8510       Operand      : constant Node_Id   := Expression (N);
8511       Operand_Type : constant Entity_Id := Etype (Operand);
8512
8513    begin
8514       --  Nothing at all to do if conversion is to the identical type so remove
8515       --  the conversion completely, it is useless, except that it may carry
8516       --  an Assignment_OK indication which must be proprgated to the operand.
8517
8518       if Operand_Type = Target_Type then
8519          if Assignment_OK (N) then
8520             Set_Assignment_OK (Operand);
8521          end if;
8522
8523          Rewrite (N, Relocate_Node (Operand));
8524          return;
8525       end if;
8526
8527       --  If we have a conversion of a compile time known value to a target
8528       --  type and the value is in range of the target type, then we can simply
8529       --  replace the construct by an integer literal of the correct type. We
8530       --  only apply this to integer types being converted. Possibly it may
8531       --  apply in other cases, but it is too much trouble to worry about.
8532
8533       --  Note that we do not do this transformation if the Kill_Range_Check
8534       --  flag is set, since then the value may be outside the expected range.
8535       --  This happens in the Normalize_Scalars case.
8536
8537       --  We also skip this if either the target or operand type is biased
8538       --  because in this case, the unchecked conversion is supposed to
8539       --  preserve the bit pattern, not the integer value.
8540
8541       if Is_Integer_Type (Target_Type)
8542         and then not Has_Biased_Representation (Target_Type)
8543         and then Is_Integer_Type (Operand_Type)
8544         and then not Has_Biased_Representation (Operand_Type)
8545         and then Compile_Time_Known_Value (Operand)
8546         and then not Kill_Range_Check (N)
8547       then
8548          declare
8549             Val : constant Uint := Expr_Value (Operand);
8550
8551          begin
8552             if Compile_Time_Known_Value (Type_Low_Bound (Target_Type))
8553                  and then
8554                Compile_Time_Known_Value (Type_High_Bound (Target_Type))
8555                  and then
8556                Val >= Expr_Value (Type_Low_Bound (Target_Type))
8557                  and then
8558                Val <= Expr_Value (Type_High_Bound (Target_Type))
8559             then
8560                Rewrite (N, Make_Integer_Literal (Sloc (N), Val));
8561
8562                --  If Address is the target type, just set the type to avoid a
8563                --  spurious type error on the literal when Address is a visible
8564                --  integer type.
8565
8566                if Is_Descendent_Of_Address (Target_Type) then
8567                   Set_Etype (N, Target_Type);
8568                else
8569                   Analyze_And_Resolve (N, Target_Type);
8570                end if;
8571
8572                return;
8573             end if;
8574          end;
8575       end if;
8576
8577       --  Nothing to do if conversion is safe
8578
8579       if Safe_Unchecked_Type_Conversion (N) then
8580          return;
8581       end if;
8582
8583       --  Otherwise force evaluation unless Assignment_OK flag is set (this
8584       --  flag indicates ??? -- more comments needed here)
8585
8586       if Assignment_OK (N) then
8587          null;
8588       else
8589          Force_Evaluation (N);
8590       end if;
8591    end Expand_N_Unchecked_Type_Conversion;
8592
8593    ----------------------------
8594    -- Expand_Record_Equality --
8595    ----------------------------
8596
8597    --  For non-variant records, Equality is expanded when needed into:
8598
8599    --      and then Lhs.Discr1 = Rhs.Discr1
8600    --      and then ...
8601    --      and then Lhs.Discrn = Rhs.Discrn
8602    --      and then Lhs.Cmp1 = Rhs.Cmp1
8603    --      and then ...
8604    --      and then Lhs.Cmpn = Rhs.Cmpn
8605
8606    --  The expression is folded by the back-end for adjacent fields. This
8607    --  function is called for tagged record in only one occasion: for imple-
8608    --  menting predefined primitive equality (see Predefined_Primitives_Bodies)
8609    --  otherwise the primitive "=" is used directly.
8610
8611    function Expand_Record_Equality
8612      (Nod    : Node_Id;
8613       Typ    : Entity_Id;
8614       Lhs    : Node_Id;
8615       Rhs    : Node_Id;
8616       Bodies : List_Id) return Node_Id
8617    is
8618       Loc : constant Source_Ptr := Sloc (Nod);
8619
8620       Result : Node_Id;
8621       C      : Entity_Id;
8622
8623       First_Time : Boolean := True;
8624
8625       function Suitable_Element (C : Entity_Id) return Entity_Id;
8626       --  Return the first field to compare beginning with C, skipping the
8627       --  inherited components.
8628
8629       ----------------------
8630       -- Suitable_Element --
8631       ----------------------
8632
8633       function Suitable_Element (C : Entity_Id) return Entity_Id is
8634       begin
8635          if No (C) then
8636             return Empty;
8637
8638          elsif Ekind (C) /= E_Discriminant
8639            and then Ekind (C) /= E_Component
8640          then
8641             return Suitable_Element (Next_Entity (C));
8642
8643          elsif Is_Tagged_Type (Typ)
8644            and then C /= Original_Record_Component (C)
8645          then
8646             return Suitable_Element (Next_Entity (C));
8647
8648          elsif Chars (C) = Name_uController
8649            or else Chars (C) = Name_uTag
8650          then
8651             return Suitable_Element (Next_Entity (C));
8652
8653          elsif Is_Interface (Etype (C)) then
8654             return Suitable_Element (Next_Entity (C));
8655
8656          else
8657             return C;
8658          end if;
8659       end Suitable_Element;
8660
8661    --  Start of processing for Expand_Record_Equality
8662
8663    begin
8664       --  Generates the following code: (assuming that Typ has one Discr and
8665       --  component C2 is also a record)
8666
8667       --   True
8668       --     and then Lhs.Discr1 = Rhs.Discr1
8669       --     and then Lhs.C1 = Rhs.C1
8670       --     and then Lhs.C2.C1=Rhs.C2.C1 and then ... Lhs.C2.Cn=Rhs.C2.Cn
8671       --     and then ...
8672       --     and then Lhs.Cmpn = Rhs.Cmpn
8673
8674       Result := New_Reference_To (Standard_True, Loc);
8675       C := Suitable_Element (First_Entity (Typ));
8676
8677       while Present (C) loop
8678          declare
8679             New_Lhs : Node_Id;
8680             New_Rhs : Node_Id;
8681             Check   : Node_Id;
8682
8683          begin
8684             if First_Time then
8685                First_Time := False;
8686                New_Lhs := Lhs;
8687                New_Rhs := Rhs;
8688             else
8689                New_Lhs := New_Copy_Tree (Lhs);
8690                New_Rhs := New_Copy_Tree (Rhs);
8691             end if;
8692
8693             Check :=
8694               Expand_Composite_Equality (Nod, Etype (C),
8695                Lhs =>
8696                  Make_Selected_Component (Loc,
8697                    Prefix => New_Lhs,
8698                    Selector_Name => New_Reference_To (C, Loc)),
8699                Rhs =>
8700                  Make_Selected_Component (Loc,
8701                    Prefix => New_Rhs,
8702                    Selector_Name => New_Reference_To (C, Loc)),
8703                Bodies => Bodies);
8704
8705             --  If some (sub)component is an unchecked_union, the whole
8706             --  operation will raise program error.
8707
8708             if Nkind (Check) = N_Raise_Program_Error then
8709                Result := Check;
8710                Set_Etype (Result, Standard_Boolean);
8711                exit;
8712             else
8713                Result :=
8714                  Make_And_Then (Loc,
8715                    Left_Opnd  => Result,
8716                    Right_Opnd => Check);
8717             end if;
8718          end;
8719
8720          C := Suitable_Element (Next_Entity (C));
8721       end loop;
8722
8723       return Result;
8724    end Expand_Record_Equality;
8725
8726    -------------------------------------
8727    -- Fixup_Universal_Fixed_Operation --
8728    -------------------------------------
8729
8730    procedure Fixup_Universal_Fixed_Operation (N : Node_Id) is
8731       Conv : constant Node_Id := Parent (N);
8732
8733    begin
8734       --  We must have a type conversion immediately above us
8735
8736       pragma Assert (Nkind (Conv) = N_Type_Conversion);
8737
8738       --  Normally the type conversion gives our target type. The exception
8739       --  occurs in the case of the Round attribute, where the conversion
8740       --  will be to universal real, and our real type comes from the Round
8741       --  attribute (as well as an indication that we must round the result)
8742
8743       if Nkind (Parent (Conv)) = N_Attribute_Reference
8744         and then Attribute_Name (Parent (Conv)) = Name_Round
8745       then
8746          Set_Etype (N, Etype (Parent (Conv)));
8747          Set_Rounded_Result (N);
8748
8749       --  Normal case where type comes from conversion above us
8750
8751       else
8752          Set_Etype (N, Etype (Conv));
8753       end if;
8754    end Fixup_Universal_Fixed_Operation;
8755
8756    ------------------------------
8757    -- Get_Allocator_Final_List --
8758    ------------------------------
8759
8760    function Get_Allocator_Final_List
8761      (N    : Node_Id;
8762       T    : Entity_Id;
8763       PtrT : Entity_Id) return Entity_Id
8764    is
8765       Loc : constant Source_Ptr := Sloc (N);
8766
8767       Owner : Entity_Id := PtrT;
8768       --  The entity whose finalization list must be used to attach the
8769       --  allocated object.
8770
8771    begin
8772       if Ekind (PtrT) = E_Anonymous_Access_Type then
8773
8774          --  If the context is an access parameter, we need to create a
8775          --  non-anonymous access type in order to have a usable final list,
8776          --  because there is otherwise no pool to which the allocated object
8777          --  can belong. We create both the type and the finalization chain
8778          --  here, because freezing an internal type does not create such a
8779          --  chain. The Final_Chain that is thus created is shared by the
8780          --  access parameter. The access type is tested against the result
8781          --  type of the function to exclude allocators whose type is an
8782          --  anonymous access result type. We freeze the type at once to
8783          --  ensure that it is properly decorated for the back-end, even
8784          --  if the context and current scope is a loop.
8785
8786          if Nkind (Associated_Node_For_Itype (PtrT))
8787               in N_Subprogram_Specification
8788            and then
8789              PtrT /=
8790                Etype (Defining_Unit_Name (Associated_Node_For_Itype (PtrT)))
8791          then
8792             Owner := Make_Defining_Identifier (Loc, New_Internal_Name ('J'));
8793             Insert_Action (N,
8794               Make_Full_Type_Declaration (Loc,
8795                 Defining_Identifier => Owner,
8796                 Type_Definition =>
8797                    Make_Access_To_Object_Definition (Loc,
8798                      Subtype_Indication =>
8799                        New_Occurrence_Of (T, Loc))));
8800
8801             Freeze_Before (N, Owner);
8802             Build_Final_List (N, Owner);
8803             Set_Associated_Final_Chain (PtrT, Associated_Final_Chain (Owner));
8804
8805          --  Ada 2005 (AI-318-02): If the context is a return object
8806          --  declaration, then the anonymous return subtype is defined to have
8807          --  the same accessibility level as that of the function's result
8808          --  subtype, which means that we want the scope where the function is
8809          --  declared.
8810
8811          elsif Nkind (Associated_Node_For_Itype (PtrT)) = N_Object_Declaration
8812            and then Ekind (Scope (PtrT)) = E_Return_Statement
8813          then
8814             Owner := Scope (Return_Applies_To (Scope (PtrT)));
8815
8816          --  Case of an access discriminant, or (Ada 2005), of an anonymous
8817          --  access component or anonymous access function result: find the
8818          --  final list associated with the scope of the type. (In the
8819          --  anonymous access component kind, a list controller will have
8820          --  been allocated when freezing the record type, and PtrT has an
8821          --  Associated_Final_Chain attribute designating it.)
8822
8823          elsif No (Associated_Final_Chain (PtrT)) then
8824             Owner := Scope (PtrT);
8825          end if;
8826       end if;
8827
8828       return Find_Final_List (Owner);
8829    end Get_Allocator_Final_List;
8830
8831    ---------------------------------
8832    -- Has_Inferable_Discriminants --
8833    ---------------------------------
8834
8835    function Has_Inferable_Discriminants (N : Node_Id) return Boolean is
8836
8837       function Prefix_Is_Formal_Parameter (N : Node_Id) return Boolean;
8838       --  Determines whether the left-most prefix of a selected component is a
8839       --  formal parameter in a subprogram. Assumes N is a selected component.
8840
8841       --------------------------------
8842       -- Prefix_Is_Formal_Parameter --
8843       --------------------------------
8844
8845       function Prefix_Is_Formal_Parameter (N : Node_Id) return Boolean is
8846          Sel_Comp : Node_Id := N;
8847
8848       begin
8849          --  Move to the left-most prefix by climbing up the tree
8850
8851          while Present (Parent (Sel_Comp))
8852            and then Nkind (Parent (Sel_Comp)) = N_Selected_Component
8853          loop
8854             Sel_Comp := Parent (Sel_Comp);
8855          end loop;
8856
8857          return Ekind (Entity (Prefix (Sel_Comp))) in Formal_Kind;
8858       end Prefix_Is_Formal_Parameter;
8859
8860    --  Start of processing for Has_Inferable_Discriminants
8861
8862    begin
8863       --  For identifiers and indexed components, it is sufficient to have a
8864       --  constrained Unchecked_Union nominal subtype.
8865
8866       if Nkind_In (N, N_Identifier, N_Indexed_Component) then
8867          return Is_Unchecked_Union (Base_Type (Etype (N)))
8868                   and then
8869                 Is_Constrained (Etype (N));
8870
8871       --  For selected components, the subtype of the selector must be a
8872       --  constrained Unchecked_Union. If the component is subject to a
8873       --  per-object constraint, then the enclosing object must have inferable
8874       --  discriminants.
8875
8876       elsif Nkind (N) = N_Selected_Component then
8877          if Has_Per_Object_Constraint (Entity (Selector_Name (N))) then
8878
8879             --  A small hack. If we have a per-object constrained selected
8880             --  component of a formal parameter, return True since we do not
8881             --  know the actual parameter association yet.
8882
8883             if Prefix_Is_Formal_Parameter (N) then
8884                return True;
8885             end if;
8886
8887             --  Otherwise, check the enclosing object and the selector
8888
8889             return Has_Inferable_Discriminants (Prefix (N))
8890                      and then
8891                    Has_Inferable_Discriminants (Selector_Name (N));
8892          end if;
8893
8894          --  The call to Has_Inferable_Discriminants will determine whether
8895          --  the selector has a constrained Unchecked_Union nominal type.
8896
8897          return Has_Inferable_Discriminants (Selector_Name (N));
8898
8899       --  A qualified expression has inferable discriminants if its subtype
8900       --  mark is a constrained Unchecked_Union subtype.
8901
8902       elsif Nkind (N) = N_Qualified_Expression then
8903          return Is_Unchecked_Union (Subtype_Mark (N))
8904                   and then
8905                 Is_Constrained (Subtype_Mark (N));
8906
8907       end if;
8908
8909       return False;
8910    end Has_Inferable_Discriminants;
8911
8912    -------------------------------
8913    -- Insert_Dereference_Action --
8914    -------------------------------
8915
8916    procedure Insert_Dereference_Action (N : Node_Id) is
8917       Loc  : constant Source_Ptr := Sloc (N);
8918       Typ  : constant Entity_Id  := Etype (N);
8919       Pool : constant Entity_Id  := Associated_Storage_Pool (Typ);
8920       Pnod : constant Node_Id    := Parent (N);
8921
8922       function Is_Checked_Storage_Pool (P : Entity_Id) return Boolean;
8923       --  Return true if type of P is derived from Checked_Pool;
8924
8925       -----------------------------
8926       -- Is_Checked_Storage_Pool --
8927       -----------------------------
8928
8929       function Is_Checked_Storage_Pool (P : Entity_Id) return Boolean is
8930          T : Entity_Id;
8931
8932       begin
8933          if No (P) then
8934             return False;
8935          end if;
8936
8937          T := Etype (P);
8938          while T /= Etype (T) loop
8939             if Is_RTE (T, RE_Checked_Pool) then
8940                return True;
8941             else
8942                T := Etype (T);
8943             end if;
8944          end loop;
8945
8946          return False;
8947       end Is_Checked_Storage_Pool;
8948
8949    --  Start of processing for Insert_Dereference_Action
8950
8951    begin
8952       pragma Assert (Nkind (Pnod) = N_Explicit_Dereference);
8953
8954       if not (Is_Checked_Storage_Pool (Pool)
8955               and then Comes_From_Source (Original_Node (Pnod)))
8956       then
8957          return;
8958       end if;
8959
8960       Insert_Action (N,
8961         Make_Procedure_Call_Statement (Loc,
8962           Name => New_Reference_To (
8963             Find_Prim_Op (Etype (Pool), Name_Dereference), Loc),
8964
8965           Parameter_Associations => New_List (
8966
8967             --  Pool
8968
8969              New_Reference_To (Pool, Loc),
8970
8971             --  Storage_Address. We use the attribute Pool_Address, which uses
8972             --  the pointer itself to find the address of the object, and which
8973             --  handles unconstrained arrays properly by computing the address
8974             --  of the template. i.e. the correct address of the corresponding
8975             --  allocation.
8976
8977              Make_Attribute_Reference (Loc,
8978                Prefix         => Duplicate_Subexpr_Move_Checks (N),
8979                Attribute_Name => Name_Pool_Address),
8980
8981             --  Size_In_Storage_Elements
8982
8983              Make_Op_Divide (Loc,
8984                Left_Opnd  =>
8985                 Make_Attribute_Reference (Loc,
8986                   Prefix         =>
8987                     Make_Explicit_Dereference (Loc,
8988                       Duplicate_Subexpr_Move_Checks (N)),
8989                   Attribute_Name => Name_Size),
8990                Right_Opnd =>
8991                  Make_Integer_Literal (Loc, System_Storage_Unit)),
8992
8993             --  Alignment
8994
8995              Make_Attribute_Reference (Loc,
8996                Prefix         =>
8997                  Make_Explicit_Dereference (Loc,
8998                    Duplicate_Subexpr_Move_Checks (N)),
8999                Attribute_Name => Name_Alignment))));
9000
9001    exception
9002       when RE_Not_Available =>
9003          return;
9004    end Insert_Dereference_Action;
9005
9006    ------------------------------
9007    -- Make_Array_Comparison_Op --
9008    ------------------------------
9009
9010    --  This is a hand-coded expansion of the following generic function:
9011
9012    --  generic
9013    --    type elem is  (<>);
9014    --    type index is (<>);
9015    --    type a is array (index range <>) of elem;
9016
9017    --  function Gnnn (X : a; Y: a) return boolean is
9018    --    J : index := Y'first;
9019
9020    --  begin
9021    --    if X'length = 0 then
9022    --       return false;
9023
9024    --    elsif Y'length = 0 then
9025    --       return true;
9026
9027    --    else
9028    --      for I in X'range loop
9029    --        if X (I) = Y (J) then
9030    --          if J = Y'last then
9031    --            exit;
9032    --          else
9033    --            J := index'succ (J);
9034    --          end if;
9035
9036    --        else
9037    --           return X (I) > Y (J);
9038    --        end if;
9039    --      end loop;
9040
9041    --      return X'length > Y'length;
9042    --    end if;
9043    --  end Gnnn;
9044
9045    --  Note that since we are essentially doing this expansion by hand, we
9046    --  do not need to generate an actual or formal generic part, just the
9047    --  instantiated function itself.
9048
9049    function Make_Array_Comparison_Op
9050      (Typ : Entity_Id;
9051       Nod : Node_Id) return Node_Id
9052    is
9053       Loc : constant Source_Ptr := Sloc (Nod);
9054
9055       X : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uX);
9056       Y : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uY);
9057       I : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uI);
9058       J : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uJ);
9059
9060       Index : constant Entity_Id := Base_Type (Etype (First_Index (Typ)));
9061
9062       Loop_Statement : Node_Id;
9063       Loop_Body      : Node_Id;
9064       If_Stat        : Node_Id;
9065       Inner_If       : Node_Id;
9066       Final_Expr     : Node_Id;
9067       Func_Body      : Node_Id;
9068       Func_Name      : Entity_Id;
9069       Formals        : List_Id;
9070       Length1        : Node_Id;
9071       Length2        : Node_Id;
9072
9073    begin
9074       --  if J = Y'last then
9075       --     exit;
9076       --  else
9077       --     J := index'succ (J);
9078       --  end if;
9079
9080       Inner_If :=
9081         Make_Implicit_If_Statement (Nod,
9082           Condition =>
9083             Make_Op_Eq (Loc,
9084               Left_Opnd => New_Reference_To (J, Loc),
9085               Right_Opnd =>
9086                 Make_Attribute_Reference (Loc,
9087                   Prefix => New_Reference_To (Y, Loc),
9088                   Attribute_Name => Name_Last)),
9089
9090           Then_Statements => New_List (
9091                 Make_Exit_Statement (Loc)),
9092
9093           Else_Statements =>
9094             New_List (
9095               Make_Assignment_Statement (Loc,
9096                 Name => New_Reference_To (J, Loc),
9097                 Expression =>
9098                   Make_Attribute_Reference (Loc,
9099                     Prefix => New_Reference_To (Index, Loc),
9100                     Attribute_Name => Name_Succ,
9101                     Expressions => New_List (New_Reference_To (J, Loc))))));
9102
9103       --  if X (I) = Y (J) then
9104       --     if ... end if;
9105       --  else
9106       --     return X (I) > Y (J);
9107       --  end if;
9108
9109       Loop_Body :=
9110         Make_Implicit_If_Statement (Nod,
9111           Condition =>
9112             Make_Op_Eq (Loc,
9113               Left_Opnd =>
9114                 Make_Indexed_Component (Loc,
9115                   Prefix      => New_Reference_To (X, Loc),
9116                   Expressions => New_List (New_Reference_To (I, Loc))),
9117
9118               Right_Opnd =>
9119                 Make_Indexed_Component (Loc,
9120                   Prefix      => New_Reference_To (Y, Loc),
9121                   Expressions => New_List (New_Reference_To (J, Loc)))),
9122
9123           Then_Statements => New_List (Inner_If),
9124
9125           Else_Statements => New_List (
9126             Make_Simple_Return_Statement (Loc,
9127               Expression =>
9128                 Make_Op_Gt (Loc,
9129                   Left_Opnd =>
9130                     Make_Indexed_Component (Loc,
9131                       Prefix      => New_Reference_To (X, Loc),
9132                       Expressions => New_List (New_Reference_To (I, Loc))),
9133
9134                   Right_Opnd =>
9135                     Make_Indexed_Component (Loc,
9136                       Prefix      => New_Reference_To (Y, Loc),
9137                       Expressions => New_List (
9138                         New_Reference_To (J, Loc)))))));
9139
9140       --  for I in X'range loop
9141       --     if ... end if;
9142       --  end loop;
9143
9144       Loop_Statement :=
9145         Make_Implicit_Loop_Statement (Nod,
9146           Identifier => Empty,
9147
9148           Iteration_Scheme =>
9149             Make_Iteration_Scheme (Loc,
9150               Loop_Parameter_Specification =>
9151                 Make_Loop_Parameter_Specification (Loc,
9152                   Defining_Identifier => I,
9153                   Discrete_Subtype_Definition =>
9154                     Make_Attribute_Reference (Loc,
9155                       Prefix => New_Reference_To (X, Loc),
9156                       Attribute_Name => Name_Range))),
9157
9158           Statements => New_List (Loop_Body));
9159
9160       --    if X'length = 0 then
9161       --       return false;
9162       --    elsif Y'length = 0 then
9163       --       return true;
9164       --    else
9165       --      for ... loop ... end loop;
9166       --      return X'length > Y'length;
9167       --    end if;
9168
9169       Length1 :=
9170         Make_Attribute_Reference (Loc,
9171           Prefix => New_Reference_To (X, Loc),
9172           Attribute_Name => Name_Length);
9173
9174       Length2 :=
9175         Make_Attribute_Reference (Loc,
9176           Prefix => New_Reference_To (Y, Loc),
9177           Attribute_Name => Name_Length);
9178
9179       Final_Expr :=
9180         Make_Op_Gt (Loc,
9181           Left_Opnd  => Length1,
9182           Right_Opnd => Length2);
9183
9184       If_Stat :=
9185         Make_Implicit_If_Statement (Nod,
9186           Condition =>
9187             Make_Op_Eq (Loc,
9188               Left_Opnd =>
9189                 Make_Attribute_Reference (Loc,
9190                   Prefix => New_Reference_To (X, Loc),
9191                   Attribute_Name => Name_Length),
9192               Right_Opnd =>
9193                 Make_Integer_Literal (Loc, 0)),
9194
9195           Then_Statements =>
9196             New_List (
9197               Make_Simple_Return_Statement (Loc,
9198                 Expression => New_Reference_To (Standard_False, Loc))),
9199
9200           Elsif_Parts => New_List (
9201             Make_Elsif_Part (Loc,
9202               Condition =>
9203                 Make_Op_Eq (Loc,
9204                   Left_Opnd =>
9205                     Make_Attribute_Reference (Loc,
9206                       Prefix => New_Reference_To (Y, Loc),
9207                       Attribute_Name => Name_Length),
9208                   Right_Opnd =>
9209                     Make_Integer_Literal (Loc, 0)),
9210
9211               Then_Statements =>
9212                 New_List (
9213                   Make_Simple_Return_Statement (Loc,
9214                      Expression => New_Reference_To (Standard_True, Loc))))),
9215
9216           Else_Statements => New_List (
9217             Loop_Statement,
9218             Make_Simple_Return_Statement (Loc,
9219               Expression => Final_Expr)));
9220
9221       --  (X : a; Y: a)
9222
9223       Formals := New_List (
9224         Make_Parameter_Specification (Loc,
9225           Defining_Identifier => X,
9226           Parameter_Type      => New_Reference_To (Typ, Loc)),
9227
9228         Make_Parameter_Specification (Loc,
9229           Defining_Identifier => Y,
9230           Parameter_Type      => New_Reference_To (Typ, Loc)));
9231
9232       --  function Gnnn (...) return boolean is
9233       --    J : index := Y'first;
9234       --  begin
9235       --    if ... end if;
9236       --  end Gnnn;
9237
9238       Func_Name := Make_Defining_Identifier (Loc, New_Internal_Name ('G'));
9239
9240       Func_Body :=
9241         Make_Subprogram_Body (Loc,
9242           Specification =>
9243             Make_Function_Specification (Loc,
9244               Defining_Unit_Name       => Func_Name,
9245               Parameter_Specifications => Formals,
9246               Result_Definition => New_Reference_To (Standard_Boolean, Loc)),
9247
9248           Declarations => New_List (
9249             Make_Object_Declaration (Loc,
9250               Defining_Identifier => J,
9251               Object_Definition   => New_Reference_To (Index, Loc),
9252               Expression =>
9253                 Make_Attribute_Reference (Loc,
9254                   Prefix => New_Reference_To (Y, Loc),
9255                   Attribute_Name => Name_First))),
9256
9257           Handled_Statement_Sequence =>
9258             Make_Handled_Sequence_Of_Statements (Loc,
9259               Statements => New_List (If_Stat)));
9260
9261       return Func_Body;
9262    end Make_Array_Comparison_Op;
9263
9264    ---------------------------
9265    -- Make_Boolean_Array_Op --
9266    ---------------------------
9267
9268    --  For logical operations on boolean arrays, expand in line the following,
9269    --  replacing 'and' with 'or' or 'xor' where needed:
9270
9271    --    function Annn (A : typ; B: typ) return typ is
9272    --       C : typ;
9273    --    begin
9274    --       for J in A'range loop
9275    --          C (J) := A (J) op B (J);
9276    --       end loop;
9277    --       return C;
9278    --    end Annn;
9279
9280    --  Here typ is the boolean array type
9281
9282    function Make_Boolean_Array_Op
9283      (Typ : Entity_Id;
9284       N   : Node_Id) return Node_Id
9285    is
9286       Loc : constant Source_Ptr := Sloc (N);
9287
9288       A : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uA);
9289       B : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uB);
9290       C : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uC);
9291       J : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uJ);
9292
9293       A_J : Node_Id;
9294       B_J : Node_Id;
9295       C_J : Node_Id;
9296       Op  : Node_Id;
9297
9298       Formals        : List_Id;
9299       Func_Name      : Entity_Id;
9300       Func_Body      : Node_Id;
9301       Loop_Statement : Node_Id;
9302
9303    begin
9304       A_J :=
9305         Make_Indexed_Component (Loc,
9306           Prefix      => New_Reference_To (A, Loc),
9307           Expressions => New_List (New_Reference_To (J, Loc)));
9308
9309       B_J :=
9310         Make_Indexed_Component (Loc,
9311           Prefix      => New_Reference_To (B, Loc),
9312           Expressions => New_List (New_Reference_To (J, Loc)));
9313
9314       C_J :=
9315         Make_Indexed_Component (Loc,
9316           Prefix      => New_Reference_To (C, Loc),
9317           Expressions => New_List (New_Reference_To (J, Loc)));
9318
9319       if Nkind (N) = N_Op_And then
9320          Op :=
9321            Make_Op_And (Loc,
9322              Left_Opnd  => A_J,
9323              Right_Opnd => B_J);
9324
9325       elsif Nkind (N) = N_Op_Or then
9326          Op :=
9327            Make_Op_Or (Loc,
9328              Left_Opnd  => A_J,
9329              Right_Opnd => B_J);
9330
9331       else
9332          Op :=
9333            Make_Op_Xor (Loc,
9334              Left_Opnd  => A_J,
9335              Right_Opnd => B_J);
9336       end if;
9337
9338       Loop_Statement :=
9339         Make_Implicit_Loop_Statement (N,
9340           Identifier => Empty,
9341
9342           Iteration_Scheme =>
9343             Make_Iteration_Scheme (Loc,
9344               Loop_Parameter_Specification =>
9345                 Make_Loop_Parameter_Specification (Loc,
9346                   Defining_Identifier => J,
9347                   Discrete_Subtype_Definition =>
9348                     Make_Attribute_Reference (Loc,
9349                       Prefix => New_Reference_To (A, Loc),
9350                       Attribute_Name => Name_Range))),
9351
9352           Statements => New_List (
9353             Make_Assignment_Statement (Loc,
9354               Name       => C_J,
9355               Expression => Op)));
9356
9357       Formals := New_List (
9358         Make_Parameter_Specification (Loc,
9359           Defining_Identifier => A,
9360           Parameter_Type      => New_Reference_To (Typ, Loc)),
9361
9362         Make_Parameter_Specification (Loc,
9363           Defining_Identifier => B,
9364           Parameter_Type      => New_Reference_To (Typ, Loc)));
9365
9366       Func_Name :=
9367         Make_Defining_Identifier (Loc, New_Internal_Name ('A'));
9368       Set_Is_Inlined (Func_Name);
9369
9370       Func_Body :=
9371         Make_Subprogram_Body (Loc,
9372           Specification =>
9373             Make_Function_Specification (Loc,
9374               Defining_Unit_Name       => Func_Name,
9375               Parameter_Specifications => Formals,
9376               Result_Definition        => New_Reference_To (Typ, Loc)),
9377
9378           Declarations => New_List (
9379             Make_Object_Declaration (Loc,
9380               Defining_Identifier => C,
9381               Object_Definition   => New_Reference_To (Typ, Loc))),
9382
9383           Handled_Statement_Sequence =>
9384             Make_Handled_Sequence_Of_Statements (Loc,
9385               Statements => New_List (
9386                 Loop_Statement,
9387                 Make_Simple_Return_Statement (Loc,
9388                   Expression => New_Reference_To (C, Loc)))));
9389
9390       return Func_Body;
9391    end Make_Boolean_Array_Op;
9392
9393    ------------------------
9394    -- Rewrite_Comparison --
9395    ------------------------
9396
9397    procedure Rewrite_Comparison (N : Node_Id) is
9398       Warning_Generated : Boolean := False;
9399       --  Set to True if first pass with Assume_Valid generates a warning in
9400       --  which case we skip the second pass to avoid warning overloaded.
9401
9402       Result : Node_Id;
9403       --  Set to Standard_True or Standard_False
9404
9405    begin
9406       if Nkind (N) = N_Type_Conversion then
9407          Rewrite_Comparison (Expression (N));
9408          return;
9409
9410       elsif Nkind (N) not in N_Op_Compare then
9411          return;
9412       end if;
9413
9414       --  Now start looking at the comparison in detail. We potentially go
9415       --  through this loop twice. The first time, Assume_Valid is set False
9416       --  in the call to Compile_Time_Compare. If this call results in a
9417       --  clear result of always True or Always False, that's decisive and
9418       --  we are done. Otherwise we repeat the processing with Assume_Valid
9419       --  set to True to generate additional warnings. We can stil that step
9420       --  if Constant_Condition_Warnings is False.
9421
9422       for AV in False .. True loop
9423          declare
9424             Typ : constant Entity_Id := Etype (N);
9425             Op1 : constant Node_Id   := Left_Opnd (N);
9426             Op2 : constant Node_Id   := Right_Opnd (N);
9427
9428             Res : constant Compare_Result :=
9429                     Compile_Time_Compare (Op1, Op2, Assume_Valid => AV);
9430             --  Res indicates if compare outcome can be compile time determined
9431
9432             True_Result  : Boolean;
9433             False_Result : Boolean;
9434
9435          begin
9436             case N_Op_Compare (Nkind (N)) is
9437             when N_Op_Eq =>
9438                True_Result  := Res = EQ;
9439                False_Result := Res = LT or else Res = GT or else Res = NE;
9440
9441             when N_Op_Ge =>
9442                True_Result  := Res in Compare_GE;
9443                False_Result := Res = LT;
9444
9445                if Res = LE
9446                  and then Constant_Condition_Warnings
9447                  and then Comes_From_Source (Original_Node (N))
9448                  and then Nkind (Original_Node (N)) = N_Op_Ge
9449                  and then not In_Instance
9450                  and then Is_Integer_Type (Etype (Left_Opnd (N)))
9451                  and then not Has_Warnings_Off (Etype (Left_Opnd (N)))
9452                then
9453                   Error_Msg_N
9454                     ("can never be greater than, could replace by ""'=""?", N);
9455                   Warning_Generated := True;
9456                end if;
9457
9458             when N_Op_Gt =>
9459                True_Result  := Res = GT;
9460                False_Result := Res in Compare_LE;
9461
9462             when N_Op_Lt =>
9463                True_Result  := Res = LT;
9464                False_Result := Res in Compare_GE;
9465
9466             when N_Op_Le =>
9467                True_Result  := Res in Compare_LE;
9468                False_Result := Res = GT;
9469
9470                if Res = GE
9471                  and then Constant_Condition_Warnings
9472                  and then Comes_From_Source (Original_Node (N))
9473                  and then Nkind (Original_Node (N)) = N_Op_Le
9474                  and then not In_Instance
9475                  and then Is_Integer_Type (Etype (Left_Opnd (N)))
9476                  and then not Has_Warnings_Off (Etype (Left_Opnd (N)))
9477                then
9478                   Error_Msg_N
9479                     ("can never be less than, could replace by ""'=""?", N);
9480                   Warning_Generated := True;
9481                end if;
9482
9483             when N_Op_Ne =>
9484                True_Result  := Res = NE or else Res = GT or else Res = LT;
9485                False_Result := Res = EQ;
9486             end case;
9487
9488             --  If this is the first iteration, then we actually convert the
9489             --  comparison into True or False, if the result is certain.
9490
9491             if AV = False then
9492                if True_Result or False_Result then
9493                   if True_Result then
9494                      Result := Standard_True;
9495                   else
9496                      Result := Standard_False;
9497                   end if;
9498
9499                   Rewrite (N,
9500                     Convert_To (Typ,
9501                       New_Occurrence_Of (Result, Sloc (N))));
9502                   Analyze_And_Resolve (N, Typ);
9503                   Warn_On_Known_Condition (N);
9504                   return;
9505                end if;
9506
9507             --  If this is the second iteration (AV = True), and the original
9508             --  node comes from source and we are not in an instance, then
9509             --  give a warning if we know result would be True or False. Note
9510             --  we know Constant_Condition_Warnings is set if we get here.
9511
9512             elsif Comes_From_Source (Original_Node (N))
9513               and then not In_Instance
9514             then
9515                if True_Result then
9516                   Error_Msg_N
9517                     ("condition can only be False if invalid values present?",
9518                      N);
9519                elsif False_Result then
9520                   Error_Msg_N
9521                     ("condition can only be True if invalid values present?",
9522                      N);
9523                end if;
9524             end if;
9525          end;
9526
9527          --  Skip second iteration if not warning on constant conditions or
9528          --  if the first iteration already generated a warning of some kind
9529          --  or if we are in any case assuming all values are valid (so that
9530          --  the first iteration took care of the valid case).
9531
9532          exit when not Constant_Condition_Warnings;
9533          exit when Warning_Generated;
9534          exit when Assume_No_Invalid_Values;
9535       end loop;
9536    end Rewrite_Comparison;
9537
9538    ----------------------------
9539    -- Safe_In_Place_Array_Op --
9540    ----------------------------
9541
9542    function Safe_In_Place_Array_Op
9543      (Lhs : Node_Id;
9544       Op1 : Node_Id;
9545       Op2 : Node_Id) return Boolean
9546    is
9547       Target : Entity_Id;
9548
9549       function Is_Safe_Operand (Op : Node_Id) return Boolean;
9550       --  Operand is safe if it cannot overlap part of the target of the
9551       --  operation. If the operand and the target are identical, the operand
9552       --  is safe. The operand can be empty in the case of negation.
9553
9554       function Is_Unaliased (N : Node_Id) return Boolean;
9555       --  Check that N is a stand-alone entity
9556
9557       ------------------
9558       -- Is_Unaliased --
9559       ------------------
9560
9561       function Is_Unaliased (N : Node_Id) return Boolean is
9562       begin
9563          return
9564            Is_Entity_Name (N)
9565              and then No (Address_Clause (Entity (N)))
9566              and then No (Renamed_Object (Entity (N)));
9567       end Is_Unaliased;
9568
9569       ---------------------
9570       -- Is_Safe_Operand --
9571       ---------------------
9572
9573       function Is_Safe_Operand (Op : Node_Id) return Boolean is
9574       begin
9575          if No (Op) then
9576             return True;
9577
9578          elsif Is_Entity_Name (Op) then
9579             return Is_Unaliased (Op);
9580
9581          elsif Nkind_In (Op, N_Indexed_Component, N_Selected_Component) then
9582             return Is_Unaliased (Prefix (Op));
9583
9584          elsif Nkind (Op) = N_Slice then
9585             return
9586               Is_Unaliased (Prefix (Op))
9587                 and then Entity (Prefix (Op)) /= Target;
9588
9589          elsif Nkind (Op) = N_Op_Not then
9590             return Is_Safe_Operand (Right_Opnd (Op));
9591
9592          else
9593             return False;
9594          end if;
9595       end Is_Safe_Operand;
9596
9597       --  Start of processing for Is_Safe_In_Place_Array_Op
9598
9599    begin
9600       --  Skip this processing if the component size is different from system
9601       --  storage unit (since at least for NOT this would cause problems).
9602
9603       if Component_Size (Etype (Lhs)) /= System_Storage_Unit then
9604          return False;
9605
9606       --  Cannot do in place stuff on VM_Target since cannot pass addresses
9607
9608       elsif VM_Target /= No_VM then
9609          return False;
9610
9611       --  Cannot do in place stuff if non-standard Boolean representation
9612
9613       elsif Has_Non_Standard_Rep (Component_Type (Etype (Lhs))) then
9614          return False;
9615
9616       elsif not Is_Unaliased (Lhs) then
9617          return False;
9618       else
9619          Target := Entity (Lhs);
9620
9621          return
9622            Is_Safe_Operand (Op1)
9623              and then Is_Safe_Operand (Op2);
9624       end if;
9625    end Safe_In_Place_Array_Op;
9626
9627    -----------------------
9628    -- Tagged_Membership --
9629    -----------------------
9630
9631    --  There are two different cases to consider depending on whether the right
9632    --  operand is a class-wide type or not. If not we just compare the actual
9633    --  tag of the left expr to the target type tag:
9634    --
9635    --     Left_Expr.Tag = Right_Type'Tag;
9636    --
9637    --  If it is a class-wide type we use the RT function CW_Membership which is
9638    --  usually implemented by looking in the ancestor tables contained in the
9639    --  dispatch table pointed by Left_Expr.Tag for Typ'Tag
9640
9641    --  Ada 2005 (AI-251): If it is a class-wide interface type we use the RT
9642    --  function IW_Membership which is usually implemented by looking in the
9643    --  table of abstract interface types plus the ancestor table contained in
9644    --  the dispatch table pointed by Left_Expr.Tag for Typ'Tag
9645
9646    function Tagged_Membership (N : Node_Id) return Node_Id is
9647       Left  : constant Node_Id    := Left_Opnd  (N);
9648       Right : constant Node_Id    := Right_Opnd (N);
9649       Loc   : constant Source_Ptr := Sloc (N);
9650
9651       Left_Type  : Entity_Id;
9652       Right_Type : Entity_Id;
9653       Obj_Tag    : Node_Id;
9654
9655    begin
9656       --  Handle entities from the limited view
9657
9658       Left_Type  := Available_View (Etype (Left));
9659       Right_Type := Available_View (Etype (Right));
9660
9661       if Is_Class_Wide_Type (Left_Type) then
9662          Left_Type := Root_Type (Left_Type);
9663       end if;
9664
9665       Obj_Tag :=
9666         Make_Selected_Component (Loc,
9667           Prefix        => Relocate_Node (Left),
9668           Selector_Name =>
9669             New_Reference_To (First_Tag_Component (Left_Type), Loc));
9670
9671       if Is_Class_Wide_Type (Right_Type) then
9672
9673          --  No need to issue a run-time check if we statically know that the
9674          --  result of this membership test is always true. For example,
9675          --  considering the following declarations:
9676
9677          --    type Iface is interface;
9678          --    type T     is tagged null record;
9679          --    type DT    is new T and Iface with null record;
9680
9681          --    Obj1 : T;
9682          --    Obj2 : DT;
9683
9684          --  These membership tests are always true:
9685
9686          --    Obj1 in T'Class
9687          --    Obj2 in T'Class;
9688          --    Obj2 in Iface'Class;
9689
9690          --  We do not need to handle cases where the membership is illegal.
9691          --  For example:
9692
9693          --    Obj1 in DT'Class;     --  Compile time error
9694          --    Obj1 in Iface'Class;  --  Compile time error
9695
9696          if not Is_Class_Wide_Type (Left_Type)
9697            and then (Is_Ancestor (Etype (Right_Type), Left_Type)
9698                        or else (Is_Interface (Etype (Right_Type))
9699                                  and then Interface_Present_In_Ancestor
9700                                            (Typ   => Left_Type,
9701                                             Iface => Etype (Right_Type))))
9702          then
9703             return New_Reference_To (Standard_True, Loc);
9704          end if;
9705
9706          --  Ada 2005 (AI-251): Class-wide applied to interfaces
9707
9708          if Is_Interface (Etype (Class_Wide_Type (Right_Type)))
9709
9710             --   Support to: "Iface_CW_Typ in Typ'Class"
9711
9712            or else Is_Interface (Left_Type)
9713          then
9714             --  Issue error if IW_Membership operation not available in a
9715             --  configurable run time setting.
9716
9717             if not RTE_Available (RE_IW_Membership) then
9718                Error_Msg_CRT
9719                  ("dynamic membership test on interface types", N);
9720                return Empty;
9721             end if;
9722
9723             return
9724               Make_Function_Call (Loc,
9725                  Name => New_Occurrence_Of (RTE (RE_IW_Membership), Loc),
9726                  Parameter_Associations => New_List (
9727                    Make_Attribute_Reference (Loc,
9728                      Prefix => Obj_Tag,
9729                      Attribute_Name => Name_Address),
9730                    New_Reference_To (
9731                      Node (First_Elmt
9732                             (Access_Disp_Table (Root_Type (Right_Type)))),
9733                      Loc)));
9734
9735          --  Ada 95: Normal case
9736
9737          else
9738             return
9739               Build_CW_Membership (Loc,
9740                 Obj_Tag_Node => Obj_Tag,
9741                 Typ_Tag_Node =>
9742                    New_Reference_To (
9743                      Node (First_Elmt
9744                             (Access_Disp_Table (Root_Type (Right_Type)))),
9745                      Loc));
9746          end if;
9747
9748       --  Right_Type is not a class-wide type
9749
9750       else
9751          --  No need to check the tag of the object if Right_Typ is abstract
9752
9753          if Is_Abstract_Type (Right_Type) then
9754             return New_Reference_To (Standard_False, Loc);
9755
9756          else
9757             return
9758               Make_Op_Eq (Loc,
9759                 Left_Opnd  => Obj_Tag,
9760                 Right_Opnd =>
9761                   New_Reference_To
9762                     (Node (First_Elmt (Access_Disp_Table (Right_Type))), Loc));
9763          end if;
9764       end if;
9765    end Tagged_Membership;
9766
9767    ------------------------------
9768    -- Unary_Op_Validity_Checks --
9769    ------------------------------
9770
9771    procedure Unary_Op_Validity_Checks (N : Node_Id) is
9772    begin
9773       if Validity_Checks_On and Validity_Check_Operands then
9774          Ensure_Valid (Right_Opnd (N));
9775       end if;
9776    end Unary_Op_Validity_Checks;
9777
9778 end Exp_Ch4;