frontend.adb (Frontend): Code cleanup.
[platform/upstream/gcc.git] / gcc / ada / exp_ch4.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                              E X P _ C H 4                               --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2009, Free Software Foundation, Inc.         --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 3,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT; see file COPYING3.  If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license.          --
20 --                                                                          --
21 -- GNAT was originally developed  by the GNAT team at  New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
23 --                                                                          --
24 ------------------------------------------------------------------------------
25
26 with Atree;    use Atree;
27 with Checks;   use Checks;
28 with Debug;    use Debug;
29 with Einfo;    use Einfo;
30 with Elists;   use Elists;
31 with Errout;   use Errout;
32 with Exp_Aggr; use Exp_Aggr;
33 with Exp_Atag; use Exp_Atag;
34 with Exp_Ch3;  use Exp_Ch3;
35 with Exp_Ch6;  use Exp_Ch6;
36 with Exp_Ch7;  use Exp_Ch7;
37 with Exp_Ch9;  use Exp_Ch9;
38 with Exp_Disp; use Exp_Disp;
39 with Exp_Fixd; use Exp_Fixd;
40 with Exp_Pakd; use Exp_Pakd;
41 with Exp_Tss;  use Exp_Tss;
42 with Exp_Util; use Exp_Util;
43 with Exp_VFpt; use Exp_VFpt;
44 with Freeze;   use Freeze;
45 with Inline;   use Inline;
46 with Namet;    use Namet;
47 with Nlists;   use Nlists;
48 with Nmake;    use Nmake;
49 with Opt;      use Opt;
50 with Restrict; use Restrict;
51 with Rident;   use Rident;
52 with Rtsfind;  use Rtsfind;
53 with Sem;      use Sem;
54 with Sem_Aux;  use Sem_Aux;
55 with Sem_Cat;  use Sem_Cat;
56 with Sem_Ch3;  use Sem_Ch3;
57 with Sem_Ch8;  use Sem_Ch8;
58 with Sem_Ch13; use Sem_Ch13;
59 with Sem_Eval; use Sem_Eval;
60 with Sem_Res;  use Sem_Res;
61 with Sem_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. The proper fix would be to do the
4043       --  following expansion:
4044
4045       --      Cnn : access typ;
4046       --      if cond then
4047       --         <<then actions>>
4048       --         Cnn := then-expr'Unrestricted_Access;
4049       --      else
4050       --         <<else actions>>
4051       --         Cnn := else-expr'Unrestricted_Access;
4052       --      end if;
4053
4054       --  and replace the conditional expresion by a reference to Cnn.all ???
4055
4056       if Present (Then_Actions (N)) or else Present (Else_Actions (N)) then
4057          Cnn := Make_Temporary (Loc, 'C', N);
4058
4059          New_If :=
4060            Make_Implicit_If_Statement (N,
4061              Condition => Relocate_Node (Cond),
4062
4063              Then_Statements => New_List (
4064                Make_Assignment_Statement (Sloc (Thenx),
4065                  Name => New_Occurrence_Of (Cnn, Sloc (Thenx)),
4066                  Expression => Relocate_Node (Thenx))),
4067
4068              Else_Statements => New_List (
4069                Make_Assignment_Statement (Sloc (Elsex),
4070                  Name => New_Occurrence_Of (Cnn, Sloc (Elsex)),
4071                  Expression => Relocate_Node (Elsex))));
4072
4073          --  Move the SLOC of the parent If statement to the newly created one
4074          --  and change it to the SLOC of the expression which, after
4075          --  expansion, will correspond to what is being evaluated.
4076
4077          if Present (Parent (N))
4078            and then Nkind (Parent (N)) = N_If_Statement
4079          then
4080             Set_Sloc (New_If, Sloc (Parent (N)));
4081             Set_Sloc (Parent (N), Loc);
4082          end if;
4083
4084          Set_Assignment_OK (Name (First (Then_Statements (New_If))));
4085          Set_Assignment_OK (Name (First (Else_Statements (New_If))));
4086
4087          if Present (Then_Actions (N)) then
4088             Insert_List_Before
4089               (First (Then_Statements (New_If)), Then_Actions (N));
4090          end if;
4091
4092          if Present (Else_Actions (N)) then
4093             Insert_List_Before
4094               (First (Else_Statements (New_If)), Else_Actions (N));
4095          end if;
4096
4097          Rewrite (N, New_Occurrence_Of (Cnn, Loc));
4098
4099          Insert_Action (N,
4100            Make_Object_Declaration (Loc,
4101              Defining_Identifier => Cnn,
4102              Object_Definition   => New_Occurrence_Of (Typ, Loc)));
4103
4104          Insert_Action (N, New_If);
4105          Analyze_And_Resolve (N, Typ);
4106       end if;
4107    end Expand_N_Conditional_Expression;
4108
4109    -----------------------------------
4110    -- Expand_N_Explicit_Dereference --
4111    -----------------------------------
4112
4113    procedure Expand_N_Explicit_Dereference (N : Node_Id) is
4114    begin
4115       --  Insert explicit dereference call for the checked storage pool case
4116
4117       Insert_Dereference_Action (Prefix (N));
4118    end Expand_N_Explicit_Dereference;
4119
4120    -----------------
4121    -- Expand_N_In --
4122    -----------------
4123
4124    procedure Expand_N_In (N : Node_Id) is
4125       Loc    : constant Source_Ptr := Sloc (N);
4126       Rtyp   : constant Entity_Id  := Etype (N);
4127       Lop    : constant Node_Id    := Left_Opnd (N);
4128       Rop    : constant Node_Id    := Right_Opnd (N);
4129       Static : constant Boolean    := Is_OK_Static_Expression (N);
4130
4131       procedure Expand_Set_Membership;
4132       --  For each disjunct we create a simple equality or membership test.
4133       --  The whole membership is rewritten as a short-circuit disjunction.
4134
4135       ---------------------------
4136       -- Expand_Set_Membership --
4137       ---------------------------
4138
4139       procedure Expand_Set_Membership is
4140          Alt  : Node_Id;
4141          Res  : Node_Id;
4142
4143          function Make_Cond (Alt : Node_Id) return Node_Id;
4144          --  If the alternative is a subtype mark, create a simple membership
4145          --  test. Otherwise create an equality test for it.
4146
4147          ---------------
4148          -- Make_Cond --
4149          ---------------
4150
4151          function Make_Cond (Alt : Node_Id) return Node_Id is
4152             Cond : Node_Id;
4153             L    : constant Node_Id := New_Copy (Lop);
4154             R    : constant Node_Id := Relocate_Node (Alt);
4155
4156          begin
4157             if Is_Entity_Name (Alt)
4158               and then Is_Type (Entity (Alt))
4159             then
4160                Cond :=
4161                  Make_In (Sloc (Alt),
4162                    Left_Opnd  => L,
4163                    Right_Opnd => R);
4164             else
4165                Cond := Make_Op_Eq (Sloc (Alt),
4166                  Left_Opnd  => L,
4167                  Right_Opnd => R);
4168             end if;
4169
4170             return Cond;
4171          end Make_Cond;
4172
4173       --  Start of proessing for Expand_N_In
4174
4175       begin
4176          Alt := Last (Alternatives (N));
4177          Res := Make_Cond (Alt);
4178
4179          Prev (Alt);
4180          while Present (Alt) loop
4181             Res :=
4182               Make_Or_Else (Sloc (Alt),
4183                 Left_Opnd  => Make_Cond (Alt),
4184                 Right_Opnd => Res);
4185             Prev (Alt);
4186          end loop;
4187
4188          Rewrite (N, Res);
4189          Analyze_And_Resolve (N, Standard_Boolean);
4190       end Expand_Set_Membership;
4191
4192       procedure Substitute_Valid_Check;
4193       --  Replaces node N by Lop'Valid. This is done when we have an explicit
4194       --  test for the left operand being in range of its subtype.
4195
4196       ----------------------------
4197       -- Substitute_Valid_Check --
4198       ----------------------------
4199
4200       procedure Substitute_Valid_Check is
4201       begin
4202          Rewrite (N,
4203            Make_Attribute_Reference (Loc,
4204              Prefix         => Relocate_Node (Lop),
4205              Attribute_Name => Name_Valid));
4206
4207          Analyze_And_Resolve (N, Rtyp);
4208
4209          Error_Msg_N ("?explicit membership test may be optimized away", N);
4210          Error_Msg_N ("\?use ''Valid attribute instead", N);
4211          return;
4212       end Substitute_Valid_Check;
4213
4214    --  Start of processing for Expand_N_In
4215
4216    begin
4217
4218       if Present (Alternatives (N)) then
4219          Remove_Side_Effects (Lop);
4220          Expand_Set_Membership;
4221          return;
4222       end if;
4223
4224       --  Check case of explicit test for an expression in range of its
4225       --  subtype. This is suspicious usage and we replace it with a 'Valid
4226       --  test and give a warning.
4227
4228       if Is_Scalar_Type (Etype (Lop))
4229         and then Nkind (Rop) in N_Has_Entity
4230         and then Etype (Lop) = Entity (Rop)
4231         and then Comes_From_Source (N)
4232         and then VM_Target = No_VM
4233       then
4234          Substitute_Valid_Check;
4235          return;
4236       end if;
4237
4238       --  Do validity check on operands
4239
4240       if Validity_Checks_On and Validity_Check_Operands then
4241          Ensure_Valid (Left_Opnd (N));
4242          Validity_Check_Range (Right_Opnd (N));
4243       end if;
4244
4245       --  Case of explicit range
4246
4247       if Nkind (Rop) = N_Range then
4248          declare
4249             Lo : constant Node_Id := Low_Bound (Rop);
4250             Hi : constant Node_Id := High_Bound (Rop);
4251
4252             Ltyp : constant Entity_Id := Etype (Lop);
4253
4254             Lo_Orig : constant Node_Id := Original_Node (Lo);
4255             Hi_Orig : constant Node_Id := Original_Node (Hi);
4256
4257             Lcheck : Compare_Result;
4258             Ucheck : Compare_Result;
4259
4260             Warn1 : constant Boolean :=
4261                       Constant_Condition_Warnings
4262                         and then Comes_From_Source (N)
4263                         and then not In_Instance;
4264             --  This must be true for any of the optimization warnings, we
4265             --  clearly want to give them only for source with the flag on.
4266             --  We also skip these warnings in an instance since it may be
4267             --  the case that different instantiations have different ranges.
4268
4269             Warn2 : constant Boolean :=
4270                       Warn1
4271                         and then Nkind (Original_Node (Rop)) = N_Range
4272                         and then Is_Integer_Type (Etype (Lo));
4273             --  For the case where only one bound warning is elided, we also
4274             --  insist on an explicit range and an integer type. The reason is
4275             --  that the use of enumeration ranges including an end point is
4276             --  common, as is the use of a subtype name, one of whose bounds
4277             --  is the same as the type of the expression.
4278
4279          begin
4280             --  If test is explicit x'first .. x'last, replace by valid check
4281
4282             if Is_Scalar_Type (Ltyp)
4283               and then Nkind (Lo_Orig) = N_Attribute_Reference
4284               and then Attribute_Name (Lo_Orig) = Name_First
4285               and then Nkind (Prefix (Lo_Orig)) in N_Has_Entity
4286               and then Entity (Prefix (Lo_Orig)) = Ltyp
4287               and then Nkind (Hi_Orig) = N_Attribute_Reference
4288               and then Attribute_Name (Hi_Orig) = Name_Last
4289               and then Nkind (Prefix (Hi_Orig)) in N_Has_Entity
4290               and then Entity (Prefix (Hi_Orig)) = Ltyp
4291               and then Comes_From_Source (N)
4292               and then VM_Target = No_VM
4293             then
4294                Substitute_Valid_Check;
4295                return;
4296             end if;
4297
4298             --  If bounds of type are known at compile time, and the end points
4299             --  are known at compile time and identical, this is another case
4300             --  for substituting a valid test. We only do this for discrete
4301             --  types, since it won't arise in practice for float types.
4302
4303             if Comes_From_Source (N)
4304               and then Is_Discrete_Type (Ltyp)
4305               and then Compile_Time_Known_Value (Type_High_Bound (Ltyp))
4306               and then Compile_Time_Known_Value (Type_Low_Bound  (Ltyp))
4307               and then Compile_Time_Known_Value (Lo)
4308               and then Compile_Time_Known_Value (Hi)
4309               and then Expr_Value (Type_High_Bound (Ltyp)) = Expr_Value (Hi)
4310               and then Expr_Value (Type_Low_Bound  (Ltyp)) = Expr_Value (Lo)
4311
4312                --  Kill warnings in instances, since they may be cases where we
4313                --  have a test in the generic that makes sense with some types
4314                --  and not with other types.
4315
4316               and then not In_Instance
4317             then
4318                Substitute_Valid_Check;
4319                return;
4320             end if;
4321
4322             --  If we have an explicit range, do a bit of optimization based
4323             --  on range analysis (we may be able to kill one or both checks).
4324
4325             Lcheck := Compile_Time_Compare (Lop, Lo, Assume_Valid => False);
4326             Ucheck := Compile_Time_Compare (Lop, Hi, Assume_Valid => False);
4327
4328             --  If either check is known to fail, replace result by False since
4329             --  the other check does not matter. Preserve the static flag for
4330             --  legality checks, because we are constant-folding beyond RM 4.9.
4331
4332             if Lcheck = LT or else Ucheck = GT then
4333                if Warn1 then
4334                   Error_Msg_N ("?range test optimized away", N);
4335                   Error_Msg_N ("\?value is known to be out of range", N);
4336                end if;
4337
4338                Rewrite (N,
4339                  New_Reference_To (Standard_False, Loc));
4340                Analyze_And_Resolve (N, Rtyp);
4341                Set_Is_Static_Expression (N, Static);
4342
4343                return;
4344
4345             --  If both checks are known to succeed, replace result by True,
4346             --  since we know we are in range.
4347
4348             elsif Lcheck in Compare_GE and then Ucheck in Compare_LE then
4349                if Warn1 then
4350                   Error_Msg_N ("?range test optimized away", N);
4351                   Error_Msg_N ("\?value is known to be in range", N);
4352                end if;
4353
4354                Rewrite (N,
4355                  New_Reference_To (Standard_True, Loc));
4356                Analyze_And_Resolve (N, Rtyp);
4357                Set_Is_Static_Expression (N, Static);
4358
4359                return;
4360
4361             --  If lower bound check succeeds and upper bound check is not
4362             --  known to succeed or fail, then replace the range check with
4363             --  a comparison against the upper bound.
4364
4365             elsif Lcheck in Compare_GE then
4366                if Warn2 and then not In_Instance then
4367                   Error_Msg_N ("?lower bound test optimized away", Lo);
4368                   Error_Msg_N ("\?value is known to be in range", Lo);
4369                end if;
4370
4371                Rewrite (N,
4372                  Make_Op_Le (Loc,
4373                    Left_Opnd  => Lop,
4374                    Right_Opnd => High_Bound (Rop)));
4375                Analyze_And_Resolve (N, Rtyp);
4376
4377                return;
4378
4379             --  If upper bound check succeeds and lower bound check is not
4380             --  known to succeed or fail, then replace the range check with
4381             --  a comparison against the lower bound.
4382
4383             elsif Ucheck in Compare_LE then
4384                if Warn2 and then not In_Instance then
4385                   Error_Msg_N ("?upper bound test optimized away", Hi);
4386                   Error_Msg_N ("\?value is known to be in range", Hi);
4387                end if;
4388
4389                Rewrite (N,
4390                  Make_Op_Ge (Loc,
4391                    Left_Opnd  => Lop,
4392                    Right_Opnd => Low_Bound (Rop)));
4393                Analyze_And_Resolve (N, Rtyp);
4394
4395                return;
4396             end if;
4397
4398             --  We couldn't optimize away the range check, but there is one
4399             --  more issue. If we are checking constant conditionals, then we
4400             --  see if we can determine the outcome assuming everything is
4401             --  valid, and if so give an appropriate warning.
4402
4403             if Warn1 and then not Assume_No_Invalid_Values then
4404                Lcheck := Compile_Time_Compare (Lop, Lo, Assume_Valid => True);
4405                Ucheck := Compile_Time_Compare (Lop, Hi, Assume_Valid => True);
4406
4407                --  Result is out of range for valid value
4408
4409                if Lcheck = LT or else Ucheck = GT then
4410                   Error_Msg_N
4411                     ("?value can only be in range if it is invalid", N);
4412
4413                --  Result is in range for valid value
4414
4415                elsif Lcheck in Compare_GE and then Ucheck in Compare_LE then
4416                   Error_Msg_N
4417                     ("?value can only be out of range if it is invalid", N);
4418
4419                --  Lower bound check succeeds if value is valid
4420
4421                elsif Warn2 and then Lcheck in Compare_GE then
4422                   Error_Msg_N
4423                     ("?lower bound check only fails if it is invalid", Lo);
4424
4425                --  Upper bound  check succeeds if value is valid
4426
4427                elsif Warn2 and then Ucheck in Compare_LE then
4428                   Error_Msg_N
4429                     ("?upper bound check only fails for invalid values", Hi);
4430                end if;
4431             end if;
4432          end;
4433
4434          --  For all other cases of an explicit range, nothing to be done
4435
4436          return;
4437
4438       --  Here right operand is a subtype mark
4439
4440       else
4441          declare
4442             Typ    : Entity_Id        := Etype (Rop);
4443             Is_Acc : constant Boolean := Is_Access_Type (Typ);
4444             Obj    : Node_Id          := Lop;
4445             Cond   : Node_Id          := Empty;
4446
4447          begin
4448             Remove_Side_Effects (Obj);
4449
4450             --  For tagged type, do tagged membership operation
4451
4452             if Is_Tagged_Type (Typ) then
4453
4454                --  No expansion will be performed when VM_Target, as the VM
4455                --  back-ends will handle the membership tests directly (tags
4456                --  are not explicitly represented in Java objects, so the
4457                --  normal tagged membership expansion is not what we want).
4458
4459                if Tagged_Type_Expansion then
4460                   Rewrite (N, Tagged_Membership (N));
4461                   Analyze_And_Resolve (N, Rtyp);
4462                end if;
4463
4464                return;
4465
4466             --  If type is scalar type, rewrite as x in t'first .. t'last.
4467             --  This reason we do this is that the bounds may have the wrong
4468             --  type if they come from the original type definition. Also this
4469             --  way we get all the processing above for an explicit range.
4470
4471             elsif Is_Scalar_Type (Typ) then
4472                Rewrite (Rop,
4473                  Make_Range (Loc,
4474                    Low_Bound =>
4475                      Make_Attribute_Reference (Loc,
4476                        Attribute_Name => Name_First,
4477                        Prefix => New_Reference_To (Typ, Loc)),
4478
4479                    High_Bound =>
4480                      Make_Attribute_Reference (Loc,
4481                        Attribute_Name => Name_Last,
4482                        Prefix => New_Reference_To (Typ, Loc))));
4483                Analyze_And_Resolve (N, Rtyp);
4484                return;
4485
4486             --  Ada 2005 (AI-216): Program_Error is raised when evaluating
4487             --  a membership test if the subtype mark denotes a constrained
4488             --  Unchecked_Union subtype and the expression lacks inferable
4489             --  discriminants.
4490
4491             elsif Is_Unchecked_Union (Base_Type (Typ))
4492               and then Is_Constrained (Typ)
4493               and then not Has_Inferable_Discriminants (Lop)
4494             then
4495                Insert_Action (N,
4496                  Make_Raise_Program_Error (Loc,
4497                    Reason => PE_Unchecked_Union_Restriction));
4498
4499                --  Prevent Gigi from generating incorrect code by rewriting
4500                --  the test as a standard False.
4501
4502                Rewrite (N,
4503                  New_Occurrence_Of (Standard_False, Loc));
4504
4505                return;
4506             end if;
4507
4508             --  Here we have a non-scalar type
4509
4510             if Is_Acc then
4511                Typ := Designated_Type (Typ);
4512             end if;
4513
4514             if not Is_Constrained (Typ) then
4515                Rewrite (N,
4516                  New_Reference_To (Standard_True, Loc));
4517                Analyze_And_Resolve (N, Rtyp);
4518
4519             --  For the constrained array case, we have to check the subscripts
4520             --  for an exact match if the lengths are non-zero (the lengths
4521             --  must match in any case).
4522
4523             elsif Is_Array_Type (Typ) then
4524
4525                Check_Subscripts : declare
4526                   function Construct_Attribute_Reference
4527                     (E   : Node_Id;
4528                      Nam : Name_Id;
4529                      Dim : Nat) return Node_Id;
4530                   --  Build attribute reference E'Nam(Dim)
4531
4532                   -----------------------------------
4533                   -- Construct_Attribute_Reference --
4534                   -----------------------------------
4535
4536                   function Construct_Attribute_Reference
4537                     (E   : Node_Id;
4538                      Nam : Name_Id;
4539                      Dim : Nat) return Node_Id
4540                   is
4541                   begin
4542                      return
4543                        Make_Attribute_Reference (Loc,
4544                          Prefix => E,
4545                          Attribute_Name => Nam,
4546                          Expressions => New_List (
4547                            Make_Integer_Literal (Loc, Dim)));
4548                   end Construct_Attribute_Reference;
4549
4550                --  Start of processing for Check_Subscripts
4551
4552                begin
4553                   for J in 1 .. Number_Dimensions (Typ) loop
4554                      Evolve_And_Then (Cond,
4555                        Make_Op_Eq (Loc,
4556                          Left_Opnd  =>
4557                            Construct_Attribute_Reference
4558                              (Duplicate_Subexpr_No_Checks (Obj),
4559                               Name_First, J),
4560                          Right_Opnd =>
4561                            Construct_Attribute_Reference
4562                              (New_Occurrence_Of (Typ, Loc), Name_First, J)));
4563
4564                      Evolve_And_Then (Cond,
4565                        Make_Op_Eq (Loc,
4566                          Left_Opnd  =>
4567                            Construct_Attribute_Reference
4568                              (Duplicate_Subexpr_No_Checks (Obj),
4569                               Name_Last, J),
4570                          Right_Opnd =>
4571                            Construct_Attribute_Reference
4572                              (New_Occurrence_Of (Typ, Loc), Name_Last, J)));
4573                   end loop;
4574
4575                   if Is_Acc then
4576                      Cond :=
4577                        Make_Or_Else (Loc,
4578                          Left_Opnd =>
4579                            Make_Op_Eq (Loc,
4580                              Left_Opnd  => Obj,
4581                              Right_Opnd => Make_Null (Loc)),
4582                          Right_Opnd => Cond);
4583                   end if;
4584
4585                   Rewrite (N, Cond);
4586                   Analyze_And_Resolve (N, Rtyp);
4587                end Check_Subscripts;
4588
4589             --  These are the cases where constraint checks may be required,
4590             --  e.g. records with possible discriminants
4591
4592             else
4593                --  Expand the test into a series of discriminant comparisons.
4594                --  The expression that is built is the negation of the one that
4595                --  is used for checking discriminant constraints.
4596
4597                Obj := Relocate_Node (Left_Opnd (N));
4598
4599                if Has_Discriminants (Typ) then
4600                   Cond := Make_Op_Not (Loc,
4601                     Right_Opnd => Build_Discriminant_Checks (Obj, Typ));
4602
4603                   if Is_Acc then
4604                      Cond := Make_Or_Else (Loc,
4605                        Left_Opnd =>
4606                          Make_Op_Eq (Loc,
4607                            Left_Opnd  => Obj,
4608                            Right_Opnd => Make_Null (Loc)),
4609                        Right_Opnd => Cond);
4610                   end if;
4611
4612                else
4613                   Cond := New_Occurrence_Of (Standard_True, Loc);
4614                end if;
4615
4616                Rewrite (N, Cond);
4617                Analyze_And_Resolve (N, Rtyp);
4618             end if;
4619          end;
4620       end if;
4621    end Expand_N_In;
4622
4623    --------------------------------
4624    -- Expand_N_Indexed_Component --
4625    --------------------------------
4626
4627    procedure Expand_N_Indexed_Component (N : Node_Id) is
4628       Loc : constant Source_Ptr := Sloc (N);
4629       Typ : constant Entity_Id  := Etype (N);
4630       P   : constant Node_Id    := Prefix (N);
4631       T   : constant Entity_Id  := Etype (P);
4632
4633    begin
4634       --  A special optimization, if we have an indexed component that is
4635       --  selecting from a slice, then we can eliminate the slice, since, for
4636       --  example, x (i .. j)(k) is identical to x(k). The only difference is
4637       --  the range check required by the slice. The range check for the slice
4638       --  itself has already been generated. The range check for the
4639       --  subscripting operation is ensured by converting the subject to
4640       --  the subtype of the slice.
4641
4642       --  This optimization not only generates better code, avoiding slice
4643       --  messing especially in the packed case, but more importantly bypasses
4644       --  some problems in handling this peculiar case, for example, the issue
4645       --  of dealing specially with object renamings.
4646
4647       if Nkind (P) = N_Slice then
4648          Rewrite (N,
4649            Make_Indexed_Component (Loc,
4650              Prefix => Prefix (P),
4651              Expressions => New_List (
4652                Convert_To
4653                  (Etype (First_Index (Etype (P))),
4654                   First (Expressions (N))))));
4655          Analyze_And_Resolve (N, Typ);
4656          return;
4657       end if;
4658
4659       --  Ada 2005 (AI-318-02): If the prefix is a call to a build-in-place
4660       --  function, then additional actuals must be passed.
4661
4662       if Ada_Version >= Ada_05
4663         and then Is_Build_In_Place_Function_Call (P)
4664       then
4665          Make_Build_In_Place_Call_In_Anonymous_Context (P);
4666       end if;
4667
4668       --  If the prefix is an access type, then we unconditionally rewrite if
4669       --  as an explicit dereference. This simplifies processing for several
4670       --  cases, including packed array cases and certain cases in which checks
4671       --  must be generated. We used to try to do this only when it was
4672       --  necessary, but it cleans up the code to do it all the time.
4673
4674       if Is_Access_Type (T) then
4675          Insert_Explicit_Dereference (P);
4676          Analyze_And_Resolve (P, Designated_Type (T));
4677       end if;
4678
4679       --  Generate index and validity checks
4680
4681       Generate_Index_Checks (N);
4682
4683       if Validity_Checks_On and then Validity_Check_Subscripts then
4684          Apply_Subscript_Validity_Checks (N);
4685       end if;
4686
4687       --  All done for the non-packed case
4688
4689       if not Is_Packed (Etype (Prefix (N))) then
4690          return;
4691       end if;
4692
4693       --  For packed arrays that are not bit-packed (i.e. the case of an array
4694       --  with one or more index types with a non-contiguous enumeration type),
4695       --  we can always use the normal packed element get circuit.
4696
4697       if not Is_Bit_Packed_Array (Etype (Prefix (N))) then
4698          Expand_Packed_Element_Reference (N);
4699          return;
4700       end if;
4701
4702       --  For a reference to a component of a bit packed array, we have to
4703       --  convert it to a reference to the corresponding Packed_Array_Type.
4704       --  We only want to do this for simple references, and not for:
4705
4706       --    Left side of assignment, or prefix of left side of assignment, or
4707       --    prefix of the prefix, to handle packed arrays of packed arrays,
4708       --      This case is handled in Exp_Ch5.Expand_N_Assignment_Statement
4709
4710       --    Renaming objects in renaming associations
4711       --      This case is handled when a use of the renamed variable occurs
4712
4713       --    Actual parameters for a procedure call
4714       --      This case is handled in Exp_Ch6.Expand_Actuals
4715
4716       --    The second expression in a 'Read attribute reference
4717
4718       --    The prefix of an address or size attribute reference
4719
4720       --  The following circuit detects these exceptions
4721
4722       declare
4723          Child : Node_Id := N;
4724          Parnt : Node_Id := Parent (N);
4725
4726       begin
4727          loop
4728             if Nkind (Parnt) = N_Unchecked_Expression then
4729                null;
4730
4731             elsif Nkind_In (Parnt, N_Object_Renaming_Declaration,
4732                                    N_Procedure_Call_Statement)
4733               or else (Nkind (Parnt) = N_Parameter_Association
4734                         and then
4735                           Nkind (Parent (Parnt)) =  N_Procedure_Call_Statement)
4736             then
4737                return;
4738
4739             elsif Nkind (Parnt) = N_Attribute_Reference
4740               and then (Attribute_Name (Parnt) = Name_Address
4741                          or else
4742                         Attribute_Name (Parnt) = Name_Size)
4743               and then Prefix (Parnt) = Child
4744             then
4745                return;
4746
4747             elsif Nkind (Parnt) = N_Assignment_Statement
4748               and then Name (Parnt) = Child
4749             then
4750                return;
4751
4752             --  If the expression is an index of an indexed component, it must
4753             --  be expanded regardless of context.
4754
4755             elsif Nkind (Parnt) = N_Indexed_Component
4756               and then Child /= Prefix (Parnt)
4757             then
4758                Expand_Packed_Element_Reference (N);
4759                return;
4760
4761             elsif Nkind (Parent (Parnt)) = N_Assignment_Statement
4762               and then Name (Parent (Parnt)) = Parnt
4763             then
4764                return;
4765
4766             elsif Nkind (Parnt) = N_Attribute_Reference
4767               and then Attribute_Name (Parnt) = Name_Read
4768               and then Next (First (Expressions (Parnt))) = Child
4769             then
4770                return;
4771
4772             elsif Nkind_In (Parnt, N_Indexed_Component, N_Selected_Component)
4773                and then Prefix (Parnt) = Child
4774             then
4775                null;
4776
4777             else
4778                Expand_Packed_Element_Reference (N);
4779                return;
4780             end if;
4781
4782             --  Keep looking up tree for unchecked expression, or if we are the
4783             --  prefix of a possible assignment left side.
4784
4785             Child := Parnt;
4786             Parnt := Parent (Child);
4787          end loop;
4788       end;
4789    end Expand_N_Indexed_Component;
4790
4791    ---------------------
4792    -- Expand_N_Not_In --
4793    ---------------------
4794
4795    --  Replace a not in b by not (a in b) so that the expansions for (a in b)
4796    --  can be done. This avoids needing to duplicate this expansion code.
4797
4798    procedure Expand_N_Not_In (N : Node_Id) is
4799       Loc : constant Source_Ptr := Sloc (N);
4800       Typ : constant Entity_Id  := Etype (N);
4801       Cfs : constant Boolean    := Comes_From_Source (N);
4802
4803    begin
4804       Rewrite (N,
4805         Make_Op_Not (Loc,
4806           Right_Opnd =>
4807             Make_In (Loc,
4808               Left_Opnd  => Left_Opnd (N),
4809               Right_Opnd => Right_Opnd (N))));
4810
4811       --  If this is a set membership, preserve list of alternatives
4812
4813       Set_Alternatives (Right_Opnd (N), Alternatives (Original_Node (N)));
4814
4815       --  We want this to appear as coming from source if original does (see
4816       --  transformations in Expand_N_In).
4817
4818       Set_Comes_From_Source (N, Cfs);
4819       Set_Comes_From_Source (Right_Opnd (N), Cfs);
4820
4821       --  Now analyze transformed node
4822
4823       Analyze_And_Resolve (N, Typ);
4824    end Expand_N_Not_In;
4825
4826    -------------------
4827    -- Expand_N_Null --
4828    -------------------
4829
4830    --  The only replacement required is for the case of a null of type that is
4831    --  an access to protected subprogram. We represent such access values as a
4832    --  record, and so we must replace the occurrence of null by the equivalent
4833    --  record (with a null address and a null pointer in it), so that the
4834    --  backend creates the proper value.
4835
4836    procedure Expand_N_Null (N : Node_Id) is
4837       Loc : constant Source_Ptr := Sloc (N);
4838       Typ : constant Entity_Id  := Etype (N);
4839       Agg : Node_Id;
4840
4841    begin
4842       if Is_Access_Protected_Subprogram_Type (Typ) then
4843          Agg :=
4844            Make_Aggregate (Loc,
4845              Expressions => New_List (
4846                New_Occurrence_Of (RTE (RE_Null_Address), Loc),
4847                Make_Null (Loc)));
4848
4849          Rewrite (N, Agg);
4850          Analyze_And_Resolve (N, Equivalent_Type (Typ));
4851
4852          --  For subsequent semantic analysis, the node must retain its type.
4853          --  Gigi in any case replaces this type by the corresponding record
4854          --  type before processing the node.
4855
4856          Set_Etype (N, Typ);
4857       end if;
4858
4859    exception
4860       when RE_Not_Available =>
4861          return;
4862    end Expand_N_Null;
4863
4864    ---------------------
4865    -- Expand_N_Op_Abs --
4866    ---------------------
4867
4868    procedure Expand_N_Op_Abs (N : Node_Id) is
4869       Loc  : constant Source_Ptr := Sloc (N);
4870       Expr : constant Node_Id := Right_Opnd (N);
4871
4872    begin
4873       Unary_Op_Validity_Checks (N);
4874
4875       --  Deal with software overflow checking
4876
4877       if not Backend_Overflow_Checks_On_Target
4878          and then Is_Signed_Integer_Type (Etype (N))
4879          and then Do_Overflow_Check (N)
4880       then
4881          --  The only case to worry about is when the argument is equal to the
4882          --  largest negative number, so what we do is to insert the check:
4883
4884          --     [constraint_error when Expr = typ'Base'First]
4885
4886          --  with the usual Duplicate_Subexpr use coding for expr
4887
4888          Insert_Action (N,
4889            Make_Raise_Constraint_Error (Loc,
4890              Condition =>
4891                Make_Op_Eq (Loc,
4892                  Left_Opnd  => Duplicate_Subexpr (Expr),
4893                  Right_Opnd =>
4894                    Make_Attribute_Reference (Loc,
4895                      Prefix =>
4896                        New_Occurrence_Of (Base_Type (Etype (Expr)), Loc),
4897                      Attribute_Name => Name_First)),
4898              Reason => CE_Overflow_Check_Failed));
4899       end if;
4900
4901       --  Vax floating-point types case
4902
4903       if Vax_Float (Etype (N)) then
4904          Expand_Vax_Arith (N);
4905       end if;
4906    end Expand_N_Op_Abs;
4907
4908    ---------------------
4909    -- Expand_N_Op_Add --
4910    ---------------------
4911
4912    procedure Expand_N_Op_Add (N : Node_Id) is
4913       Typ : constant Entity_Id := Etype (N);
4914
4915    begin
4916       Binary_Op_Validity_Checks (N);
4917
4918       --  N + 0 = 0 + N = N for integer types
4919
4920       if Is_Integer_Type (Typ) then
4921          if Compile_Time_Known_Value (Right_Opnd (N))
4922            and then Expr_Value (Right_Opnd (N)) = Uint_0
4923          then
4924             Rewrite (N, Left_Opnd (N));
4925             return;
4926
4927          elsif Compile_Time_Known_Value (Left_Opnd (N))
4928            and then Expr_Value (Left_Opnd (N)) = Uint_0
4929          then
4930             Rewrite (N, Right_Opnd (N));
4931             return;
4932          end if;
4933       end if;
4934
4935       --  Arithmetic overflow checks for signed integer/fixed point types
4936
4937       if Is_Signed_Integer_Type (Typ)
4938         or else Is_Fixed_Point_Type (Typ)
4939       then
4940          Apply_Arithmetic_Overflow_Check (N);
4941          return;
4942
4943       --  Vax floating-point types case
4944
4945       elsif Vax_Float (Typ) then
4946          Expand_Vax_Arith (N);
4947       end if;
4948    end Expand_N_Op_Add;
4949
4950    ---------------------
4951    -- Expand_N_Op_And --
4952    ---------------------
4953
4954    procedure Expand_N_Op_And (N : Node_Id) is
4955       Typ : constant Entity_Id := Etype (N);
4956
4957    begin
4958       Binary_Op_Validity_Checks (N);
4959
4960       if Is_Array_Type (Etype (N)) then
4961          Expand_Boolean_Operator (N);
4962
4963       elsif Is_Boolean_Type (Etype (N)) then
4964          Adjust_Condition (Left_Opnd (N));
4965          Adjust_Condition (Right_Opnd (N));
4966          Set_Etype (N, Standard_Boolean);
4967          Adjust_Result_Type (N, Typ);
4968       end if;
4969    end Expand_N_Op_And;
4970
4971    ------------------------
4972    -- Expand_N_Op_Concat --
4973    ------------------------
4974
4975    procedure Expand_N_Op_Concat (N : Node_Id) is
4976       Opnds : List_Id;
4977       --  List of operands to be concatenated
4978
4979       Cnode : Node_Id;
4980       --  Node which is to be replaced by the result of concatenating the nodes
4981       --  in the list Opnds.
4982
4983    begin
4984       --  Ensure validity of both operands
4985
4986       Binary_Op_Validity_Checks (N);
4987
4988       --  If we are the left operand of a concatenation higher up the tree,
4989       --  then do nothing for now, since we want to deal with a series of
4990       --  concatenations as a unit.
4991
4992       if Nkind (Parent (N)) = N_Op_Concat
4993         and then N = Left_Opnd (Parent (N))
4994       then
4995          return;
4996       end if;
4997
4998       --  We get here with a concatenation whose left operand may be a
4999       --  concatenation itself with a consistent type. We need to process
5000       --  these concatenation operands from left to right, which means
5001       --  from the deepest node in the tree to the highest node.
5002
5003       Cnode := N;
5004       while Nkind (Left_Opnd (Cnode)) = N_Op_Concat loop
5005          Cnode := Left_Opnd (Cnode);
5006       end loop;
5007
5008       --  Now Opnd is the deepest Opnd, and its parents are the concatenation
5009       --  nodes above, so now we process bottom up, doing the operations. We
5010       --  gather a string that is as long as possible up to five operands
5011
5012       --  The outer loop runs more than once if more than one concatenation
5013       --  type is involved.
5014
5015       Outer : loop
5016          Opnds := New_List (Left_Opnd (Cnode), Right_Opnd (Cnode));
5017          Set_Parent (Opnds, N);
5018
5019          --  The inner loop gathers concatenation operands
5020
5021          Inner : while Cnode /= N
5022                    and then Base_Type (Etype (Cnode)) =
5023                             Base_Type (Etype (Parent (Cnode)))
5024          loop
5025             Cnode := Parent (Cnode);
5026             Append (Right_Opnd (Cnode), Opnds);
5027          end loop Inner;
5028
5029          Expand_Concatenate (Cnode, Opnds);
5030
5031          exit Outer when Cnode = N;
5032          Cnode := Parent (Cnode);
5033       end loop Outer;
5034    end Expand_N_Op_Concat;
5035
5036    ------------------------
5037    -- Expand_N_Op_Divide --
5038    ------------------------
5039
5040    procedure Expand_N_Op_Divide (N : Node_Id) is
5041       Loc   : constant Source_Ptr := Sloc (N);
5042       Lopnd : constant Node_Id    := Left_Opnd (N);
5043       Ropnd : constant Node_Id    := Right_Opnd (N);
5044       Ltyp  : constant Entity_Id  := Etype (Lopnd);
5045       Rtyp  : constant Entity_Id  := Etype (Ropnd);
5046       Typ   : Entity_Id           := Etype (N);
5047       Rknow : constant Boolean    := Is_Integer_Type (Typ)
5048                                        and then
5049                                          Compile_Time_Known_Value (Ropnd);
5050       Rval  : Uint;
5051
5052    begin
5053       Binary_Op_Validity_Checks (N);
5054
5055       if Rknow then
5056          Rval := Expr_Value (Ropnd);
5057       end if;
5058
5059       --  N / 1 = N for integer types
5060
5061       if Rknow and then Rval = Uint_1 then
5062          Rewrite (N, Lopnd);
5063          return;
5064       end if;
5065
5066       --  Convert x / 2 ** y to Shift_Right (x, y). Note that the fact that
5067       --  Is_Power_Of_2_For_Shift is set means that we know that our left
5068       --  operand is an unsigned integer, as required for this to work.
5069
5070       if Nkind (Ropnd) = N_Op_Expon
5071         and then Is_Power_Of_2_For_Shift (Ropnd)
5072
5073       --  We cannot do this transformation in configurable run time mode if we
5074       --  have 64-bit --  integers and long shifts are not available.
5075
5076         and then
5077           (Esize (Ltyp) <= 32
5078              or else Support_Long_Shifts_On_Target)
5079       then
5080          Rewrite (N,
5081            Make_Op_Shift_Right (Loc,
5082              Left_Opnd  => Lopnd,
5083              Right_Opnd =>
5084                Convert_To (Standard_Natural, Right_Opnd (Ropnd))));
5085          Analyze_And_Resolve (N, Typ);
5086          return;
5087       end if;
5088
5089       --  Do required fixup of universal fixed operation
5090
5091       if Typ = Universal_Fixed then
5092          Fixup_Universal_Fixed_Operation (N);
5093          Typ := Etype (N);
5094       end if;
5095
5096       --  Divisions with fixed-point results
5097
5098       if Is_Fixed_Point_Type (Typ) then
5099
5100          --  No special processing if Treat_Fixed_As_Integer is set, since
5101          --  from a semantic point of view such operations are simply integer
5102          --  operations and will be treated that way.
5103
5104          if not Treat_Fixed_As_Integer (N) then
5105             if Is_Integer_Type (Rtyp) then
5106                Expand_Divide_Fixed_By_Integer_Giving_Fixed (N);
5107             else
5108                Expand_Divide_Fixed_By_Fixed_Giving_Fixed (N);
5109             end if;
5110          end if;
5111
5112       --  Other cases of division of fixed-point operands. Again we exclude the
5113       --  case where Treat_Fixed_As_Integer is set.
5114
5115       elsif (Is_Fixed_Point_Type (Ltyp) or else
5116              Is_Fixed_Point_Type (Rtyp))
5117         and then not Treat_Fixed_As_Integer (N)
5118       then
5119          if Is_Integer_Type (Typ) then
5120             Expand_Divide_Fixed_By_Fixed_Giving_Integer (N);
5121          else
5122             pragma Assert (Is_Floating_Point_Type (Typ));
5123             Expand_Divide_Fixed_By_Fixed_Giving_Float (N);
5124          end if;
5125
5126       --  Mixed-mode operations can appear in a non-static universal context,
5127       --  in which case the integer argument must be converted explicitly.
5128
5129       elsif Typ = Universal_Real
5130         and then Is_Integer_Type (Rtyp)
5131       then
5132          Rewrite (Ropnd,
5133            Convert_To (Universal_Real, Relocate_Node (Ropnd)));
5134
5135          Analyze_And_Resolve (Ropnd, Universal_Real);
5136
5137       elsif Typ = Universal_Real
5138         and then Is_Integer_Type (Ltyp)
5139       then
5140          Rewrite (Lopnd,
5141            Convert_To (Universal_Real, Relocate_Node (Lopnd)));
5142
5143          Analyze_And_Resolve (Lopnd, Universal_Real);
5144
5145       --  Non-fixed point cases, do integer zero divide and overflow checks
5146
5147       elsif Is_Integer_Type (Typ) then
5148          Apply_Divide_Check (N);
5149
5150          --  Check for 64-bit division available, or long shifts if the divisor
5151          --  is a small power of 2 (since such divides will be converted into
5152          --  long shifts).
5153
5154          if Esize (Ltyp) > 32
5155            and then not Support_64_Bit_Divides_On_Target
5156            and then
5157              (not Rknow
5158                 or else not Support_Long_Shifts_On_Target
5159                 or else (Rval /= Uint_2  and then
5160                          Rval /= Uint_4  and then
5161                          Rval /= Uint_8  and then
5162                          Rval /= Uint_16 and then
5163                          Rval /= Uint_32 and then
5164                          Rval /= Uint_64))
5165          then
5166             Error_Msg_CRT ("64-bit division", N);
5167          end if;
5168
5169       --  Deal with Vax_Float
5170
5171       elsif Vax_Float (Typ) then
5172          Expand_Vax_Arith (N);
5173          return;
5174       end if;
5175    end Expand_N_Op_Divide;
5176
5177    --------------------
5178    -- Expand_N_Op_Eq --
5179    --------------------
5180
5181    procedure Expand_N_Op_Eq (N : Node_Id) is
5182       Loc    : constant Source_Ptr := Sloc (N);
5183       Typ    : constant Entity_Id  := Etype (N);
5184       Lhs    : constant Node_Id    := Left_Opnd (N);
5185       Rhs    : constant Node_Id    := Right_Opnd (N);
5186       Bodies : constant List_Id    := New_List;
5187       A_Typ  : constant Entity_Id  := Etype (Lhs);
5188
5189       Typl    : Entity_Id := A_Typ;
5190       Op_Name : Entity_Id;
5191       Prim    : Elmt_Id;
5192
5193       procedure Build_Equality_Call (Eq : Entity_Id);
5194       --  If a constructed equality exists for the type or for its parent,
5195       --  build and analyze call, adding conversions if the operation is
5196       --  inherited.
5197
5198       function Has_Unconstrained_UU_Component (Typ : Node_Id) return Boolean;
5199       --  Determines whether a type has a subcomponent of an unconstrained
5200       --  Unchecked_Union subtype. Typ is a record type.
5201
5202       -------------------------
5203       -- Build_Equality_Call --
5204       -------------------------
5205
5206       procedure Build_Equality_Call (Eq : Entity_Id) is
5207          Op_Type : constant Entity_Id := Etype (First_Formal (Eq));
5208          L_Exp   : Node_Id := Relocate_Node (Lhs);
5209          R_Exp   : Node_Id := Relocate_Node (Rhs);
5210
5211       begin
5212          if Base_Type (Op_Type) /= Base_Type (A_Typ)
5213            and then not Is_Class_Wide_Type (A_Typ)
5214          then
5215             L_Exp := OK_Convert_To (Op_Type, L_Exp);
5216             R_Exp := OK_Convert_To (Op_Type, R_Exp);
5217          end if;
5218
5219          --  If we have an Unchecked_Union, we need to add the inferred
5220          --  discriminant values as actuals in the function call. At this
5221          --  point, the expansion has determined that both operands have
5222          --  inferable discriminants.
5223
5224          if Is_Unchecked_Union (Op_Type) then
5225             declare
5226                Lhs_Type      : constant Node_Id := Etype (L_Exp);
5227                Rhs_Type      : constant Node_Id := Etype (R_Exp);
5228                Lhs_Discr_Val : Node_Id;
5229                Rhs_Discr_Val : Node_Id;
5230
5231             begin
5232                --  Per-object constrained selected components require special
5233                --  attention. If the enclosing scope of the component is an
5234                --  Unchecked_Union, we cannot reference its discriminants
5235                --  directly. This is why we use the two extra parameters of
5236                --  the equality function of the enclosing Unchecked_Union.
5237
5238                --  type UU_Type (Discr : Integer := 0) is
5239                --     . . .
5240                --  end record;
5241                --  pragma Unchecked_Union (UU_Type);
5242
5243                --  1. Unchecked_Union enclosing record:
5244
5245                --     type Enclosing_UU_Type (Discr : Integer := 0) is record
5246                --        . . .
5247                --        Comp : UU_Type (Discr);
5248                --        . . .
5249                --     end Enclosing_UU_Type;
5250                --     pragma Unchecked_Union (Enclosing_UU_Type);
5251
5252                --     Obj1 : Enclosing_UU_Type;
5253                --     Obj2 : Enclosing_UU_Type (1);
5254
5255                --     [. . .] Obj1 = Obj2 [. . .]
5256
5257                --     Generated code:
5258
5259                --     if not (uu_typeEQ (obj1.comp, obj2.comp, a, b)) then
5260
5261                --  A and B are the formal parameters of the equality function
5262                --  of Enclosing_UU_Type. The function always has two extra
5263                --  formals to capture the inferred discriminant values.
5264
5265                --  2. Non-Unchecked_Union enclosing record:
5266
5267                --     type
5268                --       Enclosing_Non_UU_Type (Discr : Integer := 0)
5269                --     is record
5270                --        . . .
5271                --        Comp : UU_Type (Discr);
5272                --        . . .
5273                --     end Enclosing_Non_UU_Type;
5274
5275                --     Obj1 : Enclosing_Non_UU_Type;
5276                --     Obj2 : Enclosing_Non_UU_Type (1);
5277
5278                --     ...  Obj1 = Obj2 ...
5279
5280                --     Generated code:
5281
5282                --     if not (uu_typeEQ (obj1.comp, obj2.comp,
5283                --                        obj1.discr, obj2.discr)) then
5284
5285                --  In this case we can directly reference the discriminants of
5286                --  the enclosing record.
5287
5288                --  Lhs of equality
5289
5290                if Nkind (Lhs) = N_Selected_Component
5291                  and then Has_Per_Object_Constraint
5292                             (Entity (Selector_Name (Lhs)))
5293                then
5294                   --  Enclosing record is an Unchecked_Union, use formal A
5295
5296                   if Is_Unchecked_Union (Scope
5297                        (Entity (Selector_Name (Lhs))))
5298                   then
5299                      Lhs_Discr_Val :=
5300                        Make_Identifier (Loc,
5301                          Chars => Name_A);
5302
5303                   --  Enclosing record is of a non-Unchecked_Union type, it is
5304                   --  possible to reference the discriminant.
5305
5306                   else
5307                      Lhs_Discr_Val :=
5308                        Make_Selected_Component (Loc,
5309                          Prefix => Prefix (Lhs),
5310                          Selector_Name =>
5311                            New_Copy
5312                              (Get_Discriminant_Value
5313                                 (First_Discriminant (Lhs_Type),
5314                                  Lhs_Type,
5315                                  Stored_Constraint (Lhs_Type))));
5316                   end if;
5317
5318                --  Comment needed here ???
5319
5320                else
5321                   --  Infer the discriminant value
5322
5323                   Lhs_Discr_Val :=
5324                     New_Copy
5325                       (Get_Discriminant_Value
5326                          (First_Discriminant (Lhs_Type),
5327                           Lhs_Type,
5328                           Stored_Constraint (Lhs_Type)));
5329                end if;
5330
5331                --  Rhs of equality
5332
5333                if Nkind (Rhs) = N_Selected_Component
5334                  and then Has_Per_Object_Constraint
5335                             (Entity (Selector_Name (Rhs)))
5336                then
5337                   if Is_Unchecked_Union
5338                        (Scope (Entity (Selector_Name (Rhs))))
5339                   then
5340                      Rhs_Discr_Val :=
5341                        Make_Identifier (Loc,
5342                          Chars => Name_B);
5343
5344                   else
5345                      Rhs_Discr_Val :=
5346                        Make_Selected_Component (Loc,
5347                          Prefix => Prefix (Rhs),
5348                          Selector_Name =>
5349                            New_Copy (Get_Discriminant_Value (
5350                              First_Discriminant (Rhs_Type),
5351                              Rhs_Type,
5352                              Stored_Constraint (Rhs_Type))));
5353
5354                   end if;
5355                else
5356                   Rhs_Discr_Val :=
5357                     New_Copy (Get_Discriminant_Value (
5358                       First_Discriminant (Rhs_Type),
5359                       Rhs_Type,
5360                       Stored_Constraint (Rhs_Type)));
5361
5362                end if;
5363
5364                Rewrite (N,
5365                  Make_Function_Call (Loc,
5366                    Name => New_Reference_To (Eq, Loc),
5367                    Parameter_Associations => New_List (
5368                      L_Exp,
5369                      R_Exp,
5370                      Lhs_Discr_Val,
5371                      Rhs_Discr_Val)));
5372             end;
5373
5374          --  Normal case, not an unchecked union
5375
5376          else
5377             Rewrite (N,
5378               Make_Function_Call (Loc,
5379                 Name => New_Reference_To (Eq, Loc),
5380                 Parameter_Associations => New_List (L_Exp, R_Exp)));
5381          end if;
5382
5383          Analyze_And_Resolve (N, Standard_Boolean, Suppress => All_Checks);
5384       end Build_Equality_Call;
5385
5386       ------------------------------------
5387       -- Has_Unconstrained_UU_Component --
5388       ------------------------------------
5389
5390       function Has_Unconstrained_UU_Component
5391         (Typ : Node_Id) return Boolean
5392       is
5393          Tdef  : constant Node_Id :=
5394                    Type_Definition (Declaration_Node (Base_Type (Typ)));
5395          Clist : Node_Id;
5396          Vpart : Node_Id;
5397
5398          function Component_Is_Unconstrained_UU
5399            (Comp : Node_Id) return Boolean;
5400          --  Determines whether the subtype of the component is an
5401          --  unconstrained Unchecked_Union.
5402
5403          function Variant_Is_Unconstrained_UU
5404            (Variant : Node_Id) return Boolean;
5405          --  Determines whether a component of the variant has an unconstrained
5406          --  Unchecked_Union subtype.
5407
5408          -----------------------------------
5409          -- Component_Is_Unconstrained_UU --
5410          -----------------------------------
5411
5412          function Component_Is_Unconstrained_UU
5413            (Comp : Node_Id) return Boolean
5414          is
5415          begin
5416             if Nkind (Comp) /= N_Component_Declaration then
5417                return False;
5418             end if;
5419
5420             declare
5421                Sindic : constant Node_Id :=
5422                           Subtype_Indication (Component_Definition (Comp));
5423
5424             begin
5425                --  Unconstrained nominal type. In the case of a constraint
5426                --  present, the node kind would have been N_Subtype_Indication.
5427
5428                if Nkind (Sindic) = N_Identifier then
5429                   return Is_Unchecked_Union (Base_Type (Etype (Sindic)));
5430                end if;
5431
5432                return False;
5433             end;
5434          end Component_Is_Unconstrained_UU;
5435
5436          ---------------------------------
5437          -- Variant_Is_Unconstrained_UU --
5438          ---------------------------------
5439
5440          function Variant_Is_Unconstrained_UU
5441            (Variant : Node_Id) return Boolean
5442          is
5443             Clist : constant Node_Id := Component_List (Variant);
5444
5445          begin
5446             if Is_Empty_List (Component_Items (Clist)) then
5447                return False;
5448             end if;
5449
5450             --  We only need to test one component
5451
5452             declare
5453                Comp : Node_Id := First (Component_Items (Clist));
5454
5455             begin
5456                while Present (Comp) loop
5457                   if Component_Is_Unconstrained_UU (Comp) then
5458                      return True;
5459                   end if;
5460
5461                   Next (Comp);
5462                end loop;
5463             end;
5464
5465             --  None of the components withing the variant were of
5466             --  unconstrained Unchecked_Union type.
5467
5468             return False;
5469          end Variant_Is_Unconstrained_UU;
5470
5471       --  Start of processing for Has_Unconstrained_UU_Component
5472
5473       begin
5474          if Null_Present (Tdef) then
5475             return False;
5476          end if;
5477
5478          Clist := Component_List (Tdef);
5479          Vpart := Variant_Part (Clist);
5480
5481          --  Inspect available components
5482
5483          if Present (Component_Items (Clist)) then
5484             declare
5485                Comp : Node_Id := First (Component_Items (Clist));
5486
5487             begin
5488                while Present (Comp) loop
5489
5490                   --  One component is sufficient
5491
5492                   if Component_Is_Unconstrained_UU (Comp) then
5493                      return True;
5494                   end if;
5495
5496                   Next (Comp);
5497                end loop;
5498             end;
5499          end if;
5500
5501          --  Inspect available components withing variants
5502
5503          if Present (Vpart) then
5504             declare
5505                Variant : Node_Id := First (Variants (Vpart));
5506
5507             begin
5508                while Present (Variant) loop
5509
5510                   --  One component within a variant is sufficient
5511
5512                   if Variant_Is_Unconstrained_UU (Variant) then
5513                      return True;
5514                   end if;
5515
5516                   Next (Variant);
5517                end loop;
5518             end;
5519          end if;
5520
5521          --  Neither the available components, nor the components inside the
5522          --  variant parts were of an unconstrained Unchecked_Union subtype.
5523
5524          return False;
5525       end Has_Unconstrained_UU_Component;
5526
5527    --  Start of processing for Expand_N_Op_Eq
5528
5529    begin
5530       Binary_Op_Validity_Checks (N);
5531
5532       if Ekind (Typl) = E_Private_Type then
5533          Typl := Underlying_Type (Typl);
5534       elsif Ekind (Typl) = E_Private_Subtype then
5535          Typl := Underlying_Type (Base_Type (Typl));
5536       else
5537          null;
5538       end if;
5539
5540       --  It may happen in error situations that the underlying type is not
5541       --  set. The error will be detected later, here we just defend the
5542       --  expander code.
5543
5544       if No (Typl) then
5545          return;
5546       end if;
5547
5548       Typl := Base_Type (Typl);
5549
5550       --  Boolean types (requiring handling of non-standard case)
5551
5552       if Is_Boolean_Type (Typl) then
5553          Adjust_Condition (Left_Opnd (N));
5554          Adjust_Condition (Right_Opnd (N));
5555          Set_Etype (N, Standard_Boolean);
5556          Adjust_Result_Type (N, Typ);
5557
5558       --  Array types
5559
5560       elsif Is_Array_Type (Typl) then
5561
5562          --  If we are doing full validity checking, and it is possible for the
5563          --  array elements to be invalid then expand out array comparisons to
5564          --  make sure that we check the array elements.
5565
5566          if Validity_Check_Operands
5567            and then not Is_Known_Valid (Component_Type (Typl))
5568          then
5569             declare
5570                Save_Force_Validity_Checks : constant Boolean :=
5571                                               Force_Validity_Checks;
5572             begin
5573                Force_Validity_Checks := True;
5574                Rewrite (N,
5575                  Expand_Array_Equality
5576                   (N,
5577                    Relocate_Node (Lhs),
5578                    Relocate_Node (Rhs),
5579                    Bodies,
5580                    Typl));
5581                Insert_Actions (N, Bodies);
5582                Analyze_And_Resolve (N, Standard_Boolean);
5583                Force_Validity_Checks := Save_Force_Validity_Checks;
5584             end;
5585
5586          --  Packed case where both operands are known aligned
5587
5588          elsif Is_Bit_Packed_Array (Typl)
5589            and then not Is_Possibly_Unaligned_Object (Lhs)
5590            and then not Is_Possibly_Unaligned_Object (Rhs)
5591          then
5592             Expand_Packed_Eq (N);
5593
5594          --  Where the component type is elementary we can use a block bit
5595          --  comparison (if supported on the target) exception in the case
5596          --  of floating-point (negative zero issues require element by
5597          --  element comparison), and atomic types (where we must be sure
5598          --  to load elements independently) and possibly unaligned arrays.
5599
5600          elsif Is_Elementary_Type (Component_Type (Typl))
5601            and then not Is_Floating_Point_Type (Component_Type (Typl))
5602            and then not Is_Atomic (Component_Type (Typl))
5603            and then not Is_Possibly_Unaligned_Object (Lhs)
5604            and then not Is_Possibly_Unaligned_Object (Rhs)
5605            and then Support_Composite_Compare_On_Target
5606          then
5607             null;
5608
5609          --  For composite and floating-point cases, expand equality loop to
5610          --  make sure of using proper comparisons for tagged types, and
5611          --  correctly handling the floating-point case.
5612
5613          else
5614             Rewrite (N,
5615               Expand_Array_Equality
5616                 (N,
5617                  Relocate_Node (Lhs),
5618                  Relocate_Node (Rhs),
5619                  Bodies,
5620                  Typl));
5621             Insert_Actions      (N, Bodies,           Suppress => All_Checks);
5622             Analyze_And_Resolve (N, Standard_Boolean, Suppress => All_Checks);
5623          end if;
5624
5625       --  Record Types
5626
5627       elsif Is_Record_Type (Typl) then
5628
5629          --  For tagged types, use the primitive "="
5630
5631          if Is_Tagged_Type (Typl) then
5632
5633             --  No need to do anything else compiling under restriction
5634             --  No_Dispatching_Calls. During the semantic analysis we
5635             --  already notified such violation.
5636
5637             if Restriction_Active (No_Dispatching_Calls) then
5638                return;
5639             end if;
5640
5641             --  If this is derived from an untagged private type completed with
5642             --  a tagged type, it does not have a full view, so we use the
5643             --  primitive operations of the private type. This check should no
5644             --  longer be necessary when these types get their full views???
5645
5646             if Is_Private_Type (A_Typ)
5647               and then not Is_Tagged_Type (A_Typ)
5648               and then Is_Derived_Type (A_Typ)
5649               and then No (Full_View (A_Typ))
5650             then
5651                --  Search for equality operation, checking that the operands
5652                --  have the same type. Note that we must find a matching entry,
5653                --  or something is very wrong!
5654
5655                Prim := First_Elmt (Collect_Primitive_Operations (A_Typ));
5656
5657                while Present (Prim) loop
5658                   exit when Chars (Node (Prim)) = Name_Op_Eq
5659                     and then Etype (First_Formal (Node (Prim))) =
5660                              Etype (Next_Formal (First_Formal (Node (Prim))))
5661                     and then
5662                       Base_Type (Etype (Node (Prim))) = Standard_Boolean;
5663
5664                   Next_Elmt (Prim);
5665                end loop;
5666
5667                pragma Assert (Present (Prim));
5668                Op_Name := Node (Prim);
5669
5670             --  Find the type's predefined equality or an overriding
5671             --  user- defined equality. The reason for not simply calling
5672             --  Find_Prim_Op here is that there may be a user-defined
5673             --  overloaded equality op that precedes the equality that we want,
5674             --  so we have to explicitly search (e.g., there could be an
5675             --  equality with two different parameter types).
5676
5677             else
5678                if Is_Class_Wide_Type (Typl) then
5679                   Typl := Root_Type (Typl);
5680                end if;
5681
5682                Prim := First_Elmt (Primitive_Operations (Typl));
5683                while Present (Prim) loop
5684                   exit when Chars (Node (Prim)) = Name_Op_Eq
5685                     and then Etype (First_Formal (Node (Prim))) =
5686                              Etype (Next_Formal (First_Formal (Node (Prim))))
5687                     and then
5688                       Base_Type (Etype (Node (Prim))) = Standard_Boolean;
5689
5690                   Next_Elmt (Prim);
5691                end loop;
5692
5693                pragma Assert (Present (Prim));
5694                Op_Name := Node (Prim);
5695             end if;
5696
5697             Build_Equality_Call (Op_Name);
5698
5699          --  Ada 2005 (AI-216): Program_Error is raised when evaluating the
5700          --  predefined equality operator for a type which has a subcomponent
5701          --  of an Unchecked_Union type whose nominal subtype is unconstrained.
5702
5703          elsif Has_Unconstrained_UU_Component (Typl) then
5704             Insert_Action (N,
5705               Make_Raise_Program_Error (Loc,
5706                 Reason => PE_Unchecked_Union_Restriction));
5707
5708             --  Prevent Gigi from generating incorrect code by rewriting the
5709             --  equality as a standard False.
5710
5711             Rewrite (N,
5712               New_Occurrence_Of (Standard_False, Loc));
5713
5714          elsif Is_Unchecked_Union (Typl) then
5715
5716             --  If we can infer the discriminants of the operands, we make a
5717             --  call to the TSS equality function.
5718
5719             if Has_Inferable_Discriminants (Lhs)
5720                  and then
5721                Has_Inferable_Discriminants (Rhs)
5722             then
5723                Build_Equality_Call
5724                  (TSS (Root_Type (Typl), TSS_Composite_Equality));
5725
5726             else
5727                --  Ada 2005 (AI-216): Program_Error is raised when evaluating
5728                --  the predefined equality operator for an Unchecked_Union type
5729                --  if either of the operands lack inferable discriminants.
5730
5731                Insert_Action (N,
5732                  Make_Raise_Program_Error (Loc,
5733                    Reason => PE_Unchecked_Union_Restriction));
5734
5735                --  Prevent Gigi from generating incorrect code by rewriting
5736                --  the equality as a standard False.
5737
5738                Rewrite (N,
5739                  New_Occurrence_Of (Standard_False, Loc));
5740
5741             end if;
5742
5743          --  If a type support function is present (for complex cases), use it
5744
5745          elsif Present (TSS (Root_Type (Typl), TSS_Composite_Equality)) then
5746             Build_Equality_Call
5747               (TSS (Root_Type (Typl), TSS_Composite_Equality));
5748
5749          --  Otherwise expand the component by component equality. Note that
5750          --  we never use block-bit comparisons for records, because of the
5751          --  problems with gaps. The backend will often be able to recombine
5752          --  the separate comparisons that we generate here.
5753
5754          else
5755             Remove_Side_Effects (Lhs);
5756             Remove_Side_Effects (Rhs);
5757             Rewrite (N,
5758               Expand_Record_Equality (N, Typl, Lhs, Rhs, Bodies));
5759
5760             Insert_Actions      (N, Bodies,           Suppress => All_Checks);
5761             Analyze_And_Resolve (N, Standard_Boolean, Suppress => All_Checks);
5762          end if;
5763       end if;
5764
5765       --  Test if result is known at compile time
5766
5767       Rewrite_Comparison (N);
5768
5769       --  If we still have comparison for Vax_Float, process it
5770
5771       if Vax_Float (Typl) and then Nkind (N) in N_Op_Compare  then
5772          Expand_Vax_Comparison (N);
5773          return;
5774       end if;
5775    end Expand_N_Op_Eq;
5776
5777    -----------------------
5778    -- Expand_N_Op_Expon --
5779    -----------------------
5780
5781    procedure Expand_N_Op_Expon (N : Node_Id) is
5782       Loc    : constant Source_Ptr := Sloc (N);
5783       Typ    : constant Entity_Id  := Etype (N);
5784       Rtyp   : constant Entity_Id  := Root_Type (Typ);
5785       Base   : constant Node_Id    := Relocate_Node (Left_Opnd (N));
5786       Bastyp : constant Node_Id    := Etype (Base);
5787       Exp    : constant Node_Id    := Relocate_Node (Right_Opnd (N));
5788       Exptyp : constant Entity_Id  := Etype (Exp);
5789       Ovflo  : constant Boolean    := Do_Overflow_Check (N);
5790       Expv   : Uint;
5791       Xnode  : Node_Id;
5792       Temp   : Node_Id;
5793       Rent   : RE_Id;
5794       Ent    : Entity_Id;
5795       Etyp   : Entity_Id;
5796
5797    begin
5798       Binary_Op_Validity_Checks (N);
5799
5800       --  If either operand is of a private type, then we have the use of an
5801       --  intrinsic operator, and we get rid of the privateness, by using root
5802       --  types of underlying types for the actual operation. Otherwise the
5803       --  private types will cause trouble if we expand multiplications or
5804       --  shifts etc. We also do this transformation if the result type is
5805       --  different from the base type.
5806
5807       if Is_Private_Type (Etype (Base))
5808            or else
5809          Is_Private_Type (Typ)
5810            or else
5811          Is_Private_Type (Exptyp)
5812            or else
5813          Rtyp /= Root_Type (Bastyp)
5814       then
5815          declare
5816             Bt : constant Entity_Id := Root_Type (Underlying_Type (Bastyp));
5817             Et : constant Entity_Id := Root_Type (Underlying_Type (Exptyp));
5818
5819          begin
5820             Rewrite (N,
5821               Unchecked_Convert_To (Typ,
5822                 Make_Op_Expon (Loc,
5823                   Left_Opnd  => Unchecked_Convert_To (Bt, Base),
5824                   Right_Opnd => Unchecked_Convert_To (Et, Exp))));
5825             Analyze_And_Resolve (N, Typ);
5826             return;
5827          end;
5828       end if;
5829
5830       --  Test for case of known right argument
5831
5832       if Compile_Time_Known_Value (Exp) then
5833          Expv := Expr_Value (Exp);
5834
5835          --  We only fold small non-negative exponents. You might think we
5836          --  could fold small negative exponents for the real case, but we
5837          --  can't because we are required to raise Constraint_Error for
5838          --  the case of 0.0 ** (negative) even if Machine_Overflows = False.
5839          --  See ACVC test C4A012B.
5840
5841          if Expv >= 0 and then Expv <= 4 then
5842
5843             --  X ** 0 = 1 (or 1.0)
5844
5845             if Expv = 0 then
5846
5847                --  Call Remove_Side_Effects to ensure that any side effects
5848                --  in the ignored left operand (in particular function calls
5849                --  to user defined functions) are properly executed.
5850
5851                Remove_Side_Effects (Base);
5852
5853                if Ekind (Typ) in Integer_Kind then
5854                   Xnode := Make_Integer_Literal (Loc, Intval => 1);
5855                else
5856                   Xnode := Make_Real_Literal (Loc, Ureal_1);
5857                end if;
5858
5859             --  X ** 1 = X
5860
5861             elsif Expv = 1 then
5862                Xnode := Base;
5863
5864             --  X ** 2 = X * X
5865
5866             elsif Expv = 2 then
5867                Xnode :=
5868                  Make_Op_Multiply (Loc,
5869                    Left_Opnd  => Duplicate_Subexpr (Base),
5870                    Right_Opnd => Duplicate_Subexpr_No_Checks (Base));
5871
5872             --  X ** 3 = X * X * X
5873
5874             elsif Expv = 3 then
5875                Xnode :=
5876                  Make_Op_Multiply (Loc,
5877                    Left_Opnd =>
5878                      Make_Op_Multiply (Loc,
5879                        Left_Opnd  => Duplicate_Subexpr (Base),
5880                        Right_Opnd => Duplicate_Subexpr_No_Checks (Base)),
5881                    Right_Opnd  => Duplicate_Subexpr_No_Checks (Base));
5882
5883             --  X ** 4  ->
5884             --    En : constant base'type := base * base;
5885             --    ...
5886             --    En * En
5887
5888             else -- Expv = 4
5889                Temp :=
5890                  Make_Defining_Identifier (Loc, New_Internal_Name ('E'));
5891
5892                Insert_Actions (N, New_List (
5893                  Make_Object_Declaration (Loc,
5894                    Defining_Identifier => Temp,
5895                    Constant_Present    => True,
5896                    Object_Definition   => New_Reference_To (Typ, Loc),
5897                    Expression =>
5898                      Make_Op_Multiply (Loc,
5899                        Left_Opnd  => Duplicate_Subexpr (Base),
5900                        Right_Opnd => Duplicate_Subexpr_No_Checks (Base)))));
5901
5902                Xnode :=
5903                  Make_Op_Multiply (Loc,
5904                    Left_Opnd  => New_Reference_To (Temp, Loc),
5905                    Right_Opnd => New_Reference_To (Temp, Loc));
5906             end if;
5907
5908             Rewrite (N, Xnode);
5909             Analyze_And_Resolve (N, Typ);
5910             return;
5911          end if;
5912       end if;
5913
5914       --  Case of (2 ** expression) appearing as an argument of an integer
5915       --  multiplication, or as the right argument of a division of a non-
5916       --  negative integer. In such cases we leave the node untouched, setting
5917       --  the flag Is_Natural_Power_Of_2_for_Shift set, then the expansion
5918       --  of the higher level node converts it into a shift.
5919
5920       --  Note: this transformation is not applicable for a modular type with
5921       --  a non-binary modulus in the multiplication case, since we get a wrong
5922       --  result if the shift causes an overflow before the modular reduction.
5923
5924       if Nkind (Base) = N_Integer_Literal
5925         and then Intval (Base) = 2
5926         and then Is_Integer_Type (Root_Type (Exptyp))
5927         and then Esize (Root_Type (Exptyp)) <= Esize (Standard_Integer)
5928         and then Is_Unsigned_Type (Exptyp)
5929         and then not Ovflo
5930         and then Nkind (Parent (N)) in N_Binary_Op
5931       then
5932          declare
5933             P : constant Node_Id := Parent (N);
5934             L : constant Node_Id := Left_Opnd (P);
5935             R : constant Node_Id := Right_Opnd (P);
5936
5937          begin
5938             if (Nkind (P) = N_Op_Multiply
5939                  and then not Non_Binary_Modulus (Typ)
5940                  and then
5941                    ((Is_Integer_Type (Etype (L)) and then R = N)
5942                        or else
5943                     (Is_Integer_Type (Etype (R)) and then L = N))
5944                  and then not Do_Overflow_Check (P))
5945
5946               or else
5947                 (Nkind (P) = N_Op_Divide
5948                   and then Is_Integer_Type (Etype (L))
5949                   and then Is_Unsigned_Type (Etype (L))
5950                   and then R = N
5951                   and then not Do_Overflow_Check (P))
5952             then
5953                Set_Is_Power_Of_2_For_Shift (N);
5954                return;
5955             end if;
5956          end;
5957       end if;
5958
5959       --  Fall through if exponentiation must be done using a runtime routine
5960
5961       --  First deal with modular case
5962
5963       if Is_Modular_Integer_Type (Rtyp) then
5964
5965          --  Non-binary case, we call the special exponentiation routine for
5966          --  the non-binary case, converting the argument to Long_Long_Integer
5967          --  and passing the modulus value. Then the result is converted back
5968          --  to the base type.
5969
5970          if Non_Binary_Modulus (Rtyp) then
5971             Rewrite (N,
5972               Convert_To (Typ,
5973                 Make_Function_Call (Loc,
5974                   Name => New_Reference_To (RTE (RE_Exp_Modular), Loc),
5975                   Parameter_Associations => New_List (
5976                     Convert_To (Standard_Integer, Base),
5977                     Make_Integer_Literal (Loc, Modulus (Rtyp)),
5978                     Exp))));
5979
5980          --  Binary case, in this case, we call one of two routines, either the
5981          --  unsigned integer case, or the unsigned long long integer case,
5982          --  with a final "and" operation to do the required mod.
5983
5984          else
5985             if UI_To_Int (Esize (Rtyp)) <= Standard_Integer_Size then
5986                Ent := RTE (RE_Exp_Unsigned);
5987             else
5988                Ent := RTE (RE_Exp_Long_Long_Unsigned);
5989             end if;
5990
5991             Rewrite (N,
5992               Convert_To (Typ,
5993                 Make_Op_And (Loc,
5994                   Left_Opnd =>
5995                     Make_Function_Call (Loc,
5996                       Name => New_Reference_To (Ent, Loc),
5997                       Parameter_Associations => New_List (
5998                         Convert_To (Etype (First_Formal (Ent)), Base),
5999                         Exp)),
6000                    Right_Opnd =>
6001                      Make_Integer_Literal (Loc, Modulus (Rtyp) - 1))));
6002
6003          end if;
6004
6005          --  Common exit point for modular type case
6006
6007          Analyze_And_Resolve (N, Typ);
6008          return;
6009
6010       --  Signed integer cases, done using either Integer or Long_Long_Integer.
6011       --  It is not worth having routines for Short_[Short_]Integer, since for
6012       --  most machines it would not help, and it would generate more code that
6013       --  might need certification when a certified run time is required.
6014
6015       --  In the integer cases, we have two routines, one for when overflow
6016       --  checks are required, and one when they are not required, since there
6017       --  is a real gain in omitting checks on many machines.
6018
6019       elsif Rtyp = Base_Type (Standard_Long_Long_Integer)
6020         or else (Rtyp = Base_Type (Standard_Long_Integer)
6021                    and then
6022                      Esize (Standard_Long_Integer) > Esize (Standard_Integer))
6023         or else (Rtyp = Universal_Integer)
6024       then
6025          Etyp := Standard_Long_Long_Integer;
6026
6027          if Ovflo then
6028             Rent := RE_Exp_Long_Long_Integer;
6029          else
6030             Rent := RE_Exn_Long_Long_Integer;
6031          end if;
6032
6033       elsif Is_Signed_Integer_Type (Rtyp) then
6034          Etyp := Standard_Integer;
6035
6036          if Ovflo then
6037             Rent := RE_Exp_Integer;
6038          else
6039             Rent := RE_Exn_Integer;
6040          end if;
6041
6042       --  Floating-point cases, always done using Long_Long_Float. We do not
6043       --  need separate routines for the overflow case here, since in the case
6044       --  of floating-point, we generate infinities anyway as a rule (either
6045       --  that or we automatically trap overflow), and if there is an infinity
6046       --  generated and a range check is required, the check will fail anyway.
6047
6048       else
6049          pragma Assert (Is_Floating_Point_Type (Rtyp));
6050          Etyp := Standard_Long_Long_Float;
6051          Rent := RE_Exn_Long_Long_Float;
6052       end if;
6053
6054       --  Common processing for integer cases and floating-point cases.
6055       --  If we are in the right type, we can call runtime routine directly
6056
6057       if Typ = Etyp
6058         and then Rtyp /= Universal_Integer
6059         and then Rtyp /= Universal_Real
6060       then
6061          Rewrite (N,
6062            Make_Function_Call (Loc,
6063              Name => New_Reference_To (RTE (Rent), Loc),
6064              Parameter_Associations => New_List (Base, Exp)));
6065
6066       --  Otherwise we have to introduce conversions (conversions are also
6067       --  required in the universal cases, since the runtime routine is
6068       --  typed using one of the standard types).
6069
6070       else
6071          Rewrite (N,
6072            Convert_To (Typ,
6073              Make_Function_Call (Loc,
6074                Name => New_Reference_To (RTE (Rent), Loc),
6075                Parameter_Associations => New_List (
6076                  Convert_To (Etyp, Base),
6077                  Exp))));
6078       end if;
6079
6080       Analyze_And_Resolve (N, Typ);
6081       return;
6082
6083    exception
6084       when RE_Not_Available =>
6085          return;
6086    end Expand_N_Op_Expon;
6087
6088    --------------------
6089    -- Expand_N_Op_Ge --
6090    --------------------
6091
6092    procedure Expand_N_Op_Ge (N : Node_Id) is
6093       Typ  : constant Entity_Id := Etype (N);
6094       Op1  : constant Node_Id   := Left_Opnd (N);
6095       Op2  : constant Node_Id   := Right_Opnd (N);
6096       Typ1 : constant Entity_Id := Base_Type (Etype (Op1));
6097
6098    begin
6099       Binary_Op_Validity_Checks (N);
6100
6101       if Is_Array_Type (Typ1) then
6102          Expand_Array_Comparison (N);
6103          return;
6104       end if;
6105
6106       if Is_Boolean_Type (Typ1) then
6107          Adjust_Condition (Op1);
6108          Adjust_Condition (Op2);
6109          Set_Etype (N, Standard_Boolean);
6110          Adjust_Result_Type (N, Typ);
6111       end if;
6112
6113       Rewrite_Comparison (N);
6114
6115       --  If we still have comparison, and Vax_Float type, process it
6116
6117       if Vax_Float (Typ1) and then Nkind (N) in N_Op_Compare then
6118          Expand_Vax_Comparison (N);
6119          return;
6120       end if;
6121    end Expand_N_Op_Ge;
6122
6123    --------------------
6124    -- Expand_N_Op_Gt --
6125    --------------------
6126
6127    procedure Expand_N_Op_Gt (N : Node_Id) is
6128       Typ  : constant Entity_Id := Etype (N);
6129       Op1  : constant Node_Id   := Left_Opnd (N);
6130       Op2  : constant Node_Id   := Right_Opnd (N);
6131       Typ1 : constant Entity_Id := Base_Type (Etype (Op1));
6132
6133    begin
6134       Binary_Op_Validity_Checks (N);
6135
6136       if Is_Array_Type (Typ1) then
6137          Expand_Array_Comparison (N);
6138          return;
6139       end if;
6140
6141       if Is_Boolean_Type (Typ1) then
6142          Adjust_Condition (Op1);
6143          Adjust_Condition (Op2);
6144          Set_Etype (N, Standard_Boolean);
6145          Adjust_Result_Type (N, Typ);
6146       end if;
6147
6148       Rewrite_Comparison (N);
6149
6150       --  If we still have comparison, and Vax_Float type, process it
6151
6152       if Vax_Float (Typ1) and then Nkind (N) in N_Op_Compare then
6153          Expand_Vax_Comparison (N);
6154          return;
6155       end if;
6156    end Expand_N_Op_Gt;
6157
6158    --------------------
6159    -- Expand_N_Op_Le --
6160    --------------------
6161
6162    procedure Expand_N_Op_Le (N : Node_Id) is
6163       Typ  : constant Entity_Id := Etype (N);
6164       Op1  : constant Node_Id   := Left_Opnd (N);
6165       Op2  : constant Node_Id   := Right_Opnd (N);
6166       Typ1 : constant Entity_Id := Base_Type (Etype (Op1));
6167
6168    begin
6169       Binary_Op_Validity_Checks (N);
6170
6171       if Is_Array_Type (Typ1) then
6172          Expand_Array_Comparison (N);
6173          return;
6174       end if;
6175
6176       if Is_Boolean_Type (Typ1) then
6177          Adjust_Condition (Op1);
6178          Adjust_Condition (Op2);
6179          Set_Etype (N, Standard_Boolean);
6180          Adjust_Result_Type (N, Typ);
6181       end if;
6182
6183       Rewrite_Comparison (N);
6184
6185       --  If we still have comparison, and Vax_Float type, process it
6186
6187       if Vax_Float (Typ1) and then Nkind (N) in N_Op_Compare then
6188          Expand_Vax_Comparison (N);
6189          return;
6190       end if;
6191    end Expand_N_Op_Le;
6192
6193    --------------------
6194    -- Expand_N_Op_Lt --
6195    --------------------
6196
6197    procedure Expand_N_Op_Lt (N : Node_Id) is
6198       Typ  : constant Entity_Id := Etype (N);
6199       Op1  : constant Node_Id   := Left_Opnd (N);
6200       Op2  : constant Node_Id   := Right_Opnd (N);
6201       Typ1 : constant Entity_Id := Base_Type (Etype (Op1));
6202
6203    begin
6204       Binary_Op_Validity_Checks (N);
6205
6206       if Is_Array_Type (Typ1) then
6207          Expand_Array_Comparison (N);
6208          return;
6209       end if;
6210
6211       if Is_Boolean_Type (Typ1) then
6212          Adjust_Condition (Op1);
6213          Adjust_Condition (Op2);
6214          Set_Etype (N, Standard_Boolean);
6215          Adjust_Result_Type (N, Typ);
6216       end if;
6217
6218       Rewrite_Comparison (N);
6219
6220       --  If we still have comparison, and Vax_Float type, process it
6221
6222       if Vax_Float (Typ1) and then Nkind (N) in N_Op_Compare then
6223          Expand_Vax_Comparison (N);
6224          return;
6225       end if;
6226    end Expand_N_Op_Lt;
6227
6228    -----------------------
6229    -- Expand_N_Op_Minus --
6230    -----------------------
6231
6232    procedure Expand_N_Op_Minus (N : Node_Id) is
6233       Loc : constant Source_Ptr := Sloc (N);
6234       Typ : constant Entity_Id  := Etype (N);
6235
6236    begin
6237       Unary_Op_Validity_Checks (N);
6238
6239       if not Backend_Overflow_Checks_On_Target
6240          and then Is_Signed_Integer_Type (Etype (N))
6241          and then Do_Overflow_Check (N)
6242       then
6243          --  Software overflow checking expands -expr into (0 - expr)
6244
6245          Rewrite (N,
6246            Make_Op_Subtract (Loc,
6247              Left_Opnd  => Make_Integer_Literal (Loc, 0),
6248              Right_Opnd => Right_Opnd (N)));
6249
6250          Analyze_And_Resolve (N, Typ);
6251
6252       --  Vax floating-point types case
6253
6254       elsif Vax_Float (Etype (N)) then
6255          Expand_Vax_Arith (N);
6256       end if;
6257    end Expand_N_Op_Minus;
6258
6259    ---------------------
6260    -- Expand_N_Op_Mod --
6261    ---------------------
6262
6263    procedure Expand_N_Op_Mod (N : Node_Id) is
6264       Loc   : constant Source_Ptr := Sloc (N);
6265       Typ   : constant Entity_Id  := Etype (N);
6266       Left  : constant Node_Id    := Left_Opnd (N);
6267       Right : constant Node_Id    := Right_Opnd (N);
6268       DOC   : constant Boolean    := Do_Overflow_Check (N);
6269       DDC   : constant Boolean    := Do_Division_Check (N);
6270
6271       LLB : Uint;
6272       Llo : Uint;
6273       Lhi : Uint;
6274       LOK : Boolean;
6275       Rlo : Uint;
6276       Rhi : Uint;
6277       ROK : Boolean;
6278
6279       pragma Warnings (Off, Lhi);
6280
6281    begin
6282       Binary_Op_Validity_Checks (N);
6283
6284       Determine_Range (Right, ROK, Rlo, Rhi, Assume_Valid => True);
6285       Determine_Range (Left,  LOK, Llo, Lhi, Assume_Valid => True);
6286
6287       --  Convert mod to rem if operands are known non-negative. We do this
6288       --  since it is quite likely that this will improve the quality of code,
6289       --  (the operation now corresponds to the hardware remainder), and it
6290       --  does not seem likely that it could be harmful.
6291
6292       if LOK and then Llo >= 0
6293            and then
6294          ROK and then Rlo >= 0
6295       then
6296          Rewrite (N,
6297            Make_Op_Rem (Sloc (N),
6298              Left_Opnd  => Left_Opnd (N),
6299              Right_Opnd => Right_Opnd (N)));
6300
6301          --  Instead of reanalyzing the node we do the analysis manually. This
6302          --  avoids anomalies when the replacement is done in an instance and
6303          --  is epsilon more efficient.
6304
6305          Set_Entity            (N, Standard_Entity (S_Op_Rem));
6306          Set_Etype             (N, Typ);
6307          Set_Do_Overflow_Check (N, DOC);
6308          Set_Do_Division_Check (N, DDC);
6309          Expand_N_Op_Rem (N);
6310          Set_Analyzed (N);
6311
6312       --  Otherwise, normal mod processing
6313
6314       else
6315          if Is_Integer_Type (Etype (N)) then
6316             Apply_Divide_Check (N);
6317          end if;
6318
6319          --  Apply optimization x mod 1 = 0. We don't really need that with
6320          --  gcc, but it is useful with other back ends (e.g. AAMP), and is
6321          --  certainly harmless.
6322
6323          if Is_Integer_Type (Etype (N))
6324            and then Compile_Time_Known_Value (Right)
6325            and then Expr_Value (Right) = Uint_1
6326          then
6327             --  Call Remove_Side_Effects to ensure that any side effects in
6328             --  the ignored left operand (in particular function calls to
6329             --  user defined functions) are properly executed.
6330
6331             Remove_Side_Effects (Left);
6332
6333             Rewrite (N, Make_Integer_Literal (Loc, 0));
6334             Analyze_And_Resolve (N, Typ);
6335             return;
6336          end if;
6337
6338          --  Deal with annoying case of largest negative number remainder
6339          --  minus one. Gigi does not handle this case correctly, because
6340          --  it generates a divide instruction which may trap in this case.
6341
6342          --  In fact the check is quite easy, if the right operand is -1, then
6343          --  the mod value is always 0, and we can just ignore the left operand
6344          --  completely in this case.
6345
6346          --  The operand type may be private (e.g. in the expansion of an
6347          --  intrinsic operation) so we must use the underlying type to get the
6348          --  bounds, and convert the literals explicitly.
6349
6350          LLB :=
6351            Expr_Value
6352              (Type_Low_Bound (Base_Type (Underlying_Type (Etype (Left)))));
6353
6354          if ((not ROK) or else (Rlo <= (-1) and then (-1) <= Rhi))
6355            and then
6356             ((not LOK) or else (Llo = LLB))
6357          then
6358             Rewrite (N,
6359               Make_Conditional_Expression (Loc,
6360                 Expressions => New_List (
6361                   Make_Op_Eq (Loc,
6362                     Left_Opnd => Duplicate_Subexpr (Right),
6363                     Right_Opnd =>
6364                       Unchecked_Convert_To (Typ,
6365                         Make_Integer_Literal (Loc, -1))),
6366                   Unchecked_Convert_To (Typ,
6367                     Make_Integer_Literal (Loc, Uint_0)),
6368                   Relocate_Node (N))));
6369
6370             Set_Analyzed (Next (Next (First (Expressions (N)))));
6371             Analyze_And_Resolve (N, Typ);
6372          end if;
6373       end if;
6374    end Expand_N_Op_Mod;
6375
6376    --------------------------
6377    -- Expand_N_Op_Multiply --
6378    --------------------------
6379
6380    procedure Expand_N_Op_Multiply (N : Node_Id) is
6381       Loc : constant Source_Ptr := Sloc (N);
6382       Lop : constant Node_Id    := Left_Opnd (N);
6383       Rop : constant Node_Id    := Right_Opnd (N);
6384
6385       Lp2 : constant Boolean :=
6386               Nkind (Lop) = N_Op_Expon
6387                 and then Is_Power_Of_2_For_Shift (Lop);
6388
6389       Rp2 : constant Boolean :=
6390               Nkind (Rop) = N_Op_Expon
6391                 and then Is_Power_Of_2_For_Shift (Rop);
6392
6393       Ltyp : constant Entity_Id  := Etype (Lop);
6394       Rtyp : constant Entity_Id  := Etype (Rop);
6395       Typ  : Entity_Id           := Etype (N);
6396
6397    begin
6398       Binary_Op_Validity_Checks (N);
6399
6400       --  Special optimizations for integer types
6401
6402       if Is_Integer_Type (Typ) then
6403
6404          --  N * 0 = 0 for integer types
6405
6406          if Compile_Time_Known_Value (Rop)
6407            and then Expr_Value (Rop) = Uint_0
6408          then
6409             --  Call Remove_Side_Effects to ensure that any side effects in
6410             --  the ignored left operand (in particular function calls to
6411             --  user defined functions) are properly executed.
6412
6413             Remove_Side_Effects (Lop);
6414
6415             Rewrite (N, Make_Integer_Literal (Loc, Uint_0));
6416             Analyze_And_Resolve (N, Typ);
6417             return;
6418          end if;
6419
6420          --  Similar handling for 0 * N = 0
6421
6422          if Compile_Time_Known_Value (Lop)
6423            and then Expr_Value (Lop) = Uint_0
6424          then
6425             Remove_Side_Effects (Rop);
6426             Rewrite (N, Make_Integer_Literal (Loc, Uint_0));
6427             Analyze_And_Resolve (N, Typ);
6428             return;
6429          end if;
6430
6431          --  N * 1 = 1 * N = N for integer types
6432
6433          --  This optimisation is not done if we are going to
6434          --  rewrite the product 1 * 2 ** N to a shift.
6435
6436          if Compile_Time_Known_Value (Rop)
6437            and then Expr_Value (Rop) = Uint_1
6438            and then not Lp2
6439          then
6440             Rewrite (N, Lop);
6441             return;
6442
6443          elsif Compile_Time_Known_Value (Lop)
6444            and then Expr_Value (Lop) = Uint_1
6445            and then not Rp2
6446          then
6447             Rewrite (N, Rop);
6448             return;
6449          end if;
6450       end if;
6451
6452       --  Convert x * 2 ** y to Shift_Left (x, y). Note that the fact that
6453       --  Is_Power_Of_2_For_Shift is set means that we know that our left
6454       --  operand is an integer, as required for this to work.
6455
6456       if Rp2 then
6457          if Lp2 then
6458
6459             --  Convert 2 ** A * 2 ** B into  2 ** (A + B)
6460
6461             Rewrite (N,
6462               Make_Op_Expon (Loc,
6463                 Left_Opnd => Make_Integer_Literal (Loc, 2),
6464                 Right_Opnd =>
6465                   Make_Op_Add (Loc,
6466                     Left_Opnd  => Right_Opnd (Lop),
6467                     Right_Opnd => Right_Opnd (Rop))));
6468             Analyze_And_Resolve (N, Typ);
6469             return;
6470
6471          else
6472             Rewrite (N,
6473               Make_Op_Shift_Left (Loc,
6474                 Left_Opnd  => Lop,
6475                 Right_Opnd =>
6476                   Convert_To (Standard_Natural, Right_Opnd (Rop))));
6477             Analyze_And_Resolve (N, Typ);
6478             return;
6479          end if;
6480
6481       --  Same processing for the operands the other way round
6482
6483       elsif Lp2 then
6484          Rewrite (N,
6485            Make_Op_Shift_Left (Loc,
6486              Left_Opnd  => Rop,
6487              Right_Opnd =>
6488                Convert_To (Standard_Natural, Right_Opnd (Lop))));
6489          Analyze_And_Resolve (N, Typ);
6490          return;
6491       end if;
6492
6493       --  Do required fixup of universal fixed operation
6494
6495       if Typ = Universal_Fixed then
6496          Fixup_Universal_Fixed_Operation (N);
6497          Typ := Etype (N);
6498       end if;
6499
6500       --  Multiplications with fixed-point results
6501
6502       if Is_Fixed_Point_Type (Typ) then
6503
6504          --  No special processing if Treat_Fixed_As_Integer is set, since from
6505          --  a semantic point of view such operations are simply integer
6506          --  operations and will be treated that way.
6507
6508          if not Treat_Fixed_As_Integer (N) then
6509
6510             --  Case of fixed * integer => fixed
6511
6512             if Is_Integer_Type (Rtyp) then
6513                Expand_Multiply_Fixed_By_Integer_Giving_Fixed (N);
6514
6515             --  Case of integer * fixed => fixed
6516
6517             elsif Is_Integer_Type (Ltyp) then
6518                Expand_Multiply_Integer_By_Fixed_Giving_Fixed (N);
6519
6520             --  Case of fixed * fixed => fixed
6521
6522             else
6523                Expand_Multiply_Fixed_By_Fixed_Giving_Fixed (N);
6524             end if;
6525          end if;
6526
6527       --  Other cases of multiplication of fixed-point operands. Again we
6528       --  exclude the cases where Treat_Fixed_As_Integer flag is set.
6529
6530       elsif (Is_Fixed_Point_Type (Ltyp) or else Is_Fixed_Point_Type (Rtyp))
6531         and then not Treat_Fixed_As_Integer (N)
6532       then
6533          if Is_Integer_Type (Typ) then
6534             Expand_Multiply_Fixed_By_Fixed_Giving_Integer (N);
6535          else
6536             pragma Assert (Is_Floating_Point_Type (Typ));
6537             Expand_Multiply_Fixed_By_Fixed_Giving_Float (N);
6538          end if;
6539
6540       --  Mixed-mode operations can appear in a non-static universal context,
6541       --  in which case the integer argument must be converted explicitly.
6542
6543       elsif Typ = Universal_Real
6544         and then Is_Integer_Type (Rtyp)
6545       then
6546          Rewrite (Rop, Convert_To (Universal_Real, Relocate_Node (Rop)));
6547
6548          Analyze_And_Resolve (Rop, Universal_Real);
6549
6550       elsif Typ = Universal_Real
6551         and then Is_Integer_Type (Ltyp)
6552       then
6553          Rewrite (Lop, Convert_To (Universal_Real, Relocate_Node (Lop)));
6554
6555          Analyze_And_Resolve (Lop, Universal_Real);
6556
6557       --  Non-fixed point cases, check software overflow checking required
6558
6559       elsif Is_Signed_Integer_Type (Etype (N)) then
6560          Apply_Arithmetic_Overflow_Check (N);
6561
6562       --  Deal with VAX float case
6563
6564       elsif Vax_Float (Typ) then
6565          Expand_Vax_Arith (N);
6566          return;
6567       end if;
6568    end Expand_N_Op_Multiply;
6569
6570    --------------------
6571    -- Expand_N_Op_Ne --
6572    --------------------
6573
6574    procedure Expand_N_Op_Ne (N : Node_Id) is
6575       Typ : constant Entity_Id := Etype (Left_Opnd (N));
6576
6577    begin
6578       --  Case of elementary type with standard operator
6579
6580       if Is_Elementary_Type (Typ)
6581         and then Sloc (Entity (N)) = Standard_Location
6582       then
6583          Binary_Op_Validity_Checks (N);
6584
6585          --  Boolean types (requiring handling of non-standard case)
6586
6587          if Is_Boolean_Type (Typ) then
6588             Adjust_Condition (Left_Opnd (N));
6589             Adjust_Condition (Right_Opnd (N));
6590             Set_Etype (N, Standard_Boolean);
6591             Adjust_Result_Type (N, Typ);
6592          end if;
6593
6594          Rewrite_Comparison (N);
6595
6596          --  If we still have comparison for Vax_Float, process it
6597
6598          if Vax_Float (Typ) and then Nkind (N) in N_Op_Compare  then
6599             Expand_Vax_Comparison (N);
6600             return;
6601          end if;
6602
6603       --  For all cases other than elementary types, we rewrite node as the
6604       --  negation of an equality operation, and reanalyze. The equality to be
6605       --  used is defined in the same scope and has the same signature. This
6606       --  signature must be set explicitly since in an instance it may not have
6607       --  the same visibility as in the generic unit. This avoids duplicating
6608       --  or factoring the complex code for record/array equality tests etc.
6609
6610       else
6611          declare
6612             Loc : constant Source_Ptr := Sloc (N);
6613             Neg : Node_Id;
6614             Ne  : constant Entity_Id := Entity (N);
6615
6616          begin
6617             Binary_Op_Validity_Checks (N);
6618
6619             Neg :=
6620               Make_Op_Not (Loc,
6621                 Right_Opnd =>
6622                   Make_Op_Eq (Loc,
6623                     Left_Opnd =>  Left_Opnd (N),
6624                     Right_Opnd => Right_Opnd (N)));
6625             Set_Paren_Count (Right_Opnd (Neg), 1);
6626
6627             if Scope (Ne) /= Standard_Standard then
6628                Set_Entity (Right_Opnd (Neg), Corresponding_Equality (Ne));
6629             end if;
6630
6631             --  For navigation purposes, the inequality is treated as an
6632             --  implicit reference to the corresponding equality. Preserve the
6633             --  Comes_From_ source flag so that the proper Xref entry is
6634             --  generated.
6635
6636             Preserve_Comes_From_Source (Neg, N);
6637             Preserve_Comes_From_Source (Right_Opnd (Neg), N);
6638             Rewrite (N, Neg);
6639             Analyze_And_Resolve (N, Standard_Boolean);
6640          end;
6641       end if;
6642    end Expand_N_Op_Ne;
6643
6644    ---------------------
6645    -- Expand_N_Op_Not --
6646    ---------------------
6647
6648    --  If the argument is other than a Boolean array type, there is no special
6649    --  expansion required.
6650
6651    --  For the packed case, we call the special routine in Exp_Pakd, except
6652    --  that if the component size is greater than one, we use the standard
6653    --  routine generating a gruesome loop (it is so peculiar to have packed
6654    --  arrays with non-standard Boolean representations anyway, so it does not
6655    --  matter that we do not handle this case efficiently).
6656
6657    --  For the unpacked case (and for the special packed case where we have non
6658    --  standard Booleans, as discussed above), we generate and insert into the
6659    --  tree the following function definition:
6660
6661    --     function Nnnn (A : arr) is
6662    --       B : arr;
6663    --     begin
6664    --       for J in a'range loop
6665    --          B (J) := not A (J);
6666    --       end loop;
6667    --       return B;
6668    --     end Nnnn;
6669
6670    --  Here arr is the actual subtype of the parameter (and hence always
6671    --  constrained). Then we replace the not with a call to this function.
6672
6673    procedure Expand_N_Op_Not (N : Node_Id) is
6674       Loc  : constant Source_Ptr := Sloc (N);
6675       Typ  : constant Entity_Id  := Etype (N);
6676       Opnd : Node_Id;
6677       Arr  : Entity_Id;
6678       A    : Entity_Id;
6679       B    : Entity_Id;
6680       J    : Entity_Id;
6681       A_J  : Node_Id;
6682       B_J  : Node_Id;
6683
6684       Func_Name      : Entity_Id;
6685       Loop_Statement : Node_Id;
6686
6687    begin
6688       Unary_Op_Validity_Checks (N);
6689
6690       --  For boolean operand, deal with non-standard booleans
6691
6692       if Is_Boolean_Type (Typ) then
6693          Adjust_Condition (Right_Opnd (N));
6694          Set_Etype (N, Standard_Boolean);
6695          Adjust_Result_Type (N, Typ);
6696          return;
6697       end if;
6698
6699       --  Only array types need any other processing
6700
6701       if not Is_Array_Type (Typ) then
6702          return;
6703       end if;
6704
6705       --  Case of array operand. If bit packed with a component size of 1,
6706       --  handle it in Exp_Pakd if the operand is known to be aligned.
6707
6708       if Is_Bit_Packed_Array (Typ)
6709         and then Component_Size (Typ) = 1
6710         and then not Is_Possibly_Unaligned_Object (Right_Opnd (N))
6711       then
6712          Expand_Packed_Not (N);
6713          return;
6714       end if;
6715
6716       --  Case of array operand which is not bit-packed. If the context is
6717       --  a safe assignment, call in-place operation, If context is a larger
6718       --  boolean expression in the context of a safe assignment, expansion is
6719       --  done by enclosing operation.
6720
6721       Opnd := Relocate_Node (Right_Opnd (N));
6722       Convert_To_Actual_Subtype (Opnd);
6723       Arr := Etype (Opnd);
6724       Ensure_Defined (Arr, N);
6725       Silly_Boolean_Array_Not_Test (N, Arr);
6726
6727       if Nkind (Parent (N)) = N_Assignment_Statement then
6728          if Safe_In_Place_Array_Op (Name (Parent (N)), N, Empty) then
6729             Build_Boolean_Array_Proc_Call (Parent (N), Opnd, Empty);
6730             return;
6731
6732          --  Special case the negation of a binary operation
6733
6734          elsif Nkind_In (Opnd, N_Op_And, N_Op_Or, N_Op_Xor)
6735            and then Safe_In_Place_Array_Op
6736                       (Name (Parent (N)), Left_Opnd (Opnd), Right_Opnd (Opnd))
6737          then
6738             Build_Boolean_Array_Proc_Call (Parent (N), Opnd, Empty);
6739             return;
6740          end if;
6741
6742       elsif Nkind (Parent (N)) in N_Binary_Op
6743         and then Nkind (Parent (Parent (N))) = N_Assignment_Statement
6744       then
6745          declare
6746             Op1 : constant Node_Id := Left_Opnd  (Parent (N));
6747             Op2 : constant Node_Id := Right_Opnd (Parent (N));
6748             Lhs : constant Node_Id := Name (Parent (Parent (N)));
6749
6750          begin
6751             if Safe_In_Place_Array_Op (Lhs, Op1, Op2) then
6752                if N = Op1
6753                  and then Nkind (Op2) = N_Op_Not
6754                then
6755                   --  (not A) op (not B) can be reduced to a single call
6756
6757                   return;
6758
6759                elsif N = Op2
6760                  and then Nkind (Parent (N)) = N_Op_Xor
6761                then
6762                   --  A xor (not B) can also be special-cased
6763
6764                   return;
6765                end if;
6766             end if;
6767          end;
6768       end if;
6769
6770       A := Make_Defining_Identifier (Loc, Name_uA);
6771       B := Make_Defining_Identifier (Loc, Name_uB);
6772       J := Make_Defining_Identifier (Loc, Name_uJ);
6773
6774       A_J :=
6775         Make_Indexed_Component (Loc,
6776           Prefix      => New_Reference_To (A, Loc),
6777           Expressions => New_List (New_Reference_To (J, Loc)));
6778
6779       B_J :=
6780         Make_Indexed_Component (Loc,
6781           Prefix      => New_Reference_To (B, Loc),
6782           Expressions => New_List (New_Reference_To (J, Loc)));
6783
6784       Loop_Statement :=
6785         Make_Implicit_Loop_Statement (N,
6786           Identifier => Empty,
6787
6788           Iteration_Scheme =>
6789             Make_Iteration_Scheme (Loc,
6790               Loop_Parameter_Specification =>
6791                 Make_Loop_Parameter_Specification (Loc,
6792                   Defining_Identifier => J,
6793                   Discrete_Subtype_Definition =>
6794                     Make_Attribute_Reference (Loc,
6795                       Prefix => Make_Identifier (Loc, Chars (A)),
6796                       Attribute_Name => Name_Range))),
6797
6798           Statements => New_List (
6799             Make_Assignment_Statement (Loc,
6800               Name       => B_J,
6801               Expression => Make_Op_Not (Loc, A_J))));
6802
6803       Func_Name := Make_Defining_Identifier (Loc, New_Internal_Name ('N'));
6804       Set_Is_Inlined (Func_Name);
6805
6806       Insert_Action (N,
6807         Make_Subprogram_Body (Loc,
6808           Specification =>
6809             Make_Function_Specification (Loc,
6810               Defining_Unit_Name => Func_Name,
6811               Parameter_Specifications => New_List (
6812                 Make_Parameter_Specification (Loc,
6813                   Defining_Identifier => A,
6814                   Parameter_Type      => New_Reference_To (Typ, Loc))),
6815               Result_Definition => New_Reference_To (Typ, Loc)),
6816
6817           Declarations => New_List (
6818             Make_Object_Declaration (Loc,
6819               Defining_Identifier => B,
6820               Object_Definition   => New_Reference_To (Arr, Loc))),
6821
6822           Handled_Statement_Sequence =>
6823             Make_Handled_Sequence_Of_Statements (Loc,
6824               Statements => New_List (
6825                 Loop_Statement,
6826                 Make_Simple_Return_Statement (Loc,
6827                   Expression =>
6828                     Make_Identifier (Loc, Chars (B)))))));
6829
6830       Rewrite (N,
6831         Make_Function_Call (Loc,
6832           Name => New_Reference_To (Func_Name, Loc),
6833           Parameter_Associations => New_List (Opnd)));
6834
6835       Analyze_And_Resolve (N, Typ);
6836    end Expand_N_Op_Not;
6837
6838    --------------------
6839    -- Expand_N_Op_Or --
6840    --------------------
6841
6842    procedure Expand_N_Op_Or (N : Node_Id) is
6843       Typ : constant Entity_Id := Etype (N);
6844
6845    begin
6846       Binary_Op_Validity_Checks (N);
6847
6848       if Is_Array_Type (Etype (N)) then
6849          Expand_Boolean_Operator (N);
6850
6851       elsif Is_Boolean_Type (Etype (N)) then
6852          Adjust_Condition (Left_Opnd (N));
6853          Adjust_Condition (Right_Opnd (N));
6854          Set_Etype (N, Standard_Boolean);
6855          Adjust_Result_Type (N, Typ);
6856       end if;
6857    end Expand_N_Op_Or;
6858
6859    ----------------------
6860    -- Expand_N_Op_Plus --
6861    ----------------------
6862
6863    procedure Expand_N_Op_Plus (N : Node_Id) is
6864    begin
6865       Unary_Op_Validity_Checks (N);
6866    end Expand_N_Op_Plus;
6867
6868    ---------------------
6869    -- Expand_N_Op_Rem --
6870    ---------------------
6871
6872    procedure Expand_N_Op_Rem (N : Node_Id) is
6873       Loc : constant Source_Ptr := Sloc (N);
6874       Typ : constant Entity_Id  := Etype (N);
6875
6876       Left  : constant Node_Id := Left_Opnd (N);
6877       Right : constant Node_Id := Right_Opnd (N);
6878
6879       Lo : Uint;
6880       Hi : Uint;
6881       OK : Boolean;
6882
6883       Lneg : Boolean;
6884       Rneg : Boolean;
6885       --  Set if corresponding operand can be negative
6886
6887       pragma Unreferenced (Hi);
6888
6889    begin
6890       Binary_Op_Validity_Checks (N);
6891
6892       if Is_Integer_Type (Etype (N)) then
6893          Apply_Divide_Check (N);
6894       end if;
6895
6896       --  Apply optimization x rem 1 = 0. We don't really need that with gcc,
6897       --  but it is useful with other back ends (e.g. AAMP), and is certainly
6898       --  harmless.
6899
6900       if Is_Integer_Type (Etype (N))
6901         and then Compile_Time_Known_Value (Right)
6902         and then Expr_Value (Right) = Uint_1
6903       then
6904          --  Call Remove_Side_Effects to ensure that any side effects in the
6905          --  ignored left operand (in particular function calls to user defined
6906          --  functions) are properly executed.
6907
6908          Remove_Side_Effects (Left);
6909
6910          Rewrite (N, Make_Integer_Literal (Loc, 0));
6911          Analyze_And_Resolve (N, Typ);
6912          return;
6913       end if;
6914
6915       --  Deal with annoying case of largest negative number remainder minus
6916       --  one. Gigi does not handle this case correctly, because it generates
6917       --  a divide instruction which may trap in this case.
6918
6919       --  In fact the check is quite easy, if the right operand is -1, then
6920       --  the remainder is always 0, and we can just ignore the left operand
6921       --  completely in this case.
6922
6923       Determine_Range (Right, OK, Lo, Hi, Assume_Valid => True);
6924       Lneg := (not OK) or else Lo < 0;
6925
6926       Determine_Range (Left,  OK, Lo, Hi, Assume_Valid => True);
6927       Rneg := (not OK) or else Lo < 0;
6928
6929       --  We won't mess with trying to find out if the left operand can really
6930       --  be the largest negative number (that's a pain in the case of private
6931       --  types and this is really marginal). We will just assume that we need
6932       --  the test if the left operand can be negative at all.
6933
6934       if Lneg and Rneg then
6935          Rewrite (N,
6936            Make_Conditional_Expression (Loc,
6937              Expressions => New_List (
6938                Make_Op_Eq (Loc,
6939                  Left_Opnd => Duplicate_Subexpr (Right),
6940                  Right_Opnd =>
6941                    Unchecked_Convert_To (Typ,
6942                      Make_Integer_Literal (Loc, -1))),
6943
6944                Unchecked_Convert_To (Typ,
6945                  Make_Integer_Literal (Loc, Uint_0)),
6946
6947                Relocate_Node (N))));
6948
6949          Set_Analyzed (Next (Next (First (Expressions (N)))));
6950          Analyze_And_Resolve (N, Typ);
6951       end if;
6952    end Expand_N_Op_Rem;
6953
6954    -----------------------------
6955    -- Expand_N_Op_Rotate_Left --
6956    -----------------------------
6957
6958    procedure Expand_N_Op_Rotate_Left (N : Node_Id) is
6959    begin
6960       Binary_Op_Validity_Checks (N);
6961    end Expand_N_Op_Rotate_Left;
6962
6963    ------------------------------
6964    -- Expand_N_Op_Rotate_Right --
6965    ------------------------------
6966
6967    procedure Expand_N_Op_Rotate_Right (N : Node_Id) is
6968    begin
6969       Binary_Op_Validity_Checks (N);
6970    end Expand_N_Op_Rotate_Right;
6971
6972    ----------------------------
6973    -- Expand_N_Op_Shift_Left --
6974    ----------------------------
6975
6976    procedure Expand_N_Op_Shift_Left (N : Node_Id) is
6977    begin
6978       Binary_Op_Validity_Checks (N);
6979    end Expand_N_Op_Shift_Left;
6980
6981    -----------------------------
6982    -- Expand_N_Op_Shift_Right --
6983    -----------------------------
6984
6985    procedure Expand_N_Op_Shift_Right (N : Node_Id) is
6986    begin
6987       Binary_Op_Validity_Checks (N);
6988    end Expand_N_Op_Shift_Right;
6989
6990    ----------------------------------------
6991    -- Expand_N_Op_Shift_Right_Arithmetic --
6992    ----------------------------------------
6993
6994    procedure Expand_N_Op_Shift_Right_Arithmetic (N : Node_Id) is
6995    begin
6996       Binary_Op_Validity_Checks (N);
6997    end Expand_N_Op_Shift_Right_Arithmetic;
6998
6999    --------------------------
7000    -- Expand_N_Op_Subtract --
7001    --------------------------
7002
7003    procedure Expand_N_Op_Subtract (N : Node_Id) is
7004       Typ : constant Entity_Id := Etype (N);
7005
7006    begin
7007       Binary_Op_Validity_Checks (N);
7008
7009       --  N - 0 = N for integer types
7010
7011       if Is_Integer_Type (Typ)
7012         and then Compile_Time_Known_Value (Right_Opnd (N))
7013         and then Expr_Value (Right_Opnd (N)) = 0
7014       then
7015          Rewrite (N, Left_Opnd (N));
7016          return;
7017       end if;
7018
7019       --  Arithmetic overflow checks for signed integer/fixed point types
7020
7021       if Is_Signed_Integer_Type (Typ)
7022         or else Is_Fixed_Point_Type (Typ)
7023       then
7024          Apply_Arithmetic_Overflow_Check (N);
7025
7026       --  Vax floating-point types case
7027
7028       elsif Vax_Float (Typ) then
7029          Expand_Vax_Arith (N);
7030       end if;
7031    end Expand_N_Op_Subtract;
7032
7033    ---------------------
7034    -- Expand_N_Op_Xor --
7035    ---------------------
7036
7037    procedure Expand_N_Op_Xor (N : Node_Id) is
7038       Typ : constant Entity_Id := Etype (N);
7039
7040    begin
7041       Binary_Op_Validity_Checks (N);
7042
7043       if Is_Array_Type (Etype (N)) then
7044          Expand_Boolean_Operator (N);
7045
7046       elsif Is_Boolean_Type (Etype (N)) then
7047          Adjust_Condition (Left_Opnd (N));
7048          Adjust_Condition (Right_Opnd (N));
7049          Set_Etype (N, Standard_Boolean);
7050          Adjust_Result_Type (N, Typ);
7051       end if;
7052    end Expand_N_Op_Xor;
7053
7054    ----------------------
7055    -- Expand_N_Or_Else --
7056    ----------------------
7057
7058    --  Expand into conditional expression if Actions present, and also
7059    --  deal with optimizing case of arguments being True or False.
7060
7061    procedure Expand_N_Or_Else (N : Node_Id) is
7062       Loc     : constant Source_Ptr := Sloc (N);
7063       Typ     : constant Entity_Id  := Etype (N);
7064       Left    : constant Node_Id    := Left_Opnd (N);
7065       Right   : constant Node_Id    := Right_Opnd (N);
7066       Actlist : List_Id;
7067
7068    begin
7069       --  Deal with non-standard booleans
7070
7071       if Is_Boolean_Type (Typ) then
7072          Adjust_Condition (Left);
7073          Adjust_Condition (Right);
7074          Set_Etype (N, Standard_Boolean);
7075       end if;
7076
7077       --  Check for cases where left argument is known to be True or False
7078
7079       if Compile_Time_Known_Value (Left) then
7080
7081          --  If left argument is False, change (False or else Right) to Right.
7082          --  Any actions associated with Right will be executed unconditionally
7083          --  and can thus be inserted into the tree unconditionally.
7084
7085          if Expr_Value_E (Left) = Standard_False then
7086             if Present (Actions (N)) then
7087                Insert_Actions (N, Actions (N));
7088             end if;
7089
7090             Rewrite (N, Right);
7091
7092          --  If left argument is True, change (True and then Right) to True. In
7093          --  this case we can forget the actions associated with Right, since
7094          --  they will never be executed.
7095
7096          else pragma Assert (Expr_Value_E (Left) = Standard_True);
7097             Kill_Dead_Code (Right);
7098             Kill_Dead_Code (Actions (N));
7099             Rewrite (N, New_Occurrence_Of (Standard_True, Loc));
7100          end if;
7101
7102          Adjust_Result_Type (N, Typ);
7103          return;
7104       end if;
7105
7106       --  If Actions are present, we expand
7107
7108       --     left or else right
7109
7110       --  into
7111
7112       --     if left then True else right end
7113
7114       --  with the actions becoming the Else_Actions of the conditional
7115       --  expression. This conditional expression is then further expanded
7116       --  (and will eventually disappear)
7117
7118       if Present (Actions (N)) then
7119          Actlist := Actions (N);
7120          Rewrite (N,
7121             Make_Conditional_Expression (Loc,
7122               Expressions => New_List (
7123                 Left,
7124                 New_Occurrence_Of (Standard_True, Loc),
7125                 Right)));
7126
7127          Set_Else_Actions (N, Actlist);
7128          Analyze_And_Resolve (N, Standard_Boolean);
7129          Adjust_Result_Type (N, Typ);
7130          return;
7131       end if;
7132
7133       --  No actions present, check for cases of right argument True/False
7134
7135       if Compile_Time_Known_Value (Right) then
7136
7137          --  Change (Left or else False) to Left. Note that we know there are
7138          --  no actions associated with the True operand, since we just checked
7139          --  for this case above.
7140
7141          if Expr_Value_E (Right) = Standard_False then
7142             Rewrite (N, Left);
7143
7144          --  Change (Left or else True) to True, making sure to preserve any
7145          --  side effects associated with the Left operand.
7146
7147          else pragma Assert (Expr_Value_E (Right) = Standard_True);
7148             Remove_Side_Effects (Left);
7149             Rewrite
7150               (N, New_Occurrence_Of (Standard_True, Loc));
7151          end if;
7152       end if;
7153
7154       Adjust_Result_Type (N, Typ);
7155    end Expand_N_Or_Else;
7156
7157    -----------------------------------
7158    -- Expand_N_Qualified_Expression --
7159    -----------------------------------
7160
7161    procedure Expand_N_Qualified_Expression (N : Node_Id) is
7162       Operand     : constant Node_Id   := Expression (N);
7163       Target_Type : constant Entity_Id := Entity (Subtype_Mark (N));
7164
7165    begin
7166       --  Do validity check if validity checking operands
7167
7168       if Validity_Checks_On
7169         and then Validity_Check_Operands
7170       then
7171          Ensure_Valid (Operand);
7172       end if;
7173
7174       --  Apply possible constraint check
7175
7176       Apply_Constraint_Check (Operand, Target_Type, No_Sliding => True);
7177
7178       if Do_Range_Check (Operand) then
7179          Set_Do_Range_Check (Operand, False);
7180          Generate_Range_Check (Operand, Target_Type, CE_Range_Check_Failed);
7181       end if;
7182    end Expand_N_Qualified_Expression;
7183
7184    ---------------------------------
7185    -- Expand_N_Selected_Component --
7186    ---------------------------------
7187
7188    --  If the selector is a discriminant of a concurrent object, rewrite the
7189    --  prefix to denote the corresponding record type.
7190
7191    procedure Expand_N_Selected_Component (N : Node_Id) is
7192       Loc   : constant Source_Ptr := Sloc (N);
7193       Par   : constant Node_Id    := Parent (N);
7194       P     : constant Node_Id    := Prefix (N);
7195       Ptyp  : Entity_Id           := Underlying_Type (Etype (P));
7196       Disc  : Entity_Id;
7197       New_N : Node_Id;
7198       Dcon  : Elmt_Id;
7199
7200       function In_Left_Hand_Side (Comp : Node_Id) return Boolean;
7201       --  Gigi needs a temporary for prefixes that depend on a discriminant,
7202       --  unless the context of an assignment can provide size information.
7203       --  Don't we have a general routine that does this???
7204
7205       -----------------------
7206       -- In_Left_Hand_Side --
7207       -----------------------
7208
7209       function In_Left_Hand_Side (Comp : Node_Id) return Boolean is
7210       begin
7211          return (Nkind (Parent (Comp)) = N_Assignment_Statement
7212                    and then Comp = Name (Parent (Comp)))
7213            or else (Present (Parent (Comp))
7214                       and then Nkind (Parent (Comp)) in N_Subexpr
7215                       and then In_Left_Hand_Side (Parent (Comp)));
7216       end In_Left_Hand_Side;
7217
7218    --  Start of processing for Expand_N_Selected_Component
7219
7220    begin
7221       --  Insert explicit dereference if required
7222
7223       if Is_Access_Type (Ptyp) then
7224          Insert_Explicit_Dereference (P);
7225          Analyze_And_Resolve (P, Designated_Type (Ptyp));
7226
7227          if Ekind (Etype (P)) = E_Private_Subtype
7228            and then Is_For_Access_Subtype (Etype (P))
7229          then
7230             Set_Etype (P, Base_Type (Etype (P)));
7231          end if;
7232
7233          Ptyp := Etype (P);
7234       end if;
7235
7236       --  Deal with discriminant check required
7237
7238       if Do_Discriminant_Check (N) then
7239
7240          --  Present the discriminant checking function to the backend, so that
7241          --  it can inline the call to the function.
7242
7243          Add_Inlined_Body
7244            (Discriminant_Checking_Func
7245              (Original_Record_Component (Entity (Selector_Name (N)))));
7246
7247          --  Now reset the flag and generate the call
7248
7249          Set_Do_Discriminant_Check (N, False);
7250          Generate_Discriminant_Check (N);
7251       end if;
7252
7253       --  Ada 2005 (AI-318-02): If the prefix is a call to a build-in-place
7254       --  function, then additional actuals must be passed.
7255
7256       if Ada_Version >= Ada_05
7257         and then Is_Build_In_Place_Function_Call (P)
7258       then
7259          Make_Build_In_Place_Call_In_Anonymous_Context (P);
7260       end if;
7261
7262       --  Gigi cannot handle unchecked conversions that are the prefix of a
7263       --  selected component with discriminants. This must be checked during
7264       --  expansion, because during analysis the type of the selector is not
7265       --  known at the point the prefix is analyzed. If the conversion is the
7266       --  target of an assignment, then we cannot force the evaluation.
7267
7268       if Nkind (Prefix (N)) = N_Unchecked_Type_Conversion
7269         and then Has_Discriminants (Etype (N))
7270         and then not In_Left_Hand_Side (N)
7271       then
7272          Force_Evaluation (Prefix (N));
7273       end if;
7274
7275       --  Remaining processing applies only if selector is a discriminant
7276
7277       if Ekind (Entity (Selector_Name (N))) = E_Discriminant then
7278
7279          --  If the selector is a discriminant of a constrained record type,
7280          --  we may be able to rewrite the expression with the actual value
7281          --  of the discriminant, a useful optimization in some cases.
7282
7283          if Is_Record_Type (Ptyp)
7284            and then Has_Discriminants (Ptyp)
7285            and then Is_Constrained (Ptyp)
7286          then
7287             --  Do this optimization for discrete types only, and not for
7288             --  access types (access discriminants get us into trouble!)
7289
7290             if not Is_Discrete_Type (Etype (N)) then
7291                null;
7292
7293             --  Don't do this on the left hand of an assignment statement.
7294             --  Normally one would think that references like this would
7295             --  not occur, but they do in generated code, and mean that
7296             --  we really do want to assign the discriminant!
7297
7298             elsif Nkind (Par) = N_Assignment_Statement
7299               and then Name (Par) = N
7300             then
7301                null;
7302
7303             --  Don't do this optimization for the prefix of an attribute or
7304             --  the operand of an object renaming declaration since these are
7305             --  contexts where we do not want the value anyway.
7306
7307             elsif (Nkind (Par) = N_Attribute_Reference
7308                      and then Prefix (Par) = N)
7309               or else Is_Renamed_Object (N)
7310             then
7311                null;
7312
7313             --  Don't do this optimization if we are within the code for a
7314             --  discriminant check, since the whole point of such a check may
7315             --  be to verify the condition on which the code below depends!
7316
7317             elsif Is_In_Discriminant_Check (N) then
7318                null;
7319
7320             --  Green light to see if we can do the optimization. There is
7321             --  still one condition that inhibits the optimization below but
7322             --  now is the time to check the particular discriminant.
7323
7324             else
7325                --  Loop through discriminants to find the matching discriminant
7326                --  constraint to see if we can copy it.
7327
7328                Disc := First_Discriminant (Ptyp);
7329                Dcon := First_Elmt (Discriminant_Constraint (Ptyp));
7330                Discr_Loop : while Present (Dcon) loop
7331
7332                   --  Check if this is the matching discriminant
7333
7334                   if Disc = Entity (Selector_Name (N)) then
7335
7336                      --  Here we have the matching discriminant. Check for
7337                      --  the case of a discriminant of a component that is
7338                      --  constrained by an outer discriminant, which cannot
7339                      --  be optimized away.
7340
7341                      if
7342                        Denotes_Discriminant
7343                         (Node (Dcon), Check_Concurrent => True)
7344                      then
7345                         exit Discr_Loop;
7346
7347                      --  In the context of a case statement, the expression may
7348                      --  have the base type of the discriminant, and we need to
7349                      --  preserve the constraint to avoid spurious errors on
7350                      --  missing cases.
7351
7352                      elsif Nkind (Parent (N)) = N_Case_Statement
7353                        and then Etype (Node (Dcon)) /= Etype (Disc)
7354                      then
7355                         Rewrite (N,
7356                           Make_Qualified_Expression (Loc,
7357                             Subtype_Mark =>
7358                               New_Occurrence_Of (Etype (Disc), Loc),
7359                             Expression   =>
7360                               New_Copy_Tree (Node (Dcon))));
7361                         Analyze_And_Resolve (N, Etype (Disc));
7362
7363                         --  In case that comes out as a static expression,
7364                         --  reset it (a selected component is never static).
7365
7366                         Set_Is_Static_Expression (N, False);
7367                         return;
7368
7369                      --  Otherwise we can just copy the constraint, but the
7370                      --  result is certainly not static! In some cases the
7371                      --  discriminant constraint has been analyzed in the
7372                      --  context of the original subtype indication, but for
7373                      --  itypes the constraint might not have been analyzed
7374                      --  yet, and this must be done now.
7375
7376                      else
7377                         Rewrite (N, New_Copy_Tree (Node (Dcon)));
7378                         Analyze_And_Resolve (N);
7379                         Set_Is_Static_Expression (N, False);
7380                         return;
7381                      end if;
7382                   end if;
7383
7384                   Next_Elmt (Dcon);
7385                   Next_Discriminant (Disc);
7386                end loop Discr_Loop;
7387
7388                --  Note: the above loop should always find a matching
7389                --  discriminant, but if it does not, we just missed an
7390                --  optimization due to some glitch (perhaps a previous error),
7391                --  so ignore.
7392
7393             end if;
7394          end if;
7395
7396          --  The only remaining processing is in the case of a discriminant of
7397          --  a concurrent object, where we rewrite the prefix to denote the
7398          --  corresponding record type. If the type is derived and has renamed
7399          --  discriminants, use corresponding discriminant, which is the one
7400          --  that appears in the corresponding record.
7401
7402          if not Is_Concurrent_Type (Ptyp) then
7403             return;
7404          end if;
7405
7406          Disc := Entity (Selector_Name (N));
7407
7408          if Is_Derived_Type (Ptyp)
7409            and then Present (Corresponding_Discriminant (Disc))
7410          then
7411             Disc := Corresponding_Discriminant (Disc);
7412          end if;
7413
7414          New_N :=
7415            Make_Selected_Component (Loc,
7416              Prefix =>
7417                Unchecked_Convert_To (Corresponding_Record_Type (Ptyp),
7418                  New_Copy_Tree (P)),
7419              Selector_Name => Make_Identifier (Loc, Chars (Disc)));
7420
7421          Rewrite (N, New_N);
7422          Analyze (N);
7423       end if;
7424    end Expand_N_Selected_Component;
7425
7426    --------------------
7427    -- Expand_N_Slice --
7428    --------------------
7429
7430    procedure Expand_N_Slice (N : Node_Id) is
7431       Loc  : constant Source_Ptr := Sloc (N);
7432       Typ  : constant Entity_Id  := Etype (N);
7433       Pfx  : constant Node_Id    := Prefix (N);
7434       Ptp  : Entity_Id           := Etype (Pfx);
7435
7436       function Is_Procedure_Actual (N : Node_Id) return Boolean;
7437       --  Check whether the argument is an actual for a procedure call, in
7438       --  which case the expansion of a bit-packed slice is deferred until the
7439       --  call itself is expanded. The reason this is required is that we might
7440       --  have an IN OUT or OUT parameter, and the copy out is essential, and
7441       --  that copy out would be missed if we created a temporary here in
7442       --  Expand_N_Slice. Note that we don't bother to test specifically for an
7443       --  IN OUT or OUT mode parameter, since it is a bit tricky to do, and it
7444       --  is harmless to defer expansion in the IN case, since the call
7445       --  processing will still generate the appropriate copy in operation,
7446       --  which will take care of the slice.
7447
7448       procedure Make_Temporary;
7449       --  Create a named variable for the value of the slice, in cases where
7450       --  the back-end cannot handle it properly, e.g. when packed types or
7451       --  unaligned slices are involved.
7452
7453       -------------------------
7454       -- Is_Procedure_Actual --
7455       -------------------------
7456
7457       function Is_Procedure_Actual (N : Node_Id) return Boolean is
7458          Par : Node_Id := Parent (N);
7459
7460       begin
7461          loop
7462             --  If our parent is a procedure call we can return
7463
7464             if Nkind (Par) = N_Procedure_Call_Statement then
7465                return True;
7466
7467             --  If our parent is a type conversion, keep climbing the tree,
7468             --  since a type conversion can be a procedure actual. Also keep
7469             --  climbing if parameter association or a qualified expression,
7470             --  since these are additional cases that do can appear on
7471             --  procedure actuals.
7472
7473             elsif Nkind_In (Par, N_Type_Conversion,
7474                                  N_Parameter_Association,
7475                                  N_Qualified_Expression)
7476             then
7477                Par := Parent (Par);
7478
7479                --  Any other case is not what we are looking for
7480
7481             else
7482                return False;
7483             end if;
7484          end loop;
7485       end Is_Procedure_Actual;
7486
7487       --------------------
7488       -- Make_Temporary --
7489       --------------------
7490
7491       procedure Make_Temporary is
7492          Decl : Node_Id;
7493          Ent  : constant Entity_Id :=
7494                   Make_Defining_Identifier (Loc, New_Internal_Name ('T'));
7495       begin
7496          Decl :=
7497            Make_Object_Declaration (Loc,
7498              Defining_Identifier => Ent,
7499              Object_Definition   => New_Occurrence_Of (Typ, Loc));
7500
7501          Set_No_Initialization (Decl);
7502
7503          Insert_Actions (N, New_List (
7504            Decl,
7505            Make_Assignment_Statement (Loc,
7506              Name => New_Occurrence_Of (Ent, Loc),
7507              Expression => Relocate_Node (N))));
7508
7509          Rewrite (N, New_Occurrence_Of (Ent, Loc));
7510          Analyze_And_Resolve (N, Typ);
7511       end Make_Temporary;
7512
7513    --  Start of processing for Expand_N_Slice
7514
7515    begin
7516       --  Special handling for access types
7517
7518       if Is_Access_Type (Ptp) then
7519
7520          Ptp := Designated_Type (Ptp);
7521
7522          Rewrite (Pfx,
7523            Make_Explicit_Dereference (Sloc (N),
7524             Prefix => Relocate_Node (Pfx)));
7525
7526          Analyze_And_Resolve (Pfx, Ptp);
7527       end if;
7528
7529       --  Ada 2005 (AI-318-02): If the prefix is a call to a build-in-place
7530       --  function, then additional actuals must be passed.
7531
7532       if Ada_Version >= Ada_05
7533         and then Is_Build_In_Place_Function_Call (Pfx)
7534       then
7535          Make_Build_In_Place_Call_In_Anonymous_Context (Pfx);
7536       end if;
7537
7538       --  The remaining case to be handled is packed slices. We can leave
7539       --  packed slices as they are in the following situations:
7540
7541       --    1. Right or left side of an assignment (we can handle this
7542       --       situation correctly in the assignment statement expansion).
7543
7544       --    2. Prefix of indexed component (the slide is optimized away in this
7545       --       case, see the start of Expand_N_Slice.)
7546
7547       --    3. Object renaming declaration, since we want the name of the
7548       --       slice, not the value.
7549
7550       --    4. Argument to procedure call, since copy-in/copy-out handling may
7551       --       be required, and this is handled in the expansion of call
7552       --       itself.
7553
7554       --    5. Prefix of an address attribute (this is an error which is caught
7555       --       elsewhere, and the expansion would interfere with generating the
7556       --       error message).
7557
7558       if not Is_Packed (Typ) then
7559
7560          --  Apply transformation for actuals of a function call, where
7561          --  Expand_Actuals is not used.
7562
7563          if Nkind (Parent (N)) = N_Function_Call
7564            and then Is_Possibly_Unaligned_Slice (N)
7565          then
7566             Make_Temporary;
7567          end if;
7568
7569       elsif Nkind (Parent (N)) = N_Assignment_Statement
7570         or else (Nkind (Parent (Parent (N))) = N_Assignment_Statement
7571                    and then Parent (N) = Name (Parent (Parent (N))))
7572       then
7573          return;
7574
7575       elsif Nkind (Parent (N)) = N_Indexed_Component
7576         or else Is_Renamed_Object (N)
7577         or else Is_Procedure_Actual (N)
7578       then
7579          return;
7580
7581       elsif Nkind (Parent (N)) = N_Attribute_Reference
7582         and then Attribute_Name (Parent (N)) = Name_Address
7583       then
7584          return;
7585
7586       else
7587          Make_Temporary;
7588       end if;
7589    end Expand_N_Slice;
7590
7591    ------------------------------
7592    -- Expand_N_Type_Conversion --
7593    ------------------------------
7594
7595    procedure Expand_N_Type_Conversion (N : Node_Id) is
7596       Loc          : constant Source_Ptr := Sloc (N);
7597       Operand      : constant Node_Id    := Expression (N);
7598       Target_Type  : constant Entity_Id  := Etype (N);
7599       Operand_Type : Entity_Id           := Etype (Operand);
7600
7601       procedure Handle_Changed_Representation;
7602       --  This is called in the case of record and array type conversions to
7603       --  see if there is a change of representation to be handled. Change of
7604       --  representation is actually handled at the assignment statement level,
7605       --  and what this procedure does is rewrite node N conversion as an
7606       --  assignment to temporary. If there is no change of representation,
7607       --  then the conversion node is unchanged.
7608
7609       procedure Raise_Accessibility_Error;
7610       --  Called when we know that an accessibility check will fail. Rewrites
7611       --  node N to an appropriate raise statement and outputs warning msgs.
7612       --  The Etype of the raise node is set to Target_Type.
7613
7614       procedure Real_Range_Check;
7615       --  Handles generation of range check for real target value
7616
7617       -----------------------------------
7618       -- Handle_Changed_Representation --
7619       -----------------------------------
7620
7621       procedure Handle_Changed_Representation is
7622          Temp : Entity_Id;
7623          Decl : Node_Id;
7624          Odef : Node_Id;
7625          Disc : Node_Id;
7626          N_Ix : Node_Id;
7627          Cons : List_Id;
7628
7629       begin
7630
7631          --  Nothing else to do if no change of representation
7632
7633          if Same_Representation (Operand_Type, Target_Type) then
7634             return;
7635
7636          --  The real change of representation work is done by the assignment
7637          --  statement processing. So if this type conversion is appearing as
7638          --  the expression of an assignment statement, nothing needs to be
7639          --  done to the conversion.
7640
7641          elsif Nkind (Parent (N)) = N_Assignment_Statement then
7642             return;
7643
7644          --  Otherwise we need to generate a temporary variable, and do the
7645          --  change of representation assignment into that temporary variable.
7646          --  The conversion is then replaced by a reference to this variable.
7647
7648          else
7649             Cons := No_List;
7650
7651             --  If type is unconstrained we have to add a constraint, copied
7652             --  from the actual value of the left hand side.
7653
7654             if not Is_Constrained (Target_Type) then
7655                if Has_Discriminants (Operand_Type) then
7656                   Disc := First_Discriminant (Operand_Type);
7657
7658                   if Disc /= First_Stored_Discriminant (Operand_Type) then
7659                      Disc := First_Stored_Discriminant (Operand_Type);
7660                   end if;
7661
7662                   Cons := New_List;
7663                   while Present (Disc) loop
7664                      Append_To (Cons,
7665                        Make_Selected_Component (Loc,
7666                          Prefix => Duplicate_Subexpr_Move_Checks (Operand),
7667                          Selector_Name =>
7668                            Make_Identifier (Loc, Chars (Disc))));
7669                      Next_Discriminant (Disc);
7670                   end loop;
7671
7672                elsif Is_Array_Type (Operand_Type) then
7673                   N_Ix := First_Index (Target_Type);
7674                   Cons := New_List;
7675
7676                   for J in 1 .. Number_Dimensions (Operand_Type) loop
7677
7678                      --  We convert the bounds explicitly. We use an unchecked
7679                      --  conversion because bounds checks are done elsewhere.
7680
7681                      Append_To (Cons,
7682                        Make_Range (Loc,
7683                          Low_Bound =>
7684                            Unchecked_Convert_To (Etype (N_Ix),
7685                              Make_Attribute_Reference (Loc,
7686                                Prefix =>
7687                                  Duplicate_Subexpr_No_Checks
7688                                    (Operand, Name_Req => True),
7689                                Attribute_Name => Name_First,
7690                                Expressions    => New_List (
7691                                  Make_Integer_Literal (Loc, J)))),
7692
7693                          High_Bound =>
7694                            Unchecked_Convert_To (Etype (N_Ix),
7695                              Make_Attribute_Reference (Loc,
7696                                Prefix =>
7697                                  Duplicate_Subexpr_No_Checks
7698                                    (Operand, Name_Req => True),
7699                                Attribute_Name => Name_Last,
7700                                Expressions    => New_List (
7701                                  Make_Integer_Literal (Loc, J))))));
7702
7703                      Next_Index (N_Ix);
7704                   end loop;
7705                end if;
7706             end if;
7707
7708             Odef := New_Occurrence_Of (Target_Type, Loc);
7709
7710             if Present (Cons) then
7711                Odef :=
7712                  Make_Subtype_Indication (Loc,
7713                    Subtype_Mark => Odef,
7714                    Constraint =>
7715                      Make_Index_Or_Discriminant_Constraint (Loc,
7716                        Constraints => Cons));
7717             end if;
7718
7719             Temp := Make_Defining_Identifier (Loc, New_Internal_Name ('C'));
7720             Decl :=
7721               Make_Object_Declaration (Loc,
7722                 Defining_Identifier => Temp,
7723                 Object_Definition   => Odef);
7724
7725             Set_No_Initialization (Decl, True);
7726
7727             --  Insert required actions. It is essential to suppress checks
7728             --  since we have suppressed default initialization, which means
7729             --  that the variable we create may have no discriminants.
7730
7731             Insert_Actions (N,
7732               New_List (
7733                 Decl,
7734                 Make_Assignment_Statement (Loc,
7735                   Name => New_Occurrence_Of (Temp, Loc),
7736                   Expression => Relocate_Node (N))),
7737                 Suppress => All_Checks);
7738
7739             Rewrite (N, New_Occurrence_Of (Temp, Loc));
7740             return;
7741          end if;
7742       end Handle_Changed_Representation;
7743
7744       -------------------------------
7745       -- Raise_Accessibility_Error --
7746       -------------------------------
7747
7748       procedure Raise_Accessibility_Error is
7749       begin
7750          Rewrite (N,
7751            Make_Raise_Program_Error (Sloc (N),
7752              Reason => PE_Accessibility_Check_Failed));
7753          Set_Etype (N, Target_Type);
7754
7755          Error_Msg_N ("?accessibility check failure", N);
7756          Error_Msg_NE
7757            ("\?& will be raised at run time", N, Standard_Program_Error);
7758       end Raise_Accessibility_Error;
7759
7760       ----------------------
7761       -- Real_Range_Check --
7762       ----------------------
7763
7764       --  Case of conversions to floating-point or fixed-point. If range checks
7765       --  are enabled and the target type has a range constraint, we convert:
7766
7767       --     typ (x)
7768
7769       --       to
7770
7771       --     Tnn : typ'Base := typ'Base (x);
7772       --     [constraint_error when Tnn < typ'First or else Tnn > typ'Last]
7773       --     Tnn
7774
7775       --  This is necessary when there is a conversion of integer to float or
7776       --  to fixed-point to ensure that the correct checks are made. It is not
7777       --  necessary for float to float where it is enough to simply set the
7778       --  Do_Range_Check flag.
7779
7780       procedure Real_Range_Check is
7781          Btyp : constant Entity_Id := Base_Type (Target_Type);
7782          Lo   : constant Node_Id   := Type_Low_Bound  (Target_Type);
7783          Hi   : constant Node_Id   := Type_High_Bound (Target_Type);
7784          Xtyp : constant Entity_Id := Etype (Operand);
7785          Conv : Node_Id;
7786          Tnn  : Entity_Id;
7787
7788       begin
7789          --  Nothing to do if conversion was rewritten
7790
7791          if Nkind (N) /= N_Type_Conversion then
7792             return;
7793          end if;
7794
7795          --  Nothing to do if range checks suppressed, or target has the same
7796          --  range as the base type (or is the base type).
7797
7798          if Range_Checks_Suppressed (Target_Type)
7799            or else (Lo = Type_Low_Bound (Btyp)
7800                       and then
7801                     Hi = Type_High_Bound (Btyp))
7802          then
7803             return;
7804          end if;
7805
7806          --  Nothing to do if expression is an entity on which checks have been
7807          --  suppressed.
7808
7809          if Is_Entity_Name (Operand)
7810            and then Range_Checks_Suppressed (Entity (Operand))
7811          then
7812             return;
7813          end if;
7814
7815          --  Nothing to do if bounds are all static and we can tell that the
7816          --  expression is within the bounds of the target. Note that if the
7817          --  operand is of an unconstrained floating-point type, then we do
7818          --  not trust it to be in range (might be infinite)
7819
7820          declare
7821             S_Lo : constant Node_Id := Type_Low_Bound (Xtyp);
7822             S_Hi : constant Node_Id := Type_High_Bound (Xtyp);
7823
7824          begin
7825             if (not Is_Floating_Point_Type (Xtyp)
7826                  or else Is_Constrained (Xtyp))
7827               and then Compile_Time_Known_Value (S_Lo)
7828               and then Compile_Time_Known_Value (S_Hi)
7829               and then Compile_Time_Known_Value (Hi)
7830               and then Compile_Time_Known_Value (Lo)
7831             then
7832                declare
7833                   D_Lov : constant Ureal := Expr_Value_R (Lo);
7834                   D_Hiv : constant Ureal := Expr_Value_R (Hi);
7835                   S_Lov : Ureal;
7836                   S_Hiv : Ureal;
7837
7838                begin
7839                   if Is_Real_Type (Xtyp) then
7840                      S_Lov := Expr_Value_R (S_Lo);
7841                      S_Hiv := Expr_Value_R (S_Hi);
7842                   else
7843                      S_Lov := UR_From_Uint (Expr_Value (S_Lo));
7844                      S_Hiv := UR_From_Uint (Expr_Value (S_Hi));
7845                   end if;
7846
7847                   if D_Hiv > D_Lov
7848                     and then S_Lov >= D_Lov
7849                     and then S_Hiv <= D_Hiv
7850                   then
7851                      Set_Do_Range_Check (Operand, False);
7852                      return;
7853                   end if;
7854                end;
7855             end if;
7856          end;
7857
7858          --  For float to float conversions, we are done
7859
7860          if Is_Floating_Point_Type (Xtyp)
7861               and then
7862             Is_Floating_Point_Type (Btyp)
7863          then
7864             return;
7865          end if;
7866
7867          --  Otherwise rewrite the conversion as described above
7868
7869          Conv := Relocate_Node (N);
7870          Rewrite (Subtype_Mark (Conv), New_Occurrence_Of (Btyp, Loc));
7871          Set_Etype (Conv, Btyp);
7872
7873          --  Enable overflow except for case of integer to float conversions,
7874          --  where it is never required, since we can never have overflow in
7875          --  this case.
7876
7877          if not Is_Integer_Type (Etype (Operand)) then
7878             Enable_Overflow_Check (Conv);
7879          end if;
7880
7881          Tnn :=
7882            Make_Defining_Identifier (Loc,
7883              Chars => New_Internal_Name ('T'));
7884
7885          Insert_Actions (N, New_List (
7886            Make_Object_Declaration (Loc,
7887              Defining_Identifier => Tnn,
7888              Object_Definition   => New_Occurrence_Of (Btyp, Loc),
7889              Expression => Conv),
7890
7891            Make_Raise_Constraint_Error (Loc,
7892              Condition =>
7893               Make_Or_Else (Loc,
7894                 Left_Opnd =>
7895                   Make_Op_Lt (Loc,
7896                     Left_Opnd  => New_Occurrence_Of (Tnn, Loc),
7897                     Right_Opnd =>
7898                       Make_Attribute_Reference (Loc,
7899                         Attribute_Name => Name_First,
7900                         Prefix =>
7901                           New_Occurrence_Of (Target_Type, Loc))),
7902
7903                 Right_Opnd =>
7904                   Make_Op_Gt (Loc,
7905                     Left_Opnd  => New_Occurrence_Of (Tnn, Loc),
7906                     Right_Opnd =>
7907                       Make_Attribute_Reference (Loc,
7908                         Attribute_Name => Name_Last,
7909                         Prefix =>
7910                           New_Occurrence_Of (Target_Type, Loc)))),
7911              Reason => CE_Range_Check_Failed)));
7912
7913          Rewrite (N, New_Occurrence_Of (Tnn, Loc));
7914          Analyze_And_Resolve (N, Btyp);
7915       end Real_Range_Check;
7916
7917    --  Start of processing for Expand_N_Type_Conversion
7918
7919    begin
7920       --  Nothing at all to do if conversion is to the identical type so remove
7921       --  the conversion completely, it is useless, except that it may carry
7922       --  an Assignment_OK attribute, which must be propagated to the operand.
7923
7924       if Operand_Type = Target_Type then
7925          if Assignment_OK (N) then
7926             Set_Assignment_OK (Operand);
7927          end if;
7928
7929          Rewrite (N, Relocate_Node (Operand));
7930          return;
7931       end if;
7932
7933       --  Nothing to do if this is the second argument of read. This is a
7934       --  "backwards" conversion that will be handled by the specialized code
7935       --  in attribute processing.
7936
7937       if Nkind (Parent (N)) = N_Attribute_Reference
7938         and then Attribute_Name (Parent (N)) = Name_Read
7939         and then Next (First (Expressions (Parent (N)))) = N
7940       then
7941          return;
7942       end if;
7943
7944       --  Here if we may need to expand conversion
7945
7946       --  If the operand of the type conversion is an arithmetic operation on
7947       --  signed integers, and the based type of the signed integer type in
7948       --  question is smaller than Standard.Integer, we promote both of the
7949       --  operands to type Integer.
7950
7951       --  For example, if we have
7952
7953       --     target-type (opnd1 + opnd2)
7954
7955       --  and opnd1 and opnd2 are of type short integer, then we rewrite
7956       --  this as:
7957
7958       --     target-type (integer(opnd1) + integer(opnd2))
7959
7960       --  We do this because we are always allowed to compute in a larger type
7961       --  if we do the right thing with the result, and in this case we are
7962       --  going to do a conversion which will do an appropriate check to make
7963       --  sure that things are in range of the target type in any case. This
7964       --  avoids some unnecessary intermediate overflows.
7965
7966       --  We might consider a similar transformation in the case where the
7967       --  target is a real type or a 64-bit integer type, and the operand
7968       --  is an arithmetic operation using a 32-bit integer type. However,
7969       --  we do not bother with this case, because it could cause significant
7970       --  ineffiencies on 32-bit machines. On a 64-bit machine it would be
7971       --  much cheaper, but we don't want different behavior on 32-bit and
7972       --  64-bit machines. Note that the exclusion of the 64-bit case also
7973       --  handles the configurable run-time cases where 64-bit arithmetic
7974       --  may simply be unavailable.
7975
7976       --  Note: this circuit is partially redundant with respect to the circuit
7977       --  in Checks.Apply_Arithmetic_Overflow_Check, but we catch more cases in
7978       --  the processing here. Also we still need the Checks circuit, since we
7979       --  have to be sure not to generate junk overflow checks in the first
7980       --  place, since it would be trick to remove them here!
7981
7982       declare
7983          Root_Operand_Type : constant Entity_Id := Root_Type (Operand_Type);
7984
7985       begin
7986          --  Enable transformation if all conditions are met
7987
7988          if
7989            --  We only do this transformation for source constructs. We assume
7990            --  that the expander knows what it is doing when it generates code.
7991
7992            Comes_From_Source (N)
7993
7994            --  If the operand type is Short_Integer or Short_Short_Integer,
7995            --  then we will promote to Integer, which is available on all
7996            --  targets, and is sufficient to ensure no intermediate overflow.
7997            --  Furthermore it is likely to be as efficient or more efficient
7998            --  than using the smaller type for the computation so we do this
7999            --  unconditionally.
8000
8001            and then
8002              (Root_Operand_Type = Base_Type (Standard_Short_Integer)
8003                or else
8004               Root_Operand_Type = Base_Type (Standard_Short_Short_Integer))
8005
8006            --  Test for interesting operation, which includes addition,
8007            --  division, exponentiation, multiplication, subtraction, and
8008            --  unary negation.
8009
8010            and then Nkind_In (Operand, N_Op_Add,
8011                                        N_Op_Divide,
8012                                        N_Op_Expon,
8013                                        N_Op_Minus,
8014                                        N_Op_Multiply,
8015                                        N_Op_Subtract)
8016          then
8017             --  All conditions met, go ahead with transformation
8018
8019             declare
8020                Opnd : Node_Id;
8021                L, R : Node_Id;
8022
8023             begin
8024                R :=
8025                  Make_Type_Conversion (Loc,
8026                    Subtype_Mark => New_Reference_To (Standard_Integer, Loc),
8027                    Expression   => Relocate_Node (Right_Opnd (Operand)));
8028
8029                if Nkind (Operand) = N_Op_Minus then
8030                   Opnd := Make_Op_Minus (Loc, Right_Opnd => R);
8031
8032                else
8033                   L :=
8034                     Make_Type_Conversion (Loc,
8035                       Subtype_Mark => New_Reference_To (Standard_Integer, Loc),
8036                       Expression   => Relocate_Node (Left_Opnd (Operand)));
8037
8038                   case Nkind (Operand) is
8039                      when N_Op_Add =>
8040                         Opnd := Make_Op_Add (Loc, L, R);
8041                      when N_Op_Divide =>
8042                         Opnd := Make_Op_Divide (Loc, L, R);
8043                      when N_Op_Expon =>
8044                         Opnd := Make_Op_Expon (Loc, L, R);
8045                      when N_Op_Multiply =>
8046                         Opnd := Make_Op_Multiply (Loc, L, R);
8047                      when N_Op_Subtract =>
8048                         Opnd := Make_Op_Subtract (Loc, L, R);
8049                      when others =>
8050                         raise Program_Error;
8051                   end case;
8052
8053                   Rewrite (N,
8054                     Make_Type_Conversion (Loc,
8055                       Subtype_Mark => Relocate_Node (Subtype_Mark (N)),
8056                       Expression   => Opnd));
8057
8058                      Analyze_And_Resolve (N, Target_Type);
8059                      return;
8060                end if;
8061             end;
8062          end if;
8063       end;
8064
8065       --  Do validity check if validity checking operands
8066
8067       if Validity_Checks_On
8068         and then Validity_Check_Operands
8069       then
8070          Ensure_Valid (Operand);
8071       end if;
8072
8073       --  Special case of converting from non-standard boolean type
8074
8075       if Is_Boolean_Type (Operand_Type)
8076         and then (Nonzero_Is_True (Operand_Type))
8077       then
8078          Adjust_Condition (Operand);
8079          Set_Etype (Operand, Standard_Boolean);
8080          Operand_Type := Standard_Boolean;
8081       end if;
8082
8083       --  Case of converting to an access type
8084
8085       if Is_Access_Type (Target_Type) then
8086
8087          --  Apply an accessibility check when the conversion operand is an
8088          --  access parameter (or a renaming thereof), unless conversion was
8089          --  expanded from an Unchecked_ or Unrestricted_Access attribute.
8090          --  Note that other checks may still need to be applied below (such
8091          --  as tagged type checks).
8092
8093          if Is_Entity_Name (Operand)
8094            and then
8095              (Is_Formal (Entity (Operand))
8096                or else
8097                  (Present (Renamed_Object (Entity (Operand)))
8098                    and then Is_Entity_Name (Renamed_Object (Entity (Operand)))
8099                    and then Is_Formal
8100                               (Entity (Renamed_Object (Entity (Operand))))))
8101            and then Ekind (Etype (Operand)) = E_Anonymous_Access_Type
8102            and then (Nkind (Original_Node (N)) /= N_Attribute_Reference
8103                       or else Attribute_Name (Original_Node (N)) = Name_Access)
8104          then
8105             Apply_Accessibility_Check
8106               (Operand, Target_Type, Insert_Node => Operand);
8107
8108          --  If the level of the operand type is statically deeper than the
8109          --  level of the target type, then force Program_Error. Note that this
8110          --  can only occur for cases where the attribute is within the body of
8111          --  an instantiation (otherwise the conversion will already have been
8112          --  rejected as illegal). Note: warnings are issued by the analyzer
8113          --  for the instance cases.
8114
8115          elsif In_Instance_Body
8116            and then Type_Access_Level (Operand_Type) >
8117                     Type_Access_Level (Target_Type)
8118          then
8119             Raise_Accessibility_Error;
8120
8121          --  When the operand is a selected access discriminant the check needs
8122          --  to be made against the level of the object denoted by the prefix
8123          --  of the selected name. Force Program_Error for this case as well
8124          --  (this accessibility violation can only happen if within the body
8125          --  of an instantiation).
8126
8127          elsif In_Instance_Body
8128            and then Ekind (Operand_Type) = E_Anonymous_Access_Type
8129            and then Nkind (Operand) = N_Selected_Component
8130            and then Object_Access_Level (Operand) >
8131                       Type_Access_Level (Target_Type)
8132          then
8133             Raise_Accessibility_Error;
8134             return;
8135          end if;
8136       end if;
8137
8138       --  Case of conversions of tagged types and access to tagged types
8139
8140       --  When needed, that is to say when the expression is class-wide, Add
8141       --  runtime a tag check for (strict) downward conversion by using the
8142       --  membership test, generating:
8143
8144       --      [constraint_error when Operand not in Target_Type'Class]
8145
8146       --  or in the access type case
8147
8148       --      [constraint_error
8149       --        when Operand /= null
8150       --          and then Operand.all not in
8151       --            Designated_Type (Target_Type)'Class]
8152
8153       if (Is_Access_Type (Target_Type)
8154            and then Is_Tagged_Type (Designated_Type (Target_Type)))
8155         or else Is_Tagged_Type (Target_Type)
8156       then
8157          --  Do not do any expansion in the access type case if the parent is a
8158          --  renaming, since this is an error situation which will be caught by
8159          --  Sem_Ch8, and the expansion can interfere with this error check.
8160
8161          if Is_Access_Type (Target_Type)
8162            and then Is_Renamed_Object (N)
8163          then
8164             return;
8165          end if;
8166
8167          --  Otherwise, proceed with processing tagged conversion
8168
8169          declare
8170             Actual_Op_Typ   : Entity_Id;
8171             Actual_Targ_Typ : Entity_Id;
8172             Make_Conversion : Boolean := False;
8173             Root_Op_Typ     : Entity_Id;
8174
8175             procedure Make_Tag_Check (Targ_Typ : Entity_Id);
8176             --  Create a membership check to test whether Operand is a member
8177             --  of Targ_Typ. If the original Target_Type is an access, include
8178             --  a test for null value. The check is inserted at N.
8179
8180             --------------------
8181             -- Make_Tag_Check --
8182             --------------------
8183
8184             procedure Make_Tag_Check (Targ_Typ : Entity_Id) is
8185                Cond : Node_Id;
8186
8187             begin
8188                --  Generate:
8189                --    [Constraint_Error
8190                --       when Operand /= null
8191                --         and then Operand.all not in Targ_Typ]
8192
8193                if Is_Access_Type (Target_Type) then
8194                   Cond :=
8195                     Make_And_Then (Loc,
8196                       Left_Opnd =>
8197                         Make_Op_Ne (Loc,
8198                           Left_Opnd  => Duplicate_Subexpr_No_Checks (Operand),
8199                           Right_Opnd => Make_Null (Loc)),
8200
8201                       Right_Opnd =>
8202                         Make_Not_In (Loc,
8203                           Left_Opnd  =>
8204                             Make_Explicit_Dereference (Loc,
8205                               Prefix => Duplicate_Subexpr_No_Checks (Operand)),
8206                           Right_Opnd => New_Reference_To (Targ_Typ, Loc)));
8207
8208                --  Generate:
8209                --    [Constraint_Error when Operand not in Targ_Typ]
8210
8211                else
8212                   Cond :=
8213                     Make_Not_In (Loc,
8214                       Left_Opnd  => Duplicate_Subexpr_No_Checks (Operand),
8215                       Right_Opnd => New_Reference_To (Targ_Typ, Loc));
8216                end if;
8217
8218                Insert_Action (N,
8219                  Make_Raise_Constraint_Error (Loc,
8220                    Condition => Cond,
8221                    Reason    => CE_Tag_Check_Failed));
8222             end Make_Tag_Check;
8223
8224          --  Start of processing
8225
8226          begin
8227             if Is_Access_Type (Target_Type) then
8228
8229                --  Handle entities from the limited view
8230
8231                Actual_Op_Typ :=
8232                  Available_View (Designated_Type (Operand_Type));
8233                Actual_Targ_Typ :=
8234                  Available_View (Designated_Type (Target_Type));
8235             else
8236                Actual_Op_Typ   := Operand_Type;
8237                Actual_Targ_Typ := Target_Type;
8238             end if;
8239
8240             Root_Op_Typ := Root_Type (Actual_Op_Typ);
8241
8242             --  Ada 2005 (AI-251): Handle interface type conversion
8243
8244             if Is_Interface (Actual_Op_Typ) then
8245                Expand_Interface_Conversion (N, Is_Static => False);
8246                return;
8247             end if;
8248
8249             if not Tag_Checks_Suppressed (Actual_Targ_Typ) then
8250
8251                --  Create a runtime tag check for a downward class-wide type
8252                --  conversion.
8253
8254                if Is_Class_Wide_Type (Actual_Op_Typ)
8255                  and then Actual_Op_Typ /= Actual_Targ_Typ
8256                  and then Root_Op_Typ /= Actual_Targ_Typ
8257                  and then Is_Ancestor (Root_Op_Typ, Actual_Targ_Typ)
8258                then
8259                   Make_Tag_Check (Class_Wide_Type (Actual_Targ_Typ));
8260                   Make_Conversion := True;
8261                end if;
8262
8263                --  AI05-0073: If the result subtype of the function is defined
8264                --  by an access_definition designating a specific tagged type
8265                --  T, a check is made that the result value is null or the tag
8266                --  of the object designated by the result value identifies T.
8267                --  Constraint_Error is raised if this check fails.
8268
8269                if Nkind (Parent (N)) = Sinfo.N_Return_Statement then
8270                   declare
8271                      Func     : Entity_Id;
8272                      Func_Typ : Entity_Id;
8273
8274                   begin
8275                      --  Climb scope stack looking for the enclosing function
8276
8277                      Func := Current_Scope;
8278                      while Present (Func)
8279                        and then Ekind (Func) /= E_Function
8280                      loop
8281                         Func := Scope (Func);
8282                      end loop;
8283
8284                      --  The function's return subtype must be defined using
8285                      --  an access definition.
8286
8287                      if Nkind (Result_Definition (Parent (Func))) =
8288                           N_Access_Definition
8289                      then
8290                         Func_Typ := Directly_Designated_Type (Etype (Func));
8291
8292                         --  The return subtype denotes a specific tagged type,
8293                         --  in other words, a non class-wide type.
8294
8295                         if Is_Tagged_Type (Func_Typ)
8296                           and then not Is_Class_Wide_Type (Func_Typ)
8297                         then
8298                            Make_Tag_Check (Actual_Targ_Typ);
8299                            Make_Conversion := True;
8300                         end if;
8301                      end if;
8302                   end;
8303                end if;
8304
8305                --  We have generated a tag check for either a class-wide type
8306                --  conversion or for AI05-0073.
8307
8308                if Make_Conversion then
8309                   declare
8310                      Conv : Node_Id;
8311                   begin
8312                      Conv :=
8313                        Make_Unchecked_Type_Conversion (Loc,
8314                          Subtype_Mark => New_Occurrence_Of (Target_Type, Loc),
8315                          Expression   => Relocate_Node (Expression (N)));
8316                      Rewrite (N, Conv);
8317                      Analyze_And_Resolve (N, Target_Type);
8318                   end;
8319                end if;
8320             end if;
8321          end;
8322
8323       --  Case of other access type conversions
8324
8325       elsif Is_Access_Type (Target_Type) then
8326          Apply_Constraint_Check (Operand, Target_Type);
8327
8328       --  Case of conversions from a fixed-point type
8329
8330       --  These conversions require special expansion and processing, found in
8331       --  the Exp_Fixd package. We ignore cases where Conversion_OK is set,
8332       --  since from a semantic point of view, these are simple integer
8333       --  conversions, which do not need further processing.
8334
8335       elsif Is_Fixed_Point_Type (Operand_Type)
8336         and then not Conversion_OK (N)
8337       then
8338          --  We should never see universal fixed at this case, since the
8339          --  expansion of the constituent divide or multiply should have
8340          --  eliminated the explicit mention of universal fixed.
8341
8342          pragma Assert (Operand_Type /= Universal_Fixed);
8343
8344          --  Check for special case of the conversion to universal real that
8345          --  occurs as a result of the use of a round attribute. In this case,
8346          --  the real type for the conversion is taken from the target type of
8347          --  the Round attribute and the result must be marked as rounded.
8348
8349          if Target_Type = Universal_Real
8350            and then Nkind (Parent (N)) = N_Attribute_Reference
8351            and then Attribute_Name (Parent (N)) = Name_Round
8352          then
8353             Set_Rounded_Result (N);
8354             Set_Etype (N, Etype (Parent (N)));
8355          end if;
8356
8357          --  Otherwise do correct fixed-conversion, but skip these if the
8358          --  Conversion_OK flag is set, because from a semantic point of
8359          --  view these are simple integer conversions needing no further
8360          --  processing (the backend will simply treat them as integers)
8361
8362          if not Conversion_OK (N) then
8363             if Is_Fixed_Point_Type (Etype (N)) then
8364                Expand_Convert_Fixed_To_Fixed (N);
8365                Real_Range_Check;
8366
8367             elsif Is_Integer_Type (Etype (N)) then
8368                Expand_Convert_Fixed_To_Integer (N);
8369
8370             else
8371                pragma Assert (Is_Floating_Point_Type (Etype (N)));
8372                Expand_Convert_Fixed_To_Float (N);
8373                Real_Range_Check;
8374             end if;
8375          end if;
8376
8377       --  Case of conversions to a fixed-point type
8378
8379       --  These conversions require special expansion and processing, found in
8380       --  the Exp_Fixd package. Again, ignore cases where Conversion_OK is set,
8381       --  since from a semantic point of view, these are simple integer
8382       --  conversions, which do not need further processing.
8383
8384       elsif Is_Fixed_Point_Type (Target_Type)
8385         and then not Conversion_OK (N)
8386       then
8387          if Is_Integer_Type (Operand_Type) then
8388             Expand_Convert_Integer_To_Fixed (N);
8389             Real_Range_Check;
8390          else
8391             pragma Assert (Is_Floating_Point_Type (Operand_Type));
8392             Expand_Convert_Float_To_Fixed (N);
8393             Real_Range_Check;
8394          end if;
8395
8396       --  Case of float-to-integer conversions
8397
8398       --  We also handle float-to-fixed conversions with Conversion_OK set
8399       --  since semantically the fixed-point target is treated as though it
8400       --  were an integer in such cases.
8401
8402       elsif Is_Floating_Point_Type (Operand_Type)
8403         and then
8404           (Is_Integer_Type (Target_Type)
8405             or else
8406           (Is_Fixed_Point_Type (Target_Type) and then Conversion_OK (N)))
8407       then
8408          --  One more check here, gcc is still not able to do conversions of
8409          --  this type with proper overflow checking, and so gigi is doing an
8410          --  approximation of what is required by doing floating-point compares
8411          --  with the end-point. But that can lose precision in some cases, and
8412          --  give a wrong result. Converting the operand to Universal_Real is
8413          --  helpful, but still does not catch all cases with 64-bit integers
8414          --  on targets with only 64-bit floats
8415
8416          --  The above comment seems obsoleted by Apply_Float_Conversion_Check
8417          --  Can this code be removed ???
8418
8419          if Do_Range_Check (Operand) then
8420             Rewrite (Operand,
8421               Make_Type_Conversion (Loc,
8422                 Subtype_Mark =>
8423                   New_Occurrence_Of (Universal_Real, Loc),
8424                 Expression =>
8425                   Relocate_Node (Operand)));
8426
8427             Set_Etype (Operand, Universal_Real);
8428             Enable_Range_Check (Operand);
8429             Set_Do_Range_Check (Expression (Operand), False);
8430          end if;
8431
8432       --  Case of array conversions
8433
8434       --  Expansion of array conversions, add required length/range checks but
8435       --  only do this if there is no change of representation. For handling of
8436       --  this case, see Handle_Changed_Representation.
8437
8438       elsif Is_Array_Type (Target_Type) then
8439
8440          if Is_Constrained (Target_Type) then
8441             Apply_Length_Check (Operand, Target_Type);
8442          else
8443             Apply_Range_Check (Operand, Target_Type);
8444          end if;
8445
8446          Handle_Changed_Representation;
8447
8448       --  Case of conversions of discriminated types
8449
8450       --  Add required discriminant checks if target is constrained. Again this
8451       --  change is skipped if we have a change of representation.
8452
8453       elsif Has_Discriminants (Target_Type)
8454         and then Is_Constrained (Target_Type)
8455       then
8456          Apply_Discriminant_Check (Operand, Target_Type);
8457          Handle_Changed_Representation;
8458
8459       --  Case of all other record conversions. The only processing required
8460       --  is to check for a change of representation requiring the special
8461       --  assignment processing.
8462
8463       elsif Is_Record_Type (Target_Type) then
8464
8465          --  Ada 2005 (AI-216): Program_Error is raised when converting from
8466          --  a derived Unchecked_Union type to an unconstrained type that is
8467          --  not Unchecked_Union if the operand lacks inferable discriminants.
8468
8469          if Is_Derived_Type (Operand_Type)
8470            and then Is_Unchecked_Union (Base_Type (Operand_Type))
8471            and then not Is_Constrained (Target_Type)
8472            and then not Is_Unchecked_Union (Base_Type (Target_Type))
8473            and then not Has_Inferable_Discriminants (Operand)
8474          then
8475             --  To prevent Gigi from generating illegal code, we generate a
8476             --  Program_Error node, but we give it the target type of the
8477             --  conversion.
8478
8479             declare
8480                PE : constant Node_Id := Make_Raise_Program_Error (Loc,
8481                       Reason => PE_Unchecked_Union_Restriction);
8482
8483             begin
8484                Set_Etype (PE, Target_Type);
8485                Rewrite (N, PE);
8486
8487             end;
8488          else
8489             Handle_Changed_Representation;
8490          end if;
8491
8492       --  Case of conversions of enumeration types
8493
8494       elsif Is_Enumeration_Type (Target_Type) then
8495
8496          --  Special processing is required if there is a change of
8497          --  representation (from enumeration representation clauses)
8498
8499          if not Same_Representation (Target_Type, Operand_Type) then
8500
8501             --  Convert: x(y) to x'val (ytyp'val (y))
8502
8503             Rewrite (N,
8504                Make_Attribute_Reference (Loc,
8505                  Prefix => New_Occurrence_Of (Target_Type, Loc),
8506                  Attribute_Name => Name_Val,
8507                  Expressions => New_List (
8508                    Make_Attribute_Reference (Loc,
8509                      Prefix => New_Occurrence_Of (Operand_Type, Loc),
8510                      Attribute_Name => Name_Pos,
8511                      Expressions => New_List (Operand)))));
8512
8513             Analyze_And_Resolve (N, Target_Type);
8514          end if;
8515
8516       --  Case of conversions to floating-point
8517
8518       elsif Is_Floating_Point_Type (Target_Type) then
8519          Real_Range_Check;
8520       end if;
8521
8522       --  At this stage, either the conversion node has been transformed into
8523       --  some other equivalent expression, or left as a conversion that can
8524       --  be handled by Gigi. The conversions that Gigi can handle are the
8525       --  following:
8526
8527       --    Conversions with no change of representation or type
8528
8529       --    Numeric conversions involving integer, floating- and fixed-point
8530       --    values. Fixed-point values are allowed only if Conversion_OK is
8531       --    set, i.e. if the fixed-point values are to be treated as integers.
8532
8533       --  No other conversions should be passed to Gigi
8534
8535       --  Check: are these rules stated in sinfo??? if so, why restate here???
8536
8537       --  The only remaining step is to generate a range check if we still have
8538       --  a type conversion at this stage and Do_Range_Check is set. For now we
8539       --  do this only for conversions of discrete types.
8540
8541       if Nkind (N) = N_Type_Conversion
8542         and then Is_Discrete_Type (Etype (N))
8543       then
8544          declare
8545             Expr : constant Node_Id := Expression (N);
8546             Ftyp : Entity_Id;
8547             Ityp : Entity_Id;
8548
8549          begin
8550             if Do_Range_Check (Expr)
8551               and then Is_Discrete_Type (Etype (Expr))
8552             then
8553                Set_Do_Range_Check (Expr, False);
8554
8555                --  Before we do a range check, we have to deal with treating a
8556                --  fixed-point operand as an integer. The way we do this is
8557                --  simply to do an unchecked conversion to an appropriate
8558                --  integer type large enough to hold the result.
8559
8560                --  This code is not active yet, because we are only dealing
8561                --  with discrete types so far ???
8562
8563                if Nkind (Expr) in N_Has_Treat_Fixed_As_Integer
8564                  and then Treat_Fixed_As_Integer (Expr)
8565                then
8566                   Ftyp := Base_Type (Etype (Expr));
8567
8568                   if Esize (Ftyp) >= Esize (Standard_Integer) then
8569                      Ityp := Standard_Long_Long_Integer;
8570                   else
8571                      Ityp := Standard_Integer;
8572                   end if;
8573
8574                   Rewrite (Expr, Unchecked_Convert_To (Ityp, Expr));
8575                end if;
8576
8577                --  Reset overflow flag, since the range check will include
8578                --  dealing with possible overflow, and generate the check If
8579                --  Address is either a source type or target type, suppress
8580                --  range check to avoid typing anomalies when it is a visible
8581                --  integer type.
8582
8583                Set_Do_Overflow_Check (N, False);
8584                if not Is_Descendent_Of_Address (Etype (Expr))
8585                  and then not Is_Descendent_Of_Address (Target_Type)
8586                then
8587                   Generate_Range_Check
8588                     (Expr, Target_Type, CE_Range_Check_Failed);
8589                end if;
8590             end if;
8591          end;
8592       end if;
8593
8594       --  Final step, if the result is a type conversion involving Vax_Float
8595       --  types, then it is subject for further special processing.
8596
8597       if Nkind (N) = N_Type_Conversion
8598         and then (Vax_Float (Operand_Type) or else Vax_Float (Target_Type))
8599       then
8600          Expand_Vax_Conversion (N);
8601          return;
8602       end if;
8603    end Expand_N_Type_Conversion;
8604
8605    -----------------------------------
8606    -- Expand_N_Unchecked_Expression --
8607    -----------------------------------
8608
8609    --  Remove the unchecked expression node from the tree. It's job was simply
8610    --  to make sure that its constituent expression was handled with checks
8611    --  off, and now that that is done, we can remove it from the tree, and
8612    --  indeed must, since gigi does not expect to see these nodes.
8613
8614    procedure Expand_N_Unchecked_Expression (N : Node_Id) is
8615       Exp : constant Node_Id := Expression (N);
8616
8617    begin
8618       Set_Assignment_OK (Exp, Assignment_OK (N) or Assignment_OK (Exp));
8619       Rewrite (N, Exp);
8620    end Expand_N_Unchecked_Expression;
8621
8622    ----------------------------------------
8623    -- Expand_N_Unchecked_Type_Conversion --
8624    ----------------------------------------
8625
8626    --  If this cannot be handled by Gigi and we haven't already made a
8627    --  temporary for it, do it now.
8628
8629    procedure Expand_N_Unchecked_Type_Conversion (N : Node_Id) is
8630       Target_Type  : constant Entity_Id := Etype (N);
8631       Operand      : constant Node_Id   := Expression (N);
8632       Operand_Type : constant Entity_Id := Etype (Operand);
8633
8634    begin
8635       --  Nothing at all to do if conversion is to the identical type so remove
8636       --  the conversion completely, it is useless, except that it may carry
8637       --  an Assignment_OK indication which must be proprgated to the operand.
8638
8639       if Operand_Type = Target_Type then
8640          if Assignment_OK (N) then
8641             Set_Assignment_OK (Operand);
8642          end if;
8643
8644          Rewrite (N, Relocate_Node (Operand));
8645          return;
8646       end if;
8647
8648       --  If we have a conversion of a compile time known value to a target
8649       --  type and the value is in range of the target type, then we can simply
8650       --  replace the construct by an integer literal of the correct type. We
8651       --  only apply this to integer types being converted. Possibly it may
8652       --  apply in other cases, but it is too much trouble to worry about.
8653
8654       --  Note that we do not do this transformation if the Kill_Range_Check
8655       --  flag is set, since then the value may be outside the expected range.
8656       --  This happens in the Normalize_Scalars case.
8657
8658       --  We also skip this if either the target or operand type is biased
8659       --  because in this case, the unchecked conversion is supposed to
8660       --  preserve the bit pattern, not the integer value.
8661
8662       if Is_Integer_Type (Target_Type)
8663         and then not Has_Biased_Representation (Target_Type)
8664         and then Is_Integer_Type (Operand_Type)
8665         and then not Has_Biased_Representation (Operand_Type)
8666         and then Compile_Time_Known_Value (Operand)
8667         and then not Kill_Range_Check (N)
8668       then
8669          declare
8670             Val : constant Uint := Expr_Value (Operand);
8671
8672          begin
8673             if Compile_Time_Known_Value (Type_Low_Bound (Target_Type))
8674                  and then
8675                Compile_Time_Known_Value (Type_High_Bound (Target_Type))
8676                  and then
8677                Val >= Expr_Value (Type_Low_Bound (Target_Type))
8678                  and then
8679                Val <= Expr_Value (Type_High_Bound (Target_Type))
8680             then
8681                Rewrite (N, Make_Integer_Literal (Sloc (N), Val));
8682
8683                --  If Address is the target type, just set the type to avoid a
8684                --  spurious type error on the literal when Address is a visible
8685                --  integer type.
8686
8687                if Is_Descendent_Of_Address (Target_Type) then
8688                   Set_Etype (N, Target_Type);
8689                else
8690                   Analyze_And_Resolve (N, Target_Type);
8691                end if;
8692
8693                return;
8694             end if;
8695          end;
8696       end if;
8697
8698       --  Nothing to do if conversion is safe
8699
8700       if Safe_Unchecked_Type_Conversion (N) then
8701          return;
8702       end if;
8703
8704       --  Otherwise force evaluation unless Assignment_OK flag is set (this
8705       --  flag indicates ??? -- more comments needed here)
8706
8707       if Assignment_OK (N) then
8708          null;
8709       else
8710          Force_Evaluation (N);
8711       end if;
8712    end Expand_N_Unchecked_Type_Conversion;
8713
8714    ----------------------------
8715    -- Expand_Record_Equality --
8716    ----------------------------
8717
8718    --  For non-variant records, Equality is expanded when needed into:
8719
8720    --      and then Lhs.Discr1 = Rhs.Discr1
8721    --      and then ...
8722    --      and then Lhs.Discrn = Rhs.Discrn
8723    --      and then Lhs.Cmp1 = Rhs.Cmp1
8724    --      and then ...
8725    --      and then Lhs.Cmpn = Rhs.Cmpn
8726
8727    --  The expression is folded by the back-end for adjacent fields. This
8728    --  function is called for tagged record in only one occasion: for imple-
8729    --  menting predefined primitive equality (see Predefined_Primitives_Bodies)
8730    --  otherwise the primitive "=" is used directly.
8731
8732    function Expand_Record_Equality
8733      (Nod    : Node_Id;
8734       Typ    : Entity_Id;
8735       Lhs    : Node_Id;
8736       Rhs    : Node_Id;
8737       Bodies : List_Id) return Node_Id
8738    is
8739       Loc : constant Source_Ptr := Sloc (Nod);
8740
8741       Result : Node_Id;
8742       C      : Entity_Id;
8743
8744       First_Time : Boolean := True;
8745
8746       function Suitable_Element (C : Entity_Id) return Entity_Id;
8747       --  Return the first field to compare beginning with C, skipping the
8748       --  inherited components.
8749
8750       ----------------------
8751       -- Suitable_Element --
8752       ----------------------
8753
8754       function Suitable_Element (C : Entity_Id) return Entity_Id is
8755       begin
8756          if No (C) then
8757             return Empty;
8758
8759          elsif Ekind (C) /= E_Discriminant
8760            and then Ekind (C) /= E_Component
8761          then
8762             return Suitable_Element (Next_Entity (C));
8763
8764          elsif Is_Tagged_Type (Typ)
8765            and then C /= Original_Record_Component (C)
8766          then
8767             return Suitable_Element (Next_Entity (C));
8768
8769          elsif Chars (C) = Name_uController
8770            or else Chars (C) = Name_uTag
8771          then
8772             return Suitable_Element (Next_Entity (C));
8773
8774          elsif Is_Interface (Etype (C)) then
8775             return Suitable_Element (Next_Entity (C));
8776
8777          else
8778             return C;
8779          end if;
8780       end Suitable_Element;
8781
8782    --  Start of processing for Expand_Record_Equality
8783
8784    begin
8785       --  Generates the following code: (assuming that Typ has one Discr and
8786       --  component C2 is also a record)
8787
8788       --   True
8789       --     and then Lhs.Discr1 = Rhs.Discr1
8790       --     and then Lhs.C1 = Rhs.C1
8791       --     and then Lhs.C2.C1=Rhs.C2.C1 and then ... Lhs.C2.Cn=Rhs.C2.Cn
8792       --     and then ...
8793       --     and then Lhs.Cmpn = Rhs.Cmpn
8794
8795       Result := New_Reference_To (Standard_True, Loc);
8796       C := Suitable_Element (First_Entity (Typ));
8797
8798       while Present (C) loop
8799          declare
8800             New_Lhs : Node_Id;
8801             New_Rhs : Node_Id;
8802             Check   : Node_Id;
8803
8804          begin
8805             if First_Time then
8806                First_Time := False;
8807                New_Lhs := Lhs;
8808                New_Rhs := Rhs;
8809             else
8810                New_Lhs := New_Copy_Tree (Lhs);
8811                New_Rhs := New_Copy_Tree (Rhs);
8812             end if;
8813
8814             Check :=
8815               Expand_Composite_Equality (Nod, Etype (C),
8816                Lhs =>
8817                  Make_Selected_Component (Loc,
8818                    Prefix => New_Lhs,
8819                    Selector_Name => New_Reference_To (C, Loc)),
8820                Rhs =>
8821                  Make_Selected_Component (Loc,
8822                    Prefix => New_Rhs,
8823                    Selector_Name => New_Reference_To (C, Loc)),
8824                Bodies => Bodies);
8825
8826             --  If some (sub)component is an unchecked_union, the whole
8827             --  operation will raise program error.
8828
8829             if Nkind (Check) = N_Raise_Program_Error then
8830                Result := Check;
8831                Set_Etype (Result, Standard_Boolean);
8832                exit;
8833             else
8834                Result :=
8835                  Make_And_Then (Loc,
8836                    Left_Opnd  => Result,
8837                    Right_Opnd => Check);
8838             end if;
8839          end;
8840
8841          C := Suitable_Element (Next_Entity (C));
8842       end loop;
8843
8844       return Result;
8845    end Expand_Record_Equality;
8846
8847    -------------------------------------
8848    -- Fixup_Universal_Fixed_Operation --
8849    -------------------------------------
8850
8851    procedure Fixup_Universal_Fixed_Operation (N : Node_Id) is
8852       Conv : constant Node_Id := Parent (N);
8853
8854    begin
8855       --  We must have a type conversion immediately above us
8856
8857       pragma Assert (Nkind (Conv) = N_Type_Conversion);
8858
8859       --  Normally the type conversion gives our target type. The exception
8860       --  occurs in the case of the Round attribute, where the conversion
8861       --  will be to universal real, and our real type comes from the Round
8862       --  attribute (as well as an indication that we must round the result)
8863
8864       if Nkind (Parent (Conv)) = N_Attribute_Reference
8865         and then Attribute_Name (Parent (Conv)) = Name_Round
8866       then
8867          Set_Etype (N, Etype (Parent (Conv)));
8868          Set_Rounded_Result (N);
8869
8870       --  Normal case where type comes from conversion above us
8871
8872       else
8873          Set_Etype (N, Etype (Conv));
8874       end if;
8875    end Fixup_Universal_Fixed_Operation;
8876
8877    ------------------------------
8878    -- Get_Allocator_Final_List --
8879    ------------------------------
8880
8881    function Get_Allocator_Final_List
8882      (N    : Node_Id;
8883       T    : Entity_Id;
8884       PtrT : Entity_Id) return Entity_Id
8885    is
8886       Loc : constant Source_Ptr := Sloc (N);
8887
8888       Owner : Entity_Id := PtrT;
8889       --  The entity whose finalization list must be used to attach the
8890       --  allocated object.
8891
8892    begin
8893       if Ekind (PtrT) = E_Anonymous_Access_Type then
8894
8895          --  If the context is an access parameter, we need to create a
8896          --  non-anonymous access type in order to have a usable final list,
8897          --  because there is otherwise no pool to which the allocated object
8898          --  can belong. We create both the type and the finalization chain
8899          --  here, because freezing an internal type does not create such a
8900          --  chain. The Final_Chain that is thus created is shared by the
8901          --  access parameter. The access type is tested against the result
8902          --  type of the function to exclude allocators whose type is an
8903          --  anonymous access result type. We freeze the type at once to
8904          --  ensure that it is properly decorated for the back-end, even
8905          --  if the context and current scope is a loop.
8906
8907          if Nkind (Associated_Node_For_Itype (PtrT))
8908               in N_Subprogram_Specification
8909            and then
8910              PtrT /=
8911                Etype (Defining_Unit_Name (Associated_Node_For_Itype (PtrT)))
8912          then
8913             Owner := Make_Defining_Identifier (Loc, New_Internal_Name ('J'));
8914             Insert_Action (N,
8915               Make_Full_Type_Declaration (Loc,
8916                 Defining_Identifier => Owner,
8917                 Type_Definition =>
8918                    Make_Access_To_Object_Definition (Loc,
8919                      Subtype_Indication =>
8920                        New_Occurrence_Of (T, Loc))));
8921
8922             Freeze_Before (N, Owner);
8923             Build_Final_List (N, Owner);
8924             Set_Associated_Final_Chain (PtrT, Associated_Final_Chain (Owner));
8925
8926          --  Ada 2005 (AI-318-02): If the context is a return object
8927          --  declaration, then the anonymous return subtype is defined to have
8928          --  the same accessibility level as that of the function's result
8929          --  subtype, which means that we want the scope where the function is
8930          --  declared.
8931
8932          elsif Nkind (Associated_Node_For_Itype (PtrT)) = N_Object_Declaration
8933            and then Ekind (Scope (PtrT)) = E_Return_Statement
8934          then
8935             Owner := Scope (Return_Applies_To (Scope (PtrT)));
8936
8937          --  Case of an access discriminant, or (Ada 2005), of an anonymous
8938          --  access component or anonymous access function result: find the
8939          --  final list associated with the scope of the type. (In the
8940          --  anonymous access component kind, a list controller will have
8941          --  been allocated when freezing the record type, and PtrT has an
8942          --  Associated_Final_Chain attribute designating it.)
8943
8944          elsif No (Associated_Final_Chain (PtrT)) then
8945             Owner := Scope (PtrT);
8946          end if;
8947       end if;
8948
8949       return Find_Final_List (Owner);
8950    end Get_Allocator_Final_List;
8951
8952    ---------------------------------
8953    -- Has_Inferable_Discriminants --
8954    ---------------------------------
8955
8956    function Has_Inferable_Discriminants (N : Node_Id) return Boolean is
8957
8958       function Prefix_Is_Formal_Parameter (N : Node_Id) return Boolean;
8959       --  Determines whether the left-most prefix of a selected component is a
8960       --  formal parameter in a subprogram. Assumes N is a selected component.
8961
8962       --------------------------------
8963       -- Prefix_Is_Formal_Parameter --
8964       --------------------------------
8965
8966       function Prefix_Is_Formal_Parameter (N : Node_Id) return Boolean is
8967          Sel_Comp : Node_Id := N;
8968
8969       begin
8970          --  Move to the left-most prefix by climbing up the tree
8971
8972          while Present (Parent (Sel_Comp))
8973            and then Nkind (Parent (Sel_Comp)) = N_Selected_Component
8974          loop
8975             Sel_Comp := Parent (Sel_Comp);
8976          end loop;
8977
8978          return Ekind (Entity (Prefix (Sel_Comp))) in Formal_Kind;
8979       end Prefix_Is_Formal_Parameter;
8980
8981    --  Start of processing for Has_Inferable_Discriminants
8982
8983    begin
8984       --  For identifiers and indexed components, it is sufficient to have a
8985       --  constrained Unchecked_Union nominal subtype.
8986
8987       if Nkind_In (N, N_Identifier, N_Indexed_Component) then
8988          return Is_Unchecked_Union (Base_Type (Etype (N)))
8989                   and then
8990                 Is_Constrained (Etype (N));
8991
8992       --  For selected components, the subtype of the selector must be a
8993       --  constrained Unchecked_Union. If the component is subject to a
8994       --  per-object constraint, then the enclosing object must have inferable
8995       --  discriminants.
8996
8997       elsif Nkind (N) = N_Selected_Component then
8998          if Has_Per_Object_Constraint (Entity (Selector_Name (N))) then
8999
9000             --  A small hack. If we have a per-object constrained selected
9001             --  component of a formal parameter, return True since we do not
9002             --  know the actual parameter association yet.
9003
9004             if Prefix_Is_Formal_Parameter (N) then
9005                return True;
9006             end if;
9007
9008             --  Otherwise, check the enclosing object and the selector
9009
9010             return Has_Inferable_Discriminants (Prefix (N))
9011                      and then
9012                    Has_Inferable_Discriminants (Selector_Name (N));
9013          end if;
9014
9015          --  The call to Has_Inferable_Discriminants will determine whether
9016          --  the selector has a constrained Unchecked_Union nominal type.
9017
9018          return Has_Inferable_Discriminants (Selector_Name (N));
9019
9020       --  A qualified expression has inferable discriminants if its subtype
9021       --  mark is a constrained Unchecked_Union subtype.
9022
9023       elsif Nkind (N) = N_Qualified_Expression then
9024          return Is_Unchecked_Union (Subtype_Mark (N))
9025                   and then
9026                 Is_Constrained (Subtype_Mark (N));
9027
9028       end if;
9029
9030       return False;
9031    end Has_Inferable_Discriminants;
9032
9033    -------------------------------
9034    -- Insert_Dereference_Action --
9035    -------------------------------
9036
9037    procedure Insert_Dereference_Action (N : Node_Id) is
9038       Loc  : constant Source_Ptr := Sloc (N);
9039       Typ  : constant Entity_Id  := Etype (N);
9040       Pool : constant Entity_Id  := Associated_Storage_Pool (Typ);
9041       Pnod : constant Node_Id    := Parent (N);
9042
9043       function Is_Checked_Storage_Pool (P : Entity_Id) return Boolean;
9044       --  Return true if type of P is derived from Checked_Pool;
9045
9046       -----------------------------
9047       -- Is_Checked_Storage_Pool --
9048       -----------------------------
9049
9050       function Is_Checked_Storage_Pool (P : Entity_Id) return Boolean is
9051          T : Entity_Id;
9052
9053       begin
9054          if No (P) then
9055             return False;
9056          end if;
9057
9058          T := Etype (P);
9059          while T /= Etype (T) loop
9060             if Is_RTE (T, RE_Checked_Pool) then
9061                return True;
9062             else
9063                T := Etype (T);
9064             end if;
9065          end loop;
9066
9067          return False;
9068       end Is_Checked_Storage_Pool;
9069
9070    --  Start of processing for Insert_Dereference_Action
9071
9072    begin
9073       pragma Assert (Nkind (Pnod) = N_Explicit_Dereference);
9074
9075       if not (Is_Checked_Storage_Pool (Pool)
9076               and then Comes_From_Source (Original_Node (Pnod)))
9077       then
9078          return;
9079       end if;
9080
9081       Insert_Action (N,
9082         Make_Procedure_Call_Statement (Loc,
9083           Name => New_Reference_To (
9084             Find_Prim_Op (Etype (Pool), Name_Dereference), Loc),
9085
9086           Parameter_Associations => New_List (
9087
9088             --  Pool
9089
9090              New_Reference_To (Pool, Loc),
9091
9092             --  Storage_Address. We use the attribute Pool_Address, which uses
9093             --  the pointer itself to find the address of the object, and which
9094             --  handles unconstrained arrays properly by computing the address
9095             --  of the template. i.e. the correct address of the corresponding
9096             --  allocation.
9097
9098              Make_Attribute_Reference (Loc,
9099                Prefix         => Duplicate_Subexpr_Move_Checks (N),
9100                Attribute_Name => Name_Pool_Address),
9101
9102             --  Size_In_Storage_Elements
9103
9104              Make_Op_Divide (Loc,
9105                Left_Opnd  =>
9106                 Make_Attribute_Reference (Loc,
9107                   Prefix         =>
9108                     Make_Explicit_Dereference (Loc,
9109                       Duplicate_Subexpr_Move_Checks (N)),
9110                   Attribute_Name => Name_Size),
9111                Right_Opnd =>
9112                  Make_Integer_Literal (Loc, System_Storage_Unit)),
9113
9114             --  Alignment
9115
9116              Make_Attribute_Reference (Loc,
9117                Prefix         =>
9118                  Make_Explicit_Dereference (Loc,
9119                    Duplicate_Subexpr_Move_Checks (N)),
9120                Attribute_Name => Name_Alignment))));
9121
9122    exception
9123       when RE_Not_Available =>
9124          return;
9125    end Insert_Dereference_Action;
9126
9127    ------------------------------
9128    -- Make_Array_Comparison_Op --
9129    ------------------------------
9130
9131    --  This is a hand-coded expansion of the following generic function:
9132
9133    --  generic
9134    --    type elem is  (<>);
9135    --    type index is (<>);
9136    --    type a is array (index range <>) of elem;
9137
9138    --  function Gnnn (X : a; Y: a) return boolean is
9139    --    J : index := Y'first;
9140
9141    --  begin
9142    --    if X'length = 0 then
9143    --       return false;
9144
9145    --    elsif Y'length = 0 then
9146    --       return true;
9147
9148    --    else
9149    --      for I in X'range loop
9150    --        if X (I) = Y (J) then
9151    --          if J = Y'last then
9152    --            exit;
9153    --          else
9154    --            J := index'succ (J);
9155    --          end if;
9156
9157    --        else
9158    --           return X (I) > Y (J);
9159    --        end if;
9160    --      end loop;
9161
9162    --      return X'length > Y'length;
9163    --    end if;
9164    --  end Gnnn;
9165
9166    --  Note that since we are essentially doing this expansion by hand, we
9167    --  do not need to generate an actual or formal generic part, just the
9168    --  instantiated function itself.
9169
9170    function Make_Array_Comparison_Op
9171      (Typ : Entity_Id;
9172       Nod : Node_Id) return Node_Id
9173    is
9174       Loc : constant Source_Ptr := Sloc (Nod);
9175
9176       X : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uX);
9177       Y : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uY);
9178       I : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uI);
9179       J : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uJ);
9180
9181       Index : constant Entity_Id := Base_Type (Etype (First_Index (Typ)));
9182
9183       Loop_Statement : Node_Id;
9184       Loop_Body      : Node_Id;
9185       If_Stat        : Node_Id;
9186       Inner_If       : Node_Id;
9187       Final_Expr     : Node_Id;
9188       Func_Body      : Node_Id;
9189       Func_Name      : Entity_Id;
9190       Formals        : List_Id;
9191       Length1        : Node_Id;
9192       Length2        : Node_Id;
9193
9194    begin
9195       --  if J = Y'last then
9196       --     exit;
9197       --  else
9198       --     J := index'succ (J);
9199       --  end if;
9200
9201       Inner_If :=
9202         Make_Implicit_If_Statement (Nod,
9203           Condition =>
9204             Make_Op_Eq (Loc,
9205               Left_Opnd => New_Reference_To (J, Loc),
9206               Right_Opnd =>
9207                 Make_Attribute_Reference (Loc,
9208                   Prefix => New_Reference_To (Y, Loc),
9209                   Attribute_Name => Name_Last)),
9210
9211           Then_Statements => New_List (
9212                 Make_Exit_Statement (Loc)),
9213
9214           Else_Statements =>
9215             New_List (
9216               Make_Assignment_Statement (Loc,
9217                 Name => New_Reference_To (J, Loc),
9218                 Expression =>
9219                   Make_Attribute_Reference (Loc,
9220                     Prefix => New_Reference_To (Index, Loc),
9221                     Attribute_Name => Name_Succ,
9222                     Expressions => New_List (New_Reference_To (J, Loc))))));
9223
9224       --  if X (I) = Y (J) then
9225       --     if ... end if;
9226       --  else
9227       --     return X (I) > Y (J);
9228       --  end if;
9229
9230       Loop_Body :=
9231         Make_Implicit_If_Statement (Nod,
9232           Condition =>
9233             Make_Op_Eq (Loc,
9234               Left_Opnd =>
9235                 Make_Indexed_Component (Loc,
9236                   Prefix      => New_Reference_To (X, Loc),
9237                   Expressions => New_List (New_Reference_To (I, Loc))),
9238
9239               Right_Opnd =>
9240                 Make_Indexed_Component (Loc,
9241                   Prefix      => New_Reference_To (Y, Loc),
9242                   Expressions => New_List (New_Reference_To (J, Loc)))),
9243
9244           Then_Statements => New_List (Inner_If),
9245
9246           Else_Statements => New_List (
9247             Make_Simple_Return_Statement (Loc,
9248               Expression =>
9249                 Make_Op_Gt (Loc,
9250                   Left_Opnd =>
9251                     Make_Indexed_Component (Loc,
9252                       Prefix      => New_Reference_To (X, Loc),
9253                       Expressions => New_List (New_Reference_To (I, Loc))),
9254
9255                   Right_Opnd =>
9256                     Make_Indexed_Component (Loc,
9257                       Prefix      => New_Reference_To (Y, Loc),
9258                       Expressions => New_List (
9259                         New_Reference_To (J, Loc)))))));
9260
9261       --  for I in X'range loop
9262       --     if ... end if;
9263       --  end loop;
9264
9265       Loop_Statement :=
9266         Make_Implicit_Loop_Statement (Nod,
9267           Identifier => Empty,
9268
9269           Iteration_Scheme =>
9270             Make_Iteration_Scheme (Loc,
9271               Loop_Parameter_Specification =>
9272                 Make_Loop_Parameter_Specification (Loc,
9273                   Defining_Identifier => I,
9274                   Discrete_Subtype_Definition =>
9275                     Make_Attribute_Reference (Loc,
9276                       Prefix => New_Reference_To (X, Loc),
9277                       Attribute_Name => Name_Range))),
9278
9279           Statements => New_List (Loop_Body));
9280
9281       --    if X'length = 0 then
9282       --       return false;
9283       --    elsif Y'length = 0 then
9284       --       return true;
9285       --    else
9286       --      for ... loop ... end loop;
9287       --      return X'length > Y'length;
9288       --    end if;
9289
9290       Length1 :=
9291         Make_Attribute_Reference (Loc,
9292           Prefix => New_Reference_To (X, Loc),
9293           Attribute_Name => Name_Length);
9294
9295       Length2 :=
9296         Make_Attribute_Reference (Loc,
9297           Prefix => New_Reference_To (Y, Loc),
9298           Attribute_Name => Name_Length);
9299
9300       Final_Expr :=
9301         Make_Op_Gt (Loc,
9302           Left_Opnd  => Length1,
9303           Right_Opnd => Length2);
9304
9305       If_Stat :=
9306         Make_Implicit_If_Statement (Nod,
9307           Condition =>
9308             Make_Op_Eq (Loc,
9309               Left_Opnd =>
9310                 Make_Attribute_Reference (Loc,
9311                   Prefix => New_Reference_To (X, Loc),
9312                   Attribute_Name => Name_Length),
9313               Right_Opnd =>
9314                 Make_Integer_Literal (Loc, 0)),
9315
9316           Then_Statements =>
9317             New_List (
9318               Make_Simple_Return_Statement (Loc,
9319                 Expression => New_Reference_To (Standard_False, Loc))),
9320
9321           Elsif_Parts => New_List (
9322             Make_Elsif_Part (Loc,
9323               Condition =>
9324                 Make_Op_Eq (Loc,
9325                   Left_Opnd =>
9326                     Make_Attribute_Reference (Loc,
9327                       Prefix => New_Reference_To (Y, Loc),
9328                       Attribute_Name => Name_Length),
9329                   Right_Opnd =>
9330                     Make_Integer_Literal (Loc, 0)),
9331
9332               Then_Statements =>
9333                 New_List (
9334                   Make_Simple_Return_Statement (Loc,
9335                      Expression => New_Reference_To (Standard_True, Loc))))),
9336
9337           Else_Statements => New_List (
9338             Loop_Statement,
9339             Make_Simple_Return_Statement (Loc,
9340               Expression => Final_Expr)));
9341
9342       --  (X : a; Y: a)
9343
9344       Formals := New_List (
9345         Make_Parameter_Specification (Loc,
9346           Defining_Identifier => X,
9347           Parameter_Type      => New_Reference_To (Typ, Loc)),
9348
9349         Make_Parameter_Specification (Loc,
9350           Defining_Identifier => Y,
9351           Parameter_Type      => New_Reference_To (Typ, Loc)));
9352
9353       --  function Gnnn (...) return boolean is
9354       --    J : index := Y'first;
9355       --  begin
9356       --    if ... end if;
9357       --  end Gnnn;
9358
9359       Func_Name := Make_Defining_Identifier (Loc, New_Internal_Name ('G'));
9360
9361       Func_Body :=
9362         Make_Subprogram_Body (Loc,
9363           Specification =>
9364             Make_Function_Specification (Loc,
9365               Defining_Unit_Name       => Func_Name,
9366               Parameter_Specifications => Formals,
9367               Result_Definition => New_Reference_To (Standard_Boolean, Loc)),
9368
9369           Declarations => New_List (
9370             Make_Object_Declaration (Loc,
9371               Defining_Identifier => J,
9372               Object_Definition   => New_Reference_To (Index, Loc),
9373               Expression =>
9374                 Make_Attribute_Reference (Loc,
9375                   Prefix => New_Reference_To (Y, Loc),
9376                   Attribute_Name => Name_First))),
9377
9378           Handled_Statement_Sequence =>
9379             Make_Handled_Sequence_Of_Statements (Loc,
9380               Statements => New_List (If_Stat)));
9381
9382       return Func_Body;
9383    end Make_Array_Comparison_Op;
9384
9385    ---------------------------
9386    -- Make_Boolean_Array_Op --
9387    ---------------------------
9388
9389    --  For logical operations on boolean arrays, expand in line the following,
9390    --  replacing 'and' with 'or' or 'xor' where needed:
9391
9392    --    function Annn (A : typ; B: typ) return typ is
9393    --       C : typ;
9394    --    begin
9395    --       for J in A'range loop
9396    --          C (J) := A (J) op B (J);
9397    --       end loop;
9398    --       return C;
9399    --    end Annn;
9400
9401    --  Here typ is the boolean array type
9402
9403    function Make_Boolean_Array_Op
9404      (Typ : Entity_Id;
9405       N   : Node_Id) return Node_Id
9406    is
9407       Loc : constant Source_Ptr := Sloc (N);
9408
9409       A : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uA);
9410       B : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uB);
9411       C : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uC);
9412       J : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uJ);
9413
9414       A_J : Node_Id;
9415       B_J : Node_Id;
9416       C_J : Node_Id;
9417       Op  : Node_Id;
9418
9419       Formals        : List_Id;
9420       Func_Name      : Entity_Id;
9421       Func_Body      : Node_Id;
9422       Loop_Statement : Node_Id;
9423
9424    begin
9425       A_J :=
9426         Make_Indexed_Component (Loc,
9427           Prefix      => New_Reference_To (A, Loc),
9428           Expressions => New_List (New_Reference_To (J, Loc)));
9429
9430       B_J :=
9431         Make_Indexed_Component (Loc,
9432           Prefix      => New_Reference_To (B, Loc),
9433           Expressions => New_List (New_Reference_To (J, Loc)));
9434
9435       C_J :=
9436         Make_Indexed_Component (Loc,
9437           Prefix      => New_Reference_To (C, Loc),
9438           Expressions => New_List (New_Reference_To (J, Loc)));
9439
9440       if Nkind (N) = N_Op_And then
9441          Op :=
9442            Make_Op_And (Loc,
9443              Left_Opnd  => A_J,
9444              Right_Opnd => B_J);
9445
9446       elsif Nkind (N) = N_Op_Or then
9447          Op :=
9448            Make_Op_Or (Loc,
9449              Left_Opnd  => A_J,
9450              Right_Opnd => B_J);
9451
9452       else
9453          Op :=
9454            Make_Op_Xor (Loc,
9455              Left_Opnd  => A_J,
9456              Right_Opnd => B_J);
9457       end if;
9458
9459       Loop_Statement :=
9460         Make_Implicit_Loop_Statement (N,
9461           Identifier => Empty,
9462
9463           Iteration_Scheme =>
9464             Make_Iteration_Scheme (Loc,
9465               Loop_Parameter_Specification =>
9466                 Make_Loop_Parameter_Specification (Loc,
9467                   Defining_Identifier => J,
9468                   Discrete_Subtype_Definition =>
9469                     Make_Attribute_Reference (Loc,
9470                       Prefix => New_Reference_To (A, Loc),
9471                       Attribute_Name => Name_Range))),
9472
9473           Statements => New_List (
9474             Make_Assignment_Statement (Loc,
9475               Name       => C_J,
9476               Expression => Op)));
9477
9478       Formals := New_List (
9479         Make_Parameter_Specification (Loc,
9480           Defining_Identifier => A,
9481           Parameter_Type      => New_Reference_To (Typ, Loc)),
9482
9483         Make_Parameter_Specification (Loc,
9484           Defining_Identifier => B,
9485           Parameter_Type      => New_Reference_To (Typ, Loc)));
9486
9487       Func_Name :=
9488         Make_Defining_Identifier (Loc, New_Internal_Name ('A'));
9489       Set_Is_Inlined (Func_Name);
9490
9491       Func_Body :=
9492         Make_Subprogram_Body (Loc,
9493           Specification =>
9494             Make_Function_Specification (Loc,
9495               Defining_Unit_Name       => Func_Name,
9496               Parameter_Specifications => Formals,
9497               Result_Definition        => New_Reference_To (Typ, Loc)),
9498
9499           Declarations => New_List (
9500             Make_Object_Declaration (Loc,
9501               Defining_Identifier => C,
9502               Object_Definition   => New_Reference_To (Typ, Loc))),
9503
9504           Handled_Statement_Sequence =>
9505             Make_Handled_Sequence_Of_Statements (Loc,
9506               Statements => New_List (
9507                 Loop_Statement,
9508                 Make_Simple_Return_Statement (Loc,
9509                   Expression => New_Reference_To (C, Loc)))));
9510
9511       return Func_Body;
9512    end Make_Boolean_Array_Op;
9513
9514    ------------------------
9515    -- Rewrite_Comparison --
9516    ------------------------
9517
9518    procedure Rewrite_Comparison (N : Node_Id) is
9519       Warning_Generated : Boolean := False;
9520       --  Set to True if first pass with Assume_Valid generates a warning in
9521       --  which case we skip the second pass to avoid warning overloaded.
9522
9523       Result : Node_Id;
9524       --  Set to Standard_True or Standard_False
9525
9526    begin
9527       if Nkind (N) = N_Type_Conversion then
9528          Rewrite_Comparison (Expression (N));
9529          return;
9530
9531       elsif Nkind (N) not in N_Op_Compare then
9532          return;
9533       end if;
9534
9535       --  Now start looking at the comparison in detail. We potentially go
9536       --  through this loop twice. The first time, Assume_Valid is set False
9537       --  in the call to Compile_Time_Compare. If this call results in a
9538       --  clear result of always True or Always False, that's decisive and
9539       --  we are done. Otherwise we repeat the processing with Assume_Valid
9540       --  set to True to generate additional warnings. We can stil that step
9541       --  if Constant_Condition_Warnings is False.
9542
9543       for AV in False .. True loop
9544          declare
9545             Typ : constant Entity_Id := Etype (N);
9546             Op1 : constant Node_Id   := Left_Opnd (N);
9547             Op2 : constant Node_Id   := Right_Opnd (N);
9548
9549             Res : constant Compare_Result :=
9550                     Compile_Time_Compare (Op1, Op2, Assume_Valid => AV);
9551             --  Res indicates if compare outcome can be compile time determined
9552
9553             True_Result  : Boolean;
9554             False_Result : Boolean;
9555
9556          begin
9557             case N_Op_Compare (Nkind (N)) is
9558             when N_Op_Eq =>
9559                True_Result  := Res = EQ;
9560                False_Result := Res = LT or else Res = GT or else Res = NE;
9561
9562             when N_Op_Ge =>
9563                True_Result  := Res in Compare_GE;
9564                False_Result := Res = LT;
9565
9566                if Res = LE
9567                  and then Constant_Condition_Warnings
9568                  and then Comes_From_Source (Original_Node (N))
9569                  and then Nkind (Original_Node (N)) = N_Op_Ge
9570                  and then not In_Instance
9571                  and then Is_Integer_Type (Etype (Left_Opnd (N)))
9572                  and then not Has_Warnings_Off (Etype (Left_Opnd (N)))
9573                then
9574                   Error_Msg_N
9575                     ("can never be greater than, could replace by ""'=""?", N);
9576                   Warning_Generated := True;
9577                end if;
9578
9579             when N_Op_Gt =>
9580                True_Result  := Res = GT;
9581                False_Result := Res in Compare_LE;
9582
9583             when N_Op_Lt =>
9584                True_Result  := Res = LT;
9585                False_Result := Res in Compare_GE;
9586
9587             when N_Op_Le =>
9588                True_Result  := Res in Compare_LE;
9589                False_Result := Res = GT;
9590
9591                if Res = GE
9592                  and then Constant_Condition_Warnings
9593                  and then Comes_From_Source (Original_Node (N))
9594                  and then Nkind (Original_Node (N)) = N_Op_Le
9595                  and then not In_Instance
9596                  and then Is_Integer_Type (Etype (Left_Opnd (N)))
9597                  and then not Has_Warnings_Off (Etype (Left_Opnd (N)))
9598                then
9599                   Error_Msg_N
9600                     ("can never be less than, could replace by ""'=""?", N);
9601                   Warning_Generated := True;
9602                end if;
9603
9604             when N_Op_Ne =>
9605                True_Result  := Res = NE or else Res = GT or else Res = LT;
9606                False_Result := Res = EQ;
9607             end case;
9608
9609             --  If this is the first iteration, then we actually convert the
9610             --  comparison into True or False, if the result is certain.
9611
9612             if AV = False then
9613                if True_Result or False_Result then
9614                   if True_Result then
9615                      Result := Standard_True;
9616                   else
9617                      Result := Standard_False;
9618                   end if;
9619
9620                   Rewrite (N,
9621                     Convert_To (Typ,
9622                       New_Occurrence_Of (Result, Sloc (N))));
9623                   Analyze_And_Resolve (N, Typ);
9624                   Warn_On_Known_Condition (N);
9625                   return;
9626                end if;
9627
9628             --  If this is the second iteration (AV = True), and the original
9629             --  node comes from source and we are not in an instance, then
9630             --  give a warning if we know result would be True or False. Note
9631             --  we know Constant_Condition_Warnings is set if we get here.
9632
9633             elsif Comes_From_Source (Original_Node (N))
9634               and then not In_Instance
9635             then
9636                if True_Result then
9637                   Error_Msg_N
9638                     ("condition can only be False if invalid values present?",
9639                      N);
9640                elsif False_Result then
9641                   Error_Msg_N
9642                     ("condition can only be True if invalid values present?",
9643                      N);
9644                end if;
9645             end if;
9646          end;
9647
9648          --  Skip second iteration if not warning on constant conditions or
9649          --  if the first iteration already generated a warning of some kind
9650          --  or if we are in any case assuming all values are valid (so that
9651          --  the first iteration took care of the valid case).
9652
9653          exit when not Constant_Condition_Warnings;
9654          exit when Warning_Generated;
9655          exit when Assume_No_Invalid_Values;
9656       end loop;
9657    end Rewrite_Comparison;
9658
9659    ----------------------------
9660    -- Safe_In_Place_Array_Op --
9661    ----------------------------
9662
9663    function Safe_In_Place_Array_Op
9664      (Lhs : Node_Id;
9665       Op1 : Node_Id;
9666       Op2 : Node_Id) return Boolean
9667    is
9668       Target : Entity_Id;
9669
9670       function Is_Safe_Operand (Op : Node_Id) return Boolean;
9671       --  Operand is safe if it cannot overlap part of the target of the
9672       --  operation. If the operand and the target are identical, the operand
9673       --  is safe. The operand can be empty in the case of negation.
9674
9675       function Is_Unaliased (N : Node_Id) return Boolean;
9676       --  Check that N is a stand-alone entity
9677
9678       ------------------
9679       -- Is_Unaliased --
9680       ------------------
9681
9682       function Is_Unaliased (N : Node_Id) return Boolean is
9683       begin
9684          return
9685            Is_Entity_Name (N)
9686              and then No (Address_Clause (Entity (N)))
9687              and then No (Renamed_Object (Entity (N)));
9688       end Is_Unaliased;
9689
9690       ---------------------
9691       -- Is_Safe_Operand --
9692       ---------------------
9693
9694       function Is_Safe_Operand (Op : Node_Id) return Boolean is
9695       begin
9696          if No (Op) then
9697             return True;
9698
9699          elsif Is_Entity_Name (Op) then
9700             return Is_Unaliased (Op);
9701
9702          elsif Nkind_In (Op, N_Indexed_Component, N_Selected_Component) then
9703             return Is_Unaliased (Prefix (Op));
9704
9705          elsif Nkind (Op) = N_Slice then
9706             return
9707               Is_Unaliased (Prefix (Op))
9708                 and then Entity (Prefix (Op)) /= Target;
9709
9710          elsif Nkind (Op) = N_Op_Not then
9711             return Is_Safe_Operand (Right_Opnd (Op));
9712
9713          else
9714             return False;
9715          end if;
9716       end Is_Safe_Operand;
9717
9718       --  Start of processing for Is_Safe_In_Place_Array_Op
9719
9720    begin
9721       --  Skip this processing if the component size is different from system
9722       --  storage unit (since at least for NOT this would cause problems).
9723
9724       if Component_Size (Etype (Lhs)) /= System_Storage_Unit then
9725          return False;
9726
9727       --  Cannot do in place stuff on VM_Target since cannot pass addresses
9728
9729       elsif VM_Target /= No_VM then
9730          return False;
9731
9732       --  Cannot do in place stuff if non-standard Boolean representation
9733
9734       elsif Has_Non_Standard_Rep (Component_Type (Etype (Lhs))) then
9735          return False;
9736
9737       elsif not Is_Unaliased (Lhs) then
9738          return False;
9739       else
9740          Target := Entity (Lhs);
9741
9742          return
9743            Is_Safe_Operand (Op1)
9744              and then Is_Safe_Operand (Op2);
9745       end if;
9746    end Safe_In_Place_Array_Op;
9747
9748    -----------------------
9749    -- Tagged_Membership --
9750    -----------------------
9751
9752    --  There are two different cases to consider depending on whether the right
9753    --  operand is a class-wide type or not. If not we just compare the actual
9754    --  tag of the left expr to the target type tag:
9755    --
9756    --     Left_Expr.Tag = Right_Type'Tag;
9757    --
9758    --  If it is a class-wide type we use the RT function CW_Membership which is
9759    --  usually implemented by looking in the ancestor tables contained in the
9760    --  dispatch table pointed by Left_Expr.Tag for Typ'Tag
9761
9762    --  Ada 2005 (AI-251): If it is a class-wide interface type we use the RT
9763    --  function IW_Membership which is usually implemented by looking in the
9764    --  table of abstract interface types plus the ancestor table contained in
9765    --  the dispatch table pointed by Left_Expr.Tag for Typ'Tag
9766
9767    function Tagged_Membership (N : Node_Id) return Node_Id is
9768       Left  : constant Node_Id    := Left_Opnd  (N);
9769       Right : constant Node_Id    := Right_Opnd (N);
9770       Loc   : constant Source_Ptr := Sloc (N);
9771
9772       Left_Type  : Entity_Id;
9773       Right_Type : Entity_Id;
9774       Obj_Tag    : Node_Id;
9775
9776    begin
9777       --  Handle entities from the limited view
9778
9779       Left_Type  := Available_View (Etype (Left));
9780       Right_Type := Available_View (Etype (Right));
9781
9782       if Is_Class_Wide_Type (Left_Type) then
9783          Left_Type := Root_Type (Left_Type);
9784       end if;
9785
9786       Obj_Tag :=
9787         Make_Selected_Component (Loc,
9788           Prefix        => Relocate_Node (Left),
9789           Selector_Name =>
9790             New_Reference_To (First_Tag_Component (Left_Type), Loc));
9791
9792       if Is_Class_Wide_Type (Right_Type) then
9793
9794          --  No need to issue a run-time check if we statically know that the
9795          --  result of this membership test is always true. For example,
9796          --  considering the following declarations:
9797
9798          --    type Iface is interface;
9799          --    type T     is tagged null record;
9800          --    type DT    is new T and Iface with null record;
9801
9802          --    Obj1 : T;
9803          --    Obj2 : DT;
9804
9805          --  These membership tests are always true:
9806
9807          --    Obj1 in T'Class
9808          --    Obj2 in T'Class;
9809          --    Obj2 in Iface'Class;
9810
9811          --  We do not need to handle cases where the membership is illegal.
9812          --  For example:
9813
9814          --    Obj1 in DT'Class;     --  Compile time error
9815          --    Obj1 in Iface'Class;  --  Compile time error
9816
9817          if not Is_Class_Wide_Type (Left_Type)
9818            and then (Is_Ancestor (Etype (Right_Type), Left_Type)
9819                        or else (Is_Interface (Etype (Right_Type))
9820                                  and then Interface_Present_In_Ancestor
9821                                            (Typ   => Left_Type,
9822                                             Iface => Etype (Right_Type))))
9823          then
9824             return New_Reference_To (Standard_True, Loc);
9825          end if;
9826
9827          --  Ada 2005 (AI-251): Class-wide applied to interfaces
9828
9829          if Is_Interface (Etype (Class_Wide_Type (Right_Type)))
9830
9831             --   Support to: "Iface_CW_Typ in Typ'Class"
9832
9833            or else Is_Interface (Left_Type)
9834          then
9835             --  Issue error if IW_Membership operation not available in a
9836             --  configurable run time setting.
9837
9838             if not RTE_Available (RE_IW_Membership) then
9839                Error_Msg_CRT
9840                  ("dynamic membership test on interface types", N);
9841                return Empty;
9842             end if;
9843
9844             return
9845               Make_Function_Call (Loc,
9846                  Name => New_Occurrence_Of (RTE (RE_IW_Membership), Loc),
9847                  Parameter_Associations => New_List (
9848                    Make_Attribute_Reference (Loc,
9849                      Prefix => Obj_Tag,
9850                      Attribute_Name => Name_Address),
9851                    New_Reference_To (
9852                      Node (First_Elmt
9853                             (Access_Disp_Table (Root_Type (Right_Type)))),
9854                      Loc)));
9855
9856          --  Ada 95: Normal case
9857
9858          else
9859             return
9860               Build_CW_Membership (Loc,
9861                 Obj_Tag_Node => Obj_Tag,
9862                 Typ_Tag_Node =>
9863                    New_Reference_To (
9864                      Node (First_Elmt
9865                             (Access_Disp_Table (Root_Type (Right_Type)))),
9866                      Loc));
9867          end if;
9868
9869       --  Right_Type is not a class-wide type
9870
9871       else
9872          --  No need to check the tag of the object if Right_Typ is abstract
9873
9874          if Is_Abstract_Type (Right_Type) then
9875             return New_Reference_To (Standard_False, Loc);
9876
9877          else
9878             return
9879               Make_Op_Eq (Loc,
9880                 Left_Opnd  => Obj_Tag,
9881                 Right_Opnd =>
9882                   New_Reference_To
9883                     (Node (First_Elmt (Access_Disp_Table (Right_Type))), Loc));
9884          end if;
9885       end if;
9886    end Tagged_Membership;
9887
9888    ------------------------------
9889    -- Unary_Op_Validity_Checks --
9890    ------------------------------
9891
9892    procedure Unary_Op_Validity_Checks (N : Node_Id) is
9893    begin
9894       if Validity_Checks_On and Validity_Check_Operands then
9895          Ensure_Valid (Right_Opnd (N));
9896       end if;
9897    end Unary_Op_Validity_Checks;
9898
9899 end Exp_Ch4;