OSDN Git Service

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